diff --git a/Documentation/admin-guide/perf/index.rst b/Documentation/admin-guide/perf/index.rst index 69b23f087c05..cf05fed1f67f 100644 --- a/Documentation/admin-guide/perf/index.rst +++ b/Documentation/admin-guide/perf/index.rst @@ -17,3 +17,4 @@ Performance monitor support xgene-pmu arm_dsu_pmu thunderx2-pmu + nvidia-pmu diff --git a/Documentation/admin-guide/perf/nvidia-pmu.rst b/Documentation/admin-guide/perf/nvidia-pmu.rst new file mode 100644 index 000000000000..2e0d47cfe7ea --- /dev/null +++ b/Documentation/admin-guide/perf/nvidia-pmu.rst @@ -0,0 +1,299 @@ +========================================================= +NVIDIA Tegra SoC Uncore Performance Monitoring Unit (PMU) +========================================================= + +The NVIDIA Tegra SoC includes various system PMUs to measure key performance +metrics like memory bandwidth, latency, and utilization: + +* Scalable Coherency Fabric (SCF) +* NVLink-C2C0 +* NVLink-C2C1 +* CNVLink +* PCIE + +PMU Driver +---------- + +The PMUs in this document are based on ARM CoreSight PMU Architecture as +described in document: ARM IHI 0091. Since this is a standard architecture, the +PMUs are managed by a common driver "arm-cs-arch-pmu". This driver describes +the available events and configuration of each PMU in sysfs. Please see the +sections below to get the sysfs path of each PMU. Like other uncore PMU drivers, +the driver provides "cpumask" sysfs attribute to show the CPU id used to handle +the PMU event. There is also "associated_cpus" sysfs attribute, which contains a +list of CPUs associated with the PMU instance. + +.. _SCF_PMU_Section: + +SCF PMU +------- + +The SCF PMU monitors system level cache events, CPU traffic, and +strongly-ordered (SO) PCIE write traffic to local/remote memory. Please see +:ref:`NVIDIA_Uncore_PMU_Traffic_Coverage_Section` for more info about the PMU +traffic coverage. + +The events and configuration options of this PMU device are described in sysfs, +see /sys/bus/event_sources/devices/nvidia_scf_pmu_. + +Example usage: + +* Count event id 0x0 in socket 0:: + + perf stat -a -e nvidia_scf_pmu_0/event=0x0/ + +* Count event id 0x0 in socket 1:: + + perf stat -a -e nvidia_scf_pmu_1/event=0x0/ + +NVLink-C2C0 PMU +-------------------- + +The NVLink-C2C0 PMU monitors incoming traffic from a GPU/CPU connected with +NVLink-C2C (Chip-2-Chip) interconnect. The type of traffic captured by this PMU +varies dependent on the chip configuration: + +* NVIDIA Grace Hopper Superchip: Hopper GPU is connected with Grace SoC. + + In this config, the PMU captures GPU ATS translated or EGM traffic from the GPU. + +* NVIDIA Grace CPU Superchip: two Grace CPU SoCs are connected. + + In this config, the PMU captures read and relaxed ordered (RO) writes from + PCIE device of the remote SoC. + +Please see :ref:`NVIDIA_Uncore_PMU_Traffic_Coverage_Section` for more info about +the PMU traffic coverage. + +The events and configuration options of this PMU device are described in sysfs, +see /sys/bus/event_sources/devices/nvidia_nvlink_c2c0_pmu_. + +Example usage: + +* Count event id 0x0 from the GPU/CPU connected with socket 0:: + + perf stat -a -e nvidia_nvlink_c2c0_pmu_0/event=0x0/ + +* Count event id 0x0 from the GPU/CPU connected with socket 1:: + + perf stat -a -e nvidia_nvlink_c2c0_pmu_1/event=0x0/ + +* Count event id 0x0 from the GPU/CPU connected with socket 2:: + + perf stat -a -e nvidia_nvlink_c2c0_pmu_2/event=0x0/ + +* Count event id 0x0 from the GPU/CPU connected with socket 3:: + + perf stat -a -e nvidia_nvlink_c2c0_pmu_3/event=0x0/ + +NVLink-C2C1 PMU +------------------- + +The NVLink-C2C1 PMU monitors incoming traffic from a GPU connected with +NVLink-C2C (Chip-2-Chip) interconnect. This PMU captures untranslated GPU +traffic, in contrast with NvLink-C2C0 PMU that captures ATS translated traffic. +Please see :ref:`NVIDIA_Uncore_PMU_Traffic_Coverage_Section` for more info about +the PMU traffic coverage. + +The events and configuration options of this PMU device are described in sysfs, +see /sys/bus/event_sources/devices/nvidia_nvlink_c2c1_pmu_. + +Example usage: + +* Count event id 0x0 from the GPU connected with socket 0:: + + perf stat -a -e nvidia_nvlink_c2c1_pmu_0/event=0x0/ + +* Count event id 0x0 from the GPU connected with socket 1:: + + perf stat -a -e nvidia_nvlink_c2c1_pmu_1/event=0x0/ + +* Count event id 0x0 from the GPU connected with socket 2:: + + perf stat -a -e nvidia_nvlink_c2c1_pmu_2/event=0x0/ + +* Count event id 0x0 from the GPU connected with socket 3:: + + perf stat -a -e nvidia_nvlink_c2c1_pmu_3/event=0x0/ + +CNVLink PMU +--------------- + +The CNVLink PMU monitors traffic from GPU and PCIE device on remote sockets +to local memory. For PCIE traffic, this PMU captures read and relaxed ordered +(RO) write traffic. Please see :ref:`NVIDIA_Uncore_PMU_Traffic_Coverage_Section` +for more info about the PMU traffic coverage. + +The events and configuration options of this PMU device are described in sysfs, +see /sys/bus/event_sources/devices/nvidia_cnvlink_pmu_. + +Each SoC socket can be connected to one or more sockets via CNVLink. The user can +use "rem_socket" bitmap parameter to select the remote socket(s) to monitor. +Each bit represents the socket number, e.g. "rem_socket=0xE" corresponds to +socket 1 to 3. +/sys/bus/event_sources/devices/nvidia_cnvlink_pmu_/format/rem_socket +shows the valid bits that can be set in the "rem_socket" parameter. + +The PMU can not distinguish the remote traffic initiator, therefore it does not +provide filter to select the traffic source to monitor. It reports combined +traffic from remote GPU and PCIE devices. + +Example usage: + +* Count event id 0x0 for the traffic from remote socket 1, 2, and 3 to socket 0:: + + perf stat -a -e nvidia_cnvlink_pmu_0/event=0x0,rem_socket=0xE/ + +* Count event id 0x0 for the traffic from remote socket 0, 2, and 3 to socket 1:: + + perf stat -a -e nvidia_cnvlink_pmu_1/event=0x0,rem_socket=0xD/ + +* Count event id 0x0 for the traffic from remote socket 0, 1, and 3 to socket 2:: + + perf stat -a -e nvidia_cnvlink_pmu_2/event=0x0,rem_socket=0xB/ + +* Count event id 0x0 for the traffic from remote socket 0, 1, and 2 to socket 3:: + + perf stat -a -e nvidia_cnvlink_pmu_3/event=0x0,rem_socket=0x7/ + + +PCIE PMU +------------ + +The PCIE PMU monitors all read/write traffic from PCIE root ports to +local/remote memory. Please see :ref:`NVIDIA_Uncore_PMU_Traffic_Coverage_Section` +for more info about the PMU traffic coverage. + +The events and configuration options of this PMU device are described in sysfs, +see /sys/bus/event_sources/devices/nvidia_pcie_pmu_. + +Each SoC socket can support multiple root ports. The user can use +"root_port" bitmap parameter to select the port(s) to monitor, i.e. +"root_port=0xF" corresponds to root port 0 to 3. +/sys/bus/event_sources/devices/nvidia_pcie_pmu_/format/root_port +shows the valid bits that can be set in the "root_port" parameter. + +Example usage: + +* Count event id 0x0 from root port 0 and 1 of socket 0:: + + perf stat -a -e nvidia_pcie_pmu_0/event=0x0,root_port=0x3/ + +* Count event id 0x0 from root port 0 and 1 of socket 1:: + + perf stat -a -e nvidia_pcie_pmu_1/event=0x0,root_port=0x3/ + +.. _NVIDIA_Uncore_PMU_Traffic_Coverage_Section: + +Traffic Coverage +---------------- + +The PMU traffic coverage may vary dependent on the chip configuration: + +* **NVIDIA Grace Hopper Superchip**: Hopper GPU is connected with Grace SoC. + + Example configuration with two Grace SoCs:: + + ********************************* ********************************* + * SOCKET-A * * SOCKET-B * + * * * * + * :::::::: * * :::::::: * + * : PCIE : * * : PCIE : * + * :::::::: * * :::::::: * + * | * * | * + * | * * | * + * ::::::: ::::::::: * * ::::::::: ::::::: * + * : : : : * * : : : : * + * : GPU :<--NVLink-->: Grace :<---CNVLink--->: Grace :<--NVLink-->: GPU : * + * : : C2C : SoC : * * : SoC : C2C : : * + * ::::::: ::::::::: * * ::::::::: ::::::: * + * | | * * | | * + * | | * * | | * + * &&&&&&&& &&&&&&&& * * &&&&&&&& &&&&&&&& * + * & GMEM & & CMEM & * * & CMEM & & GMEM & * + * &&&&&&&& &&&&&&&& * * &&&&&&&& &&&&&&&& * + * * * * + ********************************* ********************************* + + GMEM = GPU Memory (e.g. HBM) + CMEM = CPU Memory (e.g. LPDDR5X) + + | + | Following table contains traffic coverage of Grace SoC PMU in socket-A: + + :: + + +--------------+-------+-----------+-----------+-----+----------+----------+ + | | Source | + + +-------+-----------+-----------+-----+----------+----------+ + | Destination | |GPU ATS |GPU Not-ATS| | Socket-B | Socket-B | + | |PCI R/W|Translated,|Translated | CPU | CPU/PCIE1| GPU/PCIE2| + | | |EGM | | | | | + +==============+=======+===========+===========+=====+==========+==========+ + | Local | PCIE |NVLink-C2C0|NVLink-C2C1| SCF | SCF PMU | CNVLink | + | SYSRAM/CMEM | PMU |PMU |PMU | PMU | | PMU | + +--------------+-------+-----------+-----------+-----+----------+----------+ + | Local GMEM | PCIE | N/A |NVLink-C2C1| SCF | SCF PMU | CNVLink | + | | PMU | |PMU | PMU | | PMU | + +--------------+-------+-----------+-----------+-----+----------+----------+ + | Remote | PCIE |NVLink-C2C0|NVLink-C2C1| SCF | | | + | SYSRAM/CMEM | PMU |PMU |PMU | PMU | N/A | N/A | + | over CNVLink | | | | | | | + +--------------+-------+-----------+-----------+-----+----------+----------+ + | Remote GMEM | PCIE |NVLink-C2C0|NVLink-C2C1| SCF | | | + | over CNVLink | PMU |PMU |PMU | PMU | N/A | N/A | + +--------------+-------+-----------+-----------+-----+----------+----------+ + + PCIE1 traffic represents strongly ordered (SO) writes. + PCIE2 traffic represents reads and relaxed ordered (RO) writes. + +* **NVIDIA Grace CPU Superchip**: two Grace CPU SoCs are connected. + + Example configuration with two Grace SoCs:: + + ******************* ******************* + * SOCKET-A * * SOCKET-B * + * * * * + * :::::::: * * :::::::: * + * : PCIE : * * : PCIE : * + * :::::::: * * :::::::: * + * | * * | * + * | * * | * + * ::::::::: * * ::::::::: * + * : : * * : : * + * : Grace :<--------NVLink------->: Grace : * + * : SoC : * C2C * : SoC : * + * ::::::::: * * ::::::::: * + * | * * | * + * | * * | * + * &&&&&&&& * * &&&&&&&& * + * & CMEM & * * & CMEM & * + * &&&&&&&& * * &&&&&&&& * + * * * * + ******************* ******************* + + GMEM = GPU Memory (e.g. HBM) + CMEM = CPU Memory (e.g. LPDDR5X) + + | + | Following table contains traffic coverage of Grace SoC PMU in socket-A: + + :: + + +-----------------+-----------+---------+----------+-------------+ + | | Source | + + +-----------+---------+----------+-------------+ + | Destination | | | Socket-B | Socket-B | + | | PCI R/W | CPU | CPU/PCIE1| PCIE2 | + | | | | | | + +=================+===========+=========+==========+=============+ + | Local | PCIE PMU | SCF PMU | SCF PMU | NVLink-C2C0 | + | SYSRAM/CMEM | | | | PMU | + +-----------------+-----------+---------+----------+-------------+ + | Remote | | | | | + | SYSRAM/CMEM | PCIE PMU | SCF PMU | N/A | N/A | + | over NVLink-C2C | | | | | + +-----------------+-----------+---------+----------+-------------+ + + PCIE1 traffic represents strongly ordered (SO) writes. + PCIE2 traffic represents reads and relaxed ordered (RO) writes. diff --git a/Ubuntu.md b/Ubuntu.md index 1a0368a7c2a0..0ec76c7e1537 100644 --- a/Ubuntu.md +++ b/Ubuntu.md @@ -1,8 +1,8 @@ -Name: linux-unstable -Version: 5.17.0 +Name: linux-nvidia-5.19 +Version: 5.19.0 Series: 22.04 (jammy) Description: This is the source code for the Ubuntu linux kernel for the 22.04 series. This - source tree is used to produce the flavours: generic, generic-64k, generic-lpae. + source tree is used to produce the flavours: nvidia, nvidia-64k, nvidia-lowlatency. This kernel is configured to support the widest range of desktop, laptop and server configurations. diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig index 09ae76bc9c7d..3d20c230df2d 100644 --- a/arch/arm64/Kconfig +++ b/arch/arm64/Kconfig @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only config ARM64 def_bool y + select ACPI_APMT if ACPI select ACPI_CCA_REQUIRED if ACPI select ACPI_GENERIC_GSI if ACPI select ACPI_GTDT if ACPI diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index 7d1105343bc2..5714cf6e3be5 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -69,7 +69,9 @@ CONFIG_ARCH_ZYNQMP=y CONFIG_ARM64_VA_BITS_48=y CONFIG_SCHED_MC=y CONFIG_SCHED_SMT=y +CONFIG_NR_CPUS=512 CONFIG_NUMA=y +CONFIG_NODES_SHIFT=6 CONFIG_KEXEC=y CONFIG_KEXEC_FILE=y CONFIG_CRASH_DUMP=y @@ -512,6 +514,8 @@ CONFIG_SPI_QCOM_GENI=m CONFIG_SPI_S3C64XX=y CONFIG_SPI_SH_MSIOF=m CONFIG_SPI_SUN6I=y +CONFIG_SPI_TEGRA210_QUAD=m +CONFIG_SPI_TEGRA114=m CONFIG_SPI_SPIDEV=m CONFIG_SPMI=y CONFIG_PINCTRL_MAX77620=y @@ -1214,6 +1218,7 @@ CONFIG_PHY_AM654_SERDES=m CONFIG_PHY_J721E_WIZ=m CONFIG_ARM_SMMU_V3_PMU=m CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU=y CONFIG_QCOM_L2_PMU=y CONFIG_QCOM_L3_PMU=y CONFIG_HISI_PMU=y diff --git a/arch/arm64/include/asm/irq.h b/arch/arm64/include/asm/irq.h index fac08e18bcd5..3fffc0b8b704 100644 --- a/arch/arm64/include/asm/irq.h +++ b/arch/arm64/include/asm/irq.h @@ -4,6 +4,10 @@ #ifndef __ASSEMBLER__ +#if defined(CONFIG_ARM_GIC_V3_ITS) +#define NR_IRQS (1 << 19) +#endif + #include struct pt_regs; diff --git a/debian.hwe-5.19/abi/abiname b/debian.hwe-5.19/abi/abiname new file mode 100644 index 000000000000..920a13966480 --- /dev/null +++ b/debian.hwe-5.19/abi/abiname @@ -0,0 +1 @@ +43 diff --git a/debian.hwe-5.19/abi/amd64/generic b/debian.hwe-5.19/abi/amd64/generic new file mode 100644 index 000000000000..afa38644acaf --- /dev/null +++ b/debian.hwe-5.19/abi/amd64/generic @@ -0,0 +1,27086 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1eea8ae7 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3221b892 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa3e37815 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x05cd2e87 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a4da2fc devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1dbc9463 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x20789767 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x22d7106d cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2547ff27 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25debe31 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29cce8db to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2b3143a9 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2c1723d6 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x334ad9ee cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x3fa350df find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4902fd12 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x497312ab devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4aed414c cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4cfae129 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x536ec99d cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5429d0d1 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5afc24da __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5de3fce4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62ad0b9f cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x65dd4166 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66d8e2be cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7211655f cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73044f6e is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x79a44f62 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7aaf7dd0 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7f79cd39 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x81939666 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x82ffcb77 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x86d690da is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x889ffe23 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8b9623be devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa121c26f cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa686294b to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6dc0ce3 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab444de5 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae1ce7a1 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae93fa48 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf386cb9 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbd45a28b devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbdc4106e cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf73fd9e to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc56f9fc3 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xccc6dfcb cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1d20ddb cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd26ba491 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc3ffce5 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdcf44bfc devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd92e93d cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe8dd771 is_cxl_memdev drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x00ad6433 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x08128c8f dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x371c9076 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x38cc7351 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x48163155 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x488bad77 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x544afd92 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x56bdcfde dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x74ab4569 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x814b449d dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x856f8941 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x93af4fda dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa39d96e0 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xab46aaa2 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb0134751 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb98deb43 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdd00ddb1 dma_buf_map_attachment vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +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 0x71835cf5 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x4605cf12 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x5005a47b crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xcea59375 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd8ca70b8 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xe5df5ad7 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xf6a3e957 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x0a473f08 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x27e9b800 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xd6d07d57 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0xaeb7f11b sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x112c83e1 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0x97e0f697 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x79efc2ed suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xaedc377a bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xb99abbd9 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 0x14b36ec8 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x37aad3c5 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3e54f43b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x541b6a93 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x5ae3d4f6 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x61f4b5ac paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7c192590 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7d3caddb pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc3129f1f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xd0552674 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe8a1cdc3 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xe913bca8 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xde9673f6 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x56431de0 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x3ea45272 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3337e9a5 ipmi_smi_watcher_register +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 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb40b7820 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 0xe98c507d ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xee00b22d ipmi_add_smi +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 0xfd8a5fa6 ipmi_smi_watcher_unregister +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 0x62808faf st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8acde181 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa57ed355 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe3fc732d st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x045f16fa xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x858f0880 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe6bff7d0 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x293837c6 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6ecf0a10 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe11c1062 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x92321368 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc141363a atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe91b07c6 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/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 0x075e6946 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12aa813f fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17e9f215 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1adc59b2 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25d4a52c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ccf9fb2 fw_iso_context_start +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 0x599fd729 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69be4be0 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ec2a82c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c8aa105 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f2895d5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa223a0b4 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa515097d fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xacb7a77b fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7ca2066 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8e682e1 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2772c23 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc560a208 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2565a32 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe023889b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe05d7ccc fw_bus_type +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 0xe8bdadb4 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec08dc45 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec273422 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeebea262 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5163782 fw_iso_context_stop +EXPORT_SYMBOL drivers/fpga/dfl 0x0654233f dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xf675113d __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01ed5d92 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02455661 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x03e72005 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0571c69e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06f2f997 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07a8b46a drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08e85fcd drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f61b461 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f6b8a99 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11e2f624 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1234061c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12bd8613 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14f5b26d drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x189e24b5 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18cf516f drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b109820 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d80cc6a drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f302312 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x204e2d3b drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21580c8a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21f30734 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24706339 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x248864f5 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x253a5bd8 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2797396e drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29805b5f drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b1faba8 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x31df3165 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32532ccc drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37bf4a57 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3cc1d4ae drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d2f6bef drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3fd80876 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x414f46fd drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x478a6cc6 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x496cdd30 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b9fac63 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4bb2ba13 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e073803 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fa6ce29 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5427d9dc drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54ed0552 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59eee2fc drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a33fdb9 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c2db391 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ca12650 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ff225be drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62694f52 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64079c1f drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64a2a921 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65540c7d drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x669a2c2c drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6807b39a drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bcf4be7 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f76bfd3 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x721c5b28 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72ab7a03 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76819be1 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77fc8080 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x791c9989 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e534990 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82533646 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x875714c6 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a009ec7 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8fa23ddb drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90ad2893 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9209a69f drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x931dc3ac drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x93557625 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f6bd556 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa17ea902 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1cf4dc6 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5002bda drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa79263a3 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9884529 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaaa1c20f drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb02eb363 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0e073ce drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4b7f3c1 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba0cfb7c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbda1df8b drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbfad62bd drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1d40f49 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9f75a86 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc0c5409 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc190fe7 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce8f796f drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd580224c drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd6d7dead drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda579f0e drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda79b4c5 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc24c024 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2cfef13 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe61868bf drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe79e347a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe94ba7dd drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9e82d27 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb37ffa9 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee1a04d7 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0febe25 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3133569 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8f5bc8a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa33a30b drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaa65dd9 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb6692a1 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc799078 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd4ec3a2 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfdb0a51b drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bf4680 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02190ae7 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e9651c drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043bb53e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ec3201 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0604c35b drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0793b204 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b44938 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e5ad60 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e6785a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f9ccf4 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a49ca70 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae3d916 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0cdaa4 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b59fa14 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b62ed56 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0babf657 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7e6585 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d156358 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4955a7 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f61ccd6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f68a5bb drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f94611c drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10360436 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1075dbf2 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108a1041 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1139d683 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1210e613 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129f1ac2 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1321edde drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13816586 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141f804a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d68921 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14eb7bdd drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x177276c7 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1798078b drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e65f89 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1865adfc drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1983ad95 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c316fc drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab64b93 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfea658 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c331387 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3816d8 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3ff76b drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edb9370 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa1a6f0 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20374385 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2257deb7 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229c9050 drm_crtc_vblank_restore +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 0x24f3613e drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x258939ec drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2600fac3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260dc9c4 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282cc891 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x286bdeef drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x289a66c8 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a391d8a drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4f82d0 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a88cc77 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c51cd44 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6a0761 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd4b582 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfacaa3 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfb6c5f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e21f6cd drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e995a01 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f7cc49 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31af84b0 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d555e8 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3391282f drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dacd5c drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e6d569 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3474f285 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e07110 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3668ca00 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f95daf drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37661128 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a755f8 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6e4c0 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380ce220 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3889c886 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x390db9b1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39191e56 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c24d27 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3172e8 drm_client_modeset_dpms +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 0x3c1a3209 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc8bf60 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d7c0019 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec7dba5 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f06b32f drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2b2dce drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb8a358 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ae8266 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b40cda drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x423c48a5 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4260a65a drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4260c4c4 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427d9e71 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4372889e drm_event_reserve_init_locked +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 0x452ac047 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d01f76 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48195a02 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48267879 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1abf70 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a23d935 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be94964 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c503136 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9ea8e0 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f24d3fa drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5029fe5b drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50979020 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e04747 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5154779c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535f0302 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54013767 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55626061 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e2f47e drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56561923 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b3311f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b66fb5 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c5f8e2 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5764d6a6 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b4b890 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aeb52ef drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c17c354 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c208ea4 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce93d3c drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d23ab44 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deb27aa drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4acd41 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f983afc drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa2cd26 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ca8311 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d7a597 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ed2e2c drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622f1b35 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637ec114 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64014965 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6447f3ec drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66455d4a drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a3ff41 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66acade7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66bf714d drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67343277 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6811a685 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x688572e7 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68fe9611 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab862f6 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b62d990 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b718079 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6564ac drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f85fa17 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70242f44 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7115e47d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719fc717 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a2b3b5 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c2de2b __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748135a2 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d32def drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x770d15f1 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794f57f1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7dee2c drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aab042f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afa8ee6 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c443423 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7efd4924 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3acf42 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8022b4bb drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802c666f drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b73b61 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fb3619 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e1e016 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829bfecf drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e8bfa1 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83699b8e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83939bb3 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8407cdde drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8438c639 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864efb4a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865fb469 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866c510c drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8680599b drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87cb01fb drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f81605 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889a185c drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8932ec01 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3d4b66 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a95cd36 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad14a8f drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c12ca69 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2633dd drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c346931 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d37681c drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3b5491 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc6eec6 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e837e39 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90231ff7 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9136db6e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ae3064 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920dac76 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9215775b drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92891313 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e25e3d drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94fd8518 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x951644e5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x951f2dd7 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x953d9007 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957ac233 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96109527 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ffe220 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97aaf643 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9844377f drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9915a72a drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a2456c drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e002f6 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab2d6e2 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3ac1cc drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b81b603 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc08a7c drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbec699 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e049392 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fddc039 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14bcc05 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d448e7 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1fb19cf drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f1490d drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b7c9d9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8132c96 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87273ae drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e29e85 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2c8253 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf2d779 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabfcbd3f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad09544e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9205d2 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae32bb84 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7aa4ff drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb26a9e drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2063e5 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb061cf07 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07b240f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0919a0e drm_mode_plane_set_obj_prop +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 0xb1480a23 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18e2581 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a941ac drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2482291 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3147b62 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b02bcf drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c7eb32 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40eac6e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43d7c84 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43f5e1f drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44ee39d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4905101 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6175965 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6cae6dc drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb738b2a8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb749285b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75d83cd drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7acfbc4 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d5137b drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba75e508 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaae067c drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad8d8c6 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc224844 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce336e2 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcc2577 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9784a5 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb2922d drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf94804c drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06a8881 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cabe40 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2091c5f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc21e3b58 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22af5b1 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34293ae drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42df6e4 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48d34fa drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4caf482 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56d0ac2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58786f6 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f6a038 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b4f9e5 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc78f9605 drm_encoder_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 0xc7d2cd1e drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fa16e2 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca051aaf drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabc35e6 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb365296 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc31087d drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5cb1ce drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc95e808 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5ae7da drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc41ee0 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb4b353 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebe4115 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08c83ce drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f9d09d drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16d4312 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd227ca9b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2cd6692 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5642643 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75cdaf1 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96c66e2 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda5ad660 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc240ea3 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde67018c drm_master_put +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 0xdf6fb072 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9735dd drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04824db drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0927aeb drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe117a9d6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12761ea drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1990c54 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe312a005 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36bfb5f __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4087344 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe408c42a drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe53524a8 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73d5f4a drm_connector_list_iter_end +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 0xe8dd9b6a drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9f7dbc drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec03799d drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc8f3ef drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xece9fef1 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd6006c drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeecc0b1d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0153c97 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf018e632 drm_writeback_get_out_fence +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 0xf2258115 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3db4e70 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45fb135 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46a7305 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf50d455c drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf519b496 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5736392 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf594c6a4 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5aebdb9 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5bf8e70 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b56c64 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c95c55 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f35328 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7be04cd drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf817073d drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ed6130 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa91902f drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa7ca94 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb455dd7 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb769359 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb1f10c drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2c3678 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde3ef71 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1eaa36 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb34020 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc7ba89 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffdfb3e3 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x9f44c898 drm_buddy_init +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xabb5a026 drm_buddy_block_trim +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xbd5b3bcc drm_buddy_free_block +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x12088881 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0xd5c68914 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0114eee2 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02980069 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0486cc68 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04aae97a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05486aad drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054eeca6 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x063f6a54 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072596d1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x084b910e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f22e96 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0acea06f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc5ab20 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7c479d drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d7fb3b2 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e48648b drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fedb2f4 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11519a81 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ba8059 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11e9d4a7 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1325b7de drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13d10eb0 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x164e1d35 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e04492e drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200dedcd drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2027cf44 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x230874f4 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ea2556 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f6aff4 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27204ba8 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274457d3 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2afb436d drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bfc1902 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c003f76 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c70bdc4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd34765 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2efec798 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f6fda98 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3205b4f8 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32979c64 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358c6574 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ef1104 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38968241 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ac406b drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f548a5 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a6d8ae9 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3af3cde7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1bf4fb drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f04f367 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6d5354 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdaed40 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ff5897c drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43570f7d drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f4a8d9 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4645bf06 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46ecdafd __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47462053 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a306d94 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9c66b7 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2adfec drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51de383a __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5204c678 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5297b460 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a43540 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53f08329 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f85123 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x560aa28b __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e8c840 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5731e99e drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58ab3c9c drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c66a96 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590467ed drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5972ddb0 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1f3fbf drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5de27f __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd3681f drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9d5576 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601cc312 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61004764 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654f551f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67fcdb91 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69224c7f drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2ddbfc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a710587 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c9c4c02 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e4b7acc drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e666c5c drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7366afd8 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74062de3 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79a800a5 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a091097 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed95d59 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f04ea drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x841b70ec drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84f59a8c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c52a4f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x867358ec drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87140c77 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x872fb599 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a0c295 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87b39a5c drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883d2cb7 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bcadcfe drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c50c728 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fdfa439 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff4e6dc drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9281335f drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a8254d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95df7e65 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9683520e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bde79aa __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cbaa408 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d49dd76 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f25a544 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fc90f3e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b9b302 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d2d822 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c6d386 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56498e3 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e23e8a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac1f4da1 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27f57d2 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb361b13d drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb433ce36 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4341c73 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb55dbf7c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6b50424 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb753cc8b drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f73c1b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb985374c drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99161df drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9be3af7 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba1ab773 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb90af3b devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc8a184b drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc327d741 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3fd981d drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6652512 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c6b7c2 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84f3a25 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbdef70e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4e8f84 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1a731a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea65918 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd273b158 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4721de9 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a652da drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6e974d3 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86b481d drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a9b819 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b1cd81 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb399458 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc2495d8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc49d435 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfa81303 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbf4c48 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff718dd drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0017c3f drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03517cf drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2131823 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4374585 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe54f10c9 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f3a251 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6385527 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c2df57 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea73c545 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb96f87d drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec22bb97 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd21957 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefe3bf4e drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2722aac drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30c5fb4 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42a1608 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf446e58b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf454f372 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4cd6c9a drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf512578e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf55a41a7 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf75480fe drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf92b9d04 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba0454e drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7e7c8e drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff184210 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff896345 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0484e5c0 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21dedbf5 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24d319d5 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x42100919 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4ab43a23 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c4bd304 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x58035215 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b532c0f mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e35cfa0 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x766c5dd3 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8d6ddb5f mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9989700f mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xacdbeecc mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc8e0b9d mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe5741a1e mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf1ac2bf3 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf40bc85f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0c0ff672 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x116e453c drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3b2b4728 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x66a4ff84 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x915d6642 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x92ef8465 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x957c73a6 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xaaea68c9 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe3d353d9 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfdcd4acc drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5e9a5a94 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x61604a49 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x68557686 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9080769f drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa13a3d94 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09f07e7f drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09fbbd86 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x131755b1 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d0c3acb drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4e55ccfc drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c13d215 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9144df98 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9ed3eaf5 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa22d06d6 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xad1f45e9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb3e9870f drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbed76210 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbfbcb318 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2363aa0 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd6f65e66 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5954b1f drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x00560700 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ea2534b drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11e0e2fc drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x120799f8 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1fc6ace8 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31ab2ebe drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32018600 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x344ef4df drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x485d13d2 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d6276aa drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ee4a3cb to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56ab0b13 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x690d6c02 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x762a3d31 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e931272 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x801b2f49 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96d2ed8e drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ec7533d drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa6021891 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xafa88294 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf9d7595 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc55a6dd6 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7233b32 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7397086 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd25f8d02 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd4bc00bc drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd798ef7 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06a11426 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10080728 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a8e219a ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2962b70d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a7cad54 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ba0fcd4 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e6725de ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x338b949c ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3837e7e6 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f604f61 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fe8d73c ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42742557 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42863a77 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4364dd49 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x461da3bd ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4773ce1e ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2b852f ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bae213a ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cdc5011 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e46e6c7 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50ee21ef ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58948bea ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a7874e4 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dbaae75 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5de1e7e4 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e1c3254 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f2b2263 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x616fe823 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x618024ad ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x634ecff2 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67eb7b89 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b510bd9 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x714bfcad ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79c82b84 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a42b336 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a71e592 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7adf6497 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83e15809 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84456aaa ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85801301 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85c91632 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x888ec858 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e84522c ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cf38566 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fe61db5 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa536980c ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9d25a45 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab7e2055 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf9f4f42 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2668033 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2f7d408 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5d1d6a7 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1b3340c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4247c83 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc446ab14 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc66fcd2c ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc2492a4 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfeed7c3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3478c64 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdda7e50f ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfa32709 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe02934d2 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe937922b ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec09a2f5 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xecd1366d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf124905a ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/hid/hid 0x8b143ae2 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x03218513 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x09d4febc ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0b29091e ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1455ec47 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1751447e ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x370f8a6b ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3786bb38 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x381d2ca9 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x392eb209 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3c7d621f ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3c859e9c ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4425a7d3 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x48731611 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4c6afbd7 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x53c704eb ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5658d9c0 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a956f25 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5b259aa7 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5cbe80a5 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6c62e47c ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x81b65918 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x850e204f ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x893e8419 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x919df432 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ad2e77b ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9f2c830a ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa22257d6 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa369626e ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa873c60e ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xba146a2e ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc97dc510 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd154cac4 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd69ae7f4 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd75d20e7 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe17798de ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe9ffa5e7 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xea85643a ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef4dac74 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf16f22c7 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf71a7768 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfa8f0d00 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfc0f3022 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd2d24e3a vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe082dd91 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfb3d68c6 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 0xeb973932 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x16301c47 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x68ce43c8 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe8691483 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x237745da i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb972d148 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x32b1d1e1 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x15ed2cee iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x76f46910 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x043681ce iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x117560b1 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x083c36d3 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1ed25361 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa42859b2 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x07aa8848 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x17b9f4d6 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x639d8897 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x22dd0a80 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x252077e5 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xd21fec7b st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0ae40bfc __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1abd13f0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2253d730 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x23c1585f iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x28400266 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x28c8e4dc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d76fd99 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3cf3522f iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4286ddef iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x44d213f6 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5140e3ed iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x56eea62b iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x60d0db00 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x659254b5 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x733928a8 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x87d01131 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x9aa8c089 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xa400331b iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xc1691161 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xcb840583 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe9644687 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xfe74fef2 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xfef2e296 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x3a12c167 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0fdcf197 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1462f31c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1b451002 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xaa1364a0 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35ef8260 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa1853caf iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc565e974 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xecd811e2 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x52284f69 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb395d67e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5e72b8f5 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7ad2d264 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x88981c95 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb4f46597 bmp180_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14af8e42 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ae14306 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a87ae48 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45656d6b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x483e2c7c ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57df822c ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa682eb4f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaba21bad ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae737454 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xccbad0aa ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd199d367 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde639d6e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb4e25b5 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf20765bf ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdf3178d ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00690097 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00dc0d61 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f8fe3a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013bcad1 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03f7c2d7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x047013fb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095557a8 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a640bdc ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d47f7d7 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db7e576 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1091521d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ec5809 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a98452 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15937253 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d6f7be rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17dd2ec2 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c8ce251 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc935b8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb73a13 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x240ef11f rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2739005e ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x275038cd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29277567 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b2be010 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bda66ef rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ccfae88 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5b793a rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30f4d3ac rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x314ed8bf ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330717e3 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331eb655 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x343d6416 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34da0896 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e8d4af rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c6c70f rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x393b8784 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399e52d9 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b7ce2f5 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c23f9a8 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d459f8d rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3efc50b9 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404b637c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b820b4 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c5e84b rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4171e8c8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42ae0236 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c103f1 ib_port_unregister_client_groups +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 0x472cdc7e ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4890a514 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491d2b71 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c73dd62 ib_drain_sq +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 0x5000e827 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5206fc90 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a2fbb6 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54af016f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e96d30 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5719f7cc rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a620600 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ba39d59 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bca19b2 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5df2d6c0 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4e277d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb65dbc rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff0169e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60134a64 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61bdbd7b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6239c318 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643daebb ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64fd1f3c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6584750c rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x666326d5 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6754c339 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67db1afc ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69eb2dd3 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b903869 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c15dfdb ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c65f563 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d34d92e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d50e201 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df08eaf ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e6e324 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75181d21 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77423fea rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783912c3 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ec97a7 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ecc9d4 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba3455f rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bfd8def ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fabd964 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8118783c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8219d056 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8281aa26 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x855d0ad9 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85918d19 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86118cbb ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x876ebfff ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8985c3bd ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e0ab313 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea60805 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91249e29 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91532657 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x916a9024 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91bd7381 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91eb1f23 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x921d914a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929d057e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94384ee9 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94a5de76 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950e98a4 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ea0d1e ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99f5f880 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa07ee606 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0dbfea2 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e06944 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa32dd3b2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e12262 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53043c6 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa726b4ce ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa805529f ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8376521 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa899021c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa922ae68 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab4c31c2 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab73e9ad ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca05f55 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa54791 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafc70c7a ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb32faca1 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5411933 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb64cb972 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb793c4fb rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7cc5e44 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94cbf22 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb7464a6 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0c495a rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0b6e92 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec693df ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfc6a031 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08c359e _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0dadef4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc282a254 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51cd352 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ab4226 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d3675f rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c149b0 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaf00ccf ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbeead48 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc71e77d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce794f10 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf38fd49 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43808e7 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8435c59 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd844bcf7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda4bfdeb rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb7ccbeb rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc431e1a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0476359 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0ac8c4a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe246a27b ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe34d1d34 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4135853 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4717d31 ib_query_pkey +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 0xe5e20525 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d874bf rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85082d4 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8d92b9f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea6b52ba ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb450c33 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd75de6 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf379b3 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee45fde9 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea69181 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb06043 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef93a4da rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2049f10 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41dbce0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf44d8df0 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a146c4 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf884b5e3 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8c6df53 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1692cc ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc11ff79 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc567be5 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc760524 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb893e4 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff57de2b ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09fb5fde ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11c0de2f _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1319b5dc ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17ffdb5d ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23e82446 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x259c882b ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34298c8a uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4845ed1e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a637180 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53b1e704 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68ef80b5 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a233316 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80c02f35 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8af81a06 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8fb6a683 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9914e37d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x994d705d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bf46015 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cfd83d2 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7616725 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa89373bb ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac714ebd uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb514f85d flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5b58b6d uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3bf0522 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5d154fa ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc84c6b7b ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc14edff ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcdd784e5 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd37377bb ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde2f9119 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe02736d2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0296b33 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe96cf728 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedd146b5 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf04442c5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5bf44bc uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0cc7df11 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x251507cc iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x43a6bfda iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c22ea81 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa03184d0 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xccedca3e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe69cf1bb iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf54c73ee iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05b486cd rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x077b3ac1 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bf8461f rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e0a0e57 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f78aa57 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16b605e9 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e9b9ab0 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x248f00d6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c7b12a1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47137241 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x493d382d rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54ab7baf rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x593e74c0 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x642bc702 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88e872fe rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b4281b1 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90ce7587 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x972c988f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97ae2835 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cd68814 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fe04562 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1be00d4 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4d55cbe rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6dbf03b rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa842b2c0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac5811b2 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb895ccfa rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8d50501 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca22875d __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6540f26 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb09f1da rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1abf63f rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf653cec3 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf868eb72 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0190b09b rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x09a95b7e rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e0d9123 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x152dd874 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x15ed1810 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b545eeb rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1f0e88d5 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x25c846cc rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2f52030c rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4adeb8d2 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5121b900 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x55246e26 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5679c26a rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6671ecfa rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6db28ffd rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x71e53a4d rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7e7c114e rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x83b3534e rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x844e4cb8 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x878bb484 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8a26aeab rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x964292e6 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9dd09cad rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb153455a rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb8b94f94 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd7cdac44 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf0bd03f4 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8160313 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfecc77f0 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x03732f4b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0bb2ef69 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c30e694 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x889af5ea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xababc05b rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcd5c4e3e rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd9a714a5 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 0x3712b537 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 0xa99bebef rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xadf309fc rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xefb20282 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x963d123b rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ed96d8b rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa11c79c1 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa8b390b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xca4597a4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdd4185cf rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2eab5525 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x36dde258 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3d292797 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70cbb08f gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ec86d7e gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf0f0101 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe461a944 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe7816d35 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xffb9034c gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1bc334ab iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x99df2837 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb66e61e9 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7f940beb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x40957974 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x697ffab3 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd1710eae ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xad7a8e28 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xd9aa64f1 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x01f26ef0 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b88c859 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x55ba7bbc sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe020dd0c sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8ded078 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc5b82e6d ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe8d33603 ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3faf4624 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x53e2db27 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x7e7c3b78 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x82fb61e8 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xc20138ae amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf0beb69d amd_iommu_init_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x28049d63 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6579fdfe capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7413676d capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7af5d6a0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x92e77a47 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 0x2d36594e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5955ec51 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7d258684 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b4aeb72 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x01198f1d mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf9a7886e mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0246d69d mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06e9b862 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f8d4a4d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f781547 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2535cd76 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2892299e recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32377b48 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40c3b011 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47c5c24e mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4863d10e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c5f24b5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bc4cc4d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82b1897a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90d9e887 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92a6efee bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa59d7fd4 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc682ddb7 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc20bbad queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd43fbcaf recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7ce84bf mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe3bdca6a mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef0aa125 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa716693 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 0x6d47d70a ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc6b08d34 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x421457f9 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x4b4ab70d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x54e9fb6e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x72b2d392 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x460c91b4 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b143ddb dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa2ba6bf4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xacdcec5e dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb9353ea0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbf357c95 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x1c36038c r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x800f6316 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00f9552d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b2cf80e flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cec4ee8 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x736d61b0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d0846e8 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91ff13f6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xce3dc9cb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd16b3fc flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe50a7f7f flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe569accb flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf3329fa4 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8da80c1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe168ece flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0fd24116 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5cd200ef cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x83a3eb51 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf48d58f0 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x52621b78 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xfc2ebae4 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x00dc4b9b tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +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 0x6725ac83 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7f526e2b 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 0x0cd2e05f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1214bcf5 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1f167327 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x208307d7 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x37ab90d6 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7c782560 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 0xf194a7e6 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f74943e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12074b1e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e9bec45 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1eaddc01 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x314299c3 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33591623 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4459759e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f72f1c2 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x521d2ca2 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5444b3ff dvb_frontend_resume +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 0x74f1edab dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77ab1b02 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79bb80d1 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b889406 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8101263d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x889fc811 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e71b7da dvb_net_release +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 0x947b1522 dvb_dmxdev_release +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 0xbd1a1810 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcefb050d dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd73fa0bd dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4babd7c dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea296d09 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff201e37 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xed57a427 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x559baf8d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x26af7e2d au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e43881e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4be89d1b au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4efbdb59 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5bc5351c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x683d3d7f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8249ba0d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x87deeb25 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xad956961 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xca7a6675 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x162ee78e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x2f0abf04 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x9b44ce7a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x8b0428ab cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xab189b95 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc73357ae cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe34dd165 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x89481543 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x14332440 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcef1dc0d cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1d6811e1 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb614e0b6 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf113fa1b cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x9fa0cbbb cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0098f64d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5d3dff55 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8e2059bf dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb96006b2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf332fb46 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x25223c44 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x350504f3 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35474924 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x358fd2a7 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35a5fc01 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52c2d44c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x68649412 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x714e744f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7508bd2c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c0f1e80 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x920cb353 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e5e0834 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa75f7d14 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb313a3c0 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5980885 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcd6bf8dc dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09fd283e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x34327ac1 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x548ea0fa dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81ff376c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x99d0d5ea dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdb1be7ce dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3e671d05 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x565782ef dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaae3ea63 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe6b3e957 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa011a608 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9a36aa36 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x19c27d41 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1df3db96 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1fa3e73f dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2e741a55 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3978c269 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6ec15881 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x74e62394 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x84ce6ff1 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ffb91cd dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf85b79b dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb9c02277 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xed3df6ea dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xef5a80c5 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x18c37b76 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x31391383 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x45365098 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9439bbdd dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc04f2881 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb6568925 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xcf08c4ae drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5d2f3892 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc1185896 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xba80081f dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x16907598 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3b2d6850 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x90e34c38 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4d425dcf ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0407d793 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xd97c8990 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x68d4536f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x014f5353 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0bf733b5 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x07d38640 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xa1d03ff2 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x1fcadd03 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x35f2315f l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x50f399c8 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xebd03d2a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xb21b4681 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4bf58a87 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x65a2347e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xfe61570a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xf4d417ad lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6e8880e2 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc967b5cf lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd64412ee lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf78a974d lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x739e57e9 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf55f8119 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc59527ee m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x03ae7233 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xe8060743 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x10bb6d63 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xeda9b401 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x5bbfe6bd nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6db4368e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xad332e6b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xf1771f73 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x72711bd9 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc437f4b5 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7a0e9123 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf87581b8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x4a35b82a s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x34439200 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x9a0993aa si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2532a45d sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xfec08d54 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc4473ca4 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe5ada71e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x620b7dfd stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xeb9fe540 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7efdf35d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4e1a3bf7 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9aa68eb5 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe9d2ddd0 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x9dd63f93 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x6b904963 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8e556792 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x5ea8a1ea stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x6e0efef2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc2bf126d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc8ae9977 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x16f5afc0 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe296799a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf043ac82 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x35d785fb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x307b67d5 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x27c15286 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xffb322a9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xaff5a2be ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x627dc9c1 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa0c2ff73 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa0ddf921 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0fb1f853 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x114cc534 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x43f29724 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x44a4c5f9 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe3a4f6bf zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0f4a3bc0 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x230a8dd4 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x36dd2277 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x84c29b5b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8fd3676f flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e81189a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb0493ffe flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4157ec10 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa70f3849 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc68f7c17 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf22ff878 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +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 0xbd76625c bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf01e084b bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf51a131a bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x46053c11 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5113e74f dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x58c22bd8 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5badd1fe dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x65f33994 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6803b2d8 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d731d1c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8299b79c dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa8ef56e1 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4897acbb dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x36388699 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5079a837 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd915b045 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdb6d4745 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1c53548 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 0x1c9e40c2 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x408fee0a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb02e4398 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb8fc71b3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdee5453e cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5cb310d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9d310b5 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x05369e68 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6d532d2c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2ef40bee cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4e52e7fd cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5ce3921d cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x87e20b1e cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1b9360e5 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3da33316 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68a74fcc cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x89841335 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8d9cd2e1 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaa37b6e8 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb0cab6d cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03f23e87 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08aa30d8 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a1d477b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f0a3537 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x506005fd cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x745efee6 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77ea16df cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7875706f cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7942ffb0 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7dfa37bd cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e680d61 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a3e4307 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3cdee9b cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac09d4bd cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb23fe071 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3050b48 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcade3d6a cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd09d5fb0 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd894857 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe294333 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4bc0b13d ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x056f9ae4 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0653d107 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b2487a7 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b3b0a3d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3cc7314c ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ab01a97 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71b02565 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x814cb57f ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x819cc887 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x868a0343 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x915c8877 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa011f913 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9704e7c ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae853cc6 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe6365b4c ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xecdbde20 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xffaca466 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 0x206c1eb1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2cee7515 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2d36b607 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x33e06a91 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6231e11a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x70e8fd86 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7a8e1951 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x810ac32e saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab64bea4 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae708315 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc3757b07 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/radio/tea575x 0x70b9f7b7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x77c313de snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb921b925 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcb185735 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe8031548 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe97adddf snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xff946430 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2d6e5a4d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0xdd955c3e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa3a9d578 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xc1c81940 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x24ddcca5 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3d5f4b04 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3e474716 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xee444099 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xfbe565fb mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcf014fa6 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x40ce2e0f mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x0b0aba22 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x96149346 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x26a07f52 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x635c4a53 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x15081bbb xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x87eca930 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x60e261ac xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x73954d57 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc3b52f26 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1d2a64af dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x36e2290c dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x75f2780a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x945fe3cc dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99ea2c3d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9b4fbf05 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaabfbddd dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbbac1832 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdfb90623 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2542aa3d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4f4ccd35 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x64adc7e2 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x789956d0 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 0xa331586a usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf877077e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x81f5859e 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 0x1c905c1a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x69dfea55 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x83da1db3 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x94a32fab dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb3ba6fad dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc89fcff0 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe81384e7 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea6856dd dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec1c8695 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x62b59749 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd297c337 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x33c8c9ed em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcfc1ba0a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1ac4a7f2 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3dda3c51 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4baf076f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c67ad56 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x537ef92f go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x56ad695f go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x91ac0215 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd8fed4c go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf75b03ce go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x20319efd gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2660bb6b gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f3e5f5d gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9dc5ce3b gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd0960af2 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe7e60b4a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf168d6fe gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf1b63f1c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x70ffb542 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x852d9f6e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc436654a tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x08e62395 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2321225f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0ed4000c v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0fdd5c06 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2aa89fbc v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8c8fcde2 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd5e62587 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf8be87f0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x76034534 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8349ddc2 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd08592d5 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf8975b3d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06946d8d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a3ac378 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1068e5e1 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11fa0eda v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12527510 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x185d4c5b v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x258be914 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f30e154 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x300cf555 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b71b171 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d635a3b __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e71d05c __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b075001 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67468285 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x694b1b4c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6edbd609 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77386494 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7884acef v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x795dd251 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ec609ed v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f733e07 v4l2_ctrl_radio_filter +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 0x8f2b5967 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9047d5b5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95d0161f v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9941fea6 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99f72339 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a17e212 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cf8ce4a v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ccfecf v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa41c2bf3 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5caa702 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5e4d016 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf3c5378 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb386830b v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb52ce679 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb581b656 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb87f8977 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb96cfcb1 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2441bdd v4l2_ctrl_subscribe_event +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 0xe038a321 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2626aa7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5a72847 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe87512d9 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe999fe65 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba4654e v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xece2cba7 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed18e6b7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed378ee0 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4e03034 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf606439b __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf730e6a0 video_device_release_empty +EXPORT_SYMBOL drivers/memstick/core/memstick 0x191d5a15 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a588e5b memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x21b0106f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x46007b27 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x76237ecb memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4771506 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba00a51d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba37c202 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb4e54c7 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd3f1d8c3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xed2e6365 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfc65acd1 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0054a55a mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00e071f1 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05326b4a mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b298f0b mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2235c523 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2eb673ed mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3287f901 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x395adba3 mpt_free_fw_memory +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 0x61bf7f1c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a368847 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e77455b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76c1e671 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x778b4a18 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b77497d mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e5c700b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8446e30f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87dd337f mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88206b4b mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8897f91e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaebd3db5 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf6672e0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6c9f113 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9beb748 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb785bff mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8d32eba mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdaa1debb mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde6674dc mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe529d819 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe66258c mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0df1a939 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1013e1ee mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f25672e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31c2a14e mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b1a01e5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b557caf mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4125901f mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44669097 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f23ed61 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5855af14 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d34eaf5 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ec1eec8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d11102f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0ad16fe mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa447e2cd mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8a867f4 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb75a012a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc10fcc53 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc69a29b7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1aab71d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1aca8cb mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd95b8e8b mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe09d3281 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe22ca798 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2bccb3a mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7d0cdd5 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecde7697 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x2a31e7e4 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xa5862135 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xe99d152c axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x97ee9a40 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xcd676a63 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xf148729b dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x57d8e85f pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc0dbae92 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x387a5b1e mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x42f91175 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44908235 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x63bbc6ed mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64febf02 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73d598a3 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x997afaea mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb393590b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb4796d2a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd1fb7874 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea39c1c3 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 0x24676114 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2fc0bb7d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x306c2bcf wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3e497ae6 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x893fd8a0 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbb056339 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3131ff75 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6224e705 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x7d92e2ee c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x91cfe2fc c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x0975f9fc __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x168b3bc7 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x1c711970 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x34bb54d2 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x555b74f7 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7c331474 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xcb86288c __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdb386c98 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xf3cc0ca4 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x000acb37 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x2a362473 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x46f0626c tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4e7e70a8 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4f4c9573 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ca68de6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c705ba1 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x89a09d60 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9636b125 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x98f0e162 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc3d3b0da tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xfba2f6bf tifm_register_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x16b3a031 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2716fc32 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x423bac59 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4ffc08d9 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7801ea4c cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x95bae7f9 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xce4ed99a mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x192ff8d5 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4384f56c cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6220d602 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x639c3250 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x942546ea cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd855dab2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xef559703 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x64900770 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9304927b register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x99fc03c9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe0428346 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xcfa1e782 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1c2b1f6d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf22addf9 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x185c32d1 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xdeb83951 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x021bb480 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0263b1bc nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x04aecc97 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f5c0ea7 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1180a32f nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1feb32f1 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x495ed2dd nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6e4124f5 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x71a8ddda nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7870fc9c nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7a98725e nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82bfa5a0 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x88e73dc5 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8ba8c869 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x97e5a002 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99dce870 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0ffb12f nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa75c9355 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb5f616c0 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe48e6871 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeb69805a nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff80c279 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x17256882 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa80ac257 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x32c8ef6a denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x95ccb4b6 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x06dead18 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x20510390 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3645f54a nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3c197d91 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x56cf48e1 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7bd1ff9b nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x83137314 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8d609b43 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 0x918a10e4 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa06feb81 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa188ea8f rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbb7984fd rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc339a32c nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1173cc5 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3a2ef01 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe7d86a2e nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf2b21e1b rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0aa29e2d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0dbb3bd8 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11be4c0e arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bd707a7 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x39021023 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d21c1e4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5f5e3d49 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x75ff4320 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa1e4ac11 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4d74529 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca0fa759 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3cd6b3a9 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe4c48b30 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf128a32c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3cf26e39 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb8ca9b18 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe6c48bdc ctucan_suspend +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0246b449 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0991c513 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x118f8345 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f595f40 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c2c12c8 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x316f19d1 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35d598da b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b1196c6 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bdcfb9b b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x541151fa b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5844d780 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6156bcd4 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64981c49 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66b963b5 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x77b2276d b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x793bd192 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c99cb9f b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x804da06c b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8516ba92 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8828e9a8 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c36d7e5 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e43d06d b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9320af97 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x946bf67b b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9172be5 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0d2a225 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb11db4f7 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb45547f5 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc32c13d3 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc37217e8 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcac772da b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd14cccb7 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1e4d423 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9ec11ef b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe84b612c b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed543dea b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9386494 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff239fcd b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3bea08b1 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x51304dff b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6783e278 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe9c587e2 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2c7fcb6c lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x420c9af7 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9ccc1965 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4f1e1382 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x041cab25 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4a16cc99 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xce4a0147 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe21bc9f6 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x30ca5aa7 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x40196309 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x669092a8 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5500d222 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x68209538 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 0xb12dc8bb xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf1c5cef9 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2b2cd072 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62f0a905 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6f752e1c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9666a1ff ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0b8bf0c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa1308999 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf1eaaef NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc042615a ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1556e72 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc275729b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x57f1ab94 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x818eaef0 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x09a83a67 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9bc108d1 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 0x208bb920 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26d44e00 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2de54ff2 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36cc726a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4949fe27 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ecc2434 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4fc2a5cd cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x63c5a6c0 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa95fd0c3 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4706d7e cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb89601fe cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbff9ee72 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4afb72f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcb71625d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6caf828 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6c9d71f t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066a9480 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0caa58a2 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1957103b t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x199facbb cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f7983ed cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x212995a9 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21c81e3c cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22b8dd4b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22ffb16f cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x347844c2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37899231 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x428555b5 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b36f95f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c546e41 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe03dfd cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x528b5141 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d86edcb cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69c38b98 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e3f1b53 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7042b5a9 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a137071 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a5807ec cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cb6d717 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x845930e0 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85da1842 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91320653 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91723b9a cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ee81d96 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f8ece3d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ff57586 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa279cbb2 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4a2e7dd cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa50bef01 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa3b4741 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad55f275 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadf51d0f cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7df2aa9 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe44baf4 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3ed3244 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7c8ad46 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca14c238 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdd524be cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeba7bc8d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3a895d3 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf526d7c2 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd2cf744 cxgb4_reclaim_completed_tx +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 0x3fc13d85 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5d7a99b9 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6ad243b3 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb0f90377 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc0965988 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd529c38c cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf2546d1f cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3b0e3395 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4f879184 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9d4945fc vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xafe03fee vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdb86f044 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf56bfcd7 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0db5f785 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 0x7e95cf6d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x010ec147 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x89eacc2e fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdef9decd fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xf50f7134 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0a8021aa iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5da42934 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x12b3157a prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x50c754aa prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0932bd5d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a9bef4 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b46c0a3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b862991 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1172f053 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x248b0b30 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5792b3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f0978fb mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8d5f37 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4074eec5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x450b59d8 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb57bda mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f5712ff set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529e569c mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5403bdd4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57325851 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e9a85d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d2f9d57 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6348a606 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654abc70 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d8be36 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x693d777b mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7422c8d1 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79fd0331 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x854a2544 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86882979 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b6e616d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f9f841 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978dc200 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd234d1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa509829a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab362190 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb111d105 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb160856a mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1fff2ed mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d142f0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcad14ea6 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce17858d mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce702071 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd938ec83 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd551c0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff79535 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e21a7b mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe53ac0c mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037b795f mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ef14f8 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x094cd8c0 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa18d52 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b035466 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc1b57e mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d4717c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17cba68f mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d664f0 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19bd541a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aa314a0 mlx5_cmd_create_vport_lag +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 0x1c71e3f0 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d9f3b9b mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fbb12f1 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2124a675 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22e4122f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x247e01f5 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x278ab40c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x286f023a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f21ce6 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x297d0422 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aae2b0d __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df1cd97 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e631968 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3502390e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3528c1c7 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35f832e4 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3750c4b0 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a898692 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e9b0cfb mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43543fba mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44d22866 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edc7147 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ede984f mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fda3240 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51538f41 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x543c44d9 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567dd200 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x574328f0 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588f21d7 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a23f213 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a386fbb mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b35f08d mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c98722d __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d8202b4 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb5bb1e mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f358d49 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ea97e9 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x632b7f25 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6376be87 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6474b295 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69d8e30b mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b3b294e mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6daaed63 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f5799ff mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x735a17c1 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a410cb mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79392562 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b153775 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dad3aef __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e545363 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818095fd mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c6d02b mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81fb5ca2 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85dbc1ba mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8674a61e mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89772979 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c12f637 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c44d2b7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d422e33 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e486bc2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9007e9bd mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90296240 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f486f4 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d50584 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932228e9 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95df4f3f mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x963c6ef4 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9693d725 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98e7b144 mlx5_eswitch_get_vport_metadata_for_match +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 0x9d917135 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d95a2bf mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9d3a1c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f7c20bb __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1ec154b mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c31b5c __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6451b14 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f9cb72 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa978a95 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab9a5e8f mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac038a20 __tracepoint_mlx5_fs_del_fte +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 0xb0fe4bbc mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c2d333 __SCK__tp_func_mlx5_fs_del_fg +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 0xb2d628f2 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb444e7a8 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c1009e mlx5_sriov_blocking_notifier_register +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 0xb6afa532 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f9d9e7 mlx5_modify_header_dealloc +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 0xbaec6cb6 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb088b3d mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd07c03f mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe21ce1c mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07afc8e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25e7967 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc30d9732 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4412afb mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc563cae9 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6b04191 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7a55310 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8230cae mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87f3159 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a5f3d3 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a91098 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 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc78b02e mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd4c20e mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce2508fb mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3baa3b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6ebaa6 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02d92a1 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd15625c9 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2aa89e1 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f17aaa mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd740e4a0 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd87b3a3a mlx5_eswitch_register_vport_reps +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 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0a42182 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c80968 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e5efcb mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fa7749 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6419b5d mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b0f49e __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7cf4f7c mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8969ba6 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd85d30 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec111903 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a648f4 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c68cd1 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3419710 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3680a96 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4436a24 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf690ebd7 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bd1bb6 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8f12db7 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebbee49 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00888689 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x081eaf7e mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e09962b mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1a8adb48 mlxsw_core_skb_transmit +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 0x240f737e mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x378a4081 mlxsw_afa_block_append_mirror +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 0x39e77c61 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +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 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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x70c06bb9 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7281acc7 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76f85aa0 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f13ed14 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 0x944d5e6e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0xa597aead mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe6ce463 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +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 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdc2125b9 mlxsw_env_get_module_info +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 0xde8f2b7f mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeadf1fd3 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee1e4c85 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9546f17 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2368fe50 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xac436786 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x573e7935 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9fd3c52e mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03c2868e ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04629ecd ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06e79e1b ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0706da32 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a5514e5 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e670137 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e8509ad ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0eb4206f ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f6caf28 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14f46f23 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a40c2d3 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bc6f0dc ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x234e5207 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 0x2eb0c8df ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31bd1f1e ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31dd81a4 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33d85476 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39cc2207 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3baf9451 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d3d5c12 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3da2f3ee ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46048c35 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fa3175e ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51001474 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x559cb392 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57f75a4e ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5838d8c0 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61d71762 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x672e991f ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67ed6c42 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d83c2e4 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7108f078 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c8fe184 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7de36463 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a58ce5 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8380e178 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85e3d49e ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86388358 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89462ddc ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d1ea681 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d496919 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93176471 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93e816ce ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98e2bc4d ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c9de5f4 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e7b6cd8 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eaa1dbe ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f979aec ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0e8ff29 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9b1e443 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaafbc7cc ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4c6e879 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6d40b3a ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc503b40e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8937194 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8f2b57b ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9e21979 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd58c2b1 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfc61a39 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd040ff4f ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6227bc0 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7f70d80 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8571a67 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde998177 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe191d6ef ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3bc09d8 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe41c84e2 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9a4cd70 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea3e105c ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecfbfd6e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf05f8939 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf777324d ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf9762c ocelot_sb_occ_port_pool_get +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 0xb8dde80e qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd3b80efc qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe496fa74 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf7f7f5be qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3db8ed49 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x75a3ed75 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x01c16c16 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x48ba919e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6ef6b8f5 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x75d18103 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xef7f9096 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x1e387827 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x6d2bee18 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd42653a8 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd7fc37fa mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0df696ef cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x695a0632 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x4af972cc mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x21b5a0cd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x58dcf71d mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6527ef27 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6a9d7a17 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x8cec5790 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa4fc06bb mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xab092221 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb961d93e generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xc8ae23e3 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe06ecc0a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0877a857 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa22bf5b8 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4a18cdc3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x15766442 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3fe7c37a register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5a070c3a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc872abcd pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xf5f00ddd sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x03a52267 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x410d9fb0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x423031e3 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x87e2b094 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x95b18f57 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x96495f0e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa40e69db team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xd04b7479 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0xaf05cdb3 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xcda833d0 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfcdf6ea6 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ed38478 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x235e2abe unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2ca5ff69 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c9fbb96 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x844d1793 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb997fc5b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc2a2ca45 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd23283d6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd95ad21d register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe5714b92 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0052722d ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x03e8a7c7 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19d16539 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47c70ee8 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7878770c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8b18216b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8eda653a 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 0xa72a358d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd35a1b77 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdba2da6f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf02e8e9a ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfbb49b54 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc1e4b18 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00b2404b ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04ee20f6 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06cd40a4 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08569ee5 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08b2a260 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0afeedcf ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dfd4897 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1068cfaa ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x122994b5 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2083ba20 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28f28ce9 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b92c776 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ca84fc8 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2facf9bb ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34bec8b5 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x350b4529 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3841dbad ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a413054 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d245093 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x427355c9 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b610f34 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5302234d ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55e957da ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5880469d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65fd561f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6915b56c ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d71b276 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70b823eb ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x723eb998 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7285d1e2 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x761c540b __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a942a40 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e00870f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8351140d ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8472d92b ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ce48c09 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1978f51 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6d472b4 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8fd3748 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc24dfed0 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2bbed8a ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca767e2a ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb188242 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd2cd742 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfd86259 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd10bd8b3 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2df985e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd75880fe ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc06b4e0 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe28c3cd1 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8835416 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebf72c96 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf240d35b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf44154fd ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf51e66ce ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc2fb82d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfebabeaa ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x003fee72 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x072e3a0e ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x12cd8925 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x198e6adc ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c946a95 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26517139 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26d9d5da ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ac7ef32 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ab445f8 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4c927f10 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x500fce77 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x543c004e ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57ffee44 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5a97e358 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f04a771 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x602bf3e0 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60ca8527 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x617286b6 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6a3d0b90 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e880014 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71b05761 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e4446d2 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7eeebd67 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8e685664 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x909bdfdc ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa28388a2 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xac4e3edb ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2e179b1 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb4c2d38a ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd48752f ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd9087b3 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc05b6b12 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4d036bd ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd62c4797 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7194492 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdbaa2f87 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdfab2f11 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf643a70c ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc595efc __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0eaf181f ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x172d4882 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x775afd53 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8401e071 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 0x97632fc6 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa8fc6fed ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa9656c37 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb646fcb4 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 0xc81b3498 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf2f200c5 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfa905a59 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10534578 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13f0c703 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x17714724 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x219b3856 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26065a21 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2674a529 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b7d4df7 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c770c90 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31182c76 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38d6edf1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f72eacc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x52403e96 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x672825b0 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89bf711b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90a78d7d ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa406f7c0 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabd57e0b ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1e21841 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf531056 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca038a26 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd35e52e3 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8e548f2 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2d6a03b ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x003119a1 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01412858 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016614db ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01fdffb7 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x051df281 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c6dc97 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x092f5d06 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cf6cea3 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1251da88 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12783aca ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1319f0dc ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13be07ae ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c98430 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b0e0a4f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b9d915e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e0ced9d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ea53d93 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f272f23 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb596ed ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208ba0fb ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20b4f9d7 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2134e6c1 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21dffa29 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25b67718 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28ee5a13 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x290c66d4 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b42fbbd ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd196d7 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30bfe438 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x328044df ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x366ddc71 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36ea8c46 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b5abfcb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0cdcc3 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e6c1022 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f25e9bc ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e99cd9 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444988bd ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x457b1697 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46dd243b ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49fa72e7 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b541c54 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c17041a ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c603908 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576388a4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x594f8f8b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x598e5c40 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59c01ad5 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e82ebb ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68253b64 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69d3e05f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b101588 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6be6de14 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e9e2379 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7051dc6b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74f2ee94 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832ceeae ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86250d19 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a1a9f9 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dfa71c7 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f852d52 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90656239 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x915d1a13 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x938e6b77 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9435b940 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b123f3 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cc9f420 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f5d8be0 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa01f2e5f ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa236a4d8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6c9f944 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa908073e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacef253c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae22c60c ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a4f1de ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3aa95a5 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbc27244 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf7ace10 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc05548bc ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc20d9178 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2b8ae4e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3042715 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc51d0a12 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb5c7f63 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcccc05e4 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0163264 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c760a2 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd16e4acc ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd54b0c03 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b38cff ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7349109 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd75d0487 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd928ab85 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc5ae3f7 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddfdcccf ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe42786e0 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe50e229c ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe881fe9a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8f93043 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3557ce ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed0dfe1b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf026909d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6738f11 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7c427ff ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaec38df ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7c3d3d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffe4ac00 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4339d558 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4b7caac2 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc263df27 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04ebd9f2 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x087cad32 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x107b4d64 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11ac4a87 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5eacf8ad brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x670a62dc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7467b4ca brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8973a933 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9b5a4153 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd584b4dc brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf56ff143 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf5fc9c97 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf9bb5f57 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5653dda5 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6c6a6237 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x7535b9a5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06d0c93b libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x216d744c libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2835079f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x30fd0097 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x312428f4 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6488bbb4 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b82b23d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75de354c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7d08be7f alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a16c71d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb8f597bf libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xba0706bd libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd78c3f81 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd7039c6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd81820e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe34408b7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe629e860 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeaef43b8 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5684b18 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5c78e12 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05cd0de2 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09a93107 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c2fc073 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c47783a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c655f5e il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0da4ef6a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1065ac66 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11a3e84a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d0d4a2 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x121bd976 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x172a1911 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x188f1ff6 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19a083e7 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b02e845 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ce19ce1 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x206d8350 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x255f4de7 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28aa466e il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b5d6669 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b713e08 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fca0e95 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3033da83 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31c668ac il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x376c9b8d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a41ec47 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c69221e il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d588fc7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d9c0a5f il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f40751e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4108a65a il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x415fb5aa il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42348ed7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x444be1e4 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dafb748 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fb6b5e8 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53421208 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x567f0a69 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57c557d7 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x596595b6 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x597d89a3 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b4266d5 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bf4feba il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c6dad2e il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6db29ca4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70e519ad il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71e26ebf il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72703b6c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72a50c0e il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7808dc80 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x798b208d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79d00e80 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f600ce8 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x821d3ab8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x824e5923 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83cdd3bb il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x851401eb il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86bad89f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87830a60 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87b7de7f il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x898c352a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b0a7736 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f8ab5e7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x910952be il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x918abe27 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x940c2092 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95c6e6b8 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95f488d4 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x990f84bf il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c596ec2 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacc9e148 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae492ff1 il_read_targ_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 0xbbde74b6 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc12c0373 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc13b5e4c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc13df324 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1b7895e il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2581374 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc279da1d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc93ef71e il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9b59071 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc52cabe il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf6a5b2a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd03deda6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3463006 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5de246f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc429300 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcd67f46 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf47c264 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1cd284f _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2c66286 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe48c01f9 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe558786d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe901f2d1 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9f075e5 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed6dd8a4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede31d17 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf26b9f2f il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf39f769c il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x042a4a27 __SCK__tp_func_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 0x41ef20be __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68abfb68 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72d2cdb8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77a73591 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93a6361d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe02b49ab __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe99041b0 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb258b79 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x07fcf3a0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ed4669a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x184cd679 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x196202d6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28c87421 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x412dbd8a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ffaced6 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ade12bd hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bde00dd hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67d1a977 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d27b709 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73554d12 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73638800 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7adcfaca hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8dafe3c0 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c3e8bef hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4ae73b3 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2f8689f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc99a2225 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3604834 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xde2eaa92 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdf601103 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf226c20e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfcaa1d4a hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xff92ed3d hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11e3ae6c orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x140ed699 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26f4ba9b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2a35be0f orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x30e9f8ae __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f983601 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x686e992a orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ab90861 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6bd7990c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a9e643c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8beeb6e3 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8ef415f2 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x992bdd4e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb16b7c28 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc6e91564 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x8c4290be mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8befce9a rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b6f48d6 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1692e926 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d42a07f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f120727 rtl92c_dm_check_txpower_tracking +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 0x2529e451 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2778ee80 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29ea604d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b3dc734 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f9e085e rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39a07646 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c89cb9e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d9d26ba rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49f71d65 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4edaa00f rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60ca0a90 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x696bddc5 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78afc1c5 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x801cd627 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8500189f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90d4838f rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b498000 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e0a0e6e rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa201b1d3 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaafe4fd6 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2d161f5 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf27abf2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfc23b67 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd12c2dd6 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2b94cbc rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3bc2e99 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6084219 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9ff8530 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfa5794f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdff2c38f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8792dc5 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea95416b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xece1f846 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedfce409 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa5ed0ec rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffb4a83b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffe355bc rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70c2ca1e rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb1ef078f rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb317f150 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe9ba5367 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2c02823e rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4d5e5cd2 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x66bc93e8 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8b83e810 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03c1c392 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03f9b427 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05fd8682 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x107eb5df rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1243765e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12add80b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19ad6fd4 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24dd0f08 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25e39828 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30b4f0bf rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5079cdf4 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5339b7bb rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54dd2efd rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x564a0696 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d68bb2a efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x669789b9 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66aea7d5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cca1f61 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79a276b3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f9132e3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e733997 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8facc4f7 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9af68278 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae5c9251 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb06082bc rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3bad21d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4f1fe6a rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0cbc521 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebfe1431 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee0f40de rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x14e64050 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x892637dd rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xff063ae2 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x10c451dc rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x009b0a39 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03220efa rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cfc41e7 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0edf715b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10ed7892 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11ce7b16 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18d8641a rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a109aa2 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b2bf538 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f1b8fa2 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x278f6129 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28b9f14b rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2acea099 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35d5dc44 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36638498 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x391d66f1 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b121cb0 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f326b64 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x444746f7 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4764a245 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bedb807 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5474bf57 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x577899ce rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59fa18c4 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ca989cd rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61390b60 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x634aede5 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6810a138 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d5c7970 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f65321a rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77579822 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c682fbe rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87189578 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89059fbd rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89bc337f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8aad6e38 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b1b9f99 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fe59769 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90601b98 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bd4c36d rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dc37378 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5357041 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6fac3b1 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa87d43d6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa004c15 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaad5911b rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae52d12e rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc8b5b7f rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca7927af rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb6420de rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf1aedba rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6baf1d7 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7d86e68 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe0d49275 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe15fcd4a rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4a5b260 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb138de2 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf024c64e rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf042a6fa rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf060cfb9 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6eff641a rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x77d503f8 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd44f565f rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd53deabb rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x94b7a0d9 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x788c3e46 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x044a03ed rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x129048e5 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x155b7cb2 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a019a77 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d710030 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1fb2cb5c rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a64a260 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e09b39d rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e2b2ed8 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34e59957 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x360be55c rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a0dbfcb rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c08118e rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c227ff4 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f260539 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x590c5f2d rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5fe799d0 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x60ea2795 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x616c0fc5 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x69f325c1 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x72554757 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7374d394 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c00c024 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f6aba23 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8aef3f80 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b3a2eaf rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90507b9b rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90f2ed20 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x957f2db3 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x99078bb2 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x995953db rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa613a425 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7044650 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9ff31cd rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf5c5e8c rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb26c5990 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb820f66c rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb88c2077 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2ec0640 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc517ac1e rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc64cf045 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc830f808 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca8dc7b5 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb9e07aa rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde096c89 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0116f9b 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 0xeccc875a __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef7372d1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xefaebce4 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4570946 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7f38167 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf96b4483 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x00184edd rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x04b82bd4 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2c5bee04 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x34a82115 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x569fb06e rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5fe83a02 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x88fbce60 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8a4e462a rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8ae5f098 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa90de0b9 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc548f98c rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe006a0d2 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3893d43 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe2e628f rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe76d943 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc5d1f921 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x72d559d6 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x84317d8a wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe36e94c0 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe4333529 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xda6d3214 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xef8f2d82 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7483f870 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xcc791bdd microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x255284e9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x44995bf1 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7c7fd69a nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x91bf0fa6 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbc286178 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf0a9d4c6 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x47ae7cab s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x90ad51b3 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x99484974 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf25c9434 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a3dece2 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x500f7fea st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5cfd7d8a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61744e5c st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87b372ae ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9f1db66 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc3c4654e ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xccae2e2a st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf9169b3 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdca8b834 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x20cec2d0 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21794b42 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x22a963a4 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2567797c st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5abc3fdc st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e8a5f01 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6f828b0b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7614fbb2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x79490836 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83c18553 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dc44693 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc78b9736 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd82abf2 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2c72689 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe649f7b5 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb31037a st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf58f3ae1 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8597790 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/ntb/ntb 0x43a72876 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5783a9f3 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x57cbe53d ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x61911be9 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6a1ced87 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x728f3a87 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x739c9cbd ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x9e5302ff ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9efc33f0 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xa04bf5dc ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa0cd8495 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa4ec3669 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xaf9dccac ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xbb8bbbbf ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xbe9c6d7b ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc0110779 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xc056199e ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xeb6af48b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf1ba16d2 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf5de76b1 ntb_default_port_number +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0e97db98 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x59049032 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x050ba391 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0ec3a706 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x208dd502 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2c944020 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x30291089 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x36d339d9 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x44725cda parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4b5b84bd parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x511c9a1d parport_write +EXPORT_SYMBOL drivers/parport/parport 0x53e73949 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x57bc4948 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6264e49b parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6c935c3f parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x72ada065 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x77cd73aa parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x78082487 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x8066d7de parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8e2daeb1 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa047fbd2 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa3b18a4d parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xabb98f47 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xb8d46fc2 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb9121769 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc0a2db1a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xc1b3971a parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xc8985012 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd056af87 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd89fd824 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xdec6bcc9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xef435575 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xfb148133 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0x141f4487 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x95e58907 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x238d9534 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2aece7ac pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3e246500 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ee1cdf9 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42a4affc pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4789f837 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4f143e9b pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5ec2e94f pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87dfc726 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x91462e32 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92db36d6 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb7d35a33 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc0ee18b2 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc5a3f2e8 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd20024f0 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdffc3541 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe272abc6 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfee0861b pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x141379e4 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x36e54ef8 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x544b9f5e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x71601a17 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d098d29 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb4fb6f35 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb9e5c158 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe582e421 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf14f47e8 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf42b68d3 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x50a62a49 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe701cd51 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x251c8f8c cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x345343a9 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5d2982f0 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x718aac53 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/simatic-ipc 0x35a48fec simatic_ipc_get_membase0 +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x8829871b __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xe80d05f2 wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x317f9fb2 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xe18bc53e rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0224fa4e rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x29353593 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35576246 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3b7e10de rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3c44f5c1 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d0315a6 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d602299 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51001530 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x69bd6323 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6ce93c83 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6db35f31 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80282f2a rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8a78e5d rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaee05bc5 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc27cb5d2 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc755587f rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd12f8512 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe4a7cc33 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef9fd707 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x910d23c6 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xa8082df0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x6166991c NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x89beae65 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1ac48e03 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x928a086f scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9a4ca7f2 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdee8653a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16b340d6 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e28c5dd fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48b93e2c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5508c63b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x980cff74 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9871fe40 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x996a6cdf fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf89213f fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc757e84b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed9ef6a3 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb71ee36 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0869ac58 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e745e23 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1197ff70 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x144e6cc0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d18ea61 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f2a991 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x289a4e17 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28cc3a0d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x297bbfc3 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dbb3016 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x354d05b2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38f931c8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x396265a7 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39edee7f fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c5aa0e0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f7e7980 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40a445c1 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42be1347 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4826e27f fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x484c7898 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48e5c50a fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5410bf89 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5952eb24 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ceaaca9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e26be0e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x615edc08 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6620bf5e fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6968d833 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d1f07ea fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x728ceeb1 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72ee1753 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x762ec415 fc_exch_mgr_alloc +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 0x81ba2571 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83235da5 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8700bf67 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d23a263 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96952c85 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0660492 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7e09940 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa40bce5 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaee453b7 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb34c7ff4 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3f00e2e fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb446d081 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6e5fc5b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0af3606 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1cbdfb1 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc596b286 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc899eac8 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5c14fa2 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdae5ef42 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf9ae708 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed2c130f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedca71ab fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1408e2c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3545aa6 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf689e662 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf96e4ba3 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1e916f19 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x78174e61 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x823ff00c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x995bca9f sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0123b1fc 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 0x0a91bd4e qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0badf240 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x29e2f163 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53f36593 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x548e638c qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8dd4419c qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1b83923 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf265117 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd414d4e3 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd817e426 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdae19604 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed0bdc28 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1a25278a qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x423aef9a qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x43a1b20c qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4fd6c162 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe46c1c29 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeb84b5fa qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x6493d5cc raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9c767769 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe27d83a8 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04ca0825 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1160226d fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17cfb253 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x191edb5e fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b6d1292 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4cc36899 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x796113b4 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98f0e5b6 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ff7d9d2 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa18c31d1 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5ed7fe8 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa94f840e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa60efbe fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc5700408 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcb8a2d86 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3dafa4d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe553944c fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02acd4a6 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05cee965 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1484908d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1efbcbb3 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fdf9756 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24b39167 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2727461c sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b7ca5de sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32d94323 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x400d3bc9 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41b63303 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c1cef7f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a00357e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d51cdcc scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6409439c sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x735c1229 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c9b8305 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e61f9df sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f9664b9 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97269493 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacafa59e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1a42fbc sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca3481d3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca78f0d1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb635a89 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6548d37 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe11711b8 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3ecabe8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa7355c0 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6dfa5878 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7e5d603e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8cf0409f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa7209231 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb95252c5 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x11ccd37a srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x14c66baf srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9adc16c9 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9fa27171 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfb6bea3f srp_rport_put +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x01622706 qmi_send_request +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 0x37f5372f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x498a4c7d qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8a7d5c74 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa32266ad qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5e95241 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xabfa4c06 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xda70e04f qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf077307b qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf699d4c9 qmi_send_indication +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x037c07a1 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0b3bfeba sdw_bus_prep_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 0x36ec1429 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e14dc7e sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x412c4a54 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x52065ea3 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54996b34 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x661b258c sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x67acfeff sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x686266a2 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ffe7141 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x818425bb sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88c8d6aa sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x905ba763 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa9011e70 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb61d036c sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb831dbb1 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 0xc042b729 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc508a06a sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd10d652b sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd1d98426 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdf228bb7 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xece1f30e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf38cbbd4 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf509401d sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb361eec sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x06022cb4 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0631a1eb sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3369a886 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x340a5acd sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x36c54eba sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40c60306 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x413e8d49 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x594c6e4a cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x69910118 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7a930603 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x888c54e3 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab7a31ef sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb65277fd sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd1ae965e sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdc1ae9b4 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdfbc4f85 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xaeed473b sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x009d0e20 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x071294ac ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x17276125 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x1aff62de ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x41167f9a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x606fb3e0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x610be46a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x68a75c71 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6a3d4889 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x80542fd4 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x81a5b3cb ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8725dfdb ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9741c68a ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa6d56543 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xaa168922 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xaa34a2b0 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf0209fd ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd16a5978 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdd895702 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xfcd90924 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x159a2e38 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20ef93c9 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x222124ec fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2be833b3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30dc2393 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37125372 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38baa16a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d3fb414 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45f4a7bb fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4885e9cd fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cbb61ca fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8602520d fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ffb01f5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95b6595f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ee9e236 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa21405d3 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb658a06a fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc46af288 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb3e9f06 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd58cc2e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1f7bb97 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6f5b63c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf403a635 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf42cb56d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9e4ac14 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2d6a971d gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x301e6369 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x556fa5ba gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcbe9b8ce adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x55709b93 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x439dd49d sp8870_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03094351 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0553eb42 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0927cd45 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d9aa382 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0da91cc6 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14402756 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c0df9d2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25fb9f1d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2aedd144 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2af5a98a rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3597a7b6 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x414b86e9 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5259d186 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5330ec40 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55fdd219 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f2d8c31 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6146db0d rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x617a10ab rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62a2aef3 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x673b3224 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d399c1a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x729ed16b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x807abee3 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82091e6a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x885266ab rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ce48875 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f65ebd4 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94962d2f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98800cfe rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dac754e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ce96ec rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0bfc68c rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4092852 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba070876 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba72c432 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc67ce44 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfd100bb rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0de6bbd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2e78921 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9995add rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc99c0b59 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb46a1fa rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceca58a9 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0624624 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd70e4349 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8c8f2fa rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef2593f4 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0cf8ad2 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcfbb97f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00dcc35e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04366be5 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08cd0d0f ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e9343e5 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21402fc0 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x230a56bc ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24c3ae02 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28f71d9b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2afa3ef7 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e104705 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3286eafd ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x356ecc8f dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36285d9f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x381e0d64 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42cac964 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43039c45 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a986c02 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d2207a0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d800769 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x511454e7 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x536a38b0 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59af5478 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ed571b8 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cb498a9 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70e60faa notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x838f2fff ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ef63e4d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9360ab7f ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a436528 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bdbabe0 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e615aaf ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa00aa256 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0954f96 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3ca1069 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa778e9f3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaab2f720 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf8634aa ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfebdb18 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc28bbd54 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5d11b01 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca133c59 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccef807f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdc462ec ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcddfb7b6 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2456402 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd707dca6 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdabbb95b ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe035c1f0 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e13957 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee114ba0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf21ac2f5 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf61d7180 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80ca668 dot11d_update_country_ie +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01447731 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0683c7fd iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d7b0867 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1065a37e iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1537e28a iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x175e36cd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c516003 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1cf0fe85 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23dc94c9 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fc72d9e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x388210d4 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c5ef5a6 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40e5a1e2 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42505492 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a31ebdd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a4d6b0a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c034072 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537f58ae iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55d0466e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5745568f iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x635ffbc6 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69a5e90e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x769c4807 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d3c8ebf iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f1f7f37 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a1d14d7 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b763c3f iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0af448c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3044062 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf91440f __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1438e29 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc31b4054 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90ae3b1 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaa25812 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1fd35d2 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6daae6d iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd9a5853 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe006bd20 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4cf3176 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebf329eb iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1e328ad iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf47d55a8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5056c66 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7f37903 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff437bcb iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/target_core_mod 0x07385873 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x078092b1 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x092cad11 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b35c98f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ec45ac target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x12109b17 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x124a4aef target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x176f9063 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x19c3615f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e6cf8db sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x256e8256 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x25b2640b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x29db61f1 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2dc7d2e0 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f9f26b3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x32c24012 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3693ab5b transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x395cf0a4 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e1fec0f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4090ba1d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x424b1e9d transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4432b187 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x451fbeab target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4708a091 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x487ea3b5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x48c925a2 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a76b0de sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x4af2ffb1 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5117ffb4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x62655593 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66c8a724 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x67c1e780 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x67f77c48 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b1362f7 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f339975 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa630e1 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa6ed9f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x735b6ae2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x75e2914d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x75fd1831 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b7cb253 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x85498183 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x875cdb99 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x87dc4412 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x892d0983 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a3439e2 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8aa490a1 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ddbf469 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x90c9942e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x94617c67 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9822fb37 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b7d56e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6543f83 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa871e859 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa682ef7 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0320a92 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7c2b72b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb93702c7 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbafadfe3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc80d6a62 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xcace14b1 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xcadec373 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbee3e04 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xce10a9b2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0da0513 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1569c70 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd2b0125 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0ccc20b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe585c2ee target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6ae8c15 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xebc32a18 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdbdaac0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3407adcd ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x504a04b8 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x544362a1 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x75e5d8c8 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x990dff26 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc739ffad ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd1d97618 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe2729584 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x5e78a7ad tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xaf56fc0b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xcb819cfc ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xdffec482 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x531afbbd usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb3b2f0ba usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xfee93060 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x042b1619 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1def618e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x310f30a7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x333d438b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x486a3815 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x497a6fdf usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x655a6df1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82b0579b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8967faaf usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdab778b0 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe044be66 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1645d7ce usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x70910e6f usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x9de3d01f vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x18758697 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1c4f9dee mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5a9f5ae5 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x63a71e8f mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8cebba9d mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x96461954 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9f7030cd mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcbcd368f mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x3d400467 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe435fa47 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 0x34accdbd lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb670f511 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd3a6ff75 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdddfe83b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0fe723d6 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x13e7d2f6 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 0x27b0186d svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d77c8a0 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 0x8fc0dd2f svga_get_caps +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 0xec56bf40 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfef17595 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x719b7590 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x74bc18b9 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xffd49f39 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 0xf27df989 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x33801d06 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x08e5ac1d matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x31103439 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd0784a9c matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5a996b2f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5d4b89b4 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcb06f30b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe0183781 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc9f9c25c matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x3f589f51 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1b326bb3 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x73b427b1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x964370cb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf8dae805 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6958026a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf494f438 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x113535e3 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2c71c883 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c433986 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7c0dcfa1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf5f0de55 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x1ac503b5 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 0x75504d2d vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x899778eb vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x94a0358d vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xcc2baf2b vbg_hgcm_call +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0d386311 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1ecfaf29 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb44ac325 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf348027e virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4f5fe8ff w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe42515db w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x66eea32a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6836f668 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x05ead62b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4a16f19b w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x7481859d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb02ad32b 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 0x04b0a13b __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0aed9611 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0da1a099 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x0e65bce6 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1c0694c3 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x22e651e3 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2f042253 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x344e67dc __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x3ab94c8f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4c2fabf7 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4dcdcb98 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x50acfb40 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x54b6029c __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x56145b2d __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x5640b61b __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x5b539e09 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7c3b0348 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x80bc7800 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8317ab16 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x894605e7 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8b1a1933 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8e36c7c2 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x91844b92 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9fa0831a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xaa9f5481 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb5dd1683 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb8e5af93 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xb9a1e527 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbf59c9e2 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe50ac33c fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe78caee1 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe79bada5 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xf49d45b4 __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf6029560 fscache_relinquish_cache +EXPORT_SYMBOL fs/netfs/netfs 0x06ebf3f6 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x1a297e34 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4c0307b4 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x864c851e netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xf5770f88 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x281c5357 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3f062b13 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x59fdcdde qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6fda2768 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd6707708 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xfd0e6788 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 0x15e30dfc lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4543c8f5 lc_seq_dump_details +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 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 net/6lowpan/6lowpan 0x0701d307 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x14f67bf0 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1d07dc66 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7c288470 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbf5c5ea1 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd773bad7 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x6123a492 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x7f72d41d register_8022_client +EXPORT_SYMBOL net/802/psnap 0x47248591 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf021cbc6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0e0f9de4 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x0e50a0cd p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x125b6777 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16046e4e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x1b7ab91e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1ba92867 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x20ac29fe p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x29f77661 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x306a8723 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x32f7ba78 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3597a987 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x35a1269e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x360bc1e7 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3c272b6f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3ed762e4 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x48498670 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x48a9d3dc p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x4c11cc10 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4c25ba04 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x53a0d854 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x56884995 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x5ba31c9d p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6812f7de p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6c1a1a0a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6f7ab9ec p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7021efc3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7c2bb303 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9cd00c48 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa2e6745 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xabaacdaf p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xcd24af13 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xcd92ab28 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xd2e4e22f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd30ed6b4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd67c35dd p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe3f98932 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe42b4f9c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xed7d075d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xef056c7e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf0a36771 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xff984f0b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xfffee606 p9_client_getlock_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x065985f3 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x6bce0e0a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xcb228eea atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe07398e7 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x00a22269 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x12f02060 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x191b733a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1bb9ee4d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x232becfa atm_alloc_charge +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 0x5060b32f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x54b00118 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6462e76e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x70b19421 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x80e4808b vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x890aa4fe atm_charge +EXPORT_SYMBOL net/atm/atm 0x9887b9f8 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9bb501f2 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0b5f0d72 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x34b67169 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3a8dc9f1 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3f91176c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa56bbdee ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xbbd7413b ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xbc6f7be1 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcbb5df46 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x055b71df bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ae98f40 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b00b9a6 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x152af2f7 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x172c448c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x239c87fc __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x242db6f6 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2540d6a4 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fb0a1fd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x324b61f8 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32814349 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c24a9e5 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3dc703c2 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x427fcced hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x436b2b38 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46c72e07 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48eb49ef hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d3b8dff hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56dfffb3 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x597ebc29 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59baa00f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b099e5c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6011a3b3 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68bddb66 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x707cb963 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73cfb0db l2cap_conn_get +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 0x81c7f1da hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81f393fa bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x899a8466 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d157050 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9035e56f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93f700f9 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96a8429f hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f6231e5 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1a6bb8b l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa31ce3f2 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa41b5ca9 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa94e51e hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaca13b17 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbb775aa bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5d4a185 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8120e0 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce742ea9 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce7ada52 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf31626a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f0dddf __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe787ecf5 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8f962d0 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf23d5f9b bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc56bc8c hci_get_route +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x01ebb388 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0554019b ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26030caf ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x372d6065 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa0d480c1 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0602382 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x141e4b50 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1ea695ef cfcnfg_add_phy_layer +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 0x64d8a6d6 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x8050375d 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 0xb099d16f caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x4a245518 can_proto_register +EXPORT_SYMBOL net/can/can 0x9a2e8e69 can_send +EXPORT_SYMBOL net/can/can 0xa65daef6 can_rx_register +EXPORT_SYMBOL net/can/can 0xabcc0c44 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xb8b184c2 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xebef49bd can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x02e8804b ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x037eb3dd osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x040756b7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05a09fc3 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x05af96e6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x0795640c ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x08387362 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x0aade393 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x0e9cd087 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0fb6a179 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x107343ac ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x137c6280 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x13e71326 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x1456b4df ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x147e0f45 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x14d63ea5 ceph_osdc_flush_notifies +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 0x18d7a092 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x1ac60a79 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x1ac681d6 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x1ce10ed2 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1ff184d5 osd_req_op_extent_osd_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 0x24ed2054 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2b330791 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x2bc072dc ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2c44d215 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x2f5b4974 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x315a9de4 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x32cac95c osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3308a585 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x38ccc9e9 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39b1631b ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x3b59c5ca ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3bcdc94a ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x4070f605 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x419a56ae ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x42e24c20 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x49eaec1f osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x49f91315 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x51e86181 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x579c8414 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5859f666 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c6b9025 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x633122f2 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x648d885d ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x66f909c5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x69c94936 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c6a743e ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x714c2100 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x76c492bf osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x79bf7b23 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8090ef42 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x83166bf7 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x83daa1d5 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x85f3a5f7 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89342f0e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8fbfe7f1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x986c762a ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9b398bd9 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c3310ce ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9d0ccf18 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x9dc85313 ceph_put_page_vector +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 0xa0a9d762 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa5227b2f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa613c2e8 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa87a99f1 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xab7f8b81 ceph_auth_handle_bad_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 0xb17d2bcb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xb361ea8a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb43263dd ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb461ee7a ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb75fd13e ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xbaeb67d8 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf07b526 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xbf373c50 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc1457de6 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc3045113 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc945eb88 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xca1234b3 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcae4e6ef ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xcb3c4a4e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xcd35228a osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xcd96c558 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xcec9e25f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xcfcd19a3 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcfe840cc ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd056a72e osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd2b92b98 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xd422e40b osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xdb6d7c6c ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xdef301b0 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe2cd59e8 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe5f5ce48 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe700b9fb osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xec06ec80 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xec2d2f03 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xec7088de 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 0xf86723a7 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfb764a9b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xfb7f78b6 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xfc793cd0 ceph_monc_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcaa39c39 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcc48599a dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x188a8d36 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x196c0126 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2be1f967 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4cddd419 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x55c436e7 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x644b964d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7f84d522 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8f63c47f wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x658f69f7 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb3b15f74 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x284e6bbd gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x31d58f56 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6fafa365 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x841d3f0a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3533d8d ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x296ba5bc arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3f85fdaa arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x474499bd arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfb380ece arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2ebaab1b ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3efe59ef ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7b825ec9 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda89695b ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x66ae3ad5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xdc46c07d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x30d4e613 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0219904f ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18266321 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3da96756 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3de56230 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4d3bbb9b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6129fb92 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84c0b889 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdcbbb6e4 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf946271d ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x847f17c3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8f7a3987 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8fa5462 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcced8174 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x17d0dc49 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x754d3039 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3b4803f5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9dc2a646 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x28aa8539 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x320d2bc1 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x68e92993 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x8729caec lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x92ed00f0 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb1ed4140 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xba14e2d1 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xce9267a1 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x28ad0cd3 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4537b39a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6c32273c llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xc4b34fff llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xdef7d762 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe2a919f0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfaf8f1c3 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x016df17f ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x0614e720 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x07b96f13 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x0c041bf4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0d9beafd ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x15cef388 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x16a5b1ae ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19be43d4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1e664c41 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x1e82a492 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1f4ca90a ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x2181a4b0 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x2a633c0b ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x303627b2 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x34810793 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3725733a ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3728f7a5 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x3b106f4a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3ba95019 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x3c9ace3c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3ed0ef20 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x3fda3480 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x403a18e6 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x40fd5951 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x41d31863 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x45621023 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x4edd7018 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x54465f65 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5d6dab33 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5e028deb ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5ed059cd ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x63c0ba59 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6809f394 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x69a2699a ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x69fc0c6e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x6ad5a44d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6bd85f55 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6e34a931 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6f314869 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x70388869 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x71f2ec36 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x764225a9 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7651b59e ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7915eb01 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0b1c92 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7be27369 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7e9746c8 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x809cf6cb ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x80d37cbe ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x819d04f6 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x84d70627 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x85045925 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8cec8f7b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8db8f423 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x8f2b7cb8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8f73dbad ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x95198c12 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9a638912 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x9cc722b1 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x9f9675f0 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa1e3ebaa ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa2a64795 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xa52ffca8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa60d3869 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xa8a27aae ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa94cd662 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa99e23cf ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xacdbacbe ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xad697e6d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xafdf9a86 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1ea5406 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb6afbc28 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xbf28fe00 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc0ed27c7 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc548ef6f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc80e338e ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc83e83c9 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xc8bf462b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xc918cdc0 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xc9ae2e69 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcbfcacf0 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xcece32e0 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd13c8d86 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd2efdb74 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd847c87d ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xddc9221a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe1a3ceb6 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe266888c ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe2847cc4 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe3ceeecf __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xed8fddb2 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xedaee412 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xee6fc522 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf0515c23 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf0d481a2 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xf28e79da ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xf6f47d9b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf909242c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfe26e268 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xffad289c ieee80211_chswitch_done +EXPORT_SYMBOL net/mac802154/mac802154 0x1b337a65 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x44f5d2ad ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x64c0fb97 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7f415a50 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x8d63bbf4 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8f2286fa ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa14ba18b ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xad50572e ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xc293376b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xf08f8762 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xf474736a ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13942d3e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f9abad7 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33b424e5 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37d060c9 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x384834d8 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a498cc8 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a5ceccd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ec5e6b8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa6c8f6a0 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xace4528c ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb471fc50 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbb62a3b7 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbb80d1b2 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbde8bed0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff944c89 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x45abaf0e nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x464db973 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x50e57a45 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x83371a70 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc2d5d364 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 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 0x583ef857 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5f4289c5 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6192f930 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x784a0be0 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa0f7ddb8 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa4374684 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xaab11cb3 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbca9247e 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 0xf627b121 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf707b5e8 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x1ea058cb nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x34fb21b6 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x4af7c40a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4e2f539c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x51352eec nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x51a6c5f9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6cfb7f58 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x775c4e10 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7da17562 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x86c313e9 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xaada5103 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb30acbd0 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xb3a64908 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb8149b72 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb88aa28e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbbb39cca nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd0bce380 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xd3ddd6ce nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xde2dcb60 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xedc022ed nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeed804ca nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x018e7fa4 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x077cf638 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x122cca70 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x186184ee nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1a002f22 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x25c541fa nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x35c1d49f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x39c0679e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3cfdbc0d nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x40dee999 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x42b3a660 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x43ae2cee nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x449fc4da nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4f2c7ec3 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x5c5fb60c nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x5d3a7409 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6f716ed8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x7dab2ea1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7fbbf268 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x83d6dede nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x922aaaf1 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x99a5b36b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xa2037196 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa5c228c1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbc69a8c9 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcaeaaa33 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xcee0972d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd52a2caa nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xee9b8123 nci_set_config +EXPORT_SYMBOL net/nfc/nfc 0x0810f315 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x0e0ec706 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1ed2cb85 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x23592083 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x2afe3698 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x359cd874 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x38efe062 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3c4cbf67 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x3ea322ff nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x442eef12 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x44d0c9c8 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x52929949 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x53587561 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6f5ea639 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7521b279 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7db52224 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x80a473c9 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x93a9b0b2 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb702b1b2 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc1dca282 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xcb203bb2 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd79934d6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xe7de67a4 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xee7b5ae1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xfc931dbe nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x6398ed73 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x945519b2 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb149139a nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcea38164 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x0beeec6c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x1687d057 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x1acc9fb7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x3d0bb011 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x50291033 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x5da470ee pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc561804f phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xcca8d4ac phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ddc16a2 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b794b82 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fa0a5e7 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x21b563d2 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x309facd8 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x37c24b63 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x418de169 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6aa5df78 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa705ff74 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9e83d74 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa27924e rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaeaa8692 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbeb8c5d0 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1683d69 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1677c4e rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe305dc2b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5f945c5 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8768565 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/sctp/sctp 0x1ebd2858 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x01e529ab __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x2e728403 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x39a5c474 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x5cc71472 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x5d242707 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x6d8dde8a __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x747bfbdd __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8344344a __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x93b97707 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xbb04d995 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xd76c2eb4 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf18bf40c __traceiter_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9aa1379d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb296a84b gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcf114bda gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x02726d5d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1cbae527 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfed662d6 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x5fe31e64 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x9da56887 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb363c31f tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xb53e091e tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x5012783c tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x039c9ece cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x09a8d65e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0baf5fd5 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0bf3356c cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0d655109 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0d73ea01 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x14b95643 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x17a98001 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18b6c250 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1b3e0656 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d7398f8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1fb529a7 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x206a3b37 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2194d123 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x260a4a47 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x27fb9123 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2ba6e2ed cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x2d18cbe2 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x2de9555b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4859f9 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x309a6279 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x348c09c4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3575e390 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x37ebb63b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3af9ae35 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x3b97e04d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3cb14663 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3ec2603a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x40510279 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x41560769 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x4320672d cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x462e5381 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4aca171e cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x56355689 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x5697abcb cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x570035bb cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5b022655 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6956e0e5 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x696fcc88 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c6f835e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x6d150826 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6e9efea5 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6fdac2a6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x70b458f9 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x7252ed85 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x778f654c cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x79774588 get_wiphy_regdom +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 0x7c8e4272 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7d141d48 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x84210a05 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x854b490d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x906e6a19 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x95ea0433 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x9650938d wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x96be13eb cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9a4fd65a cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9a9ddab4 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9bd1bf7e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa171ff79 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xa3d8ba1c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa454b8ac cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xaf678726 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b44530 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb10ad635 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb2cea654 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb44b7af1 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xb72fb1da cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb76c3602 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xbc01ce0c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbd4c2af1 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbdbc8704 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xbe115edf cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc239cdd3 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc35ff11d cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xcbe07641 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xcbedbcf2 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf653ca4 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd11dffc2 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd18c42c2 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcae1738 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe260c9e7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe269fd8a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe3909763 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe42734aa cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe44c35e8 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe48958bc cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe48a2e4f cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe94d572d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xeca08f71 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xeca104d2 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xed95390e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf287a15b cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf3563f03 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf3c39148 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf73000ec cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xf83f94c5 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf9cb44f1 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xfb793f79 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xfc9d5efc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xfd84c532 wdev_chandef +EXPORT_SYMBOL net/wireless/lib80211 0x1cd87d6f lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x80646685 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb4b82303 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb5cbd7a0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xbef94915 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf7ccd519 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x9d633fc7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x2f090bc3 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 0x3a016828 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0x800b5189 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x970eff8e snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb7681135 snd_seq_create_kernel_client +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 0xc0adfa91 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00e90496 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x02df593c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0706027e snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x076c70d8 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x082161d9 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x095bff28 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x0f927b52 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x12863671 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x15afbd0b snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x17b5cc88 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x18d74de3 snd_ctl_register_ioctl_compat +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 0x1c0ef31b snd_device_register +EXPORT_SYMBOL sound/core/snd 0x202358a7 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x212a6438 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x2172a89b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x22cbee34 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x32b4cfe8 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x340f9055 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d9eedb7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x43718570 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4eb6bd7e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x523663bb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x5b30a8d2 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x6b03b873 snd_jack_report +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 0x80770ade snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x80fff9d6 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x83b28b0f snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8cfe3baf snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x95fee8d0 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x9dbf537f snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x9e4e2a50 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xacfa2363 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbe2255db snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc1340bc2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc90f2c33 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xcb590288 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd08b42bb snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xda2e0ed5 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xdb047547 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xde476f9b snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe4c3c760 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xe4fbb0c3 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe72b3e5e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xe8d93ac1 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xeb00ae82 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xec7d8795 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xf133bd09 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xf86d0004 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x16c910a3 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x6a8feb9d snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x1cd563bf 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 0x08f1e653 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0aa267da snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x0fc55338 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x10a1c881 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x132fba4e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x13a7a407 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x1c3f42e6 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d4002fc snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1f01adc3 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x266fd051 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x27e6b240 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x289b7aba snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x36ea0765 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x376897a6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37d8cde9 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3ec38502 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x407db34e snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x433690ef snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x46b0752e snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x481ff6c5 snd_pcm_new_stream +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 0x515a9b8d snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x519bb4fa snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x51e3c1f7 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5298bfbf snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x532a325b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x594e77d5 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x59672256 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5c4ca345 snd_pcm_lib_preallocate_free_for_all +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x816c7ab6 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8b7b24a9 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8f3c592a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x904eb8b0 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x9185fea9 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94f8709a snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xa1086805 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92aa3ea snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xacf74621 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xadd74372 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xb32f50a7 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc266223f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc9d88009 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd7b571a4 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xdc92592b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xdd53cc3e snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe40fdc3e snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xee7c6cc4 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xf3f0025c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xf5da5d90 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf9134bb8 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02538c79 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06c939ba __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0920d46c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15aaffa0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c5344c7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x29bcd3ba snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b3886ca snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33b6e1d5 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3496874b snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5968da12 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5def26d4 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x613638e7 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63deca4e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7073ac33 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e270361 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90b5c928 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad136c28 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0284c27 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe98bb51a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1bf76f3 snd_rawmidi_transmit_peek +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 0x8c308931 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x3191511c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x3f9ab7b4 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x43e8a94e snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x4fa8662f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x57c5463e snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x73a1536c snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x76438b61 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x79e84a64 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x8a617516 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x9388610f snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa90a2f98 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xb819151d snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xbcc1eeda snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf72429d0 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfbcd38b6 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x69bfa19f 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 0x179c9073 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1d523aec snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3e17e107 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x536a1682 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x86530ff4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9a86d0d2 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa0285466 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3f3d290 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xea8675d8 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1d3640e6 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x203fe8a8 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3994770f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40ffbbfa snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49267571 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80c0bf68 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f85bfad snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed08441d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfe0bee71 snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x080d2878 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b2fe23b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d4fe792 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2379bcf0 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bb39377 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x308723d0 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x325ed257 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34d6e2fc amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a7a3f5e cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e1af574 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fd22122 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b8324b6 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5147345f cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b26a39f cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ea01595 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x605a24dd amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x714f98e1 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ea12902 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8651e8b0 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98fc96fe fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a438f26 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9baf9063 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f8bb214 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa738c484 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac6daf28 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb08c3c6b cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4d25995 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6702034 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe36600f3 cmp_connection_break +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x99ed5e34 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x65a47011 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x71e7ef94 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2bfae893 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4b3ef1c0 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x73553b0b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fa969e4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa32c061f snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc384c43 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9c76784 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xde18303a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0d662b85 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4b3554d1 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5396f1a1 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8bf3ecc8 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcf3e275 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xff9acdc6 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8ba7459c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb88134bc snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbb421f65 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd3992eb0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8f14252a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe82f737f snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3f3e0a38 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43e1e71b snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x695e5ed1 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x766d79f8 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8e8ab173 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfa87fdf4 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x03edd124 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2949df30 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x409968ba snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x45e3c0c2 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5919b3cf snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f50e4d2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x06fe280b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0e4b5ef8 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x45727381 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x565f33f1 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5c85ff85 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x67c70072 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8f8890ae snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ecb4b71 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc0c06384 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd7b82a10 snd_sbmixer_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x213b5723 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x269cc0ce snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x356d7851 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a25602e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d0c7b25 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46058fcd snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ac54ea6 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5bc5fbeb snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7169994b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87d7caa0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90da61b9 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9fffe162 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7bdeed0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa88bbdb9 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcea9cc4c snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf708ad9 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2f899d0 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf785a364 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1706875d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x36a87e1e snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4948c867 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4a8d1975 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x519cfb6c snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x548105e3 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9d569fdb snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb17cb483 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbb61dea8 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1723ee0e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2abf0d09 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5c3b4a23 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1bf20baa oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b9f9329 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37c8d367 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5043eb07 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x58635ec5 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72025d6c oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4b25ac4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4d69aba oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa52d45c9 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0336fd0 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb071e24c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb40eb978 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd222f42a oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd76087ef oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda269d67 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe409ca44 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe74c2e2f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe75bb140 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf12e538f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf408d026 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x008f5e61 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2411e8b7 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x42a2041d snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8e40c0ee snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xde4b2e74 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x52f1413b snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xfc734124 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x78029824 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x9bd9e623 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x875613f3 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xffc47504 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1b183878 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5739bfb8 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0580d84c aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x66264564 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb2ed1528 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x313504fc aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc6706c75 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 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 0xbbd8092f wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xdf59587c wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xffd315cb wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/snd-soc-core 0x196f096d snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/amd/snd-sof-amd-renoir 0x5f6834e0 sof_renoir_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x032d1f43 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16685b72 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18bc75bf snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c767a3d snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27f0c5f0 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30cc6567 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x323c8886 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41d0a834 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44d546d7 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d537936 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x537b992f sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64cc06d7 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6773fd26 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68848271 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x749817e3 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76fd9227 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ea221c1 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fea33c3 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x800e8697 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x817d08ad snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x832e5685 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8705ba2a sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x884d1953 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x890e7e95 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c7f3d26 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fe769e9 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98161a47 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a6d2035 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b50ec0e snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f086b5c sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa04ba548 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa065464e sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa376535b snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaca5be5c snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaca82e8b sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xadf63b03 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb59216ae sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb798955d snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd4f78c0 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe2ef461 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc074012a snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc156cdda sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca1c28a3 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc823e57 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xceaa851e snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd344e6c5 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe000f165 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe50f9e18 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf057451c sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3eb76ad snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf45f65d8 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4d18138 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5641ab9 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf96b5c76 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa947e10 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xb51f7b50 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x421e1612 sound_class +EXPORT_SYMBOL sound/soundcore 0x45296e3a register_sound_special +EXPORT_SYMBOL sound/soundcore 0x5c3b4214 register_sound_special_device +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 0xeb998add register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfd273c8c register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x023e4687 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 0x6c6e3eee snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x779be739 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x98870d82 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9ce7cb76 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdd6c8fec 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 0x4d75e969 __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 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00350790 pci_disable_device +EXPORT_SYMBOL vmlinux 0x00440003 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x004a368a devm_clk_put +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00bbb669 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e5f747 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x00fc9726 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015bd133 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x01631d62 __scm_send +EXPORT_SYMBOL vmlinux 0x016461c4 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x01717372 scsi_done_direct +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 0x018d1866 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x018e69da scsi_print_result +EXPORT_SYMBOL vmlinux 0x01a59837 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x01aa7691 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf0462 skb_push +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01dd3378 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0205b7c8 uart_match_port +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020d29e6 __d_drop +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 0x023d09c4 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x023f22a1 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024b4e44 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x0261e571 sock_from_file +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027bcbc2 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x028b4542 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02985d7e vc_resize +EXPORT_SYMBOL vmlinux 0x02acadde dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x02b6a74e __destroy_inode +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02d24132 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x03128ec5 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x03167259 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x031f6ab6 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x03323f0f ethtool_notify +EXPORT_SYMBOL vmlinux 0x0333512b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0349806c jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x034a7baa dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x036072e9 key_link +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0362f9a8 __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0396754a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b1af9c free_task +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c202b2 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x03ca888e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x03f2431c ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x043d0d43 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x043db932 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0451e75d __mdiobus_read +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047b91d1 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x0485eba6 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048dcdb9 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04ce5cbe dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x04d2fcae i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x04d59a06 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04db0349 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x04e5e26a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x04ea0f85 noop_llseek +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f12fcb from_kuid +EXPORT_SYMBOL vmlinux 0x04f6786e phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x05036422 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0503a258 file_remove_privs +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05423586 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x05436b75 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0570d35f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0583c5f1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05aa8932 __serio_register_port +EXPORT_SYMBOL vmlinux 0x05b12347 _dev_alert +EXPORT_SYMBOL vmlinux 0x05b6ab7a dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x05c6c8c7 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x05cd4d4f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x05d07a2a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x05d2405e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x06033b3d sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061d544c reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x0626f8d8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x062830a7 dev_mc_add +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06442ab0 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x064487ad put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x064d45b5 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x0658134d add_watch_to_object +EXPORT_SYMBOL vmlinux 0x065c12b2 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x066354d5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x0668b2fa inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066b7068 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x067b7706 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x06940f22 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x0697dd69 file_path +EXPORT_SYMBOL vmlinux 0x06a27c2f eth_type_trans +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b57642 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x06b7e2e1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d385d2 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x06ead246 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x06f37b2d generic_setlease +EXPORT_SYMBOL vmlinux 0x06f81260 param_ops_bint +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x072c0a8e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0741073e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x075ee7ae rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x07717603 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x0789d652 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x078be506 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aed0c2 d_genocide +EXPORT_SYMBOL vmlinux 0x07b49f88 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d43150 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x07f1523c irq_set_chip +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 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084416fd fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x085825de jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0862908e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0863dec1 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x0870d509 __icmp_send +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0884ed5e dget_parent +EXPORT_SYMBOL vmlinux 0x08a578ca clk_add_alias +EXPORT_SYMBOL vmlinux 0x08dc6a15 igrab +EXPORT_SYMBOL vmlinux 0x08dcf4ea mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x08e5088d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x09010efa __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0911076c kill_anon_super +EXPORT_SYMBOL vmlinux 0x0915943a kset_unregister +EXPORT_SYMBOL vmlinux 0x09288344 netdev_printk +EXPORT_SYMBOL vmlinux 0x0928f909 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x092cf9a2 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093acf0f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x0944e99a dump_skip +EXPORT_SYMBOL vmlinux 0x09526f7d give_up_console +EXPORT_SYMBOL vmlinux 0x095b5a2a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x09684129 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x09691ec3 sg_miter_start +EXPORT_SYMBOL vmlinux 0x096b8e23 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098a3b0a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0990f908 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099b63d7 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x09c48e2d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e1bba3 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x09e4a224 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x09ec4e4b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x09f51372 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x09f850b5 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x09fcb750 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a052638 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1e2ec4 param_set_bint +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a204d82 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0a2e8c59 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0a60b919 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a983b7e _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa0df8a mpage_readahead +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aabbe14 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abbd7fa serio_interrupt +EXPORT_SYMBOL vmlinux 0x0aca812f generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adc252e sock_init_data +EXPORT_SYMBOL vmlinux 0x0add5622 dst_release +EXPORT_SYMBOL vmlinux 0x0af2d535 __fput_sync +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b6c7562 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7dacb0 ether_setup +EXPORT_SYMBOL vmlinux 0x0b873adb inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb97ccc ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf0cb62 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c14e4f6 ip_defrag +EXPORT_SYMBOL vmlinux 0x0c177248 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2aec1e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x0c2e3f31 block_write_end +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c4a11a4 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x0c4e211b dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0c4f18f6 bh_submit_read +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5bb657 mmc_free_host +EXPORT_SYMBOL vmlinux 0x0c642d33 security_path_mknod +EXPORT_SYMBOL vmlinux 0x0c6bad78 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c70bc3a devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x0c761792 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x0c938cbb devm_register_netdev +EXPORT_SYMBOL vmlinux 0x0cb3ac1e agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x0cb40e1f filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x0cbd2760 backlight_device_register +EXPORT_SYMBOL vmlinux 0x0cc1cdb8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0cc1e799 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd95865 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d03c8cd page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x0d066a66 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0ca666 ps2_end_command +EXPORT_SYMBOL vmlinux 0x0d22737b xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x0d26e9c7 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x0d2a0bc5 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d54dbc8 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x0d7b002d boot_cpu_data +EXPORT_SYMBOL vmlinux 0x0d7c268b neigh_for_each +EXPORT_SYMBOL vmlinux 0x0d93111b ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x0d983097 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0daf7932 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0dc237b3 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x0dcfaaea devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x0ded28de vfs_rename +EXPORT_SYMBOL vmlinux 0x0df92a5e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0e063520 __breadahead +EXPORT_SYMBOL vmlinux 0x0e0f5079 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c43e1 set_page_writeback +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e509c69 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x0e6500f3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x0e6654dc pneigh_lookup +EXPORT_SYMBOL vmlinux 0x0e728345 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x0e9be6ec tcf_block_put +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 0x0ec7af51 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0ed05d2e set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x0eeafa35 ilookup5_nowait +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 0x0f4ea765 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x0f5b2d7f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f7f81ed pci_choose_state +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f900bf5 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x0f967232 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0facf9b1 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe341f7 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0fe488e2 skb_expand_head +EXPORT_SYMBOL vmlinux 0x0ff15319 posix_test_lock +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10065bf6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x100e8862 serio_bus +EXPORT_SYMBOL vmlinux 0x1022a5ae ppp_register_channel +EXPORT_SYMBOL vmlinux 0x102b870a tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104cc85e __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1052a8c6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105f178e cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1077071f pci_pme_active +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107df79a clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6e152 tcp_connect +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f0207c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x10f45869 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110b4568 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x113744e2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x114b746f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x114fcb98 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x11520195 sock_no_linger +EXPORT_SYMBOL vmlinux 0x11554d9d devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d9f25 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x11b5409e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x11c333d5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ea7a25 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x11f750d9 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1202eef7 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d91a0 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x121437d9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1221c7e5 path_has_submounts +EXPORT_SYMBOL vmlinux 0x122823c4 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x12362d9f cpu_info +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x125b8fe3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x126fe683 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x128197b1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e0be34 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x12eec8ce tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132c37ab path_get +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x1347509a dentry_create +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x1398aa53 filp_open +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13af27ff config_item_get +EXPORT_SYMBOL vmlinux 0x13c1878e fb_pan_display +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d2edcc iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140f0db3 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x140f7068 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141ff642 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x1420968b genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x14253c58 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x14254c74 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x143257b0 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x1437c4e3 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x14411e0e padata_free +EXPORT_SYMBOL vmlinux 0x14436cf6 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x14506659 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x1454ac10 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146ae0eb can_nice +EXPORT_SYMBOL vmlinux 0x146c35a1 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x14746951 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1483dd71 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14894049 param_ops_byte +EXPORT_SYMBOL vmlinux 0x148f6626 softnet_data +EXPORT_SYMBOL vmlinux 0x14998682 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x14b244b3 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x14baf043 wireless_send_event +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cab327 arp_create +EXPORT_SYMBOL vmlinux 0x14ffcfc0 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x150b70b1 mr_table_dump +EXPORT_SYMBOL vmlinux 0x150d6e29 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153c9249 __register_nls +EXPORT_SYMBOL vmlinux 0x1544be80 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x1546986c kill_fasync +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15621f96 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x15825877 phy_device_create +EXPORT_SYMBOL vmlinux 0x158b4ff4 phy_get_pause +EXPORT_SYMBOL vmlinux 0x15a4317b tcf_block_get +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bd830f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15de9d77 dev_add_pack +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x15fc8d9f netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x160cc468 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x160d0321 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1654b46e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x16757e02 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x167a4b2b simple_transaction_read +EXPORT_SYMBOL vmlinux 0x167c5230 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167ddfe1 block_write_begin +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16814684 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x1683d32b bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16aeccd8 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x16ccc00d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1705c1ec kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x170d32ef vme_register_driver +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1718b539 dma_pool_create +EXPORT_SYMBOL vmlinux 0x17199b32 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x1735ea01 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x173b8c46 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x173d6b53 fb_set_var +EXPORT_SYMBOL vmlinux 0x1745dc5b sock_setsockopt +EXPORT_SYMBOL vmlinux 0x174d8faa sg_miter_next +EXPORT_SYMBOL vmlinux 0x1752c537 phy_print_status +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1784d4e8 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x1785146e pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x1793ad5b pci_write_config_word +EXPORT_SYMBOL vmlinux 0x17a16735 kern_path_create +EXPORT_SYMBOL vmlinux 0x17b21dfb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17d7deb7 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x17eb0220 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x17ec55df skb_free_datagram +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17f8d63c agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x1810938a __free_pages +EXPORT_SYMBOL vmlinux 0x182e0fab nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1841fe59 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x184b6242 d_alloc +EXPORT_SYMBOL vmlinux 0x184e5bb3 param_set_ulong +EXPORT_SYMBOL vmlinux 0x186a1444 sock_no_connect +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18938d6b capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x18985ba0 simple_getattr +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18d98b83 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x18dc679c nonseekable_open +EXPORT_SYMBOL vmlinux 0x18e077e7 dev_uc_del +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f895ab call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x18fbb4fe dm_table_get_md +EXPORT_SYMBOL vmlinux 0x191a5e74 dev_deactivate +EXPORT_SYMBOL vmlinux 0x1920cb22 dev_change_flags +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x193061ec inet_offloads +EXPORT_SYMBOL vmlinux 0x1945e74a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x194d280f kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x197d435b ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1999a631 kill_litter_super +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a14b4e netdev_emerg +EXPORT_SYMBOL vmlinux 0x19a80f09 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19d29b50 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x1a070984 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x1a0aa994 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1a20e091 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x1a2dfe7d netdev_alert +EXPORT_SYMBOL vmlinux 0x1a35e38e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1a3781fc security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5cd6fa input_close_device +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a73e93f phy_detach +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a7b100a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1a82679c security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x1a8f2f1f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1a992a18 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aecb192 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1afc5c4a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b064e70 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1b097d94 udp_poll +EXPORT_SYMBOL vmlinux 0x1b0aaa1f flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x1b111369 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1b3b6e5b simple_get_link +EXPORT_SYMBOL vmlinux 0x1b442e41 skb_queue_head +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6716f0 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x1b741296 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba3d7b9 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baaf997 skb_tx_error +EXPORT_SYMBOL vmlinux 0x1bb04c91 udp_read_sock +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bc21800 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x1bcaacf2 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be9f159 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1c05c0b7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x1c0889bc filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6e3f2b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1c72fbee submit_bh +EXPORT_SYMBOL vmlinux 0x1c7a71bd register_quota_format +EXPORT_SYMBOL vmlinux 0x1c8732d7 rw_verify_area +EXPORT_SYMBOL vmlinux 0x1c943fe5 scsi_device_put +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb95fc1 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd0beca proto_register +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdc3aaf console_stop +EXPORT_SYMBOL vmlinux 0x1cde0d2a sock_no_bind +EXPORT_SYMBOL vmlinux 0x1ce41de2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1cf7c2cd filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x1cfa7e64 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1002b8 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d328af0 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x1d3f3f08 get_phy_device +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d509809 single_release +EXPORT_SYMBOL vmlinux 0x1d5d1119 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1d7cf43d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d996936 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbe4fcb con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1def4b85 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1df3aadd bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0ccbd5 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0ebab0 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e237a3e file_modified +EXPORT_SYMBOL vmlinux 0x1e3afbbc max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x1e3f1b95 simple_statfs +EXPORT_SYMBOL vmlinux 0x1e4bb4bb mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1e627e82 task_work_add +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 0x1ead0716 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x1eb909b3 inet_del_offload +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ecddee9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x1ecf5943 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edaef11 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f146431 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1f1821ae efi +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f3b9e4d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x1f451302 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x1f4bb583 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f64ad81 __put_user_ns +EXPORT_SYMBOL vmlinux 0x1f81e953 agp_bridge +EXPORT_SYMBOL vmlinux 0x1f855123 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x1f88647e mmc_retune_release +EXPORT_SYMBOL vmlinux 0x1f9f3d69 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x1fa60d3b phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x1fa7fbdb tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1fbaa2e0 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1fbb9298 pnp_get_resource +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 0x1fdc9223 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x1fe4df81 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x1ff3382d dump_page +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20300ce4 udp_seq_start +EXPORT_SYMBOL vmlinux 0x20346a25 inet6_bind +EXPORT_SYMBOL vmlinux 0x20380c6e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x203def6a fsync_bdev +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x206c82bd iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x207cdb72 md_reload_sb +EXPORT_SYMBOL vmlinux 0x207e31b9 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x209c098f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x20a4e878 register_filesystem +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +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 0x20de0eed tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x20e2141f skb_unlink +EXPORT_SYMBOL vmlinux 0x20e569bc simple_release_fs +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f55be4 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x21051193 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x2123d743 dm_io +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x21319175 netdev_state_change +EXPORT_SYMBOL vmlinux 0x21347ba8 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213a77ea netif_receive_skb +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21451a36 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x215203bc vfs_mkobj +EXPORT_SYMBOL vmlinux 0x215f2f98 dma_supported +EXPORT_SYMBOL vmlinux 0x216ea213 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x21839b32 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x2184f7dd inet_put_port +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21912f8f is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x21967acd request_key_tag +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21df456b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ede360 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x21ee6e7e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f997ac migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x2204d007 kset_register +EXPORT_SYMBOL vmlinux 0x2227eefc pskb_expand_head +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22490139 __module_get +EXPORT_SYMBOL vmlinux 0x224f4a9c neigh_seq_start +EXPORT_SYMBOL vmlinux 0x227c662f fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x22a914dc rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cdbc8f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x22dd594e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22def2b5 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x22e1b479 set_blocksize +EXPORT_SYMBOL vmlinux 0x22f6ed91 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x23020a2b netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x23307cae pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236878c7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2390bcb1 seq_release_private +EXPORT_SYMBOL vmlinux 0x239ae8eb vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x239c81f5 mmc_request_done +EXPORT_SYMBOL vmlinux 0x23ab74c9 _dev_err +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c2f56c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23ccfa39 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x23d726f0 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e071f7 elv_rb_find +EXPORT_SYMBOL vmlinux 0x23e4e0e5 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x23fd1e66 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2407acf4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x242ebf84 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x243c0ac2 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2444ac20 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x244d5036 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2467a44f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x24780c77 napi_complete_done +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2497bf9b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x249e2b4d dma_sync_wait +EXPORT_SYMBOL vmlinux 0x24ac35d2 d_lookup +EXPORT_SYMBOL vmlinux 0x24cb0a99 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x24cb4bce i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24db26dc no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x24ec21f6 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x24ee39b2 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x24f73980 sock_create_lite +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250fc75e xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2510aa3f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x251358da vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x25140027 param_get_bool +EXPORT_SYMBOL vmlinux 0x25161c1a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x25175b86 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x25188716 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2531a760 seq_lseek +EXPORT_SYMBOL vmlinux 0x2532003a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x25495436 mipi_dsi_dcs_set_tear_on +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 0x259370c5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x25943f9f generic_listxattr +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259ebc61 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x25c2257a neigh_xmit +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e70d39 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26125d2f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x2632ba46 vfs_llseek +EXPORT_SYMBOL vmlinux 0x263a49e4 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x26498f57 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x2664f77c complete_request_key +EXPORT_SYMBOL vmlinux 0x266a19ba tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x26822b55 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269a67e5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x26a5bb0e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x26a5fd08 km_report +EXPORT_SYMBOL vmlinux 0x26b2adc1 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x26c3a8c8 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x26d13ec2 pskb_extract +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ea6063 mmc_release_host +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2709a317 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271217ef fwnode_phy_find_device +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 0x27420f63 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2747d756 key_invalidate +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2773d74e inet_protos +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 0x278b4ed2 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x27941c31 i2c_transfer +EXPORT_SYMBOL vmlinux 0x27946106 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x27a9e41b serio_close +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c9cf82 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ec6a8d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x27f52b92 kobject_set_name +EXPORT_SYMBOL vmlinux 0x28004178 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x28039ca6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28192f03 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x281ed079 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x282a0097 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x283b3f47 PageMovable +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287d716b netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x287ee709 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x287f556a rproc_alloc +EXPORT_SYMBOL vmlinux 0x288c9b6d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x289eb7a1 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x28a8b103 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x28ad8f3b pci_set_mwi +EXPORT_SYMBOL vmlinux 0x28d43075 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x28d6ba80 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x290a6581 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x290afbcf netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x29163932 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x2933a662 tty_port_open +EXPORT_SYMBOL vmlinux 0x29532914 vfs_setpos +EXPORT_SYMBOL vmlinux 0x2958c5e0 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29691d4a cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x299a39fb sock_bind_add +EXPORT_SYMBOL vmlinux 0x299f3bef eisa_bus_type +EXPORT_SYMBOL vmlinux 0x29a644fd file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x29ab67b7 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c96893 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x29cac7cb nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a26f245 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3c28af sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2a4692e3 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x2a6a1a6c lease_modify +EXPORT_SYMBOL vmlinux 0x2a6a4e25 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a74eca1 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x2a76deef __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x2a8d063b qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa2960c tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2aca24d1 devm_memremap +EXPORT_SYMBOL vmlinux 0x2ad6aa4a tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2adac6db sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x2b0cfd55 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2b2cd105 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2b347299 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2b3482d0 put_fs_context +EXPORT_SYMBOL vmlinux 0x2b3fdd8f seq_putc +EXPORT_SYMBOL vmlinux 0x2b40d77a cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b662e9a xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2b672977 get_tz_trend +EXPORT_SYMBOL vmlinux 0x2b67c267 get_task_cred +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b74b8b7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x2b7c77d2 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x2b8cc6f0 nd_btt_version +EXPORT_SYMBOL vmlinux 0x2b8ce5dd param_set_hexint +EXPORT_SYMBOL vmlinux 0x2b9cd114 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb481b9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bfdbce2 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x2bfe1bb7 proc_symlink +EXPORT_SYMBOL vmlinux 0x2c0aeefc folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x2c1c3a0e __nd_driver_register +EXPORT_SYMBOL vmlinux 0x2c2316bc mark_page_accessed +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3ab710 vfs_get_super +EXPORT_SYMBOL vmlinux 0x2c4679e8 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c562044 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x2c666d92 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c81fbb9 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cc2caf4 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x2cc9f9aa pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd73f73 phy_read_paged +EXPORT_SYMBOL vmlinux 0x2cdc2fa1 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce302f1 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x2d0481dd t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2af90e register_key_type +EXPORT_SYMBOL vmlinux 0x2d2f4921 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d310d66 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2d32f9be pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3a2ea1 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6283d4 dcb_setapp +EXPORT_SYMBOL vmlinux 0x2d7d779b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da4ecfc dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x2db9d50b tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x2dbb66c6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de93679 _dev_printk +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df30569 component_match_add_release +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e587f87 vga_con +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7e8afa serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x2eba2724 page_symlink +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecf2b90 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x2ed51b94 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x2ed5f110 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2eded8e5 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2ee34e3f key_revoke +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eeee156 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x2ef3a4da block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x2f036aed elv_rb_add +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f127be8 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x2f20e42e tty_write_room +EXPORT_SYMBOL vmlinux 0x2f25cdcb read_cache_folio +EXPORT_SYMBOL vmlinux 0x2f26f9f9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f6284f6 sync_file_create +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f89994e mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x2f8faf93 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x2fc2f211 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2fd2015a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2fd7fe46 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fecac7e xsk_tx_release +EXPORT_SYMBOL vmlinux 0x2ffde1b6 make_kprojid +EXPORT_SYMBOL vmlinux 0x300e613e pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x305eb2d8 mmc_get_card +EXPORT_SYMBOL vmlinux 0x307d300b ipv4_specific +EXPORT_SYMBOL vmlinux 0x307f2950 generic_write_end +EXPORT_SYMBOL vmlinux 0x308dbbb7 pci_request_regions +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a827ec __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x30a8d120 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b4c72d d_invalidate +EXPORT_SYMBOL vmlinux 0x30c06b96 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x30c63bc6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x30ca1589 lookup_one +EXPORT_SYMBOL vmlinux 0x30cc2acb reuseport_alloc +EXPORT_SYMBOL vmlinux 0x30ccdec6 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x30cd46a9 dst_discard_out +EXPORT_SYMBOL vmlinux 0x30d2ea1e dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x30d6ba0b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31031d05 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x310c5916 generic_fadvise +EXPORT_SYMBOL vmlinux 0x31143431 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x311bbb57 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x3124569a pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31375180 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x313877c6 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x3163b15e follow_pfn +EXPORT_SYMBOL vmlinux 0x31698cbf vm_event_states +EXPORT_SYMBOL vmlinux 0x31892bae arp_xmit +EXPORT_SYMBOL vmlinux 0x318be5d8 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x319a2e45 cdrom_release +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b6e3cb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x31cf20b4 pps_register_source +EXPORT_SYMBOL vmlinux 0x31dbab79 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x31e3170f module_put +EXPORT_SYMBOL vmlinux 0x31f5a748 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x32026846 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32179cb3 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x3218bd2e xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x321c6591 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x324d30cb tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x3262ea58 tty_unregister_driver +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 0x3286c2d0 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x328b6d40 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3297b7ec dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x329ef8dd regset_get_alloc +EXPORT_SYMBOL vmlinux 0x329f23b2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x32c36db1 freeze_bdev +EXPORT_SYMBOL vmlinux 0x32cadb07 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32e921b8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332595db framebuffer_release +EXPORT_SYMBOL vmlinux 0x33259a36 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x334d94d4 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x33623a27 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x33700a25 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x338a0fbf sock_wmalloc +EXPORT_SYMBOL vmlinux 0x338a5590 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x338b30b5 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x339af6a9 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x33ad1c3b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x33ad43af pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b997c1 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x33d42d06 param_ops_short +EXPORT_SYMBOL vmlinux 0x33d434f8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x33d6b471 skb_flow_dissect_hash +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 0x340064f0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x341d96c0 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3428db82 mr_dump +EXPORT_SYMBOL vmlinux 0x343afccd netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x343bc33a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x344c707b __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x345d1e18 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x346e8e71 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x3471ec33 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x347c0e72 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3484452c folio_unlock +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348b1d74 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a05340 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34af512e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34d5a4ee handle_edge_irq +EXPORT_SYMBOL vmlinux 0x34d7fbda vme_master_mmap +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34dbc6f6 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x34ed69a8 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352e3f1f __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x3536cb84 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x35372a2c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x355b7339 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x355f10e8 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357924a4 pci_release_region +EXPORT_SYMBOL vmlinux 0x35917e18 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35bea991 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x35d1aa4c tcp_conn_request +EXPORT_SYMBOL vmlinux 0x35d38a4c seq_path +EXPORT_SYMBOL vmlinux 0x35dc7665 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3649391b agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x364a0e96 ip6_output +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3656d576 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3674777c alloc_pages +EXPORT_SYMBOL vmlinux 0x367fc150 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x368c2f95 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x36a82cec tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x36a9baa2 make_bad_inode +EXPORT_SYMBOL vmlinux 0x36b37700 audit_log_start +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36bd1d45 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x36ca193e pci_release_regions +EXPORT_SYMBOL vmlinux 0x36d5cf4e posix_lock_file +EXPORT_SYMBOL vmlinux 0x36debb35 tty_register_device +EXPORT_SYMBOL vmlinux 0x36e6870a devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x36ef75a8 proc_set_size +EXPORT_SYMBOL vmlinux 0x36f08731 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x36f419d1 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x3703b55f thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x3708eb06 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x370d4266 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372573b7 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x37380e19 ram_aops +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3760d5a8 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x376a319b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x376f91f4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x377307fb netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3788e995 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x378e4224 input_match_device_id +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37be75b7 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c5a2c3 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x37db614b scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f4e721 vme_slave_request +EXPORT_SYMBOL vmlinux 0x3808ff33 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x380b7b78 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x380cef06 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38202824 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3828b612 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x382c9e5e devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x38421367 rproc_boot +EXPORT_SYMBOL vmlinux 0x3849def4 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3852fde4 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385b9125 cdev_device_del +EXPORT_SYMBOL vmlinux 0x385eca9b ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3864227b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x38699e1b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x38727113 generic_shutdown_super +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 0x389b688d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x38a07134 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b86d29 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x38da8388 dm_table_event +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f64f6d seq_dentry +EXPORT_SYMBOL vmlinux 0x38f76210 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x38f93f5e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39349c25 eth_header +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393cfad3 dev_mc_init +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3953103a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39583fdd should_remove_suid +EXPORT_SYMBOL vmlinux 0x395e3e96 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x396247b8 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x3971d5ee fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a6e6d0 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c527ab sk_capable +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e7bc58 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a0f08b4 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1c5fd3 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3a26ba6b input_register_device +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5dee8c blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x3a5f27df vme_bus_num +EXPORT_SYMBOL vmlinux 0x3a5f8aa7 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x3a6b6336 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3a6c1a89 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x3aa2cf7f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3aa3bf74 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab8a07e dma_free_attrs +EXPORT_SYMBOL vmlinux 0x3ac12d96 xp_alloc +EXPORT_SYMBOL vmlinux 0x3ac1884b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x3ac784da mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad1b33a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x3ad40c98 inet_csk_prepare_forced_close +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 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aef7b0b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x3af16fa2 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b1ee809 register_cdrom +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2f9bb6 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b40f283 d_path +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk +EXPORT_SYMBOL vmlinux 0x3b7dc013 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b963636 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x3b993176 dquot_commit +EXPORT_SYMBOL vmlinux 0x3b9c1cb8 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x3ba34290 __brelse +EXPORT_SYMBOL vmlinux 0x3bb1cb1e fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3bc9e006 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x3bd6bf35 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bebaf86 arp_tbl +EXPORT_SYMBOL vmlinux 0x3bf08c58 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x3bf0a8b6 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x3bfa5cc0 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3bfaedd6 kobject_add +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c2a7cbf fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3c35222f mdio_device_free +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c50c950 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3c88d0d3 netdev_warn +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3ce33c34 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cef72fe devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d60b866 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3d6b54dd scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3d6de3c9 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3d6f2e2f iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3d9987ea pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dab638d build_skb_around +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 0x3db849dd prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddacdb3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3deada04 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dffb816 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x3dfffa7b unix_get_socket +EXPORT_SYMBOL vmlinux 0x3e1aae6f no_llseek +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4aedb6 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3e717f6b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3e739fe8 genphy_resume +EXPORT_SYMBOL vmlinux 0x3e766676 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x3e77803b simple_link +EXPORT_SYMBOL vmlinux 0x3e788f0d mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x3e992293 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3ecdfc9f mmc_start_request +EXPORT_SYMBOL vmlinux 0x3ed05c80 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efac025 phy_attached_info +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f062664 stop_tty +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f0f196c scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3f0f388d amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x3f1584d8 proc_create +EXPORT_SYMBOL vmlinux 0x3f1cc573 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x3f2bbcc6 security_sb_remount +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f510966 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3f83bfec security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f893d2e configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x3f9cd7c7 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x3fa1145d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3fa24ae0 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x3fba0e1b kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc72131 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x3fd2f8f8 cdev_add +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3feb3350 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x3ff791a6 generic_perform_write +EXPORT_SYMBOL vmlinux 0x3ff94510 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x40013904 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x400e4471 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x401a9352 configfs_register_group +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x4023a94b mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x40278a24 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x407a04a9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x407b8c74 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40980b0b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c1c3bf copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d49f47 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d82c19 rtc_add_group +EXPORT_SYMBOL vmlinux 0x40f3afed udp_gro_receive +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40ff8a53 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x4109e8de pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4130b834 phy_driver_register +EXPORT_SYMBOL vmlinux 0x4136cd30 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x4140dd43 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41494dee blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x415a74d5 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x41621533 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x4171769a twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4180e868 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418b9a30 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x419de8cc agp_copy_info +EXPORT_SYMBOL vmlinux 0x41a5d493 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x41b9cc24 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x41c06bcc fc_mount +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd828e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x422b1bbe vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x422c7ce9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4236d1cd devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424cd896 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425364b1 __register_chrdev +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42658f69 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x4270bb11 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x427523e9 iterate_dir +EXPORT_SYMBOL vmlinux 0x42790a23 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x42a53c19 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x42a568bb ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x42ad3450 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x42bc1791 __neigh_create +EXPORT_SYMBOL vmlinux 0x42bcc3d3 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42bf6b68 inet_add_offload +EXPORT_SYMBOL vmlinux 0x42c8563c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x42d4e1c4 con_is_visible +EXPORT_SYMBOL vmlinux 0x42e645ac end_page_writeback +EXPORT_SYMBOL vmlinux 0x42f04756 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307893b config_group_find_item +EXPORT_SYMBOL vmlinux 0x430960b2 mmc_put_card +EXPORT_SYMBOL vmlinux 0x43102808 set_cached_acl +EXPORT_SYMBOL vmlinux 0x43165782 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x4318fe30 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432aafc6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433a85bb __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4354ca95 __scm_destroy +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4399a6a0 skb_append +EXPORT_SYMBOL vmlinux 0x439af369 devm_free_irq +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b24674 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x43c5404d param_ops_hexint +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d8efe8 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x43db88fd scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x43e35451 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x43e6c06b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x43eca24a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x440beef4 lru_cache_add +EXPORT_SYMBOL vmlinux 0x4419af2d udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x442b6c90 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44480c27 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x444827f0 d_delete +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4466c27e phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x44828418 dm_get_device +EXPORT_SYMBOL vmlinux 0x44840359 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x44862321 genphy_loopback +EXPORT_SYMBOL vmlinux 0x448d9228 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44c08312 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x44dc67e5 __phy_resume +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450aed17 input_register_handle +EXPORT_SYMBOL vmlinux 0x450df44a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4511d6ea skb_copy_header +EXPORT_SYMBOL vmlinux 0x45135a4f tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534b221 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x4539dc35 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4556cede input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x455c6bc8 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x456c7d85 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4579f8dc block_truncate_page +EXPORT_SYMBOL vmlinux 0x457bba50 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x459f7efb __devm_release_region +EXPORT_SYMBOL vmlinux 0x45c1b1c0 netdev_crit +EXPORT_SYMBOL vmlinux 0x45ca7a91 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x45d1d73a dev_driver_string +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45e2e74f skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45f990e0 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4615d4a3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46480f98 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466fb9b0 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x4679535e __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4686d95c km_query +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46acb619 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46cf956b mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47163c79 neigh_destroy +EXPORT_SYMBOL vmlinux 0x473a2117 sync_blockdev +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x4767c12f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478b8c8d __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479d2601 thaw_bdev +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c7a6e2 dma_find_channel +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47ea555f __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481e2062 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x48302eaa pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x48328c69 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4845641f param_get_byte +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +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 0x48635030 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x486779f2 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x48855a31 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x489449b6 pcim_iomap +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c674e0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule +EXPORT_SYMBOL vmlinux 0x48f9fbf7 input_event +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4916a328 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49593451 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x496583a4 finish_no_open +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49720c72 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x49766f98 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x497bc2f4 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x49859d8a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x498cf533 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x49990e48 param_set_ushort +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49ab6ac0 vme_irq_free +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d36af2 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x49fae8a5 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x49fe2220 secpath_set +EXPORT_SYMBOL vmlinux 0x4a1f9f62 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a57a57b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4a7eb685 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4a94a881 write_inode_now +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aaf6fe4 sk_common_release +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ad88317 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aef62af nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x4af37093 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0069f4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0d951f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4b2e32e7 update_region +EXPORT_SYMBOL vmlinux 0x4b344878 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x4b34c9d2 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x4b3ecc4c __netif_schedule +EXPORT_SYMBOL vmlinux 0x4b440794 generic_file_read_iter +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 0x4b7867f2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4b7abd79 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4b8097f4 input_set_capability +EXPORT_SYMBOL vmlinux 0x4b88fad3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4bb1349c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf57f0e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c15a3e6 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x4c1b72b2 generic_permission +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c33bf9e pci_match_id +EXPORT_SYMBOL vmlinux 0x4c3a2c45 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x4c3e69cd scsi_remove_host +EXPORT_SYMBOL vmlinux 0x4c3f966c xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c443b67 sock_wake_async +EXPORT_SYMBOL vmlinux 0x4c674279 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x4c6a208a iunique +EXPORT_SYMBOL vmlinux 0x4c96ad1c vfs_create_mount +EXPORT_SYMBOL vmlinux 0x4c9a2ae6 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca2a179 unregister_key_type +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbb9ec3 kernel_connect +EXPORT_SYMBOL vmlinux 0x4cc121b9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cd82952 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x4cd8533d kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x4cdd04dd pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4ceef226 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x4cf70956 dquot_destroy +EXPORT_SYMBOL vmlinux 0x4cf92502 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d339600 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x4d4a6d5e vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x4d53e614 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x4d645d12 phy_attach +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db463be pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x4db6bf72 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x4db7bc0a agp_find_bridge +EXPORT_SYMBOL vmlinux 0x4dc11b97 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dca16f8 bmap +EXPORT_SYMBOL vmlinux 0x4dccb8b5 vm_insert_pages +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 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e3021a4 blk_put_queue +EXPORT_SYMBOL vmlinux 0x4e332902 nla_append +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3ed2e3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e6130f8 sock_wfree +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8a7be9 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x4e9685a3 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb0052b phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4ec3e6fd netif_rx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed9d1e1 skb_split +EXPORT_SYMBOL vmlinux 0x4f066596 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4f18ab3a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2968a8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x4f48f876 key_unlink +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f62d39a rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x4f6d629b __check_sticky +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f821e41 sock_i_ino +EXPORT_SYMBOL vmlinux 0x4f8ffbee free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4fa8f1f1 param_ops_int +EXPORT_SYMBOL vmlinux 0x4faa392c param_set_int +EXPORT_SYMBOL vmlinux 0x4fd9b986 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50000d20 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x500048f1 inet6_protos +EXPORT_SYMBOL vmlinux 0x5006ce1e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500de519 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x501d1beb vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x504d3eab nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5053c5d5 skb_store_bits +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5065f5dc unix_attach_fds +EXPORT_SYMBOL vmlinux 0x50661cce simple_setattr +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5088105e __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x5097f7d7 vga_switcheroo_get_client_state +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 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cc203a __SCK__tp_func_rdpmc +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 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51057f85 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x510cd49e fiemap_prep +EXPORT_SYMBOL vmlinux 0x51111e87 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x5117c1a3 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x51206623 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5123fbc9 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x51299f91 sk_alloc +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5188de91 get_tree_single +EXPORT_SYMBOL vmlinux 0x51a4590c sock_kmalloc +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51c3195b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x51c41e89 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x520f3f74 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x520fcac0 vfs_unlink +EXPORT_SYMBOL vmlinux 0x52428810 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x5267a38d set_nlink +EXPORT_SYMBOL vmlinux 0x5269d08c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x526bbb9d neigh_update +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a62ea4 d_rehash +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f5db4a dev_lstats_read +EXPORT_SYMBOL vmlinux 0x52fed2cd xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x53076dd4 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530ba382 pci_get_slot +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53212f2d iov_iter_npages +EXPORT_SYMBOL vmlinux 0x5331a874 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533997ce netdev_notice +EXPORT_SYMBOL vmlinux 0x534e94a9 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x538a4ccd tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x538f6017 phy_start +EXPORT_SYMBOL vmlinux 0x53a28702 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53c65a09 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x53e181d1 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x53e197a6 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x53e87f33 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x5414d44c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x541a6db8 module_layout +EXPORT_SYMBOL vmlinux 0x5434efc3 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x543ad234 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5440543e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x54413a4a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x54528720 nf_log_unset +EXPORT_SYMBOL vmlinux 0x54533a50 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x546957ca mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5497f6d3 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x54a81696 dev_trans_start +EXPORT_SYMBOL vmlinux 0x54a913ef blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54faaa83 input_flush_device +EXPORT_SYMBOL vmlinux 0x54fcdb15 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x55127462 pci_iomap +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554b8b9a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x555540a5 nf_log_unbind_pf +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 0x557d6f34 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x55837a5f dump_emit +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559ae3e5 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x55a4189a dns_query +EXPORT_SYMBOL vmlinux 0x55c12cb8 sock_edemux +EXPORT_SYMBOL vmlinux 0x55ca91a0 pid_task +EXPORT_SYMBOL vmlinux 0x55cbf8b0 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb25bb blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x55ec7f62 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x55f781d1 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x55fba6aa pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x56068ba9 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x56078908 misc_register +EXPORT_SYMBOL vmlinux 0x5615a4fc bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x56227711 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5629375c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563b9ec1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564e20cf pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565c72e4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x565fe66f key_alloc +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568d7fc3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x56959889 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x56aa9c76 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x56c14cc5 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d286bb sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x56d969b4 tcp_poll +EXPORT_SYMBOL vmlinux 0x56ddad5c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x56fc9504 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x56fe6de6 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x5708ebf2 cdev_del +EXPORT_SYMBOL vmlinux 0x570dd8da cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x571a2357 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575e1bc2 page_mapped +EXPORT_SYMBOL vmlinux 0x578110a1 __quota_error +EXPORT_SYMBOL vmlinux 0x5783224c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579689f8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x57b28df0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bde703 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x57ca0782 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57ec8780 ptp_cancel_worker_sync +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 0x584afa2f da903x_query_status +EXPORT_SYMBOL vmlinux 0x58556c77 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5858f877 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x585db2cc try_module_get +EXPORT_SYMBOL vmlinux 0x5874e895 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x5878980f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5880c64a fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x589909d0 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x58993b3c bio_init +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bdb80d d_exact_alias +EXPORT_SYMBOL vmlinux 0x58ca4d7d security_sk_clone +EXPORT_SYMBOL vmlinux 0x58ce6eaf flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x58cea16a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f82de0 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x590ccc5f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x590e3687 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x59230cee ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x5928dd0e dev_set_alias +EXPORT_SYMBOL vmlinux 0x593c827c neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x5942be91 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x5944ec2d xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59553883 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59720fc3 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x59793d77 generic_file_open +EXPORT_SYMBOL vmlinux 0x5982325c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5994c673 input_free_device +EXPORT_SYMBOL vmlinux 0x599fa06d sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c203eb mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x59dd0f36 vif_device_init +EXPORT_SYMBOL vmlinux 0x59e1ac03 skb_put +EXPORT_SYMBOL vmlinux 0x59fc1e21 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1836db xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x5a1b435d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5a248e50 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2c073d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5a3c8a3b unregister_netdev +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 0x5a5d8592 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x5a5ea638 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5a855a7a inode_nohighmem +EXPORT_SYMBOL vmlinux 0x5a8618d8 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9d1394 netdev_info +EXPORT_SYMBOL vmlinux 0x5aac2251 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x5abb6ed9 seq_puts +EXPORT_SYMBOL vmlinux 0x5ad062d1 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae834d5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x5aee5780 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5af5c15f __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x5afa3d29 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x5afea130 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5b179434 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x5b1a1f8c jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x5b1a6a59 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x5b2a49a6 vma_set_file +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b313261 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a7f79 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b655d10 migrate_page_states +EXPORT_SYMBOL vmlinux 0x5b73e87e bio_split +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b839c02 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x5b941221 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x5b99abbe mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5ba27f9a tty_check_change +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5befbb3e phy_error +EXPORT_SYMBOL vmlinux 0x5bff02d9 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5c095b6d blk_rq_init +EXPORT_SYMBOL vmlinux 0x5c0b51ac ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4b2dd9 __alloc_skb +EXPORT_SYMBOL vmlinux 0x5c4c5809 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x5c52c74e flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x5c65e38b input_unregister_device +EXPORT_SYMBOL vmlinux 0x5c929f02 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x5c978830 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x5cb70595 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x5cc9b341 generic_read_dir +EXPORT_SYMBOL vmlinux 0x5ccb53e0 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x5cd47893 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5cd89c47 get_fs_type +EXPORT_SYMBOL vmlinux 0x5cda74e8 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d064b2a neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5d07b40d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5d1d6f6f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x5d2ec5de get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x5d401f7f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5d46ecdf __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5d48668b inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4f665e mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5d5d5502 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x5d6e7397 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x5d6efd1f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5d720833 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x5d7a4952 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x5d942d4a netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5dac6b32 arp_send +EXPORT_SYMBOL vmlinux 0x5db8d9ec jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x5dc3c9af __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5dc4996d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x5dca6913 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x5dd6b07a md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x5de78793 kobject_put +EXPORT_SYMBOL vmlinux 0x5df68981 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5dff1c98 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1e7427 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5e228312 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e36c0a3 md_write_start +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e39ecdb ip_do_fragment +EXPORT_SYMBOL vmlinux 0x5e4af839 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x5e5fdd54 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x5e6a04a9 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x5e6fc4be inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5e7decb2 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97a1be ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5e9bc16e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x5eaca692 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9726b sock_release +EXPORT_SYMBOL vmlinux 0x5ec34026 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecf482f icmp6_send +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0d56f i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddfb4c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x5ee4ffe9 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f11860e eth_get_headlen +EXPORT_SYMBOL vmlinux 0x5f13641a d_move +EXPORT_SYMBOL vmlinux 0x5f1e28e5 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5f21c8de find_inode_rcu +EXPORT_SYMBOL vmlinux 0x5f246a0e mdio_device_create +EXPORT_SYMBOL vmlinux 0x5f28d603 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f353960 phy_device_register +EXPORT_SYMBOL vmlinux 0x5f4f1e5e netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x5f540977 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f5f7fd8 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5f62e758 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x5f6b55f9 is_nd_dax +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f7f76b1 follow_up +EXPORT_SYMBOL vmlinux 0x5f854e20 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x5f8845c9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x5f9249ef fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fb4ccfe vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd7f474 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe8eb94 phy_connect +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x600b854a kill_pgrp +EXPORT_SYMBOL vmlinux 0x601674d9 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x601a83d7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60212de8 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604e7e61 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6059346b flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x605acb66 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x6071d3d4 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6095416c neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x6098d562 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ad2d46 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b3bb8c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x60bf400b udp_seq_stop +EXPORT_SYMBOL vmlinux 0x60c5aaf9 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x60c612eb kthread_create_worker +EXPORT_SYMBOL vmlinux 0x60cc20d6 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x60d2f019 kill_pid +EXPORT_SYMBOL vmlinux 0x60d75e6d scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ddbe36 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x60e09158 put_watch_queue +EXPORT_SYMBOL vmlinux 0x60e855f5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x60ee9ee4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x60efab56 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x60fe71bb tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x61047e78 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610825e4 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x611cda4f iget_locked +EXPORT_SYMBOL vmlinux 0x6124b040 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61374db0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x61429050 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x61520c66 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x615717ed dcb_getapp +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615f1b6d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x616041e6 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x6162ecba bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x617acd8c vfs_iter_write +EXPORT_SYMBOL vmlinux 0x617bdedd input_set_abs_params +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6184b304 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x61858991 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x6188095d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61986b8e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61ab2038 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x61b4410f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c8c5a3 tso_build_data +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61eaebb3 bio_add_page +EXPORT_SYMBOL vmlinux 0x61f255a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6204cdcd amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x62141f0b mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62150734 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622e44ea sock_set_priority +EXPORT_SYMBOL vmlinux 0x62318efe inet_shutdown +EXPORT_SYMBOL vmlinux 0x623e4a0e netif_device_attach +EXPORT_SYMBOL vmlinux 0x6243fe9b md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274fe67 inet6_release +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62855576 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x628eac32 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629f9dad netdev_change_features +EXPORT_SYMBOL vmlinux 0x62a2f0e5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x62be6add xattr_full_name +EXPORT_SYMBOL vmlinux 0x62ca91b5 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x62cebee3 seq_open_private +EXPORT_SYMBOL vmlinux 0x62d73f56 sk_stream_error +EXPORT_SYMBOL vmlinux 0x62e43770 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fb2ab1 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x631e7c60 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x633b620e setattr_copy +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6363eb1d pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x636cd389 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x637c3495 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x638c0c21 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x63a54900 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b06f6e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x63c2ddb9 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x63c37e5f __skb_ext_del +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dfe616 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ee1e63 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x63ef1698 pci_map_rom +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6415e8f5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x64323c77 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x6439c19c dev_activate +EXPORT_SYMBOL vmlinux 0x64448d4e i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x6467aa66 sock_pfree +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648861ab rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x648a6b44 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64919a91 invalidate_disk +EXPORT_SYMBOL vmlinux 0x64942266 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x649d29a3 netif_device_detach +EXPORT_SYMBOL vmlinux 0x64a33df3 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b37983 from_kprojid +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d43b5a folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x64de735d param_ops_ulong +EXPORT_SYMBOL vmlinux 0x64f83366 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x650a5f04 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x650d5722 scsi_partsize +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x6547a0d9 setattr_prepare +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65781786 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x658ab7b2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x658b033a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65944e3a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a38110 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x65b0270e security_sock_graft +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bb42bf dquot_free_inode +EXPORT_SYMBOL vmlinux 0x65bc783d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x65c2bbd0 __netif_rx +EXPORT_SYMBOL vmlinux 0x65c5dc76 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x65c96622 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e4707b padata_alloc +EXPORT_SYMBOL vmlinux 0x661269a6 param_get_long +EXPORT_SYMBOL vmlinux 0x6622413a tcp_disconnect +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66277a0f md_done_sync +EXPORT_SYMBOL vmlinux 0x662c58e6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6638d8f8 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x66445246 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x66581a20 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66818ac6 dquot_alloc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x66db9a33 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x66dbddbe unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x66f8ac49 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6712d2e9 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6720612e passthru_features_check +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6726ee33 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6728a54e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672e7557 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x67306cc6 dst_alloc +EXPORT_SYMBOL vmlinux 0x6732e95a fqdir_exit +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x677f5add flush_signals +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6790a4b8 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x67a07718 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b41d36 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67df1a21 scmd_printk +EXPORT_SYMBOL vmlinux 0x6800f31e __break_lease +EXPORT_SYMBOL vmlinux 0x68031039 init_net +EXPORT_SYMBOL vmlinux 0x6812d53b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6828c59f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x6837ec53 vme_dma_request +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6865e667 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6867dbe7 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6875fc59 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687f398d dev_get_stats +EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x6894141b user_revoke +EXPORT_SYMBOL vmlinux 0x68bc4462 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68cb03a9 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x68e79558 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x68e959fe lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x68f39886 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69112e7c flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6926fc6d fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x6929f6ab grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x6949bc14 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69713d52 key_task_permission +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6977f21c del_gendisk +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699854d2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x699ea030 seq_read_iter +EXPORT_SYMBOL vmlinux 0x69a423fb ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x69a83edd scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69c278dc d_prune_aliases +EXPORT_SYMBOL vmlinux 0x69c69eff input_unregister_handler +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d8058d pci_msix_vec_count +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 0x6a21b06e tso_build_hdr +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a4547e5 ppp_unregister_channel +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 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa737f1 try_to_release_page +EXPORT_SYMBOL vmlinux 0x6aa9fb0c take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x6ab515a8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6ab7a6b8 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6acb8246 ihold +EXPORT_SYMBOL vmlinux 0x6acbab3b follow_down +EXPORT_SYMBOL vmlinux 0x6acc44da skb_copy +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae415fb get_watch_queue +EXPORT_SYMBOL vmlinux 0x6aeeee72 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af5ecc0 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6b0abd58 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6b0f47e5 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b16294f nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6b21f227 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b394a34 dev_add_offload +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b628000 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b73e971 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x6b7c952e devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b962f2f security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x6b9dda62 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x6bab8733 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x6babdfcd pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6bad54c7 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x6bad88bc mount_subtree +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc60e1c netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x6bccce4d __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be45e91 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x6bec8410 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6bf8b6b8 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x6c052e91 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x6c0f7a88 get_acl +EXPORT_SYMBOL vmlinux 0x6c1974d5 ping_prot +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c284454 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c4d8b08 vme_irq_request +EXPORT_SYMBOL vmlinux 0x6c5857b1 udp_ioctl +EXPORT_SYMBOL vmlinux 0x6c5b8dd7 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c81bf3f tty_port_close_end +EXPORT_SYMBOL vmlinux 0x6c8e0c03 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6c8f465c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x6c96e583 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cc676ed __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x6cd66cb8 inc_nlink +EXPORT_SYMBOL vmlinux 0x6cf7edb8 ip6_dst_check +EXPORT_SYMBOL vmlinux 0x6cf90d10 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1e4446 tty_port_block_til_ready +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 0x6d37cdb4 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x6d488c45 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d646266 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x6d688b0e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x6d7500b3 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6d7a637d iov_iter_init +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d9d41a2 dentry_open +EXPORT_SYMBOL vmlinux 0x6da17264 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x6da4024c xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x6da92e7b dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x6daf53f1 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbd0e14 blk_mq_start_request +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 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df3afe6 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x6df7b95f i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6e08beb3 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x6e175388 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x6e1fed97 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6e32e51d __devm_request_region +EXPORT_SYMBOL vmlinux 0x6e33d032 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x6e3d1982 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6e3ead5d iov_iter_zero +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5e3851 input_allocate_device +EXPORT_SYMBOL vmlinux 0x6e672ee6 current_time +EXPORT_SYMBOL vmlinux 0x6e6e024b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ebed6b7 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6ece6dc8 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x6ee09f21 simple_write_begin +EXPORT_SYMBOL vmlinux 0x6ee2a4cd jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6f026b2c dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x6f058981 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6f12dc18 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x6f172cb2 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6f2606d1 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6f29df22 logfc +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f425036 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6f49ea72 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4eb40a reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x6f51ff2f fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x6f5992d0 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6f5a9499 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f686e66 put_cmsg +EXPORT_SYMBOL vmlinux 0x6f849aa1 xfrm_dst_ifdown +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 0x6fbfe805 pci_find_resource +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd1906f pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x6fd95dd7 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7005f7e1 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x7008a081 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7025f64a xp_can_alloc +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70784dc3 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x70a56138 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70adbe91 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x70bc32bb xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x70e4952c tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x70f6679b xfrm_register_type +EXPORT_SYMBOL vmlinux 0x710d5d63 kernel_bind +EXPORT_SYMBOL vmlinux 0x71109d18 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713dfc6a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x71414925 rproc_put +EXPORT_SYMBOL vmlinux 0x71427a12 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x714da0ca vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716146d1 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7165f2f8 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7180998f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x71821c3a twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x7184059c qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x719d507a __lock_buffer +EXPORT_SYMBOL vmlinux 0x71a2af3f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae8035 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x71cbab8b d_make_root +EXPORT_SYMBOL vmlinux 0x71d5b294 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e7482b phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x71eada32 default_llseek +EXPORT_SYMBOL vmlinux 0x71fb182d page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x72027c44 vm_insert_page +EXPORT_SYMBOL vmlinux 0x720419c5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72183aa8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7227675e kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7229b6da phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x723331d5 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7250e397 fb_show_logo +EXPORT_SYMBOL vmlinux 0x725a646d backlight_force_update +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727e6e29 inet_getname +EXPORT_SYMBOL vmlinux 0x7285b1e2 vfs_readlink +EXPORT_SYMBOL vmlinux 0x72895f9a nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72de6d52 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f99096 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731dc189 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x73224674 netlink_capable +EXPORT_SYMBOL vmlinux 0x73228cc1 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73437a0b kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7361ca74 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x7364c5a0 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738d5b26 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x738d7fe4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x73a2daf3 phy_suspend +EXPORT_SYMBOL vmlinux 0x73aa3ed3 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73adcf1d ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x73b2d574 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x73d165dc mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e7cb13 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x73f3f48a pipe_lock +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7430eb00 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7496b281 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x74aa55ac __register_binfmt +EXPORT_SYMBOL vmlinux 0x74b30374 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca3b6a mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x74ccf276 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x74d5b52f filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x74dc6964 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x74df7af5 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x750842bf vfs_getattr +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75557761 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75834c2f dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x759135df phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a1e0a3 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x75a6c1df sock_gettstamp +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c68aa0 audit_log +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75f99a6f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x75fa8095 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7645a01a drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766b4f1c param_set_byte +EXPORT_SYMBOL vmlinux 0x7674696d pci_set_master +EXPORT_SYMBOL vmlinux 0x7677afb3 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x769f9b22 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x76a52e2c pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x76ab5b81 nf_reinject +EXPORT_SYMBOL vmlinux 0x76b37eb1 netif_skb_features +EXPORT_SYMBOL vmlinux 0x76b4e39f netdev_update_features +EXPORT_SYMBOL vmlinux 0x76be273a mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771e3640 proc_create_data +EXPORT_SYMBOL vmlinux 0x7724ef1c misc_deregister +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77332991 nd_dax_probe +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 0x775c866a pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x77791f24 set_user_nice +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x777e8fdf tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x7793e573 ilookup5 +EXPORT_SYMBOL vmlinux 0x779a4926 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x77a07848 dquot_file_open +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77b0cb2d inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c030da __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x77e641b1 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ea094d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x781220d5 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7835afa8 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78651602 sock_rfree +EXPORT_SYMBOL vmlinux 0x786df506 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78991b29 qdisc_put +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a3849d pmem_sector_size +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78db6edf rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f1838e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x78f5c260 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x793b4af7 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x794a9fab pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x794f41bf d_add +EXPORT_SYMBOL vmlinux 0x7958a249 I_BDEV +EXPORT_SYMBOL vmlinux 0x795abc5f ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x795c0aab uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x79605a62 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x79708a29 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7993e254 param_get_charp +EXPORT_SYMBOL vmlinux 0x79a26147 device_add_disk +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b98c44 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x79c163ce inode_update_time +EXPORT_SYMBOL vmlinux 0x79c21363 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x79c57a3a icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x79d9c36d dquot_transfer +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x7a08e219 pci_iounmap +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2febab genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a4235eb tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7a51cd62 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5fdc1b pci_save_state +EXPORT_SYMBOL vmlinux 0x7a6aa7e1 d_alloc_name +EXPORT_SYMBOL vmlinux 0x7a7d0809 fput +EXPORT_SYMBOL vmlinux 0x7a814b77 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x7a826138 serio_rescan +EXPORT_SYMBOL vmlinux 0x7a849894 register_netdev +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a97ee68 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa68b4a devm_release_resource +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac4a5a6 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5cf52 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7addb33b xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x7addf992 to_nd_btt +EXPORT_SYMBOL vmlinux 0x7af9725e folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b06f058 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x7b1b00f7 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7b350a71 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b569f9a xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb59c29 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7bbb98d2 bio_put +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc452e8 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0x7bd5eb05 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x7bf19ae5 inode_init_once +EXPORT_SYMBOL vmlinux 0x7bf39db8 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1cc154 mmc_command_done +EXPORT_SYMBOL vmlinux 0x7c2a125a tty_port_put +EXPORT_SYMBOL vmlinux 0x7c3b6c59 kobject_get +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c558893 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x7c5a6665 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7c5c54bc gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x7c68d7e8 tty_port_init +EXPORT_SYMBOL vmlinux 0x7c6f4eed skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x7c74817e truncate_setsize +EXPORT_SYMBOL vmlinux 0x7c820784 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7c8225e5 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x7c8825f4 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7c891933 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7c969c94 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca09420 init_special_inode +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7ae07 inet_accept +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d1a70f7 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7d1dab5c phy_write_paged +EXPORT_SYMBOL vmlinux 0x7d35e4ec max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7d40cda2 fs_bio_set +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d6ceb4a agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8cdc19 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7d966358 stream_open +EXPORT_SYMBOL vmlinux 0x7d98a651 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbb6d7f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7dbe2c4c fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x7dc054ee phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcd3f13 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddd2852 set_bh_page +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc1363 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7e0101ba inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7e1a90da _dev_crit +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e55318b fb_get_mode +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7ed11013 phy_disconnect +EXPORT_SYMBOL vmlinux 0x7ee0c140 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x7eef2e8a phy_do_ioctl +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 0x7f157f62 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x7f21e729 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f3d152c of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x7f48b603 config_item_set_name +EXPORT_SYMBOL vmlinux 0x7f498c3f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5c5db3 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7f6bd723 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7838ac reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fa21777 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7fac44e2 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x7fc2776e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7fcb828e jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffb3666 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x7ffcca8b noop_qdisc +EXPORT_SYMBOL vmlinux 0x7ffe1d41 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x7ffe86b9 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x80216936 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x802e62cb udp_set_csum +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8068f167 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x8077199e blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x807f62d2 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809b4ac2 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dbc247 sget_fc +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80fe6bed folio_alloc +EXPORT_SYMBOL vmlinux 0x81091025 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81101873 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812a89bd page_pool_create +EXPORT_SYMBOL vmlinux 0x813bcc84 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x81480324 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x8151811b iget_failed +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815d4673 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x815e44b8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816e6eba __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8179415e netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x817a2e92 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x819208c6 input_reset_device +EXPORT_SYMBOL vmlinux 0x81951c5a __do_once_done +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a92fe4 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81c79eb6 unregister_console +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81d9f30f __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e0789a may_umount +EXPORT_SYMBOL vmlinux 0x81e58a08 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ece392 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x81f1a8ce pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x82150639 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x822fb563 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x8239bbf5 register_framebuffer +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x825458ba tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x82615b59 serio_reconnect +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x82724b55 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x827fbca2 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8287ed72 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x8296f02e param_set_ullong +EXPORT_SYMBOL vmlinux 0x8298a9a0 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x82a11a62 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x82abe1e8 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x82b8946f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x82c60249 bioset_init +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82ff539b pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x8311da04 ps2_init +EXPORT_SYMBOL vmlinux 0x831a06e2 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x833b8952 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x83568e11 kernel_accept +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8368d26f seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x83773617 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837c2f32 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x837fccf1 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x839a87d9 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x83ae2e29 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x83ba41ed skb_trim +EXPORT_SYMBOL vmlinux 0x83cf97a2 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x83d16e56 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x83dbd50e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x83dc3bb8 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x83e9d010 readahead_expand +EXPORT_SYMBOL vmlinux 0x83ed6389 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x83f57d40 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840b5156 param_set_charp +EXPORT_SYMBOL vmlinux 0x8414dc85 agp_backend_release +EXPORT_SYMBOL vmlinux 0x841520a8 unpin_user_page +EXPORT_SYMBOL vmlinux 0x841b187c configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x84221b7f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x84243c22 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x842d4b5c mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x8449042f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8452f04b vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84aa6cbc simple_rename +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1ad08 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84ea6b45 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8524eecb blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858db142 con_is_bound +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85941cfc scsi_device_get +EXPORT_SYMBOL vmlinux 0x85970e47 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x85a52119 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x85aa5576 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c3d296 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x85d0f4a8 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x85d7d97f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8612eacf dput +EXPORT_SYMBOL vmlinux 0x86188239 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8626bce1 eth_header_cache +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862c955f open_with_fake_path +EXPORT_SYMBOL vmlinux 0x8639096a iput +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8644506c param_get_uint +EXPORT_SYMBOL vmlinux 0x86460a05 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8655556f md_write_inc +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x86852f87 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8691936c key_validate +EXPORT_SYMBOL vmlinux 0x86954c1e acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x869621e0 tty_do_resize +EXPORT_SYMBOL vmlinux 0x8698edc3 __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x86adbba7 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x86aec907 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d17639 set_page_dirty +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e0d59b bio_kmalloc +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87051a98 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x87148c85 _dev_info +EXPORT_SYMBOL vmlinux 0x873afdb1 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x8740e539 poll_freewait +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 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87d7ae6b cdev_device_add +EXPORT_SYMBOL vmlinux 0x87d9556d ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8826247c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x88275b88 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8831f53f sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x886e61d0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x88706a99 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8875e4a1 kernel_listen +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88978abf sock_no_listen +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88ba5a3a trace_event_printf +EXPORT_SYMBOL vmlinux 0x88c01ecb _dev_notice +EXPORT_SYMBOL vmlinux 0x88d5bdea scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e7c3fb bdi_register +EXPORT_SYMBOL vmlinux 0x88f2f4ea fget +EXPORT_SYMBOL vmlinux 0x88f32611 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0x89063ecc devfreq_update_target +EXPORT_SYMBOL vmlinux 0x89253d09 vme_bus_type +EXPORT_SYMBOL vmlinux 0x89353d6c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89818cdd dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89a6b366 mpage_writepage +EXPORT_SYMBOL vmlinux 0x89ec7e64 ata_print_version +EXPORT_SYMBOL vmlinux 0x89f3ffad get_agp_version +EXPORT_SYMBOL vmlinux 0x89fb6658 cad_pid +EXPORT_SYMBOL vmlinux 0x89feb739 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x8a0cc776 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x8a1d4cc9 locks_delete_block +EXPORT_SYMBOL vmlinux 0x8a3273c5 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a3ac302 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a61356e backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x8a62a52e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a75658f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8a75f3c5 nf_log_set +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a875cab __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa63759 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad079d6 key_move +EXPORT_SYMBOL vmlinux 0x8ad2f6f5 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x8ad94d08 d_add_ci +EXPORT_SYMBOL vmlinux 0x8af39c96 pci_get_device +EXPORT_SYMBOL vmlinux 0x8b002d09 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b10c87c vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x8b1a3dda netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x8b28f7c6 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8b308e03 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x8b3a2cd3 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8b6076f0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6889f3 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b829a76 jbd2_journal_abort +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 0x8bb5f4fa cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdf4218 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bea17cc __folio_alloc +EXPORT_SYMBOL vmlinux 0x8c0be2a4 read_cache_page +EXPORT_SYMBOL vmlinux 0x8c14f84e remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8c182bf4 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8c201299 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x8c2577bc pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c486989 d_obtain_root +EXPORT_SYMBOL vmlinux 0x8c60449b km_policy_expired +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c7368fc filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x8c7fa500 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca65513 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x8ca84afa pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccd1a70 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x8ccf4bbc inet6_ioctl +EXPORT_SYMBOL vmlinux 0x8cd502df devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cde01a7 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x8cf1f21a param_set_uint +EXPORT_SYMBOL vmlinux 0x8cffcfb3 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x8d0b8890 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x8d26a187 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x8d37d2a3 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x8d3b9a25 phy_device_free +EXPORT_SYMBOL vmlinux 0x8d411705 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8d4b88d7 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x8d5131fa generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d606639 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8e0e75 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da44719 ip_frag_next +EXPORT_SYMBOL vmlinux 0x8da79a4d shmem_aops +EXPORT_SYMBOL vmlinux 0x8db1dcb3 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db31d7a mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x8dbc0768 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x8dbfdcae inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8dd0ebcc netdev_err +EXPORT_SYMBOL vmlinux 0x8dd50171 seq_write +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dec6faa md_update_sb +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +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 0x8e2c536a scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x8e370618 devm_ioremap +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e68cab6 phy_device_remove +EXPORT_SYMBOL vmlinux 0x8e752c89 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x8e823e4b vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9875aa ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8ea13211 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb9d1d0 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x8ed5c97b pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8edb07ab register_qdisc +EXPORT_SYMBOL vmlinux 0x8edcc652 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8ee8e8dc show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x8ef43185 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8eff488e rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0d975b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x8f1c83a9 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x8f20638c xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f425dfd devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x8f51cf2f generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x8f70f2d7 discard_new_inode +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f87ebf6 neigh_lookup +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa67521 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fdb2a76 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x8fe273d8 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffa20fd __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90065e8d flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x902babc0 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x903cd8fb tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90651c31 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x909eb392 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x909f6abc skb_clone +EXPORT_SYMBOL vmlinux 0x90ba912b __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x90d454fe clear_inode +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e91fb0 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x90fad6bd pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911e3615 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x91331502 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x913edcda default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x914eb2f1 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x91575a17 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917ebfc4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x9186ba47 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x918b54e2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919f375a pcie_get_mps +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a5f773 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91bc25cf reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x91c0c988 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x91e77b10 proc_mkdir +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fdd0f1 param_get_int +EXPORT_SYMBOL vmlinux 0x9200a19f input_copy_abs +EXPORT_SYMBOL vmlinux 0x920d2d41 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923afc9f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9241f2ed flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x924bad7a inet_ioctl +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x92542d7a ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x92564aa9 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9274f38c mntput +EXPORT_SYMBOL vmlinux 0x9276bf6c ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b1cd1c in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x92b54487 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x92b696f7 simple_empty +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c6b395 xfrm4_rcv +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 0x933204e2 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x93559a2d proto_unregister +EXPORT_SYMBOL vmlinux 0x936fc7f5 pci_clear_master +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b6b836 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x93b9bec7 inet6_getname +EXPORT_SYMBOL vmlinux 0x93c23132 nobh_writepage +EXPORT_SYMBOL vmlinux 0x93d5bf68 finish_open +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93dd211b nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x93f38d0b dquot_operations +EXPORT_SYMBOL vmlinux 0x93f495ae __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x93f62dde devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x9404005d fwnode_iomap +EXPORT_SYMBOL vmlinux 0x940de849 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942e04a8 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x94461d9d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945adc23 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9469daed sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948a0bbe xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x948b37eb phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x94917632 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949c16ed mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x94b5b1b0 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d91a0e xfrm_init_state +EXPORT_SYMBOL vmlinux 0x94dcae0b clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x95001a65 done_path_create +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950bb09b inet_frag_find +EXPORT_SYMBOL vmlinux 0x950bf181 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x953031a7 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x953b5b25 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x953f933a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x95425d92 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9559d96d devm_memunmap +EXPORT_SYMBOL vmlinux 0x9563b707 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x956a460b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95adce3f add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x95ec6640 simple_unlink +EXPORT_SYMBOL vmlinux 0x95f272b7 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x95f6ff7a mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x96019b4f pci_restore_state +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x96169be3 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x961787ea seq_file_path +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x963618d0 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x963d1e9e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x963d7f54 dquot_release +EXPORT_SYMBOL vmlinux 0x9649e45b nobh_write_begin +EXPORT_SYMBOL vmlinux 0x96665193 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x966e30c8 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9685dd50 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x96a1090f crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x96a2f4c1 console_start +EXPORT_SYMBOL vmlinux 0x96a7cc80 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x96a9719f netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x96b2515e mount_nodev +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c6bce3 to_ndd +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d7dac8 may_setattr +EXPORT_SYMBOL vmlinux 0x96d98b95 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e89d0f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96f901da thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x96f9d10f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9704b16d mdio_device_register +EXPORT_SYMBOL vmlinux 0x970ef58c __inet_hash +EXPORT_SYMBOL vmlinux 0x970ef8ea __fs_parse +EXPORT_SYMBOL vmlinux 0x97221c0a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x9738fb2b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x973c3164 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974d4647 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97670a9e agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9795b756 simple_rmdir +EXPORT_SYMBOL vmlinux 0x979c9b35 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b12377 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97d23be0 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x9810b231 ip_frag_init +EXPORT_SYMBOL vmlinux 0x982212b3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982e38b6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x98309e3f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x983cbbd9 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x983f30ac dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x98584a84 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x985f7dd8 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x986c1e26 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x98801b77 rproc_detach +EXPORT_SYMBOL vmlinux 0x988882c3 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x9896b7a5 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x989ca8df empty_aops +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c62dc4 _dev_warn +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cac911 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98fee6c0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9916b50d inet_listen +EXPORT_SYMBOL vmlinux 0x991a4179 pci_free_irq +EXPORT_SYMBOL vmlinux 0x991acad5 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99460a2f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99599bbe mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9985ae8a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x998a0352 tty_hangup +EXPORT_SYMBOL vmlinux 0x99907875 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x999387fb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9996477b __nla_put +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a3aef2 send_sig +EXPORT_SYMBOL vmlinux 0x99b4a8d3 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x99c6d653 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x99ca5b2b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1177e seq_release +EXPORT_SYMBOL vmlinux 0x99eaf29a set_posix_acl +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 0x9a039fc3 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a45c662 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9a486154 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x9a4c4bec dst_release_immediate +EXPORT_SYMBOL vmlinux 0x9a4d18f9 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a96ca79 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab9806f __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9aba98dd xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae36296 udp_disconnect +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af40265 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2947a1 inet_sendpage +EXPORT_SYMBOL vmlinux 0x9b32aca1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x9b33a49d ll_rw_block +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3a051d eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x9b411cdf jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4ba0bf mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x9b5443c2 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9b566913 consume_skb +EXPORT_SYMBOL vmlinux 0x9b5c1658 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x9b6228ed ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x9b6721b6 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x9b6c9a1b dev_load +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b794ef7 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x9b84f8a3 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x9b926b3b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x9b9d7626 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x9b9f4bac jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x9baeb51d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bb5e53e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x9bc1985b hmm_range_fault +EXPORT_SYMBOL vmlinux 0x9bdbb0da __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9be248f7 filemap_fault +EXPORT_SYMBOL vmlinux 0x9be41bab jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9bf1064a xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x9bf2b839 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9bf9be9d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9bfbc901 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x9c000fa7 tty_devnum +EXPORT_SYMBOL vmlinux 0x9c0a5fb6 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x9c0bb4ee tty_vhangup +EXPORT_SYMBOL vmlinux 0x9c0fee89 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1d7e27 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x9c47ef27 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x9c5acef4 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c71e2d6 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x9c75f2ea build_skb +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c9e8b49 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc15d4d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x9cc47c88 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9ccc77f2 devfreq_register_notifier +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 0x9ce05a96 uart_register_driver +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cf109b7 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x9d0141a4 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x9d057f9a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9d08ccd2 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1665a8 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x9d1d2522 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x9d1ecb8d param_get_short +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4a71dd tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d67c2fb neigh_direct_output +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d707d2d block_dirty_folio +EXPORT_SYMBOL vmlinux 0x9d70f85a vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9dc55e0b __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x9dd68f1a gro_cells_init +EXPORT_SYMBOL vmlinux 0x9de10bb4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9def06c1 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9e02d129 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x9e04d05f __f_setown +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 0x9e2f7e5c inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9e2fa2d8 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9e31b22d rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5bf33c jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e77f997 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9c2cc8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9f50ce phy_validate_pause +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea811be netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecd2f8c fb_class +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee060f9 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9f092e44 param_get_ullong +EXPORT_SYMBOL vmlinux 0x9f14b916 dma_set_mask +EXPORT_SYMBOL vmlinux 0x9f177f13 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x9f31c18e flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x9f36feee inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9f3ca2a0 skb_dequeue +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 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa5d5ad vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fb931e1 get_vm_area +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00450dc __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa016c9f6 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xa01c4d11 get_user_pages +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01f2664 pci_read_config_word +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 0xa046788c netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xa04abfd2 param_ops_bool +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05e187e filp_close +EXPORT_SYMBOL vmlinux 0xa069d5d2 import_iovec +EXPORT_SYMBOL vmlinux 0xa06fcce8 tcf_em_register +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b3701 d_set_d_op +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa0866278 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xa09046d5 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09ce9a4 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xa0a37537 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa0a9d239 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c54efe udp6_set_csum +EXPORT_SYMBOL vmlinux 0xa0c86076 tcp_close +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dcb58f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f29cc5 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1058ec1 pci_get_class +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1151b08 freeze_super +EXPORT_SYMBOL vmlinux 0xa11803f2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa13295ce bpf_map_get +EXPORT_SYMBOL vmlinux 0xa1571efb ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa15eb391 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa1695030 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa1799ac7 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xa17feec4 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xa18b8c91 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa197d75d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xa1b64035 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1ce9b2c backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa1e9e4ea pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xa1fbf0d4 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa216d9f3 bpf_link_put +EXPORT_SYMBOL vmlinux 0xa21ed7b3 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xa224a4a4 xp_dma_map +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa26049e8 config_item_put +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa292db75 pci_release_resource +EXPORT_SYMBOL vmlinux 0xa2bd7a36 touch_atime +EXPORT_SYMBOL vmlinux 0xa2ca5d0c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xa2db39ac simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa2dd63f3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xa2e49020 bdi_unregister +EXPORT_SYMBOL vmlinux 0xa2e9ed7e init_task +EXPORT_SYMBOL vmlinux 0xa2f64e50 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa30dd487 tty_name +EXPORT_SYMBOL vmlinux 0xa315dc1f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa3412d34 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xa3415956 sk_free +EXPORT_SYMBOL vmlinux 0xa34cd09e phy_loopback +EXPORT_SYMBOL vmlinux 0xa3593d04 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xa35c61ea __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xa3612db0 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa3622eb7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa38597f2 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa39753ab udplite_prot +EXPORT_SYMBOL vmlinux 0xa3b084e7 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xa3bb1daf register_shrinker +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c0532d __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa3c50a3f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa3ca3772 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dfbca3 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3ef3f8e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa3f8d8dc nd_device_register +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4102671 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xa41329b1 blkdev_put +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa4216be6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa444d44f blk_start_plug +EXPORT_SYMBOL vmlinux 0xa458807d md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa49814f8 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa4a6653c pci_request_region +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c43249 blk_get_queue +EXPORT_SYMBOL vmlinux 0xa4d16cb5 tcp_filter +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dbe121 dev_open +EXPORT_SYMBOL vmlinux 0xa4de233b phy_attached_print +EXPORT_SYMBOL vmlinux 0xa4dff4f4 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xa4ed1866 vga_get +EXPORT_SYMBOL vmlinux 0xa4f12141 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa500ba88 ipv6_dev_mc_inc +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 0xa51276bd inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa52046fb vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa523e721 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa54fd255 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5575bec __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa5586322 thread_group_exited +EXPORT_SYMBOL vmlinux 0xa572f755 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xa5754419 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa587a5bd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa58af8e6 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5dba2ca devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xa5e41b8f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa602c7dc set_create_files_as +EXPORT_SYMBOL vmlinux 0xa6054562 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xa61521f6 __folio_lock +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa626643b sock_no_getname +EXPORT_SYMBOL vmlinux 0xa6275d19 inode_permission +EXPORT_SYMBOL vmlinux 0xa62d79bb pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xa630b05c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa647ffd4 to_nd_dax +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6495030 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa662f334 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa6793866 unload_nls +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6893d39 single_open +EXPORT_SYMBOL vmlinux 0xa6d331ca __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xa6dff5e4 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71b1332 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa723132a edac_mc_find +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa747e321 neigh_table_init +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7525785 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xa754a7c1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa75e77a1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa762509d pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa7625852 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7842fe0 vfs_get_link +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa793ceee flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa79e3c06 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xa7b980a1 inet_release +EXPORT_SYMBOL vmlinux 0xa7d46770 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa7d49b83 vc_cons +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fa5606 dst_destroy +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa80e0504 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa80e92fa pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81a4f99 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xa824c2b0 dst_init +EXPORT_SYMBOL vmlinux 0xa8311308 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xa83207a3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa8370adb skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa846d8e1 genl_register_family +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84fd94c block_write_full_page +EXPORT_SYMBOL vmlinux 0xa851bd90 dev_uc_init +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8809311 make_kuid +EXPORT_SYMBOL vmlinux 0xa88af4d9 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xa8930df8 mdiobus_read +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a24003 md_check_recovery +EXPORT_SYMBOL vmlinux 0xa8b28a98 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xa8ca3642 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cbf319 ppp_input +EXPORT_SYMBOL vmlinux 0xa8d5ace9 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xa8d9fb3f from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa8dd5f6c fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e9c0cd __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fbca86 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90f2d75 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa9105f82 skb_find_text +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91781bb blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa9375acc netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xa940800b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa95f178e phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xa96453bf scsi_host_get +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98fd5cd pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa99dab09 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa9a5a45d __scsi_execute +EXPORT_SYMBOL vmlinux 0xa9c47b73 file_open_root +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9ee1688 open_exec +EXPORT_SYMBOL vmlinux 0xa9efe2f6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa9f1dbe6 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa9f425c8 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa9f83253 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa00ff83 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa2e0639 dump_skip_to +EXPORT_SYMBOL vmlinux 0xaa319fe0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa47e333 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xaa529456 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xaa53e632 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xaa545783 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7aab38 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xaa9d0bfa tty_lock +EXPORT_SYMBOL vmlinux 0xaa9e60c3 padata_do_serial +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaace4343 tcf_chain_put_by_act +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 0xaad8ff5a __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafec0d4 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xab0261b1 cdrom_open +EXPORT_SYMBOL vmlinux 0xab06447e dev_get_flags +EXPORT_SYMBOL vmlinux 0xab0b04fe mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xab0b9b49 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ec70e iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xab3edd26 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xab4cc1b1 dcb_ieee_delapp +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 0xab688454 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7f306b gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xab89432c pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xabafbc09 bio_copy_data +EXPORT_SYMBOL vmlinux 0xabbe0abd netlink_broadcast +EXPORT_SYMBOL vmlinux 0xabcee610 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xabedefa2 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xabef0f5c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf75305 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xac0ce14b pci_iomap_range +EXPORT_SYMBOL vmlinux 0xac13d953 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xac196956 __block_write_begin +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1f5e96 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xac26f408 eth_header_parse +EXPORT_SYMBOL vmlinux 0xac30ae97 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3947a5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xac4e73b9 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6949fb flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xac69fdb9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xac729a11 find_vma +EXPORT_SYMBOL vmlinux 0xac733666 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xac813cf5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xac8266d4 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xac847c87 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbe0045 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0xacd525b0 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf158bd unregister_md_personality +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0156bb bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad294c17 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad4cd721 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad58ac06 dev_addr_del +EXPORT_SYMBOL vmlinux 0xad60770f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad8b3657 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xad934d0e __SetPageMovable +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadadac3a page_pool_release_page +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb38394 zap_page_range +EXPORT_SYMBOL vmlinux 0xadb57879 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xadb99cd1 dquot_disable +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc1dbc8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadf5185e blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xadf704f5 ip6_mtu +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0171e5 twl6040_power +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0bdc4f netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae3430c5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xae37e797 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae7f8c4b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xae8c752d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xae9797dc pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb113de dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec80331 phy_stop +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaef9c288 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf37ff54 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf43c534 rproc_del +EXPORT_SYMBOL vmlinux 0xaf4940eb mfd_add_devices +EXPORT_SYMBOL vmlinux 0xaf499cde textsearch_unregister +EXPORT_SYMBOL vmlinux 0xaf57b5bf set_anon_super +EXPORT_SYMBOL vmlinux 0xaf85086a param_set_invbool +EXPORT_SYMBOL vmlinux 0xaf8bc486 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xaf8bdea6 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd74423 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafdd0b6f pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xafeaa181 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xaff124f7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xaffc262a eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb0142cf9 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb017de79 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb01b5a46 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb027b241 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04f14ac begin_new_exec +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb093ae0b dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0aecebd blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb0bf2c60 load_nls_default +EXPORT_SYMBOL vmlinux 0xb0c39db0 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d34f9b cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xb0d483c6 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0ed05a8 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xb10544b5 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb109ddaa ip_output +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11f636c inode_to_bdi +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12f7f8b iov_iter_advance +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb1378f5a pnp_device_attach +EXPORT_SYMBOL vmlinux 0xb13d7852 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb154494e is_subdir +EXPORT_SYMBOL vmlinux 0xb16b0fc4 tcp_mmap +EXPORT_SYMBOL vmlinux 0xb16d08b9 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xb186803d phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xb18b4cb8 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1adde3b acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xb1b2b74c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e9d6df scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb1f1b25a d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xb209bdb2 dma_resv_init +EXPORT_SYMBOL vmlinux 0xb20b227e kern_path +EXPORT_SYMBOL vmlinux 0xb20c3650 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb20f4966 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb21534ef jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xb21882b6 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp +EXPORT_SYMBOL vmlinux 0xb24a481c __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb25065f0 unregister_nls +EXPORT_SYMBOL vmlinux 0xb2583423 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2766fbc sock_efree +EXPORT_SYMBOL vmlinux 0xb28523ef simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb28792cf mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb290e120 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xb292cfa4 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xb299dd8c freezing_slow_path +EXPORT_SYMBOL vmlinux 0xb29a0b47 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb29c21dc page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xb2b06728 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2e134d0 bio_init_clone +EXPORT_SYMBOL vmlinux 0xb2ec5d5b __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f95451 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb30235f7 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31ef793 vme_master_request +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb327c387 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb34d779f skb_dump +EXPORT_SYMBOL vmlinux 0xb350907c param_set_copystring +EXPORT_SYMBOL vmlinux 0xb3546f74 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb368ca14 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xb370613a phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3886dc0 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xb38b453b jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb3a14f2e vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3d06ffa filemap_flush +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dc1c17 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb3dcb18a tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xb3eac612 send_sig_info +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb404ae2f agp_create_memory +EXPORT_SYMBOL vmlinux 0xb40e34d2 ps2_command +EXPORT_SYMBOL vmlinux 0xb415a402 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42cd7d7 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xb433d734 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xb449ab43 param_get_ushort +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45aaa36 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xb461eab4 node_data +EXPORT_SYMBOL vmlinux 0xb46d42af deactivate_super +EXPORT_SYMBOL vmlinux 0xb46e02cc phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xb474e725 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb47de848 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb487210c __nla_reserve +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb48ee618 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb4a5b62c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xb4b19daa param_ops_charp +EXPORT_SYMBOL vmlinux 0xb4b4d409 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xb4bcc9fe bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xb4c018e6 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb4ef4a58 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb50bd436 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xb51b1e7b import_single_range +EXPORT_SYMBOL vmlinux 0xb525f092 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5359665 seq_open +EXPORT_SYMBOL vmlinux 0xb53bd6a4 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb545f92b __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xb54fd1c7 nobh_write_end +EXPORT_SYMBOL vmlinux 0xb551a2c0 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xb553f006 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb592f207 mmc_erase +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5acfff8 finalize_exec +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bd6117 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xb5c3cdc5 __seq_open_private +EXPORT_SYMBOL vmlinux 0xb5c93c67 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xb5dc8234 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xb5e3f50e dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f1fe64 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb61320cd set_pages_uc +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb622d9c8 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63aa3b1 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb64599c8 vfs_statfs +EXPORT_SYMBOL vmlinux 0xb64b4fca generic_update_time +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb662dc9c inode_init_always +EXPORT_SYMBOL vmlinux 0xb66ce6b0 input_register_handler +EXPORT_SYMBOL vmlinux 0xb66d290e drop_nlink +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6808aa3 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6968105 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xb69ed6c6 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6e3087e input_release_device +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f03715 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb6f837fb dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70e5b3f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7472477 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb75fd8df current_in_userns +EXPORT_SYMBOL vmlinux 0xb770f6b8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb77638c2 block_commit_write +EXPORT_SYMBOL vmlinux 0xb7863397 path_put +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7aa7543 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xb7bc84ac xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c8d553 qdisc_reset +EXPORT_SYMBOL vmlinux 0xb7c9d456 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xb7d91cb7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb7e978ab mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb801391e single_open_size +EXPORT_SYMBOL vmlinux 0xb8048c60 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xb805a9c7 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb8064ebf tty_unlock +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb82b97fb tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xb850fe92 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb8715646 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb8724cc0 would_dump +EXPORT_SYMBOL vmlinux 0xb880e12d udp6_csum_init +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb8923843 unlock_page +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c3fae3 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb8d69700 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xb8dc2b11 pnp_is_active +EXPORT_SYMBOL vmlinux 0xb8df281f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb8e64441 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb90730e7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90b4058 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb911bdf7 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb915361f pnp_device_detach +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9231e31 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9535c3f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9855249 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba00f6e4 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba087bd6 nla_reserve +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba3ba8f4 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e6fc7 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba566869 kern_unmount +EXPORT_SYMBOL vmlinux 0xba579892 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xba66c437 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xba6d6d5a netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xba6e99b9 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xba7471be phy_modify_paged +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9452d6 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xbaba6804 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xbac69bfc kernel_write +EXPORT_SYMBOL vmlinux 0xbae8b83c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xbaeb16df sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1283f5 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb14822d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xbb1ac629 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2ee99b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbb3bf2e0 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xbb3c60fe bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xbb44d218 d_find_alias +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb507375 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbb6fe86a pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xbb76e790 security_path_rename +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbaa5d71 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xbbbf281c drop_super +EXPORT_SYMBOL vmlinux 0xbbd23c91 ip_options_compile +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc0cffc6 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbc122fa2 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbc1251e4 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2cb702 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbc4c414c register_console +EXPORT_SYMBOL vmlinux 0xbc50ab3c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xbc5de35b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xbc698780 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xbc841706 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbc8598a8 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xbc8ee1e8 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xbca568cf __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xbca92074 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcc9642a devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xbcd21151 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xbcd749c9 phy_init_hw +EXPORT_SYMBOL vmlinux 0xbcd7c001 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xbd18b757 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd40a87e __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd50209a bio_chain +EXPORT_SYMBOL vmlinux 0xbd56b119 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbdc5a778 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xbde092c6 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xbde6ee4e agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdffad35 rio_query_mport +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe06a680 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xbe469696 skb_pull +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 0xbe6a3c1c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe846185 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xbeaa90c9 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xbeb15a29 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xbeb25ef6 simple_open +EXPORT_SYMBOL vmlinux 0xbec3fab4 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xbec47925 tty_port_close +EXPORT_SYMBOL vmlinux 0xbeccbe44 param_get_hexint +EXPORT_SYMBOL vmlinux 0xbed5aecb init_pseudo +EXPORT_SYMBOL vmlinux 0xbee17fa2 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xbee94674 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefd0f9b locks_init_lock +EXPORT_SYMBOL vmlinux 0xbeffa593 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xbf082cc6 locks_free_lock +EXPORT_SYMBOL vmlinux 0xbf189e02 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xbf209007 km_state_notify +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3a89b9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xbf4c6720 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf7d5889 ip6_xmit +EXPORT_SYMBOL vmlinux 0xbf92c46e __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xbf9833f1 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xbf9acf20 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb79270 skb_pull_data +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc3f65c devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xbfc78067 md_write_end +EXPORT_SYMBOL vmlinux 0xbfe7fa8f inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc00143ee pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xc017e4fd scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc029145c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0606410 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0830526 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc0954478 nla_put +EXPORT_SYMBOL vmlinux 0xc0a74d96 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc0a76192 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xc0a92ca2 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0dda1cc tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc0ebc234 vfs_create +EXPORT_SYMBOL vmlinux 0xc0f47e1e nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xc0f4ce8f param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc0f5c7ee tcp_check_req +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1108f97 udp_seq_next +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc11901d2 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc132d0a1 sock_register +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc13937fa acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc14e2be5 param_set_bool +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc180c509 pci_select_bars +EXPORT_SYMBOL vmlinux 0xc1a78d0f pci_dev_get +EXPORT_SYMBOL vmlinux 0xc1afc193 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc1b8f559 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d7e0ec serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e787c7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc1eccd8c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc206a786 xp_free +EXPORT_SYMBOL vmlinux 0xc20b16b0 udp_prot +EXPORT_SYMBOL vmlinux 0xc21c23ed dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc227431e get_tree_nodev +EXPORT_SYMBOL vmlinux 0xc23e0fb8 proc_remove +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24b56d9 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc251a145 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc26cf96b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xc26f5467 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc270953f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc289ab46 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc2922ddc dm_register_target +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a98af1 __skb_pad +EXPORT_SYMBOL vmlinux 0xc2b099cc input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc2be0437 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xc2cadd3f bioset_exit +EXPORT_SYMBOL vmlinux 0xc2cb1ece devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ed4b81 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc2f1df41 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30b195a pci_request_irq +EXPORT_SYMBOL vmlinux 0xc30efb7e jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc318494d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3375841 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xc3648a75 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36b8a96 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc36e2218 devm_ioport_map +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 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c32a06 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xc3d8843e md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xc3e721d8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4061bcd serio_open +EXPORT_SYMBOL vmlinux 0xc40620a8 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xc41790f0 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc41ab6ac __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc428dbdd mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc45445d7 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xc45a39fd __pagevec_release +EXPORT_SYMBOL vmlinux 0xc45e1ed0 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc461a154 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xc46753d3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48d4393 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc4a2c5f5 devm_clk_get +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b1962a __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xc4b8e376 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc4ce49c1 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc4eaf06e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc513548e phy_init_eee +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc54fb8af tso_start +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5697189 set_trace_device +EXPORT_SYMBOL vmlinux 0xc56a2c77 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5856a4e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xc58c9e0f agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc597893e inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e14e9 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xc5a1b064 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xc5ac2069 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bbbf60 current_task +EXPORT_SYMBOL vmlinux 0xc5bf112f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xc5c90074 param_ops_string +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5eb43e1 napi_get_frags +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fc31cf sock_set_mark +EXPORT_SYMBOL vmlinux 0xc600cc92 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc624d865 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc6256160 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6717546 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xc688af0b configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc694e886 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xc69781db skb_checksum +EXPORT_SYMBOL vmlinux 0xc6a54bb7 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xc6c148ce flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc6c85d94 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cdb01d i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc6ce80f2 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e550d4 input_inject_event +EXPORT_SYMBOL vmlinux 0xc6ebc988 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f7d8a6 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7165e78 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc727fcc2 inode_init_owner +EXPORT_SYMBOL vmlinux 0xc7433643 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc74d6cd7 dqput +EXPORT_SYMBOL vmlinux 0xc751cb2d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xc75897de write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc7735a5e security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc77e4fdf keyring_search +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79ac267 vm_map_pages +EXPORT_SYMBOL vmlinux 0xc7a18ffa dev_addr_mod +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a5b545 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xc7af0097 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d317a1 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xc7eda6bc mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xc7f0381a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc814fb56 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc822d571 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc836076b page_readlink +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc83b956c path_is_under +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8594c40 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc869a68c max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc86bd56b put_disk +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc876b381 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xc87be927 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88644ae phy_find_first +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a5dde0 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc8a72c7f generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b97404 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xc8c02b9d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc8cf3228 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc8d0afc9 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xc8d1aa5d kernel_read +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e33855 nf_log_trace +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc942eefb param_array_ops +EXPORT_SYMBOL vmlinux 0xc9445759 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xc9549a7c copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc959cfd4 bdevname +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9684246 seq_vprintf +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc974ab7f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xc97e3d9f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc97f29f4 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9868a8e tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xc98e7d0a ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc99763b0 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9b86873 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xc9d40604 __alloc_pages +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e27479 seq_bprintf +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9fcb3d2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2a475d devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xca314e99 key_put +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca80da56 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xca838431 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9f4ca3 iget5_locked +EXPORT_SYMBOL vmlinux 0xcaae6d0e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xcaaf3511 d_instantiate +EXPORT_SYMBOL vmlinux 0xcab32edd phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xcab7e610 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb06abcf request_key_rcu +EXPORT_SYMBOL vmlinux 0xcb076079 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xcb15f83a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcb2175a4 release_sock +EXPORT_SYMBOL vmlinux 0xcb2903c9 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xcb320fb0 file_ns_capable +EXPORT_SYMBOL vmlinux 0xcb333cdf dma_ops +EXPORT_SYMBOL vmlinux 0xcb3a7552 bio_reset +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb5451c1 __invalidate_device +EXPORT_SYMBOL vmlinux 0xcb60f542 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xcb6156a9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb925bad xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xcb98c091 uart_resume_port +EXPORT_SYMBOL vmlinux 0xcba734dd get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xcbb0dab4 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xcbb52145 md_handle_request +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe97ff6 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xcbf22e01 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc011978 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xcc0b7621 ip_route_me_harder +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 0xcc2f6d9c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc33475e param_set_short +EXPORT_SYMBOL vmlinux 0xcc39fb65 page_mapping +EXPORT_SYMBOL vmlinux 0xcc3ad233 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xcc3fac44 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc7ea03b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xcc850ade nd_integrity_init +EXPORT_SYMBOL vmlinux 0xcc899e12 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xcc8c2c95 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xcca1288e blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcca2d35f tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccaaf961 nf_log_packet +EXPORT_SYMBOL vmlinux 0xccad1aa2 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xccb2cb62 thaw_super +EXPORT_SYMBOL vmlinux 0xccc29942 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd53615 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xcce819b2 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfc5aaf __napi_schedule +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd19d503 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xcd204664 __bforget +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2fcbc0 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xcd3954db filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcd59949e dev_printk_emit +EXPORT_SYMBOL vmlinux 0xcd78d28a param_get_invbool +EXPORT_SYMBOL vmlinux 0xcd7b50ca blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xcd83c46f set_disk_ro +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd9e50d2 pps_event +EXPORT_SYMBOL vmlinux 0xcdb75967 genphy_update_link +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd3badf phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfaf8f0 param_get_string +EXPORT_SYMBOL vmlinux 0xce163853 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c3668 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xce43a9a3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xce4550e5 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xce45aaa3 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xce46f354 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e26d3 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5b8a11 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xce72bdd4 vmap +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce97b8e8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xce9bb630 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xce9d630f vga_put +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb89ca3 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced83679 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xcee351ea pnp_start_dev +EXPORT_SYMBOL vmlinux 0xcee5bf88 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xceee8e5a vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xceef85e4 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xcef8d830 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefbf772 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefe6227 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xceff3d8a dquot_resume +EXPORT_SYMBOL vmlinux 0xcf0e2d6a __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2cd9f0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5e19ed cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xcf817cab peernet2id +EXPORT_SYMBOL vmlinux 0xcf826760 submit_bio +EXPORT_SYMBOL vmlinux 0xcf8f9868 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb1d8b2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xcfb67307 sk_net_capable +EXPORT_SYMBOL vmlinux 0xcfb68c38 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfd95025 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xcff2d502 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xd003682d sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd00c304d make_kgid +EXPORT_SYMBOL vmlinux 0xd01efc7d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd02f152b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd0304fa5 napi_build_skb +EXPORT_SYMBOL vmlinux 0xd04058d2 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd046e63a ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05be8b7 request_firmware +EXPORT_SYMBOL vmlinux 0xd05bf300 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd05d476f fs_param_is_string +EXPORT_SYMBOL vmlinux 0xd060a61c security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0670394 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0867616 vme_slot_num +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0a08ebd tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bb2563 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xd0cd6748 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0ef4d21 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd101ac15 write_cache_pages +EXPORT_SYMBOL vmlinux 0xd1077978 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xd12b7960 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1442af2 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd14e419d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1571746 f_setown +EXPORT_SYMBOL vmlinux 0xd158a6f2 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd161e027 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xd164a43d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd16d0d53 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xd1721ab7 inet6_offloads +EXPORT_SYMBOL vmlinux 0xd172d4d8 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xd17388ee netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xd17f2f4b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd17f9033 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd180cd03 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd18b3242 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1c9311a mdio_bus_type +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e0ff07 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd20d4422 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd20fa407 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xd21ad590 tcp_prot +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22d073d seq_pad +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24d1df6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd268809a vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xd26bd2c5 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28219a9 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd2970fe7 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd2b6fef3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2cdf174 tso_count_descs +EXPORT_SYMBOL vmlinux 0xd2d6b009 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2eace43 notify_change +EXPORT_SYMBOL vmlinux 0xd2ebcb58 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd309cd45 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xd3203859 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd329794d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd33bf1ac fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xd351e4f8 __find_get_block +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 0xd362c30a set_pages_wb +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3808b5c md_error +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd3a02288 register_netdevice +EXPORT_SYMBOL vmlinux 0xd3b65d87 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xd3d8cbd6 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd3e48ac3 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xd4053f6c filemap_check_errors +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41413d6 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xd4384438 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xd43859f2 param_ops_uint +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd460f068 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xd465bac2 free_netdev +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b96c8 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd494bc92 pci_enable_device +EXPORT_SYMBOL vmlinux 0xd49abd03 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xd4a7cd68 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xd4abb0d9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d1f9d9 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd4e59660 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd4ec175b netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd4f0a0fd agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd4f19f08 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xd4f740a6 netlink_ack +EXPORT_SYMBOL vmlinux 0xd4f94727 migrate_page +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd51950b1 seq_read +EXPORT_SYMBOL vmlinux 0xd51ae3c8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd534123c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd545afa3 folio_mapped +EXPORT_SYMBOL vmlinux 0xd551b6e9 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xd56a1f11 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd58c4893 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5d5a9a3 kobject_del +EXPORT_SYMBOL vmlinux 0xd5ec1d85 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61fb23d __ps2_command +EXPORT_SYMBOL vmlinux 0xd62d5dc2 pci_dev_put +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b46502 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd6bac031 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xd6c6e0d0 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xd6c9d65e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eb553f bdi_alloc +EXPORT_SYMBOL vmlinux 0xd6ed4e13 inet_bind +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fa2bc5 tcp_rcv_established +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 0xd716c5e0 folio_add_lru +EXPORT_SYMBOL vmlinux 0xd7180375 devm_request_resource +EXPORT_SYMBOL vmlinux 0xd71ad9c7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd734110a keyring_alloc +EXPORT_SYMBOL vmlinux 0xd73795e1 param_set_long +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd77318f3 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd7945c8e __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd79f3f8c vme_irq_handler +EXPORT_SYMBOL vmlinux 0xd7af88dc xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd7b30486 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd7b35077 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xd7b4898d simple_fill_super +EXPORT_SYMBOL vmlinux 0xd7bebb81 mpage_writepages +EXPORT_SYMBOL vmlinux 0xd7c54339 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7dfe77c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xd7e37e33 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e9d28a sget +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f2da0b ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xd8034eed sock_i_uid +EXPORT_SYMBOL vmlinux 0xd810ab1f acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xd81bfe6c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xd82c2501 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xd83ed7b3 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd8573a48 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd865c240 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd86b2419 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xd88802c2 pci_find_bus +EXPORT_SYMBOL vmlinux 0xd891ef20 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a85bd4 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b34aa8 ilookup +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d1c943 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e18a29 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd8e97fe8 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xd8eedb8f agp_free_memory +EXPORT_SYMBOL vmlinux 0xd8fbe26c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9319585 bdi_put +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94fc513 kobject_init +EXPORT_SYMBOL vmlinux 0xd95241e2 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xd95910a8 kill_block_super +EXPORT_SYMBOL vmlinux 0xd970d787 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd977500f kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98c036e clear_nlink +EXPORT_SYMBOL vmlinux 0xd990ebd7 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b11890 wake_up_process +EXPORT_SYMBOL vmlinux 0xd9b35177 vm_mmap +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c508f3 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd9cc3eb1 textsearch_register +EXPORT_SYMBOL vmlinux 0xd9cc7ea9 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd9cf4cdf uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd9d0c41e fb_blank +EXPORT_SYMBOL vmlinux 0xd9d61386 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9da47cd __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xda0c3f03 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3a4f62 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4ba4c4 __sock_create +EXPORT_SYMBOL vmlinux 0xda5aa1bb device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xda75d0b2 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xda8db763 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xda9e0bb7 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xdaac8dce dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdaac9cac __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacdfc7b processors +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdae4b449 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdaf3e4a7 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1a7364 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xdb22a563 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb2ed689 set_capacity +EXPORT_SYMBOL vmlinux 0xdb372b83 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdb4a5d70 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xdb4c71a5 sock_create +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a2106 user_path_create +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb803b4b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xdb95956b amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb9908e6 netlink_set_err +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd50968 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbff17a1 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xdc0c277a dst_dev_put +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc32b447 datagram_poll +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc51bdab pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5b08d5 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdc61b734 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xdc6a670b dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xdc6f3827 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xdc7e4ef2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdcb528ae register_md_personality +EXPORT_SYMBOL vmlinux 0xdcbeb9f3 phy_resume +EXPORT_SYMBOL vmlinux 0xdcc77a7d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xdcd39337 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcdc3cb3 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xdce5d494 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xdcedb832 module_refcount +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd1969be ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd370aea fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdd3a2eca scsi_target_resume +EXPORT_SYMBOL vmlinux 0xdd3dae5f inet6_del_offload +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd5e75ea textsearch_prepare +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd78d533 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xdd7cbdf0 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8ea668 genl_notify +EXPORT_SYMBOL vmlinux 0xdd9d5cc8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc73316 dev_close +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde086349 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde32136e __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde4fb71b iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xde5033d7 md_flush_request +EXPORT_SYMBOL vmlinux 0xde576ce9 skb_eth_push +EXPORT_SYMBOL vmlinux 0xde6aa0b7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea9eb4b mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xdec30dce udp_pre_connect +EXPORT_SYMBOL vmlinux 0xdec6b9d6 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xdece6384 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xdecfae3b fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdefaed40 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xdf1ac593 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf294ecf security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf38c93d convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xdf399d33 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdf4b4bbe dev_uc_sync +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6986d8 poll_initwait +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf72de26 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xdf79aec6 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9f5b1e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xdfa24be6 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdfa75546 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdfb6d37d netlink_unicast +EXPORT_SYMBOL vmlinux 0xdfb75413 vfs_symlink +EXPORT_SYMBOL vmlinux 0xdfc10c94 load_nls +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc6a502 keyring_clear +EXPORT_SYMBOL vmlinux 0xdfcaf63e tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcdd92d __bread_gfp +EXPORT_SYMBOL vmlinux 0xdfd89c6a setup_new_exec +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe01cb5ab __skb_checksum +EXPORT_SYMBOL vmlinux 0xe0280b67 new_inode +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 0xe03d441d dquot_initialize +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05535a8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xe0676232 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe0772360 __tracepoint_module_get +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 0xe096cbe1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe09b4414 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bf5bd5 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe0bf68d9 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xe0de6f1e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe0e404bd genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xe0e428fb vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe0ee8eb5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe0f34c4d __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xe0ff0e74 nf_log_register +EXPORT_SYMBOL vmlinux 0xe10966b9 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe10e9d7b __mdiobus_register +EXPORT_SYMBOL vmlinux 0xe1139771 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe118780c napi_disable +EXPORT_SYMBOL vmlinux 0xe11deea5 km_state_expired +EXPORT_SYMBOL vmlinux 0xe123aba7 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12c623a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe140e5e8 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe1416cd0 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xe14703cb kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe15874e3 scsi_print_command +EXPORT_SYMBOL vmlinux 0xe1684dc3 mount_single +EXPORT_SYMBOL vmlinux 0xe16f7cbf genlmsg_put +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1dad85f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe1db1101 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e95b9d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe1f07c58 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe1fd8377 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xe2183f75 bio_uninit +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe230a9e4 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe2329e08 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe2343025 tcf_classify +EXPORT_SYMBOL vmlinux 0xe2408f0f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe2462f54 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xe2538cd6 from_kgid +EXPORT_SYMBOL vmlinux 0xe2693c0b jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28d7b77 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e02fbd __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2e391ad nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xe2e9f25a sk_wait_data +EXPORT_SYMBOL vmlinux 0xe2f12bc1 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe2f1e74f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe2fd77fa netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe303f1bd rproc_add +EXPORT_SYMBOL vmlinux 0xe3042606 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe307ff5d input_open_device +EXPORT_SYMBOL vmlinux 0xe30873d9 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe31cbb2f has_capability +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32bb61d pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xe32c045d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe336945c mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe33d7559 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xe341bc5d finish_swait +EXPORT_SYMBOL vmlinux 0xe351251e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe35b0e80 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xe36c9572 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe375ba15 fget_raw +EXPORT_SYMBOL vmlinux 0xe37dfdf5 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a419e3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xe3a915e6 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xe3b7bc2b bio_free_pages +EXPORT_SYMBOL vmlinux 0xe3c95d87 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3dda056 dump_align +EXPORT_SYMBOL vmlinux 0xe3e20280 pagevec_lookup_range +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 0xe405a3e1 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41a6249 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xe4288c7c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe42f221e dquot_drop +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4349515 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xe435c915 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe4386fec pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xe43e1439 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe43ea717 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe4483202 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4627cca netpoll_setup +EXPORT_SYMBOL vmlinux 0xe466d3b6 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe46f5795 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe478a665 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xe47d2c24 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xe485aaf4 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe4948a22 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xe494baca gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xe49c5e8e mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe4aa4989 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xe4af109f vm_map_ram +EXPORT_SYMBOL vmlinux 0xe4b713c2 update_devfreq +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c2d3ab mmput_async +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe543e449 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe546841d vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe54ad183 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xe54d51ed phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xe5548476 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe558d4a3 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe55cdc00 kthread_bind +EXPORT_SYMBOL vmlinux 0xe57beaee pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58eb382 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe591dd7e bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe5960a4d xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe59f441f __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe5b2bc57 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d91c6a simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe5db9cb1 lock_rename +EXPORT_SYMBOL vmlinux 0xe5def077 proc_set_user +EXPORT_SYMBOL vmlinux 0xe5e040f2 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe5f540b0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6244c71 __put_page +EXPORT_SYMBOL vmlinux 0xe630cfb2 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xe6345023 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe643a66f devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe6472d85 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe66a75ed blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xe683c384 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xe687d55b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6a0397a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe6b87024 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xe6bbd9e8 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xe6c49e03 seq_printf +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f1803b seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70868ed is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe71ec4c5 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe73c1b42 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe74a09ce genphy_read_status +EXPORT_SYMBOL vmlinux 0xe761920e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe777da27 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78a6f59 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xe796ecac __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7aca7ea dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xe7be89b9 scsi_done +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d91a42 sk_error_report +EXPORT_SYMBOL vmlinux 0xe7e61d37 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe80dbdcc dm_put_device +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe83cc2a7 dqget +EXPORT_SYMBOL vmlinux 0xe843bf75 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xe8526472 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xe855f528 md_register_thread +EXPORT_SYMBOL vmlinux 0xe85f0069 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86ac918 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xe873e50c rproc_report_crash +EXPORT_SYMBOL vmlinux 0xe87eceed inode_set_flags +EXPORT_SYMBOL vmlinux 0xe884bca5 blk_queue_split +EXPORT_SYMBOL vmlinux 0xe89277e2 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xe896c2ed elv_rb_del +EXPORT_SYMBOL vmlinux 0xe8ab5baf scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xe8bb3fdf param_get_ulong +EXPORT_SYMBOL vmlinux 0xe8dd3e15 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe8de561d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xe8f0da2b napi_enable +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe901c9c2 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90f55ad mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xe9146393 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe935ffb7 generic_write_checks +EXPORT_SYMBOL vmlinux 0xe951fcc7 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95b48e6 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe979613d lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9a7cb34 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xe9ac3e5d sk_dst_check +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b63fa4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xe9cc54d8 sock_alloc +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eae268 d_tmpfile +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea00c298 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xea032ccf tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xea0d7f1c file_update_time +EXPORT_SYMBOL vmlinux 0xea2dbde6 security_path_unlink +EXPORT_SYMBOL vmlinux 0xea3721d9 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea5dbe83 xfrm_input +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea837fc6 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xea84c39f agp_enable +EXPORT_SYMBOL vmlinux 0xea9f0b81 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xead7972e dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae42557 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb278048 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xeb30d177 get_cached_acl +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb52c206 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xeb6bc49c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xeb7287df registered_fb +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba2494c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xebb8a484 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xebc726f0 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xebdea7b7 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf5e4c9 ps2_drain +EXPORT_SYMBOL vmlinux 0xec260fc1 touch_buffer +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec4c1932 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec563a87 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xec668d2e tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xec77d42d mdio_driver_register +EXPORT_SYMBOL vmlinux 0xec78013a sock_no_accept +EXPORT_SYMBOL vmlinux 0xec7a36cb gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xec800e11 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xec828ee6 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb0ecb3 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xecb3aca2 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xecd10d61 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xecdaa4c4 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece67b8a is_bad_inode +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed14288b inode_needs_sync +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed9a87dd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xeda4730b scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xedb5f702 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc15ca8 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xedc4170f mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xedcc01d5 set_binfmt +EXPORT_SYMBOL vmlinux 0xedd03922 input_set_keycode +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedd891f1 rtnl_notify +EXPORT_SYMBOL vmlinux 0xede977b5 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xedef08e6 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xedf4d030 vga_client_register +EXPORT_SYMBOL vmlinux 0xee031672 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xee0b36f4 iterate_fd +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee52dc65 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xee57c8fa rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee61d157 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xee7c0e0c security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xef04611f blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xef0759b7 add_to_pipe +EXPORT_SYMBOL vmlinux 0xef43f9a9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xef4609af tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xef629d57 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xef6e90ca input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbb2d42 rproc_free +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd51198 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xefe3f95a ___pskb_trim +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0138073 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xf01aeda6 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03fbddf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf054b670 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf0572b85 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf05fcec1 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xf061b3bf skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xf07529cd sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf07b6d4e tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xf07f8032 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xf083abd5 key_type_keyring +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0ba224a vme_init_bridge +EXPORT_SYMBOL vmlinux 0xf0c0411b phy_start_aneg +EXPORT_SYMBOL vmlinux 0xf0c65d80 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf0cf10a3 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf0da0777 may_umount_tree +EXPORT_SYMBOL vmlinux 0xf0e2c994 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf0ffe3a2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf10fee98 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12ad983 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf1591de4 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xf159530b cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xf18185f7 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf189b773 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19739a9 tcf_register_action +EXPORT_SYMBOL vmlinux 0xf19d0fb4 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1c0c8a2 is_nd_btt +EXPORT_SYMBOL vmlinux 0xf1c3753d bio_endio +EXPORT_SYMBOL vmlinux 0xf1d90ad7 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e91f96 generic_writepages +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf200be77 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf202cde0 simple_lookup +EXPORT_SYMBOL vmlinux 0xf23acbe0 pin_user_pages +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24fa3fd inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf25cbe14 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf25f9dcc dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf26339ce phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xf27dc428 clocksource_unregister +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 0xf2b1c688 legacy_pic +EXPORT_SYMBOL vmlinux 0xf2b1eae2 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xf2b5f99c jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dcf2cc pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xf2dfc7a4 fasync_helper +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2eda576 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xf2f1abe3 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf2f44fb7 regset_get +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf306d562 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf32065a7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34adb83 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf364fe8e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3969a1d security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a73ff8 d_drop +EXPORT_SYMBOL vmlinux 0xf3bf1e0e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xf3c46ea0 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xf3c60b14 fd_install +EXPORT_SYMBOL vmlinux 0xf3cc12e5 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xf3cfab72 do_splice_direct +EXPORT_SYMBOL vmlinux 0xf3d4fd3c lookup_one_len +EXPORT_SYMBOL vmlinux 0xf3d63852 tty_register_driver +EXPORT_SYMBOL vmlinux 0xf3decd56 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e4750d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xf3e65814 mmc_add_host +EXPORT_SYMBOL vmlinux 0xf3e8c614 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4016935 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf4092089 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xf40c8cf9 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf42d7be9 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf46c5abf blk_integrity_register +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47a4500 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xf47c14ea mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xf49571c0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b4a990 brioctl_set +EXPORT_SYMBOL vmlinux 0xf4b73a55 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4cfcb7e input_get_keycode +EXPORT_SYMBOL vmlinux 0xf4d081a9 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xf4d97514 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dd38cd blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf4e1972c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f46fc9 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf5369e45 vfs_mknod +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf540c10a arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xf58265e2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5a9d337 vme_lm_request +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5c2f322 dup_iter +EXPORT_SYMBOL vmlinux 0xf5c92ed0 noop_fsync +EXPORT_SYMBOL vmlinux 0xf5cdabdd mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xf5dcb02c blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf6044fb4 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xf604a07c ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60bec65 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xf6191af2 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf62dec14 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf668bc39 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xf67d349c zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf684528f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf69783fc nd_device_notify +EXPORT_SYMBOL vmlinux 0xf6cc3fc0 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xf6e7ce51 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f28d29 folio_mapping +EXPORT_SYMBOL vmlinux 0xf6f73355 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf704f6b5 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf709cb89 kthread_stop +EXPORT_SYMBOL vmlinux 0xf711ef95 inode_insert5 +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7418d17 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xf74883e3 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf758dfdf vfs_iter_read +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7842cdc blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7a034f8 vfs_link +EXPORT_SYMBOL vmlinux 0xf7ae6bed __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf7bdd1ba pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xf7be14e9 mount_bdev +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e664f8 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xf7e7997d clk_get +EXPORT_SYMBOL vmlinux 0xf7ecc4cf __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f5e3b6 folio_write_one +EXPORT_SYMBOL vmlinux 0xf804a82e tty_unregister_ldisc +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 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8441b03 elevator_alloc +EXPORT_SYMBOL vmlinux 0xf84ba5f7 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8536a8a fb_find_mode +EXPORT_SYMBOL vmlinux 0xf85f7e29 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xf8663c9a mntget +EXPORT_SYMBOL vmlinux 0xf8725c30 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf87d8b0b blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88d2849 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf893e93e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf8b652e0 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xf8cd850f device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d3af97 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xf8e62d78 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf91e6b6a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xf9256d28 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xf925de39 genphy_suspend +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97f2f0c inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf9a26a03 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b0a7aa napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf9ba23bb iptun_encaps +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e28173 skb_ext_add +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa07de03 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa09a3e0 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfa2060d9 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa3729be kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xfa3a4023 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xfa4a9ae8 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xfa55b3ee kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa63eba3 follow_down_one +EXPORT_SYMBOL vmlinux 0xfa6c80b7 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xfa6ed034 vlan_for_each +EXPORT_SYMBOL vmlinux 0xfa761db5 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xfa77281a netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xfa8ab306 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xfa92e835 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xfaa55726 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab25447 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xfab6a816 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad0fbf2 tty_kref_put +EXPORT_SYMBOL vmlinux 0xfaddf5d9 _dev_emerg +EXPORT_SYMBOL vmlinux 0xfae9f88a serio_unregister_port +EXPORT_SYMBOL vmlinux 0xfaee86c9 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xfaf4a364 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xfaff0cef input_unregister_handle +EXPORT_SYMBOL vmlinux 0xfb137ec7 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xfb2468e3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xfb2cf5e2 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xfb2d530f __kfree_skb +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb38b09c __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xfb38d84a netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xfb3e4389 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xfb48f648 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb762add dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfb81a304 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xfb875636 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba8af87 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xfbaa7230 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb4db54 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd7882f fqdir_init +EXPORT_SYMBOL vmlinux 0xfbe099d5 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc069ec6 release_pages +EXPORT_SYMBOL vmlinux 0xfc2ea6e7 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xfc3080de start_tty +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc5faec1 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xfc6ee657 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xfc7e21d0 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xfc83cfec scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xfc85c861 d_splice_alias +EXPORT_SYMBOL vmlinux 0xfc883b88 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfc89874c ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfcc7fbf2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf706e5 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xfd132e1c netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xfd205a2d cdev_init +EXPORT_SYMBOL vmlinux 0xfd286792 pci_find_capability +EXPORT_SYMBOL vmlinux 0xfd2d7a13 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xfd3793fd input_setup_polling +EXPORT_SYMBOL vmlinux 0xfd4cb24f param_ops_long +EXPORT_SYMBOL vmlinux 0xfd516abc unlock_rename +EXPORT_SYMBOL vmlinux 0xfd6f1006 km_policy_notify +EXPORT_SYMBOL vmlinux 0xfd70231d scsi_add_device +EXPORT_SYMBOL vmlinux 0xfd77490e acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd95bb71 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xfdb0e720 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xfdb47dfb dev_get_iflink +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc4cf0b address_space_init_once +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 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfdd9c32f configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe026a74 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe07a919 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfe0edd20 pv_ops +EXPORT_SYMBOL vmlinux 0xfe192356 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe35971d redraw_screen +EXPORT_SYMBOL vmlinux 0xfe3f8cd9 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7313ba input_grab_device +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9b1bad tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebded7c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xfebe1cc6 __bio_advance +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 0xfefc8b77 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff0581b8 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xff05f394 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2b9dc2 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xff383b18 dev_uc_add +EXPORT_SYMBOL vmlinux 0xff510060 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff5e1156 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff68b294 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xff70ac18 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xff726cf4 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xff75207c page_get_link +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8d979a devm_of_iomap +EXPORT_SYMBOL vmlinux 0xff8dd9a0 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xff985d22 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xffa13a2d do_SAK +EXPORT_SYMBOL vmlinux 0xffa86833 config_group_init +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc761ab tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffd2ca2c rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xffd71b48 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xffd9205c nd_device_unregister +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +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 0x29ad6065 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x82e3afcc sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x92ea4352 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x9d60934b sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xad0a89a3 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb2628c1f sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb9d055bd sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00500aa2 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x006e4e4c kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x009e0a42 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00a7caf7 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x011ff531 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x015ac8d6 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x023e1e63 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02f8ac72 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x039b27ae kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04e60bf7 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06d8ad3e kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06e7e1fe kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07148bad __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x087a9cb7 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08d1a2d8 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x093ada00 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09987170 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a5d4788 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b41b8ab kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b6440f2 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b6d9511 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b811d72 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cbb0616 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cf6ba6a kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d74e063 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0eb8bd6f kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f2c26da mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1181edea __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12ec2b2e kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x132f0fc5 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x142198a4 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x164ff11a kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1726e436 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18351ee9 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x197c2cec kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19f3bc6f kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a159e2d kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1af2c952 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1affa376 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b045cc1 kvm_apic_update_irr +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 0x21a3c84d kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x223d4bab kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22425240 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24d1ce3e kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x252adc51 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26271262 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26e45973 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x275349e9 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x287d6594 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28c2af80 __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28f32ec3 __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x294043bf kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a111fd3 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a191c03 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dbdfc6f __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eb4b666 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x307a3c58 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308f20e7 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30d3215f kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30e3eede kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31dfc542 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32ddc94f kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x341fd190 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3459dcff kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35494ae7 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x369ae04c __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3788ab84 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37a5a880 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x397bb83c kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39e9ac8c kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fcefa0 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a12797d kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3b4ea9 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a6b0cab kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b446802 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ce2dcad kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e083a91 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f31b0fb kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403f91f5 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a672e0 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4201b9ef kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42a53463 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x433d670c kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43d7486b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x449f4dd0 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45bc7ca2 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47bf0e0a kvm_vcpu_read_guest_atomic +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 0x4948cfad hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4950b51b kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b1358e reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a3b98a5 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a42f9aa kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aba1bc7 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c7bd244 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e8e5d1a __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x501dfecf kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50ce6388 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x512d4546 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52905854 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5382a53f __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53ed02e9 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55507fe2 kvm_gfn_to_pfn_cache_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e7b99e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56d5c688 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58a97136 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59a4765f mark_page_dirty +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 0x5c11e105 __traceiter_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c5f3f31 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c8a428f __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e2102f2 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x612e5c1c kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61ff44a1 kvm_emulate_instruction +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 0x63496e21 kvm_gfn_to_pfn_cache_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63a8be59 kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x644eee3d __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64ace5f3 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65230403 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65f4da2d kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x666340f7 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66f883ed kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67b164fb kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67f9da5e __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68b12602 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x690ad040 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a6378b8 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc6b70a kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c45b7a4 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e2dd98d __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f0bf8ca kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x703683be kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70f699a6 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7101f308 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7198e6eb kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73bb94de kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ef6cee __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7833784d kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x797f0ab8 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79df9f55 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3020a9 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3ac216 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adab0cf kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b7a2815 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c899706 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7db612bb kvm_set_cr3 +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 0x82fca82e kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x854d9656 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f694a9 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x886942d7 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a65b6a9 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a99fe9f __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b6b66b0 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b8a1dd4 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c6834ec kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f7897ce __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x904df13e kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e19ce1 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x936d8ec5 kvm_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 0x953e3c26 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95522115 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96395ad3 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9672e502 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97ba55c3 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98fba4cf kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bbd0ebc kvm_gfn_to_pfn_cache_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ccac935 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d91a129 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e6aa0eb kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb601dc kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ed76e28 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0557af1 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa066a0ae reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0b7f07d __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa35e9e20 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5494793 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa63eb0a5 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa65f1dc7 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa66f1c8a __tracepoint_kvm_exit +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 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 0xa9721b9c kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9c03cc2 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa6a09c7 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa982659 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa9a1652 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1bfd184 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1c3748d __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2007e45 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb231ca09 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb242e3ca kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2d4d237 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2f556f1 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb431f746 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb50eb9f5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb717a166 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb738b9ae kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8464fd3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb85556f1 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8fea06a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba719a01 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbea09984 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeaa8ba1 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbefd7a1f kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf832d37 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc06dd091 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc19a1bba kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc219d36d kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2b920bc __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc35a0db7 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b956f3 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc492e581 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc680bda8 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7612d98 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7d59784 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ec092f kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc210548 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc34f82e kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdbb177d __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcddde892 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf042fbd __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf142f1e gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf658286 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd04b9458 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0f004da __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd268a39b kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3872aa1 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4fdb058 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7701bea kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9d828e7 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda148538 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdba2ce5b kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcb60d3f kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd216674 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd549dd4 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde3cf682 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfb7d3f6 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfb92da0 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe08d66c1 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0a27b22 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe11e767a handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe140622f kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d231bc kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d25080 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2519d9f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe34fced1 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3521168 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe375592f kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe53ed8c1 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55d312c kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55ed296 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5b9ff25 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6d36d32 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7777457 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe81995bc kvm_load_guest_xsave_state +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 0xe983d6cf kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea79cc57 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb183fc0 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb2cec3 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecf61581 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedc8d43 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef936ccb __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf22809fa kvm_lapic_hv_timer_in_use +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 0xf3ebd104 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf40e317f kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5ae01a0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5cd9467 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf77bf5a8 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa717bd2 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcd4829b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfce2ce72 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd9a49a9 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdae18d0 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe16822e kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe68825d __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe853139 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL crypto/af_alg 0x1cba93d1 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1efeb053 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2508a11d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x451db879 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4efc72ea af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bdebf48 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x66232100 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x710695c0 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7485a85e af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x88f9b00a af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x98d3194b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xaa4f5532 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb353acf9 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb44e1727 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xc9b5ecb3 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7f883dd af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf87a7a5 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xedf5a3ae af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9dd676a6 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9c963763 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe10bec83 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26ed3d75 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xac8e05c0 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x21f3b0ca async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2d605d8a async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9ddebdbd __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe0fcb404 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1e430b0f async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7a679e33 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8aaa30e3 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa117a5ee async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd5caaa92 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe2f9d5e2 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x003b9cce cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x21065ecc cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x34b6ca87 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x39c14d51 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x407bc845 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7568cc61 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5f23322 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb9d2fc57 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbfecb543 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xca311ca3 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd5acc3ef cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe61f60fe cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe925fdf4 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe9cae540 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0401c1db crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x18d1fae1 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x21862ea3 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x22244923 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2396ea1a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2df800ca crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x397dbd89 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x863d3cfa crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9afa404b crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb661ada4 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe5e133f crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd34865fa crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd47e26ab crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe6300c89 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfdded766 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x29ecbb87 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46dd1ec3 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46e0ca63 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4c2c7aec 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 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 0x0c733734 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 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa5628746 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x070b5c6d synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3e639956 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x43dfb735 spk_do_catch_up_unicode +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 0x4975fa9e spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5c4df688 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6fb20a1b spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7ee7ae55 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x858ae1fe spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8763fd16 spk_ttyio_ops +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 0x99335346 synth_current +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 0xc236d71e 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 0xcc6f8518 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd36c10c1 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd3f440cb spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd786094d spk_ttyio_release +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 0x0755815e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2e80d662 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 0x948bcc13 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xea1971e1 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf489a276 __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/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 0x048bfe99 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x07fd93e9 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2f469f08 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x486b8bca ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4ec13647 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x535a1900 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x640915ac ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c52f55d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ce379e1 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7212afaf ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7611d8e2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a6e3c21 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9900de36 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1f70e3d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa826b2c1 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaaeba72e ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad18a973 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2b6bd7f ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc7e2721f ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe458a642 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9e9865f ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2a2de95 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf4b88dfd ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf930c43f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x176b8d65 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x240eab44 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a9bf11f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3af3af35 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6033fcaa ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x78521425 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x908cd9d5 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xab56a770 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb5f5e5e1 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9a31281 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc53de27b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcdd8cc5b ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd37b8eca ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4ac4523 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xefdcbb21 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf60ae9b4 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x9f4cd1de __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/auxdisplay/line-display 0x2fa5089f linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x68a9c1ac linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xec9bc4e9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6274e6b1 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf4265e40 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc2ebc0a3 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xd2fd725d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x13016ad8 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb24d8481 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x04c00c6f __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe690a88d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0776b2d9 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xac1a3909 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1b30b18e __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5b386814 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd78c7a2a __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xeb8459a0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x92bdd9ff __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd9ec9126 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0464d3b4 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x126319ad bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cf9a456 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b078d66 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ee59d41 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3da1b291 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58bdb8e4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63a1eda3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c4f84ad bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d085cee bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7594304f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x761cf3f7 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x881b2042 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae485ee bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa40b32d9 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa122697 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac156393 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xada2b8f6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xadd56149 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8e83a49 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe527d4e0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef4bf0bf bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf23f7d58 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6d9d880 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x18287505 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x23e3e113 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2cf29101 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x688e882a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x714e1fed btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdaa9c4a5 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdb95b15a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf83bf757 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x028af802 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18b25c07 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2a19a9e9 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2e64d0ed btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4642222f btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5be98ca7 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ee17b16 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91577f34 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e911cd2 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e9ed5dd btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xade6d669 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb934ee20 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcde40bb0 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd037c7f9 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe367d10c btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe69e5c8f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0a527ac btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x08e638d3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d204608 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2526cede btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3f5c12d4 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66faae90 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87ec36d2 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8de714db btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf5b4c4b btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc95cbc4c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd41b4cc6 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf755cd37 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x00ba0305 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4c60d050 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x55950838 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x24a2668c qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7b1c99c6 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x96d7d25b qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc6ca1595 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdc7bba13 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x091de2cf btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2e7c78b8 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6a8655dc btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x879f5e4c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x95061e47 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf6dc48da btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1293f25b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x375890d1 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb7dc39a5 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbeb3e6e7 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2350135c mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x277eaa44 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x283b1d14 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x321deefa mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3552a378 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x362f9ac5 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe9605e8a mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xfb214ab9 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x007a7622 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c0f3858 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1ed600fe mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1f656c0d mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x24e2198b mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x254fb8b7 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x271cef23 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x37f00598 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3dfa10ad mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3e4a85c9 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x42190d68 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x461168e4 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x62105a06 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8867bb53 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x951193d9 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3727008 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa7756131 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaebb1e0b mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbe1aa554 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf55a875 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc8f7dc4e mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd4775985 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd545031b mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdafbb7c7 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe34b90cc mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe4d25c6a mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe65036bd mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xebf1f440 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf0425d3f __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf6df4220 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7931ec9 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071b753a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0a0a1e3b comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f820066 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25508fb1 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d961e82 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x337eaf59 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34e9a48d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d6e4993 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44c055f3 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45bf3563 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58130eae comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x678434a4 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x762f7d0e comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8857ebfc comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95686a95 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97fa3e54 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f751baa comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9fbab766 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf71b2d8 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3a3974b comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3d6309a comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8ca2ec8 comedi_request_region +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 0xc4f09dd3 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7501476 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8888dd4 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8aee0a9 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3617069 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd426690c comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd51fd05b comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd570cf8a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd671efcd comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf14349b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8c9938d comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6a874fe comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf9630103 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfbb14c23 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x086f449b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x29ad8500 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e33d0b4 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x46596f49 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8cc2dae6 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe63b425f comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe7ec342f comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfbbe9300 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x108855f8 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x164133d7 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x5cdedf44 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x61e6f185 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x9750bd53 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x97b5708a comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc621833a comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6315b8bc comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x640f6957 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x86b46f56 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a62dec9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd4e3815c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfef97879 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x4e42ad9e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x21bb62f9 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xe13b6c4d amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x94975783 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0d80c884 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x22be4336 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2daaa1d4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x362baf5d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4036319c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45825972 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68e3c902 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a06750b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7be1224c comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x94275538 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa2622450 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa2c920f0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe2415ff0 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x478ac636 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4cb8d52f subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xfba39665 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x0231abc5 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x29699e7c comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xf5af7809 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x37ddba0a das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x14d0741c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1d062da7 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x249df399 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a479de7 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4646b689 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x489a44fc mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4e782ca9 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6b4d2559 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c080c70 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c677dbb mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7db1ad21 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x91832086 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9e89ac20 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdb8cd7cf mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf148970e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfd8c28b8 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x312c6b2f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x791beadd labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2010c00e labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x34bb214d labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x3e3e4862 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x54e99a79 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x886d5765 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +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 0x08a941b8 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x22e20272 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x23ad5831 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b8a7f82 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48636488 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5693b006 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63bc55a5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x71b2cb28 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7a5ec847 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86fdc3d9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa44c8203 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8746fe0 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xed58323c ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xee6aab65 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1df06ee ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa69aedd ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x53724097 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5b305aa2 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6c2a3ebb ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9d11ddb2 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd14baf25 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe01ccf87 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4a9c1a97 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x790ea92b comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7cdcfc35 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8c18f9d6 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdbd815b1 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfc59db3c comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfd0fe938 comedi_open +EXPORT_SYMBOL_GPL drivers/counter/counter 0x323b3b48 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x95eb9c50 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0xaa1a370a counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb6ab7a70 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xbee106c4 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc33fb93e counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf844b01e devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xfafb7ee7 counter_push_event +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 0x55612bf6 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe82f9908 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02a2e53b adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x04245d83 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x04db58c8 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b313aac adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12edbb56 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x185be54d adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2658c59f adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x275a3b51 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2893b366 adf_gen2_enable_error_correction +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 0x33a2d0e2 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ac51457 adf_exit_admin_comms +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 0x442c8a2e adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4470d527 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c2e5985 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51475967 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x518fc358 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55947dd6 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61b8776c adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655b5f8e adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655e7a4b adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x671d26ec adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69ae1747 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f341573 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f574e80 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f58f63f adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7477f90d adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c4bc7c1 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d151e28 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9431f53a adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a532a1e adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c2c2de8 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c90ccd0 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa29bde9e adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6c71793 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2648b4 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xadeb1f5c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae11c2c8 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0dcea3c adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1975ef4 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3553245 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb529a045 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb62de98a adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb98b7d45 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc2f6ca6 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc394253b adf_gen2_enable_ints +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 0xc7efb48f adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcab366b6 adf_dev_shutdown +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 0xd41e124b adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5324192 adf_enable_aer +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 0xdc4ce98a adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd5afadd adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe9054b78 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xebac7162 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefee51a0 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf13aba36 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf3933f1a adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf890b787 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff2d8d72 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffe0d699 adf_dev_put +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x17e90094 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x303f2b1d alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5b139e87 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5c11a0c3 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x66b310a3 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x85614f48 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac308314 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfb562646 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x5e096420 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc2eb5485 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3cc0234d dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4fe2e1e8 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7112cce4 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b8f5df6 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9aad9db9 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xba966cd1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd36e6d18 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe36bbac7 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0f25d4a dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x4f26f3b7 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x82f5cd2e 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 0xa6768751 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x01f304d6 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x04b434ce cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x04de13ad cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x3ffa7373 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4bb5ae44 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x55ac3323 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x595cff43 cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x59943c62 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x63acb9ee cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x676ffd43 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6b574606 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7d2f95d7 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7e6ac459 cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa3c76221 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xacb63314 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xace2c0b5 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb21da54a cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb83f884b cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbb9127af cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbdf55ca0 cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc102d86e cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc2ae8383 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd3acdb00 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf89aa093 cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd3f2f6c0 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x05e54337 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0b80d296 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e7016e5 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x196c979a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28293202 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4843847e dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6aafd0ec dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6ce921dd dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x76a8685f dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x86fd56dd dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x957d4dc0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c55bf77 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cf8164f dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa141e950 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa305c796 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5bf8b4e dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaad572f8 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb337034a dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc14a882 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc808a265 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed8fe9d6 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee811ff7 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf101954b dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x06c3ded5 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x297e30b8 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3157f7df fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x36dfce13 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44feaa36 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x824be865 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc2038520 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeac4078d fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf8dfe983 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02b81501 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x148b9a93 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x53d6e976 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x593a7578 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fd96a79 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6104d59d fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a743dc5 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8fa497e2 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa47804e2 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa9e45262 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb15bc2a5 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4bd005d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd10eb5c4 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1aeee702 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3bcc5028 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x842a29cf fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8a59d3bc fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcb87c9ab fpga_region_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x09a9ccf0 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x382203f8 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39a7d078 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xac8f525b gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf2a0bd16 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0c1b2958 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0f7fdfa6 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5b1325fd gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6a46b8bd gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6eb0e904 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x85fef70b __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd38316e0 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x176c2305 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x21ea289b analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3cbcbcd9 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 0x6f57647b analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x72398427 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc2e36d64 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xea1cc828 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xeebc4817 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x9f055a5a drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0419f983 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e5289fe drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x318dfca7 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e383036 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68c78448 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71c48bee drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa1670a4 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad764710 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 0xaf294a0c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb35179ab drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc03da92 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd05e2d5a drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6081a15 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x112d441f drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x91ba9931 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x9862815d drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa51cdef0 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa947efdf drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xae0b22fd drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd0573261 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd730bf00 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd9a9f026 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe56d6053 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf4999b54 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf9407fbd drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x06626e06 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x10561b7b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cbe07d5 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x61500b60 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6b915e65 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x73e28944 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7c44bbfe drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8787eb7b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa9b80232 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xde5772b4 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2e1c4c57 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x334c21a6 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x469e9c2f drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x712c50b8 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7dc5346e drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8458ee8f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xafd98cea drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc8f84467 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2f53b61d ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd049d3a3 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd0b914c2 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x010a9c72 __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01b0ef87 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01c1ef14 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cb21ace __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13a912a2 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x165f8c6d gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a1f8c83 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c1144c0 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f0f6828 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b731ce6 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f7d3820 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4247f379 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x451dadb6 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47442a09 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4dffbd40 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50aea173 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56e76c31 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x608a2e78 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x611a4918 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x627a3de8 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x63c1eae0 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65e3721b __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75cb3f2b gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78ed22f5 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bc55b13 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85004b1e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86d1bc46 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94958f93 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a14d190 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f040e58 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f097cc3 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2a7e41b __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8227c3c __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8c0b8d7 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabf6eecb gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae557b53 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafb5dddd gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb991cb50 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe93d208 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0a6f706 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3df3665 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc68e6240 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc44a9dc gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce1bbbe3 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd416a389 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd421c135 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4e1f859 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6b058c2 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb5e9984 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde8f5e88 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe335abdc gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed16410e gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef5c8aef __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf32d331f gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf87b3c84 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/hid/hid 0x027b6cae hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04551cf4 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09eea9ae hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10df1f94 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26aefca3 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27445b16 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c299734 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c5840bf hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ddd2c7d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2df9d1bb hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e3c7ff6 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36bd5a1b hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38fa8360 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dee543c hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e2bb41b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4927944e hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e7202bf hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x544caffc hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54624f75 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x605d2d28 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64f2c55e hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x678b4cd7 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69004ea2 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x723a1258 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8eba6320 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x927c5ebd __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x977b38bf hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa19e0553 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa375a2ea hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4033936 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9165f0a hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9dc3db4 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaed5d199 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba8d8fe6 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0f0a83e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc230c4ba hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3398030 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcff57fa hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd4ea695 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf032e49 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe512600e hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8371c97 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec417ff5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed5a2e9d hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xefd2e948 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1460b68 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8adf093 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc198bd9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfefc085f hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4d1812a6 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x66086a5f roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7520c58a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb5a37b6f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb792f2d1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcf99f3a3 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd5e9f339 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d81c1c8 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85470185 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa72e09f5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbf03c348 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4b94801 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xceb98f5c sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5c867f5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe467e2e6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xec4f7535 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xeba3ad36 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xf1fcdb86 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x461769bd i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6b7251c3 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7f1e6405 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x968e7ff0 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa7b22f1b i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xe9a563a6 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1a9c9262 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x872a498d surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd5e6b79b surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7fc1ec47 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x56b56657 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb7871cb1 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x12899675 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c1e9a9a hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x328925b7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4333d5cd hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4f2ee6c1 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6729f6ec hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70aa0e0d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d8475ac hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d938a4a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x916483a7 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e572c44 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9388efa hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe7526e98 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed76905f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0e8d3f1 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf532c7cf hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfd37d98f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x01866228 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x084e089c vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1d7ec463 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27a42aab vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2be03eaa vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2fb2e4fe 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 0x41af7f0c vmbus_teardown_gpadl +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 0x579d5730 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x58017358 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e342fc6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74c8c13a vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7baada13 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x817d0982 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88cad39a vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c192942 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d4eb143 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9409f40a __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95a3ff33 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9964bb98 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa32002f8 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa5e2a93d vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8868522 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb10fecad hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb3724025 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb53da3ab __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0dfaf78 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda80d03a vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9388ef4 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xff0caf23 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x108f1941 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x911d2838 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 0xe5169919 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x022dbb62 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x09229c58 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x75e7957a nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa560f84f nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc4fb62f3 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfe34a418 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e423972 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x320d87ed intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x447d6a65 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4b9a4e91 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5b22cf41 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7321bbaa intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94728a51 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe1d1efe4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf41dabce intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x15e8170e intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x49aba3a9 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd760066a intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x064c517e stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x077d86d1 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0ddc63dd stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x547579b5 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x583c3ff2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd3dc916b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf3d450d9 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfa8fb90f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfe9e6489 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x06cc8441 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0eb18c62 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x30b29aa6 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x34f99991 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x35a14497 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa0c01939 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd6f3a8f2 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x6002b977 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x3af7aa11 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0c72ac22 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x41c4e4a3 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5f4197fa i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7bc6fe34 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7bd65751 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d24099b i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0400c47e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06a55610 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21cb63bb i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x247c0655 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3281a7f9 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33fbf234 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36bb1a59 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x42bce12d i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4512ca91 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a81a235 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59c6e6e1 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5e48cbcc i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x63b7f9dd i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6553021a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x683f33cd i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x68f7331c i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ce1042a i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88c717b1 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c73f89b i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb6714dcc dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcca99894 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe02aaa97 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe715cb52 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe8485581 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf398aa19 i3c_master_unregister +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 0x9a1e2779 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 0xad8244b9 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdaf8b074 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1168680a iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x33a2fee7 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x39fcdc45 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x536209d0 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5d54af23 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x75d9d43b iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7a9a7bb2 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x88a0a3f9 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x91f52d95 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa1bf0f55 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb52ae58e iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xde29c659 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x3f9480c3 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 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd33843b7 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe728fb43 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xbc050181 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0de480b3 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x4f20f630 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x153c0024 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x42e42d56 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5d2e43b3 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x65fa7a20 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ab07252 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x827c3629 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x93ec8982 cros_ec_sensors_core_register +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 0xbc64de0f cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc7c28a30 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcc6fdada cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfaa61a0f cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1940c469 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa48b1bf9 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdfc3bb9d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7b1f7536 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa53c7499 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xfc554e5a fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x8016ef68 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x50f372b5 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6335aa07 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x89f44c6a inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc494b3be inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x69eae387 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x868e5231 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x003f2dc5 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01cd8313 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0691f9ff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a9c024e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10484352 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1837beda iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1aa13377 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1aa7c4d8 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1da38e70 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dae28fd iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2329af6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25a052f8 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b04b60d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x305cb82c iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b820047 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41dc568c iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44df09c3 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4874dc35 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x530e0e4e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e7d649a iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x618dbf87 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63fdb749 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6550b99b iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x656e03b5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x674861a7 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bf7b07f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fa9b486 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70e572c1 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79fb41c1 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b9312a4 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8227d135 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8243927d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84e98374 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8dcb2fb8 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f136fab devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f6914b iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a5b6729 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0224b3b iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4546bb2 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7fb0597 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa88e3912 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac70eeeb iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacf77412 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3d225d6 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb62bb386 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6f8e4a8 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7fe25d8 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfa56fba iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1c3e708 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf509ce79 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7298981 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c740b43 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4238bf18 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4322e5c5 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x60feeab1 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x69b7629d rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6e8376a8 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9d4a0ba0 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xac9f5314 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xafe32855 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcfcc2ea8 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd2f3fb12 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf61c0b7f rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xafae6072 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb8ebea40 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe2ca296a adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x169d6e80 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2a47f7c7 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35d45ee8 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4bd43377 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a766edb rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x808abe83 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x849c34dd rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ce90b5b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd440b50b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd833cc98 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdc914378 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe3160062 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb6e2aac rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb3038ad6 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc07f4736 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd479d927 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x07e3e8d1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd851aaf9 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa27227fb cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf19bc247 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x25021df6 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x640384aa tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcd2b4c63 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd044eb47 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2ad7e66f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3769fb35 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5df1a8cb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c3a83e0 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x87ae7cda wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9d2ee4f5 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0e50899 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc03ed3d0 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcaf5d8a7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd60cf8f4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe67de6f1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf64c49ad wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x012998d4 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e7e9c28 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3967f602 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x46dfc296 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5a4bdeb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf67a7e3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb01c1c27 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba68f136 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xed5a6355 ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0dff56cf led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ae38cd4 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3756b978 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x55ea6d85 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5c08657c devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6958562b led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77ef37b8 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc45bcd4b devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x301e63e0 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x54a07686 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8a5c18a1 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8e52b41d devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe56359f5 led_classdev_multicolor_register_ext +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 0x023f02b8 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05c02de9 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07d85a13 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08042822 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08358a63 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d2d617f __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x136424a6 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13744f7d __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1455134d __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x153f47e3 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x169e253e __traceiter_bcache_invalidate +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 0x1fa2a28c __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21486874 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2233fc36 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23f08bda __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2630f45e __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27c8e87d __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28dd60f4 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32b1a849 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x347c036d __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35b245c2 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37ebfaf6 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c77e234 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cae492f __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x429e6dcb __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4314b582 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45da888b __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48071804 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48792621 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x490c657a __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x491a646b __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59d8eefa __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e4937c4 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f336433 __traceiter_bcache_bypass_congested +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 0x6540692f __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d16d9d2 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70c53d44 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76fd505f __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc20797 __tracepoint_bcache_btree_node_alloc +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 0x81c699f5 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88eb83d3 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f404818 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9129dd23 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x938e98fc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94bead0f __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97c226a0 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97fb0c9e __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9bfec060 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c5589c7 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d43080a __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa24471ec __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xabc4d8cd __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaed073db __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf7dc363 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1457733 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb930d0b9 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba85578b __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbaed5ce8 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1871608 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4b1e173 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9b78b45 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd744685 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2f32f6b __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2fe691a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd54aa7f2 __tracepoint_bcache_bypass_congested +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 0xd9969ab7 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda95d358 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc0cb71a __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde29cfc5 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde2f0b9b __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf879aa0 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0ad0927 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe1a09539 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2190ce7 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe54f6e44 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe955956f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xead52862 __tracepoint_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 0xecdcc1dd __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed2ca30b __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee7b8402 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef379675 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef62bd3c __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf505e964 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6f0da53 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf73e94d8 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfadcccad __traceiter_bcache_btree_node_alloc +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 0x04c627b1 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x36f6229b dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39f65d9b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40d75be4 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42c0c362 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57ee7745 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d7c50c9 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e90cccb dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62307abc dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64ca3f8a 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 0x8e652d9d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8fb8d777 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9dd32a3d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9de9c214 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa573034d dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd94730e7 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2fa513b dm_cell_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 0x55b37891 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 0x42664bdb dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8d71dd47 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 0xb8844849 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdcaffb26 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 0x09161f2e dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x27df79a7 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 0x4a4a5f22 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x930c76d6 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 0xbc62e6cb dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe0039f4c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +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 0x20c84409 dm_block_manager_create +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 0x0097a71b cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1cd6dc33 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e2385d0 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2791c97f cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3483fbaa cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a42e19f cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6ce4f8ef cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7160d503 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x81d3a3b2 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9579b5b7 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9e52da22 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa6e72d3 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaade7f9f cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbae56c14 cec_s_log_addrs +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 0xc23e9617 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc2d706f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe6266e8e cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe72ad64c cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe870701e cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9082382 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee1199d8 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf71ce462 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d5ad46a saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1ea5d8f7 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4490d352 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x68b55b15 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90a5786d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa97affa0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce0bffcc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe5ca8502 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf0f78481 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfedab390 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x43c3708d saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x753b3163 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xab293c6e saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcbf621e1 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd72c27a7 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefdfee76 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf586d9a9 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a26f273 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1008482c smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x29889b5e 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 0x3f5732c2 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42e3b3f2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4aa8c9c9 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4cb69002 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa368b186 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb78942a4 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb9d71b2f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1bc6bbb smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc399b166 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd8ef485a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xecfebfb3 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4e18947 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa831661 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfea15b9f sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08198f42 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0fce4f08 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x132da5d0 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24c148d0 vb2_core_qbuf +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 0x2bfd7452 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2dabf550 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3dbffb0b vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4293ca4d __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4357fb13 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43c2065f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bcc09f1 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d67ec46 vb2_core_prepare_buf +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 0x5044cb64 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52624233 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6b4b9f1c vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c473d96 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e0b5bb8 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f7b9117 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fde70b3 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8d06ae vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8dd4fceb vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9955cfd0 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b6d1157 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f581a30 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa133d8f1 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xad821e4b vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbc7879ff __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf1c5bfa vb2_mmap +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 0xd28a08d4 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde37a2c9 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe516a8ba vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6354917 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xead0a3e8 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec7b4cc6 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xefccd3a3 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf9bdb689 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfae18a01 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0395247e vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x67aa00fc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x76fd03e7 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x0864e5e6 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00d5e340 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x08108757 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15b423c9 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1cd801e8 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x310a8309 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x339e4f4f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3eff9842 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x417769eb vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c08c755 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fd2acdc vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5415de45 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58205334 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b61f8d8 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64ac67f6 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x743d9d8b vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77b03c9f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79f98684 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fe4e1bc vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82754e5d vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x843233f8 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x883945d6 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9599d1ac vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95bcc9a0 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaac2132c vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab832bd0 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbafc42ce vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb758280 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd178200 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb12dc10 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbde84fe _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdc72869c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf003a3ad vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf13cae3c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1d4a776 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x47c5f0e5 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa0bcbc1f dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcb54f20b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xdb5ea132 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x044afd1f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6074acac cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x1450a88b gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xa92ca7da mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x97e88ce2 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x770e12c6 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb6f054c1 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd5b8e564 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xdb0c1ddd ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x28050b06 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x390c0b76 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x44729700 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x500a2455 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x87be2cc7 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a2ffb9f max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x909c95bd max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x91931e62 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9cd75d2a max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb9164397 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc864c838 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xda6e0509 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe857cb7e max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1059f270 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13a5a8a2 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x157fe4b4 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x179d151b media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18e06354 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ab08b4e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e1a451a media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fd470f2 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31044075 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35136f1f __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x369f6b8a media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37763346 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45c916a1 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b3389c0 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c5160b3 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d99c3f6 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f49f080 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60fe3c0f media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64d0e3bf media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66931c04 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d48bb9f media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7646927c media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79f2a34e media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b92e5be media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81c69a63 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x88452f3c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c790fbe media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fd21d8f media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9189b509 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9218ea40 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96d8050b media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a45742c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e86ffb2 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa04445bb media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa08f3f50 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1fa1fbd media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb37bce0e media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcc16da4 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc81991f9 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccef7c95 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4943cc2 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda66d092 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc5f13f4 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc9265e1 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0957ca1 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0a9f7f4 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5e3e1ce media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc7781d2f cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c6db4d5 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0fc682d3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13e07f7a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x159c9a96 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3356076e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3e7d74d5 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4bb69596 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5586c51d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x609084ce mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64a431a0 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6534de59 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x984f1546 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb25619c3 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca466287 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd106143 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2faf94a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe488072f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedc14af1 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf57dd13c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02b1ca2b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39e2aa7d saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x735cc870 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a86ff08 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82e9d054 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x962055af saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96568b50 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa34aae41 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa69eb7cb saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7552f71 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7f98c8e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2132eb3 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc49fa6ff saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd8e592cb saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe94e1df7 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed184cd5 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5e77a30 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf94e8e20 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa3e94ec saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x00ba1bc1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x08ca41c5 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0d9358be 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 0x8ab8a404 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xafed56be ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbbb9d422 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf48f2f2 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x17216aee mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9bfb48c2 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc7e01f5e mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd50c4e57 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xef7d2f9b mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x71a499b5 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7ee1e4f2 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4df69e26 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5c32388b si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb6e67b11 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb735abd9 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe716abf0 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5a293f rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19ec78a9 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b248473 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f0542a0 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e98255b ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a299c16 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ce1581d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51d181c1 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a47cfb9 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65db4006 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67c89342 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79b90fb2 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9721b2d9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c139dd9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c4d5f11 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda966d12 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0515d78 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbcf4c1c lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x52d5ac28 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x48edacd8 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xefeebc11 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9ab3bf9b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x332e87b3 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x295908c5 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x77c7284c tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdcbabf5b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x8c66e59c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xaa87e353 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xce32e115 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6cf2b8d5 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd6f93f23 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x7805888a simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x083e212d cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ba4529f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cf88487 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43c53ab9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c3dcb6f cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5118b79e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x527770e6 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7087582d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7631ff72 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7dd481cf cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x866c686b cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d4935ce cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb37ed4d8 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2c4a7d8 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5558457 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1a26a78 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdcd1c76a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdddaf4f5 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde329330 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xead738fc cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1c510cb1 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x15bd5357 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f411d35 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x136df51f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x21815f3d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x306aee7c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59973e6c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x646b29a8 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a0edc85 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa75724c7 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf3e1405 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1e937aa em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7479d09 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb75d53df em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb80d615f em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb95f3588 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb8fb454 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc120fbe3 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd32d751b em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6996d44 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4851e36d tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4d3d8b9e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6b769691 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd70f4de6 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4def831b __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4e573cce __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5ef303f2 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa4bfe094 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe4158b53 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x05e7cdef v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x23ec8a2e v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa5de7b09 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x14b56a86 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4386034b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x44d9dd98 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 0x80e563f1 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x88d1103a v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ae355f5 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x93d7f72e v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc47296c0 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe9cebbc5 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfaaa27f6 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01850138 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02a74532 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09d24be8 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d2da582 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x135d481c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14940007 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18b9345a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x220cfe08 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2892b68d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ac661a9 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bfda8a0 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x407b0b26 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40fdc4b9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5286a163 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f96c89d v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6097d18e v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6547ca67 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bfdb594 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88ced000 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a92e9db v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x952cb1f7 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b2934c2 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b2d58c5 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ef96d49 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa1e19b7a v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0b16d69 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2482ebb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5e88c97 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba27a50c v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbafdfc30 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0b1b807 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1efe091 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc93b3fba v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc966274b v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbcb6d86 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd93d8df4 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf412368 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf85569f v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5ebccee v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebf0501c v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebf1d829 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf063d205 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0fd1950 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfeb1e820 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0048b58e videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0aea48ff videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12ffc68b videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17e4ca62 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1915864d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19355cf8 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fc450d9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3430ff7b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37995d63 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41f75343 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4aac0943 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x650af18f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70fad48f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x731fde05 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77a31bb6 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7cf0d6ae videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81c663ab videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9caf5b47 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e6799f1 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8a7d358 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc953d8dd videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe70a4938 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe730b8fc videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb137c46 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2ce9e99c 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 0x7897250e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa750ce85 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdac0487c videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2456ff21 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe855bd04 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xee0cb3fc videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0692594d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x094b8bf9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e54e406 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f47220b v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x169b221a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18b3fd9b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2032aae2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x221e0dcc v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x236a84f8 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24125267 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27e3a3d0 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ac4c210 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3deb6b5d __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4066a5b1 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4192afb2 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x470bb0a1 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x492cb37d __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c42d7ad v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ee044c8 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55231d9f v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5628c1cb __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57040313 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c7b2a15 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ccf3c6f __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e18dbe6 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62b8af25 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63c6a156 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6520c186 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x654b5cd5 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c4abeb v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67a1af18 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b7ff734 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cd9fdfe v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e47550b v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71d94a29 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x744603ea v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c058742 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c5f3e1a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e20019d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9482c821 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x960ca1fb v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x975a80c4 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99508ff6 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x995976a3 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9dd6a4b4 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f6b8b53 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa13b7016 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa381ce74 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa69b784b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9baa79d v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaaf9560e v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0b4becb __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2d65f1f v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb587e2a2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7d266ab v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2d874f9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc31ed577 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3e98a5d __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf149882 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd10ecd63 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd774970d v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdeb9a728 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4bc8435 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4c9cb42 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6bba30b __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe84fdb31 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef287156 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2e1ea6d v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf41b87e1 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x32866b2a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcdb6bf26 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd19ab125 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01943d1f wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x07b06089 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d4aeed9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2f871ff9 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2fcd4ebe arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x374662fb arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x37cce862 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42acfc53 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4e9da0cc arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5961d260 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x670940ca arizona_pm_ops +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 0xbfffa86e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca456ae3 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd4847c6c cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd9de612c arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xed35bfd6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf2297dab wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfcc76922 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x19dc4ee3 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfc717380 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19013754 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x626f61a6 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x77b92775 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97e70664 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xce45d523 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd2a115cb da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdbea9496 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x086b5821 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1ce8d202 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x28a2d35f intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x38c2d24c intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x84b9847c intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x0f645631 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x1d904a30 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x254c58a4 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2e60e80a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2f7c18e0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2fc7bd49 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7b0a88ac kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2a31f3c kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xebe64376 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee63caa6 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf9f7e476 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3e875549 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x66a462be lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd2a46d79 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x05bf53e9 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2aa65400 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4e62fe56 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5388aa5d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x839f8653 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb2a19ee3 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc387472e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0865d8a8 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x41d123d6 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9d17853d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0c2f71db cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22549850 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3a15dde7 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3a1801a7 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7920c0eb cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x792d1cab cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8191f15f cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x819c2d1f cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a83976d cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x994486ef cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99495aaf cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b6acb48 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e425849 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaec59d12 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaec84152 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3e36a27 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3eeb667 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2a4ec53 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2a93013 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcad74135 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd4cb7289 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda719be3 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda7c47a3 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedf0801e cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedfd5c5e cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0d6772b cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0dbab6b cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfac094dc cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x392a4db3 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3e176c83 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6ca2d2cb mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7ead27a3 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xabd16923 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbc6a8af9 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4d401856 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x60891b91 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67516d60 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6b738417 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d6dcdc8 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x707349ef pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9be903e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2fc833b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf6ae913 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3b9ceb5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcfa2be16 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x13084d5e pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x26561710 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x194a9555 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x412ad60f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9538ac62 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcd23d401 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd567d24d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xddf2176d 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 0x037047c0 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x049f9cc0 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0741b838 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22bea606 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x316dcf48 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34390f4d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b6687aa si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ed61287 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45317acf si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f152747 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60f413f2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x619ab1a9 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x642733fb si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71b90405 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75a48b43 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x864a9343 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b6cb012 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e109847 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91dcaa3e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9676e1f4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ce62b2c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cffa763 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f72c19b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1f29d7f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadb12aec si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadf662a2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4a3ab65 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xceb1aee7 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3feb2ed si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3669e43 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe430b3fc si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe48a575b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe59d0ae8 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff2d898d si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3856ced4 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9618b76e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xed51b7eb sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee3d908e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf2b5b67c sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x225008b4 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbaa33fb4 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe3914f72 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfa736003 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa4ec8ac1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x11d2ee3e alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1fa4b229 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x57018464 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8129d302 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x944eaf5f alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xad808a69 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb7ebb95b alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x05ba4127 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d6c1baf rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x28f7459c rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b782f22 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3497c391 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x35610945 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x398d92b4 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d9c268a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65ebe12c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x688879aa rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74d6d95c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7560bc9b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x798ac881 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0fe3db8 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa838a855 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbd2b0a37 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd0401161 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd6760166 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8cda291 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb07706d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe3a7d473 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe87d0600 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed7ba1a9 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfd4e9738 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x03f6b886 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x277c6963 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x358c8ac9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37a523d7 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x440ab6e5 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x589373e3 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x95b72a6b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f4213a3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb53636d0 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc22e3712 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe65a090c rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb1b5c78 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfe79558e rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3a049699 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x46ee7661 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x90c3314b cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9b335e09 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 0x0b0f0ecc enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec98984 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3b5b700a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x76716fe8 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa81f7d13 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcb8aef65 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4ff8276 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdfb30261 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17401042 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x47f6ec1f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4dc77053 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c71fafc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x80e9f096 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xad312358 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc553ac06 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd7db8cc9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0091fa6a mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e0b3380 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x11f7735e mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x16c16f84 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x173d69f7 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25473e0d __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x307422e7 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31e084d6 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33db3abc mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3833af41 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a3e9e51 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3bfc9f6c mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c2799ab mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x80f23b9c mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90f66ef2 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa038880f mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa38014cc mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb34f7ada mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb5bf880 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb794945 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd5444f9 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd5471fc mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc2b37943 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5949600 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc64395ed mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc94fedac mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd62a897 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcfdb9d6c mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xefd1c970 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf42de6e6 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf89cc693 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa5f4534 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa6f1581 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc10a9e8 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x922c6ae5 mei_me_irq_quick_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xb99a6270 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xcb430034 mei_me_get_cfg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x421b9e26 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 0x91401317 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc3503d7f st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x10168f82 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4a3fc47b uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd87fc7fe uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x01ac22cd vmci_qpair_enquev +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 0x6099a7f2 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xdf7a641a vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x037e4db3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x04a48a55 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11c577b8 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12bb4331 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fdfe636 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x209a307f sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fade853 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30c3c3dd sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x358dccd9 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47043f4b sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x512915c4 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fcc643a sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6bb45e06 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x72095a1e sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x730a86fb sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76c097ee sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77f6f838 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7fc3fc28 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8460372f sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x878c03b7 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93233a85 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98d30ee8 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d066beb sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa06e3354 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa48a6ae0 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa67b2466 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa5a5292 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae12e384 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb274de17 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb278d363 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb298ec3f sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4702fad sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8eccbc2 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf4408d3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd46a90b4 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2d20a69 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2ed1a60 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeaca883c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9285620 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfadb5fb1 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe8a3031 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe98ffba sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2766c4e2 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ef38b5d sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x45e30f25 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x84757296 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xafc57c62 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc18c6b98 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc6dfb118 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xec56fe5b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xede7b9d7 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11c88940 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x21e2df9a most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x274dbb7e most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4d72f575 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4dc8b0fb most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c097055 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7d24cf8b most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7db4676b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1d0cf63 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa6b0bbca channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbabe6bb4 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc2a7267b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcea54c3a most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfb67ef72 most_deregister_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2499d180 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd987f416 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe6aed1fe cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x35eaa964 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb8412d32 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc61366e2 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x57d40065 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3f7bbcc7 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8efff581 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x99b83603 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb69329ad hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf1fa7274 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09ee51ab mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0baa6af0 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e1a7c57 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1161aa6f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x160396b4 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ac8d789 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f0f67a1 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25f30e28 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x264b478c mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2802d227 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e21cc51 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x315394ed __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34c9557d mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x360f62a9 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x426e6753 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44d186a7 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45852133 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48df0dd8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55d99287 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ae7bca6 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d42d2ef mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e578ea8 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5eb9fad0 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67a52480 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b369168 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c9abf60 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71e075f1 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x721ffe05 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a47b303 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b93da95 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e5299a0 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x858329af mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x882885c6 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b3ce616 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c40ecb3 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e39f6de mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92564538 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98f052d1 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac55ccc3 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaeac3818 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb23939b0 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7e2d869 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc784f136 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd7b0073 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2d8574c mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5bb9ad8 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd61721fe mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7cf1b00 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7f3053d mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ed6aa3 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb8f8358 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf77d3d9b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfab61063 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x08674f58 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa47067d5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbd2184cf mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd03243fe register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xef01f6bb deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x06ea3e92 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e25d9a4 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e4677a4 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1499f4d4 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x41972b84 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45806120 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4a16cba2 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x54446cc1 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5ad7ddfa nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b6c57d4 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7a807223 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8aec47f2 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8b535b85 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8fe0d823 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9fea6078 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa05d6776 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa429f8fe nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb9d106d8 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2ab6b78 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc46a537c nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc60b53f5 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc901602b nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5a96ee3 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf6d8d637 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf6fdc206 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xff078ec8 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x29683b78 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa99c27a2 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x89590447 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0511ea2b nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x097549c7 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x144729c4 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27eadd48 nand_read_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 0x48c25023 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x50b97005 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x512d5012 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 0x5666d41a nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x58feaa17 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x637866b8 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x65947d32 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7344aa1c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x779941b1 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84992d6e nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8807464f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x90248bb4 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x930e6439 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9d4506a8 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7188826 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba5504df nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcea07dc2 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd19f88e2 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 0xdb68060b nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe3eacaf6 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xc7d91f9b sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x94adbf6d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc569cee0 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d89c94c ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1af4815b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39fae057 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x409c0e26 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x477bd0ed ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4b21fb18 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x520dc77c ubi_leb_read_sg +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 0x8939b572 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa38a575e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3b82ef3 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc52a9eb6 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3f69f63 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf812e311 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe4e2e77 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x07c1ddaf mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x241a9fdd devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2a7f4fd7 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2fe7ec41 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x517614c1 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x59027e72 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5df3c1d8 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x66e85c4b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6f54beca mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b3c21d9 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9b37ae47 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb12775c4 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc0df9bd6 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf0420845 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9af2219e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc273816e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f7a730a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1e7ba2e3 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x569f7740 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7bf16ac5 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa5e19a94 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe990a76f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x362b98cb register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7d108668 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe157a61c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeec4ddf5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x049c06db can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07371d5b register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09b6025c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x172ef658 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x374e3349 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x40b58a2a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4767cdcc safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4db80529 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6416f413 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x682931c0 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b645339 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x710296c8 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72307389 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7603af76 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x76820a86 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82c831a4 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88182cb0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91668dbd alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9784b855 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8f92749 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb290319e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2dcc911 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3787450 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb498ec4d can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xca6eea7e can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd81d1530 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd92972b5 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea7580bb can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb11a4c8 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x491222e0 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5a4aba33 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x77b1e762 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7c860a6b m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7f707264 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x84f0142b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcf22599e m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf0e94217 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9ab5e6ff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xddc69072 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe5907f8d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8cc4a1d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xdf11fa1a lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0e03b1e5 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x198817bc ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2696c210 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28e381ff ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2ae472c0 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2b54a01d ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33254cf0 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e45a347 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4d2781b5 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4e30b5e1 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50cc885c ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x63d68318 ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67ed4734 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6840635a ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x722b58e8 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac1e4dec ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xae512032 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb0689330 ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5fdeb25 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc4ed175 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc85345c ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc2f0e7fd ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xca626129 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe11103b9 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe9c2ad1f ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xc0b59ca8 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1207df77 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x28c1b887 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x31780b56 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x46169987 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x55a4ce24 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5cbd51aa rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6b14247c rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6fa98417 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8a257e55 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcd305493 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe5781976 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfebec7e7 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x178ad334 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x22be9e7f fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x330d552c fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x48293dff fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x54d241c9 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x74e11586 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x91ea988c fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xae389a0a fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc18acb20 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc979fd51 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdb39d661 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x3bf2705b i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x82d7e789 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1de784fc ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1e5f5109 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6d760a0d ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9c1b1c6a ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xaf953548 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x024725cc mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05c7e36d mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0619e5cb mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2154fb mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b9682a8 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0ba02f mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f1e0dc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14553b3b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b59aeb mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1823c4e7 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x190602e4 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1a99b6 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3030f1 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8cc033 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eda1cb1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4efc83 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24c18dc0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260d101d mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26e7f2bc mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28177c13 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3218a7 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a473910 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad3c6bc mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b906d52 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bca9de6 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a85c0d __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f310c7 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3402b1d8 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34e352fc mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f220a7 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a7fb2f1 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc628d1 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1478a7 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e4065e mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41a1e07e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ff95f0 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4421eba5 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44db7d15 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4736d9c6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4923cea9 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ec16bbe mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ef6ca5c mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fc3a584 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51924500 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51cc091f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5318fe64 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b27e265 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5da36142 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63e6eb1f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c08fac mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689a3248 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x692db92c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a8d959a mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fac6c24 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74058750 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77d39de6 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac5d376 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2cfbd0 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81064106 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ce77f2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86dd4fb6 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881c53db mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882da679 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91dd3d48 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954adbb5 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956e2311 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956f2e53 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x958275fe mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9682aadd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985072b8 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x999bd488 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae5cb6b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba30d24 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc25b46 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9df55c65 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e4d3c26 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f935872 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0516c35 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa34f991f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa661e3a3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa917228 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad81d362 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e727dd mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3975bc8 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e05f5b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb934fd3f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc274b5d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc26057 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe64798e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe3e9c2 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a142c4 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61a3e6d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc648b180 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e0d972 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb439b31 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf14ef30 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf51f482 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1d60c84 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd81488ed mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8c483ce mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcfa0c0f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd57d435 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf4ceb82 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1bb5c6f mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2dd1220 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31e4630 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5675e53 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6b32e47 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea0e8caa mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbccab8 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecb348aa mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef663341 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32247af mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7702418 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78a6112 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf919a861 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9af07bb mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa473fa6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc5a9e32 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc7fd23 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeb8d51e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x000be847 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015d579b mlx5_query_hca_vport_gid +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 0x0ae915cf mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f031de1 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x125c3eae mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15380e41 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15f76d16 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d64945 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e504b8c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e719cd4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f35c2f0 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d0ee5c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d2083d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a80fcd1 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d9c13d2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37282806 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39694289 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d02b164 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4044aac1 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a3a6db mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411c5dad mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4145f7ef mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462b2e05 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5df8a3 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8d2db0 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538255b6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538a3902 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56a51084 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595a254e mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69df5d48 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d6378f8 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c212e9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c931e39 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa5be7a mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8363007a mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8588d5e4 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b5ec1d1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9322646f mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939f4e48 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x954021bf mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a34156 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x998f096c mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa122d362 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa639bb24 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e978c2 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb75e9671 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7adbe85 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9344d00 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba14c3b3 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbfe6873 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd13dc5c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4a64db8 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc601dd54 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc62dc56a mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac7ae08 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae4c451 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ae2100 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd17cfd21 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32dd5b0 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda5a398a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbdbd18c mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfcd8b44 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80c3b0e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed71ca49 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee2d383d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4d6f6f7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf73bb567 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5f09a08f ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x71cf7ef6 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb99882da ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf1ac8f0c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6ba878fc 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 0x090f52fe ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09f44ea3 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ac78ccc ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c3c9d80 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x122409c0 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25656177 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3986e2c0 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39de25a8 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f25f9b8 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f824d4b ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50671cd5 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dfd63d7 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fa073d0 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81200553 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92a1d474 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x963e4225 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eab0742 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1238d6d ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7f18293 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3cf2bbd __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5c53674 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdbf3f96 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcde92911 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbdacdc6 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5b910db ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe61c1b5a ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedeb8d42 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefaffbcd ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6f400b9 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfea41a8a ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0460f7a6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1ae7dd0c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2d8db2a3 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x601e9207 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7488b706 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x88219458 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-platform 0x08271f91 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3918f521 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x963d6d84 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbba078eb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc5d6fc0e stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x007ec967 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x25614443 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7766fde0 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd52539ba w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xf194bf14 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6a268d81 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaffc131c ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xba036d70 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcec74959 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xed76d7f2 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xde49030f macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x29f8fa54 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2b0c2fa8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcfcb136a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf52006cc macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x8186e17d mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x62a30529 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe88dd55f net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x064ff9e9 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x23feefdc xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x36e280d6 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x82bce66d xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc69d2d93 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcb794255 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0369b91b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0862381a __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x145a72fe bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b2a501e bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25546513 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e9d3023 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f6b4ad7 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33314dbc bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44165c1a bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x471ed6b3 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4efc5478 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55eda300 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d87b5c9 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76887d7a bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x821a3546 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b6f9bf2 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaca51710 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1a8d92f bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbdd6ed4 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfed7f14 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2693d41 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8bedbc1 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc933d260 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb6bacef bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd549bfc1 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7662da9 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1b4262d bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6a3b621 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe96fa925 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebd84867 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf96b26c7 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbd07d89 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd13c84e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd28675e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0ddb5f76 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +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 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x35892517 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x49acf7cb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fe483e2 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xa8fc45ee phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb3a0f870 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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xee41ab19 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xeffb4a7a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3d08410 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0c948d85 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x3330ec46 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x74629fb5 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7f07331e tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8bac2c06 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x8f1e99f6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x9540a25d tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x9db2a870 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc07a64c5 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4912b96e usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6d6a77f5 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x86f0b772 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8dddda29 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf620401 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc0da4505 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcc01daeb usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x067a6baf cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x17d11c05 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25cd7ebc cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x30a5f27e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x424e8019 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c54bcbe cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x822332be cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8486e31c cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9a705483 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf56aa2c0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfd69516a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x97b971f6 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f584f60 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x55eaad52 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x948f8410 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbe0f0909 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe3b8cae5 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf40aa845 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x002d6364 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08a31a5f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c1556c5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21243c81 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2614be29 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36ef2e9c usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38fdb08a usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b2913a5 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41aae5b6 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4285d547 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44f45cfe usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4697ee81 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dda5d80 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dd150af usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dfe7379 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87bf8a65 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x880b2763 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89372a8f usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f70074c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92bf3fdf usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d9176e1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e1bfde5 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5c2ccbe usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad13d006 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad8ea6d5 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc64079a8 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd08002f3 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc0ec9a3 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0574de4 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe222a8db usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c9ce92 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe91504ff usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec822601 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf72f9d50 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6ab0b783 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa82eafd1 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc12a642c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xeac61bbb vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x749690b3 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08bba2ed il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b9bc82c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33d75fa3 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6aa5ae7f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8034e5b il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x02f1d55a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0d169b0f p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0fa416d1 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2448d0b6 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4360bf9d p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x489fa854 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5f749df2 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb7b4d27c p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xde4f6188 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0b7deb9b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0bd58b1d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c19aee9 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2899dade lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3354896a lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c4a1ecf lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56816488 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70777363 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8d9b08f6 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa76867e1 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb09db6cd lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf08ed4a lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe31c9a4a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe340e41d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xed99b66f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfbbcdab4 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x07a687a4 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x500376c8 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63c4138e lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb1e089b6 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe50e8f98 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf77a467f lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf955efde lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf9ee9f2b lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x117c7ba6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c894984 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x484e5769 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4db28d1f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56982ad2 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d1a0e1e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8bc4822b mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93d9ed14 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9a2f8b08 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9aee188d mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa263dd63 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4badd81 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6367f66 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa760de0 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb33add28 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6253bab mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb9d12af mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc75e86ae mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdb60ff6f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe399e720 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe49ad697 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5dac154 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1c46ec2 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3d7a2c4 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01adaec8 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0268c2c7 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d54e74f mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f3aaff3 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12ec0675 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x149fa7bb mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14ec1007 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15cb3772 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1649c61f mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c5237ca mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e9b00b2 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2490a794 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2490c687 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25980414 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27d63676 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a200779 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a89f5c0 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ef2ab04 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30e72a0c mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30f748a8 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3743c60c mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d620037 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40de74fc mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40fad8c6 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44822781 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x524f952f mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5459c3f9 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55c48896 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x577d392a mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58ec52e9 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59b260a1 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60069c0e __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60781152 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6414b3d2 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x648e128e mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66dad794 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x684cccc3 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x699cc512 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69cf63b0 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b1b26cf mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c8b5452 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d61b9e8 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d884074 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e88b61c mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73686135 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c5eb3ae mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cd7f00f mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fa9a187 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81893f98 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x899b0b2a mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89c92fcc mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8eb7572b mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x903a7e3b mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9474f689 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95535e93 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x977fdb68 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b36a248 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2db9c12 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3722a8d mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c7b782 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb17627cd mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb34d3b7b mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb75c69e9 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9ccc4ee mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbac0697f __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdee91dc mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf9345d8 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4b6397a mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca59d5ad mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc1ab994 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd62a310d mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8a3084f mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9d4fe46 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbd703a6 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc7bb0b3 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfa4decd __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5285ca1 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe99c9541 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeba69dc6 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef87954c mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3912c16 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb747af2 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdc24ea3 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00cb7ab9 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x01a3074e mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0bc5adad mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e6981b8 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f09723f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10332a43 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x169c977f mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c0ddf27 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cad1dd8 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d82c0a5 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2813069d mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29203226 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a189104 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b4512bd mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b4fbec4 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46017386 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494ae711 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c4c0931 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fc2a4ec mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5522abc0 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5593f753 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5821b024 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5828c121 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60334f16 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63e8d255 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6cd97238 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f8402b5 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78d2450a mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7de8df08 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e04706c mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84ebe6c5 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86b08b01 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86fad5fe mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x885a9c0a mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f621144 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x985fdaf6 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa16e9449 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7f39b3b mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa896d478 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadeb79e7 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf1083a2 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5126102 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcb15c3b mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd7d4cc7 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbeae6b69 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9eb56f9 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcab08d32 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceafea41 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd16f1dbc mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9136335 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9699a3b mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4e5c8fb mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8c7b185 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea6d6fe0 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebf117de mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6a26e70 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa3139b mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa78706 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc749e06 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x034b0db8 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07fee3db mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x263d5551 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2f15f63e mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x36ffba98 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3b5f0181 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x427b1c42 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4e7c7d78 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5be64430 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x62ef5c55 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c47c803 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x84dac58c mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x92e7e059 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbe13a66b mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcd707ac3 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe0cd6933 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03798331 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x14b199d5 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x221d2df3 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3b64c3d4 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x571b249c ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6a456c9d mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70935cd0 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x85dd0ec0 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8f70bb9d ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x99de441f mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9db24c6a mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa16e9424 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc8049d17 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe49ace0a mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05ec275f mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f40a552 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x10cbe4b6 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x118a5f30 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16b9333c mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b9f3ec8 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ce0d05f mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1fcf79d5 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2965d823 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ccf102e __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e0da368 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x65f0ce15 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b53edd2 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e51e474 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b2fe1e2 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c5217d2 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ce455bf mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91e1000e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa1f5626f mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa721396b mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb328a04b mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba18b6af mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd8c5db3 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf59201a mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xddea8801 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe233fb9f mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8dcc982 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfaf7ebdd mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1816cc7b mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x09f4aaea mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x62898a2b mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc9a18c67 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xddb1bb83 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0d492a61 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x12ccd44e mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4e2a0330 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7ab16035 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x83c0d990 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbdfa10b2 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc35993f8 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00055b26 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x021a9a29 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03335c47 mt76x02_reconfig_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 0x06045d51 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0785cd17 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07bf6a15 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x093017cc mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0acd3656 mt76x02_remove_interface +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 0x0f1691d3 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10413449 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14a7e4e5 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ca00ee7 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e694178 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21732a0a mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e2a42e8 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2fa9bc0c mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33ab26bf mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34f62151 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x368a34fa mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x457845f3 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c96cce2 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x516ef6c8 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56d09c5d mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c9db077 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d4e9d0b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6609beb3 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69645d50 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69f02832 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d2adc21 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6dbd0a1f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70577fa7 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75816334 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75f965b1 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x764393a3 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81694ab5 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8adf807a mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8efb24d2 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92202e08 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93834a4b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cf494ab mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4ba8dcd mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa97abd41 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafeed534 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb32d76cf mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb896b667 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf731661 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc25ce65e mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc35aa69 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd31cfe2 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1a04c1a mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd97b9f35 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdba1f270 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdde176f9 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde14dbb0 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde2c9c17 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdec4d196 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3e8acb0 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe74be50c mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9319312 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb8047de mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec785cb5 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf07ba725 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0e47c6e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf15a61e9 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c5b49e mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf633aa3b mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4c4818f3 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5e5de1f2 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7badf923 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7ffe932c mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc593a171 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd2535628 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe7c2981f mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf8d73a73 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f6b890a mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11a28d35 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x141d1401 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4dbe92ed mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5445382c mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54a97fe3 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58b3764d mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5ff3b521 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6046532d mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x84da623c mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x91d7fd10 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x994e3e96 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9c41a042 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8fa346f mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce5972ad mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd3ff825a mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe324da4d mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe496dd9a mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xebb85e23 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf0a38890 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0621c224 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x169a5ded mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x16b18606 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2ae1ca5e mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x31be0709 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x38d5e6f2 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3dca0e42 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x42860e3c mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62697af9 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6573ba81 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x673d3697 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x72e43250 mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b9aa984 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c82d23f mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x852b5644 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8a6da44a mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f7bde62 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc1487117 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc5be506a mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc7e8e5fe mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe4941038 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xebf2717a mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf4ccdc71 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfd13e819 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xffa32e2c mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x11e3c2c4 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3ba2605a wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4728f931 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6ae176b0 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb7b45930 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe1dfa289 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfd51ea37 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x13238faf qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1c3f3157 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 0x3c40ffdb qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6272ad2e qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x63729ec8 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x770d5de0 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03d820a7 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0590d10f rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1495b0a0 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16f1b35d rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bad2c95 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x288914c1 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2df841e7 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x373a512a rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c2b86dd rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40b7deb6 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4188440c rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f06c358 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51110a0b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60e05a12 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62cf7b88 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x637cbf40 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68ab4aec rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bc9ad55 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bce68eb rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7359f427 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73a8ac6b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7563bc98 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b3dbc2b rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89bf0121 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9054c4fe rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5cf5888 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa781dce4 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8a90af9 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb12559fd rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1448593 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3002a91 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb527fe31 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb875995b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1bfdcaa rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1f876ae rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb5ee1b1 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd828a48 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf785bb4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe49cc7af rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe981bf02 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed1b3e3e rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef51ee5b rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa307864 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb1feb30 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x00385f75 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e340a76 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f827301 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 0x3b4f36a4 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 0x52d76dbd rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x73206d83 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83c2c5a2 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87052c4d rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x94967bae rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99128292 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 0xa23fa056 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa6b02143 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdb5b2c77 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe64b36e3 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe9329d2b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaf76729 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0122fba1 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x017ebdce rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e378ca5 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x152f8337 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ad5c30a rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20c5c0e8 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22aa547d rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24602df2 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2662cabc rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c1e7708 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b53cc61 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e333b8d rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43237e2c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44643b4f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5326ca2e rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53f05cde rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x607521fd rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e330114 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e826958 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79a8f968 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b6de416 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d03c74f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x801e3002 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8021d4f3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8151f73d rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9118142b rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x923bc3c6 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93ca5474 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94669d66 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d3e0ef6 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa77bc267 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa96d966e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae9b62a1 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8bebc63 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba6ba22f rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbad55fc9 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2abe239 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2b65864 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf32ee7e rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd75ad991 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2ac4218 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea479e8a rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf06335b0 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf88c3c58 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa55ae6b rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbc01043 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc61301d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4517132b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x51b4d382 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8f996628 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8fbc8f69 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbef90954 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x020dc3cc rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x2b92222a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe0f2a716 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1dbf298f rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x295f0894 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59bd637a rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5ccfcd33 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x745573e7 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8d5ceb9d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x996e341b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2bbcaea rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb7f62b4a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe172979 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbec0d793 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc29b82bb rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd215b9cc rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe6bebf30 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xedd9060b rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf9be8fca rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c99db61 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76bc9c2a rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83d12ae4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca2bc198 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20cb952f rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21a17959 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2233fc1f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x399c349e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f9315d5 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53666910 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62956ddb rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74b8f438 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7af00a83 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89ef9741 rtl8723_phy_init_bb_rf_reg_def +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 0x8e0f7f0d rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92ee7a51 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a7e7c7b rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3954167 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3ee92ea rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1d7099a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6857edd rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfac2b50 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6789003 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2afd0b5 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5157011 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed32fbe4 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf275f0be rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6d6e0d2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe6cec1a rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x109fa401 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14477819 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16ca63a8 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18affbf0 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 0x294d6f1e rtl_init_rx_config +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 0x33376e5d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3414c652 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x417cb024 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48965161 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e5410f0 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x668fbc09 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x693d9165 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8068eebd rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81625a12 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dac5f5a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9798c06f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f006525 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2073584 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaddc64d6 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1f976fe rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6e836f7 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3ea0284 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2af94ba rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7338b3a rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf91d8b29 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0512d2e2 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x848330e8 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x852302cd rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc7b44885 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe8fe1074 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x19d9664d cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9e617080 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd84e989d cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdf146398 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x09932d3d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x171b4f60 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcfb168ed wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0808ec94 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c3d1aef wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ddb8834 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1059f449 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17ee8306 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1efe8282 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f511c7f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f5b2c69 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2baff3f7 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f1d01ce wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34e5e9d0 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x397f944d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3aea6a6b wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c68298b wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3dc2ccf0 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x429439c9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x484e2e46 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x495fbfdb wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f412687 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5158080e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eb2c131 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7432189e wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7814c1ab wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fb9b279 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81ef20b3 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85cca740 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88baf902 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d2625aa wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92f18472 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aee0621 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa15baf18 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1dd0e18 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb23fdc49 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5e2ad57 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7954d31 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8c71b55 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb7e0974 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbd6c218 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1e28fb0 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee76b1c7 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf643ea4e wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf741e7ed wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb105411 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x0dca6777 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x42a3d5d1 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x51eb9fce mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x193c8317 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc2bfb469 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd3c0701e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfaffb21f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x321412c3 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3d0fd94b pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x549fbd2e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5a2c5f93 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x820e1320 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb4bbf1de pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb5469205 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 0x44c8c5cd st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4fa3ddf6 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x899b9460 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x94fd3abd st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b3141e4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba7797cf st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdf2a070c st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf3d9bfd1 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9d10dc83 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9fc98a20 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf7a62e71 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 0x2db7bfbe ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbf1e25ac 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 0xc8879325 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x84495bdf async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe397abc1 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x031593a5 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d3afc19 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d3b857a nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e15020b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ed44584 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21068082 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27da345c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d8d5bda nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f4a8b2f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3013f3b4 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3225e29e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39e85534 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49197e19 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49d3847a nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d203b0b nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x530c6970 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f41384e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x643d76fe nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b927401 nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c011887 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75fab9be nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a58c094 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ad15934 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85df63cc nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x944b50fd nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a740a90 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b14687e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0108b1b nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0e9aa4b nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa17c0277 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa55ed5ec nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaba9688f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb05f9925 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3c28d5c nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6bde13b nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba5c6203 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc5008dd nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9f3cb8b nvme_complete_batch_req +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 0xdb98ac7b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1673b64 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3c40ea8 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb0b0bc8 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeba52615 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf042465e nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf949acc5 nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9629692 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14db9f23 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x18b319c1 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x82bd8abf nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x885bc00d nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x99d00bb7 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9b3e24ff nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xae2e7671 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc8f325d8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd5854279 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xedb8a468 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x58e312f7 nvme_fc_io_getuuid +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 0xd749713f nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x066ade0a nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1decae3c nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x29275ef4 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x454c2437 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a68b21a nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7da663a1 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9f33821c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdcf4459e nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5799104 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe628e352 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfc35cf1f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x144bf2dd 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/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 0x750f12b3 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x84fef8c0 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb4855c2f mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd41f1d28 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x0556eaab cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x26c2b40f 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 0xcc16fe11 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0732902b ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c5ac2d1 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12218bf2 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x135c9715 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13add793 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x190c96d6 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2055d784 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x318b84f2 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31f079b8 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x421a5e8c ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42a280a3 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4529e0fd ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x48d46c42 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56022f47 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x582d0943 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6bfb0767 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x71493c1c ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74d994a0 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x87f11279 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x987577b2 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f3d5e3b ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa5e767cd ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6c0c698 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8ce5415 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbef8f61d ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1f8f627 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 0xc9cf8d83 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xca5ebf62 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd0b21e3a ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc0e04e3 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfff3e288 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 0x495c97c1 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/amd_hsmp 0xdfd927ba hsmp_send_message +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x6aa9cf0f asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa6ac23e6 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xd9146b52 dcdbas_smi_free +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xf1a06655 dcdbas_smi_alloc +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc0405dfc dell_smbios_register_device +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 0xd702948c dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xefc33120 dell_smbios_call_filter +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 0x8a00747b 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 0x377193ce intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x4ca9c171 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x8ca88bd0 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0912662c isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x974ebed7 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x062941d4 wmidev_block_query +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 0x35e882b5 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3db629ed set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x70f656d4 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb52a72c7 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb96454a4 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x44aa15db pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x649950f4 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x869a214b pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x689dc56d rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xb6a9d09b rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xb9f38a87 rapl_add_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1cb03143 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4eb8468e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x51d7bb9b mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2fa223e4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4fcb69fb wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x69ece973 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94c7fd0e wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc46345a2 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe1103be3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa3cbd556 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x9123f9f0 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x046b8403 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x097998bc cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16365d83 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cbae870 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e003b6d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e53f835 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23097ff9 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c943454 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30f39dd3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a792c39 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c7dc0a1 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50ce8fd8 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x553bd87d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58ffdbdd cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x660e8ed0 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67c3828f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75ac1ed4 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77ddfe94 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b504d66 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x815677a9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83f3a0e3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87d010c2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8dd330ff cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ee520ad cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9415e3da cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e6dae25 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa16e90d2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa8ecf1f cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaec131c1 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1f656e3 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1af162c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1eaed54 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5e10885 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0428871 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1f0de08 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d0f286 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf08815e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b13471 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2ab1a3b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe81d662f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0994ca7 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7f564a2 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa6fb553 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb38d05a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0364b429 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x07a3bd8e fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0cab17d1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ea057ca fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14497b9f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x240c763d fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x278491fb fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5942e622 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x68a325f4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6db47121 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82b2ac7f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a2939c1 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e52e18e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90d7071e fcoe_get_paged_crc_eof +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 0xf0d8a971 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3e0f82f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6378e34e fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x75a614a4 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3ead49c7 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5f81f622 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa24e6f6d iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa3bdf937 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0c51e52 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefa746d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf8035f2d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x09279ed6 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02dae90a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x047e1ee7 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x094ac611 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b4b8d00 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13196bfb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x142ee36a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16077a21 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x283c1df1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2acbd0bd iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ad405bc iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31ad121c iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33417689 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b50e8f5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f0d0938 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5136b852 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61632891 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x694b40b9 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70830af1 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x741c9c96 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7740209c iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b23a746 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x811514ca iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x813b7d3b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x879d8188 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bb3f9dc iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x982e5be7 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9993163b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99d36799 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e1c82b7 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab4dcff9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb140dd00 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5fe4e5b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf52c1fd iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3541104 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbe834ba iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbf6ea23 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0bc665b iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3c9fdca iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd8555c8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde0f2408 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde718a94 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe291a805 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4cd7c12 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee83ae67 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf124cc70 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3e9b220 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf54c0161 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcd17762 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04b9ace5 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d40a5e2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ed7e77d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3033a1df iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fc124fb iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4636488d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53caedee iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5976c603 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6af77a99 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83921714 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9154eaa5 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb824b4e7 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd20fc9d1 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd21632be iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd91b460e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd9c27278 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf721473f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08beb7dd sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x111f8675 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x139bab8c sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18a6d292 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1fc485af sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25605519 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30bb78cd sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32631c70 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37462a3d sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48ec57fd sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c0a31b3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e2d19ef sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53213292 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b913fa9 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5eddba7e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62248e9b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ee81e51 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ef1b4af sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b346679 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bbda26a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e7bca40 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa51881b7 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6dd69ac sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaaf64082 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf73dad5 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaff89449 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb060bec2 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb13f5af5 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc3df122 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd13cb00c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdacd92a0 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe58de6a9 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee2bb6fd sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee5371a3 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf35007fd sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbb782a7 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc4b5a4e sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xc26daab1 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07ef4c1c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b443d86 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bb3cbf1 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e2e6904 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x117912c3 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b6e6daa iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cea8b83 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x224e4b05 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22d1a84a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2309b16c iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x239cf869 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x264fcd14 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27cf4e27 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28875624 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33b5008b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x395b3a35 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39ceff9e iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e7d15a5 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40babbde iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40be39fe iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e95afd8 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x530450af iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5470a81a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56e3a100 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e8fd45b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64c4e51f __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6790eae7 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 0x6dcd85c2 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7670f104 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x774a9861 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ab83df6 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e08b8e8 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81faa0c3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83b727bb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87b6106a __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cef8c33 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e36984a iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90e868fd iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97485bce __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bd4a244 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad54fb5e iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae655426 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1bfca9c iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc26d6b9 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca968311 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcae056c6 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb0463fb __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce79a530 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd16017b6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4d59e76 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd73c5bce iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0abb721 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe208aea5 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6018138 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe64c8e81 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf81fbe1a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8f275b1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffc146ce __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x154bdd67 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd1ba82e9 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdd0abd8a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xec2e54b8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x77637617 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 0x2210311f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x30703426 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x507f6d76 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5dc70423 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb61b4bed srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdf7d5174 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1250c338 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2e28c6b6 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x68e608d5 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a2591e5 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb021834d siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfce1110f siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x108331a0 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12aaf321 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x139cafba slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x149a091a slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1aee7975 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24a876c0 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2537866c of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x25df2d1f slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27874343 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e23c070 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e7b9b16 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30099cf0 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30493541 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x488094bd slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54d0aa93 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56fa4118 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x789e27bf slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x809e8705 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x823c7b81 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x94f82d10 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7e2ab51 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb277fe58 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2836ec3 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea8085e9 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeecea8a4 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf9519051 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x356a8f0a sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x40d2ec1e __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x62a69a40 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x66b97743 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7e81c9e5 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1b225078 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1d9d94da spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x73cf1fb4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9abc3380 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbbf99cd9 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc3c798b0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0x98d7c215 intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x24471f92 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2d1e35e4 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x88f9e1a9 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0507a8c1 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0cb129c7 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13dd8f5d __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b24d78a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x236da25d spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32f0f497 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3eba8102 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4eebf28c spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x528538cd spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d1ff9bd spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d690bdf spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86e3e0ac spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b4e263d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e21059b spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa055197b spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb880efaf spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde5f50ef spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9314967 spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x81aedfbd ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x04ab5c20 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5a7f9fff fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5ba309c8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6ee1f9ed fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0eafe25d gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3539ed9f gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x35877c49 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x38b05f81 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4292a1be gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6878b118 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x69f20360 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x73047b92 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x99b3f5de gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa1f40a66 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc7235923 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xce32769f gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xedc94985 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01ac1906 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ca593ec gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x22773e4f gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2e286ff9 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8d9a3c7f gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x972d9012 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9c2a383d gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb15dab0c gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb282df8e gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc1d42e13 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8bb47b4 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd6ec54d6 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeca3bd22 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4b2376ba 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 0xdc4ed4ec gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x597f85a7 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xdca2a298 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x885c6769 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x98099820 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x05896d56 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x214e0395 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xcdd38a98 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xe4a30d53 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x2cfa1b2c atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5a9ae93c camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x709b5454 gmin_get_var_int +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 0xbd40ffa9 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xc52c1258 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdbbb9256 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdde22874 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xea243a34 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0384fe4b target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x47d84363 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd1da9c8d target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfa427f5d target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a61dfad tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0de9dd5b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0f4fe25f tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x19cc5f44 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a0088e8 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d963da0 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x22ec71fb tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x29bffe79 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x31a12ad3 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x456727a8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x523719ef tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a28ab6d tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7bc342b0 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8177b889 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85cb26d0 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b3d47c6 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f05a04d tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9f9f4d05 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa6839f4e tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaaceff6e tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc957c8b9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8ccad8e tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x8a24d7f5 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb3d37764 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xbe5c609c int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x36b0e48f proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x37450645 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5f04b50e proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x6473175a proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9bafcd13 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xf188eb09 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x6eca6839 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf7a1f393 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 0xc4d4f89a proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x2b97ba2f proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xa3d1cf05 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x07f9105c intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x146e6310 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x5f1acdac intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xba2443fc intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x00c0a05b tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e6fed39 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f2530e9 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f2eb98a tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ec805f1 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23bc3229 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2fc5c55d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34a892dd tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4754ab72 tb_ring_poll_complete +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 0x4f01a599 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5549a56f tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5af11fe2 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b6316c8 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7ac498ba __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x817fa670 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9054fefb tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a848471 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xada2e83b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6ad5177 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc19a2f68 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd5f03641 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda78c81c tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdad4d652 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf9247fec tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x023b72f2 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0772df03 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f86e897 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4cd25c05 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x542c092c ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x58a6a37a ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x699bf923 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a89ee5e __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c6ea4e8 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x846cff98 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92f26c06 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x95d1501a ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x96ad2471 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ab8f475 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ee7bbf2 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa873c336 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc6eb8270 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd8fd4a3a ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe0329c63 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf1069274 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf2edd391 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc977480 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff755c5c ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xcce0872e ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xdb3777a7 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0f58a8e2 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5f6f3839 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8ca5d3af uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa25cb2c __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0f465c2b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd92cd241 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x27807f36 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2913aca3 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x386a9f6a cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x60c6b9d4 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa2ec45e6 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xba9dd0b8 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe2802250 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xed24d1d3 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfc485cac cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0c929011 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3a48fc23 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6b469e64 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd75e645d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1f7d1774 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x32760bf8 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3a733e42 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6935e2d7 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7ea85813 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd5d002e3 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0980165d u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x137fee8c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4779253e u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4d6b7297 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4db472cb u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x508f2a15 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x564faeaf u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8d32f90b u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x93089564 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x962a9f16 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc6ed34e1 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd7f57c40 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdce61f36 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe1627ecd u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xec1d22df g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0aa526d0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21c554a9 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2284e125 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23fb0992 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x29da92a0 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37103138 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48390681 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x539d0759 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77409b11 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa2457248 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa26a6041 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa540e90e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcd5e57ca gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe46ff6a0 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7ee43c9 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd8392bf 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 0x45a7ea0b gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x83250b79 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb1f94876 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 0xc7dcb092 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x081191b7 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9372e273 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ecc5b94 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 0x22148b71 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x282f8b10 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x455b6bac fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b0cda9a fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4d6e41b4 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x55799d27 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64a1ce41 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 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x830b687f fsg_lun_close +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 0x93dd304d fsg_show_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 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 0xa6d26f4c 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 0xaca37456 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 0xc6e3b642 fsg_show_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 0xdbcf012e fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5116a9b fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec7ed655 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf096e59d 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_rndis 0x09ce56b4 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a0ab1ab rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26706bd6 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26cebf58 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a584c47 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33bb321f rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x455a79e6 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63725f56 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x70dbf03a rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73718f55 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73ab5440 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9fb2b0cf rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaeec8e90 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec693985 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xecb4179d rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00e9c419 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x068ecdcd usb_function_register +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 0x0cd20a3d usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11303f38 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29d0501f usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3294d78a usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x357ef2db usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3aa12d89 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f21fc33 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x429c94d2 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46de45a2 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47846ead usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cd90255 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57ae3823 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a88c5cf usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bff069a usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63bd1c50 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ce79222 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82d07554 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8502c670 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c600e43 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a2f34db usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5493244 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa58e9630 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2f4b27d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3aa9ff6 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf68e1c3 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcff862d3 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf364ffb2 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf998e4c4 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd69f771 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0731a2a5 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2047845b gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x444a56d1 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7b97cc6e udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8d4870a6 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb9ceb564 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe37ec995 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf3cd78bc init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf60c0b1b empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x030727f6 usb_gadget_vbus_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 0x15872cfb usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1dd99c06 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27cecd6c usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b855f08 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f2543d8 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x358459a1 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 0x4e950f72 usb_gadget_unmap_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 0x50a6fde7 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5ba20f4b usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5bcdc0a0 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 0x61a76084 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66447123 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b47ed8c usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x72043a08 usb_gadget_deactivate +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 0x93f27c3a usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x974d38b3 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9cf6c3aa usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa35937a7 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa58fe6e4 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa768be03 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaefadae2 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbab3d79d usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2f84e90 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf39c72c usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda65f5ff usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdbcd0cb5 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdf82e5fa usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfcd15158 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe73b2c73 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x20932afd ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfd5f45eb ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0c3552a0 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x150562c2 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20d9e32c usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x30e48790 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x681eddb9 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa65c475b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd1f93cd9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe095d67e usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe38cfc14 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 0x29cbbabb musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x52a05e64 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x60aab7ad musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x95d5ec38 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb2e27fc4 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/musb/musb_hdrc 0xf7f546e6 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x308dfbcb usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x759826a7 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7fc56562 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa8ade8b9 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe2cd5f89 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4649ad14 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x9a256445 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01ed9003 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1130003a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13a1c74e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16565b20 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18ca8496 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x336ea657 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35f63f99 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bc9f4cf usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d3405d4 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x536e6634 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x660d40e7 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fe92082 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8414fc46 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99cff41a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a86e500 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9abd92a2 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa27a130e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb688398b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb9391fc2 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd785f05f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2c485b43 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x432dbe60 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbd20fe07 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 0x6912a76f 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 0x03f64503 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0adfb45b typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e1fac20 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18e2a3ec typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x223df9b4 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2372c35a typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x280131bc typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a57fb0a typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ebfc299 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35aa8e58 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b29c0d4 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4acd7fec typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f85f070 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51761a58 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5386a35f typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x538ba760 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58e00b17 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x591f970f typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59c20eb3 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a66ec9d typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5db24a6f typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b5159bf typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d3dda2f typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6fc6b832 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x738c80f5 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7528c9c4 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79cefaee __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7bcc1bf6 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8af2fb2f typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b9f5288 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bc8403d typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e4da8df typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90a149e1 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9285e51a typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b742173 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e0291b7 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb05cd23b typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb07a0662 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb63bf24a typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbab11922 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb0f1a27 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0e5435d typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc13e3b6a typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc352b2f1 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc41e20a6 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc503de3e typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5598bab typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8a5c190 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf008d50 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9a3404f typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea049341 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeea4f58f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7a58c95 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfaa2580b typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfce2aa1e typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x120c5d68 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5f6db9e2 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x61fc41cd ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8f60ef65 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0e70b36 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdab5e3e1 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe25ec093 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeb207873 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfed195c8 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1888bd18 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21fe6fed usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2879a9dc usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bdff562 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6769a05c usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75428344 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8a4d4750 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96845908 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f1352c2 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fa24b28 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd63eacff dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe548e425 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf40d3aed usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x651e298e vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b575150 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x814fc2f5 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8de6dda8 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa147823d _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa2e97603 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa82c12a1 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb12f6aef vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcb970adc vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdc1117a8 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe1044180 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x080ce72a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x5ccd77ba mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05c0ab48 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bc6b71b vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cb53484 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d07c9c5 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18e89509 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a791169 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25246ac1 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25d83df7 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2af4eeb9 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c412382 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33338fa7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x367ea3fd vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3717c943 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cd99c5d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41230194 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47065226 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e19ef67 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5069b1c2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52337cae vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584efa3f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x655cf785 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d09f93e vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6eb15e4c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71d0afaf vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b2e3cdd vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c55e468 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85de9f22 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87f1fc09 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88d50cd5 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3d70c76 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab3f8fd2 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf06e13e vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4f3fce5 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbd5e365 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe3d7378 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd16308e5 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8c69102 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb0b6d9d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5ca49a7 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec4e79a8 vhost_dev_flush +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 0x8a7d8ee9 vhost_iotlb_init +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 0x40868430 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x468f3211 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4df3f75b ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e4b71d9 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e634f70 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcef0fda1 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd2426240 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x8343be71 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x03724124 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc79a5d19 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x905aa369 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc6034bbb sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 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 0xebf2b5a7 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x604d83b4 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63234d59 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x699b5847 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f0dd1ef w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8df8335b w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8fc00bcc w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa16388b8 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9ea6621 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcb59de0f w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5ab7ca9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfefab552 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x036b917a xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1eb649bf xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4415eed6 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x87a38c6c xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc58123cb xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xae2e4400 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xf7fbf32a xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3de28cd1 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf1c97a02 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf547fcc5 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x457d3f89 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x49c66fd4 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8300426f nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa9da303c nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe605bdd4 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf105a132 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfcfaab19 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008aafbe nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x036db262 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04127d22 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cf45b5 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e3d85d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0738bbc3 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07cc3c7c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0899038f __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c87d83c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x100bdc4a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x143f7140 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1507df2b nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15331834 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x178ec335 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ee22c0 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18aa39a3 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e4d8bc __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ab44864 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1de170fc nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e374d54 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d3e643 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d90086 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x210bb514 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x223cdc8e nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c1f532 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23624a5f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24326b4c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28bab71d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2996c67f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29df871e __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3310f3ed nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348183ec __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37051347 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38d4bae4 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f072e17 nfs_d_prune_case_insensitive_aliases +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 0x42ca8d94 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45417b8c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455ccbd4 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4637e57c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46d1df71 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x478e2713 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48356d94 nfs_clear_verifier_delegated +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 0x51b72db8 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x539cd789 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x551699f4 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5597dd3f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580159cb nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a68e3a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a0674b7 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d66c9ec nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d67904b nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f948966 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6069f57f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62c13d40 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62e0204f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6348f2f8 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64376dd9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6626e712 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c5b4b6d nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d19b9e2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e6a5703 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4f89a5 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f817a3d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fc57fb5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721b1da6 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73535330 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b1d903 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7736e6fd nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78968116 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b08b037 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fb3711c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e955d9 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d7f71c nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86292152 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877a7160 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887011d8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89aeacc4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac88bbf nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ccbe624 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e3bdbae nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x901d2171 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9107cc3b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9278a655 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92bb8e7c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d46336 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x947f1b8a nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x948810ff nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d9e3ae nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x997afc43 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ae9c5be nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cec9b4f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa00cd709 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0f1d416 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4e24c68 __traceiter_nfs_xdr_bad_filehandle +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 0xb12118d3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb30f52be nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3d3e254 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a0546d nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba4d3026 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaf0146b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe754d4e nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc007ea44 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc066eef1 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc27aca34 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc54906e9 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc55600fd nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56efeea nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6f64964 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8e66e60 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaf9a0ea nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcafa4229 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb8340c8 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf03650 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc1f2447 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc3fa9f6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce410b1c __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce611748 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02f551d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd19cd065 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd963d990 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcdd504c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeda533d nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdefd6d96 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0c9d7c nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe22f61f9 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55dce36 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1b67a8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae44548 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec651272 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedb83893 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcc412f nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee980763 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15c6ddc nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4923f56 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4a4c18f nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ad3e9b put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf732c083 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f5320a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92af43b nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb6a1257 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7e9f34 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee48f14 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff02e304 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7354b8aa nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x009c0099 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02be54f1 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x049eaf63 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04ae74ca __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x067d0321 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08e496ff nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1001497f __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1321efec pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1395eb4d pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1612eb79 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16f86d67 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17be99cb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18090ca2 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x189ead42 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c68b42d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x254cc46e __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26ca2cba nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cd3d771 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x333f8d12 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x383c87ea __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39b166ff __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b96c209 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d302b2a pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e45078b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x414a7701 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41ee0624 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42e1c357 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44bdfc2c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45b3a890 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x460cd930 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49f9da27 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d3531be nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x508f94ba __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5178f22a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x537c4c1e __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56cc8186 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5addfbba __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b36c08a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce3324e __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ea3ea91 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x603990bd pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x605f28a1 __SCK__tp_func_pnfs_mds_fallback_read_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 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3fc80 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f2bdd8 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a2a754e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c81e1af pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d55453b pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ee08632 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f5f751d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7224d5cb pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72b818cc __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a7f8a8 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7460a14d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x748499e8 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x767507c9 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76cc0a45 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785e949d nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c258dc3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c5aa40e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81242351 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85111d4f nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8634c33e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bfab6b4 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f8e46ee nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9007c758 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91741968 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93ca45cb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x967e31c5 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x984fc5a4 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99a38b6d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a230d81 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a7d6937 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bd77c82 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa01ae0b9 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa818c3e7 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaee9892 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabece530 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac664804 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadbe98a8 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1411268 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb23e8f96 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3592042 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3a30d5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb35f76a __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeba9d4f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b1e53c __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc62b4103 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc793ab6a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9776963 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca6b31b0 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf8f48cf pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd03c47e2 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6966582 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd86f2d6e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad78363 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0243dbc pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec3d00b3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec7aa3b2 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1e889b1 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf23f1830 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf44b45ac nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf456fd06 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf713cc5d pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7cde9d2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd071023 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x191c4dbe locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa641bc9d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc5393982 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x020c3409 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21156394 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x88db1312 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdfa1ec47 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x835a724f 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 0x575ac73b 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 0x82f3669c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa183a4eb o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa8055470 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 0xce5b87ed 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 0xedecf4f0 o2nm_node_get +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 0xf74d76c9 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0cdcd8f5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa210d578 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xabe807f9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb2dc5615 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc32e4e52 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd868f752 dlmunlock +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 0x2e979719 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x37de1cab 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 0x91e07559 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/ocfs2/ocfs2_stackglue 0xeaa20667 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x97e8b455 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa2addf16 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x0c846b33 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd557549e 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/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/notifier-error-inject 0x4a5e61da notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd7bdafcd notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x17d0b969 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x66a47157 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0f21bf16 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2f8be651 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5c27ce54 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x906046a0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xce4e506d garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe5c63a38 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x047356d0 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3873a60e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x63710db9 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x7c143ef9 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb9a7dcd7 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf58e4803 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x5d6c06f8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xb8197ac0 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5c62b80c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x65d45aac 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 0x5c0df688 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 0x7ef4f1e7 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80a300cf l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x90a9ee92 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb552bb52 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6863514 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6cb5c23 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc85356e4 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd2362e18 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe3149c6f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xa9c50428 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12eadebb br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x197e500b br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1dbf3aae br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e45acc5 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x27670d05 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x33f6615b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ef23c6d br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4629bc4e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55319cee br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x586ef999 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x638f2b3b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75e5afbe nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7852127c br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b0d0bd2 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2afaf46 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb95ea276 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9bde11a br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc7c0cea br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcc0daa6 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf5b4fa2 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe28563d7 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe567a675 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec78574f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2b2cec2 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd53a2e4 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/core/failover 0x8ec4f55a failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9054ad6a failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xe8529d5a failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a98e814 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d3a9d3d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x115840a3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d71a92b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d751369 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x291ba4b0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ad00619 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c2007b9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d5c997a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6cbfbf dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4673b423 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a81b665 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53b55280 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5471bcf8 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e3415d0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fa0379b dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65628094 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7095d9be dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x70a89b34 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7377688a dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7724f871 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x791a2edd 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 0x88125b19 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c937472 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a91b9cd dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9be355a6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb45353f3 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd241aa8b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd24cc69d dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd90441d4 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9b0f460 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x02a3507c dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x04d6af59 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x21291e2b dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2edd8554 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd72b49e6 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe8eeb59a dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0dbbe09e dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fcea2db dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1630a3ae dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26b86ea8 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2bb473e5 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2f1aac40 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fb0e85c dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40706ba5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40dd8e08 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x428845f7 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x475bb67d dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48eca1e3 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a57894f dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f2825a6 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5042f841 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61771e90 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c4b954f dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d4f059b dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82fd4146 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94d74fcf dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa59f1586 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc6fa54e dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbdc9ec44 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe6352ce dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb890840 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd02d922d dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe058f9e9 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4477b94 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf576fd28 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf95fc0fc dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xffa946b0 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4856ac28 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5aa4adc4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xad8d9151 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc688cc01 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x5229a7d8 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe0259f63 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x54bebe6f esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfe9a5e6a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xffc8fb45 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x36e0ecb3 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3db62fb7 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x03f5783f inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f0e659a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8672b943 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xadb6f1b8 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd07f8763 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe1d6c7df inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe39d9d00 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8fd715e inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xffd456a4 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x396e7c4c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bcf4119 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2021c17b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x424f5862 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47f951b1 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cc4ef12 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x535da52b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56cded49 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63b6746b ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6699ab3b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4379b57 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf5eb455 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb13fc5db ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4fa5468 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd976bdd0 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf668b7c1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf948042b ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf997f4b0 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf15189e2 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6ea259c8 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x86b1e745 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb6e922bb nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5cba7bef nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5e0a99d9 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75a3a050 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x81c06001 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9c244661 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb1bbc692 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc905073f nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe53d2a95 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb80f3014 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0bd1af1b nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7ba8c6e8 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xeadd0e2b nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbfeff72a nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xda4f74c4 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x23bf79ec tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x28005962 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x51802695 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x537518ce tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7475c8ef tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x212162ee udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x22e34c26 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6e589946 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x78bf0f1b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa0bbe586 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa9ef4d86 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3cf2616 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe318d0b udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x31c96a79 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4ec6f43a esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfa653371 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x36a7b5ee ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x61406097 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfafebd03 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2ed3d1da udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xac802910 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9af64192 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4e89845f nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbb596a77 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xeb8c4a14 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x348d6e23 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b9aae78 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x272a2ef6 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x863bee69 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9066cae6 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4f06a77 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xec3dd26d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xef40b7e1 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x3f68917d nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3543ac34 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x88d3a7e8 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfe8a51e4 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xba85d522 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe0bdfe25 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00f49b45 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x11f51ef7 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12a481df l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22c627f9 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23dd39aa l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3963e262 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x437b00e6 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x458cd967 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4988e7ee l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5812e8fc l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x660088d9 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72868663 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73a945e8 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7af38678 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8703ba19 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9216a575 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93ea0e15 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b65e75e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xac207b09 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd76c587e l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6ebe815 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x46c54b1c l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x09456f5f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e31496a ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x228ee9de ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28cac819 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2914659e ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x319d6f4b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x32c84808 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35f8d70f ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49856ad8 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e4080ba ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5443152c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0f8d53 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68b33115 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d879003 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7cd71285 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 0xa5d208a9 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbb8727b ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3dc0a1b ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcae6f15a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf661130 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea323670 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed2d8772 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfde69a73 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x42627c9c mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x44891719 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x48a4fdc3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8d728e73 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbdd714fc mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04c7fe90 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13aad4bd ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15327547 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15e2b114 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x254d5f10 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29cb13aa ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a790967 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2efd8828 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x51c872f6 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5cbd409e 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ba705f5 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99d07029 ip_set_get_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 0xa483dc68 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaf017e5e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb33b5172 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca64b34c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0c631ca ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd78610c8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf21e254b ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x064ba71d unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4cb55c13 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4e66f35e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x95f0cd01 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1e82657a nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x705ed458 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f257632 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcf246687 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdd90e520 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0122cef2 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02703d22 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x057be4ae nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06002a3f nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06aed366 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13a5437c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b0b55c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x151e9301 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1602a6ce nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16fc2f33 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cd72503 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb0d078 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20f2d41a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22d932a1 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2644e707 nf_ct_destroy_timeout +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 0x291d8934 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2efd2e35 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311093c4 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380bb4f0 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c76b239 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e613a5e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4225d1bb nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44bb712b nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x491af770 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bcc3503 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f4942f4 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x505e21ab nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5105f92d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5399010e nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53bc404b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63a63df9 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x640a4ac8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64ead6dd __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66701c81 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c39ec0 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6881fd0b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7263d146 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x729a1322 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a9c38f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72fb5318 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x730f984d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75a03f20 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7766a245 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x781f4285 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b4d7ee1 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ba6a024 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x829dabf9 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e343a3 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83f75533 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6ff243 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95bf201c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x972a5401 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984be3b4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x992c570e nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a2ace87 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c68213c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f4811c6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d8dd9a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4676039 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6c152ae nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadeb8f4b 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 0xb2582db2 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb71a91ed nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb823dccf nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbface16 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd655bcb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc005ebb6 nf_ct_helper_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 0xc848d7ae nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c856ea nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4166631 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd477f804 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5186219 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9b5c613 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd58579f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe29cb0b8 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2a14b56 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb7db63c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeba5e2b8 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed176a93 nf_ct_unlink_expect_report +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 0xe4659c00 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6bf8203d nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x08b9bca9 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3caebd6b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70941955 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83008835 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb0369ba2 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb3c57f22 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe0434d1 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcbb19aeb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd67f4929 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf30137ea set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf63828fd set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe7d92ed8 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4f36dd0e nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02418963 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0f9da665 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x70388c20 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x73575801 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x97efc79f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9f9fa2e1 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe58dce96 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbbbd2728 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xdc004c74 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa0ce9f7a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf07137f4 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf7f24725 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1036e01e flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1204f661 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d0b00a6 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39e62b27 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64aabf77 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76151061 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x900c0963 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9bd7799a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9eb87e7b nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb0e2989a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb4948d36 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc318aa29 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce15ad16 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe78d847f nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf15ca96b nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfafb380d flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfff0cd33 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29da5a99 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c55bda5 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33b3ec07 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3afe59c1 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 0x4c6f36de nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d5518a8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c1e512f nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x63cb3748 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6c5b34fb nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85522519 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ccc2637 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f425c33 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0fb9cbb nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3addb9d nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5712a97 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 0xed370c32 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x234a0d02 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3cd5ef48 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x544f520b nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5df2f3eb synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74545a30 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x83015698 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa0f387ce nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaab600be ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbefdc951 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd7f6d8c7 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf7e63290 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0787f2f0 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15f777dc nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26e0f933 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26fef355 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29b3c875 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b7b9de5 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d012740 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33720c7a nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33c46bc6 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3af8fc56 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x455f724a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fc1a409 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61047530 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6590da85 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x688bb700 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b502d79 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c42b575 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d087fb1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c0e0caa nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a824996 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91eee586 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92575aea nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bdc943f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f29d099 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa32d7456 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa400b262 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab4c7418 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb75133c9 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfdaf305 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0e6ecbc nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc30133ae nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb047f66 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcaa662b nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcc0a8cd __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd1f4fe5 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd650a10 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe559f816 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb56674d nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xedbfa85f nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee367613 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6022851 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb4cd4d5 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0b8f6dbd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1658450c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x272dd39b nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x28ec4481 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b6f749d nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa162ccd3 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc7afe28c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x372b64fe nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x374278fd nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc5e7cb27 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9de1fd85 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc7be4e3d nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3685b20f nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5a96b23a nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x71835494 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe1d6c1af nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf1facb8e nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x18e6138d 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 0x8fe3b82b nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfaabd475 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x110069f7 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x164ed79a xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c4a42d8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39750795 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bc7ee69 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x410c1062 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46d14a96 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a859590 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56d8805a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c3080db xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76468f3d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x770eae26 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x803dc0e4 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 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e4995e7 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa227ead0 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8102f47 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa93bc680 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb64e8c55 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8c64dce xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc25839e xt_compat_match_offset +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 0xda143c95 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeabbd04c xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5cce6d3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x55a89cf9 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb10c4f83 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x18d8b31e nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8e880434 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdcdddfb9 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x07a4ffae nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3c50e8e5 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5aeb9b02 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x346c4676 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xaba734e7 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x00da0ea9 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x080da8c8 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x13f2b896 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x646e1d58 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe62465fb ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf69c4f57 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x385ace28 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x64a088e4 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x9b206621 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xb0539fd5 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x700add56 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 0xb1db7906 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf1e2153f qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00f0003b rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1087f212 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 0x387bee63 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x491f12d6 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 0x59e90b77 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x5c3d95d1 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x691b0d91 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x70543bcf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x761956ee rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x76200f88 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x82b265fa rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8af77960 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8f56fc72 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x9e09cf3d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa8e8f57c rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa9837114 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xb2630057 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb8f84560 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xb90ece63 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbf673554 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4bfe632 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc82d031c rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xcbadf0e8 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd922843f rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdb019a7f rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xeb7d4663 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf5bab56a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfb76f7f3 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x2e57657e pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa5d2b80d 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 0x1c8380e2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2064f99e sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x82e994c5 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc85eb76f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0fc763f0 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x1479b3cf smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x25f6fd07 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x401d81f0 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x48464fed smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x52cf84bc smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7b915708 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x969b7d3e smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc32e469a smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xdbc78b3a smcd_handle_irq +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2fbc16b5 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x92af744e 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 0xd804b0a1 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe53808ad gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000659da svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fed588 cache_seq_next_rcu +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 0x06b32611 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c326c1 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0729b34d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x074f73e0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0771ade2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096c630f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a76b492 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5740a0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f76a26f xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffdc670 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107032ea svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115404b4 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f1e032 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ace3e4 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133b293d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f2d72f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x159506c6 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179ea6e9 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cb6782 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ec805b rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x185dde86 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187a6ae1 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a833739 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af65aa4 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c210907 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca17aee svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb453de rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd91a80 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1556a3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8371a2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20010c03 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20af398b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216cd105 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2180ad8d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22512609 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2272debe xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2301a244 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233d969a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2418dcf4 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254565ef xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274ad15f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280eee22 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28622f4c rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29169ad5 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2985df90 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9b9396 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baee34d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0eb3ec svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6b3024 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5248bc svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee13ae8 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f805f8f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30650ca6 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32be45f7 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3431354b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348f0042 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c9dd3e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37cb83b1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3957dc4c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3977a392 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a476c81 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aaec28f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dace253 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f33cf1a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f814517 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f161bd xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41271be1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4295b8c6 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44769f46 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x467e366a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4967cbdd xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4998746e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a75cd7b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aeb1ab1 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aed5da1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4be78ab0 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c0e58ac svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cf747de read_bytes_from_xdr_buf +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 0x4f28392e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f50ad9 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51291b2b __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521b0425 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cec5cb cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52d7b77d xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548597e8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a55310d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aed8670 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5d11a1 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd5a4fa xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c99e608 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf19b16 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d22a053 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d825582 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb6720b svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630996a0 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643f4f8f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64627478 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66efdfe9 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6847e477 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69515eec xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fc76b6 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab7f8d6 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ad673bb rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7079e1e4 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x718d4356 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71de8bb7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7249d4e5 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e9e1a5 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743f45c4 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748e7801 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7691674b xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a06554 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78161498 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c8b1a5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a343a6c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b6b6b11 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc961f2 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cefe0ce xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de69e7a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e46803a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81eac0d6 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83536118 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836ad93f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8679290a svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867b64ab rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88212f42 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88230a28 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e6b974 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a893f2b rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb5fdbd rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cacd046 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0e00c3 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f606a65 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f75dd3b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9003d5b8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9215bf7e svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92807cf3 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9583d110 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959d23f3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964abb4c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966fc566 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98652cd9 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987e23b6 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98abb482 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e47573c xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f700f22 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f6ceb3 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e7a147 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5970822 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa62fbdba rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6ae6cd2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9f1aae rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9f88d6 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf62b0eb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa86f95 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb050ed14 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0af799e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f02484 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb208802a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29d632f rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb342ec28 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb36b042e rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51bffdb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb585811c xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69dc889 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7019697 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7396e0d xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b29b57 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b3d5cf xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c7b46f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ca9ca6 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8fbcee rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb70c247 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc1d880a xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8d3caa svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0e3bb3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5bfdac xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe766244 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef9fbe7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf08890b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf12a261 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0adac2c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ecb7b0 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3daec90 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6c2a1db svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6fbe9e4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f01b01 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93b497f rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc94e6891 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca76c6cf xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd527c0b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce30ac1d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcfd1ad rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd04aa8df bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48f6959 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51b849c svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7532b97 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80e652c rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd967c07f xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9997095 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5c76f6 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd97e033 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe027bd53 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe17eef3e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2943b66 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4184e3d rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46c29d1 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d1e2c5 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51dd15d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe546526f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e7f61d svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2e09c7 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee69a944 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed92467 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf230f0ee rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32285a7 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a67111 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92785e7 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99aa013 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3d0cac xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfadb8193 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc475f0a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd29f665 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdb770e3 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff727250 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/tls/tls 0x2324df12 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x63e7731f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xcb00eed7 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xcf1c1026 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01eed8e4 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08287aca virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e3ddc8c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x144e93b3 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x219b3294 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x304d54ea virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ddf960 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49fdbad4 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52cbfe0b virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a67ec0a virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5cd4c1d6 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x683cff73 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6cb7e4af virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x887904da virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b88e2dc virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cce882c virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa581beab virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa64271fd virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8825e2f virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2025e52 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb32a33bd virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9487928 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf4e709b virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5311777 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd75d5c7d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe37592c8 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4b35a4f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe581077b virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8a88c99 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9af52db virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef93cec6 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2f45751 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6d6b5e1 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6ee00a1 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02408887 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c3bf827 vsock_for_each_connected_socket +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 0x31131603 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36239564 vsock_remove_tap +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 0x4e721c5d vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x502e2d62 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c347bc7 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f38aa03 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6262c5f2 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7846cf37 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f2f737d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d289380 vsock_enqueue_accept +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 0x9fc4afad vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2787a75 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2d5101a vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb1acbf0b vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1437f20 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0709806 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc6e4f1f vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe28f0f2b vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0175fcc9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f0bd752 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x267cf2fb cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f840a82 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x501fa5a6 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x520d42c0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x550c4e60 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70975b91 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84f1df28 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x887fda29 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8acc195c cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa55368d2 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa99b73d5 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb847bf7e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc6c2d57 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xef542223 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5d600dcc ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6ca8ddcb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe2d71a16 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xeed80227 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 0x35030a2a 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 0x048ca8df snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x213512ed snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x25e5fbbe snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x2ab3a608 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x3a278abc snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x3b90c6ee snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x4090262c snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x513c138f snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x5ec472db snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x6b5c17cb snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x7123b501 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa9983366 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xad1c0d34 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xb166ac76 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xb20c7439 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xb49c4e62 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xcb03ce48 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xde363f96 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf1dbf5c3 snd_ctl_disconnect_layer +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 0x288a0a6f snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x324bfb22 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 0x18d2140b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x234b06ac snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34b721b0 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3998128f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54387f2a snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5dd63049 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5eedcaea 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 0x792f7d8d snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ae89ab6 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 0x96b8797c _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa89942f8 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb7dac88d snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xda3d30d9 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeda69588 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x07e62f4d snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1939993b snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x232e4a4d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2e9f446a snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b78220d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60e58cca snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa67c1742 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd68b4a5a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2f9ace8 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe7ac76d5 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf36c7964 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf83a3c28 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x31af57d0 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x693bcc17 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1ccf21e3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3afd1bc1 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x43bece7c amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x63b835d9 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x662a0b7f amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6b4fa843 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b20cc8c amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x916bbf0b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a3ec262 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9fdcf69a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaea6d647 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc222e824 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeeb3dad2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x12db6979 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x19af8146 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a054493 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1aca2ab7 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b773c31 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1f057762 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21c16d30 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24fff4de snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x380dfd3d snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c59a116 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e3583e1 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3fd53e76 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5f3471b9 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6b7458dd snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6f163b44 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ff7e28f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7069236e snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71807d79 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7406d77a snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7822067a snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79b41b9f snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a505d49 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c1e1a34 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f7023fe snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ab8b88d snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1d46122 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa508064a snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7b7e14a snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc038dc4c snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xccc644b8 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xccddcd37 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd6cd2452 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdcd05b39 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdd87cb2f snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe07e0292 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4500f4a snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeeabe30a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3dec7d9 snd_hdac_ext_bus_link_at +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf6f395b3 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01c6f3a5 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0587cc95 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07d03581 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f7ffe59 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15a84744 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x163f81b6 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a480a44 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a8a8c66 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x208e4c00 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a5f9d33 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33362efe snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3390af40 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33c1dbf0 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x341ef855 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b22b76a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ef92463 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fa7c676 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x422f724c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458c4587 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46108479 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47291a86 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4755972b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c408522 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ceb7c71 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e94ae85 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5473234a snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x565c94ce snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56947a9f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57fbca5f snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5840a894 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x589323bd snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x597099b8 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b2f33b9 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c174b82 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6206359a snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cd62877 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dfc3049 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ea9e555 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x707e8447 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f67f2c snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x730a1172 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7406697b snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74704cf2 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77679351 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dea5d13 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80e8976b snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c3ec8c8 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c915334 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9adb2181 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b0eba27 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d110ad1 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d4dd138 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa29c8bef snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaf6dace snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad68d16e snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae5a3b0c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeb521ad snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0d88336 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb28d9f11 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3dc9f01 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7f4b496 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb84c3593 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7b2633 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7c3310 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe24fe98 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc23283c5 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f4e300 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc404f144 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc68a95e0 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6f0b658 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc88fed93 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca8d7eab snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaf68c4a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb2e4317 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2204f38 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd75e45f2 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7ceba9c snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdece816d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0b0ac67 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe894868e snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe911566c snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea7b9424 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebfba9a3 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00e984b snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4f3e006 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf808a614 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdd73182 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x18036e74 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2e6e539f 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 0x67c85783 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8b4b2bac intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02696431 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x49e8071e snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa3f19582 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa827a79b snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa8661b3a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe2c3fa31 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00216d03 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03349e4c snd_hda_jack_bind_keymap +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 0x0906816f snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a772e90 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b2d5473 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd44025 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb586af snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f3b35ac snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10539104 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x129e4bfb snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x154c2979 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16a8dd24 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193f3028 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e89749 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20801680 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20fec487 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27f86afc snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ad210b9 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d58f8ac snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ed1d493 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x305f63e2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34e99c2c snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35aae804 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36be63a8 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39346aaf snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b229a32 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d38a05c snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4e10a2 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x402f7d4e snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42859694 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e2d742 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x446a4cc3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4832cb2a snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x486450bf snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48ba3ab8 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a66813a snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aaacf4c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ace266e snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6501a1 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cc956a1 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f98e78f snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50f79c31 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5196b7f4 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52655f8d snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5482a0e7 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x548a7a4b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x554fbbf1 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x586f6782 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a4aa84f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b4dc241 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cfbc735 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f3fdbbd snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606e8862 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x642cf489 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6618ca96 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67213509 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68360f91 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689548fe snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a758879 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef233bc snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70d6e3db snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71eb9171 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72894363 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7922a2e2 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a77acc1 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e38f553 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80f1269f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81a7b550 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87d7dd3b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x888006f8 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a69f3de snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a6ec06c __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c21ce40 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dad354d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90296a16 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f6db5d snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x933c775f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95a22aaf snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95eb476e snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98cb71ce azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x999dadee snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac21b0e snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d30df86 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0d494ad snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2c02fbe azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa338ad46 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa386fdda snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa487b646 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa705e5c6 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7a4a677 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa81b7716 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8a0f929 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e420eb snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xade86a7a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0be39b7 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb325f647 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3ff7c67 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7c37117 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7d4a4f3 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9927f20 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb627dfe snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbf9abf0 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc5adf18 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b79806 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc27a6b56 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4364fb0 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4707dc3 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5894df8 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc626ba44 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcafc90e6 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccfd21a9 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0a5a81a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49f53a7 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5b5dd95 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd793f24b snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8c67391 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb58635e snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe11439df snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1c581bc snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1dcc69f snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7007637 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecc4b7b9 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefe77884 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0b4e30b snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3f7127e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf75ce47f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf760ace9 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff2f39c8 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffba8bf9 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x041b359d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1392939c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13fbd772 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x217c6fcb snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e12f491 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f50f9d0 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41f8541b snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a634436 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66f5bca7 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 0x781fd8f6 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x84a18986 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 0x8e1f68f9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x919661a2 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x983282bb snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa1277bcb snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf313939 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6e5a6ff snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2c51c8b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd475e8a1 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9d2436d snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe52e1527 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xa9367dd7 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x075afa54 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1d1356a8 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x311efd45 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x378f0099 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3d22ed12 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3ec2a5ae adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x509b032d adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x78aa27dd adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaa239a6c adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf0373cd adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe7b32329 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff12ed63 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd44b4323 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d4673c1 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d9c58b6 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x197a9c1a arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20988bdb arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x21b7c4c8 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2389d906 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27eef1a6 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28928687 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2faf5fea arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x37221fa8 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3ece4a30 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x421b2d11 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44320085 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44cfb1d9 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4d468e9c arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x578e9658 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5884d0e6 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a3e727a arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5d9aa86e arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f192bf0 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x707246eb arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x74cdf568 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x79a490f7 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7aaaa920 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 0x804d0a8b arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x84f6bbea arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x880029d3 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bb2cb12 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93443bf7 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9989b131 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa71879d5 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9f5a398 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb43f968f arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8c83cba arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb9429458 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf0d97ae arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3ba64b4 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc90bbffb arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd56c76d5 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd57d69b8 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd852c260 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd895f598 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd98a6f07 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 0xe61418a7 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe94f077e arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec5bbbc0 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2e72639 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf46364e3 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf60ebd05 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf72e1e47 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3314bd80 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x6d901d90 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x79b6c3a2 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x22decfe3 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2bacc016 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x45e39e69 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5cf17ce5 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5da7f834 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x764cba0d cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7ea66698 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8620903a cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x94dc179d cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc517ef25 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd26013c3 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf3b698b6 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf41a4c05 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x287e44a0 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe77186e8 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3a8db46a cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3ac96928 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8077b5f5 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8286bc7e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x96e3fd6b cs42l51_suspend +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 0xa819a53b cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xef37b2d1 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfffdadda cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x046a7da4 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x08c0a4d0 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x18bf660f da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8f83185a da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7666a2f7 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb180a39b es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x295fda69 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x5121e990 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x7995556a hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x515061bc lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xa8450e18 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xeabf67be max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x35102ef2 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x69edb824 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd36988cd max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd9c6bbd4 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x06a7f031 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x421e5193 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x90b356e2 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe3413f46 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x449a4805 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x12796999 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x6e0362a0 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x36b67003 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7f1f3548 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa18ef117 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6bc8d13c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa63e5d3f pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1b3a333f pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xfcb3528b pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3ce778a5 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x43b85f96 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x99e4ce2a pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdc5572b3 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x31619791 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6a9a96bf pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x75726401 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xce7042f3 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 0x0c1e9b81 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x03fb8b75 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 0x07849c73 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4c234d99 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9b423fbe rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc05c3f89 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc2ecf677 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf75c428a rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb9fe27c6 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf785115e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x9025ea38 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x723238db rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2629a1dd rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x6b812199 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc4d0a3b2 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xee20a46b rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x7c1d00bf 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 0x0dc5bf84 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4c963fa8 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x50174b74 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 0x63d63602 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa7a184ab rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb42bf75f 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 0xc61da25d rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdca23aea rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xed63fcf0 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf5628deb rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf8c7f3f7 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x20818854 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2e64a136 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7825d439 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8f8a53d4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x94bfeb42 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa281d8f4 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc4a9b572 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xc461dfe1 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0b3c3f04 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x23dd1ad0 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa0e182fd aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x2e614ca9 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x60c55ac9 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 0x56548229 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5797bcc3 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x67459c7a wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe52908d0 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfc8a7358 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x01c7f6d2 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x05a82bb2 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x06666c03 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x157b3901 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e07f103 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2523d81a wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31c53c1c wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d4a32cd wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x46636e8f wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x47916a7f wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50c53cc0 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 0x5eceff11 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d430964 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74375cd1 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74e762de wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x760c50b6 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x82f676d8 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8929dac0 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d1ec543 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ded7db0 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3e1437b wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf8e38a2 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb1b349e 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 0xe51faf51 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe5ec17a2 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x1ce4daf6 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x461a07cd wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x58dc8ab0 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5b5771f8 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x60502533 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x69576029 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5b00d8c6 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x23196710 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe13cbe6e 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 0x07e55bc9 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b9ae463 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x119b9607 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x16cd6354 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1980cbcf asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1c84b33f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1d7a50cb asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x267473a8 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c7f30ac asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x391f3aa1 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b6d4df8 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b760965 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73a954e0 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7d534310 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8870626a asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93cfbef9 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9db5c989 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbb9f79f4 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcba54764 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd53e7ab9 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb2269de asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf2a772d6 asoc_simple_clean_reference +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 0x4caac39d sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x6bbe8771 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6dfe1b8f 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 0x81efe6a8 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xc213a26b sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xc2ce1dfc sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd877f23e sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x13430765 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a04997c snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2a7556da snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x333bbde2 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x34a14f4e snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3e10d45b snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x40dfb2c1 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x462d8968 snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a5565e1 snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5c652038 snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x607c51aa snd_soc_acpi_intel_mtl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x63e7540c snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x659eb785 snd_soc_acpi_intel_rpl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x745f1210 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7e9d4e97 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x88dd0c65 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8a37e27f snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8d98c309 snd_soc_acpi_intel_mtl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x97428ae0 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9af1dd43 snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xac2417e0 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbd17d594 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc484b592 snd_soc_acpi_intel_rpl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd67016b6 snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd974c666 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xed96d3e5 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa4ace8b snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0a7f3c70 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x285bcbf3 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49068949 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49ccd1c0 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4b7104fa sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63b81231 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x69d905c7 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6be9b27f sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x785845bc 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 0x948b2444 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaea5027a sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc5dcc956 sst_dsp_mailbox_init +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 0xe8d000ff sst_dsp_shim_update_bits_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 0xfb9d6541 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x01c82c18 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x04a68e75 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x14b445ec sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1977a549 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x22820d4f sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x25068e3d sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf5a5f327 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x00446e04 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0353106a skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x12cd6e48 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b2bf9e1 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2bf0c4be skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2c6aec4b skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2c8dd272 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x35114ced skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x372357df skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3f7d108b skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x526b8a3f skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x52edf28c bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x54d5b7f3 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x65838b3b cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6f86f908 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x71c64025 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8e9200f5 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa24972cd skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa604eef9 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xafb91a81 cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc022db61 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc1a0b42d skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc719b0a4 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc8bbc4c1 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc9ebf2ac is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca68c98c skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6c91f3d skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6f71453 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xddcc134b skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xde1c9571 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe02764bd skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe417ada6 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe6a4140d skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf0c21d45 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf942b958 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0229857f snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05a391ac snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x064fba95 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07885f5e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080bdc19 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081f31ac snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08384405 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098841d1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b57a344 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7e6905 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b89406b snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e689533 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1018b87e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1185bd93 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12560cbf snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x173749d0 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1770e0cb snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1843f9cf devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19c4b25a snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a194c28 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4eb24c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aea3bb5 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1af45347 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b3848b3 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bde59ec snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d40c4bc snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de18ae4 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ee59b6c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fc855aa snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2029969f snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x202f6ce8 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20f8fba5 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23caebda snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d77b36 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23da18aa snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24cd5b83 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24ff408e snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x279076d5 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2818c340 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28bac7b5 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b769780 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f3d7245 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31775a04 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x317d27b8 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32121f4d snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x327c3241 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33021e1f snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33633da5 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3510ad79 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366aae1e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x377ce05f snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bee01d7 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d10fb08 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d22e59a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3debcedf snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2ef416 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ee23648 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f7bb610 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4012f0d9 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42723f39 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437b0148 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45bc5a8f snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47bc7492 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48bd7005 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x495c9c21 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b614410 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b76912d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc6cdfc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb93105 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5092de29 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511bf75c snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53f930a9 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x544b9cc2 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e5fbdf snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x561df40e snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59199ea6 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c41ebc snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b332235 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bf73566 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e136ed9 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eaae716 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd80335 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6158bdc6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61811ced snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6197598b snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61b63c5b snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63c620ea snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6405ed6c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65864918 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65edc747 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66d4ec78 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6831ea3b snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ab85a3 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c35c627 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf4e4fb snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da67c95 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da89f97 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e31c4da snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed911d1 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f25d055 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7018ad89 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a05ec7 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73879357 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c8ade5 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7518f30b dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75903d91 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75bd6ed2 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7634a018 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x763edf8f snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78ba48c7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f56e97 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x799e29e9 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79afd440 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a813581 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ba39b21 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c568b70 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c85d834 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d69db01 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8043fce1 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c5cb5a snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x811e85da snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82db6aea snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83225b21 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8454fec7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89598aab snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bebbe59 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e7ffef8 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ed3e82b snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x921f3a15 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e3a56a snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9462dc76 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x959d20ef snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95c383c2 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fdafd7 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95ff9b16 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96bc5d51 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96ccb42a snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x978cdaf1 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981358f1 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d49351 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ee3212 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfe1f31 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c629f59 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ec9bcd7 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00bb68b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa11e9bac dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3a9e96a snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8a63dd7 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa962227b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8b04a4 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8e7023 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafe77330 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0312d17 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb079c9ff snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb09901c5 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1263c3c snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1ba3e0e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb24c08a1 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2de0deb snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb408ff4c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e5a43b snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6a2b924 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f605e3 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f89e53 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83e8ff6 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb2ea042 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbca1dba0 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd823b69 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc3f368 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd8a634 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00c7d78 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0976296 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a93374 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2bf1c8d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fef547 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc378d523 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ed3133 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9184c27 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0cbcd9 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccb28b06 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf0a3061 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0003a75 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4887ece snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5389be3 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8334f69 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb03ada1 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbcd5f6e null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc908cc6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdceead31 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe040c616 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f28362 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe32b0c2b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5a2e7d1 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe647afdc snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe795876e snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7d3da8e snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8bb9717 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea8594d6 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedd7266c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef09782 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe5c858 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0dc520e snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf261e378 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bdd75d snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57f04a7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf663e5a8 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73d359c snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7a9a119 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87efa0a snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfac40574 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcb42abf snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd5742ac snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef4a661 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0dc8230b snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x136e20b1 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x18d18886 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9df26977 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdd815c2f snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0dfa59b6 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x14eaa418 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1c38434c 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 0x5daa099d line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7de93b18 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf2e4f20 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4c3a2c6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe9716ae line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc032a1dc line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcc7cce6a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xceb08e31 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd99d9831 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdcc9debc line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef95e0be line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4b01184 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf8b1ba89 line6_send_sysex_message +EXPORT_SYMBOL_GPL vmlinux 0x00018f06 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0013539f devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x00140b93 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x001b879f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x00240e17 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +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 0x006f0f5b bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008f0dfe __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x0091ce2d pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x0098cfa0 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x00a18cb1 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d7351c dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e3d635 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00e57c2c iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x00ec8ec8 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00f92244 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x00fe1d92 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x0112599c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x011e9a24 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01415e50 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x01468c2b iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x015be260 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x0169c1f6 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x016fa670 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x017a8a74 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018ba544 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x018cac23 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x019f05eb mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01d65b94 elv_unregister +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 0x02099ff7 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x02122a38 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x02187dd3 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x021c9bd4 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0235044f __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024cfb5b of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024e9ff5 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0257019c tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x025fa948 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x0264b9f8 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x026ce816 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x026f50ba ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x026fa6a9 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0270cc9d pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x027b7717 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x028c053c posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x028cd8c2 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x028fab8e dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x029ee36b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x02b1c120 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x02b5eb8e register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x02be47a7 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c979b1 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x02e2cbbc extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0322efdb dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x03334b0d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0354dc69 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x03553c4b gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x0358bb25 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x035b74d3 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x0368cbcd usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03780b42 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x037e8305 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x038e3f2a blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x038e557d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0398b1a1 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x039db423 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x03a487a5 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x03b22b2e __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c5c4d5 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x03c6e4aa __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x03c93417 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03cfd15d fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x03de3680 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x03e9e7f8 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x041699de devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x041ea174 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x043bb0f5 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x04599dc3 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0464e0fc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dffbd irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0476cb34 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x0492741c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04b5cd51 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x04bd0d4c acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x04be2025 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cba1e2 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x04d9320e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x04d9c402 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x04dda268 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f09ca6 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x04f63c58 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x05061531 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051a7c96 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x051bd29e __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x05270124 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0540efcf irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x0544cc03 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05501c9e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x05512479 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x05605634 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0564b21b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x0564e481 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x05691349 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x057c241b pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058a0711 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05a3a8bc virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x05b38679 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0601aa3f blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06170d0e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0637d831 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x06381e73 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065fb465 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x066b22ac gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x06720413 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x06a40d9c iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x06a9659a clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x06ad2fb7 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x06b8718c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x06c191b8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x06c8a462 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d1115b blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x06da0088 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x06fc733c nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x0705d6bc fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x070f2763 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x07102fd1 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x07200451 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0724ac25 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x07377b2e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076155ca pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x0781c44c __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x0785a0fc of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x078a95b2 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x07ada23e xenbus_map_ring_valloc +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 0x07bf2612 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x07c87852 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x07e95bfa devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x07ed29b2 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x08001b84 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08156968 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x081bec6a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x081f9dc9 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x0821a769 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x082b82f9 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x086b67ce device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x086ca347 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x08766382 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x08768e25 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08862698 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x08930f53 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x0899834e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x08a24d30 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x08a3d310 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x08b01d7d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x08bbc582 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x08c0669f cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x08c38fe5 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d6d901 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x08daf0c0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x08dd02b5 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +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 0x0943d924 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x094dbad2 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x0958fb5d dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x095c33da serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x09658af6 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096e1abb sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0979c5a3 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0991f007 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x09afab8a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b65d72 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x09bf8399 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x09bf9177 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x09caa489 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x09d056e2 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x09ee065c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x09fa167c vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a000e4a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x0a01e110 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0a03844f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0a1517e2 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x0a18e0f1 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a641c2f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0a675f5e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6d8e60 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x0aadc736 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x0aae7317 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x0ab94685 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0abba89f perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0adab218 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0ae79598 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x0ae83665 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b28ad56 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b313f55 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0b37ca8d crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x0b3bdc15 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x0b3ebdbc xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0b433312 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x0b4651db ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b596b15 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x0b5a580e tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x0b783c82 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0b92465b i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0baee061 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bdea0f8 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x0bf0800a crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c081bf8 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c0970c4 device_move +EXPORT_SYMBOL_GPL vmlinux 0x0c291b77 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2f32ca pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c44a8f8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0c45b225 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x0c511bc1 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x0c55aea3 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c55e39b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c638e51 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0c6c35cf fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c87a217 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x0c87d952 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c97e3f7 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc12ac1 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0cc96690 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cd4385c __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0cd5ac30 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x0ce06100 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0ceb71b3 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x0cf1d93b devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0cf58005 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0cfa688f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d0cd7aa __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0d0e035a tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x0d10f6bf edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0d14a44d usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x0d15ba54 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x0d2e8047 tracing_snapshot_cond_enable +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 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d676d4e regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0d763d4b kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0d7eedb9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x0d9118e6 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x0da91568 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0dae64dd cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0db1e4b3 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dd896d8 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e0ed796 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e168aae isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e1acb6f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0e1c715e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e25c785 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x0e493038 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6df763 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x0e6f18e4 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x0e7f094d pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x0e863912 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x0e98ad69 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0ea3f31d regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb45915 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec72d0b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x0ed2db28 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x0ee14137 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f1501ad device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1974ab __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0f1c071c fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x0f21b39d nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0f224e18 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0f244045 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f261da5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f427ee9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f4b9512 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0f5bc84b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0f62cfeb genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f70d054 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f99696e devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fa89425 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x0faa0ae7 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x0fb58951 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcad17a kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x1010c587 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x1012d950 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x103f9316 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x1041674d dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x105616e5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x1061383f cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10912e0a serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x1093837e __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x10b45f0d vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x10b5a2b1 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x10bd5c52 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x10c672b6 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0f014 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1135b3ec srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x114f0662 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11517a43 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x11652f3f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x117c9cec user_update +EXPORT_SYMBOL_GPL vmlinux 0x118564b3 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x119a0915 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x119ac005 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x11a20d87 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11c0065a ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x11da5ef0 kthread_flush_worker +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 0x11e46449 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x11f15bac sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x12084b1c of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x120bcb1c __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x120fad2c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12285ffa xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x122dce96 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123732f0 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x123af1de thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x123c1da2 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x124cc58d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x125c9a95 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1267509a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126e28be kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1292c81b nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12a830ed irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x12ab619f fuse_do_ioctl +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 0x12eeb158 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x12f2570d led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x13032c44 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1309bc05 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x130cacc1 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x13136d64 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x1318a12b folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131ef58f switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x13300673 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1336d50e extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13526fb9 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13621b57 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x13739f0f iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x138714bc adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a474a3 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x13b23347 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13ca1b05 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e8ccbd crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f2ea3a virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1410f776 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x141cf318 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14268620 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1426f03d acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x142f4b21 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146eaf85 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm +EXPORT_SYMBOL_GPL vmlinux 0x147bb461 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x148967f9 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x148a6b13 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x148d4922 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x149d6f53 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x14aa23e0 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x14b00548 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x14b0d0c9 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x14b9bfd3 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL vmlinux 0x14ba4de4 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x14c57752 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x14cf3142 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x14d37a53 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x14e7b9f6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14eeded2 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x14f797d6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x150218af ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x151e8756 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x15329d8c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155e9c89 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x1566a21a __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1573098a sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x157bb373 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x1585a4c8 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ccbecd iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x15d4e63b dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x15d89708 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f4644e usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x15f4742b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x161d0371 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1631cfbd get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x16323945 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x1632a3ea gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1651cdfa ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x165370c4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1653a907 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x165ffbc5 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x166a0876 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x16709496 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1672d0ab pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +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 0x16949838 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x169b65dd debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x16accbc4 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x16adfafe gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x16c2168a xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x16d3d613 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd183a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x170866e6 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x1709cb5d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170dd8ba irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x17221375 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1724d9e9 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x17272571 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x17332c68 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x173fbee2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x173fc214 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174dea9b led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x174e82bd dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1754cb28 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17856160 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x1785ef56 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x178bbab0 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x17a90b23 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17be703a bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x17c59bc7 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x17d302d2 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x17d72d3c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x183009d3 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x183728a7 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1846236f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x18491ffc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185cebe7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x185e9df4 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186e1c92 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x187150ab driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18bf0441 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x18d18094 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x18d61bfe serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x18dfe2f9 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18ed688d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x18f1c94f ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1905a28a __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x1905f496 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x1935d18c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19383d52 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x19399aff component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x1945234a pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x194d777e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x194f4da1 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1967b72f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x196d73d5 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1984e770 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x198f7ed3 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1991c60e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a9b463 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x19bacbdc clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x19d4b20d dst_blackhole_redirect +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 0x19f8de22 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1a0e72fe hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a10e955 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a216bcd __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x1a388398 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1a4217e8 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1a453296 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1a5fbe8a devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a719a95 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1a826c75 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1a91a309 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x1abbc69f serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1aebdcb7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af63871 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b00bf2e smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1b03ac06 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x1b0d84d1 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x1b242f01 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b34fa21 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1b3d5120 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1b47b92a add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x1b4cf632 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5a890f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1b5df2ad devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b617c0b mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1b72432d spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x1b7e9220 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1bac28d6 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bd11234 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x1be4c6db gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1be850c6 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c09cbac gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c208e77 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1c2f5db5 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1c316770 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1c368a15 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1c3e21b5 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x1c43637b dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x1c4499a0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1c4f43cd cpufreq_freq_attr_scaling_available_freqs +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 0x1c687e57 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c77414e __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cae2884 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cb54288 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbcea84 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x1cbd745c __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ce800ef devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1cfae8b5 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x1cfe2c62 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d192ad5 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3ba85b wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x1d3dfb59 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1d4884c7 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x1d62f375 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x1d771248 put_device +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d824be5 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1d8476ef fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x1d84afa1 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1da12ad6 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1dc77ba2 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x1def9c8b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1df5509e wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e03f74d preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e17754b efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e17ef97 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1e2fbe8b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e50ec11 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1e53bbb9 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5f124c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e88f768 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1e8bc6a1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e961f2b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eab9afc sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1eb16509 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebdf014 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec2bff7 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ecf87f8 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1ed44635 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee11655 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x1ee7e575 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1f139bb1 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f2374f7 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1f23ff10 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f277780 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f4276df __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f587631 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f606a18 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1f699dd8 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x1f6a5c1f iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x1f771f57 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f895fb8 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb2085e __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1fb5a0ed spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x1fcd5be3 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1fd4898b fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x1fdceb40 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe7e227 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x1ff4378e nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x1ff731c2 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x20069e38 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200feceb mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x20112fc4 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x201b705f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2037b6bf crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x2038c080 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x2046198b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x204fbfca cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x205b9f11 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x20957e99 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x2098aa2a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x20b579b7 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x20e93580 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x20ec9516 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x20f6e08b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x20f846bb open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x2146cb76 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x214cc4c9 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x214d18d1 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x214e2f1b dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x2166416c tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x216b36c0 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21728c9b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2175270c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217a074f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x21928d84 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b0137e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x21c77966 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e60452 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x21e9d691 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x21f678f2 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x21fa45c7 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2209a705 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22214634 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2239c11a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x223e4c49 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x225ef606 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2264bba6 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x226f871f iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x2276dd95 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x22833793 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2293fad7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +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 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230c4267 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x23118328 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x23280bb9 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x232a49b6 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2338570d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23461311 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2367a096 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2372a3bc transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x237eda8e dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2384d9f2 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x238f0490 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23adecfa gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23bbc57e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x23bd6e3e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c985a2 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x23d41be8 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x23e19f87 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x23e92375 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x24015121 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x240170de __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24331410 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x244770eb iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x2453d6c3 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2469a4cb dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x246bc6c5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x246d678e of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2489d3cd __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24abc127 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bdb85c simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24dea17b devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x24e4ea85 xfrm_audit_policy_delete +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 0x251b755f vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x251f23f5 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x252b31be genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2536ad06 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2539e563 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x255d37bc dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x256256b3 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25634d46 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x256e9f8e tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x258387fc blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d43dea vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x25d69b30 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x25da4785 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x25e21989 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x25e5a039 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f40960 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x26172822 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x26394767 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x26479184 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x264a9e40 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26536c2d reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x26567dd3 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2660d033 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267e135c bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x267fef80 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x26848166 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x26934a6c tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x26956328 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x26a24a52 component_del +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d1c8c7 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x26da75bb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f059a1 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x26f453a3 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x2718e06c device_attach +EXPORT_SYMBOL_GPL vmlinux 0x2722a28b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state +EXPORT_SYMBOL_GPL vmlinux 0x273fc6af iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x274b2a82 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x274d2c74 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x276013dc ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x2763ba9c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x276b696f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x2772b2fd regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27918c60 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x2796119d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x279947f1 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x27ab7314 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x27b362e9 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x27b72524 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x27c2b102 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x27def68d devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x27eea003 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f96575 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fce782 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x2800222e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x281610d5 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2819fd7c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x285f95c2 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x286198d2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2867b407 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2873cfb6 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x287702c2 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x287e5136 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2880ab26 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288b658c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x2892bb41 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x28a5bab1 devm_clk_hw_register_fixed_factor_index +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 0x28b5a4ef __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28c04311 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x28d4d42b devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x28e32bbd usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e6efdc gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x28ff5dc3 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x290191fa pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2907f401 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2951a335 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x295bceec cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x295c1c7c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x29616235 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x29620a09 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2973727f acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x2976673a dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x297dda08 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x29968df0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x29a14b9e phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x29b5f6f1 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x29d56dbe blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x29ea1570 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a4aafb9 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x2a5445e6 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a5d9cf7 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6b13b2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2a88e92f auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a96ca68 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9c61f0 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2a9e2107 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x2aa3c4ff xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abb6ce3 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2abb93ea rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x2ae482b1 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2af737cc sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x2aff1dd6 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2affdc7a acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b16bf4b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b1ad061 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2b1b1929 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x2b1caaa1 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2b2bd4f6 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b2e3636 ata_scsi_unlock_native_capacity +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 0x2b621031 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2b635c16 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b68cee1 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7cf8ff wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b81d1fc gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b84c246 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba647bc __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2baa12b5 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x2bad050e wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2bb19af1 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x2bc8f698 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x2bdb7083 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2c050a64 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2c0648a3 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x2c08b889 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2ac7c2 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2c2c3925 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c2e09e6 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c40b0c5 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x2c5bec61 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c5fe490 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c65a4db vchan_init +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 0x2ca89fe7 snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x2cc6726a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2cecc7f4 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0e82e8 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1c5e69 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2d2b9306 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d34bdf4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d397b68 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d42e746 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d5512be inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d714f5a thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d77ea8e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2d82b10f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d8a2309 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2d9d5126 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2daf3202 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2db45aab tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x2dbf2296 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2dc6777f genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2dd62f11 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2dd747e9 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de403e6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x2de49a0f find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x2de8eb5f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x2df0d459 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x2df867dd metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0c0100 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x2e156b15 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2eda95 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2e324ce1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x2e37a09a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x2e393dc1 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e59eb4a iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2e5ed6ac usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2e6e6158 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e812f0e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x2e8e4237 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e98cd85 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ea3d6c4 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2ea5240e fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x2ea5c920 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebcd38e icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef3142e do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f095bf4 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x2f0d2030 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1414a8 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f32278a acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f465b7e ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2f482d04 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f59fdbe sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2f616e18 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f71dc3a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2f8f54a4 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2f990157 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2f9ef5e5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2fb1eda6 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2fbb7f74 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc4f3ea sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2fd6c162 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2fe414ed debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x2fea1cfd edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x2ffd111c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x300663f0 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x301be4e8 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x30378216 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x3054d2a9 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3079287d iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x307f262c ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3084833d bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x308c7632 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3097fa63 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x30a673cc ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x30a8112d pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x30aedda2 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x30c370b5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30e0dbfe badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e27db4 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x30ee68fa irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x30ff291f pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310aca27 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311a0cba nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x3125a98b ping_err +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a0364 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x31477f2d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3154f75c pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x31592658 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x316d47c1 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x317557bc sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x318835ae irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x318a9a77 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x318d4abc strp_process +EXPORT_SYMBOL_GPL vmlinux 0x318f4122 input_ff_event +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 0x31a865d8 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b7632a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x31bf17e6 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d35c6a set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31de30df vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x31e402cc skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x31f61151 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x320c3bc7 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322fde8e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x32493f07 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x325e5cbb screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x326b836f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3278416a xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32a3434e pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x32a35ee2 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bba384 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cd46e4 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e2b75f intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e47447 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32e7cc74 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330573fb ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3321e8ff __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x33251921 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x3337baa6 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x333dbf32 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x3341af14 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33694981 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x338a726f devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x339404b3 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3395fdc7 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x33a115d6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x33a42414 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x33b1cf7f blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery +EXPORT_SYMBOL_GPL vmlinux 0x33c2f1e6 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x33d479be mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x33d8d2ff regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x33dd4d5a dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x33e5be20 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x33f0fdaa fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x33fb8461 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x3408110b __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x340c8810 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x340d79a2 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3444ea8a xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3458d60e regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x345db8a3 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346d4978 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x346e96ef crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x34782039 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x347dcb7c gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x348a9eca driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x34db2412 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34eb9da1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x34f24fde regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x34f2fe19 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34f6fc39 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x350ebac9 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35269b5e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353c4b15 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3540838a l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3557ae02 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355cc2e3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x35643730 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3574a7f9 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3595debe powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x35b0f4c6 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35bb4dd1 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x35cf1bba power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d78afc __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x35de40e8 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x35e567d4 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x35ef7543 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x36146fa6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x361d1551 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362bb183 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x364fbeed devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36551456 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x365a97ca tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x367bbe09 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x3683376c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a93e10 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bc04bd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x36daa497 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36f82558 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x370588b6 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x370ec78d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372fb81a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3753549d devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x37589884 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37bb7a18 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x37beb3e5 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c0cf4d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x37c2ed56 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x37d46efd ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x37dbdae4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3811d56a mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3814709d spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3833df78 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384e280c pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x38507107 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x38535e3f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386feb04 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38724875 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x38914fb4 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38b6feaf clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x38bce2cb dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x38bd5a74 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x38c05585 vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38ca4e24 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x38dd2d33 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x38de11ec regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e8f912 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x3906b1e9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x39088fb3 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x390d4e4e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x392d68b1 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3959dd9f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x398d100c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x399a0b53 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x39a1bd64 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x39a6b431 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cb2abd acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39e042b0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3a001269 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a0175c7 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x3a021ec0 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x3a1517b1 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a1ff8d3 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +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 0x3a56909f da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a5a2c22 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x3a78dc58 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a81e53d dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3a825a0f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa15a5b __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad1c01b bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3aef0b51 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b06c4af devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3b0c8614 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3b1d0c9d devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3b3f1917 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3b4454bc intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5a7910 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3b61f3e8 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b7d1e15 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x3b8fb8ab ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x3b907527 regcache_mark_dirty +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 0x3bb0ae70 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3bb8cb24 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3bbaa536 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x3bc3568f usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdedcc3 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x3be65439 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3bef0806 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bffea1a __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x3c060ae1 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c19c61f led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c220a35 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x3c257143 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x3c37407e dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x3c4038e0 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x3c46318a __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3c591b4b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c66f2e7 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c85ddb0 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c913dfb usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x3c9cc63c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x3ca3ffa4 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc140ad crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3cc153f6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cd01b47 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cf19c6a vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0x3cfce936 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3d04b768 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d0a8094 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d1862e1 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3d294bd8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3a47df irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d55813c key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3d5846de i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x3d67c628 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x3d6fe6e2 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3d84eeb2 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da3f544 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dd9da28 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3de0a022 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x3de64289 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3e0b7499 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e0c7019 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e10ce66 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x3e190c70 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x3e289d52 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e31c394 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x3e3a15a1 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3e3bbd41 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x3e556a2c serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e64d861 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e85fd78 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x3e90c17f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e963b17 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3e973ca9 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x3ea40edf gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eaf136d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3eb27416 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3ec1e915 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ed9250b mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x3edc6527 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ee3a25e put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd8231 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3f2688d1 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f27f809 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f321b64 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3f366b5d devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x3f3678c9 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4c71f8 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x3f535293 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x3f74ca11 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f78bb76 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f993e35 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fca0b5e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x3fd03517 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x3fdc744e irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe3b715 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff01e4b badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400f7e24 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x4010c44e dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x401175ac clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x401f7720 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4021d741 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402e78cd blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x403d2029 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40400767 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x40474e8e fib_rules_register +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 0x40809c9a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4083b6ea ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4097a0ba irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409a5afa extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40b0752e usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x40b17787 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x40b3b7e7 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x40bb5aa9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x40bd43a3 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x40cacdbb tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x40d1b14d crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x40d5de6f pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x40e7a8d1 sk_msg_free_partial +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 0x41039777 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4108af2f tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4108d36a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x410c13e7 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x41234429 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41379d5e mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4147035d regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414f9751 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4167d386 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x416fce40 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x41718a73 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x4190de89 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4194c6dc iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x419da510 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x419ef828 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c6afce kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x41d011a9 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41d9eee1 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x41dca779 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x420045ba sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421ee2b7 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x4222580c uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x4222f3b0 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x4223ef98 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x423061bf __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x423b2882 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x4247704f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x424bdd43 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x425737e5 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x4260f54e debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426799e7 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x427aa976 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x427bb219 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4288f89f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x428f33cb acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x42947fc3 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42ac65e9 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42c76017 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x42cbcf4e virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x42d6d8bf device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x42dc646f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43080222 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4311910b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x432987ec hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x4335bc0d blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x4348f09b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435976c6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x435d88e2 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x43653c99 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x43655f3b inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4372e78d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x437dd34a irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43873151 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439011fe phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43bb4389 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x43bee916 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x43da68fa crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x43ea5409 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fb9d6f umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440527e7 hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x4409a88c vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44339182 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x443b3ab0 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x44581262 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x4463daca sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x44752dec regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4481ff9a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4486e226 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x4492f565 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x449b202f pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bfa14c bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f0b0a6 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x44f2dc1c acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x44fa8823 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a6502 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4527237c dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x45273df5 nd_cmd_out_size +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 0x454844df nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x454fee96 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4577c1f4 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x457ce789 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x45928b1f acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a15b29 register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45a80fb6 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x45aeee1e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x45af48b6 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x45c993ca regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d1dae0 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x45dfad21 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x45e3e1a4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x45fcb1d8 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x461185be pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x461676a0 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x4620c0d0 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x464bf4ed phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x464e1aee mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4660bb1c vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x467759b6 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x467f313f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x4684365a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4688295c addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469ce136 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a4c1da i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46c16eb6 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c6d6af spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x46d8f60f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46ee4c62 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x46f11ef3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x46fe9164 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4718b51e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x4719091e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x471c0fdd __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x471e3406 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723b7ba fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4729c2c9 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x47346176 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x473d743f ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x47499c59 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x474c0df5 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4775fdae pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4788f068 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b31950 __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x47c2469a xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x47cd59ce ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47db3fef skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47df7cc0 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x47e50499 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x47ff6817 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4821be7c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482ab941 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4842dcb0 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x48565917 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x48602921 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4864b33f led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487bef2b is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x48931e20 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48949ce7 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a949f5 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x48cfd74e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x48dbbefe sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x48edf9c2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x48f9e533 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4905df5a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x4915821a __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4915ac29 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4916b467 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x491e97c5 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x49351f72 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x49381098 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494844fa set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x495ff30c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496c3751 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x4978d322 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x49870ba5 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x498b59c4 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a4b68e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x49b8edaa ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x49c1c763 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e61d05 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x49e8ac17 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb90a7 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x49f61e08 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x49f95552 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4a031347 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4a0a573f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4a135718 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2f31ec crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x4a3bbbb5 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a452665 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x4a454c0e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a50c246 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x4a72abc0 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x4a74d165 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4a78cf3b regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a947ad6 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x4ab83d78 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4ab86251 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ac43d1f free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x4ac48463 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x4acab934 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4aea86ef dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x4af64d7b pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x4afa0231 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x4afa6a26 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x4afe72e5 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4affb478 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x4b1b4bf5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4b1d52de devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4b3c6278 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x4b3d8a81 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x4b464b07 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x4b4d6ddf xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b555583 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b58cd37 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4b59da8d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b702da4 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4b708d07 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7bca1a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bb01642 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4bb08c50 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x4bbffee0 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4bc7ed07 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be4c851 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c0fd15b put_pid +EXPORT_SYMBOL_GPL vmlinux 0x4c12b791 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x4c1dc12e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4c21dacb inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4c25be7f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c364b97 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x4c3c2b73 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x4c3e9f72 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x4c44adc9 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x4c490f11 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c50e850 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x4c5149a2 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5f6b8e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c63d905 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x4c7059c8 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7a4a4e xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8ea0ef ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4c97e60c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c9e10c9 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x4caee66f clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cc74663 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4ccb64af __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4cd39abb __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ce75232 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ceda22a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d06edd5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4d1b0f61 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x4d2d7e89 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d57be71 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x4d5b2252 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d60d6ea sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d71f9c0 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d79ef23 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x4d819169 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x4d9031dd intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x4da96bc1 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dcf0b84 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de04036 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df1f8db virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e100a98 msg_zerocopy_realloc +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 0x4e34cbf6 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4e3941dd iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e3eccd4 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4e42b0dc devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e75972d gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x4e852b13 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4e9847d5 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eafcb33 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x4eb137c4 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed0b15b kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x4ee65275 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f07e015 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4f0c5726 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4f12d4d7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2a39e7 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2e07ad io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x4f421fc4 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x4f4338df devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f4cc4d1 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4f54c076 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f5bd37a pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f61559d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4f66fa7a synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f78adce __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f9f3fa2 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4fa63757 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4fae9d3a report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x4fb0f4d7 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4fbc9e69 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x4fc7a6ee pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4fc7e031 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503ac608 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x503bd194 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x503ee8ad __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5040ec0c mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x50562572 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506554cb __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x507876ad sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5086d119 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x50892715 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x508a0d15 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x508a5fe3 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50954f72 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x50956faa __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x509d50a9 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a0e622 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50b770e4 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x50cb9c63 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d5dc5a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e5c505 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ebbf67 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x50f1a936 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x50f5b24b fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fcbc2b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x51200bee crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515b74e2 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x515e298a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x51804887 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5180b4a6 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x5183c106 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5187aa2d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x518dba4d device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x519f6524 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x51a11128 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b9b2fd gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x51bff8e1 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x51c3d038 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x51cc725f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51fd6f04 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x5210c8e1 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x521a5a06 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x521fd87c nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52434174 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x52436c1e regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52508353 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x52574c96 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x52593744 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52684018 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x527a2325 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x527f092b cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x529851e6 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b29622 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cc0844 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x52ceb9d4 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52ddf3c2 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x53046e0f ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x53201924 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x53312364 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x53340785 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x533d0fc6 of_css +EXPORT_SYMBOL_GPL vmlinux 0x534327a8 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53804910 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5393323c crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5395edad usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c24905 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x53cad7ee regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x53cefd2d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x53d1984e i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x53d5179b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53ec0e67 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x53f76932 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5400e6e3 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x5411810f regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5413050c serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c1359 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542454de usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x542d0bbe udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x5432139e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x544a6624 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x54526e94 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x545910ba acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54660c30 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x546cac68 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549de4f6 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x54dfb40f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x54f946ce cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x54fc61df securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5504b8de fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55197dfb blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x552f6a48 __fscrypt_prepare_link +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 0x55462474 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x554cc4ea pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x554dfec1 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x556c4db3 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558491c9 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x558f1c1a __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x5598b93a clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x55a4af5f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x55b62df8 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d46e1a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x55e871e3 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55faf675 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56067f89 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x562201b8 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562df8a3 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563ecb24 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5650c6f4 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x56601f71 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x567f66ba pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x568ac86c dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x568c40a9 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5690c59b crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x569167d4 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x56925d0d of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x56988aa4 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x569a41f0 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x569e10d9 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x56ac2bd5 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x56adf780 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x56d0ab0b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x56d1b22e tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x56d4bf45 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x56d9bdbb spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x56d9cb0a md_stop +EXPORT_SYMBOL_GPL vmlinux 0x56e813da dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x56fba774 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x56fe945b vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x570bc6cf fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x57148565 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x57460308 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57490dfe sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5784c5cb tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579327e3 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5799e0f2 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa8b54 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x57acac01 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x57bc7758 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x57c255e5 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x57d0828a pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57db209e pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x57ecfb21 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f8cd00 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5804b0df ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5818a6a6 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x585cebc6 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x58758018 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587d345f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x587ede89 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x5891a7d5 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x58926cd1 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x58a22eb4 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x58aa6397 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x58af980b fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x58b8f984 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e42c0c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x58ed0e01 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x58f683a7 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x5901eaa5 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x590d8343 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5920cf1d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x5927de60 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x592de784 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x59356ac3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x59486f09 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x5949106c bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x59502226 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5956c8c7 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x5970af47 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x597d88da iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5980390d ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59874788 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5997478f pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x59a06699 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x59a7341e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59ba037a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x59c32825 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d100c4 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x59da6c8a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x59e8d15c bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x59eb94d3 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x59ebe6d6 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a141142 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x5a191656 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5358b0 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x5a628c5b pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5a686af5 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a785855 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a85c242 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5a94c8c6 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5aa091b5 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ad98ec5 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5adeb83a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5ae1f48e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5aeb13ce vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5afb6d4c __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b1fdc78 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2d71dc __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5b31e0a3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5b323b54 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5b3546ca transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b41a128 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5b430b18 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5b43634c inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5b571aad ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x5b6157f4 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x5b629b01 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x5b670427 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5b692883 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7114d4 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x5b7341bd wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5b8cb816 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x5b93283d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5b94c86f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x5b9c9a6b scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x5b9e5b5f switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x5b9f6b30 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ba681f2 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5baa624a __kernel_write +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 0x5bef9d37 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1f46a2 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5c1f7946 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c5875c8 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6b52f4 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5c6de681 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x5c81fb97 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x5c95dc6f iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x5c960746 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ca10578 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0a1c7 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5cb9e8ef __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x5ccad799 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x5cd17fc6 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x5cd97f4d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d058b7d __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5d05aed2 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x5d080d50 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d25e79e ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d4063b7 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d454f51 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x5d473748 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x5d483f04 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x5d4a0a6c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x5d4dd102 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d6be4d7 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x5d759f93 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d872325 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d99cac4 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5de88353 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5dedc7c2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5dfc2ef6 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x5e0c90cb devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e17e1cb dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5e27ba33 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5e38503e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5e41eb74 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e68e530 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5e6a2421 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5e6e3ce2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x5e7065a8 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5e74f2f3 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7da0b8 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e85cab9 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb43af3 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5ec3a5c4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5ed19d40 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee4171d acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x5f05afd6 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x5f07c50b dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x5f14fe3f find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5f1ae27b iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x5f1f8735 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f23e9db rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f45436a clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5f540cd3 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f5ff369 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5f69434c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5f6dcad3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f80611b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5f8bc4d7 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5fa17bd0 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fbb5e92 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fbe00fd usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5fc5e598 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x5fc7bf18 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5fd09221 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5fde63c7 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ff54fd9 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6006ab3b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6014459b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60409924 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6045c9b3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x605661b1 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606fd75b __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6070fd0a rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x60766f99 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x608e457f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609b79d5 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x60a0cd34 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60a7c2bb pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60c7a822 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x60ceb9bd ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f30ee1 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fdb226 device_add +EXPORT_SYMBOL_GPL vmlinux 0x610a20a1 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x610b2a39 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6116403c dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x61232481 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x61260bf7 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b62a2 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61429530 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x614a27ff tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x61509772 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6169ae9f bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x6175fd1c gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x6179354c __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6186f8d1 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x61901594 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6195242a skb_scrub_packet +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 0x61a382f8 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x61adbe1c __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61c743b0 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x61d2b8e1 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x61d6a754 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x61dfc5ba devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x61ecb772 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x61f3b747 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x61f4f358 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f696d6 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x62055839 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x622ae5fe irq_domain_free_irqs_parent +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 0x6257b042 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62601a48 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x626a223e intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x62899450 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6292a6c5 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x62a42688 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bcda8e usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x62d0482d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x62d31645 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x62dfe465 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x62e11f01 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x62f8f5e5 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6307f43e xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x630d9ea1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x63226f81 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x632be0ef adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x633222d8 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x6337a085 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x633e0128 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6352bc2f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63717a48 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x6371d79b alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x637624e1 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x637af990 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x637fa335 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x6381c770 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x638dbeb7 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6396d412 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x639c11aa blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x63a984aa devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63aa2bb0 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x63af65b0 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x63b3c73f i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c13aed nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x63ca47f2 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x63db4bb7 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x63df8215 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f78e87 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x63ff3673 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x641f77b3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x64218ad5 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x642e9389 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x642ef593 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x643b742d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x645620c0 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6469fa63 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x647a53a9 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x648ad2a0 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x649aedcc iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64a93040 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x64b3087b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x64b8f931 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ec11ba vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6516cced get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652dcb64 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6547a550 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x65563441 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x65600d70 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x656ed864 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x657f3b22 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x6583d4c8 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x65930ac6 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x65a8d81a __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b63cc7 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x65bf9df9 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x65ca2b7f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x65cb81df serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x65cc7ad0 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d8e249 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x65de1186 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x65efdede bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x66022233 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x660afaa3 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x660b4695 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x660f08d6 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66187a05 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6628b6b6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x66367609 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663725c2 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663d41b9 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x664879ba dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x66572c3b __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666a6c4c udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66849e52 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x66a9b207 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x66af9c79 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b467be platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66ccd522 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x66d670b3 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e38f89 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66fa2b8f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x67057bb2 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6722b7ab regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x67244aaa acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x672b96b2 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x67384475 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67448b82 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x674fb95a vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x67564ec0 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x676163bb nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x677112b6 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x677ba9f3 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6787e098 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x678a561b devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x6791faea attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6795814f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x679746d0 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x679936e4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x679b6f05 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x67a6210a dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x67b6cdaa icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67ebb58f pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x67eebdc8 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x67f05acf pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x67f58f8b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x67f89a78 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6809449a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6825cb2b node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x685752b7 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x686197d7 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x68630ef9 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x686a7c70 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x687513cb fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6875a057 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x687a7452 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6895f24f tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x68a2ff51 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68b5f720 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68ba6623 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x68c3add4 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x68cd4ec4 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x68d9cc67 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x68dc9a86 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x690207f7 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x6906c186 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6909b136 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x690b89ef __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x690e58ed extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6918a646 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x691a1563 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x6929218a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x692bbb81 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x692ca63e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69308a98 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6941459f ethtool_set_ethtool_phy_ops +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 0x6979c616 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c5d50 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x698d79e4 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x699ae2c5 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x69aee1a9 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x69b97c21 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d4f3a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x69dabbb4 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x69db445f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x69dbc43e clk_register_composite +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 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a099080 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6a117156 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1d0a1a fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6a2eacc9 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f0294 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a520d29 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6a5264be ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x6a535447 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x6a53782b __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6a5430df device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x6a7b442f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x6a7caed4 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b7d12 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x6a9bca12 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6a9eab59 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa56b28 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6aaaf816 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x6aab9354 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6acbdc25 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3dc2a6 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b538aa9 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x6b53dab6 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6b5b6256 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6b6f2f54 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b801df0 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6b8154ba unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b902018 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x6b90f6b0 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6b9551f0 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba839fe blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb4cd3d dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bccd9b8 fat_remove_entries +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 0x6bfd6ca1 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6c1b86f2 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c25ae97 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c48272b irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5888e9 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c83e19b io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x6c8a3833 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c8a46b5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6c8ebe09 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb8faee inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6cb95aca crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x6cba2900 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x6cc3c004 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6cca28e2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x6cde452a lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x6ce6d791 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x6ceb4088 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x6cf076ca mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6cfb5d28 wm8350_read_auxadc +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 0x6d155f91 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3520a0 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x6d367be5 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x6d538627 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6d56a2cd wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6d597ca8 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x6d5d7e82 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6d6bddf7 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d702bb8 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7d5d36 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8d9e46 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x6d95ec7f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6d9e2b38 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6da200e3 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x6db65c1a iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd28429 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddb68fa vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x6de08fea sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6de3a4cc aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e047f75 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x6e09cdd5 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x6e1a9b3c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x6e22da93 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x6e24d3e3 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4923a1 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7cefcd wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6e82dbe2 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e8825f6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea4afec ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb36203 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x6eb6d446 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebe6e2e fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6ec43121 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x6ec7ba60 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ee466d6 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eea64da fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6ef0b8fc rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f294b3f __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x6f2dab40 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x6f4551a7 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x6f5ffa95 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6f6684bb alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6ba4b6 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6f703ecd pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f73eb23 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f7e0a5e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8aa9e4 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fc7bb3b fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd3f874 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6fd40609 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x6fdf5197 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fe32a62 __synth_event_gen_cmd_start +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 0x700d6ab3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x702abb72 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x702cd996 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x702e97d6 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7042e384 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70464f34 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x70478bdf crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x704b7804 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x70508f21 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706aab6a vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x706e3257 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7070bd9d blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707a3d1f pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x70999443 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x70aebf68 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x70c2bbd2 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ca463c md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cfb05d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x70d515b3 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x70f6ef4a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x70faaf6a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71185e6a fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x711c4ff4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712ca328 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x713dd136 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7150085d tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7158d98e devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7159a68d sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716ad66b of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x71701079 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7172735a acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7177af67 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71877d58 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x71884e76 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7193fdb9 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a502dd sata_link_scr_lpm +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 0x71dfbc3a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x71f6912f serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x71f8bf92 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0x71f95506 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x71fa87cc tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x72010bbd crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x721ff714 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x722808f6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x723ea67e usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726dd96f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x726f04ff fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727c55dd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7286b815 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x72b16f0a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x72c15383 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x72c7e18e usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x72d0adea acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d7d134 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x72fcc923 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x730ad8e2 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x731183b1 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7327a895 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x73311254 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x733bc08f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7348e0e6 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x734d533a ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x735917a7 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x735b38bf ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x735b7dca fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738624e4 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x7396643f extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b0c9af power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73b2f248 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c7709f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d12797 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x73e5ddaa cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x73e62a41 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x73f5f631 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7401bff0 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7417d9ba pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x74197d7d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7428575c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x742872b1 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x74356db2 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x74398626 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7441bb03 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744f5eac devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74639b3c fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x746e25f1 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x746ecdd0 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x748c3a9e umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x7494b8f1 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x74ac3590 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x74b031a5 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c4952d dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d36933 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74edc206 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x74f14048 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7504c398 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751ab68f kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x751f5281 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752b0fa7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x752de70e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x75343ce3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x753e116b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x75458ece pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x75461426 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x755101c3 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x75532b7c fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7555e23d dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x755bb617 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x75950e80 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x759922d0 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x759a42ca tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75a03847 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x75adb43c __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x75b11da4 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x75b180da blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x75b466d9 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x75bedec9 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x75c96e1e xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x75e18d09 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x75e57da2 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eac5dd fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x75fb5488 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x760c3610 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7610b2f3 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7640e694 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x764f292a dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a6d981 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x76c9f3d0 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x76d2a009 ip6_local_out +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 0x76dd9a1e raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76f9e955 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772696d1 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772c2e06 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x772f974c i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7774b0a5 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x778468d6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779c4786 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x77a766fb device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x77a9c660 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b639a3 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x77b844ce bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x77c0f975 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x77c8d22b dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x77cc97fd gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x77ccdda9 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x77d14405 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77f7bcba fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7824eeff perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x7825240e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7829277c platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78312a48 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x7835596d devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x7837644e wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x784ebf85 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7861ac97 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788d68ac fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x78929fda dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7893bb17 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789ef9bf pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x789f5ad7 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x78a102d0 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x78a381e8 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x78b1e04a spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x78b80584 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78c21554 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x78c66aaa handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x78c85ef3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78cda2de vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x78d00890 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x78d1fc19 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x78d89621 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e4e84a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7911d9fe kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x79180da4 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +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 0x7957db96 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x797f2352 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x79813015 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798f5487 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79b62e0b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x79bb17f9 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79bc93e2 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x79c0fd09 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x79d07b7a irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x79d21841 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e59b40 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fabd05 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x7a0ff403 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7a2743ea md_run +EXPORT_SYMBOL_GPL vmlinux 0x7a5211b8 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7a55b2c1 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7a7997 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9772ce debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aabda46 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad52088 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7ae1453e mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7ae36e66 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7af05310 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7af66d46 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7afb37d4 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b0a4687 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b13b505 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b226380 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b394f30 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x7b420f25 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5607fe i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7b5a3e48 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5ba098 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7b65350a xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6d9360 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b78028a device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +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 0x7bbac1af pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7bd122a0 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7be40949 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7c0c0479 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7c0e1edb scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7c11301b sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7c12680e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7c1a4c98 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3edaa2 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7c46c075 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7c56e775 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c815087 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x7c8a559b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7c8c9c8b usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c94dc74 i2c_dw_validate_speed +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 0x7cab996a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7cabd27f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb4d0c4 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbaa0a7 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7cc941a7 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd4ef65 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce25b12 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf1355f pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d092b79 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d112286 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7d18a296 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d357a4b cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x7d3efd4e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7d584d47 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5aaacc task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7d6e60b9 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x7d9753d8 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7d9fa038 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7db1bc9e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7de8ddc4 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df950da debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7e0416d4 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x7e0434f1 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7e1368e8 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7e1943bb acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7e2880b1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3cdb13 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6862ba devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x7e6b5729 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7e727238 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7d4a52 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d6657 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8e69fb devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7ea5c6d4 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1c516 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebaa316 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x7ec7bfbe aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7ed301b6 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7ed856ef fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7efb51b7 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f09fd18 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7f1af9ed sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7f231f06 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7f2cd562 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f5708ee fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7f6448e9 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f777921 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8f6e0e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9c64cd __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb96067 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fd31673 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fd31992 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fd8c542 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ffd1254 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x80069562 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8014f0d2 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8028fbd4 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x802c79ae agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x803ba982 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x803f3529 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8081cbe5 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808c29fe dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809136e1 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8096f634 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x80a0e24d xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x80ae8eb2 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x80b45dd1 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d621c1 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x80da3326 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x80de5cbc fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x80efc9e9 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x80fb599b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x810282bb subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x812aad03 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x813223e1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x813c6f7b usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x81431099 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x8153cdc5 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8173414d bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x81740a6c xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8191e881 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b59047 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x81c7733e devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x820444b4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x820704fe pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820c181b input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x820ebc7a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8218663f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822c1bc8 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8254541e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x82572ea5 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x826eaab1 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82858a50 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x828d021a finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829eb153 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x82a42bff crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e4de33 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x82e5a149 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x82e5bbdb usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x82e73997 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x82ee464b __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x82f77478 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x831f967b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832a2d99 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x83326975 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x834149fb eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ed358 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x835d717d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x836a5ece acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x837b540f devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x837c712c tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x83846f57 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x83a176d8 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x83af9d48 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x83b70d2c edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x83b99c93 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x83c3708a clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x83c9c40f __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x83d22e12 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83e049ac devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x83ee7297 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x83f5358d sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x840e0124 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841ef8ae ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x841faed6 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x84204303 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8425b610 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8425f733 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843a0622 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844031cf dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x844ff1ea nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8453699c pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8467b41e tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x846e0bcc perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x84728609 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x847e556d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x847f0051 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x848a435f wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x84a152e3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84b4c31d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84c35991 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x84c777d0 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x84dc0216 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851b57ce split_page +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x85254406 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x85381cc7 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x85400e88 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x854160ec devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855b465d vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x856e7690 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x85788c24 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x857bcf7c __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858812f8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85baa6a5 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85bd4fd5 inet6_csk_addr2sockaddr +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 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e3acc8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x85ecd87d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f0da73 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863af857 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x863b3af9 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865bd367 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866a9163 irq_remove_generic_chip +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 0x867d1e11 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868c22bf devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x868f146c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x8693a2ea blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x86973fcc ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x869d8d8b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x86a47952 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c97adb __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ded68d dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x86e5919a shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fc694d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x870ae2ce __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871e449d device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x87343ede ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x873b8325 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x87460e50 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x87576cd3 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x875a03e3 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x875cd894 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x875f051c tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x876cffae fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x878c8003 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x878d2ee1 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x879c8520 register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0x87b1d50c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x87be5f76 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x87bed7f2 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x87c96cf7 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x87cd35ec devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87d0f0b9 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x87db60f9 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x87e1b3dc __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x88040e28 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x880f60ac irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x8812222d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x882aaa50 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884b15d3 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885a7c11 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x885d76f9 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8878f398 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889d7985 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b3af8a rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88d45a66 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88ed50ea platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88ed6c7c ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x89041859 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8913bed6 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8930aea7 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894c73dc devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8965b674 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x896fc393 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8971c7e8 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x899042c3 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x89912760 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b6cb91 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c415c1 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x89d3bee8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x89df50c6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89fe7d9f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8a07ba64 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x8a1f5cde led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a379247 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x8a380120 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a439a97 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a48cc82 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a64bc2e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x8a72f7b1 tty_init_termios +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 0x8a9ae3a4 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x8a9d6716 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8aa0f3aa acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8aa22883 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8aa4d95c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x8aa7bf82 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8acff733 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8ad28e5c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ad6ac3e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8ad7e229 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x8ae3dabf irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ae5d40c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8b08909a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b24e1bd i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x8b289ac0 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5abc15 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x8b5d4726 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8b5d81e9 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8b65a152 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b8127e3 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b8d2b15 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b921914 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8bae53bf hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x8bb57115 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x8bb84d9f hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8bf6e14d ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x8bf903cc bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0782e1 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c14efba clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8c225f87 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x8c33467e xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c5da1f1 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8c5df9c2 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x8c6204a9 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x8c6be760 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x8c6ce549 vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7afd05 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9dd834 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x8c9ed545 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x8cb43e19 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8cd2608d bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x8cf3f707 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8cf7280c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d10704d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x8d15281b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d1bda02 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x8d2014b3 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d25e9f1 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d413f7b pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8d4b2c63 vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5dc2d6 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d89ab44 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d90e486 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8d922725 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8d9c2a91 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x8da8bbd4 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8dac6edc usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dd09b71 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd50e8f led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8dede1d3 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x8df02145 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8dfda639 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8e13923d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e37bb8a sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e447538 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4ec23f devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7377a2 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x8e7dff81 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8e7f2928 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8e82d0ad srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e935bd5 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x8e9fc276 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8eaafc46 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb66d15 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8ec1514a device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8ec927c1 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x8ed1d080 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x8ed8d52a devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8ee316c9 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x8eec3c11 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8eece959 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef6260c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ef66e05 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8efebd78 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f32124b clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f5a7466 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x8f637713 power_supply_charge_behaviour_show +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 0x8f8854b2 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x8f8ff554 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8f98ef0f pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f9cdf2e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8fa878d1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fae7491 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc8e7a9 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fd0c80a sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8fd4dec2 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8fe1e519 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8fe60ab6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x8fe97b72 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x8fedfe68 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x900361d3 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x901e0869 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903be599 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x904400e3 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x90477827 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x90687735 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x90717699 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x907203ac ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x907f0386 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x908295ad dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x90868193 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9086a75b blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x90891db9 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b3a707 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x90bc4826 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90de7a17 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x90e2ff42 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x90e5e499 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x90ee1371 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x9100cfc6 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91235d04 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x912cf83e regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9131ca33 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x913d6d43 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x913ff8c9 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x914381ab platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x915c99ca crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x915cdef7 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x915df531 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x91713f85 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x91720ff3 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9185f442 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919a9927 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x919ff632 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x91a84c6d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x91b369ef tpm_chip_unregister +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 0x91c8a691 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cee209 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x91e8552a __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x9216d6c7 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x92186691 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x9219ff79 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x92212d22 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92440258 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924deb24 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9255a4bf tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x92661301 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x92746924 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x928aa5f6 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x928d1a04 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x92978f91 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x92a3e678 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x92b34baa __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d1f783 dma_get_any_slave_channel +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 0x9313d394 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9314f038 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9324ddbe mbox_flush +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 0x93477d33 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x93557c16 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9363d44a sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x936e554b devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x936ee24b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x93731687 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x93752388 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x9376e656 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x937bc67a uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x937d2aed rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x9382dd0a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x93a48606 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x93a52213 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93b6dc43 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x93bbdf9d gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93c9929d devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x93cddcc9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d31efc tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941e3afc led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9422522e regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942b8917 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943304d0 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9450cd6d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x945bd71b xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x9460aadd events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9477d59e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x947f4fa9 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949c1095 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a29bb9 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x94b17bb2 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x94c83274 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fec2c4 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x94ffdc52 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95188689 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951bb409 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x95329d4d component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x95337ef0 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b31e1 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x956232f3 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x95683849 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9575b396 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x9581fe2b lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958dc7f4 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x9596e2aa crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95acdcd1 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c29c1e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x95c812f1 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x95c89a21 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x95ce89ec sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x96196f22 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9625119f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x9626824d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9634a2ad pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x96378ac9 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9641a053 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x96447042 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965c1c6d devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x965d5dcd xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x9668c4aa __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x96812fa6 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x968a41b6 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x968dec74 xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96a2d6ee ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ae31c1 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x96b157bf class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x96b20d19 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x96b89a2c devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96ba8d05 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x96cf4b19 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x96da667d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96eac6cf usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x96ed0d3b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9710aa70 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x97122673 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97292c85 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x972db9af acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x97390a57 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x973fa68a vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x9747fc0f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977d7891 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x977eb743 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x978063a8 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x97849401 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x978b8abe console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x97aaa399 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x97abc7a8 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x97ae08f5 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x97ddbdc5 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e5c450 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x97f2b8fb genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x980050a2 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9802ca79 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x98146c90 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x9816598e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x98328663 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +EXPORT_SYMBOL_GPL vmlinux 0x983b88e0 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x983d62b8 sk_attach_filter +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 0x98693abc ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98923a06 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b20c9b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x98ccc510 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x98e60d21 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x98ea1a8c clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x98ecf0ed tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f10da0 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x990ce4f7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x99111cd4 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9916c5ad iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x99244de2 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x99267b2f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x992a001e dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x9932e037 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x993c2b59 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99460469 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x9946fd0b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x9951f429 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996d6dd4 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9983eff4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a8ce80 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x99c0570d ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x99ce3f63 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e53b25 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x99e9a4a9 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0845f2 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a167329 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a263ec1 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9a371cd2 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9a37f941 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9a404179 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6b30f8 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9a7e7685 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a81ffba crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9a84c702 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9a8f3798 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aa7cd8c kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab0ecf8 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x9ab78b57 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x9ac0c58e nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae9a22d tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afc45b7 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x9b1cbbc5 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x9b1dfa0c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9b4d5424 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b570a72 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x9b5c4698 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b80d49c pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b95d5b7 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x9b99e668 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bbf72de mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bc60531 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x9bced185 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x9bd0ba3d __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9bd447c5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfdbeff trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x9c0e8129 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c3441ce dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x9c3d7973 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c6acf30 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7f38d9 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9caf99f2 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9caf9e17 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x9cb00afe fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9cb15ec5 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9cba5af9 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cde08d0 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cdfddac usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x9ced6d2d devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf86e9b devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d13c2fc unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d2748b8 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x9d3d49d2 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d507b50 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9d5aad7b ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x9d7031f1 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x9d72cbec usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9d38d7 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9da04120 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x9da5b5e9 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x9daf329b rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x9dc4fc83 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x9ddbd4c9 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x9ddd7163 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e07d3e7 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9e13beb8 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9e1428f1 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x9e1fed9e dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x9e2e07b8 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9e314124 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x9e38cef4 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x9e3bf46f regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b3228 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9e664646 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9e6d5de3 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x9e6e9b1e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9e6efa3b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9e758ed6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9e84dc8c securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ebad2d1 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x9ecc6ee0 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edd4cbe apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef1bfdd netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9f0746a0 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x9f0acd17 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x9f22c5b9 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x9f24c8d1 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x9f2bedaf irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x9f37720c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x9f39b292 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f5ad238 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f6bca20 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x9f807466 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x9f9475f3 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fa2a1d3 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x9fa51244 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc6957a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x9fc6d7e5 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff2fbb0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0255fb6 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xa02a5b94 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xa031b1ed __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xa03332be scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa04dc934 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0696e73 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa077d6fe gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa07ccd7d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa0821858 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa0accac5 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0c264c7 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa0c2890d xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xa0d2bce0 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0d3063c hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa0d33f97 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0dabb2f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xa0e59e7f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa1083fa8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa1094d0b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1095423 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa10db043 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1363623 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa138aba5 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa13bca01 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1686ae8 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xa171c39a irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xa1872a13 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa19db5c5 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xa1a68cc4 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xa1aafbc2 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa1c47be5 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa1ce7387 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f213dd device_del +EXPORT_SYMBOL_GPL vmlinux 0xa1f48e30 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xa1f6083a __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa22232e8 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2383cdc acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xa2603063 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa26b6db2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2713e2c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa284df4d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xa28b53bf dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xa29d0624 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa2a12083 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa2aa60fe devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xa2acf088 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2b99f54 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa2bb7ef0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa2c57927 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2df1ece xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e50f09 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa2e6b5cc umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa308526c xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa30fb913 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa31d6cf7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa33df980 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa3484479 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xa348467d device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa34b0376 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa354a207 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa356012a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa35a4ae4 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xa35ae736 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xa36d34d0 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a4f63 get_device +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38ca43d pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c44e1d irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xa3dbf989 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3e37106 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f10706 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f569c2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa3f76a00 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa3fa8d6c inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41b2f22 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa42dba7b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa42fcd2c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xa4409290 acpi_subsys_suspend_noirq +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 0xa4565fef __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa459bb95 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa46136fe device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa47b2d64 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48e8659 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xa49466b5 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b81338 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xa4bc92e6 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4be30bf usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4ca3b60 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xa4d9e6e6 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4e2594e gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa4e4f66e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4e8fc42 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa5052a85 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa50b1bfa inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa51060a5 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xa5245afa device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xa5246925 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xa5251c53 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa526fe91 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa565dd79 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xa57b46d8 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa58d3133 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d9fc69 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xa5e23977 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xa5e2e96c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa5e4e606 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5e56505 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa5e61c30 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe879 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa5f7da9f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa6001db7 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xa60481a4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa60c0f60 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa6307dcf unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xa636fe98 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa6423d83 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa6450092 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa67ac218 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa680a224 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa6886e2d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa698579c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7fdd4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa6cc9a9f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa6d6ac80 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7546c cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xa6e87790 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa6ff5b20 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70d52de dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7155ab7 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa7166c99 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xa7171682 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73e5177 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xa74104a5 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa74dab43 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa76261ca fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa764567d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xa76660d9 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa77993fa gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa79f774b dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xa7a337c9 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa7a578f6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa7a82208 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa7a974de bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7a98a4f ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xa7b4bd85 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xa7b8af86 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa7b9fd98 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd1ca __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa7cf93e7 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xa7cfe323 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa7d88c12 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa7f0794b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7f49f4f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa8160a9d inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa816d653 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa81c3f00 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xa82d41ff usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa82dadce sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa8482b5b dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858534b relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8b94b4a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8c4ad6a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa8c52d78 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa8d031f2 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa8d0a34c nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xa8d0f7c6 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa8d54651 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa8d69984 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xa8e610b3 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa8f7445c perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xa902bf19 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91bc939 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93af83f led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa941c56d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa9434cd4 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xa9495442 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa94ab319 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa96dff5c skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97c8ad3 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa985bd55 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xa991e9b7 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa993bf82 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa99ce2a3 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a23d34 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa9b106db blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa9ca7a9e xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xa9f9676b usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xaa1148d7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xaa188b29 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xaa201216 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xaa366e86 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xaa37de96 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xaa3db8d7 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa46a27d pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xaa49eab3 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6e6d96 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xaa8018e1 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8ed4e7 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xaa924014 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xaa9616d6 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaa9fd517 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xaaa7f622 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab6740 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xaaade649 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xaabcea7a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xaaccb525 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xaad72ea0 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xaada5959 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xaadd2721 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xaae537d5 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaae6a7c4 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xaae945bd desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xab07d042 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab4ac14b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xab4ee6d3 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xab631265 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xab78a007 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xab8023bc regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xab8e60c4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xab95e128 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xab9be852 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbdae31 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xabbeb52b devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xabbec4a5 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabce6303 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xabfba6b1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xac008140 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xac1aaea4 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xac1c71b1 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xac1d70fb pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xac1d992d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xac30288f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac4207ec find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xac451865 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xac77abec task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xac7d37cc __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xac8106de led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xac9aa777 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xac9fe4d0 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xaca43734 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xaca7784b usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xacaeba13 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbb95c6 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xacbc5bed __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xacbd957e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xace91163 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xacff0a72 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xad1b3933 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xad24c000 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xad2e2fc5 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xad373858 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4ea635 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xad4ecbf9 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5bbe84 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad7ffb17 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad95d5db page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbca2d8 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xadce0db6 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadecc70c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xadf027fa xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae20731d vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xae33a783 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3c4550 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xae42e173 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6d9468 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae92faa7 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xaea60854 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaecc4b11 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xaed1fbd4 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xaeda0e40 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xaee657ee __class_create +EXPORT_SYMBOL_GPL vmlinux 0xaef4ec55 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xaf02f6ed devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf2599f6 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf6690b7 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf66ca28 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf864bcd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaf8ad12e crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xaf981aaf __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xafa8385d nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xafc0cd2c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xafd11344 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafed462c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaffb7a98 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xaffeb49d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb001e9ec switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xb007ecd8 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb015908c blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb01e30aa powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb02077ed xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xb02699ef __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03a2476 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xb04f5641 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb05078ad rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb053c4a7 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0868ca1 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0aaeac5 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb0adf3e8 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d0f3f0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ee5377 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb0ee904b unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1024251 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +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 0xb124eb95 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb136c138 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xb14ad6fd vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb1511fb3 vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16bfce1 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb1811418 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19566ab __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1a0e42b usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb1a27f55 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xb1a6bedd icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb1b7c959 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c189d6 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb1d2805f led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e40874 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xb1ef3bd3 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22343d7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xb23aa9d1 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2496844 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb250d52f gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27b474d acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb298b863 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xb2b0d7cd user_read +EXPORT_SYMBOL_GPL vmlinux 0xb2beb24c xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2ca51d9 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xb2cfa227 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xb2d70f1b bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xb2d852bf fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xb2d88a89 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2df75f2 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb337531f fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xb33e0236 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb365a048 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb37cd2b8 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb393fb48 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xb3cda795 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3f002e7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb406ca7f blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb42d7bfd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb4452e61 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb46b1b80 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb478c650 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb47a8b21 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb493960d serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb49d8c42 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb49eb36b misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +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 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5252a2b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xb5447158 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xb5486f63 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb550bc29 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xb5649127 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xb5709609 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xb591857f fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xb59f775f blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6ceab usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb5ba775a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xb5d1d945 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xb5d9daa6 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb5dee3bb inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb5e0986d xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb5f9dd75 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xb5fe7c32 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6004ac4 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb6094004 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb61b3af8 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6250dce ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62e0e7d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64c036b devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb64f7080 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb65c67df __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb66f3415 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb679544c pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xb67b92c0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68bb323 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69cdcf3 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6ae3647 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb6aec2cf gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb70b8958 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xb7132179 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xb7164dbf regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xb71a8291 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xb71cf37b pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb725a1d4 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7704b1c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xb77a59ae ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xb77bf9f2 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xb785fe22 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb791a67c gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb79fc27b regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b1cd1a irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb7b2a306 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb7b90972 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xb7c14351 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c82ea7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7c9fea0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e462a8 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7e8bb2e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb7ef7c0a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8203d8d dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8358c9c __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8384b46 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xb840ee90 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb848f5c3 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb85b4094 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xb862b8ce phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb8681645 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8846e65 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xb884bdc7 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb88ad2ce usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89d39d0 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a0f425 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c8ae7a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cf4ea2 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8d4955b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8dfb871 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb8e02180 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb8e29ab3 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb8e620e5 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xb8e99988 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb8f0611e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f358c5 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xb8fe5f03 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9154e54 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb9192e28 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94be8e1 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb95f4044 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb962a382 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97bd795 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb97f8ef2 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9872d49 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb98a3f6c ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb9b3c79a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c0841b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9caab26 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d2fd97 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb9fbfef9 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4c7d2a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xba7e6a9a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xbab59693 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad37525 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xbad583fb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbad7fb8a ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xbae20364 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbae88a4e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbaebb86d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7d5e2 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb022621 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb14112e ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xbb17da23 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbb1e2273 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xbb2df4c0 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb477628 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xbb4aa958 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xbb4ca2aa pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb65c608 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6c8538 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb73f3d9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbb746fd1 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xbb7927e5 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9e10c8 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xbba4fe2a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbbad73f8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbd00d2f dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbbd3acc6 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xbbdcd19d bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf4e391 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xbc158f5f dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xbc1d9cb9 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc2806af rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xbc28e3b9 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbc2c1cfb regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbc3e3acb uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4114c2 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xbc4b3160 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc522bc1 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc558e8a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc5c5e88 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6e3841 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xbc8462fd phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbc86d583 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xbc8d223f dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcadbed4 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xbcb5f475 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfec58d scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd097307 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xbd106c31 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xbd3154c8 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd47485b dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbd477d7b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xbd60f971 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbd6d8159 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xbd6e77ea iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xbd7155e9 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xbd72a49b clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xbd73e8cf xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8d92bb zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xbd98b13a nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbdad788e rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xbdc102b0 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xbdca1e1a bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xbdcb67f1 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddbca34 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbde17eb8 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xbde3b7d6 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xbdebf8a1 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xbded09d1 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbdfe0d76 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe19cc6d regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe1d1e82 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xbe2ff7b6 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbe38d0d8 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe478e4b acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5fb480 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe61d9b2 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe810001 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea07393 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb585d5 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xbeb62dc6 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbec5dd88 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbecdebf8 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xbecef44c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xbed8e99f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xbeecd6d7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf08262c md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf3da1d3 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4b06e5 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xbf4cec28 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xbf4e1a44 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbf5ec713 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbf7dff6f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbf885822 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xbf8dcb60 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xbf9f96d8 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xbfa8a245 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xbfab46aa invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbfbbdd85 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbe20bb skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbfe16c06 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc003db61 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc004e020 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc02cb90b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc0552560 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xc0584e78 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc05c1b64 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc073837d vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08d10dc dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc096c044 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc097e2db blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc09fb751 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c42068 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0ef98b0 xen_register_device_domain_owner +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 0xc111bea9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc1202379 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc1269a84 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc137e8a4 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xc1518045 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc15344a8 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc1641746 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xc1715d42 skb_append_pagefrags +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 0xc18608ae devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc189bcf5 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xc1a26655 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc1c11533 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc1cb1ca9 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1e42c5a pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc1ede0a3 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc1ef4b62 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20ad520 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc232701c crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc23befa3 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc23ecb83 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26bbfef tpm2_get_tpm_pt +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 0xc297aad0 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ae220c phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc2b6964b usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2bf388b __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c3b780 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e72eec __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc2e7e28e fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2f26271 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xc2f26a23 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc2f2c8f4 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc31baca3 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xc3256b7a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc32b8ca6 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3468c06 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc348be32 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc34f959a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc352adb8 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xc36aab91 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc376856d acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xc37cfe97 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38265b9 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc39da57e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc3bc53ec crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc3bcda8b __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xc3bd749a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc3c26cb2 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cc33ae tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d0798f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc3d447e3 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e03a0f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f9c439 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc404fe3e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc405d9c6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc405e2a8 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4303130 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44e105e mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45905af device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc465dd30 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc466e643 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc46fb64e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc46fecae uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xc4711fd5 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4799f24 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc48b24f3 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48dc346 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4c56d1f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4d80d6b dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc4ef4fc7 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5078d94 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc509b9e4 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc50ddcfe bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5185ea2 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc51cf102 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc532f497 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc543cf39 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xc54b7d28 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc551083b __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc5530f2e watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5609104 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xc5631344 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc5739aa4 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc5821ff0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58d52df efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xc593b9ca xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ea3467 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xc5eeb629 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6246085 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc62826c2 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc64f2308 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc659fe21 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6672ed9 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66d5421 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc66feba4 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6779900 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xc67fdfa2 genphy_c45_baset1_read_status +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 0xc69d644a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a7b41a devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6a9e34f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xc6b2bfdb battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xc6bb494d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc6cc9bed rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6d62659 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6f82d45 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc70188c6 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc709c05f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xc70de4f0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc7131d59 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc73c9e28 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc73d2091 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc742e72d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc76d40e8 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc782db76 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78d6cb7 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xc78e24e8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xc7981872 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc798fdb7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c57d61 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc7ca5417 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc7cbb5c7 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc7ced274 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc7d91e51 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e5296f acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e8dbf3 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xc7ed0a80 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80926e3 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec +EXPORT_SYMBOL_GPL vmlinux 0xc82801da smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc832a04c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c0a09 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xc8553a4d vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc857b2ed __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc8624f91 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xc862a09e dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xc867f405 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8a87fbf of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc8ae1ea8 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xc8d0d714 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8d5448a pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e8ca1d __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xc8efa1be subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc8ff4bdd __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xc90b010f ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc91c980a led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc925ad5a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc9288936 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc92b86bc gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9487318 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc952d85c __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9592ed3 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9681dbf sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xc9796b38 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc979b1cc gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc97bf448 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc983dc1e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc99f14f5 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9ad8569 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc9bce966 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9dec427 component_add +EXPORT_SYMBOL_GPL vmlinux 0xc9e174e5 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xc9e64e10 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9f17a08 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xc9f29544 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca21db29 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4c3bd4 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xca5da188 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xca5f2eed vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xca75c257 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca819ce5 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xca8c238f genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xca931ad4 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xca93559f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca94bb37 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9dbc54 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xcaa3bbef dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcab1b30f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xcab62029 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcace864d nl_table +EXPORT_SYMBOL_GPL vmlinux 0xcad1285b cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xcae2fbba __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb041894 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xcb07d7ba irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb119f00 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb28394e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2da4e6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xcb3a73cd mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xcb3bb5b7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb559f99 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb55b082 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5b44ba class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcb5e17c5 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xcb84437f devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9a151b tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcb9e08b1 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xcba5120c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xcba99290 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xcbab9217 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbc3107a acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xcbd2b370 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf4b41f dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xcbf853ec extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xcbff43b6 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc0cffb9 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcc171172 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xcc1adc99 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xcc234860 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2f3c49 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xcc2f5710 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3ff6b8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcc530248 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xcc54237d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc85573d vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcc8b527c usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xcc91c284 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca6fd84 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccbe3b29 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xccc0c864 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +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 0xcd0eb8cc gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xcd1af976 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd1cfcd1 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xcd1f1867 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3cdc04 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xcd3e11b0 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xcd40170e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xcd4d9fcd devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd5ce3df param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcd5d60a5 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xcd6c060f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7775c8 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd779e1f user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd7cd9d6 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdadde67 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbd447e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde1a1fa sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde57a01 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcde6d288 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xcdf8ec93 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcdff3f97 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xce0582b6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce120d53 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xce1578ea securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xce1bb032 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xce2cf88d nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xce38e2b1 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xce5dfb45 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xce5ed3d0 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce6163e1 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xce667cd9 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xce6c67e6 led_put +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce74fd39 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xce852bf3 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce9d30ae dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xce9d39d0 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcea3b775 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xceac751e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xceadc1c3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xceae7f39 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb4423c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xceca97a1 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xced4b3d9 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xced5b33a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceef797b lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcef2270d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf05f48c clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xcf08347c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf0aded4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcf138d46 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xcf26e972 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf3d86fe usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcf461308 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcf46c5e1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xcf535439 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf5ced11 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcf6c2760 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf83b2a0 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xcfa73b65 netif_carrier_event +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 0xcfdb7faf __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xcfe4983a bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xcfe67af4 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xcfee9288 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xcfffdbe8 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd01b4681 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd01fcc8a acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd029b5a8 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd02dc2ba pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04725bd crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd04a2de1 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xd0559180 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06bfe50 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xd075a104 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0769dd5 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xd07e43f2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xd080f279 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xd0884bfe hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0xd092de93 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b3ba39 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd0b6d48c percpu_down_write +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 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dc99f6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0eaec90 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd0f67dc5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd0f9ec4c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd105e19b account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd118a375 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd126e834 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1530dce da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xd1570730 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1719c94 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd1783a59 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xd17c4f92 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd17d8e7e wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd19580f5 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd19f642a vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xd1ad2b4c tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd1b96b1b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e1162f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xd1e7a936 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f5644f tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xd1f78808 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd1fb81ce pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd231a2aa sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24259b5 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25bcb1a usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd264b1e1 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd2699c17 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd26cfa12 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2746af8 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd280a6bb bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2acc270 events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2be10fa phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd2d57e44 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd2d6ffcc vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd2d761ba trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2dc64f0 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xd2ffe91d vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd306c109 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd311d70e ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd319fe69 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31aef97 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd31b3c68 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd320f097 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3280846 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd328312a device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd33498b1 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd35759a2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37f10fc pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd382dbdf phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd39a8f99 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b2e2bf subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd3bc7f90 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xd3c16cce __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd3c39604 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd3e31d95 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f16ce7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4116121 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd41fc62f bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd435ad4c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd437ebd0 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd443fa18 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45ba097 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd45db3f7 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46fcd9c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd47481e8 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xd4761617 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd479d28b debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd47edc7c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd48df7ab __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd49762d6 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd4a7413b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xd4ac42ef fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd4ac7664 irq_gc_ack_set_bit +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 0xd4c8cd3f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xd4d4f102 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4d929b4 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e6e772 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xd4ea65ab pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xd4ec9eb7 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd4ee31e6 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd4f1bfb8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f5d658 md_start +EXPORT_SYMBOL_GPL vmlinux 0xd502b5ab seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xd52391aa usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53e4e3f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd53fbb60 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xd5407c76 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd541571d ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd5502e81 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xd5524776 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd581fac6 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f4147b __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd5ff2622 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xd63af2b4 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xd63f7e67 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67d4ae6 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd686aaec regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xd6a281bf __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd6a739c4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6c96713 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xd6ccfe2c efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xd6da664c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd6df2d33 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xd6e887a7 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7004076 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd71c15e7 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72a60c7 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd730427a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd7374409 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73e2d04 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75e3c40 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76b0721 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77a5497 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0xd78a52d6 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd78ab226 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd79d7507 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd7adc8f5 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd7adfeb3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd7b18dc4 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7cf14a4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7ebf5e5 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd7f5bdb4 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd8188eb5 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd81eb466 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd82c8714 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xd84d2106 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85019d4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd86fdf7b device_register +EXPORT_SYMBOL_GPL vmlinux 0xd87aaec6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd882527b pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xd8899f00 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd8affed2 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xd8b4b702 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd8b710c3 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd8c6de6a devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e2f4bc __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd91025c9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9117aae user_describe +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 0xd9314030 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd9321a10 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd93608bb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xd9373014 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd9441878 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96cbb90 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xd98a6a33 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd9904b38 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9977037 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9b06f91 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ecef74 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9f7b973 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0722b8 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0ab472 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xda13813d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xda17db40 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xda188f6d pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda1ffc7a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3d8578 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xda54df95 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xda5573c7 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda799cf6 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8df972 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda9fbd2e icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab87132 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xdab88c6c crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xdacc7289 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xdad46e54 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xdad8f744 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafdc358 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xdb025654 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page +EXPORT_SYMBOL_GPL vmlinux 0xdb205606 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xdb307c7d ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xdb47bff6 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb50ebaf vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb85e739 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1847 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb93532e tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xdb9c8ab8 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdba5778c devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdc4fdb led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa5b55 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc046457 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xdc0564b1 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xdc120746 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1620a2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdc293cf9 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xdc2f2404 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xdc381740 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xdc3b8285 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc5191e8 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xdc52e592 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xdc5a7941 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc7dca23 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc7ee4fc gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xdc811005 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc82dc7c crypto_alloc_base +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 0xdcb3c052 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xdcb96dc5 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdcbea18f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdcc58a16 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdccf2acd crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdccfc3ad devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xdcdb940b bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1b5274 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xdd217687 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdd2820ca fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd498258 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd84820c serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xdd8fcd8d regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdd91a28a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xddaa3041 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc01f90 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xddc36276 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xddccc1b9 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xddcd3b2f mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xddd656c0 mmput +EXPORT_SYMBOL_GPL vmlinux 0xdddb2b18 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xddde0ade register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xdde85a47 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xddebba77 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xddf32322 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xddfc18fa device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xde036c03 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xde0efefc msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xde308aeb pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde52f786 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7866c8 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xde7f02fd class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde90ac9d crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xde97dbaf device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xde98fd74 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9d6665 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeb30bfd switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xdeb9df96 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xdebbdd6f irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xdebd8485 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdee9bffa trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf016f00 irq_find_matching_fwspec +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 0xdf1b5576 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27efde md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf309bed sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xdf3751ed key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xdf38cac8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf50a9c2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdf7b6309 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdf7d4541 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf7e5431 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xdf7faa06 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf9951eb bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa0a787 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfa44c70 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xdfb60745 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfce31b2 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xdfd0783d devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdfd603d3 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfe0d335 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xdfe8c7d8 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe008e7f7 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe00a4202 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe00ef2c1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe015232b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe01e2654 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xe0251e6f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03ba895 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04f35df vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xe051160d spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe05a296b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06001d9 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xe06375b8 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0673920 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe07540a7 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xe07adf79 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe07ca984 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe0849cfd regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09fd2d5 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b85582 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xe0baa3ab edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d0847c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0dba48e icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0ed8f88 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe0ff46d3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe1000717 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11062c4 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xe1122d8a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xe125d5b4 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xe1266cfc pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xe127f1f7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xe1465a6c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe1600dcb fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe16b51e4 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe1751f91 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe175a7ca ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe176414e i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c4536 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xe18d3551 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xe197f281 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe1a06a3d mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ab22ee __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe1ad469c blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xe1b821e9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1e4970b acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe1e8e81c power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe1fb5183 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xe1feef03 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe20e887b crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe20f98b6 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xe213ee71 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe21b4536 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xe2265d01 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe23119f7 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe239953e strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe243801e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe25473cb relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe25e273c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe26410ba scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xe28c5a56 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2aba377 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b376bc __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe2c90e14 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe3013a81 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe30bdc01 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe3205873 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe32927b0 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe340af9a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe349fbf5 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xe374728b efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe37f19c8 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xe380bcb1 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe385f6d2 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xe389ddce crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe3949399 cpufreq_cpu_put +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 0xe3b51be8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3cdca90 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xe3de866e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e4e1f9 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3ef2d4c dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe3f060b0 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xe403f9ae syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41a5ee9 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xe41db5ea linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe41e5380 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4518521 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c318a5 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe4c49d6d dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xe4cbdfa1 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe4db7d7a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4fa6bd1 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xe500d2c6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5032c67 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xe52da673 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xe5336188 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58b9994 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe5af0d9a fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c41616 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0f834 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5d28ee5 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe5d588df mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe5f0de07 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xe5f35306 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xe5f3aa28 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe5f82a04 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe6004665 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60ba332 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe612a7a6 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xe61d2776 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe620f0d9 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xe625b447 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe634d170 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe638dc6a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe63bce36 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe65a8879 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xe65bd47c genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xe65c9447 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xe65f036e balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe66f2940 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6759ae9 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xe685f240 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe68765c7 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe69cd288 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xe69e00c1 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6ab07df fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xe6bfb196 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6c2405f sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xe6d220b4 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe6d85f4e dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xe6dbeac2 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe702e1d8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe71c4cfe __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72ff6d6 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7579d4d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xe75bc340 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe7617810 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe785529c mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xe78f6f7b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xe79018f6 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a286ae trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xe7a28e83 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xe7a9158e phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xe7b0ff43 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 +EXPORT_SYMBOL_GPL vmlinux 0xe7c1b15a thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xe7c94941 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe7cfc934 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e104ad ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xe7e36c3e fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xe7e3c309 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe7f1e986 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe80b7514 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81cabc1 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xe821eab7 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe82c9619 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xe838f360 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe8416d07 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL vmlinux 0xe84ae014 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe862fd0f ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe86a4101 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe870aca7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe8860ba3 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xe88c86bc __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe891509e pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c778a8 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xe8d8e2c5 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8df9c04 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe8e22ed9 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8ece2c7 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe8f04ba2 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe90a5747 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9221137 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe92da69c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xe9312056 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe937902f lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9636fe2 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xe966610a vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe9689cc3 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xe96ca5bd debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe973fef2 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xe97e5dc5 __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xe98a505d acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe9925143 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe998e5be ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xe9b2e511 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xe9b5663e __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe9b8cf0a devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe9c444ab dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d3c623 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe9d8fc02 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9e45dfe lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xe9ed9f0a usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +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 0xea15c9b0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xea178813 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xea2dfc94 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xea32484e __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea49305d mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xea51c712 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xea7eae6b perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xea7f6de8 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xea82d546 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xea966220 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xeab07116 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xead2bc25 dm_internal_suspend_fast +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 0xead94009 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xeadcef13 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae63ae0 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeb0c6f2f elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xeb0cd942 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xeb0e6b21 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb1b8a32 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xeb258612 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xeb29b342 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xeb2fb853 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xeb6ba750 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8ecc18 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xeb98bcf0 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xeb9903b0 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xebb4d4d1 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xebbf6012 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcadba4 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebde80ba platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xebe22a4c l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xebf23c1a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xebf91ba8 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xec055e60 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xec1b7939 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xec1def33 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xec3698e1 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xec372de4 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xec3b8466 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xec40d363 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xec45bc8a noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec59140d perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec5e8d63 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec83639a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xec905548 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xeca4e3c8 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbce164 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdc2dae __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xecdd0cf1 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xecec7c9a blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xecfd3d38 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xed0854ad __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xed0cea09 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xed10d08b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xed1d8828 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xed207e7e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2ddbfa set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xed2e55a0 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3fae38 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xed43ef40 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xed526344 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xed5448e9 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xed573f65 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xed57eb4c disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xed6aa713 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed91d666 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xed9abeac xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xeda5dce9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda8461e disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xeda9bf40 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xedcfd2cf xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd2ca16 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedd9cd04 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xede2df34 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xede4fc63 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee0a6814 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee20051d gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3e6c7d skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee56e655 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xee5bdd6c sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xee5f12bc proc_get_parent_data +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 0xee6fac98 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xee8d2ae3 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xee99ba49 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeea0685b pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xeea877fc x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xeeade72c param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xeecda1d8 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee1e191 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef0f203 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xef1374d9 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xef18d2b3 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef20c94b mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2e4c5f __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5286cc devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xef561c63 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xef565c31 gpiochip_unlock_as_irq +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 0xef7275d5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef8073f1 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xef8c81ff kern_mount +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 0xefc00da3 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xefc5ebd8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xefd40051 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xefd8ef18 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefefa5b5 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xefff0132 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xf0021b00 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf03bd6af cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf042a40d i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04efb08 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf0593601 hwspin_lock_unregister +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 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09878b6 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf09a90cc sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xf0aa7768 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf0c3261b reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf10674b2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf11d6060 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf11d9290 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xf121efc3 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xf12c1586 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xf13eea59 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf141b7db ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1458ab4 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf15b8f15 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf15babfa tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf1729c2b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf173b7f0 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf193bae3 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xf1a8c4e5 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf1aac2b6 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf1b800b5 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1d0e72a xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xf1db3d34 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xf1e405a0 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3a8d usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xf1fb6bf1 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf1fdafb6 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xf206422b acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21ef60f fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf25d1f81 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf26c8a53 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf280ac0f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2933ebd scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a11936 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf2a3ba8f __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xf2afcd13 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b34a6f bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xf2c2b225 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c366e0 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2d7865d device_create +EXPORT_SYMBOL_GPL vmlinux 0xf2da6946 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2ea88e8 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf2f201a8 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2fa0a9f skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf302c4b4 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf306f228 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf30887d9 debugfs_create_bool +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 0xf31ad8ca sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf321a7d3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33bcf83 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf358083e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf359a90e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf364f901 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xf367b0a2 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3967c94 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xf39f4c8f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf3b16d64 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b736bf transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d2b129 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf3d532dc acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xf3d8b111 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xf3dcbdf6 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xf3ef7b33 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xf406fff1 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf41057ca ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf4131b33 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf42e1a65 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xf4325102 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf43ddd99 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xf440745d __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf4438ce9 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf448df9b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf458523f ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xf467e45b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf48b81c8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf4a9d03b __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b439f3 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xf4c12444 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xf4c28039 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d0bc20 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf4d356e4 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4df3e96 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf4e309c7 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xf4ec8911 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf506aab0 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf51737cd pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xf51cb13d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xf53acd27 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf552cf03 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf557286c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xf559e451 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf55ce83b __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf587b2a6 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf58abf2f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf59633ff usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a25a74 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b3f634 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xf5c0cb52 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf5e8da89 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f9efa7 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xf6073f4d __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xf60dcaf0 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf6111198 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf637b9b3 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf657136d virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf667b78d dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf66d4221 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf66d4af3 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6911f65 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xf693dc09 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6b46007 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xf6ba3b02 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ca4e79 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6dcbaf0 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6e14042 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e8ef40 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf6e901b1 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xf6ea523b genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f47671 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf6f4d95c __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf714719d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf7300268 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xf73a4558 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf750fbf8 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf764f40f nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7698fc8 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xf774b305 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77a66ee ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf77cbcd4 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf781ab97 regmap_async_complete +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 0xf7983aef memremap_pages +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 0xf7cba840 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf80957b1 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf813fa3c pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xf8150e7f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf830a538 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf832f701 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xf8417c5f debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xf84a22ce class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf881e2ac gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8ab14a3 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xf8b633b6 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xf8be1316 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xf8e415b6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xf8e6f1b9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf902f7b2 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf90c261d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf91a2a90 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xf91e4d8f of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf92f21c8 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf935f574 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xf942b50e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95e44df sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xf9696cf0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf9711d20 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf978c2d6 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xf97d1600 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf9889032 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xf990da91 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b822a4 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf9c53fef wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf9c9f70f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf9e65782 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xf9ee1209 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf9f78d78 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9ffdafb get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa242aa2 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa2bda6e pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa36dee1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xfa3f2de7 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa5c0402 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xfa5e58de ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xfa5f078d static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xfa600b30 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfaa370f6 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab00c85 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabe1f51 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae291d9 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xfae84500 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfaead581 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xfaf919ba kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xfb1001f9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xfb1458e5 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb34b3e1 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xfb38b1a1 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xfb39d282 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xfb51a191 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb62c567 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xfb6c6b96 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb860923 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xfb86db83 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfb90d9de devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xfb9ad35e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xfba25827 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfba6a8a6 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfba82603 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xfbb2192d uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd93c73 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xfbe9356a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfbeb8298 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbf667c5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xfbf74718 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xfbfe7410 thermal_zone_get_slope +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 0xfc0d1968 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc21a854 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfc23636e vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2b6473 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc5daced __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfc702a94 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xfc7b5b73 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc7f14d3 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xfc8abc09 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfc9a4426 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfca3d3cf tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcba872a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1bc26 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc2b3cb usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xfcc85887 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfce4e6c7 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd070696 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xfd0fef52 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xfd22b73e ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3d808a unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfd3db6f3 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xfd48f634 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xfd4c8087 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfd523486 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd60093b scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7821f8 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfd88957b debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xfd93be59 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xfda587a8 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xfdac5e95 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xfdad35db irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xfdaf32ab pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd4b3d2 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfde49b9c debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfde4e881 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdffacdc register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe0596d6 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe245fca devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xfe371a0a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3bd304 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfe3fa9ce gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe46f360 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe5d8404 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfe6f5da2 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe83269a devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe87795b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe999c10 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xfe9be13c __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xfea663d4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xfeb45def input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed47b8e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff11cacc pinctrl_find_gpio_range_from_pin_nolock +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 0xff302f76 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xff358ca8 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4d066f dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xff4d4656 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xff4de823 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xff686933 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xff6af778 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xff6e9042 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xff7e05f7 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff842662 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xff88e65f __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff8f29ea fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xff8f5439 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa63b80 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbf68f1 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffd1336b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xffd19924 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xffe130c0 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xffed22d4 device_change_owner +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x013cbbb8 hwmon_device_register_for_thermal vmlinux +I915_GVT EXPORT_SYMBOL_GPL 0x0cfeb1f0 __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0f269ef4 __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0f744f74 intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x13f23c70 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1c3516f7 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x253bb7b8 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x26118c98 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x26d4294a i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x28281bb3 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2cfd06f7 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x38272130 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4689f39a i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4e639fe4 i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5181a803 i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x528c50f9 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5b81c38f __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5c3e44de i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6343a02c i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7623e3e1 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7ffdcc3e i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x90b49af1 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x949fd6a6 i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x97b8126c intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb3a83689 i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb5c21f44 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc86fb2d9 i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc87b7a30 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd61db68a __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe0255ffb intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe3d56118 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe6c6d161 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe9198c8c i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xef0aa545 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf33e7b84 __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf5d28f2d i915_request_wait drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x0f3fc963 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x1d04d5e0 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x2d2157f9 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x50616e90 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xc7bf72a0 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xfb5d1398 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IIO_AD5592R EXPORT_SYMBOL_GPL 0x2fa74752 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x8a013f91 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x29c8a19d ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x62c7504d ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x1176074a ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xe28b2078 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x36fd0cec ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xeec0efb5 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x14b3abb0 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x4a56ee46 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x03b8ae50 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x68a3d4c5 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7ff732ae __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8b90c5c4 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8c81823b adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa8e15e57 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabda0150 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xac50b0ad __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xeb0c6d65 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xec3405bc devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x60a373db __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5dcfba8b adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xda663f0c adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xe1770eef adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x19979080 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xfa6b354a adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x00868ee2 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x25443001 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4e988534 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6fc9c6ea ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x83982bcb ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xaa86f087 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbc5055f4 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc85a33a9 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xcf84516d ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe4166970 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x206abbca bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x29f243fd bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x26cde36d bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x404e160d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x454b6b35 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xca98c49d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x463fe3a7 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xa561d3f8 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xc6f72ce6 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xf76e1fea bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xbf72bf3a bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xfdcc5bc7 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x3d7a0f21 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xc2ce5926 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xcbf5409a bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xf4b300c2 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x26041d98 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x334052df fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x38ff9b0c fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9a210fc9 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x00ea097b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x04d69a08 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x2c672bad hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2e9f9e3d hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4e353bd5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4f13079f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x505c1de6 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x88a567a3 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x88dd1fe4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbb3e1ac3 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc199a29f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcdba8f7e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0a650524 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2b41de6e hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x41fe9194 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x72018fdc hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x8ece1173 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xcb63472d hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd28da9ad hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xe43b922c hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x16c9aaa6 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x3febf424 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xdfbff83d kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2e3ce1f6 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x52e973a3 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x994ffa38 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa909fd9e ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb8977dfd ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc18e4974 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcb8610a1 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe4900bd0 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe5359f6c ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x3dd909cb mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfae4ce71 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfdf03223 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x00f540ed mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0a5fa77e mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x183ce95c mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1f1bd745 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x243f6f31 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x39a75107 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5eb5a873 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x64acd10c mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x77875e9b mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x78e37d2d mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xabda9d01 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xba2c24c7 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc2e4952a mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd19b1a84 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xec177283 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf7d25846 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x351ad316 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0xd5d7dcd6 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xfbef2197 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x230e4c5f rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0xcab4245c scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xff34c69a scd30_probe drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x00d2db21 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x197e5e05 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x3794c842 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4e6b919e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6baded53 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6fc819bf ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9aae9b6d ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xba1a0171 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x16b0324b st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x283377cc st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x30e70b2e st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x361e3897 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x419feb2b st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x43d979d8 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4c3a08b6 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4d601c6d st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x50eb4d51 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5491bc36 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x67f54f90 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x6d9087c0 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x707330b0 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x70d9445c st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x796c6491 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xb052ec81 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xb9d718ec st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc1c33d66 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc554e43b st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc7a71728 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xd4507750 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd5e1050b st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe29baadc st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xeb582883 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf6018431 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xfd49dddf st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xf1e41d7b st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x0144cd5a st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x0e63e745 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x10a997fd zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x28c784eb zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9bda335c zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xac9d8d9b zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xed4c798e zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xff367f2c zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x2b72bad6 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xac156a23 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x2c725389 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x853d7f1c uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xf29f5712 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IWLWIFI EXPORT_SYMBOL_GPL 0x00c6c318 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0661e8c7 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x097f21fa iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0b742dc8 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x103c6a56 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1051ee41 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x11329c2d iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x13cd4a54 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17581887 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x199d331f iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ec203a0 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2091318b iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x282db139 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bdfe4ea iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35de9a51 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37b6a3df iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x390c3fb6 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b98be81 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cc66b45 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ce2b500 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3e9cd786 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f4dfd50 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43f26064 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45a88ae2 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49dbb083 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4b5a4131 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d4552f6 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x522c4e6a iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x560dbb78 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59f4081d iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d050a4b iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e90f0ac iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61a17375 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61adf868 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c94f16d iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e348f86 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e50a806 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6fab92d2 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x819528f6 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84c4ffc7 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88a907a7 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88bdec35 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f784013 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x903a53ad iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94d1e0e7 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x976986d6 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9926c55b iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9a9b193d iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9c68ff5d iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d1cf4b9 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9f2a1d5d iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7124087 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa9f447cf iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xab2bc57e iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad2617bb iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaf003ade _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb47c7b22 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7bca443 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbd18e155 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfedec28 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc0873fc9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2387e29 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc36d2baf iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc57bac1c iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc708646f iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd06a256 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd43eb83 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0e5fa93 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd1de7728 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3423a0b iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd457aeb1 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe5355837 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe98134d8 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xedc3af7b iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf31ff308 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x0a3b9f76 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x249d2150 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x2dce9c5d __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e21c685 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4ec01b6e mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f11dbb6 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x73853769 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x83adad9a mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94265759 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa2c78d7d mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbe1b437c mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd8f8eb42 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd9c7bb50 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe1398413 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe20a7b48 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xee4c512e mcb_unregister_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x27671899 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b41ffea nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9e4d45c6 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaa0b056a nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd7039449 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdb4fb700 nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x02569909 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x04fec07e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x052189fd peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x09e5a2ad peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x255458f5 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2583328f peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2a949fe9 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3370bf37 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x39906b9f peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4157da54 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x427f297a peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4db20ecc peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6995dcb4 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6a6f5169 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e6f85b3 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8309ac61 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x854369d7 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e8b4761 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x92c48b74 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9ed938e6 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaa320b53 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb711b6a4 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc82bc5e7 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcc01fac4 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcf3fd08a peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd0a8abf6 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdcd2f319 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf1bf51a7 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf407b520 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x153630cf peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x6d397321 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8e9a3f2b peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xb79b10e6 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xdf4a2aea peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x24ea0944 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x31321ad8 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4b7c67fc pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x60dc686a pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x63a3c086 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x69bab006 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6a03de91 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6b5d695f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x722a8d25 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x847326b8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa5d7d6d6 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa76b2e83 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaa97d052 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb1bbf0ba pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb98de382 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc38e11de pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd7b4f1dd pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xebe83c35 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf95540fa pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x28275901 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x601fb52c sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xefddceb9 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xf3773f0a sx_common_write_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0e9b1004 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x31b96028 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x37925208 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x81b127d6 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x18dfbd0e cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x8786e909 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xb591f04e cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x49215a78 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x5c5d3c74 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x8f4c483c asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xa091d83b acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xd3827499 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe764baaa acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x81271ee3 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xce6a5e8e acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x245a92ae cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xad064d44 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc4956725 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x2ba67369 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x689eb225 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x8079a731 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x6156255a hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x29ff3c7d cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x609bc942 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x03f2767d max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1187d6b0 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x183d162b max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x20ca97fa max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x37caf42d max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x62a59af3 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x661a2065 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7afe541b max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x80b1b594 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8638b9a8 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x87362468 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9c5c8e32 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa293dbe5 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x12e1b150 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x39bd682e sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6a8e66e4 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x90e06214 sof_rt1019_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x91335664 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xbcaa8be2 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xc01823b6 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xf2199eb6 sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x78518a7e sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x7d9fcf89 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x85d9f6ab sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x0d9fa3f3 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1adc6b30 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35fb27dd acp_sof_ipc_irq_thread sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x39fbe5f2 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x3de5b6e2 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4119f31a acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x411ba479 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x471b4a17 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x47995fa3 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x511762d1 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5bebf005 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x719a13d6 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7caa431e acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7e59da1a acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x88b9d2a5 acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xaa5239b4 amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc7d17870 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xccb490ea acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe2244fd7 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf6d149db acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xfcfb4581 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x1a751a85 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x25105fae sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4b129fb0 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x52f21852 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x663f9ec5 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x72410f87 sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9ed640ef sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa1574c72 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xab10b9a0 sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xae562dc1 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbd97d187 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xca408e55 sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe83ea6b2 sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xec9e898f sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf394d4f8 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf7f5d902 sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfe49d77f sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x52aedd06 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x92524644 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xe0b20ff9 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x1113c90d hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x333f6919 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x840a7ec0 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x1154a516 atom_set_mach_params 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 0x622d55c2 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb1f7adb6 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xbc94d3fc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc8c72a39 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc8ed63ce atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xcade057c atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xdf152847 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe8349f9c atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0504a8d4 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x14f58e75 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x211a5e74 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x38b55a18 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3f907cf6 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x521ed29f sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x64d28cbc sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6c89d107 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75e52c40 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7f78d1ee sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x901f1231 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x95c5000e adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9c9eac0f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb1600537 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb3f45422 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc4ae27f9 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc838865a ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcd622bd5 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe3cb4de3 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe95a4ce1 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x063e2a52 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x85b371b8 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xe4203956 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xe5d5decd sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x41bc3311 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x039d8b45 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x576b08c2 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 0x6e3247ee 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 0xe51ca4a6 sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x02a2f807 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x24540257 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3fc022eb dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x95fc308b dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x99d72512 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa00f2d45 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa51c6251 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdef401e2 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe5049eb7 dw_spi_update_config drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x05e3b8e5 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2a807460 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x307fbff9 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3367b231 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a7c5d85 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cae52e0 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cb092b3 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x62b9262e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x69a37811 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7102debf usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b187228 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f5ab94e usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x883b8c28 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x98f56f20 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc5ddc786 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc614b4ab usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc8ef8f7f fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc93eaa84 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd1318650 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd16b0e92 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd6f2972c usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd87d10d8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdf36b606 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe0e6f494 usb_stor_bulk_srb drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/amd64/generic.compiler b/debian.hwe-5.19/abi/amd64/generic.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/amd64/generic.modules b/debian.hwe-5.19/abi/amd64/generic.modules new file mode 100644 index 000000000000..1febf5af8d24 --- /dev/null +++ b/debian.hwe-5.19/abi/amd64/generic.modules @@ -0,0 +1,6186 @@ +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 +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +ak8974 +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 +amc6821 +amd +amd-pmc +amd-rng +amd-uncore +amd-xgbe +amd5536udc_pci +amd64_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amd_hsmp +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 +amt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-ec-sensors +asus-laptop +asus-nb-wmi +asus-tf103c-dock +asus-wireless +asus-wmi +asus_atk0110 +asus_wmi_sensors +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 +ax88796c +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 +barco-p50-gpio +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 +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 +btmtk +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_acpi +chromeos_laptop +chromeos_privacy_screen +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-tps68470 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +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 +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 +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ct82c710 +ctucanfd +ctucanfd_pci +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +ddbridge-dummy-fe +de2104x +decnet +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 +delta-ahe50dc-fan +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 +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_buddy +drm_cma_helper +drm_display_helper +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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_secret +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 +eni_vdpa +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +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 +fsa4480 +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 +funcore +funeth +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +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-sim +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tps68470 +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_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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hisi-spmi-controller +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wmi +hp03 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +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-ccgx-ucsi +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-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-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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 +ina238 +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-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-uncore-frequency-common +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_chtdc_ti_pwrbtn +intel_chtwc_int33fe +intel_crystal_cove_charger +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_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_sdsi +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_vsec +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 +ip5xxx_power +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 +iqs7222 +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 +ishtp_eclite +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-pwm-multicolor +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 +lenovo-yogabook-wmi +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 +lightning +line-display +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +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 +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 +ltc2688 +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 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max77826-regulator +max77976_charger +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-serial +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-gsc +mei-me +mei-txe +mei_hdcp +mei_phy +mei_pxp +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_ep +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-vfio-pci +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxreg-lc +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 +mp5023 +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 +mse102x +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 +mt7921-common +mt7921e +mt7921s +mt7921u +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 +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +nvsw-sn2201 +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +octeon_ep +of_mmc_spi +of_xilinx_wdt +ofb +og01a1b +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 +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-mipi-dbi +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 +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pfr_telemetry +pfr_update +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 +plfxlc +pli1209bc +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 +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 +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 +rpmsg_char +rpmsg_core +rpmsg_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +scd4x +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 +sensehat-joystick +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 +sev-guest +sf-pdma +sfc +sfc-falcon +sfc-siena +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 +simatic-ipc +simatic-ipc-leds +simatic-ipc-wdt +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3-avx-x86_64 +sm3_generic +sm4 +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-acp-config +snd-acp-i2s +snd-acp-legacy-mach +snd-acp-mach +snd-acp-pci +snd-acp-pcm +snd-acp-pdm +snd-acp-renoir +snd-acp-sof-mach +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-cs-dsp-ctls +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-pci-ps +snd-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-ps-pdm-dma +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-acp5x-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-ak4375 +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-avs +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cirrus-common +snd-soc-intel-sof-maxim-common +snd-soc-intel-sof-realtek-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-macro-common +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-ps-mach +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt1011 +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1019 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +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-ssp-amp +snd-soc-sof_cs42l42 +snd-soc-sof_da7219_max98373 +snd-soc-sof_es8336 +snd-soc-sof_nau8825 +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-tas5805m +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-amd-acp +snd-sof-amd-renoir +snd-sof-intel-atom +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-pci +snd-sof-pci-intel-apl +snd-sof-pci-intel-cnl +snd-sof-pci-intel-icl +snd-sof-pci-intel-mtl +snd-sof-pci-intel-tgl +snd-sof-pci-intel-tng +snd-sof-probes +snd-sof-utils +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-intel +spi-intel-pci +spi-intel-platform +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-rockchip +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3-wmi +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tdx-guest +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-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +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 +tmp464 +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_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 +tps68470-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +typec_wcove +typhoon +u132-hcd +uPD60620 +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 +ug3105_battery +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 +vf610_dac +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 +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 +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 +vmgenid +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 +winmate-fm07-keys +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 +wusb3801 +wwan_hwsim +x25 +x38_edac +x86-android-tablets +x86_pkg_temp_thermal +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +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 +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 +zr364xx +zram +zstd +zunicode +zzstd diff --git a/debian.hwe-5.19/abi/amd64/generic.retpoline b/debian.hwe-5.19/abi/amd64/generic.retpoline new file mode 100644 index 000000000000..945dc3fef780 --- /dev/null +++ b/debian.hwe-5.19/abi/amd64/generic.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.hwe-5.19/abi/arm64/generic b/debian.hwe-5.19/abi/arm64/generic new file mode 100644 index 000000000000..0ad74a686a66 --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic @@ -0,0 +1,27406 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x28785a7f crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2f1d8bbd crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9d9e958d crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x02b2b363 is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0e457ac9 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0f56dd6c is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x174410c6 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x17b40e4d clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x185eaf4f devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1876ab06 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1b5ed0c4 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x39337346 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x40a2e80a cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5167ccf1 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x52705416 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5a70a50c cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x612c039a cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6265b06b cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6cef21b2 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7060c7da cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71b2d426 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x72c7c9f6 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7515bae0 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ade4814 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x827e6dc3 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x90480734 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x96787b10 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x98d45787 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9934802f devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x99a69f6a cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e4755fb devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa0509fb5 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa0b60f8d cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2f96664 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa883620b devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xafcff102 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb189f3b8 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbbbd8774 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc4a09ae1 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd0294023 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd61599e1 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9ee300e to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd0efaf5 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3c5b03f cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe87325a0 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xed179ca2 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf348eeb4 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf3b03c42 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf6039771 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf6cdebb3 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf75e0de9 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfa8e1f9c cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfda304fb is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xff2961ee schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0498f234 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x09fa6c6e dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1ee5fed2 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x853ec09f dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9d2a9868 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa190d177 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa8d6768d dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb8dff6f3 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb95e4859 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcde02152 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd37951f6 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd718d31d dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdde64465 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe1baa634 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe34bac4a dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfd130ecc dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xffacdef5 dma_buf_begin_cpu_access vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xc110a26c ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +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 0xdb786e41 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x56d0cbbd crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x71b42aa8 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x747385aa crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb5654bd1 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xbad34c36 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xf248f2b9 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x122aa4df crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x28f151e0 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x88ca8101 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x440fb4d5 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0x66fa8712 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2b8c0b37 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xb10d3757 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 0x055e6123 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x0b245afc pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4332a27e pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6e0b8f7c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x82cdb349 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x9654b2dd pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x96a91f06 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb0d6f13c pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb9de6564 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xc7b765ed pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xe2c98e4b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xecfe4448 pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x926d7c62 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x8f563b95 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x0eb5d080 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x51533a48 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6dd054df ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7cb09eca ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xe824000a ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum +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 0x49b2c4ad st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x76299124 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7faf898d st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb5171705 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x62dedc5d xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x77c37a66 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc25a6cee xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1d344736 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5feab369 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7c719a1b 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 0x5ae9d742 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xac0e0f79 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe6ecc947 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/crypto/caam/caam 0x0a866265 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam 0x17572340 caam_congested +EXPORT_SYMBOL drivers/crypto/caam/caam 0x19239a5f caam_drv_ctx_init +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 0xa756daff caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xae7dd7b9 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2bd2cb4e split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6c7ada99 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcc7e7870 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe07da023 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xfd506709 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 0x59ce9a63 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x671a2579 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 0xfb3cc67b xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x02e8f59d fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10074143 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x194b0be9 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2bbf4565 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x338616cd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3abce968 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x41932b8f fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x480af4f5 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4f778262 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5e0aa4b8 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x719f449b fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x927f2852 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2d1ae27 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcbb44fd fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbd1e8506 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbde83f23 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc53f4fdd fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc7b7e6c2 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd56bef51 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdfd7341f fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe01214a1 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe651005d fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe798f384 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xedffb683 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1e31f20 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3c13a29 fw_iso_context_start +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3cb14a91 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6a2b4931 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfce249b7 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x5e12a6e4 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xc8c01e99 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0282af28 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0292ca17 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x060bf567 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x076d126f drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x076ff6fc drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0931a3d4 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0a0960d8 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b0a44e4 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fe3f695 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x118fbf80 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16b0aed9 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x189c94be drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1dfbde32 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1e6a8ae1 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20fa05ef drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23995b2a drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24e9535f drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26faf9c9 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a542408 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2cb92b7d drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2d7efd63 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ea155b6 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3594701f drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3678579f drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38f30246 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a4bfc5a drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d5ada07 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3eb467fb drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4374bf01 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48025510 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4a244d43 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d0c80b5 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ff3bf7d drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5108989f drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5262f4b4 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x53228932 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x551a35bb drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x553d616d drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x56fc2809 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c59b36d drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ca8377f drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e83d7de drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x617c2130 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x658e96c2 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6649482b drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b1dac02 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bcd7929 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c45ea28 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d687767 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f170e21 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x745477c2 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74e98514 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x750fa401 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75311f81 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75f5014b drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7692e01e drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76de9ec8 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x78960ed2 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c7ec0e7 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x806ea60b drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84e1806a drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8729600a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b213523 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d6caa78 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e5b6a2c drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e9577e2 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8f02188d drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9112cd95 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x914dba3c drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x916aeb70 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x91c3abb5 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92ac4ccc drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x931c3364 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x94b24c66 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x99cb890d drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a302824 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0978deb drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1ef9cdd drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa477c68c drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb49867a8 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6c66b55 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7c741c5 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba382737 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbdfe831d drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbfa4d0d1 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0318fbb drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc0a9198d drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc11845e6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc13b4426 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc63c3c71 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc70c114e drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc87e94b6 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd11a0734 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd240ffcb drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd25e7098 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4af19eb drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd92447ed drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde8d074f drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde99b72f drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe50a9f78 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xebdf20d0 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee064243 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0b62564 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf110b9fe drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf768a482 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb920cd3 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfba15cc6 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe60c5fd drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00204f3a drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x007ff379 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00dbcdf9 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00fdc2b9 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012d1fc7 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0161411b drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c8c424 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f2b873 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0280544d drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x029b764a drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03b84935 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03fe173c drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x042efa10 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04924079 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f1b322 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09319c53 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a496def drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a616d6b drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a776bd1 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c05904d drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc8aeea drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f68b86e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb19aac drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x100b5a22 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1045b833 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x122fc9e2 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a67003 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ac0f02 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137e7889 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x146e19b3 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15216039 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1664b540 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16707855 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b38a21 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x173ae2eb drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176eff6a drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x184c7f5d drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18ddaa53 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19229f4e drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a21e0f0 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8259d6 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb7cc33 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bec0d1b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c99c16e drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d96cafe drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea01351 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f8c0f9d drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2102c224 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x219fe2d6 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21d342a7 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f87db7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22571bce drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e2a505 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a316e4 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24195203 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24860080 drm_framebuffer_plane_width +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 0x25a0e5c1 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x268c7b98 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2776e067 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27926a6c drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e6c5d0 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e38cbb drm_dev_alloc +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 0x2a9859ec drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aee2fd5 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b55f8df drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfdfb3f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d22842f drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ddecb01 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f395d65 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f623327 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3061696f drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3111c3e3 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313bde5f drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x313f25c4 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x325218a1 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34619598 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35146b74 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3820fa11 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38dcead5 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a5cca4f drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3afa5db8 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2f0258 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b5a2c01 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b7ee5e7 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b99c1ce drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c5211a0 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6caa01 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eead496 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f23b7e9 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f66ca88 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbf5984 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3feac201 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41737319 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41863a6c drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x418a812b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x430665a4 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x449af6a5 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e31a52 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4574eec3 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a9dfb1 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4830f53f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bae4c6 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f2822b drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49131456 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499ed8b6 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7e3b2e drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bd4238d drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c99a691 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cdea1a6 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dce3fad drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de2d584 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4fa231 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e51a71e drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec49ac3 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5053efbd drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c4fca3 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50daa4da drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51ee5bbf drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x527a2c7d drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ebe45f drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5495569b drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56229bbb drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5679144b drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x579bafa5 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57ec1bff drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5893d54c drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x592b074a drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597f6c1c drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59eb4a08 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3b84bf drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b3c57ad drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b827c7a drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc29f36 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cf875f2 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2ee61c drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f87abce drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fbb43c4 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61584fa5 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61941e96 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621fbbb5 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x632f96f6 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63e28b16 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x642e2f3a drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x648d1899 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653a6084 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657b0aa2 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65980ef3 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6628a46b drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x665a4984 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68029e01 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69a2f872 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b1de239 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b4923a5 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c0328a7 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c5f1652 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb41289 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb72754 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d1bc7a3 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d259f71 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d961695 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e149dfd drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f57ee26 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711ddd15 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a85aa1 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723c99be drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72464711 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7253708d drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ef7ba5 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73364695 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7452d95b drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74ffbb19 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75361016 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a39c8c drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76026f04 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x767808af drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c2d4e5 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b2933d drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7924fa59 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a443cb6 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b155079 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b39b292 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb1475b drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd69f4c drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d091da8 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dab07d3 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dcb73d5 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eafc66a drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f15f4b0 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8101eb4e drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8112b00a drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f9ef1e drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8305ee98 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x836fe540 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838d6ce2 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x839d16a6 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8433e54e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x857525bf drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x869b3b19 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x874571df drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x887753a7 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8acf61db drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b95b41e drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbf8628 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cc2451d __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8da77601 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f9e0bb drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9154ea9b drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91c01c6b drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925f7e03 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x942e3b9c drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94909820 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95db3132 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ed247f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98c91595 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x991f1b85 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9976744d drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0fc399 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9955c8 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b895be0 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c01d152 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c5f351c drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c699140 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cb498dc drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cd0a9c5 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0a98b3 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d5e23e6 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d90f16b drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e9105c4 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9faeda78 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fcefb09 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fef40b1 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2ec1d15 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa426ed41 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46dbdad drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6609c42 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d250ef drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8cbc00e drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa1f5dfa drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab22a96 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab19b2af drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac8a5c19 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad013300 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad89d4a8 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae59a059 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae77ea1f drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec0560d drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf522275 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb057ca82 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0633b08 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fc9561 drm_mode_probed_add +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 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44181a2 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb653278c drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb701a8dd drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb776b0a2 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77b41ad drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb802a023 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8adc78c drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb982e9b3 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b2c5f8 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9dd5f43 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba36aa13 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3df0a1 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba963459 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb29fdf9 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc1bd50e drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3cf7dd drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbccdeb89 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6681bf drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbddc41f8 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe315488 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9c55c7 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00f9697 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0859ef1 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ad871a drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c60bc5 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1f817c0 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3f06806 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4287ffb drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4437deb drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc45d11c2 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4fa64a6 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56e9653 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b1d8bc drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67b8db4 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7910e38 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b928a8 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7d04fc5 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc853965a drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc85db94e drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca783425 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbeb9556 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc07889d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebf0b0f drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf7b7106 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b08fff drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21ace5c drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2450071 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24693e5 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d2a686 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f7af58 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd434be9a drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43c296e drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd56a59a6 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd57c4ccf drm_client_framebuffer_delete +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 0xd7d3a039 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd92a3567 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bc2a2f drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f2cf0b drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda1763a2 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda1873ff drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5a29a8 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb989a02 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc425a2c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb2d690 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd1585c9 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc9cd8b drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfd2bfd drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde4b1d1b drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde59c6d2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf41aad1 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfb7c6a9 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0b8e6f3 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f8cde7 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2776f42 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe396278d drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4142255 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe415cb8b drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43e8989 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58aa4a0 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f77c1d drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7ba46bc drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7c59bb4 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7fd95ac drm_writeback_signal_completion +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 0xe91d1f86 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93f70b5 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94082ac drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe96b9cf2 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeabaeb34 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec8082c5 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xececb1e6 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed843d35 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee5c3fde drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeedb7830 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdec519 __devm_drm_dev_alloc +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 0xf14c8691 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28ac1e4 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf32593b7 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37e8fa9 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c134e1 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf635c217 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf653dbca drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf688adf1 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6d3008b drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7a0dea6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d6f6d9 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf92e0835 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7c0f82 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb248575 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfcac27 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc229e7b drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5d5d8e drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb796d6 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe9155d8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe91ea2e drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffa8e28f drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x65931c44 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x7dc57ba9 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0076f0d7 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x010f6e30 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x023ac5ba drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0314574c __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03402055 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0407ce66 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0539ae5e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x055a9019 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ba1e0c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d017e7 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05f773be drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c3d540e drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f5f259d drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd86e66 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fdd2e84 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10c38c4c drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10f06a93 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x116ffe1d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1447f663 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15561d36 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x161939df drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16d9d189 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x172aa0d7 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18fe5d5d drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19fb379f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6a929d drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a9df21a drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b932e97 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fb51fd0 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2337af3b __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2720281a drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2761d035 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b07c600 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3f9eda devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e1128a5 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ed7896b drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f3e3f62 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3023208d drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x307aa105 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e41b92 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329156f5 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34221db6 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35077a6d drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35ba8e3c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35bf5c01 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35d07538 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x368b3165 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3812b264 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d82724d drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e4567a1 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e7063f8 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6815e1 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b65b43 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x412b377e drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d12c1a drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45530728 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49188372 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a61e83d drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4abe7186 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e05b45a drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f7203d1 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50c60ea2 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5105f0af drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51398e2a drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5385e8e1 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5608b2b5 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x570db9d5 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59be6b9c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c18818c drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63211985 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65ae742a __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66af3dc5 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x673e835f drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688e3c67 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69197c52 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69815b30 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a0bb5e6 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a294bc4 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a502254 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a82eec7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bab7d25 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6daf4b69 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dc1526e drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a0670b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71076879 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72917da0 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7315c988 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ade7cc drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7608dd57 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76612fb8 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a13d048 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b373ba5 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cba9ba5 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cf7d39e drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ffb7ce8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81b330af drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c6d462 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82208bba drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d24d9f drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x875a6c6e drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8935b807 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b9ea1fc drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d178780 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f4b253d drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a678ab drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94f5b13d drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x986cb702 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98aec199 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a486062 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b451ff2 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d62ef4e drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0150787 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0aa1be3 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e1f6af drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1b14624 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28a73b4 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8860d24 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaad1d24f drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac667591 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacac001a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad962d02 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb02780e7 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27edf84 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5f7258d drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a845d2 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba9c85ac drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc0d3bb8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe665b22 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf6d43c7 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0168b0a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0983fbb drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0c196b2 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0e2b422 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1ea4994 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3ec6819 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc42f81c8 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5d5e995 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc62c682c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6bc2ce3 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc88649ba drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96e69fd drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d5af2b drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca125d44 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5d0ffc drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbcc6a3d drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf06ac82 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfff01c8 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0c8be6e drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd46dcd77 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd49df014 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6dad239 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6e88090 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7bec750 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda65e2bf drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb985576 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbd8a743 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc6b1034 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd335dba drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd37dbe7 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf20d604 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2d210e1 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2d44401 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2ea260e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe385dd42 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3bf4fce __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe49e6852 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe697d2b1 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe986746d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea559999 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xead7796c drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb1be52b drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed6dbaef __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7878ba drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee0f5c40 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf381f5f5 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3a9b252 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf65dea84 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf79cbc08 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7bd53df drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80df63d drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d6b100 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf930a280 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff0ddc6a __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff167734 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04f1e53d mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x23e67586 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2c44f1b9 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x42ad53fa mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4465377f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50ea3131 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x51dfe322 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x54dd5b48 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5a64400b mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7644b7aa mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7ceb795c mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x98d02b96 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc13d3aae mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc60197a0 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdbd77588 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe0a4f8c4 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xefde2e6d mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1a52f954 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3b7f853d drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x442a0974 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7abdce6d drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x84c2c4af drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x88159ade drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x901f7713 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xacf21414 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf19aa085 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfafc7be2 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1002fc26 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x34c2bbd9 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x43f4c923 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7ccf5885 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7e46dcea drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0589ed2d drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0a756789 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0bcfbfd3 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1b95016f drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27beb2de drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2a2b6ee7 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3ffc0889 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x745eae75 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb828e701 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc481ca77 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd40c5918 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xddecb340 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xde721d3a drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe4d46d83 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xec6c5147 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfe99b5b2 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xae16a349 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b296fe4 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b2ffe8f drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0c00844e drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1436dc33 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x21c1e768 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24fb6a31 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3937879e drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3f257b07 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x41847ec4 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x43628e5d drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47254023 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4801782d drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4b0d8d10 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x51705337 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x557912b9 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5678c972 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8c8ab106 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93c440d5 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5a19ecc drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb39016c0 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb673ff5e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbfbc6b1e drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc66b27ad drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xcedc6901 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd41d3b05 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe5c88d4b drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf939abee drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x5387f52d sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x598f5aba sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x7848a748 sun4i_frontend_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa29681b4 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa631b179 sun4i_frontend_format_is_supported +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xaff5546c sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xeb3d0e24 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c429ec2 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x8ca03a8a sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x9200c3e9 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x96f71723 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xabf45476 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xf2808231 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 0x4c29c0c9 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xc6ea3a14 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0009e8d5 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ed986d7 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15cd57e9 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1721c15a ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a03cc11 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1cb63cfc ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x213023b6 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x271833ed ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x276c7f5b ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x289ce06d ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c494b7a ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3111eeaa ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x340c81e4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x372e3750 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e3c3965 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4972babc ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x499c25e2 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ca62b55 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5360dc52 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x595dce2c ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca03223 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca7be16 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ec1eab8 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x625426a3 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66b067ea ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7434c4ea ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7efdc71f ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bb4eb3e ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x900183fb ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94672dbb ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x97b08be4 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ad51f00 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b92478f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa06db5bf ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2ad8af2 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3a5bd40 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabdf9fc3 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0022712 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1c32d6f ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5818a78 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb91f6004 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc129383a ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3b58943 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc740b6d2 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd58b68a2 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd88dfed6 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0c47d74 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe538c8be ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe7169aab ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe80264ca ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea60fa80 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0894025 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2071465 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2720aa6 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2d9bd5f ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf534e179 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf554035a ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8235dfa ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbf1e95e ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfed1dd89 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x08d4e2b8 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x16e25ecf host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1eede9cf host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1fefa034 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x24e7d31f host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2980d37e host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2c6d21fe host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x34eafcf4 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35880c86 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x40fe1010 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x49ca2416 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x511797e0 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x569478fc host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61e466d0 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x622359b0 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x63fd2f4f host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x777174a4 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x794c5559 host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x79872c72 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x904c9f53 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93f9f309 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9465629a host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x98eb4978 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9d2d52de host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa49f9899 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa5f83f35 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaab0920c host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb0f404e3 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb271b957 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbb53ecf6 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd0b18c6a host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd10d17f4 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd9935cfc host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe31cb038 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe7654562 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xebb5427f host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf1eb0f91 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf30596be tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf9b6d882 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xff59e2ba host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xffbcc240 host1x_job_unpin +EXPORT_SYMBOL drivers/hid/hid 0xe1817823 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x08fdfe8b vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4e6bd93a vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb53e066d 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 0xd632ff0a sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x59a80b21 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb562784b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xed9d5cde i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x28c65dcd i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xd6f2c373 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7dae28d0 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x7855002b iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcb69e292 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x4f8bd02c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf16f1a8a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x06cd274c mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x409ab400 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7c6c8329 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb8dce7cc hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xc7978c85 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x167546fe bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0xfb9d0590 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3628565c st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xdc91ae27 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0e8a3872 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x182e9cb7 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x1922aa46 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x1bb46620 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2b6a8e16 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x550d13c8 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7a78eea1 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7da612f3 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8574798e iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x919cab0d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x9bb5a308 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa77df961 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa7ba3585 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xab5c1292 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xabb8e891 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xac3b4c7f iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xb541d747 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xd40a23b5 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xd970382e iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xdc869d22 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xdfd29a71 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xe0ac01c4 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xf207f859 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xa146d1b0 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4b3cf3d1 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x84efc587 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8f93e8df iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc4e26fb0 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x870ad0c8 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8e711993 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc3a3cd8f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xeeedf90f iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4035ecdf iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x60acc7f5 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x347ab04e bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x86165ec9 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xdefc6d2c bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xff90848c bmp280_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x09eb88ff ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x167562b2 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4385f9b1 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5181787e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8867d14b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8fab59c2 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9ecf06ab ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa64bf3f0 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaa5e2310 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc95a9e78 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdb7c27ed ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdcfe62e8 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf09eaf99 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf581a50f ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd19ff74 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00c205a6 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03ceca75 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07cb068f ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08c5cc7c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bc431c2 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c638321 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c860f65 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d94e256 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e951a93 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f3eb1ce ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1282761b ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15f3f235 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x164c6318 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16bdeb0e rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17595cfb ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17a6ad2c ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ecc28e rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e0b82ec rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f5c3a1c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x266b699d ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x273eafad ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2745727c ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2793ea85 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27febf5a rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2be1369e rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb6bcfd ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2de9852b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e52ac69 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e5b20ee rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f52f4e6 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30adaba3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30e41274 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x349aee28 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34fcd682 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x350bc5ba ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c164a5 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x373a6641 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37710c49 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a5f6e9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37bb4dac rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3873271d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c7a67b8 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cb0b157 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4100f16e rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x425d5b2d ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4397f73c rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43b1b0d3 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44154a97 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47106e63 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x473afe14 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x479f69fd ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e364bb rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a687b70 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c0465a3 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d2ba55a ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e5d3fab ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ebee66c rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ec23c96 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f8d2c9 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x540655cf rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f70e82 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55fed90b ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59758cb8 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59d49823 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bbcdeb3 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5deddb58 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6019fccf ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x601dd56b ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60e17325 rdma_user_mmap_entry_remove +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 0x620dfff8 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63453527 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68860fbf rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68874ca8 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6956623d ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a2aa20b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b871adc ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f28b03a ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f38ccef rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f5fd908 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f634b2c ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x711240ea rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72ecd101 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x741c83f4 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x770c376b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77c726d5 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77e3d6e2 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x781da01d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x796e516b __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae14dbd rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ca927c4 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e836bd7 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x802e29da rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x823999cc ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8331b50e ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x881c0608 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ed6f2f6 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fc18831 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9035ba20 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90725020 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91c7cc41 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x920b681b rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92fa8017 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94122a12 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9507e3d2 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95eecb0e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96bd8b42 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9affd371 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c5587bc __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c6c6b2f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d54fb30 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23e997a ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa35c7f27 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3e7f6c3 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa56da5fe ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93b9076 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa205dd1 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaab6d530 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabd7bb23 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad7acd13 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf1540ae ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf3232a1 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb06d142f rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0f50949 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb53bae93 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb572fae1 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb636a3b8 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb74f3303 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbccb59d1 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdd12fb9 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf6e4960 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2054fc4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2615fc9 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc284ada4 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc33d5ab5 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5ae5160 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6bd1c1b ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc89b2378 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8ca59f2 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f85b11 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca4416fa ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcac7f49f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbda9878 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccdf0eac ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd70b75e rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf205ab4 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0f56bfc rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2df7a32 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3b15274 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56b360d ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6423144 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d7560e rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9ca325c rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd07139b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd17af5c rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddf32ac3 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde2a6bf4 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0314caa ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe16ef744 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1c96ce6 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe25f4cbd ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4bba8d7 rdma_move_grh_sgid_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 0xe65b3ebf ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe73b7789 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7816cb8 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8475a27 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85f65f8 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9a325fe ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9d43f2c ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb9a9e8c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecc092fd ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecde9acd ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee30352e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04fc999 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1d4980f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5ae4a9c ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5f9d103 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf602775a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7d07600 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc0a0f38 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcc9bb94 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe937463 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff20cb7e rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff6e7daa ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffbd2361 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffe21c36 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffffe1a8 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b869595 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f1c1da2 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x13a01f91 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x147b306b ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ad56cdb 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 0x23621d1d uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2ce349f7 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3e09b2be uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f44a61d ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4105161a uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x476527b3 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57e521dd ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6499eb73 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7022c75a ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x919762aa uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x934eaf7a uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x995cb2eb ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9971621c ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9a9a64d4 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xad6da17b ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaf23fb8e ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5c91134 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb74fcec2 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0decb93 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0fef50b ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc21ebb24 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3d2174d ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xccce7849 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2c70d65 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe310bfd3 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe5537417 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xef101152 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf2701672 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf292862d uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf4b23f1f ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9f530ba ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfa11f497 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x026a92a3 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x344b447a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x44636d0c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9951592d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xac09844d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcde723c8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xced78853 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeb147972 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x01c5594f rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1da755f8 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e476d2a rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21360a1d rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x32dbd067 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a8228ad rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d9b8e94 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58495e3c rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6040c9c9 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6153553f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68a565a5 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e5c4af6 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78878d80 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8649b25d rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88e577c8 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8cf6f934 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8fc525ef rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fa0c8bc rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2c881eb rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa33053bb rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xabd4fe60 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac468ea6 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf4ea969 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc24e37b5 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5b547a2 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc973410f rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xccdf588e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcf0d6aef rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd022107e rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7366cc4 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe339ba01 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe3ebb333 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed885a8e rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd97906c rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4019fa53 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5d03efe4 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x60344572 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6d37230b rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x82862ba2 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xee20e538 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf29e9dfd rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1d93f092 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x4be2d27d rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x51001497 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 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x94bb8b5f rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x43aec22b rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x55ee9244 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5b49998c rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x79d35dc7 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x92284db6 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xbc33ce35 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d30ff7c gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x94b7798e gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9837d6cc gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa809d703 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd2e4558d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe0744517 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe22590a2 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9a129a1 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xffad90e3 __gameport_register_driver +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x38ea61b2 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa127fbf8 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfb497385 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x696244a9 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x39254b4a ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44c64ebf ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdeda7677 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x5632b738 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 0x831d845c rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2f6a9960 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3bd6c0ee sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4ea17fb4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x96eee9d3 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcab47cdd sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2d538fee ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6e48de11 ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x55c67110 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xe801a207 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x222fc565 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x424db9a9 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x613f79a0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb829d5b4 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xee2b077c 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 0x05bfd46d mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2f4ec3ce mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8c9fcff3 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd955d5a5 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x84e9ba6a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc47e2307 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0fd6c1e9 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x142614c2 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14543d8d mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e65d0c5 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 0x264bdd21 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4021cebc mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41122289 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46266851 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4645e518 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4670fd51 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b0643b3 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d98cfc3 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50a97645 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x544b192a recv_Bchannel +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 0x64edff0e mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c96d8f4 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d15ce12 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83ff1ed7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e098aea mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9098ba0d mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa56aaf90 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb2a2ac9 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 0xf27b96f0 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 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x67d17cce ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xd3c06e82 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x65657434 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x46dd1e38 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7c9ec3a8 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xdb63a126 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x4c7e2914 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x773a9fc1 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xe12353f3 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe8b76992 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x40fbdaad dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x700222bd dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8119027c dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd1df8386 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdb8ecbd6 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe2e25dc2 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x1cbf5108 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0xd43a15dd r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1743951e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x182f11cb flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x25310772 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x29cc439a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x46bbc5f9 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b80421b flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6dfcc46e flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d3d1402 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x92f9d101 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9e9b99e3 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xaf03bf57 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xde4aa816 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf92ddafa 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 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5fa5d1f4 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x83131b1d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xcc92c031 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe35912d8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x26cc2de5 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xe4080839 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x17b286b0 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 0x285cd85a vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x675c23e7 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 0x21143e86 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x5917744f vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x83c157ea vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xab9be70e vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xbb5b08a3 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfa9d85be vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe095df92 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01d3eb5d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04104498 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0bae898a dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16ffa47c dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1a6684ed dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2b3b865d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b0996a8 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x49fe4421 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58a0eee9 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ca06aad dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5d164c89 dvb_generic_open +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 0x6a354f84 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d62613f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8d8593b8 dvb_ca_en50221_frda_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 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa9a912fe dvb_register_frontend +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 0xcdbc1db0 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1524dc1 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1d715f4 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd24bce79 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd570b024 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9c327b2 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4c4264e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec93b819 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf78f69e3 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xdeaf4dd6 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x557fa0fb atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0de53f8a au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x26e8f055 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x61c0cc8b au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8e9c181a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xac3353d7 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb5dd823f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd7102b6c au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef1a26da au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfd259ef9 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x9e8bdd45 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xe1adffc7 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x94791e64 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xeb2cff5b cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x8f69540b cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2a35d139 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe2c7fe41 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x042ff399 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xfe560a01 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9bc392c5 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xff493f71 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd45e6b51 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0b83098a cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x20cd698e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x0a756a75 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x32d15b26 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x679d6799 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7d53a22b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x90e1f577 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x95019e2f dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00dde6f0 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x153adab7 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4c82123a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57f6bbab dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8058853e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8300e95c dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x85d09c4d dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x95998580 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x992fd5c4 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafc45dda dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5d93592 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd32cc8c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf469c3b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xefe30594 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf74f580a dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xf341d6b4 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x17d9207f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1a523127 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x28fc8ef9 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3418e30e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4137e2fd dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x87b6af98 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1c0a8508 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x50cdbe98 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x66519d20 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbc147dad dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xcc235c21 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x8642922e dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0109e041 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0a0bb429 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x47d98e3e dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x5c38a96e dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6496ec8c dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x710008aa dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x80d45be9 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x97aa9fa7 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9b332397 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9f122f0a dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa2f23be1 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xde497a9c dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe6486338 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x176ca39d dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7ff7322a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xaf847059 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc18ec5a1 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc569804e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd72bc80d drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xad57345e drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5be8e28b drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xd5a35fda ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xf38e93e8 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x4e3b5fc3 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x751d4b75 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe5f57bab dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x03996591 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x63e214ad helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xbca9f1db helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x613d27dd horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x107ee366 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x85a7204a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x29c19855 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x6b79f224 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0080d08e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x925343b0 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x4b29d621 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x75aa08bb lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xae68ffaa lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x26519014 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xcd8102e8 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc646a1f9 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x6ae90be1 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x8ce40179 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7aa12925 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8f98e442 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3e6801a0 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3ec45806 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xc57c52de m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x754d2a56 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xeb39c6a1 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x29f402a9 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xde4ce02d mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xc97fc450 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x140c62b5 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xeb9125c7 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xf6bf1269 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x91c408d9 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x2a4f7aac s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x5779c0fa s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4bb6725f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xcded53f1 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x59c8ed26 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb212ac64 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe5c733d1 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x1cc78c20 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xaa6bacb1 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xf2113826 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x8df3a49e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xc108f154 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xc60bff19 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xcdb14d41 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4e6514b0 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7e950a8a stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xcf57eedd stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xd6555546 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x5a2ca8cc stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xfac78d3f stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xe8ec27be stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xde1f9328 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xe5819e3c tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x8530df66 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x8e603f7d tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xb5ed2009 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xfdd9e6bf tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3a319b5d tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xfb78ea22 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa9281e44 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x31217d77 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xd9736319 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x60dd08c2 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x32380936 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x3c4b39ee ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x4dc0cb5b zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xa92e04b5 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x08ef4420 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x01ed4c48 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x4efcd514 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x12c3834a flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x675bb812 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x82d5d056 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x951effc3 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa74157ff flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd39c52bd flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xdb007009 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x261d00ff bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6a80adf1 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdd5b72b1 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf13c0329 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0c2ca6fe bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x68f4b954 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7e7e3503 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x04ad296b rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x16eb490c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1bf44ea2 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2e0385e5 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8935747f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x90cab83f dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa419f1ce dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe748d74f dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xeeaa1bd2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x225020d4 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3a6a4dae cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x72ee134c cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7e89b387 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x994c72c0 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xcf38acb3 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 0x0745addf cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x15390a50 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5b9617a2 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x75404b33 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x88384183 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9629c92d cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xeda6dce5 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x72a922a7 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xbf97b93d vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1856cd47 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x94470dd6 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdef1edfa cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfdb53eab cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x00c72be2 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x01039a1b cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0e14b0b3 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31ed7fa5 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa44b7c39 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xae38e678 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbe25f49d cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0fe08531 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1156de3c cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b97775a cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2c1469f2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38662b6b cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4094e7c9 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x412e4b7d cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5319a055 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57149bdb cx88_core_irq +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 0x6178dd17 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6df49ff0 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6e679cfa cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85b493b7 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9cb7c0a6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbd96d310 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda1920a8 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe15249ea cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe57cb27f cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe86172c1 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfb16ac3e cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x2c4d8d76 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x036990a9 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x04095a4c ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x05f46bfb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15c25e6b ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a70fffc ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58502206 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x60bc3a39 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x61f2eba0 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x68e6576f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa1da0e09 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbeef8f35 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc9a59b38 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe6de3087 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe7d440cf ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe866d7a3 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe97c17f0 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfabdfa89 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x08e44411 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x39221b47 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x41a5f6ba saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x782f546b saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x86b91b65 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x921d1833 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x97f23ee6 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa2a1566c saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xac0aea78 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xba44145d saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc95f1ff0 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4ddfba95 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x921287ce snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x99f5505f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbaaee39d snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd41b8375 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdb785dff snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe591a967 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2f8418eb ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x91573a9b ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xaf5e88a1 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7dd2990e fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0f64f28e fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x229795b2 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x98002374 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x69e6847d max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x54b3b66b mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x0cc8cd7c mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x11545f74 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x6cf0081b mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x65df1bca mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xc1e65b1f qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xbfec424d tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x42f0440a xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xdd5f7911 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x98b37636 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3bacd502 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x794a9b9a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x072dfe5a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x386c335b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x609e2a75 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6c2e5ee6 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7101f4b7 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78802ea1 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x87a41a3f dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x992fdd67 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdfd93259 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1c629248 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1d505afb dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2342dbef dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x53785ee2 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5c792e00 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 0xf49f2b0e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x635453c3 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 0x04aadceb dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x54bc09f0 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x62dd971b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6638a7c4 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 0x981215ee dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xab4a4d15 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5aecda5 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe62dafb9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea613cbe dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x59f38a6f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xca6fcc75 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa389b7da em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa62a2b29 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00f43e2f go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1f3862e7 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2b6e63c8 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8df0c51a go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x964c7701 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xad976b18 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbf962540 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc6ecaba0 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf05ab25f go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0846a9b6 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0fb75d07 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa67961b9 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb1553b5d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc148662d gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xced89873 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf8b1c85f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfbac9b7c gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x09486ad1 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1ed2de9a tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x68b5b1fa tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4ef3e85b ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x6534e991 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x12a0b012 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x130f2c2d v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2badb648 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x3313014b v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x53848b76 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc63578b0 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x03e56716 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7aa10573 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9dbb8656 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xe4260829 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x086de762 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f45d80a v4l2_ctrl_subscribe_event +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 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29ea5c6c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fd0c529 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x462e30e3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47a35e81 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55ab9c64 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x573f598b video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6c3bc1 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d14ac16 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60380985 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x64405edb v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x69aa60d1 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x783aeebc v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bfaf737 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7faf782e __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80373bf3 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81ba06d8 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85470884 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x883dec97 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a0da6fe v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f02bfb3 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90b17afb v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99a55876 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9bd71ad6 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ce6f293 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e75d616 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa602d309 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7d62c28 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaca03677 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb11dd291 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6d66e55 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb71723a3 __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 0xbf57c0c7 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcf7aa8d2 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1856498 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5f0fdbc v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd9742e2f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde737811 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe08f9614 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2f87e1d video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xefa52bc7 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf094daaf video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1e133b0 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf21f934d 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 0xf40149e0 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4aefc38 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf5808208 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ddf3cf video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9bd9ffc __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdfd0111 video_device_release_empty +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x092d3a6b rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x91cdcea6 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa59ffd89 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa8ef39e6 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc8e4b813 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x17634d77 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e6eb29e memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x404f0888 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x515ea16a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6f678f8d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa637d436 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb046edc3 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb62c7dd1 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc5a9eb25 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdd43ca29 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdf0a4aae memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe5f5337a memstick_new_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0bf3e856 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10e8d108 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14f86fdb mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x151c24ab mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d6b3718 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32bb31d8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d161c51 mpt_send_handshake_request +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 0x68c33342 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72b0241f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a53a276 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x828a76c8 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82cfa03c mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87a334d6 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9170c6af mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x926c383d mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9276d74d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x95d3ea31 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa49d5854 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa51f885d mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa96d90be mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9f5d18d mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb5b505c0 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6816bdd mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6f266bd mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc799f9f2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0c17816 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea1e5f15 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef89d379 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xefada5a7 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03af18df mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x069bad38 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a886a5a mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x124d4e7b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20b14220 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x261355e9 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x291167b8 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a871a06 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35b640d4 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b744580 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3c0dbf94 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59b0154f mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5fc219e9 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x64ca8c9a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73ea939f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x745b7be0 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x797280b0 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ccf7f16 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3e1f5ee mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0e737ac mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1000714 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb774698 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd55a236b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe5a9b4d1 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7eae62d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea5ee50f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecc7786c mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/axp20x 0x309d4082 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x349e8b32 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xf1ed9fab axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x3dc586a2 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x9a63a9a5 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xb202b808 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4285da82 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xccb053f4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14a2cbba mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a7a3bcc mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3edc1ed0 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83549f12 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x90100c71 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa6c430fe mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcaa79f8e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd152f143 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd2117077 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd8e51034 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfd2df643 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 0x029d83c8 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x6ad892dd wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x722a1259 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7d265c04 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xdf72abed wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xed481074 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x19fe3c95 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd90fd301 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x6616efa6 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8ca42bc7 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x06e0acdf tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1b93df35 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x3533dd99 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x6a22c322 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x8af53edc tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9fdbe289 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa34c8e67 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa62fbbd4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xc7aff0a6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xdce4bddf tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xde3a36fe tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe82f742 tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x1ac49af2 cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2eb1cb3f cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x56bcffdb cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x6d5c3fc3 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xa2bf6ce0 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4724e574 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7616b11e dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x89246e53 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd33124d0 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x9467a2e4 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd85187c9 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x01fce01a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x297a1c1d cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4b937071 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7d9b4010 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e746d53 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe70fe85c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfc272f27 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0a54b290 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2f5639a3 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x436a3a8f unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f41b514 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2d66a686 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x92da03eb lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6fae5354 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xa29a6bff mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xa2ad78a6 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xdfe96c10 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09f6f74e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x13a9aed8 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2330aba9 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3a8fa91d nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ca67d2f of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3e4a1a98 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41a4ddf4 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x499c1149 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a9900c2 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c620347 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x60b49bbd nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6bdb617b nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6c38d875 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fb43697 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb2331ab7 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbb53b4db nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcce71212 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd2d5fd25 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd94358d2 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe76a2536 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe8c14e1a nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xebb502ab nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x20a2ad06 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc043c8ec onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x0dc6dcdc denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x2898a24b denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2f4bc68c nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x32f4a15a rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x354d0036 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x38e895dc nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x480731bf nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x659bc048 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x66f9c5fb nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x74ab1750 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7da34a70 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x813f88af rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9d0ddf19 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaa2fa82d rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcfff5a1d rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd8f40111 nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe07d980b nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe0cffe6b nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfcfe6c68 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x00538a86 elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xb016dd35 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1d1daf4a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1f40e46e free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x38520fbf alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5fe5bd0e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x650966f4 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6a878183 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x98f4e9e0 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd4019931 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd95fb094 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe0b85965 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec097eda arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x40ab95dd com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x934d7b00 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc8489293 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x44d4ec3f ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x8ef30fd0 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xc2222139 ctucan_resume +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0165f2c9 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x01cf715d b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0b1f1673 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0c2da5ba b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e749c53 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d909a24 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x292c02aa b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x494b0662 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x525d9230 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x53d22568 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5a3c431e b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5acd4959 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c7a78c0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62982b10 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69d0b988 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6edc60e2 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78cea8c2 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78d14f56 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7b8051f2 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8278fd2d b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x96620a8d b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x980413e4 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9a020d5e b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa3d371a9 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaf45f991 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf5a392a b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc0b486ac b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc95cc540 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xca96a7be b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd4ae6f45 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8a5c4ba b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe38f9ca9 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xea6f3642 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xee3a890f b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeef32265 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf90e7f10 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcb76a61 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcd2c0bf b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x163fd6c6 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2694f017 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x49e11850 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc7ecbefc b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x22b47545 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x46d1535c lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xaa9f5497 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xa3bb234f ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xde92e4d0 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x6da577de ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xcbde4d5f ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xecdb8095 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x1824f191 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x25ec5ccf vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xed60d0e0 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x49e81890 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x79f1d4cd 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 0x8ecdc21f xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xe24c9586 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1b3f232f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c47cf07 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x59de524b ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6d7f814c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7f306c5b ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb532454b ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc644129b ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd05085c9 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe592296d ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe9daea4c NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x88c070fe bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa5b78035 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x1187ed14 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xd3ddd054 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 0x2a953e45 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2d06e110 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x34b163e4 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3635dded t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a4878cc t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f89256e cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7b5eb113 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8bc96f6b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e1d1a71 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa258b51b cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xacfc74e8 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb358095d cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd2912c8 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd76ae631 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe80e3662 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9b61948 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x045bcfa5 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06641012 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14355611 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21ecea0c cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2404f2fd cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25b817b3 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32b17a9b cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x392898da cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fc98e86 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x428478b2 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44a5fe63 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49796de7 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5535369a cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x561e3e55 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56c63521 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6516848c cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66930df4 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b4f80fc cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6f7d986c cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7341012d cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x764b7d86 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78bae38b cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7c8bd050 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8933f391 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8cc46a22 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f0c620d cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f679ec7 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa840396f cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8d7f716 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafa27978 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb261f91e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb8fd6ad cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbbc02897 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbca63bf1 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0e7ff6a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2c541b5 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc98cecb0 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd020deb4 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd0cc1e31 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd31727fb cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd733339d cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdcd86808 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe78b7fc3 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefe60b56 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf73ee973 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff959d76 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x13fe2054 cxgbi_ppm_ppod_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 0x8f394144 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaa2440f8 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbca749a5 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbdc5903b cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc10d03f8 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xed55478a cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x21485da7 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x32a06810 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x670960a2 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x78eb02a4 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x821d24e0 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8f64af94 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x1eb953ce 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 0xff636674 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 0xe7028060 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x39931517 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x4bdbf98c fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x579134d5 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5c927913 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xf9ff90ef fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x43312584 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5a9ca075 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x81b233c9 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xa6136a9d hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb5e12604 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xcf015aec hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x13ec6c43 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2c5785dd hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x98ef7c69 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xa75495f7 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xae0cb00f hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xc0f64aa1 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd1c3b09c hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xde924fc4 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x182b9fc0 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x6b0e1c7e iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0e937cbd otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x29a02b0e otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x2a180cce otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x364e8761 __SCK__tp_func_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x3d514900 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x49286d3c __tracepoint_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x4d90631b __tracepoint_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x5fdca507 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 0x79b74be4 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x81ea2565 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8d179eaa __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9446a050 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa87b4e57 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb8bb749a otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xbbd28726 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc3ef568c __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcd746081 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 0xdd7fb16f otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe65056b2 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x00a79cc9 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x03f6d1fc otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x08c1fd17 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1d1fcf22 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x21a68455 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2229acf0 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x23d02952 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2b2a381c otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3339f2d8 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x498990c3 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4de0826e otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x52440af1 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b3fec18 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x737d07f7 otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x78dc57d0 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7c208d27 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x95957d93 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a8c9646 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9e4038d6 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa084fc90 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa580a1db otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xae042067 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xae4f1947 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbeeb344d otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc13d2f59 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc57c0094 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc6372174 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd8690819 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe015d45a otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe504591b otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xfd4c7c63 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x8bb335b0 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xffdc6dac prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01fa0a18 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x021156dc mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07d5163b mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10311b5d mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11afd01d mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165a0d12 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x182ec33f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a04b137 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b2ce091 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x217285a0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24760a99 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x296646a9 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3139d99f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35b63d0e mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3613fa5a mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c29f6d1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x423b077a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e344259 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x502216b3 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56267f6a mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad9a087 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720ef484 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x730b7f44 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76b1c4d1 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e75fcbc mlx4_query_diag_counters +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 0x88367b36 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d5cdbab mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9694c3c3 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b14cdc mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad12a860 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb512837f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba6fcbd2 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7775340 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9123dcc mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdccbe74e mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe03d5652 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22708fc mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe233bee5 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe821ebd2 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86811ea set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb5c417e mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf572496f mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf652fa7c mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf69e9ad1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00b35c4b mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020685f6 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x036872f0 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08739526 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08dab2b5 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08eae808 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ba88ebf mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e80310f mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11a27c92 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1addff72 mlx5_core_destroy_mkey +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 0x1cc88eba mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cf41957 mlx5_eswitch_vport_match_metadata_enabled +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 0x1f204091 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2009acdf mlx5_sriov_blocking_notifier_register +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 0x26ca760b mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x279909f8 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f6149a mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d42aee mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ad54f5f mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bfb2c16 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c8bbb21 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x320d25d0 mlx5_fpga_mem_write +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 0x33221264 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34363bab mlx5_eswitch_add_send_to_vport_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 0x34a5a633 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34aeebd4 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f9d7fd0 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41dc7fdc mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x427f9d20 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x435df149 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x442cd5a2 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c75e11 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4689941a mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47af56ff mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a1514c1 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b2c9471 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b6e1c13 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ba2f40d mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f1f79d3 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50d6239a mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x551bd3cc mlx5_eswitch_get_proto_dev +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 0x56cd38b2 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59e55143 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de8c025 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6175084d mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6231289d mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62933a7b mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x673f2d32 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c73dbfa mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f80a864 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71561333 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c43553 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722b72f2 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7648bdb7 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x775784d4 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77ac0145 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78ee81f6 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79c4a1c0 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a5b3cbc mlx5_eq_enable +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 0x7d017978 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d147229 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x815551af mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84b9165d mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8649f17b __traceiter_mlx5_fs_del_fte +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 0x8c582083 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cbccd6d mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e32bcad mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91a3ffa2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x923a43ec mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92934eaf mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932697ac mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9344ab7c mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94158d09 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9973b591 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae3f818 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b06bb59 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b789fc5 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c7a97a1 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f882f6f mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4d3872c mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6a24db4 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6f09d79 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7bfe366 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7d8a051 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa85cc3f3 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8fc1485 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa935282a mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab2ffe90 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabae5884 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacbd1038 mlx5_eswitch_get_vport_metadata_for_match +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 0xae3e51ea mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb04abbc7 mlx5_eswitch_get_core_dev +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 0xb376c51a mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4d95036 mlx5_eswitch_get_encap_mode +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 0xbb07f99f mlx5_cmd_destroy_vport_lag +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 0xc0bdd734 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc18b5e77 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc233690f mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc55cd0b7 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e21ed4 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6fdab26 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd174124c mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1f6f9ff mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd417c03b mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4fffd69 mlx5_qp_debugfs_init +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 0xd77384ec mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91acc53 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda932152 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaaf1bcb mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0154d8e mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe153e61e mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d7cfcd mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7acf90c mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b2a059 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe805d156 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9f253ed mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4308363 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5e4c386 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5e64696 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bae2a3 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9e39774 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbc64581 mlx5_core_dealloc_transport_domain +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 0xfcd21f7e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe2bece6 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff4f525c mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1e86f172 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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +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 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47535cca mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4adc2af3 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c9a49f8 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57da67bf mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x58c653b5 mlxsw_core_rx_listener_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 0x5a939205 mlxsw_afk_values_add_u32 +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 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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ca518db mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8c05f70b mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8d425ba6 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0x9ec9f0c7 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa44d40ae mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7199bb2 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa74e7010 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb36c0b8e mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6420a60 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc459096d mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc46830cf mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd3adf8cf mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe1965b77 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x16913815 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x702d8b1a mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x6a01beaa mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x75b7211c mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0572cfd8 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06ff7b59 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08170ee9 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e1b8bea ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1155b5bc ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bb5a4ff ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f68f5f5 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ff19324 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x20fa6daf ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22ad5e90 ocelot_sb_tc_pool_bind_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 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2fec2b1d ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x325049b8 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3266df08 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x331548e7 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33d83c64 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34bc0e20 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x363565e8 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36909da2 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3722572a ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x392055d0 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39ba8542 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x443f92f7 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4daf39a3 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f27c71a ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5010134c ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x516aaca8 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5481babd ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x55604c8d ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x564cde77 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5827b323 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58b3de53 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ce6b2c0 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fee23ee ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x623078ff ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x624469a2 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x629863d6 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65f33236 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65fa2939 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x69648d79 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ef378de ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x775db9be ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d5f333c ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x849c09fd ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x882602af ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e58adbe ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91ce76c9 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d3c8102 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ef73e3b ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1b5cdc3 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1dd45fb ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa364aaa4 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaae89a1e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf6b0d62 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb04e8894 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0a9c2c2 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c85b5 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3772c34 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb625e3bb ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5af416d ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcaf8d065 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdb622cf ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdc8728f ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0343d32 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd1060889 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4597a67 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7668ff8 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfccbf12 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6957caa ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed0cdc45 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefd79f61 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf0a91671 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd573591 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe29a9dd ocelot_can_inject +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 0xaeb51872 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xb12ade3e qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc031ad62 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xefd56de8 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x6ab98cfc qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xfd47d188 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x44040f19 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x451d26fe hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x58cfe8c8 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa616726c hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc6ebb0e2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x6a8aebcd cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xe0ede8d7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x01d86d7d mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x2fb7a5eb xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x3490fad9 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xa4d41cbc xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xaa30895b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xe9ba9158 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x9394f586 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd570f115 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7a4d7cac bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x079eaf23 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x17763c2d register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6593eb5e pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd924a5e9 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x2ef1d1de sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x02dcdc9c team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x1fb7b337 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x498660c6 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xbde0cf5d team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xbe64ecd5 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xcca642df team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xcedbeda4 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xfe0bd7e0 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x67306608 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xcccf1c60 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe3061e54 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0df171d7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73c501f7 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x74884646 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d771c6d unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb5c0ab4b hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8e43e7b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd6305dbc detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xef0e3149 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf64630a5 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfcad7996 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x038cae00 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x04d34475 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45e849f8 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53051a13 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5adbafb2 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76e96ebd ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x784c3438 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8201b61a ath_hw_setbssidmask +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 0xc0ea2e52 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcb4c962c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe3addfb6 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe85a0d69 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf7916047 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x005a52a2 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x067152f9 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09ef0c38 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0ccb4557 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0d3e78c5 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f165036 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x117bf9f2 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x11da752c ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1667a6ed ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1add6d9e ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c8f1178 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f1313da ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1faebf42 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26e7392b ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x36e03788 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3891fd07 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x397c3c21 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a386b35 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3bd45276 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x427b3ee8 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52a3b36a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53d5ecb8 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x54b68786 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5722d76a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6390eaa2 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x659770fd ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x728901c7 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74adebb0 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88709114 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b13101f ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9732858b ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9b20cab8 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d09d92f ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9dd6a0f7 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9de87ab0 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9fe91509 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa25a6d91 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa702168a ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac81e1c3 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae81a51e ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1bcd846 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc004f91f ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc844f351 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca9ed347 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7496d60 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd07fecf ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0351ff9 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2423786 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe27fbb61 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6ecdb44 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebbffbcd ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xedd171d0 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefb18c76 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2e18b53 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6644fc1 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf7fe0975 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0453389f ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0a9b5852 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ee9b29b ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x192570fc ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20361aee ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x24f7fa7e ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29ea4b5b ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2c8d1c81 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x36ad2107 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3794b14f ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x38de2350 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x39488015 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3abaea7b ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3cf4d6c5 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ad28dfd ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x648050dc ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x658d8ee4 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6acceacd ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6d2f8869 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x76fbd722 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8185e907 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8e951594 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x917a3069 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x940a212b ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9b3ad62b ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c3eed2d ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9ce36def ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa0e0a536 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xae4a058c ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb3d3cfd8 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc53075af ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc97ba650 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd35d0a2e ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd448bf01 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb61b51c ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeb8a2b48 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xedb04e08 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 0xf759a8a4 ath11k_pcic_ext_irq_disable +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 0x365bf3f1 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4bd3216a ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69278a24 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x73f85e9b ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f33b598 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xacc52599 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb1af3f6e ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc1e78331 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc4884634 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd48d68c9 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe92fbbde ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x12e2c67f ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1f7b8b84 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x214edd55 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x29bfd059 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x30e48033 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3b0ec1bc ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6354c364 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6fc434a2 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79e73bbd ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8f3011a8 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x97a6d97a ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9ff05beb ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf5d760d ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5f4f2ea ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc10e774 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcefac609 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7e6ade0 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde601bc7 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2393a04 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2f21299 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe39650e8 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf36c97ba ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf43a6b7c ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x027ee777 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x052b495f ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05a0c495 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06150cec ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06f74606 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09d1edb0 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a7d35f5 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b542f53 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1393b7ab ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16247d21 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x164ae421 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17728348 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17c4b919 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1992d535 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c1349cc ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20637366 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24d6d5f5 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26165608 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26290c68 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28708ad0 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28f94774 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c584863 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2dabd2e3 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3213e6e3 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3365a633 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3533b7cf ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37d4abe8 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b029ed1 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ca661f6 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44da9360 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4658dcd1 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47014ead ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49c05498 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f62ec82 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50736fa8 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51ea5830 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55ef64d8 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58cc094e ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x593a3712 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59546f80 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c4c4926 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e2beb1b ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f5d88a9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x604eccc6 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x659dc0e4 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67b07ab3 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c10118d ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e418db4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71022810 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7297db53 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7405fcd8 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a010013 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c85765c ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ca7d491 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d822fb3 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ecc5abf ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x836bba5f ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8422413c ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84ce3e6b ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85f94187 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87299fd5 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87c4026d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b0fe128 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e150c0c ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9108c2f9 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9760cb91 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98dc453f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b397f87 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ceb6f47 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e8f4698 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa07fb310 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa24c6c00 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ea4007 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab7e05d4 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0d17c02 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb163aa6f ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5df661a ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb98a341e ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba92e770 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd082844 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc49e004d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4b17337 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc757dea7 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc788032e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e4bc1b ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaf4f54b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccb2d305 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccbc346c ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcee75926 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd00c2867 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0b4ef30 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd25a67d9 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd40206be ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbedff07 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd7b07af ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1c367ee ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe91e22e3 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9504fb5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea8b58df ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed2b6aaa ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xedbd0bb5 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf03ff4a9 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0de4782 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf54e92fb ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa20098a ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb8029cc ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcc08a8c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x44d25e87 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x9fd13a4e atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xee2da72a init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2ec2d00e brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x300b0f96 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x30437e14 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x344bdbaf brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3b2827aa brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3f4fa9d0 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4fd4d1da brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6316340b brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x83909ab5 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7948689 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcfcb8f2d 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 0xec095acc brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf4a75812 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0661adf1 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1440fe89 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1a7b5a38 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x29838091 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x41109db7 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x419a41af libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45310880 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x483172cc libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5c23beba libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6c53d9ca libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9a81430a libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9b6bc699 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa0f1be23 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb291ec3e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcac99c4d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd31a2e88 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe70a74c0 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf6eeaeb4 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf9fd13a5 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfaf076f6 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x006f8f45 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x046d40ff il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05f2b4e1 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x067adbbe il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1270efde il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12b50e57 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1529a270 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17fea1b2 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1bc9b975 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x21b1ebf6 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25beffe3 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x264a7901 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2a9636da il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ab05315 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b5834a2 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2edba8eb il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3094bc83 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x319d6bba il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32218a7a il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3dbb3b6a il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3e520205 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4048c9fb il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44609274 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44e34075 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48a6a5cd il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f8dc613 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4feed3d2 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5158804f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x52a0beec il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5334f428 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54e762b9 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x568293e4 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57889568 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c6aa92b il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60e89007 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x635134fe il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x637c5484 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6424f874 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x687aea27 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c2f6b55 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d3e7953 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d880efc il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7286f7ea il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76dc1b6c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79481991 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ae9b6a9 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d95d78c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8124e9f0 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82f3c906 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83b1bf26 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x891104b0 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ae12e81 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8e1c5743 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x959319b5 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9610991c il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x98dd7d2c il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b5b5f00 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c5e7add il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9ebd8a62 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa49795c5 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa497ca59 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7b9615d il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa7db75c1 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9f94abe il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac7e6b21 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf1408a9 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xafa427bd il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0df40c7 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb28d3571 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6ec4416 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8e95c8b il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbab849c8 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd7f92af il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbded3f80 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0346d35 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3865762 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcad9ca7b il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcfbc592d il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd43db087 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd4ef4d67 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5ef548e il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd82ecdcc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9cad412 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2953a6e il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe337190f il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5b0b361 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5eaf8a8 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe65784fc il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe75546ab il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe81fecfe il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe88b2cc3 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea424f43 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeda59889 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2bfc4b0 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4097385 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4645fd1 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf4bb16cb il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfc1ebbd0 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1df380e8 __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 0x4950a5f5 __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 0xf988ef68 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x02011587 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x09209600 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0b88a803 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x22ba29a4 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2cb847f8 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2ee66172 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4b974249 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x547fe7c5 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5b0ae6b2 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x61446f62 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62107661 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x62a3e2c9 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a0bdbaa hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bc04a55 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c3d3a21 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x83eb4007 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8d875d2c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xae3b581f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbbc93f3a hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbdcdef21 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbf8656fe hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdfbded05 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe08fbbfc hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfbb0505a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfc6eeae9 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3749795f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3ee0452e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4bb09fa7 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4de4f94d __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5df739f2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x652fd74b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7180fa9c alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa3279f2c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa57f4774 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc477ec11 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc77fa212 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcf7b23d0 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd7523315 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe147635f orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf5bbe8ef orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xc30ec065 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xa40357ad rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x00bd1429 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03e1f0e0 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x08f10f0e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11146ab6 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1327b781 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x210853e5 rtl8192_phy_check_is_legal_rfpath +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 0x24e7b27c _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41e91baa _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x440be7aa rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cd56930 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x522f0f65 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5f2dfe65 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x757404ae rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x785c8ab6 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b57504d rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81ea0ae4 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x870bf9ca rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8de185e5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90e8bc72 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3019740 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab5ef205 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad59965f rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1fc69a3 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc58e48aa _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7f488c6 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9d06477 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd3a59ae rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfb0f110 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1280dbe rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe14095d4 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe38b0fbb rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4d8c58b _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5a4e1c1 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5ce6c2e rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeeb8cc85 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4471952 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7bda27f _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8cb94ca _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfcaf2ba5 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfde5ce94 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfff1de37 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x0811839b rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x38a2b633 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x6aaf9c7f rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x73706d18 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x1d83aed9 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8df74437 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbc80e959 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdbb72bd1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06bb9101 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e3360d2 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19e78ddc rtl_process_phyinfo +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 0x3c759777 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d5f817a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f7d9c53 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x449c2017 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4bcc654f efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d010f17 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55fb323c rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x577322af rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x588c4543 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bb7e257 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b60aec9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7743da94 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c079e1b rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7c973707 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d992129 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f324cb7 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8393cb81 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa052dc84 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa27f39bf rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5275a34 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa679050 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2a3a55d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7fa3067 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb27569a rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xceeff225 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe68911bd efuse_power_switch +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 0xffa6c81b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x9b8f23c7 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x064f544a rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x706f5975 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x9fad324b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x019f697e rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x059feda9 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0b3173ad rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e03e7bd rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a465c9b rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a4b665e rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x252ecf64 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x329dac09 rtw_fw_c2h_cmd_isr +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 0x3de1aef3 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3e7982fd rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f61fb3c rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x401aa9dd rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40a8ebe6 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40ccd4d1 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43504912 rtw_fw_do_iqk +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 0x52ba6115 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5438c660 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x57aefff7 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b6a84e2 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ccb3394 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x611308af rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65c5f465 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67977252 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d683fd2 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7570ad0b rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x757ddbc6 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7a2b45cd rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7e60511c rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ede52b5 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c26f75e rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8db3a194 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x973b15dc rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b60f224 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9c7bd058 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9d40df31 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f2b3c70 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa12b6b29 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa30ae7a5 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa731f3dd rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa809ddb6 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0e5ae32 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb15e6eeb rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbf05eaa7 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc1952fbf rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca7a4cb9 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb090854 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc958805 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd58b90df rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5fa206b rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7fc8a89 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd80483f6 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde9679aa rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe2928591 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3d7c561 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe3eb88bf rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeec4fd97 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0a433ac rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf3d04f41 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf6bcdb40 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfacaecc1 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x09c7d371 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0fd1754c rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8eb42b40 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd56c5f42 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xbdc6bf11 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x51fd218e rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x00741bff rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x009ad1c8 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02daccbf rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03683294 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x100f28bb rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x14334460 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e92d964 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x22d4d273 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x231ac24d rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23cbe1c7 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28ae6b54 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28cce148 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28d80c88 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2b192394 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3413d5a2 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3d0904ee rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x43a60a67 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49ea2968 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4b5509c2 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x55882394 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5eaec575 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x679e139e rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x68bcd351 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7122a2e0 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x712daaed rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7be18531 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a66803f rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x91a666d1 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x98cceed3 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x99129825 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9fbbe395 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa242d2c1 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa3b70354 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa96f347d rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9ce8802 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb315bd71 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3200815 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb359d54a rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb37a8912 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbcb98071 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe80c150 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbf17de1f rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc61c5d9e rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc864bc5d rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca8913a2 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd4c99016 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd6ee4593 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 0xe9353091 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe9dbd203 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeb6d7f35 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xec16a3b8 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf79c86ef rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x116ef0a2 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x37e76100 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x38a0fc17 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4f7a5736 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x56355f0a rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6136c6d9 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x71a61220 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7d492fc4 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8003c4e5 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8680903c rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa0fd7943 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd0bcb146 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd80208f1 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe5303959 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe40d356 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xda698dc3 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0a0413a4 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x8c50bd64 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xae3de3a5 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf6e2b130 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x49a5458d fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe5bdba93 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x482ce875 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe16cdc29 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0a4ea3d3 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5ccd1336 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8bd8793e nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x379496f3 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x6a10620c pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xba16692a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x48a7849d s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x509f48e8 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa7c8382b s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xcec57995 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x00f8cda3 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x51656bc8 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9615e6c4 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa440cfa3 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb1132b0e ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb2ed5ff7 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd8ebfb24 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe01b49d0 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe7e63589 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfb82602e st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06221231 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x09712a8f st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0a16ab6f st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27095d11 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x38bc8d2a st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b5dacaf st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58b30cbe st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ea0898c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ec68954 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7eb887cd st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x844ac3f3 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x988a2192 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8647ba0 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2438773 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbc671c86 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc6375709 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcfca5665 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8ba3639 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x0011e672 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0d531880 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x100814e1 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x1923d702 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1bf9b0f7 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x2e59e483 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x3b5c8281 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x43b37a57 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x481bd903 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5b76519e ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x73bd0df0 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x8befd3f8 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x9b1904af __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc37c1f71 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd9215a0e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xe1ccbe42 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe6ab5117 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xe6db57ef ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xef9efc48 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xfbc42935 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xd1b05991 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xffc4e8c2 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x16f80a82 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1e90cd4b parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x33c374fd parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x37f2d372 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x41d3e142 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x44b64829 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x492dee5d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4a699914 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f38a1d3 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x70295119 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x72db014f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x79275de5 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7a9bb8f4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x814bdbf1 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x8bc22253 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x90f2920a parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9cf25c3d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa898dd5c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa9e562e8 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xafd11646 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb9fc81aa parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc517acc4 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xcfdc0299 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd40562e5 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xda1c99aa parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xdb8e0231 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xdf8d1295 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe1c87eb6 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xe1d1c3fd parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xec712a3e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf202175e parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x3a4d83e4 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x55408ab1 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xe0820f74 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xf5d2ff72 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0553439b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0e2d0d19 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1bc180fa pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x20e4b91c pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5496fd41 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5bea9e9c pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd2a785c7 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xebd4e828 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf1ebc8c7 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfba4077c pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa8e5fbd8 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x2ed29b57 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x50f4e247 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x936b6632 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xdac69fed cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xff1c8a62 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x1fc12b02 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x6364a10c rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x6afe6eb4 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x161c66f0 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x189be243 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37ad3c6f rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fc58e51 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5ca38dba rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x642e5fc2 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b699b46 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8136d088 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8394f41d rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x946a32b4 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9bd2d51b rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaffdf30e rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2f94e7e rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb568e998 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcce7d294 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd0fb11a7 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd21cb815 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9d3a0cb rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf7f63bcb rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xc67a0a7e rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xdcb3af53 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x58420a22 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x697a60fc scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf3f87908 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf8d11f2b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x04069055 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0fb99bd4 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14530184 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x210e8026 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2adeb6c7 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3afc3b96 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x74f390a0 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89aecdd4 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9124a3a9 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb35b2452 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce24cf52 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x036dbc1b fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d32c352 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e39868f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14c94d0a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16f6668e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f3c84a2 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7cffb4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fe3c3fd fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x255a3448 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2815fec4 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b804422 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3355b899 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e2ee62 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d16eb79 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40a18976 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x411e0f60 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x470fbcbf fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b872602 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d2f9b05 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5717d0b9 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x571a0d52 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59b282b8 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x642097ea fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77492f80 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7833f505 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x785dd0c7 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e52c998 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85773575 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a51fa29 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c7eed52 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9047f784 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x91ba3211 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x932b3867 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9419f817 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94403e13 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94fcec1a fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95719a09 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96cb8331 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d699a7f fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0c67416 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa12b10b0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa350eb23 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9db0169 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaea1c3cb fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaa61738 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcace845a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdb8d018 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd25c2e87 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5c4787f fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6fe01f8 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd9f1bd7d fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe11b22b9 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9e8e327 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2450084 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe13cc08 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfefd6a44 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff99170b fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffb7c583 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x71abcaac sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8880e361 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa2a513ef sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xee10e058 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 0xba5f8cf7 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0b40908e qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x139b49a1 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1fea071e qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x286cb9e7 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2af68470 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37202c71 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5a1eb540 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x769f3775 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa615d3c5 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb9019050 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbd6e5694 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb23940f qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x217b109a raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x4c92ca90 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xd0453c75 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d22d3e0 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ba7fe22 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38009018 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38f4a911 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x574a4d57 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b27063a fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x651a857b fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x82fc895a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x83935f8c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x94e58a29 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x994f8d4c fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaac79f3f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb0b3763f fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd67ec985 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf464b76c fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf4b5c4df fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb1a90c9 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02eb2294 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b2035c8 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3caa8f3f sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cbe8f68 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x410a94b3 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x410f2c76 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42dcc8fe sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5dc2d4fd sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5fbe93bc scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6982713a sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cc533e9 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6da26580 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x751b00a8 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93a5e117 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x983b5971 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a69ef60 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa1d6733e sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa27a1c56 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac56421a sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb35bc6aa sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1ddd2a4 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc222b2bc sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc78e3697 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcce4fb4a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xddf0e4d6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe65f63f7 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf39c84ec sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5b49599 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8ca93e2 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3bae08b5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x61e3d3ca spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x76664a68 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa4319058 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa692d892 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x003c10da srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x49074e3a srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x73092339 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3a5a38f srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xedf39b78 srp_rport_get +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x35210a1c dpaa2_io_set_irq_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb629a241 dpaa2_io_get_irq_coalescing +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/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x0ef823b7 cmdq_mbox_create +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 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 0x7c644dc3 cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xab2ec244 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc292c621 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe734113e 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 0x27e4b2c5 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 0x12ff36b4 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1b34bc28 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1bcc39db geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x464176cf geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4a7cb745 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4dd3f508 geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x54c1ad6b geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6042a468 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x69c65d5a geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x783553c9 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9d99cd5b geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb23d6bb7 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc17482c3 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcb2b5998 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcded1d97 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xde0e3139 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xefd5ee2f geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x9e2aa1df qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0xb6097943 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0b34972e qmi_send_request +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 0x232452fc qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3f3a0b4d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x45662915 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4b6b5855 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5cfbb1e9 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8b647ebc qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa013ddb5 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf148e0cc qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf33cb4db qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x3b95a503 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x07dd5f40 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0fc2f086 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0fde53a7 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x14cae67d sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1ac9303b sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x217e1bb2 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35a7a9e3 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x40f389f3 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4109a42f sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4a735588 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5cac131c sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5efdedd2 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x65351a10 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6bdce355 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 0x78d25192 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b3b998b sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8190d48d sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83b38fc1 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x868a6e0c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bae7166 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x908a4e65 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x950ff9dc sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9b4b962d sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9f4340a2 sdw_bwrite_no_pm_unlocked +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 0xc37aca69 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf08de372 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x07cc4d9d cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0ac1b36b cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x101c6a85 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ad47df2 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x38890672 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x421b5203 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x457ec92f sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a22a6f1 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x832712b8 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8648f3f2 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x97ebb8ac cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xae11fe1b sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb5d1867e cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc877a201 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd275be50 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd9f321f6 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xed1b19e2 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x02d5224b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x15b9e772 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x25033380 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x32ecb3f0 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x3d6e2637 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x4051a271 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x50225ecf ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x56fd92f6 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x5c0d144b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x686f426b ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x90524d1e ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x95cc01a6 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x97630f25 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9f0fb6e8 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa854fae9 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xc0e1a94d ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xc3661db2 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd04ab816 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe099da4e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xfce907d8 ssb_commit_settings +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01f4e937 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x41f4c954 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4823774a fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x49505dcc fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e10a3b0 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5ad77bbf fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d7058c8 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71ddefda fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x74709824 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f46cf2f fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8691953f fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98605929 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa2932cd5 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa6695022 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa8f572ca fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xab4faaaf fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae2cb927 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5e123f1 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb5f44be7 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2dd0ced fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc92c88a1 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9a9ae44 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdc4fe080 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf32fcede fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6bab8cd fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x0e8b7595 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x12cbef5c gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x1fd9a36a gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4c54232f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2e171ef2 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xc4fc87e3 sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xb7e0e96b nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xfd6ba104 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0156141b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09984202 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10264af4 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14654f13 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16d5cdca HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18e81ced rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ff24268 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x240a58cc rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25dd2556 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c816b1b rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e19f315 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b24856a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ca2dec7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48207cda rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48e20d8d rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49d54f28 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a482594 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a50ea38 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e0cec4a dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x507bb748 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51e07382 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x58b5e151 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fc67516 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62bd277d rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d902178 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7005954c rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7498746f rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b8e9786 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d10b7dd rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dfd965b rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8bc656b5 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x941c8117 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac0f938b alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2e79636 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9fbeddc rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbbcadaad rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc9ec1c0 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1e1e13d rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2154078 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd36ea101 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd710dcbb rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9c40195 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb5f2765 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde7b8390 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfa9bc3b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe3129aae rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6aec548 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc2717b9 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe609351 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07fc5a2e ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x089702fe ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0adedbc9 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13a1c563 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13c9c08d ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b255b99 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d63b997 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20a9ecf0 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x267752fb ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26c09b6d ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35960087 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3abe75ba dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41342b4c ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x428a6472 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43cdbac3 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49d8b058 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e4dc887 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54102ce2 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ba932cc ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66241c6e ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6906f576 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69bc3673 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72783fd6 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c7df705 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cf62488 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81da21d3 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d4b8c83 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9799b465 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2b37eda ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa33be479 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa48fdb9a SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4bcfb4a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb07ed78f ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb43039ca ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7996bc4 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8d84d02 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb92fb451 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5dc659c ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9633275 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd176cdbc HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd601a810 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd87536a7 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbeb5581 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddf18503 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0bf4f27 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6371e84 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe81a0f3e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec1f2139 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeedb8590 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf1d911b7 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf51e85fa ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9358aa3 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa2fde6a dot11d_get_max_tx_pwr_in_dbm +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 0x35853b04 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5c054645 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x70fbdac9 vchiq_msg_queue_push +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x8e278121 vchiq_shutdown +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 0x95e959f5 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x9d6478fe vchiq_use_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc2481c5c vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe8a7da2b vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0246f94e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x082d5956 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0c77b3e0 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f905cf9 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d6fa8d2 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21fcf564 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x241fd544 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f0213fe iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3797153f iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3cb82864 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4003449f iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x407380a7 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4754c605 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e9f0ca0 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50af1da6 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57c6f31e iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b6c8272 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5cc40ce3 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x63e93d08 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x66d1f860 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67ae5c4f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e36e4cd iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71b7590c iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x71d7ad8f iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83cff356 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x881eef6c iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9b3961e2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6c48578 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xba525d1d iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc5597f5 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd8822a1 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2b96b1f iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8556fa2 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce561e48 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd217c231 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd61c3d6a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf4f55c9 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3c73bb8 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe51e769a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1eaf9c0 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf61cfb20 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf9c95ddc iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb785518 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd543cde iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff7495c2 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x10dd4c74 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x115a94ed spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x16de8640 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x182c4c6e target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x19c68d9d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bebfe55 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c87f7a8 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e2e1b09 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x251e1a08 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2556a9a2 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3053774c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x34fd3f54 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3aacbfec target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d158301 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3faf29b8 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x42cc209e core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x481d8527 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4aa81b83 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x587f2185 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d9d9d86 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f3b156e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x6002e5f3 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x636fc291 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x68590944 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6866f00e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a335d4f spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f0b0508 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x710cdf66 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x71d0d6f9 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x72cb73b0 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x757bb041 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x766c6a3b target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x77282a1d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a94ce3a sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b33f352 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x7db3df13 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7df073ad target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e616b06 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f20f18e transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x81ab3708 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x835766a6 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x844607f1 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8774ea18 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x89104176 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c680f16 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e1b7515 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe7fc99 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x91a1bd9f target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x934eb1ef transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x993ecf4e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x997db208 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1968022 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3438e93 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7220ab7 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xac711169 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb143be82 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb947eea8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xbaec2e9c core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1e17119 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc313c6ab passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc66c3780 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfc48ff4 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd46faee7 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcaca626 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4e51eb0 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7627a35 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xebf4e5ad sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xec5d6877 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb83a85e transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc334a12 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc96a0b2 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdf3a149 target_put_nacl +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x150f59ab ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2d0436d5 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x34c9254c ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6ab6c58f ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x974c6ae2 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb3ca93fb ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe881e626 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xfdd2815c ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x6fc3cd5d tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x7be5c501 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x3649667c ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x69160421 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7b570ff0 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe4b84271 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x55fddb4a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1516f2ea usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x24cfef5d usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x382e8947 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x53dd8025 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6bd5039b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6fbdbfb1 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d429928 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92669570 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa123de08 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa2c197ec usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe304f646 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6e743484 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd538a2f5 usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0xee287096 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32028460 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x46a8bf13 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5faf0d08 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x839bed06 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x97225c0e mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2515037 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xdc0de49f mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe50a7bf5 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x34014ac2 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x3f948518 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x519ee25d vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x61ead05d vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xdb3a157e vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0xb84ecaa5 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xd78df76e 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 0x164cf9f3 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5ce88253 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8b7f5025 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9de17cd5 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 0x1e440844 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x644003e1 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7152f6e0 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7b07c48b svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7d836278 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 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 0xe8dabbb2 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xebe07ee8 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x30f1b77f sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x4807c19d sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x1d6997c1 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 0xe5858c82 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xa16c9764 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7058e56b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7e2f0fe4 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x90bd6dbd g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x0bd0b670 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7c40b840 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8012870b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb428d3ec DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x661f26ba matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xd3032d1f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x25ad3614 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x95cb3fad matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd5885865 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xd8ba6785 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x634c474b matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf1ef9430 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1d5f5b9e matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x44084306 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x685fb8f1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe21ad365 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe55ef1b4 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 0x25dc00b0 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3b469fe6 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x43ca745a virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5d18801b virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa2ba08d1 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd23b2a1b w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x31a6e447 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x37b8e88f w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x049993c4 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x67622dfc w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd69b10f9 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf2e7e58b w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x0702facf fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x0df06958 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x187e2bfd fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1affc391 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x33f2143d fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x391b1a98 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3fb5900e __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4de86a88 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x597f0fcc __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x642d36d4 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x734c567a __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x7627eafe __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x78ad3a5a fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7d79bbab fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa47dfdb0 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb0b9587b fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbf6063a5 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc11ddf97 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc1f802db fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc48905ea fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc84b9926 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xddc84857 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe0e4b170 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf003666b fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xf26ce6a5 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf34e7402 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf5e4a966 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xfc752ccb fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/netfs/netfs 0x1863cfa4 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x210b270d netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x3ce63386 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x9afbee2d netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xad6fbe21 netfs_readahead +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b8d1a4a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x72a45157 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x805e36ae qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc317e855 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf244b3f0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4f36e56 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 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 0x52423287 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x5cd55c96 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x59a2712d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xc8e3332b raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0xcc4ee841 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0xd91319d6 raid6_gfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb9ffe3b3 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcabc8ad3 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe378d416 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe4a9e57d lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe65417f2 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xea67f5ba lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x2a5d2320 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x47ebd234 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x69f57d1a register_snap_client +EXPORT_SYMBOL net/802/psnap 0x6f01ce94 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x02d2d469 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x0d4e0d48 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x1646bfb1 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1b5bfc07 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x217fe9c0 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x261461c6 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x371ad249 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x37ff05f3 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3988bbd9 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x3d2634a5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3ddf7646 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4f0c1ab2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x5d0332d0 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x64759400 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x79f564b9 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x81a948ea p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x8b1d2066 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x8c7d026b p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x925b5b09 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x93ba2dc4 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x97ee5c06 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xa0314a9c p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xa57acb54 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa674b498 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xab609fcb p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xaf7b9377 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb50a8a7c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb736b343 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbcd891c8 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbd350974 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xc7b2c458 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xce52c529 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd822a50f p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xd8f0d5a6 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xdc483d0b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe1852544 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe373ae4f p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6929e97 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xebe2e718 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xeff487a8 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xf9def4ed p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfc596d8e v9fs_get_trans_by_name +EXPORT_SYMBOL net/appletalk/appletalk 0x0c29409b atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xaf0a051a atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xb2b652e3 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xff370af9 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x32a0b679 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x3fb22fa5 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x42209183 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4d99dc05 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x58f9aacf atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5ed276d1 atm_charge +EXPORT_SYMBOL net/atm/atm 0x619de37a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7ed8f770 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 0xbb4b149a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xcab8b8d5 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xcb4dd735 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xe96c581f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfd4cf78e atm_alloc_charge +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2fc18bae ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7c8a0e30 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7d0fffec ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x94fd4078 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xa5327121 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xb7b025f6 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc54d2828 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xda589066 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0044fd6b hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b026dcf bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1342ba34 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13ce8b11 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c39b1db hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f0d0594 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x206078f0 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21a0fe0c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26b5aea3 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36270c01 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38fb7756 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3bba728e bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40c8a59e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x422b061e hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e69dc0e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f3b5251 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x574c3084 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b27b72d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62c6aa48 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63eed667 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73b63cb4 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7448291f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7801b9c4 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x816d3c18 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x878bed05 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bb3c993 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8db5bc1b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96aa9be0 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98db083a bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98e49b44 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c7bf42e hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0f0ba61 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa667dbbd bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa713a119 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8544195 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaca07e25 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb85a4c1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcf08167 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbdf214c3 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5f3a2fc hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6b21e22 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb44176e hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd88a47d hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce2d5772 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfe54c64 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2928096 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3b150d2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe6dbd3e9 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8aa7580 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa500e90 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0833a525 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x10d3255a ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x575ecaec ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6e700e90 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9de12dc6 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1fe6ac8 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 0x3ad1c9b0 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x677dd902 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 0xa690b160 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xafe0a209 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xe23616df caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x53a7e51a can_send +EXPORT_SYMBOL net/can/can 0x72470c31 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x8197d685 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xadcbf204 can_rx_register +EXPORT_SYMBOL net/can/can 0xbfea58bb can_sock_destruct +EXPORT_SYMBOL net/can/can 0xfb404195 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x0421b2c0 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05b1ea25 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x07f6fc14 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x08a42882 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x08b7a7f8 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x0d6bdc38 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x0defb86b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x10a657fe ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x1210670e ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x15d2d69e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x15f0d3a3 osd_req_op_cls_init +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 0x19ddf101 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x1c82bc6a 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 0x248b042d osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x2585fad0 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2c194c3f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x2ccba2ad osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2d316a66 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x30cc7840 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x33ada40e ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x37ac8eb3 osd_req_op_cls_response_data_pages +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 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x423d9cb2 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x4308a3d4 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x44bf62f6 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x45c630d6 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x462177a9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46d13f5f ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4ab219f3 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4b39637c ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x4c83ae5d osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x55f2f042 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x56d17f7d osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x574c4648 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58ec91c8 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c1f8427 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x5cd44d91 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x5d5dd2d7 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x604dfad1 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6192c390 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x631c11ee ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x68be6411 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x7c1277de ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7c920c6f ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7ce0f61b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x832e8d11 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x85561bc2 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89bd1a18 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x8a0b6251 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x8b4eafbb ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x91626b88 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x923d237b osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x9263dca9 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x93b4c03c ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x95df5c66 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x9691bf96 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98c08b18 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x99a13063 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x99f29a61 ceph_auth_handle_svc_reply_done +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 0x9f6ed699 ceph_cls_assert_locked +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 0xa2b4d574 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa899c6ac ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xa8f089f7 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xa959808e ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa9b496d3 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xab94989b ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xac31ed38 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaf844360 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3dd6016 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb70cb283 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb81b9779 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xb904195f ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xb974f214 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbdf4121a ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc06804cf ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc1721e82 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xc25c8ddf ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc3a0b986 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc6227895 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xc9cd8269 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb0eaeaf ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xce88d643 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xd22399ff ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd95edcfa ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0xdb2f418f ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xde663b88 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe1653d22 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe63f8ad3 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe6dd4ce3 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xeb92b674 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xebcee522 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xebd7a1c7 ceph_osdc_update_epoch_barrier +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 0xf0e475ee ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xf1be591f osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf269ea3c ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xf431f598 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf4f32593 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf5511fd0 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xf575c8b5 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xfae44fb8 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xffd56e30 ceph_reset_client_addr +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc7f980c4 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xe05ead5c dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x0a3a8c0e hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xd1e09f73 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x02ce0bbd wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a02303d wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8b16321c wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d818d5b wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xac8066f1 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xef4271aa wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x857a63e4 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x9f5c0124 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x32a73811 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x06fc5d22 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2d0fd436 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3eb9b76c ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x57b8f153 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2ed68526 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3b9a7c73 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8ffa07f5 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa8ff5469 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02dd1fc7 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7ef0261d ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc16fa029 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda597a19 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x46a00189 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x5c5f0ddc xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xf8a9e7b1 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x170eaf92 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x181fba68 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4a917414 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5338e993 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6254e7ef ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7958f5f9 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9315ede0 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb92e4744 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf28f22f1 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2a423b24 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38d782f8 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x44b18ed7 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdbea5003 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x92748885 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xcca12d03 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x85002a64 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaaa19844 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x01525fc6 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x51118002 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x61dda97d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x77780415 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x8a3a35fe lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x9c09dbcc lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xb8667ce5 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xc9a3dd63 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x254806c2 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x35234416 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4bebb27d llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x51272436 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6c715c7e llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x919db600 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xeae30522 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x0037362f ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x00d4a310 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x02ee6017 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x04d4830a ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x055a6b1f ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x064a6b41 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0fcbdf05 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x122dacf8 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x126e7143 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x13c58826 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x1490f806 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x157c2c34 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x17a8d6d5 ieee80211_find_sta +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 0x1e46fd1a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x255493f3 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x2b708645 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x2bb74b40 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x2c22ba2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2e078551 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3012268b ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x320c8fd1 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x3729255d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3b96241c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x409b4072 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x47548b25 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4762485b ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x49174ee9 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x4c65257a ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x4d9d80bf rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4dc46fe2 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x54540c65 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5b2b9a81 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5c9aa693 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x5cc98e66 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5d44c3f4 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x605310b6 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x60a860c9 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x65f62553 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x67ac7460 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x68c55ca9 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6ab856f5 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x6bbb6293 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x6d873788 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6ebcb45b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x737819ff ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x748c189a ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x755a7c91 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x75e82ead ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x791eb027 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7939d4e8 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7e81824f ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x82552754 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x82e05e65 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x8a7d74d6 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8e55143b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x8f9341b8 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x95ceb571 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x96cd3f54 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99be0a21 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9b742ad4 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9c384922 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9d19ecb8 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9d9cc4e3 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9e054e05 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x9fa26a05 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9fdd15c5 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa39b99ff ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa524b64e ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xa7a86cf3 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaea25a26 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xaf225428 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xb1deee93 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb41b7895 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xb43a7558 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb5d1cc29 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb83df5c4 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xb8638059 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xb93f1186 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb95f1fe5 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc3d87297 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xc691efd1 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xcaceaaef ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd10374b6 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd1495038 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd4e4987a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xd52e0e4e ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xd5315d11 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xda640167 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xdae3573a ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xe147f3ed ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe1d6233a ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xe34d3702 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe7603322 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe76935de ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xee26fcf6 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xef109f93 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xefddf339 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xf0f6e6f9 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf1666e3e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf729460e ieee80211_rts_duration +EXPORT_SYMBOL net/mac802154/mac802154 0x01cf3b4f ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x050ea162 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x27a551a9 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x79a7f20e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa12796fe ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xbad85baf ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe53c35d4 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe650ecd7 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xeacbfc25 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xedac8611 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xf904854e ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04751036 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0dc87cf7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e88a2ab register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0ec22d81 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x183b311a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1dcfb18f ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3050edb2 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4e8aa20f unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6132d21b unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x716ce702 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f64133f ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa33a9dcd ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0c0cc25 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd91d7e0f ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf2c8e25d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa072100c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x4cbb49fa nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x9f66cd37 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xa3fa92b9 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xfbeee0ec 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 0x20c910aa 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 0x5da0029e xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6d18f3aa xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6e4d7d59 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x811b616d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8156b08e 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 0xc36a669c xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd4957f1f 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 0xf657fed3 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfc2e28a8 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x02e51d40 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x098a7fc3 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x27033f71 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x35cc21b1 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x473cc048 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x49b906e4 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x57e18f7b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x58a6d05f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x66bf87a6 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x706ca7df nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7363b62b nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x73a8bd15 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x75c8c499 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x760ba4e0 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x989e3999 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xa566978d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xba72df27 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbd944b2c nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc89f73da nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xcb539eef nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd289fd87 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/nci/nci 0x106a4667 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x1deed66b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x30602d8a nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x33c34f8b nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x41ac4250 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x68e0346a nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6f539bc9 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x7b899c31 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7bfee8e6 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7c0a942a nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x7fc6af81 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x8063c2ac nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x83646da0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x83941b62 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa058bc48 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa05a92d0 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xac358bde nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xb54f3ffb nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb8e6d349 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xb971cba2 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xb9982815 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xba97ec8a nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xbd4b0880 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xcec576c4 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd4b774c2 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xdeb1a7a8 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xe1284a4e nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xe6fb9645 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xf8a69a7b nci_core_cmd +EXPORT_SYMBOL net/nfc/nfc 0x21d3e97a nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x37673133 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x3e1bc33d nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x41eb788d nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x45d21619 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x4949643c nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5463f189 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5924c3c0 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x714c3dab nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x800ae47f nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x893797b4 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x9099c5fd nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x9f23a4b1 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa8f63733 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xb60543d5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xbbf44a27 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xbcd5e1ff nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc1a98208 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xc26e7812 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xd6506e3f nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xdf4b2de4 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xdf505530 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xe588a0aa __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf183686a nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf7ccbee6 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x4fe1e352 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x517284ab nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x840dcdff nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x85b93737 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x3d359664 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xbfcfd3c1 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc58d89f3 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xc9e627c8 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xca6917f4 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xd8659a3b phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xe0a8eab6 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xe0c2d0ea phonet_proto_register +EXPORT_SYMBOL net/rxrpc/rxrpc 0x01cdfef5 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x15fd7f9c rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a364867 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1cf69a93 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x25107aaa rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x49f5c973 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x69aa089f rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6a7fd5ce rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x72f166cd rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x77fa9409 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x80d639a4 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xae84b6aa rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb3b64332 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb4250549 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9a07a8a rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd8928059 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdcc44e58 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe017346c rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/sctp/sctp 0xdd153e28 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x4d2c556d __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xd2fd65ae __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf15a6838 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf530808c __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7868ae86 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9f028db0 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdaf2f032 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x16db1da5 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x67cb1b28 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xeb47a96b xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x0b1be083 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x387c98f1 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x9b49e5b6 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xaa944f37 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0xc0d27b79 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x02388433 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0341bc78 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x04f89ee2 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x058376af cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x06a1bddf cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x08b287a4 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x0c98d626 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0dbcd46a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11c8b480 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x126f7d45 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1289cd61 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1be090e1 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ee8c96b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x2743bc9f cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x29743adb cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x2a15bc84 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2d50ccae cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x2e09e837 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x2ec51291 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x31b85c74 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x3440156d cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x3670d26c cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x371b2e88 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x37aef5dc cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x38bb05ba cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x38c8e59a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x38df666a cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3facadf1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3faf5e15 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x44dc9746 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x47a99dff cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x4a538d7f cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x4aa37f9a wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4db43119 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x509475c0 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x559d795a cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x565a2ae9 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x57d617fe cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5846e605 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5914fd1f cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x5a4fda0c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x5c308cab ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x60cdbf13 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x62aad951 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x6992b2ce cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2586a7 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x6fbeccc6 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x7222fe9d cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x72b7d5fd cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x73074329 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7811bedb cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a084628 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7b5d56ee cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x7b8308a8 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7cc8f992 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f53e2bc cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x824a6f7a wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x83584df4 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x84d035bb cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x88117362 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8b7e1b45 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8ef06f56 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x8f6ce740 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x90ff37d0 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x929325e8 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x9348100b ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x993637f6 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9e063ad9 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa0969795 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa2790255 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xae565658 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb4895a39 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb55d60bf cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb5dde834 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xb78c4b06 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xbc38e7b4 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xbdbf24db cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xc1a4f5fb cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc29787cd cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc8239474 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc8f3cf2a cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc47c341 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xcd444a4e __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xcd701c9e cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd24371c3 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd66567ff cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d458d1 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcfe9010 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe0f31265 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe638765a cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe645976d cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe656f3f0 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xe968664b cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xecca1bf7 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xef37824c cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf13343f4 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5b4d821 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf61f583a freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf943774b cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xfb869416 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfd6d9204 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/lib80211 0x330f272e lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x48479eb8 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7da2a6ff lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x871a5dbc lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x943cd63c lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xd304a69e lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x31e2979a ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf2f9a8fe 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 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 0xa14c36b4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa3818c9f snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd848e174 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xf3e352be 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 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 0xd1d18299 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0b6c120c snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0bd35718 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x0e541658 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x0f49be1a snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0fe43f77 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x153cb70a snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x1545e31f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1bc31e3f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25617d45 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x306e36ea snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x31ee52bd snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x33410f62 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x356baa5f snd_device_register +EXPORT_SYMBOL sound/core/snd 0x35b9f5f9 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x3607a961 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x4602481f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x6144f9e4 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x67cf54ff snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x69052dfd snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x69b249ca snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x6c3ff750 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x7382d8e6 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x73a9d934 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x76ff64ce snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x77287678 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x7b166500 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x816080d4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x96ee015e snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x98e90e00 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x9e6c790e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa7e59065 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xb1cf0513 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb892b13c snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc0426598 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc9527ec2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xcbae92e2 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcedb67a0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xd11dacb7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xd1ee4001 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xd768222d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xda616ccf snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xdb2b1040 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xdc427a0a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xdd47d131 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xde41d6f3 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xf5b75113 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xfbeb8270 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xfed7c200 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x18dd72dd snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-compress 0x50cb2501 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xdb04ba93 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0341e44c snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x04d6b28a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x0d72b662 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x105c3328 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x108ff041 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x153cb25f snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1b05297d snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e74128f snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x23639f8b snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x30f04574 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x3159b3b4 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x31a8d1eb snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x3484cd2c _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x36122aea snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x38763526 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b50e89c snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x43ac6ef9 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56a28d15 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5b8b987f snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5bbc6531 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 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6b8f5a5e snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7b67937b snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x7c976ff0 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x854c9629 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8684954c snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x8ac0e8ee snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x920369d5 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9563d311 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x9cb110d8 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa1e7fde6 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa396884b snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9a195ec snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xac0da6a6 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac7b7f2f snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xad5ac242 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xb4026ab4 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb47fd234 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb6432628 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xb93c1bbf snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbeb621dd snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc0866afe snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc5189944 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xd93a3684 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe6f34733 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xea16eb36 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xf3639cfe snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xf5f48678 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xf94f6a83 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x04a927a5 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0d5f13e2 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0da52fb0 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3def5766 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x47dd8b46 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x68261ed1 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69cc3982 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6a758a58 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c4cdaa2 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c832e39 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x890912dd snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x94f1cfbe snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b861416 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9bf6f02f snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9d0edb31 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa1828f29 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa50e84df snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd32539a2 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd89bbc36 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf15190ba 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 0x3feafa3e snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-timer 0x006d4861 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x4ee3c2c4 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x50a562b0 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x51b6aebb snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x6006ffb7 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x728738bf snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x82f3b704 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x91cb279c snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xa3205f94 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa7ac1e9a snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb5875d9a snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xc395d346 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xd87323f3 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xeca045b4 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfdcb9ca6 snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x53232213 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 0x5b360063 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a8b64a6 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6da370dd snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x98f07a46 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9b102b88 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa4a74453 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb1bc1362 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb7c26b3f snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd159d7c6 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 0x32c6bf33 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3bd2682c snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7767dd34 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9b5ab140 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa5c9c85e snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xab73513d snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc4215866 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdd3c3893 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f4dfa7 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x012337eb amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ba6fd2d amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e3d1a1a fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13af398c fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13eef7b8 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2807c57e cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x29f12a1e fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2b7929b7 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x38d47b1e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x393cd795 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c17799a snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cd698fa cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5cafb524 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d979c47 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72624d23 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74b38d79 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x83f82596 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86919c4a amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x91b12bab fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaeadbf38 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6ce5af5 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce3b5e19 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xceff889f cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd48aa516 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde4c9bb0 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4c52b79 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4fa38b9 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe5ad3b2f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed288556 cmp_connection_update +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x77c15f68 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2ffd58df snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9b5ef399 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d15e6c3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1b9df9df snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x246c825e snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x270db623 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x982f46b7 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9d2a9423 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa9fdb7bc snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xde127fba snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0f7688c9 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8c550b52 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x92975e05 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xddc41b36 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcfd42c24 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xde352009 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x15805116 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x27b6928c snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x455502d8 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x476b8c66 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x62a2eef0 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfb3b05b8 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x201086e8 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc1a53b1c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xde7a55d9 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe50a9f9f snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xee214873 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfca86a18 snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x05d33c4b snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f167674 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f1d827f snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a21b2af snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e5842b3 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24aa1a4d snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34de34ee snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3ab9a97b snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3fd95d94 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6023026d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x645e8bc8 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x769bc96f snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9d22bbb1 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb61acada snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7e8b090 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe11bdca1 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeac65f48 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b527c41 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4e2a1bf4 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x68d5fb40 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x827f7ac8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa16a9344 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcbd3f8a5 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xcdc536aa snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdd8013c1 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe24b367a snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5c9f50a9 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd30c0272 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf6b61c17 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0024217d oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0bd09e23 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d45d820 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x220e2190 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25a89e50 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33cd68a3 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b4b481e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x503b6b3f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x605bd4f3 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6778c612 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77aa62d9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e281a54 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb391bec0 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a681e0 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc21d312b oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc9334bea oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd524aea5 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2cf8261 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeffb7170 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf113c56a oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6c48b814 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xadf6499c snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc84a8216 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd5ef63c1 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xec8a2c47 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x4a3e322d snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x5fc487a7 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x9db126d9 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4a70089e wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x37a17fda pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x99561a35 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5d31a664 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xd8dd455b tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x22e22c88 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa60f22cd aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xaf1964d9 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x15b622cb aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xf9e1eae8 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x170bb6ad wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 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 0xafe669ab wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xb94dea23 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 0x7a612e4a mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbef49dfa mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x60c31fe5 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xe78a71c2 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x00e1652a qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xd6a23dc4 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x07c68092 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x30c8e7b1 imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x8755a5a4 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xfa89fc30 imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xc23ee15a mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x03da60c9 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0931760d snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0952a8ad snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0abd1d0e sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x20eb6c6c sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x279615f9 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27e481c9 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2da3e3f5 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30789cca sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34590bc5 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x373cbb87 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43e2268a sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x46251c38 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4aa41f00 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f0724e9 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5145f621 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5399c8ad sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x55dbe642 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e1cb4e5 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6b8a494e snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6c898a89 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7174a6c3 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x72ea8d87 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7d02ba90 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7eb51287 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x82f36f65 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8415cc5d sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x85991320 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b587889 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x94ff6dd2 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x96b8181a sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9c10510f sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9eca7121 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa36c9c68 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa5dadf52 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa88bc00 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xab2fde46 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac448c7a snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb54caf06 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb9df150e sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbabf3572 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbebab0ca sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc4208dc4 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc74cd292 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd21172b7 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3562d94 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd4764b68 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd55ee454 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd9464b9d sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdbc3cc97 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe307acb4 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe43410b0 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xefd99be6 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfce71f1b snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfe887c70 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfea8701d snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x2adf718d sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x3db08ea9 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x435895fc sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xa0045173 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf77fcc92 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x12988420 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x15386c94 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa6c35be0 sound_class +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xec802678 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf9e90388 register_sound_special_device +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0673719e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ba56ad3 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4120320c snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe5388837 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf65a9c22 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfa32cbd7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +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 0x9a93f1e0 __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 0x001efd43 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x0022467e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x00300ec0 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x00365ed1 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x004c93bc f_setown +EXPORT_SYMBOL vmlinux 0x0077c4fc pps_register_source +EXPORT_SYMBOL vmlinux 0x007e5468 inet6_protos +EXPORT_SYMBOL vmlinux 0x0081c50a key_task_permission +EXPORT_SYMBOL vmlinux 0x00a50057 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00babdbf dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x00c6f838 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x00ce84f0 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d9cacd param_ops_charp +EXPORT_SYMBOL vmlinux 0x00e284a4 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0110450c __pci_register_driver +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012c7c0f inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x0133fdf6 dump_page +EXPORT_SYMBOL vmlinux 0x01349db7 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0144c655 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x0145cecb fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x014971f9 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x014a8378 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x0153a1e3 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0155e784 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x01575727 locks_free_lock +EXPORT_SYMBOL vmlinux 0x015a9473 put_cmsg +EXPORT_SYMBOL vmlinux 0x0168948d security_task_getsecid_obj +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 0x01888a76 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x019c5fca pci_scan_bus +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01b85e4d msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c274c0 pci_match_id +EXPORT_SYMBOL vmlinux 0x01d23f89 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x01d9a071 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x01f8931f fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020cdbec flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x020d53e3 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021d0ac0 tcf_classify +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x023db2cf __block_write_begin +EXPORT_SYMBOL vmlinux 0x02464a00 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024aea51 mpage_readahead +EXPORT_SYMBOL vmlinux 0x025ed29b devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c140a0 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x02ca3f07 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x02d4415f flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x02ded17e param_get_string +EXPORT_SYMBOL vmlinux 0x02e4d526 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x02f2aafe scsi_done +EXPORT_SYMBOL vmlinux 0x0312bed5 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x031fa2c4 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x033186ed sk_capable +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034b8c7c block_read_full_folio +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0365472e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036f8b2f rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x0375f8e1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x03764981 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03822d6c starget_for_each_device +EXPORT_SYMBOL vmlinux 0x038c64f2 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x0390f815 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03bbc0c2 ll_rw_block +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03cb7a32 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x03dff739 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x03e81b52 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0430bc45 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x043efe3d vfs_fadvise +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044d8f71 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x04642bbc ___pskb_trim +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046ecedd register_qdisc +EXPORT_SYMBOL vmlinux 0x04712f4a scsi_add_device +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 0x04a0d376 pci_find_resource +EXPORT_SYMBOL vmlinux 0x04a69150 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x04b62648 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x04b8d5e4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x04c2bb5f kill_anon_super +EXPORT_SYMBOL vmlinux 0x04cfbc58 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x04d56342 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x04d8fcca pipe_unlock +EXPORT_SYMBOL vmlinux 0x04de6d29 dquot_drop +EXPORT_SYMBOL vmlinux 0x04e83099 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x04ea35bb tty_register_device +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fa2721 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x05048131 simple_link +EXPORT_SYMBOL vmlinux 0x0504cd1f pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x050be85a dev_set_alias +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0525a564 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0550d5a3 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x057b9049 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x057be273 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x057bf0a8 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x057c3f4f fs_param_is_string +EXPORT_SYMBOL vmlinux 0x058602fb __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x05883251 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x058e2f54 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05d24963 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x05ee0d98 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x05fdcb72 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x060240bf tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0635d80d nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x063808df eth_gro_complete +EXPORT_SYMBOL vmlinux 0x063a0f18 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0650fc98 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x0654f876 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x0668f79d netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x067baad2 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x068daeab phy_write_paged +EXPORT_SYMBOL vmlinux 0x06a60414 kobject_init +EXPORT_SYMBOL vmlinux 0x06b11d2b dcache_readdir +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c7575f genphy_read_status +EXPORT_SYMBOL vmlinux 0x06d0b38f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d901a9 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x06ff2534 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0743f44e phy_find_first +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07495b62 pcim_iomap +EXPORT_SYMBOL vmlinux 0x0778b71c mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x0792d835 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07addb04 setattr_copy +EXPORT_SYMBOL vmlinux 0x07c41e34 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x07c582a0 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07ed2ccc pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0801a700 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0804a010 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08141cde tcp_connect +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 0x08302ed8 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0869958e skb_pull +EXPORT_SYMBOL vmlinux 0x0875252d nd_integrity_init +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0896366b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x08a3ac71 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e3d983 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x08f412c1 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x090c5f56 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x091a81be xp_free +EXPORT_SYMBOL vmlinux 0x092a635c tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x094170a3 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x09470832 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x094d6d15 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x0957ec80 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x09585c6b migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x096dc456 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x097076c6 vfs_rename +EXPORT_SYMBOL vmlinux 0x0973fa3b skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x09762172 get_cached_acl +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099629aa clear_inode +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099ecc26 serio_reconnect +EXPORT_SYMBOL vmlinux 0x09a831b2 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x09ac33fc d_alloc_name +EXPORT_SYMBOL vmlinux 0x09b7c9b2 elv_rb_find +EXPORT_SYMBOL vmlinux 0x09caeb9a blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x09d0d0c3 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09db4dcc nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x09f3e213 _dev_err +EXPORT_SYMBOL vmlinux 0x09f8ab04 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x09fd7e25 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a05923f inetdev_by_index +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a16387c peernet2id +EXPORT_SYMBOL vmlinux 0x0a16cea9 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x0a172834 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a25abf7 set_capacity +EXPORT_SYMBOL vmlinux 0x0a28398b pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x0a28ccac pci_enable_msi +EXPORT_SYMBOL vmlinux 0x0a2a79d5 folio_mapping +EXPORT_SYMBOL vmlinux 0x0a525dce devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x0a5f00f6 phy_read_paged +EXPORT_SYMBOL vmlinux 0x0a70c33b d_drop +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7cb843 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a8b0e71 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x0a8c5a31 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x0a9a0f47 devm_release_resource +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa3665f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x0aac8506 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abcc32f xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0ac1b779 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0ac3ec49 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x0acc1266 vm_map_ram +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad96c36 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x0adf7811 proc_mkdir +EXPORT_SYMBOL vmlinux 0x0ae57915 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x0ae7ed16 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x0aedd49c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0aef8138 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x0b04557a __bforget +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 0x0b30a05f mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x0b354e7a vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x0b3b73d4 netdev_change_features +EXPORT_SYMBOL vmlinux 0x0b5b2696 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b954781 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x0b97cb4d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba23d9f vfs_unlink +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be01327 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x0bec67a1 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0336ff xfrm_input +EXPORT_SYMBOL vmlinux 0x0c09ba35 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x0c113c4b setattr_prepare +EXPORT_SYMBOL vmlinux 0x0c149c30 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c29ab62 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c504785 __register_chrdev +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5923bb devm_memunmap +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7a3182 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x0c94ecb0 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x0caa7725 tty_port_init +EXPORT_SYMBOL vmlinux 0x0cae75df csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccb625a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd60ff5 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf0b1a1 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x0d0256fa scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1aea7d dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0d2c4c86 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d2e860b add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d34a403 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0d35f385 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d465fec blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x0d5308f0 dcb_setapp +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d54917a unload_nls +EXPORT_SYMBOL vmlinux 0x0d750c85 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x0d9386e8 netdev_update_features +EXPORT_SYMBOL vmlinux 0x0da76605 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0dd6a764 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x0defd481 inet_frag_find +EXPORT_SYMBOL vmlinux 0x0e13b146 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e645da7 redraw_screen +EXPORT_SYMBOL vmlinux 0x0e91fb86 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x0e9dc460 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0e9f443d irq_set_chip +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea47d67 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaf6ff5 vga_client_register +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee6a0be blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f120ee2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f308059 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f55da63 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f7700e1 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x0f7f3d46 pci_find_bus +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f9233e6 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb627f1 vm_map_pages +EXPORT_SYMBOL vmlinux 0x0fc406e2 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x0fd3f801 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdb90fc proc_create_single_data +EXPORT_SYMBOL vmlinux 0x0fe1b1f6 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0fef5ad4 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x0ff30779 get_tree_single +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10062ae7 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x100e5b66 dns_query +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1039f790 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x10452ac5 d_alloc +EXPORT_SYMBOL vmlinux 0x10567ec9 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1075494d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x10762c4b blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108ac30c generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x10a0c19c netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x10baa8dc netdev_emerg +EXPORT_SYMBOL vmlinux 0x10d2ca3c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ee9001 set_page_dirty +EXPORT_SYMBOL vmlinux 0x110284c9 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11170b8e dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x112f18ca __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x1130c8cb ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x1133b1d3 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x1138d6f1 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x114b57ff devm_clk_put +EXPORT_SYMBOL vmlinux 0x114cb6e2 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117ca4b9 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x119279f2 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x11a84d11 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d2aa61 lookup_one +EXPORT_SYMBOL vmlinux 0x11d2d9f7 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f474da mmc_put_card +EXPORT_SYMBOL vmlinux 0x11f5f58f writeback_inodes_sb +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 0x12139b68 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x1219a12c param_set_short +EXPORT_SYMBOL vmlinux 0x122f187e mmc_detect_change +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1250d017 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x1251cf68 tty_port_open +EXPORT_SYMBOL vmlinux 0x125209a9 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x125324d2 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x12642fd2 keyring_clear +EXPORT_SYMBOL vmlinux 0x127a05ed neigh_ifdown +EXPORT_SYMBOL vmlinux 0x1297b151 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12aa8c11 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x12cab2e8 tty_register_driver +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cb08e4 thread_group_exited +EXPORT_SYMBOL vmlinux 0x12d59fc4 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x12e67978 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1313fc3e devfreq_get_freq_range +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 0x134ec14d dentry_path_raw +EXPORT_SYMBOL vmlinux 0x1356f205 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x135df33f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x136f9903 alloc_pages +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x13965223 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a93247 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x13c1c9ee ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x13cdad98 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d9063f kern_path_create +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13fbbdc2 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1403d4c1 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1412b4ff __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x1414dea4 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x1423da78 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1442d8c4 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x14480d6b submit_bio +EXPORT_SYMBOL vmlinux 0x1454fb58 neigh_lookup +EXPORT_SYMBOL vmlinux 0x1456d9f8 km_new_mapping +EXPORT_SYMBOL vmlinux 0x145bf17a netdev_warn +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146c1f55 ip6_output +EXPORT_SYMBOL vmlinux 0x1472f959 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x147e1b44 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x14824667 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x1486d574 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14885742 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x14a8e1e3 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x14b19bb6 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14dc1414 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x14f1d096 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x14f25a14 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +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 0x15557d0c tty_unthrottle +EXPORT_SYMBOL vmlinux 0x156b1e66 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x156f55b3 __bread_gfp +EXPORT_SYMBOL vmlinux 0x157465fd devm_free_irq +EXPORT_SYMBOL vmlinux 0x157548e1 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x157e2a7e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x1589f3fb ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x15a8ce53 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x15b435c7 jbd2_journal_invalidate_folio +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 0x16096753 nd_btt_version +EXPORT_SYMBOL vmlinux 0x161cb4d2 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x16210c37 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628b975 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16355e69 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x1640f71a md_write_end +EXPORT_SYMBOL vmlinux 0x1641998f kernel_getsockname +EXPORT_SYMBOL vmlinux 0x16530f43 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x1679cd24 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a6a04a rtnl_create_link +EXPORT_SYMBOL vmlinux 0x16a80c0e tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x16ab9cd8 param_ops_string +EXPORT_SYMBOL vmlinux 0x16c4f071 tty_lock +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d59bfa register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x16dbe5af fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16eeae9f inode_permission +EXPORT_SYMBOL vmlinux 0x16f9226c __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x16ff6b7e i2c_register_driver +EXPORT_SYMBOL vmlinux 0x17035b48 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x170765ac xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x170aa7df dma_sync_wait +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x171e9523 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x17370a2f pci_write_config_word +EXPORT_SYMBOL vmlinux 0x174850d2 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x17698178 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x1778f2b8 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x177c0b54 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x177c9ffb finish_swait +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17938648 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x1796de46 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x17a01cb9 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x17a13e5e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x17a98861 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x17bafb87 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x17d6ffec sock_no_listen +EXPORT_SYMBOL vmlinux 0x17f5c136 rproc_alloc +EXPORT_SYMBOL vmlinux 0x181fa2bc sk_alloc +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18581087 udp_set_csum +EXPORT_SYMBOL vmlinux 0x1861530b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x18696e35 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x186aea71 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x186c7e4d input_get_timestamp +EXPORT_SYMBOL vmlinux 0x1873bdb9 of_clk_get +EXPORT_SYMBOL vmlinux 0x1875f6a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x187780b2 set_cached_acl +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187d4499 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ac136 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1893410c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18cc4d0e fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x18db5d1d pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f64274 sock_bind_add +EXPORT_SYMBOL vmlinux 0x190a4096 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x19161284 param_set_hexint +EXPORT_SYMBOL vmlinux 0x192476e9 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x192d3e86 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x1931e89c inet_del_offload +EXPORT_SYMBOL vmlinux 0x193ca4ce __icmp_send +EXPORT_SYMBOL vmlinux 0x19440692 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x195371b3 simple_unlink +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x195d0f7a ethtool_notify +EXPORT_SYMBOL vmlinux 0x196a49b0 dump_skip +EXPORT_SYMBOL vmlinux 0x19785606 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x1978ad63 update_devfreq +EXPORT_SYMBOL vmlinux 0x197cc09a pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x197ea6bb i2c_clients_command +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198b32d0 xudma_get_device +EXPORT_SYMBOL vmlinux 0x199c0f01 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c62301 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x19cb043e __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x19dd3eb1 zap_page_range +EXPORT_SYMBOL vmlinux 0x19e23c2a scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x19e6302c padata_do_parallel +EXPORT_SYMBOL vmlinux 0x19e91fbd netdev_alert +EXPORT_SYMBOL vmlinux 0x19ec0bf6 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x19ffd8a9 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x1a0ac2b4 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x1a261c06 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x1a38f40c build_skb_around +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a45fe8c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1a5c5d4a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1a6e637a dev_open +EXPORT_SYMBOL vmlinux 0x1a837cf4 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x1a85f2dd cdev_set_parent +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab1355c filemap_flush +EXPORT_SYMBOL vmlinux 0x1abc0ac5 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad29bed netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x1ad8077d __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x1ae31f3c mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1383bd dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b643963 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x1b695029 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x1b71299d input_set_capability +EXPORT_SYMBOL vmlinux 0x1b776226 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7dd252 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba1138b simple_transaction_set +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bbcd3a2 send_sig +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bed55cb d_invalidate +EXPORT_SYMBOL vmlinux 0x1c00bb09 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x1c04972f vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x1c3226dd cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x1c3f7f16 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1c4d295e security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x1c51b000 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x1c55befa dma_pool_create +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5b2bea jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1c5bc1e9 pci_restore_state +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c76c6cd seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x1c796c7f fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x1c988515 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x1ca02a16 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x1ca15b76 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x1ca2ca47 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1ce2c3f2 pci_bus_type +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1cfa3e31 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x1cfddcbb simple_statfs +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d0ec03c xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d244bca skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2d3002 twl6040_power +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d47b616 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d6cb34a gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1db04e00 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de35ac4 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de554e4 inet_sendpage +EXPORT_SYMBOL vmlinux 0x1de59c22 qcom_scm_ice_invalidate_key +EXPORT_SYMBOL vmlinux 0x1de67f9b qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x1df0a533 param_set_copystring +EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e07b4eb dentry_open +EXPORT_SYMBOL vmlinux 0x1e09918c give_up_console +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e189cc4 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e64931e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x1e67ce10 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8b43d6 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1e8c427e sock_efree +EXPORT_SYMBOL vmlinux 0x1e8d2895 param_get_byte +EXPORT_SYMBOL vmlinux 0x1e92fd48 pskb_extract +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea89883 tcp_close +EXPORT_SYMBOL vmlinux 0x1eb69ab9 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x1eb99cc6 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x1ec0e793 to_ndd +EXPORT_SYMBOL vmlinux 0x1ec76d75 udp_seq_stop +EXPORT_SYMBOL vmlinux 0x1ecabe9b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x1ed42ec5 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee28836 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x1ee3197c has_capability +EXPORT_SYMBOL vmlinux 0x1ee4f41d phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x1ee8ff90 seq_write +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1eff6e02 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x1f31d3d2 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1f340afa vme_init_bridge +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f5aa04d skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x1f8cc336 sk_free +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2007b428 __fput_sync +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2030337a scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20576be6 config_item_get +EXPORT_SYMBOL vmlinux 0x20a56b70 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +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 0x20f3094d __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213eabb8 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x214b781d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x21518de3 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x2188cba2 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21ad3fd1 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cfd0f1 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x21d37014 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221ba410 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x221e5626 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x2229d75e blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224b218a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x227bc9d9 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x22894254 clkdev_drop +EXPORT_SYMBOL vmlinux 0x228be72c ptp_clock_index +EXPORT_SYMBOL vmlinux 0x228f95c4 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x2291b87e sock_create_kern +EXPORT_SYMBOL vmlinux 0x22a01843 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x22a4ddcc iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bb4ac0 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x22bf0fd4 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x22bf60f3 mmc_add_host +EXPORT_SYMBOL vmlinux 0x22c5f374 arp_xmit +EXPORT_SYMBOL vmlinux 0x22cea3a4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x22ef3588 seq_release +EXPORT_SYMBOL vmlinux 0x22f7ecf9 register_netdev +EXPORT_SYMBOL vmlinux 0x22f8eed9 inc_nlink +EXPORT_SYMBOL vmlinux 0x22fe8edb __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x233706bb pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x233ddc3e neigh_destroy +EXPORT_SYMBOL vmlinux 0x234ff121 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x2356e4a0 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236bc1b0 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x237954a4 would_dump +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x23800608 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238dd685 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23aa8630 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d406df twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e0821e param_set_int +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x242a3df5 param_get_bool +EXPORT_SYMBOL vmlinux 0x2439865c sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x245117ab ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x245520dc arp_create +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24623ff6 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x246912fa bmap +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24a426b3 kernel_accept +EXPORT_SYMBOL vmlinux 0x24bf8f43 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x24cc8dc5 drop_nlink +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dea2a7 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x24ecaa43 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x24fa210d __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250863db tcp_child_process +EXPORT_SYMBOL vmlinux 0x2514ad90 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x252c00e3 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x2532db5e no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x2539c69f nf_setsockopt +EXPORT_SYMBOL vmlinux 0x25671ef5 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x25728995 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x2574e3c6 skb_queue_head +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2586c101 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x2597a868 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x2597a93d block_write_end +EXPORT_SYMBOL vmlinux 0x25b02e98 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fd2670 single_open_size +EXPORT_SYMBOL vmlinux 0x260904be nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x2630b1c1 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x263aaa23 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263ee4f4 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2655962b ip_local_deliver +EXPORT_SYMBOL vmlinux 0x265852ba tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x265eef07 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x266c1057 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x26704242 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x26757a0c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x26885f3a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26962311 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x269d2a57 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x26a4eb3b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x26b94114 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x26c8fb27 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x26c965a4 __d_drop +EXPORT_SYMBOL vmlinux 0x26cfd933 skb_tx_error +EXPORT_SYMBOL vmlinux 0x26e226d5 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x2705117c kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2727d98a cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272bc4fe netdev_txq_to_tc +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 0x276ceb83 generic_pipe_buf_release +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 0x279f276a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x27b65849 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ce315b pci_disable_device +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27e7bc0a rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x27f57df6 vme_irq_request +EXPORT_SYMBOL vmlinux 0x280112a3 kern_path +EXPORT_SYMBOL vmlinux 0x2801d7ee input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x28030cc4 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x2803d2db of_platform_device_create +EXPORT_SYMBOL vmlinux 0x281031aa cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28320f4d dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x283698c8 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x284bab82 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x284f6991 secpath_set +EXPORT_SYMBOL vmlinux 0x28584e2f napi_disable +EXPORT_SYMBOL vmlinux 0x285f7630 md_check_recovery +EXPORT_SYMBOL vmlinux 0x2867c391 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x289593a6 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x289b3968 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x28a16df7 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x28c0d37f nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x28d052bc alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x28e47569 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x28e48f88 netif_rx +EXPORT_SYMBOL vmlinux 0x28ed8f59 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x28f544e4 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fdee10 phy_connect +EXPORT_SYMBOL vmlinux 0x29181066 sync_blockdev +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296fe72d dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x2976aae6 skb_pull_data +EXPORT_SYMBOL vmlinux 0x297ba496 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x298a79f0 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x299a4070 bdi_put +EXPORT_SYMBOL vmlinux 0x299c5548 thaw_super +EXPORT_SYMBOL vmlinux 0x29ae4c1a flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x29b8cd09 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x29ba643e unregister_qdisc +EXPORT_SYMBOL vmlinux 0x29d825a0 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e52e1d mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x29e936d6 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x29f3a4ad fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x29f5440f tso_start +EXPORT_SYMBOL vmlinux 0x29f759fe jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x29fd2f66 skb_find_text +EXPORT_SYMBOL vmlinux 0x2a04e9cf input_copy_abs +EXPORT_SYMBOL vmlinux 0x2a0f226e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x2a149e88 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a35b278 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2a3c0dd5 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x2a67542e cdev_device_del +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a92f33a simple_rmdir +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa3cfcb fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x2aa849b7 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ad77f8c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x2ae4d06d sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x2ae98ab7 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2afb6451 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x2b0a4ca7 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x2b0f3430 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b472335 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x2b4eae90 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x2b539b62 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b69a0c6 d_exact_alias +EXPORT_SYMBOL vmlinux 0x2b7132f3 sk_error_report +EXPORT_SYMBOL vmlinux 0x2b8d4bb4 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba0a94d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2bb395b2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbfa960 iget5_locked +EXPORT_SYMBOL vmlinux 0x2bcc3ce5 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x2bccdabb ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bdf6d0e serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x2bf5c55e jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c02e7b9 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x2c06be54 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x2c090c44 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2c095693 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x2c221abd folio_unlock +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c33bb72 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x2c41de3c netdev_printk +EXPORT_SYMBOL vmlinux 0x2c47e133 proc_symlink +EXPORT_SYMBOL vmlinux 0x2c51acdf rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c54d43b __scm_send +EXPORT_SYMBOL vmlinux 0x2c5549bb dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c7aa963 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c8637d2 get_fs_type +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2ca4a980 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd0ea38 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf2e2f9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x2cff5bbc mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x2d01c448 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x2d0f7fed tty_do_resize +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d28188a ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d31b48a inet_reqsk_alloc +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 0x2d59b016 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x2d6cbf15 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x2d723ec7 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2d807632 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2d8493c5 input_free_device +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da9aefe pci_free_irq +EXPORT_SYMBOL vmlinux 0x2dc2f2a4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd05c60 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x2ddff0da pnp_start_dev +EXPORT_SYMBOL vmlinux 0x2de0160d xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0fa38d sock_wake_async +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e2dda58 dev_deactivate +EXPORT_SYMBOL vmlinux 0x2e2eb8b4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x2e3ad932 sock_set_mark +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e581660 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e997893 file_modified +EXPORT_SYMBOL vmlinux 0x2eaa5900 ether_setup +EXPORT_SYMBOL vmlinux 0x2eb1511e tso_build_data +EXPORT_SYMBOL vmlinux 0x2eb71506 devm_request_resource +EXPORT_SYMBOL vmlinux 0x2eb88dc6 tty_hangup +EXPORT_SYMBOL vmlinux 0x2ec27e90 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee125e7 sock_i_ino +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eef99fa ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f1c4b1e dev_load +EXPORT_SYMBOL vmlinux 0x2f25dff8 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f37609c tcf_idr_create +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f397fab of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x2f42b6e1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x2f42b903 ram_aops +EXPORT_SYMBOL vmlinux 0x2f4eb379 dquot_destroy +EXPORT_SYMBOL vmlinux 0x2f53853f netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x2f5b5005 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x2f6a12b5 pci_get_class +EXPORT_SYMBOL vmlinux 0x2f6dd58e pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f78348f pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x2f81702d mdio_bus_type +EXPORT_SYMBOL vmlinux 0x2f879785 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x2f944218 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x2f9a7cfc rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x2f9ef9ba inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2fb4b6ee ps2_init +EXPORT_SYMBOL vmlinux 0x2fb992e5 skb_dequeue +EXPORT_SYMBOL vmlinux 0x2fdf4d99 pci_iounmap +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe57f2c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2fe5f23c ptp_clock_event +EXPORT_SYMBOL vmlinux 0x2fea1687 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x2febc7d8 elv_rb_del +EXPORT_SYMBOL vmlinux 0x2ff9eb03 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x302c6905 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x303263fa sock_alloc_file +EXPORT_SYMBOL vmlinux 0x3033597b fget_raw +EXPORT_SYMBOL vmlinux 0x30443249 brioctl_set +EXPORT_SYMBOL vmlinux 0x3052b11a phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x305c94f8 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x306bb0d3 kobject_del +EXPORT_SYMBOL vmlinux 0x307f4535 request_key_tag +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309a8aab dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30de6623 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3126202f ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3134a75d build_skb +EXPORT_SYMBOL vmlinux 0x31493727 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x31755c61 km_policy_expired +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31ad5a2d configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x31b4329b page_mapped +EXPORT_SYMBOL vmlinux 0x31d86a3a mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x31fb619a bioset_init +EXPORT_SYMBOL vmlinux 0x3208535a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x3213d14b mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x3234d77e request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x3236d9e3 vme_lm_request +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3247455f tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x327662c7 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328aed56 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x329250f5 noop_fsync +EXPORT_SYMBOL vmlinux 0x329531f3 dev_mc_del +EXPORT_SYMBOL vmlinux 0x32a568c3 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x32a667f9 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x32b8a967 vga_put +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d3dd95 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x32d97f18 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32fb7d77 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x331d32ed sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3327fad2 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x3331fc55 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x334d8622 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3380b750 seq_vprintf +EXPORT_SYMBOL vmlinux 0x33be9d34 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x33d2ff1a sk_mc_loop +EXPORT_SYMBOL vmlinux 0x33d9e4be crypto_sha1_update +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 0x33ffc6d9 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x340de9b6 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x341b6997 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x342c5084 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x342f84f0 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x34316068 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x343ba2aa padata_alloc +EXPORT_SYMBOL vmlinux 0x344a43d6 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x346d1cb0 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x34780692 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x34800dc8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x34828a52 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34e4e885 kernel_connect +EXPORT_SYMBOL vmlinux 0x34eb070a eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x34ef747e input_flush_device +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350a35a0 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352c9aa4 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x35319bc0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3553f5f9 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35872984 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ae4739 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x35bb2bc8 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x35c9e01a phy_attached_info +EXPORT_SYMBOL vmlinux 0x35e3d2b3 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360c77b0 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x3629302f of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x362ee7af netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x36306f3f file_ns_capable +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365b1f21 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36607bf8 finish_open +EXPORT_SYMBOL vmlinux 0x36628e65 input_reset_device +EXPORT_SYMBOL vmlinux 0x367a8a67 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x3682c37f mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x36838b0b ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x368eeae7 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x36919303 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x369ddeb4 iget_failed +EXPORT_SYMBOL vmlinux 0x36ac7fc5 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36c823b4 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x36cc3f10 skb_eth_push +EXPORT_SYMBOL vmlinux 0x36d109b6 udp_read_sock +EXPORT_SYMBOL vmlinux 0x36d3e4af filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x36e212c1 node_data +EXPORT_SYMBOL vmlinux 0x36f430f6 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x3706ecc0 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x3710f398 param_get_ulong +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3717613a __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372f630e netif_device_detach +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37a7009c ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x37adf8ea pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x37b3170b dget_parent +EXPORT_SYMBOL vmlinux 0x37b3e7a3 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x37b4a354 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d475dc rproc_report_crash +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37de038c rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x37f0731f sk_stream_error +EXPORT_SYMBOL vmlinux 0x37f21e5b scsi_print_result +EXPORT_SYMBOL vmlinux 0x380274df tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x38114238 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381fab48 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x382cefd9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3842d468 cdev_init +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3871a423 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3887b48c netlink_set_err +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389207ef inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3892976b __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x3899393f phy_device_free +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x38a4b9bb dev_set_threaded +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b4672c tty_unregister_device +EXPORT_SYMBOL vmlinux 0x38b75bdb serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x38bed058 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x38caad05 phy_loopback +EXPORT_SYMBOL vmlinux 0x38cdb9e4 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38e53c01 input_inject_event +EXPORT_SYMBOL vmlinux 0x38e5fb28 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x39085c64 __find_get_block +EXPORT_SYMBOL vmlinux 0x390b91b9 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x390fc8ed __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x391abeba proto_unregister +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x39250958 ip_output +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x393850fe input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d901c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39506312 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x3952a2f3 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395f8fb7 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x397d74ca dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x39828583 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x3987babb __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x398e8d87 blkdev_put +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 0x39c95e2c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x39cf3810 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39ec1d4f md_write_inc +EXPORT_SYMBOL vmlinux 0x39f813cd register_cdrom +EXPORT_SYMBOL vmlinux 0x39fdf97b skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a15c220 set_user_nice +EXPORT_SYMBOL vmlinux 0x3a18d2e5 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a367000 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a686c5d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x3a97838b tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x3a9806bc __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x3a9ff995 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3adb3768 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aeea80c __dquot_transfer +EXPORT_SYMBOL vmlinux 0x3af62fb6 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0bdc1b kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b18947d mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b251d32 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b46b26c __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b815b77 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x3b832750 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b94a211 vme_bus_num +EXPORT_SYMBOL vmlinux 0x3b9aaa1f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3ba0e062 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x3ba39b72 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x3bbcddf4 inet_select_addr +EXPORT_SYMBOL vmlinux 0x3bbdc50d __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x3bc298b6 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf17510 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x3bfd8cff mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x3c0ac07c genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x3c0be83f make_kuid +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c15b327 seq_open_private +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c27e143 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c496721 dev_activate +EXPORT_SYMBOL vmlinux 0x3c50b655 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3c72564c phy_attach +EXPORT_SYMBOL vmlinux 0x3c77af5d setup_new_exec +EXPORT_SYMBOL vmlinux 0x3c8bcc98 fb_get_mode +EXPORT_SYMBOL vmlinux 0x3c9226e3 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3ca839bd generic_block_bmap +EXPORT_SYMBOL vmlinux 0x3ca89932 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x3caad591 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x3cafa559 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3cb76f54 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cbc9232 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x3cc61a56 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf9888d mount_nodev +EXPORT_SYMBOL vmlinux 0x3cfce927 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d086381 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x3d122698 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x3d1bb728 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d2a3939 netdev_info +EXPORT_SYMBOL vmlinux 0x3d509b8c udp6_set_csum +EXPORT_SYMBOL vmlinux 0x3d57c6c3 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x3d5ad9dc request_firmware +EXPORT_SYMBOL vmlinux 0x3d69a0df freeze_super +EXPORT_SYMBOL vmlinux 0x3d8c4b6f jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3daaad6e __insert_inode_hash +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 0x3dbae4cd tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dccd97a md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3de64ec4 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e11a607 bio_add_page +EXPORT_SYMBOL vmlinux 0x3e1434d8 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3e13e8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3e4e47b4 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x3e65425d vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x3e6ec922 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x3e72a538 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x3e736452 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3e74d8f3 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e7c4620 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x3e975f0f inet_add_offload +EXPORT_SYMBOL vmlinux 0x3ea138c1 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x3ea3275f nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x3ec39178 registered_fb +EXPORT_SYMBOL vmlinux 0x3ecf348c qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x3ee28f5f qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x3ee2f976 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x3ee62726 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3eee086d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0ca514 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f2521fd inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x3f2a264a dquot_get_state +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f346ad0 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3f34f2e8 iov_iter_revert +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 0x3f6068cc unlock_rename +EXPORT_SYMBOL vmlinux 0x3f6332ec i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3f715854 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f911bfb mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3fad8613 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe56048 vfs_fsync +EXPORT_SYMBOL vmlinux 0x3ffef3bb pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x4002a4e3 genphy_resume +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x402c5155 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x40813f5e jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x40944d1e jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d1e948 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d61d91 genlmsg_put +EXPORT_SYMBOL vmlinux 0x40e0846e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x40e5fac0 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x40e8c1b3 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40fdabd4 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x40ffb170 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x41012d2a kobject_get +EXPORT_SYMBOL vmlinux 0x411164e0 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x41147dcb jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x41222c18 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x412905ce dma_resv_init +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413499fc netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x4143ddfc seq_read_iter +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x416cff33 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41961661 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x41b82f1b shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x41b875b2 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x41b9b2e9 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x41c04c9a fman_register_intr +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41dec082 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x41e3c08a ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x41e569d2 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x4218568d blk_start_plug +EXPORT_SYMBOL vmlinux 0x4223779c __put_page +EXPORT_SYMBOL vmlinux 0x422c091b unlock_two_nondirectories +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 0x4268eee1 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x426ae75a kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x426f3d49 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4277415c md_finish_reshape +EXPORT_SYMBOL vmlinux 0x4277a9cb devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x42a63ab6 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x42b8422b blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x42b8ea61 block_write_full_page +EXPORT_SYMBOL vmlinux 0x42bbe840 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42d2c04b simple_dir_operations +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42ffb850 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4303ffb1 posix_test_lock +EXPORT_SYMBOL vmlinux 0x4315e359 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432faf07 vma_set_file +EXPORT_SYMBOL vmlinux 0x43332630 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x43440aae filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x43451a79 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x435098d1 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435f23b1 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x4369b9ac bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438b6d2d cont_write_begin +EXPORT_SYMBOL vmlinux 0x438d737a reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x43a19554 key_invalidate +EXPORT_SYMBOL vmlinux 0x43ac4451 mpage_writepages +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b3e837 d_set_d_op +EXPORT_SYMBOL vmlinux 0x43b5c36a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d516ac jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x43e0777a eth_header_cache +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4405bd78 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x4413b83b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4426465c page_readlink +EXPORT_SYMBOL vmlinux 0x443b8031 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4448097a sock_create_lite +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x447f6aeb flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x448de3f7 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44c13b27 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x44cdd9f1 nf_log_unset +EXPORT_SYMBOL vmlinux 0x44d18dd8 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x44e6aa28 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44fdab70 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450cbf93 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4513d9f1 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45304cb6 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x456e94d5 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x457431d9 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45af694b netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x45af7d54 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x45ca017e tcp_check_req +EXPORT_SYMBOL vmlinux 0x45d5c2b1 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x45fa45c6 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x460c1ea0 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x460d270d dm_put_device +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x46194bb3 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x461c76e1 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x462eab45 bdi_alloc +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467574d4 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468756af security_sock_graft +EXPORT_SYMBOL vmlinux 0x46897092 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x4689cdbd blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x468a30c2 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ae4c07 load_nls_default +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46e2b249 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x46f75f84 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47273667 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x4751ea30 of_chosen +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x475e4436 input_close_device +EXPORT_SYMBOL vmlinux 0x476cb6b9 register_key_type +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4773a44c uart_resume_port +EXPORT_SYMBOL vmlinux 0x478badad dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4793e92b scsi_is_target_device +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 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e6f353 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x480960ab __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x480ad56d tty_port_hangup +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482a5de7 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x483e020d rpmh_invalidate +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 0x486ffac4 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x48754c76 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x48900a5f acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x48951ef7 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a34011 vc_cons +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c2b260 finalize_exec +EXPORT_SYMBOL vmlinux 0x48c74b16 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x48cbda10 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x48cfc9e6 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d50104 fman_port_bind +EXPORT_SYMBOL vmlinux 0x48dbb92f genl_notify +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49121318 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x49450d3c ilookup +EXPORT_SYMBOL vmlinux 0x494ecb16 dcb_getapp +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4966c1ad mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x496be42e acpi_device_hid +EXPORT_SYMBOL vmlinux 0x496cd8d8 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x49721ebc skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x497f3d9e register_quota_format +EXPORT_SYMBOL vmlinux 0x4985958f param_ops_invbool +EXPORT_SYMBOL vmlinux 0x4987c41c dev_driver_string +EXPORT_SYMBOL vmlinux 0x49909081 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a77c02 vme_master_request +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b3a89d mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x49b4a45c dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x49b65af3 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x49b7d986 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x49c41c7b cdev_alloc +EXPORT_SYMBOL vmlinux 0x49e0c30b flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x49fab3dd generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x4a012d1d rproc_free +EXPORT_SYMBOL vmlinux 0x4a1b6663 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4a1dd653 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x4a277fa2 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x4a346478 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x4a39c509 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a68a927 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9ce5be __SetPageMovable +EXPORT_SYMBOL vmlinux 0x4a9ef1f1 audit_log_start +EXPORT_SYMBOL vmlinux 0x4aa4a19b __lock_buffer +EXPORT_SYMBOL vmlinux 0x4adc8d13 scsi_host_put +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af478d4 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x4af6949a xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b0e5781 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4b1c4181 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x4b27e2e7 readahead_expand +EXPORT_SYMBOL vmlinux 0x4b4a9c21 dquot_get_next_dqblk +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 0x4b8176be bio_kmalloc +EXPORT_SYMBOL vmlinux 0x4b984e22 __free_pages +EXPORT_SYMBOL vmlinux 0x4b988090 scsi_print_command +EXPORT_SYMBOL vmlinux 0x4b9efeef pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x4bca4246 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd1e029 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x4bd56821 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x4bd83734 tty_check_change +EXPORT_SYMBOL vmlinux 0x4bec482a md_cluster_ops +EXPORT_SYMBOL vmlinux 0x4beeae5c fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf83544 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c18969d xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x4c1f04f6 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4c23ec53 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x4c291f5e ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x4c2cd866 param_set_invbool +EXPORT_SYMBOL vmlinux 0x4c3b53a5 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c5735e3 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x4c76bcb4 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4c9c0be8 dqget +EXPORT_SYMBOL vmlinux 0x4caf7841 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4cb0461d jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x4cb7cd63 dev_uc_del +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cebe313 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x4cee1acf generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4cee9732 __f_setown +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d13956f textsearch_prepare +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d4ced98 key_link +EXPORT_SYMBOL vmlinux 0x4d523f88 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x4d5264f3 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x4d5b266e phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x4d653ec8 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d74caee xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4d797e19 rproc_add +EXPORT_SYMBOL vmlinux 0x4d811d5c phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x4d8721e6 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x4d8fc9f1 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4da8fc67 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x4db874c4 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x4dc3fcdd unregister_md_personality +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 0x4df8afcb t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e29127e inet_addr_type +EXPORT_SYMBOL vmlinux 0x4e2b40d8 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e320b03 skb_unlink +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3d04c8 vfs_setpos +EXPORT_SYMBOL vmlinux 0x4e49706f __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e555f2b unregister_nls +EXPORT_SYMBOL vmlinux 0x4e5d6c98 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4e6198c1 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e71b760 pci_get_device +EXPORT_SYMBOL vmlinux 0x4e741c07 param_get_charp +EXPORT_SYMBOL vmlinux 0x4e78faa5 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x4e7acd28 touch_buffer +EXPORT_SYMBOL vmlinux 0x4e85e10a jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x4e8fedd6 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4e9be0a1 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea3339f bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ebc6996 pci_pme_active +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecc7540 I_BDEV +EXPORT_SYMBOL vmlinux 0x4ed48fe7 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x4ef20cbf mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x4effd10b sync_filesystem +EXPORT_SYMBOL vmlinux 0x4f0951bf netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x4f0c3199 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x4f198e99 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1db6e3 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f7c860c scsi_remove_device +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f90cda3 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4fbc3b04 simple_get_link +EXPORT_SYMBOL vmlinux 0x4fbd4c0b xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x4fd9e03d netdev_has_any_upper_dev +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 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x504a32b8 cdev_device_add +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50737ae4 serio_bus +EXPORT_SYMBOL vmlinux 0x507c3222 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b1461b pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bd4242 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50db045b kthread_stop +EXPORT_SYMBOL vmlinux 0x50de7c5a scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x50f6182c d_find_any_alias +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x511a4635 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x511cf3ee jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x511d9d3e tcp_read_sock +EXPORT_SYMBOL vmlinux 0x513dd7f2 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515af4f2 vme_slot_num +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x517cc856 bio_reset +EXPORT_SYMBOL vmlinux 0x518191bd kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x5189fe20 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x5199939f kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x51a2741e __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x51a3a680 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51c541c9 phy_suspend +EXPORT_SYMBOL vmlinux 0x51ccdd3d md_handle_request +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f512a3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52054178 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x5210649e inode_update_time +EXPORT_SYMBOL vmlinux 0x5215ec4d sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x521f677d netif_receive_skb +EXPORT_SYMBOL vmlinux 0x52257ff2 tty_port_close +EXPORT_SYMBOL vmlinux 0x5234ada5 generic_update_time +EXPORT_SYMBOL vmlinux 0x525b11e9 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5270bd75 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529dff60 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x529e7eb8 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x52a2aedf __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x52a6475e security_unix_may_send +EXPORT_SYMBOL vmlinux 0x52ae550e __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x52b90ac4 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x52ba54fd no_llseek +EXPORT_SYMBOL vmlinux 0x52bbfb0f should_remove_suid +EXPORT_SYMBOL vmlinux 0x52bd442a page_pool_create +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52dfd4e9 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x53000ae6 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530defd4 of_find_property +EXPORT_SYMBOL vmlinux 0x530e9502 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x530f4cba phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5322c526 fman_bind +EXPORT_SYMBOL vmlinux 0x5323bdb2 seq_file_path +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x535b1ea8 pci_request_regions +EXPORT_SYMBOL vmlinux 0x537c9a1b __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x5381aa2d netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x53b5c22e napi_get_frags +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53e78909 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x53edb149 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x53eed79f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f1fcf1 mount_bdev +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5410b767 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x541cb777 iput +EXPORT_SYMBOL vmlinux 0x5433da16 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x54360d46 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546e39d7 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x54928778 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x54a01a50 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +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 0x5509749d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x551055d2 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x551458b1 generic_read_dir +EXPORT_SYMBOL vmlinux 0x55158230 of_device_is_available +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552e0d09 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554f20f1 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x55558e1a input_grab_device +EXPORT_SYMBOL vmlinux 0x5561f60d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55850636 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x5588c033 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x558a50b2 netlink_unicast +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a434eb ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x55b17ee8 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x55bcefc9 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x55cb29a8 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x55d8f3af napi_gro_flush +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ee6bb9 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x560334cc genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x5605a4d7 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x5605b7e7 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5658e839 security_sb_remount +EXPORT_SYMBOL vmlinux 0x5663b28c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x56756f3d param_get_ullong +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x569a0760 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x56ad8f0c security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c3edd8 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56c8f136 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x56d6c508 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x56d9b58d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x570b7e22 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x571b3ce1 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x571ca166 d_add_ci +EXPORT_SYMBOL vmlinux 0x573ec709 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x574b453e filp_close +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57574e5b cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5779e165 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579a3e25 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x579a48dc freezing_slow_path +EXPORT_SYMBOL vmlinux 0x57a0cf40 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x57a7edac del_gendisk +EXPORT_SYMBOL vmlinux 0x57b85d7e mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c0362a pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x57c84fcb __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x57c85d44 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57f24930 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x580399c0 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x5810c617 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x581492ff sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581e5a75 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x583520f1 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583b9517 phy_disconnect +EXPORT_SYMBOL vmlinux 0x583dfcba vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x58562be9 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5889ded7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x589e9690 udp_seq_start +EXPORT_SYMBOL vmlinux 0x589f965c of_node_name_eq +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 0x58e5ee8a send_sig_info +EXPORT_SYMBOL vmlinux 0x58e682e4 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x58f5b821 arp_tbl +EXPORT_SYMBOL vmlinux 0x59083196 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x59168c85 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x591f9304 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x59231d60 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x592e4d88 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596b0cd5 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x5982cd03 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x5990028e mr_rtm_dumproute +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 0x59bef1e5 dentry_create +EXPORT_SYMBOL vmlinux 0x59c60d8f input_set_timestamp +EXPORT_SYMBOL vmlinux 0x59d03c9c ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x59da0269 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x59df84ad tty_port_put +EXPORT_SYMBOL vmlinux 0x59e58170 blk_get_queue +EXPORT_SYMBOL vmlinux 0x5a00f100 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x5a03fd20 wake_up_process +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a15ebaf folio_alloc +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a333e6f is_subdir +EXPORT_SYMBOL vmlinux 0x5a3383bc reuseport_alloc +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a58b8ae fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x5a5a1dc9 of_phy_connect +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aaa68eb filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5abf3354 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x5ac76789 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x5adc2b5b security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae5a590 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x5aea3422 fqdir_exit +EXPORT_SYMBOL vmlinux 0x5aea95b2 vlan_for_each +EXPORT_SYMBOL vmlinux 0x5afe69bd alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x5b0248bb skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5b15f128 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x5b19336a of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x5b1de902 inet_protos +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b374f26 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x5b3bb6d9 unregister_console +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b576ac9 mntput +EXPORT_SYMBOL vmlinux 0x5b7231df forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5b79490f of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x5ba04c85 sock_edemux +EXPORT_SYMBOL vmlinux 0x5ba7fb18 vfs_symlink +EXPORT_SYMBOL vmlinux 0x5bd0f936 ata_print_version +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf58f4b netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5c072888 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5c1792fd vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x5c1b21c8 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2b95e9 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c45ab5c handle_edge_irq +EXPORT_SYMBOL vmlinux 0x5c4686f5 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x5c92639c __check_sticky +EXPORT_SYMBOL vmlinux 0x5c9e66a7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x5cad687b scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x5cb61f97 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x5cba3ea9 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x5cc7dda3 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x5cd76d3f __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5ce01d49 mmc_free_host +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf8495b register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0530b8 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d19e46e tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x5d1e2648 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5d23bd59 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x5d348591 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x5d39cfad device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4a9fb3 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x5d4fcb36 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5d5feff8 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x5d698584 __quota_error +EXPORT_SYMBOL vmlinux 0x5d82a8fe __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5db5d998 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x5de18619 generic_writepages +EXPORT_SYMBOL vmlinux 0x5dff6eb6 _dev_emerg +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e378a88 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x5e437238 input_register_handle +EXPORT_SYMBOL vmlinux 0x5e53a839 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x5e6ed853 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8f9695 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x5e91f026 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x5e94b64a skb_copy_header +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef20cfd inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef9e762 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5efeda87 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f09cec4 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x5f13bbc2 import_single_range +EXPORT_SYMBOL vmlinux 0x5f1500c9 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f3647a5 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f5b5793 __serio_register_port +EXPORT_SYMBOL vmlinux 0x5f5bf583 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x5f61e951 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5f661cc4 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x5f6a661c devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6fb8da find_inode_nowait +EXPORT_SYMBOL vmlinux 0x5f8618ca generic_delete_inode +EXPORT_SYMBOL vmlinux 0x5f8dde71 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f9e8b42 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x5faa894c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fdf38e2 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x600ad89d pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x6016cec4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60455f2b param_ops_ullong +EXPORT_SYMBOL vmlinux 0x604e7cd8 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6058595b generic_file_mmap +EXPORT_SYMBOL vmlinux 0x605dfbd8 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x606a5c97 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609308bf pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609c3770 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a00141 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x60a4418b dquot_initialize +EXPORT_SYMBOL vmlinux 0x60a5dc26 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60be4398 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x60bf2813 inet_bind +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ea4fac tcf_block_put +EXPORT_SYMBOL vmlinux 0x60eed504 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x61070938 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x6118b445 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x6121937f sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x6126b623 dst_discard_out +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61422473 sock_init_data +EXPORT_SYMBOL vmlinux 0x6142c703 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x6146f40d xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x614c3410 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x61543c35 poll_initwait +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6161cc50 sock_wfree +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 0x618e45df i2c_verify_client +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cbf85a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x61cc6fa3 notify_change +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e632cd pci_release_region +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f7579b fddi_type_trans +EXPORT_SYMBOL vmlinux 0x61f8d160 __put_user_ns +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62328662 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x625aa5f1 udp_poll +EXPORT_SYMBOL vmlinux 0x625eca91 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627e612b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62867120 of_node_put +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629d6aee bio_chain +EXPORT_SYMBOL vmlinux 0x62a0b899 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x62bb5adb pci_dev_put +EXPORT_SYMBOL vmlinux 0x62c6ab80 amba_device_register +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62dcafad tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x62e44681 param_set_ullong +EXPORT_SYMBOL vmlinux 0x62f0523c __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x630bc591 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x630bca61 xattr_full_name +EXPORT_SYMBOL vmlinux 0x6310e6ba skb_vlan_push +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632dafa2 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x633a18c3 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x633bbce9 rw_verify_area +EXPORT_SYMBOL vmlinux 0x638c5c26 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c2c58d mmc_release_host +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d4d631 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x63d59fb5 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x63db20ae neigh_seq_start +EXPORT_SYMBOL vmlinux 0x63df681b skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ed7bb3 put_disk +EXPORT_SYMBOL vmlinux 0x63ef5b34 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x64089f8c blk_rq_map_user +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 0x645b7841 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x646f9195 inet_accept +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64912af7 kill_block_super +EXPORT_SYMBOL vmlinux 0x649f60f7 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x64a0c2ba ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d9c938 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x64dca860 passthru_features_check +EXPORT_SYMBOL vmlinux 0x64f5672f init_pseudo +EXPORT_SYMBOL vmlinux 0x650d8aeb devm_of_iomap +EXPORT_SYMBOL vmlinux 0x650f3d05 init_special_inode +EXPORT_SYMBOL vmlinux 0x6511429c param_ops_bint +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x6518b0ba twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6529315e crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653a4023 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x6570ebd7 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65906260 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x6592405f phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a8d74e eth_header_parse +EXPORT_SYMBOL vmlinux 0x65aa2110 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x65aaf02d dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x65b624d3 nonseekable_open +EXPORT_SYMBOL vmlinux 0x65c466e5 xp_dma_unmap +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 0x6609dee2 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x660e906d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6635ec28 kobject_put +EXPORT_SYMBOL vmlinux 0x6637006e folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664f658c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x6653ba89 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x6658da5a drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6663d542 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666b2785 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x666bd0f4 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x6672bf6c register_shrinker +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66774b4b do_splice_direct +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668550cb __break_lease +EXPORT_SYMBOL vmlinux 0x668b1237 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668f292f scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x669d7afc sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x66a318df nf_log_register +EXPORT_SYMBOL vmlinux 0x66a98cf7 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b6245f uart_update_timeout +EXPORT_SYMBOL vmlinux 0x66cc3174 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x66dfe6a9 get_tz_trend +EXPORT_SYMBOL vmlinux 0x66eb52c1 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x66ee33bf __folio_lock +EXPORT_SYMBOL vmlinux 0x66fe150c vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x6701220b inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x6711e5c8 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x6721081b mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6744ce6c __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679b1198 iterate_dir +EXPORT_SYMBOL vmlinux 0x67afd2f9 napi_complete_done +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b2c369 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bd2e2d __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cce163 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x67ea3fd1 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6840c869 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x6849adbe jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x68576ff7 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x68635195 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x68746553 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687b8278 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x688403a4 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x688a80b4 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x688b74d5 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x68961f13 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x68a4c324 request_key_rcu +EXPORT_SYMBOL vmlinux 0x68ad8ec7 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x68d318da skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x68e6845b kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6948a4e5 param_set_charp +EXPORT_SYMBOL vmlinux 0x69527e39 dquot_resume +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973f0aa write_cache_pages +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x698bed8d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x699389eb __alloc_skb +EXPORT_SYMBOL vmlinux 0x699e2574 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x69a7948a xp_can_alloc +EXPORT_SYMBOL vmlinux 0x69b79d4c pci_release_regions +EXPORT_SYMBOL vmlinux 0x69c15dd5 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x69d50e0d blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69f10941 seq_dentry +EXPORT_SYMBOL vmlinux 0x69f42319 file_update_time +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a163e43 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x6a1e2583 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a37be46 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x6a3969d8 simple_open +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a463bbc inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6a505d0b mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a689a22 skb_expand_head +EXPORT_SYMBOL vmlinux 0x6a69b4dc bh_submit_read +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a73b260 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x6a835d79 neigh_for_each +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a932a6b acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab844cd __folio_alloc +EXPORT_SYMBOL vmlinux 0x6acba03a __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af16ecd end_page_writeback +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b44cf67 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6b4a6275 pci_save_state +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b788381 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x6b7b1770 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x6b7bccce netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x6b7df982 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8b93e9 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b90e89f key_payload_reserve +EXPORT_SYMBOL vmlinux 0x6bc14880 generic_write_checks +EXPORT_SYMBOL vmlinux 0x6bc339d5 vme_bus_type +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc97949 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c537e47 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6c549abd dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c60cca5 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6a5b4c of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c84bf75 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x6ca8bde1 km_query +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cba8315 posix_lock_file +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6ccb0064 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cfa15c1 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x6d0ad8b0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x6d0bb138 input_open_device +EXPORT_SYMBOL vmlinux 0x6d0c32a3 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x6d1299fd tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d42c28c mmc_can_trim +EXPORT_SYMBOL vmlinux 0x6d4ccd4b phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x6d503b80 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x6d5995e1 km_report +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d61d845 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d871919 from_kgid +EXPORT_SYMBOL vmlinux 0x6d96a82d timestamp_truncate +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6daae24e config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc1dd20 set_blocksize +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dc98e1e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x6dcc1a24 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e072042 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x6e0ab938 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6e20e38d pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x6e257dc2 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x6e284eb5 of_translate_address +EXPORT_SYMBOL vmlinux 0x6e367624 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x6e523877 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e85f362 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6e8870de md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6e936a98 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec3ed3e pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x6ed1f453 genl_register_family +EXPORT_SYMBOL vmlinux 0x6ed60587 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x6edfd1e5 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x6ee1a7ec misc_register +EXPORT_SYMBOL vmlinux 0x6eec73c6 skb_trim +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f513eea vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f607993 __fs_parse +EXPORT_SYMBOL vmlinux 0x6f7eda1f i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fa2054e iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x6fb092db skb_put +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fbe088d module_layout +EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fce11af tcp_peek_len +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6ff9832e iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x6ffa1ccd fb_find_mode +EXPORT_SYMBOL vmlinux 0x6ffae9a2 of_match_node +EXPORT_SYMBOL vmlinux 0x6ffe7eec clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70135442 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x701c0a27 ip_frag_init +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7051f34e padata_free +EXPORT_SYMBOL vmlinux 0x7054a15f address_space_init_once +EXPORT_SYMBOL vmlinux 0x70598be4 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x70903fff pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x7090d202 generic_setlease +EXPORT_SYMBOL vmlinux 0x70a0d4c7 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x70a35afc bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x70a47b19 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70c869fd __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70f1e8a2 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x70f40911 serio_close +EXPORT_SYMBOL vmlinux 0x70f527e9 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x70f82b55 dma_set_mask +EXPORT_SYMBOL vmlinux 0x710de13d rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x711dbf10 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713294e3 netdev_crit +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71589280 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715c2163 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7186706d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x71938ba6 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b68b4a lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x71c839c1 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e66bcc uart_match_port +EXPORT_SYMBOL vmlinux 0x71fb5072 __nla_reserve +EXPORT_SYMBOL vmlinux 0x71fc7de5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720f5637 seq_path +EXPORT_SYMBOL vmlinux 0x7223971f ps2_command +EXPORT_SYMBOL vmlinux 0x722580c9 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x724bba66 param_set_uint +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x72757c80 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x727fc0f4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b4ef1b tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc39a8 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x72be588c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x72d41a71 component_match_add_release +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f0f214 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f30121 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x72f95983 thaw_bdev +EXPORT_SYMBOL vmlinux 0x72fd6e28 clk_get +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 0x732eb8cb pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x73303e36 generic_fadvise +EXPORT_SYMBOL vmlinux 0x73398874 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x73636e0d flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73948f95 ppp_input_error +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739c545c sget +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73c98b5b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x73cb80c2 neigh_table_init +EXPORT_SYMBOL vmlinux 0x73d69bf4 mdiobus_write +EXPORT_SYMBOL vmlinux 0x73d84980 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x73d872a8 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x73d8fae6 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x73e3c309 softnet_data +EXPORT_SYMBOL vmlinux 0x73f23dcb __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741edbd2 console_start +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7426b9a3 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744c562f mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74547243 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x74591868 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x745ffbc3 cdrom_open +EXPORT_SYMBOL vmlinux 0x7465389a inet6_ioctl +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7478dfb0 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7493b591 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x74aba04c sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x74abebcf vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x74b873a9 fget +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74be9869 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x74bfe821 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c8507d dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x74c970ee dma_find_channel +EXPORT_SYMBOL vmlinux 0x74db72ad xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x74e18222 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f65141 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x751cfd64 phy_device_register +EXPORT_SYMBOL vmlinux 0x7527c730 sget_fc +EXPORT_SYMBOL vmlinux 0x75463f9b skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x756fdead mntget +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75872f0f i2c_del_driver +EXPORT_SYMBOL vmlinux 0x75a6087c copy_string_kernel +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c7b239 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d57ed3 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x75d98a44 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x75e49a80 tso_count_descs +EXPORT_SYMBOL vmlinux 0x75f9c8aa fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x75fb713b scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763246b3 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x76376dc7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x763ef418 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x7641418c fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7654a724 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x765f41ca vlan_vid_del +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7661a278 dst_destroy +EXPORT_SYMBOL vmlinux 0x766947b3 __netif_rx +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767bc94a tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x76916229 km_policy_notify +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a1e0a8 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x76a6386f inode_set_flags +EXPORT_SYMBOL vmlinux 0x76b8a981 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x76b9653d phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x76c4cc76 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d8d9c5 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x76dbb7d3 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x76e3b713 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x76ee7151 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x77006d6e vme_register_bridge +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77370845 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774e6496 simple_getattr +EXPORT_SYMBOL vmlinux 0x775ecfb7 bio_uninit +EXPORT_SYMBOL vmlinux 0x776010b5 param_ops_byte +EXPORT_SYMBOL vmlinux 0x7769a7df kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x776ddde2 key_validate +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x777bdb41 inet_offloads +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779e2422 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x779f7af0 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77b077db netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cc3f08 mdio_device_free +EXPORT_SYMBOL vmlinux 0x77e78629 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x77e7b960 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780abb01 tty_devnum +EXPORT_SYMBOL vmlinux 0x7814ef1f sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7819eff5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x7820a429 register_console +EXPORT_SYMBOL vmlinux 0x7824c752 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x782f01c5 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x782f70ae scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78539737 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x785bd683 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788f7a25 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x78975b00 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a4f0fd end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x78b7c3c4 sg_miter_next +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c0b536 file_remove_privs +EXPORT_SYMBOL vmlinux 0x78df162e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e699fd mmc_retune_release +EXPORT_SYMBOL vmlinux 0x78f60312 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x79010c66 dump_emit +EXPORT_SYMBOL vmlinux 0x79304c21 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x7930aec4 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x79508600 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x79515be8 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x795af547 genphy_suspend +EXPORT_SYMBOL vmlinux 0x7969c6d1 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x79722002 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x797b8e58 inet6_offloads +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79ad91cb fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x79b82d2b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x79bc600f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x79c0e96b neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x79c7e67c inode_init_always +EXPORT_SYMBOL vmlinux 0x79e23dc9 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x79f3eaed module_refcount +EXPORT_SYMBOL vmlinux 0x7a00066f user_revoke +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0d1fd5 devm_ioremap +EXPORT_SYMBOL vmlinux 0x7a0d44b8 tcf_block_get +EXPORT_SYMBOL vmlinux 0x7a16cc88 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1d8265 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x7a1f288d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a36920d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5a0e1a key_put +EXPORT_SYMBOL vmlinux 0x7a62af1c blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x7a635454 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7a695d58 of_get_next_child +EXPORT_SYMBOL vmlinux 0x7a6974ce netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7a7490af dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7a7e0856 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x7a7f5433 fb_pan_display +EXPORT_SYMBOL vmlinux 0x7a8b31d7 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7a8d46d5 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x7a8e430c scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4c260 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7acece5a ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af9da1c dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7affda23 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x7b173be0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7b2882e5 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x7b2b5941 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x7b34cdcb _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4bb95d netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5e88a5 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x7b657b91 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x7b66b3da sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7b750cf2 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b87173d gro_cells_init +EXPORT_SYMBOL vmlinux 0x7b9d0302 dst_release +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc26790 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7bc4bd67 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7bc66d92 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x7bd1ce34 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x7beaef1e filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7bf1e295 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7bf6bfe9 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x7bfccb0d pci_enable_device +EXPORT_SYMBOL vmlinux 0x7c04d139 tcf_register_action +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c209e9a skb_append +EXPORT_SYMBOL vmlinux 0x7c2dd041 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x7c35428e pci_iomap +EXPORT_SYMBOL vmlinux 0x7c459513 nla_append +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4b6242 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7c4cd474 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7c576e2a generic_perform_write +EXPORT_SYMBOL vmlinux 0x7c701cca unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7c71c774 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x7c7d6c17 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7c92b3a2 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7c93bff5 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca8c12e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x7cccecd1 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x7cd4da28 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x7cde2ccd pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7cdf49f5 simple_rename +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce697b8 vfs_get_super +EXPORT_SYMBOL vmlinux 0x7cee48d6 iommu_dma_get_resv_regions +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 0x7d0badfa folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d123078 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d16acec eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7d2ab99c param_array_ops +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4e559e sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7d575ea1 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7d5cef65 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d6ab891 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x7d6cef91 __devm_request_region +EXPORT_SYMBOL vmlinux 0x7d6de8f5 elevator_alloc +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d7a0f4f netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x7d807359 datagram_poll +EXPORT_SYMBOL vmlinux 0x7d825c1d pci_dev_get +EXPORT_SYMBOL vmlinux 0x7d8ae810 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x7d9e84ef devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db2203b pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x7db2ed46 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x7dc5cedf fs_param_is_path +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcf4111 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de21551 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x7de9f2f9 kobject_set_name +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df483d0 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x7e0e22e1 dquot_disable +EXPORT_SYMBOL vmlinux 0x7e0f5223 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x7e0f792b dm_table_event +EXPORT_SYMBOL vmlinux 0x7e20dd01 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3c8ce2 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x7e3f4a3d dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x7e5482be page_pool_destroy +EXPORT_SYMBOL vmlinux 0x7e591aa6 dquot_acquire +EXPORT_SYMBOL vmlinux 0x7e62e212 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7e70838c blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7e78fce6 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7e8c8fc5 mount_subtree +EXPORT_SYMBOL vmlinux 0x7e90d402 free_task +EXPORT_SYMBOL vmlinux 0x7e9d51c6 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x7ea9f0a2 migrate_page +EXPORT_SYMBOL vmlinux 0x7eabeec9 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x7ebfee79 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7ed80802 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1376fb fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x7f1eca78 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7f1f6c93 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f4e6b01 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5da7c7 from_kprojid +EXPORT_SYMBOL vmlinux 0x7f5dec03 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7f740aa8 nla_reserve +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7c5ce1 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7f7ec8ab inet_getname +EXPORT_SYMBOL vmlinux 0x7f7f76c1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f922a31 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x7f9d4621 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7f9e61f9 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x7fb076b1 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x7fb6855c ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7fc476f5 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd637eb flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff57369 cdev_del +EXPORT_SYMBOL vmlinux 0x80289b52 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x802ef653 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804298ec __register_binfmt +EXPORT_SYMBOL vmlinux 0x8072ed0b nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x808febb0 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a2961b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80c54691 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x80c59406 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d8c2a6 get_vm_area +EXPORT_SYMBOL vmlinux 0x80dc2bb0 proc_create +EXPORT_SYMBOL vmlinux 0x80dd1885 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x80dd195c devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +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 0x811bbf5f mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x812f391c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x8145d417 mdiobb_write +EXPORT_SYMBOL vmlinux 0x814accd2 noop_qdisc +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x81538a85 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x817b1803 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x8197ab5d xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a4b2df dma_map_resource +EXPORT_SYMBOL vmlinux 0x81a766d6 find_vma +EXPORT_SYMBOL vmlinux 0x81abb57f eth_type_trans +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81cf4af3 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x81d1f772 mdiobus_free +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f5bc99 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x81f80528 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x82103564 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x8216d75e of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x822fe9ed fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x823e80e1 keyring_search +EXPORT_SYMBOL vmlinux 0x8250b5ed input_register_handler +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8269f91a xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x82782e1f pci_get_slot +EXPORT_SYMBOL vmlinux 0x82848530 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x82a2bca8 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82c91c07 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x82d0189a rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x82d9de78 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x82f00435 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x82fe59b0 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x831a0733 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x831aecef blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x831ec84d dquot_free_inode +EXPORT_SYMBOL vmlinux 0x8323533d jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x834fec0c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837c4716 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x8396fff8 __napi_schedule +EXPORT_SYMBOL vmlinux 0x83a83186 elv_rb_add +EXPORT_SYMBOL vmlinux 0x83a8597c netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x83d95094 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x83daa38b __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x83e31537 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x83ed0a19 open_with_fake_path +EXPORT_SYMBOL vmlinux 0x83eec9b6 phy_detach +EXPORT_SYMBOL vmlinux 0x83f4cd13 set_page_writeback +EXPORT_SYMBOL vmlinux 0x83f7506d vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x8401985f pci_clear_master +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84196ede tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x8421a0d3 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842b8e98 textsearch_register +EXPORT_SYMBOL vmlinux 0x842c1549 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x84470758 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x844d8e05 kobject_add +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8458847b netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x845ab7af tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x845b5f76 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8467cd1d input_set_keycode +EXPORT_SYMBOL vmlinux 0x846b75cf mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x8473284d d_find_alias +EXPORT_SYMBOL vmlinux 0x84810580 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8487d075 blk_put_queue +EXPORT_SYMBOL vmlinux 0x8496b2e7 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84b4a2b9 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x84b72a5f configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x84b79d01 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84d5b067 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x84d88fc5 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x84d975c0 configfs_register_group +EXPORT_SYMBOL vmlinux 0x84d9a571 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x84ef9307 processors +EXPORT_SYMBOL vmlinux 0x84fad43e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x850d2833 file_open_root +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x851cca53 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x85386fa5 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x8554b99a sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8571234e seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85aef55d kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x85b0bf0b phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d3e75b i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e10938 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x85e4d900 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x85e9e4d2 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f27feb i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x85f415e3 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x861f6a6b of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x86311d21 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x86338c64 input_unregister_device +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x866ce31c to_nd_dax +EXPORT_SYMBOL vmlinux 0x866e987c vm_mmap +EXPORT_SYMBOL vmlinux 0x867abe98 kernel_bind +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868c594a nf_reinject +EXPORT_SYMBOL vmlinux 0x86a1c953 do_SAK +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86deab38 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x86e1e920 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x86e7d3a3 mdiobus_read +EXPORT_SYMBOL vmlinux 0x86e8ea9f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x86f2c09e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x86f364a9 __skb_checksum +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870bd687 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x870c19be mdio_driver_register +EXPORT_SYMBOL vmlinux 0x8717f5cb get_tree_bdev +EXPORT_SYMBOL vmlinux 0x8732be25 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x874f2764 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x875c1621 dump_skip_to +EXPORT_SYMBOL vmlinux 0x875c51d0 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876d7d7b tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87805312 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x87834668 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x878b0b6c dm_get_device +EXPORT_SYMBOL vmlinux 0x879e40b1 iptun_encaps +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87aa9c72 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x87ac496a scm_fp_dup +EXPORT_SYMBOL vmlinux 0x87ae71a9 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x87b7c131 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87b9617c rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x87bc7a61 param_ops_short +EXPORT_SYMBOL vmlinux 0x87bec422 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x87dac906 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x87f701fb pci_iomap_range +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 0x881d15a4 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x88216216 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x8834cf06 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x88423e8f kill_pgrp +EXPORT_SYMBOL vmlinux 0x884fc056 clkdev_add +EXPORT_SYMBOL vmlinux 0x885385a1 pci_release_resource +EXPORT_SYMBOL vmlinux 0x88681924 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x886ae2bb __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x88749ccf __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x887c76d0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x889b72ce genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x889eb6e2 bioset_exit +EXPORT_SYMBOL vmlinux 0x889ef9ec mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x88b51fd9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x88b5a48b pci_set_master +EXPORT_SYMBOL vmlinux 0x88d49342 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e0e4e8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88f11942 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x88fcd47e filemap_fault +EXPORT_SYMBOL vmlinux 0x892a21d1 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x894a0ffd mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x895b8345 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x8962e3a4 xp_dma_map +EXPORT_SYMBOL vmlinux 0x898d94ae mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x8990adac page_get_link +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899b292b phy_attach_direct +EXPORT_SYMBOL vmlinux 0x89be2292 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x89c6ac5b pmem_sector_size +EXPORT_SYMBOL vmlinux 0x89e3e831 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x89eea50b is_nd_btt +EXPORT_SYMBOL vmlinux 0x8a0ff3bb get_task_cred +EXPORT_SYMBOL vmlinux 0x8a12bfb2 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x8a1323d7 fs_bio_set +EXPORT_SYMBOL vmlinux 0x8a2b2772 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x8a429368 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8259cc mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8a8656cb tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x8a9219e3 netpoll_setup +EXPORT_SYMBOL vmlinux 0x8a93e9f9 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x8a943f3e devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +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 0x8acc1b46 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8ad077c3 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0f34b6 md_update_sb +EXPORT_SYMBOL vmlinux 0x8b1c7f8b tcp_disconnect +EXPORT_SYMBOL vmlinux 0x8b2f7bbb inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b4f443e mdio_device_create +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b77bbcd page_pool_release_page +EXPORT_SYMBOL vmlinux 0x8b79ac72 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b94766d setup_arg_pages +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba1df9a skb_copy +EXPORT_SYMBOL vmlinux 0x8bb17dbf dquot_transfer +EXPORT_SYMBOL vmlinux 0x8bbd4a09 import_iovec +EXPORT_SYMBOL vmlinux 0x8bccb39a md_unregister_thread +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be3414c netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8be6d424 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x8c0b9e56 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x8c13d36e pagecache_get_page +EXPORT_SYMBOL vmlinux 0x8c1a78c3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x8c1b1d0f param_set_bint +EXPORT_SYMBOL vmlinux 0x8c2011cc pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8c25677c fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2c885c vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c32f5aa generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x8c3ba103 mmc_erase +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c6cefbb rproc_put +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca4794c phy_aneg_done +EXPORT_SYMBOL vmlinux 0x8ca4d42b mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x8ca752ea inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb15a16 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc7c280 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x8cda3422 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d03e7ca netif_tx_lock +EXPORT_SYMBOL vmlinux 0x8d21b5ab dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x8d24dee1 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d45576b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5c86cf blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x8d724bbb follow_down +EXPORT_SYMBOL vmlinux 0x8d72e23c cad_pid +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d864782 scsi_device_get +EXPORT_SYMBOL vmlinux 0x8d90f896 pci_write_vpd_any +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 0x8dc20076 fb_set_var +EXPORT_SYMBOL vmlinux 0x8ddb7a96 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8deb8157 tcp_filter +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +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 0x8e294f7d input_event +EXPORT_SYMBOL vmlinux 0x8e3939a3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e658086 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x8e65e09c kthread_bind +EXPORT_SYMBOL vmlinux 0x8e6768b4 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x8e784e33 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x8e8b320f __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea1232d __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x8eac5d63 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x8eb0dec2 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x8eb27ced devm_register_netdev +EXPORT_SYMBOL vmlinux 0x8eb9c739 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x8ec2806b ip_setsockopt +EXPORT_SYMBOL vmlinux 0x8ec34f4b nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x8eca2be1 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x8edbfc1a xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x8ee60020 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8efc4eba dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f04363b max8998_write_reg +EXPORT_SYMBOL vmlinux 0x8f12f934 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8f3cdce0 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x8f4e126d netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x8f721e22 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8f73b720 may_setattr +EXPORT_SYMBOL vmlinux 0x8f908137 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fae7a31 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x8fbb5ecd devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x8fc7080e dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd02463 fb_class +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fddd400 ilookup5 +EXPORT_SYMBOL vmlinux 0x8ff0818f invalidate_disk +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90020095 __module_get +EXPORT_SYMBOL vmlinux 0x900256a0 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x90290149 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9047a6f9 dma_supported +EXPORT_SYMBOL vmlinux 0x9052dd25 d_tmpfile +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9067cdbf mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x90708ebd mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x9075b32e mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x907b04bc follow_down_one +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x907ea412 get_user_pages +EXPORT_SYMBOL vmlinux 0x909ce185 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x90a50179 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x90a56a77 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x90a7dce1 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x90ae0cba config_group_init +EXPORT_SYMBOL vmlinux 0x90b37403 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x9103725c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x910aa5b2 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911955d0 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x91396f31 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x91580942 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x915bad3c genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x9167c0aa path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x91706d4d fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x91798ffe block_write_begin +EXPORT_SYMBOL vmlinux 0x917bbb24 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x918be45d tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x919402cb tty_write_room +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919f9c4d generic_file_llseek_size +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 0x91d9e077 tcp_mmap +EXPORT_SYMBOL vmlinux 0x91ddfe5a sync_file_create +EXPORT_SYMBOL vmlinux 0x91ed49ac ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x9200e3dd mdio_device_reset +EXPORT_SYMBOL vmlinux 0x9207554d inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9220a6b1 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9255c5c0 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9298751c mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929c9ad9 xp_alloc +EXPORT_SYMBOL vmlinux 0x92a814c2 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c29e0c rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x92d04ad9 update_region +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 0x9304659c mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x933560d0 rproc_del +EXPORT_SYMBOL vmlinux 0x933cc1ed phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x934586b4 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x934ea359 clear_nlink +EXPORT_SYMBOL vmlinux 0x935fdeff tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x93655274 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x93695b83 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937cc89d migrate_page_copy +EXPORT_SYMBOL vmlinux 0x93892ed6 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a77102 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x93b0fd68 __bio_advance +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93bc1898 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x93bed110 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x93c5ea09 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x93c71752 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93d945f8 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x93e55427 phy_attached_print +EXPORT_SYMBOL vmlinux 0x941124ab pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x9413b412 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9430d82c mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x94339f7d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x94340ff6 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x943da85c skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9459a169 km_state_expired +EXPORT_SYMBOL vmlinux 0x9476c1d9 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948c3e95 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b99245 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c42be2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x94cd90bf blk_integrity_register +EXPORT_SYMBOL vmlinux 0x94cf5918 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x94e05339 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x94e0cbe4 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x94e389bb memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95082fb5 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x950f956e nobh_writepage +EXPORT_SYMBOL vmlinux 0x9514494c dev_alloc_name +EXPORT_SYMBOL vmlinux 0x952f6a50 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9574bf74 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x957c6683 seq_read +EXPORT_SYMBOL vmlinux 0x958197fc __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x9589fd3e phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x95a52766 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95a8a211 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x95aa094b blk_execute_rq +EXPORT_SYMBOL vmlinux 0x95b1badf netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x95b3df07 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x95c63231 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x95cd993f blk_finish_plug +EXPORT_SYMBOL vmlinux 0x95d01418 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x95d34c72 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x95d57497 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x95e4bf8b __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x95f429bc __alloc_pages +EXPORT_SYMBOL vmlinux 0x95feac75 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x9642fab0 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x9645c4c0 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96995a93 skb_clone +EXPORT_SYMBOL vmlinux 0x96a9f544 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b62249 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x96c0723d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c40f00 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d9956e mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e719da pcibus_to_node +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970b3b56 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x97272208 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x973184eb sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x9733b7d8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97440e5a inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x97477f9b netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x97680fb3 clk_add_alias +EXPORT_SYMBOL vmlinux 0x976a7a1b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x9776fb08 d_obtain_root +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97abdf55 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97c2c720 dump_align +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97ef5e38 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x9864d4f2 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x987aacac inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9888cd50 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x988d8217 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x988e1a5c genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dcb566 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98fa9066 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x9902b400 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x99047f82 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990c3d7c put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x992e970d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x99327dc0 simple_empty +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9944d54c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x994fe24d _dev_printk +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9958f0bc netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x995a5431 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x99611fe2 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9975cd36 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x99788017 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x99919e0a sock_no_mmap +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a173ea netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x99a32581 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x99b44ffd __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x99b555ff inet6_getname +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e33e1f con_is_visible +EXPORT_SYMBOL vmlinux 0x99f7371c refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99ff3a41 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0e881b iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2a1fe8 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9a4499ee pci_select_bars +EXPORT_SYMBOL vmlinux 0x9a46dd62 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x9a4f3710 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x9a51e588 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5d691f netdev_err +EXPORT_SYMBOL vmlinux 0x9a64ea81 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9a6b9707 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x9a6e4cd5 amba_driver_register +EXPORT_SYMBOL vmlinux 0x9a746526 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x9a77120b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9a88a1b6 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x9a9e531d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9a9f9ebb udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x9aa41385 param_get_uint +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac8412f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9ac8b2c7 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x9ac93b2e get_acl +EXPORT_SYMBOL vmlinux 0x9ad4e2e1 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x9ad5f5ac __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x9ad84076 nd_device_register +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9ae4c653 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x9afadbb2 fb_blank +EXPORT_SYMBOL vmlinux 0x9b0190a7 audit_log +EXPORT_SYMBOL vmlinux 0x9b060586 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x9b0a7049 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b271b1e folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x9b2d7559 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b42976c migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b65064c pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b734767 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x9ba669be free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x9bb9d27c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x9bc2ad95 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x9bfdcb70 fd_install +EXPORT_SYMBOL vmlinux 0x9bffe6bf rtnl_unicast +EXPORT_SYMBOL vmlinux 0x9c0c68b6 config_group_find_item +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c262103 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x9c582401 amba_request_regions +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c6a6282 param_set_byte +EXPORT_SYMBOL vmlinux 0x9c7d636e generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc36b16 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9ccf870f napi_gro_receive +EXPORT_SYMBOL vmlinux 0x9cd68ff9 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdbd867 kern_unmount +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cf37977 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x9d08839a pci_request_region +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d17a901 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d3b4789 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x9d517fe0 sock_alloc +EXPORT_SYMBOL vmlinux 0x9d5961c5 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x9d5bf616 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d690569 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9d78c821 generic_fillattr +EXPORT_SYMBOL vmlinux 0x9d7a05a7 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9d7a17fb read_cache_folio +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d8a1f45 sock_i_uid +EXPORT_SYMBOL vmlinux 0x9d8c316b discard_new_inode +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d95f966 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x9d9a27a9 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9daf3ad9 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x9dbc7d78 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x9dd7e661 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x9ddd3916 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x9dec47d8 serio_open +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df796ba simple_fill_super +EXPORT_SYMBOL vmlinux 0x9e024cbb get_phy_device +EXPORT_SYMBOL vmlinux 0x9e03f7c9 vme_dma_request +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e1731c0 param_set_long +EXPORT_SYMBOL vmlinux 0x9e20b37f dquot_quota_on +EXPORT_SYMBOL vmlinux 0x9e21a715 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +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 0x9e77dbf9 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9e7b5880 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9115cf blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x9e98b502 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9e9deee2 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea5e2b3 param_ops_long +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6a7ff flow_rule_match_tcp +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 0x9ee49a0c devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9ee5f6f2 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x9efb2870 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x9f10aecb migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x9f112e4a seq_pad +EXPORT_SYMBOL vmlinux 0x9f139cab pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x9f2565d7 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9f32283f tcp_ioctl +EXPORT_SYMBOL vmlinux 0x9f399498 mipi_dsi_dcs_soft_reset +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 0x9f696ed8 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x9f729d0f __nd_driver_register +EXPORT_SYMBOL vmlinux 0x9f74449b ipv4_specific +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7725e1 __of_get_address +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa45ae5 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x9fa5ee4f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fb7414b unregister_cdrom +EXPORT_SYMBOL vmlinux 0x9fd434c5 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ff89b6d __cgroup_bpf_run_filter_sk +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 0xa02a7a43 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0350bf4 skb_seq_read +EXPORT_SYMBOL vmlinux 0xa038465b param_get_short +EXPORT_SYMBOL vmlinux 0xa042f755 get_user_pages_unlocked +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 0xa0599291 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xa05a2bce tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05d7c85 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xa07950d6 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08477a2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa094d4ec param_ops_int +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0afdf87 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b07bbd phy_print_status +EXPORT_SYMBOL vmlinux 0xa0c7d898 mmc_command_done +EXPORT_SYMBOL vmlinux 0xa0c8bd12 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xa0d2deb3 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e62292 sock_register +EXPORT_SYMBOL vmlinux 0xa0e9e88b __ClearPageMovable +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 0xa112d8b3 udp_disconnect +EXPORT_SYMBOL vmlinux 0xa16f1c41 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xa1b0c240 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xa1f47fec nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20e056d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xa22be59c skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24838ec folio_wait_bit +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa263af13 register_md_personality +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa2775b9b _dev_warn +EXPORT_SYMBOL vmlinux 0xa27c4893 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa286aee6 __do_once_done +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa2a65d1b key_unlink +EXPORT_SYMBOL vmlinux 0xa2a7c8c8 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2effa08 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xa3013b76 md_reload_sb +EXPORT_SYMBOL vmlinux 0xa323eb75 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xa3282ef1 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xa3298ad6 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xa32f5875 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa3331dda rtc_add_group +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa34ac23b dev_disable_lro +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa3827899 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xa389052c xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa3895e38 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa38b829f phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xa38bff66 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c517f1 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d59685 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xa3f3f108 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa402713e nf_log_trace +EXPORT_SYMBOL vmlinux 0xa40578e7 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xa40baecd jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa413b7d7 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xa416d246 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa4199836 console_stop +EXPORT_SYMBOL vmlinux 0xa43b33f8 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa4650825 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xa468ff6c skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa499bad2 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa49b15d0 free_buffer_head +EXPORT_SYMBOL vmlinux 0xa4b3c3f6 security_sk_clone +EXPORT_SYMBOL vmlinux 0xa4cbdef3 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xa4e14bad ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xa4e799ed bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa4eac30e scsi_block_requests +EXPORT_SYMBOL vmlinux 0xa4f143f0 dev_get_stats +EXPORT_SYMBOL vmlinux 0xa4f446ee md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa5042e9d tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa51cf5fd param_get_hexint +EXPORT_SYMBOL vmlinux 0xa5205fbe mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa536a7aa mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xa53ae123 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xa54c574a phy_stop +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5588a8c sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa5725661 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5b105da refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0xa5c5ddfa md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xa5d39db9 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xa5ddc9c2 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa5e00bf2 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xa5e2b438 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xa5ecf7e0 __register_nls +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa5ff8861 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xa6075cee security_path_rename +EXPORT_SYMBOL vmlinux 0xa60aeb97 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xa610d7f4 igrab +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa65fcfa4 flush_signals +EXPORT_SYMBOL vmlinux 0xa668b350 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa66eb1e1 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa67e30a1 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68257dc tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xa689158b blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa69e4a8a open_exec +EXPORT_SYMBOL vmlinux 0xa6ab2020 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xa6f77436 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xa6fe65a4 inode_init_owner +EXPORT_SYMBOL vmlinux 0xa705a862 logfc +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa721cae6 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xa7351aa7 finish_no_open +EXPORT_SYMBOL vmlinux 0xa73918fb udplite_prot +EXPORT_SYMBOL vmlinux 0xa73dd7fd inet_ioctl +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa788eef0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xa78d7006 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xa78ec2b0 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa79e7ea2 mpage_writepage +EXPORT_SYMBOL vmlinux 0xa7ab0ed9 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xa7abd279 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa7ae963e rt_dst_clone +EXPORT_SYMBOL vmlinux 0xa7c22283 netlink_capable +EXPORT_SYMBOL vmlinux 0xa7c95b1e nobh_write_begin +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7de56b6 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa7e732e1 get_watch_queue +EXPORT_SYMBOL vmlinux 0xa7ec1433 init_task +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa808722b folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xa812faa8 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84fb306 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa85c0c95 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa879bc64 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa87f9116 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa88f8eb9 iterate_fd +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa89e3280 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa8a0e315 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xa8a13c91 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xa8a14b11 set_create_files_as +EXPORT_SYMBOL vmlinux 0xa8a30e6d fman_get_revision +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8c83c6c tcf_idr_search +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cae6f2 dm_register_target +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8ea1182 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa8f2bc2d trace_event_printf +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa906c177 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa912c1f4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa92196cf of_match_device +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa9325314 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa972d27e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99e639b fifo_set_limit +EXPORT_SYMBOL vmlinux 0xa9ad7ee5 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xa9b0e88a dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xa9b63cae generic_write_end +EXPORT_SYMBOL vmlinux 0xa9c4fd90 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa9d738ad neigh_xmit +EXPORT_SYMBOL vmlinux 0xa9da86f3 nf_log_set +EXPORT_SYMBOL vmlinux 0xa9dbab21 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f72b2f security_path_mknod +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa071bda of_root +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa3088ab ihold +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa6effc3 proc_set_user +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa9af798 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa5dd68 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xaab6d175 seq_open +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad12dcb page_mapping +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaadafb31 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaae99be8 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xaaedfee9 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab34bdd1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab4a928d seq_putc +EXPORT_SYMBOL vmlinux 0xab4f8c22 make_kgid +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab667c67 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xab66fec3 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8b322e input_unregister_handle +EXPORT_SYMBOL vmlinux 0xabc9aa20 simple_lookup +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac3053a5 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac53b486 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0xac567e52 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6bbbd4 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xac89d139 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xaca67a00 md_done_sync +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc253e0 stream_open +EXPORT_SYMBOL vmlinux 0xacc687f4 can_nice +EXPORT_SYMBOL vmlinux 0xacc81fce dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xaccd913d __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace5edb9 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xace6ee94 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xaced73c0 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf98790 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad084ce2 mr_table_dump +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad1a3394 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xad2e5e40 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad371cbf __scsi_execute +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad47ab37 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xad623983 dev_addr_add +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6833bc skb_split +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad710ca9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xad726ead kernel_listen +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada44833 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadca748a fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd401a8 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xaddf883d iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xade83f6b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xadf57a0f blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae121377 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xae16846c fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xae206e0a i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xae25cf3b tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xae284215 inet_frags_init +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae38cc47 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xae438b49 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xae45c211 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xae5504eb iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xae5730f7 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae5faa6b locks_copy_lock +EXPORT_SYMBOL vmlinux 0xae66d4b7 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xae6b31b8 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xae7e8514 dev_addr_del +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaee4eab9 seq_printf +EXPORT_SYMBOL vmlinux 0xaef1ed53 scmd_printk +EXPORT_SYMBOL vmlinux 0xaef9d88a nobh_write_end +EXPORT_SYMBOL vmlinux 0xaf114eff __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xaf2d8d77 ip6_xmit +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf406a93 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf66b4b7 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xaf994301 dst_dev_put +EXPORT_SYMBOL vmlinux 0xafa809db phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafe20db7 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xafec2fa0 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xafefb12b of_device_alloc +EXPORT_SYMBOL vmlinux 0xaffa970d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xaffe7164 sock_no_linger +EXPORT_SYMBOL vmlinux 0xb00e7e3a eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xb0168897 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02a083f of_get_parent +EXPORT_SYMBOL vmlinux 0xb0313e8a rio_query_mport +EXPORT_SYMBOL vmlinux 0xb040b3c4 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xb048b728 kset_register +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04b980b neigh_app_ns +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07e66a2 phy_device_create +EXPORT_SYMBOL vmlinux 0xb08aa750 key_move +EXPORT_SYMBOL vmlinux 0xb08d9e03 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb09221cf sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b2f063 fasync_helper +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0dd8a4a __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xb0df8804 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e7c178 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12367a5 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xb12a2efe icmp6_send +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb148475a md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb159e07b flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xb16c4f89 mdio_device_register +EXPORT_SYMBOL vmlinux 0xb174cc52 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d78181 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xb1db1cbd folio_write_one +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1dc93fe fman_reset_mac +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1f60ac8 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xb20602b3 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xb22beda1 dquot_release +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb231ab71 dev_lstats_read +EXPORT_SYMBOL vmlinux 0xb25c9913 try_to_release_page +EXPORT_SYMBOL vmlinux 0xb287a03f pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xb2930921 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xb29a9942 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xb29e1c3c phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xb2b97009 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2bdb44f block_commit_write +EXPORT_SYMBOL vmlinux 0xb2c51d39 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb2e2c570 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb304b96c pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb3269d4d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32c2bee input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xb34549ea nd_dax_probe +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3534b89 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb36f2f06 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3b455a5 of_node_get +EXPORT_SYMBOL vmlinux 0xb3bf92a3 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb410eba4 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42b47ea vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xb42c4336 fb_show_logo +EXPORT_SYMBOL vmlinux 0xb4335484 copy_highpage +EXPORT_SYMBOL vmlinux 0xb4380d2e config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb474ab99 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xb47dc330 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xb47e8c75 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xb486801c mmput_async +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb493beed nla_put +EXPORT_SYMBOL vmlinux 0xb49a17d0 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb4a12724 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb4a937b3 simple_release_fs +EXPORT_SYMBOL vmlinux 0xb4a964ce __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb4b4ab4f phy_error +EXPORT_SYMBOL vmlinux 0xb4bb874f mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xb4df53cf mmc_start_request +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f8d031 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb5014e9e nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xb51cfdbe ip_defrag +EXPORT_SYMBOL vmlinux 0xb5200642 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xb52dba09 folio_add_lru +EXPORT_SYMBOL vmlinux 0xb539d7ae sock_rfree +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb5459282 dst_alloc +EXPORT_SYMBOL vmlinux 0xb55664a5 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xb56a46d4 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58003f7 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb59112b2 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xb598c23f csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xb59fe6c6 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5b892a1 __brelse +EXPORT_SYMBOL vmlinux 0xb5d4706f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb5da6b4c reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xb5e4dad4 single_open +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f5dbb6 lru_cache_add +EXPORT_SYMBOL vmlinux 0xb5f688b7 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xb604b4c0 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xb6087163 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xb6133291 scsi_partsize +EXPORT_SYMBOL vmlinux 0xb616b0d2 __sock_create +EXPORT_SYMBOL vmlinux 0xb61d264f pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb61eea0e tty_kref_put +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb656a11a fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xb661a081 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xb6622216 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6983599 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xb6a5627e blk_queue_split +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6c9cf92 kernel_write +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d363ca tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70811ba mmc_get_card +EXPORT_SYMBOL vmlinux 0xb713d7a4 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb7153301 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb7180eb8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb7296d73 skb_dump +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73b3435 vga_get +EXPORT_SYMBOL vmlinux 0xb745e77b of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xb7497549 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xb759b773 __ps2_command +EXPORT_SYMBOL vmlinux 0xb75c175c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77ec795 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xb77fed9f serio_rescan +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb790b364 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0910d genphy_loopback +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c4d7a1 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d1090e param_ops_uint +EXPORT_SYMBOL vmlinux 0xb7e54a83 vfs_create +EXPORT_SYMBOL vmlinux 0xb7f70545 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb80e75a6 udp_seq_next +EXPORT_SYMBOL vmlinux 0xb80ecb3d device_add_disk +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb84cad6b security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xb84fccdb of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xb85c374d try_module_get +EXPORT_SYMBOL vmlinux 0xb85d3ceb ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb86125f0 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xb8646ebb tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb874db87 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb89cc2d4 fsync_bdev +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b489b4 devm_iounmap +EXPORT_SYMBOL vmlinux 0xb8b5025e xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c057d0 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xb8c69869 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb8cead72 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb8ed0c34 __kfree_skb +EXPORT_SYMBOL vmlinux 0xb8f0139f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xb8fb8f62 rproc_boot +EXPORT_SYMBOL vmlinux 0xb9013669 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb9139919 submit_bh +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9430658 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb981f52d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xb982f152 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xb9abeda1 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b6be17 netlink_ack +EXPORT_SYMBOL vmlinux 0xb9b88eaa tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xb9bcf002 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xb9be5782 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb9d4c5c0 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xb9d7bfd7 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb9e750cc inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb9ff2c48 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0f5e6a dmam_pool_create +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba364dcc pneigh_lookup +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e26b6 release_sock +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba55d630 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xba59e2df mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba72c525 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xba880d6b md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbac62acd inet_recvmsg +EXPORT_SYMBOL vmlinux 0xbacb2036 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xbad13514 backlight_device_register +EXPORT_SYMBOL vmlinux 0xbaf60e76 tcp_seq_start +EXPORT_SYMBOL vmlinux 0xbafaede1 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0ddb3e dquot_commit +EXPORT_SYMBOL vmlinux 0xbb148d08 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xbb1791b1 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb300459 dev_mc_init +EXPORT_SYMBOL vmlinux 0xbb3455d2 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xbb3a7ca0 serio_interrupt +EXPORT_SYMBOL vmlinux 0xbb44b919 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5290bf security_path_unlink +EXPORT_SYMBOL vmlinux 0xbb623ee0 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb6b07f2 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xbb71c38e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xbb8f5243 rproc_detach +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbb5b44e blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xbbbeb0a9 new_inode +EXPORT_SYMBOL vmlinux 0xbbe12222 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc1a23f3 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc211e3f vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xbc28c7b2 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xbc3281ad dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xbc340412 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xbc3691a5 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xbc4cbd34 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xbc6a7126 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbc71e8b1 dqput +EXPORT_SYMBOL vmlinux 0xbc8be147 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xbca335e9 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcc2f262 lease_modify +EXPORT_SYMBOL vmlinux 0xbcc312c0 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xbd1c9229 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xbd3b36ff input_match_device_id +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd81bebd vc_resize +EXPORT_SYMBOL vmlinux 0xbd9205f0 seq_release_private +EXPORT_SYMBOL vmlinux 0xbdbcaa70 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xbddab689 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xbdf0ee41 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xbe0464a3 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe14a3e6 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xbe1e20eb __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xbe3663b5 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5323a7 inet6_bind +EXPORT_SYMBOL vmlinux 0xbe544370 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe792e57 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xbe826a29 eth_header +EXPORT_SYMBOL vmlinux 0xbe872e06 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xbe878d40 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xbe8952d7 pipe_lock +EXPORT_SYMBOL vmlinux 0xbe931545 scsi_device_put +EXPORT_SYMBOL vmlinux 0xbebc0b48 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xbec20667 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xbec35b7f rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xbec61fa1 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xbed8e0b8 nf_log_packet +EXPORT_SYMBOL vmlinux 0xbee7badc mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefc52f7 locks_delete_block +EXPORT_SYMBOL vmlinux 0xbefee433 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xbf184ba0 arp_send +EXPORT_SYMBOL vmlinux 0xbf263733 put_watch_queue +EXPORT_SYMBOL vmlinux 0xbf339638 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xbf3d76bd skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf62565b tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xbf7a06d4 dev_mc_add +EXPORT_SYMBOL vmlinux 0xbf8dc68a phy_init_eee +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0447135 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xc046dc14 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xc04adcf0 dquot_file_open +EXPORT_SYMBOL vmlinux 0xc058f80b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc06260de tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xc0752af5 md_error +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0779d32 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc09863f6 param_set_ulong +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b04430 bpf_map_get +EXPORT_SYMBOL vmlinux 0xc0d6cc28 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xc0dcdfb3 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xc0edf463 scsi_host_get +EXPORT_SYMBOL vmlinux 0xc0f7166a neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc118c6db dquot_scan_active +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc142b349 config_item_put +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc158fa44 dev_uc_add +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16a4e2c iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc17709fd vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xc17bf846 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xc17deea7 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc1835c03 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xc18afea0 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc18da695 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xc19fd213 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xc1a0cfd1 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc1a60f09 tty_vhangup +EXPORT_SYMBOL vmlinux 0xc1a72afc sock_recvmsg +EXPORT_SYMBOL vmlinux 0xc1bdd6f4 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc1c712d2 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xc1d097e4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc2130b51 __devm_release_region +EXPORT_SYMBOL vmlinux 0xc2275ce8 dst_init +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc23eb52e pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xc24a2a3a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xc252e90f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc259b74f netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xc26d317b sock_no_getname +EXPORT_SYMBOL vmlinux 0xc276a484 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc27725d9 get_tree_nodev +EXPORT_SYMBOL vmlinux 0xc2825d2a pci_set_mwi +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a07798 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xc2a2cf29 set_posix_acl +EXPORT_SYMBOL vmlinux 0xc2a3665e ping_prot +EXPORT_SYMBOL vmlinux 0xc2aa1f80 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e1da3a acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xc2e37362 sock_pfree +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read +EXPORT_SYMBOL vmlinux 0xc2f35a7a mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2f724f1 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc3055bf8 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31335a0 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc35a2f8b d_delete +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36aa543 nd_device_notify +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3916e41 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc3a3ef2e param_ops_bool +EXPORT_SYMBOL vmlinux 0xc3b7b6d1 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3e07f12 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc3e7130b of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xc3ec3b89 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc3ff8dd8 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc41f5400 bio_split +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4705305 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc491ebce fc_mount +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4b62d79 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xc4bb9543 bdi_unregister +EXPORT_SYMBOL vmlinux 0xc4bd3bb6 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc4d52a58 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xc505d39a is_nd_dax +EXPORT_SYMBOL vmlinux 0xc519f3d7 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xc51a39c2 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc52bdaec netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc53f573e cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xc551d7a6 neigh_update +EXPORT_SYMBOL vmlinux 0xc5520646 devm_clk_get +EXPORT_SYMBOL vmlinux 0xc5608210 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc5637046 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc56db609 bio_init_clone +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc58b0852 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5aa4895 _dev_crit +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5c3d098 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xc5c5e778 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc5c81db7 fiemap_prep +EXPORT_SYMBOL vmlinux 0xc5da0797 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xc5da381a inet_put_port +EXPORT_SYMBOL vmlinux 0xc5de34d0 param_set_bool +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60359a9 PageMovable +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc622806e tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xc6258f6a netdev_notice +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc643b845 vfs_get_link +EXPORT_SYMBOL vmlinux 0xc648f94a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc658b70f blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6617ca9 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6754053 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc68e5179 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a76ce0 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc6b73cfc input_release_device +EXPORT_SYMBOL vmlinux 0xc6bce54c to_nd_pfn +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc14fe ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc6cfa5f5 regset_get +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d497cf flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xc6e14b37 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc6e6d54c inet_release +EXPORT_SYMBOL vmlinux 0xc6f03388 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72cc384 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xc74ad901 unlock_page +EXPORT_SYMBOL vmlinux 0xc756d9c7 genphy_update_link +EXPORT_SYMBOL vmlinux 0xc76ef951 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc789c17a drop_super +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a74024 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7dcba29 unlock_buffer +EXPORT_SYMBOL vmlinux 0xc7e6104c stop_tty +EXPORT_SYMBOL vmlinux 0xc7e7b5f2 skb_checksum +EXPORT_SYMBOL vmlinux 0xc7ea5360 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xc7f7c26e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc8498f42 md_flush_request +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84b99ed sock_release +EXPORT_SYMBOL vmlinux 0xc8571619 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xc85ef700 current_time +EXPORT_SYMBOL vmlinux 0xc8621e8e input_register_device +EXPORT_SYMBOL vmlinux 0xc870ffc4 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc87237c6 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc879fade acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc888b667 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xc88d917e ps2_end_command +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8a9b4fe jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc8ae0bf5 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xc8baf7aa xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xc8da6d7c pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e3de57 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xc8f13fdf nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xc912adab __invalidate_device +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc91ce854 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc93f02be __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xc944511b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc95c26fb sock_create +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc979fcdc xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc997a0eb sock_setsockopt +EXPORT_SYMBOL vmlinux 0xc99ddcbf security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9bc39da file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xc9c2dfde grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xc9c86013 netif_device_attach +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e1a973 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca066b37 __pagevec_release +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca170c93 migrate_page_states +EXPORT_SYMBOL vmlinux 0xca1927b0 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xca1b5c96 of_get_property +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca22e969 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xca27fe5e pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5549a3 poll_freewait +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcab559a3 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xcac1224a kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcae03ed4 bdi_register +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb17238a touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xcb1a6d9d blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xcb2c3108 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb614231 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xcb67dae3 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb73b0be cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xcb93bf1c netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xcb95204b simple_write_begin +EXPORT_SYMBOL vmlinux 0xcbb150c7 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xcbb811b6 pps_event +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbbf9df3 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe25f6f seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc02bb22 __napi_schedule_irqoff +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 0xcc326796 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4936d5 d_instantiate +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc71d8cb iterate_supers_type +EXPORT_SYMBOL vmlinux 0xcc767c10 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xcc80fa58 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xcc92d3e5 current_in_userns +EXPORT_SYMBOL vmlinux 0xcc97c1e8 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca7618a xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xccbca24f mpage_read_folio +EXPORT_SYMBOL vmlinux 0xccc4a68b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xccc7aee6 of_device_register +EXPORT_SYMBOL vmlinux 0xccc8fdd2 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcce74e64 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xcce8916f qdisc_put +EXPORT_SYMBOL vmlinux 0xccef29c3 pci_request_irq +EXPORT_SYMBOL vmlinux 0xccf3488e to_nd_btt +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 0xcd1aaf59 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd68eec1 pci_choose_state +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd8d9603 d_add +EXPORT_SYMBOL vmlinux 0xcda33574 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc77730 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xcde14829 init_net +EXPORT_SYMBOL vmlinux 0xcde39126 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdeb3a41 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce085608 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xce0d0dc2 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xce0f7ce6 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xce249391 tcp_prot +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2b38a6 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xce32ec1a dput +EXPORT_SYMBOL vmlinux 0xce40b131 inode_init_once +EXPORT_SYMBOL vmlinux 0xce44cb7b page_pool_get_stats +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 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb283ad input_setup_polling +EXPORT_SYMBOL vmlinux 0xcec67e1a pskb_expand_head +EXPORT_SYMBOL vmlinux 0xcec996fd uart_get_divisor +EXPORT_SYMBOL vmlinux 0xcecaf6aa load_nls +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcedac817 vfs_mknod +EXPORT_SYMBOL vmlinux 0xcee0cb11 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xcee7143f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefd32cd kill_fasync +EXPORT_SYMBOL vmlinux 0xcf0897c4 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xcf1d094c devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xcf20c5c4 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf33ec2d __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf3b729e xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xcf3fd784 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf50c51b max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xcf83054d generic_file_open +EXPORT_SYMBOL vmlinux 0xcf96c783 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb4b1be xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfcdb5cf fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe78a9a ip6_frag_next +EXPORT_SYMBOL vmlinux 0xcfea688f page_symlink +EXPORT_SYMBOL vmlinux 0xcfeacc49 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xd00cdd49 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xd0199ed8 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xd03e4050 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05102ce input_get_keycode +EXPORT_SYMBOL vmlinux 0xd05115ce file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08687fd cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0a811fa tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd0a86227 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xd0b6243a param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0ba2cfb _dev_alert +EXPORT_SYMBOL vmlinux 0xd0be9a29 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xd0bef9a9 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xd0c74e55 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xd0d480d6 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd10642db fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xd10a2353 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xd10b60cc path_get +EXPORT_SYMBOL vmlinux 0xd10c13a2 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd139ec53 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xd14a142f make_kprojid +EXPORT_SYMBOL vmlinux 0xd15f115d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xd1681e84 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xd16d7873 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xd17b688e inode_insert5 +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1a712db sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd1c2c680 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xd1c3d949 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xd1caeac7 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e9b15e md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd20b1c75 vfs_readlink +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd2563fdb nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xd256f14a bpf_link_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 0xd268cd17 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xd2702a4a genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd29bd76f tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xd2b5c03a xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xd2c331f8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2f03cc3 phy_start +EXPORT_SYMBOL vmlinux 0xd2fe0178 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31d4a0f sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd321e3c1 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xd3381c76 from_kuid +EXPORT_SYMBOL vmlinux 0xd346e128 security_inet_conn_established +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 0xd35d7d4d input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd3603810 pci_find_capability +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3779696 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd397c934 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xd39d60bf seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xd3a2b35a netif_skb_features +EXPORT_SYMBOL vmlinux 0xd3aa45d5 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd3e1d85d genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41fc991 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xd453ee20 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd45cc5ef of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd473a59e backlight_force_update +EXPORT_SYMBOL vmlinux 0xd48349d0 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd49bba67 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4abafb6 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd4b64f61 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cf4034 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4f95039 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50e0a7e set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xd525bb0a param_get_invbool +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53a07d1 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xd53d9f43 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xd560f7b2 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xd5614583 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd586f0e1 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xd59f7fa8 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5d92922 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xd5d95993 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd5f485ef unregister_key_type +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd622812d gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xd629a89f inet_shutdown +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd62fbcbc locks_init_lock +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6598913 block_truncate_page +EXPORT_SYMBOL vmlinux 0xd66167cd bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd66ee883 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd67fb55a set_nlink +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689adc7 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xd689c5e2 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6904ee2 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6963e9e prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xd6a2c981 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ac2b28 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ec06f6 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd700c90b unix_get_socket +EXPORT_SYMBOL vmlinux 0xd703b1f5 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xd70ceeba fman_get_mem_region +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd71f9e5e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd7385de6 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74b8db5 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd7804a6d tcp_release_cb +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7c0bcf4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ef0917 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8002f8a __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd81298cb of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81f4a38 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd833f485 lock_rename +EXPORT_SYMBOL vmlinux 0xd8380be4 md_integrity_register +EXPORT_SYMBOL vmlinux 0xd83ec651 phy_device_remove +EXPORT_SYMBOL vmlinux 0xd8560469 proc_remove +EXPORT_SYMBOL vmlinux 0xd858b918 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd866b528 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xd896c229 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89dc02e fput +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8bdda13 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xd8cd02ae phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e647f3 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd8e77220 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xd8f0fe0f mii_nway_restart +EXPORT_SYMBOL vmlinux 0xd90fa24d rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xd912568f register_framebuffer +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92d3e2b ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92ec560 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xd93cb631 amba_release_regions +EXPORT_SYMBOL vmlinux 0xd941a33c __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xd944f366 unpin_user_page +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9a80e78 generic_permission +EXPORT_SYMBOL vmlinux 0xd9ac31d5 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9d85ef9 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dedcf9 seq_puts +EXPORT_SYMBOL vmlinux 0xd9f41827 sock_no_connect +EXPORT_SYMBOL vmlinux 0xda028eec tcp_poll +EXPORT_SYMBOL vmlinux 0xda06c523 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda164d21 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xda2300b2 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xda266582 dquot_alloc +EXPORT_SYMBOL vmlinux 0xda2a4da6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xda2dd211 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xda329c80 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xda3c35f6 ppp_input +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda59e762 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xda90b947 dup_iter +EXPORT_SYMBOL vmlinux 0xdaa7c3f8 napi_enable +EXPORT_SYMBOL vmlinux 0xdabcef51 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac85ee5 inet_listen +EXPORT_SYMBOL vmlinux 0xdac9365c dev_uc_init +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdad5485c mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xdad8f55b remove_arg_zero +EXPORT_SYMBOL vmlinux 0xdae8bbdf fqdir_init +EXPORT_SYMBOL vmlinux 0xdaebcf7e blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdaf0ca82 sk_wait_data +EXPORT_SYMBOL vmlinux 0xdaf5e671 __seq_open_private +EXPORT_SYMBOL vmlinux 0xdb0697fb md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xdb1de6d5 kernel_read +EXPORT_SYMBOL vmlinux 0xdb20e020 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xdb22140a empty_aops +EXPORT_SYMBOL vmlinux 0xdb2a6662 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb993d74 sock_from_file +EXPORT_SYMBOL vmlinux 0xdbb2585e blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdb7a7f uart_register_driver +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbf23b37 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1f0c12 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xdc249373 dev_add_offload +EXPORT_SYMBOL vmlinux 0xdc27967b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xdc2cf4dd mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3d5935 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4fc749 par_io_of_config +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5b721e noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xdc5cd26e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xdc627678 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xdc778d71 tcp_seq_next +EXPORT_SYMBOL vmlinux 0xdc7abba8 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xdc9fe472 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbd1084 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xdcc48c2a nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcfd6318 misc_deregister +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd01d54b xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xdd043ea2 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xdd0eb4db phy_resume +EXPORT_SYMBOL vmlinux 0xdd0ec028 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd20b547 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xdd265abd fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xdd2ae1bd ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd2e2083 truncate_setsize +EXPORT_SYMBOL vmlinux 0xdd40a1fc read_cache_page +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd599d65 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xdd64b27b pci_get_subsys +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd821658 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xdd8242b1 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd87d1da pci_set_power_state +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc6b87b mdiobus_scan +EXPORT_SYMBOL vmlinux 0xddd2714b udp_prot +EXPORT_SYMBOL vmlinux 0xddd87a35 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xdde02ff6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xdde043c2 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xdde52177 vmap +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddf832c6 vfs_llseek +EXPORT_SYMBOL vmlinux 0xddfdbbe7 param_set_ushort +EXPORT_SYMBOL vmlinux 0xde0fc0f3 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xde20048b bio_copy_data +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde37d66c __netif_schedule +EXPORT_SYMBOL vmlinux 0xde487556 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xde49ec9e devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xde4a9d67 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4fcd35 keyring_alloc +EXPORT_SYMBOL vmlinux 0xde6a2ac6 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xde760d7a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xde779a95 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xdec2c681 bdevname +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdee0d461 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf12400c user_path_create +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6377d3 __skb_pad +EXPORT_SYMBOL vmlinux 0xdf65596f qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6e8347 rt6_lookup +EXPORT_SYMBOL vmlinux 0xdf71ec4b md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xdf7b4fb9 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9f6635 __phy_resume +EXPORT_SYMBOL vmlinux 0xdfb9d405 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xdfbb3fba devm_memremap +EXPORT_SYMBOL vmlinux 0xdfbdb38e md_register_thread +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc897f1 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdff67a04 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xdff7e5a5 release_pages +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0018b4f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe01d33b0 module_put +EXPORT_SYMBOL vmlinux 0xe028dc9f put_ipc_ns +EXPORT_SYMBOL vmlinux 0xe02ba436 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xe02c6319 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe0455a38 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xe0532ebb zero_fill_bio +EXPORT_SYMBOL vmlinux 0xe05e5a89 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xe065f8a6 start_tty +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07e9346 _dev_info +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0ad5e8a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c037db of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe0d1d84c mdiobb_read +EXPORT_SYMBOL vmlinux 0xe0d29cab device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xe0e7337e nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xe0f45578 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xe105688b xfrm_state_free +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12df6fb tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15026b9 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe151cdd5 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xe1667fc4 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xe16d99f3 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xe183161a file_path +EXPORT_SYMBOL vmlinux 0xe19c9243 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xe19d2615 vme_register_driver +EXPORT_SYMBOL vmlinux 0xe1b663a8 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xe1be9247 key_revoke +EXPORT_SYMBOL vmlinux 0xe1bf6463 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xe1c0cce3 config_item_set_name +EXPORT_SYMBOL vmlinux 0xe1d48625 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xe1dc4694 of_iomap +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e455e2 deactivate_super +EXPORT_SYMBOL vmlinux 0xe20c292d xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xe2172e02 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe220fff3 skb_store_bits +EXPORT_SYMBOL vmlinux 0xe22e5eab __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xe233f93d dev_add_pack +EXPORT_SYMBOL vmlinux 0xe23990ff bio_init +EXPORT_SYMBOL vmlinux 0xe243b76a param_get_ushort +EXPORT_SYMBOL vmlinux 0xe2471c05 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xe263a489 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xe268e35b fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe289b18a generic_listxattr +EXPORT_SYMBOL vmlinux 0xe28db561 path_has_submounts +EXPORT_SYMBOL vmlinux 0xe28db69c flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0xe29aee40 rtnl_notify +EXPORT_SYMBOL vmlinux 0xe2a1dd0b follow_up +EXPORT_SYMBOL vmlinux 0xe2b924ec netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xe2bc8e12 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xe2bd46d6 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe2bd5678 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xe2c8afca pnp_is_active +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2ec33f3 i2c_transfer +EXPORT_SYMBOL vmlinux 0xe2fab9e1 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xe2fd9857 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xe304efc1 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xe305d210 iget_locked +EXPORT_SYMBOL vmlinux 0xe31a79f0 add_to_pipe +EXPORT_SYMBOL vmlinux 0xe326778b cdrom_release +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe35b5e23 skb_push +EXPORT_SYMBOL vmlinux 0xe382614d sk_common_release +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f8cb95 ip_options_compile +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe408e0d1 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xe4091b7c kset_unregister +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe445094f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe44701bb __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xe44a5150 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xe452b43d thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe462d051 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c657d7 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xe4dea63b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xe4e55644 kill_litter_super +EXPORT_SYMBOL vmlinux 0xe4f54162 napi_build_skb +EXPORT_SYMBOL vmlinux 0xe4fa2b86 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xe51ac9f9 mii_check_link +EXPORT_SYMBOL vmlinux 0xe51fc5aa devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52e8d2e input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe549816d uart_suspend_port +EXPORT_SYMBOL vmlinux 0xe5767c75 padata_free_shell +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58cd947 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5999f8c blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xe5b26b6a scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5dd1578 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe60bee18 seq_bprintf +EXPORT_SYMBOL vmlinux 0xe60e95d6 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe63372f7 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xe6343794 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe6507fa4 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe654c521 unregister_netdev +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe666519a genl_unregister_family +EXPORT_SYMBOL vmlinux 0xe66f8ca5 vif_device_init +EXPORT_SYMBOL vmlinux 0xe67be3eb tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe687da34 phy_init_hw +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6b94b76 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xe6d16a52 vfs_statfs +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6de5f44 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe6f1dd6a devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe6f3dd11 con_is_bound +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe715e1c7 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xe71a7bbb netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xe71e0b21 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe74964f0 mii_link_ok +EXPORT_SYMBOL vmlinux 0xe76248a5 ip_frag_next +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe774bd51 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xe77f827d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xe780f324 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe783af63 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7b3a428 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xe7bc7cd0 dev_trans_start +EXPORT_SYMBOL vmlinux 0xe7c5b033 dev_change_flags +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7f94151 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xe7fd4d75 block_dirty_folio +EXPORT_SYMBOL vmlinux 0xe829fd53 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe85c04f2 d_path +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe867a42d devm_ioport_map +EXPORT_SYMBOL vmlinux 0xe8778a61 vme_slave_request +EXPORT_SYMBOL vmlinux 0xe8b11fd7 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xe8b2c0a3 put_fs_context +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8c5fdb3 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xe8cd7417 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe8d30c6f rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xe8d49acf d_move +EXPORT_SYMBOL vmlinux 0xe8d889e9 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xe8e5569c dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe8f91452 write_dirty_buffer +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 0xe909d098 freeze_bdev +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9155f6e may_umount +EXPORT_SYMBOL vmlinux 0xe917be38 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe91cb149 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xe94024e1 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe94d1601 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96b6e6b nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xe98422ec rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xe986fd3b of_device_unregister +EXPORT_SYMBOL vmlinux 0xe9abe752 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9c5bd9a udp_gro_complete +EXPORT_SYMBOL vmlinux 0xe9cbbb73 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xe9d377c1 seq_lseek +EXPORT_SYMBOL vmlinux 0xe9d7287c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9ddf01d follow_pfn +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 0xea064a8e of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xea13db84 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea985670 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xea98c4c9 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xeaad5107 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeaccb5be mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xeace6433 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0bd521 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xeb0fd506 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xeb14dc7c of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xeb1b05dc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb45c9b7 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb741ce5 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xeb781fe2 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xeb7b8e8f flush_dcache_page +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb976a65 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xeb999b50 set_disk_ro +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba8d4d1 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xebaefa3c qdisc_reset +EXPORT_SYMBOL vmlinux 0xebce1be0 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xebd6f7ae mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf7917e sk_dst_check +EXPORT_SYMBOL vmlinux 0xebfcdef7 __inet_hash +EXPORT_SYMBOL vmlinux 0xebfe5920 inet_csk_reqsk_queue_drop +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 0xec3ea484 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec522e89 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xec55f7fe free_netdev +EXPORT_SYMBOL vmlinux 0xec58057d d_alloc_anon +EXPORT_SYMBOL vmlinux 0xec60661f jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xec62c9bd tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xec6af225 write_inode_now +EXPORT_SYMBOL vmlinux 0xec857357 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xeca103a0 consume_skb +EXPORT_SYMBOL vmlinux 0xecc41aac vm_insert_page +EXPORT_SYMBOL vmlinux 0xecd20506 default_llseek +EXPORT_SYMBOL vmlinux 0xecd3bb54 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed3c1e67 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xed4d073a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed78e5a8 noop_llseek +EXPORT_SYMBOL vmlinux 0xed7ad5f0 single_release +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed8dcec5 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xed90bdee __nla_put +EXPORT_SYMBOL vmlinux 0xed956e0c xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xed962f6d xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xede26644 pid_task +EXPORT_SYMBOL vmlinux 0xee25da60 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee310a78 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xee373ea7 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee67cfcf __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xee681b45 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee88afb5 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9b6439 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xeea5aad1 __breadahead +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb01cc4 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xeebdf2f7 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xeecbec73 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xeeda131f jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xeedbcbb4 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xeee021f3 phy_get_pause +EXPORT_SYMBOL vmlinux 0xeee0ef56 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeeea8c00 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xef071cdd __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xef104778 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xef14e441 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xef1b9727 tty_name +EXPORT_SYMBOL vmlinux 0xef240767 may_umount_tree +EXPORT_SYMBOL vmlinux 0xef4d3967 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xef4d4cb3 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xef5a53cd tcp_req_err +EXPORT_SYMBOL vmlinux 0xef6d93be pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xef716191 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef8ca049 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xefa12dbe __i2c_transfer +EXPORT_SYMBOL vmlinux 0xefaa179d lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb06fa4 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xefc393e9 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd98c66 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xefecb794 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff838a3 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf000d543 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf02b4e84 key_alloc +EXPORT_SYMBOL vmlinux 0xf0399e5d register_filesystem +EXPORT_SYMBOL vmlinux 0xf0400741 d_splice_alias +EXPORT_SYMBOL vmlinux 0xf07b0640 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf092ff21 d_lookup +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a0d995 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0b9d3fe sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xf0c54a77 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xf0c7d717 sock_no_accept +EXPORT_SYMBOL vmlinux 0xf0ca28ef sk_net_capable +EXPORT_SYMBOL vmlinux 0xf0d83ece inet6_release +EXPORT_SYMBOL vmlinux 0xf0f6e6cb serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xf1052392 skb_ext_add +EXPORT_SYMBOL vmlinux 0xf1073758 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xf109f742 iunique +EXPORT_SYMBOL vmlinux 0xf1135809 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1315c00 md_write_start +EXPORT_SYMBOL vmlinux 0xf137d95c devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf1765f5b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xf18259e4 rpmh_write +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1b12afb blk_rq_init +EXPORT_SYMBOL vmlinux 0xf1d95f08 __scm_destroy +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e663d4 touch_atime +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eb5485 cdev_add +EXPORT_SYMBOL vmlinux 0xf2078c7c nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xf2361f19 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25523fa pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xf260f2fc complete_request_key +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf265de23 dm_io +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf267f862 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xf282d520 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xf285cabe rproc_vq_interrupt +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 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e53477 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e6db21 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xf2f13152 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fffdaf end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf3037f90 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xf30c3bd6 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf325f49b fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xf337232d d_make_root +EXPORT_SYMBOL vmlinux 0xf3401aa1 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf359b9a0 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xf35f49da phy_driver_register +EXPORT_SYMBOL vmlinux 0xf36c5d17 path_put +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf377953d blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xf38a55b0 vlan_filter_push_vids +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 0xf3b7cb97 bio_free_pages +EXPORT_SYMBOL vmlinux 0xf3c7f98d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xf3d6ad74 d_genocide +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf409fdde balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf42bbef5 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xf430bc00 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf440bcea set_binfmt +EXPORT_SYMBOL vmlinux 0xf4458a78 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf451aa5a udp_ioctl +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf488ac53 shmem_aops +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc8d1e mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xf4e09eac input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xf4e5df0a blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f965b0 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xf50429ee wireless_send_event +EXPORT_SYMBOL vmlinux 0xf51485d8 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf539e11d __sk_dst_check +EXPORT_SYMBOL vmlinux 0xf53ae8f8 dquot_operations +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf554cb7f page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xf57c9c95 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xf583aae7 km_state_notify +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf599cbc5 pci_map_rom +EXPORT_SYMBOL vmlinux 0xf59a4cf8 tty_unlock +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5de720d generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5eadfdf blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xf5fc9fd4 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf60e8a5f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf6168978 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf628902f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63346ab submit_bio_wait +EXPORT_SYMBOL vmlinux 0xf64170fd flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf667a032 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xf66f1103 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68e77c8 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf692072b nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xf6a6e2f6 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf6b88601 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xf6ea88f1 tcf_em_register +EXPORT_SYMBOL vmlinux 0xf6eaede9 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0bed9 done_path_create +EXPORT_SYMBOL vmlinux 0xf6f2efb3 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70528c3 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xf70648b0 set_anon_super +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf738d23f remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xf7574625 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf75a6ea7 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xf762f6e8 acpi_dev_hid_uid_match +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 0xf79be8f8 folio_mapped +EXPORT_SYMBOL vmlinux 0xf7b758dd is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7c4da18 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf7cdf1dd flow_rule_match_control +EXPORT_SYMBOL vmlinux 0xf7d2e32e _dev_notice +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d8ce04 skb_eth_pop +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 0xf80cd15a phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xf8101c5f gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf8170fad gro_cells_receive +EXPORT_SYMBOL vmlinux 0xf827678a devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf82f1374 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf86eab04 path_is_under +EXPORT_SYMBOL vmlinux 0xf87162d1 begin_new_exec +EXPORT_SYMBOL vmlinux 0xf87960b1 pin_user_pages +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88f91cc __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf8918bf3 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xf898889d proto_register +EXPORT_SYMBOL vmlinux 0xf8b56049 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xf8b65f08 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf8ce146a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d15933 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d43ace dev_close +EXPORT_SYMBOL vmlinux 0xf8d645cb fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xf8d9200e iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf923f354 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xf924572d flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93e0433 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9418bc0 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9867f60 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ad0120 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xf9adc30e filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xf9b62407 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xf9bb496d genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xf9bbef36 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c2e506 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xf9c9df24 sock_set_priority +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9dd517b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xf9eec2c5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xf9fa84e5 vfs_getattr +EXPORT_SYMBOL vmlinux 0xfa0112b4 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa059b1f lookup_one_len +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa09feb0 vfs_link +EXPORT_SYMBOL vmlinux 0xfa1a4172 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2d0b2f fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa344679 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xfa374927 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xfa4a7681 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xfa4c50a8 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6a58b5 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xfa8f01e3 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab1f30f inet_csk_accept +EXPORT_SYMBOL vmlinux 0xfab32ccc proc_set_size +EXPORT_SYMBOL vmlinux 0xfab54f35 padata_do_serial +EXPORT_SYMBOL vmlinux 0xfac7921c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb0b8c82 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xfb0c76f2 set_bh_page +EXPORT_SYMBOL vmlinux 0xfb1f61d5 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb44e638 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xfb47d746 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xfb4ae548 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xfb51d6bb of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xfb6155ab folio_account_redirty +EXPORT_SYMBOL vmlinux 0xfb62b080 dev_get_flags +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb89d078 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xfb8fccae task_work_add +EXPORT_SYMBOL vmlinux 0xfb922b9d inet_register_protosw +EXPORT_SYMBOL vmlinux 0xfb995dc2 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xfb9f4632 inet_dgram_ops +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 0xfbbb9bc2 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcea32f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf8c6da genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xfc1cc2e2 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xfc1e1292 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xfc22634e nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc4bd427 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc57cbaa mii_check_media +EXPORT_SYMBOL vmlinux 0xfc7d0388 key_type_keyring +EXPORT_SYMBOL vmlinux 0xfc830695 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc9c9f9d simple_setattr +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcce3c86 bio_endio +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7c30e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xfd047eb3 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xfd0a2c14 iov_iter_init +EXPORT_SYMBOL vmlinux 0xfd120edd __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfd1fe731 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xfd31f78d d_rehash +EXPORT_SYMBOL vmlinux 0xfd428b25 bio_put +EXPORT_SYMBOL vmlinux 0xfd80744c proc_create_data +EXPORT_SYMBOL vmlinux 0xfd81c21a pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xfd8fd06f __post_watch_notification +EXPORT_SYMBOL vmlinux 0xfd99640b scsi_done_direct +EXPORT_SYMBOL vmlinux 0xfdae7908 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfddb73fb register_netdevice +EXPORT_SYMBOL vmlinux 0xfdde9c00 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfde48c67 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xfdfc69ee tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe14b7f2 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xfe188574 mount_single +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2d5b1d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xfe47009e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4c9f7e ps2_drain +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7715e1 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xfe778c1c dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xfe79aeb1 param_get_long +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 0xfea07204 filp_open +EXPORT_SYMBOL vmlinux 0xfea1b292 edac_mc_find +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfed74203 unregister_netdevice_notifier_net +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 0xfef47cb4 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff0600a2 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff25511e netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xff25f8bd __mdiobus_register +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff351de9 mr_dump +EXPORT_SYMBOL vmlinux 0xff42e61d kill_pid +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff774706 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xff793da8 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff8082ff lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd75fdb disk_stack_limits +EXPORT_SYMBOL vmlinux 0xffd8d5b7 vme_irq_free +EXPORT_SYMBOL vmlinux 0xffd9bcf6 param_get_int +EXPORT_SYMBOL vmlinux 0xffdb5af7 do_clone_file_range +EXPORT_SYMBOL vmlinux 0xffe7cc55 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xffeb809c __neigh_create +EXPORT_SYMBOL vmlinux 0xffebeec8 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xffed9afa inode_dio_wait +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL_GPL crypto/af_alg 0x0189bd0f af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x04b9f526 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x089f7fb3 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x09b9e89d af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x34554e39 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3ae0979c af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x579cbcd7 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x5860937e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x65932220 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x6bac68c6 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x74a2cd26 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xab8be788 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb20f0835 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbcacfcf4 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xc0b78cc5 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc32cf2b5 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xf476a67c af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf909e985 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x3873800d async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0c3f1508 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xcd9f5502 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7f1fb126 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x89846696 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x40206b2d __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x64130950 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb298e6c5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd05e9cd5 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x31a22c12 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x711fabd1 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x80c70eb5 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe62ce67b async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd6dda123 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27fcf5f5 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 0x98c8c6e4 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 0x16ab86d3 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1f08620c cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x22f539c1 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x28d86beb cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x44d8d56b cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x4e6c5799 cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x525b0096 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x64ee90c2 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7aacb950 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x876f3082 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x913f7c96 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xc03f7c53 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xcaf00315 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0267457a crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x07b3dcd5 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x149b5c7a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e5bddab crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31279bb1 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d5e1232 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5eedfb45 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66ca5cbe crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96abc986 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3afae50 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb45b1321 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb4e9ab43 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7985e54 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf39073a0 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfd053eca crypto_transfer_aead_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 0x57bdda8e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0x69e451ba twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05011fba spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x169406eb synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1835fef3 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x20f5b66c spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3f55ecbc spk_var_store +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 0x58506759 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5c2095bb synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6cd3698f spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x90dc7dff spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x99c1c4c3 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9d725eb5 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb3c731fd spk_var_show +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 0xdaf2cb35 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfc2ec6a9 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xffe5a9e7 synth_remove +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x322d903d 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 0xa288db30 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xb5d22f44 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xbbd0443e acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc75069cb __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 0xad89f93d __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x5551d6a2 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/auxdisplay/line-display 0x3f3c7c3c linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x8dd5d631 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x171da6f4 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x2000a98e regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x8615381c __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x0702b535 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xa42580f2 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xca1f7786 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7cf423cb __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x95e99688 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x06f8a581 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x6a765869 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x781c2c7a __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe9bbe5ef __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x1a45930e __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xcbaede15 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0c5c20c4 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x160e7409 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9359de63 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa1beff28 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1dfe0cab __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xcb32069b __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0dea88da bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0df831de bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11cdb721 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x135dbf7e bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d8203c6 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x256abf09 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3540fb2e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5a4fcc33 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5f8b1caf bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x77604615 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x855216cd bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e8240b8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9cc6a822 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5ca9633 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa6ca5abf bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xad60eb56 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc38ed78 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe08d765 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7cec58e bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd7eb4ccb bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe0836c60 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe18cccfe bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2fdf1cd bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe6c767af __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6c8d32c8 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7bba0d39 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x811b3a7c btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x92d460bc btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0771ace btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc16d5fa6 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xda296346 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xedcc7a28 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x040d4602 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a8a09be btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0b778df6 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2cf51796 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3d78705a btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f6bff89 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6979fd20 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x940b659c btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x97272a82 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9a5a4119 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa38e6d62 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb7c60bea btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc9476b66 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf2691ba btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xda8616ba btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdbb93e55 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf8306d2b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x00250701 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0f6be521 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x20ce7497 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x27c02396 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x33936278 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x45b852b7 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x58328324 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9a297889 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdc8a6b1d btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeafa528a btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xed5f05b3 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xb2cc3cb2 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xe86e93fd btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xfb72bdcc btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x473d0452 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x70dc7007 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x71ee5785 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa05aad06 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xa997103f qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0cfed117 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x543d2a87 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x64809039 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6768ec6d btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x736e950d btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xb4860746 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x115081ff hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x533fcf17 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x98ff99d0 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xad1ad6dd h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0c7bb464 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0de3a20c mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x123b0ac0 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x406e1cdc mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x4348601f __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcebd4ace mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xcf3c31e9 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe3ec17f1 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0011cf93 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x006c5a89 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x045d8000 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x04758d57 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x17b5dd49 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1ee0ff1a mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x354ce5cc mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x41b23092 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4216b6d4 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x496db16c mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4a9039d1 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4c572203 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x52859418 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5431cfde mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5f65ad17 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6402e977 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6977d962 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7aca2350 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7d29daf1 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x99840e32 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xae7a72b6 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb70a7421 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb8c5eb26 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xba57a96e mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc36a1cfa mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd3f4d4ec mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdf6a8fb6 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe6395443 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xec019c69 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf944d465 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfb4297bf mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x1d6259b8 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2d006040 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x2f3c912c moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9021205a __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x68adea67 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x88f7ad54 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x5c567084 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x840738f6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8e37e1a8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x84e93ed0 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 0x097b4617 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0bd09ed8 devm_clk_register_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 0x1cbd386f clk_rcg_floor_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 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x2d115528 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 0x3788941a qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b7aafbe qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5086cd28 qcom_cc_really_probe +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 0x618644ff qcom_cc_register_rcg_dfs +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 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 0x799047da qcom_find_cfg_index +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 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b8647a8 clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c006f8 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x957f7a28 qcom_cc_map +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 0xac2e73bf clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac6d83fb qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd62ac61f clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe7fead48 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfaec9ab2 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0cf2f973 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1bc8e6bd sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x24aed9b8 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x474cc186 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x55a241f4 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x601f66b1 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x689b573a sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc3ea2fbd sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xcd95d0b3 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd64b6fbc sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xdfa539d0 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeda0dbdb sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf1629554 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfd737631 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0165d3a8 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x061b3615 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x09af0a70 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c1c7452 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e95f066 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0f2733b9 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x12e277d3 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x139e7e1e comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x20449aba comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x23e342e4 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2ec09466 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d15aaba comedi_bytes_per_scan_cmd +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 0x5553f71a comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x684d7b06 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6ac81145 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x73ad910f comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7b9a5f55 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x866a52ab comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x88348ffe comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8d0d6093 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8f73e304 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9af0e75a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa94e1461 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xafb09b89 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb4d209ec comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5605be5 __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 0xbb945d8a comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc3cb998f comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe0d4f8e5 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe145a7bd comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe91dc9c0 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xee27dfe3 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xee88f53a comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4210f7b comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf4accc46 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfdce939d comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x08a11d64 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x468ff0b4 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x6467a064 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7469effa comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x90ced3a5 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa4731a96 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc0771c63 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe93d73c1 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x405eea9c comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6394a9ef comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x83c9e2ae comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x98d6e011 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa75b2064 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc234f97e comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xcac93fce addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x66e89c73 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x743614be amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x50dbf7cc amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x18e9539b comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1907afa5 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2f25823d comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x35ed8b19 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45d3dd94 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5ab35d66 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5eaa7e78 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6e80a52f comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb1b0f5b3 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbd8bfe8b comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xcbc17378 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdd20e0e8 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe875b85f comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x670387e3 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xc0c33766 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xe12951ec subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xe8aee73f das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0ee3277e mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1c0177a3 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x21bd8187 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x239d6f01 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2d1d7149 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6cf41c85 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8152e155 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x867ef665 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8a1575ac mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8b741ba4 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa4be1d3f mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xad417966 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb6eaad72 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdb5dd2ba mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe4b7885f mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xea8d5196 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x11a13d09 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xa085468c 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 0x0d2d6d3e ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1c4d23f1 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x20600fb4 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3be55096 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3cd8af88 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5d9f575f ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6d4775fb ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x72a60d0b ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7e59b269 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9e52ec89 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb6ce689f ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb923278e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xcbccca8c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd11b3c96 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe8be7b3d ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfafac94e ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x604e680c ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7623d4f1 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7b9c2943 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9ec666d9 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xcc967454 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xf5890859 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x11222949 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x36acff4a comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4a2b9c0e comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7f7a605e comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc62b1ae9 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf684d8c1 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf6f1e928 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/counter/counter 0x07b04239 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x50eb0980 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x553818ce counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0x937fb140 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa2a6d766 counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb30c0da4 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc3cf45e4 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe7b36f21 devm_counter_add +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 0xf9727a99 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x066ce422 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x077727c8 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0cd691cb hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0d492cfe hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0e85e9df hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x19312662 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x21590d26 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x31bb2712 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3adf3bec hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3b98b679 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x50d678ca hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x5276f17c hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x55a87f20 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x55cff457 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x62900702 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x65d1b326 hisi_qm_diff_regs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x73ead508 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x73f1029a hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x74c01d17 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x74d11ac4 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7a2e7d6d hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7aee9feb hisi_qm_diff_regs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x83cc9418 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8a474bb4 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa19f83b2 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa99f463f hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xad403ecf hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb4e5774a hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb6e1b5a1 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb7c13fde hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbdc89558 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbe3342ce hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbeaa9f0f hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc4f1ee77 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc637c688 hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc96b07b9 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xef48e0d4 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xefd311f5 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf9318bdc hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfea91361 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x155a281d hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x0054f9a8 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x5a8c9f59 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x30724205 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 0x4c97e9b2 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6b906339 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xe6d8ed01 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3fef5ead idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x89bbc408 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xacf83293 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb0631295 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc80a2fb2 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xcaf7c8d9 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdbc40c51 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0f2b714 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3221b2f dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x17169c55 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3190798c dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3729a8b1 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4ee65383 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6636d227 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x855a4250 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x91042fc2 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9a735b5d dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd7dc7f24 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfb1174c0 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x128fe3c9 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1354aeea fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1b3d010f fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2a72f62a fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2d63526b fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48c755e5 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x76521173 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x76a4c400 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x93a0d28d fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xac5cc966 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xaf7861cd fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb4fcdeb3 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbb8bd581 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xcd3eee26 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd4d65c20 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd50ac436 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2a097c7 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbaf57e3c hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc4f5cd75 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x2278cddb fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0121682c ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4e285582 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x5fece042 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x623f24d3 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xa74548e0 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd4ced041 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7fa3184a get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x05f94982 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x08dd10f4 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x14fb7336 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x174eb2c6 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x1a8b5779 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x2c1495f9 cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x52dc87cb cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5e13fdd2 cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7082af0a cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x842c2b50 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x9fac2cca cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa9230046 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc56cac70 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc7b4a48d cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc86c7a7b cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xcce199cb cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xcd948f4c cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd4e7104f cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd83071d1 cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xe92ea396 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf44f815f cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf7090873 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf7cb9814 cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfce0a433 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xca18b5c8 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x49ddb8af stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x1f156106 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x007b1830 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03dc4192 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04ecf3aa dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25ce3b64 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e5ef08b dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3206594f dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e3052ab dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4acfa981 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e767cf7 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7020f02d dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7158a829 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x93f170b0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x970a85c5 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb840456e __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb9ff517f dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc26e05de dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd6ada7a9 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c809da dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe7abf609 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xedd98d9a dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5e1986e dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf9bba78a dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfd233279 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x334c21a0 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4eddd20d fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5da25cc2 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95c674f1 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9c19338f fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xadac3df3 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb2f481be fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbd4b212c of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc551bd95 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5afd4097 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x76946241 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x77700216 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79a45657 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x91202a79 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x91e34332 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9aa2fedc fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb43bc266 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xce82824e devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd900c18a fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe05948d9 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6db9bdd fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xefb7b3a3 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x16483227 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x563e8aba fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5cbd8cf8 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbf674358 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xfb7685dd fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0947fcc8 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x388e14d4 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5dbb599d fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x79935a2c fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x84cd5adc fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x999a514b fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xabacf19c fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb06e7ec1 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 0xde6426bf fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xfc5ece61 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0xa4de166d fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x2b27743d sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xefa75912 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x14694add gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x29f82c8c gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x76d2a9c1 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9c772465 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xeb95035b gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1f452262 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2ee0501a gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4bf58e90 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8587e459 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xdd0e4568 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ceb06cd __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x18171848 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x7ebefd39 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xccb71918 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x12825151 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x215cd008 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x294516d2 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5352586c analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5db90ac7 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x6b3903e3 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc4e33933 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe474731f 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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96c1d456 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0xda898ef8 dw_hdmi_bind +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 0xf5f68ab4 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 0x200c09d1 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 0xb7eb1346 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x21317484 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x0837ad53 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xade47f8c __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb6f833fb devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xca8fd2de of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xdd7647ec of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0ed7245f of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1d1bb818 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1eb87d6c drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2c57d216 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3245aa1e drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x55a59be6 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x762fbb97 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8977f870 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x898f786d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x950124e2 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9b30cd20 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c9ee08c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xae1b26c2 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb3ad48ff drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1c07222 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2d7371b drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd448724d of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdec21987 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xec423040 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf74624bf drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x173623ba drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x1ed1a098 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x20bed6fc drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x801bea6c drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa2bd534c drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xac2bbfff drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xb0d80003 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xb8b41a91 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xbdc9974c drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xc8eb2beb drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xdaea41ab drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe76a1452 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0098af7f drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x059df4d2 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0682c730 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x23de0de4 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f8041b5 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x605d2418 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xaabaf028 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xbe7acf09 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc2299454 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeb57c9e8 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3bda79b2 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x541bb561 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x702db03a drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x93d50b3b drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x94075338 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa2c79d8f drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xab964324 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe1a03990 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1f864585 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 0x68d3a68e meson_venc_hdmi_mode_set +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 0xd048f818 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xe0ae6ff8 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x211ab849 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xb2f2ff63 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0xddc078e7 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4e24944f rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x501f0147 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa05f890c rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf698812b rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x06339a38 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x3ff29c02 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x56684771 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xb432cb3c rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x11a388ce rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x90ee78e2 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc60eb9d4 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x5c859fb9 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xab7696b8 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xdb0d1653 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00ade50d gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00d8a214 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0246ddac greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1251ee08 gb_connection_latency_tag_enable +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 0x1b90dcaa gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1d0502d3 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1f49c305 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x237bbd26 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23aad789 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x270f7d6a __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x288417f0 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38b3664c gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x43a39861 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4c4ac4ec gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5380fcf5 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54404750 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x549e156b gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58bc50dc gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58d37621 greybus_deregister_driver +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 0x66fdfea5 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7097747a gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x73980583 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7485f4ff gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x79c7614f gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7a6ef516 gb_connection_destroy +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 0x9885eb83 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa5814f66 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafb430eb greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xaff887e8 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb0872338 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb6027928 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe4c27f5 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3c2f438 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce64a110 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1c276eb gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd37aaac4 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd5243900 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7800db0 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd99e31b8 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb7e0a2f gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeceeaa91 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xee82d443 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4995393 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01a98311 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x037c5542 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x037e2f02 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ad4b5d3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d043a8c hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1263f8f9 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x140d4410 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x186bd19f hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23df5ac0 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x253be1b7 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x253efda3 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29a372d5 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2acd1a58 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32d07c6b hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3698fcb3 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ed0fc0f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bf887b4 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4c939f83 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f9b466e hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52053121 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5da2a5c9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60859b4d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68d8febe hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x742873f3 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74dddbff hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a66f45c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8269a27a hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x898a9dd0 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a444133 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ee65b4a hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa41dfc88 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9a62746 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbcb9af84 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf57a3f8 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfc253ac hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc4da4576 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7235c9f hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbde549d hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcec87fcc hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd038ebf5 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2ec68bd hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd47e443d hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4fb2d3c hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5d7dc04 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd8b384ea hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda40810c hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb10de4e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1631c1d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0a2998d hid_dump_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 0x83009262 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0fefb470 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3a07c189 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3e67434e roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8fa99629 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd554cbb9 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdcff0175 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d7346a7 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x139bafbc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1e6b4acb sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2dd88a74 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x318ecff9 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x879b73ff sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xab65feb1 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb8afb176 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc00d4bb2 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x82416a84 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xd97ef849 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x052d23d4 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0bbcbab8 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x41ce2ed5 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x591bb449 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xf6e8805f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x53c51ccc surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x5ea3883f surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x84d85b41 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x2c1c2170 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6f79f385 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8878de33 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x00999206 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f45e437 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x284b417f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x37a138cb hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x40a948da hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53da6e79 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x571bc4bf hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x619c43c6 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x736bfdba hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x739f05f7 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c87a3cc hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x99d9ed31 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa71f23ad hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb68fbe32 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdde1a405 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe534fc69 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xee81556f hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf17e4dca hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x00a98f22 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x02e79817 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0d471b1b vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x11eb7450 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1b40ca6e vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x249e1b1c __hv_pkt_iter_next +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 0x3d0f72e1 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x42541e7d vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46042817 vmbus_request_addr +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 0x59636ba7 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x72dd2bc2 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x788c9f3d hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x802e41a8 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x81a7f2aa vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86f84ac3 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9741fc52 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb071c6db __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbd2144cc vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbe56c7fc vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd08d6c22 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd28ed8ac vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd46bfca7 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb1908f7 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe1b4484d vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe2ba1ace vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe82b1afd vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe84d34bc vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf0f5f96e vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfb769611 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x15fb4a3e adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd67c633e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x55a6aed7 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/hwmon/nct6775-core 0x0d27aa11 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x183f7996 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4275f6fb nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5b2f0bfa nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6f43ef9b nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe0a58d42 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e9b98fc intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0f4bea3d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x287b5acb intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x30b93418 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4d21e9f6 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5d3c23a0 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8b9ec166 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc189d152 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc38158d4 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x09b1289f intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc519d8b3 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xc903326c intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x407e9e6d stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x42c72e2d stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4aa1d5b2 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x73c60251 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7aa62f6e stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90344d1c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9f9edac1 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd6d0a139 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xed791b09 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x615b6775 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2156c567 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4bfa897b i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaa1acdac i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcb91e34a i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x3462b038 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x761cee02 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7f6cdbdb i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa3242352 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a1a74c5 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11182096 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x12c0235d i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x148b9556 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a734419 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4e8c0294 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x52327e5d i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x55c7b09f i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64620e62 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6c7d6552 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7c7a4a86 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c3214b3 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x91cfbef1 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x97a1d38d i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9e62c5a3 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f8646b8 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaac0270d i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc84e1d81 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd672db0f i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd7d2170b i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xee706d35 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf9bb745b i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfb26de60 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfdba8178 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfe8d744a i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x07b0cc1e adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x9a30436c 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8da91ebd iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbafbec7c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xcafc00b1 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x189f65fa iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1a60282a iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x23e29fcb iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x28d257fd iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5747d06c iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5f2f06be iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x69681642 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7383f2f9 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x9253909e iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd2631fbc iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe440d6b0 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe5839cae iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x722c525f 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 0xae475a21 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xb73422e8 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-triggered-buffer 0xff7dff48 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x03a83c2b devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x76f70f89 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0c1899cf cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0e385c9e cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x32d2254b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x48c44069 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5f97d339 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x604185c5 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x777f4a49 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 0x9aebaceb cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaa9df3ae cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0b3a05f cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6c44518 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x026376e6 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3ac5e66d bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x4c0b42fb bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x211db454 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7591376a fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc624e41a fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xfec92927 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x5be8d9aa fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x2eb719bc inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x4a488fd4 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb1db872e inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x2303352f inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xcf028e98 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c70db78 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c9d9c37 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ccfc14d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cd295dc iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f9f52a3 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ed59ec iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x286535d9 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a2de07e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ec84d09 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30750d46 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bb82710 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40320747 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dd38a07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4eaed0ab __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ecc7b28 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f6e5cf1 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5243bcb9 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65061a9c iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x657e61a1 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d0025dc iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70bacaeb iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7279b0ae devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7994c514 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8125024a iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87e2be70 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x904410e9 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90746db4 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ab44e99 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6daa0e2 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9794e85 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd9489e iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac3ce01d iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaef6d6f1 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafb7ec45 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb049f1b5 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb30258e8 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb42c4dc4 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5ebb186 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb56ba01 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf5aaa69 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3d3ca18 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5813e0c devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc610aaa1 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6fd7c29 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca68a2fd iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd21e338a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd92ffb5a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdebfa7f0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2bb8475 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5d87def iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf367d438 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4bffbed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x287920c9 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x405a9e36 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x500f48c4 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x74eb6565 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7700c067 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x890024b3 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x971afee0 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb2f36dd rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc631088f rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcfc937da rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeaaf4402 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xfdbeac1b rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc26f2b52 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6e9fa0b0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x80d2251d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x45c983db rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x68afc6e2 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x74d9ac33 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x83c6f753 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8e30fdfa rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xaeefde6f rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb92ace6d rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb945c9a1 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc51b7dd1 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf10978ba rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf83b7ace rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf8df4d19 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf995ac65 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6d7d94aa cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8f17bfec cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd5169709 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x273ff7f5 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc552926a cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x29b4dc9b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x4f7f2117 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x29a6c286 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x82b657fe tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb34a6ea5 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb5ab719 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15627641 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3efd7655 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9a8a22db wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa03d038f wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa63811bd wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab0d7cd0 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xccdbafcf wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdf0d2101 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xebb5fa83 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef79134d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xefe96b91 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf25776cb wm9712_codec +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x346d47ba imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x435ccdab 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 0x7ea7d75c of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x466a5417 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x60b18788 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x6609c8a1 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x85b9635c qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8b422a3a qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb2e9b3bd qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xccad963d 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/ipack/ipack 0x075f1563 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x28b166ee ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5929e6f4 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x818b07b3 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa26098af ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaca726a3 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xacbe93af ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd88fede4 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeb82af97 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x35e145c3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x36f8fcf3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x687fc7d1 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x737fbcba led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x927d690c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbae80034 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc5046d7e led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdd59d249 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1a5ff9f2 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x781d07b7 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb6ff31c4 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe4cb4cc7 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xed18f776 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x204b89d3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x352ae172 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3c2d3e9a lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6325188e lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb970086c lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdea3cf6d lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe15d7a6b lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe18699aa lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf2b77a6f lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfef62566 lp55xx_init_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 0x03840bab __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x045fba1a __traceiter_bcache_gc_start +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 0x0c95b0ae __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13746d6d __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x140d19d3 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x166ef53f __traceiter_bcache_alloc_fail +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 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25e96235 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26e394d9 __traceiter_bcache_btree_node_alloc +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 0x36cae1a9 __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 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 0x5785f653 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x57e9dfb7 __traceiter_bcache_journal_write +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 0x610e2eea __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x64d9908a __traceiter_bcache_btree_node_free +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 0x67fa451b __traceiter_bcache_btree_insert_key +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 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 0x952222dc __traceiter_bcache_btree_node_compact +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 0xa3ef8f5c __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaa368f10 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb264dfbf __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 0xb9250931 __traceiter_bcache_btree_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 0xc0a142ba __traceiter_bcache_journal_entry_full +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 0xd7367832 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd95f7277 __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 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 0xf9730085 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb15cbbc __traceiter_bcache_request_end +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 0x14edc682 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1697c1b8 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1be4f9c7 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25face94 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 0x427f589b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6260a620 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 0x6d19b073 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x84b53e86 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x942d063e dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaaa9ff77 dm_cell_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 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcccda723 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd1c46071 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd59b4c2b dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdc71c964 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe4991ed7 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeddcc1c8 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf65bde38 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 0xe452c1d8 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 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 0xc1cf6e78 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 0xd723a135 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x31fc8aab dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa7d40e23 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 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 0x616ea7c9 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6c42b969 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 0x9d6f073c 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 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xccd5d10f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd6c024fc dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7ed5850 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xbd3fd45e 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 0x082ad946 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x227d1286 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x26a4a071 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2c020375 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x353a3796 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4187b60d cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4ead7c92 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x69e5666f cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d2ae3c6 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7ff0d88c cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8e56e094 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x92f4a4cf cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa70779fc cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb5442013 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7105591 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb9dffee7 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbef84246 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc62f41b4 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd1f4fc1d cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd4cf19d1 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeacc4f61 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xeb297fd5 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x04c8405c saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x31caef80 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x36a97aaa saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6b9be51f saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x780172ee saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9c375b7f saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa25efff4 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc29360bf saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xca1a4ab1 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd759d115 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0a4c2ab2 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0b03a921 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4aeeea5c saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4f61daa8 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x825db053 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf794c871 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfa2b4d58 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x04f35bbc smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06f9ae60 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x192fbaeb smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x326a2a0b 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 0x3dbc219f smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5c50664f smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6fb21271 sms_board_lna_control +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 0x7cb7de3f smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8ddc365b smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x94a5e65c smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa13ecff9 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb4b35291 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xccf56113 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf3f8554 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xecc18143 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf1ca0b97 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf2175028 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x012ae776 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x029adcef vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0a65c737 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0c6b1c91 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x18d68aae vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1cf32d08 vb2_wait_for_all_buffers +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 0x280b7480 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2a07a095 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3706545d vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55936713 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5c72922c vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c2da2ca __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x71c521ba vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7405b560 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80223904 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8a404f26 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x94a28399 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb4815251 vb2_plane_cookie +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 0xbe47e3b7 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbedd6088 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc0523f81 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc56a3475 __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 0xdca8537f vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdeb85489 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xed57e291 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xee11b26d vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf41e4e3c vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf57d66d2 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5e58da2 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x099abfb2 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x546c35ad vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xc1b1e1f1 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x463ed1a8 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x01b08c35 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04c35d2d vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x18ead261 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1fe5de18 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x27d6f383 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2e91e99c vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x32d3f440 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3f3cfba4 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c1c8c0c vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4ed190ec vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6a6b488b vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6ce4aee1 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x741dd2d3 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ca19512 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7f086782 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x887d841d vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8d9fd344 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8dc5ea1f vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8ec3235c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x92c1bed3 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9d03a57f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb01f23f8 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbacbb3f4 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc6075698 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xce980bcc vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd16e2848 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd2a82219 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4983e48 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbc5ddfe vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdebed59b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe159cb39 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe647ddb9 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf18e3614 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xffec8292 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xb3a60956 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x4b014c4a dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6d7f769b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcf4152c4 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xe87be6aa as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x414b3452 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xdbba181a gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x94ea1269 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x0991ae25 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xc724e7fe stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x00f01ca0 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x2e735ead aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x9ffdfdd7 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1e730360 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3db3c20e max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x3eaa3af6 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x826b5986 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9aed9b60 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa1b03540 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xba642a81 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd0467725 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xd1223f49 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe16be0bb max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe732337e max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf6186db1 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xfce67ccf max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x00cbd72e media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x07167e60 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0db62877 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x16e365fd media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17bd9889 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b74f0c8 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d809474 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ef4bf12 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x23c0e6ee media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2de2d676 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2fde4ee6 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35eb90f8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3900b6b1 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3fdb2574 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x409c6df9 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41ad7e1a media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x492fc88e media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a2af09b media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4afa7c70 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5cdaaa48 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x62ac63e8 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65eaa66e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68179af9 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7708423b media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c93194e __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x85a94cdc media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x872a69ff media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8a5eead8 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ab3758e media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x939bdff8 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9bdb98c5 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f008c74 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa197a62b media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xacc7c2c5 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb25a1367 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbeffb113 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd712fdd media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcd98eb92 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd556d945 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd9f381e1 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe027ace9 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe34f7f6a media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe4e49a87 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6c4ab2e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe921d18b __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7fd1be1 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfd5f6a25 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x6928ab28 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x112a562b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x227a1059 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x27f09240 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3788d7ad mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x422cd0e1 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42d1b00a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a255480 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4bc5fcce mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x50792dbb mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x543e6b87 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5461ae04 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d353416 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x714cbf71 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e77e702 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd178892 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xda320247 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdb503b8c mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe830541c mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfdd6daea mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03a7c024 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f0a5ba0 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2603b2c5 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x27252eab saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2892506a saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x37546879 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3904622e saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x47cfdf66 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5845c529 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d1d9fa9 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5f8cd390 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6447cb5a saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x658e0468 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x763e72b3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x831b3b69 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2bad565 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa57ca2eb saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb2668190 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd1709307 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x157a8406 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1f86065d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2272a456 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x67bb079e ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x964bd351 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcb850e7e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd4653af5 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x160da7fd nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1b881366 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1dc9fc87 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2b83e8ec nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x43f3b67d nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x63bbec67 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x68341e0f nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x72af5438 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb12db584 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc40e47da nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda9ea119 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdc04ec18 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xddcc2f2a nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe7b72fba nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x1e9cd476 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9db89b90 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xa8004500 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe2bfbc86 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xefb65366 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x07cdd601 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0a3cca96 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0dbb6b75 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0e3316cf vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x12c2e0f3 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x140d0575 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xb53cdf22 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xb7a5a57a vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x06d18aac venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0bec380f venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0c29d3d0 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0ce105e2 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x11f30ea3 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x13de8bef venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x15e43b53 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x16c53c61 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1d6b5d55 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e418181 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x238415c5 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x262dad7d hfi_session_init +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 0x28ea2c7f hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2cb5f6a8 venus_helper_vb2_stop_streaming +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 0x413feecb hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43c4c446 venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x461ec978 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47484fc4 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4cb27bb0 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x538f0b2e venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x54653900 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x584968c8 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x668362d4 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d723fa0 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6dbdb6cd venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e19a4a3 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6e429595 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x70156784 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x72b4dfad venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7abde49e venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x801b55fc venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x83a55ebf venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x859ceb44 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x85dff1d4 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8b536cd6 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8d8f1533 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9085513e venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9290f50f hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9b3b9509 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xadc6f2c1 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xae052c70 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb096d0bd venus_helper_queue_dpb_bufs +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 0xc564d948 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc5c0d46b venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc982c6b3 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd06779ad venus_helper_set_profile_level +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 0xd50406f5 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdd750dda venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xde5d53fd venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe35d9e32 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe89bce49 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf23cace6 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf31bebbb hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfbdc52dc venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x198550b1 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x40ceb7c7 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x5467ba8f vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7d830d2a vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x89a7c59e vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb2ab826f vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xc82a507d vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xd7dd0257 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x22e8256a xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x29a6b8c2 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x3c00c834 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 0xa9c4c8e2 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbbd0a6aa xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc825b6ea xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xcdc08a2d xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x4335e5ee xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x052f5bea radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x236d8200 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x38f2824a si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x6b5ed752 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x92c86b1b si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd21e3e7b si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xfa91fa91 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03b43fd3 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1e207f53 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24784591 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2540e214 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46541dd3 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6927301e rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x70a46bb4 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71050053 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x870f57fb ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x999a9934 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a2352b9 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9bc7e4a4 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d190d44 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbb9de9eb rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2183d63 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc5588fc9 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2e3adeb ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef96f05d rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x0a7d605a mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb256c247 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x5009d6ff mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x006432a5 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa4283c67 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xa42f949e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x35e183b9 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd8ae6775 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x15b67919 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xbceb6984 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdba05fc2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x0570522e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd47c72e5 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xf98004d2 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x022edc4a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x037b238a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x166a16e3 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x19802114 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c5ce528 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cfc1599 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1db8e3e6 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5cb1c063 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x72b8b974 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80ce8eb3 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8dc7e9b0 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x919529a0 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x960d77eb cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcd05a4ed cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcea9915c cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xda7404c2 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1226e1d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xed600ef0 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8070869 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfa0ec7e2 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x00383c4c mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x85d11fc7 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ffa0abb em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1ba4b2b3 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x375c02a0 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f22e702 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ad1faa5 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d4d1860 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a5d159a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9fee67d3 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa19063e em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb26b0ccf em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc065be76 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc3bb4f2b em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc9e628ce em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcbefebb2 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdca83c82 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5bd051a em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5d2f01c em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf1bd5048 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x24743b6f tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5ab4393a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xad6a4a56 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdbcf00b0 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x14d148b9 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x79a2460c v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x814cc354 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xf6d663f1 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xfadbebef __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x9cff9827 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd3b7aa34 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd5e572b5 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x013f084c v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3b644ebf v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4dd728a3 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 0x84c5010f v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8e1e5d7b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc188fff5 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd62c963e v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf0a6d0c4 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf31022c9 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfc54c568 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists +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 0x03ac9d13 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07607bad v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f318123 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1be35e05 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x246697d2 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a611327 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30480415 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3b232b5d v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e88e5be v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48b847bb v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x499f8caf v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4e7086ae v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54b8078d v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x64a472c3 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75157947 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7d5470c3 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7da48367 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80cef633 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8414b519 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87a840cc v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f8cb804 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8fceced6 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa306c860 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa87afc35 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xacebbcad v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3fe5df4 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbab75d91 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd32cd2e v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe35836c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbea2e0c5 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc00ee6b9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcaa90df0 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd09e2a52 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd33735e5 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3e1b26d v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd455ff09 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1e2fe91 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xed714e70 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeda60e54 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeefefd49 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefc9a44e v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6a9d20a v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf6c5c59a v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe06f8c3 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x9dec35a2 v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xb3cf2529 v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xcf15018a v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06732990 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d5105f0 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x24829cba videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a13f9d2 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x345061e4 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a26b4b4 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3fa2c8b7 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x48772feb videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4da4b44c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4f24393c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ef0445e videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6089712c videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64420c9f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68835d73 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79461ade videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7cb4b3e1 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d5f1c12 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94b78c0b videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9a948c1c videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc11281b9 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc18fa871 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8c43864 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdca8ff90 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe9382323 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1397b2ca 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 0x7487e1e3 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa2a91a29 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xad78d224 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa300c1b7 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa97b4b56 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb7b21725 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04fac97d __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05f476a8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c723226 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x100d905d v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f45ee5 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1437b49d v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14835212 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14ab61a3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14be0593 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1843c57d v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x21d5b3a7 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2348dc5b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23b8b930 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x242d2edf v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24cae377 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f51333d v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x422b8fce v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x438c10af v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44d26264 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x460a5d4c v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e8de1b0 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ebea7a6 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5dc9702a v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ec9a0f9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cdf183d v4l_vb2q_enable_media_source +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 0x78a1e0ec v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b554d71 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81381ce6 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8339b206 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x987efa87 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a8ad54b v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9e820a50 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6b93c9c v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa5e9bca v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac298089 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb14e1314 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6125b20 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf4a86ee v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc102a6d1 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc18b41be v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc29a3f99 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc35d0cce v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3b4a3cc v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5e16b32 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6ac577f v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8af51e8 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd5ee5f0 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcff015bd v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd8f7152f v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9821975 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdb3f7f12 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf94a41f v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf9ed663 v4l2_i2c_subdev_init +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 0xe7a28dec v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9030bab v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef749154 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf1040f48 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2d3c24e __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3d902c7 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf580c23a v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb134e21 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x224c3a07 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x71c29c78 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xad895bbd pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b09a7a7 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1f78c4e2 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x33214185 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3cb4e57d wm5110_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 0x5c336b84 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x64b293e8 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x757aa28c arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7f8c2431 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x82df700c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8384ce2f arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x89dafb69 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8c063f55 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa6b70564 wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa727bd3b cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa96f820c wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xaaf78759 wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xb85179f4 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc1e7b140 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd01567b4 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdada6371 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf765b281 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7080fc03 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd615b212 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x66f2d3a2 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaa369ea2 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe8d86d4b da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe9f13b15 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf127b6e1 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf234171e da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xffd71adb da9150_reg_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 0x1ad888c5 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76c06708 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x99676043 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb66a9064 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb733f281 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbd959caf kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd52adc3d kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe5a2237e kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x07cfd973 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x735cf6a1 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xcc216ed7 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1001e38a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1e880312 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3592c5d8 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4e8276f2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x69128397 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x71348bae lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf44e9eea lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x19697189 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x3a49c8d5 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9bc243aa lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1bd11111 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1bdccd51 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x35b91c39 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3824a96e cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4ac4c038 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58e40c1d cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x58e9d05d cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5c6481e9 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6b0ab093 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f0151e4 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8f0c8da4 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9227a6d1 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x922a7a91 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa0553da9 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa058e1e9 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa6b8e655 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb8804a19 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb88d9659 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc344ce8 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc3990a8 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd112bbdd cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd11f679d cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd45a4323 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd69fd686 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe36020a5 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe36dfce5 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfbb55715 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfbb88b55 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1780d4b6 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a57db0c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2fc5db80 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x45356afe mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x573a9f96 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x88b6bd00 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0810d146 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x434a91f3 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x504b4d23 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5cd9f7b6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6bf6a465 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87e3e89c pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa2789b9f pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb3ff1d2f pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbb694b2d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf05bf09d pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfbde6fc0 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0b21d107 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x12ed6595 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3caed806 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5c66b92f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb34d7ae7 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb72b6d92 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe59f2804 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xa8da7396 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 0x077215af si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ce46506 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ba97dff si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24cae537 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d3f0786 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d47b9ce si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30a2d05e si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33b613ad si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3fd7c181 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40fbab98 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f3876ba si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e6b2903 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x638cea25 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x76ffc6ec si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x808fef89 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85844128 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87855e94 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x878d1a1d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c42adc2 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91af86e4 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9418ab43 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94845d07 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9a36852c si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa02c1c8c si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3d6aa05 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb959229 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd14277d2 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd8cf7cc8 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6c9579f devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xebd54f4c si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf31e9bb4 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf74d4260 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa675480 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe5d8465 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x13c55b30 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2e173672 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4537f9d3 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbdc06192 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd8208e43 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x857142d5 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xb001a954 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xf3a1f504 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2343b68a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x32260d15 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4cf14142 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcfd6b5f2 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x2903d025 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x6abfc6ad tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x7166217a tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x79759a23 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x0fa630ac tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x67c6d7d1 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfd1e13ab tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x83e823a0 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3a7aaf33 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x50cb8b36 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x76e7fda5 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x834faf70 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8458c520 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdd50c209 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe73b64a3 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08990889 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0c873f8f rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2ccbdec5 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x30145a93 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3c2b5e36 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4c8b84b6 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4e430ae1 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4fa5c22b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x556f3d03 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5e139d84 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x72654ce4 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x837db34c rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8fdbf807 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x91f32afd rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9c3c9eb4 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9dd10d27 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa89f5e97 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb749d971 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbb1e808e rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc751318 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xeffeaafe rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf6da3686 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf72c6aeb rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xff14abba rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x155b419a rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d0cad99 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x256199a8 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x334d108d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3824855a rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x53df94c6 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5992db2f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x634f9627 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7991fede rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9054b1ea rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc404b823 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe51d98f3 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfbd025bf rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x32b959b2 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x72f9bbb6 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7a0905b6 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xab2394a1 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 0x2569e9ab enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a60c0bd enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x504838d4 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6625e19e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x72fb22dd enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8348987c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcda7cd46 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd30d4430 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x32459276 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x41b2ccde lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x50022fe6 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8ff9628f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x959d3c70 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbab6d1b9 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc12e1e11 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd57b8346 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x9eab40d4 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8c795269 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xde697c01 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4a7986b0 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4aa01136 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x8b4e49f1 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x382a55cc vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +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 0x9323819f 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 0xe3adb16a vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x4bfc3741 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7c3b70ec dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xdcbfd303 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x01d6f73c mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x2cc32f33 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x7cfc785d mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xe687f12e mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x72d15cc3 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xd7d1d65f renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05c92f49 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05da3ca4 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0e48f937 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x135b1a4d sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14b086af sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19ec5088 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1f7223bc __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x29d5927d sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3125a982 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x384984eb sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5e9dda26 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x60f156a2 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6b98c5fa sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7063ee55 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8db8fc75 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8efca416 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9050a159 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x968b0a33 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b6345f5 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f443620 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa67c7bec sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb423c2c5 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4d21626 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba5440e3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbf0bfeb sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd317160 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc183042b sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc371cf02 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8c18285 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xccfade5f sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd04155de sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2ef2ef6 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd3a8d70c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd404577a sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd8a59592 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd935dc6d sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xda2f1f9a sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebb16eb6 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec1457e1 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed1f657f sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef00e248 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf2326d04 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1228e4a3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x611f6dc1 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x676ffbc4 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9f4dbb70 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xac50ff14 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xad847877 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc06eec3a sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe7ac781f sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeb2dc504 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1cedc7fb 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 0x4487990b tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x54885c23 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x75fc782a tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8c2280c2 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb0e5096e tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb28332e4 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe89228c6 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfe503865 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0776ce0a most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x145b4ae6 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x475393ec most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x53a25dd3 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x64baabc1 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x79de766d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9cdde56a most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa5a7ea1d most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xac7ebb65 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbe5481f3 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd32d7e92 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf49a8e22 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf7a7d717 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xffe4fba2 most_stop_channel +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x387815fc cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc566306a cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa4f1582 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x290b6d18 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa4a0e94e cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdaf2a29e cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4b35c419 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6986c335 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xddbf0671 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf8956fd2 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x0d3a4808 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xeaabf959 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0405dfa5 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0950a406 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f65fcba __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14d08c8c mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19d88fb6 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23fcc95d mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24172b91 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x300ce6f2 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x308d2f4d mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x338a1c46 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3966dc0e mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3bcf8dd9 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e3cabbc mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ef1a172 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41dfd0bf mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x438222aa mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4908f3fb get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x494b9477 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f69ffb8 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54634a09 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55892d49 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57d4dda4 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59d1efb1 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ac1f02f mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b6d0792 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x70edda46 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b3b486e mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80c04028 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81741b93 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82855d0d mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f850370 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98b34a30 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa53c6373 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaebf5372 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2b4473c mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb65fd81c mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8eacd7e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc2eaea23 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc581928d mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8fe2b34 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca0d5a39 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf5f4c07 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd26eefbd unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5e4bb1d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdc3dae2b mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddeb6916 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe191f5fa mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe44bafe1 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe609eef3 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7777b92 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeda24a0b put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xefc957b4 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0e1ac4d __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7127b1d8 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9dc1678b register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xae0ce457 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbb4699be del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbb54def9 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x08c5d5d3 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x279159e8 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x281173e4 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ea4e969 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x39107748 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cb2ee2a nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e6b68c3 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x80c2e21e nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8343dad7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ac1e1a5 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa115984b nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae38a27b nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaedf1111 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb00c5386 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb843cec3 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb858c4bd mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb86cc67e nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb9c1ca80 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbc4d0a3a nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbcbd1d9c mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbe2a2a5c mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcbd381b7 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdd73a3e0 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe09bc601 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe198bb95 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf387680e nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1b463d0a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xf0e3ddec onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4514e412 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4f83b83a brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x673f7e18 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x4d24e2b9 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0275b098 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0a06a92b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0e22c22b nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0e3978be nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1391cef4 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x169a211e nand_prog_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 0x338b04cc nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x36403a1e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x469bc3c7 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5abe30d9 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5ccd8cba nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x64cbe23e nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6c20a27c nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6f396727 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x79c4b2eb nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9b42a8a9 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb71fd61f nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xce2197ca 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 0xd62232f3 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xda789369 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdf2c0ec0 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe070cc1f nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf3956816 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfb452b0d nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x3e6e533a sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x44e958a0 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc81869c3 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0106b848 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x16f73ea6 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x37baf201 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 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa68fbfea ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa943a210 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab3915e4 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4b8687e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb6ec6c8b ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb89f47aa ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd192386e ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd9440c28 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb77ed67 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeb313115 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xff201a48 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x06852abf mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x06fa9de7 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x12c7888c mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1fa6c0c3 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x22dbe54e mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2650324c devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x267b0523 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x53707403 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa999043f devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc836f26c mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd6cb00bc mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe0237e1f mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf431b8ee mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa5f0bff devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1e92c68a arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf8d21f36 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x01ecaed0 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x93105c82 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa9cb96f2 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb9a6d61f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc068864b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf1cd79a6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0bf5234d register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x871d9786 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc0bcdabf free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd2542ab6 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x22b9fbaf can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x29be3277 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2b856d0f can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4197c6ee alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4ba87395 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5319a0c7 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x54579ae9 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6eb47a4f can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x71bf5cfe can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72c88a81 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8585cd41 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x912b0245 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9fb8650b can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2938cc8 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb09414e5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb76ca90d can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb8e0f4e4 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc16389fd unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc24bed36 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc993aa70 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xce87e2aa close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd131f14e alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdc3213cf can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdd0a6d2b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0ed4a95 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe374c6d0 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0da481f of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf56d62f2 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8414dbe can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfc323a0b can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x033d42fb m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x04d1c4d0 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5e06aad5 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x77616af0 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7aa835df m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xca9e0468 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xefb41dfc m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf33146b5 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x25dc2266 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x32bc4efd alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49a379db unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc73720a8 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xf9b78134 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x04f70d1a ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x075b715c ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0a87d879 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x22c67071 ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x249ce8d5 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4213339f ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5516b549 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5a38bfa1 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x60083c97 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x662bbd86 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6d86599f ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x73981e53 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x75b37d17 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x793a0b40 ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7aff8db1 ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8327641e ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x97881668 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xab21e323 ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb40b491b ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbb2a9c71 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc706e975 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd2a20cb0 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd524ebbb ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd57c50ff ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdda9b7ac ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xb34e44d7 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0c87ba97 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x258723e2 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3c6fbc55 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8d2dafe0 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xacc9b3dd rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcb1c60ec rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe0c791df rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe42bd30b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf0d1c443 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf9dea62a rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfcc16e5e rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfd2b3c6f rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x4d7ee5ed arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x50cf4087 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x93f67aa0 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xbc9f93f0 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-mdio 0xda4c3873 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0d37d9ea fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0edc0908 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x22b08e12 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x372a0f0c fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x44268086 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x69c2458e fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa70f1632 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcea5176f fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe59f7350 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xed2d37fc fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xee27dd21 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x80c28f39 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x93bbccfc i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x49f7aad8 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x56ccf697 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbc5b8113 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xc647f51d ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xf5401edd ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x1cd4fa35 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd820512b otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xea71c6dc otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xfde217dc otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04e72bc6 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x059e024d mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06c0a782 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099c3b3c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fdb2ec9 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12743ded mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13db6acc mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x157bce6b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d4390ed mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20624da4 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x223850f0 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22be4ae5 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2360833f mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23b70c9a mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x269dc044 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27df51f1 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28266e56 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28623711 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x299ab105 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b7c06c2 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cd315b4 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d0f78bd mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dda8a1a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30a41fac mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x335e745b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33d2691e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37848b94 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38deb215 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39488f47 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bfd6de2 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e02972f __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f729a60 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4431d117 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44a41c91 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x457be5e5 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45cf9602 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b1b3da6 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6a6e90 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f26ff04 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5026264d mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5187b8f6 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5242808a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59b4eaf6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c880afa mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d3ed5ee mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e6ac751 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x622013a8 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6257fc20 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6319c32e mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a2fe0eb mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fdbad6e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x736c358d mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7561805a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7730df60 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77fdbbdb mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac86e43 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ca03cf1 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd04446 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fa192fa mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82f6566a mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x830dd600 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86372db0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88030195 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a5a0de2 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bc1ecf6 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8efbc276 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90bb3906 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91f5c27f mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96759787 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a1f472 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa8a423 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f8ee640 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a83bc1 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4529b52 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa502f092 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa832f303 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8a35c2a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa7c589a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacf36659 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf30826a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb08820f6 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb13936da mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1ffddc4 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb51651e5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb67204cf mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8926cd2 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb939b43a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc3b4605 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbee9a7db mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf2c7059 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf601392 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc27b8076 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34984c2 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd63a6b00 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd87b8ad6 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd981ccb5 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb43a909 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08f16fc mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0fac4e7 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe187c642 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6191a96 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6778fb1 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe775cea7 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e44e65 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8590e90 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8d4c7ba mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed5b87de mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeda3cf97 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee439313 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeea3c33d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2f08db2 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf39f1c64 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ed5a43 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8608d54 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa57b3ed mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb0106b6 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb7fc93b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcbd649d mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdcd54e6 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe07dd9f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffab4fa4 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d6977c mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x072460c4 mlx5_fill_page_frag_array +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x112c14de mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161730f6 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20d1d6ee mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21f78fd0 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x273e4955 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f71839 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a7dad14 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d216f98 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e4207a0 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x307c8518 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33306e1e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33bb9ecb mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x392a8a6d mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b6f5a2e mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48aa683e mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a6a89e0 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bf60f19 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dea7d5a mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e23eb1e mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58e242c1 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c10417b mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c924bf2 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ddc971c mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f7f9f4 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62080b3a mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62aefc85 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bbcfc5 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67c71ce4 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ab7774e mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d8d3601 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71b1bb45 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7796056c mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7add2f41 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cf479ca mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e52e2ae mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80e18580 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81eac662 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8448996a mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88bc02db mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89e17323 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bcbe120 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91422549 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c7c71ee mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e33ce96 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1e26839 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa14fcc2 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf1d19d2 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4495848 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb62a1fe6 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc211f5e mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbce5b21a mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc23701fc mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc75b8942 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca8a055f mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb26598c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd229cf mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd105aa0b mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1d7e3e7 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe19f3708 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3b4795d mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb0d3ce5 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec9ac78a mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4e5a39e mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf53429e8 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7a64eb1 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd31b8ab mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x6636c37a ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x776939f7 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xaa47f48c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf563f651 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc858cf91 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 0x074a643d ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09f9ce10 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0aeaa24f ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x10654a6c ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f8ee2c6 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23864271 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23db053f ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x283fcb08 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bccb5cb ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f1017fb ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3300cdac __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41585e28 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b4ec3e3 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6173ee61 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84737c55 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e123f1f ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e6bb99b ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e1dfc96 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5d5fff3 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb00492b8 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc23e0185 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc3cdd32b ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8ff6d50 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc05ab50 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2069ec4 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd76b67ef ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd949df16 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe57a1199 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfabad021 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff533dc4 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x0b28a9ad qcafrm_create_footer +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x2b6ddf3f qcafrm_fsm_decode +EXPORT_SYMBOL_GPL drivers/net/ethernet/qualcomm/qca_7k_common 0x41da0375 qcafrm_create_header +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2e432d70 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x34ee8a60 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4afff884 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7362418d 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 0xc3220289 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe02b1dcf stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1da7b842 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x734336be stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x76752815 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcd653a39 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xdb313b27 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x405b51c2 am65_cpts_ns_gettime +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x670cc6fb 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 0xac63e431 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 0xe726266e am65_cpts_prep_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4590317c w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6c1de356 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xa0ff9199 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf73f5bea w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x0a3be0d9 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x090c6d5a ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x13372083 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x220baf95 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fbc06c0 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x88f81c9a ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/macsec 0x341877f8 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x183b904e macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2aa63d4d macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xbc7b6246 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xfc33b435 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x7d27a0d1 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa99fd617 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xc293b485 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x1a37af2d xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x43b8bd2a xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4d015a0b xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xb066cede xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc0be528f xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc1e5aaf2 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1ea4ff1e bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x223d663f bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24b6915d bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29bd6741 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x386c9cea bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3d5a3ffd bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x48d087c9 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60968c28 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x68e999e4 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6e284c33 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x75388897 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7702bdc4 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a6a05f9 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82c77531 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x857da24a bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x89877701 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x91263ba7 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x925a69d3 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9302a986 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x97d4bdbe bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x98f3847c bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa2eb7a0e __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa4ec779b bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6afc709 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xab94712d bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0c7854f bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5382f6d bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc7b095b0 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6ed0282 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda335b98 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0473df2 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6ec87e5 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe704d10a __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd69d380 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0ba9c407 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +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 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x51c01f9d 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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x755017f6 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7a39e316 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x84816c14 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x92cb5788 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xc91053a3 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 0xe5fb056f phylink_connect_phy +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 0xf723f5fe phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0ad85256 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x13320664 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x1bec1419 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x68d3155a tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8533e81e tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xa03005e6 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xa21bfd18 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd80e1149 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xf89d0b8b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x0e23731d usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2ad9ed76 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x40fbe769 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x60baa730 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6736842c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9a66cc39 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf72d6970 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1a259cc0 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x23fe8a55 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x249a11b9 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5afce894 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x70444295 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x902585d5 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x965708e1 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa590c983 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xcdc8ce8e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd207805c cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe21d8486 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb54046f5 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x27f3387c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4e5ca01b rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x65f0a27f rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8f794d31 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa70e1025 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd8420993 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16531510 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f62926c usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24405a9b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2869c9c1 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2966ce22 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2eb77555 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30d839d3 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f54ca9c usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a806f73 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a4e66ff usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6c132f27 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8036bee7 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82585946 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b2fa2ef usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x906bf149 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90726b7b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93199ad3 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x964a6240 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa26183d7 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabb7a02f usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac7619bd usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1aaee40 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb48dacb5 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6f6202b usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8ab44ad usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdb738f70 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2ad7cfe usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3603c43 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe73f638d usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee6fcd21 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xefd66e43 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4f09241 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfce683b6 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xff197385 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x05986267 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x711beac8 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7eb37ac8 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x87fe7aad vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x115eb3d6 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x887a4820 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb389a5c2 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcaf1dc0f il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe99d243c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfaf52a48 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x23b34596 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x31cd2c4e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3bd572b5 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4065cbc5 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x48b39759 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6fd29dd9 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa67ea384 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe55b2305 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf96e17e1 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0a3081a3 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0c9d7b3f __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4d2f4b35 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x51178969 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x57732d8c lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x693734b6 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7e3df547 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fc9696a lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x861d1b25 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x87913a61 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9666b372 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb3af6411 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd6153378 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdc642442 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8c20bed lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xff90c2ad lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0ced5b09 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x10ddf044 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x40958cc0 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x465fb718 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4c4dfac4 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 0xcb329505 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd577c0f3 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf63d8bfd lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x076bd671 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0c376d5d mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0daedd93 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x228ab798 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x299924de _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ae4487d mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3045b0d0 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4d395e47 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5d02a970 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x71a55e83 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7b339fa3 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ced05f7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8769598e mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x888d181c mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8d8279bd mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9992d1ff mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xacb0a445 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaeedaf07 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc0082b9e mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcfff5787 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0ffb3a6 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdfe9b8e0 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xfe7fb9dc mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff41320b mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00473db3 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01bf6851 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x02b4f13c mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x039539b2 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0476ecca __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1101daad mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14aaffd1 mt76_get_txpower +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 0x202a2a20 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2417109e mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28092ada mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2c14e495 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f713cba mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32590ac4 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d8fb91e mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3dddcc02 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x45093e48 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a0c7468 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cc9cce3 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4cec58b9 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5180f960 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5291f77c mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e6fa8c0 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5fb3a656 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63e876c9 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6aaeb145 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e32219b mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e94a0e6 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7166833d mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74451d9d mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x752a3258 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7938fc77 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x795e6ef8 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7aa6a136 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c1e40ab __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81c04026 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x875f72ee mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88aa9c1e __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a07706c mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d17b643 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f3fcd43 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x936f07f0 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93a1ac2a mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9531dd93 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9a1a4ad4 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9aae9b7c __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9ad66dae mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9d23649f mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f1c1f46 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa004a563 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa103e3df mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2fc4086 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa31caadf mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4fef62e mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa53327f3 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5b65a9f mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa72513da mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa9c5736a __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaee73f2b mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaee8a46f mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc0df99f8 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc107cae0 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc54ccaaf mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc092a60 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcdd8ae9b mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcfd18549 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd0eb84bf mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1a2be63 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd648a7cd mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xda04d5f3 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe401c61b mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe4418193 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe64e2bdc mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe801135a mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee9aaafa mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2ecfd59 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf34f74e8 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf45c0ba5 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf9c7219b mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfce074b2 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x054741a2 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0cd62136 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0da60cc0 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19e49e67 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cff87af mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dd1a82f mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dff69af mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29a2c96f mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30e9b6fa mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3697dd2a mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b1b0c03 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cf859d7 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3dbda9a0 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x40395030 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x45a4ecdb mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48d673ad mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4a4fd234 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51c321eb mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x550d911a mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55af9f71 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x56d18c16 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58386384 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x592c3dfb mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x638af7cc mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x688caa4f mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69ee58b0 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77782f27 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x82b57fb4 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x886c0007 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 0x909fc913 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97752061 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9893ddab mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x98f88c98 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa65fecc0 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa80d7434 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa8a087ed mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcb324fb mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc113eaab mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc1c7cef4 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc66b84a9 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc694997c mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc3319b4 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcc8f4957 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd8c431c mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2e2d03f mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd59348d5 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd5c08944 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd6eff9b8 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdb76f826 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc27c170 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc463a4b mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe33f5f18 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xecab6f3d mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee79fa68 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xeeb9d9cd mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf00dc603 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1f420bf mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfbb6deb4 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfdb4e16a mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x020414dd mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0595b015 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0d11224e mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1c0ec511 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x33c0982d mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5b2e8308 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5fd160ee mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x627f17f1 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x69be4265 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8167d18c mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x8b438abc mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa944e996 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc9212dc1 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcee75def mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xed9d41c9 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf28c9a44 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x076d38a5 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0c0f022f mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x125dad33 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1d8d8901 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32e02599 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x44150c2f mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x463ba922 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x519b0516 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x85e07ee8 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8d44da3a __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc87d3335 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xccbda5f2 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd9dc1ec9 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe0928d28 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05ad8a14 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x10d8029b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ab472d5 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x21c7a039 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x253bbcdf mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x262fcfc4 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x36e6306b mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x54c244d8 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5bbaf78c mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x67ffd288 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9d5eeb17 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa6dc805c mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb090de14 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbbd4a152 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc5667686 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcbb88007 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xce695fe1 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd2c797de mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd33c517a __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd61c29bf mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd532846 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe0f91f2c mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe257b35a mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe4c0ea81 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf205a44c mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf377f7d6 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf4014a2b mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfd6d71af mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x664ee057 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 0x191a9044 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3b1b897e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x8902aedf mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xce7f4b5c mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x18a5d582 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x40d0635d mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x453afd54 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x48b46094 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8c33ffd3 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x90581bf4 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb657a181 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0086dbe8 mt76x02_set_rts_threshold +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 0x05ce3885 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0951b439 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0972bf96 mt76x02_reconfig_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 0x0e454b3b mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1247dcb8 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25240941 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25d9db59 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x271cbb3e mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x29cf99d2 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a6c673a mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3047db7f mt76x02_set_ethtool_fwver +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 0x3b5d24b0 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3bb12d35 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40cb5bb6 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40ed36ba mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42a135e3 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43e16739 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4cadfc0e mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e559c1d mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x577eeed6 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5ce4fb8c mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5e112b3d mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5edf6084 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x610f56a4 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63212374 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6de5ccea mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70992bcc mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x834fcf83 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x859214f8 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88580373 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x893b72da mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f4651ba mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f862d45 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x953b82ec mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99a7323a mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bd18811 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9bddddf5 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa09877ed mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa1231b60 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3716b42 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6944006 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9a4bc9d mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa9f0a758 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb018552d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb114f05c mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb615ca8b mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9140be2 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbbf1acca mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbd7f0f80 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbed993d7 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc700d22d mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9f37343 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcb1101f1 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc081aba mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd33afa85 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd52b2736 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc1de5c8 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe119bf5e mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe15af8f2 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe36e602f mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe87274f7 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea1218c8 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb2e1ee8 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd12f378 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xff97e0f7 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0c64fada mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x36f06ec0 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5351f46e mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x58c9e96c mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7d201760 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xafc54d98 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd80e4d32 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xfe356a2b mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0a78178c mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x18f016f5 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4c98bac2 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x657b79e6 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6db0d13e mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x70ecde0b mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c5df932 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8b8f20df mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa2dc1535 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8f5f9b1 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb20e7183 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb672d850 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc6700f11 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcfdbfa6b mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd02673fe mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdceb1b2d mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdeb62b8b mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdfa66d35 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf7031352 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfa33f753 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1e1d2432 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2f4400a3 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x329e7cca mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3d1bb3ec mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3f945ab8 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x45806c31 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x45abb4db mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4d7e576b __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x518f63cf mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5772e478 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x61762be3 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x97cebe85 mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9bd3216b mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9bdb183e mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaf5d3398 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc41ba7ec mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc4832ff8 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcbe2dac7 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcd92a518 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd656e90b mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdf82e5bf mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe23c6d71 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xead01593 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf1e503d6 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfe7fed15 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x0d91fc77 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x184650e2 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x228865bb chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4a09fb4e chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7dd7406c host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa09a7aac host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xde9bbfb5 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x07f55bb7 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 0x48b79f37 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6b16dc3a qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x727d00ce qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x844f2c68 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf5b6583c qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0376c28a rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x11193c61 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16f77432 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1d03fc0c rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x275fe7a0 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2bda9669 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ebffea6 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x363e91d2 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39801ee3 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40b99482 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x65372fb7 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67004b81 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c647128 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c6a91d6 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6cf9aed4 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6e36aed8 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x831d1c8d rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87de4af5 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x898b41ff rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x90fa2f1f rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa1b35343 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa22e9e1f rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5b1512d rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa7a384f rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa85fa7f rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb491ba09 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb5b3cb41 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb623cc26 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7e43445 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8c2cfed rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba2b5570 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba5dcc2d rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2952e59 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd5812cf rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xceafd2ae rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcfe2ef20 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd03eb6ef rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd1b33a20 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6805236 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc483dbc rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdca84856 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe426c820 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xeaedfe61 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2588054 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1504e624 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x18999b9e rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x27472690 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 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x52c34224 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x56f3859f rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5abfb1d7 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x665a84c7 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x880b4a92 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x886ae0f6 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x88edfd51 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8a2b295f rt2800mmio_start_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 0xa829e025 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb44b129d rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc329b7eb rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe109e820 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe9b95a6a rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00116b1d rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01e79886 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0439c5c9 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e997d68 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ee8cbc3 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12e45f11 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1fbff654 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2521f578 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c3bf9c3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x39254715 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3be05787 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x41e30269 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44c4b318 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4716fcb7 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x47828213 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4fa34b14 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5289f661 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x537f0466 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5de4e7f5 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x819bdb87 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x858b3a81 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89c76e1e rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93a75abd rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94a40720 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x999c27c1 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d3a6b2e rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa67b037e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa694f83b rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaed19ab2 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbee78c8b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc9451312 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcb2f29a6 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcc2914da rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd186c080 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3365b14 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd5c3999a rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd6749a7a rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdaa549b4 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb66e948 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde632455 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde7bfa94 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe25902d4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe612b831 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe9978061 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0adce2c rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4bdf6ce rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xff0edd7b rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x09b9f70c rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x09f7d147 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7b36d7a3 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa22b8f6f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe5902555 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x79f90064 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x9081a344 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xa63aca1a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x211236db rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x51e083b9 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5254b4ec rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x86c2c7ea rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x982c3adf rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9b6d9620 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa10a37e5 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xaba6c87d rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xadc96ad9 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb8052e59 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xba43604f rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe521eb4 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc7da326a rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xce6d1286 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd499c4c3 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe41217a3 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0392217a rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c7c5959 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b78807 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4b904f8 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07fd3e28 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0823248b rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b2d546d rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e067f3c rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1599462e rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1d35c50e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3bc3e8c3 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c6277a7 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x49e631bb rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x594c9360 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5e523987 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e911a58 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x71501936 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x72f454a3 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7bfa8ae2 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x859a11ee rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x991a59f7 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9ec84c2a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xccd8e245 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xceb63bf3 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd04b6679 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0ec0931 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xec317abe rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed40793b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbbd9fd6 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x093afe67 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x31edba92 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f48792f rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x41a00e99 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59207567 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a2c0382 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f4182ea rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7d53e112 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7db3c8f8 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x826f39c9 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9597ab43 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 0x9a586564 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9cd37ceb rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9df997ce rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb84d3bec rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xba9eed35 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7b66af0 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xca602668 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe23c6db0 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7c9bb22 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe8a9c80c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea03985d rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeccaf2db rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf1ae5dcf rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc2f66e1 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3eb7b3e9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7537b293 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7a0b25cf rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa30fad2b rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc1e280e7 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x022990e8 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xb0178e88 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd2822031 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdb92ca6b cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x11ae40da wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x756f02cb wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa1705a54 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03cb4284 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c6e98d1 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0dd40906 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1473b7c5 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15670792 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x176989eb wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x26c62f63 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2bbe1f96 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dc27e3e wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x31a3e53c wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3290faf5 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b46db90 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bc4fb05 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47383cab wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4daef56d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e3175ed wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e9d01c6 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x518408a9 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54b7dcb3 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5da6ecff wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ed30c91 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x625dde10 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6888bdb0 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6ac0830b wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c8a39a5 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e1e6b64 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f48c13d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78a89173 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78f51996 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x808459e2 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x833d7c60 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x884c6f50 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c2bd8d4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e129494 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab2b3b32 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf0df96d wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1443266 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc69bb456 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcd886f53 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd24bdf7b wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd889cf3a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3328390 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xffdda642 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2632f810 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x307e2cce nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9ad0a009 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcee044c5 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x138a1421 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1ffd3e2f pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x531a4f04 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5df7f062 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x79434da1 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb0c7ca99 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd64c4465 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1749e320 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x24b39dd1 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7803300d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa1704afa st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc80a1f37 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdb82faac st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe7f473d5 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xff7d02db st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x24bf761d st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6dcb96f1 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xbc12ca44 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x06bd55e8 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x2038a3a2 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x57dc82a2 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 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 0x2835ead2 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdb65bacc virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00655454 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0880df08 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0dce9a67 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x241279fa nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x257ff76f nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2bdeff7e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x35d62de0 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4027ac6a nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4096d8b8 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46cf5ff1 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x58d7822d nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a5a977b nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b24e5c3 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70aafea6 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x829afbce nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x837dd8bf nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8594c12c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8c287fe3 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91e44c5f nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x954aec8c nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9854c582 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x99c090de __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xac65e717 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xadcae2ad nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb590e952 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb670d930 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc77854ac nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca694d6c nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcccfeb6c nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xccda71cc nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd5420cad nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd6f87734 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdd41b79e nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xddfa19fb nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdf7ab407 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe01c9a96 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe7f16c07 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xed3e67cd nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf0d9f897 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf25b5128 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3b82518 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf6a4be0b nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfa2eafbd nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfdcbec41 nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1fa427c9 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x24c4a2c1 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6209b170 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7352aca7 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9ab918e2 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc577ba8d nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb279ebb nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf11ccb1d nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf5edfe26 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf8787c55 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x171d2930 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 0x58e312f7 nvme_fc_io_getuuid +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 0x0a90dc41 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0b22208f nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x153a2b3e nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x479048c9 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x61566412 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9288b359 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa137865d nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbfebb142 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc05af0bc nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdcf8b9b4 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xef641d15 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4ddde8d0 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x1591b2c6 hyperv_read_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0x221394ae hyperv_reg_block_invalidate +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xe5f73406 hyperv_write_cfg_blk +EXPORT_SYMBOL_GPL drivers/pci/controller/pci-hyperv-intf 0xfb921e00 hvpci_block_ops +EXPORT_SYMBOL_GPL drivers/pci/controller/pcie-iproc 0x17875a02 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x14a17e32 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0a1d88ca hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0d09b5ea hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x10bf8b30 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x15a22c77 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1adf0493 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x25de902b hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x31aa96bc hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4a988431 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4bdac859 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5ac66214 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6fe38808 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8cfcacbe hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x98694b19 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb8f68ce1 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbf0e0eb0 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xffaeb2b5 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0x6811fe10 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x02d72265 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0aaae243 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x0fa4064b tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x116a2840 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3a2ee33d tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x40f80328 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4dc46954 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x53007eee tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x625e6d07 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8c7b515a tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x90d97811 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x978e6474 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaa3bdd26 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb507ddd5 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb82aa2f1 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xbce45f0f tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe81808e6 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 0x4bf2b6e6 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7b891209 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xfe8225e7 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x4278f491 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe2964778 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x01c9fa96 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x86156012 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 0x0c456cad ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1042a643 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12018f21 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x16a62b21 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x17dbe3f9 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a82038a ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2d5bb56c ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2f2d6e33 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3648b994 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42ef273b ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4a527b66 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4ffd934e ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x51f20760 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5707e3ac ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5aca44f3 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5ce75981 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5d2086c1 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x839714ad ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89f529aa ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x96383f86 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c0db600 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa51e2b3c ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbadcce98 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xca51de30 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xde2440be ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe053a5b5 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe3e04704 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe4c8ca3e ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe50e9dda ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf86e95eb ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfceea58e ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x1a6af007 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 0x7af7656e reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7de66d1b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x97132fdd devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb9555c0c reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0838ddf6 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88d172cc bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb799d3b9 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x16f301a3 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xc59d82e6 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xd7e2f623 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3dd0ab2f ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x555aa976 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x587ba420 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x62709327 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xbbedb8d0 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe2434634 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe513eafd ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe63a04d7 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0f17cf0c mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x407b2e0f mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x555d9ad7 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5efe248b mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee9a91e0 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xab2f8a25 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x019f44ca wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0b1465d1 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x19a549d2 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x53c6187f wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5c09fbf4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe228a5d6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6db696af wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x1ede5587 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2640877e scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3e70ed8d scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7600de82 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xab29b460 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xb662abf6 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xd8ef60be scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x23d917c0 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x2936322e scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x92aae4a9 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9ffcf1f4 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe151c6f4 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x09396df9 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0c110f31 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1791aaf6 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x301209ca qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x63592d03 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8ec6ce02 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xb07348b2 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xca65fa1c qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2106153c qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x3ee6a2dd qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x59a7f397 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x846e85f6 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xa8e759df qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xac5de7b5 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf4489d48 qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x56d988d6 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 0x9cff9d5e mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xbe9bd7a4 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 0x1c9fc948 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0071456d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00c9016f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09215097 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x106c5666 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17343b65 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1af737bc cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1edc0d06 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fe2bff1 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x232e3c93 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x251c1b03 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b49fb68 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e4723af cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x346f25bb cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x365688f0 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c68705b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58e50977 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d0b743a cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x650aa8d7 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d7710cb cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x750fc386 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7907d1cd cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b07a436 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8139497f cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81ff868e cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83537bdf cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b316154 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91b6dac2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cfcb924 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa01c8962 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa02fd7ea cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4d2b86a cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad5a33ba cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0288c32 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0876a08 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3e51b6f cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc51fff90 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7a526aa cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd90a8d2a cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3432f20 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xea550041 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec4e6d69 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf910a3a8 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9e585b5 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff1b8cdd cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16b84b6f fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1edde5cb fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36c68775 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b9902f2 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4190e25c fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x485a425b fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x50286d49 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x56731851 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x62a0ac48 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x648ca586 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb4bdedde fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8f4e302 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xddf8952c fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf369a808 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf532b404 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf87044c9 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x4a12f059 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xe1df7fa7 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x033b90bf hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x0f4d8b35 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x19e42752 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1e6fef56 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x43d774a0 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4cdd0bf5 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4efc4375 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x51d76710 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x53db11f3 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x561c0fd8 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x582ee63d hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5975405b hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5d5f290b hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6d7c3d6a to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x72a765ad hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x73cafe31 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7dfe1dec hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaa8ff527 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbaa16543 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xcf05297c hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe34cfe6c hisi_sas_free +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 0xed623feb hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xef51ca91 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xef832cf0 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b876c12 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1a9e0e9e iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x865ea8b1 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x96f064b0 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9848e742 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb1ecc7ff iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xce367514 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x344f6528 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x00131878 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x110b65c0 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x174f9e39 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17c90bea iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1949415f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23ffa279 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cb8c6af iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x366b3c47 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36f83f58 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e289910 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x409283a6 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x426d0701 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43d87150 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49c76ba8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4da58c8d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5329d835 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67e07552 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d292def iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71170cac iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7368c5ec iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cb7dd4b iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8050826b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82e4ba9a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89dcec79 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b65f8b4 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8e0ec5b9 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97a87a66 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9afcf5df iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e7f0f8a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4384cbc iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0c741b9 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb53ac2b1 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8dc16f5 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc8167b9 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0a6dd3d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0e3488f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9b2890f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd357f4d0 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6a85390 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde5bdaa0 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2d6d840 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf23917bf iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4eb4adc iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf57faab0 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8239ffd iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf96a56ae iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf9bc2892 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb06a0ee iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x469be2be iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4e8a0553 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56754614 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x69409069 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70cbc2ba iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75800d4e iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79935cf0 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b3026c9 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7cc88939 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x920dbf1b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93a0bd87 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f7aa789 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1d25eec iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc1c44bb2 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe54b38be iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6593bbc iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfdf5f9d2 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00dec997 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x131fb1f9 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x142cd74d sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x187537ad sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1df12e6e sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29ac6f88 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35742194 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39b27623 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c77c8e2 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f0dcabe sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x443c448a sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48a39a23 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5843568c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65070504 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71eb1858 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x870b510f sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x982c2d7d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9be41f1b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9cefbf51 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9363449 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaab843de sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaad241c3 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb35de75d sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb55e263e sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbdeec9fc sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbf93bb40 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc137dfb2 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc85bd6da sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9fa25b7 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc46656a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd69e8c45 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe34e828c sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3d1049d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe699dd9a sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe9f169e8 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xef09b616 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9439f88 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x0af90f20 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x02d59255 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x090ee513 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x098a4eac iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c1aba2f iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1da53ac1 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2646bc66 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28baeb0f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41c65b0c iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4883a4d1 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x489db63c iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4accf3f7 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e8f435a iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5294b0fe iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x59fe0f08 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f181981 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x616bdd26 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a8fa3d5 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6bad06cf iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7173d105 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73525090 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x781bfe0e __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 0x84ed0dce iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bbfc41d iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95ee0f13 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9665b6da iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x969d8765 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98e8f861 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b16532b iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1af57b1 __traceiter_iscsi_dbg_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 0xb4e93544 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5f21ec0 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb731cadd iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb922c315 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfa7e5a5 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd070e82b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd33eaba7 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd73148dd iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdab87410 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc400a8f iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc6bbfe6 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdeebd301 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf00e8cf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe208f07f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe94297b0 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed14a178 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xefcf3429 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf75f9042 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf83d9c47 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x036a38ae sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x566534cf sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9ccc410c sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xff80c16d 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 0xa45b044a 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 0x2f8c1497 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4005c2fb srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x575edb5d srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8e27d585 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf261196e srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf4a2210a srp_release_transport +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x17095c4c siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2041d5cc siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x54b486d1 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x8734ecc5 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xabe0ef19 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xec2f81b1 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x012fa54c slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07096e11 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x116aa4db slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x135d372c slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a1d8f61 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31a2e227 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f0b468b slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f9ff640 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54548cf6 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58ffa8da slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60a53455 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64d14886 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x650f4c2b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65f8f3b4 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x846ec3b5 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85b286a8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aa9593b slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x993122b5 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa81c2f92 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb13b6ad8 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb389421c slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf133d0f slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfe8482d __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed8a99c7 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3648667 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf36530a8 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 0xc319a7ea meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x08046304 apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2f7950f7 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x481a11ac devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5c9b35f0 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x68130aed apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x902c202a apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x91eac876 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x9a248213 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa8314cdd apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb4c9f8c1 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd4055aca apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xe47959a8 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region +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 0x187bf537 dpaa2_io_service_deregister +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 0x8c027bcf 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 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xce62698e dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x03092dc8 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2544b8d2 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3b636883 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x661fb554 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x94a0f775 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xca3bc2c2 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xda00d1dd gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6cbde86 gpr_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 0x03ff69e0 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x459b829c qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xad471ded qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xc4915cfc qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0d9fd7a9 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0fcf3adb sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcbcfb746 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x8a718913 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7f6fc42b altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x7be2220a bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xd032b543 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xe8bdf0b2 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6e282684 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x79ed9ebf spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9fd52ce8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcfea79b3 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xec1a2408 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf5af6a59 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x695a2516 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7570dbe8 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd6b87e14 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0d6ea760 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x12776c4e spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13f464ac spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2fbc90df spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3da81945 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4319f075 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x453c47ff spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x639e599d spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64d4dbd4 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x691caccf spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f004153 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xab26c0d4 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8989e17 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbc234f9e spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc0fbe6e2 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcecc91d1 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xedebfb26 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfe0b9757 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x21c4908e ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0d49416e anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x19bf4515 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x221ad13e anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x82046292 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8523daf7 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9e7f0085 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa2616ef9 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbae920e7 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcf795f8b anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe8ab0533 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xebf719e8 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf1fed148 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfa7b29aa 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 0x0c1f94e4 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8c2249b4 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9ea8c4a4 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcb8fbc94 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x00f86ff6 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x10725a6c gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x207f3e84 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3545650e gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60b0e01e gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64d8f345 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6be0386c gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x91d6370a gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xadff4598 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb1516678 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc0c8671c gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd119e990 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd78d16f4 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x100c5774 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x196ef0cd gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6644f4a0 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x6f3eff89 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x701aa44e gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x875d3554 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8f5db45b gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa42bc834 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc70e5aba gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe67ab2c4 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe8e5b6aa gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe935c81d gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf7c1ed6d gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x14e608bc gb_audio_manager_put_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 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 0xf75de345 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7682c571 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xae89648a gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x65e8cb4e gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xf700c5f2 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xc2ef85e3 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x08ae5f7a imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0b15abfd imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1062af6d imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x158509fd imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1a18c182 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x25c82040 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2f2b2882 imx_media_probe_complete +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 0x62f29f03 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6318f665 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6cc4bd12 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6cd9b53f imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x742f336f imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x8a293c74 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9512f0d8 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x98bc7409 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x99d57233 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9ec84099 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa550d1ed imx_media_pipeline_set_stream +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 0xb6552580 imx_media_get_pad_fwnode +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 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe4563d84 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xea4a21e9 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf3ada62f imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xfc613070 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x06051791 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x06cd5d81 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0d18bcd0 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 0x1376b760 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x14d8a414 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2e24936d codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5bf420ef amvdec_read_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 0x6a2880b4 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7927c466 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x859aa13f codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x88486488 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x908b2870 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x92376bf8 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xacb5223d amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb640ab43 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbac5ef86 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc3b518c4 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xca41f0f8 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdd259be5 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe73a9c05 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfc3d3e38 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3bc1df5b nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x68182b0a nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb1c55461 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x19b5c60e vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x20561b98 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x52661b33 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 0x6f611e93 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x771128a7 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x83935168 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa3b96854 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 0xb2dc79b6 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbb55800b vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbc1b1beb vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xda93b112 vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xdffe9682 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf63b82ab vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x515f4489 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x866ccccd target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x948c4eea target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xa6cffc41 target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0dd4cffe tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e82ddb1 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0f304f1b teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x159cf7c4 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x173f9f57 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x187d1ea7 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x226213b6 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3041fe29 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3de728e7 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f666702 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x43c0529c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x629a15f7 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x756fb0ee tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8e0ec9d4 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb659141c tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbac7c502 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbe09cf55 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc8b191a tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc99a820 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda0ed388 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe4fd87f5 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xec2876c0 tee_bus_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x072056bb tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x099ab260 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1a55d244 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1cf765be tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x22c8d26f tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2e26f29e tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2fdaaaa3 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3bf20422 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4194c3d8 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +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 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x891e9621 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x931420ee tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x98790e4c __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa37ad6eb tb_register_service_driver +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 0xbbf86a72 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc2101a5c tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcc97385a tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xccacb315 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcd22ab89 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd1106524 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdc8ce028 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdcdab0c2 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf53923f8 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf5c7625f tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf9ab2894 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x055c3081 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0ba9d01c ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1230e662 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x182a0fd3 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x222a503d __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2f77e707 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x501fc914 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x59968b61 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c6462b4 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8316383b ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x871f5718 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x89513b40 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x944e36fe ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb5d2e9dc ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbb43c689 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbff1bce3 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc5de52c9 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe8a06034 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xed95fb15 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf32dcb51 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf575772d ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf8d1646f ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfad1b2c2 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x97f33470 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xa0e3f41e ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x17854ac7 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x588cf911 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5c5e5de0 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6b722fe6 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7933e17c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7c9db550 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0f4a61a2 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x59271312 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x61eaa780 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7611d072 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9ae86af1 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa4bc4467 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xadb923f8 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe6fb1b6c cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xee8203b6 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x06c30bd1 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xc34bb171 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd13326bf ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xed3321d2 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x20557836 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6385e256 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x704f01cd imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x91ba9236 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xea04a373 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xeff5d898 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x12bdb923 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3b3e190c __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x489bb143 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4e5ca834 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9a16108d ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf6cf9234 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x03617c1e u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1ae17364 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4d110d4f u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e1bb447 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x76ba262d u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x776dcc1a u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x859be342 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x903db2a2 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x909a609d u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x9d5de06b u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa164e884 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc885aa70 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe78ed536 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe8ac519e u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xeb32c310 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x00e6ba4c gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0183e7a8 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x03ac0454 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x16fa50be gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27af20d0 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fc9df3e gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x43e853dc gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4bdc8aca gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x88a08486 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f73129d gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8f766cca gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9c6d3d07 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa4d015bc gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb9f5204e gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd47f1e0d gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf495b8d4 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2defb187 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x300f2d0a gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3fe0d213 gserial_disconnect +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 0xb522c899 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 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3ff0f3b6 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x4a024e4b 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 0x0812d5ab fsg_show_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 0x14c22c27 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 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x54f71208 fsg_common_remove_lun +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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f4afc31 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x75d11c4f fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76e84757 fsg_store_file +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 0x81977eda 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 0x8ac7533c fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92048bb0 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x922060a8 fsg_show_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 0x9e46b72a fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa3f72d6c fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa938979b fsg_lun_fsync_sub +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 0xb2434364 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd1a3e8e0 fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd29c4320 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd2a5c398 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xebce2f23 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_rndis 0x046e7311 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2412313e rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x258e9433 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a4896a0 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4c514f65 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5db103d4 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f2971f0 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x88f0c1c3 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x94f37edc rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9dd412b7 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa23c7088 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbe480756 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xccdfc633 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcdbfba24 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf1c4c45b rndis_msg_parser +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 0x0e811b4d usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x16ace619 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2392447a usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x318ecb21 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3474546e usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x364aa3df config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a987da6 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x414d9bb8 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44eec8e6 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ee863d1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d2c413c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x72ef5aaf usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85b32a5f usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d31edac usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d589f3c usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d70f063 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d9517d8 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93be44a8 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa8c86cdc usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaab886ab usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1edbdf3 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb517844a usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9578cb5 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd20e448 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcb029bf3 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6205e96 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd720a7a7 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecf9b208 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf0a0e775 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf8f90b05 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffbb91ae usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1a75dea5 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x1b98043d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x40a8a3aa udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x59899771 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 0x92e76b43 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x958ffaf4 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc1d70b17 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xda08a566 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe237a704 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x075ce66f usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x076c5245 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08fe02e9 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09848f81 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a15ee2f 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 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1791b14c usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x203a105a usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2714dbd5 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3c3b257d usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x431c37b1 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48ca8d21 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49e1333d usb_gadget_unmap_request +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 0x60a07fb8 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x60c2047c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bb447ce usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6bb74ecb usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6de062e0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6e91bbb7 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x77e8da54 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7835bee8 usb_gadget_wakeup +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 0x8057d796 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 0x8daf741a usb_add_gadget_udc_release +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 0xb7d72eb8 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4594a14 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xde94a659 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0f5c45f usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf004f914 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf80967e1 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf94e0561 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xacec264b renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x457cfece ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf0cd2786 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1304daa5 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x456f2ca4 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60af451f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6226c131 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x88e6b870 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb38ef274 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc3f9dd81 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd2f3291e usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfbec4c3c 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 0x517278be musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x739e8aef musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x79d27003 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7ba4c6c4 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8ae98438 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa84502e7 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 0x18bde6b0 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x57e42839 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x69cf01a6 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xc3f5211a usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xefe772d9 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xb6ee3b57 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x54057d35 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x77bb7c75 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x8e830541 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x95b61b14 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe1ef7012 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01b17434 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x08c2b946 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15322b5b usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1e2b2a4b usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x248f2729 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x266850df usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b5881de usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x45c5ad73 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x49fded5f usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55184a5f usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5607454c usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e43bba4 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f9ae8f1 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d38d7b8 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7489f092 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8cd97c69 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae90f7d3 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb55137c1 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0cf474f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe4c6b0ec usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x59a300a9 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xa6f4531f dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x47a275ab 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 0x000aa267 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +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 0x04d76427 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ef0c597 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f418d24 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x200c58e6 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x314ec3b6 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x391b37b2 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ac6bd0 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c8a9dd9 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fb70110 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5417305a typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aff42d1 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fda0e31 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61a27629 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69fc39c4 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d87c0de typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7193f5fb typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75026a38 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x752942d9 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76bc5a98 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76f9d0cb typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f3f41e1 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f5eb3f7 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x807a42c8 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88f9f428 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b5016a0 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ecf5b51 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91ebd744 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a70b170 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa16039e6 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ce81c3 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6ffb5f7 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7c164ad typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb06c19de typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4cad99f typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb56f5467 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9c5887e typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9e87d04 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfdb20bf typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc44ed162 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5e2bbfb typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9bf9577 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb02fa29 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcda4968d typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3fedb47 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4c9913d typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc30a1f8 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd91b475 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde037605 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdec89422 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdecc3fca typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1299964 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef4df607 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf4ceee94 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf4e771aa typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a2652d typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x114f8f5a ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x19bdbcf3 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x680bf1aa ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7aa1eeca ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x94fde36d ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xac35d012 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbc9bba84 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe99d805d ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeece6193 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0e2c72e1 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23144458 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3814d610 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41264eac usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4be074b2 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52b35b85 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57e2f9a8 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6dcbe9eb usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7cbecef8 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc5bd3f94 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc66a1c22 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc9933feb usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd43ef5ca usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x19deb584 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x269e53c2 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x30b949db __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5db432fe vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6c0443d2 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x89ec969d __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8b786e84 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa2477098 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc2c891d1 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xc2e3d40f vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf21c9e50 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xc7091834 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x4c60f2fd mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x03245fae vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x08122519 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x20854c64 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x28deed20 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x368d6235 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3b160747 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x43368967 vfio_pci_core_unregister_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 0x55014072 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5bdae804 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6cf517e2 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x71a9a2d3 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7224bbd2 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x75af076b vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x79240d04 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x887aea0f vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x93d72063 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa2955ec6 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc2b0dcd0 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf18cedfc vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2e00ddec __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x588e1357 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x77da37f1 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xf1157da0 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x031c1e80 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1a035692 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2786328f vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x49049101 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4e673425 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x514e0392 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x523003ef vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x598ffa05 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x66f77ace vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8bdb6363 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8d7addae vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb0c92038 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd2e7d251 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x502dfbe4 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7e0fd77b vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x030b5150 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07b108d1 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a1a127c vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b351863 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c50611f vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x106230d4 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12df5f8f vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16f4711c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2995a1cb vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3effc260 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ef157e3 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52e1d9b5 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5420c8ef vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a346586 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5d8b1ea4 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x609efd9d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x689332d7 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ea98bd9 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7221b510 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7cf319b8 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80612adb vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88554766 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x89877c9b vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e3ec9e2 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98d5744d vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9fadd227 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa04409a5 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa759e647 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa2c2e63 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf99040d vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb1f3efd7 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5436e54 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb64f4b36 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd18c84e vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfdb3a9e vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd81b7def vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf150ee1 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5b04027 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf090be41 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4b0d9f7 vhost_dequeue_msg +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 0x8a7d8ee9 vhost_iotlb_init +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 0x0662588c ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2a8b287b ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d78f3bb ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x749773c3 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x74ce8c0f ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe8d6e1dd ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xebec3223 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xcc50806b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2d5f47ee fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x360a1f96 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x360f8521 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfd9cc00c sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x08ab837d w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c29fe1a w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x38a82b45 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3cb97b20 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x40a437e5 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4349244a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5347af1f w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8cd7d442 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x92ef5f6b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbbd74e0f w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc80ce34 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6716e23f xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xaa0a4fe7 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd9187f59 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xe337816a xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf81f1559 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x1e37c0ad xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xd3802c0d xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1b960bf6 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 0x6de821ac dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a36c43f dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17abf7fe nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1a32e484 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5f118d52 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6e91c19a nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7d0ce986 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4efae81 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4d643b0 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00f63d5b nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02521396 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x042e1480 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e32a41 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x082e2872 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a2c494 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d6acf50 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dd1a183 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f6d7a35 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd73b16 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119d70ba nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13199d4d nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x153780e0 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16d99c84 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17eefe8c nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19174548 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1decf5e9 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f530b57 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x251b53d5 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2621cc17 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26474e3e nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b39f4c nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d2faab nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a155c64 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a8e9543 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e4c65ae nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e840c1d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f2a8587 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fc4a7de nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ff86c97 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3098f72f nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31fd7b65 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3513c210 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3529110d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36467256 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36485251 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37953b85 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a105c12 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b815bdd nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc2d988 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dbeb7e5 nfs_pgio_header_free +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 0x4107f7b0 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41118cb0 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42e095d6 nfs_set_verifier +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 0x47c5545c nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x490e8722 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d11955d nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f1887df nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f31712e nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5293b53e nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55da0bd9 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56accf95 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x575edc4b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5836739d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x586d4331 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59091ca6 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eb7bbef nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60f9ffb8 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x619bf19d nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x657743d1 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65ca908c nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68236f5b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x695a694b nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d865b9c nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df0f673 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e071542 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700830f5 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f0022e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73e8c975 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7778ced1 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bd8ad26 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7caf365a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d724824 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d8309a9 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x811dc7a0 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81372d41 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x882bcbf2 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89be5033 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a16cf87 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a2046dc nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8afc87cd nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f3314e9 nfs_get_lock_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 0x9311d586 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9958b709 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ffb2dff get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0e3a54c nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5f28111 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa640c374 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7625703 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa82ee762 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa94fcdb4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd10d3d nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadddc331 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3472e2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae3c6c5f nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0e10d9a nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb79620d2 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb98e6752 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdccc5bf nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdf955be nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf8d98a9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3264821 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4021412 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc59893c8 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc668e8d6 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9d1df42 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2ca3a5 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf1ab76 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd75f869 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd7ac05a nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1401790 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2eb47f3 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3bf6a9a nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd50258cf nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd640c4aa nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd65e6aca alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7535d58 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8b7c7b4 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc1fba02 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca86b92 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd087334 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0172dcb nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0347152 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6da16f3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef2a8536 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1fad6c2 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf33c143f nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf417b99f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf69214e3 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a5be78 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7180882 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8caaa6b nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf95ed7bf nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9f61a3a nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca1051f nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x48a2bc51 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x008f7c0a nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x022db345 pnfs_nfs_generic_sync +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 0x09840079 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x118016a0 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12482c2e nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12acb558 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x14fc43c1 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x158aed3a pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x185a9755 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18c2c0f7 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ede9e65 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20212b0c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a01cc1e nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cfb6b98 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d4f203b pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e202b1d nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e4e119a 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 0x31bbf3f1 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a5222e1 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3cb80dfa nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3ebb58bf pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4193a4a9 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46888995 __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4dc93642 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56fa11df pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dac8293 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f359111 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62c6162d pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63109f85 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x656487cb __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a40bd75 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d11e5c9 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e5ef69f nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70ce8d89 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x777c8e70 __traceiter_nfs4_pnfs_read +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 0x7b7d0258 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c6aeaeb pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83fe479b __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x842b5438 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84ef3d03 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86933d38 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c3e13c5 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x925a79ae pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93af2676 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9535c61a __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x957af0a3 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99d99264 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e1b9be5 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f87e4b1 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa022d4c8 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa337798c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6fe83e7 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae8fed43 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2eea16f nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb44aee99 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8f39e91 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 0xbb021d4a pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc086af1a pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc13dbb97 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8deee79 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9f22b29 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca533c69 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca6065a5 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd06ce442 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd11249df pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd2dcac09 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd714d79 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd948fc4 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddaf686a pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde7e7fbc nfs4_set_rw_stateid +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 0xe6418866 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7e8f8b2 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9b4f99e nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeab6536c pnfs_generic_layout_insert_lseg +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 0xed6dcbae __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed9972e4 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4111d2c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf954dffa __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfbe6038e pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1192568f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b4075ba locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc41d8499 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0aaaf0bd nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x132cc7c3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb02265e2 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdcf6d47b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x9659eeb9 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x02ee06d7 o2nm_node_get +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 0x4c32e51e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4db4b6fd o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5ada19ba o2nm_node_put +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 0x92d189b1 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa3ef458b o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc7c4aa0a o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0b190574 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2bd9ac04 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7485eef8 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x89e4fc8d dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x90f91830 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9fb07082 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 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0b4c3af3 ocfs2_stack_glue_unregister +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 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 0xc53d2ec5 ocfs2_kset +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 0xda9869c9 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf3116a3d ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x02286b1f register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xb90d3903 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x05cc6c07 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x55a6eb66 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/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc5672c62 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xebc145a7 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x77e942e8 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe9f0dcfb lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x281b3903 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x45d229f4 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x467936bd garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x739db039 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x9cf97ff0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xf1966684 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x11f42155 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x5e68bf20 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x9427631f mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc4104d91 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd59bf2c4 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xdb3a85f5 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x454b46c0 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x4aa31109 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xd1d429f0 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xe703b173 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 0x51ab5ca4 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 0x00ff550f l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x16af27eb l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x236bfd8e bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x57304e16 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8fcf1ee1 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc9fcf798 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe0ba1c4d l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xeb85acb7 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7de0e12 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x68692d9d hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10bbbcde br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x18199b29 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x26a409f8 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x434319c3 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4353adba br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f49c02c br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x50d22ed0 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5cfe96d2 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x645d6982 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x695ebae6 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70d405c4 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x710ab84f br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x763da469 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x81b1b8a4 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8759b910 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8dd5b57d br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97adfed7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9eaaefa2 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa20df6df br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xad089b3e br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd21643e8 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd138c85 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe43b3738 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe75d3e3f br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe84cb97d br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x228135a5 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xd2584125 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xe432b4fa failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05460e9c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06237abc dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a39f196 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1de3d9c1 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20e5400a dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x214b6f11 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ac40909 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x485d51f9 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56e41629 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5c7ed266 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66e98016 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x73a5b31d dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7882fd84 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a3d43f4 dccp_recvmsg +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 0x8a89b919 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96924b36 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb60266ea dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc794de8 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd77ddec dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc08bf600 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2ff5f14 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd27e388b dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5700794 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe729faea dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7a4c7de dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf365ba28 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa092c93 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa11063c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa464f52 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfb7d74c3 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc16fdac dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5534c260 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5ea10ef5 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7bb682d0 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaf3f58b9 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc6c6c760 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd4e13511 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0326cd8d dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0949eba8 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09fe533e dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fb9b0b7 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19042601 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x19a1988b dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1e2bbba8 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2a3986d1 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b3a6675 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3526c01f dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x36fbf149 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4009e3c1 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x421fd807 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x53e89604 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x57f47612 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e5a7ec5 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x62f519a3 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f5b5285 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b358e97 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x93dc8ec1 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9a0ef680 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa74b3782 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbadb45fb dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc0b9a43c dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc2ae5fa1 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe4659d57 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xea997196 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeaf296c7 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf02b1c8f dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3ba49e6 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfb5f59bd dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x35616483 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6b875035 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8d6d5c31 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf6ef8041 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x5cc3db6d ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x615008f1 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 0x2392795d esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x35ce45db esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xbf2c545b esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x204e0185 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7ce10e76 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x29f18727 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fecd892 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x99015d8a inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x99586d92 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa8e56a80 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0fd3f96 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xedd0ee01 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf9d7f788 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfb91e893 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1ca79ca0 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x13524bb2 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a0f45dc ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1fe81ad7 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x40c07db4 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58ecd214 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x78018a00 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82d1b0be ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84f87546 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x878d4fa6 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x975ef5d0 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x97c97dac ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaeef3c8c ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb6cb9b91 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd2b16802 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd66c9d9f ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe9d31c29 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfc62d3dd ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xfce792bd arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5046dc10 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x02adee32 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xcb14fc95 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb5d6a193 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x65ade960 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x69da38e4 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87ffdab3 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb19dfc7b nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb42af030 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xeb4d2979 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb3e482d nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x0185e113 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7b328401 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8a446b98 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x9c1a6e4e nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2c4366b1 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xa277ebd6 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x3c334537 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7734d1d0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7cec573b tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc555e89b tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd59b4b05 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0de85fdf udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x160e32ca udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x25303ebf udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x58f0bdef udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x80641c41 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9504c8b2 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xec9cb159 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xee2a3a66 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x25a645bf esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5e146fc6 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xe1756a97 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3283188c ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4889e92c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x78dc2262 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x18f35c02 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xec4906bd udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xb8a90d57 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x055a0e7e nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x288ad0a4 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc78bbeb1 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x074fb1a9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x229e4a4c nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3190c821 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3808edb2 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbf075567 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc3de702b nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc6e86f3a nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xde998bfd nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x86e2407a nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x9bfc1c96 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xbca3a93b nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xec3b8c55 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x0021269d nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xfaa7ee34 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0713196c l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a40bf1d l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1df29a63 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x33006e68 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x466cf02f l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x55263f71 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67eb30a1 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a276efd l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72555599 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89776dc0 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93922423 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0585315 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0ca6a06 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb4c01c23 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba469385 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4445ec8 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0eace06 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe78ea365 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf4b40421 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf618686b l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffe1a45d l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xce1c1ace l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x982d8c96 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0645ff7b ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cdc1250 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cdea727 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x22c55187 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x260b2cce ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x307b8dba ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35418a94 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a675c03 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x443c5b81 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b76fba0 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4fd2fc7a 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 0x5ad5a8c2 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5bea21ab ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67a11308 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x85687cb5 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 0xa6ea20f2 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd4f1b499 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd6937943 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe86f6fef ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9bf771e ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeab43678 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6f0206c ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x31533adb mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x73e6dfbc mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7e6cbefa nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8d597b5f mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb5a400c1 mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x042a8151 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a425ddf 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 0x2a681c7c ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x38a05098 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3e28e4c8 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5e8fc479 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6790d0c0 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68920583 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x82d19c9c ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8cf3fe2b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x94b3158a ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9af6dd12 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c0a97b5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa5aae9c2 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6caad95 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcf7e53d0 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe73f3a0d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe74dc5c6 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfe0884a4 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1c2a9f6a unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x246d4e82 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4db0fba6 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc906889e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x37dbbbe9 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x552fddfc nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xa5591300 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb19a964b nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb35d069b nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x016e462c nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x030c60e8 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03799cc0 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x097563b8 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c47363a nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1205e06f nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12231d05 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14523383 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16b268c3 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bcbcdb5 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22dc8e4b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22ea3e1a nf_confirm +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 0x297a81bd nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29d07780 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f7d8892 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32d83197 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3559caaf nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x414daf01 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x437098fa nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x462057dd nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c8c554d nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d184e3b nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52e45d16 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5416a008 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x547f91be nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x599e2858 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c6e45e3 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d2fbe3d nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d7e95f0 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ef0e058 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x612e4006 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62c747cb nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dad93e3 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ecec8d1 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x741dc343 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75cd0725 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b9960f3 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82bc98e1 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b2ebf38 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b404b02 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f122431 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93314bfe nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9396973b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95f51e60 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ba4fc8a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9df7c302 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3488228 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5846c73 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa86d0b7c nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8f5b9b7 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab380fc0 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabd8d960 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 0xb4417db8 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5020d7f nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb631b8e8 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaab26a3 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc341e21 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4dbdd2 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdf44996 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc052302c nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc093efae nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3d3e9cf nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7c2f200 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9cf0f00 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ff6dc0 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaaffe nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd099ec07 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd295269a nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde9f65e3 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2414d70 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2672582 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe363364c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea9025cf nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb416a66 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeed8625d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf54a0666 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf764d26a nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfccab134 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff6dfaba nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x31403c4f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x35a03a64 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xdca79d1c nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x592597b8 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6e70ccf9 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x777e8f37 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x796292cf nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xad02d256 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8a8e411 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc3acbf08 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc6ccce07 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd894827b get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe5bf9085 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xefd12d63 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4ff85879 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x15c2a8c9 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x15c9e724 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x68cbc5e6 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x80584859 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x81f42664 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa3278a12 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe34c42fc ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x141d1f14 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4c573f75 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7ba07434 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7c58ad6a nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x9a5e1bba nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x191199ae flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2afb31e2 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x458a4d33 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x47ff54e8 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4fbaffd7 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5bf79022 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6b2f6e74 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6be40ce9 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x83ad336e nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb1ba2447 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbac0f35f flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbb52bd1a nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc197e4ee flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdbe95275 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe95704b0 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfa304f3b flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfdaf81af nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x05bb0f86 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x116ed4d1 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1b0c82e2 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3295fef9 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x39ba0d90 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 0x4f0857b6 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x51656896 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x953077e1 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9967b15d nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa5382909 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa95111a8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbba837f3 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc4dc3c5d nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd8eda449 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 0xe4951f9c nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf53ed092 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x089e849c ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1175636c synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1c06bcfc ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f0f2cb8 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f31a8b1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4756b4e6 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x79b9f38d synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x90b01cbf synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa26764e9 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb975fdc3 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfa3efcb7 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04757132 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0479b8d8 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a78b40f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x110bcb88 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15ede7cb nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x178dafc2 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x182bc032 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31e350a9 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33b8e817 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38e50775 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x421275ce nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x46989a45 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51f6a722 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x557cbb29 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f49d5f9 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x63eabadd nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x69acc8dd nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75845ef3 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76664718 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f840cc5 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8de18638 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8f7cf72d nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99c86a63 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9aa257a7 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c9fb7fb nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2515682 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb1cb3f85 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe6a6b6d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4449822 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xca0f7b71 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcc25b264 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2b0b53f nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcc1e179 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd0d4db1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe053825d nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe07ea4b8 nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2637a80 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe47f9b58 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf2aff66c nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8ec3a86 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf9a77ea2 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x01c584ae nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1a5b0a8c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x529e3888 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6357d931 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x878bab65 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x94b9065d nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5bd5cb3 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x1a0cd7b6 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x64dd4a5a nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xae608893 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x6fce1a42 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xeefa018f nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6b8e4c0e nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7001d2b5 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x8599eefc nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb53164cb nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf47c7f01 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa371d029 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xc83136e8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd8989db5 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04bb065c xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x535f5c0d xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x58cbd0df xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fa5c7dd xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x669ac6d6 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x688a2e8b xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6de597c4 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6e4798d9 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78130e3a xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7a10fb9f xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b3e8e00 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fbb92d7 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8bc3e68d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9200df4b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x942624c6 xt_request_find_table_lock +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 0xc0fc48bd 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 0xd51642a6 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdcabf7af xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfa2e123 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe6c045e9 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec15b10d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf932ee7d xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf99175f6 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x1bf67023 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7007f47d xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x75ea6b14 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xcbc89f2a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xee5d0ada nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa08046c3 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc73dd4d7 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe5ff78bf nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x52afb1d1 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa9c7a1d3 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x038c9c19 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9caef951 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa4c611ab ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xad553812 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb0c82774 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xff7f45d0 ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x3bfb9525 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x69876f5d psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xd23b0798 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xe3b4e3a2 psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x6102f0f9 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 0xc546bdb7 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xc78defd5 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0687d708 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x091cf76f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x176f3d8c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2cf6959d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x31352c1e rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x36d900d1 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x3a73e66a rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x3a9eab57 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3b358efc rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x422a1852 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4cbba085 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x4f12e733 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x4f2712a7 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x54ea0a0d rds_conn_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 0x58a38ab3 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x691252d0 rds_message_unmapped +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 0x89392957 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x8ae5ace4 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8ddef149 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa8fa70b1 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xab18d7de rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaef0a506 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb704eefd rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xbae0b9b6 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc11ca2fd rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd5486a22 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xdcfdcdcf rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xeda010f4 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x5d8db5db pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x76ac9a61 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 0x37f0ccf9 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x75067a40 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x86b7d35d sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa38eb13c sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x1d2dee5d smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x2ddf6d99 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x3dab553f smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x6491920e smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x850b2d22 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x93bacead smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa7915358 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xaff82b05 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xc71f7bc7 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xf03332fa 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 0x63fa4a51 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x712cedf2 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7d7e222d svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc3a1f5ed svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f02224 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0446d158 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x056693c4 xprt_alloc_slot +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 0x06fc4ee6 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a29292 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a5a305 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07ad4243 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089ff07b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08dafcc4 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0943bb31 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x097a02ee xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098fd2c7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ea54b9 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a607a16 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a924add sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f6796c3 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f90c289 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1044730b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10483fc3 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13b9ab24 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x142f3079 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14ee085c xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174a4e6d rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1966a95e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c8d705f rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd0d0fb rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e159c3b rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e62d2ee svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fba7af0 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f7f30e auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x242dc0ee rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2478eb4d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bc8fa4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b1de137 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bd37ecc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bebf267 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d5f9576 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f176c9b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f87dd5c xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309f49d2 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30c1e394 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30f810a1 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31c8e918 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x347fd29f svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35d36f3e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3736a0be xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x381c0b1b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x394298ba svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39d7bcf6 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b86d807 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c49f218 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cad8dc2 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfa5dcf sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e22d81c svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f7d5227 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e208da csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4345243c xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43489b47 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4415cbda rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443070c5 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x446ed1c3 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4531b8c9 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45dbe4f5 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46026097 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cfbc04f xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d0540cd svc_seq_show +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 0x4f22d36f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f6bfb7d svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50520671 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50ff0a78 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51f371c3 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52755f2d xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52ceb818 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56134353 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57dad68b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590dd1d7 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fcf40d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a1b4006 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a88eaad rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b6a0ede sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c5e7bfc rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d3b15b0 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2fdbdc rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ead4c79 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5efa2617 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x617dd1fb rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61bbfe00 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6200bf64 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63fe6510 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640102cd xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x647f1cf2 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x653453f1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6627542d rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6724e462 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6814b247 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681e4ee0 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6830331f rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68618704 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6862c6a7 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a9b2186 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b534daa rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d45214a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dc3b7a0 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6deabf4c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e69a4dc rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e7183f7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eae8870 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eb211e8 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ecc8004 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6edf214c svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fdf0916 xprt_register_transport +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 0x724ef38b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72c53cce rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x730e8387 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76542779 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d831b88 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f136312 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f5aa1c5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ab28f0 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ae80f0 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81186669 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83827ea3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x847c32b4 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851723fb svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8841f1d9 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89ccfd85 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a74d3e8 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cbe0a47 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8deeb44a xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9100563a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e8439a rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9850c4fb rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99cc1b57 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a2f84c2 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ab7e596 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be274ba svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e8c46e7 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa087743d svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18e6bd4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1a2eb80 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3c80cf9 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa46304ff rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f7ccab rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5400120 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e30aff rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa92cad67 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5dab79 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac08a790 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacee16e3 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad538901 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad68500a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae86ad07 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaec35261 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb04234e7 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c6e3e8 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb49b27d2 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69aed97 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb781c42a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3c91e2 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdbf85f5 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe42ba06 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfda38cd rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0041f50 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0d544d8 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12b8dc0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc146fd7f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e9f1d4 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc46b8049 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc544efa2 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a78b59 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7294f0a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7bc2ce8 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c1dddd xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7efe2ba xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9adcff5 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3a5348 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcacb1791 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb5897de svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb2a0db xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccce5374 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd3fad65 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd808958 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdd50a36 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce287170 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7b702e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0bb09ad rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1011e86 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd16a717d xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd193206d rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29367f4 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2c43e41 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33f9897 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd77535e6 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd78d3546 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda933f91 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaa181ab rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc3cf170 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd746568 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde90dd9e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdedcceb8 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf05d8f3 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0527dad rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0754639 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08b562a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe09b6d71 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe146fca0 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe49a6abe xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4f905b3 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6410a6d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cf4ddb xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e8e6e4 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe85f4889 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe893a24e gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebf75535 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec5a1786 rpc_create +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 0xefd98e02 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0f53861 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c89876 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf529b6b9 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf65bcd0e svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa786bd0 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfaa606b9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbcb5bf8 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfca63657 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcc8820d sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe552c96 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff686235 xprt_update_rtt +EXPORT_SYMBOL_GPL net/tls/tls 0x14634c1e tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x5ee283d0 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xf2b503cb tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xf35780b9 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 0x0909a824 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x098a9130 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x17fd2509 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x29028c32 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x310eb3e4 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ed3d2f virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4784b21b virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x48d9cd3b virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e7ca71b virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x67c8e5d4 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x69d1b384 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6aca7fea virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78d077ac virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x79a89784 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b0f96d6 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x821cfe87 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8a624488 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8fb854e0 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x93725d02 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x94cb3dae virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0f29efd virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xaa60ed62 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xadd0442d virtio_transport_notify_send_post_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 0xbd9012fc virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbfbd23e7 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1cc4438 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc9f31dd0 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb5b05c1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd596513f virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdcab7679 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xdd510719 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe270d3c4 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe6af20e5 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf88c1e61 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00deb456 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01dabe8a vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1398f60b vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25c5e8a8 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3332d3ef vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3b8302bb vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e684d88 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x457977a4 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x507ff1e9 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59e56270 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x654db21b vsock_assign_transport +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 0x947bd55f vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa30dac6e vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb303807d vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb3b6b872 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcd3e8d18 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5988c4b vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe12a25c3 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf32b1aff vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5f91ce4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00ab1f86 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1211c317 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x19867859 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2725ecc9 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2fb0dcc6 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x386e4ffc cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7b98a8d0 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8efb95cd cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8f6ea910 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x95279baa cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9efd1855 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb24b3a9d cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc1a0aef0 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcf0e55db cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb968cf1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf6d4944e cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +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 0x0a9224a1 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0cffc816 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x14ac6cab ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2cff9629 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 0xf17d2d35 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 0x12ac4840 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x196a4c0d snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x25f1d8c0 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x2679d9af snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x2be15aa0 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x48027bc9 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x4843d7c2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x4b66058b snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x4c854716 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x5a5337c4 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x60f2ada9 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x72c09778 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x8580254b snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xa1c08c8e snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd3e047b7 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xdd6f4681 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe9034b3e 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 0xfdd8d182 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x872d5d90 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8e24fd84 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 0x27766247 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x28134161 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4c98d249 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4d42cc92 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 0x5e62965b snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x66bba84c snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6f7d6ba8 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ebe3fc3 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 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa4d760e5 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa69a3db7 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbbb52abe snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcfc5f085 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdb4a342b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeb38d235 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x11230521 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1beed35c snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x46660ea2 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x853b2c6a snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa1726362 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa1c87134 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab350885 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb00b1038 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb930efa0 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc15d72e5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcc336aaa snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xee85e743 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3cb93c3a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe9b29ff5 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x04379a00 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1d746090 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x460b9aab amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5e81b6ae amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6d821c17 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x778a4f63 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb101ffa0 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6015e48 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb6b9b949 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcce6a36c amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd400337a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9eb830b amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfeeb2cb4 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x047d8297 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06f2672a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08be6400 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2e7423 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1778aef2 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18d18007 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ae27043 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f902f67 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23620064 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26bb918b snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x282df6d2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f59707e snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30392264 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x312e40d6 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33c9d442 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34cf245d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35c424b4 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x369f6ab8 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36b7865c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40985aac snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40a998b6 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4135f7bc snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x446df304 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x499783dc snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49d5b415 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 0x4dbd32e9 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4dff5bf1 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x507a38cc snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52c7c66e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a868bf9 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f5c5485 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6527a7e5 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66258b63 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x686a37ba snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ea9b739 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ec2b072 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fd657f9 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70a02332 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x722cf45b snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72704114 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7590a7be snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75ab4538 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7865e7eb snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a77c190 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e3d164d snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e45da87 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ed9c30f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82abb400 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83cb1d11 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x848d8c34 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8831adb9 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x89e1d44e snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c88c349 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92ff05fe snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94595221 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x958cc29f snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c257483 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa180f098 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3ee6e4c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4892e85 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7104653 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa89af2c1 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa96d002b snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab7502ec snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabb91520 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb90bb4fc snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc7cb4a8 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd49e91a snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe78c31b snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1a68d3f snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1f798f8 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc53a3c56 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc804f217 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd68998c7 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd843b39f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdedb4de5 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 0xe8e7c603 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed808203 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1cff8c6 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2f6281c snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3b83e12 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf717d5f5 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf87417d8 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb061760 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff0ac7de snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x190c8c22 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 0x50350b04 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xa059cf31 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xe46d54d5 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x05e44826 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1afbcd60 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3377c41a snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3dfca9bd snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x753f2087 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xee6d31f5 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01c9b680 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02664e29 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042895ce snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04640761 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0584393d 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 0x072c1c85 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a1c1654 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13220ae7 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x171c8449 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1765f6e0 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19c99e26 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f17d74a snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25e1163c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c4b2751 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d024d3b snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31092c2b azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3150ea10 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3847698b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c7334ca snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3da5455b snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41ef0550 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x429cdb1c snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43ad6eae snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4488f73f azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4839d854 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c099d51 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ccf2028 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db41f48 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f052ed3 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x531e0355 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x538cbde5 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54b0334b snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58df3263 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x593acde5 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c561212 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f00cef0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f40ab33 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x607aa1ab azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x632dbcd0 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6593b666 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65cff778 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x664ad8a7 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x696dd726 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6975c485 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a929a13 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6c18bae6 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d7342a0 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef19399 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71680458 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74e4e9f8 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77567581 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b12d79f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e79391b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7edf4250 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8036c145 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80c0601f snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8241807f snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8286ab8e snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x840af6aa snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8606dac8 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x875839e7 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88282e64 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88702df2 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88e2c6f4 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8971c77e snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ac97e44 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b6c8ded snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c36bb78 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fa5e079 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90080f51 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x940f6f8e snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98822528 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9895ea3f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99a97039 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9baa148c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d5fef80 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa237ffb4 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4dcda6f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6affe38 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa71e5903 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8618f95 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa391888 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf3d803 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad859cd2 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad9f3702 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaed728fa snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb096ff6e query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5135af3 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb74214e5 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb92b06af snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9acb50b snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcd90882 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd0a8585 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbea125bf snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc45cc955 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc72d887b snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9fc449f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcab21581 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf085a1b snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd050b3b0 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d18649 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd12492c5 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1919783 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4a4ee86 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd65cc57c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8969efe snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd374343 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde68d4ba snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c8c36c snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3dcf1a6 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5cc5e5a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5e89587 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe66d1593 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7d85d68 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9e96d2e snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb4a4ea8 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebe03062 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecfff718 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee1c87cb snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeedea198 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2795e10 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3d73eac snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4e1cbfe snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf504311e snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7b92712 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8305893 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8eec3b4 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbd7021a snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf08626 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x097137e7 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x119b60a4 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13bb69c4 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1bafd5c0 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f08f870 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3cac9f40 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52504663 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5dae1be6 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e63e3a6 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61d797f7 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76dc6871 hda_main_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8a9e44dd snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x959c07bd snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab43a454 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xafa5dfde snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb07203b0 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb6bae455 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbec7208f snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbffb07b2 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd22ff36b snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd53c9375 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc9ba382 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xb691efe6 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 0x9f8d7b44 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1fbd4137 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0xe6137bd4 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3a066c8c adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3b092d96 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x42ff5657 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x88935a2c adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9a01e619 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa946a78c adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaeb4a648 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb57b3c67 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xb6148f0a adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc7f8917d adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xbca89b2a adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2000316c cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5d8f9292 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe1ad0d8f cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x11f306ad cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x132c01f6 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x323566bb cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x328c3789 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x631c7b23 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x756d85d0 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9485b462 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc11af1c0 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc6b3a4df cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd47d42cd cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd5497dfc cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xda456dac cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xde9e0106 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6d70237d 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 0xbb6e175b cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x90f82bf4 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x9d3d440c cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbbc4c7d9 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcbc43371 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcf71c5b2 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x07db31e7 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8663757d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa0ba3753 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x20eed992 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x232a054c da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7f8f8f7c da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd3d635de da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x790f3332 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x8b818d14 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x1e13a661 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xc5e0145e lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x0df2c797 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4ff6effa max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7030d9e2 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd46f5a5d max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xfbec1839 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x66e5f1f8 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xa3c5541a mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xcfd438d2 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd4f8b0c2 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x05a86fe9 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x42f73f65 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x72958b31 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa65faa45 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x24a7ba73 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x85f7ee00 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x083b1d46 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x19c294bd pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xff657dc6 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1e723895 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9997e697 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5089b5bb pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x60e42f18 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x465b1752 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5c19bc22 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x6b9b15ad pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xe462453b pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0c4647f4 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2129103b pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x514b3531 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf778275d 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 0x0a026038 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x5a0b5d30 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6e1abf9f rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa5ba71fc rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xafd53d8a rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc58e98ac rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xcb94f81f rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf0d26d56 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x3c2a0720 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xf9ee31cb rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0xe143a6b6 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 0x0f977308 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1407ed9a rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x56b48e62 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 0x5ade916c rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6a5e6f5f rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6d47cdab rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8169d45c rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x83fb278b rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xbbe41e9c rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc9183f8e rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf0dfccc8 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xd4be87cc rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1bc777f8 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x92c7b2da devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xad66fb06 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc0a9f5eb sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc3f22615 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xb6ee4c91 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x2a8d4354 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9b917f7a ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf7de4af7 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4704218e aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x72cc776a aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x19295fc0 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 0x2b2cd479 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x38057326 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4a90ac43 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x56dbdcfa wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x8961f53b wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x15f62194 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x24732e2e wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x342f7b69 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x356d2810 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3f9947c9 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4cc584e5 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59ceda06 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x665c8dac wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6eef4e22 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76c94ec7 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x76fdaef0 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7cd112be wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x833bc835 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x88310056 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x92cdb58c wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa0ff808b wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa28e28a1 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb43748a3 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc8c7aa24 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd102a527 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd1f4190f 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 0xdd613e51 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe7a06a05 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf0e4c0ae wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xff55de6d wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x260a305c wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2bad5ac8 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2ddb129c wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4c6937f0 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4db82813 wm_hubs_hpl_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 0x74644bf8 wm_hubs_hpr_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 0x972466ad wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcbec6133 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x85434780 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xabb619d3 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1ace0b89 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3fa24810 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa0a42d82 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa1d8f080 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7da7d00a wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xa97f0a15 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6eabaed0 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xb269f81d wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xc6cf908c imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xef116070 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 0x57ee9acf audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x42fc783a audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x572222f1 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xbab858cc audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xe420dead audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x041aa191 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x16617fe7 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x37344ce3 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x51e15fb4 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x57aced22 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5e8dd843 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5f40c581 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x64e74936 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x674f0d86 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75a0949c asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8f6c2f1b asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa2d2bf83 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa47ad6d8 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb3aa2e80 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc0e1c710 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe3e6afc1 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xeaa4ecf5 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xede1e6c7 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xee565ad6 asoc_simple_canonicalize_cpu +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 0xf3d156b0 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf73857b8 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xfc284992 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x178528e9 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1a3f0bfd mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d2e5516 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3f99ff3a mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x47342f1e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x47d22bda mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4cb6b626 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5b3e65b7 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5edbb236 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5f517d56 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x71fbf5dd mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x737f69d5 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9a2cd8b3 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa3f51edb mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb35750fd mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb60ff228 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcba8697a mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd0edd6b2 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd46e0e31 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd75b285a mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdae9b1b9 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe2ad98ed mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xede30187 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfae2e319 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6c27a5a9 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xfd485236 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x0fef02da axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x126f3ad2 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x1adf82b1 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x5391d0ea axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x730459c6 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcc04a885 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe5219982 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf633bea8 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xff1570d5 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x6e72c6c5 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x88cecc2c 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 0x9994f11a axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x20155624 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x218d8f75 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x46da544f meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x697f7343 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x8f7b8a49 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x95aa40d3 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xebc6da4e meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf71d816c meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x0e14ad04 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2298eb8c meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3a5316e9 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5c3e4557 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7b912d66 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xc69b5168 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 0x9866d580 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa7cba214 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa8991052 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07200f29 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 0x45af559e q6afe_port_get_from_id +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 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 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 0xf1e074d0 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0xf47f4b35 q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x9b02ea0d q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7fddc61c q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x835412d1 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xb16f2d92 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x166b159e q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x230cb00c q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x26438fb4 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2f2c2d79 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x302572e0 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3b3af9e8 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3ce6ed2f audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x464ac970 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4c9379df audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5244d202 audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x595f82e9 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5ca3790e q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5eb7894a q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7319b067 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x952a01ef q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9ba66d2d audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa399eea0 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa4fa7196 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa587656e audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb06899d3 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbf069003 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd1050c20 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xec4e6f9e audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xef74455d audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfed88004 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x01af4682 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x2216389c q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xd20e4e1e q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x35f449ea asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x0a5fb581 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x28706311 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2d668c6b asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb17254a2 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xce73d70e asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xff441b85 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xa8d69a79 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xeb88aec2 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00da4808 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0202ef5b snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x043671d4 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0880beb1 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8c70a3 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bcef80c snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c637485 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ea7bfef snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f76b096 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f7ae1fd snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x103acb00 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x106b779d snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1195319a snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1230ac8c snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12befcd6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13030c3b snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134709c6 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x142fa4e3 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14bda9b0 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aaded06 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ecca132 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a7bb13 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21e57447 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x222c430a snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x238c1144 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2455223a snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2493575a snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x252687df snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25701b90 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e6c79e snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2665a313 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2706252b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x286bb374 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29d56bcb snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d0c66fd snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d4d4258 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e9b6570 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f82b12c snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3252ce4a snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3381f508 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3485af97 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34b30f7d snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34da90d9 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37d02641 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x388424d2 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39affe9f snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d5d3b4a snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x421b1fff snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x421db5b6 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a431fc snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46204c80 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x484bf37e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x485f25b5 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a33b0c8 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a61d3be snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b4923a4 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd91da1 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4df43fe4 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f305dcb snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x500d8bff snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x508116c5 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52ba4743 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54053c3c snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5520b703 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x563d855c snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57d14182 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58879b27 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x588adff7 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a6b70b8 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a98fbf8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ba71e47 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cb80864 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d134b6c dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5dcffcf8 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e504f68 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e59c2a7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e8d8238 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60fa5b71 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x642d0c34 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64f55fb8 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x650b4a40 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6529367b snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6586380a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f563bc snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x671c3ad8 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x676fedbc snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x681513b9 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x695b3743 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b77ba4d snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8599da snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c66110b snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cc74e3e snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6db44b98 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5fffed snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f612424 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fad0696 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fde7b43 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7003a3e7 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7267873b snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x732cb591 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7389eeb0 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75209ae9 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77311240 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78802961 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dedb75e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f5cb546 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x809f5980 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81ed2ebf snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8201c539 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82d5834b snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8310f6b1 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838fa287 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x888d77f2 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88e487ce null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8983eeba snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a063dc7 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a3aba2f snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c073368 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c22c7b6 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c881537 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e64cc46 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ebc3b4f snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ee99351 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91cd269f snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9439838f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x967a741c snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9907955a snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x993d3bb1 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99599d33 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99cdd0b0 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a1530f2 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a6e0649 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb6cc65 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fd1529e snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa17b7a15 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa17bc950 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa37de36f snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa506c2dc snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5689be1 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5d8bb3d snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa708a637 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa491fcb snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab966aed snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabc8eabb snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae199f28 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae262f21 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae32015d snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaedb28fe snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafaeb83a snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb033bf29 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d6d1c1 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0dba544 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb283708e snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb284a2af snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb62fcb9c snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb636a8ca snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f8b69c snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8616ddf snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba252c9d snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe7674ba snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbefb3a59 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf469fdd snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1b0ec34 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1fd2142 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fcbff5 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34c0433 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3a094b9 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc52f274c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc771f10c dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7993ce1 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ab2cd6 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc85666a9 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb741534 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbaf0e59 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd07e3345 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd251dbbf devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2ec8402 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd333c0d5 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd38760cf snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4625ec8 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd46528b6 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd53d5ee5 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd58c99f0 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7fbb254 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9006e19 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda67caaf snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb08974a snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb1a9168 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe251ec55 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b68eb1 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe713bbbe snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7304a05 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9ff7d85 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedc90d82 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedca6659 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef79db58 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1283b0c dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf28a0550 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf30aa16b snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf311a07a snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf36e2f2c snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4328a33 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf43dac8c snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf478677f snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf510d075 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf58c79c0 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6a30665 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf72e8990 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf962c4aa snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd1a3c83 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd436045 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfeaf4dd2 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffb153ff snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x203dae5b snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x3c98cc75 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6ecc9199 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x7197d371 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xa188beee snd_sof_debugfs_add_region_item_iomem +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 0x078fb973 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x1156be07 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x21ccb449 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2232ea81 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x22963f3a tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x566575ad tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x69727558 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x84178d41 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa024b0af tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xa8ad4265 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xf2fbd5c1 devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +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 0x76a4edf9 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x196014db sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xc7ca4009 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x03c3fcd7 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0b1fc260 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x15208efe 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 0x26e217f3 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x34dfc6ad line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4facb5d5 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x501beb8b line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x67d0d4ab line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8aa407aa line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9201fec6 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x96b1a46b line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaeec904c line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf260822 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcbcde7d8 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb4c3e8a line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf02947a7 line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x0005a4ce iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x0013fbe2 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x0018c97c dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x00345735 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x004dd212 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x004e74f8 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0051bdb9 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005edc0e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x006c04d0 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x0072d366 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x007503ca bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x008162ff of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x008d5f5f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0090504c pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0097e442 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x00a084fe vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x00abdbaf kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x00aee87f blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x00b44add __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x00b9bee4 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x00c4550a device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x00c5503f dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e2327e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x00f1f67c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0103f5e8 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x01078f0b fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x01079b6e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x012e2412 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x012f5e8a cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x01493f65 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x0163b0eb devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0182fa8f sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01882f66 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01aa0e5b acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x01b5fd14 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x01b85e26 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x01c4fa57 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cd885d xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x01db6fba devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01dfc6cf irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021226be mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0219a20c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x021ae965 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0223a7ac devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x02272530 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023e67af wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0272ee18 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x02780921 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x027e949e pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x028d0dda cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x0297b4bc disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x029e402f fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x02a07b2d irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x02a9c8c2 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x02aced4b of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x02aec433 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x02ba59ec mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c90072 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x02c9cc9a pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x02cc19f0 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02f0e72a amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x02f41779 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x030b9114 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0313ca17 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03161e68 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x0321530d of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032f7dd2 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x033491d2 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03417a49 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x036a2059 ethnl_cable_test_alloc +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 0x0372679d gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x0380c198 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x03883f70 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x038a75e4 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0395772b devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x03a43801 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x03a6ac71 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x03a781b7 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x03b3c150 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x03ba5369 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c83baa rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d72a4b page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x03d86e55 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03fa8a1e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x03fb296c kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04035e1d blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x0406482e hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x0422c1dd devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x042ae921 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x042cbb17 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x043085ba debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x04427402 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0449fda8 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04688a2b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x046a8562 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x047e00dd rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x048173cf regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x0486bb62 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x048a2689 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x048edabd irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x049882f5 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04a63a5f devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x04b03df8 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x04b33e98 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x04bc1c4b perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c2bcb0 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04ccf6c8 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x04d3ff78 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x04d5c1b7 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e68cbc skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x04f4dd3e debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x04f86a1f sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x04ff8e4d iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x05083ea9 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x050d2c34 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051dd944 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d469f fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0546d7f3 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054e6739 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x054ec3a8 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x05678ef5 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x05803165 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0587d55b md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x05886ed6 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058ccb2e serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x058de8a2 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0590d995 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x0592ba78 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x05a49928 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x05c56446 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x05d1a989 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x05dc412c tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x05f6be9d __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0608393a genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x06087c3e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06345739 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06731e0c dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0675af1e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x067916af pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0680c7a4 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x068cde7e fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x068ce779 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x069089e8 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x0696e17c acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06996279 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x069967f9 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x069c4809 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x06a73445 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06bd11ae sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x06c58d83 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cd5076 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x0703fd29 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0704031c usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0704bfec hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x07101896 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x071e1e13 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07277480 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x072e52e7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x0736b29b pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x073a6144 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x07473a42 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x075428bf device_move +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x0758b8ed ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076662cb crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x07742eb4 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x0779e802 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x079a87b6 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b7a361 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c1a2db vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x07c845e2 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x07dc8815 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x080ac64e fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x080c26af set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x0820bb30 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x082140bc crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x0830585d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x083bbf8b pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x0843b3b3 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x0848b9e1 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x084936cf fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085a6000 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0880a52c driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x089424c3 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x089a3ab8 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x089a70c3 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x089b27aa perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x08a360fb handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x08a561f7 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08a95a77 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x08b630e5 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x08b7b037 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x08bbe571 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cf0f2e mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x08d1a6a0 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x08d613ca pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x08dc1278 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x08f85459 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x09161432 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092218a7 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x093c398c xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x09697b3a crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x096e233e of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0974a955 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x09829560 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x098bba12 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x0992d62e led_put +EXPORT_SYMBOL_GPL vmlinux 0x09a6f77e serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b3557e bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bec075 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x09c7f5c4 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x09cc3386 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x09d390a2 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x09ef0878 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x09fe817b __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x0a1e028b fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x0a21441a virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x0a27f684 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0a2ef825 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x0a4512ca devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a47f275 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x0a4c015d phy_init +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a591199 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0a59551d ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x0a62041d __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0a6b1f66 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x0a6b3cb0 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4b41 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a88b459 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0a9369c6 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x0aa7dead regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x0ab408bf account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0ab51f41 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0adc954d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0ae60361 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0aee83ae ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b07f50b nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0b0a7b30 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b252eb5 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b2da009 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2fd34d pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x0b30dc64 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b4bb529 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5f1000 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b881671 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x0b88578c vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0b99b8fa file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0b9cdc69 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb90f09 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bcb5aa9 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x0be4dfb6 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf42b99 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x0bf44532 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0bf4a8cd dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c1b8dd3 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x0c20850d genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x0c23a2f0 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c300240 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c339ac7 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x0c3da3c7 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c40e52f __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x0c4490da virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x0c454585 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c6bd395 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c9b23ca do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c9b50ac nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0cababcd espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cbf3eb7 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x0cc49b0a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccb41f8 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd6df9d __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0ce4837e crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0cf71962 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x0cf8474a of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cff1120 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0d186c5a ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x0d39f31b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0d40eb34 of_platform_device_destroy +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 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d60799b usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x0d751cf0 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x0d9312c4 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x0d9b305d phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x0d9e2847 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x0da58d7e ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x0da5c821 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0db248ed dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x0dc1cc2a dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x0dd5bd44 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0dda7870 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de3f40e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0dff7592 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e011f3e icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x0e07f3f5 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e0d1a65 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1fe0aa devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0e295610 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e29a570 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x0e2f272e pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0e31d56b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0e3c3bd1 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x0e42ba9b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0e48ef93 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7c9203 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x0e7d9be2 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x0e847011 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x0e870cc6 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x0e8e8c2b tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebbe556 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x0ec034a6 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0edb1cd1 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x0efa1767 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f19cd91 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x0f1bc2e5 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f1df7e4 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f1ef1ac __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0f3212df debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x0f331813 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x0f4a14c9 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x0f57c15e phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x0f670daf ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8d2e76 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x0f956840 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f971efa gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0faabe05 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd8be5f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0fd8e670 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x0fe0fd21 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe74641 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0feba488 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0ffd2a80 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x1004805b inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102922dd generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x102d0705 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x102f0f3d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x10386128 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x103e1149 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x1097f301 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x10c44110 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10deabd5 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x10df65e7 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x10e4c26c iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x10e62942 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x10e853f5 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x10ea4ece pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f1b56f __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x10f33817 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x10fa119b kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x10fe36ef scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1110be6b devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1114a3d2 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x111ebfa2 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1121874e dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1125f3a9 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11488c5d ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x1158c142 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x1162d7e9 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x116658c9 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x1186f5ff pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1191be1a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x119250ac dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x11ab3cf0 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x11afdf26 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x11cd5d66 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x11cda17a nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x11d106c3 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x11d56374 dev_forward_skb +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 0x11fd940d netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x11fe5c11 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x1213b2b3 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x1217ca1e xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x1218db03 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12325503 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x12468769 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x1250ba75 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x1252f4e2 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128c754e mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1292d789 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129558d2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x12a1936c xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x12ab52d7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x12c17598 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x12c85d42 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x12cf4369 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x12ec3dcd iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f627b0 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x1300fcdd ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1328cca5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1330e292 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x134342e4 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x134a0bac of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x13517c2e pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x135829d5 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x135f180e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136e1108 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x13712132 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x13779292 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a58758 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x13ac58d4 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x13afd5ac __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x13c0e258 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x13c1a2eb devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d38a3e dma_resv_test_signaled +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 0x13f6e7b1 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141d77f0 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x141e6cdd acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x141fc46d fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x14214323 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x1431294a platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1439813c i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1440f10e of_css +EXPORT_SYMBOL_GPL vmlinux 0x144a9b1c clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x144cd656 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x144d4c81 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x1452db8b spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145afc3c dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x146190cc virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1463e7b5 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x14689e61 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1472dd5f folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x147797f3 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x147dfe4d usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x148d653c crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x149f0dfe __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x14aca888 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x14c73bee ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x14e5aea5 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x14e6e80e regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14f2bcc6 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x14f35250 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150307bf balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x15146bc6 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x152ccd2b irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x1532a430 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1561c43b bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x157c7fbe ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x15931f2a msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x15937cf4 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x159eb90a i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x159f970f dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd32d1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15da5590 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15eba0d6 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x15efa8d3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x15fe7af7 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x16154485 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x1634d1ea __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165d21a0 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x16668974 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x167aed1d phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168d63d7 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x168f2de0 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16971976 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x16a97a31 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x16b4f381 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x16d97d74 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16df598b get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e79ac3 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x16e7c0bc __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x16f101a1 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16fded81 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1728ac73 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x1730d1b9 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x1736fa96 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x17416b34 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x17417198 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175bec73 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1761b34b blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1765d134 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x176dad9b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x176ffcc6 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1780a781 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x1782e5ef adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1783c8b2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x1783d76e __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x1794a2b6 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x17b61d34 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x17bcc69c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x17c9a8bd xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x17ca534d transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e0d41d serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x17e2cdc1 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x17e91838 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x17f0532a shake_page +EXPORT_SYMBOL_GPL vmlinux 0x17f50ada __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1813cb9f dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x182c883e xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x183b1d56 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x183b2c62 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x183bea8e wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x1841e03d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x184afcbe alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186bf1f7 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x187138e3 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18757cf7 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x187c1b51 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x18ab8f1b xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x18addc81 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18dd1d5a devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e52332 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18e90a5f inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x18edb724 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x18edc201 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18f335c7 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fb45cf add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1904846a mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x190b934f fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x1912d0f0 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1914ea4f init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x1916cff8 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x192181ba tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x19250c8a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x1928d351 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x192ddbd8 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x193c1c55 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x194bb9e5 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194f190b devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x1950a376 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x19549370 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x195579c1 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x196b7277 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x1974549a pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19826dc3 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x1998c110 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ac8fe5 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x19b4daf9 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x19b69383 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x19bb10c1 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x19bff50b vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19d8f1e6 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x19db558c rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x19e71166 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19eb1093 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f613f1 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a043d42 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1a0caf5e kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1ff52e __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x1a21adfa __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x1a21e71f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x1a32d817 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1a362918 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1a460f48 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x1a491b3f md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a4fe76c cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x1a5305c5 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1a5aea71 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a72392e irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1a72bd14 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9dd7b3 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1aa0c20b fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x1ab46db3 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad0033f skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x1ae0d188 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b2f45fc usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x1b3f718f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x1b434d9b kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1b44edd9 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x1b4c22e3 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1b4d2f9c usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b4fb794 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5241f5 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x1b564dd5 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b660da8 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b769dbb pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1b7df473 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba00325 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x1ba939d2 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x1bb26832 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1bbf655c sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bcc1f8c dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x1bd2b4d0 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1be35c43 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x1be8387e gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x1becb5c9 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfeb7ce pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x1c01500b inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1c1054ab dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x1c1e73ba of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1c235813 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x1c31e089 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x1c40b061 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x1c40b46b max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1c4e71b8 iommu_domain_alloc +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 0x1c726b31 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x1c729dd0 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c8592ba of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c885dfd wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c8d61ac gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1c8df3eb __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c928fa4 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x1c9a434a __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1c9d554e sbitmap_show +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 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cbe9d5d perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1cbf319a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x1cd694ff usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x1cdabce6 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x1cedd812 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0773bd auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1d092060 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x1d0f3980 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2d50ba devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1d3494bf ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x1d367263 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x1d3a588f kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x1d3b537d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x1d4b9741 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x1d4ed0f4 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x1d597093 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d5f13d1 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d6b30b3 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7f193f i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x1d81bd6a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x1d91a505 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1da58c59 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x1dc3e20d acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1dc7f5ee firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x1dcd0c4a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1dd2d792 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1ddb7dca cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x1de49bc0 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1dec20f5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4ba1d1 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5333be folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5eb6ec usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1e6242ad dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x1e63586e device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e75fb6f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1e771a32 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x1e77b97d kernfs_put +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 0x1e9acec8 tpm_tis_core_init +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 0x1eba53e5 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1ebb7176 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec5165f pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x1eccf297 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x1ed468b1 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee68ed1 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x1eef45f3 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1ef61275 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f07f1ff iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x1f0f1cac syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f3172e2 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f653041 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f695fc1 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f7c2905 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x1f83deb8 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faf8cd1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1fb7cb1f serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x1fb91164 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1fbec229 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x1fc7bf99 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x1fccf47e xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x1fcd7e9f init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1fd94411 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fdc381c pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff791b6 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1ffad891 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x1ffda8e8 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x20038894 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200d6870 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x202f4cc2 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20585830 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x20592f5d clk_register +EXPORT_SYMBOL_GPL vmlinux 0x205dd0d3 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x206c0927 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x207a3295 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2092363a component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x2092c184 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x209caa83 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x20a56488 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x20a5b824 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x20a636cc serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x20b2bbb2 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x20bde89f securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x20c2e1f8 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x20c5f100 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x20d2d7b4 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x20dc584a nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x20f91e84 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fccca2 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x210cbfd8 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x2114e309 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x2118171f iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x212cf02c bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x21327f81 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x213a26f2 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x213c2a2b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2167e8ee dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2184bc8c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x218b3639 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x21a45876 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac3948 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b8a0a3 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x21c16671 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x21c6f426 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x21c8b8d9 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ea25a6 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x22101044 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2215a7a1 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x221dc5fb gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2222c311 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x22349f4f __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x223aa98b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2243d280 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2285f574 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x22921ce2 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x229a2b5d device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x22a0a976 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22a21a58 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x22a8dd9d dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b1eae5 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x22d240a6 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x22d50d54 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e62125 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230869bd tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x2318ff17 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x231ce1de netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x23336ca3 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x2335629c scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2354ac56 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x23599e25 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23828c56 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2390a0b2 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239f5df0 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b589db bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x23b63f3a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c253c8 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x23e5552d blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x23e57242 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x240e790f l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x24578b7b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x245e6ba6 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2470d3f6 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x2472644f fib_nh_common_init +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 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24ade542 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x24bbbad8 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e0b17a of_property_count_elems_of_size +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 0x2503c34d usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x251110ef blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x25237dfd acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25361061 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254aabf5 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x25709d82 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x25840c84 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2587852b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x258ee645 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x258ef24c debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bba76a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25be70d3 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x25cb17e5 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x25d6c03c devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x25df9698 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x261d5bb5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x26266bda devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x26427029 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x26671296 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2671c0da uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26a70288 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26aa1104 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26abca45 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ececf8 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27333b63 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x27334905 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x2736a47d pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x279a657a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x279a7435 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x279badea pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x27b215a9 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x27b2e26d debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x27b349a0 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x27b3bb7b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x27d8e7fa crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb521c sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x2800122e cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281f2604 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x2821290f mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2825ea94 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2832e9c6 cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x28361951 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x284e8d47 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28759a8a led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x287b87ca clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x287d644c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28892422 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2890fb99 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x2898f139 governor_sysfs_ops +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 0x28b81983 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x28cce696 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x28cf5283 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x28d9aed9 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x28e1f4bd devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x28eaa1d4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x28eed19c irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2917404e tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2922fa73 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x292eeb45 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x2933584a ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x2933c2ba usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x29387a7b ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2943f403 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x29613d3f mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x2977f42f dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x2985cbf0 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x298d7604 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x29991609 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x299e955d of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x299f11ab fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x29a327d9 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x29c21c89 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x29c47f47 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x29c71c18 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x29cac2b9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29e445d1 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ec2cb2 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x2a01584c pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2a020e7c udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2a066c43 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x2a0e0fb8 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x2a0fb998 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2a212c4e vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x2a29dc0f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x2a2aa357 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a357a7b mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a55c395 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a63a0d8 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a7456c2 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x2a7ed4e2 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2a95aa43 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2b081b92 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b2a3d7d platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b35033d of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4e32b4 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x2b501d74 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2b542f41 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b68a4cc sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b73d61b acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7861be bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x2b7d6e27 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x2b7e79a1 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +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 0x2ba7a783 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2bad6830 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bbc25e3 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x2bd51d20 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2bdacc7a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x2bdd029d pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2bdd9947 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bf1438d fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bf31833 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2bf9efea thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x2c0f1ba4 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c23352d to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3d34b0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2c3f8d81 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2c5aad84 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c67baee sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x2c74e6ca rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2c752bd8 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2c759a54 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7aef6e posix_acl_create +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 0x2c959f39 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9de58d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x2ca063a2 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x2cac84c7 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2cb5126e mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb9044c ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x2cbc63f6 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x2cbdf52d mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0b2680 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2d11684a __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d214897 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2cd7ac crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d3a02e7 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x2d3e73de crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d476cc6 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x2d518f80 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d789639 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x2d803618 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x2d82f7f9 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x2d8b967a ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x2d958e2b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2d9b63cf set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x2dada3ea ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2dae7d76 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dcf60d3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2dd96db9 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x2ddd2e94 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de45581 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2df6380d __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2df7f8cc virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e073f54 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e112a14 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2e1f64a0 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2a1392 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x2e2be2ae gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e34fb90 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2e5bdd53 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x2e5d6f64 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x2e5e2b08 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6d5904 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x2e7044c4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2e7f6b79 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec4cd4b __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ee5047c spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x2ee72b4c regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2ee74d78 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef14cef dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x2f020ed3 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f158d19 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f226423 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x2f2792db pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2f92a8 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x2f35795c pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2f438faa sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f593e35 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f67cba4 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2f8e31d9 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x2f9d664a pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x2fab2ccb palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb7a4da vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x2fb93b7b dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc3ca7d sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2fe6c0e0 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x2fef75cc crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x2ff83f61 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x2ffabb17 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x301c6827 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30270f6d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x3037faa5 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x3048e3e6 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x30589297 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x305b881b rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x3060d785 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306392dc k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x307a51d5 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x308e592f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x30953230 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x30981fe4 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x309fe167 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x30a4791d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x30a9673a wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x30baaab8 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x30c0e1da fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x30c77c4d clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x30d362dc nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30d66c31 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x30d735ee pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x30e0fe6d fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x30e12fe6 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30f06f3a fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x30f3fe57 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x30fa92d8 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x30fd1931 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311885df md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x311f1bf2 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31363210 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3148a1c6 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x314d9145 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x3156fb1d adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x31632fb6 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3166eb66 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x3167273b anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x316ecea2 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x317a1427 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x318138c7 pci_epc_mem_init +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 0x318e2faa ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x3190b7a6 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x319c2056 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x31a14fb7 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b920df bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x31c076c4 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce85aa devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e75916 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31e7f8cd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31f58f1d yield_to +EXPORT_SYMBOL_GPL vmlinux 0x320384ab iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x320e7d54 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3228744d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x322c0f1f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x326cb1fe skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3272ef83 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x3275c087 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3284bb95 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x328ce47f device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x329bbfae gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x32a2be38 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x32a4d939 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32afad77 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x32b108d1 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x32b6c27e dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c34a85 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d92a6f irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32eabf03 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x32f5f108 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x32f9242f usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33022e6f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3313c133 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x33227c56 device_create +EXPORT_SYMBOL_GPL vmlinux 0x333bfc79 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x333e1632 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x33427c07 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x334744ef virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x33571581 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x335966a8 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33684a3e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x33716b92 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x338231b1 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x338e40e0 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x33a34eb5 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x33b06063 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x33df5a83 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x33e053fc ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x33ede09d elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33ef120c stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x33f4be2f blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x3401df1c devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3411c2e3 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x34175b2d usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x342df630 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34362115 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x343b420d irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3441d9fd shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3442665e mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3448f0f4 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344dfa13 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x34605fad serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x346275b1 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x346f6b7b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x34706fa1 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3493c17c metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34aec7fa of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x34bd6911 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x34d5015f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f44d53 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35146a41 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353f932b edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x353fb29f tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3543a1a2 user_destroy +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 0x3565358c skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x357ad0d1 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x357c06c2 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x35898c83 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a0039f xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35c1d195 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x35c3a70d task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x35c5024e pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d4ec0b wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x35f3ac25 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x35f92407 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x36036b13 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x3612f07b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x361cb96c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3623e961 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3628786e vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x362ef9e4 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x3630eaa2 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x364b109c devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x365828bf nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x3689633c ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a7a1ea devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36d8f9a7 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x36d99c4e __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36e3deba regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36ecc529 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x36ef1949 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x36f66b3f thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x3700d087 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x371573e6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371960c5 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372141a4 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x372a455a clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x372b6048 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x372cb653 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x37359c77 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375e2102 gnttab_foreach_grant_in_range +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 0x378d8a67 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x3796a1ae cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37a96797 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x37b42fcf devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c20e51 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x37c76b93 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x37cd0c94 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x37d52e5b ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x37da8ca7 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37f9ac08 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x37fb301c ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x38053309 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x381c0c5c devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x38268759 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386a0a6b ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x387a2440 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x387aacff i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x388ad96c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x38923b65 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x389336d3 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a33186 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38d7d159 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e81302 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x38f07a5b crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x38f3cdfb __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x38f75b28 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x38fc1713 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x39028c6b ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x390f65ea ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x391d5491 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x392973f9 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x394d9918 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x396f7ab8 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x396fa018 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x397223b6 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x397ad93b badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3985e6b7 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x3995b304 acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x399c274a led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b0b0d7 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x39b8a49b register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x39c28208 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c99ce6 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39ccc8a5 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x39d38691 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x39dad8f5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x39de312f tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39df4fe5 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x39e028e5 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x39eba27a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x39f034d5 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a05a7db __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x3a1a3ade fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x3a1dd2d1 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3a231a37 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a4e98d8 fat_flush_inodes +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 0x3a62683a serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x3a674fcc dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x3a72e04f pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a9787eb meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa31376 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3aab108c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x3ab97b03 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x3abb4e1b mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3ac253eb of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3ac346a0 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad49878 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x3ae438b6 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x3ae53efb devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3aef6e7e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b225400 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x3b3b185d follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x3b45f705 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5802ce __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b64fef1 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x3b673ef4 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b7bf5f9 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x3b80c464 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba9892a sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3bacdab5 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3bc9e8a6 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x3bcd83b2 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3bd1c071 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x3bd42842 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be99a20 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c003b67 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x3c00cf16 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3c00e7c0 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c28e50f tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c438150 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x3c44472f icc_put +EXPORT_SYMBOL_GPL vmlinux 0x3c4c21db altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3c52e472 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c5e2ad2 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c750f06 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x3c7a6eb0 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x3c7ae7c4 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3c9e5aba kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3ca3801b acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3ca67a38 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3ccf93b6 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x3ccfa146 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3ce08fba serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3ce47fbd __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x3ce4cdba of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3ce9feea od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x3cebba81 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x3d084edb i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d605207 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x3d66c20a vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x3d74b380 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3d7558a1 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d76db5b pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3d7c432e register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3d82e1f5 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8bb16e pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da76f2b i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3ddab53a skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df18e3d max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e084d57 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3e260421 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x3e401c70 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x3e56c380 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e65182f metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e770a05 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x3e7cbba7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x3e8ce3be devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea567c9 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x3ebb29f2 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3ec105af skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x3ec6d761 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x3edd6105 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f01fe3f powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3f06642a __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x3f0b0f13 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x3f31b68d virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x3f3de809 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3f42b98c ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x3f439c44 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4acaaa blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x3f5799eb usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f64fa8f devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f86a9e3 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f99d73c tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x3f9fa0d0 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x3fa126ee irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3fa405a4 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fabcea1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fce0e54 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fdcf53b rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3fe35305 regmap_bulk_read +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 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff77cd4 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x3ffbe61d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4006f117 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400c503c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x401d5fb9 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x40219a2e thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402eb8b4 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4031c626 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x40387a9a vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40419dde pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x4041c2ad qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x404b9497 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x404c5d62 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a31f2 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076badc crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x4079422b rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40aac3b3 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x40acd84e tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x40c0e685 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x40cd7ebd regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e816c5 pci_disable_sriov +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 0x4107db82 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x41116386 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x4116f7db fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x411bf0f0 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41376980 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4138e11a ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x414af154 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x416018fc uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x417f7197 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41823f6c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41afa299 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x41b7f79a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41d6b0b6 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x41e962d8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x41ea1cf3 relay_open +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 0x4207040f __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42121e67 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x421d94f7 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x42353007 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x424d0956 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x425c5c64 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42702c01 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x42724785 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x42753f16 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x427c28c0 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x42809733 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4285bfb9 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x428cba9f device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x428fcf1b lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42ad9a15 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x42bb3a81 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x42bc8c38 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x42be7298 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42c01063 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x42c330f1 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42ee64cc ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x42f462bb thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42f4be98 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42ff723d sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x43031f28 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x4308111f rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4311e4a2 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x4360e38d __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a0537a dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad4993 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd71 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x43eac034 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x43f7a054 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x440006c1 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440fb215 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x44276825 mtk_pinconf_bias_get_combo +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 0x443e90d5 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x444c5e78 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4459af9f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4468601f tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x446b184e vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x4478268f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x447bdc4a of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44943d75 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44a19724 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b049c1 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c8657f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44dcdae2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e393de bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x44eee670 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x44f9c326 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x4503a90c tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450f7015 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x452d0301 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x454c09a7 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45577866 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4568608c pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x456d2c97 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45882afe gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4596b63b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x459a660d nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x459bc915 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x459cdb71 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45ab21d7 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x45bd6406 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x45d22036 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x45e13c82 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x45fb3605 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46166613 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x461772f3 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x461adc50 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46355c46 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x466352a2 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x4679fc5a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468ce1a5 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x468cf698 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x4691d3c0 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a9a905 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x46b6555c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x46bc882b led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x46c354a6 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46ccecad gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x46d12d40 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x46e3a4d9 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46f0959e pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x46f299e0 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x470ce4d2 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x471b5ce2 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47285bcc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x473a5d63 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x473dca79 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x47449b7b mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x474d0f96 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x47573629 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f0273 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x47724ebd mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x47751eef of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a328dd ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47afe318 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x47b778c6 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x47bddd83 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f30d89 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x47f424f5 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x47ff700a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x47ff7ed3 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x48020157 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48056db7 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x4815aa79 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x4816950a fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x48185849 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x481b48f7 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x481c1ede xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48204c58 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x4825d1aa virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x483125c8 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x48435a7a ata_port_classify +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 0x487cbb86 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x488b1170 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x489c5e21 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48affdc5 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x48ba16c3 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x48c0afcc sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c5c8f7 mmput +EXPORT_SYMBOL_GPL vmlinux 0x48e4deda rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x49295093 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x492b044c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x492eb3bf gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494571bf iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x494b03a4 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x494c46fa ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x495373fb regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x495f9f47 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4970b827 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x497eeebc __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x497f5828 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b6639f dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x49b884e3 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x49c90db4 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d9c6c4 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea931c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4a109d50 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a218a7d devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4ee9b3 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x4a52364e __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x4a60d328 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x4a6d5b53 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x4a806eb3 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a962218 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4abfdaa3 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4acfbbc3 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4ad15c0d find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x4ada2632 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x4ade1845 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x4afa386b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4b01dda1 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4b06211c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x4b0a88b1 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b128adc dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x4b51c64f set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5b6abe mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x4b5c8562 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x4b6007b9 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x4b631052 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4b6b5e17 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4b762cbf ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4b7ce9b1 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x4b84526f devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4ba2b27e tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x4ba82bf0 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4bba601b mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcd2a2f fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bdc29b0 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x4bf47154 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c01d44f dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x4c1aefef init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4c253b10 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c3c60b7 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c481d3c of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x4c493679 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c733f50 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x4c7d9168 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x4c80a0e9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x4c8104b6 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c96149a component_add +EXPORT_SYMBOL_GPL vmlinux 0x4caec86c power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb34ffb ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc6937a meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ccd7ce7 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4cfa59a3 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d070071 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x4d1713d8 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x4d1c7709 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d25a00f __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x4d279297 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d43636d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x4d45b5a1 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d6354fd get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x4d6bd0dd __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da5f528 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4dabff89 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc2d7f3 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4dcc6e9a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4ddde442 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x4de12e0b __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de9fd75 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e01e8fb usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1cecff serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x4e324b62 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x4e383e01 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x4e38671d pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4e3adaca gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4af74c ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53b20e nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e54d081 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4e54fa13 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e90b93a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4e91ee53 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4e951acb mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x4e957f7f __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x4ea6b01a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4ea94636 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb1ddaf hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef0389f regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efcfc73 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4f0fdab7 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4f17741f powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4f177cd2 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4f21c430 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f43503a usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4f4bba36 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4f5f222e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f6558bd subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6e4a34 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f85c640 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4f8a9bbb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9b3164 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4fa72e28 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x4fb71ce0 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4fbbe929 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff7b00e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x50185624 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503163b0 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x504cc901 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50623e83 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x506712a9 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x506e987b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5077e134 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x507e6c60 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509749ff ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50a40f41 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x50ab4ca6 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x50accfeb i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x50ade2b7 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x50b5a3f0 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c88e86 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e34cf8 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x50e6d121 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fa3eaf dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd11a4 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x50ffb6be devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x51039413 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x511170e8 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x511ba85e irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x512b41b0 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x51305e06 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515343d1 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x51624cd3 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x5166bcd9 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x51689daa mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x5168c5d7 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x516e13e0 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c6f17 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51a4e3b2 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x51a97e46 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51bb2c82 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x51bce2fc devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x51bf00e0 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x51bf963b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51c0156e __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x51c472f7 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x51cdbc68 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d8a18c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x51f4848a mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x51f53403 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5232b33c pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x5238c177 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x525ad6d7 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x5266d9d0 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x5274e837 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x5277168c of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x527acaf8 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x527b7450 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x529773c7 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x529d8725 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x52a0f5e4 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x52a9e1ae dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d2a0cd devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52da33d0 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53015e3d serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x53035f31 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x5306e4bd usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x5317ea7b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x531b0d56 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5325b48f crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x532a265b crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533a9fd5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x53488bf1 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535a791b pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53886c1e fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5390f778 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x53a3cf66 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x53a5eef7 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x53a8f251 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x53b392d8 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x53bb087d power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c2f99d ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53f8b6c3 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x540a2402 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54287cb4 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x542c00df bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x542cc029 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x54381ab5 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x545096de psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x545a4a16 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x545fffdd switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5469dc38 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x546b4688 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x546c0859 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x546c4140 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x54775034 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x547a1127 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x548d31f6 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5497b8aa dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54bccad2 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x54cb0ffe ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54d6c27e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x54f4cf88 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x54f87825 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5502d75b phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x55067f78 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55126c76 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x551ce81b dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x552416da blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555bb92b udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x555e322d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5562963e pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x5565a452 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55816467 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55941661 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x559d6e77 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x55abd478 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x55b0d26f usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x55b3ddc1 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x55ba37b8 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x55bb9b41 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d5a537 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x55e05cd7 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x55eb66f7 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x55ed8dcd dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f7e0a5 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x55fda97f cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56091b9c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56182568 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x561a3089 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x561fb81f spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563483e0 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x567ee219 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x568f23ed usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x56ac9df6 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x56afa761 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x56b34ec8 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x56b5941f dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x56be5166 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x56bf2a60 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x56ce458f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x56e2ab1e device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ef1b09 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x56f2302b of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x56fdfd5a mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x572304f5 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x5734aedf xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x574760a1 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x575c2101 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x575c21da netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x5786a7c8 mddev_suspend +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 0x57a8c37d bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x57b12f4e tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x57b1cb25 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x57b425ab pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x57b82753 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x57c30a8d __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d4647a regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f837f6 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x57f89148 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x57fed2c0 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x5812a5e8 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x5814aad0 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x581c13d4 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x58315632 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58359e9a of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x583ef701 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x584443f0 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x5844890f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x584b22fd verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x584fa52a usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x58580fc0 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5860a68f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5867ec75 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587c6af7 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x588dbb54 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x58971105 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x5899fe7b fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x589fe699 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x58a183f2 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x58a70dca ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x58b12a65 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x58b44f72 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58b76d86 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x58b9ba53 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x58cb9937 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e0250f fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58eab169 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x58f4c4e4 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x5902141f dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x5902c27d dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x590ecfaf of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x59195f1b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x593d375c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x5940866c k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x594992a5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x5958858e evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x596a260e extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x59726f43 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5978b3f5 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x597b8d15 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x598137cd dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x5985a41e pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x599ef5f5 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c13277 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c956ff usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x59cba1b1 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x59decfe6 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x59e4e7d7 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x59e55319 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59edb456 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x59f0d837 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a0058b1 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5a079fcc bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x5a0fe255 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a139333 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a385a0a serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a3deb54 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5def50 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x5a5e09bc thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5a63ae29 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a703184 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8b3313 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x5a977b26 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x5a9f07b6 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac06e4e of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x5ae8121a pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x5aead809 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b0a1fc4 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5b121e21 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x5b1dae81 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b3d3180 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x5b503bb2 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5b54ea29 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b6786d5 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6dbd45 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b784a31 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b7a5eb8 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5b7d0a60 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x5b838331 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b83b0b5 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x5b9cd377 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bae6a47 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x5bae7164 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc1e9a4 tpm_tis_remove +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 0x5bf5b07b fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5bf69333 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5bf69acc register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5c002fad regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c111fd2 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x5c1c9739 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c557aa9 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5c55c98a blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x5c569b4f nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6ee909 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x5c769bfa nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c7ba151 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x5c80263e wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c828e3a bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c8abbfb fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x5c9cfb40 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x5ca03275 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5ccf4528 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5cd80eee srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5cd8812a dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x5cdb9cbd kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x5cdc8d5f meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x5cde3a1a acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x5cedb4d3 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d0244fa stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x5d14759f ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d21dec3 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2e9b5c dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x5d337364 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d4c3587 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x5d576b9f __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5d6f5c21 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d918e49 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d9a4323 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x5da1f66f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5daeb521 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x5db2f4f1 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x5db87148 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5de1abbe ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5df04af7 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x5df96948 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1f607e io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x5e35e219 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5e49f9c2 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e62acc2 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e6693f9 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5e678cbc device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e79856a pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7fce34 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e86cb95 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x5e9c4d20 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x5e9dee3b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eae9b60 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eb5bc87 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5eb6446c iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5ebeb421 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec2c26c dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x5ec61b43 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5ecb3419 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed96dae rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee8ff37 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ee98ee1 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x5ef175a7 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5f132fbb posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f17ca27 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f1aeb6d synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x5f1c4dd6 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f49b9ac pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5f4b25eb mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x5f52dcfa crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5f545ad7 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x5f5ed4d1 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f72efca dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x5f76152c crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5f833cff pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5f87cf9e irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f90f703 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x5f93b4d7 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x5f9a658b dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa9181b __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ffae5d3 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60126a42 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x601ec3f1 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x60226166 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x60330722 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6041b56d pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x6043f5cf uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604579c5 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6047966e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x606098d2 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x6061c45d handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x60686ba5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606d14b5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x607d2cc0 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x608245db ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x6084ebef msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60966f83 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x609ded1d devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a571bf cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x60a9c84f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b388f4 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x60b510e4 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x60c4eaca perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x60c67ae5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x60c86f67 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60df01d7 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x60e2efde __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6117ca72 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x612712dc devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6127a6c2 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612d8504 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x613594b7 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x6135f53f __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x613c6f7f devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6157f03c iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616e9d1d br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x617ff342 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6190762f blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x6191a5ce ata_port_schedule_eh +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 0x61b58c52 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c83897 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x61ca1965 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x620e0017 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x620e0a9d fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6232f4fa dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6238d88a tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x623aff3d acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x62507968 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6265998f sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x626bf80d regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6277707d spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x6287aecd linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x628eac6d disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x62930ef2 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6293c719 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x62b10e2e skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x62b3555a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62cbbf1e device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6315a344 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6321bc86 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x63226fb8 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6342f70f skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6365a96f tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x638718c3 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63a50576 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x63abc40a clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x63bb2174 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c19066 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x63c2a8ac regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x63c5f2ff device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x63dbe92a screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x63df0ddf regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63e6a73d virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f0499c kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x64071c27 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x6429ba0d metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x6449de7b xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x6450c2aa devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x645b93a3 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6460644a class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6467375b pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x646a8119 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6475703d device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x647e0b9a vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x6482a6fb sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x6492e965 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x64a10a18 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a655ce platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x64ae1ab7 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x64c0a1ad __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x64c0f730 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x64d1e4e1 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x64d7b40c __traceiter_kfree_skb +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 0x650a07b2 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x650e799e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x6547cdaf power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6577e7b4 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x6581afee fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x658d1b5f irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x658d5724 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x659243d1 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x65a43532 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x65a8f138 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65c11cac tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65deea83 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65e1fdae unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x65f812ee gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x65fc15e7 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6600a40b bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x660754b6 devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x660dabc8 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661907a9 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x661f6f1c is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x66279ffa devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x662c5666 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x66338f4f devres_find +EXPORT_SYMBOL_GPL vmlinux 0x6635d92e fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66447e5b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x66450c7b fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x664582c3 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x6646e79f icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x6647e575 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665769b5 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x66583451 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x665a5d36 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x665cf8ef bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66648724 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6677c2fb regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668857cf dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x6690ee79 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x66a746b8 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x66aa4593 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c4c0b6 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x66c9be6a fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x66c9c672 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x66cbe8b1 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x66d1999d trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66df1f7f vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x66ec0928 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x66f97ce2 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x67055951 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x6707344a xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x6708bdf3 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x67311ca1 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673ef8cf ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x674777bf finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x674b74f1 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x674eeb52 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x6756841c pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x675a0462 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x67736b7e acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x67770809 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x6777de38 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b0d455 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x67b33bc9 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x67bafd82 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e9ee9b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x67fbf259 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x68212e60 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68305f15 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6839ecf0 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6840c82a __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x6842b623 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x68661d54 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x686819d1 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6888b089 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6898f781 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x68a4824b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x68a72a53 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x68adecf2 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68c732e6 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x68c73b2c led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x68d18be6 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x68d759a5 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x68d93826 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x68db790f hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x68dd11c9 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x68eb9d93 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x6908c379 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x692c3d84 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x692e3293 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69366020 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6942c3dc fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x6944ac82 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x694626fe irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696a9fb8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697402bb fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697e3ebc dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x698340ec led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d24770 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x69d72a54 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e6960a pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a04799a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0bb3d6 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a21976f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6a28beaa clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a35b3bb dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3af683 regmap_read +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 0x6a543aa3 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x6a5ddcf0 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x6a682ff9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a7de251 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a9ecde8 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa6c2ee spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab0f5ba dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ab73886 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x6af38203 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2f5d85 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b5b95e8 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6b7035f8 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b8040b3 led_trigger_read +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 0x6ba8380c phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bbeca24 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce6a76 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6bdf3b40 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be75682 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x6be9ac2d gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6bf1db3e mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6bf21d4c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6bfd9eb4 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6c023a4f vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c206828 driver_find +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 0x6c55560e clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6c5a86fa bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c62e437 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c693da7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6c6c3980 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6c7570ec __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca21aaa tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cab7d28 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x6cad9d28 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cbd5b9c bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x6cc6fda9 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x6cd24c17 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6cdc22b4 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6cfd5bf2 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x6d0249ee fuse_do_ioctl +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 0x6d0e84c8 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d318dd4 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6d381c38 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x6d3f9bde ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d708ee9 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x6d72f8c0 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x6d744b25 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6da4a8ec of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6db67e0e __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6db72c68 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6db8a07d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc73cab devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6dd08053 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dfed5d1 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0af86d tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e1557c1 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e373cdd of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6e38e310 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e466399 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e488d50 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e6f9b65 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e812cae dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x6e858669 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eaa7801 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb88ec7 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec6d000 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ecbb307 anon_transport_class_unregister +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 0x6f041ec5 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f2c4b4e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6f3725d4 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6f5131da wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6f5e228b kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f65d021 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f92448e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6f952f4d acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fc0f5a8 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700b4fbe handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x701b79c3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x702c31b3 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x702c4cf9 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7035def7 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7046edcd fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7052eb2b nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x70568510 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x70687688 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707fd5c5 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x708035a8 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7080d6ef sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x70852e64 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5d682 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d0f0e0 device_add +EXPORT_SYMBOL_GPL vmlinux 0x70d57968 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x70d9beeb debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x71057b93 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7121586d dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x714a87a8 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x714a8d2b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x714c1d7a ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716e90e1 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71894431 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +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 0x71ab113d crypto_stats_kpp_set_secret +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 0x71d3a0e4 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71eef504 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x71f03c3d kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x721d5761 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x722be279 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x7230e133 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x72341bdb mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7242a98c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7246b51d debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x725c3055 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72688106 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7297e8fe md_stop +EXPORT_SYMBOL_GPL vmlinux 0x72ac4e2c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x72b33a57 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x72b61647 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x72cb7466 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x72cdba2a dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x72d1324c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d39882 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x72e86d80 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72eeff81 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73211815 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732ff156 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7346eb2b devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7356ba8b tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7358f5aa ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x735db0dc devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x737d419f usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x7386aae3 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x73900013 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73adc174 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x73bfce72 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x73c1a2c9 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c8ecde pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d66e97 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x73e8b8c3 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x73f40510 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x7417299a fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x74260d59 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x742633cb scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x74380b34 rio_enable_rx_tx_port +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 0x74480e33 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x745ac2b8 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x747174d6 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x747572a8 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x74878b2e blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x749398c0 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x749dc5b6 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x74a17164 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bccd2a skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cd590c syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x75056190 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7517fc75 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7521c789 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7525fd62 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x752ae98a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x752c27fb __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x752cf223 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x75328d68 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x75443a7d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757c5d35 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x75833d99 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x75858332 eventfd_ctx_fileget +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 0x75abf6b2 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x75b83b75 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x75c7b8c9 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x75d0f086 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x75d437fe tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e487eb pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f5511f input_class +EXPORT_SYMBOL_GPL vmlinux 0x75f8b8c2 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x76000d10 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x76147c8c trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x76183c0d ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x7633deae edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x764bf598 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x764e1206 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765cb0ac wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x765e5a61 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7671c11c sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76867f48 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x768b23b0 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x768fb1de dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a649a5 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x76a9838d skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x76aa1c3b sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x76b0174c led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x76b51f8e clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x76bd0e78 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x76cbd7b7 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x76d49e62 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76da81da kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x7708b929 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x770c3720 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x7731a8f4 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x773bafa2 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x773d41f9 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7747d221 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x77499e93 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x775081d0 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x77562a65 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775b2e2f tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x776067ec mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x77656019 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x777f13e2 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae20b0 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77af7443 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x77b187ba ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x77c3450c meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x77e32f0d regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77eacfad __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x77ec1121 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x77ecf62b gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f1949a devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x7804286c of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782a1ea6 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x782fc6be rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x78394d60 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x783b5721 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x78461545 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x784c3ba7 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78615886 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x78651258 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7868b62f gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x786a675e gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7875613d pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78807de2 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78aa2fca efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x78b75312 component_del +EXPORT_SYMBOL_GPL vmlinux 0x78c6afb1 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x78c9fdd4 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x78d5cc76 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x79006b7f regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7904af61 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x790be7b0 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x792a97b5 da903x_clr_bits +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 0x7941f828 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794860b6 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x79489bd9 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794cf417 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x794d7d14 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x794e7cca perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x795e3523 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x79713484 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x797335f8 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798d0247 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x798d611b dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c76348 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x79dc5b46 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e66076 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fb272c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x7a001af2 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7a264ff4 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7a2780da pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7a308234 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7a367bc9 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x7a3d98b8 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a4b76d3 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7a61e727 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a6c58fa bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7ce82a crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7a7f96bf kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a94f698 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9a366c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ace88dd of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7acff70a edac_device_add_device +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 0x7aeab3a0 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7aeaf9c6 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b042541 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7b04db52 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1f1d1d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b2eb197 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b8120f6 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8c31f6 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7ba8bf70 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7bad92ce regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb834c6 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7bb94ae8 devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x7bbb0ba0 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7bc0e1f4 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x7bc46139 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7bca54ed usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7bd705c9 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x7be62ea5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x7be664cd fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7bfce7af blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x7c162a5e kick_process +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2ce0b6 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x7c323720 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7c38fc5b gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c494bfc tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7c4f5e22 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c7b723d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7c7e7ec5 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7c7f8ef9 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x7c9118f5 devm_pm_opp_set_regulators +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 0x7cabff63 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7caec393 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb732f1 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbe34e0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7cc1464b acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ccefe71 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce85dc9 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d03f590 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d271257 ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7d272c77 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x7d3695fd regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7d41155a nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d600a8b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7d6edd25 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x7d6ef08a switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7d734bfb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d7f4a40 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7d7fb8ad rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7d894fc6 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7d98ba14 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7dabb84f l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x7dac8560 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x7dbae0f2 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x7dc31c80 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7dc7046b k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x7dd36a68 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddd6d6d udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ddfddf6 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df66eb5 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x7df6bc68 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7dfe476c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7dff68d4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7e0ecda4 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x7e11cd55 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7e2b95fc tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7e2df4b6 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e43cd97 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e543846 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e663e8b crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x7e6830c4 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x7e7074ec fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7e71a01f rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e82c6f4 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x7e8414bc iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e912c2a dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb541a0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ed652e5 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7edc1656 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef4d55e pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x7efa740d auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7efdcc2a to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f076f70 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7f12366d dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7f17c71f __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x7f2a766a clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x7f498bdc platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x7f4f3654 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f540d82 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x7f6be600 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f71c652 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7f7203fc iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7f777176 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f82a633 user_read +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f88fcb3 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x7f8b1307 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7f972519 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fba6e7c ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7fc5a65f vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x7fc7e481 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x7fd18005 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x7fd9ac11 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ff2a507 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x800b13ef wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801acd58 imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x801d3054 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x802a7385 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803a19f6 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x80510f53 scsi_schedule_eh +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 0x80863b8f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a70070 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x80a7d307 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x80a8f620 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x80b04fa9 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c37d67 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80caa59c tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80ef99cc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x810d1bdc relay_close +EXPORT_SYMBOL_GPL vmlinux 0x8111f474 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812a1145 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x8135fb31 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x8137485c crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816cf506 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81846529 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x8184976b stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x8187f54e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a340d0 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x81a53260 fsl_mc_device_group +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 0x81b5f149 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x81cb9df7 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81ff804d mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x8202faa3 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820b7e43 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x821296d1 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822a045f fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x822de231 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x82371c21 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x823d9f11 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x824a9336 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x824bc66e rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x824d4b4f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x8256a1e4 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x825dacb3 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x827994e1 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x827c05a8 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828c8124 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x82945f02 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x82a529ba ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b64307 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x82ba36ba sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x82baaf76 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c43509 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e288c0 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x830ea263 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x8322d6ca strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x832ac386 pci_scan_child_bus +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 0x836290f0 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x83965cff __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x83c72d6c wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x83cb81a7 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x83ceaef3 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x83d2c0ec register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x83ec6d64 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x83fa6254 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x840ccd07 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8433251d device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84400a76 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x848299f5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x84920cc0 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x84955700 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8498ee74 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x84a85254 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84cb832f usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x84cc717d pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x84d00fd7 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x84e405c9 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f72614 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x8500d193 devm_gpiod_get_optional +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 0x85240a37 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x852b8172 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x853c3be7 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x8554fd49 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x855ad6be skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x856267f6 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x857532e1 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x8586afdf tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x859a05a2 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x859e5eb0 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x85a9700b acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x85aee310 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x85b1a73b xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x85b50849 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85d614ba is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x85d66be9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x85dea944 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x85e2e7c2 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85ef750f tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x8603f8bc da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x86070c00 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x860d58fe addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x860d9908 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x86128d31 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x8615debd icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862529d2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x866160a8 xhci_init_driver +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 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e6714 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x8693a8df pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x86987d8d rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x869919dd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b691ad proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c31c92 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x86c40420 rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c90177 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86d38eb8 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86dbc9a7 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86f9f6d2 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x870750c3 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87130a61 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x871de720 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x872e5b8a power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x873fa9d9 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x87486129 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x874a5e6f dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x8750e677 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8761bc69 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x8769addb nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x877b532e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x877cb554 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x877f96d4 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x877fc772 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x878ac298 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x87953869 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x879bb6e2 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87bc2040 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x87cc0637 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x87f744bb regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x87f746b9 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x8800047a debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x880a258b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x880c280b of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x8825d15e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x88274016 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x882e212d regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x882f0d7c fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x883df2aa __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x886a6f5c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x887192f2 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x887c7f3a soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x8882f535 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x888437d6 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889a92e9 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x889ff6cb pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x88a6cf9a dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x88a9be34 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d01fe1 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x88d74786 md_run +EXPORT_SYMBOL_GPL vmlinux 0x88d7cf5e gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88eb6778 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x88ed9ba4 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x88f85a0c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x88f8a76a devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x89067aad phy_pm_runtime_allow +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 0x89341b0b ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x894076b0 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x8941f326 pci_platform_power_transition +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 0x89581b06 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x895a9a94 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x895caa0c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x895dc9a7 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x896330be edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x89654f18 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x896ab543 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8996a627 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x89a27261 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b5d432 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89eda9fc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8a0590c1 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8a251b08 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x8a39bf55 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8a3c48df devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x8a3df8ac pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4bf58f __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x8a4dbe41 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a5f0a60 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6c97d4 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8a8084f3 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8ab4c0cc regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad5132c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x8ae02b63 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x8ae064d6 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8ae6894f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8af1b46f hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x8afd310a of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x8b02cb38 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1925e6 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x8b233d38 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x8b2cae12 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x8b39f069 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x8b50b80f mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x8b534300 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x8b5e05d8 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x8b5f40a4 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b82b13e event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8b86aefa usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b950ca6 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x8b97765e transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bb5b955 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x8bc31711 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x8bcf9fb3 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bdb1e5c irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bfec3ba pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c0364bd ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c24ad4a ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c2736cf dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x8c28bcab regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x8c307a3f ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8c40a922 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8c44265d param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c5f5739 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8c609e85 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7c5151 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9c31b2 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbe62a5 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x8cc8674d devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8cc935eb tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x8cd3f92a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cee5056 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8cf832ed put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8cfbe41f dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x8d09929c tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d161d3c crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8d1b6d6c fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8d1bce42 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x8d1e7fd1 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d2128c3 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d361845 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8d4c255b xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8d4d4d2d scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5c21ab led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x8d600ee4 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x8d753459 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8caf6f regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8da6d05c tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8da9d0fc __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ddfe1b2 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8de10471 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8e0f5355 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e1d9524 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8e34f7f3 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x8e353f1f rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8e385521 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e594706 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x8e5b4bf8 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8e5ca2a9 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x8e60fc86 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6f77db clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8c9ded wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e8e2317 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8e8fe3ff sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x8e916ed7 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8ea40599 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x8ea5109d synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x8ea6f2f1 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x8eaaf014 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eaef42a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8ec80352 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8ec9b038 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x8ecd9f93 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x8ed3b921 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x8edde634 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8efb4971 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f1af0ee usb_wakeup_notification +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 0x8f39b6cb skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x8f39c335 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8f4efa69 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6f79d2 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f7ddbb7 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x8f820215 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f84c12a dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x8f89c52e aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8fa65321 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fbb91b6 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc15d5d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x8fc7ea98 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x8fd4105f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8fdde92a usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x8fee73c0 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8fee8ac0 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffb82b6 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x900e89e5 split_page +EXPORT_SYMBOL_GPL vmlinux 0x901396c1 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9022d43a imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x902dfdb3 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90593db1 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x905ee71e pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906f3c1b crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x9073675a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x90809027 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x9082b178 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x909a5fe7 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad4bfa dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90bdc318 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x90c34c9e vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x90c42e95 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x90c6b45d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dc5e98 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x91004f91 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x910a4521 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x911282ea acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x911c4a9d ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x91278e22 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x912d5813 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9130e841 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x91377c1e rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x9153c3e8 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x91540431 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x9168e3cd mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9176b7ef dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x9188fe12 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x9189bcde usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919a6abb synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x91a2c587 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x91adeb08 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91bf88c0 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x91c1eb82 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91c9cf13 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x91d1c0cb vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x91d81d1a devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91e6fef0 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fd9c4d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x920209d3 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x9204584d i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92263c03 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x923be560 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92421a61 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x92424aea fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92506f89 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x9257fa7b fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x925b99d8 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x92749019 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x9274aef6 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x927b5b34 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x92824f3d __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x928289b0 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x9288d018 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x928ad36b xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x92992b7f ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x92997041 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x92a741b3 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x92a8f242 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x92adef2d virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x92b76081 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c8016a rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x92c91834 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d8e1e9 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e5ac81 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x92e7b30b user_update +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f53b02 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x92f63ea3 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x92feb04c powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +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 0x934819e5 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x935043ea shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9363abea usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x93668efc device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x936c10fd trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x93789017 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x938541ef of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x93893fb8 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x938a3037 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x93a03690 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x93a89d14 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x93b3a2a2 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93b53663 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cb7af7 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d805a0 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x93e58ffb devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x940cdaee __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x94115e97 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9421bcf6 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x9428e515 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943e14e5 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9448ebeb dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x944c5534 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x945019af acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x94644a1f mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946fa2b6 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x94830cf2 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x948ca5f6 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9497d10c of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a2c386 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x94b57fa7 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x94e244ac md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x94e3f867 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x94e40704 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x94e5d2d1 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e63824 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x94f31df2 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x95014c69 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9513fe5f usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x95141d14 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x9519a368 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951fd33c bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x9522149b tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x95261d3e tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9565b6ff sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9572b95b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x95746052 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958d8567 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x95952429 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95b4d829 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x95bc74bb irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d146bb wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x95d37b86 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x95d38983 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95eaf55c efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95ef9b15 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x95fa4fe5 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x96267d22 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963ea2b9 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x964a9a31 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965b9422 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x966498a9 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x966c80eb inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9689e4f0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x968d4ebd debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x968f20c7 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9697de40 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x969d87ef crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96d1a60a clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x96d6ec6e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x96f9af4a pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971ab754 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x9721edf6 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x97262814 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x97287d2d kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x973026d8 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x973032f8 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x97334a98 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x97363214 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x973b17c3 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9746d901 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97683241 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x977735d3 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x978216ed of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x9787a9e9 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x978a6f3e scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x97917d3b tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x97b1976d ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x97b1c040 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x97b4167e of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x97b6ce56 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x97c1ba5c gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e48827 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x97ee4eaa xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x98089813 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x980afa71 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x9813ef4c irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x98252260 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x9829b051 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983896c3 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98450a29 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9845cac0 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x984793be sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x984d7b1e meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98730148 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987fc1df inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98946670 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x989b805b cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x98a1bee0 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x98ad2a46 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b667b0 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98c5ba3e pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x98d4ca55 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x98ea5a1a usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x98ee0687 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f1fead pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x98f571c1 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x98f59a6d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9902fc3d dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x9919d342 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9926df01 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9945f6b0 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x995960ae crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99660b61 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x99674ce6 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996fc5f8 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x998321bf unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999e6e17 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x99a6fba7 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x99a6fbc4 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x99d87af4 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x99d88f94 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e4ca23 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f0f994 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a134e04 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9a1e02a2 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2c0f89 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a64eb1a sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9a6bf241 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x9a85888b fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9a8e7bfa pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x9a8f7e18 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac1ea35 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9ac415dc gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x9ada6a4a edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae4cb72 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af282c0 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b01dd04 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x9b07a91c dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x9b07de7f md_start +EXPORT_SYMBOL_GPL vmlinux 0x9b0806da xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x9b0d1ca7 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b1194be tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9b1711a1 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9b1f45a1 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x9b28bacc pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x9b2ad507 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x9b312da8 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9b3aa6eb fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x9b4d5cf0 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6b88c0 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9b6df957 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b89a500 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc1c487 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9bc54e25 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x9bc6bb72 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x9bd53607 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x9bdace1e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x9bde128a of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be3f7b1 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c13b09a ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c18650a tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9c250ed8 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9c252ad6 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c45777d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x9c4fa130 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9c59fca4 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x9c679737 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c9d8c71 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cc07ae3 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x9cc4db06 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd6af84 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cd853a8 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9d04799d class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d279fe1 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d4cc7fd dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x9d513969 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x9d591555 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d7629c0 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9daa6410 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x9daab1c5 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x9dae287d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x9db136e8 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x9dc4f461 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x9dcf0b13 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dd54023 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x9ddba56a edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9de7a2f4 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9de9157a devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x9df3a7fb regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9dfeefa2 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x9dff4c39 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4d3354 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x9e6967ed device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9e69a38e __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x9e7bd8e7 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x9e7e8db3 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x9e7f39f6 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9e9dcb3c rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9eada0e4 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x9ebb23b6 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9ec31603 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x9ecdcf4f l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edf1b2c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9efad609 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9efb274f sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9f1b6f1a sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9f2f9add usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f52ae3c trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f5eeab1 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x9f628b01 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x9f7d417a sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fa66bcf ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9fbb9a07 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce0236 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdf6874 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe4cdd5 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fec5ecc iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff505a4 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x9ff68f3e i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9ffa0e59 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xa00ec3ce dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xa018d75c dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0377a1a static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa03c8202 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xa03c8e33 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xa04f719f sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05a097e raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xa060787a extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0629212 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0772a4c of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa092b48c xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa0abea0d ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0ad0de6 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xa0cc778e cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0de3cee scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa0e17e83 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xa0e24c40 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa1036c61 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xa10b903b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa10dc9e1 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1290c9a of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xa12a054b of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa12f85ba xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa132ab13 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xa13de795 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa1408884 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xa14661f8 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa1574032 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa15ef67a da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa165056d rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xa1656f9d devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa1695701 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xa17241cf cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xa1878ea4 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa18d21df xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xa19a8257 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xa1a00c53 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xa1bd3bb5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xa1bf3a6d fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xa1c392b1 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1c54379 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa1cd441d iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xa1cf23b5 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1d80c03 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1e5c4ea root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1e5cebf ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa1e84859 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1f12cec dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xa1fda5e9 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa1fddf0f extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xa1ff1af6 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xa20966b3 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20fbeb7 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa2114ee4 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xa2136369 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xa216ff53 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa21c32e9 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa23512ef find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa23d39c0 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa24220f4 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xa24b4772 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xa24bf731 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa263d783 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa2666c49 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27402aa bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xa27d7831 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xa288bb52 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa2a4269d mtk_pinconf_bias_disable_set +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 0xa2c34a17 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xa2cfc639 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2d2f163 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xa2d55b19 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2ea9ba4 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa3031037 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa32aa7fa pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa32f44d0 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xa336e003 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xa33c867b cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa348a5d2 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa34e2d03 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa353f50a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xa36c6bdb __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa377d80a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389b002 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38c1436 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xa38e4f39 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xa3989a58 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3d211fd bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3def804 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa3e6af92 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3efbaab ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40a2acd devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4216407 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xa42bcf92 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa447b3e5 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xa448d7bb crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa453f1cc xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45d44fc zynqmp_pm_get_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xa479a1f4 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa486b96c crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xa48f8e35 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xa49c5386 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b2f0f2 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa4b6ac50 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xa4bae05f pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xa4bff040 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4d434a3 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4ef5c08 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f87e73 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa4fb3aad da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa515b19e dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa5183064 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa51d5616 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xa51d5772 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xa52a342e put_device +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa538cc0e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa53d8dc4 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa54ce28f acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xa55ac5d3 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0xa5660427 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa56664ef poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa570fdda get_device +EXPORT_SYMBOL_GPL vmlinux 0xa575f6d0 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xa5780b58 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xa5881c0f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa5899c7e md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa59700e2 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xa5a91d1e blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5ddf722 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5de4241 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa5e59001 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xa5e6441d kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa5eda7c9 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60554a7 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xa6069c15 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xa6161ea4 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xa6264860 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa6280532 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xa62c185e mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa6320ef1 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa63750fc dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xa6568494 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xa65852bb gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa665a9e2 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xa68e905b __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xa692bbe4 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xa693464b devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +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 0xa6bd06d2 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xa6c8aa86 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa6d1a0f3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e482 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa6d3a527 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6df6f1c device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e82fb2 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6f7097a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xa6fbb9b2 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xa701476f __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70dd5e1 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa7151145 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xa715f26d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa71eeb17 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xa71f1d5f dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xa7242b4f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73a2fb9 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xa73bcdb3 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa7489947 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xa74ea839 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa763639b device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xa7757027 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xa780e725 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xa7839a76 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa786aa6d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78c7f02 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa78e047b __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa797768d inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa79d12f5 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xa79e51b5 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa7a6250c blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xa7a68e4d md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7bd22b1 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xa7ecc1ec console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa7f61c81 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xa8019b2e usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xa804f4c2 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xa807ab3c pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xa8104b10 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa815653b bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xa8169810 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa83fd8c8 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa8459b15 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85753bf __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xa868b479 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xa87d54f0 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa8881337 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xa8886ae1 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa892e28f vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8bd703e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa8d1efd4 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xa8dae5ee __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa8ddf142 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xa8ebd2d2 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xa8f1ec65 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xa8f862ae clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8fbd5ce irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xa9093bde gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa90cc0bf serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xa911a919 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa91501ac serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9365431 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xa9369fce kill_device +EXPORT_SYMBOL_GPL vmlinux 0xa93fd366 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9408877 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa94713fd __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa94f6330 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa95542d2 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95c2f4c platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xa9604954 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa96a620e regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa96b7321 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa991c7f7 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xa994d0a3 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99c20c0 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a87d17 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xa9ab1fb1 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xa9af07ea hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xa9cbdc9e crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa9ce0e78 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa9e2d2ad ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xa9e44577 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xa9f8bd03 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xaa041fe5 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xaa16ac6f crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xaa1ef2f1 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xaa4aeb58 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa53fe04 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaa65d963 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xaa697ffc crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6b5472 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaa712810 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xaa72f15c irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaa84b82d xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaa972807 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xaaa1ed59 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaa68bc0 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0xaaa69bad __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad0b250 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaad540c7 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xaae99633 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab08f3f1 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xab0ff255 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab479a89 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab82da6c __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xaba008bd __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xaba25082 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xaba9e83d sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xabaacceb pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xabb743d2 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc218df perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabc91167 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd4d651 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xabd8ee43 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xabdae2c7 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xabe1749d __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xabe23928 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xabeb2663 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xabf56188 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xabf57aeb fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0xabf5bf49 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xabfb1e17 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xac0aa552 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xac0f8463 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xac216afd platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xac2a465e kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xac2eea0a device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xac371747 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xac48c02c xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xac542231 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xac6b9a1a dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xac6e6af4 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xac8e537d mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xac9036eb usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xac9a59ea gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xacaa6b59 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacba3f00 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xacc2abb8 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xacc75a70 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd844c6 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0xace48ad1 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xacf9e613 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xad162061 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xad1a5d6c dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2d3534 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xad32693e mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xad3534eb crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e05db ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad595163 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad91baba key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada3ca2f __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xadb2b822 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xadb305b0 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xadc06502 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xadc49686 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xadc89912 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xadcc5c3b virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadf8e601 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xadfb4126 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1abb3d dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xae2ce186 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xae332661 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xae362f20 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4400fa of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xae50b323 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae5142f0 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae62fae4 badblocks_store +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 0xae6a51b1 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xae7ab96b spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaea22d29 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeade404 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xaeb05d89 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xaebf5b79 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xaf00bb08 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xaf028386 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1516aa devres_release +EXPORT_SYMBOL_GPL vmlinux 0xaf2ab56a crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xaf31460c acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3b14e5 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xaf3ed8cf bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf42261d screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xaf53aa21 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xaf58241f pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xaf5bc7d5 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xaf67bc15 device_register +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7aa7c9 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xaf7c58b6 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xaf7dced5 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xaf7e4e5f ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xaf806e9f devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xaf81b496 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf87e14c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xaf95d704 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xaf9cfbee devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafba7ffc ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xafc69901 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xafc95b3a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xafd57139 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xafd8e0c2 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff1034e xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xaff214d3 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xaff5815f __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xaffe9469 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb00aee59 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb0259e65 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02d5c76 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xb0390468 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xb03e6aa2 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb0495e58 pci_generic_config_write +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 0xb070ccc5 dm_hold +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 0xb099fbee device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb0a20cd0 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb0ab9a71 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb0b419a7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bdf0a4 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb0c7ca7f devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0eaad24 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb104a2bf regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb110d7a6 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xb113149d __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1241b24 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb12f0ebd regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb139108c tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb15014bf devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xb156d879 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xb1588822 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xb1596e52 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb177cc9e inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb17cf25b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1aad0b4 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb1b42eb4 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xb1b6a63d usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xb1b88dde devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c53c75 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb1d6cd5a genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ef3dea ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb1f04ec0 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1f5e3ef regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xb1f6ba5b xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2047908 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xb204b4d1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb20ae73e fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb20c7ffa kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xb20eeb8a dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb25cea59 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb29a9d34 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb2aeee31 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c286bd mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xb2cf8b88 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ed1000 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xb2f57623 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb2f816bb regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb300a475 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb309e2ed devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb315f414 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb31be7e3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xb31cbbee espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xb32f6f1c netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xb33e46ce sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb34c45e7 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb34d0c98 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb350ffbb __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb364a35b crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb3951c6d fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb3a5ebf9 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xb3ae72bc usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb3d960e2 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xb3db48e4 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xb3dbccdd show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb43638ec rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xb438628b dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb449f21e blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4601239 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xb484f6cd fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xb48c6235 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb4969d16 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xb496b5f7 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xb4b55573 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4be396b device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb4cb46a1 kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xb4d318c2 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb4d7946d platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xb4ddd76d ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xb4de2c77 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xb4e84bc5 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ead787 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xb4ebeb4c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f05d76 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50da22d devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52c90d5 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb5439105 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb55b0b51 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xb55bda80 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb55f983e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xb572b92e devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb578da54 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb5896b78 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xb59444f5 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xb5990742 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b1421a __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xb5b2de75 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5c24a51 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb60f7527 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb618f8a1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62aa66f acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb640fd3a sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6620ad0 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xb6712d1a pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb680d3c2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb6950278 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69c081f pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xb6b118fc da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6c9a5f3 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xb6cd4e0a firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6df7d7a do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6e62f2a power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ea4e59 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb700426c kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xb7022239 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xb71344eb iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb720459d vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xb726c6e7 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb7589651 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb763aaa7 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xb7683ff4 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb7709b99 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78893cb irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xb78e6ebb pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xb78ff354 tpm_calc_ordinal_duration +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 0xb7d2fe45 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xb7e797b2 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb812c832 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb822d9c2 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb82329fe usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb85e1516 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xb86f14a8 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb887e113 open_related_ns +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 0xb8a319d0 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8a58757 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xb8ac4de5 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8b936a9 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xb8be9e2d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8c068ee validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xb8c9fa5a tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d90440 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xb8da7b7a kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xb8e2a69e folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xb8eb0d07 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb928cad6 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb935d94a kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb942a48b dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb95753c6 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb966eba6 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9781bd0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb983c866 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb987642e gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb990bb0c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb9947b31 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb99dc1c8 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb9a5ac40 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb9a87cd7 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9be0c89 __traceiter_ata_bmdma_status +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 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba0c24e7 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0xba10c37d usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xba176ad7 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3b6cb1 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xba41896e mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xba448120 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xba5342a0 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xba69aaec devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xba6bff73 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xba70f2ac lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xba7a1dca usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xba8801aa get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xba925686 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xba99e8f4 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xba9b0119 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xbaa6ef2d led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xbaa94de4 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbadbed3d regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbae88253 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbaec4cfc ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafdf24e mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb065320 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb1d5766 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb2c19b4 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xbb2c7ac9 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xbb364616 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xbb39d024 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xbb4be5a4 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xbb4fbd84 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xbb5145fd ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbb60d4c6 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xbb61a8bd nd_tbl +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 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb8acfe6 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb96d81a ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xbb9ac305 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xbbb452b2 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb4caee pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xbbbce1d0 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xbbbf9a56 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xbbcf394f ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xbbdb5289 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf137f1 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xbc04404a evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc1fb1c9 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xbc203a4f sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbc307fc8 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbc32aed6 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6f1fc4 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xbc7590bc of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xbc94f039 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcaabb27 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xbcaec772 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xbcb21bea vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xbcbb2de6 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xbcbc3cbf wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbccb46b3 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0xbccfe9ca rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbcd7c47c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce945b6 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xbce9f74a regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf49719 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1092df regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbd28b679 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xbd2b7e6a acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd63ed65 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd65ffeb kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xbd6a9f35 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7e4e80 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbd7ee5d3 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xbd7ffdc2 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbd870e29 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xbda007c1 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xbda74433 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xbdadbd66 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb28d8d tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdb7308f bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xbdc713e5 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xbdc9c28c xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0xbdcd6fa3 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xbdcec902 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xbdd4fc49 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xbdd786fe extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde9a497 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xbdef81b4 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbdf63573 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbdf981a4 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xbe02ad08 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xbe0bc5a0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe18ebf6 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xbe1f5808 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xbe1ff4c0 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe2711ed tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xbe3a357b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe41249f extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe42d159 nf_ct_hook +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 0xbe7e833b rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xbe85b39e fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xbe933cf3 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a6384 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea8f4ee icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbec7e00d mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbece618f mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0xbee6da80 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf04762b aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbf1103ff dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xbf25ac5d xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xbf2638f2 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf3ad275 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4ad796 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xbf53b8a8 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xbf55774b devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf579285 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbf66901d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xbf8fbb51 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbf941410 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0xbfa5fa96 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xbfb3ba1c mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xbfb64f23 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc73dbb regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff28b8c blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xbff9ad9c acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xc004ca35 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xc0303853 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc0331b09 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xc03a3db6 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc03dc5f8 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xc04a0525 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0525bf5 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xc0560a92 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc07ac92b skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc07bd68a iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xc083a879 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09dea0e pci_epc_linkup +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 0xc0ad3670 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0b1279e da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f52693 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc0fbd7c9 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10ac3df __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc10bc94b evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xc10cdbe6 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xc10ee02a disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc12d436f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc14ea65d em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xc169cee1 serdev_device_set_parity +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 0xc19637cf fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc19c9240 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc19ca55f of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xc1a2cf44 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xc1a6a053 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc1d5402c mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc1d6009b dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e5e17c platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1e7e886 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xc1f3600f rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xc1f82bf5 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xc200dd63 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc21c5f88 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xc21d5fa4 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xc2281430 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc235bfde free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xc241e51b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc251e328 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26c6268 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc2798ceb blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28ebc37 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc29bec64 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b6f35f mbox_chan_received_data +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 0xc2d17d0e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xc2d8acff blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2df01de ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc2e86656 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc302d73a __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xc30df611 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34c9c92 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xc34fec61 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc35ffa91 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc36d1414 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc36e0412 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3869278 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38e9573 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc390f737 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc39ce44b cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc3acf217 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3c7db9d iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4070bec msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc41ff40b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xc4247cf1 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43b1139 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc4411665 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4551901 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc4897f08 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xc489ce54 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4a829e1 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xc4af0b7e of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xc4b4124b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc4cb5174 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xc4cbbde2 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc4e6819c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc4ee77fc usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4ef2bab spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4fa83a5 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc5101c88 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +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 0xc5a3e31e devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5b80de4 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xc5cc436a dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xc5d048d9 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5e0472f icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5ef56a9 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xc5f868be rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc60aae02 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61e88b2 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xc6256aaa icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0xc6268b36 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0xc633b750 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc63a5f05 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63cb7e4 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xc648e02d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xc64e8be3 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xc65277bc ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0xc656ad4f __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65ed7be rtnl_link_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 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66fa621 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xc670bc5f regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xc67759bb __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c075a usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6c06f9f bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc6c0e5d0 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc6d03725 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6f035af edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc6fe9ebd __class_register +EXPORT_SYMBOL_GPL vmlinux 0xc704659a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc75000e2 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc7504857 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xc75710d1 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xc75cf9b7 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc78193b6 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc78463d1 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc786db11 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xc7916c69 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xc7964567 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xc79ff06d __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7ada08c regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc7b4bab0 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7d73cbf pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xc7d986b1 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xc7da3790 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7f1d8de md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fe9be2 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xc80c9235 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc81d18c4 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xc81d8f74 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xc81f003c rockchip_pcie_get_phys +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 0xc83a734b ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xc848bd16 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc84a574c stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc85190b8 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86e1100 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc8719d85 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87f10fa sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xc8892339 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc8d2ddbb genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc8d672de ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc8d89d54 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xc8dac3be blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8fea129 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc9063399 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xc908bd87 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc9194297 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc91fe461 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9273f7c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc92d57ae tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9377098 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc946469e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95e8e2f adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9636921 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9640ad0 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9876306 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xc9882f57 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xc98847d2 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xc98edd65 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9a4ee25 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9b533fd handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9d9df4c irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xc9dbeee2 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9f0f29f lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fb8eeb skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca189b17 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xca1c4841 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xca2b6ab0 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xca413c83 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca470bce iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xca4a4b28 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xca4b0720 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xca4bec06 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xca524658 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xca5fd04b wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xca61f354 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xca6476fb usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xca798b89 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca93f820 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcab7e1f7 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xcaba21f6 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad6fb98 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xcad8b524 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xcadcac54 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf3394e phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xcaf3d307 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xcb0d53f2 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xcb17902d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb1eda7c sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb28a846 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb30e88b usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xcb42a1a5 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb59bae3 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xcb62e508 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xcb6610b3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xcb7e1704 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcb82053a xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xcb98e1d0 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xcbb7e237 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcbc4364f virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xcbc4d037 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xcbe2da37 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbea0419 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xcbf4dcce pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xcbf995d5 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc10cc51 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xcc1f6fd7 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xcc212f48 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc30b293 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xcc354b83 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3aa524 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xcc3e601b pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xcc47ff52 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xcc5104eb trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcc53eecb iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc82f8ce check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc8a7f79 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca1c498 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccb54f17 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xccbe8906 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xccc72323 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xccc92d4c extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd4c2f9 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdb244a devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcce64d6b dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xcceb6328 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf76b8d ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0xcd03b7b3 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xcd0be2b2 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xcd0d1f52 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd18bc15 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xcd193078 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcd1b6209 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xcd1f5a3e tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd24f50e i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd386958 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xcd3a349a rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xcd3f52c0 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xcd4e3189 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xcd572130 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd5b3aa5 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd671ebd syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xcd6a1cb7 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xcd6c7842 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd6e4c39 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd779bf3 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xcd910be7 ti_sci_get_num_resources +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9b8f6f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xcd9c871e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcd9e2d91 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcda51e6d crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb77f12 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xcdc76d56 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdda7071 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdea47b4 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xcdf3f93f device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xce00cc14 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xce02e0ca devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce15e4d2 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xce2b6eb2 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xce2d7fb1 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce643389 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xce65d864 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xce65f9b0 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceaf6be5 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec93589 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xcecd0c4a of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xcece2c1a usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xced37dbc regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xced75d71 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xcedd58a6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee39253 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xcee6057d class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceea8f47 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xceee4a37 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcef3e475 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xcef3e9d5 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xcf0a1ef3 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xcf0c6f21 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xcf0e0e38 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xcf171fc9 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xcf287afc sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf2df988 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xcf4a3039 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xcf5ae1c4 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xcf6957b5 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xcf729c3e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xcf75cae0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf96ce9a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xcfa7d304 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcfafe7fa pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xcfb8135f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcb193d sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcfd1ed72 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xcfd2a6c5 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfe9cc47 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xcfea6fa6 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcffe3f03 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0xd00173f1 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xd001fe81 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xd00d86cc tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xd0116b5d __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xd016da74 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0354902 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd039c7dd genphy_c45_read_lpa +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 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06c30cd blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xd0867a9f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0914cd0 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd093b965 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a86a48 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xd0be4595 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xd0bfde30 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c4c08d phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0c6d26a __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd0c8044a srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xd0cfac26 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d42728 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0de036e anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xd0e470e9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd0e4e159 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xd0fcdd09 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fd8988 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd1266b77 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1493889 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xd14a0288 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd14e2eca blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xd15788ba pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15b694f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd17ab787 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xd17eb9f0 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd190f644 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xd1951f39 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xd19863e1 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd1a49ece trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b793b9 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e195e8 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2008315 ata_cable_ignore +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 0xd225d333 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xd23bbf50 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd2445337 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd2598f8f component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xd25f6e50 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26e9b50 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd27206a8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd274fa92 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd27cea8f ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2aeb1cf i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b1816f find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2b9cdf8 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xd2d1e954 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xd2d51ac2 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2dbf37f crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd304f655 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd311d723 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31cd1e6 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3429046 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xd347f3fa thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd368175b hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd36ab299 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xd36f4d4c fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd376f2d0 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd38014a6 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd3839dce kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xd39c709c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a06d68 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd3a0f0b7 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd3a698fa sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xd3b1e27c spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3bfd783 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xd3c72265 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3cae642 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd3cc6714 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3d441b8 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd3dee1d7 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd3e06a65 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd3e8bafb of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd3eaadef raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3f58777 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xd3fa2155 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40cb72d iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xd4176433 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42787c2 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xd42ac998 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd455eaaa __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xd45d04fe ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4745917 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd4771001 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd493605d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b786ec imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c27b1e sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4ce71e4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xd4dda1d5 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xd4e0e707 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xd4e5f841 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f278ea crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xd4f4ec87 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd504f150 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xd50f720a icc_get +EXPORT_SYMBOL_GPL vmlinux 0xd5119ee6 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xd51c2706 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd52429ff usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd543d436 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55bfff3 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xd562b99c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd563dd81 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd57f6be2 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd5822f3f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd584aa7d kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a2005a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd5b1e4e3 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd5bf276a dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xd5cdd7a3 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xd5d32969 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xd5ebaadb fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xd5f06f8c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xd5f41519 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xd5f79a44 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd5f8c677 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd60f1484 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xd61b1eca fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xd623067f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xd6319a3a of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd63c39d6 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd664beff hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd669089c tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xd66cdbcd rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd679acfb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xd6836449 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd683f5ba sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xd6879909 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd687bf26 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xd68aff0c bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xd691502a xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xd6a19e64 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd6a2e594 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6ad4c5f xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6cd1e8a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6dc4a3e sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xd6de174e extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xd6e4ef0e fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0xd6e615aa imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6fa23a4 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd6fce76a of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xd7105abe pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd71bb286 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xd71f79bf irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xd7264bb5 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72c69aa blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xd72dca29 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7309236 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0xd733cbb5 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73d8000 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xd7425b5e scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd755c28a __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd7648f16 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76a4791 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd775e86c spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xd7886402 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7b84caa tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd7c437cc get_device_system_crosststamp +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 0xd7e60c51 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd7f461b7 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xd802dc86 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xd80583fc regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd810c041 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd83bf91d pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd856555e inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd868f31e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd873a947 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd8773e25 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd87c9aad folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8845826 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd884717c acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd889b112 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xd8a90452 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xd8ab84bc regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd8b6ef84 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xd8c22471 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd901ab75 cpufreq_freq_attr_scaling_available_freqs +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 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd943afdd devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd946e5fc pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xd9520c4a icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xd958cc70 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xd9671fcf crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xd968663e __class_create +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96f48cb tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xd9703704 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xd971bd90 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd9791ea8 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd97c4526 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd98052fb fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9bd98c9 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xd9c42768 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e6a468 kvm_read_guest_cached +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 0xda0e6138 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xda1227af transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xda1b6b2b devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xda1d8798 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xda23b32a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xda31aa23 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda32cca4 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xda34e98a of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xda38810a serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xda4f8411 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xda58405a bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xda600a26 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xda7242cb regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xda744f1c fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xda76c2ae phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda978957 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa1e2e1 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xdaa949c5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xdaa957a0 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdabe4b71 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xdac6a556 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdae1b480 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xdae5fbf2 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf79fc1 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xdafabe25 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xdb11a27f gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xdb237576 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xdb28881d ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xdb4d29cc device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb56eb14 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xdb5d71ec kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xdb61cbb5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb858b86 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xdb8636c2 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba6e23a page_endio +EXPORT_SYMBOL_GPL vmlinux 0xdbb18e12 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xdbc848be ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xdbc9098b vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xdbcb116f fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xdbd727df pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeed8fe reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfb36f9 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc042c66 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xdc06edcf udp6_lib_lookup +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 0xdc153ed3 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xdc1fd376 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xdc3a0323 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc487716 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xdc5c1d09 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6806a1 sk_psock_drop +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 0xdc84f09a pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca5c600 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xdcab8f4d pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xdcc40197 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xdcdbfd61 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xdcdc4431 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdcdc4f71 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xdceadc19 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xdcf1666b divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd02720e clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd094597 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xdd31fcd2 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdd38109f bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xdd3c567b __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd5afb36 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd64649e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd851823 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc1e178 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xddd3e51a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xddee453f regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde214625 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde45fa86 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xde4d9f14 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xde5e102b receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xde69889b devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xde698bc7 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xde69b7e4 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde70caf1 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xde74dc19 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xde7eb12a i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xde86e5b4 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0xde995960 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea103ee mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xdea64fd1 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdec3d4a6 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xdec75eff __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xded2f8f6 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xdee49754 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xdee6ddcf mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdef0c511 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdef8643a rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xdefb3e90 acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdefcf887 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf06fd42 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xdf082f55 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdf09362d pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xdf097f0f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0ca3f4 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xdf0f736e kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf20554b pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xdf20ed48 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2fb3ef irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf481b4b blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xdf6d6276 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdf6f846c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf8a16df __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa95514 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xdfc02727 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xdfc15101 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd02861 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xdfd72f6a uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdfea960b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfed8f68 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xdffb9f9e clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xe0009e44 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xe0194597 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe02b9fbe skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xe02e85ef regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0363879 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xe04d6972 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xe05618cf crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06e41f5 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xe0749f55 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xe07992d6 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xe0812a94 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0812c6f tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe082b9a9 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xe087cb99 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xe092229d spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xe0a6c6f4 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe0afac53 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b5c46f lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c7c8b9 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xe0dea475 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe0e11e86 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0f16b19 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1155b21 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0xe125fd05 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xe137751b divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe144c39b mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xe147c87c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe14db1c4 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe1520c55 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe1524c52 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17d2be4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xe192d91c devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe19f341d pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aea0f8 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1d09850 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xe1de70a7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe1e68de6 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe1f025e5 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xe1fd38cd shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe21d9a1b power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe2287afd dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23901bf devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe239389a fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe251aa10 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xe2579f8b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe2612aa2 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe2998e27 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c0edb5 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe2c9e78a clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2cacbaf thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2e11a5f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe2f661fe tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xe304ae92 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe321a456 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe323d60f trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xe331f4e0 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xe33483e7 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3440328 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xe34df9fa devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe366a157 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe36feb1d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xe37e561d security_kernel_post_read_file +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 0xe3a36427 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xe3a44982 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe3a9680a fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b535cf extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5cf2 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e8e0c8 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xe3ea5b6e pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xe3fa9d5f pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xe3fb351b usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe40e8fe3 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xe410d881 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe4199dd4 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe424931a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe427b16f iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44d22fc of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xe45f80eb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe480fd57 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xe481c47f regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe48d1d67 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xe48fe41c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4993262 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xe49f641a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b7abd0 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cd16d0 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4f0a88e clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xe4fbe322 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5074189 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe50be03e pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xe50d3f9e thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe51bb30b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5329d24 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xe5360119 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xe5453515 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xe54c6865 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe56f5604 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xe5705223 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xe585dfbd swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe5877d24 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a07e9 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe58acacf gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xe5905865 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xe5983f3e fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe59edd9a xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c052ff gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xe5c38e7f usb_get_current_frame_number +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 0xe5d540aa dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xe5e71a6c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe5f5141e genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe617ea15 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xe6251aaf register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe6276516 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe645f20d ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6630212 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe663f8d5 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe66a8e6e phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe68509c3 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe6988803 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xe69f4973 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe6b819a8 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6bbc501 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xe6bf6aa6 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe6c62ece sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xe6d2b02c wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe6d6f0f9 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xe6e00c3b pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f06867 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6f94119 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe7024ca9 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe7270825 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7345787 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe742a42e blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xe74d3502 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xe74f40b2 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7546f0e ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe761fc11 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a1ca5 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xe770bcf9 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe773a36a ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe783efc7 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe785e7b2 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xe786ebf7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe794acca fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe79d30ce hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xe7a52bfe __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7b5dfe5 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7f64ba5 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe7fed8df pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe820bae1 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe826ab9c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xe82c9aad pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe84361e1 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8553901 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe864ad1a pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe86d0896 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe8771c91 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xe889ee94 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe88eaaba regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe891765a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe89ae2b7 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xe8a35558 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c2b418 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xe8c8a8f2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe8d8bf25 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xe8eacacb usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xe8fafe98 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0xe90b2d6c xenbus_setup_ring +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 0xe92decc0 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe945080a irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe94b35fe kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xe9514292 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95d9c6e platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe99392a0 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xe99b44e4 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xe9a1cb9d platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe9a90163 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9bea291 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xe9c935fc xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xe9d05851 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9d7cb0c gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe9ee2ab1 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9f21047 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f5b871 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe9f7ee91 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea01b0b8 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xea0f8fe7 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1de25d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xea272ccd vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xea3012c9 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea39851c spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea5b92d3 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xea73651c tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xea780744 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xea86e7c2 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xeaa1b871 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xeaa9c3fa generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xeab7e587 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xeabfad0b transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeac3d491 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead24239 stmpe_reg_write +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 0xeae20a3a acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xeae56547 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeaf9b706 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xeafebd2e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xeb085e60 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xeb167bb0 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb4d551a sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xeb4e49e8 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xeb52c520 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb724c4b watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xeb7449d6 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb8721b2 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xebb125d8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xebb276a3 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xebb6735f blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd5ba2a fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xebf7e390 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xec174825 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xec4697a6 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xec4d3ccd ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xec519a54 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xec54901b usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec58a86c ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec62f0d9 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xec6bc147 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec82ded1 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xeca38855 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeca557eb irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xecaaa2dd srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xecaab63c ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb78345 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc019f8 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xecc8f6f4 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdc1353 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xece06cbc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xece48f2f ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xece4cead phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xece53ccd dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xecec084b bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xecf280d9 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xecf95ddf peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xed054d5d edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xed119860 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xed220ef8 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xed284f16 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xed2abbcb file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3f53a4 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xed6eeda7 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xed79a618 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed832644 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed956687 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xed9d7e9a tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xeda387d6 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xedbbcfb3 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd4aea0 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xedd52a45 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xeddbd7b1 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedea5620 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xedfbf7fb acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xee0f07b4 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xee140021 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xee1dc8d3 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee2e806c mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xee302990 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee4f9cd2 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xee50269d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee682a92 of_property_read_variable_u8_array +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 0xee8ce7a4 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xee8d2421 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xee9f2cf1 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xeea48591 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xeec6d65b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeee46557 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xef10d0ab pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xef1b0360 crypto_stats_get +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 0xef366823 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xef3b789c of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xef3d5244 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4bbdae attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xef4d902a pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xef522f89 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef61bee1 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xef67e0b5 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xef6877d7 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef77e107 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xef816813 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa36f16 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xefa6e03d acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0xefb01280 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xefb81375 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xefbb39f8 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xefd003b0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xefd2b279 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xefd409f5 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xefdc9cf1 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xefe2ea87 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee548c mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xf00f3828 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf02b10e2 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xf02e0640 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +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 0xf0706812 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xf08b691f fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf08fc72c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0aa4f7d dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0b68ef5 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xf0c0b739 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xf0fa9a73 of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf0ffbb59 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xf10acec5 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf130efd1 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xf1419980 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf146fee2 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xf16947e0 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xf1757d0c kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf175b60c splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18539d6 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18b9ee0 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf18f6e99 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xf19f4974 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xf1a570de security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf1b5c17f rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xf1b80a5e crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xf1f18895 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf1f9179d bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xf2004d94 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf20611ea serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xf20648bb ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf20eb67d pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf21b93c6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf223a3ec pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf23e2ddb crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xf23e3c73 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf244532b fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xf26e3a13 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf27c5a75 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf288029c ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf299d08e inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xf29daf07 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xf29ec2c9 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xf2aa8e00 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf2ab91b1 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b54cfd devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xf2c94ad6 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2d7960f alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xf2dfac17 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xf2e25382 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +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 0xf31265d7 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31ed535 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf329ed27 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33f2d6b devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xf347c008 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0xf34d30f6 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf367f99f of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xf36dc269 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf389cd2b mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf38e4c5d ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xf394bdf3 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xf39db9a6 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xf3a188e2 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xf3a25bff bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3b31719 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf3b41e7b ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bea7cc pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf3c7f987 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xf3d2c8e8 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xf3d5fcd1 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xf3e9e324 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf3f0b157 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf406fcda bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xf40fa8c9 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xf420c000 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xf4267de6 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4381a47 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf44e2c0a k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xf45dd664 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4700447 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf4938fd6 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xf4958bb4 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a01e75 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b5e114 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xf4caac8c __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xf4cc39ed regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d7c3c5 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xf4ef77c6 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf51319b6 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf5178ac9 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf517af3c vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5305408 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xf533bdbb serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xf5420fd5 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c6a30 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55c3f4b acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xf56a1fb5 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf57edeba crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf59fac21 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b30f1a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xf5c2c07f sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf5c3efdb relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xf5c6e45d device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf5c79291 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xf5d07fa9 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xf5e5c714 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5f2e018 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fa658f of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xf609fbc0 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf62c9cef clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0xf6422f91 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf68eed59 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xf69558c6 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xf698405d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a9d9ab xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xf6b596ac crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c7eea3 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dd6b0d bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xf6ddcc8a fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xf6e47c38 of_reserved_mem_lookup +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 0xf6f66857 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf70eb589 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf723773f dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72f6a49 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf738106f blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf745ca23 __rio_local_read_config_16 +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 0xf751273a ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf76e26d3 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xf7712e81 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +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 0xf78871b7 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xf79c2c6e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf79c54ed blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7a82c35 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf7ad52ea crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b19b1c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf7b6b5f0 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c99205 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf7d9f2d9 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf7e84040 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xf7ecc732 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xf7eefebf ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xf7f07e72 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf8264795 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf82bea70 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf82e6214 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf82f78cb rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xf8388eb4 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf842036d __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0xf84427a9 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xf84f1ad6 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf864e2f1 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xf877d732 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8899fe6 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf8a62afd usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xf8a9258b serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf8ac69ea mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8b94e54 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf8b9951d mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xf8bdad26 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xf8c908ba gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf8e77b6d i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xf8eb2e07 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf90608b0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf90826a7 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf9092efc devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf90f8c3d skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xf9305bc1 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xf94bf24a lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xf94d71aa nvdimm_badblocks_populate +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 0xf993b65b devm_kasprintf_strarray +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 0xf9bf9a5f da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf9c6c672 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9cb97a1 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xf9f4f324 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xf9fc2824 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa40d183 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa495cd3 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xfa53bf6b mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa62b284 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa75aa96 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xfa7733f2 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfa78e2c8 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7aabc6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7dcb94 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xfa82eb75 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xfa93fe85 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xfaa2b504 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabbe518 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xfac02f2e pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xfac89dcc inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfaccde35 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadfc185 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfafa0a91 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xfb0439fc __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xfb139e33 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0xfb2dcac6 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfb2dd4b6 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3b5969 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xfb4abd5a dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xfb57b2c1 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfb60b77b pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xfb694dee __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7b0509 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xfb899f03 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xfb8fd3ee regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfb92c0c1 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc6d834 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xfbcdb66c phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xfbd1c5f4 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfbde0037 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbdea590 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xfbf2c689 crypto_stats_skcipher_encrypt +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 0xfc13d92d fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1ebbbe is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc30f442 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xfc33902a watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xfc339e7c device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc48234f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xfc5528ef acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfc64905c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xfc64fba2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xfc692fc3 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xfc73de06 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xfc80bb78 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xfc83f561 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xfc8fab2f irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfc955b0c crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xfc95fc17 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xfc96a236 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfc972aaf mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xfca31266 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xfca6e6e9 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcac95ba tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xfcb68e36 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfcb6a209 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xfcbcfc33 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc95a15 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xfcce06ba genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xfcde0075 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xfce23eec pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xfce50e83 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfcea0124 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd0a5df8 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfd17f673 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd2bcd03 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3c46e1 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd5f02cc of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xfd63b185 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7c7247 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfd7f7536 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xfd80fd2e pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd834c1e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xfd8ac186 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xfd98a134 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xfd9c7e5c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc0a660 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xfdc8a27c hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xfddbe21b get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfde324c3 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfde56bea da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf60a02 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfdffb514 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xfe07c47e fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe11ce3e switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xfe157a7d debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe36295c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5cc76e phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xfe61fbb2 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe741f49 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xfe8729de dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe9ae34b bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xfeb4cd09 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xfeb5d19a kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xfeb97304 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfece930b nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed24cc1 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xfed479a4 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeeae5bd dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff067880 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xff0958a3 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff221268 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xff233bec led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xff2468e3 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2b2c64 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4d053c fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xff5491f6 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xff562efa debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xff67c1be cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8bd010 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb1de9b bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xffb7de63 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffc966fa class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xffd1b338 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xfff7a56d wait_for_stable_page +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xf36efd4d hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x2466f72f ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xd48583d8 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x8be01513 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xbdedeb77 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x256d3678 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x9a46393a ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x3eee97e6 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x6326d95c ad7606_probe drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x99c3584f __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xb2c686b4 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0de96ba4 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x385ab7cd adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3ce22a1b devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x62bf0c4d __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x63277273 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x70306335 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9c84b662 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa6947493 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd4264851 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe133afbe adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x468ade75 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x71506b3d adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x252f27fa adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xf1d318b9 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xb3ca92cf adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xf5b3b7cd adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0923f8fe ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1d2e65e4 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5a10b2e9 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6a1d23a9 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6a47e221 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x78448fbf ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x870658bd ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xafb4138a ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf40cbb49 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfecbc983 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x5c1a8d94 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xb0ee9846 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x01fcfaf6 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x5872e135 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7bd1a8da bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xb79da99c bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x0d24ba90 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x52ad50ac bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x9509f789 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xd1316602 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xe316d870 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xee932155 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x411913e2 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa1191f0e bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xb6264b0d bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xf27d5958 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x4ef858c3 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xb5984d3a fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xd227325c fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xec26cc06 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x222a11db hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x54a8364d hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7165f856 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 0x8a0e4ca9 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x904b75dc hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa4b118fa hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xc1afadae hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd68eaf83 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd9f025f9 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe123f795 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe3f0c99b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe6b45fbf hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x12686d35 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x216e1a4f hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x88c6d040 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xeaa3722b hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x131ebad5 hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x50008f63 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x89997606 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x8f91c382 hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x4b575eb5 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x8640fe10 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x8a759635 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0041d125 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0dd7563e ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x3f17af32 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4b464e94 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4c1da995 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8accdb90 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa2dd2bdc ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb2aabd1a ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xfc189d46 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x06028310 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x674e7d2d mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd46a6882 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x0607c7f5 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0960d458 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x30662891 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4073d731 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x48a0babd mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5cdde58b mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7597e2a9 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7d18be12 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7ef76da0 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x80ba834e mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x98ffc33c mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9c2b8e05 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa944f3a7 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc939ff50 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe4924ecb mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xeef9261c mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x151a4631 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0xa385484a ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xfda5bf11 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x21b07d62 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x5fc116db scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x84da80b9 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x1e6ad628 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x22a0f661 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x27d34be0 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x87da01b8 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x88eda230 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb09d5491 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbecbffc2 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe837eefe ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x0446dfb8 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x07a98107 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x08ec2ab4 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x0e8800fa st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x1b40cca0 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x21f377fe st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2c0e4fcd st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x38c46166 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4f41a3b1 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x52699329 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5d4554cf st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6e874436 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6f3b22cf st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x74a3caf7 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x91e45fec st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x965d4aa6 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x9948a778 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xba7ccb6b st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbffeb90c st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc20821d8 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc210f9b2 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc30c00e4 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xd6dc6dfc st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe0bbcda7 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe280f14a st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf1502784 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x9ca5d9d0 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x51c632dd st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x620267d3 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4a54cd84 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x88cbe271 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa0540c4a zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc4460b92 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xda75aadd zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xe789954e zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x06228602 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0888a4e1 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0eca3f28 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f6c1c34 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x13a5f3de iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x168545d7 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1a04ab9d iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1eb17027 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ffdfe3b iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x22a50e9e iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x29e0613b iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2dac836d iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x373dbf20 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b82db7c iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x48aa3e53 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x48ad5e46 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x518a3deb iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x53d149bd iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5422342d iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e8474e0 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e91c5de iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61970850 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6379c819 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64002abe iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x65866a98 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6cc4f958 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x740fd1b8 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x741aa339 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77bddb26 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7981010f iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7aa87162 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7eb63086 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x813a4de0 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x838e62e6 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x85666399 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86c25fa7 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x87bddab8 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d038421 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d980b7a iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x905e7ae5 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x91a5190b iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9324682f iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94bf3cf8 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9b6b3d02 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9f057db1 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa0976c92 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa14dde04 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa16ad804 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4a72609 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa702e2b7 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad3f5ced iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb0b05bfc iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb2236640 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb34c22d0 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb3863815 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xba5b5f22 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbc466db0 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbd5adceb iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc01be19e iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc272372c __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd31a1682 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd80af21e iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd94e53d1 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdab77dae iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdbc40ef2 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdca0e7d8 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xddfe0d35 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf483eba iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe51ec531 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea7cd45b iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xec9f1f93 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4339a05 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf6cc75db _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf8b0224a iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfb7a9485 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x536a42b3 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xa539b58d ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0c73d8ff mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3f046f2c mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3f7a9cd5 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x43dab19b chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x44a03404 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x46319188 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6aa9e685 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8e57fbfa mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x92ee7412 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xaca14224 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbf011bc7 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc0be45e7 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd9523cb1 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe90690a0 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3820447a nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x58d8e8ce nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7790d38f nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x83d6f0f5 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xbb8f0cd0 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc1432c72 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x04ebdc3e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x09803a2d devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x09e600f9 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0f6db98a peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1436947e peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1d49fd52 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1ea2b4c3 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x217dcd6e peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x34b5aedb peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x46c9f382 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4c6cfad7 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x627c8e33 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6ba28cdf peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x782f3fe1 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x83eff761 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8572b40d peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x975a9d2a __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9d444db0 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9f2cb0eb peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa0db3fad peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa8d76ee0 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaf6c9e17 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbcf8e423 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xca49bd91 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcade4910 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd1e9d39a peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd25b9ca1 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe2c648ea peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe6f847c9 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x086966cd peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x84b317e2 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8e8dfb8c peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x9cb942bb peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xce14c1cf peci_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0841027d pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x192088ce pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1a1ca3d4 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1c250290 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1f8bc0e9 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x214255d9 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2dcec699 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x36e81c5d pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4950f9e8 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5aa71809 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7573903d pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7ff0ef23 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8bf8e7a0 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x98b7864b pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb08d9e4e pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb62e7f0f pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc5cb098e pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc65ef04d pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf66dae12 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x0c9da752 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x59db8796 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x64b03ce7 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9fb55913 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x4711d6b8 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xbafa552b hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xd12ccaf0 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0xe6a0e422 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x169e7a4a cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xc727ed3f cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xceeca5bb cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x0063c39e cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc8080a9d cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe9fdb446 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x9420ead4 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xd7182b98 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xf4903bdb cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xe8a6ae32 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x3a80ba37 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x84d4d4f8 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x9e87e874 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 0xdb9e2f6f sdw_intel_startup drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x08f8fcf5 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0e8b1f7b dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x1e365217 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2313e013 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x301514a4 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x8add5a1d dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xab7f35f7 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd50844a7 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfcdc66b1 dw_spi_suspend_host drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x19212eb4 ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x215acb3b ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x33527173 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x34a796c2 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x376eebe1 ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3cca3c4e ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5087807a ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x553cf6ba ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x60e84cc1 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x66ae640a ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x67b4f375 ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x74a9948b ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x83c753fd ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x87fcecc6 ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8c5bf0d8 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8cdb1752 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8d7438cc ccu_gate_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x950a096e ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x9a7239d2 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xa0f4dce8 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba079d1a ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbb6e851f ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbedab8d5 ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc2378215 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xcdae8a96 ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd35244af ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd7ee688c ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdc3ef86e ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xde8a0571 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdee13cf4 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe2fe75df ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe395e8eb ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeca4e8ed ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf1d63af5 ccu_sdm_helper_get_factors vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x0607b060 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0a8c3b4c usb_stor_bulk_transfer_sg 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 0x1ec00cac usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2841fff8 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2886dfd7 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x29211679 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2b086c24 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2e171f1b usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x44a4e889 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4888b9ad usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x48d29e0c usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x49eaabb6 usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4d8d8387 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x51b9d3cc usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7705a3fc usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x77e3b831 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x97317a9f usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa5d3f60f usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa7b27c1c usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa7ecec51 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xbdd689b3 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf1eaba1 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcf8e19f1 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf4ed2f27 usb_stor_host_template_init drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/arm64/generic-64k b/debian.hwe-5.19/abi/arm64/generic-64k new file mode 100644 index 000000000000..950ba3c3db20 --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic-64k @@ -0,0 +1,27402 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x28785a7f crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x2f1d8bbd crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9d9e958d crypto_cipher_setkey vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0fe68287 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10e06efc cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x12fb078d __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x14979769 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16acc6e9 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1be8e915 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x26cf86da is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31457562 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x3c238aea devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x43d6e74e cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x44d3170a cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x460d3f18 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47747baf cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4a167f75 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4e63fb93 to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x564633d8 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x60baf0eb devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6136ae3d cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x64ffb7b9 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ceb6fb8 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6dab8076 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73971ed2 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73e653a3 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x756657c9 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7a1f3326 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7f551a6f cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x869bfa44 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8fd085a6 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9726a4d6 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x985630a2 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9949bcc2 cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9cc8e3a8 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9d137cd8 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f784e65 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6742de1 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xad90b4c3 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb022bd4f cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb1df0583 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbcaeefc8 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc142a9ee cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc1606831 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2af6813 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc338837b is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc7dcb092 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc0cc79d cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd4fd01b3 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd57e9a68 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe918595c cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xedb72773 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe371fd4 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfec8244b cxl_dev_state_identify drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0a5aa9ec dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0f5e6a39 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3374ab4e dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x38d09195 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4291ed14 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x71889774 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7aa20299 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x84a8c8d1 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb50d2c54 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc4be4876 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc98cfc4a dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd3134327 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd449c96e dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd8372c85 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe732597d dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfbbc61d9 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfbc1dfe8 dma_buf_get vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0xc110a26c ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +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 0xdb786e41 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x56d0cbbd crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x71b42aa8 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x747385aa crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xb5654bd1 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xbad34c36 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xf248f2b9 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x122aa4df crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x28f151e0 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x88ca8101 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xc9b5328b sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0xf404063a suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x06de0c91 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xb1e72336 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 0x055e6123 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x0b245afc pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4332a27e pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x6e0b8f7c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x82cdb349 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x9654b2dd pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x96a91f06 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb0d6f13c pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb9de6564 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xc7b765ed pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xe2c98e4b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xecfe4448 pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xc3131836 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x39dbd823 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x96aa2bec 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 0x1a9831de ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3e12354d ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9cace9a5 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa453d063 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0xe98c507d ipmb_checksum +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 0x25403d9c st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3d80e9a4 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6a9ee56d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe9c2d300 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x62dedc5d xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x77c37a66 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xc25a6cee xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5b6583f1 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6d4336c4 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa182e97c 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 0x0fc171b4 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x777b618d 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 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf35d6915 atmel_i2c_enqueue +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 0x2d67f164 caam_drv_ctx_init +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 0x7bc43592 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam 0x9493f4ad caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xfe487332 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xa4e3e564 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xafadfaa5 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xce57f46a caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xd5b58f99 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf9d190f0 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 0x8e2a9ad9 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 0xc0709212 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0xd25da602 caam_dump_sg +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x5f435910 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x086cb2c8 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0e80cf07 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0fd23e05 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1764f7be fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf32a3f fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1cd00728 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d214f2f fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1e8ab008 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c6ca56b fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36278104 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36a39f52 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5acbdddd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5bd20b8c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x725b1317 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x76452528 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8bd59ef8 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa05d8197 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad331f3d fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb5275d5c fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xba25c299 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf91576a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd25f4954 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdef5fe96 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6e8df00 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1bc5674 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4903e52 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0x57b73b33 tee_bnxt_fw_load +EXPORT_SYMBOL drivers/firmware/broadcom/tee_bnxt_fw 0xdfaff93c tee_bnxt_copy_coredump +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x3cb14a91 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6a2b4931 imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xfce249b7 imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x5e12a6e4 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xc8c01e99 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01cef1f4 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x029ee971 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06631629 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e7fdb95 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e921c1b drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1279ff59 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1480acb0 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1594d48a drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x15d7bead drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1841b4f1 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1952e067 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a34b376 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1c6a4263 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d3238ea drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f8832ac drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23096f61 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x25056c02 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2602d129 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x296c92ea drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29d07433 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f129e4c drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30dc4c28 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x316254da drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32418157 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32c4a74c drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3494caa5 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3524c9a3 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a042339 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3feb73ab drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4043bfc2 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43137456 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x45100a79 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x511efb48 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x52460a8f drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5738f0eb drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57b1337c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5824b846 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59aa23f2 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b292378 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e784673 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67a7a049 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68e7311c drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a534537 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bc5a9be drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c5bc698 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f24d6f3 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f629540 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6fa10332 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70c560bb drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x769e6c1e drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ca537de drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x81b5d10b drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8236e9c4 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82a414fa drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x834faca9 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x84004cc1 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86eedb54 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x872941fa drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x89eaabe4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8c3c4fd7 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x919852fc drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92784eca drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x94c9df46 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d96eccb drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9ee8876a drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f90770b drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa180438a drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1c1e71d drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa525f35b drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa64eb9ab drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7383272 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa81a3b9f drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9d12d23 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xac457afa drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xae170f60 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3e092a9 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb63843bc drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba035f18 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba8529d2 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbbb30eaa drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbbf0eed0 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf02c406 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc214dfd2 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4174f54 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc4637584 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc51cd0c0 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5de2c90 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb16a6d7 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce1955f0 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf32d766 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd120f0e6 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd22db707 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd484cca3 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd52137e9 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd79ccfa8 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9093433 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9247fbb drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdafbefcf drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdff7c343 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdff81dbd drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2cbae15 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe8fc4e00 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe97506f6 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xebc8d093 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf2218e8b drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf850fb0a drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa5b6346 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfdbb7227 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01456f96 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x016ba2b0 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01fa5186 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02396dd8 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02455faa drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025f2b40 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02b07335 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045e354b drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06110ba5 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x063d04dc drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x063ffc61 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e8bf5d drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0714788d drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07e82a73 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08503768 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fe2775 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a5648a1 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a80b6e0 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aca6e51 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b028fb8 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dec68f6 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e013f59 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e0bf073 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +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 0x0ff45bf6 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x104c9832 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a170e0 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c0df14 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ac53c1 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13f2d70e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14683fb3 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ae5caf drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15bc14cc drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x180db455 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a0080ac drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a9ee7af drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aeb75e0 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6f4f70 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfe8901 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c4953ea drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca2ed80 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df7e754 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edc0b0e drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f606aa3 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207f795f drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cdb468 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a71180 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2461f595 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b19510 drm_ioctl_kernel +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 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x265f46a9 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2874ea8a drm_atomic_state_default_release +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 0x2a5262cf drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a949bef drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b0b8d33 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d26fc7d drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df66833 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e72925b drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fa2de2f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x302cfe9d drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b57d90 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321be719 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32902162 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x336649ae drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3452c5ce drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34f3c100 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x351abd5a drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364204ba drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3668885e drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a99152 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37304692 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37dac805 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37e401eb drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3805d70e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39699d9f drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x398f2e70 drm_property_create +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 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cfb2016 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e6031c5 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0bb4a7 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f43dea0 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x403f1b56 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406ddaa4 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40c4309b drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x411192e2 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d30d2c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42469833 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f8574a drm_atomic_get_new_connector_for_encoder +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 0x44e90203 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x453c5611 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d0b016 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d810ef drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x460e37f0 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x461c8050 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46799bad drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467adeb5 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d0ccdf drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x476428f3 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x478338b0 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4839277d drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48625cfd drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49cc9f41 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aae1327 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7b01aa drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc49733 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4beb4119 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cccac24 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbc4291 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df34af5 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecf9821 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f47c95e drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fa771ce drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ffb401d drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f7e8ee drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5140d94c drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54931454 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55883cd1 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b47967 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5694a543 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56fa2243 drm_gem_map_detach +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 0x57ea1138 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58130b4a drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c6d3842 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da9f3c7 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dadc6e3 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e93f0c9 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f473f78 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x621fbbb5 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6319ba95 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e13a75 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e8ab4b drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66df470b drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x699f70e8 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b2e05d devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c411aa drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a57a9c3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a9a7bcf drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b30d625 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6775cb drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bd17e46 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d289e4f drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de9cc60 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e43e5f4 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6eb028dc drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec75a60 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f5f7c72 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fd91f33 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701dc4e8 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71500555 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72000e3a drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7295275d drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733c089c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x755c9c02 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b5732b drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d09639 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d86f45 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7914e3c9 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794364f2 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7943e848 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c02360 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a020e65 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b7e6440 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bea2eff drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c2c27e4 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e77acf9 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1cfdcb drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f21d1b6 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f2f2306 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f44a345 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f988cd8 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa948bb drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801b8a16 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8022a8dc drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81220f27 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8199fc03 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ba6f4e drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e06669 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85ce6583 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d6e5b5 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x868c9ffb drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x873d13f1 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e23e47 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88008796 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x881ac48e drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x881d7c92 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88cf1278 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89284157 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b5ee22 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89f1f564 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a828a33 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ba28ab2 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d8c578a drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f2cf422 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9017a1d1 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9220dce7 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9281956c drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92caaba7 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92facdb0 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e1b93b drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x950c9a9f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a410ad drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95aa4596 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95c127e2 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d89840 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x982f21d2 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9933f7ea drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f4d100 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9a54ea of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc0500a drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d104f36 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e109232 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f4fd47b drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd08dad drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ffd8df7 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0b063ac drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa15d78b1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ea1c18 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28ece08 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4e9e5d5 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ded457 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63b862a drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6890643 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa80adeb5 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa83fed0e drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d0ff13 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa5cb580 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba213dc drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5932c2 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacf9f0c5 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad8e0eb1 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc05f0b drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa0ace9 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb094ea3f drm_client_init +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 0xb12df696 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb132bb3d drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb134c5b0 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c11e63 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26ef2a0 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2712773 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b64e8f drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2dbf976 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb323b385 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36f0af2 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb46d84dd drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4aa6816 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4ecd8ff drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5414714 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5650ae6 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5c009f3 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d6f2d2 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb61737e8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ead806 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85b9050 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb97b043b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9e07d06 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba26a2cd drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb929b80 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb65b6f drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf8912c drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9fd19d drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfa27314 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfb6ecd9 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e212c5 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f502aa drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1104361 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc159f792 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19d2e57 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e42d2c drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f6aac0 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58257d4 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc689ad90 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6932ae7 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc73902c2 drm_plane_from_index +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 0xc80c533d drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8623060 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d624e2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc911b7a6 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99d2ff0 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca12ecdf drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb32d9e8 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb3732ae drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbc4c9a8 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccde33e8 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd365eb2 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd91f6dd drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcedd6645 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3839c4 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf482983 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0a33e95 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd142b895 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd193d65b drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1994ad5 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd21ace5c drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2b00f1b drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30f181b __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3ee7945 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd45fe505 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd540d0b7 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5d357dc drm_property_create_blob +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 0xd7c57cec drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd831ccae drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97665cd drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda79b1bb drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda82db06 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb44d2ba drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde59c6d2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde6f8401 drm_state_dump +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 0xdfc3b4fe drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfd3014c drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe024c824 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0342023 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c0a367 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14a4b5b drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19da8a4 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2035b6e drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe20ada3c drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe25d3078 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b81017 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b54a4b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4869e86 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5533017 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73df1dd drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe79e2aa8 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7cad208 drm_plane_create_rotation_property +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 0xe8be0238 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8cc6754 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe92115e1 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9aa74f5 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea0a479a drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeae3dff0 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf0c326 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec1793f1 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec25f6be drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec87d024 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed10a496 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf0b64f drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf2ad78 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee643f5b drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef8f81fc drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0275593 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf10f8b0f drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf18c69ba drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2ae9539 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2cf65c1 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2eeb206 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31b865d drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf33117c7 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf375f3fe drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3abf40a drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41707f1 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45d14a2 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4d90dc1 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf68d6aee drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf86597fd drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9481d01 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa2e5861 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb9674a7 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc57193a drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc57d962 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc5b3075 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8f2e1a of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8fb042 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdaa26b5 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe25a962 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe5ebbd2 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3d3e56 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x1e88c515 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0xdcc42b11 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x012a2a0a drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01364687 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x035178af drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0457ef64 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05d017e7 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07281db0 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x078bac5a drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x083af3cd drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ad07f69 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b768ca8 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9298de drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0df34dc5 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fa57312 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe0f652 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11337b0e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x116cbbe4 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12778c47 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13073cfd drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1313550a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143c93c3 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1474ad7c drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x152e65b8 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163b54a2 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ef5083 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x177af7b0 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a42b8f2 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1afb96f3 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e1d3dfd drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e7edf56 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e93ba1b __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fceec80 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20f68e8b devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x228449e2 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2445ed24 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x250818cf drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c5ca1a drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26b63d14 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x277cc54b drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7a8093 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b7d8f4d __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c0577df drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30cf8289 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x348b03b8 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3720a3c4 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379b90c1 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38406ca4 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab475e5 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da070cc drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3da588cc drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43d12c1a drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43e2a742 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44594564 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4464ee5b drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x451859ca drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45aa82dc drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45da50d5 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45eaf63e drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4661d93d drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4763c3da drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49334f21 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a35f158 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a4f1181 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b15afad drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bfbe8af __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c28cfc1 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e04fce9 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f76a63d drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508d1350 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x516b29a6 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52939fa4 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x550cc389 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f4bd63 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57029cc2 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x575e8809 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58f816c4 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x598c4889 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59be6b9c drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c3aadf2 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d03e766 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dcda7c7 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb7e360 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb8773d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fbacea5 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6129b2d2 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x616cb9c8 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61ca9e6c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x643f6da1 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64d243a5 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e311f2 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66d5f7be drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696ef260 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c99a79e drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70b59864 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x722ed457 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72f9d24a drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75ba0f1a devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x765acc1c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76612fb8 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x799f948b drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a477c57 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x806575e6 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x808efcaf drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80d08d1b drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x859cf443 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87eac50d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88c0252a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a699f42 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ac7f981 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d88e9b0 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8def9202 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90163254 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9088732e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x914e9e35 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9188d9b9 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9195f03b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91ef3d8e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93e4b610 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944d22c9 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9510ba99 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x952d5911 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9584bed2 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96e0a25d __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9701c1ee drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98aec199 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98ea7e43 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aed56bd __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bb58176 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d62ef4e drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1e1e0ec drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa28a73b4 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa51891c4 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5c84942 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa657df5e drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaac9e4e drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab7d3064 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabee2c7b drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac8e381d drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb02780e7 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1b26f45 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb20bf35d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb25ee82f drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb92e2d7c drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe665b22 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc11d703c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc50d952d drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6e83a05 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb0d456a drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbfbf69e drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccc46dd3 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1d8060 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd005e2ef drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd38bef9c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd39dcb2a drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4647bb8 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd615bb78 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd75481c5 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7bec750 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda654494 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb63e046 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd1f4c35 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddd7c3c7 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf0db81e drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0ef26f5 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe263becf drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4583592 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe46ecefa drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4eac33a drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6502113 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe697d2b1 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebbed358 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd9eb00 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedf0e84b drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee81ffde drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f23b4e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7da1ffe drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf80df63d drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8a837d6 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8d7f5d1 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf95ffd45 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc5f136b drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfced116d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd275afc drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff361c68 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffc614fd __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x04d5d068 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0f7d16cd mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x16a9c23a mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1872bbdd mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x37ee68f4 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3d914069 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4705ef23 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x82cdbf65 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x83ab5a8d mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9160aa84 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9781bd00 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9bdc476e mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb902cb29 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xdb0b2557 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xec2fa47f mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfdd7318a mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfff8a7c7 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1243f184 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1d1937cf drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x44ab1b82 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x484d1c83 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6ba3af0f drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8a040a69 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc3efe3e2 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcbc95177 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdb429af5 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xec0510d8 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2022e456 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x36032510 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x72415ed7 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x97c59ec3 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xbd0cdc07 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0611949a drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x214c984a drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x27293cf8 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x334a886d drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x40277da9 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4d3c30c9 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5e538c97 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x655baae4 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x73494057 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x948517ac drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc288433d drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcc6c3ce2 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcf6868dd drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd57285a7 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xebc7edc1 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf15c62df drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x867436d9 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x05b3df13 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x07a21eaa drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x07ab8ef5 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0b296fe4 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x188dcf51 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2bd76ea8 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2f0dffeb drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3937879e drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x446fd2f6 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5325ee35 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x553c11ef drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5678c972 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6de3751d drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x794a039e drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x84d6a353 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x882c83cf drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93c440d5 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0142717 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa5a19ecc drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xaefa0013 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb39016c0 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb673ff5e to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb9baad6e drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd83bf235 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeed9855d drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf939abee drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfa65eb12 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0d0a0da8 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x0f93d6a9 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x1bc7f707 sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x57111fa8 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x7d49b45f sun4i_frontend_init +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 0xac2d0cf8 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x413b92ae sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x56c47eb7 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6aed1bc3 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x7c903ef3 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x87c82a20 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xfbcaf5c5 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 0x4c29c0c9 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xc6ea3a14 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03d124ef ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06f42adb ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07e11c6b ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x093b89c1 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fb43aa7 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x117625f9 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x210767ba ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21e115fe ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22992777 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2d0d725d ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31466cf4 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x344c3c9c ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34ed95ed ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x372eaf52 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c39d378 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e6e8540 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ef5a3c5 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x40de938d ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47ea25b8 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b0ec9ce ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d3d409a ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f1a4d33 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55e5e771 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d0c6482 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x603f8cef ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x620c7920 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x639617b2 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x647a406a ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x662ea872 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6be70190 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c88d83b ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70d4fb81 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8400eb11 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bc57f61 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90cd1b03 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99227f2e ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9a40f97a ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c1ce6e3 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f8a4504 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5afec83 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf384a2c ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2c222c8 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb578a2d5 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb807ff9a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8a28ba1 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb155e25 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc381a0b7 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6ce0bfc ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd07f1b9a ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2ca95f0 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2ce9dfb ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe11a1277 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xece7a43d ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2c062cf ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf52aac56 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf68cac6a ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7c7f1ce ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9a41777 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfb00921e ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff0c3689 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0133e961 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d0d24a7 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x12a78f31 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1ad1dc47 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1d59a528 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x204253eb host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x219cf4b1 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2587548b host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x25a5bd88 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2a008b73 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3535a19c host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3e357952 host1x_job_alloc +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 0x528fbc8f host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5fad1a6f host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x64170877 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x66dc6311 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x698ca67a host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6cba147b host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6f089e49 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x785626db host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7a2c83e7 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7f15ef64 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8fb0b2aa host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x902c35ce host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x924db776 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x945c133e host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa83966ed host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa92b2456 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaac78623 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xaf7e3eda host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb10a1c4f host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc78e89fa host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd369455b host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd5c2301d host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd600257c host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd68afefd host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd8f1d0ac host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdee0d386 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe81e24c0 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe9f12588 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xedbedc9b host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/hid/hid 0x77edb263 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x312d813a vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x79f08979 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xffc34c74 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 0x9b311969 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 0x0ce1c74f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xddda14c9 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf2ecc40b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x84c68f69 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbc3538d8 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x78b4fb00 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x7855002b iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xcb69e292 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc1e33f49 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc396a227 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x32a510aa mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xc48b6c0c mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xd69202e0 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x8fcea7af hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbc27fa5e hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xc5cc5847 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x97139682 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x5eaa8251 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xa75b761f st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x0e8a3872 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x182e9cb7 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x1922aa46 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x1bb46620 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2b6a8e16 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x550d13c8 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7a78eea1 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7da612f3 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8574798e iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x919cab0d iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x9bb5a308 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xa77df961 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa7ba3585 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xab5c1292 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0xabb8e891 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xac3b4c7f iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xd01ad1fc iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xd40a23b5 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0xd970382e iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xdc869d22 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xdfd29a71 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xe0ac01c4 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xf207f859 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xa146d1b0 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x4b3cf3d1 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x84efc587 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8f93e8df iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xc4e26fb0 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x870ad0c8 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x8e711993 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc3a3cd8f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xeeedf90f iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4035ecdf iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x60acc7f5 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x042d72bf bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x347ab04e bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xdefc6d2c bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe6f38f75 bmp280_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13d7dee8 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3ee8e2c8 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4f05f6ed ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7120d62c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7d0875ed ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8001946c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x87d94a7c ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d119fd6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb5e18ab6 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc43c2ce6 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc726c9e3 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd25810ad ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd4a607e6 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde8fdd6c ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe955aa64 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 0x02ab8eb6 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03e50b36 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x077ae4cc ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x096ad66a ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3dd5e1 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d8e073e rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ec102b6 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10787ab4 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x109bd4ea ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10cc9844 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1228a1b0 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x137f1b56 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15593f03 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156dc4be rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x159738ba rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16c716da ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18ae738a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18b4029f rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bcb17b8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21a81456 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245ad962 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x255504e7 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x256a1409 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x257c44d3 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a9c071e __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d7854d5 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2db06b50 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3098b95a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x309e3e53 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x318a96a6 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32344038 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e9410f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c49323 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3761d0e5 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38f3ed95 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x392cea88 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x398b61a7 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b26e487 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d67f5cd ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc6a8e6 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e473dff rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40111d6e ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4012f67d ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40d43c87 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4242132b rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x431c3f28 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4356c0d5 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43889f7a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x439ce33c ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4499caf3 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4633f500 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x478186b3 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47820055 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49f66d19 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a60f4b7 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b9ab9fd ibdev_notice +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 0x502e9939 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x508856bc ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53435706 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54d5de86 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55985093 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55d747a2 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56c768d9 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x575df0e3 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57787412 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f0ccec ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f585d9 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57fe9796 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bfb1286 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5de69611 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f706b18 ib_set_client_data +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 0x62158ab3 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6356a9b6 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63a9bb2c ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64276671 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64b0d53f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6500f5c4 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x667e80c1 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x679f260c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69da1725 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ac2d423 rdma_init_netdev +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 0x6fbec13d rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71639437 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x754d388d rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78383b9a rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a019846 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bd8a2c3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cbe6bb5 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cccdf0b rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cee1594 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ceef616 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1b11e6 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ffc8cb4 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a1feb1 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87dfb14a ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x893a484f rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x897edbb9 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ae00fbd rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c485ee6 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ceb9c03 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fefe361 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90a49b67 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f20cd1 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f9b3a7 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93abb85f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x942fbac4 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9558186e ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x977be7c3 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97a582f8 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97b177a4 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9abe5f4b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c86e6ca ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d2cf064 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de355f4 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9efc1f79 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f0ef79a ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fbc137e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0efba11 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3c3e075 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7b1e02f ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9990451 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa38ddda rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabe5fe53 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabec2deb ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd1cf94 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad37d6d4 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4fe5c4 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc2e451 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaee55999 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1108135 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27e905d ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e89ea9 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb31d4b85 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb649dea1 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9481e63 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaabb3b6 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcbe7ab8 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe576870 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0abd189 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0fd2cca ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc30960fa rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc36b4129 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3c079a6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3cf4547 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d08656 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4305a37 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4fd5e3e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5960db9 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6203615 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8a7ee2c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca59b2dd ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb3d4080 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc72acaa ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd7299be _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce8c61a7 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcec9d3be ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd36c136c rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3c51fd7 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda2a6e69 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda3d783e ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda777924 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc676974 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf4359ba ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1473b82 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35de7e6 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3795941 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe528a794 ib_get_cached_port_state +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 0xe760b311 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe785fd15 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe976ef2d rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea584dea ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec1a2fb9 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed302c33 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee309d3d ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf031940a ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf51c0a45 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a51775 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf751c731 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e1eca9 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e33d91 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8ce4e56 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e9bf12 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9c70acb rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa15f686 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa200070 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb5c7110 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe1c5be7 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x048dfc7a ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x109c4d91 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16ac41ab ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x231e8eb9 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4779da0a ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56db45ae uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58052663 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x58e1b44a uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63048d58 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x65d1aabd flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x680fd4bd ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72339457 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7e66e0ff uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8930bae7 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8aa4323b uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x910c48db uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa21a3625 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7c0ae54 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac947d5b flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb1896602 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb3bf8622 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb6bc18aa _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb79b15bb uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbdc8c1a5 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc50d2ebc ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9d7e077 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca7a8322 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc100883 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdab27756 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe209842a ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe62e93bb ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec4aa240 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf036b1ab ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf451e879 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf76c03b8 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf87a9534 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xfd771dba ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x207e517c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4ca5593d iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x66ab627e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67c31d65 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7b868d23 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x829348e9 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1a6f2a4 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad363ec2 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x064ac119 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2788e30d rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2bf500d1 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2e802f25 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a93b6bb rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c45bcb9 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43628034 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x501e1eae rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53d56975 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x545f64e0 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5bca433a rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ffc6b3b rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ad3e8a2 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6e356a88 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70090cc7 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c25c683 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8133ddb5 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84f32133 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x957d461c rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x96ed758b rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9bd7cb93 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0893a69 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6961ead rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc20cecdc rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd280e637 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6470c22 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xda15d044 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf027929 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdfc56181 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe09398ae __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec86c18b rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf9260f64 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf946f9d0 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb296896 rdma_connect +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x12841689 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2708ae7b rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x60280e93 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xb3353666 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf084bc00 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfadc6c43 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfbc397da rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x2e2a931b rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5489ff0f 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 0x762de89e rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xb3f8118b rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4db5f053 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x52571f75 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8438f31e rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa0a8ca68 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcd1d7656 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xe639e341 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7d30ff7c gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x94b7798e gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9837d6cc gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa809d703 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd2e4558d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe0744517 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe22590a2 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf9a129a1 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xffad90e3 __gameport_register_driver +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x38ea61b2 iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa127fbf8 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfb497385 iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x696244a9 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x39254b4a ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x44c64ebf ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xdeda7677 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x5632b738 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 0xb54a6a68 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2f6a9960 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3bd6c0ee sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4ea17fb4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x96eee9d3 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcab47cdd sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2d538fee ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6e48de11 ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x55c67110 qnoc_remove +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xe801a207 qnoc_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3ebbad2c capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x620978e7 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x63ad026b attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc3eb62c6 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcbf38778 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 0x38e3a038 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x538c94ad mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x55c2e870 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6b81ca91 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2e5d52ff mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x68915eec mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11459097 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x131824dd dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a0188c6 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2564a8ab mISDN_clear_bchannel +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 0x3245ce9b mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x371bee5a recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x376ff5ee bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b0a3070 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3be82192 recv_Bchannel +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 0x58dbeb53 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7c7c7fa5 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a498077 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92fb0ea2 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c3dff74 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dfc8594 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa996513c mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaa3c4283 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb78229d7 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb847699f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc08f7e8c recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc98018e7 mISDN_initdchannel +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 0xd9474cfc get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb323db6 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x67d17cce ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xd3c06e82 ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0xffb7b9ab cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x02ea0976 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x4c13f35a omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa2984ed1 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x3f8a5303 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb3ae1831 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc2715d7f dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xccc51b79 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1f745b2f dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5204687c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x65732b2f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x65e814a8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x817b1f34 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xaf482bd2 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xbaadfee5 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xd3ce327f raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2249cf4f flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4eaaddad flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x94e73b27 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x95e121d9 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9b8dab85 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5244903 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6451a9b flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab855b5b flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb0d342df flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd37a07aa flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe27f2c5f flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeae8b0b8 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf5169dbf 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 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x783b8a9e cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc0b2599e cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdb15fa07 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf4517299 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x26cc2de5 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x99bd7b22 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x77ecf76b tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x13c17461 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xbac777bc 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 0x3195d9f0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xaf0f4079 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb3b77edf vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xd57ada9b vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xf1e753da vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfdd6205d 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 0xde05aba2 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01992723 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04a176dd dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21d5445b dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f0fa62c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f6709b3 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69b2655f dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x764417a3 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b945407 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bd42855 dvb_ca_en50221_frda_irq +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 0x941bfbf2 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fbbd8a8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xaa158b18 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb8ffe469 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdbe2288 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc16a50f8 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1dd9849 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc97efdce dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd7dbe028 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe48788af dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb1058e3 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed365fb5 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf5ba637a dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf621995b dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc4615f1 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1fb088aa ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb8b0f58f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x000faeae au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1f0fa71f au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x309f488a au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3704fa93 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4fd62b88 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5bf5519e au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x83db3c38 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x86fb34aa au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd77f4839 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd27e00a9 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb144056e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x4274e938 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xeaf5d0de cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x5964a357 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x2139b865 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd6a1088a cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x33b92535 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x0654407b cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x13a72f9a cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe3d2d7a2 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x065b5a2a cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x18aaef17 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xafdb26ab cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x1544b728 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0331f641 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x222f835f dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x874bafd3 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb24ac83d dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xed2c93af dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0a78555f dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x141a0138 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x26bbaf8c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6555e5ff dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f016b54 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8079ec8c dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8d981652 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8f7ff31e dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x90c730e0 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbe7dc6e7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf1f5353 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc120c7b3 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca0f5bb7 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd6a49e5f dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xde5bd55f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x8dd77848 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3a523179 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5b93d189 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7305ed76 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x96fedc17 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xbb9f3797 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd4f53a60 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x55244a52 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe6108131 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe7d8072d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfa5b7658 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xb6d5d86b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x2db25fdd dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0c9f1fcd dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x12f53514 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x153ab902 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1f0349dd dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x49143775 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x552f9ead dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x65d43353 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7e3457fe dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8273d684 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9a10a469 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd5d22fff dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xde850038 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfc7d19dc dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1b7d20a1 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e138699 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x36b89fb2 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x42789659 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7cc01635 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x04246221 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x357dcbb2 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xd8f295f4 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0b5afb20 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xfb78cd26 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x371c4771 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8ebd5d7c dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9cd26319 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x0246733c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x03ca1ed0 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xb0a38dec helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xa022e2a1 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x371406d2 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf97339a3 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xcad45e74 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x69277165 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x1e49d2dc ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x7d2e359a l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x202ad596 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xa9b7ee5f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x2a2eb34d lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa915a48f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x1b8cf5b4 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xafdef610 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x39c9dd1e lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x1fa1ce8b lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x12053754 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x61bfff08 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x2cca6fe9 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0500a992 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf4784cce m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x39806227 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x1e8b163f mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x65c46d24 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x8d6c36d2 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x2e845c6d mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x833ec97b nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xc1ee835b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x618db9a7 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x1469f908 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xa8f8388f s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8baaa492 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x45ab2ada s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x572d9a8c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x851b894e s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x0e9ff8e2 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xe41e1c54 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf4a0dae1 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x8ce81c68 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xe18b3544 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xc3db9ed4 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x6550de75 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x2679b912 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x5887609d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3ae53e43 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8b27da14 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xbbd7c42e stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7e27f986 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4a5f08ef stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x5d689835 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x579af3a2 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x333ac3a6 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa94cd64d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xe3f6ddda tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xda47f50c tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe1caea78 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xe310e4ed tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xce3c397a tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x2d751d7e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5274369c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x40100b7e tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x5a691466 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x734705a0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x8a4a4c7c ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x707b5663 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7ff97aae zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xdd847b85 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x523fea16 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf7787850 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf6d6c4ac zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x15ad4b22 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x17a52d96 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x45fad7d4 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x81dade39 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x98d4757b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xac86c361 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf4ceb362 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0b57b914 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x14709f51 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x77f1b384 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd66f2418 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x16e64582 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd42215e2 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf0729df0 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x18fe48b3 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1f480c30 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x24446b2a dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x32957dfb dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x53421241 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7722a1f8 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8207bb82 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc1f0ee0c rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdde13732 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x3bed1f2b dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x059d952e cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x45f8b7c9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x84f24acb cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xefa5f9db cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfdd62183 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x1ab311dc altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x0ca5af81 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1dacdf2a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7b82a19f cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7d7de263 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x94cc88b6 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9ff9e377 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe7bd95f8 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x67f3467d vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xc70d23c7 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x229bfd26 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5533633e cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x94321c29 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe692a2a9 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x25411f08 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3dea0497 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x542e8e1c cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x85a7b9dd cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaa77799b cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc0919236 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xebdafcaa cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13489c10 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1aa16d59 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x21a14271 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2abb8941 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f0b83b4 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x36d95e11 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3ef92978 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x43796720 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5664d6f8 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67cde77e cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x693b2870 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7336c03e cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78687298 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x881a5e1e 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 0xa10cee1f cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb1f658b9 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc9350ee cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdec4b6f0 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe06acdf8 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf1bdaa60 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x7a1f8252 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1060780d ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x11f49cd8 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2298de81 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3bb12445 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5990112c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x682468f4 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x874a9fd4 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8dd19f5c ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9241cd15 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x952d2612 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa7576e61 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xacb92d19 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb31df930 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb9ed59ba ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd3b29c68 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd546270a ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf345b14f 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 0x14bf5d2d saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x30e316cc saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4cbb38a2 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8ae6bdbc saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9a227664 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa64f091a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xac64cd40 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb36501ab saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc293bf64 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc6ab8976 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd49c774 saa_dsp_writel +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0a6d09b7 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x25ef2e2b snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x46f877f7 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa06c5488 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe7e802eb snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xeb9379d4 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfc924fba snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb6a87d41 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xcc61847b ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa5b303d6 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xfc707c4d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2d4cce46 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x43f18948 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8c7d34e6 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x3099575c max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xc7f67999 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x5e5cbb93 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x43c0299b mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7fa62e76 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xe6c56cb5 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd2b07d72 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x18435747 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x4b0ed3e2 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x018c1d79 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x10f50f1d xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x0fc7aa85 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcb3b8a35 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x28c60980 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6724f54e dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7118fc5c dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8761e9cc dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6ef0616 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc4d8f5cf dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xeaf56437 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf9cd53b3 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfc900af4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x144ed6ac usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x15f12f29 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x67c012ae dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3f532b9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb46813f4 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xed149810 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x32266e0e 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 0x1759e5f6 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ec9a80d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5acf866f dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6e929f90 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x71024129 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xae62abfc dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbd60f9ec dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc3bd37e7 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xecef1907 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x1d8fb835 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x81893ea8 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4ad9a4e8 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x80c38915 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1450320c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6908330d go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8609c8a4 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x90107fc1 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa48b8b0a go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc02b7e69 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd4bdb789 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd9adf428 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf4bc76c8 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x065a9cd5 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2a057232 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa5b9f643 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa839331e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb49423bb gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb5d18363 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc32f7fc4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd3bb9962 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7f0af698 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xa212a4b2 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfd71b641 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x00068de5 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2bc18c2f ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x53a37134 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x57035dee v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5cfd17f9 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x5d59357c v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x612e761a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x99057d06 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x4f4f5656 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x739cf8fa v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9c59865a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xadbac0ed v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00c7f356 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0806a983 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a10fbac video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1495b6d1 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14d3a267 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x15041f7c v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bb47dd7 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1bf9bbe9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fe92528 video_device_release_empty +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 0x31effd28 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32807406 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d06a3da __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4c8dc1cd v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e75bfab v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x51019538 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x532836d4 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x563c1510 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c5211e7 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67172ec9 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dfaf4cf v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x729ab74c video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c8066c0 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fa4d834 v4l2_ctrl_radio_filter +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 0x8af2096a __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99c8a314 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa580f639 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa76df0b4 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf5c260c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf8a9f39 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3c0268d v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc24e21c __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1ad1e4b v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc28e3aae v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc862dc3a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc882a64 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16211f4 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3b4b3b0 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd81175f7 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd88e9d36 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe06a9226 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe341d69d v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9c3d9f4 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec7ad197 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf206fedc v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4e33b6e v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf99fd74c v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb2306c4 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfca527ab __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd3c2780 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdcbf253 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffeade4d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x092d3a6b rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x91cdcea6 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa59ffd89 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xa8ef39e6 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xc8e4b813 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x03577771 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1632c1f9 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7157e504 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x82e68bfc memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8e168304 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc9f4afcf memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd632ffe6 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdb3e5dd3 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe01e1192 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe961b1be memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf4f31164 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb1e164c memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0439835d mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08f453ce mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0fc7560d mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1905f964 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24ab836b mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x24d229cc mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x265288ce mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x270048a5 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27e05376 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32e93fd1 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x549d57b9 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x66a829f9 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ad55cd3 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7608819e mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8cde70f3 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x945a9821 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa99c7cd8 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae377181 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb034d4ae mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb56ce90 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc276989 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd08044e3 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd226facc mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd44aaadc mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe394bd5e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe60d3611 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8dd5c9a mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4f57753 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf69167f6 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0b4b13e5 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11253e34 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18ad66ac mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x24a2cca8 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x25e7b9c1 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b550475 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x380d9649 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45f7739f mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x510262a0 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e4858d6 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x61381e23 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67a594a2 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6929acfc mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7dbd91e5 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x854084a3 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x856bfc07 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90b70eb0 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c8798af mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa24ac7b6 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0ba4c5f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb21fd488 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd43467fa mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4d063cb mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9f9079b mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7c13dfe mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc5e83ae mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd09ed59 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x1406e467 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x2b7f52ce axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x5fb32e05 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x376e5e82 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x44d9b3e1 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xdec6d954 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4285da82 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xccb053f4 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14a2cbba mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a7a3bcc mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3edc1ed0 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x83549f12 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x90100c71 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa6c430fe mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcaa79f8e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd152f143 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd2117077 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd8e51034 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfd2df643 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 0x6f4ffdd6 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x722a1259 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7d265c04 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x9f42ca56 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0xdf72abed wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xed481074 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x19fe3c95 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd90fd301 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x6616efa6 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x8ca42bc7 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x04c7c70d tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x06bca496 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x2b891d3a tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x34fb888c tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x3788e116 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4cf15167 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4e032888 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x661b102a tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x997e71f2 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xbeba3512 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xc2275a5d tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf29a9566 tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x049c041e cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x077324fe cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x0fe5023b cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x12a2dbcc cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xf1b31a6b cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x55881e8c dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5c8d42b7 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x952e50d5 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xcc6e529c dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x22748f88 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd637af43 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x01fce01a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x297a1c1d cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4b937071 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7d9b4010 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7e746d53 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe70fe85c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfc272f27 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0a54b290 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2f5639a3 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x436a3a8f unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f41b514 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2d66a686 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x92da03eb lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6fae5354 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x105dd754 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x6289290f mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xef0d27f1 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x09f6f74e nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x13a9aed8 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2330aba9 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3a8fa91d nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3ca67d2f of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3e4a1a98 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x41a4ddf4 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x499c1149 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a9900c2 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4c620347 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x60b49bbd nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6bdb617b nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6c38d875 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fb43697 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb2331ab7 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xbb53b4db nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcce71212 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd2d5fd25 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd94358d2 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe76a2536 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe8c14e1a nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xebb502ab nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x20a2ad06 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xc043c8ec onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x44f9b050 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xaa343f6d denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x0e9b20bc nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1ca05336 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1cced04a nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3b89c57e rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3cfba1ac rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x50cd1929 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x66f9c5fb nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x723feb8a rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8d61f028 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 0x90bc81f8 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa22474f0 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa46539c1 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xaf3793be rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xafc8b7ad rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb70e77bb rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd6934988 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe0cffe6b nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x00538a86 elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xb016dd35 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a7b322e arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4127d052 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6424e2bb arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7ee6bcf6 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x89caccbc arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9fac541e arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaf69055d arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xba34008c free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd6556edd arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdff635d4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe6b1cb12 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x36110b2f com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x525abdc3 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd12ec6b2 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x75443c9e ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xc63ca514 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xcff6416b ctucan_suspend +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x108ff623 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1911253d b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b48ee76 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1ff82215 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3498310d b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34a88994 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35260620 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35912552 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x38ca067e b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4ad9df67 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d024c6d b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50a660d9 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5812c9f5 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6b6e8b1d b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e69a466 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x762c05e0 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ae42b50 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8338311b b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x85062c7e b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x897f241d b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x926d30c4 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x94a48803 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x962d398b b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x97dad01f b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e1ce1d9 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9e6c717e b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaddf2389 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1a66606 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc140a733 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd24c51ca b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd84c0330 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xddda381c b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1801201 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe46f174f b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf04afcbc b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf09de871 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf1e46cc0 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfa4a00e2 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x23b6288b b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2d5e3775 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xc3d93282 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xfb4e44c2 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x05bbdaca lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5fb48a00 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbc19e201 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xbe9d0579 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x71491bd2 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x2752fca7 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5b843525 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd10a3b43 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8e603b82 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x91f46e16 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf2a56784 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x289c943d xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x37e3fe6d xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5cbd64dc 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 0xa4b13f71 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 0x20f288fa ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4204fe8a ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x67e1ece3 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7f99c404 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb0a5f02e ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb45daefb ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcc272dce __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe5e5dab6 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe77f170b ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeb866c11 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xf04bc398 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xe1637e75 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x2cafed57 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xd1642f6b 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 0x0d0ef7ca t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29cdf557 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x404b6e90 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x478e1492 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4980bc19 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x55f72b97 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x608e59b5 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ee23403 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77761a67 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9862313c cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99260f51 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d1e7ed0 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9dc08e00 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb23431aa t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3b63028 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbc553dd cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x04f1b502 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e14e392 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18592442 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28d34e39 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2afa2f3a cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31514459 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33e951bb cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d14adf9 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d770693 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44300ea9 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x45aaee25 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x524b5b72 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55b70c67 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x61c68c05 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bf69430 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x702dab2a cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x730e5b37 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7849982f cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a28e431 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x819c8769 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x83310be3 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84af67d3 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x891a5ef7 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8df043f8 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9386418a cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x953971d8 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x99146ef7 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ad0dacb cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b545d2d cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf33dfd1 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb86a2219 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8f4bfdd cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbcdea99e cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd637c33 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc83b12e5 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd0125b3 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd9fe74ad cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdea75280 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdf659283 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdff004bd cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb198769 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeec8ce1f cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2eb8413 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5a73cbf cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf89b9315 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa8473aa cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x11911083 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x1bdaafe1 cxgbi_tagmask_set +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x255ab30f cxgb_get_4tuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x46a69665 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5d2eb492 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7cbf3d1b cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xaf324b42 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbf516877 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf5972726 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6bb02a6b vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8df935dd vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9eb3cfeb enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xccc97897 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd456c87a vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf9bb9d6a vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x22bb7671 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 0x818da338 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x2166d5fc 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 0x32c3318b enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x45e5ecfb fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xbf90ab25 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xd23be3f4 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xe3bc47fd fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x1bb9c83b hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x22af3d77 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4b5ef297 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x92e2cc9a hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb2292c1b hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x1d485eca hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1ac54dd2 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x348e49d0 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x48fca23f hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x4bc75a21 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x86e9aca3 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd7ebbb50 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xd99ea702 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe3f3e67d hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x3a17e47c iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xa67326fd iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0771307a otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x19764f59 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x19becb7f __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x32644842 otx2_mbox_alloc_msg_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 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 0x52b549c4 __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6365a74f __SCK__tp_func_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x6670d589 otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8bcdeaea otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x9431e432 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa5777102 __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa89e418e otx2_mbox_check_rsp_msgs +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xae7e9cf0 __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 0xb7ca7f19 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xcbebd58b 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 0xd55e18ce otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xdd9da7da otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xde928bd7 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x13bd3ab1 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1a40497d otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x28d2c1a7 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x30768ba0 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x323e5cd6 otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3db25d84 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x41cae096 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4bd9e36f otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x58ce93d0 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5fd18137 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x66c23817 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x737ba2b4 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7499fbe4 otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x7bd436a4 otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x897c5531 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x89b2b4ce otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x91b43736 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9e1eed52 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9ee638c2 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9f9b90a8 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9fc11565 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa4359eb3 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa7a84900 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xabce20d1 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbe86fbb3 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc2bb6868 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc3f21340 mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd9d08b0e otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdcd9212a otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xde3c9b33 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe1ded59a mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x218eb3b7 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x819f5b99 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x013d39be mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05925783 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b83f58f mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x180a069a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b929f94 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c23db8f mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf4547d mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a32b838 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x317fcbe4 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a70cc9c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f71f465 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4537955e mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x497e9ef0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c44b97f mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c11475 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54a808bd mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x566a999a mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ab58e31 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d607038 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65218fc6 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x705a9054 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7468eaab mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7639ba37 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f25b375 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 0x852a52cc mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cbc767f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e12917 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9650e0bd mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96f0fcb3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9948ef78 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4ff919 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e7cae59 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa50d1fca mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab53bbb1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb62d838c mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc4953fc mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc212ac80 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce0351b1 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6fca2a2 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2422681 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe61b756d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe948081b mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0a7af34 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6039460 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02b60e30 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03be6b63 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d838d3 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05a1102a __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b83fee5 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x106f68e7 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12079c72 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x132f74ce mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a1283bc mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae7ef55 mlx5_core_create_psv +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 0x1e17b005 mlx5_lag_is_roce +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 0x205e103a mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21056e0f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2153af8b mlx5_packet_reformat_dealloc +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 0x23aceba9 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d14a20 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249ed156 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27575d08 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28183e9d mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d916d34 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f7ceede mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +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 0x33d8a23f mlx5_fs_add_rx_underlay_qpn +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 0x34901433 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36c4bbf6 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x389fa1fd mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39199912 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a3966ad mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4022087b mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a39409 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44ea170b mlx5_query_ib_port_oper +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 0x4e156756 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec614c1 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52290396 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x535a9dd7 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5536204f mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x553b3a28 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 0x57eac3e1 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x589b1440 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ab947be mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd51420 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd737c6 mlx5_core_query_rq +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 0x618acf29 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x628014af mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66bfd249 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x697ff395 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69b79520 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cda491e __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f062360 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70137964 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7081e390 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70ea05f3 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71bd8788 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7793c5db mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x790a7fa6 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ae50395 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 0x7b3b6399 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f879554 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbdc338 mlx5_fpga_sbu_conn_destroy +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 0x852003f7 mlx5_core_modify_cq_moderation +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 0x8783a135 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87aa876c mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bd2df04 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cc06bb7 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fffe802 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90b3bbdf mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e9e17a mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90ffc6d5 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93be1165 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95e3a98d mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97ad5d4c mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x994c6e5d mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e6e18e1 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f333238 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa39b03a4 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa46e5f15 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa66c5e0f mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa97117f8 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf76ac15 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb14117c4 mlx5_modify_header_alloc +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 0xb5f4f776 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6b53521 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 0xb88eb7c9 mlx5_eswitch_get_vport_metadata_for_match +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 0xbc88f0d6 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe73dc05 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe7b7809 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1659621 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1b459a7 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4361909 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f2b31f mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc871282a mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc99a5222 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9eed19b mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6c6d11 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb17b00f mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc58e805 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccac925f mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce1a2078 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf32053a mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd055a6a8 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0583696 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd105b050 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1351e14 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1beb3c4 mlx5_rl_remove_rate +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 0xd94b07e7 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb252092 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb42eb16 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbac3d9f mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc5fdf8f mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xded3da7c mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeed3efe mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2778a11 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2df719d mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe66f8c0e mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe77a7502 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea0309eb 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 0xee15075e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeeff22cb mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef3e5ef0 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef76067d mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefce7347 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf295e54c mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf544b22c mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5bdd9f3 mlx5_core_detach_mcg +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 0xfb2df3a3 mlx5_debug_qp_remove +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 0xfe7419ad __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x09553d17 mlxsw_core_port_eth_set +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x18b0ad00 mlxsw_afa_block_append_police +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x19a8ccb3 mlxsw_core_skb_receive +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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30e07f3c mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3541e82c mlxsw_env_get_module_eeprom +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 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5525737f mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a6bf474 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5c1d343c 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 0x6371e429 mlxsw_env_get_module_info +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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6dfa5f86 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7174d070 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x84c93bd5 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x931775a2 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0x9e2e567d mlxsw_core_bus_device_register +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 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc0a72731 mlxsw_afa_block_append_mirror +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 0xcd732cbe mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xce3e58ec mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcf0aecad mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd1257581 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd169b102 mlxsw_core_traps_unregister +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 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x6ae3b2cf mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xdb12d11e mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x09f2238f mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xeafbdd1a mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x019e0184 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x01b32eed ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04e421b6 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x052615aa ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x05e8f328 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x08d3f514 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0976ec82 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11af8321 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x200b31c8 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x299efa32 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b8411c4 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31e79d98 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ee55f64 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f737c5d ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f918026 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4173cedf ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x440735e6 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44bba9f8 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x44faf718 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x458ac27d ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x463c8e27 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e52dc9c ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f8a244 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5220e508 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x582413cd ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a6a6919 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5cda8b11 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5db390f0 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x610c1388 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b476a13 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fe6c19c ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7913527e ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x792df21c ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8b9784e0 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8bf6f1be ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e2b1e30 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x900c487d ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x921bcbb1 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9862cc00 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e8defe5 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa13831ec ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa872e74d ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9ebc4b0 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xad92bc85 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae73bb80 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaea109b9 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaea5190f ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaee5793d ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf488dd0 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb08ff584 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb11d7bdd ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb31c7833 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb34b2324 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb522b629 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5941261 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd26fbf8 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5bee8b9 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc715c20a ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc76d3adc ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd3d17c99 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6b68461 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xda2cf036 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf7bf9db ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4db9c8f ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8780bd2 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea8cb451 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3321b8d ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf55e8cd0 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa989dd8 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfab42b10 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbc84e2d ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf3191b ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfd1d2d24 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x968e20b0 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 0xab4af798 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd3494bb8 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xdd2e424e qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x2cbee280 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9ee70792 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x001856d9 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x682f0e0e hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7e5b7a62 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x82a64edc hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfecbadc8 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x4a1a15c6 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x7edf3576 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x44f5a323 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x594e2760 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x67c5e30e xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x8052d23b xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x85d52d24 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x9ebf34e5 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x54fdd0f9 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xf2aba7f7 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4cb226f7 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa36db183 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xaba3aa3a register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xdae7f11f pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xebc602ac pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x7ac4c43b sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x102df766 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x157ab2b8 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x2c78dec0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x2f54133d team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4c41211d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xb10b6eef team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xda6587a4 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xebac8716 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5cf51704 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5f91b236 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfc4c1e65 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x14e64d17 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1910dd26 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2446b054 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x48ab32bd detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5603abb2 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x56f40470 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c148614 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9d926589 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbe70a6e0 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd88c3557 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2a101bf9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x300c61cb ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46d360ff ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b8e5744 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x558c3154 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x67e22f91 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6aafb0a1 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7948a519 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7f0c7039 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8cb8bed1 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac2a621f ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd526d4b9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe32663d4 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0984c7ad ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0b195796 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13ab4786 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1635439a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x18c57a1a ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ab15801 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e435776 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f5d8038 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x26c665f1 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27a3dede ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29975cec ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29e67c29 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b35a065 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b921921 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3123f5ff ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c788fde ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4758e40b __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5765c2a1 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x591a4aed ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5a585b0f ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6136de9e ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x614d0fc5 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65443af2 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67bd8715 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x67f61dba ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e452836 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ffe26c0 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7aa76d47 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ab1f62b ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f2b3ca4 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89055742 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x982e1860 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f12eb74 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa141f5eb ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3029bb3 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa60cb758 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3f96a50 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4828c62 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb63894a5 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7f7ced9 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9da7d3c ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbe7f88df ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbf6c6dc9 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc6e4136b ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcbefe29b ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc5b2132 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd558989a ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd64610c5 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd75d442d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe027dda9 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4641e9d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee4fe0fb ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf31d7aa7 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5f68111 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf858aa6f ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdc64edc ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x00d87957 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x035d08e1 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x076f4bd0 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0905a942 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0cabc801 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0ddc2423 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0e805a4b ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e8d2405 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b117780 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2e2a5272 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37fa36f4 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3dc24641 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4a1f0047 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4bb32f58 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4f5e5e8c ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51b7ccd5 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x53476150 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5e0827a9 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x615d44a8 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x65aa332c ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7125cbca ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7cbb1faf ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x84c79ed2 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x914fedcb ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x921d1cb0 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9b1bb0e0 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9dc9ba8d ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa55dfe53 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcae4bc6f ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd24154d7 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd912d176 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdc5002b1 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xddee75da ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xde4535ef ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeca66226 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfb247189 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfd8d07dd ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfebbaffa ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1c9674ef ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x373f7f62 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x380994be ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c37e4f3 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5f5c9e9a ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x640ac2f7 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x75997ce3 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 0x98083f84 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 0xbb047be5 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd5b927af ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xebcdb8b1 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x00ede542 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0da2975d ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x125cb0a0 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15c76930 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15cfd3cc ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1dc63bcd ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x282f697a ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d3cdca7 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48620f22 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x579df74a ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5cbcbec6 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6314124d ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x73228acf ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x771f1d10 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x78286ef1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8a87712b ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa22f6117 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb5dedb65 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd27e09ed ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd58f8711 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe04d05e6 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3a5a5da ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe72f62fd ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03858a65 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x042c2efd ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0712a5a5 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09536499 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a2adfb9 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bf1c0c2 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c3c4be8 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e7a2966 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef2a476 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f4f5597 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x117f915d ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x175bff98 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x190b5c39 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a029050 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a059706 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b4fc449 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c3436ec ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2915f545 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bc7bee6 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bdac24d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33dcb7bb ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33e8b9b1 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34dda880 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x361ab866 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36f58cf0 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38513984 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3af43382 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ded1fe0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f4f3bbc ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x497833f2 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5343e9aa ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5352f793 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58e9bbdd ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5941ba3c ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59548940 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59982c94 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a240f54 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a85f555 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b49208b ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c67d0ce ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d0050fb ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x649690f4 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66b434d6 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67f8886f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x690fbb30 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x693764ee ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6da890d6 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6dc31201 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e10bc83 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e46a3dd ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fc28372 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x702799c4 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7334daf6 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x797984ab ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a86f970 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c4c8bd4 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7cd89ee9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d7b7f0c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e1e7f97 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fc4a411 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8094ef45 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85bd694c ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x892654a3 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c220e5c ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dce153d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9112b4d3 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x958f189c ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99c574ef ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ce509dd ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2e15bf3 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab3b5511 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2051830 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31ba3da ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb507c222 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb94b0a43 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbc39d6f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbcc6b196 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbea5a543 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf76316b ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf972fe8 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc04094a4 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0452e63 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0adf76e ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc1b5e523 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc33ac65d ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4597e30 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc68d8c7a ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaff8b8b ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcca25a89 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd782f28 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcda14104 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc27d176 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd0f4e66 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe037cef1 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5751c72 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9444d1d ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec4db24a ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef3a5b72 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefb3d339 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf123522d ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3681ce0 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf40d7584 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9415e30 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf94aa202 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfad7b51c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd4e07ff ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff0b9f69 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x20534c22 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x75a1f16c atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xd61ca395 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0e3b8406 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 0x44ed849c brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4eaab34e brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x51b8e70b brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5547bf28 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5abfb51a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6e61cb8b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x91168f3d 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 0xb53dd549 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbdbcdbf4 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc4ba9a17 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdfab7bd2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe2f4d07e brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0eda0788 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x129e405a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x225918d6 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x286c1c36 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x415a9930 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x696442ed libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6f05d7c3 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x70c4573d libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7cce9f47 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a82f26e alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8f052520 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9670d064 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9f2eb254 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc45ae304 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd6ab5894 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd8ebeddd libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd998486 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe047616f free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe77591ee libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfb12a335 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01a5e726 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08c3d612 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0abff8b2 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d35db38 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d35e442 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0db84144 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f9993a1 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x103c8b67 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11da895a il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16097418 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1af304cb il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ea25ecc il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2277bd92 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2474e9ce il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x250dba8a il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ac0cf88 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f4ed6e3 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3323b839 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x340db599 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36a4ccc9 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b855c8b _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4083cb85 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x421f9541 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x44687994 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4737b469 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x492d3a3f il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4a40ecd4 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fe1e897 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x515d1b75 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x567acf39 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5791b697 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5836d6f2 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5849e102 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58a2fb49 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b3899d3 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62b0db5b il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65a0c727 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x671eda77 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6fa21602 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70fddd42 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72e2b063 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76525d37 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a170725 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a1b9ba3 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7d704949 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7dc470be il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e611833 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83721cc8 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84e77fd7 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86ab2436 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x879672e5 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91f12cf4 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92f58b1f il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9715b88c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x993a3420 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9f687f6c il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0d0f2aa il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa1b73b46 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa24e1206 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa257df49 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5a1115a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb0423db4 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb20b277b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb55cb667 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb761a2c1 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb9e73749 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbc4351e5 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd8170c7 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdb6bc02 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbddf58be il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0841104 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1a898f2 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8a87fee il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbaabbbe il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc6baaa2 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0eadd96 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd2199228 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6dcf852 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd7cf8cd2 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd897e7cb il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9da1b91 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdad4b4fd il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe25ffa28 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe39dcec3 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe47368d5 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe5660278 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6e37d5d il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe77ab43b il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe783cce8 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9e6230a il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea95daa7 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xebc36637 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee89b4b4 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf18e80d9 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf194c31f il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf26e7442 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf278146b il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfed872b6 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x320c4e9f __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3d23c104 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x970bf4ef __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9d665d4b __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xaaafbd3e __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xb3303862 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd1e69877 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3bb5e663 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x43559992 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x473d0283 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x541a22a0 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5a53d301 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5c481bbd prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6a8d815c hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x74ec6155 hostap_set_hostapd_sta +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 0x87ce341b hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90466bd9 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9b0d2d70 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9f7be17b hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa300f2f9 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa333e807 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xab95c72a hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb85519c5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb8b63540 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbd848c25 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc1ffbeb1 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc6ca2db0 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc8d3dbde hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcb17c2dc hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd5c44d9d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe2c96e64 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf2061deb hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0429b310 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0fa34d2b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x10073049 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1b3df59b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x40b1ea9d orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d97d7c6 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x54ac42c4 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5c995b79 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5ca5be75 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x61e6b925 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7f8ee05c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa068125d orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe0fe9ae4 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5dac972 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf4ae4657 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0xd5dc40fe mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x395d5e1f rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x029b8da1 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04765530 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e299d39 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19fcf7e1 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 0x2de91549 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ed2fc33 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f78b9f1 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x301013d1 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x321eb000 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3857a09f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x53fb90a1 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x545de82e rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e3cf117 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x641c1d7a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x648c73fc rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x657a5ec1 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e0c1e27 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fa17722 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x836e3a8b rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8933920e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x902e56e7 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ee3fcaa rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f52ba22 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa14f7a38 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0cfca62 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8a2cbb2 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6b0aeec _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc743ac33 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc877ea14 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8b2d26e _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc95d1774 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcbfb22de rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd36b4fa2 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdffcf3a2 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe39fac1f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6b24661 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4787eb2 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4d3fde6 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5cb0444 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf62d2f14 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb576ced rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x82182372 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8d92049a rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc1ce28f7 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd69d7910 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4979af3d rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6e4b5b5b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6f202aea rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9ab393e9 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x103861e9 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19cf6198 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2222cea8 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38cba568 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x390cbeb4 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4be2c352 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x609070b9 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68e449f1 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b5cc953 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7178d59d rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7332732e rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76292afe efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85169221 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x88a41f53 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dd720cc efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x96e10f7e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5d78e74 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabae2b72 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1be42b4 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6ce7ab3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8a70696 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcaa98760 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb575356 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce988fbc rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3686fab rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd940d8a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf6d03a9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe28fb4ca 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 0xec889236 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6317734 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xafd7dc12 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x3217ab9f rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x4437a6a0 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xabf5cd9e rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0194a76a rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x034a13a2 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07465df3 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cd6add1 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11f1b27a rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14882564 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1910e128 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c9bb403 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20341fcf rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24e68b17 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2b499ebc rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c1e7a48 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2e70b8ed check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2f8e46f6 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x32690099 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3451f004 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x380d4709 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b0d0043 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3ecb017f rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x40fb6a7b rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4839bb8e rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48433941 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f53b63d rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f6375bf 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 0x52a0e850 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x567c78d9 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58451fcd rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5de056e3 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ed4cd34 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x65369d39 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6daecdcb rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f4bcc35 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7575a65e rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x79466eb9 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8619f29d rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87e20c9e rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8cd1d32c rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9238c76d rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x95c62fba rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa3c2034f rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa53fdcd4 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa883ac8d rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9df403a __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbe3fec79 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbea20deb rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc5f29a5b rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb367509 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcc8507d9 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf389e78 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6a69c6d rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xde4c5ea4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe1bcde1f rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe7da4a05 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf0a008ee rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf2a04db4 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf829cfcc rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfb7762ec rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe00d042 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfe3a3124 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffb5250d rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x1ca2ab53 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3930dfdd rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3edd1e39 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xf7e497e7 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x1c00dbf2 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xf03b456d rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02705cad rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04211a6b rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0959ad02 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a5f051b rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e372b80 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1007e355 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x125c3b2d rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2644f827 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x27612671 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c9511ef rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x316f224c rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x329a88dd rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38b04180 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a9acb2c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3e1b0557 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x406e3779 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4197c713 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45533fe1 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49a85e69 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x49d050fc rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c4fc7d1 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4d2ba3d1 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4fd19f07 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51914d94 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x545654f1 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6ecfcd89 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x75d758a7 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c6bc750 __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x81c312d5 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x841e92a3 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x853f1bbd rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8dc961fd rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c5f3039 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9d1736de rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa65dde7a rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae3678c2 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb183b237 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb2ae7d00 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb718ff4d rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc392fb45 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc4e7e374 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd0d887d4 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd1032fe0 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef62dca7 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0e871ab rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf28ee403 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf3260b1b rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf67076bd rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf6ae74b0 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf79be222 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb1ff256 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfee7f3f4 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x03861c9c rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x05685cbf rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x254990f8 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2f19b2cc rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x34e510e6 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x37715ad7 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x477b3868 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x599559f7 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x748fe25a rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x85ddbaa2 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x877ace83 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9b623d4c rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xce42d8b9 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xda7358f1 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfbb6cb72 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xb88576d3 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1147cca8 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa7000b5f wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xb4ccb329 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xea69fa43 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x24b5f876 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6e9fd8ad fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x4eb2476c microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xa7358e68 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0de66926 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x74ee646c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x96b878b4 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x55115bb1 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2239d9c0 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xfc5eb196 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x15ffeed2 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7246c30e s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe617a8cd s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe7e5a342 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 0x2e1906c2 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x366add6c st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3c8c92b6 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8870bedc ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8e2a0ca0 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x94a3f84a ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa6dc168e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc11a2ea8 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc54ea392 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc5d8e3a4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x004e033f st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0342d9a4 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1a173ef1 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c632f0c st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28efdccc st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2da75aa6 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2ed308c8 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x339239b1 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3ed5fe14 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4511d89c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5626e612 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x673ef5b2 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c5f0e06 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7a0340d0 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x970a6e62 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe402297d st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf095eff3 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf262e3a7 st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x020e3fc7 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x03f1691b ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x302cfbbd ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x324bc9d2 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x50dec124 ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x59367eec ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x59b0c73c ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x62b8bfc1 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6ccbbf24 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x70bb27b6 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x941b7db5 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa4601da8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0xa8bb0b85 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xaafdebf6 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xc48704c5 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xc4e88468 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xdc431a7e ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xdc592c6e ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xe17f88a3 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xe45ebc6b ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0eb59f84 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3c860b95 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x16f80a82 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1e90cd4b parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x33c374fd parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x37f2d372 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x41d3e142 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x44b64829 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x492dee5d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4a699914 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f38a1d3 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x70295119 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x72db014f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x79275de5 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7a9bb8f4 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x814bdbf1 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x8bc22253 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x90f2920a parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9cf25c3d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa898dd5c parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xa9e562e8 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xafd11646 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb9fc81aa parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc517acc4 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xcfdc0299 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xd40562e5 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xda1c99aa parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xdb8e0231 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xdf8d1295 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe1c87eb6 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xe1d1c3fd parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xec712a3e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf202175e parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x3077fd32 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf5ba16dd parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xd293b09e iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xd37036d9 iproc_pcie_setup +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x04e168cf pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3299991c pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5f7022ec pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6598d015 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x667fb20c pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6b1b07b0 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x73de365c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x83ed13c1 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc1530098 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc59d37a9 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 0x5dd760fa pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x3b47c529 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x4d543203 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xaa4631f3 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd8fa752e cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x854eca09 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x1fc12b02 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x3129e679 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x57847f04 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x161c66f0 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x189be243 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37ad3c6f rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4fc58e51 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x5ca38dba rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x642e5fc2 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b699b46 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8136d088 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8394f41d rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x946a32b4 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9bd2d51b rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaffdf30e rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2f94e7e rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb568e998 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xcce7d294 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd0fb11a7 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd21cb815 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe9d3a0cb rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xf7f63bcb rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xc67a0a7e rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xdcb3af53 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9d20bc7c scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc03f8e1c scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xded82537 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe9aadaf2 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2053463d fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20717741 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e270aad fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x303ad59f fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7c7da17d fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8f0e6c45 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa61879cc fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb584ed72 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc01cba82 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce50f5f8 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf7d22463 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05d8dd83 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x07850098 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0a864d92 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d32c352 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f054180 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f502e4c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f95a2df fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1242436e fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12f8b13d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1352e60b fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19a90346 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ce79350 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7cffb4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20e26f85 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2417bc7e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27168512 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x297f15af fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29f2764d fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31cae193 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x33afe53c fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e2ee62 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d16eb79 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d677835 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f8d5b03 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44daa1fa fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c843cff fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fd57296 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x580a73a8 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c33f766 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5dfed082 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6761dc7c fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a6123e9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bb67ecd fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7339e40f fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x739f08f0 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7833f505 fc_frame_alloc_fill +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 0x932b3867 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96cb8331 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98f28675 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa12b10b0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4f3bbf6 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa6b7b5b8 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadec0769 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba8cf200 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc034732c fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc843b07b fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca4f441f fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcfde971c fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2181c54 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6003073 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe32b942f fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe44c0435 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6bf23e1 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe714da94 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0582511 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf4f5e2d3 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb4732fc fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc421f97 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0f795f7d sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x611235bb sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x95503f95 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe399c8dc sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0b591830 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 0x0e6b65ae qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1829256e qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18f29183 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x32d450ea qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x36d4f5bb qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4ce7738e qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x78dce857 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93c9d656 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6aef4ad qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc17c348c qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf36e9ccc qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfe39fed8 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/raid_class 0x12a5f37b raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x3a045bdf raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xcaef068b raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a951a37 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22753eb1 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x26a2aa17 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4804700e fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x510fbd87 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c84b14c fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x614f7f3b fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x640a9de2 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f1795d7 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x747292e5 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8cf712ed fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x952cab01 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa271e191 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbdcd9312 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd7135821 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xeceb7f27 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfec192f2 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07317e23 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f0cd7c0 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f77c765 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31919ff3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x435e8e0a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4677baec sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46b7c155 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ba99dfb sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x724e1408 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x828ebb92 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8968ca1e sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa392913e sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa98a1764 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafa03951 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb30f17a8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb3d1dee5 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4730eec sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8af6668 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe60fd9f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca6b9955 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcba48072 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe53d2ec7 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe6f1119a sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1cea217 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4b17b8f sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8b864a0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9cdaac8 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfae859fc sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff476ee1 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x47ed3766 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb5529f72 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcd1d87cf spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd6794295 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xdf14ba4c spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x358d4bd6 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4c14dafe srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6dee0c83 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x94b4a2d0 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xde2cb5a2 srp_timed_out +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x35210a1c dpaa2_io_set_irq_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb629a241 dpaa2_io_get_irq_coalescing +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/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing +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 0x373eb541 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 0x3cf0ce42 cmdq_dev_get_client_reg +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 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 0xa42dc869 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xab2ec244 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xe4b69fdf 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 0x27e4b2c5 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 0x01a1d656 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x14857370 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3d1eaba8 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3f93d266 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x49a11435 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x51f55a59 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x63480612 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8d49ce0c geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x9af9cc6d geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa2c4962f geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaff3514c geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xcc545dbc geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xdedf39b6 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xea5ab654 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf1165cfd geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xff9e56bf geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xffb28c85 geni_icc_disable +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 0xb6097943 qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0ef12cc9 qmi_encode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x103af355 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x233791a4 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x26e50c60 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2bc3a926 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x36dbf7e3 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x40835c64 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4d749303 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6174411d qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xce2da500 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xd9d8625b qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x3b95a503 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x037e0967 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x03fdef2d sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0b9dce82 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0ffe79ef sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x10c012e6 sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x156255ea sdw_bus_master_delete +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 0x284a3eb8 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3ddec001 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3fe9ef61 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x422d8b33 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x47c4d410 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x555bd352 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5bc3849d sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x641ccc1d sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x662f18d8 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 0x83b38fc1 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x868a6e0c sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e4f481e sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa4532280 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xae48ffc3 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 0xcae7d15e sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda55a38b sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xde1cc24b sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe63ac435 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe9aafd3b sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfc8d5cdb sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x11569d98 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5327bcd8 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6255dc15 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6520f22a sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x66740156 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6e41915d sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x74085b6f sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7b7c3a3e sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8499a6f2 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8d6e4b0b sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x939fb93c cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e8f0ad8 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa076b1b2 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd9d3b0bb sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe2418b13 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe2b7192a cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xed1b19e2 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x01230283 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x11ae2718 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x168f48f4 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1780b0f4 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x21b2fb0d ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2e60fd57 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x37b5c03e ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3ac34df1 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x48f5f0ea ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x649bd757 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x67955523 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x68b99c3a ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x79381c17 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x809954ae ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x8db558fc ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xa9ed6d8d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe1a6d471 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xe25fe9d3 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe6669cad __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf0d7acc8 ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x243c7f42 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x261f075d fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2738c0a0 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x28999a9b fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2a858326 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b39c958 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3564bcd2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37b8c0b2 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4bef8f53 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4d65a1f1 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x51c1c985 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x531f4ce4 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b44dfab fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x68394125 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x916ec75e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x94daa211 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa233e45f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa267a975 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa4cff4c fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc74f9fe6 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcbf0cbbf fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd71fab2 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3b8df56 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf3578f8c fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd17c5c9 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x52022ef9 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x5e9b68e4 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xf38d8706 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x92e12f89 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2e171ef2 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x2c9bd122 sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xb7e0e96b nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xfd6ba104 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00003353 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x036f9d4d rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x077b2648 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07a03c4b HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0a83e3c1 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x109d5f2f rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a96bda9 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ec62ba1 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x214be215 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22e76501 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2336bbb1 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x243aef56 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25b43767 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25f4cbbe rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cf5a2e7 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d9f24ec rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30fd043a rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x344eb113 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42878b62 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x477c3e5d dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49c5bc76 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4a885bce notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54220317 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x803062f3 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86d20fe7 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86ea151c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8784359f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8887d3b1 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8da82208 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e5a5e71 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x915bc25f alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91c9ba9b rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92cd06c2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x971e3529 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e819485 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa564b31b rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac646724 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafeb8caa rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0871d9e rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb54f00b1 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc53db67 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd37165e0 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdaabb5df rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2e49164 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4b6d65b rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe75b25cf rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0f24808 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7a9a955 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd9f9373 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x016973d3 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02ba5db4 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06f3edf9 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06ff4c9d ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08252aa8 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x09fd2fb0 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0be4d614 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f578487 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x115ff128 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12fe83ed ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15976779 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d6c0ed6 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21a0ddb4 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2377e616 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25dcd5d4 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x336b071d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x358996fc HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e90a3b5 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3eeabe71 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f7e00b6 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x448e8f01 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44aa676c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50376e9e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a2005cc ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ddf65a9 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6215d8d9 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65a3251e ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cc602ec ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d292bad ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f8d0e4e dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74803c31 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x758b0bb8 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7799c55e dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c38d22b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9836ea4b ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f6ab0a7 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fea5ae6 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa55a2d6b ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa56072b4 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6003e47 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb645c87d ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb69e6a77 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7435ca5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8ff442c ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb332b31 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4d665b7 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb2de193 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5f59f53 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeddfa5a9 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5999b74 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7b06b5f ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcf7195b ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe13ec8d ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1072c7e4 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x24ff7a17 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x35853b04 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5c054645 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x70fbdac9 vchiq_msg_queue_push +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 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xcdcb38d3 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xef360b8e vchiq_open_service +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08acb734 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x09e0391a iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10594d27 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x14e9121b iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16bcb859 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18aac6e5 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23835734 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2405299c iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x240cfeb7 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x28d1b431 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x302ae580 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32852ab2 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x355d4ef0 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c1d9ce9 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x422f403a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4370fd95 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48060f0b iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b205563 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x56cc98c6 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5aac79c3 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bc21d88 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ed4ccec iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x62efab83 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6de58cd6 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6df5bb3a iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f556e10 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f74ed98 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x792e8645 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b01ce0b iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f5ebc8d iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9ba6a2e2 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa32d3a64 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xacd4edb0 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb44fe267 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb7e1aa9 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbdd58a7 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe106adb iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd339033b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb18931e iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xddac86a5 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xde3f9a78 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe69876ae iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf429ad91 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4357807 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa4b5c38 iscsit_build_reject +EXPORT_SYMBOL drivers/target/target_core_mod 0x023776e6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x02f9b60b passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x07f97919 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ab512b1 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ec0c4a1 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x10d9744a core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x126c4c4d transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x1278ac9d transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x15ca1db0 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x184c90b5 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a55d160 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x24b9a024 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bcb1e0e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bd4e738 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d637578 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2dfdad90 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x393b9e67 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x39db89bb 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 0x3d29598f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f6bed68 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x422b8641 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4346ad8f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x44c1d38f spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x46a6832f core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f1680f1 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x517c7d39 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x55b639fe sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x57750abc transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b675dfd sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6444d44f transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x64753917 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c65f4aa spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7130ca02 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x766e5426 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x797373b7 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x798e2274 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b33f352 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x8994573c passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x89ba3cda target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a7cda2c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x8cdc6630 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d493222 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x8eed0668 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x9aa2b512 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b68ba83 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cad8213 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cb54e9d transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dbe25b0 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f367839 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fb6824a target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa60012e4 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa604b0d5 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6a05228 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaeeec45f sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9217f5c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xba5dcee2 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xba730837 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcf2fd5a target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe82eabe transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc53b097e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc62fbbd6 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc742b460 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xd04d0b94 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3bb192b target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xd786253a target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2c8f78e core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xe57898b7 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5bb7fa7 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7fd5554 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9661d15 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc4606f1 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xff586fc9 target_lun_is_rdonly +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1a3e8d6c ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x74b018d9 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x90e9b028 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xa7816923 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb54b8fbe ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe4f55cd0 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xf043e481 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xfdbcc89e ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x1760d2ec tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xf68afae5 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x555b7540 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xde992a8e ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x26f63a85 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb8d4d2d4 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x55fddb4a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x414d86a6 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4e40e114 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5c2b823f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x649ad08b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7cf7d58e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x88eb1f3f usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98c33521 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa6b3aa0a usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb8b8d3b0 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbedd5b93 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0430530 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x489b369c usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x809f1c2a usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x9c68902e vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x31073211 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x32028460 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x46a8bf13 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x839bed06 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x97225c0e mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xbe36a177 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc2515037 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe50a7bf5 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x349f77bb vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0xa4ed183e vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xc146137e vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xcb51e21a vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xee12e69e vfio_register_notifier +EXPORT_SYMBOL drivers/vhost/vhost 0x09178016 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe6066a19 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 0x2e539b45 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x528e0732 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa41b969e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe19a3d5e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1141cb1c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x33d61686 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4f0db18c svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x54921d0d svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5cf2d668 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x652c61cb svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8127a084 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 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 0x8286d7ee sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf6101003 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x903f8ca2 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 0x9ef5a7ea 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 0x645fcb7c mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7d229feb matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xb1c7c85e matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc01ea2ac g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x16fe9e85 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3dd38240 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x51af8ca9 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa0993ad3 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc817b745 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x65d24774 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x087a60ad matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x97623ed9 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xa5338f6c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcf98b3e0 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x61beeee2 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x73278cd1 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4b4650a6 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5174a344 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x908ef3fe matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc88e1097 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd9a1b347 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 0x3927947f is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3ec7b52d virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4e8c76f9 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa2e348ac virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa2ba08d1 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xd23b2a1b w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x31a6e447 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x37b8e88f w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0xb5b7a7be w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xcdf2e5d7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd69b10f9 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf2e7e58b w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x1411906b __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x14927417 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x155e480b __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x266f8112 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2d7a2b7e fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x322ccb74 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x34a4615b __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3746a052 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x37cfb93e fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3978e2ce __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x48390eba __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x510f3087 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x5f901104 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x613e83c4 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6dbc342f fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8797ee81 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x8901e7fa fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9732383c __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9c37b882 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa2caa3a5 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaba7a789 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xad964c22 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb27ee137 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc3b79dc8 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd40a0a6e fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd4b9a452 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xec8c751d __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf4b4ed84 fscache_io_error +EXPORT_SYMBOL fs/netfs/netfs 0x56009c5b netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x64d1d659 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x658dd83b netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x903a3df1 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xe923880a netfs_write_begin +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b8d1a4a qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x72a45157 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x805e36ae qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc317e855 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf244b3f0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4f36e56 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 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 0x52423287 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x5cd55c96 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xefec290a lc_find +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +EXPORT_SYMBOL lib/lz4/lz4_compress 0x6004858d LZ4_compress_fast +EXPORT_SYMBOL lib/lz4/lz4_compress 0x635ff76d LZ4_saveDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0x749849d8 LZ4_loadDict +EXPORT_SYMBOL lib/lz4/lz4_compress 0xf9eced44 LZ4_compress_fast_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x38f7b6e0 LZ4_compress_HC_continue +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x93ff008c LZ4_loadDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x9cef495b LZ4_saveDictHC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0xddf86133 LZ4_compress_HC +EXPORT_SYMBOL lib/math/cordic 0x7e431c15 cordic_calc_iq +EXPORT_SYMBOL lib/objagg 0x0363233d objagg_obj_raw +EXPORT_SYMBOL lib/objagg 0x23865923 objagg_destroy +EXPORT_SYMBOL lib/objagg 0x24ca5ca9 objagg_obj_root_priv +EXPORT_SYMBOL lib/objagg 0x342aefe2 objagg_obj_delta_priv +EXPORT_SYMBOL lib/objagg 0x352633f4 objagg_hints_stats_get +EXPORT_SYMBOL lib/objagg 0x3c58e78f objagg_hints_put +EXPORT_SYMBOL lib/objagg 0x6691f29d objagg_obj_put +EXPORT_SYMBOL lib/objagg 0x679e8cc2 objagg_create +EXPORT_SYMBOL lib/objagg 0xb17ab162 objagg_obj_get +EXPORT_SYMBOL lib/objagg 0xdaa3ee68 objagg_stats_get +EXPORT_SYMBOL lib/objagg 0xf5511527 objagg_stats_put +EXPORT_SYMBOL lib/objagg 0xfaa9d1a8 objagg_hints_get +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x8b7e26f5 parman_item_remove +EXPORT_SYMBOL lib/parman 0xc3e2d892 parman_create +EXPORT_SYMBOL lib/parman 0xc6a3d260 parman_prio_fini +EXPORT_SYMBOL lib/parman 0xca39ae6a parman_destroy +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0b2c64a3 raid6_vgfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x17f54263 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 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 net/6lowpan/6lowpan 0x1176fc4a lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x34ea9f13 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x75c16e7a lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x80b52afb lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x94558009 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x95cb1000 lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x02340f84 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x9cab9f23 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x066cb0fb register_snap_client +EXPORT_SYMBOL net/802/psnap 0xb894c4ef unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03df1e9a p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x0676d244 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x0d56f452 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x0ee89f28 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x0f320add p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x171898d4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x1aee206b p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2cc92127 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x3027b814 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3362e16e p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x37f78312 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x38663b2d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4104cc16 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4c62eb1f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x50cf4339 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x51e3e077 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x54b3275d p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x55686caa p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5bf6a7b7 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x5c9f532f p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x5fa7ccfc p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x638c2918 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6623e0b9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x6cc58eb7 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x71610f00 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x97c4dd5d p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9c96e937 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x9d561877 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa4a355ef p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa5dcbf02 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xa674b498 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb17521d7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb736b343 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbbf7611c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xbd350974 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xc540160f p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc57a8bf0 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd565734e p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6f0cea0 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfb779333 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xfc596d8e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xfef79310 p9_client_rename +EXPORT_SYMBOL net/appletalk/appletalk 0x30bc74f0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x37f6c14f aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x58e603f5 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x7ee41668 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x01757f86 atm_dev_register +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 0x48d55d4d atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x557fedd1 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8c62b55f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8fc287d3 atm_charge +EXPORT_SYMBOL net/atm/atm 0x9b144934 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9dd459f1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb1b2cbf1 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xc0748cd8 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xca286348 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe1f8b46f vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf14c57bd vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf9a93b7f atm_dev_signal_change +EXPORT_SYMBOL net/ax25/ax25 0x0d558841 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x15b5d7ec ax25_listen_register +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 0x7c2134c8 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7d94b006 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb24756f8 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xb53cb47b ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc0ccb17a ax25_linkfail_release +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 0xfad1d376 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x016c7e58 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02133ed7 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x029eeab5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x062f8f63 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0917d9a7 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b40bfd1 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1236ec09 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16ee4ac9 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x196b26f8 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e2807ef bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f0603b4 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21698c50 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x254ba0d7 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26f3f6a5 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d034b88 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x302a690f __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x33758f98 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3b199df1 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cc8d2e9 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d64d80a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4972d708 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b15a871 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c28b26e bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56109327 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b177244 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61cea48f __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66018d52 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7330ea19 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7716d3b3 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7df398fe bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80dd8063 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x902e0363 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9049a0bb bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9848c0f3 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa3fed2f8 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaccd80ef l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4d3db9f hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb66e653e bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb96d0003 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3e47c9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc243a3c9 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2e901f5 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7f6092d hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc90acd79 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5d2b94d hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5ea8032 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8c807b3 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3f936f7 __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec63fec0 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf56022c4 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0b2a56f8 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x39e0e640 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x41ecb3f8 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9c46ecaa ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe3df297f ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xecf78fb3 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x17eeb7c5 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x32e9ea1a cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5e9e18df caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8e3ee269 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd94d6867 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x0422480f can_rx_unregister +EXPORT_SYMBOL net/can/can 0x0765e61a can_proto_unregister +EXPORT_SYMBOL net/can/can 0x81d94f2c can_sock_destruct +EXPORT_SYMBOL net/can/can 0xb2ea5bce can_rx_register +EXPORT_SYMBOL net/can/can 0xec51b05a can_proto_register +EXPORT_SYMBOL net/can/can 0xfed14185 can_send +EXPORT_SYMBOL net/ceph/libceph 0x0064a4ff __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x00d9af8c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x03807af5 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x03931db1 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x06f06338 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x078365c9 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x0bcea99f ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0be274a3 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x0c7538e7 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x0c7c326f ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x0dcdb940 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x0f1205b7 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0f6681a1 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x12ddc2b9 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x13c86546 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x140e7b3c ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1c3d4a5c ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x260fb18b ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x2928b276 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x31dc5908 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x367c9d85 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a87270f ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x3b7652f7 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d3241d2 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3f16d700 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x3f890765 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x3fc1213a ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x41eeb325 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x4396d153 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46d4baea osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x477209c1 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x4971b0b6 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4cd6c1f0 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x53b9c191 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x54516c6f osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5780de64 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58acb1bf ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5b18fe98 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5c81924a ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x5f67cb20 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x61ea7b4e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6365c679 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x680f7c62 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x68a27ce9 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6a6b57dc ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6d6068d7 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x71398676 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x72e2baf1 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x74b24877 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x74bd2d79 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x7532422f osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x79332280 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7cbcb446 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fcdfea1 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x80c8cbd0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8454ee55 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x84af77ac ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8c85f1af ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8dcd8d2d ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x8f5ca249 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x96e15717 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x98228613 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9906a61c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c019859 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9edda9a4 ceph_osdc_alloc_messages +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 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xaa882ef1 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb24a0ba0 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb286149c ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6b0c530 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xba2243e7 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xbaa3ec3d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbaa5dd06 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xbbfdacc7 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf1661ef ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc076b5d4 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xc158b0f6 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc688f5cb ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xd1b6d643 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7bc235a ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd901f39f osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xd96a5fbb ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xdc2ec3f9 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xddfc2e6f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xde273401 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xdea18780 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe14078e8 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe493e8d9 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe6dffbfd ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe7f2fced ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0xe89512e3 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xea48de12 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee408774 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xee4ba9cd __ceph_open_session +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 0xf538f53b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf6b1385e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xf9871f1b ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xfb65fc2f osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xfb97e40e ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xfc7c7b2d ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0xfd7882cf osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb2055123 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd81abc15 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x1a1b4dd2 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x2f87fa01 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x184bf902 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4cf72bfc wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x89bae02c wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d757649 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe31ea867 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf7ea5d12 wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xc02f7b26 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe3ea67c8 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x3a427c9e gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x00a5d740 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x40a6fb8a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdfc5f61d ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf6a58cac ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0c1f60ad arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72ce9f68 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x86cfe784 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb06f3f72 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x68308813 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x692e436e ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x935ef0c8 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb662b48d ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x195134da xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x5f74a0e1 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe288e72b udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1107e9c2 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2572755c ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2609be0b ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3e732166 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x62583ec7 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fc6cf5d ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xad980c1b ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc0680e6a ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd2062776 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3863b345 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6976d7df ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc2ff1929 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf1a2bbbf ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x1b59ff55 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x32477a38 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8fe01aa1 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdf2adeeb xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x00b56db4 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x0636034c lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x5211d689 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5fbe3556 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x70672b38 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x730d03a6 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9e529c4a lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xfc492939 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x07301e9b llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x17f1e3c3 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x3104965b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4597eb67 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6008d723 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x64fb87cc llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe8922e41 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x000d31d9 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x06bf5021 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x08b2a3ce ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0c6a42a5 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x13892916 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1867987f wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x18abb15b 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 0x200bc74c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x27162658 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x2845c5b0 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2e30c3f8 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2e707f86 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x2feb5002 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x31cf58e9 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x326259e5 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x346d16fd ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x380eae42 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x405da393 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4a1816de ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4b66dd66 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4dbccc9d ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x4e248887 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x51a6dd24 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x51ffbc41 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5348392c ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x5412c47f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x5447ee06 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x54cc7e67 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x5510bb88 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x5cb72cc1 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x5f684067 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6845386e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6920bae8 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x6b288d01 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x704a8307 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7509f0cd ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x762e8e17 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x77d218f9 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7ce0f54a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7ff2d260 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x808967a2 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x86597e49 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8bc0156f ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x8bf92185 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x8e7c0461 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x9055fc7d ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9414968e ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x97466a50 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x98c3632f ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x99980e13 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9b765d9c ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x9bfac6a1 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x9eb81a4d ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x9fc22af7 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xa460e4fa ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xa5467ae9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa5d5778a ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa789779d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xac5b5ddc ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xae9ae4ca __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xb2a22d2c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xb4ddcbfc ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xb893aca9 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xbdbe1df9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xbdd7e7fa ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xc6a28111 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xc9d87a47 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xcb269db9 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcc2e2caf ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xcc33c413 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xce577494 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xcebc0c08 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xcf74a70c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcff1845a ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xd2842b0c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd6714502 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xd7eacb25 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd94a438e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xda648b68 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xddcef026 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xde825352 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xdf4529a3 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe2555694 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe2995a0b ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xe2d8ec34 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xe2e86ee0 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe4ea8593 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe66c5ec6 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xe8613575 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xe8961ce0 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe89b829f ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xeb025171 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xef33bede ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf0692d57 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xf273b38b ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf3c92358 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf46f7d66 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf67034d6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xfef4c516 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xff5f9d98 ieee80211_queue_work +EXPORT_SYMBOL net/mac802154/mac802154 0x10ca9b7c ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x12afe5a6 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x2678160f ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x4a8cca56 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x7d044180 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x84a0737b ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x9eed9674 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb725827c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xec614b49 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xeebb73fd ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0xfe6983ef ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x00e67c69 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0148f013 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b32c243 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x10462948 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x260cd564 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3b947105 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3bb2da8e register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x40438afa ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4087a3d1 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x50f7ac34 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5e10e9e3 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69e6514f ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92fee291 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb145f241 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8a25586 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xac0156e0 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0e35fac6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x239c7224 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x95905fe2 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xbc604cc4 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 0x1c716ca8 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3c5539d1 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4a9087c5 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4add5626 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x5fd761b1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7380d77e xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x79e9fc01 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xb0524b34 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc2638755 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc3e23a9f xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x199c9a2e nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x51d4dcec nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x6384ec51 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x7158fd10 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x896b0054 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x89804924 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x8bb89591 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x92ede26e nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x99a0b55a nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x99f7fc8b nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xa2a8f6ba nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xa5bee6d8 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xa7e9b251 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xb9d7f2ea nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc75808ea nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xc7b0d220 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xca97d188 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xd3a41315 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe2d0362c nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe315ad26 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xf9774044 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x08e91d24 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x13451bbf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x16a133aa nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x20c68fff nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x28f10233 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x31c4036c nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x34685ee4 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5b191e15 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x662942b6 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x80ef510a nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8d48b895 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x93880ee8 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x95ba5102 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x9e90928d nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9f0c54ca nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xa92bfa23 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb2357f4f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc19b1938 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xc4e3c455 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc56557d4 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xc567d378 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc89639e3 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xd4390131 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd59925e0 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xdd12e402 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe9fc0912 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xeb724010 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xeb8899a2 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xee04a123 nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x1818d1b6 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x33b010a1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x3698deed nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x37e4be1d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x42ae5955 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x47466003 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x5e213385 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x65ce47d6 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x689da5cf nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6c6651ab nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x852e9b3f nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9017c147 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x909ffe0d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x9297ee55 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x947461c9 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x948ccefd nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x97887e0c __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xab21fa48 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb0fe90d6 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc749ddaa nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd138d905 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xee7ad946 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf425b5fb nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xf4adc1c3 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xfd8af404 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc_digital 0x21ce0c9f nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5db8a727 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9f6389af nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa5f3afe5 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x10a53ac5 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x33de8f7a phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x73b806e9 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xb194b141 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xc7f781ee phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe3eb142d pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe66b92db pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xe7f763a2 pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x165ef74b rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1a1f9d5a rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b16634b key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2bfc0ecd rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4b410d9d rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ef24ee1 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x52cca16b rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c2c886b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6ce75aaa rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6e39e2c6 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x780180b8 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8e34f9e9 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8f67b0b2 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa436cd07 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9342c32 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xabe5274d rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb3393610 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb767dc75 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/sctp/sctp 0xe13de8df sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x25e9968d __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x2b6c8a59 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb86f0b51 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf5659dd6 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x405b6e37 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x795d9f33 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x846a04f1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x194f72e8 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x59c01a3b xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb1ce6a0d svc_pool_stats_open +EXPORT_SYMBOL net/tipc/tipc 0x300a5f11 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x3c928462 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x73bf07a3 tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xaabff0c9 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x23849ced tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0480ee3b cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x072ae2ce cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x0847fc92 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x0c98fb48 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0d8c5333 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x0ef80730 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1191da87 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x13887761 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x169fed87 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1a044a2a cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1b3cf647 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd44f12 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x2049fb74 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x2269412f cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x22de64ed cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x231d8a9e wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x2445858d cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x2448e0f3 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x25cdbcc4 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x2eb5621c cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x2eef54a9 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x3102ba8c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x32235b3e cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x32caeddc regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x32f41aa8 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x32f8413b cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x334287dd cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x388ae0a5 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3904ab7c cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a599162 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3d2ffae6 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3d367669 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x3fe4ada1 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x42ee0a43 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x46d50ba5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x48184db7 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4c0075ea ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ece0adb cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x53a0ad19 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x53f52b1b cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x573afcb1 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x5c41c08e wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x5cf4b648 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5ead20c8 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5ed34b7a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x63803794 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x645b884f cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x64b7dd0f cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b2fcd69 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c147c35 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x6c393798 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x6c94ba07 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x72e4e355 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x770d2717 cfg80211_rx_unexpected_4addr_frame +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 0x7b71f091 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c8c6c1a cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7e4ed1c9 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f01526f cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x81eb5b29 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8453a85b cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a70517e cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x906a5ad1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9083c5a3 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x919df2a8 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x92d2f1d9 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x93fb1487 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9c97151c wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa3d005af cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa414b834 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xa560f4bd regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xa841454b cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xa9c8d2c5 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xaaacbfb6 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xb2f2db03 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb5643c64 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xbc382498 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xbe4330de __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc0312a19 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcd2e5840 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xced44994 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xcff08971 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd5750a55 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbe518b7 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xde473cf0 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe01c756f cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe130339b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe2fce218 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe379f42f cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xe382bfe4 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe4242718 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe550e222 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe701a206 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe8a94384 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe9030e04 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xe9e26c12 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xeb7a1bbc cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xed687283 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xee34cdc3 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf42e1c6c cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xfa83b881 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xfb8d37d1 wiphy_new_nm +EXPORT_SYMBOL net/wireless/lib80211 0x2b680f3d lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x40b38e15 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x49c2e9c1 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x78d165f8 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7eccf1ba lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe38e8726 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xb74b46ca ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xf2f9a8fe 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 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 0xa14c36b4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa3818c9f snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd848e174 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xf3e352be 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 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 0xd1d18299 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x08a80f11 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0f49be1a snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x12b534ee snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x1545e31f snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1b5711a8 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x1bc31e3f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x1ff2e5b8 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25617d45 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x26fe0ab8 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x27980d1b snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x2a08e1da snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x356baa5f snd_device_register +EXPORT_SYMBOL sound/core/snd 0x35b9f5f9 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x3607a961 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x42b870b7 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x4602481f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x59c412ee snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x5da5ea3a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x67cf54ff snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x6c3ff750 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x716b67bb snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x7382d8e6 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x77287678 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x7b0bcf24 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x7fe801e4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x816080d4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x8601630f snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x98e90e00 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fbde499 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2076993 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb892b13c snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xc1e38217 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xc3221ddb snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc8e2b961 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd11dacb7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xd1e5c004 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd1ee4001 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xdb2b1040 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xdbcae10a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xdc427a0a snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xe6f2871f snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xebee7f95 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xef2754ad snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xf11e6562 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf83ea350 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xf9514ed3 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfbeb8270 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xfcc43a0e snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0xa5bc4612 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xa7524446 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0xdb04ba93 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0025859f snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x00ea35c6 snd_pcm_release_substream +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 0x07fb0c3f snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x08d499d3 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x0b0d190e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1197287e snd_dma_free_pages +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 0x21284ebb snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x22ebf232 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x24c392fb snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2bf0eade snd_pcm_kernel_ioctl +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 0x445f3abd snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x449d2c81 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x4552ca11 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x49cd5057 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x501608b3 snd_pcm_lib_ioctl +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 0x57385ea2 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x5b91dda6 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5ed44c87 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x6108f5f5 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x67ab8713 snd_pcm_hw_constraint_mask64 +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 0x6a146cb4 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x6a67993a snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x6e37404e snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x711c125f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x720a43f7 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x7370d430 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x7446a175 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8441173c snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x8ef3b48e snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9819ce25 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x98b40481 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x9b90c44d snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x9edc6066 _snd_pcm_lib_alloc_vmalloc_buffer +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 0xb1b16b96 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xb89e4d29 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbbd4aa9b snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xc10125ea snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc1b1c210 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xd3f5b7e7 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd46373ce snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xd779892a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xe52a70a5 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe62f1b9d snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe63e2649 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xe9db2cfc snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xef28073c snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xf7a2a7c9 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf8812355 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0284f90c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0617ac99 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x23fbad45 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3eb1b709 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ff5a6b5 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4441a1f4 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49537d8b snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x59b7b914 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x698bc5c8 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6f8a78a4 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7744f85c snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7c0b2d87 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9c003683 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xabbf5f30 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb8bf30d1 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbf8fb588 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcaaf8fd9 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd9e8ca51 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf94f82e6 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfaf64705 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 0x3feafa3e snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-timer 0x006d4861 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x4ee3c2c4 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x50a562b0 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x51b6aebb snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x6006ffb7 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x728738bf snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x82f3b704 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x91cb279c snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xa3205f94 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xa7ac1e9a snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb5875d9a snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xc395d346 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xd87323f3 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xeca045b4 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfdcb9ca6 snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x53232213 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 0x5b360063 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6a8b64a6 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6da370dd snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x98f07a46 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9b102b88 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa4a74453 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb1bc1362 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb7c26b3f snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd159d7c6 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1ae6a2f4 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 0x334066c1 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3edf83c0 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7aeb3661 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80abed9f snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xbb366b1b snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd1f02c16 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xecc1d10c snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1daf4fe snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ca612e0 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a816f73 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1eb396b5 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x210a9d27 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x27449cf9 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33b3b712 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37b0bd45 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37c99ed5 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d0a456e cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x73ec74bc iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7429f029 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76820ec5 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78e531d8 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x965191c0 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e985c9f cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9fa4d9ea cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2cc025b avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa899ae11 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab8a4ed1 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaef11cfe avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb102a4d3 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc4aa30be avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc85e9b86 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbb64a43 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1fd8b36 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd32e5790 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe9749d74 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee663645 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xffd86615 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xc275d6aa intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc4a16373 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf42484f9 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x154e1891 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f3c2ab6 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63416e18 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x76e79d11 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x93dcd60f snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb42f2f8e snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd32c6ba7 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfcbe8993 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0f7688c9 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8c550b52 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x92975e05 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xddc41b36 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcfd42c24 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xde352009 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1abe7ac7 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x28ee1301 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4558c928 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x664b2d5b snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa3958051 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe52887d0 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x201086e8 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc1a53b1c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xde7a55d9 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe50a9f9f snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xee214873 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfca86a18 snd_i2c_sendbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02a78c75 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x234a947b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x366feb04 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x374402d9 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e45261e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44047ea7 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4c4fd90b snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6661be87 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x66d495e0 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6ef07040 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x827e559d snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87df73b5 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc12da5b2 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef3f871e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf1bf2332 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc1a52b1 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc4998f6 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x02f1104d snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1e4644d1 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2df215a4 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50f74e52 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5fa12eb9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x637519b8 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7f84e4b4 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb7557a1a snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd6329680 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8db126f8 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa572ed2e snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc5a12581 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0bd09e23 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x220e2190 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25a89e50 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x33cd68a3 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b4b481e oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x503b6b3f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6778c612 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77aa62d9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x81176ddf oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e281a54 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4a681e0 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb87b5e9d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbbfe38f7 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc21d312b oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc9334bea oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd524aea5 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe2cf8261 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeffb7170 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf113c56a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff12e067 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3a1cc030 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5889708d snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbd09fc2b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc79dd09b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf1af82cb snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x4d160a96 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xfcd7389d snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xd051459a adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x1a6791dd wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xa808bf2e pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xb06ff2c0 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x8bb2337e tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xdaef38a1 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0fb07e58 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x17f605d1 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xd3456685 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x1bbf3c71 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x33e1af71 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x1f8aecad 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 0x495016a8 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 0x7c4b107c 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 0x1ef21fa5 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x62bd5abb mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x52d7edf2 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x6f57d239 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x08b3995a qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0x80511120 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x3a10beca imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x5d95fb0c imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x98c14144 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xb8c03e14 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xcc91da3f mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x044f7bc3 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x04901070 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x08da1f21 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0ab49141 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1de859e2 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ed05e5a sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1f20189c sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1f41de5a snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2076d362 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2837a145 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x286001c3 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32568e14 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37cbeced snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x385b5ce1 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x401d8ceb snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44212502 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x45bac7e9 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4b6d18d4 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4e8e5c6b sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x501944f3 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5097c244 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5f3ef85e snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6dda7362 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7279bab0 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x731f5ab7 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x740823a4 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x756b9282 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x853aa3e5 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b2a7e64 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8cdcce9d snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8d09fa66 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x90cbc578 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x915da6f3 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x939ba280 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98c511cb sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6ae6db3 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6b1dc36 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaa98d06a snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xad38dadc snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3f02291 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xba87274b snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbad1f75b snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcac9e16d sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xce2ad383 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdb2bab41 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde2cf46f sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xde47681f sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe1e17368 sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe526bab8 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe6c28f3f snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xebc43c61 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef057224 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xef79d60c sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf10d77e2 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf8824421 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc9b2ecc sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x0d48525f sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x57e19824 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x90e08472 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xc1281772 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xf77fcc92 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x12988420 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x15386c94 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa6c35be0 sound_class +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xec802678 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf9e90388 register_sound_special_device +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0673719e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1ba56ad3 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4120320c snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe5388837 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf65a9c22 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfa32cbd7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0eda33fa snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a48197f snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6517719f __snd_util_mem_free +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 0x9a93f1e0 __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 0x000c9b7f vme_dma_request +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00212439 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x00590299 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x005da74f of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x0074debb page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x0077c4fc pps_register_source +EXPORT_SYMBOL vmlinux 0x00845140 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ee3df9 bpf_link_put +EXPORT_SYMBOL vmlinux 0x00fefcac mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01059376 task_work_add +EXPORT_SYMBOL vmlinux 0x01081614 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x0111610b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0112c4c2 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x012f1de7 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x013e1f6e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x01476000 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01554874 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x015cd7ed fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x017298ae pci_enable_device_io +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 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bab9ad blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01ce088b get_tree_bdev +EXPORT_SYMBOL vmlinux 0x01d1fecc napi_consume_skb +EXPORT_SYMBOL vmlinux 0x0208df0d sget +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021695cd phy_drivers_register +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x023bbde6 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024919d1 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x025da18d register_shrinker +EXPORT_SYMBOL vmlinux 0x02656b04 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x026a3f91 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x026fd5b9 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0293ec38 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a5a4b6 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02d278f8 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x02d7e4d5 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x02e2b379 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x02e4c7c5 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x02ff83df skb_find_text +EXPORT_SYMBOL vmlinux 0x03084d4d pskb_extract +EXPORT_SYMBOL vmlinux 0x031fa2c4 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03443c2c nd_dax_probe +EXPORT_SYMBOL vmlinux 0x034cb398 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x03537c53 dev_driver_string +EXPORT_SYMBOL vmlinux 0x0358582e xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037378f5 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f37b3 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03842024 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x0395c138 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03adb15f udp_disconnect +EXPORT_SYMBOL vmlinux 0x03b28295 proc_remove +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03ca7288 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x03d85870 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x03e4c78f max8925_reg_read +EXPORT_SYMBOL vmlinux 0x03e81b52 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04040a8a pci_iounmap +EXPORT_SYMBOL vmlinux 0x04139c8a __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x04242610 single_release +EXPORT_SYMBOL vmlinux 0x04340451 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x043713a7 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044bad50 fscrypt_ioctl_get_policy +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 0x047fc52c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x0484b867 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04a85eac bio_reset +EXPORT_SYMBOL vmlinux 0x04b010df blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x04b3d6af register_fib_notifier +EXPORT_SYMBOL vmlinux 0x04d274ea bdevname +EXPORT_SYMBOL vmlinux 0x04e77ff2 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x04e80fb8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05212d1f trace_event_printf +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052ad3c2 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x052f7816 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0555896f elv_rb_find +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056a61ce set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x057bf0a8 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x059c8b59 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05d86c00 console_start +EXPORT_SYMBOL vmlinux 0x05dee543 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x05ef0160 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x05f6ca9d migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x05f9d7b1 lookup_one +EXPORT_SYMBOL vmlinux 0x060b01ab neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062087ca sk_dst_check +EXPORT_SYMBOL vmlinux 0x06281f56 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x062ec4ec acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06393ab0 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x0648922e rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x064ca9ec netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06714b59 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x06849ed4 bdi_put +EXPORT_SYMBOL vmlinux 0x06a345db key_put +EXPORT_SYMBOL vmlinux 0x06a5aeac tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x06a60414 kobject_init +EXPORT_SYMBOL vmlinux 0x06a7d88f flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x06b64f96 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c926e4 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d472fa phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x06d8e304 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x06ed65ed ppp_input_error +EXPORT_SYMBOL vmlinux 0x06f27f9a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x070628b0 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0732173f _dev_crit +EXPORT_SYMBOL vmlinux 0x073fe7c5 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x07410d2a devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07537e79 migrate_page +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07a07743 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07af3ab1 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d7fca7 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07dda15b rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x07e5c863 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x07f01a51 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0801d83e mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x0804a010 fman_set_port_params +EXPORT_SYMBOL vmlinux 0x0804f11f folio_write_one +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x0820a681 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08302ed8 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0852e9d0 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x0857aba7 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x085bd636 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x0873f079 unregister_key_type +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0894693d read_cache_page +EXPORT_SYMBOL vmlinux 0x08df7eae sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08e3d983 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x08f13adf mmc_release_host +EXPORT_SYMBOL vmlinux 0x08f67bd5 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x08f77e9e kernel_accept +EXPORT_SYMBOL vmlinux 0x08fd5584 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x0918f20d tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x09476a2e param_set_short +EXPORT_SYMBOL vmlinux 0x0957ec80 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0x09601e74 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x096040df scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0989bf6d kernel_getsockname +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098bc0cb ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x098bcf5d tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x09948e46 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099ecc26 serio_reconnect +EXPORT_SYMBOL vmlinux 0x09a3bcdf of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x09b83696 param_ops_charp +EXPORT_SYMBOL vmlinux 0x09b8f966 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x09c9d9fe fbcon_update_vcs +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 0x0a0e7be5 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a172834 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x0a1bb41e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a408879 mmc_get_card +EXPORT_SYMBOL vmlinux 0x0a4b9ea2 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x0a525dce devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x0a6b68c5 skb_ext_add +EXPORT_SYMBOL vmlinux 0x0a701ad7 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x0a74c275 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7e498b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab3098c __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x0ab3e872 kill_anon_super +EXPORT_SYMBOL vmlinux 0x0aba649e put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x0ac1b779 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae62216 genl_register_family +EXPORT_SYMBOL vmlinux 0x0aedd49c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0af3a242 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x0af84ac3 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0b179aa0 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b2893e0 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b5162a8 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8b3635 sock_i_ino +EXPORT_SYMBOL vmlinux 0x0b954781 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb6fa31 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc36865 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be01327 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfbd472 ram_aops +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c09ba35 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x0c0b48ba nlmsg_notify +EXPORT_SYMBOL vmlinux 0x0c0c0cb0 dump_skip_to +EXPORT_SYMBOL vmlinux 0x0c149c30 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x0c1f7bcf blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2e4c30 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c50ee4b blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7fc0a8 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0ca896bc i2c_del_driver +EXPORT_SYMBOL vmlinux 0x0caa9fb2 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb89701 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccfe99f iov_iter_zero +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cebd567 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x0cf0b1a1 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x0cf86c9a generic_file_open +EXPORT_SYMBOL vmlinux 0x0cfef8a9 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1627db netdev_err +EXPORT_SYMBOL vmlinux 0x0d1b5092 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x0d29729a find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d2fb57f flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d3a2402 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x0d3aef54 keyring_alloc +EXPORT_SYMBOL vmlinux 0x0d3de612 bio_init +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d4708ce xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0d50dfd8 alloc_pages +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d54917a unload_nls +EXPORT_SYMBOL vmlinux 0x0d98d4d2 module_put +EXPORT_SYMBOL vmlinux 0x0da81315 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x0db2f0bd tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x0db5c099 tty_do_resize +EXPORT_SYMBOL vmlinux 0x0dc20ff1 mdio_device_create +EXPORT_SYMBOL vmlinux 0x0df5fb0e datagram_poll +EXPORT_SYMBOL vmlinux 0x0e13b146 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e52cd04 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x0e55b119 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x0e6389d0 netdev_crit +EXPORT_SYMBOL vmlinux 0x0e75af27 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x0e8f2b2a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0e9f443d irq_set_chip +EXPORT_SYMBOL vmlinux 0x0ea333a2 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eaf0715 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x0eb61fb4 cdev_set_parent +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb7eaae ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ece30d9 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0ee19a21 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1f49ac tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x0f1fa9ea __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x0f26c713 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f3f33e6 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8a4e33 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0f8c9c10 nobh_writepage +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb019f2 tty_port_open +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcdb9fd xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x0fd51826 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100e5b66 dns_query +EXPORT_SYMBOL vmlinux 0x1012e7e7 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x1036fd01 skb_unlink +EXPORT_SYMBOL vmlinux 0x103a39f4 pci_get_slot +EXPORT_SYMBOL vmlinux 0x10468d44 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x104fe4e7 register_framebuffer +EXPORT_SYMBOL vmlinux 0x1056327c fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105817ce mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106cfac4 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107d4450 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108f1bb1 vfs_mknod +EXPORT_SYMBOL vmlinux 0x10a000bb blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ef8a25 pci_request_regions +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1110a72d skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x11110809 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x1113cf8c vmap +EXPORT_SYMBOL vmlinux 0x111745c2 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x112d289c ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x1131f1a2 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x11472698 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x114b57ff devm_clk_put +EXPORT_SYMBOL vmlinux 0x1152ebe3 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x115b3e99 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x115f9c4b vme_irq_generate +EXPORT_SYMBOL vmlinux 0x116ca6a0 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1173bcd2 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x1180235d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x1185d30e bio_init_clone +EXPORT_SYMBOL vmlinux 0x11992f01 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x11cb7108 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x11d00e40 nvdimm_namespace_capacity +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 0x11e95efb filp_open +EXPORT_SYMBOL vmlinux 0x11f57a9e nf_log_register +EXPORT_SYMBOL vmlinux 0x11fe2ffd __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x12041046 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x1206a852 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x120aa872 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12139b68 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x12397407 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1251e9fb __break_lease +EXPORT_SYMBOL vmlinux 0x126820ec configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x1273b7e8 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x127a9264 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12ad9c80 _dev_warn +EXPORT_SYMBOL vmlinux 0x12b4560c flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cf1eb0 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x12cffedc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x12d01dbc napi_get_frags +EXPORT_SYMBOL vmlinux 0x12d032d5 audit_log +EXPORT_SYMBOL vmlinux 0x12d5798d send_sig +EXPORT_SYMBOL vmlinux 0x12d59fc4 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x12e2ddfd pci_select_bars +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x13009767 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x13018d46 block_invalidate_folio +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 0x1356f205 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x138820ed folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x13891554 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x138bdd96 cpumask_next +EXPORT_SYMBOL vmlinux 0x139653ae param_set_hexint +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a04a4c put_fs_context +EXPORT_SYMBOL vmlinux 0x13a1a176 dma_map_resource +EXPORT_SYMBOL vmlinux 0x13a93247 pnp_unregister_driver +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 0x13e91d9b generic_perform_write +EXPORT_SYMBOL vmlinux 0x14078f4c alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x14139f22 param_ops_bool +EXPORT_SYMBOL vmlinux 0x14352b9f ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x14357c23 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x143bac20 pci_clear_master +EXPORT_SYMBOL vmlinux 0x145bb54c sockfd_lookup +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1472f959 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x147e1b44 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x14814b40 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148e8197 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x14987c0c blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x149b9d34 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14dbf2fe vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x14e8d898 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x14f1d096 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f6e2fc ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152fd276 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x1544f126 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x1545b988 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x154b31d1 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1550c9ce __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x15569280 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x155ae51e elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x156b1e66 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x156fc1ef __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x157465fd devm_free_irq +EXPORT_SYMBOL vmlinux 0x15789c2d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x15afd680 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c0c326 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15ce8587 netdev_state_change +EXPORT_SYMBOL vmlinux 0x15d7e78b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x15dbd903 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x15e74eec netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x15f60ec9 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x15f8f129 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x161bbfab dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x16210c37 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1636bee9 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x166b91ad blk_execute_rq +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16c11c0a invalidate_bdev +EXPORT_SYMBOL vmlinux 0x16c42a19 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dbe5af fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16df6566 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7e2cb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16f0fc70 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x170f6c1b inet6_del_offload +EXPORT_SYMBOL vmlinux 0x17195b97 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x171e9523 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x17418cd0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x1757006e bio_split +EXPORT_SYMBOL vmlinux 0x1767d112 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x1789040a jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x1793c21f phy_connect_direct +EXPORT_SYMBOL vmlinux 0x17a00d83 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x17b8849b get_phy_device +EXPORT_SYMBOL vmlinux 0x17e86740 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x18206b52 pci_get_class +EXPORT_SYMBOL vmlinux 0x18287082 rproc_put +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18536d7d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x185fa4ce dquot_free_inode +EXPORT_SYMBOL vmlinux 0x18695e38 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x1869668c fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x186c7e4d input_get_timestamp +EXPORT_SYMBOL vmlinux 0x1875ef48 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187dbc67 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x1882eb75 dev_uc_del +EXPORT_SYMBOL vmlinux 0x1887c2d3 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189650f0 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x18ac3a52 inode_insert5 +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18b82fb1 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x18df5695 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f26ab2 pci_request_irq +EXPORT_SYMBOL vmlinux 0x191474dd bmap +EXPORT_SYMBOL vmlinux 0x191a87d3 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x19296536 _dev_alert +EXPORT_SYMBOL vmlinux 0x192aa5fd blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x1932e8ea d_prune_aliases +EXPORT_SYMBOL vmlinux 0x1936c4b5 to_nd_btt +EXPORT_SYMBOL vmlinux 0x19404477 follow_down_one +EXPORT_SYMBOL vmlinux 0x194f53ff fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19604a8e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x196dc5cd __phy_resume +EXPORT_SYMBOL vmlinux 0x198109f0 posix_lock_file +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19cb043e __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x19e6302c padata_do_parallel +EXPORT_SYMBOL vmlinux 0x19e81a9b tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x19fa6f4f netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1a052a91 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x1a261c06 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x1a2f6e6e seq_bprintf +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5431eb vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x1a6161d7 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x1a6957fc xattr_full_name +EXPORT_SYMBOL vmlinux 0x1a6ab995 give_up_console +EXPORT_SYMBOL vmlinux 0x1a8b9c0a pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa4377d flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x1ab4677d pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x1ac24dca phy_detach +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aca5fab ptp_clock_register +EXPORT_SYMBOL vmlinux 0x1ae31f3c mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x1aff8358 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0666db register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x1b299f1f balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1b421ec0 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x1b5128f5 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b62fdeb inode_set_bytes +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b71299d input_set_capability +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1b9e57e2 dev_uc_add +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be79add blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x1c1b9889 fget_raw +EXPORT_SYMBOL vmlinux 0x1c23ccaa thread_group_exited +EXPORT_SYMBOL vmlinux 0x1c24aac0 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x1c3226dd cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x1c49d8b9 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x1c4ce3b5 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x1c4e2cc0 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6b7e94 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x1c6f6345 scsi_print_command +EXPORT_SYMBOL vmlinux 0x1c8e748e nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x1ca5397c __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1caef0fd tcp_seq_next +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc83ce1 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cddbc22 fb_pan_display +EXPORT_SYMBOL vmlinux 0x1ce7eae9 phy_device_free +EXPORT_SYMBOL vmlinux 0x1cef5219 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1d03d9f6 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x1d04f5fc bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d125ee5 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d26e525 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x1d36360d param_ops_int +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d656b21 d_lookup +EXPORT_SYMBOL vmlinux 0x1d743dd0 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1d913acc skb_clone +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d9f9bed nf_log_packet +EXPORT_SYMBOL vmlinux 0x1da8c0d6 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dde1653 __scm_destroy +EXPORT_SYMBOL vmlinux 0x1de35ac4 input_set_min_poll_interval +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 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e10b4e4 sk_error_report +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e2450ea ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x1e398770 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x1e550d23 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8fac81 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eab90fd __netif_rx +EXPORT_SYMBOL vmlinux 0x1eac5108 free_netdev +EXPORT_SYMBOL vmlinux 0x1eaf2cc7 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x1eb396c4 should_remove_suid +EXPORT_SYMBOL vmlinux 0x1ec98db3 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x1ed42ec5 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee523a4 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1f1555ef fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1f17a7c5 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1f2a2c91 edac_mc_find +EXPORT_SYMBOL vmlinux 0x1f392e3c dquot_drop +EXPORT_SYMBOL vmlinux 0x1f4a2177 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x1f514f2d ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f5d4222 dev_add_offload +EXPORT_SYMBOL vmlinux 0x1f896c8f kmem_cache_size +EXPORT_SYMBOL vmlinux 0x1f95cfeb scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1f9de82d is_nd_dax +EXPORT_SYMBOL vmlinux 0x1fb64f4b forget_cached_acl +EXPORT_SYMBOL vmlinux 0x1fbc083a write_inode_now +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fca06e5 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd448ff netif_device_attach +EXPORT_SYMBOL vmlinux 0x1fdd5036 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1fe08c2a mdiobb_write +EXPORT_SYMBOL vmlinux 0x1ff0d6b0 init_net +EXPORT_SYMBOL vmlinux 0x1ffd1ded jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x1ffec4c5 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2053ee8b skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x2056361f device_add_disk +EXPORT_SYMBOL vmlinux 0x20576be6 config_item_get +EXPORT_SYMBOL vmlinux 0x20666adf __free_pages +EXPORT_SYMBOL vmlinux 0x20715db3 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x2079f67c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x20890a40 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x208cceea ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c135b1 file_path +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20d58b63 simple_getattr +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x21015ec6 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x211a6736 pid_task +EXPORT_SYMBOL vmlinux 0x212e1a16 dump_page +EXPORT_SYMBOL vmlinux 0x21338abd put_watch_queue +EXPORT_SYMBOL vmlinux 0x2133eccd scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x214c8094 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x2160c702 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x2178f3b8 uart_register_driver +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a978ef __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21cec17a rproc_shutdown +EXPORT_SYMBOL vmlinux 0x21dcf497 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21e47bf5 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x21ea0f4f setup_new_exec +EXPORT_SYMBOL vmlinux 0x21ee4b49 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21ef5f9a netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x21ef8844 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x222045c5 udp_seq_start +EXPORT_SYMBOL vmlinux 0x2220f2a8 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x222116aa md_unregister_thread +EXPORT_SYMBOL vmlinux 0x222a6c10 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x224b5509 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x226d5334 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x2279e2d0 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x227c8926 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x22848665 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x22894254 clkdev_drop +EXPORT_SYMBOL vmlinux 0x2298bce0 ip_options_compile +EXPORT_SYMBOL vmlinux 0x229eccf3 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d011ee tso_build_data +EXPORT_SYMBOL vmlinux 0x22d2ffba ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x22e2bec2 dst_init +EXPORT_SYMBOL vmlinux 0x22e7a3f7 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x22ec589f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x231b9736 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x2325c09c tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x232a2318 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x233820f4 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2371dc3b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x2375455c generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x23760b59 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238999cf pci_claim_resource +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23a32c6e dm_table_get_md +EXPORT_SYMBOL vmlinux 0x23aff08f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23ba8d38 scsi_partsize +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23d4b526 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23eeee9d lock_rename +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2404ebf8 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x241b7037 __alloc_skb +EXPORT_SYMBOL vmlinux 0x24215e06 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24424232 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2454a85f dev_set_alias +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24783d50 neigh_destroy +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24a74a00 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x24cff68e ppp_input +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24ecaa43 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x24ff174a sget_fc +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2509b1d6 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2509be35 netpoll_setup +EXPORT_SYMBOL vmlinux 0x250ba365 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x25156753 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x251b9c56 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x2520db85 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2526b8d1 scsi_add_device +EXPORT_SYMBOL vmlinux 0x252c00e3 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x252c6270 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x255d3d02 block_truncate_page +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x2597a868 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x25a0aa4f udp_seq_next +EXPORT_SYMBOL vmlinux 0x25bc0694 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x25c3dfa2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x25dca67c inet_ioctl +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25fb6d74 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x25fe9ae7 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x26004c8d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x26011dd3 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x26060cad __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x2608c927 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x260f74ad jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x26229586 kernel_read +EXPORT_SYMBOL vmlinux 0x2624b5ab request_key_tag +EXPORT_SYMBOL vmlinux 0x262f3ca3 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2655ef6c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x266efcf4 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x2679bf09 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x267a1483 kernel_bind +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x268df8e3 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x26958673 freeze_bdev +EXPORT_SYMBOL vmlinux 0x26a9ab4e vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x26c9e85b sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x26ca447d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x26d131c8 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e41082 neigh_update +EXPORT_SYMBOL vmlinux 0x26e4a04f netdev_info +EXPORT_SYMBOL vmlinux 0x26fb2636 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27157faa scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272cbdec vm_mmap +EXPORT_SYMBOL vmlinux 0x272e6f36 pci_enable_device +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 0x277069ad phy_loopback +EXPORT_SYMBOL vmlinux 0x277478ef tcp_splice_read +EXPORT_SYMBOL vmlinux 0x2775663c xfrm_dst_ifdown +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 0x2792faf9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x2795e85e qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x27a89b7a neigh_seq_next +EXPORT_SYMBOL vmlinux 0x27a9f408 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x27b73d06 follow_down +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd07d3 get_tree_single +EXPORT_SYMBOL vmlinux 0x27bd5a47 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27f60284 bdi_alloc +EXPORT_SYMBOL vmlinux 0x27fbce5d param_get_byte +EXPORT_SYMBOL vmlinux 0x2801d7ee input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x281031aa cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282d35cf dquot_acquire +EXPORT_SYMBOL vmlinux 0x283ac1aa scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x28665f30 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2866f9a5 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x287463e0 blk_start_plug +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x288732da __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x288c2ec1 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x28a80605 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x28b0b765 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x28c4d835 tcp_prot +EXPORT_SYMBOL vmlinux 0x28e59eeb xp_alloc +EXPORT_SYMBOL vmlinux 0x28ee610e shmem_aops +EXPORT_SYMBOL vmlinux 0x28eeb790 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x28f04403 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2905b2dc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x290e0413 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x291d0b83 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x2924d846 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x292cb628 netdev_warn +EXPORT_SYMBOL vmlinux 0x293a7ad6 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x29429c56 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296d95ad sock_register +EXPORT_SYMBOL vmlinux 0x296fe72d dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x297304d0 udp_set_csum +EXPORT_SYMBOL vmlinux 0x298bdc1a kern_unmount +EXPORT_SYMBOL vmlinux 0x298e8887 ip6_xmit +EXPORT_SYMBOL vmlinux 0x299544a9 phy_attach +EXPORT_SYMBOL vmlinux 0x29b8cd09 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x29ba79f7 __register_binfmt +EXPORT_SYMBOL vmlinux 0x29d17350 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a04e9cf input_copy_abs +EXPORT_SYMBOL vmlinux 0x2a1389d7 md_handle_request +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a34d10f register_quota_format +EXPORT_SYMBOL vmlinux 0x2a35b278 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2a3b4d8c of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x2a3e74f4 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x2a410b87 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2a508536 ip_output +EXPORT_SYMBOL vmlinux 0x2a60b28c nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x2a6b305f km_policy_notify +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a90fd16 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa1c583 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2adba60b gro_cells_receive +EXPORT_SYMBOL vmlinux 0x2af006b9 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x2aff0f18 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x2b0128f5 init_task +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b1c6dae is_subdir +EXPORT_SYMBOL vmlinux 0x2b24717a pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x2b36afec tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x2b37d1cd dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2b447fdd param_get_short +EXPORT_SYMBOL vmlinux 0x2b45d5e9 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x2b575961 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b6434bc inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b8164f9 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x2b831fdf iterate_fd +EXPORT_SYMBOL vmlinux 0x2b92feea dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba7c58d sock_no_bind +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bd7fbd7 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x2bdf6d0e serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x2be56d5c kmem_cache_create +EXPORT_SYMBOL vmlinux 0x2be63ba2 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x2bf0ba77 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x2bf311c2 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2bf8b736 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c248b53 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c27547b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x2c29419c blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c39e580 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2c4aeb4c try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c546f00 can_nice +EXPORT_SYMBOL vmlinux 0x2c5971be phy_resume +EXPORT_SYMBOL vmlinux 0x2c71f5b3 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c94af88 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2c9c44d4 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x2cb616ba complete_request_key +EXPORT_SYMBOL vmlinux 0x2cbaf564 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x2ccc944a dst_release +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2cf10c53 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x2cf8904b security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d18873a vfs_get_link +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2ae167 module_refcount +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3eda74 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4c9b7b get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d8493c5 input_free_device +EXPORT_SYMBOL vmlinux 0x2d90c09e fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9cff69 __scsi_execute +EXPORT_SYMBOL vmlinux 0x2da04944 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd77b3b xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x2ddff0da pnp_start_dev +EXPORT_SYMBOL vmlinux 0x2de03940 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x2df37327 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x2e03cdeb phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x2e0668b0 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1a3c17 audit_log_start +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e30d5cd jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e717812 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x2e754de5 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2e95e8e1 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2e99b5f2 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x2ea93ea9 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x2ebf3202 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x2ebf62f3 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed374c6 vfs_statfs +EXPORT_SYMBOL vmlinux 0x2ee43cb2 sg_miter_start +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee7369d param_set_ushort +EXPORT_SYMBOL vmlinux 0x2ee9c318 da903x_query_status +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f090c90 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x2f096812 km_report +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f18fa83 do_splice_direct +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f340cf9 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f397fab of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x2f42b6e1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x2f5b7712 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x2f66d2a3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7da4b9 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x2f7df6ec softnet_data +EXPORT_SYMBOL vmlinux 0x2f852979 set_nlink +EXPORT_SYMBOL vmlinux 0x2fb4b6ee ps2_init +EXPORT_SYMBOL vmlinux 0x2fcc94b5 pci_bus_type +EXPORT_SYMBOL vmlinux 0x2fd1b948 of_device_alloc +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2ff31aff devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x2ff8d3df elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x2ffd6b73 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x300a1aa3 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x30134750 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x301db109 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x3028cba4 netlink_capable +EXPORT_SYMBOL vmlinux 0x302c6905 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x303c293e pci_find_bus +EXPORT_SYMBOL vmlinux 0x3044f0de phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x306bb0d3 kobject_del +EXPORT_SYMBOL vmlinux 0x30777f0d param_set_long +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ac9364 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c54e4f md_reload_sb +EXPORT_SYMBOL vmlinux 0x30c572f1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x30ceec5e dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x30e560d8 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e9608f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x311a5b41 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x3123555c tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31383914 lru_cache_add +EXPORT_SYMBOL vmlinux 0x313f8f02 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x314c2d7f add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x316563e5 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x31800fe8 __destroy_inode +EXPORT_SYMBOL vmlinux 0x31879475 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x31899b7e mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x319e8944 bio_endio +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a707c7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x31bb7b57 register_netdev +EXPORT_SYMBOL vmlinux 0x31c3ce20 tcp_connect +EXPORT_SYMBOL vmlinux 0x31c54c64 start_tty +EXPORT_SYMBOL vmlinux 0x31e38c25 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x31e598b8 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x31e813f2 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x31ee22a2 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x31f072c5 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x3211442b pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x3213d14b mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323e8542 node_data +EXPORT_SYMBOL vmlinux 0x3258d02a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x326167a4 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x3262432a mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x326cd28b devfreq_update_target +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328b5b80 fqdir_init +EXPORT_SYMBOL vmlinux 0x32971f75 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x32a2d168 sock_set_mark +EXPORT_SYMBOL vmlinux 0x32ae2716 sock_wfree +EXPORT_SYMBOL vmlinux 0x32b170e7 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32cf67a2 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x32d45faa __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32e8d89f genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x32fc6893 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x32fd8c54 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x32ffe1d1 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x3306c048 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x330ab5fa netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x331d5faa seq_putc +EXPORT_SYMBOL vmlinux 0x33223893 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x333243ac tty_lock +EXPORT_SYMBOL vmlinux 0x33331805 mmc_add_host +EXPORT_SYMBOL vmlinux 0x3347b551 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x335f4444 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x337fbe5a of_translate_address +EXPORT_SYMBOL vmlinux 0x33904630 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x3397cb09 fasync_helper +EXPORT_SYMBOL vmlinux 0x33bec69a hmm_range_fault +EXPORT_SYMBOL vmlinux 0x33def4c3 netdev_master_upper_dev_link +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 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x3419f38d generic_permission +EXPORT_SYMBOL vmlinux 0x341b5156 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34285bc4 md_update_sb +EXPORT_SYMBOL vmlinux 0x342c5084 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x343ba2aa padata_alloc +EXPORT_SYMBOL vmlinux 0x343fe774 make_kgid +EXPORT_SYMBOL vmlinux 0x34403b92 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x3458a296 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x346b06de amba_release_regions +EXPORT_SYMBOL vmlinux 0x34800dc8 input_allocate_device +EXPORT_SYMBOL vmlinux 0x3485fe75 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34b57e65 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x34bfbe70 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ccfed3 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34e6c3b8 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x34ef747e input_flush_device +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35175716 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x3518c8a4 cad_pid +EXPORT_SYMBOL vmlinux 0x352ac832 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x352c772f blk_put_queue +EXPORT_SYMBOL vmlinux 0x35319bc0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3536923c nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353a6101 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x354092ec netlink_ack +EXPORT_SYMBOL vmlinux 0x3549568b mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35d74754 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x35d9a399 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x35e3d2b3 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0x35e705e2 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x35f48727 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x35fc70cb cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x361d5399 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x361da5df nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x3629302f of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x362b9982 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x363b69bc bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c0088 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x365f749f bh_submit_read +EXPORT_SYMBOL vmlinux 0x36628e65 input_reset_device +EXPORT_SYMBOL vmlinux 0x3669146e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x366fece9 tty_register_device +EXPORT_SYMBOL vmlinux 0x368acb51 pin_user_pages +EXPORT_SYMBOL vmlinux 0x36943ee7 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x369ddeb4 iget_failed +EXPORT_SYMBOL vmlinux 0x36ab303c dentry_create +EXPORT_SYMBOL vmlinux 0x36b3c17c fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36c650fc inet_sendmsg +EXPORT_SYMBOL vmlinux 0x36c7262c xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x36d3efa1 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37173471 write_cache_pages +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37250bba vfs_llseek +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37819a6a sock_no_linger +EXPORT_SYMBOL vmlinux 0x37b37a28 dquot_alloc +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37b99222 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c92c57 dma_pool_create +EXPORT_SYMBOL vmlinux 0x37cf20e6 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e1609d dma_sync_wait +EXPORT_SYMBOL vmlinux 0x37f64d0f __module_get +EXPORT_SYMBOL vmlinux 0x380496df udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x38115f4c page_readlink +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381b28e3 xp_dma_map +EXPORT_SYMBOL vmlinux 0x3824144d thaw_bdev +EXPORT_SYMBOL vmlinux 0x382cefd9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x384edbb3 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3865498f __put_page +EXPORT_SYMBOL vmlinux 0x3865bb09 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x386e3ead xfrm_state_add +EXPORT_SYMBOL vmlinux 0x387f6210 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3889e0b0 mii_ethtool_gset +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 0x3896fd40 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x38a1727c block_read_full_folio +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38cc1180 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x38d22bc4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x38d65e88 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38e53c01 input_inject_event +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f88148 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39374231 tcf_block_get +EXPORT_SYMBOL vmlinux 0x393850fe input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3947b863 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x39506312 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x39548c02 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39781d9a netif_rx +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39b1d502 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8d49c cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39cb8da4 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x39cf3810 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39eca73b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3a007f2a remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3a07d598 sk_wait_data +EXPORT_SYMBOL vmlinux 0x3a0fd913 address_space_init_once +EXPORT_SYMBOL vmlinux 0x3a12d8b0 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1e487a blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x3a2b0e82 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a367000 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x3a392b97 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x3a3ee761 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x3a428214 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a69efc7 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3a6a06d1 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x3a771c56 dma_set_mask +EXPORT_SYMBOL vmlinux 0x3a8c66fe md_integrity_register +EXPORT_SYMBOL vmlinux 0x3a8ff3d4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abd6f38 d_alloc +EXPORT_SYMBOL vmlinux 0x3ac3d1e6 mdiobus_free +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3afad095 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b14ddad netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x3b1fd45a phy_attach_direct +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2d4c20 mmc_start_request +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b3eb83f cdev_alloc +EXPORT_SYMBOL vmlinux 0x3b40ed8e path_has_submounts +EXPORT_SYMBOL vmlinux 0x3b560cfd ethtool_notify +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b839862 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x3b84272b phy_validate_pause +EXPORT_SYMBOL vmlinux 0x3b84548a param_set_byte +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b9db1a8 unlock_rename +EXPORT_SYMBOL vmlinux 0x3bc0a7c7 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x3bc36c61 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3be1a3a3 folio_mapping +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3beeb56b fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x3bfd5550 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x3c04992a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1bc01d generic_setlease +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c49cc5f inet_stream_ops +EXPORT_SYMBOL vmlinux 0x3c5830b6 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x3c5ac9df scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x3c662b76 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x3c774355 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3c83c167 vga_client_register +EXPORT_SYMBOL vmlinux 0x3c87fc70 kthread_stop +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce97107 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x3cec7754 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x3cfaf827 unregister_console +EXPORT_SYMBOL vmlinux 0x3cfce927 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x3cff5b3e register_filesystem +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d23f669 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x3d25a2c4 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3d373482 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x3d423be5 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x3d47d7cd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x3d5862d9 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x3d6d2fd7 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3daa90a1 scsi_target_quiesce +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 0x3dd3f054 xudma_rchan_get_id +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3de64ec4 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x3dfb181b mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfee535 scsi_host_put +EXPORT_SYMBOL vmlinux 0x3e06bfd7 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x3e0b32b6 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3e216d17 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x3e246067 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x3e381e9f phy_write_paged +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e5b7b6d consume_skb +EXPORT_SYMBOL vmlinux 0x3e60408e of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x3e653f61 d_add_ci +EXPORT_SYMBOL vmlinux 0x3e735837 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3e74d8f3 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e8216fc sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x3e9e2122 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x3ea0ac2a tcp_close +EXPORT_SYMBOL vmlinux 0x3ea138c1 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x3ea55205 bio_put +EXPORT_SYMBOL vmlinux 0x3ec6166d tcf_block_put +EXPORT_SYMBOL vmlinux 0x3ed45b0b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3ede654a mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f0ee741 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x3f280f05 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x3f28e2b6 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f3e8f75 pagecache_isize_extended +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 0x3f7efc4e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x3f88f5d2 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f90e0f3 free_task +EXPORT_SYMBOL vmlinux 0x3f911bfb mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc0499e invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3fd20cc2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x3fd5d755 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x402ba46d read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x40416c52 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x4049a37d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x404e8661 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x4052ea0e pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x406eac85 skb_split +EXPORT_SYMBOL vmlinux 0x40859274 proc_create_data +EXPORT_SYMBOL vmlinux 0x4085c9c0 ilookup5 +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409d2c36 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x40a691c6 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40adb340 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x40aeb103 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c81754 kill_litter_super +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f42a22 path_put +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40f957ec scsi_print_sense +EXPORT_SYMBOL vmlinux 0x40ffb170 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x41012d2a kobject_get +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4132e6ef noop_fsync +EXPORT_SYMBOL vmlinux 0x413338c1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x413b282c devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x41417b70 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x41677d75 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x4172f6c5 d_obtain_root +EXPORT_SYMBOL vmlinux 0x41752f29 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41990f84 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x41a322e3 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x41bffaff tcp_peek_len +EXPORT_SYMBOL vmlinux 0x41c04c9a fman_register_intr +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41d4d56b tty_port_put +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f43c60 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x422e9635 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x423623af __dquot_transfer +EXPORT_SYMBOL vmlinux 0x4239ada1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4257bea2 inode_init_owner +EXPORT_SYMBOL vmlinux 0x425d264a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x425fd03c tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x4296f58c jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x429c01b7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x42aac145 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x42b9760b devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430783d0 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x430c4a88 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x431a33bc __scsi_add_device +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4331cafe mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433b8187 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435744e0 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x435a22b9 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x4360c5db sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x436f8fd5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x4375242d sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4376b37c i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x43792e20 inet_del_offload +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437e76c1 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438d444e dev_disable_lro +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43c31594 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e98ca2 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x44076f20 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x440b6753 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x440c1b09 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x4417110f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x441a3b75 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x4429d629 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x443c2219 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x443cbdf1 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444a69ed netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x4455c96f scsi_device_get +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44dbd71e tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x44e22c93 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450cb379 __bio_advance +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x451a2558 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x45270d16 nf_reinject +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534484c rproc_add +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454187ba dev_get_iflink +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x457331d8 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458524c6 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x45866f7a dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x45af7d54 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x45c32d22 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x45c84fa6 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x45e4e7e7 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x45eca42b unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x45ef5a3f udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x46035f9e neigh_xmit +EXPORT_SYMBOL vmlinux 0x4603940a genl_notify +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46355d01 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46543790 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x467f8380 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ae4c07 load_nls_default +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46da99e2 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x46dc0715 vfs_iocb_iter_write +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 0x4710f645 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x471e9750 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x47250540 path_is_under +EXPORT_SYMBOL vmlinux 0x472ab091 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x47386a79 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4744d076 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4751ea30 of_chosen +EXPORT_SYMBOL vmlinux 0x475d5892 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x475e4436 input_close_device +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47727bc2 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x4796eafd mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x47a72717 phy_start +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47ce4c4c dcache_dir_close +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47e58989 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x480f4f46 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x48141da7 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x4828d7fe is_nd_btt +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482a5de7 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x4837008b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x4837bb10 logic_outsb +EXPORT_SYMBOL vmlinux 0x483e020d rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x483f3800 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484d1c4a __nd_driver_register +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 0x486ca21c xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x489735f7 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a4ae9d __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b33c30 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48cbda10 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x48cf8e33 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d50104 fman_port_bind +EXPORT_SYMBOL vmlinux 0x48e7a0fc inet_getname +EXPORT_SYMBOL vmlinux 0x48ff3e6a sock_release +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490acdbd security_path_mkdir +EXPORT_SYMBOL vmlinux 0x491592bf param_ops_long +EXPORT_SYMBOL vmlinux 0x491d9815 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x4942b2ef dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x494bf6e2 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49586427 mount_single +EXPORT_SYMBOL vmlinux 0x495fc96b netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x4966be50 genphy_update_link +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49681fd0 copy_highpage +EXPORT_SYMBOL vmlinux 0x4968f473 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x498678d2 register_cdrom +EXPORT_SYMBOL vmlinux 0x498e13da inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x49903cc9 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x499dc186 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x499f0725 inode_update_time +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a552d4 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x49aa0e9c devm_release_resource +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c1536a pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x49cb2d84 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x49dee02a pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x49fe4657 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x4a22a394 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a3af92f md_bitmap_free +EXPORT_SYMBOL vmlinux 0x4a486cf4 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x4a49f7b3 block_write_full_page +EXPORT_SYMBOL vmlinux 0x4a4dd534 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x4a574340 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x4a57f211 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x4a5a4600 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x4a64f4ed put_disk +EXPORT_SYMBOL vmlinux 0x4a7315a2 __invalidate_device +EXPORT_SYMBOL vmlinux 0x4a73253c page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x4a77f285 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9b4dee xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x4aba9724 pci_disable_device +EXPORT_SYMBOL vmlinux 0x4ac46eea sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x4ad4ba22 devm_memunmap +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af2267e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b015809 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b137bf0 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x4b4e59cd ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x4b57898f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6df007 acpi_evaluate_reg +EXPORT_SYMBOL vmlinux 0x4b6f5c37 dquot_resume +EXPORT_SYMBOL vmlinux 0x4b71e806 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x4b750f53 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0x4b9d6088 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x4baa2f1d dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x4bae22ce xfrm_input +EXPORT_SYMBOL vmlinux 0x4bc0c51b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bcd8696 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf5732c mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0c5f71 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4c15ed12 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x4c20656c km_policy_expired +EXPORT_SYMBOL vmlinux 0x4c297b9c gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x4c3633f1 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c576b99 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x4c6ab0d8 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x4c6e2cdb ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4c6e498a netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x4c857ab1 submit_bio +EXPORT_SYMBOL vmlinux 0x4ca4d10f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x4cae61fc scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4cb6a56e zpool_register_driver +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc00ef5 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x4ceb33ca phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x4cecc831 inet_addr_type +EXPORT_SYMBOL vmlinux 0x4ceced98 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x4d023e23 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d13956f textsearch_prepare +EXPORT_SYMBOL vmlinux 0x4d1b7727 freeze_super +EXPORT_SYMBOL vmlinux 0x4d1cc7ae phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x4d268bb4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d57d15b dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6b068b capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x4d788eb3 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4d7fc4f2 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d988972 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x4d9a32d8 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9fd82d touch_atime +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4dadb2c2 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x4db4e102 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd66d72 folio_migrate_flags +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 0x4df5bef4 tty_port_init +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e170100 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x4e1a6834 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4e1e52aa fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e31db24 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e47b39f folio_wait_bit +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e555f2b unregister_nls +EXPORT_SYMBOL vmlinux 0x4e58f5af tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x4e5f7b5b __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e78faa5 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x4e86e4a7 skb_trim +EXPORT_SYMBOL vmlinux 0x4e89904c dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed5afcb fd_install +EXPORT_SYMBOL vmlinux 0x4ee43d6d __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x4ee87f5d kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x4f1b5ba1 import_iovec +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f470c7c blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x4f49ad57 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x4f54345b blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f813483 netlink_unicast +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8e95c3 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4f9b7d50 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4f9e24b8 pci_get_device +EXPORT_SYMBOL vmlinux 0x4fd3f0fe dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x4fd47697 tcp_check_req +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 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x50280fbb dqput +EXPORT_SYMBOL vmlinux 0x50477fab md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x504da5c2 registered_fb +EXPORT_SYMBOL vmlinux 0x505fa0be __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x505fb67e __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x506ea6bc __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x50737ae4 serio_bus +EXPORT_SYMBOL vmlinux 0x508081f9 __devm_request_region +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508e8f88 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x50977e0b d_make_root +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 0x50bd4242 of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50dfa753 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x50f42354 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x50f7fd0f skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x5104d7c7 dev_deactivate +EXPORT_SYMBOL vmlinux 0x510842ef inode_init_always +EXPORT_SYMBOL vmlinux 0x510d5ef0 mount_subtree +EXPORT_SYMBOL vmlinux 0x51150c79 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x512aff50 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x514aa87a flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x514add55 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x5162f4ee rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51653572 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5168be37 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x5189fe20 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x519257ef __fput_sync +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51e7a0ef get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52054178 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x5239ee3e dev_load +EXPORT_SYMBOL vmlinux 0x5256e25a noop_qdisc +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x527b7f32 module_layout +EXPORT_SYMBOL vmlinux 0x527f69bf lookup_one_len +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52986cfb crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x529a6e85 set_page_dirty +EXPORT_SYMBOL vmlinux 0x52a2aedf __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52d8f739 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e56870 stop_tty +EXPORT_SYMBOL vmlinux 0x52ea1f4a nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x5309fe50 dev_change_flags +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530defd4 of_find_property +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531a7206 inet6_bind +EXPORT_SYMBOL vmlinux 0x5322c526 fman_bind +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x534f3a72 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x536f5846 __napi_schedule +EXPORT_SYMBOL vmlinux 0x5380a6d7 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x53b22129 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53d584e1 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x53d720d8 follow_up +EXPORT_SYMBOL vmlinux 0x53e2498c param_get_string +EXPORT_SYMBOL vmlinux 0x53e879cd vfs_symlink +EXPORT_SYMBOL vmlinux 0x53eed79f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f4c535 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x53fb9272 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x53fc8a85 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x53fd0e8b fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5405e0d8 rproc_boot +EXPORT_SYMBOL vmlinux 0x540b307d udp_gro_complete +EXPORT_SYMBOL vmlinux 0x541e08c2 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x542e0036 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54488835 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5472341b pcie_get_mps +EXPORT_SYMBOL vmlinux 0x54737869 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5479bf31 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x5480cfbe rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x548b6abe vc_cons +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b4ac4b neigh_app_ns +EXPORT_SYMBOL vmlinux 0x54e109a9 nobh_write_end +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54ecbaa9 d_tmpfile +EXPORT_SYMBOL vmlinux 0x54f880de acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x55158230 of_device_is_available +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551ce64e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x5530d677 dquot_destroy +EXPORT_SYMBOL vmlinux 0x55364a1d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55558e1a input_grab_device +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55896325 generic_listxattr +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55b17ee8 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x55b25c92 gro_cells_init +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ea9543 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x55faa1c2 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x56124460 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x561aa876 inet_bind +EXPORT_SYMBOL vmlinux 0x5620d3de build_skb_around +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563841c1 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x5644a4b0 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564a3580 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565b9e27 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x5665b40d ip_frag_init +EXPORT_SYMBOL vmlinux 0x566e6407 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568aa243 vme_slave_request +EXPORT_SYMBOL vmlinux 0x568bdcbb param_get_ulong +EXPORT_SYMBOL vmlinux 0x56929e9d tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x5697a430 phy_attached_print +EXPORT_SYMBOL vmlinux 0x5699999a vm_map_ram +EXPORT_SYMBOL vmlinux 0x56a1f11b param_get_long +EXPORT_SYMBOL vmlinux 0x56a90959 _dev_notice +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d36334 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x56db8f1a md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x56dd0ded d_find_alias +EXPORT_SYMBOL vmlinux 0x570aa836 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x572db6c5 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575ccf8d xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57751913 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x57794ae1 try_to_release_page +EXPORT_SYMBOL vmlinux 0x5784a8e2 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x578bd94b tcp_filter +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57adb746 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bc51a4 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x57c0362a pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x57c72d6d devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x57d351ea single_open_size +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e1bf69 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x57e40756 d_splice_alias +EXPORT_SYMBOL vmlinux 0x57ebb8f2 sock_no_getname +EXPORT_SYMBOL vmlinux 0x57f215c8 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x5805d35c _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x5810d1f0 ihold +EXPORT_SYMBOL vmlinux 0x581236c3 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x582aa76f tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584b6e08 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x586e2a36 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5878670c i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587d80d0 page_symlink +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5893387e sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x589f965c of_node_name_eq +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b0d30e vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58da161e skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f2643e dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5904c4f2 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x590ebee9 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x591652e6 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x5918e61f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x59313d8d devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x593e9a75 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x593f3179 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x594f3523 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5978298f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x5980e40b block_commit_write +EXPORT_SYMBOL vmlinux 0x5982cd03 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59ae1cd4 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b8df59 pcim_iomap +EXPORT_SYMBOL vmlinux 0x59be45fb vfs_setpos +EXPORT_SYMBOL vmlinux 0x59c3f4f0 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x59c60d8f input_set_timestamp +EXPORT_SYMBOL vmlinux 0x59f59eff _dev_printk +EXPORT_SYMBOL vmlinux 0x59fa95f9 nf_log_trace +EXPORT_SYMBOL vmlinux 0x5a00f100 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x5a04488e unregister_shrinker +EXPORT_SYMBOL vmlinux 0x5a08f430 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f59e5 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2e0c11 sock_create_kern +EXPORT_SYMBOL vmlinux 0x5a3e6d1a skb_copy_header +EXPORT_SYMBOL vmlinux 0x5a418057 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a52195e proc_symlink +EXPORT_SYMBOL vmlinux 0x5a524e61 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a62d57a ilookup +EXPORT_SYMBOL vmlinux 0x5a6cd971 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x5a7424fc generic_ro_fops +EXPORT_SYMBOL vmlinux 0x5a8dc351 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page +EXPORT_SYMBOL vmlinux 0x5a96bfa8 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa2db4a simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5abb53a2 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5abd8681 fiemap_prep +EXPORT_SYMBOL vmlinux 0x5ac87f37 __put_user_ns +EXPORT_SYMBOL vmlinux 0x5aca280a request_firmware +EXPORT_SYMBOL vmlinux 0x5ace9413 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x5ad3b092 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x5adebc87 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae75ce8 readahead_expand +EXPORT_SYMBOL vmlinux 0x5af6e0d3 phy_disconnect +EXPORT_SYMBOL vmlinux 0x5b060b7e max8998_write_reg +EXPORT_SYMBOL vmlinux 0x5b19336a of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b422b98 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b65ad7b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x5b79490f of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x5b962b27 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x5ba2d9b3 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x5baad91d pci_dev_get +EXPORT_SYMBOL vmlinux 0x5bb7a361 security_path_rename +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4f31 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf02bb0 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x5bf5d8ed ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c45ab5c handle_edge_irq +EXPORT_SYMBOL vmlinux 0x5c472613 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x5c989b80 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x5ca8eab2 set_page_writeback +EXPORT_SYMBOL vmlinux 0x5cac9650 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x5cbaf420 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x5cd260a5 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5cea722e netdev_features_change +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfd3952 of_iomap +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1d0546 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5d1e7e53 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x5d1ebdaf super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x5d313879 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x5d482e01 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d600979 scsi_print_result +EXPORT_SYMBOL vmlinux 0x5d8442ba __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5dba725f netdev_update_features +EXPORT_SYMBOL vmlinux 0x5dd81a9d eth_header_cache +EXPORT_SYMBOL vmlinux 0x5de7a1f2 cdev_add +EXPORT_SYMBOL vmlinux 0x5df361b2 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x5df52248 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5dfa5016 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0a7abe sk_common_release +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e100cfa refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x5e3240a0 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3fd9ac tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x5e437238 input_register_handle +EXPORT_SYMBOL vmlinux 0x5e573936 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7dfc02 sock_pfree +EXPORT_SYMBOL vmlinux 0x5e80c4c3 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8ddbb3 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x5e954cd4 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eaae18a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebfc9d0 cdev_init +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 0x5edc1d5d unix_get_socket +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5ef8bc9c del_gendisk +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f019c5f mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0bdc10 pci_save_state +EXPORT_SYMBOL vmlinux 0x5f0c4795 inet_select_addr +EXPORT_SYMBOL vmlinux 0x5f204a7f d_path +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2f321a fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5f4a4bcc jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x5f51891b fget +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f5536e1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5f5b5793 __serio_register_port +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f70b689 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x5f89fcc6 vme_lm_request +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x600276a4 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6042f7b8 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60617902 param_ops_uint +EXPORT_SYMBOL vmlinux 0x606f034d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x608108dd dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b56601 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610e97bf flush_dcache_page +EXPORT_SYMBOL vmlinux 0x6119e5f5 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x611eb382 eth_header_parse +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x613c71c4 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x616b91f2 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x61710c80 netdev_printk +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 0x618eba66 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61de786a dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x61dee995 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x61dfcce6 init_pseudo +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62368731 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x623a7226 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x625ecffa vga_put +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6278353d devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x627e612b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62867120 of_node_put +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62b95e78 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x62bd4149 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x62c88b0d dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62e08065 skb_append +EXPORT_SYMBOL vmlinux 0x62e8f9e1 rw_verify_area +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fbc828 napi_enable +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x631617bc nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632555d0 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x632dafa2 of_graph_is_present +EXPORT_SYMBOL vmlinux 0x636507ea pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x6366f483 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x63766da6 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x63797b9b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b406c9 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d4d631 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x64003fa2 sock_set_priority +EXPORT_SYMBOL vmlinux 0x640d0129 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6428e5cc scsi_remove_device +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x64345887 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x644be12c qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x64787b93 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ba2530 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c40665 simple_unlink +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 0x652725ca kill_pgrp +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x656239b3 tso_count_descs +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65929b25 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x65947030 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65d0c64c nf_log_unset +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 0x6600d78a phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x66018078 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x6606ead4 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x660e906d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x66112420 secpath_set +EXPORT_SYMBOL vmlinux 0x66121370 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x661aa904 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6635ec28 kobject_put +EXPORT_SYMBOL vmlinux 0x663ce963 submit_bh +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x664f658c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x66527a4e cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x665dab39 ping_prot +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x6697649a phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66c8b78b dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x66d23ee2 iterate_dir +EXPORT_SYMBOL vmlinux 0x66dfe6a9 get_tz_trend +EXPORT_SYMBOL vmlinux 0x66fc9a84 folio_mapped +EXPORT_SYMBOL vmlinux 0x67089099 param_set_bool +EXPORT_SYMBOL vmlinux 0x670ec1f3 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x67100fe7 rt6_lookup +EXPORT_SYMBOL vmlinux 0x6721081b mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x674090ae sock_init_data +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6750d340 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x675be856 seq_vprintf +EXPORT_SYMBOL vmlinux 0x6771e0ea new_inode +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67936081 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x67b22de3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78b6d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c986b3 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x67d826cd tcp_req_err +EXPORT_SYMBOL vmlinux 0x67dbf04e __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x680d351c i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x68102e65 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6810800e dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x68196b10 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6884e20b blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x68c6f263 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x68d70676 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x68df0f9d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x68dfbede fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x68e09d35 tso_start +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6935d36c register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x69361382 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x69450032 to_nd_dax +EXPORT_SYMBOL vmlinux 0x694af39e i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x694ba889 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x694ccf86 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x694cded3 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x6961a3ea d_invalidate +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x699e2574 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x69a9fc1a processors +EXPORT_SYMBOL vmlinux 0x69adff73 param_get_hexint +EXPORT_SYMBOL vmlinux 0x69b2a9db vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69fcc292 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a21c903 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a37be46 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x6a41032d inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a585eba mfd_cell_disable +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 0x6a6f0282 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x6a7f75ec qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x6a873b37 misc_register +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a915128 amba_device_register +EXPORT_SYMBOL vmlinux 0x6a956b6e blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6a97cb67 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa67d59 skb_tx_error +EXPORT_SYMBOL vmlinux 0x6ad127cc d_set_fallthru +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b1f9e1c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b31f07a drop_nlink +EXPORT_SYMBOL vmlinux 0x6b444c73 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b57ff38 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x6b6c9d76 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x6b7079c3 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b98b24f tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x6bb44cca ll_rw_block +EXPORT_SYMBOL vmlinux 0x6bbda47c get_user_pages +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bdfc169 netif_device_detach +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be6bc9a inet_protos +EXPORT_SYMBOL vmlinux 0x6be826c4 inc_nlink +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bfe3f5c arp_send +EXPORT_SYMBOL vmlinux 0x6c04ba01 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x6c173561 param_ops_hexint +EXPORT_SYMBOL vmlinux 0x6c1d5ac5 dev_activate +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c37dbb0 set_cached_acl +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6a5b4c of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c906171 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x6ca7716c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cdf5b40 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x6ce38122 xudma_get_device +EXPORT_SYMBOL vmlinux 0x6ce4fab8 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cfa15c1 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x6d0564c1 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6d06da48 key_revoke +EXPORT_SYMBOL vmlinux 0x6d0bb138 input_open_device +EXPORT_SYMBOL vmlinux 0x6d0c0aec __nlmsg_put +EXPORT_SYMBOL vmlinux 0x6d157db7 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x6d166425 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1b987e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x6d1c4579 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x6d20c2a1 skb_dump +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2dda36 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6d3174b4 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d3b0e88 unlock_page +EXPORT_SYMBOL vmlinux 0x6d3c930e fs_param_is_path +EXPORT_SYMBOL vmlinux 0x6d55e75b vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d632cbd vlan_for_each +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d78804d __post_watch_notification +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d7e1c57 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6d86ea77 skb_checksum +EXPORT_SYMBOL vmlinux 0x6d8c7f2a get_task_cred +EXPORT_SYMBOL vmlinux 0x6d9bdc7a mdiobus_write +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6daae24e config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +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 0x6dd83c00 iov_iter_init +EXPORT_SYMBOL vmlinux 0x6dda7d32 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6ded7189 mii_link_ok +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0bf787 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6e10e0bb blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x6e1ed17a mmc_can_erase +EXPORT_SYMBOL vmlinux 0x6e2ffd44 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6e3c52c3 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6250d8 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9234a4 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb07081 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x6eb8f40b jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x6eb9ced8 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x6ed9799e mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x6ede76fb key_unlink +EXPORT_SYMBOL vmlinux 0x6ef795cf devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6f0294e0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x6f2c6c0c simple_lookup +EXPORT_SYMBOL vmlinux 0x6f2d1dbb pci_request_region +EXPORT_SYMBOL vmlinux 0x6f334b54 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x6f3db5a3 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x6f3de580 md_write_inc +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f423802 dm_table_event +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f73ce67 user_path_create +EXPORT_SYMBOL vmlinux 0x6f75bd62 dmaenginem_async_device_register +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 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fea2b2a fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x6fedba99 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6ffae9a2 of_match_node +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700a6149 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x70123804 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x701b5912 sock_create +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702b22c3 tty_write_room +EXPORT_SYMBOL vmlinux 0x7051f34e padata_free +EXPORT_SYMBOL vmlinux 0x706f60b5 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7091f121 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x709b6513 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x709c6f70 xp_free +EXPORT_SYMBOL vmlinux 0x70abb806 register_qdisc +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70ba1259 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x70cb1dd1 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x70cee32f md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70df2459 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x70f40911 serio_close +EXPORT_SYMBOL vmlinux 0x71018555 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x710de13d rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x714c15e8 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x71514619 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715c2163 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x719d6214 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x71a5033e dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b6849b path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x71ba004b km_new_mapping +EXPORT_SYMBOL vmlinux 0x71d46200 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e17164 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x71fb5072 __nla_reserve +EXPORT_SYMBOL vmlinux 0x71fc7de5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x71fcd620 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x720128b9 param_set_charp +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72103533 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7223971f ps2_command +EXPORT_SYMBOL vmlinux 0x722fab27 __check_sticky +EXPORT_SYMBOL vmlinux 0x72310f49 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x7250fd74 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7277e4eb pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x727de424 mem_section +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72a828fc phy_print_status +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc39a8 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x72bd2940 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x72c69010 pci_pme_active +EXPORT_SYMBOL vmlinux 0x72d41a71 component_match_add_release +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eccdef rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72fd6e28 clk_get +EXPORT_SYMBOL vmlinux 0x73009b95 kernel_connect +EXPORT_SYMBOL vmlinux 0x730c19eb __bforget +EXPORT_SYMBOL vmlinux 0x730f5ae8 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x730f7592 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x73111d08 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x7311c30b blk_rq_count_integrity_sg +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 0x7321ced6 udp_ioctl +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7336d4b6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7355f872 napi_complete_done +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x736591fc __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x736d50e0 mpage_readahead +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 0x73c5926a xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x73c5db33 md_check_recovery +EXPORT_SYMBOL vmlinux 0x73cc7d45 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x73d7357c do_clone_file_range +EXPORT_SYMBOL vmlinux 0x73e167c1 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x740d9d79 skb_recv_datagram +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 0x7435fc1f iov_iter_discard +EXPORT_SYMBOL vmlinux 0x7439e1e9 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744b45c7 param_array_ops +EXPORT_SYMBOL vmlinux 0x744fa740 passthru_features_check +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74591868 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x7462cc18 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x748f264d dquot_operations +EXPORT_SYMBOL vmlinux 0x74a63b06 eth_type_trans +EXPORT_SYMBOL vmlinux 0x74b03ae2 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bba8ae register_console +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cc1971 ether_setup +EXPORT_SYMBOL vmlinux 0x74d66ea1 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f24981 tcp_child_process +EXPORT_SYMBOL vmlinux 0x74f979a9 done_path_create +EXPORT_SYMBOL vmlinux 0x74fd1856 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x750ca994 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x75166377 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x751e704b phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x752712b5 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x753507bd of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x755a4614 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x757702d7 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x758300a6 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7584eea2 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75959668 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x759f5f8a security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x75baf878 pci_enable_msix_range +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 0x75d57ed3 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x75f8ffb4 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7614387f set_create_files_as +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x761cb7cf vme_slot_num +EXPORT_SYMBOL vmlinux 0x762155da ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762a1bba sock_rfree +EXPORT_SYMBOL vmlinux 0x76432462 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764f50b4 pci_set_master +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76664749 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76c3e394 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e3b713 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x771cfdde seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7720dbbe xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x77248824 dev_vprintk_emit +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 0x774173eb sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7765bab7 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x776b106e seq_puts +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x7785971d of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x778782be __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x778d14ee bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x77910492 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77baca40 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bfa692 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x77c8b0f7 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x77ccfbe0 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x77cebf30 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ed228e tcf_action_exec +EXPORT_SYMBOL vmlinux 0x77ff4e5c locks_remove_posix +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7819eff5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x78417b76 netlink_set_err +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b3dbf eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7852d3d3 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x787b8332 simple_rename +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78819640 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x788727cb vfs_rename +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78ad7a37 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x78af8bdb flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78cf93e2 touch_buffer +EXPORT_SYMBOL vmlinux 0x78d82281 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x78df162e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e1883f xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x78ee3307 dev_trans_start +EXPORT_SYMBOL vmlinux 0x78f43137 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x78f60312 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x7909180e reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x791778c8 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x791a9a36 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x791b73d5 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x7921b6be pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x793738ae sock_no_mmap +EXPORT_SYMBOL vmlinux 0x796d3ab3 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7975f6d2 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798b4bf5 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a92b42 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x79aea339 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x79bf44fe rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x79d05fde i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x79d76798 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x79ff8180 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0b3c84 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a27b463 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3d2f2d ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x7a3dcd58 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a634dc3 fb_class +EXPORT_SYMBOL vmlinux 0x7a695d58 of_get_next_child +EXPORT_SYMBOL vmlinux 0x7a7465f0 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7a7d6412 bioset_exit +EXPORT_SYMBOL vmlinux 0x7a860c0d key_invalidate +EXPORT_SYMBOL vmlinux 0x7a8916d2 tty_check_change +EXPORT_SYMBOL vmlinux 0x7a8f4059 fc_mount +EXPORT_SYMBOL vmlinux 0x7a8f51e8 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab620a7 import_single_range +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abcc6b8 dst_discard_out +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7aff7fd3 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7b0e3da9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7b25c0c8 PageMovable +EXPORT_SYMBOL vmlinux 0x7b2882e5 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b42a7bd d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5e8a2b get_cached_acl +EXPORT_SYMBOL vmlinux 0x7b626b36 pipe_unlock +EXPORT_SYMBOL vmlinux 0x7b63cb29 ip6_output +EXPORT_SYMBOL vmlinux 0x7b74ab37 generic_write_end +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b84ac9a ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x7b8bafec inet6_offloads +EXPORT_SYMBOL vmlinux 0x7b8cc78c pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7b97a2ac rproc_del +EXPORT_SYMBOL vmlinux 0x7b9cdbe0 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7ba731ef unlock_new_inode +EXPORT_SYMBOL vmlinux 0x7ba8596e is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x7bab94f7 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x7bb2d657 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7bb3a094 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bbe3602 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7bc6bc68 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7bcf86ec arp_tbl +EXPORT_SYMBOL vmlinux 0x7bdabd4c reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x7bdbd15e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7c010846 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x7c1115d0 vfs_link +EXPORT_SYMBOL vmlinux 0x7c1394df mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x7c14c7b7 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c182998 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x7c1cc68f pci_dev_put +EXPORT_SYMBOL vmlinux 0x7c266f07 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x7c459513 nla_append +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c55aa10 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7c79b69c serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x7c7b4c37 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x7c7d6c17 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x7c9059f7 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca6e840 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x7ca8c12e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x7cacc78f generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7cad1fe3 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7cc2dcc9 __f_setown +EXPORT_SYMBOL vmlinux 0x7ce1095a genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfdf1ff inet_release +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d05a462 neigh_table_init +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 0x7d1497cf phy_device_register +EXPORT_SYMBOL vmlinux 0x7d16baad dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7d1afaa8 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d5f2339 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x7d71e67c udp_poll +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d92953b of_clk_get +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc31994 read_cache_folio +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcf4111 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de21551 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x7de9f2f9 kobject_set_name +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e09f883 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x7e0b9c02 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x7e1d0156 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3cc78c _dev_emerg +EXPORT_SYMBOL vmlinux 0x7e6e0375 sk_alloc +EXPORT_SYMBOL vmlinux 0x7e7f207a poll_freewait +EXPORT_SYMBOL vmlinux 0x7ea447ee twl6040_power +EXPORT_SYMBOL vmlinux 0x7ec60a42 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x7edba3b1 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x7edfa4d0 __inet_hash +EXPORT_SYMBOL vmlinux 0x7ef035a3 tty_register_driver +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f023a9a phy_read_paged +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f281743 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5eaa36 simple_release_fs +EXPORT_SYMBOL vmlinux 0x7f740aa8 nla_reserve +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f893108 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7f8d7495 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x7fa3d4ed param_get_bool +EXPORT_SYMBOL vmlinux 0x7fb6855c ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7fb98a86 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x7fbdfa23 param_set_invbool +EXPORT_SYMBOL vmlinux 0x7fc476f5 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fdfd02f pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x800c870d acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x80289b52 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x8028c797 phy_get_pause +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8054e30b __i2c_transfer +EXPORT_SYMBOL vmlinux 0x806341a1 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x80659161 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x80708d8c devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x808f7f56 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809b42c2 iget_locked +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cc80e4 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x80ce8bbc __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e50b28 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80e817cf page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +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 0x8120d471 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x81240b92 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x8125c531 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x8144d227 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x814957e6 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8166c276 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x81691985 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x8177dcfb register_netdevice +EXPORT_SYMBOL vmlinux 0x8183b686 flush_signals +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818a55a1 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x818aca27 param_set_uint +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a041cd phy_suspend +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81b7929c free_buffer_head +EXPORT_SYMBOL vmlinux 0x81c1b387 redraw_screen +EXPORT_SYMBOL vmlinux 0x81c77fd5 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x81cce719 d_move +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ea49ed fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x81ed89fb sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x81fca2ec device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x820a5f9e try_module_get +EXPORT_SYMBOL vmlinux 0x8229489d bio_copy_data +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8242654d phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x82488f49 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x8250b5ed input_register_handler +EXPORT_SYMBOL vmlinux 0x82618232 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8264945c netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x82857473 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x828c2758 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x82941641 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82ca0e6f pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x82ed6f72 generic_read_dir +EXPORT_SYMBOL vmlinux 0x82ff84da kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x830b638a of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x8337fb2f sock_efree +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835e0449 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x836e5863 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838541b8 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838d71cd get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x83bef773 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x83c9e9a5 __devm_release_region +EXPORT_SYMBOL vmlinux 0x83f82a01 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x83fd1daa vme_master_mmap +EXPORT_SYMBOL vmlinux 0x84021a7e __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84102c85 path_get +EXPORT_SYMBOL vmlinux 0x84200f03 tcp_mmap +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842b8e98 textsearch_register +EXPORT_SYMBOL vmlinux 0x8434eabc pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x8436d338 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x8441da86 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x844d8e05 kobject_add +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8461062e filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x8467cd1d input_set_keycode +EXPORT_SYMBOL vmlinux 0x847721cb of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x847a0e31 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x847e95db dcb_setapp +EXPORT_SYMBOL vmlinux 0x84810580 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x8484d898 sk_net_capable +EXPORT_SYMBOL vmlinux 0x848727bd send_sig_info +EXPORT_SYMBOL vmlinux 0x84894e88 scsi_host_get +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84aa9b1a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c89199 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x84cb9c4e f_setown +EXPORT_SYMBOL vmlinux 0x84cf3db9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x85095232 vm_map_pages +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x851bc2a6 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x85340a23 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x853c9f3f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856b3a57 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85abf315 may_umount_tree +EXPORT_SYMBOL vmlinux 0x85ac33da uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x85b51a4d vfs_create +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b927ff pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85dc1932 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f1681e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x85fa67a2 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x860c4e75 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x861edd92 kill_fasync +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x86338c64 input_unregister_device +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x86519406 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x86629e37 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8676f50c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8693eb1b pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x86999094 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x86a3c00e tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x86c6ee8e i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x86c79c9f __fs_parse +EXPORT_SYMBOL vmlinux 0x86cfc5fd netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86d91cc5 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e085be alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x86f09214 __d_drop +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8703061e vfs_getattr +EXPORT_SYMBOL vmlinux 0x87067789 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x8722c124 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x87254cf3 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x8732be25 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876de0f0 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87834668 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x878bccc8 empty_aops +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a3d7a9 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x87ae04e2 put_cmsg +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c9780c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x87ce8b98 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x87d26bc3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x87dac906 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x87db5d25 begin_new_exec +EXPORT_SYMBOL vmlinux 0x88062340 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x880ae5b8 tty_port_destroy +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 0x881cd46e genphy_loopback +EXPORT_SYMBOL vmlinux 0x8826bc47 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x8840e76c pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x8849fc10 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x884fc056 clkdev_add +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8885f6a1 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88890d85 inode_init_once +EXPORT_SYMBOL vmlinux 0x888a92d9 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88aeee16 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88eafd89 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x88f7a271 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x891b1c16 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x892d758a scsi_remove_target +EXPORT_SYMBOL vmlinux 0x892f6a6c lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x894f6721 release_pages +EXPORT_SYMBOL vmlinux 0x8959ad01 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x895b8c5c pci_find_capability +EXPORT_SYMBOL vmlinux 0x898c01c8 vme_irq_free +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89af14ab scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x89bb9db8 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x89eff7c1 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x8a178fe1 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8a1dd4b0 locks_delete_block +EXPORT_SYMBOL vmlinux 0x8a24c89e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x8a328586 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8a3de3d9 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a529218 dquot_release +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7a245e netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8259cc mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8a97aeec filemap_flush +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa25592 tty_unlock +EXPORT_SYMBOL vmlinux 0x8ab636d7 cfb_imageblit +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 0x8adfaf08 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x8ae5002e blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x8ae62592 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x8aed99db inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x8afa46aa cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b04d626 simple_write_begin +EXPORT_SYMBOL vmlinux 0x8b09c9de inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8b1f9bd9 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x8b242ca2 cdrom_release +EXPORT_SYMBOL vmlinux 0x8b2eb9e1 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x8b2ecaf9 dcb_getapp +EXPORT_SYMBOL vmlinux 0x8b2ffd83 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x8b50e80e folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b67d334 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb5747e inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8bba15fb setattr_copy +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be6d424 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x8bf19f75 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x8c117a12 mii_check_media +EXPORT_SYMBOL vmlinux 0x8c1a78c3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x8c2507f6 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c28aa6e get_tree_nodev +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c3d4b48 inet_listen +EXPORT_SYMBOL vmlinux 0x8c4b5f49 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x8c4cd13b tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8c615409 vfs_fsync +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c699205 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x8c6bfc81 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x8c6f59eb security_path_mknod +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8a3692 __pagevec_release +EXPORT_SYMBOL vmlinux 0x8c8afc18 keyring_search +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb86a10 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x8cbcca01 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8ccbb965 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x8cd6c599 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x8cd8af57 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdc196c mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x8cefb190 rtnl_notify +EXPORT_SYMBOL vmlinux 0x8d112106 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x8d12fcd7 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5d6a8b eth_get_headlen +EXPORT_SYMBOL vmlinux 0x8d6e97a6 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7cea88 peernet2id +EXPORT_SYMBOL vmlinux 0x8d8b1b23 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x8d8ddb43 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x8d9c289d stream_open +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8dac7725 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x8daedb79 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x8db40755 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8db78c2b tty_port_close +EXPORT_SYMBOL vmlinux 0x8dd04328 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de9d792 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x8dec2a36 __skb_pad +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfdb3b2 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8e0480c1 dcache_readdir +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e294f7d input_event +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e415d5c free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e6c6804 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea3e246 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x8ec330db skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x8edd863a param_ops_short +EXPORT_SYMBOL vmlinux 0x8ee36166 mount_bdev +EXPORT_SYMBOL vmlinux 0x8ee60020 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8ef02cc9 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f33fd93 param_get_invbool +EXPORT_SYMBOL vmlinux 0x8f5a0dc6 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x8f7148c8 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x8f7c4f50 open_exec +EXPORT_SYMBOL vmlinux 0x8f853d32 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x8f8651af skb_push +EXPORT_SYMBOL vmlinux 0x8f8df3a4 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb5c19c devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x8fbdf831 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fcfe2a3 skb_pull_data +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fecddab cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8fef4da2 update_region +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffcaf61 may_umount +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9005b01e iov_iter_npages +EXPORT_SYMBOL vmlinux 0x900db258 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x902268b6 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902f5199 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90361b43 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x903e3039 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x904d7111 kill_pid +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x905bb29b vfs_ioctl +EXPORT_SYMBOL vmlinux 0x906f2d8e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x907ad595 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x9087b996 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x9091a164 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x9095be59 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x909913ba blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x90ae0cba config_group_init +EXPORT_SYMBOL vmlinux 0x90b28140 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x90cf70ee configfs_register_group +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e8141b rproc_alloc +EXPORT_SYMBOL vmlinux 0x90f53873 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x90ff9d3f of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x910b7e0f skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x911324d0 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x91282922 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x913d6cc8 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x9161380e xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x916e63cc cdev_device_del +EXPORT_SYMBOL vmlinux 0x916e9f6f rproc_report_crash +EXPORT_SYMBOL vmlinux 0x9171f5e3 icmp6_send +EXPORT_SYMBOL vmlinux 0x918872f8 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x918a7715 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x91959599 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9195d688 qdisc_reset +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a2adfc security_inode_notifysecctx +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 0x91c3e19d devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x91ca8b0c clear_inode +EXPORT_SYMBOL vmlinux 0x91ddfe5a sync_file_create +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f5eb41 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x921e0619 end_page_writeback +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923bb985 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x92458d45 __find_get_block +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x926a667c param_set_ulong +EXPORT_SYMBOL vmlinux 0x926baf4d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x9285f1ad genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92936e6d tty_unthrottle +EXPORT_SYMBOL vmlinux 0x9296578e _copy_to_iter +EXPORT_SYMBOL vmlinux 0x9298751c mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929a6870 param_get_charp +EXPORT_SYMBOL vmlinux 0x92a10c79 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x92a814c2 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c90049 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92dbfbf5 filemap_fault +EXPORT_SYMBOL vmlinux 0x92dc5ecb security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x92e374ed devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x92e5e820 wake_up_process +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92ec8f71 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x92f59ba7 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9316eefc pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x93189056 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x936c7457 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937d5505 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x938446c3 genphy_resume +EXPORT_SYMBOL vmlinux 0x939bac4d locks_init_lock +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93d945f8 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x93e55f0a page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x94019e54 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x940a7bfe pci_get_subsys +EXPORT_SYMBOL vmlinux 0x9413c35e bdi_unregister +EXPORT_SYMBOL vmlinux 0x9421a615 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9440b3a3 iget5_locked +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x9449434d dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945434f5 mpage_writepages +EXPORT_SYMBOL vmlinux 0x94549ff7 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x94604a28 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x9464eaa9 napi_build_skb +EXPORT_SYMBOL vmlinux 0x946e68b4 skb_pull +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c1e471 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x94c6662c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x94d91f78 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x94d93dbf ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94fc8d93 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x94fffe75 sock_from_file +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950a7145 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x95223893 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x952a5462 bio_uninit +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954b2484 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954df6b9 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x956caf87 fb_show_logo +EXPORT_SYMBOL vmlinux 0x957cbfeb dqget +EXPORT_SYMBOL vmlinux 0x957d1c26 dm_register_target +EXPORT_SYMBOL vmlinux 0x957e8d6e flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x9586e234 truncate_setsize +EXPORT_SYMBOL vmlinux 0x958e9ed5 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x959d8910 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95b3df07 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x95d57497 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x95e2deb5 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x95f21391 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x9638b7c5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96af83b1 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bc472f xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c40f00 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1ab4e vfs_unlink +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970430ec dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9718eb15 seq_path +EXPORT_SYMBOL vmlinux 0x97312b05 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x973174de insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x9731f657 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974363f9 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x97680fb3 clk_add_alias +EXPORT_SYMBOL vmlinux 0x9787abce has_capability +EXPORT_SYMBOL vmlinux 0x9790b65c mmc_retune_release +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97a4de46 sock_wake_async +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a57c44 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bafd22 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97cc1122 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x9801042c xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x98044413 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x980f743f mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x98142a4c __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x98275a50 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x9829f764 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982bcde4 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x98343a63 from_kprojid +EXPORT_SYMBOL vmlinux 0x985e05a3 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x98764554 pipe_lock +EXPORT_SYMBOL vmlinux 0x987cf36b km_state_notify +EXPORT_SYMBOL vmlinux 0x989a7b8c vm_insert_page +EXPORT_SYMBOL vmlinux 0x98b8761a security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c70030 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x98c73237 d_delete +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d00f56 get_fs_type +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ee1447 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x99069c19 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x992002cc iunique +EXPORT_SYMBOL vmlinux 0x9927cd7d __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9931f8c9 qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9941d204 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9943258d pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x9946978d __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x996127bf skb_dequeue +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x999d5e03 from_kuid +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a065c8 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x99a38741 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d4b19c open_with_fake_path +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e4feda __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x99eaf214 phy_find_first +EXPORT_SYMBOL vmlinux 0x99ed3bdb __sock_cmsg_send +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 0x9a138ad3 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a217c7a generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2c258e dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x9a31a662 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9a32b167 sock_alloc +EXPORT_SYMBOL vmlinux 0x9a3ce3c5 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x9a405365 nd_btt_version +EXPORT_SYMBOL vmlinux 0x9a4485ad mmc_erase +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6248ad of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x9a6f67d0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9a73468b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9a8fb5c8 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x9a9431f2 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x9aab9ace eth_validate_addr +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ad77b65 page_pool_create +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af21f09 dma_resv_init +EXPORT_SYMBOL vmlinux 0x9af87366 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x9afef18b pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x9b0ef937 nd_device_notify +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 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b54404e md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b7d410d page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x9b83fd09 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x9b8c5133 netdev_emerg +EXPORT_SYMBOL vmlinux 0x9b8e4352 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x9bb8b8e9 qdisc_put +EXPORT_SYMBOL vmlinux 0x9bc2ad95 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x9bc2e0dd __neigh_event_send +EXPORT_SYMBOL vmlinux 0x9bc8dab7 finish_open +EXPORT_SYMBOL vmlinux 0x9be4457a genphy_read_status +EXPORT_SYMBOL vmlinux 0x9bf3abd4 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x9c001e1f vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9c01181e I_BDEV +EXPORT_SYMBOL vmlinux 0x9c0b235a scsi_register_interface +EXPORT_SYMBOL vmlinux 0x9c0c68b6 config_group_find_item +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c34bafc phy_device_remove +EXPORT_SYMBOL vmlinux 0x9c3be1ee vif_device_init +EXPORT_SYMBOL vmlinux 0x9c3f6e7e nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x9c402fb8 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x9c4fff42 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5b877b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c737c75 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x9c83f18a sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c87405e devm_rproc_add +EXPORT_SYMBOL vmlinux 0x9c9ccede dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb81e2b xfrm_state_free +EXPORT_SYMBOL vmlinux 0x9cbf7110 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x9cc14883 inet6_release +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 0x9cf5b6ab param_ops_ullong +EXPORT_SYMBOL vmlinux 0x9cf5e230 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x9d006874 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d42e56f sg_miter_next +EXPORT_SYMBOL vmlinux 0x9d538038 __block_write_begin +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9ddc1242 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x9ddcf841 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x9dec47d8 serio_open +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df2c01f kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x9df7a629 tcp_seq_start +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 0x9e353727 tcf_register_action +EXPORT_SYMBOL vmlinux 0x9e431b9e pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x9e481a6d udp_gro_receive +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e555793 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x9e5a507a fb_get_mode +EXPORT_SYMBOL vmlinux 0x9e5e750d node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e69c9b5 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e7f0cc0 tcf_em_register +EXPORT_SYMBOL vmlinux 0x9e820b16 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaa1ce4 dm_put_device +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ec9721b seq_write +EXPORT_SYMBOL vmlinux 0x9ed7c847 brcmstb_get_family_id +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee49ea7 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9f2c68ad __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x9f313fd1 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x9f399498 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x9f3c6787 phy_stop +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4b3c21 rproc_detach +EXPORT_SYMBOL vmlinux 0x9f4e13ab twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f6c8629 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x9f70c575 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa3bc53 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fa804e3 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fb9f159 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x9fc50193 dquot_transfer +EXPORT_SYMBOL vmlinux 0x9fd9da5c posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe5795c migrate_page_copy +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffb91dc jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xa0024212 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa017ae99 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa0309790 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03f82cf prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a6910 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa0599291 mipi_dsi_dcs_exit_sleep_mode +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 0xa0adcb43 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c5888b ___pskb_trim +EXPORT_SYMBOL vmlinux 0xa0cf270d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa0d060b9 param_ops_byte +EXPORT_SYMBOL vmlinux 0xa0d78b46 kernel_param_unlock +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 0xa0f974b9 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1071768 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11394e8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xa114cb81 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xa11af136 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xa11b2099 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa121a5d5 set_posix_acl +EXPORT_SYMBOL vmlinux 0xa14f6232 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0xa17d13d0 blkdev_put +EXPORT_SYMBOL vmlinux 0xa17f90e8 mntput +EXPORT_SYMBOL vmlinux 0xa185a3d2 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa194598e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xa1a08e30 nonseekable_open +EXPORT_SYMBOL vmlinux 0xa1a5c213 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xa1b4680c netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xa1baadc1 mmc_free_host +EXPORT_SYMBOL vmlinux 0xa1d092c9 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa1d55990 vme_irq_request +EXPORT_SYMBOL vmlinux 0xa1e51503 __folio_alloc +EXPORT_SYMBOL vmlinux 0xa1f47fec nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa22cecfd reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa240c108 unpin_user_pages +EXPORT_SYMBOL vmlinux 0xa24331b7 fqdir_exit +EXPORT_SYMBOL vmlinux 0xa243882f build_skb +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa26e34fe page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xa286aee6 __do_once_done +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa290e2cb security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xa2acf5a9 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xa2b7624c vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa2cbe767 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e9f3b0 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa2effa08 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xa3331dda rtc_add_group +EXPORT_SYMBOL vmlinux 0xa339e6e5 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xa3424bd1 vme_master_request +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa355b617 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa3691782 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xa377bebd ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xa37be670 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa39631fa mdiobb_read +EXPORT_SYMBOL vmlinux 0xa3a3f229 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xa3ac851f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa3b04b90 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xa3b88854 kern_path_create +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3eeab87 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xa3f3f108 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa3fee956 console_stop +EXPORT_SYMBOL vmlinux 0xa40402d9 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa40e7988 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa410c7ad rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xa416d246 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa416eff1 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xa4206efa get_watch_queue +EXPORT_SYMBOL vmlinux 0xa4267597 setattr_prepare +EXPORT_SYMBOL vmlinux 0xa42e359e dump_emit +EXPORT_SYMBOL vmlinux 0xa42ef797 ip_frag_next +EXPORT_SYMBOL vmlinux 0xa445d40e set_user_nice +EXPORT_SYMBOL vmlinux 0xa447d209 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa4567daf alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xa46365f9 block_write_begin +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa48464b0 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xa4b91222 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xa4bf45b6 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xa4c1a646 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xa4ddc2c5 inet6_protos +EXPORT_SYMBOL vmlinux 0xa4e2b46e rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0xa4e7bf5d udp_prot +EXPORT_SYMBOL vmlinux 0xa4f4619b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa4f94ac3 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa4fef800 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa5059a56 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa5061af1 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xa507e74f pci_release_resource +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa5174e75 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xa5205fbe mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa564955a tcf_idr_release +EXPORT_SYMBOL vmlinux 0xa56d29c3 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xa56eb3fb dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xa583ed5c folio_end_writeback +EXPORT_SYMBOL vmlinux 0xa5870a06 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5941181 page_pool_release_page +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa59d16f1 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xa5c08622 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xa5c08ff4 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xa5d0efa3 inet_put_port +EXPORT_SYMBOL vmlinux 0xa5d66bbf pci_choose_state +EXPORT_SYMBOL vmlinux 0xa5d7694f phy_init_hw +EXPORT_SYMBOL vmlinux 0xa5ecf7e0 __register_nls +EXPORT_SYMBOL vmlinux 0xa5f7cf37 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa5fa4ecb security_sb_remount +EXPORT_SYMBOL vmlinux 0xa60aeb97 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa62ce7d3 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xa6471c26 __kfree_skb +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6874c43 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa68a44cb kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa69b5df7 discard_new_inode +EXPORT_SYMBOL vmlinux 0xa6bb5479 from_kgid +EXPORT_SYMBOL vmlinux 0xa6cde64a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa6d45ba5 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xa6e4968c md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xa6ff83a4 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa7131986 _dev_err +EXPORT_SYMBOL vmlinux 0xa715795a dma_resv_fini +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa721ff51 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xa7290ada unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xa729ff0b register_md_personality +EXPORT_SYMBOL vmlinux 0xa730a6de d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xa7310d82 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7947c49 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0xa7cae487 phy_attached_info +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7e4f7df scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa7ec0686 folio_alloc +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa804fb2d sk_ns_capable +EXPORT_SYMBOL vmlinux 0xa812faa8 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa82afdcd drop_super +EXPORT_SYMBOL vmlinux 0xa8313b94 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xa8433c64 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84d853b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa84fb306 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8639dd1 d_instantiate_anon +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 0xa89a3aeb udp_seq_stop +EXPORT_SYMBOL vmlinux 0xa8a30e6d fman_get_revision +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b6d70e phy_modify_paged +EXPORT_SYMBOL vmlinux 0xa8ba65de set_binfmt +EXPORT_SYMBOL vmlinux 0xa8bd52af tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e9334f sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xa8f077a7 validate_slab_cache +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f7d5dd scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa8ff9c63 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xa9001473 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xa90176ff __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa905e26b __netif_napi_del +EXPORT_SYMBOL vmlinux 0xa906c177 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xa9083a78 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa94f8352 arp_create +EXPORT_SYMBOL vmlinux 0xa957cd46 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa9619290 tcp_poll +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa96579bc sk_capable +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa978e96d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xa98e4c89 devm_request_resource +EXPORT_SYMBOL vmlinux 0xa9957f3a phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xa99efafd init_special_inode +EXPORT_SYMBOL vmlinux 0xa9a37059 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xa9c1d4ce pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xa9c57485 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xa9cec83e pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xa9e14492 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xa9eacf53 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f6df28 pci_restore_state +EXPORT_SYMBOL vmlinux 0xa9f85a87 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa015d00 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xaa071bda of_root +EXPORT_SYMBOL vmlinux 0xaa07cd35 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa26addf finish_no_open +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa35d381 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xaa60215a __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xaa66e094 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa865bf8 skb_store_bits +EXPORT_SYMBOL vmlinux 0xaa8c5834 md_write_end +EXPORT_SYMBOL vmlinux 0xaa9411d1 of_device_unregister +EXPORT_SYMBOL vmlinux 0xaa9af798 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0xaa9da70b sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xaaa421ab rproc_free +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaab82de3 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xaac54552 unlock_two_nondirectories +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 0xaaf05296 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab02331c clear_nlink +EXPORT_SYMBOL vmlinux 0xab24b3f8 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xab336006 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7b34bf i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xab806377 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xab8b322e input_unregister_handle +EXPORT_SYMBOL vmlinux 0xab8c36b0 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xab940e29 scsi_done +EXPORT_SYMBOL vmlinux 0xab95bb63 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xab9a04cf mdio_device_register +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf6a265 vme_bus_num +EXPORT_SYMBOL vmlinux 0xac049885 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xac055446 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac20c6ff icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xac2b9b9c nf_hook_slow +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac465e5d mdio_device_free +EXPORT_SYMBOL vmlinux 0xac504ec4 udplite_prot +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac53b486 fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0xac567e52 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac632ac4 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xac6f8c35 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xac72fe71 locks_free_lock +EXPORT_SYMBOL vmlinux 0xac7afd7b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xac8a81c7 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xaca3e349 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb5c06b dst_alloc +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 0xad04a771 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xad0611df i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad3221a3 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xad324a0f dentry_open +EXPORT_SYMBOL vmlinux 0xad346e6f blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad3f3630 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xad6006d6 seq_hex_dump +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 0xad772639 netdev_change_features +EXPORT_SYMBOL vmlinux 0xad7abfe8 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad9b360a xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb1ef0c ptp_clock_index +EXPORT_SYMBOL vmlinux 0xadb7f220 vfs_get_super +EXPORT_SYMBOL vmlinux 0xadbed480 keyring_clear +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc42e00 __breadahead +EXPORT_SYMBOL vmlinux 0xadc5a286 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xadc8d7d0 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xadca748a fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xaddb27bd dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae02aeee vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae07dcf9 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xae121377 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xae25dde2 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae68be19 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xae69866e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xae7c91f6 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xae93d083 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xae99a7e5 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0xae9f62fa mr_table_dump +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeae082b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec3591e ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xaec66792 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaed51b98 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xaeddd53a scm_detach_fds +EXPORT_SYMBOL vmlinux 0xaef1d4fd pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xaf05014c mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xaf0f0c86 scmd_printk +EXPORT_SYMBOL vmlinux 0xaf10d152 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xaf15c06a xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xaf15f9ae seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xaf2c405b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf64e1d7 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xaf97ca00 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xaf9e239e neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xafa0cf24 security_sk_clone +EXPORT_SYMBOL vmlinux 0xafa19265 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xafaab4e0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xafab4e1b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xafab917b genphy_suspend +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafed89a4 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xaff8c14b __register_chrdev +EXPORT_SYMBOL vmlinux 0xaffa09d3 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02a083f of_get_parent +EXPORT_SYMBOL vmlinux 0xb036c381 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xb03c09a8 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xb048a74d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xb048a877 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xb048b728 kset_register +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb063ae94 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xb067bb8d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xb069b107 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb090cf2e release_sock +EXPORT_SYMBOL vmlinux 0xb090dddd tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xb092d389 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0c0fb3b devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xb0c22cc1 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d53526 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xb0db7dba dev_lstats_read +EXPORT_SYMBOL vmlinux 0xb0ddabb3 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e5fe59 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xb0e7c178 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xb0f137ff dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb0f46171 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xb0f8f55a bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xb0f9b113 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb10dc9f3 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb10f370f genphy_c37_read_status +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 0xb1377039 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb1498046 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb15a640d of_platform_device_create +EXPORT_SYMBOL vmlinux 0xb167f704 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xb1870dda ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb18e903c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xb19286e9 inet_add_offload +EXPORT_SYMBOL vmlinux 0xb195c4aa __udp_disconnect +EXPORT_SYMBOL vmlinux 0xb1a13d93 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb1a88767 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c522db jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1dc93fe fman_reset_mac +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1de3344 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb1ec1313 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb1ec9873 mii_check_link +EXPORT_SYMBOL vmlinux 0xb2298e96 dma_find_channel +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb243d2e6 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb259cfc9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xb29a9942 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xb2a08223 mmc_put_card +EXPORT_SYMBOL vmlinux 0xb2a13290 param_ops_bint +EXPORT_SYMBOL vmlinux 0xb2b5a6e2 set_blocksize +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2d82a1c sock_no_connect +EXPORT_SYMBOL vmlinux 0xb2ddb525 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xb2df8b54 vlan_filter_push_vids +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 0xb317b49c filemap_map_pages +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 0xb32c2bee input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xb336264c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb37ed17e ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xb37fee6b dev_addr_add +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3b28c67 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xb3b455a5 of_node_get +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d40ea4 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb3d8c42a devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f288fa dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fe9e94 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb41f9314 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4380d2e config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xb440f2ac __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb450d732 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb4704d44 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb4912b2c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb493beed nla_put +EXPORT_SYMBOL vmlinux 0xb497750e __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xb4a4b39b blk_queue_split +EXPORT_SYMBOL vmlinux 0xb4ad9259 fb_set_var +EXPORT_SYMBOL vmlinux 0xb4b63b49 dma_supported +EXPORT_SYMBOL vmlinux 0xb4c31a0d mdio_device_reset +EXPORT_SYMBOL vmlinux 0xb4eb2197 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4fe5386 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xb51c40f7 d_alloc_name +EXPORT_SYMBOL vmlinux 0xb52b8ae5 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb56acfb1 dquot_disable +EXPORT_SYMBOL vmlinux 0xb56c042d vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb570ab59 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xb57d492a sock_i_uid +EXPORT_SYMBOL vmlinux 0xb57def02 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58524f8 backlight_device_register +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb592ac57 scsi_device_put +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bc0277 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb5db8fb2 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb5e4c063 get_vm_area +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb61062f5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb6120d71 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb61f414a pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xb632f410 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6390863 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb6434691 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb64e85ef sock_bind_add +EXPORT_SYMBOL vmlinux 0xb64eba4c vfs_iter_write +EXPORT_SYMBOL vmlinux 0xb6527f30 tcf_classify +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6618587 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68a82d3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6967440 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb69b3249 key_type_keyring +EXPORT_SYMBOL vmlinux 0xb6a360ef vga_get +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b7cf5e simple_transaction_read +EXPORT_SYMBOL vmlinux 0xb6b8228c devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d73955 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ed7757 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xb6fc8bef __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7007bfe netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0xb705b0e4 dev_uc_init +EXPORT_SYMBOL vmlinux 0xb71096dd __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb72dd1d2 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0xb73167a8 _dev_info +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73f2fb6 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb74e4bf9 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb753379e seq_read +EXPORT_SYMBOL vmlinux 0xb759b773 __ps2_command +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb76bcca0 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb77fed9f serio_rescan +EXPORT_SYMBOL vmlinux 0xb78068fc mfd_add_devices +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb796597f of_match_device +EXPORT_SYMBOL vmlinux 0xb79f369f finalize_exec +EXPORT_SYMBOL vmlinux 0xb7a44ea5 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xb7a87f62 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb7a9af30 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c202a1 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c97e5d flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xb7d895c9 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb7dd2e2b dev_get_flags +EXPORT_SYMBOL vmlinux 0xb7ea7ad0 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xb807b235 d_add +EXPORT_SYMBOL vmlinux 0xb80a393e seq_open +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb811b777 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xb82517ca misc_deregister +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb84a28f0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb84fccdb of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xb85bd03b bio_add_page +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb8632dcb vc_resize +EXPORT_SYMBOL vmlinux 0xb86554c4 param_set_ullong +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb872bd01 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b5d627 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c4d930 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xb8d27b20 seq_read_iter +EXPORT_SYMBOL vmlinux 0xb8efa9be proc_set_size +EXPORT_SYMBOL vmlinux 0xb8efd63b reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xb90127cd inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90826ae mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xb9086a9e dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb92e9bc4 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xb9390c0e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xb940c21f i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb9424d3a key_validate +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb947dbbe rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xb95c0eee generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb981f52d of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9b98f00 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xb9c06057 kernel_write +EXPORT_SYMBOL vmlinux 0xb9d41c02 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb9e35c00 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xb9e466cf rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f308fa xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba041a0b phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba0a594d make_kprojid +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba488004 fs_bio_set +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba64d6eb devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba76e16b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba93454a jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xba96e137 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xba9c8942 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xbabd2e52 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xbad5c328 make_kuid +EXPORT_SYMBOL vmlinux 0xbad9f9f8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xbadab6b8 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xbae37401 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xbaee9d58 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb12c7cc pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb3a7ca0 serio_interrupt +EXPORT_SYMBOL vmlinux 0xbb4f42c4 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb62f716 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb71c38e padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xbb8305b0 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xbb8d5a0b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xbb9a1a93 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbb887ff jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xbbbf1892 block_write_end +EXPORT_SYMBOL vmlinux 0xbbd25fc5 pci_free_irq +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3ae0a6 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xbc4cbd34 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xbc5ceaf8 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xbc61d101 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xbc8c6984 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xbc951596 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcab99fd neigh_parms_release +EXPORT_SYMBOL vmlinux 0xbcaeb0bc __bread_gfp +EXPORT_SYMBOL vmlinux 0xbcb19dac dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcb79e3f ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xbcbbb61f file_update_time +EXPORT_SYMBOL vmlinux 0xbce33471 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xbcf22707 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xbcf99c79 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xbd1ad989 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbd1e5075 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xbd249361 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xbd2cc609 filp_close +EXPORT_SYMBOL vmlinux 0xbd3b36ff input_match_device_id +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4aaeee inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xbd52dd8e dev_mc_init +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd63b51f dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd959f8a dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xbd96a1b9 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbdc37b6d xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbde05c76 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xbde30323 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xbdf9b45e vme_init_bridge +EXPORT_SYMBOL vmlinux 0xbe113e0b iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe15a618 find_vma +EXPORT_SYMBOL vmlinux 0xbe1c06eb update_devfreq +EXPORT_SYMBOL vmlinux 0xbe22e2ac pci_iomap +EXPORT_SYMBOL vmlinux 0xbe247c44 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xbe43d8c9 skb_copy_and_hash_datagram_iter +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 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe6df307 seq_printf +EXPORT_SYMBOL vmlinux 0xbe777bb6 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xbe805c82 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xbec4ca6a tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0xbec9258c blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xbedb58cb inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xbee7badc mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf0aac2e dst_dev_put +EXPORT_SYMBOL vmlinux 0xbf1e3746 i2c_transfer +EXPORT_SYMBOL vmlinux 0xbf339638 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xbf41cb8a file_modified +EXPORT_SYMBOL vmlinux 0xbf43a71a tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xbf4a444b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5a8df7 uart_match_port +EXPORT_SYMBOL vmlinux 0xbf7e79e1 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xbf807ee9 d_instantiate +EXPORT_SYMBOL vmlinux 0xbf851c23 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xbf9841a4 inet_sendpage +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabc462 mmc_command_done +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfbc2952 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd8ae0e __icmp_send +EXPORT_SYMBOL vmlinux 0xbfe44de3 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xc035435b mdiobus_read +EXPORT_SYMBOL vmlinux 0xc03550f8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc070865a __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xc072cb3a dev_mc_add +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc09eb9bc icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0d9800d t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xc0f5b3f9 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1071b17 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xc1105617 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11ff85c inode_io_list_del +EXPORT_SYMBOL vmlinux 0xc130f82d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc142b349 config_item_put +EXPORT_SYMBOL vmlinux 0xc144e0f3 mount_nodev +EXPORT_SYMBOL vmlinux 0xc14ca43b phy_init_eee +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc154c854 md_register_thread +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc1680925 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1835c03 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0xc1844573 dev_add_pack +EXPORT_SYMBOL vmlinux 0xc187d9c7 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xc190e67a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xc1b267da sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d78666 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1ebbbff jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xc204fc75 dev_addr_del +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc2330d0c dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc238ac6b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xc23ffe21 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc2525b38 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc252e90f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc27c8eb2 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc28bfd9e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2be648d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ec3d02 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +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 0xc333c718 unpin_user_page +EXPORT_SYMBOL vmlinux 0xc33dcb85 dev_open +EXPORT_SYMBOL vmlinux 0xc35fd71b pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36e77ad dev_mc_del +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37c1596 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc37d5c2a folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c601c of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39eced5 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xc39fb561 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xc3a05342 tegra_ivc_init +EXPORT_SYMBOL vmlinux 0xc3bb9138 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xc3bfcc23 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xc3cc5ca2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3ddec7e genlmsg_put +EXPORT_SYMBOL vmlinux 0xc3e310a0 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc3e7130b of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xc3eaa85e kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc401a581 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xc40319c6 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc42c1922 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4705305 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc47dc80d platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xc4882ada elevator_alloc +EXPORT_SYMBOL vmlinux 0xc49a0211 generic_update_time +EXPORT_SYMBOL vmlinux 0xc4a9b157 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xc4ab4d10 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4c175e5 skb_put +EXPORT_SYMBOL vmlinux 0xc4c89123 simple_get_link +EXPORT_SYMBOL vmlinux 0xc4cbfe90 simple_statfs +EXPORT_SYMBOL vmlinux 0xc4de2ece uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc4e4ae26 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xc5078770 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc53863bd inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xc53c36ec tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xc5520646 devm_clk_get +EXPORT_SYMBOL vmlinux 0xc5522603 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57646a2 dquot_initialize_needed +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 0xc5a17a10 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5cb865d scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xc5d284de inet_shutdown +EXPORT_SYMBOL vmlinux 0xc5e32a5d iov_iter_advance +EXPORT_SYMBOL vmlinux 0xc5e627c4 vme_register_driver +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61727bc rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xc619188c cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6327467 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64b3257 bioset_init +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6917ad6 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xc69b2e6a sock_create_lite +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6b73cfc input_release_device +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cfa5f5 regset_get +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e44a49 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc727a5ab inode_set_flags +EXPORT_SYMBOL vmlinux 0xc73b0c0c __dquot_free_space +EXPORT_SYMBOL vmlinux 0xc73bb1c6 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc73ff392 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xc75a7512 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xc75ad7df __SetPageMovable +EXPORT_SYMBOL vmlinux 0xc767ea5c dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc76d9bd6 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xc772c862 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xc775a34f elv_rb_add +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79384b2 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a8785e flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xc7b5a36d sync_filesystem +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d6b648 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xc7e1f3b2 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xc7f66c90 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc7f9366b netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc82b272d do_SAK +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85f58e3 tty_devnum +EXPORT_SYMBOL vmlinux 0xc8621e8e input_register_device +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87e7d21 dm_io +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88d917e ps2_end_command +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc893225c tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc8a03415 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8bb5453 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e607dd skb_expand_head +EXPORT_SYMBOL vmlinux 0xc8f5ca85 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc8ffadb7 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc91ce854 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xc9246650 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xc92d78d6 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc93945db tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc93f297b qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xc9429a76 bio_free_pages +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965a86c simple_recursive_removal +EXPORT_SYMBOL vmlinux 0xc96c842e cdev_del +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9726c7d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xc97bf7fb netdev_alert +EXPORT_SYMBOL vmlinux 0xc97fd061 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc988be36 udp_read_sock +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a5fa0e mmput_async +EXPORT_SYMBOL vmlinux 0xc9a800fd md_flush_request +EXPORT_SYMBOL vmlinux 0xc9c6d025 deactivate_super +EXPORT_SYMBOL vmlinux 0xc9ce4061 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xc9d6df78 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xc9dc49ec tty_hangup +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xca03b2e9 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca1b5c96 of_get_property +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca336964 to_ndd +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4bbcbe __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca675e89 dst_destroy +EXPORT_SYMBOL vmlinux 0xca799507 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadf181e flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xcae8527d __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xcafc831b blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0a5f0f __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcb1265c7 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xcb17238a touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xcb210ac7 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xcb23f43b mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xcb24788b ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3dcee4 poll_initwait +EXPORT_SYMBOL vmlinux 0xcb65ba50 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xcb6f7c7d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xcb6f8e35 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb79fb0a pci_find_resource +EXPORT_SYMBOL vmlinux 0xcb9afa7b devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xcbb811b6 pps_event +EXPORT_SYMBOL vmlinux 0xcbb995e1 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbcd62b9 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbda4aca rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xcbe6b6c5 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcbffdc75 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xcc0addf2 mdiobus_unregister +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 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4532b6 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6201b1 uart_resume_port +EXPORT_SYMBOL vmlinux 0xcc6b0dcc tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xcc6c0b87 netdev_notice +EXPORT_SYMBOL vmlinux 0xcc71d405 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xcc7a099b fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xcc8aef54 bio_chain +EXPORT_SYMBOL vmlinux 0xcc8dcce8 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xcc91c1ce flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xcc92be99 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccc4a68b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xccc55b51 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xcced3366 md_done_sync +EXPORT_SYMBOL vmlinux 0xccf0af16 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xccf154bc add_to_pipe +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 0xcd060c75 cont_write_begin +EXPORT_SYMBOL vmlinux 0xcd0faa4a __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xcd112f5e bdi_register +EXPORT_SYMBOL vmlinux 0xcd1ef261 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd5a7238 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xcd6118f7 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd98aa4b dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xcdb35eb3 brioctl_set +EXPORT_SYMBOL vmlinux 0xcdbbeebb key_link +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc4f5b7 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xcdcb175f max8925_set_bits +EXPORT_SYMBOL vmlinux 0xcdcdb203 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xcdd7cef0 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdee850b fb_blank +EXPORT_SYMBOL vmlinux 0xcdf2f7f9 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce1506fe kthread_create_worker +EXPORT_SYMBOL vmlinux 0xce1637c0 ipv4_specific +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2d0dd5 skb_eth_pop +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 0xce7d122e bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce81138b pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb283ad input_setup_polling +EXPORT_SYMBOL vmlinux 0xceb34bc1 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xcecaf6aa load_nls +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xceec6d39 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xcef49469 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf04e54c tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf38e58e skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf444fa4 pci_release_region +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5f8879 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0xcf63f321 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xcf838d4e tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa07937 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfa9fa49 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xcfb1a522 key_move +EXPORT_SYMBOL vmlinux 0xcfb2bbc6 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfeb98a8 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xcff602ec kernel_listen +EXPORT_SYMBOL vmlinux 0xd046bb4b dm_unregister_target +EXPORT_SYMBOL vmlinux 0xd048a137 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05102ce input_get_keycode +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06e32b2 lease_modify +EXPORT_SYMBOL vmlinux 0xd06e3ff5 param_get_uint +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd07e82e8 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xd084067b dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0cd20b9 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xd0e095ed ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xd0fcab93 mntget +EXPORT_SYMBOL vmlinux 0xd0fdf2fa acpi_device_hid +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd1121b04 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd148f114 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xd169db6b simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd1758d93 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xd181e710 pci_release_regions +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1ead55a gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xd1f43fe3 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd207151c migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd23de03f xfrm_register_type +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd2586e0a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d24e5 kern_path +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd268cd17 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0xd276cd6f drop_super_exclusive +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2922985 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xd2b557fc neigh_connected_output +EXPORT_SYMBOL vmlinux 0xd2c331f8 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2eb58bd vfs_mkdir +EXPORT_SYMBOL vmlinux 0xd2f41e83 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xd2f6798c dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xd313d6e0 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xd315297f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +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 0xd35d7d4d input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd360bf7b unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xd362858f tty_name +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37c57f1 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3904518 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xd3a27de4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd3bd090f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xd3c99071 set_disk_ro +EXPORT_SYMBOL vmlinux 0xd3cd3331 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd3d03d91 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd3dca9e1 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd40df674 simple_open +EXPORT_SYMBOL vmlinux 0xd4145f5b unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd416b6df pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xd41fae9c flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xd4329730 set_anon_super +EXPORT_SYMBOL vmlinux 0xd4337955 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xd4381725 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd4413396 seq_pad +EXPORT_SYMBOL vmlinux 0xd447adde no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xd44f7b96 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xd45cc5ef of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47d990a jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b68a8 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd4970723 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cf4034 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d690f8 fb_find_mode +EXPORT_SYMBOL vmlinux 0xd4db7eeb __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd4dbf20d udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xd4e561b0 kill_block_super +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd510085a xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52c2880 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd532c8c3 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5614583 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0xd586f0e1 of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xd5909872 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5bbd2cd kmalloc_caches +EXPORT_SYMBOL vmlinux 0xd5cc10e1 sock_no_accept +EXPORT_SYMBOL vmlinux 0xd5d3e313 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xd5d5e758 vfs_readlink +EXPORT_SYMBOL vmlinux 0xd5d937f9 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd5e0b68d ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xd5e2769d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64d5cfd __of_get_address +EXPORT_SYMBOL vmlinux 0xd6568eb7 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd66f8d55 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd67bff8d seq_lseek +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd69aa5ae file_remove_privs +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ae1b7d skb_queue_purge +EXPORT_SYMBOL vmlinux 0xd6b0ebd8 __neigh_create +EXPORT_SYMBOL vmlinux 0xd6bafd62 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xd6bee81a phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xd6d76ce4 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xd6da5910 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd6e13f42 invalidate_disk +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ec06f6 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6ef261a pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xd6fa9af1 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd703b1f5 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xd70ceeba fman_get_mem_region +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd720af87 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xd7315953 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd73cef02 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd74671e8 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7694ba3 amba_driver_register +EXPORT_SYMBOL vmlinux 0xd7796ffc page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xd783b733 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7a3fb52 set_bh_page +EXPORT_SYMBOL vmlinux 0xd7bc2896 default_llseek +EXPORT_SYMBOL vmlinux 0xd7cb4f61 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd7cf5b1f bio_kmalloc +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d66561 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8002f8a __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd801ef15 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81911c3 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd82a6fb3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xd835a8f8 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd840c071 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ae6921 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c4bcb0 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e647f3 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd8fb3342 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xd8fc17c3 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xd9092c27 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xd910a7d9 seq_open_private +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd9262f38 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd92bfef8 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92e4a5c nf_log_set +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd96ee567 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd978a05b devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xd97c8349 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd97cc6fa twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98bb01f xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0xd9a4db56 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ad7248 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xd9b3bff7 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xd9b715e8 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9c072f2 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xd9d7d861 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9f8b63c has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xd9f97734 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xda0ac876 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda322c1d __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xda329c80 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda55d0fc __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xda686fff scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xda791632 of_device_register +EXPORT_SYMBOL vmlinux 0xda80195f gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xda87ce46 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xdac15541 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad024b6 unlock_buffer +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdad5485c mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdb051554 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb2ca5cc qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xdb534356 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81f388 vma_set_file +EXPORT_SYMBOL vmlinux 0xdb8f2f5f posix_test_lock +EXPORT_SYMBOL vmlinux 0xdb9c510e sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xdb9f04ac phy_error +EXPORT_SYMBOL vmlinux 0xdbce8282 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbed2851 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xdbef378b no_llseek +EXPORT_SYMBOL vmlinux 0xdbff102e kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xdc043b6b netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xdc0bb355 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2cf4dd mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xdc340144 igrab +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4fc749 par_io_of_config +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6cfe7d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xdc7396ee of_phy_connect +EXPORT_SYMBOL vmlinux 0xdc7f036e ip6_frag_init +EXPORT_SYMBOL vmlinux 0xdc96378b tcf_idr_create +EXPORT_SYMBOL vmlinux 0xdca060bb skb_copy +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcba0251 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce5b694 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xdcf0bb3d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xdcf283bb __skb_checksum +EXPORT_SYMBOL vmlinux 0xdcfec6d5 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3209ea xsk_tx_release +EXPORT_SYMBOL vmlinux 0xdd3d7d43 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xdd4282be tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xdd42f6fd con_is_bound +EXPORT_SYMBOL vmlinux 0xdd46f88e security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xdd48d92a d_genocide +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd4d977b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd72623a pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd81f307 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd875344 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xdd8a31b1 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xdd91edc8 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xdd91fd92 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc6981b dump_skip +EXPORT_SYMBOL vmlinux 0xddc70639 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0xddf2b23f sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde1f8c35 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde38a56a current_in_userns +EXPORT_SYMBOL vmlinux 0xde40ac88 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde632c2e key_alloc +EXPORT_SYMBOL vmlinux 0xde71f823 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xde760d7a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xdea266dd sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xdeb7187c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xdeb758cd dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xdebe3328 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xdec4ef55 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf09a62a neigh_lookup +EXPORT_SYMBOL vmlinux 0xdf11a92b mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xdf211596 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf277a6d pci_dev_driver +EXPORT_SYMBOL vmlinux 0xdf29ede0 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xdf2c0b4c con_is_visible +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf47be02 inet_frag_find +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5d235a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xdf60f38c tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6ccbfa lock_sock_nested +EXPORT_SYMBOL vmlinux 0xdf813ad2 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xdf85f838 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf95f8e7 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xdfa0dfb5 generic_fadvise +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd322bf irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xdfdc3b8f d_alloc_anon +EXPORT_SYMBOL vmlinux 0xdfe4d6dc tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xdfed1df5 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffafb02 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0062a1e bprm_change_interp +EXPORT_SYMBOL vmlinux 0xe007687a xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe011c5e7 __alloc_pages +EXPORT_SYMBOL vmlinux 0xe01c536f tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xe028dc9f put_ipc_ns +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe02f0dcf inode_nohighmem +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe0455a38 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe0730890 pm8606_osc_enable +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 0xe09ed9df gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xe0a29f6f i2c_verify_client +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 0xe0d1bf4e nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xe0de837d get_acl +EXPORT_SYMBOL vmlinux 0xe0fa1e56 finish_swait +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe114c236 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe128f01e udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12e28fe tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1430aca security_path_unlink +EXPORT_SYMBOL vmlinux 0xe1439292 km_state_expired +EXPORT_SYMBOL vmlinux 0xe1449eac skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xe160c1ac of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xe1a7116f ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xe1b0a38c set_capacity +EXPORT_SYMBOL vmlinux 0xe1b16d8c simple_link +EXPORT_SYMBOL vmlinux 0xe1c00a28 page_get_link +EXPORT_SYMBOL vmlinux 0xe1c0cce3 config_item_set_name +EXPORT_SYMBOL vmlinux 0xe1dc6012 dput +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ea05d8 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xe1f5c70b default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe20af5bb simple_transaction_release +EXPORT_SYMBOL vmlinux 0xe20c6aed dquot_commit +EXPORT_SYMBOL vmlinux 0xe2172e02 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe24d34e1 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe24d3e31 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xe25b8863 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xe271128b cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xe27311d8 request_key_rcu +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe274199f mmc_request_done +EXPORT_SYMBOL vmlinux 0xe29fe303 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe2a420b0 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe2b228f8 seq_file_path +EXPORT_SYMBOL vmlinux 0xe2bc2070 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xe2c8afca pnp_is_active +EXPORT_SYMBOL vmlinux 0xe2d38cb7 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0xe2d45a72 cdev_device_add +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dc5b75 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xe3081a28 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xe31e35d7 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe351ee1a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xe371d47c mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe38cb886 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xe38f5eea ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3dca94a fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xe3e4ba9b pci_assign_resource +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3ed8bf6 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xe3f05c7c flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe4091b7c kset_unregister +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40bb697 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe421919b km_query +EXPORT_SYMBOL vmlinux 0xe42e9b4b dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe441e90c fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xe44ce277 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xe4588878 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe485732d pci_set_mwi +EXPORT_SYMBOL vmlinux 0xe488bfc9 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xe4aa53b7 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xe4af0ec5 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xe4b34bb6 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe4b68a56 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c327dd fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xe500d70e cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xe50b589c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xe51d32ab dget_parent +EXPORT_SYMBOL vmlinux 0xe52194c2 seq_dentry +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52e8d2e input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xe555d97f dma_free_attrs +EXPORT_SYMBOL vmlinux 0xe557803a always_delete_dentry +EXPORT_SYMBOL vmlinux 0xe56d9df2 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe5752655 proto_register +EXPORT_SYMBOL vmlinux 0xe5767c75 padata_free_shell +EXPORT_SYMBOL vmlinux 0xe57feefb qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe580a9c4 notify_change +EXPORT_SYMBOL vmlinux 0xe582987b fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xe5853e59 proc_mkdir +EXPORT_SYMBOL vmlinux 0xe58cd947 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5935177 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xe5bd9dde alloc_fddidev +EXPORT_SYMBOL vmlinux 0xe5c16794 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5e4c4d2 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xe5e6d3ab pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe6106b24 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61cca77 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xe62a11bc truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe62bc1b4 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xe63587b9 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xe635dce1 simple_rmdir +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe6791980 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xe688d605 dev_get_stats +EXPORT_SYMBOL vmlinux 0xe68b3d6e dev_mc_sync +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe690a84d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xe6a4aee3 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xe6b1dc2a nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6e1c6b7 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe7024f2b netif_skb_features +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72fd951 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe78b070d acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a696ed rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xe7aacc55 sync_blockdev +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7ade0ff udp_seq_ops +EXPORT_SYMBOL vmlinux 0xe7b0353b __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe7cc379c inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe7d2c14a flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xe7d35b70 __mdiobus_register +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d94440 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xe7dab084 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xe7f86f0a skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xe80d89f2 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe80ecb00 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xe82febc4 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe833d383 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xe84fd622 d_exact_alias +EXPORT_SYMBOL vmlinux 0xe852bea7 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8604c3e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xe860fa98 security_sock_graft +EXPORT_SYMBOL vmlinux 0xe8653622 thaw_super +EXPORT_SYMBOL vmlinux 0xe879d3ba dquot_initialize +EXPORT_SYMBOL vmlinux 0xe87f9aa0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xe8893c76 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xe8923811 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe89aab7f devm_ioremap +EXPORT_SYMBOL vmlinux 0xe8b11fd7 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8c49682 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xe8cfe720 md_write_start +EXPORT_SYMBOL vmlinux 0xe8d30c6f rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xe8f52d8f filemap_invalidate_lock_two +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 0xe90af382 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe917be38 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xe91d8285 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xe92f7be5 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xe9528848 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9558790 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe9594c6c pci_map_rom +EXPORT_SYMBOL vmlinux 0xe97f355d vme_irq_handler +EXPORT_SYMBOL vmlinux 0xe97f56de logfc +EXPORT_SYMBOL vmlinux 0xe9a6391e fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9c80b78 tty_kref_put +EXPORT_SYMBOL vmlinux 0xe9cbbb73 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xe9d3c99e fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9dd9cc9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe9e3fb01 page_mapped +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9f27860 inode_permission +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea0118c9 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xea05785b devm_memremap +EXPORT_SYMBOL vmlinux 0xea0cfdef ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xea187743 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xea1b7558 param_ops_string +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea38d6cc neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea4875a7 skb_copy_expand +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea746be0 generic_write_checks +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea88d348 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xeaa20fff tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xeaa28e33 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac084aa generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xeac96582 inet_offloads +EXPORT_SYMBOL vmlinux 0xead7fbef dcache_dir_open +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb015f2a rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb50c931 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xeb5b0305 is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xeb68328f pci_reenable_device +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb907381 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xeb9cc294 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebd6f7ae mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xebd82c5f dm_get_device +EXPORT_SYMBOL vmlinux 0xebe2352b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf386ee generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec406e15 folio_add_lru +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4f3ec6 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xec6013a2 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xec7ffce3 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xec94d96e netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xecc8616f register_key_type +EXPORT_SYMBOL vmlinux 0xecda8aa0 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed20b623 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed45c87f ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed6e85d7 ip_defrag +EXPORT_SYMBOL vmlinux 0xed72c5ba tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xed7eb60c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xed89d07e phy_read_mmd +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed90bdee __nla_put +EXPORT_SYMBOL vmlinux 0xed9162be buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc8970a md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xeddf0b26 generic_fillattr +EXPORT_SYMBOL vmlinux 0xeded7089 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xee124c4d dump_align +EXPORT_SYMBOL vmlinux 0xee150acb key_task_permission +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee53fa43 kern_unmount_array +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6304f7 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xee66e19b iov_iter_alignment +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 0xee9f6777 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed01cb2 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xeed13563 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xeedf65fa inet_accept +EXPORT_SYMBOL vmlinux 0xeedfd4b9 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xef07c84d __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xef153450 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xef26bba3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xef346653 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xef376ebd rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xef3ddb52 cdrom_open +EXPORT_SYMBOL vmlinux 0xef4d3967 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xef5520be __folio_lock +EXPORT_SYMBOL vmlinux 0xef57f764 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xef5c1854 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef95e3cf iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xef9d4df9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xef9ff648 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefc5dfc1 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefeb074d sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xefefb804 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xeff6b590 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xeff838a3 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00d717a device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf038d701 kthread_bind +EXPORT_SYMBOL vmlinux 0xf0408b40 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xf0446d87 rio_query_mport +EXPORT_SYMBOL vmlinux 0xf0522ea6 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf07b0640 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf07ce73c key_reject_and_link +EXPORT_SYMBOL vmlinux 0xf07e4d50 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf087e1aa follow_pfn +EXPORT_SYMBOL vmlinux 0xf08f8534 dup_iter +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a0617a tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0d49787 would_dump +EXPORT_SYMBOL vmlinux 0xf0fb93a0 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf1477b15 seq_release_private +EXPORT_SYMBOL vmlinux 0xf1501d89 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xf1765f5b rpmh_write_batch +EXPORT_SYMBOL vmlinux 0xf1798a51 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xf18259e4 rpmh_write +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1a70335 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e2366d of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f369c8 noop_llseek +EXPORT_SYMBOL vmlinux 0xf1f96656 elv_rb_del +EXPORT_SYMBOL vmlinux 0xf20e671d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf23a4576 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24e9f62 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26a3299 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xf2868e26 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29a4b6e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xf29c2400 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2b4f4e8 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xf2b6df66 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xf2b92e0d security_socket_socketpair +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2cdaec3 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0xf2e0a270 arp_xmit +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf30f1f8e framebuffer_release +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31bb3ab param_get_ullong +EXPORT_SYMBOL vmlinux 0xf32bdc6c security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xf32cedaa dquot_quota_on +EXPORT_SYMBOL vmlinux 0xf332233b mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xf33ea094 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf3446e29 sock_no_listen +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34a7a3f simple_setattr +EXPORT_SYMBOL vmlinux 0xf34e7bc7 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35802f4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xf36c4b57 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37535fc fddi_type_trans +EXPORT_SYMBOL vmlinux 0xf3811ffa fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf3866a33 phy_device_create +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3a23a2c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3bdb7c8 may_setattr +EXPORT_SYMBOL vmlinux 0xf3bee99d sock_sendmsg +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf40ff525 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf42bbef5 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xf42d2b36 __scm_send +EXPORT_SYMBOL vmlinux 0xf42e58a0 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf4458a78 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf450f932 iput +EXPORT_SYMBOL vmlinux 0xf452a649 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xf45fe566 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4767bde pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xf48c74f3 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xf48f8b6f tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xf4a33ab3 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xf4a99893 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c93c21 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4e09eac input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f6dd67 netif_tx_lock +EXPORT_SYMBOL vmlinux 0xf4f965b0 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xf4fde8ec page_mapping +EXPORT_SYMBOL vmlinux 0xf510ba39 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xf512a792 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xf519d83b tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xf52f8e20 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xf531da4d tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5509d41 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xf550d889 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xf562e2b9 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf572b988 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xf5845e18 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5974da3 inet6_getname +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a35f85 single_open +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5ca8d4e add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5e97079 __quota_error +EXPORT_SYMBOL vmlinux 0xf5fdc1c0 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xf5fe04a2 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf609aec6 eth_header +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63279e4 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf650d46b i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf653de88 fsync_bdev +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf6681c7c wireless_send_event +EXPORT_SYMBOL vmlinux 0xf66f1103 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xf67ef820 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6890720 zap_page_range +EXPORT_SYMBOL vmlinux 0xf6aed43e tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf6b2f8a1 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xf6b959b2 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xf6bed886 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xf6dcd15e netlink_broadcast +EXPORT_SYMBOL vmlinux 0xf6e6175e blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7049e39 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xf70541e8 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xf70958c3 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xf71ab86f phy_driver_register +EXPORT_SYMBOL vmlinux 0xf71d16c4 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73dd30d pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0xf7518fb7 user_revoke +EXPORT_SYMBOL vmlinux 0xf75de579 md_error +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7743762 tty_vhangup +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf797d4d6 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xf79cbdfc neigh_table_clear +EXPORT_SYMBOL vmlinux 0xf79d964a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xf7a199e1 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xf7a8c8dc rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xf7b0e623 generic_writepages +EXPORT_SYMBOL vmlinux 0xf7c2ac5d __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7c580c9 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e29158 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7ea775b configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +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 0xf82cf117 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf865c0b5 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf877cb75 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xf885d4e7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8970ca9 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xf8ba2775 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xf8c6ef68 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xf8cad46b ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf923c579 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xf92bb4e1 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf948022f fput +EXPORT_SYMBOL vmlinux 0xf94c3fba md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xf94d75a5 mpage_writepage +EXPORT_SYMBOL vmlinux 0xf94f9a8b d_drop +EXPORT_SYMBOL vmlinux 0xf95c619b acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf969d684 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9715a9f phy_connect +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9746f4a xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a4bba6 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xf9af529f folio_unlock +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9f1fa78 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xf9f62dc3 neigh_for_each +EXPORT_SYMBOL vmlinux 0xf9fdacb9 simple_fill_super +EXPORT_SYMBOL vmlinux 0xfa0112b4 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa07d14b generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa1016db blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfa1584e9 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xfa16af02 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa33e61a blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xfa344679 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xfa345eb9 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xfa3655d2 security_unix_may_send +EXPORT_SYMBOL vmlinux 0xfa3ce5e5 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xfa42973d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xfa439ff5 param_get_int +EXPORT_SYMBOL vmlinux 0xfa5591f6 __netif_schedule +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6a58b5 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0xfa88ec75 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xfaa2821c ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab54f35 padata_do_serial +EXPORT_SYMBOL vmlinux 0xfabbd686 d_rehash +EXPORT_SYMBOL vmlinux 0xfac7921c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad6e375 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xfad72472 devm_iounmap +EXPORT_SYMBOL vmlinux 0xfb0401f4 ata_print_version +EXPORT_SYMBOL vmlinux 0xfb1647bb proto_unregister +EXPORT_SYMBOL vmlinux 0xfb2efd67 proc_create +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb39c389 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xfb44f82e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xfb4a0195 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xfb559236 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xfb637dd3 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xfb68ac7f blk_get_queue +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7a1a46 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xfb86a743 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xfb9305bb vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfb9420a9 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xfba42129 pci_match_id +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 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbdda1e2 d_set_d_op +EXPORT_SYMBOL vmlinux 0xfbe2c904 param_set_int +EXPORT_SYMBOL vmlinux 0xfbe3e87b nd_device_register +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc22778d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc46c9ee unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xfc4bd427 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xfc4cb86d neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfc51030f mr_dump +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5cbd5d amba_request_regions +EXPORT_SYMBOL vmlinux 0xfc5d0ffd xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xfc6593f3 napi_disable +EXPORT_SYMBOL vmlinux 0xfc7097f5 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfc848ef9 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc94c7fe rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xfc9de80f migrate_page_states +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfc9f4c83 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xfca682d9 ptp_clock_event +EXPORT_SYMBOL vmlinux 0xfcc212e2 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xfcc4cecf __sock_create +EXPORT_SYMBOL vmlinux 0xfcc8a01e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceec7de simple_empty +EXPORT_SYMBOL vmlinux 0xfd042ff9 dev_close +EXPORT_SYMBOL vmlinux 0xfd09c3ad pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xfd1c5403 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xfd1f4c6d __pci_register_driver +EXPORT_SYMBOL vmlinux 0xfd1fcb09 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xfd2c66a2 vme_bus_type +EXPORT_SYMBOL vmlinux 0xfd61309e ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xfd92f618 param_get_ushort +EXPORT_SYMBOL vmlinux 0xfd9e9798 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xfdab09c0 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xfdab6de9 __brelse +EXPORT_SYMBOL vmlinux 0xfdbd338f key_payload_reserve +EXPORT_SYMBOL vmlinux 0xfdc2b1cb jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcbfdd0 bpf_map_get +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe132e99 skb_eth_push +EXPORT_SYMBOL vmlinux 0xfe141cbf __seq_open_private +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4c9f7e ps2_drain +EXPORT_SYMBOL vmlinux 0xfe57860b proc_set_user +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6bce51 sk_stream_error +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 0xfea23724 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xfea90d03 pmem_sector_size +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfecb422f current_time +EXPORT_SYMBOL vmlinux 0xfecc2846 sk_free +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfedd0876 inet_sk_rx_dst_set +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 0xff0f8449 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xff1d6374 seq_release +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff268178 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff31d741 file_open_root +EXPORT_SYMBOL vmlinux 0xff384cf9 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xff3f2a5c twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xff5826f2 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xff637332 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b1115 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff7fc2b4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xff8016ff param_set_bint +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb41931 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc150ce remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd01663 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xffe185df dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xffedef3d sock_edemux +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL_GPL crypto/af_alg 0x041fc3ba af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x0e359616 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x13b5fbeb af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x2286ebcd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x2ad62072 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3056396c af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x392a6903 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x4402d10e af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x4dd87137 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x6d4b5658 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x715ab9c2 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x89d90eac af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x8f83b80e af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x9bd49086 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbcce37a8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xc4541a1a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xcfde1f41 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf418943e af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x99c889aa async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8e331afe async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9532b492 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x18483637 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x598a3194 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x104970c0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1d68d5d9 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb148cce1 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb34922c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1fe6bb19 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3256cad5 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7d88913f async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8e248a87 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xa73584b6 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x27fcf5f5 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 0x98c8c6e4 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 0x074b9229 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x30c9254d cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x4fc940ac cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x5c4ee0c9 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ca2bad9 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x6f676d5a cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x80f20717 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8b05c69f cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x8cc31bd7 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xcef6e541 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd13f7fd7 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd4e5582d cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf67d632d cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0267457a crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x07b3dcd5 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x149b5c7a crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1e5bddab crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x31279bb1 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5d5e1232 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x5eedfb45 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66ca5cbe crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x96abc986 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb3afae50 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb45b1321 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb4e9ab43 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb7985e54 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf39073a0 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfd053eca crypto_transfer_aead_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 0x57bdda8e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0x69e451ba twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x05931916 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x063f9558 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x14ab8cd9 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2036f5d6 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2a01225c spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2ea8921d synth_add +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 0x52b62b87 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x612c98dd spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x702ab189 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x773c2a16 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x99212a99 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc319c604 synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xc6a06d16 spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xce8cf8ac spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd3639172 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd93829dd speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe7874494 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xff4c652f spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x45a94a79 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 0x69c93bd5 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x9590b9e9 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xc5fe27a3 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xdeaf60f0 __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 0x94053c61 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xb59b89c6 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/auxdisplay/line-display 0x3f3c7c3c linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x8dd5d631 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x01ccdfb5 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x0a571376 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x47959553 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xb2b4c080 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x40f790fd __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xac49607e __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7cf423cb __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x95e99688 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x06f8a581 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x6a765869 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x781c2c7a __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe9bbe5ef __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x6382d0c2 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xdd6b5c55 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x0c5c20c4 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x160e7409 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9359de63 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa1beff28 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x1dfe0cab __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xcb32069b __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01f241df bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03b81772 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x343b566a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x382b2c5c bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x48aebe84 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49fde2fe bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x621a5422 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x626e018e __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6976b20f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7327db8c bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x75dfe35c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b9808ba bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f6698eb bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x83f75fe3 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x94f09fa0 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa67c11d2 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc61f6207 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc7ac8e87 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdb6825a0 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe4e374f8 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf62df925 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf90757f2 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfbb747ec bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfedcf982 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4cd2a0d6 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x83ceaca9 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x989e87e8 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa5fd8dcc btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc12583b1 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf0962a1b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf65b8ca3 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfe40fa72 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x009e6a41 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1575d713 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2c770935 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49e6c54c btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4ec812e6 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5d5e613a btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5eda8779 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70a49753 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e0b67b8 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x93ef9c1c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x98192c51 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9d66dbe0 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa9c3d55b btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd543e01a btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9bdf225 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb31f414 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb14528b btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c5a4e10 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2595af62 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2817b5ea btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x288d8603 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x51eaaaa6 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x86bf4bba btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x99e4afcd btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf50520fc btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5faca4a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfc4128bd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfde0598d btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x091cbc93 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x99d8f7f8 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xe6946234 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x22a52e14 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x62a6cbde qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9c2ce6e7 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xaa666d4d qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc62915be qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x045010ee btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x0fe98632 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x181bf434 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2f47435c btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x854c4909 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xee90c50b btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x3805f0da h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x565eff5c hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x62d7abbc hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xefff48a4 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x47e50c7d mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x59bcf56f mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x61283601 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x8c0a38ff mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x99a3f736 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xae7d1c59 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb81dc2f7 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd096be83 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0b1f1c3a mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1705f0cf mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x188db5d4 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x18e2b865 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x21027276 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2196691f mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x26169032 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2f248400 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48a1269b mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ff2d68f mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x54064323 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a95b689 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5e98f89c mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5f0c3b46 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x67f401e1 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7133770e mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7cfeee2f mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x90cd11f0 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9407b300 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9d1e5fb3 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9ea3a06e mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa8040793 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xad58e09b mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb592baf1 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6edadf7 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbe6b38b9 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xccc9288f mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xce458a33 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf2b6d0e8 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf70934fe mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfce2f39a mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x45bc055a moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x652bd4ed moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x9893b190 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xb8e9e9da moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x68adea67 sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x88f7ad54 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x5c567084 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x840738f6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x8e37e1a8 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x84e93ed0 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 0x097b4617 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0bd09ed8 devm_clk_register_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 0x1cbd386f clk_rcg_floor_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 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x2d115528 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 0x3788941a qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3b7aafbe qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5086cd28 qcom_cc_really_probe +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 0x618644ff qcom_cc_register_rcg_dfs +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 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 0x799047da qcom_find_cfg_index +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 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b8647a8 clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x91c41c9f clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x94c006f8 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x957f7a28 qcom_cc_map +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 0xac2e73bf clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac6d83fb qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb0e02777 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd438c1c3 clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd62ac61f clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd7ab6782 clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe6e14638 clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe816a036 clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xfaec9ab2 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x0cf2f973 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x1bc8e6bd sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x24aed9b8 sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x474cc186 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x55a241f4 sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x601f66b1 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x689b573a sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc3ea2fbd sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xcd95d0b3 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xd64b6fbc sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xdfa539d0 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xeda0dbdb sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf1629554 sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfd737631 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0be0f053 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0e8d9206 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x105de3aa comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x14b0a142 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1547248a comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x18ef7f15 comedi_auto_unconfig +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 0x33c50acc comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3a7ff4c3 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x417d9d76 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f06a8a1 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f738195 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x53a34a52 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5f058e42 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6e22a6f2 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x718a464c comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x76a425bb comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x792568e8 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x848f19d0 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8b9b90fd comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8c068226 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x93453ede __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e57751d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa5dd9f80 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa65947d6 comedi_set_hw_dev +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 0xc07c2e83 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xccfe6392 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcda429f3 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdda24a51 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe57928ca comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe63237b2 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe6cead4a comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe745585d comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xeaac72c1 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xed1fefcb comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xed409339 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xed9ec1d1 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1cbb2f14 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5e90cfe9 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8e738fd6 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8effdc8f comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd0cce17d comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe4337f1d comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf3c2d635 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xff1cbeef comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x1b206810 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2109d058 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6ba12a71 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x819e0b9c comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc52cab92 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xeb8c7649 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x5f93f17b addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x287d9127 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xb3b2e4c0 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xd5166b22 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0d5426ed comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x14e5e728 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1d81527d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3bf8f2d8 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3dc74ee0 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x56964e59 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x85dd3dab comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x898b28d4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x96d12637 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xab7bcff2 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xadbfbc78 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xc2e5f762 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xee430b83 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x30da5795 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4308a85d subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x690ef12e subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0xda944eb4 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x260de3f8 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2a3a3ad9 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x375a4850 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x47f7cf5f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4b466c15 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x52c8b215 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5e1544ae mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x61d2e727 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x62aa5819 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8a67b7c5 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8ec6e37d mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x96aad665 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb7556ac9 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd4490ac3 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe564220d mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfda4b2c0 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x240c2f19 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x5479ffb2 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 0x2dfc4fc6 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4fa28e75 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5702b73c ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63c6540e ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x69af5876 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6a93c556 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x728a4812 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7986b2b1 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7be63deb ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86d8b81b ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c6b3f32 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa3aabd65 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb23a3c24 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb3b58437 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc696649a ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe829285c ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0a031b51 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x30183279 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x36b9ab82 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4171418b ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x80194720 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfb3c8dc1 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x155d69cc comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x9bbfc890 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc49199d9 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xce8de7c7 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe552eaa2 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf8b311ea comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf9782eb3 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2c5e76cd counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x376fceda counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x602665bb devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7f767fdc counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xae559f60 counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb5b51ae3 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc7a65cd3 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd8f51ad0 counter_put +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x1f4d7300 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x08faf641 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0c1f75cb hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0cb3bdda hisi_qm_diff_regs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0f26a798 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x13a79c81 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1de1977e hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x1ecbc492 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x27c95902 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2ac74999 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3ea03224 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4396f59e hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x496fb88b hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4dcf5a3a hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x54c50a6e hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x54ddfbe0 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x59710a0f hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6cdf6fce hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x78fd817b hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7afdc3c4 hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7bf39b66 hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7ebcccfd hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x90d8bd6f hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x9228c8b8 hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x95e0e400 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x99997fe9 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa71a51b9 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa738a425 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xb1b8a21b hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc2d2749c hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xccf4d0b3 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd139235d hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd1696768 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd1c00791 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd5f28d2c hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb606940 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdba76042 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf29eb741 hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf2f8815e hisi_qm_diff_regs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf62260d6 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xff3b0e1d hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0xda5c4eca hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0x3a4994b5 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xe67fd16f hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xb6679d48 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x53fef60e dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x1b51968d dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xaf080841 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x120a3247 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x25985874 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x27a4b713 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6321d4b2 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x658a3630 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x84001f70 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc75a35a6 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf6a33f56 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xfb3895f4 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x17169c55 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3190798c dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3729a8b1 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x4ee65383 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x6636d227 dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x855a4250 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x91042fc2 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x9a735b5d dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xd7dc7f24 dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xfb1174c0 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x127a20e1 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1807b1eb fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x271a4803 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2c2eb482 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4d3c8064 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x795aaa76 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7b9b8d4b fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8b45acce fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8f9fad36 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa9ac09af fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb5655a0b fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xbe2b9283 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xda43cf5f fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xdf193994 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe2aeaa1a fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfcf856d8 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfd17f71e fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x4dd8c1b8 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xbaf57e3c hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x1c0c258d fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x0121682c ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x4e285582 ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x5fece042 ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x623f24d3 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x65185a7d ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xd4ced041 ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7fa3184a get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x05f94982 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x08dd10f4 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x14fb7336 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x174eb2c6 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x1a8b5779 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x2c1495f9 cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x52dc87cb cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5e13fdd2 cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7082af0a cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x842c2b50 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x9fac2cca cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa9230046 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc56cac70 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc7b4a48d cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc86c7a7b cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xcce199cb cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xcd948f4c cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd4e7104f cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd83071d1 cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xe92ea396 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf44f815f cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf7090873 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf7cb9814 cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfce0a433 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0xca18b5c8 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x9c1c5457 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 0x1f156106 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x007b1830 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x03dc4192 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x04ecf3aa dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x25ce3b64 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e5ef08b dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3206594f dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3e3052ab dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4acfa981 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x5e767cf7 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7020f02d dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7158a829 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x93f170b0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x970a85c5 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb840456e __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb9ff517f dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc26e05de dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd6ada7a9 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe6c809da dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe7abf609 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xedd98d9a dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf5e1986e dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf9bba78a dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfd233279 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x334c21a0 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x4eddd20d fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5da25cc2 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x95c674f1 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x9c19338f fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xadac3df3 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xb2f481be fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbd4b212c of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc551bd95 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x04d3bf44 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0d5dba2f fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d0d44fd fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4aec07e8 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4fdfabd1 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86c4bbe4 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8d0473bd fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9aff9483 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd250db87 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd91e44bd fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdaad9202 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdca36792 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdd6f67b9 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x16483227 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x563e8aba fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5cbd8cf8 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xbf674358 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xfb7685dd fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x07512ae8 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x54546adc fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x86f0518d fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x95fd2f76 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x99d435b4 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xaf361fff fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb449a890 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd3e0f294 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd55c7878 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xdb91e8e8 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x41cd0466 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x162cc556 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x826e7b4e sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4300cd8b gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xab8867e2 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc015dd76 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xcdfdb789 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xfe7baa3b gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x1f21776c gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x37463494 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x4144426d gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x41974a52 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xce679864 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0ceb06cd __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x18171848 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x7ebefd39 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xccb71918 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x25c63048 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x392372cc 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 0x4404cea8 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7f0c35f4 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x96096cee analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xa8b08f49 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe3a4961d analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf06bbfd1 analogix_dp_start_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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x58266056 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9025415b dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xcdba5213 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/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x103a4316 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 0xb94c63f0 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x54cf7dc8 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x1e88fbd7 of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x5f6c494d of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x6940eff6 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xcb8db7bd dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xf4925f29 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2826178e drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2a940fe1 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4b013a9e drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4e6cd93a drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x533986b0 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x58f1831f drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x64f64361 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e877b3f of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x722cccb4 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8d5b97e5 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8fa2519a drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9e3e843a drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f898076 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaeabb494 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc86eb39a of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd0f32759 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe08e1b6b drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5b4a65a drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe7698b41 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf3da631b drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x02ec8738 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x2591a496 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x311bcf62 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x36448b25 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x54d43d76 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x725397e5 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xb94a72e1 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xc43ea523 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xc87821fa drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd2ca6448 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf4f23b17 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xfcf3c90c drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x09a2588c drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x55a2227e drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5c08012f drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7af163ce drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7d07908d drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x81dc5e55 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x88d3d5c9 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd46d2109 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe18d574d drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xea0bcc72 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3437c105 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5073b882 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6a0f7ca2 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x71ff2c8e drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb14b8edd drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xcecf6a9f drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd57fb774 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd9f2ed3a drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x3ee9bb15 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x662de6f6 meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x677a23a8 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 0xea6f8755 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xd443ad53 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xeac08db5 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x7102a073 pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x4e24944f rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x501f0147 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xa05f890c rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xf698812b rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x0cd22a1e rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4db9f0d9 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x6853eee6 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xb5c1c546 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x0b3ee827 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x725ccc14 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xbc4aacc5 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x53f344c8 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x600b2fb8 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x973aabd8 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a872286 gb_hd_del +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 0x15e786f8 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x28de06a1 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29b726fa gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d9bc651 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31993302 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32ff2645 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3cf7ac8b gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40c4d5f6 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x40fda531 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49b39903 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4b59320d greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4baf3ec6 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4e4f2cdd gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4edfef5a gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x53dad6e6 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58977d33 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x596e796b gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b06ce43 gb_connection_latency_tag_disable +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 0x6661f083 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6708574d gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x72a9adb3 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x815504f0 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x817d0339 gb_hd_create +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 0x8cb114e2 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8db8dccc gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9b0cac23 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xab3a1ee9 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb37062e0 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb983c99b gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbff46924 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc071d71c greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb5eb67a gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcf53b714 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4a24ee4 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd7792803 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdc362e0f gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe1cd7844 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe2d5651f __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf36e5a95 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf48f6f3d __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf75707bc gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfd05cbdb gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/hid/hid 0x037c5542 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x065681be hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06de6d18 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d218c04 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x106c5163 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x11b35783 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x132dedf2 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1484a528 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15164a1c hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17e13da0 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x232a8086 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2acd1a58 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ac2f937 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4154bc7c hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x421c52c5 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4460e202 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44da2dd3 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b7c626a hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cfce56c hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59759bf0 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c27f46c hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68d8febe hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6bc2032f __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fa9ad8a hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f8d119b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8512f1a1 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88cd4967 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b107f9e hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b734eda hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fbfedcd hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x90acfba3 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97115daf hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9768ce51 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97e05668 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa69825d3 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa2091e5 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa7866a8 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf85f632 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0bd4f8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb59f9f3b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb9a62746 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc9b36e6 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfc253ac hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc825ad7a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc88291f3 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7c89beb hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb91cb3a hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee8e8576 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf39845d6 hid_resolv_usage +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 0x83009262 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0fefb470 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3a07c189 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3e67434e roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8fa99629 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd554cbb9 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xdcff0175 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d7346a7 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x139bafbc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1e6b4acb sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2dd88a74 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x318ecff9 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x879b73ff sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xab65feb1 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb8afb176 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc00d4bb2 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x82416a84 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xd97ef849 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x00714701 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x0ec74943 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x43510698 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xb3700d8c i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd3ac1510 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x53c51ccc surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x5ea3883f surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x84d85b41 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x2c1c2170 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x52c27fb5 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x8878de33 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0357fc6b hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x15d87f82 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x16e5e784 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bacc379 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x25fa064d hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x324cfcd9 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x34a4759b hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4301a0f5 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x525b65c5 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54b7e71c hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7e7287c9 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9769e208 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xace05dca hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf5c75ca hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc345eb76 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd8a8361 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd679cc3a hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf596d811 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x03ad59a1 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0e5c9d79 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12a3ecee vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2c4768d0 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2cae5674 hv_ringbuffer_spinlock_busy +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 0x364a693e vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4055bd53 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x45fe5f5c vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x499c44e1 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4bf8c7ae vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x548521b1 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x573f4ca9 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6c1b5dbf vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x715be957 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x71b06964 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x834700b9 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x889706ff vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8ef1b532 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x93a1b5e5 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x999c3318 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99b5f419 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa9d81767 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb1048342 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc70a1fa vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc851b5d vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc5f3c8c9 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc93c6758 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcabeb2d0 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb422bed vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdfd1f996 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x15fb4a3e adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd67c633e adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x55a6aed7 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/hwmon/nct6775-core 0x0d27aa11 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x183f7996 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4275f6fb nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5b2f0bfa nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6f43ef9b nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xe0a58d42 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0ce32d54 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x10a8afe1 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x30b07bfe intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5222f779 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x57e3b6e0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbf93bc67 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xca543251 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe88ad726 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfe277026 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x181107c3 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x5039a57b intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xf97b2387 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0d7ccb14 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3040dc48 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x30564957 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x57379ea2 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x583f7179 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5c61f49b stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x90344d1c to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9ddf66f2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa805811c stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x4873ac47 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8994ce87 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8f7f1308 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x96cfe47d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe5d7c12c i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa1bbc7e3 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcc467b77 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xe6d58003 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf6a64307 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1571b2b2 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x18c58214 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x195fd55e i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1f27565e i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x292a6cc5 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2bcc32ef i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b0e5083 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53a4bd14 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5420d9a7 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5fe6b9ec i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64e764a8 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x685465b7 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76a543e2 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x82f10e09 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x96508e05 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x96a89c55 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb3481fa7 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc32be8d i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc184d5f7 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xca024e45 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd1bfce7f i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd3a3834d i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xda51a6f7 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe60b7e07 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfbe10e31 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x07b0cc1e adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x9a30436c 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x8da91ebd iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbafbec7c iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xcafc00b1 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x00402297 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x111020c7 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1a0361df iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3aefe518 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3f751150 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4eb7efad iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x92cd6ff7 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x96c77cfc iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa152df4b iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xad849204 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe1ce7fa5 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf4bc6ea6 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x39be7068 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 0xae475a21 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xb73422e8 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-triggered-buffer 0xff7dff48 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x56f77714 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xf070f5ad sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0c1899cf cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0e385c9e cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x32d2254b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x48c44069 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5f97d339 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x604185c5 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x777f4a49 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 0x9aebaceb cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xaa9df3ae cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xd0b3a05f cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf6c44518 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x41043d46 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x58f4632e bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd585ef1e bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x4d1e5150 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x825d028b fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xf7aa1b1c fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x89ac09ea bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x4a8b164e fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x01f5bf7c inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xbc7b6609 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc2257838 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x684d522d inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8c65c538 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c70db78 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c9d9c37 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ccfc14d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1cd295dc iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1f9f52a3 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ed59ec iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x286535d9 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a2de07e iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2ec84d09 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x30750d46 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bb82710 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x40320747 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dd38a07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4eaed0ab __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ecc7b28 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f6e5cf1 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5243bcb9 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x65061a9c iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x657e61a1 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6d0025dc iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70bacaeb iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7279b0ae devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7994c514 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8125024a iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87e2be70 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x904410e9 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x90746db4 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ab44e99 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6daa0e2 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa9794e85 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xabd9489e iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac3ce01d iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaef6d6f1 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafb7ec45 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb049f1b5 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb30258e8 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb42c4dc4 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb5ebb186 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb56ba01 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf5aaa69 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3d3ca18 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5813e0c devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc610aaa1 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6fd7c29 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca68a2fd iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd21e338a iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd92ffb5a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdebfa7f0 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2bb8475 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5d87def iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf367d438 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4bffbed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2b0fdbf7 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x48d09107 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x63ae7177 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x650f1b63 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x86f433e2 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x957d356a rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xa92e1e55 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaa3d47ed rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb84c7ac9 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb86519a6 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd0c6c111 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe454fb2f rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc26f2b52 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x6e9fa0b0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x80d2251d adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x034fe052 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0f8429b1 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x16b42c94 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x21245645 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x296d31a5 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3566c1cb rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x44b7cb57 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x807da890 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8f99b0f6 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x90260f0f rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf0642e1d rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf555d997 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xf910f62f rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6d7d94aa cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8f17bfec cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd5169709 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x0a3e1b16 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4bf0b8f7 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x036cb8bf cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf092ead2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x59f8ca72 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7c8cbfda tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa172a041 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xc8f2ad78 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x02901967 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15fb2b7f wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19f2d782 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f2e043d wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa945ec3f wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xac12b7fa wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc18fadc4 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd38404a3 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd84849c7 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe4c040e6 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf55e7da5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfab69c24 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x346d47ba imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x435ccdab 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 0x7ea7d75c of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x466a5417 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x60b18788 qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x6609c8a1 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x85b9635c qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x8b422a3a qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xb2e9b3bd qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xccad963d 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/ipack/ipack 0x075f1563 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x28b166ee ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5929e6f4 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x818b07b3 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa26098af ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaca726a3 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xacbe93af ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd88fede4 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeb82af97 ipack_device_init +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x35e145c3 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x36f8fcf3 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x687fc7d1 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x737fbcba led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x927d690c led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbae80034 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc5046d7e led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdd59d249 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x1a5ff9f2 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x781d07b7 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xb6ff31c4 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe4cb4cc7 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xed18f776 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x46d1e7f4 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x658c7713 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6d301456 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x766bf839 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7c4c5865 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x816d606e lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xab022a42 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc06edaa0 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc81f3157 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfb591fb9 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 0x01042dae __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0414555f __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 0x0ba135c8 __traceiter_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 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x168ed173 __traceiter_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 0x229811fc __traceiter_bcache_btree_write +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 0x298a90bc __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2a0e014e __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2af60833 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x4f7af383 __traceiter_bcache_btree_set_root +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 0x57079252 __traceiter_bcache_write +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 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 0x7cbe71e2 __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 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x86d11556 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8d5ea0b7 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8efc75e7 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9436d729 __traceiter_bcache_journal_full +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 0xa23ef5e5 __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 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf618760 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb24d8aba __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb78ce757 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8c8b49c __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba32117e __traceiter_bcache_alloc_fail +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 0xbcbc26ab __traceiter_bcache_invalidate +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 0xcbc9f665 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd5835ea1 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe04bf81f __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe16c06b3 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe202b8e6 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xf1329a17 __traceiter_bcache_request_start +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 0x1b919732 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f5e56d6 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2226d7c2 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 0x46dd1242 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x544c80e3 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x60555b38 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6503c8a2 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x68200bf6 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9c09f87a dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa6b7c3ac dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb114303f dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbf1229d9 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc09191d1 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcb98d48b dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdb6947f8 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe4ae0e53 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf16fe185 dm_get_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 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 0xc734a8a6 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +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 0x7ef32e8a dm_cache_policy_unregister +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 0xb88a5a93 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbf1a2968 btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xccfe6409 btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcf8c2590 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe1bdae47 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5e05efc2 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xffa5325f 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 0x05634ad3 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0d102057 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 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 0x65a69e2b dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7dc3a165 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9ab64c20 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 0xcc5adc06 dm_rh_delay +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 0x3ba82e90 dm_block_manager_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 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 0x0d3b2d38 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x10be1191 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x189bc550 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3a110e8e cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4c864de5 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5823faab cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5bf83066 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a93ec24 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x72a7fc2e cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x73e0b61b cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x769c7eb2 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x823b0f2b cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x84dfd558 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8543f096 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x88a6e829 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x96b2cc79 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a40f453 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa03d0eaa cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xab7dd5e9 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb3e1f620 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd083ee7c cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd33e80cb cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4586080c saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x642cd591 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f0b6568 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f1550fe saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa5d79c4a saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa8c4b1f3 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xaa720eeb saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb64d8e23 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xca502abb saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf739bde4 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1cd0b0f0 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x327c1b40 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x384c4119 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8044b24d saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8f919044 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbb481ed4 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe92169b2 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x346f6e38 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 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x616bf7ee smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6916bcc5 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x73caace8 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74298c13 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x77b2fef3 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x82c4ee70 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x88743f7c smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8f98068f sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90d1c141 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x96908329 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3b1628b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa58f8d00 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xac79f1c8 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd6ef6e0d smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdb036e4b smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf6007945 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 0x01ed43d7 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x04e2f02d vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x21d4db46 vb2_core_streamoff +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 0x2a4c8a84 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3ca4e8ee vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b6d0719 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x580f474c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x61db9178 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6395b181 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e0b50be vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x728f3c36 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7a1c7948 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7dee15c3 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7e030bed vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8196c808 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x841c0276 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 0xc1f93458 __traceiter_vb2_qbuf +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 0xce593a1d vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcf805954 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xcfa2232c vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd54a16c1 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd6ad97a5 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf0eca3a vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe16d6a98 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2aa191e vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2e1f406 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe47d261c __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6673fc0 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xedc3d9c8 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x27bb1e8e vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x41b91d5b vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xf298cf62 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xc7ad04cd vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x084f33c5 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0fef2085 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1af6581b vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1d9e9a00 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e1f2227 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b3a973b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2d1c6008 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x404daba1 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x42ca10cb vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4aec2b35 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5304d519 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x613b0fe8 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x671e4600 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6b90217f vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6e55d2c4 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x777909f6 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fd9eeec vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x857a9e7e vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x991ab2b2 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c5b7b0d vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaabce32f vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab02a8f7 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xafcfc9fc vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb2ec2ab4 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb9db5a25 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xca9b52e0 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe5f35d51 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xee8dde1f vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf008fdf4 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf677b0a0 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7ae161c vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf968379c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfa23242b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfad5f9d1 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0xda93e286 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7cac61cb dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9dce8060 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x9f64dadd dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x13809fa6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x9746c30e cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x66cce535 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xc4b8e62f mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x9f2074ee stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x31b1d3e6 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x96179335 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x2e735ead aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x9ffdfdd7 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1dcf5738 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x55af0b30 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x739b770f max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x75da5d3f max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7b7cc207 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ce4a13e max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x86593b32 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8b7d91ef max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x92adb51b max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9de04915 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xae7122a7 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb27073a4 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf0810903 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21091e0b media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21941d0c media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x222e47a8 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x28672a3c media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x314ef780 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x365d5a33 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x36beef7b media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3b1ad182 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x42646fb4 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x43fc21e5 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4a0aaa38 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4acd9c0f media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x502346ce media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5316d9cb media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5b285308 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5d0ae637 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60144eae __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64aff15b media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x656707f9 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b3f6c66 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87506a2c media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8daf3586 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e3ac1c2 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ac7d119 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa7fc76f3 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa97162b4 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaaeff763 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xab12be1a media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xacaa47e3 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xada56576 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb306ba7f __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba86eead media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc441cf9 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc33fb9dc __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc35624eb __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc8d16654 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc9a69bc3 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcb6f794f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf3047cf media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd3184f5c media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdcdea3ad media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde1843c1 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeec18266 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefb8a636 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xefdeb533 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf102b4ca media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfe7cf87a media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x207ae749 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x01e6e245 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02e8735e mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1edeb1a1 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5b4641e9 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x660bec11 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ae67ceb mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x70606d00 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x76fca09a mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x84dcea7d mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x925d909e mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa68fec38 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc1441a35 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9414ebe mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd16999b7 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3df4fd1 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd55aff31 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7e7c8e3 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea6236dc mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf9edb93c mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x268e1dc9 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x346bea44 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3845b741 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54ab3c6f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68f63c75 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x692924cc saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x692aeb89 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x75569525 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77ba8baa saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x77c553d5 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82979acd saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x84aba5a5 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8e532c65 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3c9a0a8 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf3f0662 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0749d1e saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd89c845e saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe13146c7 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa796af5 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x052e0f72 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2b08bbf4 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x36556b82 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x665cb08d ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6f5365f2 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x71388ae0 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x85cd692b ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x160da7fd nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1b881366 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x1dc9fc87 nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x2b83e8ec nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x43f3b67d nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x63bbec67 nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x68341e0f nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x72af5438 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xb12db584 nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc40e47da nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xda9ea119 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xdc04ec18 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xddcc2f2a nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xe7b72fba nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x071d3832 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x381052d0 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x41f5f5f7 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xcf3b6977 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd3eab1ba mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x096be824 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x17421552 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x2e4f29e9 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7197ae52 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x994068ce vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc8fae3d7 vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xce1e4660 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xdda393a4 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x024ccbca hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x06c057d2 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x09478275 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x094806c1 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1cd6fbe7 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21683fd8 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x23805fd0 venus_helper_acquire_buf_ref +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 0x2980c664 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2b8a5cbd venus_helper_session_init +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 0x32c1f896 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x34667830 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x38251b73 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3a914ff3 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x41543502 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x43f42dc4 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x444272c7 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x45975fe4 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47316f0d venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x494fe878 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x549df91c venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x57233c95 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5fd1786f venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6053b728 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x663ebeaa venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x71653b12 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x74bb7ee4 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7a85a7a2 venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7d884dac venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x865f739d venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8ab03ab9 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8bb16466 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8be4b748 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8c3a3ed1 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8da61838 hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9db776f1 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa5eff53a venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa66ba13f hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa6de1f14 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb234dee0 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb305a6e3 venus_helper_set_dyn_bufmode +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 0xb6e88784 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb8aa40e3 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc3f923ee venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc56a13f2 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcb0c12b2 venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcd367dd6 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd1584efb venus_helper_buffers_done +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 0xe0e2efea venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe5d72350 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xeac73641 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf09f1d2b venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf3a8dea8 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf493cab9 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf5f12a50 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0xa577e35c rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x6f379778 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fe767a9 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9104be94 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9825c27b vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb600e729 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb737316c vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xfb2cf80f vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x27965905 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x364a80e6 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x69f1cec1 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x906dbd87 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9c232228 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb67940fb xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd097dc1b xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe60e93be xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x2f1f99cc 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 0x52cbafe9 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xeca6ed76 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x07916b4f si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7da235f6 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xbaab2ced si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xd5384692 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xde37c280 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d8869bf rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24d775c9 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x346bcb72 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x34a54363 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x35ffb57b ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3dbf06aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3e4bb58d ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45270805 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4825159e rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4f4c66b6 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5328c9c1 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59d7fa1d devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x64ec46a6 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bb91dfc rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71032c52 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x81f0e036 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdf2a960 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff8d370a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9938afa8 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x11f9583e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xb8977bfe mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7afcc995 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7a2acd20 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7e179038 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc248d405 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe4ec09fa tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xe3234d01 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4a7e5d9c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4ad714b2 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7d27bb4f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf3e56636 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x450d5054 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c8306c9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e4c4d0a is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2e3a3217 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x34e3f25c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3af8159f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x403dee7e cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x45ba50bc cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x50836e35 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x654ee605 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f11d2f3 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x775be836 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x793ef46a cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c7f70c1 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x88a48483 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb2a68aa5 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb72866b7 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xef9633ad cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf0939886 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf7004166 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xffcf6dd9 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x22f76308 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xf62b6e34 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x03e311f2 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x046bcaf3 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1738db98 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x175cfa8a em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a266ebc em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4d8aea8b em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x510297b9 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c3011ad em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6185000c 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 0x95504df3 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xafb918ef em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb8c27be5 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe15d127 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbecc0295 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbee05f77 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf0e74f04 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf94102fa em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xff18d055 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4076ab44 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5964a72e tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7220b173 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x90699011 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x76259344 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x8ead01d6 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb771c415 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xb8dcaaaf __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xc1a563a7 __v4l2_async_nf_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 0x89ea17b1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd3017419 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xdac10ee9 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x15f0be4f v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x223979d3 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3b5d636a v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5ce0aa61 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5dd12a14 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x885cd06e v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xa974b4d3 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd4f8a615 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd86458a1 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xf68c10c4 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists +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 0x1c54601a v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x23659a9c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2778efc7 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2791ccf0 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x298ee7d3 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2be801ea v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x320e0bc1 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3cf1f4f1 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4537134f v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45b5ee2f v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x45d13c9d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4645bb03 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cc91327 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e0becee v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63a211ae v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x66edabeb v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f36e6c3 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f5a91a5 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8330f247 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x856aa23b v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x86bd6e75 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a4292b2 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4d35e08 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa8049346 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa548934 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb812de19 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbbe29441 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5307e63 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcf1a9984 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe09759d0 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1ac02e9 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe211043e v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2d9a4cc v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe982a76c v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeaf9c14e v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebdf8059 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf664fc3c v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa4a5a80 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfaccb652 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc3f8d01 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfdbd192a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe72d927 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfebee884 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xff974536 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x9dec35a2 v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xb3cf2529 v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xcf15018a v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b0d8bb2 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17f3837f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fc0aefc videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2258cd6b __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b9e744e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d53d439 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ee4e5eb videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x38f3a3eb videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3ea0b136 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f904135 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6d53241c videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73b904ec videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b2d57e6 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x803120c4 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80ea7310 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8572e154 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95a6cb9a videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9be7b99f videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3e524fc videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc5ef9943 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc85942d7 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc92a2d1b videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdf23c795 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xed68f9f3 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3abb431a 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 0x63e2d41c videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x65dc920f videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x979570d4 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0b5b9916 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe752499e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xf8ed4e9a videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x068aad39 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085a9386 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c0c02d9 __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 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1948bbbb v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a1a23f8 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x200c8a27 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25c6ccc9 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x25fb8a82 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x269b48bc v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28e95109 v4l_vb2q_enable_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 0x2dc2a943 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f7b2cd3 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x323136c4 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x35e9eb3a v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37fead54 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e525cb5 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x45c59038 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46e72afc v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x489c3128 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4aa6b8b9 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ae2fe58 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b4befab v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50d4f232 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51aa6600 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5829b0ef v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58d471ae v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6658f035 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x694a3e25 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6bb51768 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x707c92da __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74f387ad v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x777024f6 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x798408ca v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a06ce24 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a723913 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x819d56c5 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x821e9476 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b56e05c v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9622872b v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99729bd3 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 0xa1a56093 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa56eba66 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa5f85c1f v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7290044 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab41a708 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xae3e4250 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaf496b59 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb3ca827c v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb5e8c47f v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbaa6f86f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb3ca864 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc886a319 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb5a0210 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0a714db __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6c92aa3 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4d6fdea v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8c357f2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe90046ab __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeed6bd38 v4l2_fh_open +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 0xf6431ad3 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfea362d6 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5fa814a4 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa32b91d5 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xaa4f1815 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01e9a0a5 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0b50ace8 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0beae96b arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0f01d1a0 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x10f7b79e wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1b11e320 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2675b45f wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e547471 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x375ff0bc wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x378762ab wm8998_i2c_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 0x55189bea arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x654d7513 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x981e212e wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa12c9291 arizona_free_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 0xbae5be59 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc224b1d7 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdb26e062 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe47045f7 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7080fc03 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xd615b212 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0856517c da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1843c790 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x536ba365 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x55a9495e da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5ff632b1 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x94976ece da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf1a8354b da9150_reg_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 0x03aad894 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43e74030 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9003514d kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x907b5763 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd82f62a7 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xddc8b103 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf5f71117 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfd937173 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7fbae3cd lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb706af84 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf7ffc6c5 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1001e38a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1e880312 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x3592c5d8 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4e8276f2 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x69128397 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x71348bae lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf44e9eea lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x168fa96f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x78075b08 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xfda49303 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x18b8f0da madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ae46174 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3ae9bd34 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x46562a02 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5827d311 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x79d17c78 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x79dca038 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x81604dcc cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x816d918c cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99b53a7c cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99b8e63c cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xae342181 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xae39fdc1 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb312d6b4 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb31f0af4 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbb4d3aeb cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc1cf60e3 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc25550c0 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2588c80 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xccd4bfa4 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd2f69a4a cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda802770 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda8dfb30 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe218e671 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed013c8d cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xed0ce0cd cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf027cbb8 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf02a17f8 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1780d4b6 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2a57db0c mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2fc5db80 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x45356afe mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x573a9f96 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x88b6bd00 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00dfabc2 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0528a48a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x274cfd5c pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x29e66c03 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x44728013 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x518fbf19 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x660668c6 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x74290943 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x846b270e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87cb9954 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xba9d3ad8 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4e3d03bd pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x57747d21 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1ba19773 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1f596e25 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5137c787 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x5ddd7601 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x84859bc4 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xa8da7396 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 0x04a23b05 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x04d55211 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13a5dcba si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x189b643c si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2089e8c1 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3aadf05e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3abd8feb si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49b7fcab si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x49cc9149 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b76be35 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d0f780d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59fdb9b6 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6338985e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c0f0a5a si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6f747ffa si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72188984 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x74458085 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e159b54 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89984609 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cb01884 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9898fe00 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf578857 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2ee2a58 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb787cc7e si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2ae0cae si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc377188a si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce8363a6 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1c3ecd4 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd1f5e02d si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdc7ecd29 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe1fd3fb8 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2eae7d6 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6fd1fd2 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xefa78568 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x38785bab sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56a2608a sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x84a7fa8a sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe642b4a7 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf0b352da sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0xbb9cba22 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xad2d4589 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xe048aa64 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2343b68a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x32260d15 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4cf14142 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcfd6b5f2 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x70c345d7 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x9e86beac tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xc0a282e4 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xdee01bc2 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb2500f39 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe8158569 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xed6a7043 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xd7862a5d ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x330919ad alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4c6e20de alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa08701e9 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc240bb3e alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xdbb850a3 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xe98e5140 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xedc6b536 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x00059605 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x03f50534 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d0d0a6d rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x20c194f2 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d73cf0a rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d99bc70 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4efa1518 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x509aa6df rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x55da3e6f rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5de1b7c3 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x64179656 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6b18f983 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x86dc963a rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8d01ee41 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x93d169d9 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x941bb305 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9c9d9e04 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9d788553 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa7459070 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbd7929d9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd85ebe9a rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdf03418b rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe03db6ad rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfc66463b rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x155b419a rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d0cad99 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x256199a8 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x334d108d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3824855a rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x53df94c6 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5992db2f rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x634f9627 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7991fede rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9054b1ea rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc404b823 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe51d98f3 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfbd025bf rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x135e5cf5 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x43b12b29 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6d7d6aa4 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa89870b0 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 0x2569e9ab enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a60c0bd enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x504838d4 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6625e19e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x72fb22dd enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8348987c enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcda7cd46 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd30d4430 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5b52f175 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x85a920f1 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8a600f9e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa0fd4fed lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4a00bb8 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc37d00ef lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeaac4ac3 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xffd20ac0 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x656dfbf5 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8c795269 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xde697c01 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x6c97ddcf uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xa6b94e73 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xb893c1c1 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a3c004a vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xcb442337 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xfd45e486 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2ec36906 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x96585209 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xaa0071ed dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x3e53271b mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x456b4ba8 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x51feb692 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xede8e3c1 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x00fb8a5d renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0xa54950f4 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0728e7c2 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1398197b __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1e68b7bf sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30c63e64 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x317fedd9 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x328b8523 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3859fd3c sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3d026f5c sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x497ba969 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57d144f5 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5c63e1e4 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6144f243 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a017382 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76260262 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76b21c86 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ca23d5a sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x81429742 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8b539e98 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f1db833 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9b3b099c sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa103d326 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa200e60a sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa78002b7 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa956fbbf __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xba9beb2e sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbad29c0f sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbda4bc0f sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc181beb8 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc62fce1e sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc911c58f sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd535c94d sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdca3e754 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdf52bb35 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4d625aa sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xea9ec7d0 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed2f3ac3 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf05f39f7 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf6803969 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfc1f9b30 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfddb4901 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe5dc58f sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xff3c09bf sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d0a9886 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x51c9a49b sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61467515 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x798a7f9d sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc5737006 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcba1ad4f sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd84945f9 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd8b3f744 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdb068a4e sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x04555501 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x117ae3d7 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2bf9ad97 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 0x3ad7b51a tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x414d8510 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xb562add6 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc393c8a7 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xcb78d1b6 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xd67796fe tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0420108f most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1b78542c most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2632e758 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3f3f7819 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x69eefa6f most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x710010f9 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8cc46e5a most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9cdde56a most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa0aee4e1 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xba39dbc2 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe9615874 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe9955a2a most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf12449d5 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xf7a7d717 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x387815fc cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc566306a cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa4f1582 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x290b6d18 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa4a0e94e cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdaf2a29e cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x4b35c419 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6986c335 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xddbf0671 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf8956fd2 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x0d3a4808 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xeaabf959 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0405dfa5 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0522f912 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e008f3d mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1516f7cd __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x152cdfe3 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17592378 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b4a32ef mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c37f522 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e21ad11 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f30f3c4 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x204b3770 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x251d47ea mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3476839b mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d034181 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e1f98e8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42dc5938 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x494b9477 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b34d35a mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e04eff3 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f9c30ae mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54634a09 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x670b344a __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b1b36f1 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71464969 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x73ac88d0 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85913935 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88491df7 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e508107 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9983d04b get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x998cf2e0 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e58b8b0 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0662ff0 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa948c875 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa7d2fda mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb140ce2e mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcfb17ae mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd2072c0 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf50f7b9 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc246d7dd mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc3022f92 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8754a1e kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8fe2b34 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xca78ebc7 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbadd1c5 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcea11077 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf5f4c07 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6dc25f8 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd83ea9f4 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdae42093 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xde9498a8 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1f46614 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe878bdf3 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe93e4964 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2453af74 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3a0487e2 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3fa505cb del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5e099d6e register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfdf6185d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x08c5d5d3 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2005f08c mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x279159e8 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x281173e4 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2b9b39be mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2ea4e969 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x39107748 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3d40ebc0 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5cb2ee2a nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e6b68c3 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x80c2e21e nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8343dad7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8ac1e1a5 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa115984b nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xae38a27b nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xaedf1111 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb00c5386 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb843cec3 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb86cc67e nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb9c1ca80 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbc4d0a3a nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcbd381b7 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdd73a3e0 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe198bb95 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe62ffc1c mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf387680e nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1b463d0a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xf0e3ddec onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x308c3bf7 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x69db42ef brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x93d478eb brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x61b44265 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x01e8ff5f nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x02acbf6f nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0cef7b15 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x18357f84 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d422ccd nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2f7444d2 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x3258e587 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x36403a1e 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 0x57820461 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5f1dc0df nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5f387616 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x652be46a nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x76dc1d61 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x87945867 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x87efba00 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8c346644 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa5f95285 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xaec2f58d nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbfe12c06 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 0xe4faa50a nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe8cffae5 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf4db57ef nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf9760346 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfa4d96ab nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x3e6e533a sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x0c6cba1f spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xbb686857 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07a9d63b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2fc47c80 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34503fdc 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 0x54160fee ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64935cc9 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x67259c0c ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6b031fcc ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x75549846 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8737e917 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa594fd6f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6ec3032 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xde9a841b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf3916a31 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfab3c718 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x06852abf mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x06fa9de7 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x12c7888c mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1fa6c0c3 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x22dbe54e mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2650324c devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x267b0523 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x53707403 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xa999043f devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc836f26c mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd6cb00bc mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe0237e1f mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf431b8ee mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa5f0bff devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x867b5b1c devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe392b8df arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3f8ca1df c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4d83fd00 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x64aefdff unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6a196863 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa7f02c52 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc26fa6d1 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x37cee246 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9e711bac unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xcc2e1751 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe37d5209 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x058779ee alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x13a5e480 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2362ff04 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33b83840 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x38601986 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3e1a4fe6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c5b6ae0 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x50e5dac7 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5b956c8b can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6eb09664 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f6c6a64 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x73dcbce1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75a77634 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7b1a5e60 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7d23ecb4 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x81cf9957 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8bb6ddcf can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x920ac5f7 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa602a60f close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8df5132 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb828b794 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbd9d3a64 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc10a3b66 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcdc697a9 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd1beda73 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xda21fc72 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdb0f17a9 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xddbf2378 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe3a4c64f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xecdbbf8a can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x2243d695 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x93348591 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9427043b m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc7fe995d m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd133ae96 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd46b8f6c m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf1541237 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf31fd004 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x129b5ca4 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x664f11b4 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xceeb9030 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd929acd3 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x1b9f2e17 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x03b26114 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0b43ad09 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x153bdf4a ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1d52f731 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1da702a3 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1fa1bf58 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x21fcb7cf ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x403e2c4e ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4841f5ee ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4f36a177 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x520c502b ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67a14911 ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6863ef4d ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x95e100ff ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb1ac14b9 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb43c45e2 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbf76cc41 ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc75a00ce ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xca8819a0 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc104853 ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd5c469b6 ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xde6ff726 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe44338c9 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe9f1c370 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfd9ae1b0 ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x7e4bab6c rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x01c83fe9 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1f0ba24e rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x31b71c10 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x34db4991 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6123b15f rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x706e3f6c rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7f08c7fd rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa93826d1 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbdbfe855 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc82521eb rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd5748fbc rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfcc7d376 rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x31fccf4d arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x91da96fb arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x002edcd4 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x903ce988 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-mdio 0xdce8039f enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0a7707c6 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x12419af4 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x198e7249 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x2d2e88af fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x3f5f67d0 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5d89db42 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x926fdc0c fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x986c1646 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x9f3969e5 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa8ff96b8 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd4760bd0 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xa6037563 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xfb9f38c9 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6b58303d ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7327ea3d ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x75fd79d7 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x80b81915 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xd11ff549 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x29a1a388 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x41ca23bf otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x5a5c0ef0 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x967eb609 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039019f6 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06f33ee8 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a15031 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14d684f3 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e05080 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15592c54 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x168f8456 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16fe92be mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17337ea1 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b58836 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d3c70c9 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e0a4389 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fbbfa41 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d45f4e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22618607 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24375f3c mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2462a899 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2640944c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27a2d7c6 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27e8b836 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27f1c715 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x301e3b58 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x310c7e0d mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a2ed60 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32ecad90 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3342cabf mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36f7cea5 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38b980c6 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x390e2931 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3953789f mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ab4defd mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae0616a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b430606 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4284b02a mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46c771d7 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47dcf53c mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x487fc46b mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49baa7ac mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f097f55 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f50b2e mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58f59460 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a0933af mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a1a61ef mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a25c259 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a6c763a mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a99f233 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cdbfa65 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e1abbae mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61d50dc5 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68c09a08 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x706d01c7 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7152ff76 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x724b9ea8 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7322fa42 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7453de17 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76c2a642 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c22fcc3 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e4ff343 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x810af586 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x845f2667 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88679df8 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89d1a588 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcc75a4 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9259f74d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x937e69b8 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954f9d35 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964d25f1 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b0e6767 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bc0ea0e mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa246a538 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3a101b0 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49432c2 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4f568d5 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e66a35 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6f3ddc6 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa76247a1 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8149e4b mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa857f704 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa971a461 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa930c0c mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad835a5e mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafe8f010 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b137d9 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb410580d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb424eacb mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb493a3ed mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f561c3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8ec6f70 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb92ad378 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba51b744 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdfa0d53 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc477dbe4 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c7d1e2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc587e0e8 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc859801a mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6d7815 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce23b129 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce7aa129 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd17db6a9 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3249301 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f17ec0 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd554f4a1 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd94bbab4 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbc2d1c7 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdea8a96e mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3369bee mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe80ec9e1 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9434e37 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea607f29 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb5fb3f7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeceea42e mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee25d9db mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee6f3a54 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf10897d1 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf354f141 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf742cc88 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7be0a68 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf97fca8f mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0cfc9b mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa4f8147 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe82f586 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x042b8cab mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04fa6f41 mlx5_query_nic_vport_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 0x0ad348c2 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bb120ef mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c68b81d mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x160ce849 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1866e98c mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20e85a8c mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2522f910 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x261902bd mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d6a25e mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee7fa1c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32a233b2 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346957c9 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3701663e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x376df212 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b75a6c0 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x479d18af mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b6b2f69 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4bc7bfd4 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54e6a294 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x591326e4 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ae86bd7 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61447a3f mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e5db06 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0a5699 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7626eec0 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e5bec51 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x811ccc29 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 0x8ab0056a mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b9ea473 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92854056 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x931a2aa8 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x978adb62 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x991adc9b mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b619b0b mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b6fd9d5 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9febc84a mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ffe0719 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1f070b0 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa38d9393 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa632b3e1 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7a82805 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaab4b2c mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb39d1340 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c3acc8 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb49b463f mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7653e10 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3849197 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7a97cc8 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca81d387 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce4b9417 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd15848ed mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd66e08ac mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb36eb6e mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a9efe4 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe273b84e mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe313e64e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f31950 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5e2fdd8 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb40431b mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee172707 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc3b23f4 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc41108d mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc5b592c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd540a5e mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd56e685 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x91f7eeb0 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xaa70bd22 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xbf8c830c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc81d45ba ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xcc4fa41a regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xd2e60a90 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xe8c8c6c2 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x041609de __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x170e1647 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1841aabb ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c203041 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2c117aa6 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b3e1a6c ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50b8b1ae ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x637b71ec ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6930dd4e ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6bd89fd2 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x778b3aa4 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f2fa8b0 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x847f2454 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f62510d __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x904fb0fb ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d829458 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0bdb103 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab706410 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9cd2d36 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbfbe5ff4 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc124d98b ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5e0ca93 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc70fb7cf ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca33ec31 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xce07c2f1 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde22b414 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf50e4a6 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe075284d ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea4d021d ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb132b14 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 0x063f6b14 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x22c512e9 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2b302a11 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xaf7b0cce stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd461affb stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfdc167dd stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1885dd56 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x89c5647c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc1b357dc stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe3633e67 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf61c800e stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x10847ebe 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 0x6c8055da 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 0xe5935c23 am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x1294e5aa w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2c5c63dc w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2dc9c7a3 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xe8276233 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x68426892 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x56ad0953 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7c350456 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc5e966ea ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xed87d753 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xef161bc1 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xf83f464f macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0457bdcf macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x47953ed2 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7fc39b0 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe8d9a6f0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x07b1ca0d mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x9ffe413f net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xc01ef284 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x071091bb xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x67988be1 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8ea614a6 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x9a7a4c4c xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf5750906 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xfacd3588 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x02a09325 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0706469e bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e695980 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e1ca730 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1e6523e4 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55410903 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x579929db bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x57cff436 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5940ed67 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5c060276 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6286fb02 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x648712c5 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67b45776 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a6b3849 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7334c954 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7698d85b __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a1b3ca4 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7a993c3f bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x80f75b7a bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x885913a9 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8cb790b6 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa31927f3 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa46ca484 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc05f58ae bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc917b5ea bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd2038eb1 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd57018ae bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xde942d1a bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe112e206 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2b758ec __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe71c5c68 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7d5d6b5 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb1b4f2a bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb5bcff6 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0bf3e98e phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +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 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2114d4ca phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x25ffcbba phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ab99c28 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x514e8d3d 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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xb384c13e phylink_ethtool_ksettings_set +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 0xdf2334a1 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe6868eeb phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe769318f phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xe9da6e6f phylink_create +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 0x24667d69 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x2eb28ee6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x68fa2a58 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7dfbd878 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x81757274 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x8ce760f3 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x990da8df tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8d9c6a6 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xf669a6a2 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5b09657f usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5f61b0b5 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x62499207 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa31758ca usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb09cd791 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbcd416b7 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xede09a22 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x12aaf389 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x143c73b6 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1fdd48eb cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3099785f cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6bd18d12 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x93e41453 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa041a8a2 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa630b360 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaebb7621 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe2eecab cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf42ef5a1 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xb64c1000 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x19d02df2 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x35e04975 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5ef27a7e rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8daa5010 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9c3a91af generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd179693f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01e94344 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0865415e usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2638b8d2 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27ef400f usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e905148 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x438852b7 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x494a1e66 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c472d64 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5188e947 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55f6840f usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e0c7234 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5e4078e4 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64a91dc2 usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64d383c8 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ebd5896 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x719f7342 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x82b59866 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x950ea2f5 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9972caed usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x99ac695e usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa197ef0b usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa75ca16e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3deb092 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb595c76e usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9709e9b usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc4cadbe usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfea7ee9 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc01168b2 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5700d6e usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc60135fb usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc73295b0 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9ea902e usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf047961b usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf403bd44 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xae3d1e64 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc0c58479 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc8be059b vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xcf7d0330 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x097b726a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x044d28ec il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39b4a4d1 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73e35db7 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9241a72c il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9611d0b0 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x332445ed p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5ca54c1a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x70b792a0 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7375cd3f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7c9d92fb p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x97587e2f p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xa538ed06 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb5e8ee3f p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf143011b p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x09334b16 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0ebd1882 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x15782404 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x199337b2 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2ca2d032 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3a0345a2 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x59b95ed4 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 0x636d716d lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x66877963 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6ade791c lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x926abe77 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9b9a8182 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb971385a lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xec765a13 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf49a2ae2 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf77783c0 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x21097e15 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x240f2642 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3d65273a lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x584c91ee lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xafa6dbe5 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 0xd2ceebe6 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xd7611685 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf3f3b9f3 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x021cf06b mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0791c79a mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0d95a873 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1458fc9b mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x147810fa mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28be00fa mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x346fd713 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x378ba9bc mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3d4a0aaf mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x49cf640d mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51b23335 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x65a12f1c mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6690134c mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6ccc76e6 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7341a1c0 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x84d9ae91 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x91e46ee2 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93ff6b10 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9c00bbaf mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc818f2bf mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xded557fd mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe216bc72 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf54f3629 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff449758 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01dfd156 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0b8e077b mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ceaf66d mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e15a62e mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e5ef4ef mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13fef3b0 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16bc4fcc mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x18fe811f mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a3e8a9e mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a88c24d mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b44db5a mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b6b79c8 mt76_register_device +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 0x2016dbf5 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x20709f90 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22ee74a9 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x24374982 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x273d1356 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27ab4c20 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2937027c mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a83b0b1 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2b7fc08e mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f8fac61 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x311509af mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3343f318 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x33c4cdac mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3824dde2 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3ef5c4a6 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f2b1bd1 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f70b4ba mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4247c543 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x46300f34 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x507a42eb mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x51cf224e mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56d95ef4 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5c62a5a3 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dbd6e45 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5dd33730 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6087efa9 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x61cc99c9 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63b1ee04 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63dc2825 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67f53dfc __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b586ada mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c902479 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7daaabc3 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x82b55d1e __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x845a04f0 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8a4451da mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dc8d94c mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8e2dd58f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x904b4909 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x937644cf mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x946d0de9 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x957f26f6 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b770647 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b9fabc4 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9bebbdfd mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e289bd7 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f0b54cb mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa145bab6 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa81c6a74 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xaa86c62b mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb5e986f5 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbb512a4 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6315d8e __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcaeb57b9 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd879abf mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcf5d7170 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd33850d2 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd559eedf mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd7fe1937 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9759228 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc2c43f8 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe6f84354 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea3b865f mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xebd21f25 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef5d61d7 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf15ac51d mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2a7185c mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7e1ee28 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x03423212 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0483a91a mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0dc2a59b mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12671a74 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x12bfa876 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14a75e67 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14e56ffe mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x17161342 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f723c9c mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x242c3ccf mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x279fe914 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28c4e38b mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x299b46e8 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2beb78c8 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2e625556 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x30bf351d mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3634be5d mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cc9edb6 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4be7cb5b mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bf216f1 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x510bd7ef mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51272e58 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55e36c19 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x598ff76a mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5b740d79 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6680dabc mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66b7db18 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69232d4c mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f9ab2cd mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77bbec84 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78e44894 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7aa4ff0a mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8d0879ff mt76_connac_mcu_patch_sem_ctrl +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 0x90f0efe2 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x91a83366 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x952dcb29 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x960d8c86 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x97c61d67 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a27c51c mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9de49c0b mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9f078c33 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa60efef4 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb36990b0 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6141ff4 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb62f4b0d mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb71f32d5 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb857253 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf59fd53 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3bc40be mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcd318f93 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2fb513f mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc13b961 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe18d8349 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe5bbbee0 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xed0002a8 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf40613bb mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf7208160 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfd853929 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfffbd292 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x17b149fb mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1cf41bc7 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2f4aaf55 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x406699f6 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x44d04fe2 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4c3eefd2 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x54d2540d mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x57d0b2f6 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x57dc6bdd mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7683e245 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa20ec748 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb6da8592 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc647872a mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd9ad3519 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe749a40f mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xef342961 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x00442ff5 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x194515d9 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x1ffba1d6 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x438a2877 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x50902d76 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7acff85a mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x81c9d742 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8ab7333e mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x986fafa2 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa3931a64 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa63d6f24 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xac9a1af8 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xce89aedd mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdebc9a96 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x10e49a37 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x124e2802 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16a70403 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18e57d40 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ccf8a8e mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2399bd20 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x337ca50c mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3f27f6ae mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x48c4e9c5 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x583ecf56 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x59a2af9a mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x609abc0c mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7bc72d17 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c9fbaa0 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x98e9b42a mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9e7db4c5 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa08d9ea5 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xacf89c13 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaf5aa751 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb6f21da7 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc71e4035 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcb925c5f mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4ec4bcf mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdd13aa98 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xebacd42f mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xee91c88d mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf61ec4ef mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xffe90cba mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x563c1c1f 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 0x3c5783a0 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3ce42119 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x4a3c2159 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xf8c9ad7e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2c3fb01a mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x39f2b82e mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6e49eb09 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x701c00ba mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x97bd40bb mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x981991aa mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc8fd8c86 mt76x0_mac_stop +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 0x06bdff70 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x078f389a mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x08c02231 mt76x02_mcu_parse_response +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 0x11aba749 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1aa061f3 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1eb01dc8 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2077f504 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x22a24933 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2744982d mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a044e17 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2beb50a5 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x353ecd1d mt76x02_remove_hdr_pad +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 0x3939924e mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3c9d975f mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43b0bfdf mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43d1e168 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49032a1b mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d1d7102 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e8733af mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55aad64d mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x569e5494 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65524b5c mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65b8e36e mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x667e48b9 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72275ba1 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7508aed3 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79a2794f mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81e6dc72 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87180d6b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x878c3bde mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x87ff4c6d mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x884c5b7e mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a8e8f73 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f3b90ad 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 0x95f84a28 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x971589aa mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x98ecfe8b mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a12d4dd mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9ce710d7 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa20f62c6 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa3886863 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa6d36351 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xab6b510a mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb08ad5bd mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb70ac2ef mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbebad28b mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc224a589 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc4fdcec9 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc85e8911 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc87b0c3c mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc2de81f mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfdf8eab mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd45d77c5 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xda1c834f mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdc5230af mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd9e7c0b mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3434be3 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3e4c17d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe4ed244b mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe5484013 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe79996c0 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf05cc757 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf1101406 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf672183e mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf6e8392e mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf9213033 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1e96adb9 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x1efe6cf0 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4c7aa293 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x66af6e21 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd087e6ec mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe0724d65 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xed2cefd3 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf4e0cd88 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x082bd7b3 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0d5fcff7 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f5346ac mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1e51df29 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x22049fbf mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x246c5104 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x28641fa6 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x356da5d5 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x516f24a2 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x69ef8927 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7b425ebc mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x893c7638 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8fe499f2 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa0e8675d mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa4f3187e mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa7d685ef mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcb2e1ea6 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe1c8d7e0 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe6fd37c1 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf5404845 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x22695264 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x230af686 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x28c2b7bf mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3257e4cb mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4e61177e mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x594cb421 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6738cc4e mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6938b6ca mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6d886307 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6e4f9339 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x74ee08e9 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x78a8e281 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7a88c2ce mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f6dccf3 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x99e8eae6 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9f5aa04d mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa4dd26e7 mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa66e233e mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb2cfbd0b mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb53ed280 mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc1606d22 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc2e1ba3e mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc78186e7 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcbdd17ae mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xdef4a7cf mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1113430d wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x69b56e63 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x9a0d7e5f wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa8115c18 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xadbdf86a wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb0175d61 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe4cfaebc chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x2ae4f956 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 0x477d332b qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9c748063 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa4e26632 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xbc61ae89 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe9bbcd9d qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07a8afcb rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d045c29 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e4d35ea rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0e922ab8 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10cbb47e rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bcb4fca rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1e62d875 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23f9d5a8 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29fed586 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x32fa1623 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38d069cb rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x402aa775 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x454576bc rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45c986e4 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x48e935d2 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a9f830c rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59b82bbd rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6142647e rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x632484ab rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6aa2aaa0 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x758a7ae7 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79fc1825 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7dad1394 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8091e95c rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8ff62e5d rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9943bda3 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa2c1cb1b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa3f0370f rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa70189e5 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xae1888cf rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaf31f7ff rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb46142aa rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc355ab4b rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc5431b89 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd0f87f62 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd562f9b0 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe3de6473 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe4ab6873 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe63f4c81 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf0d0fd69 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf10c01d3 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf2ce77e4 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf8bf5607 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfc9cdf23 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1e0ce330 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x29b1ec52 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3f614aaf rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4ee3d45b rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x58d716e5 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x61cb6190 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63a91b4b rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7e0e025e rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8bfc2a2c 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 0xa3c83d57 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba5b7879 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xbe8875ff rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xd614930e rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe17cefa5 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf1ec4b60 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfab5b6e4 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0186b92a rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x093ba23a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d167310 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ee9f23d rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x103952e3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x105a3ff0 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x12188fa2 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1271c3af rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x16719a88 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ad62e83 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e4f5fbc rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1f7b6bce rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22b74002 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a5da093 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2d24b1ac rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f9f74a7 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x30d74d0a rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x362984ed rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x375e36a7 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x38942622 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ca08b09 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4056c1bd rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4537afe2 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x474274d7 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c116f13 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5c15daee rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7139eb0c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x72bc75fc rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79b22f62 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a62074c rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8076ad25 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8176d751 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x89b14f09 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8acd338c rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x91482251 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93103ea4 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x943ab569 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9455f9b4 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xacee7a2c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb889496f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbbb042f2 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbf0cd089 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc4cde98d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc876f3fd rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcce3e5e0 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xebf92848 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf93b48fd rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x165a02f8 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xa69053cf rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xac6bbdc7 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xba71756b rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xc7e7090d rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x050c8dbe rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x2d6e4aff rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xbb3cdc68 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x079d00eb rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d25f23f rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x35132d66 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4486f3c6 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4998eaf3 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x524159b5 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x540975e8 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6cf44b6d rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6f81fa3e rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7719bfbf rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7ca54c3d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2a8fdce rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb044bca7 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc4c754ef rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xeca01644 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf2c43633 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x12dc3416 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e9d98ff dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x900b8d45 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe69eebda dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d491bf2 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fde88bb rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10d11f8f rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16747af9 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37186c7b rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37633db0 rtl8723_dm_init_dynamic_bb_powersaving +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 0x5ba46822 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6240579f rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bf41d6e rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x76edea4e rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b77f9b7 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7e9c5d07 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x88480976 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8e2c22cc rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fef033a rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa37bd56 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xad893891 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb75a79ff rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd36c1f4 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb9f12fc rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd814f0a8 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdc0db83a rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdcc50643 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe6e75b7b rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb087329 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1689c832 rtl_get_hwinfo +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 0x3992ff21 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3f4be1fb rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4090d2d4 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e05b6b1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e4481ba rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50b03526 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55955c1d rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5823e27b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59d227ff rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6890d60c rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83318423 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8722ad88 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a2f31b8 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ecd5753 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x969f8ac6 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 0xac23283a rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb0898a4f rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc1551f65 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe71272d4 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb2797bb rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf43deb95 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf89d42de rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf922964e rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfb2199be rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x220d3487 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x38e0ff85 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6c7c5041 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xaf860714 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb9b4679d 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 0x21a6e4c6 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x585e2952 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7acf4ecb cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x884c6512 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x668b189f wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x9202a10b wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf169585e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15f7595a wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a12eaa2 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2334cfe5 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2786c537 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3054785a wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32012b62 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33e9820f wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39794db7 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3ec61d1b wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4168a17a wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x47d1c760 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a7c4c3b wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4cd188f7 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50fc1916 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b013374 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cabaead wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d1c2f04 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5dc21f64 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e165c07 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f4081eb wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6422a954 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6c792d75 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72065de4 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7792b8a4 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7867372c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x793d15ae wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x798f556d wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bbdc1e5 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ef81a98 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x805e3801 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9526ca6e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa300b08 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac569ab2 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5d360b8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdf70a8d wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf7dd1c3 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1abe930 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc31b45a6 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6f4126d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5199eba wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd68e1466 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0312952 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0916f3d wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x82c6aaf0 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9b9fbba0 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc019d965 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe8faa8c4 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x36868e1a pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4cdac313 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x99410560 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa13d86d3 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc2fd4ff5 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xd89cdc0b pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf8c796ba pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0ae912b5 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2ff6d563 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x45e49312 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7d00a833 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8426501 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe090fb6f st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xec964dc6 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf7bbfcbf st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x91a11e50 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x965dbfae st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xbfe439d6 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x01441312 ntb_transport_unregister_client +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 0x4558c4fc 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 0xceddba4b ntb_transport_create_queue +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 0x468a45d8 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xaf0c2926 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03454eb0 nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x05a0c1f9 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a97c6de nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0f72a679 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x17d9565d nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c8c71b8 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ca55b63 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fd66cf8 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a603eec nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3620b056 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38aa879a nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48a8d451 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d6843e3 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x50c4b6ce nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x57f828c9 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ae3a418 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5cda0a66 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6201d4df nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64bb16e9 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x70173dd9 nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7562b5e1 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79feb8eb nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x80f8e64a nvme_complete_rq +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 0x8e2216e0 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x94bd38a5 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa3c99cc7 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae2e4658 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf147bf6 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb145a0d0 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1ee758c nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3e46f4f nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb72b9980 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8db7bcb nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba5fc1d0 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbbbde406 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc4ed566 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc3e0beb8 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4a8a9d0 nvme_reset_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 0xd7ba5549 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd80e4333 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf219663c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf222a037 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2a438fd nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfbd3fde4 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0eb426a6 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14fa288b nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1893f08e nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x1cf5be78 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x63ab2090 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x81c0d7e0 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x82937f7b nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x86574988 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd84e54e6 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xef7d1af2 nvmf_reg_write32 +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 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x702b8fe8 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 0x197e942f nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x19f72a6b nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1bea06fd nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3b104224 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3bc6f6cd nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x50999695 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5807d97f nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x64717d6d nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x67b576c0 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe4dbc093 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xece20df3 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 0x1666a08f 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/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/controller/pcie-iproc 0x955d9cdb iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x763a0cbd switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x10933669 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x35682be6 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x48b84805 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4e765ee9 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x5c532203 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x6ed4d781 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x825093a7 hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xab9dcdfe hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xaea8f4f2 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xafbe8f56 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbd56253b hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc0f3a333 hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc1cffe90 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc6c9f413 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf87ebde2 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb557e15 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 0x797f055c sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x04495483 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x13db4275 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x32c2b2fd tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x66bbf9fc tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x697df1b5 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x81c70789 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x8d845911 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb48d1227 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc0314de5 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcb1b7eb5 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xcc4c62d0 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd88d90a7 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xdbeda01d tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe14530c5 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xeaacd02d tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf7fae4b4 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf884c525 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4bf2b6e6 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7b891209 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xfe8225e7 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x4278f491 lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xe2964778 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x79a6c6a1 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xe8e2a8ae 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 0x112f366c ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1b3e6ea1 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2af8e09d ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2b7b6861 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x30c048b9 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3a5b4418 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5100a5c7 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5c5cded2 ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x61a436d0 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73f56def ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x88b23db2 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x89a9e4ec ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8abbffe3 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8feb529c ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x90e32705 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x961988ef ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9c4fba55 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa881950e ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xaebbaebd ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb1cd70db ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb80d9927 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb86068f3 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc02d04ad ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc699821f ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc9e3958e ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xcbef5d12 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd40ad6da ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdbc5800f ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdbd5b360 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xea73e354 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf333afd6 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 0x98a90b53 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 0x7af7656e reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7de66d1b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x97132fdd devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xb9555c0c reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0838ddf6 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88d172cc bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb799d3b9 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0ea12fd1 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x56103afe pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x60a80aa1 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x3f47288b ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6d155712 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xcf1009f7 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdb79f6c0 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xdd047abc extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe530c8ce ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe624d001 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xf7761fba ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x34eb5fcc mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9d4ab9d6 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc267c758 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc3267524 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcdb53cdd mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xc18e9769 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1c5ce7d5 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x258ef6cc wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x45467710 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b127312 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4ded8ead wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd37e2837 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa5d6d9b0 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x261e4e1d scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x40f17f82 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x44fa9366 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x50ff17a5 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7a3fbc4e scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xdb1b0478 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe6f35ae8 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x18a98d63 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x5f43bbca scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x755db70a scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x9b048e94 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xe400812c scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x1aec76c6 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x24585a94 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x397e06eb qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9c19fe63 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xc4e8d933 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdd30819a qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdef6071b qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf2d439e8 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x45a919ba qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x70edfcd9 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xbf3165aa qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdf1e287f qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xdf9a8761 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xf11dd91c qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xfda8dc27 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x22377b38 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0xa881c6fc qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x85166784 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 0xbe9bd7a4 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 0x1c9fc948 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x018d66eb cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x180df848 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f2a7c12 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f3721fc cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1ff2a171 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3bb32c3d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e1a79c6 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4592ae37 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x52165074 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5362a2d7 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x620f35cf cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x647f9ed5 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66068a8f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6c7a7ac0 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6fc79b53 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7389952a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73ecdde6 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74467d8b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x771e07f1 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7840c7f8 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f461d66 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83f7c860 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9584ca6c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ed1a7c0 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f583153 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1789aef cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa62f117c cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6f8fef7 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa70e963c cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf4d5297 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1e959f6 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1fe9f97 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcd827c2 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3d4046b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc41f2a9 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd12fb892 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe27b7a01 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe39add4b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb1479ee cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefe68c22 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf844a006 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8bc5214 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfac7a3cd cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe54c29b cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f7a6ea9 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x250589a2 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27f8fc00 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x341c1779 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f498844 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b16938f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6ceb11d0 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6d8c2f9a fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a998fc5 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaecb321a fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaede2435 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc0616d2e fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3174d5e fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcca34d52 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd0c77172 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe73ef161 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x97573036 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xd593d629 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x007d9ad9 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x009d5348 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1b34293d hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x22066460 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2d1a3b69 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x319b5672 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x3af7049b hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x42fee27d hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x474f36a8 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4b63e93a hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fb3a30f 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 0x5bd8e64e hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x65976fc9 hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x728c5fd6 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x85d0e3d6 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa67705ec hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa70949c6 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xa93d551a hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb01d0859 hisi_sas_init_mem +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 0xc2b6ec63 hisi_sas_release_tasks +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 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe5ac449e hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe95b9ac1 hisi_sas_probe +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 0xf1cf5817 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfbdbbe85 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0b876c12 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1a9e0e9e iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x865ea8b1 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x96f064b0 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x9848e742 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb1ecc7ff iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xce367514 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x344f6528 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x04987615 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0be341ff iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0bf26823 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x121ab8ae iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13ed0986 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16531dcc iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17724a50 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2850ba73 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28940752 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2d02ee0f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345651c0 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34f86282 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3973c95c iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49872d55 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4cd1e46c iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e5fc57e iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5010a23a iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53a7d85c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55ad9fcf iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x58155198 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66dfd505 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67e2790a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7629476a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78bf9a47 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x816f24c4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8470eebb iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b0a72db iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b3f4ddd iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f27c211 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x925a6cb3 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93ddd56e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97968cbc iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ca1964c iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb24ef480 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb530719c iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4ba18df iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7adae25 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xceb82aa4 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1a060ad iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5a0cee5 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6605a63 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde2bc514 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe165cc97 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1988363 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedf81945 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf069a7ee __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8315f9a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfecb9485 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x028846ac iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x275d3be3 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x322343a5 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x586fee30 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bd68a1b iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5c2cfb48 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7079276a iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x70adcc77 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7f0a2c4e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9b8f5128 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8c23100 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf464a34 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb09290b6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1e0957a iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb607a808 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca9e1784 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf51ef3a iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08e3c856 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2cc68142 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x315bd99c sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35d20c3a sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x410eca53 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4270bb93 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45c980cb sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x466ed1b4 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5bb644f0 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5fdaea55 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67dfc677 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a4b48dd sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c6f7397 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x756f47e4 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x79670cf6 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fe4bcc2 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9040ff33 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x91f86d51 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9439a3dc sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a0dc3c1 sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bd1a532 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa99d739 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabb59386 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0059b7b sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6a3364e sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbdcb2ddf sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbfd599a3 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3da34a5 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9fefa51 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb808db1 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0feb188 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd10ba2b4 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6d14c4a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4ca98f9 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7da75d9 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf9bf871f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb6914a7 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x9bef4d26 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03b954b7 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x077933ba __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0805f0dd iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14a9bc0f iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x158d0b34 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cf5c21b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1d1be919 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20829b7a iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x246b8209 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3166544a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x418e0ac1 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4531d05f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4589e257 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c99dfd4 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x526f933d iscsi_destroy_iface +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 0x5f92b801 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5faab645 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61cfc308 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a5d5f56 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70ad62a2 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7584023f iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e259e7a iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86ceb2f8 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89036d08 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8b3a191e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e599032 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x917d39db __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9595fa7a iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96673f38 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x96b3a778 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d27661f iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa49f80d5 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4c648fb iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa550545a iscsi_destroy_all_flashnode +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 0xaf53b6bc __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaffbc901 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8419655 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 0xc29e092d __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5120277 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc63ce26c iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6bfe38e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd87f2521 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8da9c3d iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe451294e 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 0xe7394cb5 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb00d2ae iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8b6419a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfa3bbd9f iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x46d7f679 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x470cca98 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7e883ec5 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xee65bba3 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x460affe3 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 0x0904deba srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x17071684 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x25d6bf55 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2a35876f srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc7358761 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xce5a6ecb srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xa3cd9f3f siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc5705abf siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xcf2f97af siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdd3e4576 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xebab5b9b siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfe8ee08b __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x012fa54c slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07096e11 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x116aa4db slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x135d372c slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a1d8f61 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x31a2e227 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3f0b468b slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4f9ff640 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54548cf6 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x58ffa8da slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60a53455 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x64d14886 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x650f4c2b slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x65f8f3b4 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x846ec3b5 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x85b286a8 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8aa9593b slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x993122b5 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa81c2f92 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb13b6ad8 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb389421c slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf133d0f slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbfe8482d __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xed8a99c7 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3648667 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf36530a8 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 0xc319a7ea meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0158c0cb apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1096a882 apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x15bb4642 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x1bb17ba7 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x47d9d13b apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x506493f4 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa3c87e3f apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xaca7a6ee apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc676c90e apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xc7b4dc38 apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xee2a434d apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xe47959a8 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region +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 0x165e8aaf dpaa2_io_service_deregister +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 0xb9e81961 dpaa2_io_query_fq_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xd5cf069d dpaa2_io_service_register +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xe831e4e1 dpaa2_io_store_create +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x03092dc8 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x2544b8d2 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x3b636883 apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x661fb554 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x94a0f775 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xca3bc2c2 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xda00d1dd gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe6cbde86 gpr_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 0x03ff69e0 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x459b829c qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xad471ded qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xc4915cfc qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xe8a3861c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0d9fd7a9 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x0fcf3adb sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcbcfb746 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x9428485c sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x3941f302 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xb47fd033 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xb8e7657e bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xe9111c87 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0cbf12e0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3769e300 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x390b02d7 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3c2d8822 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x89abb870 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe7265123 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x366a9ed7 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x39efa086 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xc4bfd5b3 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03919344 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04394224 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x046d422e spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x25bde798 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x25eb21df spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x31e944a7 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3f2a317d spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x64567709 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x75503c8d spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x89cf2561 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x97cd4307 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd6e2cf39 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde4475a4 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe871c071 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea1e0860 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf57ffc84 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf6aaffd2 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf85981d5 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xd5d682ec ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2988bdea anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4dcf53fd anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x508e8664 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x60421f14 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x75fd902a anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x76a3d5b2 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7bac48ff anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa3e512ef anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcc660294 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe9f1abfb anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xebcc70dd devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xec9522f2 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfba69584 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x0c1f94e4 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x8c2249b4 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x9ea8c4a4 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xcb8fbc94 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1b7f9434 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x211b3343 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x503a7a2a gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6bcc6bb7 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x78cce722 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x8bb6e1c3 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x94a418a6 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9938d846 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa50d746a gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb1d246b4 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb400ec93 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe3105a5c gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xfb051e40 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x119f92e9 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3fd309c4 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x44fb2fd9 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x63b51558 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x68749502 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x80c323e1 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc820af7a gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc87ed5d1 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdb6c0b06 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdc530a42 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xdcb05272 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf0dcb099 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf10f7d86 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x14e608bc gb_audio_manager_put_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 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 0xf75de345 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x8ee3859b gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xbd27abf2 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x345dfd73 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xb9b82d1a gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x147a4140 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x02508257 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x078f9e8d imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0d386b59 imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0de490dc imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x2882f7d9 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 0x4c88093d imx_media_of_add_csi +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 0x54fefee2 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x693aea57 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x728c9cbd imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75838601 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x75fa69d1 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x89ced993 imx_media_capture_device_remove +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 0xb88534fe imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xba1c7b7e imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbb88edc2 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbc918849 imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbeae6c49 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0953d73 imx_media_add_of_subdevs +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 0xcae04cef imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcb37d046 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcfa5908e 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 0xe6fc3c11 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xe932b00b imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf67bf2f5 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xf816774f imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x06b71266 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0dcd72d6 amvdec_set_par_from_dar +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 0x1220587b 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 0x331eff5e amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4f1516cf codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x50c296c9 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5281425d amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5ff35ee8 amvdec_am21c_head_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x62104324 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6242274c amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x64e10e8c amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x732ec41f codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x74b82533 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8863b708 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8bbb0eb0 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x95a93114 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x969bc19c codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x975c6276 amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa1e2b6f3 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb6645886 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc543946c amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xec146b4a amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3bc1df5b nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x68182b0a nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xb1c55461 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x0b4b1dd3 mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x15581ef6 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x228d66db vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2441bd53 vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x272b6df9 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x379051fd vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x442a8083 vchiq_mmal_component_finalise +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 0x791e2bd5 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x8678bdd8 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xab1d5be3 vchiq_mmal_port_parameter_get +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 0xb14ed6ba vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc454a766 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xe4481ba8 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0e31a2c8 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1560260c target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x41fa22dd target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd90313b0 target_submit +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0e82ddb1 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0f304f1b teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15285a14 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x159cf7c4 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x173f9f57 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2000f55a tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x226213b6 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x290726fe tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3de728e7 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x410fdf71 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x43c0529c tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x629a15f7 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x756fb0ee tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x79778f31 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a8f4b51 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x827e9717 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb87c0f73 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xcc99a820 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd016e9cf tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xda0ed388 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe4fd87f5 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xec2876c0 tee_bus_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x09147b58 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x14b62948 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2963d172 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2ae05c5f __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x480627a3 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x498b6560 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d698269 tb_xdomain_lane_bonding_disable +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 0x4ef95ca6 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x54818f37 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64406c35 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6d381236 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6da5f371 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 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8edaf49c tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa03e99a4 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa9da4e92 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaab77e1f tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb031d332 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc16761bf tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe535a644 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe74b916d tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe8d62684 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1d9ac16 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf8c73caa tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfb6c9e9f tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x04457e55 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0cfa4b68 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x131332fd ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x375580af ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4c1dc398 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x685c9600 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x781d96b9 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7a4d7284 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x838dbe9c ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8432c1ac ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9489dd04 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9d2f7b5c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9efe0faf ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa20b76fb ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa4cdd3a5 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa9354e69 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc328034e ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xcbd0568b ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd375399c ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd52ff02b ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd664cbf4 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf6b8187d ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfb24b71b ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x9127dd02 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xc443a5b1 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0c4d1838 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6c8ed481 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x857d391d uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe5ad3946 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1c5459ea usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe1a43000 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0e28f128 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1d8280a2 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5247b9de cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x541a57aa cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8233b1d6 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa1dc04b6 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xbc7e23f2 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf1a6a30f cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf405d826 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x02901898 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x73174fac ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb9615c33 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xcc182b31 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2c63a40c imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5129adae imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x5fda94f0 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x646aa9c2 imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9239a551 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdcf7e273 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1726d231 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x38546bb7 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5b134703 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8bc17308 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x93f5d9af ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe2d051c8 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ac72ea7 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x16845e1c g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x45cd22e3 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4e8cca46 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5c124ea0 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5e3601df u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7a96345b u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7aa1209a u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa71548f5 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa7696376 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaa3b22dd g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaaba4cc3 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbb99e797 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbd307d45 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe4eadb7b u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0c20c8fa gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1aa5c0e6 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1f219af7 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x39b7ca2c gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fec51b8 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x685bd3c6 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6b3512c3 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x79af521d gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8d48e0da gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x98bc0318 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9a7a5b4b gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xab2d1dbc gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbd9d1b0b gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd7bb12cf gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb663a9a gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdff39e22 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 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 0x8dd5ad04 gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x9d9f59aa gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xbf67870a gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc0a01527 gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe6225fc8 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 0x154fee8e ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x743ef015 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ec02c86 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0f85f60d 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 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1836121c fsg_lun_open +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 0x23e97181 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x3e951bb3 fsg_store_cdrom +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 0x47a759ca fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4e985c19 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 0x59d2207a 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 0x6e84cb83 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 0x9e2e56b3 fsg_lun_close +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 0xad34970e fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb2397bc8 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb38a9614 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 0xd79c0d32 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xddd2cd78 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5992f6e fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf09e9f0f fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f3e45de rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1917a7a0 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1e0d51b2 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26026f7f rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6f1e1beb rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x87e1ef76 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x99ae1c95 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa4e00b33 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa8ea26ba rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa5a0002 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaaa6ad35 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xacae9c61 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb27330be rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb8427048 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd55b9304 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0189aa8f usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x067ec8fc usb_get_function_instance +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 0x145fe631 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x165ff977 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x294743c1 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3375e917 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x42fec01c usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x475decb7 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6d11b9f9 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x717a216c usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x85894e73 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f762180 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x927ea923 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9d53c977 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa3e517d9 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa665f090 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa7282503 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9a3d24f usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad0c35fb usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafda5748 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb6b980ac usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9aeefbf usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc408071d usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcec52610 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd13b6ac1 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb6f2e51 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecc68fd2 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf417adf3 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf921c52f config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb6609a8 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe1378cb usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x06ce9d92 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x07d7be6e empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0dd4713d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5221577b udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5e77e984 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x696031e7 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7300eeeb udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7f829abd udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xc55f399e udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x075a0dc5 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x082d65d5 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0904d95a usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0b859ddb usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x232463d0 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b245eb8 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x33d53237 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x37cd27a6 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x43be9381 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 0x4af42ec8 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4fde801d 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 0x5c0a3604 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6ca04e89 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6fd19cc8 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x72680ac5 usb_add_gadget_udc_release +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 0x7c514283 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a2698cd usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8ad58982 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e4f9303 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x953bcdcd usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9c092e93 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9ccdfab2 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 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 0xb92aae41 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc0f543cb usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc9888e8c usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcfd38fca usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda0d5cda usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe337a88c usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf52de534 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x143918c3 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x457cfece ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf0cd2786 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1304daa5 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x456f2ca4 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60af451f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6226c131 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x88e6b870 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb38ef274 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc3f9dd81 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd2f3291e usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfbec4c3c 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 0x3140db25 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x3344c629 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x79f4dfd0 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x8d193f65 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9ee28698 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xda6d2e41 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 0x120c536f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1b2aaf3f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x1e19fd23 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x719d8447 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xda9cf052 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x915da001 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x66095020 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xba78d8ac tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xddd27944 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xeafb15f2 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xbc544f47 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x15980d3f usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a5850ee usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e4eb1c9 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3c5fade8 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3f6b385d usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4cf535d5 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5094f52c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5896ea0c usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6a5d91f9 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e5a9b8a usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x754284d1 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x814c46f3 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8865524d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89fbc084 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95288c0e usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa340a352 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa38c0831 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb883f26 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd699928e usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff8bd643 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x075048e4 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x19e8eaa7 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x363c0bbe 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 0x000aa267 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +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 0x04d76427 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ef0c597 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0f418d24 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x200c58e6 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x314ec3b6 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x391b37b2 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49ac6bd0 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c8a9dd9 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4fb70110 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5417305a typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aff42d1 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5fda0e31 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x61a27629 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x69fc39c4 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d87c0de typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7193f5fb typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x75026a38 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x752942d9 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76bc5a98 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x76f9d0cb typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f3f41e1 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7f5eb3f7 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x807a42c8 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x88f9f428 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b5016a0 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ecf5b51 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x91ebd744 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9a70b170 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa16039e6 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5ce81c3 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa6ffb5f7 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa7c164ad typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb06c19de typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb4cad99f typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb56f5467 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9c5887e typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb9e87d04 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfdb20bf typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc44ed162 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5e2bbfb typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc9bf9577 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcb02fa29 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcda4968d typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3fedb47 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4c9913d typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc30a1f8 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdd91b475 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xde037605 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdec89422 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdecc3fca typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe1299964 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef4df607 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf4ceee94 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf4e771aa typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8a2652d typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x114f8f5a ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x19bdbcf3 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x680bf1aa ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7aa1eeca ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x94fde36d ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xac35d012 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xbc9bba84 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe99d805d ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeece6193 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x04e775e7 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0aefa894 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bd04859 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x711e59ba usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x73aab946 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7d9f1ee6 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x84800004 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8ef847f1 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xac5124ce usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd9ed5a0a usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf916c78 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf54398bd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfcc17ac2 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0787541b __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x351fe042 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x497f2ce9 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6caa49de _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x6f747e96 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b53bc3e vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa0171fbc __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd0448533 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe0efd1e8 vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xeea961af vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf4b42112 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0xb070655f vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x4ea65734 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0ad8d941 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0f0c8862 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4aae68d9 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4abcd0a0 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x52fe29ef vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x57a7c202 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x586d1619 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x70c95734 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x72df0cd6 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x72ed0ac0 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7ade3088 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x9cf61ce0 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xad32a149 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc69d1f3a vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf144457 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xdf665d7f vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xe677c1bd vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf1c5549f vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf637adb7 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x008e2eca __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7049fd49 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x9cd62d3e vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc513fbad vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x11bc3b4f vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x177d8150 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b1fa1db vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x36926d36 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3b3f2260 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x52eb8c04 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5aa537a4 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a5e2b7c vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x861ac493 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8a0e5235 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x95911067 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x986e8f8a vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc98ab875 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x9be574f6 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xb8d0a0bd vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cf9bc1a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1138edc0 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18f66f57 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1abd4a7b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3277bc38 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x36e0d015 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x375fe840 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3dbf641b vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x478c87ae vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4a07bedd vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5162e8b5 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ea1cd9e vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5eb6454b vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6142a835 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x681fecbf vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6922bd90 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x733b8c34 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74dbd0ae vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b3209b3 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80de1a3d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x864cdd66 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e28bd3f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92d717c4 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x931c85af vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x982bb393 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa35c6e3e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa8493075 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa94ea1fd vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabf8fb79 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac0351c7 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb431c3e5 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb60b66bf vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xba05815e vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbfe34e42 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd380fc19 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd41c1c97 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd476101c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe9c40697 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xebe2d329 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa8339ad vhost_dev_cleanup +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 0x8a7d8ee9 vhost_iotlb_init +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 0x1a851ba5 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5a205582 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5bc1f7b6 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a730513 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xaa9a24a5 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xacd43ff2 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe22510b7 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xeb55acd7 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x96ccba0a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xeccd6e44 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x156962bc sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x78e5c3f2 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x08ab837d w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c29fe1a w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x38a82b45 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3cb97b20 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x40a437e5 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4349244a w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5347af1f w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8cd7d442 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x92ef5f6b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbbd74e0f w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc80ce34 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x10675590 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x41c1c2b6 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd1454276 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xdb102ae5 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xff514233 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x63d2b1af xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xfe5a35c5 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1b960bf6 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 0x6de821ac dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a36c43f dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x31704340 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x52c1e3be nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x69fb22c6 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa1b5f722 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa4241711 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc6eee573 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe1910226 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0049ddca nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d178c2 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04c3ac57 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x070ac5bf nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07445097 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07e4df50 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0835bdb4 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c13cb2 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x093e5966 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094af6d7 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0abae27f nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b17f65f nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b6e9de0 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d69a403 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f2ac0e0 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13455712 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1404f5d5 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14c5fc3b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x173578e8 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17987bce nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23db6456 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23fad0b0 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x251e7ba2 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d14aa7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a064e3d nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb7acc3 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e51d61b nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31a76280 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34716458 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x373ac992 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39ebcb91 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3eca60a5 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x402db621 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42e16782 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x436733f0 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x497dbd18 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d24d259 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4db66739 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50ae80d4 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54e8300c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5727e514 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57a7e283 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a824e7 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e2f0704 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6158391d nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62d47971 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65aadbfd nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d7946f nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6638a954 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67d5e6d7 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67ee5f82 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6912ed29 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b1a44fa nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a90b0b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71fc0dbb nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72531f5c nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b203c9 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747de9ac nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74970108 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75834945 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7816e697 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79110aba nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7931a4bd nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a1cef7e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a256529 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7dd4225d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fba3aa3 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8239e160 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824161de nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83888aec nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x864b2282 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x875520f0 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x881eeeb7 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x882f2776 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8856e52c nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88aec593 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a585495 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c167c7b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8fda697e nfs_access_zap_cache +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 0x92117a1b nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x926b9dc0 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x998063ac __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99a46ae3 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a1fbbe7 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bb82d9a nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bfe6ec6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9dec00ab nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e34504d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa09497fa nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ae2878 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa420ee06 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4db808b nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8df5001 nfs_submount +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 0xab3cfa6c nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad8b7320 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb16c69d1 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d80741 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb416b2f3 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb49bc0dd nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4b8f053 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7114c77 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb72a0730 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb37fb6d nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf0d821b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0b53fd3 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2daa8b7 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc33c2e54 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d6dd9d nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc86e1414 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb1ab33a nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb1f178 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceddb5b3 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2ae1f40 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7a3f391 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe263f341 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52d1b4e nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6ebfb99 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6ec5ab0 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe781ac80 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea661d5b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec97b3a4 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef09fd41 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef1f9b42 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeff6eb29 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf119ce69 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf32060f2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3caf639 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4fd292e nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5458757 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5aad44f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6a8e284 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc615ecd nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc7502f7 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd5e7d93 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfff6526d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xde52e317 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02558aac pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0393dd93 __traceiter_ff_layout_commit_error +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 0x0a2faa48 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b77ad81 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c29cc8c __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cb08770 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f215be9 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fdb748d pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1044c598 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11794c93 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x160bc23b __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1adf463a __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c1c30fd pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c7581c8 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d96e570 __traceiter_nfs4_pnfs_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 0x36b258df nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c7777b8 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d54f70c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x417fef97 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44822e8a nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x452bb692 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45ccb137 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x484c58d7 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48a431de pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48dcea7f nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a47285d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f2cbfdb nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51dbf4e6 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54ec3ee2 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57a0da13 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5960072f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59c2e4d1 pnfs_write_done_resend_to_mds +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 0x602b688c pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69cf998f pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ae7b39d __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b7f679e pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70efa796 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729d9f4c pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75e5ce1a pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75f94672 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b414b8 nfs4_sequence_done +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 0x7be55a9d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cca50b4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ffd5880 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f320959 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93cf5041 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x945e1868 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94db5df9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97aa7984 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1280ad4 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa2e0dfae pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa829887b __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa89488a0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad07d053 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaebd146c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba92aaca nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbbeb2e42 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc991bc7 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbde0f80f pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbee015e3 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf354487 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc761445a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc867bbaf nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc89282ca pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd58c446 nfs4_put_deviceid_node +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 0xd14ba4be __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3c8cae4 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd5eae0ec pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd74e1ea2 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8bd2778 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd95664a5 __traceiter_pnfs_mds_fallback_read_pagelist +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 0xe4be8943 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe4efd418 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6aeb17d pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6cd6890 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9a9e392 nfs4_find_get_deviceid +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 0xf3d759b1 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf4a05f38 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf836c727 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1192568f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b4075ba locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc41d8499 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3b50a557 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x54bf767b nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xb4d3b69b nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe0f81005 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x44f426c9 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 0x595748b7 o2hb_unregister_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 0x7c69d071 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa2ff3b95 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd7b6cce o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc5fdf6b6 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xdcbda669 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 0xf1f2c1ab o2nm_get_node_by_num +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 0x13c8d425 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2ae6844b dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2eb22afa 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 0xb15e14e2 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc79eae0a 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 0xe8ad3a04 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 0x0b4c3af3 ocfs2_stack_glue_unregister +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 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 0xc53d2ec5 ocfs2_kset +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 0xda9869c9 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf3116a3d ocfs2_plock +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x3e473d3d register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x5040e4e6 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe325166e unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xf6ea971a 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/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc5672c62 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xebc145a7 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0xe5da9d93 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xebcc2c2f lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x177364ea garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x47e6c9b1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x9529aed3 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb4891b81 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdc4b27b2 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xf0099988 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x045bae84 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x25465c69 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2efaf969 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x3a6c940d mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xcc36c6d8 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xdb56d96b mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x00cb29c0 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xa12c7cf0 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x1488ecfe p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x8d6b7983 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 0x8ef664e5 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 0x021b8ef6 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0c866ab1 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2ce49f08 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6f6162f9 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9996aa21 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa0c7f7ec l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa2b72ee1 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb70e7eda l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc372a595 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xaafdd706 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x00b7206d br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x08472040 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x097e035c nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12a5fe2a br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1db12cf2 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1f5a85ce br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2758388d br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x564cf6bd br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x66d6d51f br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6ccfa38f br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7caa1951 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x915b867e br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9b545d93 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1a19829 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa9187c46 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf8e365a br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe007e8a br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc358ca8a br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc7f369c7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdae2fb29 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe75bebad br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe81f5413 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf6131292 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf901713c br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfb4ab3ff br_fdb_find_port +EXPORT_SYMBOL_GPL net/core/failover 0x0a883900 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x5ad4bb03 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xa5b36828 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0abc8cce dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2929013d dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29a4d2c8 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35eff1db dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3821bfbe dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3cdc2491 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42e81737 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a56f9fb dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f19fa0f dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f832476 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x572750e5 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be539a7 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60d52b5a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7157b025 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79486054 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a958a8c 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 0x8abbf160 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c6ebd5f dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x956ab4bd dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98395860 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cfa2960 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1969def dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb64ad0f8 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb68392f1 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb4c72f9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0bf0cf7 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc965ad43 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbd363fb dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0422247 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3d176b2 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xedb4a81b dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x303e9ed0 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x486c01cb dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x703b1a82 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7a6ca29b dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8ec10bd5 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfc538d3a dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2c6e1073 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42960ce8 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44f4c14c dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4806a5da dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5e3b01ab dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6104e229 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6846d445 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6af57295 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71642429 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x73c159bb dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x74980e25 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x75d8af07 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x78b7086a dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fb46198 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x824fc099 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d515cb6 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x989b8e7f dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa3235bb6 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa35bcfcd dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa38a71cb dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa77f728e dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xac07222d dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb0d0aeaf dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc6bee426 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcf2300a2 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd43d3c4b dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6f5ac92 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe7d1a0ca dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xeefcb894 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf2d27a53 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4fa0077 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x25dc501d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4071b601 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x67fd2fba ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdb523a47 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x34cf12a7 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 0xcff3255c ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x4345fc98 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7e3e524e esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xf6e10d8a esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x0115025f gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x747d869b gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x152a55e7 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20babeca inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2bfb22bc inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x427eeb70 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x46f157fd inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4ebb10e1 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8965c550 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8f9135a6 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc0dff16c inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1692644c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x00e5124b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x245fdd3a ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x351e2991 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3b5dda3b __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x66edf04a ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x75ab89d5 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x848131b1 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x888f94e4 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9aadd3e0 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa0bbbfe2 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7302ab4 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc766bf81 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe8dab6f0 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xea1b5de3 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeaddb653 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4d28b3c ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd60c8bf ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xfe2abe43 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x7811311e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x1c63b907 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x5a3d1367 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x08648f5f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x07db00fa nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x0fc4f0d4 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x59ff0d20 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5dae35ba nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x62a45452 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8a9ddc08 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8b1f7139 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xc0bd0223 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x236d7c00 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x3b9a57f6 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xc6ed87be nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x0674a332 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x98b3b67f nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x29914fa7 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x87aa2209 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9d1eee52 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9efe019f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc5e6a480 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57597aaa udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7582db2c udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7c88a147 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa5159c5a setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xae3a23b5 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdd8f9e37 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe12a91e5 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf36e3d4f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7899aa85 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x94a48f41 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x9974f82a esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x09e9bb22 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x797fe21b ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe1971c6d ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1fcdf010 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x61d4e215 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x02d79099 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x46019d8a nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x8254fdb7 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb8d11417 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x965fbfc9 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2fa5ce35 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3ca15931 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4b1189b8 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4d5df2e7 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x55d02eb9 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6d12dd65 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa9d14768 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x47daa34a nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x5cf3a90b nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x76e6be88 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd3f22248 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x71459b86 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf779df71 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0141f7d6 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x03c31431 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0820de2d l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x36be53a5 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5cf902f7 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f10342d l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74178aa4 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x746da731 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x76e9f850 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x833d059e l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x850be0c7 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8afadddd l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8c36bb0e l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9cc8ac2c l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb35f6de3 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb5c3992 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbbfd4c49 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4e06b8f l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc74fd0a0 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd6a19a02 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xeb540e61 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0xaab93983 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x8f3137c4 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c31a92b ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fecd379 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x158d49df ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x220b0645 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2943362f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2f030a45 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e355e5c ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x413c95b1 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4332afc4 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x452a1213 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4578b879 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x53f1b55b ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6ef028ff ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dd9354e ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9a46df8a ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1247034 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1fac225 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa4b2b77e ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xaaefc9e1 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xba514867 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcc184f4f ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd7068842 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9ed18f4 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf7af7138 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3e9e6970 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x43a4435d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5aa74360 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9378de29 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x969aa2ce mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x030821f3 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x05a07599 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x072ae986 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 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c6236a1 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bb896ba ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x85a8129d ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x86c82791 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88783200 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x89a2a0f0 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa35d92d3 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xae99e355 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb4c3c1e6 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb87790cd ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc42a4e0e ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4e25929 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0f9a7f4 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe5f429ab ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6d3a0bb ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6ecdfb0 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x75474972 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8b4e46d5 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb1f89285 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xddbef7ca ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x14ce000d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x37e26c34 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4a4e6ae8 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xabdbf657 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe081ae53 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0543c786 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06c0ef33 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08b2d97f nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a91e4c6 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x127abf34 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12fedba3 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13707e4b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b3056eb __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2043fb5a nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25e4fda6 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27fb338c nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2897d093 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30a05595 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380cddc5 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e072c9f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e506d97 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f85a507 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50887e9f nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x515d137c nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56838303 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62300fff nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62d337d1 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c1d478e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e62e74e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f6f21a4 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x728b7eb8 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77857394 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x780206b5 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c1146d5 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80080344 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80a3e943 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bac8429 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8eeedb48 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x911ffa13 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99ad73cb nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99e705c2 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b807215 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c572722 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa26d3587 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa400153b nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7992640 nf_ct_get_tuplepr +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 0xb0f4be8e nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1aa7421 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb241e89d nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2542110 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2d12c9a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb71f192 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb9c828a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdd40327 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe206284 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe2b0502 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf3d8033 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf994599 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1ff1fd9 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3a4f71e nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc55a121b nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6a0a65c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7015fa6 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc932d488 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2a6f2c3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3c37743 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd409fda6 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdae8198d nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc924027 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd7360df nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1f8fa5c nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3598b54 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5e8b0f1 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7c22e4e nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe931fb9f nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaf71378 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebeb2315 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef075c44 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3290ad0 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf74aa415 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf871cb3e nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb901a49 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc3bf7b2 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc6780f0 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x5ef62962 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xaf2f77a5 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xbb7d26cf nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2fcf3165 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x31b792c8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6720de1c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb19ec49d set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc2c5bd1d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcbfdff1e nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd8093d8f set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd74df9f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe83fbae8 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf13781e4 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdafac779 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7dacec9a nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x07b9ddcc ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x13321213 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x182571e3 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2e7f0d43 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x642d85bd nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb60c2835 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf6fea364 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x09c6b6da nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x292dff2d nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0c9e1fe3 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x19d7614e nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa296d384 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x07f953d5 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0a93d7c3 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2c9afa44 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4c65968d nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67c37aea nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7ffc5a66 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x857672f7 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x90ea054a flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9257c733 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9d5a661d nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f0af38c flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa40a4307 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaaab6519 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xad3239aa flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xddf75cf2 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe60392e9 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xec3c6431 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1fa05594 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29a85e55 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x302e0fa6 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x335146ea nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3a439102 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 0x5dd40fe0 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6eecce6b nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d1b40fa nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x80127f56 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x886ee27e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa738051d nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xba6a9aba 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 0xdfc4c465 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe61a72f1 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe8ebcbb9 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfbe621b8 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0bce599c synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d555546 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x61ad8210 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7e34c071 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x96cecf6d nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x97fdfabf synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa21d4538 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaa36183b nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc32b4ed3 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe67d2154 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf268c414 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x016885a2 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x04bc3f03 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x075366ee nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0bbe6c02 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0da6c61e nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0dd82fee nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10ef7255 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x112584e0 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16a4fa9d nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x233c8ccd nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x280946f0 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x304a47da nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x30b70071 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3fd9c26b nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e10573d nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5814a7ce nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59f95551 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61a24755 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64f1be06 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6f4082ea nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x777dec14 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b106a1f nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92fa5742 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x973ccbc2 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bd3340a nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cbd058d nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f2617e1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa7f6acb0 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6a5d6ea nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8dbd1cc nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd68662c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc80d8b9f nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcbcc4d2f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdaa1a748 __nft_reg_track_cancel +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 0xe71b17ec nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe962023f nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe9e8f75b nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf13401f0 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf558b6b5 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6d9d9c6 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8bbebec nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x09f9bc95 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1e23c537 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2a2330e1 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4956ef5e nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7574f199 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9c492797 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xba65254b nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x152b2e70 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6cb667da nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf6f6dfe7 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9077329c nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc96efd4d nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x445ff140 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x48aebca9 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x48f9c46c nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa284111a nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xeab87a45 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x30277382 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa562abf8 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xf1ab2acc nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1edbbe2b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f64646e xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f6ea324 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24d445cf xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32af64cd xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x344d2c30 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3678d22a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x394dd2e8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x405b1cea xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x412ca81b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fd69d9e xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ffbaaad xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75d23365 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d6b2947 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7e0da637 xt_request_find_table_lock +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 0x872cf722 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8cc43b67 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f4f5301 xt_find_table_lock +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 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcf49388d xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1ad8cbf xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe65ccbea xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xefcbe568 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfeb27d6d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x38edb1b7 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xa446c277 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x34bbd27a nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa5ed1cee nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xbb8f117a nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x8d0d044f nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x90c600a2 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xec6cabd5 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x8d888dfd nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x8e6aff62 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2426c1fe ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2970edf0 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7f96dfb3 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd11ff868 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xedf5eecc ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf7cf6ea1 ovs_netdev_link +EXPORT_SYMBOL_GPL net/psample/psample 0x1c41755a psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x426137bd psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x90273510 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xcded6c0c psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x496e3444 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 0xbbad92cc qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xeab405fc qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0cc1e4cc rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x15acc197 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x1622f03c rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x1bf8db5e rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2a89a7fd rds_send_ping +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 0x3b7ac80b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3d5989dd rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x48c347e3 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4bc038dd rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x4d17f243 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4f3c081f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x596f8443 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6bce70d5 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x6be9bd73 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x70b95d48 rds_conn_drop +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 0x8ef7c1a3 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x905ec76f rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa58d1cd5 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbad3d601 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xbf633393 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc0feb259 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xe33e085b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xe7195cf2 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe982b0fa rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xeb1f3105 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf4b4cb0a rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf9206080 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xfec0b89d rds_inc_init +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x8865cb47 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xc25d1313 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 0x2229269d sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xbeb48a0e sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe6d3da34 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xed413139 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x15039aa3 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x1deacb5d smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x20db02e2 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x39c4f71a smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x8681a148 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb137fd26 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xb29e1257 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xb958d469 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xbbd022c4 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0xfd1ef7fa 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 0x4f0af2af gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa18756fc 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 0xde0c418a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8a26db3 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x004182c6 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00d73c45 rpc_net_ns +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 0x0a4806a5 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa4259a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b34bf24 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ba0bea5 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d6c1816 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d9d498e _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee199fb svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f1201a4 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1077e852 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1077e9ba rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10ef1823 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13398ef6 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13ad0773 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x154f2046 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x164b30ea svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1652ea4a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16e6594a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1895d42e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19c8f464 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a0b0316 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1ac113 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e025ac2 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eaccbcc xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f29fefe rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x219214dd xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x221c472e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x228efc6b xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ccf1ae svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22f343c7 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238908bb xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248dd110 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x253c7385 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25bfa1dd xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x261118a9 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26a05327 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x271554d3 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284bdf74 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b56a2ff xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f6d0009 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x331875fa cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3369a39a auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x356afbac rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35d6f186 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37ce6fe8 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e33a90 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39083802 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc3a62f xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfe3fb0 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9bab4d rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40fe8554 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x432b978b svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43c63e93 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44f20bfd rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x452dfdf1 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48647c05 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x486fbc39 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48f5577e rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4970a1ff cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a22a3ef svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b462e46 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb30280 xdr_buf_from_iov +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 0x5154aefc xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e26098 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52e2a469 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x549128f9 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54981059 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5521ede8 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57b71bb6 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57ccee38 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59517384 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59ae2537 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b537768 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfeb68a sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c97a6ae rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e81cb4c xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f2cce27 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6072f094 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6106d7ed xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62367474 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62556b61 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63ee55d1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x651d2b1c svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6528132d xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x668d670b svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66f0680c xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aaa5670 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b1b5a08 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b346b5b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71914b5d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cef08b rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73361b20 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7363bb98 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73dfded9 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74181ea0 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x741859d4 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767aa0c5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77cf408e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7911971a rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f728e0 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a5d3d1f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ad90dab rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ae582e5 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d2b3050 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d48b459 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f4e85fd rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801faa25 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80297a33 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80885980 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x820f7feb svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x829134f6 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b2c5c7 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84f62dee svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x854c6423 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8652caef svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x896136da xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8aa6518d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8baf1b8d xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c93ef6a sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e62eba7 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ebead32 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931c2752 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9320e099 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ea62da svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x974927c1 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9a2706 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf21142 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cd74ebd rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d28f50b rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da76e18 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e802085 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ed57c09 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0bc37d0 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0f01e27 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31645cc write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4aa328c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5113a65 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa57a020e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa78176c2 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa902a5a3 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e1a7b3 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa066157 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa5d0533 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaab4d077 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabd07b30 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd92d99 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd3b77c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadd773ff xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadff72cf sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf1a22d7 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9cfd0d cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb00714bb cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0130e58 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4790ed6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4de0d3e rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb66e3ed2 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb177db7 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb9ad45b xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc05b3aa svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc1fbbfe rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc21a6d8 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbce4aa75 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec31756 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc02e7b39 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1a919dd svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d9a476 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f67298 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc64bde82 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67b0fe5 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c4b1d1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8077e29 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8caa9c9 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc97387d9 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc99db4c5 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3858df __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdfa87ab rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf534fc4 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd077ac23 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ca17f3 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0ee0c83 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33bb669 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3417f71 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd346b03f rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3a44174 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4bfac9a cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd69e7220 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd759cd31 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83c7256 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8ea7e04 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb535043 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf9de0a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddf9cbd3 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde70d066 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf5b06bf xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf8680a2 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01a49fd rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0ea7bce rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe262b596 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3346ca1 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36219ca xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e97b85 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe504924c rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe593eaf4 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b2b8c1 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6bbd63f xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe84488d8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9438c82 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe985bae2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea76c637 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae0cea7 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee51c4e8 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0309ee7 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf05f6f73 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf156e34b svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf267a88a sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2d7fc17 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fa108d xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32187aa svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf34cb192 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5089907 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5c36a17 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a665e5 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b2e9c8 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb5223d4 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6f5548 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbbd8dd2 rpc_peeraddr +EXPORT_SYMBOL_GPL net/tls/tls 0x01cc9fdb tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x2d48e062 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x527d5cd2 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xbbfd4f2c 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 0x119f73a7 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x175ae22e virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2be61072 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2bf45e30 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3b596d17 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3d205d15 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44a42560 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b77fadd virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4fc85225 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5e90988f virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5fbb2ecc virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62e7c611 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x63fee8ef virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x68ddfde3 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6e4b904f virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x70805db0 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7809c987 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b157f27 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a063dc7 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa05042e2 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa0575e65 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa97a812b virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xabce7b5f virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xafcc6cf8 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb49c4763 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 0xc392f6a5 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xca807480 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1830d82 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4407da9 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe48ab11b virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf201ee90 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf8164675 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe28e979 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfe3944ee virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c7e1ad4 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0dfc6916 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x13f0a31c vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1edccebd vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1ef5ae89 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2bafd3eb vsock_find_connected_socket +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 0x546cb1ad vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x611fa139 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7420375c vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8009e67c vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x842e6bb4 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8bfb5c68 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94b1a59c vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9aaa28e9 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa249116c vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb048bb2f vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb50c57be vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6a131ad vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd15dee38 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xffcf2776 vsock_remove_bound +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f744ac0 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2743ad2c cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x29b57c06 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x34ab831d cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6320a088 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63fa3109 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x64f70997 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6af45c83 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70f58836 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x755b35c8 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d692e97 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e7c9d2f cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6b57247 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd851b886 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd9c1a59 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfcc09049 cfg80211_vendor_cmd_reply +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 0x1834c522 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x35c03c38 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbbf45836 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe60b82cf 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 0x931c78d6 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 0x12ac4840 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x196a4c0d snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x21f88756 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x2679d9af snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x48027bc9 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x4843d7c2 snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x4b66058b snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x4c854716 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x5a5337c4 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x63990d97 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x6ade118d snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x72c09778 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x8580254b snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x89391871 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x9dbfd18b snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xa7edbf96 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd3e047b7 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xfdd8d182 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xad5aa122 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xd7f50942 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x051369f5 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0ae48a8c snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x18c4dc51 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1b936c85 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3367d5b3 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x437ad7cc _snd_pcm_stream_lock_irqsave_nested +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 0x68655742 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x707d8cb2 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8296b32d snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa042f7a4 snd_devm_alloc_dir_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 0xb1a0eb8b snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xda21b15c snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf5aa8043 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf6f81e96 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x09dc3111 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14c9f019 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4425ad29 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4459d6d6 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4facc9f6 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5925e8d3 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x635c0f3d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa10a9756 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc19d160b snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc7294f0d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd62627f7 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf8fe1e50 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x3cb93c3a __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xe9b29ff5 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1e69ee45 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1eb889ab amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2183dd92 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x22784a50 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x567e0dfe amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6942d47f amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6eaadcd1 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x82a0676d amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9b7159a7 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9dacf2ea amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2c97e75 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xecee30d0 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3544af2 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x008bd555 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01d04a07 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02230275 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x032a3045 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x06fd534a snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08740fa5 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0baaf0ee snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10a4fce2 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10b5841f snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12b49ebd snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1495014c snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x153222d4 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d0f1cf3 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fc49732 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25efa684 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x262f822b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29976bba snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ab1ba28 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b6eb21d snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2be4835b snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x301e94a7 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36ef99ec snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37115163 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38f0fa22 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39f981b4 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bb699b0 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f7836ef snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bda8072 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50e9513f snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x517a50e8 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53a7a653 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53b6f538 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53c340b9 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53d864df snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54476fa0 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5608c1ed snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5795ef55 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5958bbb8 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x621d6d3b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65a66157 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x664820fd snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x66caa633 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x670d0169 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b9b01c6 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7669f20b snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78a34aa4 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x803bcf6a snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81da1355 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82410224 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88f8e44f snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8ac4185c snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fa0a7ae snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x978d7797 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a93c4c2 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9abf43f9 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f5c4ff8 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7a14a75 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7b323f5 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa834b39c snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaba6d813 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae977fb3 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5210361 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc36ea3e snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbea00e38 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc0e6965e snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1fd9f88 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2d6db00 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4911db9 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc510f43a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc630e356 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7b9c8f7 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcccaecfc snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd4fd656 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcefd528f snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0ef9cc4 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd53744f8 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdcee6627 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 0xeaece18a snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb367037 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed60782c snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2aee284 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf40576c4 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf47ae207 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb85fd05 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcd50e89 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x4e859456 intel_nhlt_free +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x613a8b46 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x97aa9079 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xd103bbae intel_nhlt_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xeedaf7ba snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2cfce4ab snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3c5868ab snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x75cb750b snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x86216ac1 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa64faf9a snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe3f3315b snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x005cfc94 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00fc260c snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0370b386 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c3084a9 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce14aa3 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e1789bf snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f70ca2e snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10a675ae snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x112d34d6 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11e0fc2e snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16c2cf41 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a30ad18 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e2d66fb snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e4f2689 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ec06b7d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f4cddda snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fe14c81 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x281182bd snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aeaec85 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x304f02c7 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a87f71 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33b58b01 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38d0c9c3 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3985004a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a0c8514 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e25af96 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e9e822f snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40598c17 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4160d4fa __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4340a1f8 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x436627c8 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4667fc29 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4880f41d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49a8d78f hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51af2829 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53dbfa6d snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x561e56fa snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57b085bf snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58d5c242 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c329709 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d0d7099 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5de3f500 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63f9d6db snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x652e7194 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68b16f42 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69080159 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b7c20e snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b9294e4 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d3c61c3 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e576cc6 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fe6f5aa snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70698407 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a5b397c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d6a1f53 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f345179 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80ab0f53 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813910e9 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x820418a3 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83e2ca43 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8526e011 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87992aee snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x891745d8 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bfd5090 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cb6aa56 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f180383 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9056d0cc snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91577dfb snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x917ffd89 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91dc3509 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94f9d1df snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95285696 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a98a81e snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bba7382 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd74bcb azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f152bab snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f91481f snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fc1a6ea snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa05882be snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1268857 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa24b0024 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa293d1b2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4fc182c snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5a79c40 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa75b4b4c snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa6dcdf4 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaad10e71 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad09bee4 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae3677fb snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafcf9672 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0392903 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3be1a58 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb453fc35 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4f7f128 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6243ffc snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba75b2cf snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbab92079 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4f5921 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe125936 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf36a778 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf3f97f6 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf7ad594 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc02c97c3 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0898ac1 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc09437d1 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5654d42 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcba48d67 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcdec2b6d snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd104f97b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd339a94f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd613dfe7 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8f72adb snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda4c9e75 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdac870ca snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe381e7ed snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe54c17ae snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecd77aab 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 0xee2e133e snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef75014f snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefd0ed0b snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1217090 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf16cd4d4 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1ca9232 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1e58805 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4e02c49 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf529077e snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf78d92b3 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf83033b5 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfad87d47 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffedfda0 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x06affeb3 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15a1b1bb snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19a96966 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x258b75f8 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x27d548b0 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x28346074 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2907116e snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33fe68ae snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f1b0a1c snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41ec6971 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49e27498 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5f2fb859 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6e0add5f snd_hda_gen_mic_autoswitch +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 0x8dee9d63 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa15af937 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb67d52ce snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc9a41141 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd7d3652 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd1db6045 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf61386af snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xff1659e7 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x5ca95fad 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 0x45f40e98 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x0738d06f adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x774ae29f adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2277b305 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x26ffc472 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4d8e58b2 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x72ab76f2 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9b8f1c9c adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa021f05d adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc0e3185f adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc8686766 adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcbe071dc adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff186d78 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xadf526de adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x0e50146d cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x325c4b7a cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3788dbde cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x13a161f2 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1b6e142e cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1de407a1 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x320b2af6 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x33ee32fa cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x42f8d33a cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x69f777d2 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x73fec38a cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7b0f5fc5 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x90c638fb cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa12016af cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd0691a97 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf4add5e5 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 0x80fcb0c6 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x92529ef8 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0f2cee5a cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x630b6008 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x988c01ae cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe1a6645f cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfcf1a0dd cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x2380de7b cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x24f2d9f9 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x854aa63f cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x59a55b58 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x820f78f6 da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xa66e0d09 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xca69b53c da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe06c2a64 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe9047faa es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x1e13a661 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xc5e0145e lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xf655fc4a max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x07d462dc soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x6b6387a2 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xad1b817c max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xf17e26d2 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x52ce4159 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x85bccc57 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x88bb0b90 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc4a9480e mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x6218e224 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa63fd0b2 mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb56a6f2a mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xd375a5a8 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x2ac99cf3 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x310b66b3 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x000f98d6 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7b435e17 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xbaa236ca pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x07bf34fe pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x7ab93aa0 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7e37a865 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x94616890 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3354cdec pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x354ecc17 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x401c25e1 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9bad1b8b pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0294b3ce pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x092948ef pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5c485225 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe5c1cd10 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 0x07a20291 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x09b97933 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8862c5d9 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x920ca791 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9473e8b6 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc4064fd0 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd5401cd2 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xede658a7 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x1fd2bf35 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x3fa44337 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x73d2e693 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 0x00fa13f6 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x1f2260ca 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 0x2f3f06c4 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x374f0848 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x42115832 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x500d9b50 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 0xa8b8c51d rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa926e331 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf198609f rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf20a3a75 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xfeb7f286 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x8e7a0158 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0679758e devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x27beb4dd sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9253ca50 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9344cd1a sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa8cbc126 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x776f391c devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x010a5fe2 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x49be7442 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x825c7311 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x4704218e aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa9a426c4 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xf6624d9d 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 0x19deb61f wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6db7883b wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb87a271b wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xcff13f30 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfc171ab6 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0324b3b4 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x09c7b2b6 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e9332af wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x337f39cf wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3ecfc568 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4262d739 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x521cb8d8 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5cd394e4 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x620c80f1 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x65c3719d wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7bf71cef wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7c117d7e wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7c9025be wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9c313717 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa363485d wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbbc03609 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbecacca6 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcda1669c wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcdcbde07 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xde47bd64 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe4891370 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe509a8cf wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe6332f72 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 0xee1c371f wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf1cc1956 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0848e00f wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0de66e2c wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x17c1d302 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x319483e4 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3e571ab5 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5dadb8c1 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x624e4089 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x704c853d 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-wm8731 0x177f2f98 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x22218a2a wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x38bbe9d6 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x409dc9b7 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdb7de9e2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xec617f9a wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xbaecf5da wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xdd5ba7b1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x19855939 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x8968234c wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0xf536ecf5 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf59b3793 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 0xc360504f audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x556e09a7 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x591abd09 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x8bcec781 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xcb893c02 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x055d28f0 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x06d5a6ba asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x297b65b6 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2a14675a asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4f87e11f asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x50aca458 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x56acbd67 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x65a17bed asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x765e03a8 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x81fba07a asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x86e6c5fa asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa21e5ba3 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xaa35d9ab asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xafb7b5a3 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbb37933a asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc1af5064 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc257ed11 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcecc4890 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd6266b95 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe78fa171 asoc_simple_shutdown +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 0xf6d5667c asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf9b9e57e asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x05485e93 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0b5f8e13 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x25650841 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3a5b670b mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3d4ce07f mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3dc99402 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3ef08a18 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5af31460 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x679d9701 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ea79bad mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8a31e905 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9a135bbb mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa10165eb mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa55fd6ea mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa8f37bca mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb5e712f1 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc456c512 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcd859352 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdad2d695 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xdf036fb3 mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe7acf120 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xe8f4b602 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf458ed8e mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xfd12b272 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x6d4c3933 mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x9914c9f9 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4420d17b axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x6f217785 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x9c8ef568 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc2ddc357 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc36ee8ab axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd77310ef axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe4f16061 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xed5b1ff4 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf87c1547 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 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 0x7c184293 axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xae1bcd2f 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 0x16235506 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x00dadce8 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x085a5f61 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x70e3fcca meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd59077ba meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd97dc0cb meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xea911ece meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfbe3f0ea meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xfd3cd329 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x17c073e7 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2485c875 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x2e392c2d meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7b7457b6 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xbb6bfed1 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xfce1c262 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 0x9866d580 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa7cba214 q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xa8991052 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x731d93b7 q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 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 0xe9fb301a q6afe_set_lpass_clock +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 0x9c93c89a 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/q6prm 0x18af7c53 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x4e00b181 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0xaea5b753 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x00536178 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x15f8168b audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x162ae26b audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x272ac0ee q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3b70de9a q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3df4fc40 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4feab9da audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x593e2589 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x670e0020 audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x734c6264 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x73a1c94e audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7a8516c6 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x99c672e9 audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9c262fed q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9cfae7a2 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9f7f358f q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa3c14ba9 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xa8df4168 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb4d1a863 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc547133a q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd3d68bac q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd5cf180f audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe59ad2b8 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe755e824 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf8c290af q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x01af4682 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x3ae871ca q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x9d19c21a q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x2449c5af asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x25a2f070 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2f29389c asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x354ed1f1 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc5f56ac8 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xdea17578 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf3e11887 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x3c8f3332 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x0a3823ba asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00e97b97 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0110a969 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01d4dbeb snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04a55998 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04a75c0b snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0583c9a2 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8c22eb snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a90e50b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b6787a3 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b982c52 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bef691b snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c93911d snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d838b8b snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9c2c24 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eef407a snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f12efdd snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a3cc6c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10b92060 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x133fad13 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134c3842 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184343f4 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x185917e9 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x187f1b24 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b004ac snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19102d76 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19496195 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198a35a0 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac0f7d1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ac62ea0 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c152651 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d37fb84 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e882004 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f757eb4 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d32b71 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2453bdad snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25021503 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25563c92 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27821407 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c260d3 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29c779ab snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a42e9e3 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c6c13bc snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d5f8e1d snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f1d7195 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35000f6c snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x351d8d6f snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x360110db snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3726299b snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38d52305 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a43f231 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ab47dc1 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3af91f78 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c48f8dc snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c4b08eb snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3cb973cf snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6fcbcd snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e66d3e3 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e737ec8 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x428bbbe0 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4496e257 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x449d25f9 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44d6a771 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45227278 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x464d0374 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x468e9d68 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f699ec snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x486a0068 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a51a2a8 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b109e94 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c7ef688 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f3a6a3c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x504f51fc snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56e6b06a snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x591647ee snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b1d946b snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b897422 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1db727 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f97feaa snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc7c275 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63b4517f snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63bc7dff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x641804ee snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66075fc5 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f453e3 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x673270eb snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67904d64 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67956d79 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69806211 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d411cc8 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f17c708 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f8c212c snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x706d9e07 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7177bd33 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7581987b snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7596b27e snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76a68e4c snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76a87543 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78504f91 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a5eab6f snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d73275a snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d92b0f7 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e41b49e snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e6efb5d snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f050d97 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f195a0e snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8003a8c3 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x812b8d30 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83e4856f snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x870a6ae1 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a1f6b58 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bd13d77 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f2442b9 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91ac3abb snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x942ee71b snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9435fd3e snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94e88b23 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a623de snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f5e538 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97a02084 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99fa7837 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9df5faf4 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa04e7ddc snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa10f3565 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2c84fc5 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa328d7d1 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa58c7008 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7ddc194 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa817f8da snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa828323b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa96dfb90 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9905c18 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab94575f snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac30db61 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac59ac72 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad61b1ee snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad622eb0 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadc59e15 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaed95f6f snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf496d3e snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d73027 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0de3199 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3829832 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4c6f4bc snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb55844ca snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb560dfbf snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5eac84f snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f134c9 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7079671 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb757bca9 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb78c82a1 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8eab22b snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90be136 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb92c56df snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb962a844 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9ab1a82 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba1d2329 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba26d414 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe20744 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf040d5 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdaccd3c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbec3401d snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef2264a snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0760771 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc18fe9a6 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1eb8f70 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc21a290e snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4604c06 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c38af6 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5312edb snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc717861d snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcae5926b snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce82ef50 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xceffe48d snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd05540ca dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0e98ab8 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd15378a5 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5d98d3d snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd65cc5e7 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9607ba7 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbceb626 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcafeed2 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd3b28e8 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde3c557d snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee7c1c8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe131e33f snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2372d88 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5566942 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe575ca0f snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe627f9e5 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9dff48e snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9f9be57 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb31940c snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecb6507e snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed713ef7 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee5ff121 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef6bf366 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fab999 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2f1cc1d snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf404d76a snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4b0d0ee snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf81b882a snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8ad12c2 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf903ed9b snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf94359a6 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9885b85 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa0d6b5e snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfade1ef2 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbf0897a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc5833fe snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc8c6ab7 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcf629e2 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe075e6a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe3cdfef snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x06a9beaf snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x073e24d2 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x24619003 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xc319733a snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xfa15ece8 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 0x09a234a7 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xec8ff77a tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0541bd93 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x25b31ca9 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x27e62a6d devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x29fc5601 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x422a56dd tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7e09569c tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x87f33f3d tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb49516b6 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xcf8b0e2e 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 0xb78fad7d edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xc9ba3aef sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x339b84ad udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x048ae77a line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x17fcfb47 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2e4b840f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ff12dd5 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x638b3b70 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7c3bfb6e line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7e37c58e line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9c41cb7b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbed58571 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc622adf4 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc934c44f line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc958c46b line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcde214a4 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe6628cc1 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfa16ad67 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfb2e60e2 line6_send_raw_message_async +EXPORT_SYMBOL_GPL vmlinux 0x000f1a2b md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x0011a0cd skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x00135e5f i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x001a9ac7 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x001fcd53 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0026a1cb bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x002cb44f genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x00428aaa fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0051bdb9 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x00629da3 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x006e194f gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x00756872 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x008162ff of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x009ba99c vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x00ad1107 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x00c7f786 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e2327e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x00e695f8 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x00f22b66 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x00ff745a l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01079b6e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0114a142 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x01202738 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x01239677 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x012f5e8a cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x013dedac ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x0145972d crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x0153cdb2 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x015ef60f crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x015f0337 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x01603410 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x016a41c9 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x016e61d8 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x0179ccba topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0182fa8f sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0190d7d1 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0199d2f9 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x019f1cdc dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01d8049d dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01dfc6cf irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02036a51 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0206743d __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x021226be mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0216bae1 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x021ae965 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x0223a7ac devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x02272530 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x02342b40 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x025f4167 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x0273b152 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x027e949e pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x02813f4b fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x0295474e ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x02a17807 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x02a663f4 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x02a9c8c2 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x02b43c12 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x02b6a7b4 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c90072 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x030aedcd device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0310407a kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0321530d of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03250541 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x032cecd8 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033c4cbb acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x0343447e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03566ebe pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x03594743 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x035b6b2f shash_ahash_update +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 0x0380c198 fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x0388a197 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x038a75e4 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0395772b devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x03a7c3e3 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x03ac08f3 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x03aed38e unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x03b3c150 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x03b46b73 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x03ba5369 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c83baa rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03dbee2c dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x03f203bc crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04053585 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x0406482e hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x040ec16e skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04141665 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x04149abf __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x0422c1dd devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x042c5884 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x042c7503 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x042cbb17 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x043523c3 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0453be95 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0459d747 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x045f1afb __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x0478313b cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x048edabd irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x049882f5 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04b03df8 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x04b6fbe9 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c43c5d dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04c9e215 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x04d000f7 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x04d404c5 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x04d82274 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f45952 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051cbc83 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c44d4 uart_get_rs485_mode +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 0x0546d7f3 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0559ca5f dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x0559cced virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x055e5edb crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05630ec4 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x05704372 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x05886ed6 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0594f909 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x05a49928 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x05a7abd5 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x05b8d44d crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x05d99b54 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x05e04114 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x05e4ce45 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x05f6be9d __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x06087c3e mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x060c3040 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x060daff2 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x0647b4af devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x064bfe8a icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065766fe __class_register +EXPORT_SYMBOL_GPL vmlinux 0x0675af1e devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x067916af pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x06795bd4 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x067e84ff dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x068556bd __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x068ce779 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x069089e8 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x069967f9 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06ba9f74 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x06bb468d sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x06c2c4b9 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cd5076 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x06d439d1 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e750b0 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x06fbb0af regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x0704bfec hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x070f2741 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x07101896 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x07153289 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x0716e36f serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x071cbf21 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x071f26dc fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x07235d69 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0724c1cb ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x07277480 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x072ce4e7 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x073493fe spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0736b29b pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076662cb crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x07686e16 fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x077105aa usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x078c9f97 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x07a3abd6 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b62275 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x07b7a361 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c3950c fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x07dc8815 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x07e4782c pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x07f4aae6 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0805fd8b arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x081340bd blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081b2062 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x081b5b3a crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x082140bc crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x0829a0cc dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x082c56d7 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x0830585d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x083293ad xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x083bbf8b pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x083eb39d gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085a6000 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x08710e1e ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0880a52c driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x0881743a iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x08901428 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x0895dad4 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x08a717e2 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08ad1a4e folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x08b59a8a scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x08b630e5 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cf0f2e mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x08d085e4 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x08d09700 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x08d613ca pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x08e19567 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x08e708ff phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x08f24280 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0904fca5 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090a9acc blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0923bd5f icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x0933acb8 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x094265a4 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x094735b7 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x09487f25 ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x09542ea3 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x0956c356 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0962008e ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x09829560 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x0992d62e led_put +EXPORT_SYMBOL_GPL vmlinux 0x09aca750 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x09b3557e bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b593eb nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x09cb4bbc fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x09eaf4b8 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x09f976c2 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x0a1b81f5 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x0a1e028b fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x0a27f684 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0a2ef825 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x0a4512ca devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a591199 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0a6459a7 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6e9406 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x0a788a9a blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x0a7b7fcf xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a90f529 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0a91514a ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x0a9e57eb __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0aa167f1 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x0ab3123e fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0ac3be97 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x0ad29517 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x0ad7b294 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0adc5922 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0afc5f66 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0b0215ac serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b225021 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x0b23b4af ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0b275936 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2f71c6 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x0b363208 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0b3931d2 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5c1726 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b7c30ca unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x0b91586a usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bcb5aa9 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x0bef0329 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c05ad7e dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x0c115dac __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0c126135 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c2c34b4 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c3da3c7 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c454585 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0c5ff9ba pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0c727685 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c908fa2 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x0c9b50ac nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x0ca3d3e6 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0cadc4f3 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x0cb4c536 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc00176 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0ce31690 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0ce535ac cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x0cecf5cf crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0cf71962 mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x0cf8474a of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cfe6901 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x0cff1120 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0d0f40bc mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0d1b7898 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d47caee ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x0d489bd8 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4cc74d sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d682a8b proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x0d871233 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0d93a4fa acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x0d9d87aa debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0dadbae9 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0db1c4e5 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0dcee808 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0dcfef76 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0dda7870 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de8863a usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x0df2cfb6 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0df687ee devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e05366d perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x0e07f3f5 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e170ac5 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x0e3c3bd1 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x0e42ba9b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x0e48ef93 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e64e2ae clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e78a05e do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x0e876f49 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x0e8e8c2b tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0e8f2cc0 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ead8474 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0eaff0ee pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x0eb932df efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebbe556 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x0ebcdb55 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec3d928 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x0f0d723c cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x0f14327d k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1a20d4 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x0f1fc318 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x0f331813 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x0f33c0e5 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x0f37e054 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0f3f959c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f859577 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0f89d2b9 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x0f9c0324 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fadabfa fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fd1d86b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fe0fd21 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe74641 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x0feba488 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0ffe514e spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x100a884b iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x100ae9e6 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101a2507 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x10360f3b addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x103c7eb0 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x103f13a9 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x103f4450 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x10530ccc ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x105eb487 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x106635e3 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x1068410c regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x106c5b84 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x107274b6 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x1076177c pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x107b6ad5 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x107c214f dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1082a2ac vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x1085a721 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108c3ebc bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x108d9221 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x10935e96 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1098926c regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x10a33d6d regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x10b218af usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x10b4d10a __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x10c2b21e usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x10cff5b4 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10de008b da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x10deabd5 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ef1cdf ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1101ae67 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x111ebfa2 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1151d5aa dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x11640bbf phy_init +EXPORT_SYMBOL_GPL vmlinux 0x116a8a81 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x117193c1 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x11849ad9 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x11859cb9 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x11a67460 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x11af737d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x11b91f3a dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x11cd297c serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x11cda17a nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x11cfbd0f sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x11d106c3 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x12152d47 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x121cdf25 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1229dd1d pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x122e5e75 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123faa09 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x12468769 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x124b2ab9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126b2025 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x12705b84 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x127533f4 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1282bae3 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x12879c66 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x128c754e mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x128d0c8a gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12953e62 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x129558d2 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x12955c71 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x12999bfc vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x129ae78c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x12b65e1e genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x12cf4369 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x12df35d4 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f98a22 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x12ff417f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130972f9 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x1312eeaa proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x131746f9 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x131851d2 fsnotify_init_mark +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 0x13512a5f __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x13517c2e pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x135c5485 __ata_change_queue_depth +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 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139e4e89 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x13a17b38 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x13a6687b pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x13b9dc8c regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x13bde745 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x13be2cba lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x13c1a2eb devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x13c5fb00 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d22373 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13ead148 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fe5534 usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141c8269 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x141e69c2 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142364d8 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x14272334 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x1436e19b blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x144102d7 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x1448c275 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x144d4c81 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x14506b1e devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145afc3c dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x1463e7b5 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x146543b2 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x1465b26e mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x147797f3 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x149ca5ef sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x14b5dd57 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x14b88a61 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x14c4a402 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x14cd83d5 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x14ceaa50 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x14d53b5a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x14dcc63d of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x14e2d217 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x14e6f6bd ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14fd2096 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x150ededd key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1522ce3e ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x152562c9 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x15320509 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1534881e acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x15388672 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x153b8556 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x15447007 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x15473ce8 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x15482fc9 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x154bfa0b serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15608859 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x15718db2 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158eb5b6 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x159bb530 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x159c184a nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x159c61fd pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15bd32d1 clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x15c4cf87 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x16074221 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x16093e12 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x160b7edb fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x1614f691 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x162f24f9 device_register +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x16668974 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x167283c8 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168b99b5 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x168f2de0 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169bd7af aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x16a53fad net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x16c098e1 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x16c0d32a xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x16c40f1b virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x16d6a9e9 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16df8188 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e7c0bc __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16fc1f3c devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1736fa96 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174e6786 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175bec73 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176b1c1a rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x176dad9b extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x17786b0d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17953fae acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x179a9da9 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x179bb383 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x17bcc69c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x17ca534d transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e7bd6a dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x17ef2ee1 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x17f50ada __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x17f5ff04 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x17fcc454 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1813cb9f dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x181c82b3 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x182203fb ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x182c048b crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x182d503d ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1845e8c3 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x1846363f tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x184ef984 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1851550c fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x1853b877 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x18584dc8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186afd3c tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x188a83f1 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x1892a2b2 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x189d835e __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x189f9eaf sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x18a8ef15 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18cb4c77 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x18dd1d5a devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e52332 imx_unregister_hw_clocks +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 0x18fe6977 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x1904846a mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x1914ea4f init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x191e2997 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x192c24e1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x19311314 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x19317625 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x1935deef dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x19578f40 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x195b2486 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x19611410 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x19627b7c device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x1975c9c1 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x1999e67d phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x199a71ec usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x19a17329 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ab2be8 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x19b9318f linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c2a732 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a0efe15 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a21e71f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x1a261cd6 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x1a5305c5 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1a5c78b4 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x1a67a61b pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9dd7b3 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1ab19524 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1ab46db3 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1ab4b907 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1ac2223a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x1ac76e37 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad9fb77 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x1ade529d da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1ae0d188 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e94e crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b06baad device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x1b1a3a64 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1b26ea19 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b2bb497 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1b2f1a0e pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x1b3ed124 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1b40e45a blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b4a7217 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5d2674 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x1b660da8 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b769dbb pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x1b79ba9c da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b95071f set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b9e138a dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1bac8b6a dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1bac9a42 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x1bbdbdd5 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bc85e1c irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x1bd6e75c blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1bee21d5 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c060111 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1c235813 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x1c43978f __netpoll_free +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 0x1c742eac crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7fed0e fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c850c7f __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1c8592ba of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c9d554e sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca4a930 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x1cab18ad pci_enable_pasid +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 0x1ccfa17b __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x1cd9b34a of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x1cdc3726 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1cdd41bc platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d0773bd auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1d0f3980 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1d18ed30 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x1d1b4bb7 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2b4b49 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1d367263 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x1d3b537d devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x1d3e6001 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x1d4ed0f4 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x1d597093 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d622112 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d67e87e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x1d732a17 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d80644e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1d81bd6a __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x1d82e855 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1d9101a9 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x1d92f121 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1da58c59 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x1db6af63 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x1dba8d28 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x1dbffaa9 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1dcd1670 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1dd2d792 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1de49bc0 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x1de7c4e3 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1dec20f5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e03e617 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e13dc48 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x1e37c456 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e6c6e10 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e83fee6 HYPERVISOR_physdev_op +EXPORT_SYMBOL_GPL vmlinux 0x1e878f69 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e9f2be4 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebc8c01 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec96bbb acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x1ecc7e39 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x1ece515d netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x1ed154ec dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed64e4d serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1edc7946 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1edd2e28 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1efbef80 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x1f0f1cac syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x1f164935 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4cbfa5 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1f5165b1 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5bd3fd skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x1f695fc1 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f995b24 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1f9e37a2 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1fa14552 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb050a4 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1fc2d647 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x1fc9aed2 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x1fccd0ee skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1fcd7e9f init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1fdc381c pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1ff1f435 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x1ff776c8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x1ffe9bf7 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x20038894 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200d6870 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x2018e4df wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x202151d3 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x205449f8 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x205473e9 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x205dd0d3 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x206c0927 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x206c8976 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x206fc4d4 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x207efa1c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20904723 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x2092363a component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20b4b59a devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x20bb1dd8 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x20bf167f __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x20c47b6f devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x20d068d7 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x20fccca2 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x21119fd8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x211a568c ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x2125bdcf pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x2137da74 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x213ad078 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x214bc380 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x215f6f9a cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x216e051a rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2174c0e6 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217f0cb4 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x21913a87 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x2191af22 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x219f2436 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x21a33dbc strp_init +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac3948 pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c0151f __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x21c6f426 mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21fba3a8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x220e3436 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2222c311 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x222ed624 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x223104df trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x223aa98b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2244d895 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x2247b3f2 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2270ace3 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x227b6768 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x22a4776d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x22a8dd9d dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22c931bf device_match_of_node +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 0x22ed6f7e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x22efb1f6 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f3bbbd acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x22f8c32d iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fd0f93 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x23103d7b __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2335629c scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23583395 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x236594ce posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x2396d65a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x239f5df0 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x23bbe5fe usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c77a88 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x240569a2 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x2407e5be dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242b7183 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x243454c4 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x24578b7b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x245c1148 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246bb289 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x246e60ea register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x246f0062 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x2470d3f6 da9052_adc_read_temp +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 0x249564af device_del +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24ba0f67 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x24d4bf83 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24de601c of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x24e0b17a of_property_count_elems_of_size +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 0x250471b7 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x250ce227 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x251ad3e8 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x252aa75d crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x252ebd04 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2530613a pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x2532e8fa tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253fde94 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x254aabf5 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x254fa5b8 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2550447c acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x255952e2 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x256497f2 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x25690e7f blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x25867aac disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x2590aa5d wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25cb2a21 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x25e635c2 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x25f6062a devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x26026001 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x260a454a rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x260f546d finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x261d5bb5 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x262290c6 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x2622d88f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x26350d65 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x26423fba __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x26427029 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x264e5c0f acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2660a750 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2670a7f0 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2693d038 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x269b27f1 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x26a18e01 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x26a70288 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26aa1104 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26abca45 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x26bfddea cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cf79fc copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x26d9fedf vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x26ececf8 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27007921 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2713e64a bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x271502fb pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x271a768f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x271d8c70 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x27285199 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x2729f9af debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2731540d kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x274fc405 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x2750730b fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x2764c124 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277785a7 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x277a89cd nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x2788d022 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x2797feda blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x279ce416 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x27ad1b8e rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x27bfa6ed __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x27c399bb pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x27c537c0 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x27cdab8d sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27dcf43f i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x27ec33c0 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x27f1e3f5 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f7db11 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fd93be iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x281cef69 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x2825ea94 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2832e9c6 cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x28355dd4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x28361b91 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x283d44ec regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2847bf51 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2857b746 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x28641ed9 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28753edf pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28865856 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2898f139 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x28a015d7 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x28a5f664 fscrypt_prepare_new_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 0x28ba7f9b blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x28bee503 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x28cce696 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x28e00742 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x28e1f4bd devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x28eaa1d4 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2900fff3 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x29093b3f phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29254fcb __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x2933c2ba usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x2940b252 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x294525fc irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x29586764 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x29613d3f mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x296f7acd crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x2978f129 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x29873c58 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x298d7604 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x29a1a70f blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x29b42096 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x29c71c18 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x29cac2b9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x29d45e33 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29dd5557 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a01584c pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2a15cfbd mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2a29dc0f irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x2a2b3ae8 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x2a357a7b mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a55c395 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a60802e tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a63a0d8 meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x2a667595 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a7456c2 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x2a789c9f bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a7fd208 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aaa51d8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2b05fbe8 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b174fc3 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x2b29e626 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b307bc4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x2b39598c rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b75ab35 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7f361e led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b888773 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2b943fa7 regulator_set_suspend_voltage +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 0x2ba4988f ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x2bad6830 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb0b71c iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x2bb119b5 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2bbcc43a spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x2bc2afaa regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2bc8b207 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x2bdd029d pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x2bdd9947 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be27699 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x2be33cd2 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2be9e6e4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x2beebf3c register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2bf31833 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x2bfe7d75 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2c00c919 clk_hw_get_parent +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 0x2c3f8d81 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2c4bcac4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x2c518857 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x2c5636fc fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c67848e lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x2c74e6ca rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c812ed5 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c91e087 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cb5cac1 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x2cb8baf0 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2cb9044c ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x2cbb7665 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x2cbdf52d mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2cdb5b54 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d00d03e phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +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 0x2d3e73de crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5d8a4b evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d61e717 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x2d689807 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d6baf89 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2d7197a6 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x2d82b3eb bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x2d8c6443 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x2dada3ea ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2dae7d76 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dcaf848 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x2dcf60d3 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de5d96e fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0f64a6 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2e1f64a0 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2a4270 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2e2f4ea5 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x2e36625d rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x2e3c43ed acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x2e3ee764 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x2e5bdd53 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x2e5df42b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e89106a blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x2e9df69e tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ea89c6c alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebf2ceb acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ec58b97 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2ee72b4c regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eec0327 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2f02cd00 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0bcab5 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f226423 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x2f2792db pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f2f5392 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x2f36cab6 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x2f438faa sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6b1457 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f93bead regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f9d243d netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x2fa9230e of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb0f792 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x2fb93b7b dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc990ed iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x2fcab8cc gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x2fcfb5ae perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x2ffabb17 mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x300052f9 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x30049b1b acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x300d1bff fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x30237eb4 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30270f6d devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x3054755a dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3072fc27 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x307a51d5 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x307d85f9 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x30a81fd7 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x30af4bb3 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x30c77c4d clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x30e0fe6d fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e42fcb bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x30ebd427 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3139b491 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3151e794 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x31632fb6 mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x3163f529 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x316ecea2 cpufreq_generic_attr +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 0x3190b7a6 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3193e9ac blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x319c2056 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce85aa devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31dd4339 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x31dd7d6b kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31fc56d7 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x320485bd regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3226f457 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3228e543 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3231fdc7 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x323de786 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3275c087 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x328b491d fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x3296299b uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32acc208 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x32b657fb of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d92a6f irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32ea84f0 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x33018ee1 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x330ac250 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x33106978 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x331262b7 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x334f2532 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x335969e0 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x33684a3e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x33741d25 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x337a46cf sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x33909aaa memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x33a51c0b dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x33ae109b skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x33b7a2a7 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x33c1c6a4 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x33c54c7e serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x33d3a29a noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x33fc7f0e acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x3401df1c devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x340762b1 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x34086372 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x3417c6fc serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x342a88d2 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34359db5 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x34390d30 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3442665e mtk_clk_unregister_muxes +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 0x34561308 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x34674ee6 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x346c8fd4 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3484ee09 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x34893840 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x34966bd0 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x349cc597 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34aec7fa of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x34c67aa9 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34ead49e devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x34f44d53 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x34f47a0b platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350b96ac fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3513e319 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35318803 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x353887ff vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x35391b40 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x3556265d pci_epc_map_addr +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 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356748ed access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x356bce65 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x35708f44 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x357196d2 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a0f0a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e84281 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x35f8308a devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x35f92407 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x35fa94b1 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3606e35a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x360ac7c1 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x361cb96c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x3622be51 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3630eaa2 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x3634612a irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x3646ec39 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x365828bf nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x365d3e3f vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x36729ec9 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x367548d9 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368cf890 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36994cf4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x369b6be3 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a7a1ea devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36ad9c64 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x36b41416 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x36b519a5 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x36bbf2c4 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36f0ce8d dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x36f141be pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x370baa9a devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x370e0878 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x3711d3f3 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x371573e6 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3719cc08 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37359c77 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x374a9dc4 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x377070af dst_cache_get_ip4 +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 0x377c41d1 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x3790f088 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37914047 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x379d27f9 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x37acf3df dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x37ad2660 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x37b42fcf devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c4df16 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x37c6e21a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x37c76b93 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x37d5d99d of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x37e3d555 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x37e75f4f securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37f0135f __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x37f41b49 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x37f4542e tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3820112b __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382d2cec xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3842fe8c nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38791c7a vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x38923b65 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a2e04d of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c0b1b4 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x38c26cd4 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38ccfbf7 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x38cd419d fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x38d3a3ab md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x38e19b7d of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ed836c pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x38fc1713 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x391d5491 mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x3923ca95 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x392973f9 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x392b0188 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x39385597 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x393a40b0 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x394d9918 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x395bdb33 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x396fa018 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x397ad93b badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39820b72 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x3984b795 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x398590bd br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x398a3abd inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x398ba013 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x398d0059 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x398fbf4d virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b07cf9 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x39ba4c1d usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39d587a0 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x39d897f5 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e551aa folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x39f7d2f9 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x39fc011b regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a2fd006 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3a30cdbc proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x3a3c107c devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a48c136 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x3a4b625e devm_hwmon_device_register_with_info +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 0x3a7263fa blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3a742a11 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a9787eb meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9e0411 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab2d5d8 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x3ab4315b regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3abe287b filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x3ac346a0 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3aca0d79 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad49878 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x3ae438b6 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x3af37a46 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b00e3c7 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b078943 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x3b235b30 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3b25e43b stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3b29fd50 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b52946c kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x3b606590 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b74c856 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b7d4e47 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3b9aa7a0 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x3b9b7704 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x3b9d6b3a lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bcd83b2 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3beace0e xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c00cf16 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c15cb63 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c1676dc device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c231f3a locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c31abc8 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c44b16a nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x3c474f68 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x3c4c21db altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3c52e472 mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x3c5bcba8 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x3c5c99c3 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c75c091 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x3c793fda of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3c900423 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x3ca2e508 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x3ca67a38 fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cc20d98 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x3ccc5219 debugfs_create_blob +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 0x3ce4cdba of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x3ce9feea od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x3cecf767 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x3cef1be0 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3cf2381b ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x3cfabf85 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x3d1461c4 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3d22662d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3d333247 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d38dc1e dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x3d3cb592 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x3d402cac of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x3d4c7ab6 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d604926 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3d669a0c tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x3d7558a1 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d86bb7b kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8ce33f mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df0624c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3df5f619 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3dfddb42 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x3e0322ea pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x3e19b71a fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3e268d09 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e284e66 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x3e300b93 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x3e401c70 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x3e56c380 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3e5a71fd regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e70b3e7 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3e742b79 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x3e7cbba7 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x3e8ce3be devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x3ea02b85 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3ea33973 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea714c3 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3ea89e21 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x3eb98ba7 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x3ebe6b7d usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x3ec6d761 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x3ec6f470 bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef9184c __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3eff6759 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x3f01fe3f powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x3f195ae6 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3f2ee4e3 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x3f3cfd08 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f64fa8f devres_get +EXPORT_SYMBOL_GPL vmlinux 0x3f7e6500 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f86a9e3 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3f93d010 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3fa405a4 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb0e190 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x3fb2fb33 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3fbe9d35 bpf_warn_invalid_xdp_action +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 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff77cd4 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4006f117 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x40078816 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x40219a2e thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402c5be0 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x402eb8b4 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f1572 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4041c2ad qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x4047aa7e xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x404fe4c0 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x405b4585 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4070204b rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4076bc69 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x407aef14 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x40807df0 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x40832933 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409b27e2 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40c72db0 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x40d11951 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x40d3fab8 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x40d5166a fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x40d9d3ce nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e6119e ahci_platform_disable_resources +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 0x40f99f15 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x4100f96c rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4113e6f2 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x41157482 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41347217 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4159a5a3 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x416be23b ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x416e6f01 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x417b2904 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41ac31ba gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x41afa299 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x41b08562 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x41b74d12 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x41b9256c usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c1c7e4 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x41d05171 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41efec9e of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x41f09d6b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420b63d0 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421bcc94 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x423709f1 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x42643f74 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x42645762 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x42753f16 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x427bc6f9 amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429e45c6 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x42a1b1c9 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x42a5d211 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x42a71362 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x42ad9a15 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x42b450a2 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42df1a82 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x42df7422 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x42e302d0 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42ecfbbe apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x42f462bb thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42f4be98 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43031f28 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x43078197 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430e580f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x431c994c of_css +EXPORT_SYMBOL_GPL vmlinux 0x434f00d3 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x435e20e8 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437452ff register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x437db9df fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4385733f mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a0537a dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ad4993 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43dbb429 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd71 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x43eac034 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x43f65c3c iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x440063f2 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440ae347 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x440fb215 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x4413759c device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x44276825 mtk_pinconf_bias_get_combo +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 0x4443f024 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x4444d952 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x447bdc4a of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x44847497 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448f8115 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x4492b408 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44a76b1b cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b28f9b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d82d68 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x44dcdae2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e4dc41 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x44e7760a sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x44eb89a7 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x44ebdbd1 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x44eee670 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x44f89f45 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x44f9c326 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x45004232 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x452623e3 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45374a46 inet6_sk_rebuild_header +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 0x457bd5d9 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4585f265 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x45874d9d i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45c3cd0c __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x45cf0b8a device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x45e13c82 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x45eff818 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x45fb3605 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46114f77 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x46166613 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x461adc50 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x461f0938 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x46457797 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x466352a2 dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468ce1a5 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x468da42b ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x468e0268 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x468e50ac nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46b6a9a0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x46bc882b led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x46be6365 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c7fb91 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46fbb2b1 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x4706be19 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x470ce4d2 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x471bfdc1 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472717cc __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x47285bcc devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x472bee9d platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x473eda55 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x47449b7b mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x4749d9e7 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x474ea8e7 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47724ebd mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x47729e06 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x477b35da devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47956293 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4795785d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47afe318 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x47b06415 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d742c8 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x47dde648 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e6129d ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x47f30d89 rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x47fe9806 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x48020157 __clk_hw_register_fixed_rate +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 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48204c58 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x48219472 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x4828aa71 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4835faee irq_domain_set_hwirq_and_chip +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 0x4874ecce gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x48768f54 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4879c679 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48834e5b crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x488dfb06 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ad7f4a efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x48b0179f of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x48b22050 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x48ba16c3 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48f75a1d i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x49050a02 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x490d2346 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x491d089a watchdog_unregister_device +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 0x49442cc4 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x494b96fd crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4985c5b3 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4995d5ca efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x499c258e iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x49b57978 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x49c0b2a1 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x49c47bd9 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea931c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x49fdf3e3 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x4a0ac63e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a109d50 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a16982e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1d4d05 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4a218a7d devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x4a2e79d7 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a2ec2c3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x4a3e80e8 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a50b9c3 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x4a60d328 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x4a611467 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x4a702cfa root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a88b67a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x4a926de4 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x4aa331aa kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x4ab51427 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4ac762ec of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x4ac79ce4 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4ad8d6e9 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x4ade5e1f xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x4af3f98b mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4afa386b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4b0011a3 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x4b126bb4 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x4b130575 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b21edd7 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x4b406319 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x4b43731e scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x4b48f982 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b57f345 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x4b597206 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5c706a serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b84526f devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b94caab tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x4b9776ac __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4b981d7d iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x4baa1fae spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x4bb34022 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bb61b1e netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x4bba601b mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x4bc4839d devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc7a7dc icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bfb93b8 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c01d44f dprc_close +EXPORT_SYMBOL_GPL vmlinux 0x4c06d0a8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x4c2a142e anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c481d3c of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c733f50 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x4c751065 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x4c780b3e genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x4c7d9168 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x4c80a0e9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x4c8724b3 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4c876614 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c96149a component_add +EXPORT_SYMBOL_GPL vmlinux 0x4caec86c power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb67190 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc2ddc6 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x4cc6937a meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x4cc99583 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x4cca1667 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4ccd8a28 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x4cce392a class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4cd916c0 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x4cf85d12 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d08e9de skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x4d1713d8 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d4e219b i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x4d52f589 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d7be43c icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d8bf475 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4d97b016 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4d9faa80 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4daaaa8f pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dcc6e9a dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de12e0b __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4debfc7e tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x4defe99d perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1d3f11 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4e212963 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x4e3adaca gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e49c923 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x4e4a4480 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e4c3478 mmput +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e621332 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x4e70f198 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e90b93a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x4e98f0fb __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e9d4ff5 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x4ea24d45 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x4ea6b01a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4ea94636 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4ebfb38b rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x4ecc1522 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef34999 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0f8667 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x4f17741f powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4f22b75f relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f3551d8 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x4f38cda6 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4f502582 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x4f616261 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4f6558bd subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f69a94e wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6bc42a spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x4f6e4a34 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7643c9 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9f24ea dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x4fab6431 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x4fb5687a is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4fb71ce0 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x4fbbe929 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4fbee451 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x4fca34fa fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe4fe8d ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x5003ebf7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500f1da7 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x501abf3b ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5038030b irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x504cc901 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x50602eeb stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506712a9 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x50677391 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x506e987b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5075e8d4 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x507e0906 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x50894c19 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x508c4dd1 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5094b633 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x509b4540 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x50ad9608 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x50b8424e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x50c1def3 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50c71d9e tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x50cdd0c1 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e643a8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ec4ebb i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x50fa120c dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd11a4 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x51039413 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51183ad5 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x511ba85e irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x511c9efd regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x51224762 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519a8fb9 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x519bbfb6 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51b118fc ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x51bf963b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51c9a3f0 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51e75cec spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x51f1b44d dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x51f3bec4 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x51f4848a mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x5204ae03 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x520651c4 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x520808de kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5221a9bf dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52454c91 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x52576500 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x5259c6b0 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x525e1178 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x525e44ad devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x52ad324b __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b8864b gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x52be0bda crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c994ff hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x52cd4016 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d2a0cd devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dfdf2f ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x52e37ea8 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x52ee81d5 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x52f51ef3 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53174e12 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x5317ea7b subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5317ec14 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5319bf34 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x531b0d56 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533a9fd5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x53488bf1 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x534cff10 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x5357cfa2 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53689684 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x538508bf edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x5385e952 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53a3cf66 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x53ab1644 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x53bb087d power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53cf0b81 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x53d094fc dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x53d2b68a iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x53d76a3e ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53dc9e6e sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x53e2ea79 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x53f36339 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x53f8b6c3 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x540688b2 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54235106 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x542594b7 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5425dc9e rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x54287cb4 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x542a45b6 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x542afea6 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x5435f689 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x543f1db7 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x543fd02f crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x54427d3a devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x545096de psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5468248a __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x546c4140 meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x5481f0c6 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x5481f43e sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x548f8181 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x54910984 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54955394 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54b2c9df folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54e73b5a key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x54f87825 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55126c76 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x551fdbc8 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x5523bba9 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x5527be5e kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x5533e871 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x553a1529 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55619a73 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558aa9ff crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x55a390af sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55bb63b9 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d3d9f6 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x55d56a25 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x55d74e88 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x55e87387 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x55ee7e90 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f5a300 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x55fda97f cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56091b9c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561e216b of_dma_is_coherent +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 0x5652f906 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x567a0b58 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x56855c1d virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x568efac3 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x568f23ed usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x569d6916 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x569e889b kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x569eb1ab pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x56b5941f dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x56ba5391 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x56ba62b1 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56be5166 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x56ca1239 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x56ce458f cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x56e453b8 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56eb2cc8 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x56ee1d21 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x56efbbcb skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x56f2302b of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x571eac36 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x572bb129 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x573479d1 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x5759964a pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x575c2101 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x575cdf56 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x576715e3 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x576fe357 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x577a1dc7 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577e647e acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x57844de7 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x57881c56 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x578e1b5a dm_get_queue_limits +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 0x579ec54e pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x57b6a008 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x57bb6d2c debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x57c84f5e __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x57cd249d regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d672a3 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x57efcce4 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f837f6 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x581c13d4 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x58315632 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5839e3ce regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5844890f attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x58497b94 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x584af14c bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x584b22fd verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x5860a68f cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5867ec75 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587c6af7 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x588c0a1f pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x588e0fa8 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x5895f7a2 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x589a5a05 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x589fe699 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x58a26f7c __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x58a94dd1 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58be77c9 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58c37730 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x58d09ced ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x58d61863 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x58d89e45 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x5902141f dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x590636c9 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x59099bd0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x590ecfaf of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x591197b4 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x59188ec2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x593298e2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x594992a5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x594f65c5 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x595193c2 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x59597039 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x595ccceb xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x596a260e extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x597030b5 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59874279 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x59890870 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x598b063f ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x598f1906 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x59a00865 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x59a347b9 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b9f7de sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59db82f2 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59eb1692 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59ee8767 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f47467 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a072dfb acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5a0c3f17 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x5a11a706 i2c_dw_probe_master +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 0x5a30cccb bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a433a27 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x5a46c740 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4d56ff pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a5ffd03 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x5a63ae29 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a703184 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a927f43 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5a9574b8 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x5a96f181 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x5a9f07b6 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aabdd7a devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab4946a spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x5ab7f85d __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x5acd4a35 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x5ad6704e xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x5ade48a2 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x5af819cf device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5afec49e msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x5b044bb8 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x5b098b05 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b26e4be usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5b37edd4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5b4325a3 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x5b4ddf60 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5b50e383 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5b53c2fb edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x5b54ea29 fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b56c08d ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b5c2ef2 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6e89ed cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x5b74f89e trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x5b784a31 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b7a5eb8 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bbb4c01 gpiochip_line_is_open_drain +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 0x5bd3ffcf md_run +EXPORT_SYMBOL_GPL vmlinux 0x5bd61c94 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be11640 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x5bf4799d crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0c612d usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c0fa93a serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x5c1570d9 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c4bfebe tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5c5284b2 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6ee909 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0x5c757a68 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8abbfb fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x5c8bec80 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x5c8c9216 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5ca32760 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad5c93 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5ccecd99 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5cd7466d devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5cd80eee srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5cdc8d5f meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x5cdd6148 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5cedb4d3 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf6b3d3 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d05f3af __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x5d12e6b7 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5d16c005 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1d7426 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d21dec3 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d300178 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d56dd61 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5d576b9f __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5d648f13 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x5d6bd591 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d890096 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dacd206 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x5dd90e29 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5e03b9b5 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e3aa4f6 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x5e3b75ec phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e598ed2 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x5e59deaf gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5e62acc2 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e65a24b __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7f6709 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5ea554db xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x5eaa193e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eaec8c3 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5eb5bc87 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x5eb9921b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ec5ff20 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ece8c8f virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x5ed96dae rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee591f1 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5ee8ff37 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ef2fd47 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x5ef4e40e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x5efbd10b bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x5f1170d9 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5f17ca27 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f20c4c8 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f3ac12e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f52dcfa crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5f545ad7 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x5f5ed4d1 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x5f653423 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5f6aad8c fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f7582df crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5f87cf9e irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f98c2fc __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc29206 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5feeecfe of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x5ff52828 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x5ffae5d3 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60176d1d devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x60226166 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x6024c1c6 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60286775 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x60330722 clk_register_fixed_rate +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 0x6047966e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x60487d07 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6051aabc device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x6061c45d handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6062b35c uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606ec2b9 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6075808e __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x607902c7 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608679ec blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609c08fe crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x609ded1d devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a3a331 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x60a571bf cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b388f4 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x60bbc952 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x60c65b3b ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x60db85e4 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x60e0cea8 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x61025695 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0x61058a58 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6117ca72 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x612712dc devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6127a6c2 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x6132d0e3 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x61378f47 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x613c6f7f devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615439b7 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x6158ca5d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616b646d dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x617378e3 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6195c39a edac_device_free_ctl_info +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 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61d8d4d5 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x61dd283a fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x61df6a9a rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x61ec65b2 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f917e9 user_update +EXPORT_SYMBOL_GPL vmlinux 0x6204111b ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x62167345 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x62191bd2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x62217a8b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x624213fa gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x6242ed91 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6255f2d3 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625e2d6b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x62702b42 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x627ee17f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6293c719 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x629c335b kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c25af5 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x62c4872d fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x62d763fc usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x62e5d6ee regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x62e68320 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x62e7c987 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x62f5aa76 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x62fe438d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x630bbedc tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x630d01be bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x63116840 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6311fcca inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x631264dc devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6314bfcc find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6315a344 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6331dd6f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6332bb63 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x634a9ad9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x635549c3 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x636b049f acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6370d609 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6382bb63 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x6385f04f dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6386e755 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x63abc40a clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c19066 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x63df0ddf regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ea1a5d dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x64001852 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x64071c27 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x6416c44a dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x6418f172 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6420f1e8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x6450c2aa devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x64597a06 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x648c58a6 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x6492e965 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x6497f141 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64ae1ab7 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x64c0a1ad __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x64ca217d crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x64dbff88 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x64e279df balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e8a8d8 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x64f2bb1a regmap_get_max_register +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 0x6509b22c blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652b9721 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6544ea61 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x6547cdaf power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x65499e87 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x654dd23d of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x655b6d63 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x655d74d7 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x65666822 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x658d1b5f irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x65935121 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x659dde8c irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x659f03b2 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x65aa0a38 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b0ce02 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x65ba4d67 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x65c1c50b pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d4a1f2 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x65d85287 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x65deea83 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x660754b6 devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66279ffa devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x662c5666 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x66338f4f devres_find +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6645f821 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x6647533d icc_get +EXPORT_SYMBOL_GPL vmlinux 0x664df84a led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666c90e9 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x667042fc tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x667a8980 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668857cf dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0x668d74f4 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x6690ee79 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x66a746b8 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e1bf78 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x67055951 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x670ae68c dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x6715b2a4 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x671c1ddc pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x671c6cbd get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x6723de6c rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6756841c pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x675a0462 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x6776fb29 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x679112b1 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6793dd4f regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a04031 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x67ae703e fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x67d52c27 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e3c788 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x67fbf259 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x680592af iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x680c8559 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x68127150 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x681c1144 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x68212e60 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683dfc80 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x6840c82a __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x68468a37 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x684d50ce unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x68858572 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x68905ded ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a0854c crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x68ae4d16 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x68c73b2c led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x68d93826 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x68db790f hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x68dd11c9 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x68e99e38 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x68ea4f99 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x68f643ff dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x68f85351 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6942c3dc fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x695840a5 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696a9fb8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x696b5313 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6978ee0a usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6982f23b __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x698340ec led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x69977a75 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x69989262 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x699b3c6c dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x699d003a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x69a2ad30 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x69b380d4 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x69b5e6bf fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x69c6cb5a of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69dcaf1a xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e6960a pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f9ca97 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x69fe7fda __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x6a04799a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a0bb3d6 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a21976f devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6a28beaa clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x6a35b3bb dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x6a36226f dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3ca899 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x6a3fcbbd sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6a407e60 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4a75db ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5a46e5 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x6a5be229 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x6a5c16b5 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x6a5ddcf0 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x6a72a0ad tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a90c8fc crypto_dequeue_request +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 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6adb0a9f bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x6ae9ca5d platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x6aeb53da vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x6af650ba dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0ef129 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1e6084 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x6b291312 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2f52db preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3b017d __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b451bc4 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b4db8e3 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6b6047c9 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x6b65b52f ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x6b6dd1ce __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x6b7035f8 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b834121 bman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x6b8dfcc9 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba4e044 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6baef260 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x6bbab49a gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd0572b devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd35338 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6bdb9042 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6bdfa4fd xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6beeed31 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x6bf1db3e mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x6bfdbbcb ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x6c084e0a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x6c0af1aa bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x6c1bf082 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c206828 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x6c24c3c1 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6c297ac1 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x6c36efdc regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3cf1d1 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4caf7e fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x6c4e8a33 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5eb712 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c693da7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6c6c3980 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6c6f6adf xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x6c7e393b irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c7fe317 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c98dc96 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c9fe8ca gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb0ce87 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x6cba8399 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6cbc958e blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x6cc6fda9 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x6cc776b6 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6cc8ce84 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x6cdbbba4 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6cfc28af of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6d02a77e mddev_suspend +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 0x6d0e5bf3 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d0fdee3 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d1b105d usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x6d22b394 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d355c43 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x6d381c38 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d59616a pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x6d690247 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d79a942 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6da96722 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6db48dcc cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x6db6bfa4 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc3bff5 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dc73cab devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6dcc60d1 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd57862 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x6dd59278 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x6dd65627 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x6dd8deb5 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x6ddf5dcc crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x6de10c46 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6de1a677 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x6de50064 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6e02908f regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1557c1 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x6e331526 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e373cdd of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6e375d68 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x6e37c0a1 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e39fa47 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e466399 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4bdd22 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x6e50d42d simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x6e58e715 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x6e59e7e9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5e1dd6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6e627bca mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e835fd5 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e970c7d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x6ea69e5b ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb7bb1a restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x6eb94095 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6eb9e701 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec6d000 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x6ecb13c9 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x6ecbb307 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ecd8df5 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x6edb5aaf driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6ee0ea94 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eed1b39 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f04aee1 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6f04ce19 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x6f0c9491 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x6f1151aa relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f24e284 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x6f27b39f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6f2d2c6f tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x6f330506 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x6f5131da wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6f656b9e usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x6f6a1b2c usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f727be2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x6f7dde32 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa30e68 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6fbdd02d serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x6fc82168 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd7da80 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x6fda92d8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700ab7e5 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x700b4fbe handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x700f03f8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x701b79c3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x702912f3 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x703013eb nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x70434fb0 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x70580eb0 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x705b01a3 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x7072dc5e bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7079e37c evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x707fd5c5 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x707ff74f debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x708035a8 devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7080c079 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x70884fec __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x708fc757 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x70bd3625 virtio_device_restore +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 0x70d7b299 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x70d91e44 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x70e0f01b bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7117a1e2 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x711953ed ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x714a87a8 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x71537414 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7163a2cc dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7168cd68 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7175a21d pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +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 0x71a9cb22 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x71a9e06f unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x71af3ad4 fb_deferred_io_open +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 0x71cf9235 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x71d06904 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71f059ee inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x71f1c922 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x71f32e3b dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x72049bd1 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7212c28b pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x721972b2 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7242a98c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7273852b dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7287aca6 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7289cacc tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x728a1a75 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7298f832 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x72a94fc7 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x72aa5df4 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x72ac4e2c clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x72afa4a4 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d39882 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x72d4c6c0 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x72d8c2e8 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x72de612d fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x72e86d80 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72ee8757 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x72eeff81 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7309ea78 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x730aae74 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x730ac68e regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7313a81c acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x731838e6 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732ce008 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x732d718f fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x732ff156 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7346eb2b devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7356a497 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x735db0dc devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7363a96c dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7366808b fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x737b7874 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x737eed4d driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x738fe3db efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a85df5 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x73adc174 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x73c1a2c9 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d5e844 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x73e43c77 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x73e8b8c3 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x74297296 __blkg_prfill_rwstat +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 0x746a3e82 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x746ac42a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x747572a8 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x7485c915 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x748ec3fb pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x749398c0 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7498f521 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a84c8a dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b8dde9 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cd590c syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x74d6b576 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x74e47914 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74e9c741 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x74ea5d46 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x74eb5b41 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x74fc4ddd blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x75002dae phy_get +EXPORT_SYMBOL_GPL vmlinux 0x75054af2 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7509548d icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x7509ba09 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x750bb39b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7511c48c xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7513d6ff ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7522914e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75271a63 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x75328d68 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7545380b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x754db703 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +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 0x75a25299 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x75bca9ec udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x75c7b8c9 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x75d7e787 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x75dbdae8 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e73d9b mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f5511f input_class +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x7600133f fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7627bdb7 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x76383e66 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x763aff10 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x763c72a0 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x763d37cc __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x76480176 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x766b1a8b gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x767ccff1 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76822203 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x769974d7 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x769bfbb0 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a5cba7 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x76b51f8e clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x76be611a irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x76bec8d5 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x76cc9aaa rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x76cdc174 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d70603 fsl_mc_bus_dpmcp_type +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 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76fe816b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x76ffd2d6 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772dd143 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x773f23e6 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x776132be iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7764e030 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x77724e41 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x778b0e27 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x77911434 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7791a8a6 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7796b563 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x77a2487f ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77be52c7 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x77bf4a35 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x77c3450c meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x77ca40d3 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x77db031d dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x77dc078d ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x77e38ca4 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x77e6d8f0 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ec1121 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77efca6c fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x77f1949a devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x7800f9fb yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7804963d tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782a1ea6 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x782a38fe get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x782c4942 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x782c9320 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x782fc6be rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x784801ca cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x784a0d44 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x784c3ba7 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785fa4ef ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x7862872f ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x787edfbd cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789f4b76 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x78b688b6 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x78b75312 component_del +EXPORT_SYMBOL_GPL vmlinux 0x78bb1064 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x78d156e2 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e00a5c gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x78e97bf9 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7902d36a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7903c5c1 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7905b82b find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7915775a blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x79201028 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x792081e1 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x79295af0 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x792e14c2 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x79324245 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7932c18b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793ab526 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x793d11f9 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x793f98bc __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7945c504 devm_regmap_field_alloc +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 0x794d7d14 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x794df452 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x7966acbf fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x7984b803 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79af3332 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79cd682c iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x79db2ef0 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x79def7b2 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79df5c7e kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x79e0b93d fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f339ad phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7a19fc2b kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x7a264ff4 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7a33275d int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x7a367bc9 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x7a3d98b8 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a4be8e4 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x7a4f3056 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x7a4fda19 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7a6c58fa bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7efc99 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a867afb fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x7a93bfec of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9a366c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac51d20 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7aca05e6 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7aca3fd6 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x7ace88dd of_property_read_variable_u32_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 0x7aeab3a0 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b042541 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b18efa3 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7b1e1e20 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x7b36845e gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7b45c7cb ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7b4fa872 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6cc263 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b749978 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7bae39b6 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7bae76fa irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb16ee8 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7bb834c6 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7bb9e7e9 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x7bc10efd get_device +EXPORT_SYMBOL_GPL vmlinux 0x7bd17df0 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x7bf176b8 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x7c0d585c kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x7c28c4d2 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c314722 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7c35bafc param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c4c8390 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c6aecbd blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7c76e283 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x7c797921 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c8b1f7f phy_exit +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 0x7ca5d601 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbe34e0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf86f1d usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7cf9839d fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d03f590 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7d061499 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7d08b99a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d1f2c97 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7d338452 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7d41155a nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d4c8922 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d734bfb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d7807b5 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7d7c3703 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7d98ba14 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d9a90f8 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7d9fd527 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x7da4e305 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7daa0029 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x7dab6f62 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7db34e5f tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7db94648 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x7dd920a3 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddebe2a clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de52051 tty_port_tty_wakeup +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 0x7deb2e7f devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7dee8ac6 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7e269d37 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e543846 fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6a46e6 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7e7074ec fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7e779185 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7e96db83 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7e9cf299 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7ea82f89 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb3689b bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eda2865 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7edf6e97 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7ee8a8e6 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x7eea1660 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eec0d26 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x7ef353c6 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x7ef4d55e pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x7efa740d auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f11cf82 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x7f3e90ee bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7f4f3654 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f599ba3 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7f5e7ded irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f88fcb3 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x7f8b1307 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9c65e6 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7fa8553d reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fae29a5 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fb2068b blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fcd01ba max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fcfc554 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x7fd9ac11 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fdfbdf9 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ff2a507 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7ffe31f9 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8010b265 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x8015364f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x801acd58 imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x801cbd84 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x802a7385 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x803b40e7 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x804d29a1 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x8056375e edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807c82a1 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80863b8f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8094e01f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x809c398a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80cc0b47 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dc57d5 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80e7cdf7 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x80ef99cc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x80f9a548 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x80fbbfde __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81211b5b dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x81245ae4 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8129a505 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x8149e5fb fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x814dc5c0 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x81549f23 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8191f017 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b3ccaa dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81d4bb34 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e89066 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x81eae299 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x8202faa3 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820b7e43 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x820cc3a6 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x82140cd5 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822a1a86 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x82301e45 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8251df46 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x825b3863 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x825dacb3 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x82672eff phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8276d142 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828c8124 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x8293364c dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x82945f02 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x829e1991 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b7f17a get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82daf45f fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x82e288c0 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x82ebde45 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x82f2eb9a rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x82fde0ed msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x83012c33 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8303d123 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x831d64b8 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x8329a03e acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8337d728 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x83467a63 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ca220 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x834e1f4c memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8385af1a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x83c8550e gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x83d2c0ec register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x83f5db47 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x8403cf92 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x84364b17 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x843d49b6 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845f19e2 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x845f9e58 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x84644621 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x84699d1b __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x848299f5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x84955700 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x849a982f md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84cb9d2f devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x84cc717d pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x84ead641 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84ef5491 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x84f2b882 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84f4ba74 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x84f58249 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0x84f72614 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x8500d193 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850ed276 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85240a37 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x8536b3d9 ata_ehi_push_desc +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 0x8595c3bc inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x859ccf86 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x85b90450 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85dbdb0a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x85dcfdee inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x8621e2c5 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862474af mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x8643fc62 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x8649c609 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8654c9c4 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86588f3e kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x865ade62 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x86621a92 usb_reset_configuration +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 0x8680e50a vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8687dda1 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x86902c5f gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x869919dd regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x86a02cc5 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86b340c4 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0x86c02001 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c6d29e regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x86c90177 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ea08b7 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x870c5620 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87130a61 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x8723d30b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x872e5b8a power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x87486129 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x874caf0d phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x8755c538 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x875a8e62 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x875b7473 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8769e24d regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x876a61ce skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x87830fa5 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x87887f45 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x878b0a27 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x878e013c of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x87953869 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87c5e9ae metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x87f52c6d gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x880c09d4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x880c280b of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x880e38d7 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x8820a80f ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8825d15e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8833c5d9 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8846d6c9 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x887c7f3a soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x8889b6b5 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8894f360 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x889a0fe0 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x889a92e9 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x88a9be34 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b67e5b nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88fe7504 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x89106c14 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x891205cd regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892a8a14 md_do_sync +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 0x89581b06 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x895caa0c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x895dc9a7 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8965fc1c devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x89662e02 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x89673811 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x89845244 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x89924627 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x8996a627 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89af4218 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x89b5d432 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89e1f1cf fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x89e2db19 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e9d05f usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x89f58268 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x8a07479d sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x8a1672c7 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8a1e7290 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8a220fc1 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8a39bf55 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a4d08e8 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x8a55451c ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a71b17a ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a87462c xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x8aa2ad86 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x8aa59f8d i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x8aa7701b regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x8aaeb250 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8aafe65b pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae6894f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x8aecffd0 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x8af38d98 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x8afa4b07 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8b08d354 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x8b1378b0 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b233d38 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x8b23bc07 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x8b24ad73 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x8b26015a rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8b3d16f8 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8b48bf90 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x8b50b80f mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x8b50cdfb phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b673862 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x8b6e2c7f led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8b77f416 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b97765e transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8ba5b50b iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x8bba384f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c12e12f put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x8c18784e regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8c43a66c ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x8c459c28 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4c5b23 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8c4df698 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7cb1f8 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8c7d968b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c99d789 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8ca6d4e9 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x8ca821bc virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x8caf774c fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cba8aef sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cbe62a5 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0x8cbf28a4 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x8cd3f92a bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x8ce0fcb8 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cef32f7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x8cf34f13 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8d01a4fb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d2128c3 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d363b9e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8d3ace0f devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x8d450750 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5c21ab led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d7e817f ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d966581 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x8da9d0fc __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc1abf2 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd86a66 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8dd87c8e ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x8ddfe1b2 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x8de10471 mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8dec58e2 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x8dfe64e4 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e1b264e bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x8e25b130 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x8e2a0907 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8e33d7cc platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e34f7f3 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x8e39152f fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e46e24b lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4ca6cc dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e594706 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x8e5e6af2 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x8e5f5203 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8e60fc86 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6f77db clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7922a5 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e8311bd cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8e8c9ded wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e916ed7 tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ecf3015 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x8ed0b7e5 of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8edc322e scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8ee04c18 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x8ee769d5 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef714c5 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8ef721f8 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8f00a671 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x8f04449c dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f07f83f ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x8f095070 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f2d6050 device_move +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 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 0x8f820215 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f9d3413 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8faeeb0c nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x8fb11a2c pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x8fbd13f4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc98f30 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x8fee8ac0 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9005e066 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x901396c1 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9014140a ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9022d43a imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9040d035 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x90522a8b genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x905db98b open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x905ee71e pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x905f1d4a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x9070ccf3 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x9073675a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x90780c92 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x90809027 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x9082b178 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9094fe0a pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x90a4a088 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x90a85855 pci_find_ht_capability +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 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dd7368 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x90e75f5d security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x910a11cf sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x910a4521 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x911d9e8b genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x9120f995 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x91214a5b mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x91253f37 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9130e841 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x91319cb9 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91480067 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x914f1f17 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x91532006 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x9168e3cd mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x91856d8f mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x9188fe12 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x9189afdb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919a6abb synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x919b5a10 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x91a2c587 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x91a68234 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x91a70dc2 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x91ac53f8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x91b1f49a pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x91b4d451 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b7f287 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x91c3396a __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d41419 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x91d817ee rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x91d81d1a devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fd9c4d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9201ad14 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9201ffa0 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9233a801 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9237a431 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x9238e8f7 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x9239a112 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92421a61 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9244fe2a edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925b8428 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x925d2469 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x926bd1ca xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x927b5b34 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x927d862e rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x927ec026 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x929a3d16 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x92aada08 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x92b08ef4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x92b39242 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92b8ed48 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x92cc378d crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d8e1e9 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f52be5 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x92feb04c powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x930a7af0 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x930c7e4e blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x930d25f1 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x93102937 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x931dfce7 blk_mq_sched_mark_restart_hctx +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 0x9361d760 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9369e540 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x9388dad4 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x93a0c4b0 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x93c46143 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d5191c xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x93e77fbf dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x93e923fa inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f3bcba inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x93f4e907 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942c04e9 ip6_dst_lookup +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 0x9452b867 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x94546dec param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x9457f9f1 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x945b4e88 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x945e5f21 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x94644a1f mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0x9467bdaf dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946fa2b6 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x94830cf2 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x948f7dff usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x9493eb26 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x9495365e serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x9497d10c of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a2c386 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x94b2ee1f amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x94cb7b66 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x94df7972 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94e818c4 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0136c irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9508297d skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x95102876 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9522086e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x952b7b91 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x95322a37 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954693b4 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95746052 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958d8567 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9590efd0 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95aaddc2 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c7e9f7 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x95d877f0 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x95d9a6e7 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x95db02ac __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95ef9b15 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x96061cdf rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9627f4f7 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9630f120 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x9633021c perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x963ea2b9 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x964e3e63 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965de721 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x96694f74 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x96814066 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x9690dbee device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9697de40 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x969ac607 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96a9ada3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x96d1a60a clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x96d6ec6e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x96e5d6c8 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x96e8808b stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971dd9c8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x972623ab __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x97262814 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x972930a1 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x972aae12 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x97334a98 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x97363214 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x97367f2b phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x97434c07 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x9746d901 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x9747065f fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x9754a91d dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977b07f8 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9797927e gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x979841ad pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x97a7770b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x97b1c040 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x97b4167e of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x97bcf9b1 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x97cdf88a iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x97cfd273 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x97d24d18 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e3c061 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x97eea268 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x98072dbb regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x980a9896 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x9813ef4c irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x98210ae4 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x9829b051 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x982ecb09 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98450a29 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9848488c __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x984c5864 acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x984d7b1e meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98554d90 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98918a2a ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9899d1bd tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x98ad2e43 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98bb6fe4 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98ee0687 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98eecda5 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x98f1fead pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fc9b20 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x98feef28 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x99077650 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x9907d997 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x990ab66c tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x990b151b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x991f9cec vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x992b14e3 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x99302a86 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x9935404d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x99382cf4 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x9940f471 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9979acfe ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9982de4e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x99842f68 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998edba3 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x999ad8ac tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x999be57c dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x99a6fba7 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x99b9bddf pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x99c69300 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f0f994 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f352fe dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x99f99618 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x99ff0607 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9a077130 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a217cf8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2473a5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9a3922b4 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a3abe29 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a61b16c genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x9a6518be of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a6bf241 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x9a7e724e of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x9a839732 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x9a85888b fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9a8736c6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9a9ff329 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x9aa28fc5 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9aaccab8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9abd875a fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac1ea35 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af0f419 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b0c5adb skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x9b0d1ca7 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b4d5cf0 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b60b1a0 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b7e457a receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b957fb8 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbd7db9 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x9bbfc928 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9bc01f30 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x9bc1c487 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be3bfaf sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9be3f7b1 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9beabac8 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee5e7b clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x9bf0d887 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x9c013a58 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c252ad6 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c25fd64 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x9c291fff gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x9c2ee557 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x9c2f8bd5 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c316a09 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x9c3c878a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c59a4b6 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c65e1fa tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x9c679737 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c99c342 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd6af84 clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfb33c6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d19a297 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9d278bd8 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d425657 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x9d591555 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d591d90 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9d72d0db dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x9d7629c0 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9c23d6 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x9dcf0b13 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9dd54023 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9de9157a devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x9df2c1d1 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e12d1cd tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x9e235ddc of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9e2e1bc5 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9e38edb1 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b0f64 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x9e61d348 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x9e62c2cb serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x9e9a48d5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9e9e7eec dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9ea610b2 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9ec2f6ee bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed57669 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x9edf1b2c gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x9ee1e3e4 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9efb274f sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x9f1d74ac device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9f288289 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x9f3e0657 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x9f3e9f9d blkdev_zone_mgmt +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 0x9f69453d mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x9f73fe5b dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x9f7fd7d5 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9f8e3323 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fb042a7 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x9fbc84f0 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc36899 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec2a4c scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff8d639 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa0001a15 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xa0153b77 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xa018d75c dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa02a7178 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xa02d5b95 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xa03342fa __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa049a235 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xa04d9a0d proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa058ee7b virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xa060456d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa060787a extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa0772a4c of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa0b6ad40 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xa0c7b5b8 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa0cf81cf regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d734ab spi_async +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa1036c61 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xa10e3b92 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1166e10 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xa11b897e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa12383df replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xa12a054b of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa137c02e __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xa143e5d7 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xa144af13 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xa14661f8 sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0xa146e5fb sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ef67a da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa163bd7d dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xa1656f9d devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xa1695701 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xa16e015b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa1733ab5 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa1980daf debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xa19839c6 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xa19e85b0 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xa1a00c53 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xa1a82cfd scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xa1bcda11 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1bd3bb5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1c9806c pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1cd8ff8 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xa1d00ed7 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xa1d0c50c __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1df51cf dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa1e84859 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1fc8296 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xa1fddf0f extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xa202ec96 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa20966b3 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20fbeb7 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xa215fb35 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xa216ff53 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa22b6a26 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa238c0ed acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xa23ffb7d l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa242a13b timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa26adc88 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26fd256 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa272de04 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa2771c1d da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa281a244 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xa281dec2 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xa2857e8c xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xa28d3ee0 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xa28f40bd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa2937eb5 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xa29478dc event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xa29c2e35 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xa29cd085 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa2a4269d mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xa2a9b902 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b00f5f page_endio +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2be3482 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2c1750e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa2c8a0ff ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xa2d35b8b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa2da65b7 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xa2dbd9d7 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0xa2df7da5 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa301e33d device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa310d91e switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xa31bb35e device_add +EXPORT_SYMBOL_GPL vmlinux 0xa31e7fc4 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa31fc79b debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xa32aa7fa pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa3345683 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xa33ad7a3 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa348a5d2 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa34a76f5 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xa34b4cb0 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3536341 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xa359fd02 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa35b4aff xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa3645e0e pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xa36c5237 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa37423ef k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xa377d80a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +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 0xa3c60d46 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3def804 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f467f4 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa3fdafc4 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa403fead platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4041eaa sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xa405ac30 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xa40a2acd devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4215909 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa438abe5 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xa43c2621 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xa447b3e5 mtk_clk_unregister_plls +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 0xa4658461 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xa4665c48 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa46f40ae virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xa47894d7 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa479ef36 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4868282 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xa489b73f crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xa489eb53 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa48bf4e2 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xa4958d74 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xa49c5386 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xa4a37a98 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xa4a47678 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b0ae82 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xa4b2f0f2 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa4b54fc2 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xa4b940f5 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa4b9a441 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4e2f267 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xa4eef69f usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa4f4eafd spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4f87e73 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa523deef sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xa52ac6be blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa538cc0e extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa5415060 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa547454b user_read +EXPORT_SYMBOL_GPL vmlinux 0xa5477a29 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55eeeac sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xa56664ef poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa5747dbd pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa57e2147 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa582a615 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e3eaa9 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa5ee79f0 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fa573f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa602e15b devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa60554a7 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xa6161ea4 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xa617100c __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xa6280532 fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xa62c185e mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa6688f03 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a3fea2 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa6aa828c scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xa6ab7df7 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b0ef9a sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa6b1cc79 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6bd06d2 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xa6dc0d97 tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ec8a22 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa7064cf7 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70f0025 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xa712ea1f reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa715f26d pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa730d864 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa734639d usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xa7347bad mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa738729d fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xa73a2fb9 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xa73bcdb3 ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa73e1d65 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa74ea839 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xa7839a76 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78c7f02 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xa7a37086 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa7b0f38a mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xa7b962c8 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa7cd73d6 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xa7f61c81 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xa807ab3c pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xa80cfad1 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa811cbba xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xa82003cd acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa8249f28 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa829c805 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xa82c3578 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xa833fcb4 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa834e020 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa8459b15 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa88f7bb1 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89a5b06 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8a85683 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8b62654 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa8bd703e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa8c3a545 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xa8ddf142 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xa8dea368 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xa8e105a7 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa8e75978 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xa8ebd2d2 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xa8f1ec65 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xa8f862ae clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8fbd5ce irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0xa8feb758 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xa923ef95 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xa927d6ad mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xa9293d46 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9365431 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xa93cf6d3 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xa954e319 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97a2e3b virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa97c63c5 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa986a7aa get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a5e5c8 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa9adaa72 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa9b295a2 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xa9bc2b64 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xa9c0e1e7 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa9cd0be8 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xa9f8bd03 dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xaa292290 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaa42fea9 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xaa4907bb hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xaa56c00d rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xaa65d963 imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xaa697ffc crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa71d120 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xaa72f15c irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaa8a448b trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaa9a5d54 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xaaa1ed59 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xaaa3ab52 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xaaa5359f inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xaaa68bc0 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0xaaa69bad __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaac54928 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xaace1aea irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xaae83607 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xaae99633 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0xaaf3d97b gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xaafec446 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xab042128 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0ff255 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xab1157e6 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab33442e debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xab35159b sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xab3f5207 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xab46290d gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xab479a89 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xab572395 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xab585a9f perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xab60d297 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xab64bd0e blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xab7ad814 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xab7b9b46 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xab7df0d3 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab820149 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xab83de88 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xab9b0af1 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xabac7de6 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xabb64d78 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xabb71530 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xabba85fb amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd45848 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xabd7ea6a spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xabe8a82a show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xabf2a5e4 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xabfb1e17 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xac06b4e1 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xac0f8463 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xac21c021 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xac3154e1 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xac4621ef __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xac501599 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xac501e09 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xac542231 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xac54e627 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xac7e3426 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xac8d7e98 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xac9bcace mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc24ffe class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xacd844c6 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0xacfa6c9e usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xacfcb650 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xad1a5d6c dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad30981c perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xad32693e mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xad32ee78 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xad32ef0b edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad419399 pci_hp_deregister +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 0xad73398c md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad826771 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xad82c3d8 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad91baba key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada6b766 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xada94e8a sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xadaf841c bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xadb3c4ec fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xadbc1e43 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xadca7d46 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xadce24c1 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadebec26 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xadf9c1b3 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1389e6 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae1abb3d dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xae205b99 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xae23d532 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xae2ce186 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xae332661 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3e8aa2 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xae4400fa of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0xae4f1a65 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xae50b323 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xae51abe3 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae62fae4 badblocks_store +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 0xae7051b0 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xae761ac5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae857e3a kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xae934457 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xae98ab09 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaead8f36 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xaeb05d89 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xaed74892 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xaedb578d ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xaee6d552 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xaef7c431 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xaf033fcb __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1516aa devres_release +EXPORT_SYMBOL_GPL vmlinux 0xaf2d0daa espintcp_queue_out +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 0xaf4d952d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaf53aa21 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xaf5c42c5 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaf67a7e6 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xaf6a23a4 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf7964b9 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xaf798407 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xaf7aa7c9 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xaf7f6b8b gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xaf806e9f devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xaf8445cd vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8ee01d blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xaf9cfbee devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb19794 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xafbcac18 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xafc46c7f blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xafc4f77e devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xafc69901 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xafcecf42 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xafdbdcdd ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe4a662 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff5815f __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xb00018e0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb005284f __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xb008cf44 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xb0099f79 topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xb00a2ddd bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xb010c9c5 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb01dbcf9 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02d6660 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb032b4b2 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xb03e6a7c fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb056ec1f regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb05af26c pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb05ed490 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07d38d1 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xb082a300 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xb08a22a3 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb0978b3d icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xb0a2adc4 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xb0a94c5e fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b8d287 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0de6473 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0eaad24 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb110120f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb1269b57 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xb12f4b8b genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xb13bc0cc __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1417623 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb14bb5fa serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xb155e33b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17cf25b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1ab1f94 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xb1ad1f67 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb1af8d0c regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xb1b88dde devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c6f0c5 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb1ca52d9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb1e0ec52 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f860a3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2047908 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xb204b4d1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb20dc077 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb20eeb8a dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb230ff9d ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xb236e254 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb259fcff nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0xb25cea59 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xb25d70e3 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2713f53 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xb27b5162 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2bcbe03 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2d2c703 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xb2e0cb91 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb2e0fac3 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xb2e52138 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ee0c4d dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xb2eec9e8 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xb2f57623 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb2f5f987 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xb2fa67f5 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb315f414 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb3166640 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb31be7e3 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xb32a8a4c pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb34d0c98 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb39cc737 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xb3a0f75a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xb3bafca5 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3d6b4d1 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xb3eb362c thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb4095cd0 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb4154a8b irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xb41b8a49 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xb43581e4 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb443cfdf proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb45ea8c6 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb4810a25 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xb48c6235 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb48fcb77 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xb4969d16 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xb496b5f7 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xb49e98f1 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb4a0dbc4 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4a63349 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb4a71286 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xb4b0ccd9 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd117b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb4e650e6 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4ee2f0c pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb4fed5d8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50da22d devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0xb511b889 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xb519ecaf sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb52c90d5 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb52e352f crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xb54804a4 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb54efe4d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb55677ca gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb55f983e led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xb56447e2 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb5699d2f kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xb5a35a2b fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xb5a6e80e bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b558d2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5c465c3 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xb5f6a447 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb60ad4f0 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xb60ba947 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb618f8a1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb631ff19 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb640fd3a sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb647aba5 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb64dc765 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6620ad0 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0xb66393d3 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6712d1a pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67ddd06 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb6902060 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6a86579 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb6b08011 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb6b7ea80 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6b878e5 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb6b8b5a5 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6dec956 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xb6e38aa0 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xb6e62f2a power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb72f11d6 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb734ff7e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb756d9b5 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0xb764e347 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xb76e3ae8 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb777d60c __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xb77eed7e usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7aaca05 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7c04a2d adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7c06197 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7cdceec tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xb7de7e10 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xb7f75de3 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb809f8ef invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xb80e9b34 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xb81186aa da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb8162e08 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb81f6724 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb83ea393 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb868474a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb869dd6a nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb86f14a8 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0xb87857fe irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8886423 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8941a25 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb89f8c2f inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xb8a22c19 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xb8b23a9a sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8be9e2d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8c7f4db ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xb8c89722 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9124914 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb913aa35 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xb9141472 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb9186c68 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xb92274ae sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb922bf61 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb946e37b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb983c866 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb990bb0c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb9940645 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xb9947b31 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb9b43f9f skb_clone_tx_timestamp +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 0xb9c93458 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d64d90 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xb9e018d0 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0xb9e3cdca serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xb9ee96c1 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb9f49f43 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xb9f72525 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba110a64 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba29782d device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba33140c pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0xba33268e dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xba5342a0 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xba596236 bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0xba6775fc gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xba69aaec devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xba6ea771 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xba76aff0 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xba76b446 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xba85a7f0 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xba9ac80e kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xba9ac952 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xbaa9baa3 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xbab7c1de i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabbcd49 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xbac822da tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xbacae8d7 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbade0b67 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xbae67798 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xbae7ae86 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xbaedc13c vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafdf24e mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb3e0e18 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0xbb4fbd84 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xbb543c60 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xbb548e72 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xbb60d4c6 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6d8b32 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb829109 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xbb9222b5 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9ac305 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb4caee pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xbbc619ad ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xbbdde25f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xbbe0b8b1 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe963ef usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xbc0e03e7 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc0fff1e lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xbc18e057 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc190a8e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xbc29c143 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xbc307fc8 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbc32aed6 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0xbc38e518 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc62c1a6 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6c1ee1 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xbc819373 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbca5592d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xbcaabb27 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xbcaec772 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xbcafa3eb tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbcb42c9c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc90552 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xbcd1bf97 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf38a0c virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xbcf40d3c ping_err +EXPORT_SYMBOL_GPL vmlinux 0xbcf49719 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1d5b28 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xbd1ef62f switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xbd2819a5 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd6a9f35 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd7ee5d3 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xbd8cd95c pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xbd8f73a3 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xbd92ed58 file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0xbd953bdf irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xbda74433 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2aa87 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdcd6fa3 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xbdd786fe extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde94ab7 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbe06e5ab fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xbe087da8 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe17d975 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xbe2ab69b gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xbe3a357b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe41249f extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe491891 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xbe598bad dev_pm_opp_set_rate +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 0xbe742c90 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xbe78b17a ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xbe7e203c sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe98ad39 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xbe9a6384 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea7b67b rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbece618f mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0xbed6a8b3 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xbeefdb64 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xbf0287a6 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0fef78 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xbf13c01d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf4279ba pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xbf448079 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf468dc0 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xbf55774b devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf671315 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xbf7803b5 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xbf879f95 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf98f0c9 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf9ed548 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xbfa59d1e kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xbfa7fede __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbfb4ce72 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xbfb8fad1 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xbfba2be8 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc8c560 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xbfd30769 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbfd630f2 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbff42388 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc004ca35 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xc0161307 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xc02232fd xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xc0268cbe switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc038f939 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xc03a3db6 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc03dc5f8 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xc0472abf ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc04a0525 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0525bf5 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc05ee003 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem +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 0xc0ad3670 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0b1279e da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0beea76 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc0c47b7f blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0e3f590 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xc0e950dd wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0fec302 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10ac3df __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc113e89c l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0xc1349d21 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xc1359591 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc14ea65d em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xc173ae25 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17654c5 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xc179fa1d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc17e9946 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xc1923bc2 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xc1957bbf ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xc19ca55f of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xc19d44d6 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc1c41550 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xc1c824ac __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc1d0fdec mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xc1d29901 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc20fb4b0 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc21bec77 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xc2281430 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc24a9d92 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27638ad efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xc2789d63 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc27ac34a debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc285faa8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28d0e13 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc28ebc37 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc2918f4c uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xc29f693b regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a7805a max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2a9d4a2 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xc2aaa701 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xc2aad8d8 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xc2b5d78f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc2b6f35f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2bea014 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2d310be devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xc2d674db cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xc2d7aa8c ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc300bb4a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xc3286ba2 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc352b414 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xc35ffa91 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc36f676d devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xc37048e0 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37db939 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3869278 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc397584c bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0xc3acf217 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cd7a22 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f12114 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xc427f54e pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc431a6a9 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xc43b1139 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0xc43ea60a pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc4411665 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xc446e16a tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4551901 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xc45767bc securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc458a06a pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4794db3 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a271b8 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4af0b7e of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0xc4ba941e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc4bb2825 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xc4c512c8 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc4cbbde2 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc4e6819c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc4ed6a66 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4fa83a5 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc509fd74 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc51653bd tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc51f3e05 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc5254903 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc5342b37 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc54959c4 cpufreq_generic_init +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 0xc577fbcf pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc581429c fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58d898f rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xc5917600 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xc5a3e31e devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5a91c27 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xc5a92865 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc5a9a089 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc5b80de4 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xc5c4e54f crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0xc5c71e57 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xc5da8966 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xc5efd917 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xc5ff7ffe gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc6012cdd dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc60aae02 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6268b36 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0xc62ef0e8 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xc63d8f9e icc_set_tag +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 0xc66fe375 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc670379c register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xc671e718 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xc6736f25 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc680687f shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc698662a __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c075a usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b76038 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc6bb422c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xc6bf6c30 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc6c8cc70 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xc6cb927c tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6fda621 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70d101f rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc70fd288 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xc74aa04b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc74ae1ae platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc74fa527 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc76142ab fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xc77b9231 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xc77e987e ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xc78193b6 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc785e3b1 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc7916c69 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xc7947028 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7d8fe8c usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc809c6e5 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc809fc54 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc81b95ee pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xc81d18c4 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xc81d8f74 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8239c50 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xc82a717f modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8340e4a wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xc83c9263 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8493167 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86622f2 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc867cc7d xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xc86e1100 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc86e829a pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc8892339 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xc8984ea3 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc89da8d8 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xc8bfd99b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xc8c03e2e ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xc8dc26db nf_route +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e28bd2 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xc8e92bbd xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc8ed2c97 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xc8ef6603 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xc8fa9339 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xc8fea129 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc90565cc crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc9125309 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc9188c1c ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9273f7c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9377098 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc955a633 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95e9094 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc98847d2 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xc98b826b pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xc9946407 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xc9950bd2 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc9a4ee25 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0xc9b533fd handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9c7a196 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xc9d22039 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc9d9df4c irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xc9de7f00 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xc9ea058f ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca1331e9 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xca2b6ab0 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xca36ad9b blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xca413c83 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xca44cd3a udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4ea9e2 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xca5cc1c0 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xca6476fb usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca824d52 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa2d6e4 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb28a846 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb6554ac tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xcb7c63f5 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xcb8e1b91 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xcb936db4 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xcb949e67 fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xcb9ef411 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0xcba4debb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xcbb4e76a firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xcbb7e237 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcbb8d9ec __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xcbb92114 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf2b88e switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc1f3362 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xcc212f48 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3e601b pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xcc54c12a mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xcc6f337f rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0xcc790c91 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc81e953 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9ddbec register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccb2dc62 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xccc1720a ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xccc92d4c extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce36c81 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf6c3f9 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xcd0be2b2 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xcd0d1f52 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xcd145173 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xcd193078 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2531b5 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xcd341dba register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcd3a349a rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xcd4e9aee fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xcd51a7a2 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0xcd5b3aa5 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd5c6853 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xcd671ebd syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd76ba9b strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xcd855261 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcd8d1098 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xcd8d3351 wwan_create_port +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 0xcda3caa6 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb79c07 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcdbf4e45 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde476e3 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xcdf3efef pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xcdfee8b5 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xce02e0ca devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xce054ac9 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0c6ad0 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0xce15e4d2 meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xce2ae96c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xce30e015 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce342b6c tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xce58f461 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce5f7861 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xce643389 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xce65f9b0 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce76a951 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xce798b93 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xce79bfe7 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xce7baedf wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb3e7db fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xcec8a5bc nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xcec93589 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xced63871 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xcedd363d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xcedd58a6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcee9fc52 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcef1c9d1 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xcef3e475 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xcefb5083 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xcf0dfbdc gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xcf0e0e38 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xcf1d1a72 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xcf412993 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0xcf458ef3 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xcf4d711c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf5ae1c4 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xcf5db1c0 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xcf662475 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf6d4546 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xcf729c3e kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xcf72be15 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf943399 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xcf9ae0fe ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xcfbc13b1 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xcfc44420 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc5ef94 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfc82630 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xcfcb193d sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xcfd1c85c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xcfd2bef2 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfea6fa6 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcfef0afe fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd01dcbb0 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xd020eda0 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd0328490 rio_release_inb_dbell +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 0xd0509f4e genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd077b3ed phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd07aa927 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd080d622 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0xd0867a9f power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd091b417 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd098df0c pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a083fc scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xd0b1b635 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd0b34f38 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd0bfde30 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c46f33 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0c8044a srcutorture_get_gp_data +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 0xd0ddfcc8 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd0e470e9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd0e86e6e of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xd0fd5f55 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0fd8988 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13c96b1 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xd13d2185 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1544387 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd15788ba pm_generic_restore +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 0xd183d9c6 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd186893d dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xd190242f pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xd196b0bc usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd197cd07 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1aeca5f __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d61896 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd1d98d1d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd1e1c97b k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f9f50c perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xd2020be8 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd209ef76 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xd20cea6b mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xd20ed35a phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0xd21477e9 sch_frag_xmit_hook +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 0xd222f3d5 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd225d333 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xd22a96db skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xd2327ca6 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xd23bbf50 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25718c9 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2598f8f component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2664f5a serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xd26a6015 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xd27206a8 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd274fa92 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd281b82b devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xd28b066c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xd29257b8 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd2995027 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b7651c serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xd2b9cdf8 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0xd2cedfe7 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +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 0xd328bbf6 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd32e5204 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xd3369242 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd34792df crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xd34d157f xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd3534ac0 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xd3535a9d l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3598343 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd384d65f vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd3917f67 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a06d68 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd3a2a7c9 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd3a8842d iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xd3b76b0d serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xd3ba2e32 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40a6933 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xd411390c md_start +EXPORT_SYMBOL_GPL vmlinux 0xd418cc14 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xd41a7ab2 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd41ae13c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xd41dd165 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd4276142 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xd4288e7d fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd42ebea4 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd42f8cc8 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xd443040f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd4489ad3 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44ee1e7 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xd4593a0a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4875922 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd493605d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xd495a063 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xd4aac6be iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd4ad234c crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd4b402c5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b786ec imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4bd86f1 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c36769 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4e164ea usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f4ec87 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd50140da xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xd5038dfc device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd5063326 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd509f929 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd50cb949 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd5192ee7 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xd52aa5ef platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5361d2c devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd543d436 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd562a434 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd584aa7d kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xd596d020 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd597f4a5 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a0905f __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd5b5312a wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd5c58d87 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xd5ca683f l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xd5d32969 imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xd5f06f8c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xd60cf46a is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xd611fe05 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xd61fcea4 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xd623067f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xd6232055 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xd62f66ce device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd6319a3a of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd6322ff1 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd64ff757 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd6529a21 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd664beff hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xd667fd14 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd681bb12 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd6879909 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd68c1125 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd68d6723 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd697aabc ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6af736f edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6c6f41b mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xd6cd1e8a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xd6d6515d gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xd6d8f6b3 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0xd6de174e extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xd6e615aa imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xd706319f sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xd709c1df rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xd7186241 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd71e88df validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xd7264bb5 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73d8000 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xd73d83a6 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd74d536e crypto_register_aead +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 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd775973d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd7ba159d iommu_report_device_fault +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 0xd7db0fdd __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7e357b4 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xd7e60c51 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd7efafbd ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd823a4ff pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xd8248b06 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd8263ab1 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xd83d2630 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8596960 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd86b699c iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd889b112 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xd8943fb7 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd8a10107 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xd8a3de4c blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd8a5ceea sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xd8ad86a6 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd8cab040 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xd8d2f91e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd901ab75 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xd9027930 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd918a25f fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd9297576 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd931802a init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xd933bdfb xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd943afdd devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd95c16b9 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9703704 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd97c4526 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d98538 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd9db292a phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ec45f5 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda091547 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0e6138 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xda10bb5c shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xda1227af transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xda1b6b2b devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0xda1dc482 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xda23fc2c of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xda27195b devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xda2fedf1 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xda31aa23 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda32cca4 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xda34e98a of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xda4a670b icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xda4f8411 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7aaa44 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xda82fca3 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0xda833299 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xda853f81 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xda876db2 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xda87720d udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8e318d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xda902a77 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xda9fe029 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa957a0 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab94104 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xdabc5cf2 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xdac9a048 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xdae884a6 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xdaf17ec0 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf79fc1 dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xdb20abb9 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xdb355919 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xdb474275 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6bb499 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9d856c bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xdb9e07c7 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdbbc5ac3 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xdbc6480c __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xdbd727df pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf23441 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf9420b gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc139c13 k3_udma_glue_tx_get_hdesc_size +EXPORT_SYMBOL_GPL vmlinux 0xdc143f94 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc153ed3 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xdc202e29 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xdc3f5610 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc675189 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xdc75bc99 ahci_kick_engine +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 0xdc9840b9 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca5c600 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xdcc40197 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xdcc69e91 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xdccfab24 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xdcdc4431 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xdcefa8bb wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdcf1666b divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd00b408 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xdd019113 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xdd02720e clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd08dd8f genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xdd094597 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xdd1b21fb to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xdd31fcd2 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd5b87d2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd65abc9 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd77b2d1 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xdd8197d2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd822da4 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xdd851823 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xdd938740 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc5c3d1 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xddd3e51a dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xdde25db7 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde058c0e tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xde0cf23a sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xde10976a scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xde2e1482 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde45fa86 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xde4d9f14 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xde52c1f9 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xde5b2f4d fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0xde5d305b ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xde6e790a regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde74dc19 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xde81d6ef fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9f6661 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdebf4936 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xdec2b4b7 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xdedc6904 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xdee8d520 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeec7d02 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdef1cbb5 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdef2f553 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xdef4b8aa genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xdefbd7d9 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf00bd47 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xdf06e909 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xdf075d32 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xdf09362d pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0xdf097f0f exportfs_decode_fh +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 0xdf196ce5 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf2013be pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xdf24e54d dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2c5adf pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf2fb3ef irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf7a1199 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0xdf7f5cfe amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa51d31 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xdfa912d0 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdfc05091 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe254f2 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xdfe3d67d stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdfe55a09 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xdfed8f68 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xdffcc8cc edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xdfff7127 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xe01804c5 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xe01f4cb0 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe04d80f0 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xe056b724 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe0599347 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe05a3c6c hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe05d0fa0 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0603df1 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xe06c8277 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe06e6344 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xe06f98b0 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xe0732b26 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xe074258c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe0858b0a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe0a2fd35 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c47442 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c7c8b9 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0ead85a rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe0f031e4 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xe0f9c17e __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xe0fe1c33 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe111c87d blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xe1129c50 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe1155b21 gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0xe11fe882 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xe122728c nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xe12d95fd gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xe137751b divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe138b5c0 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xe138c5ba blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xe13db683 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe15f5b0d phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xe16aabd4 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xe16e98f3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe178970d ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xe1800b13 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe1831809 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xe192d91c devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1cc297c thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe1cd40cf call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xe1d5872d __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe1d737dd usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe1ddb5bf xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xe1e1428c of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xe200cdcd skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xe202820c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe2031b5b get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe21ae009 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xe21d9a1b power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23901bf devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2493de8 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xe251aa10 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xe2579f8b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xe258099b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe28179fe xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xe28274f1 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe28a7bfb __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xe293d8fc perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xe2a5f625 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2c5490e debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xe2c9e78a clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2e11a5f pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xe2e99fa4 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2f328f3 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe3069293 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xe309924c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe321673a gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe326c473 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xe3440328 dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0xe34b3885 split_page +EXPORT_SYMBOL_GPL vmlinux 0xe359e5a3 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe366a157 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe378e68c regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xe37fa7f5 __inet_inherit_port +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 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b535cf extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3cabc45 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3e33df8 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3f53be3 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe3fef6ba edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0xe4043110 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4114af8 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xe415c65d tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe424931a power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xe42fe17d __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe433f22e l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe43fd9ad serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe44d22fc of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xe44d30be scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xe4528b3b bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe45eb4cb __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xe4702088 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe47e0c53 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4993262 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xe499fcdd umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xe49f641a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4bbb98d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eb5c3b nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xe50be03e pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xe50c26cd usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xe51340cf dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xe513797c i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe51977f3 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xe5312fa0 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xe5329d24 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xe5346e9b phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe548d997 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe54eb664 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe556ac40 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xe569f9b5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a07e9 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe58cd174 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5aecc9a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe5b4f242 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe5b9b79e task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe5ba08ff ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c7ba17 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5cb9109 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0164f acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xe5d540aa dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xe5e71a6c power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe5e7c42e pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe5efc470 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xe5f9f4c3 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xe6006cc7 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe617ea15 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0xe6276516 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62db95f serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe6384512 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64bd559 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe65b3578 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe660d073 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xe67de798 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe68509c3 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe6ae547a tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xe6b819a8 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6c27394 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xe6c63c69 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xe6cce6b2 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe6d2b02c wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe6da4486 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xe6e00c3b pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe71f000c fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xe72337f3 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xe725d0c7 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xe7270825 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe7284186 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xe72f3300 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xe73bd986 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe73fc831 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe74139f6 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xe74f40b2 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77d3b5f kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78582b2 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xe78dbe22 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe794e58a pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xe79d30ce hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xe7c50c10 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe7cb3dd8 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7fed8df pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8190b4f disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe819b2ec elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xe81df1a0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe81f6c2e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe820bae1 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xe8213f6a pid_vnr +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 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe88a8aeb strp_process +EXPORT_SYMBOL_GPL vmlinux 0xe88e2a29 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe89ae2b7 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xe89b2875 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xe8aff069 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xe8bb1530 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c5ce34 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xe8dc3074 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe8f1095a __pci_reset_function_locked +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 0xe935075a bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94566e7 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe948fac8 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe960ca85 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe96c14fb __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xe97b104c ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe97c6f49 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9918019 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xe993a33c nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xe995aa2c virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xe99c19fe xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0xe9a1cb9d platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe9a9453a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9e153b6 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9fd0f92 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1de25d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xea30b016 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xea36bc7c fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea417170 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xea4adb3f is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea829650 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xeab7e587 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xeabea7e0 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xeabfad0b transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xeac2adee phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead035ee __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xead31176 ohci_suspend +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 0xeadf16c3 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeb0c5861 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xeb13f565 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xeb1992f8 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb4c4c43 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xeb707e4d sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xeb70cf7d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xeb7431df fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xeb7449d6 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb8a22e8 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xebb276a3 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xebb44ae1 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xebc47979 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xebc48da3 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xebc754fd device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcec854 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd67929 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xebde12bc fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xebe0beeb ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xebe2d292 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xec094c0c ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xec0e1bfb sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xec147f3a fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xec256dfc tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0xec280a5e device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec679b38 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7f5ca0 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xec89d957 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xec8a83f0 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xeca557eb irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xeca7f2c4 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xecaaa2dd srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc480c7 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecd91079 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0xecdb9dae hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecfad3c8 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xed1f4a4b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xed284f16 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xed2b6775 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed355b68 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed456ee0 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xed6c8d9c spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xed766237 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xed7b5e2b mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xed832644 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed94785e __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xed9b1a9c acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xedb213e3 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xedb997c3 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xedc37c73 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xedc8baee ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd4ac1e kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xede10fbe acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf0d74e serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xedf14eb4 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xedf30866 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xedf8ba9f irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xee0d61f2 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xee0f8953 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xee13e3d9 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xee140021 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xee15ba9d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee50269d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee5bc3f0 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xee6064f4 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xee682a92 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xee69c18a nd_tbl +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 0xee739fc3 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xee7db2f5 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xee7f87eb alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xee952d72 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xee99bde1 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xeeaef33e edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xeeb0c8b3 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xeec66c5c vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed5855e vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef54fa9 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef01098c sysfs_create_link +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 0xef3b789c of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xef42588d regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xef43103c kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef484c54 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xef4bbdae attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xef4d902a pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef676939 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xef6877d7 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef6b9b2a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef753591 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xef797192 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xef816813 mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0xef873ef5 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef97685f xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa6f588 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xefb23abc kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xefbbcbd5 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xefbe4132 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xefd2b279 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xefd478e2 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xefd50e6e __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xefd9d764 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xefe6eae5 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee548c mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xeffb1321 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf0005467 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf003b29b xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xf0116027 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf0139a54 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xf014920c stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf01fd83f netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +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 0xf0706812 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xf0794b0b debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf0801f31 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09840dc dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xf0a18a9f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xf0a4ed4f of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xf0aa4f7d dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0b28ac3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf0bbdc1b put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0be44a2 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xf0e8a4ab sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf0fe9717 put_device +EXPORT_SYMBOL_GPL vmlinux 0xf11a368f of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf122a007 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xf1277494 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xf130efd1 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xf13e50d9 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1472808 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xf1665da8 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xf17cb1d6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf185e60e gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf18b9ee0 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf19edb72 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf1a2011b relay_open +EXPORT_SYMBOL_GPL vmlinux 0xf1a234f5 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf1b72ff3 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf1c390f4 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xf1c7e552 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xf1f857ba cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xf2095320 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xf20e604e serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xf20e9c9e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf2116b07 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf2179972 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0xf21906ac bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xf21b93c6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf220671c dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0xf23e3c73 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf24a941d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf255e050 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2792c1a pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2938500 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xf29658b3 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2af3651 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2bbddcf usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xf2bf6cf8 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf2c4c6d2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf2c4e885 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf2c65c04 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0xf2c94ad6 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2d6ce27 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf2db8054 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xf2eddd76 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2f7dccc xdp_return_buff +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 0xf321cfd4 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf331b79b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf3429f02 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf35e0d66 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xf35ed899 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf367f99f of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xf36dc269 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37f3e1a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3862e1f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf3889207 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xf38b1a2c pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0xf3964440 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf39db9a6 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xf3a0f50d usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xf3a188e2 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xf3a77b5d crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6ad92 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bea7cc pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xf3d2c8e8 meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xf3eba647 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xf3f0b157 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xf40378f9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xf40fa8c9 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xf414bce4 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf41ebf65 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4692302 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf49f136c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a8cf9b perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bd8a88 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xf4bf1ae2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4c601a3 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4c6da98 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4e51651 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xf4f54ea8 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xf4f7ad74 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf4f8c80e udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf528e834 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5537dcd sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5585b0b trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xf56a5025 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf5721bd7 devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xf575e12f blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf58ef656 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xf598f59f acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf59a84c5 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf59f4f20 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xf59fac21 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b30f1a badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0xf5cf5a21 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xf5d83aa0 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5dcd4e7 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xf5eae03d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xf5f2e018 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fa658f of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xf601bf4a mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6099786 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xf609fbc0 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf643f1fc usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6457676 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xf649f966 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf65053f4 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xf650cd82 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xf654f618 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xf6561c49 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xf65a6d72 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6865a32 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0xf68a4277 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xf68ed0d2 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf697249a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xf69d6653 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf69e76fd i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a38152 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xf6bc1379 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xf6be80b0 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c7eea3 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d020ac phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xf6ddcc8a fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ea08f4 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f9f5a5 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fe11fc tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0xf701087f mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf7106abe pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf727e662 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xf729c680 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7367f94 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf73a3910 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xf73fee22 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf74172e8 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf7479d26 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf747e6a1 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e4251 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf765d2c4 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf7810e44 fat_update_time +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 0xf7931fe3 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf7a04e17 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7a7299d ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf7a82c35 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf7adaf6d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7b19b1c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf7b8899b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7cb1073 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0xf7e51b1d udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xf7ed2ba0 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xf7f07e72 irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81ad348 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82bea70 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf842036d __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0xf84332d9 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf8494b5f k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8597dbe ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xf85c73a1 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf877d732 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf897862d device_create +EXPORT_SYMBOL_GPL vmlinux 0xf8a154a8 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xf8a62afd usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xf8ac69ea mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8ae25ce blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf8aea52f trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xf8b94e54 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf8c0a909 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xf8c8f131 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf8cac297 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xf8dda3ab device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf8e1b4c5 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xf8e49e44 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xf8e582f1 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fa1540 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf9275bcd iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf953e654 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf956674d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xf95a7c24 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf97fe619 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf98ac50c kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9a806c8 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9ac31fb __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9bebaad dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf9bf9a5f da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf9dec989 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xf9e7f48b of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xf9eca76e iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xf9edab78 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xf9f1247e dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xfa16c35b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2cb148 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa38b5bf vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7733f2 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xfa78e2c8 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7aabc6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xfa8a885b vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xfaab8327 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab6ab66 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xfabbe518 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xfac02f2e pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae50c99 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xfaf781ac blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xfb08ef74 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfb16ec86 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xfb1b59e7 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xfb1d8180 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3e779d vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfb439d9b dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xfb569ea1 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb61e0dd umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb725f31 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xfb763ff6 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xfb77988f kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfb7dcb7d usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb930636 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xfba0faba usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xfbb62287 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbedb80 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfbcf0caa vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xfbcfe1e1 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xfbd52f54 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xfbd86de6 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xfbec74fe kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc02a4cd cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc17f2ac kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc32db31 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfc33902a watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xfc3a2259 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc48234f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xfc5e06e0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xfc61ccd0 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xfc63d2ec xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xfc64905c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfc95fc17 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xfc972aaf mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xfc9da1d7 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xfc9ee3f0 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcb6a209 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xfcb78d0f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcd37ae9 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xfcda3089 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xfce23eec pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd017f53 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd10fd09 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd15c147 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xfd1851bd gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd32adc6 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0xfd3f4d35 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfd4d7800 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd5f02cc of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd685b68 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd80fd2e pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd8115db raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xfd922203 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd9331a7 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc8a27c hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xfdcb7c0b virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xfddd57a8 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdf60a02 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1d402b __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfe215b6b fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xfe290ee7 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfe36295c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe46d45a vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe477ab0 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xfe708c6a pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfeb82845 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xfebe2fbb platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfecc3cbc acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfece930b nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee26fc9 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xfee320e6 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfeee7007 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0b751c iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xff12f4ef __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1e3ad6 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2b2c64 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xff398724 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xff3f716d regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff43de52 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xff45115a usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xff611ad3 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xff6398aa tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xff78225d pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa58e3f efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb7de63 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xfff04340 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xfff7f18b dev_pm_opp_put_prop_name +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xfda14241 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x3e5c695f ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x47b361f7 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0xc6aff419 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xd9ce3df1 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x9703844e ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xfe150d00 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x1fdaa71a ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x455ee13d ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x913d5871 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xd6e959ac __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x147cad04 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1e617d60 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x288ce46f devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x29624982 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5f1ff8b2 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7457029d __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9e926c93 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa0d42921 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc6914210 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd43f7ad4 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x52416e11 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x71506b3d adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x252f27fa adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x1f910ae9 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x1961e620 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xffa170c4 adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x072e94d8 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1bad0634 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x46175de3 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6fc7199f ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x874af1ca ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8e6ec15b ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa2880ea0 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xae057bb4 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbcf238d3 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xfb404503 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x6b205865 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x8fa3932d bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x60039c4b bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x99c32c4f bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xbbc2f3ba bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd123c81a bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x42c07835 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x47d7a784 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x714428c0 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7bcfe7cb bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xedb36aa8 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x930ea3e2 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x411913e2 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xa1191f0e bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xb6264b0d bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xf27d5958 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x26eaa432 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x411cec28 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xace884ba fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xe3c278ed fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x222a11db hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x54a8364d hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7165f856 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 0x8a0e4ca9 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x904b75dc hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xa4b118fa hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xc1afadae hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd68eaf83 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xd9f025f9 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe123f795 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe3f0c99b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe6b45fbf hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x12686d35 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x216e1a4f hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x88c6d040 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xeaa3722b hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x131ebad5 hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x50008f63 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x89997606 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x8f91c382 hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x6491293d kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x851daa35 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xb9ad2163 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x12864b37 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2a58116e ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4700bc4a ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x54ed1266 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x61a99805 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x73331867 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb370ef95 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xca1da569 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdca2c54d ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x06028310 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x674e7d2d mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xd46a6882 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x14685dfb mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x18bda1ab mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2e262120 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x45469c3c mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x55e12d1a mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x564ceb81 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x599a97f4 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5da003d1 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5e74773f mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x75c096c0 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x76838b04 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x89569276 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbd93aab8 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd207c7b1 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd922b4d1 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xde4161c2 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x151a4631 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x2b46228b ms5611_probe drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x6ed1bd3d ms5611_remove drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x21b07d62 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x661439ff scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x8587f573 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x169791bb ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x22a0f661 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x287cff79 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7c27957e ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xb09d5491 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbd6b5159 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xccea1355 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe837eefe ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0aa3324e st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0ad2e612 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x1db60304 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x20e092b8 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2c8b9e30 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x48c8a92e st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x51ae24b7 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7ad5cc97 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x81e214d7 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x89c22e2a st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x993343c5 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9a5ee0c9 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9b262db3 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x9fe0f011 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa3851bfc st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xad8d6090 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xb9ef91da st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc218f8c3 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc47cd28d st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xd501176f st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xd8492500 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xdb03c488 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xed0512a5 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xee275f8e st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf2900174 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xf2c71b3f st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x281e024d st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x51c632dd st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x620267d3 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6238107f zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9b42a370 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9f4e0d4f zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xba4fcc10 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcb0f11f7 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf4b5c617 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x01da2704 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x039e639d iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x088b659e iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0c4e54d4 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x10273c10 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x120b291a __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16bba79a iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1a52b5fe iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1bf7b719 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1f19b6f8 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x20f56633 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a0a844b iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34e2648c iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3677f497 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x388135bd iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x39ae3fca iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ab9d8a3 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x48f7831a iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4945e86d _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a0ee604 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4be0d0a6 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4c872a36 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4e67463f iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x52d74370 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x532cfe6f iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5979b653 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5beea855 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5cb2d10c iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5eaaad17 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5f9b1420 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6737b8a2 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x68d8264c __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c618376 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6f1fc136 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7283eca2 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x74cf5620 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x76584826 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x77a3d0be iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7aa99fe8 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7d3d1ae9 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ef68cd2 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x853742a2 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86c7baa0 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8d1ed25f iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8eb655ab iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f8e41ab iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94540d96 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x96e45cac iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e9e62a9 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad783632 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xae2db488 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb6822071 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbe53dcb4 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2215b51 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc22b2c64 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2471687 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcbe06e05 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd3a61be iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd65530a iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcf83e3ba iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd058f91e iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd1c55bcf iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb0b7f52 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc3b2e57 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdc7634cd iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xddd1b9ce iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdf4b2cbb iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0ccf694 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe348fa61 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xed66166f iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf09aace4 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf3476279 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf4c8b6db __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf6d841ed iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfd69e3c0 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0xc11ca5a3 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xc5788e18 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0c73d8ff mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3f046f2c mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3f7a9cd5 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x43dab19b chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x44a03404 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x46319188 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6aa9e685 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8e57fbfa mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x92ee7412 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xaca14224 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbf011bc7 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc0be45e7 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd9523cb1 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe90690a0 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b7d8ac7 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4279f419 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x96f3aef3 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa8b89a61 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xe3542d4e nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xfc1f4c44 nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x09803a2d devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0fa7b790 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x10f73ee4 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1b79af28 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1d49fd52 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x25cd271e peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x29a87a9a peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2cb6f6b5 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x30b1cc46 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4c6f2648 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5ef3735e peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5fcc3778 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x64fa72de peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6aa939c7 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6cc850d5 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x737dcd20 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x752b45d1 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8b273e2a peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8bebc62f peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8dff21c7 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x963b52a8 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x975a9d2a __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9858bd22 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb24c3ac5 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdc42b888 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf14d7998 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf72c108a peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf7baf61d peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfb6f9a0b peci_request_alloc drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x086966cd peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x84b317e2 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8e8dfb8c peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x9cb942bb peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xce14c1cf peci_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0ded6d31 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0f3c5db6 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0f62e337 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x19a59361 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x37125b37 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4373ba57 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x47e49150 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4d4b0ef0 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5392b776 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x76b4ac41 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8111bc8c pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x823d54d1 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa2bfbed9 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb6e4fa0e pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc22e60d9 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xca06819b pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcdb8bd8d pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdd9ef2c2 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdf69508e pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6de25e74 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7d1f8de7 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9deaddbf sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xf719d6c7 sx_common_probe drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x1f5e40b9 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x3db6f0e3 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x65882b48 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x9fb18890 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x07c2d4f4 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x32d4bf63 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xb5991414 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x53bc4561 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd5e0a967 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf79b4eef cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x49e780e4 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x81d0dfa8 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xc2e81ee4 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0xfb5aa162 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x4b3e96e6 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 0x80f9e68d sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x8d646064 sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdcf72ff9 sdw_intel_exit drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x01989688 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0bee7b4c dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x480f1c37 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x54c52e3b dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x76ee50dd dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x80e06a5d dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa21218b9 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xcd8f4262 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf5207a34 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x19212eb4 ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x215acb3b ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x33527173 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x34a796c2 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x376eebe1 ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3cca3c4e ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5087807a ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x553cf6ba ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x60e84cc1 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x66ae640a ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x67b4f375 ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x74a9948b ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x83c753fd ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x87fcecc6 ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8c5bf0d8 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8cdb1752 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8d7438cc ccu_gate_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x950a096e ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x9a7239d2 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xa0f4dce8 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba079d1a ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbb6e851f ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbedab8d5 ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc2378215 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xcdae8a96 ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd35244af ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd7ee688c ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdc3ef86e ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xde8a0571 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdee13cf4 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe2fe75df ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe395e8eb ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeca4e8ed ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf1d63af5 ccu_sdm_helper_get_factors vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x15548747 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x187c47c0 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 0x47e99d92 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4d9b46ef usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4e2fe210 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x520b0f95 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x575150fd usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5ae9bfc8 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5e440b5a usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x79f42104 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7bac59f6 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7d878207 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x81e1a5b0 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x94d6dc66 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x99e9835b usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9d1e2390 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9ea9c0d3 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa0cf268e usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa27a49b5 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa45d01f7 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xafb82d6f usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc542e6bf usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc9fa61d usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd18d7c89 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/arm64/generic-64k.compiler b/debian.hwe-5.19/abi/arm64/generic-64k.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic-64k.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/arm64/generic-64k.modules b/debian.hwe-5.19/abi/arm64/generic-64k.modules new file mode 100644 index 000000000000..064c6a96cafd --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic-64k.modules @@ -0,0 +1,7181 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +amphion-vpu +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 +amt +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-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple_wdt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +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-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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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_acpi +chromeos_privacy_screen +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-apple-nco +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-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-renesas-pcie +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_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cn10k-rng +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 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +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_user +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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-am62 +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 +ecc-mtk +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 +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 +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 +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 +fit2 +fit3 +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 +friq +frpw +fsa4480 +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-ldb +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 +funcore +funeth +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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-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-sim +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-zynqmp-modepin +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-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-acc-vfio-pci +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_pcie_pmu +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_cpa_pmu +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-v2 +hns3 +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 +hte-tegra194 +hte-tegra194-test +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-apple +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-ccgx-ucsi +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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-bcm7120-l2 +irq-madera +irq-pruss-intc +irq-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it6505 +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 +k3_j72xx_bandgap +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-ecc +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 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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_cn10k_ddr_pmu +marvell_cn10k_tad_pmu +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_ep +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-vfio-pci +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 +mlxreg-lc +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 +mp5023 +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 +mse102x +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-common +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +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 +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-apple +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-layerscape-sfp +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 +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeon_ep +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +og01a1b +ohci-platform +omap-mailbox +omap-rng +omap2_nand +omap4-keypad +omap_elm +omap_hwspinlock +omfs +omninet +on20 +on26 +onenand +open-dice +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +otx2_ptp +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +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 +pcd +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 +pcie-apple +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-qcom-ep +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfr_telemetry +pfr_update +pfuze100-regulator +pg +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-imx8m-pcie +phy-fsl-imx8mq-usb +phy-fsl-lynx-28g +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-pcie +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-edp +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-naneng-combphy +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-apple-gpio +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-bcm4908 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-meson-s4 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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 +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_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-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-optee +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +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 +scd4x +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 +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +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 +sm3-ce +sm3_generic +sm4 +sm4-ce +sm4-ce-cipher +sm4-neon +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-acp-config +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-cs-dsp-ctls +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-q6apm +snd-q6dsp-common +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-generic +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sc7280 +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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-mt8186 +snd-sof-mt8195 +snd-sof-of +snd-sof-utils +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 +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-cadence-xspi +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-mtk-snfi +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-mtk-pmif +spmi-pmic-arb +sprd-dma +sprd-drm +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +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 +sunrise_co2 +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tegra186-gpc-dma +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +ug3105_battery +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 +v3d +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +v4l2-vp9 +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 +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 +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 +vmgenid +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +xen-kbdfront +xen-netback +xen-pciback +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-ams +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 +zr364xx +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd diff --git a/debian.hwe-5.19/abi/arm64/generic-64k.retpoline b/debian.hwe-5.19/abi/arm64/generic-64k.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic-64k.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/arm64/generic.compiler b/debian.hwe-5.19/abi/arm64/generic.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/arm64/generic.modules b/debian.hwe-5.19/abi/arm64/generic.modules new file mode 100644 index 000000000000..275d891a2cdd --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic.modules @@ -0,0 +1,7184 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +amphion-vpu +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 +amt +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-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple_wdt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +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-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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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_acpi +chromeos_privacy_screen +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-apple-nco +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-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-renesas-pcie +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_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cn10k-rng +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 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +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_user +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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-am62 +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 +ecc-mtk +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 +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 +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 +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 +fit2 +fit3 +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 +friq +frpw +fsa4480 +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-ldb +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 +funcore +funeth +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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-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-sim +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-zynqmp-modepin +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-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-acc-vfio-pci +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_pcie_pmu +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_cpa_pmu +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-v2 +hns3 +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 +hte-tegra194 +hte-tegra194-test +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-apple +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-ccgx-ucsi +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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-bcm7120-l2 +irq-madera +irq-pruss-intc +irq-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it6505 +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 +k3_j72xx_bandgap +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-ecc +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 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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_cn10k_ddr_pmu +marvell_cn10k_tad_pmu +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_ep +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-vfio-pci +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 +mlxreg-lc +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 +mp5023 +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 +mse102x +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-common +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +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 +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-apple +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-layerscape-sfp +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 +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeon_ep +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +og01a1b +ohci-platform +omap-mailbox +omap-rng +omap2_nand +omap4-keypad +omap_elm +omap_hwspinlock +omfs +omninet +on20 +on26 +onenand +open-dice +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +otx2_ptp +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +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 +pcd +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 +pcie-apple +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-qcom-ep +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfr_telemetry +pfr_update +pfuze100-regulator +pg +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-imx8m-pcie +phy-fsl-imx8mq-usb +phy-fsl-lynx-28g +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-pcie +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-edp +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-naneng-combphy +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-apple-gpio +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-bcm4908 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-meson-s4 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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 +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_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-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-optee +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +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 +scd4x +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 +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +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 +sm3-ce +sm3_generic +sm4 +sm4-ce +sm4-ce-cipher +sm4-neon +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-acp-config +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-cs-dsp-ctls +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-q6apm +snd-q6dsp-common +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-generic +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sc7280 +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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-mt8186 +snd-sof-mt8195 +snd-sof-of +snd-sof-utils +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 +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-cadence-xspi +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-mtk-snfi +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-mtk-pmif +spmi-pmic-arb +sprd-dma +sprd-drm +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +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 +sunrise_co2 +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tegra186-gpc-dma +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +ug3105_battery +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 +v3d +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +v4l2-vp9 +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 +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 +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 +vmgenid +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +xen-kbdfront +xen-netback +xen-pciback +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-ams +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 +zr364xx +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd diff --git a/debian.hwe-5.19/abi/arm64/generic.retpoline b/debian.hwe-5.19/abi/arm64/generic.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/arm64/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/armhf/generic b/debian.hwe-5.19/abi/armhf/generic new file mode 100644 index 000000000000..057b3c33075f --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic @@ -0,0 +1,25882 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x07820a51 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x45bda278 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x7fffffff crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x0926480f is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0949948d cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0dc2cc9e __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1009277a cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10c44abe cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10f766f3 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1beb0ff4 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e0cebfb cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1e70c816 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x204bc09e cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x21f36167 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2cf23bdf devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x36e5ded9 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x389c466f is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3b87e82c cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4cb47f6e is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62e34dec cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66c48d37 is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6a166ffa to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6bf8ade9 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x77a6b88e cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x790342a8 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_port drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0ca18ad7 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x18ec53cc dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2cd742d4 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x45f58ddf dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4a210b3b dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4caa47cb dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4cd9850c dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x604f9cec dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x662826d7 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x741f2d78 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7521e8e1 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_vmap vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x7fffffff chacha_init_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x7fffffff hchacha_block_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x7fffffff 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 0x7fffffff poly1305_final_arch +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x43b7814c crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x7fffffff crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x2e9a6ad4 xor_block_neon_inner +EXPORT_SYMBOL crypto/blake2b_generic 0x7fffffff 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 0x7fffffff crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_make_pub_key +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_point_is_zero +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_cmp +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_num_bits +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_sub +EXPORT_SYMBOL crypto/nhpoly1305 0x0fe540f7 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x2843288d crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0x2867c3df crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x405a5c14 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x7f283026 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x7fffffff sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0x7fffffff crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x7fffffff suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x7fffffff bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x7fffffff 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 0x7fffffff drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0b56d305 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5616b4f2 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x57a646e6 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7280196d paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7611296f pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x7fffffff btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x146e5743 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x7b9a799f 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 0x1b97674c ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0x7fffffff ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x07a13349 kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x1fb9a6aa kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x512df4de kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x602cc7fa kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x68198488 kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x718de2ec kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x74174b32 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x43f2fc5a st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7fffffff xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7fffffff xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7fffffff xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2e5f03ae xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_init_endpoint +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x34b6bcd0 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x6c28f9b1 atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x07045c7f caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6c88bb42 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x723ee5e0 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x06717761 cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x09c41809 cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x4099709e cnstr_shdsc_aead_givencap +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 0x7fffffff cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_chachapoly +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_rfc4543_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x686d05f8 cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x7fffffff cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x623bdc55 caam_strstatus +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_little_end +EXPORT_SYMBOL drivers/firewire/firewire-core 0x041468c7 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08d16fa3 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f84e51f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x14b6affc fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36ec2d2e fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x37d0ae2f fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x476d16b6 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ed3fcea fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4fb7847c fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x51282493 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x55c6f96b fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7315bda0 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x76b2732d fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7f321c6d fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_rcode_string +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x47e06e7d imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x109d21d0 __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0x6de60e00 dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05eb3bba drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08250ad5 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b2fbd9e drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0dbeb692 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e18859c drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f898f0a drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fbb8e27 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12f4ad5b drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16a31e16 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1744745c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18d3d59c drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1cc15f4e drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2054513c drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21a8b701 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24cb11e3 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x27f71cb6 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x292e977a drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x295ace81 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2bf29523 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2eefc54b drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x31a10808 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34df7c17 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3831b5b3 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x387f6ab0 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3efd4b0a drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41b1c6b9 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x41c99020 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x461c0fc9 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c123a4f drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ce1fe41 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e7569c1 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x502e426d drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51a1db38 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x521a4bf1 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5252225c drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5312df72 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x550b6765 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5665f94d drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5afb91df drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5b62f3ae drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fcafe34 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64e69429 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68ea50f1 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4e877a drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bcfa480 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70360611 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x70ca74f6 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x792e28b4 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79393d6b drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7bea182e drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d44c92e drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7dea97d2 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7f06719b drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ee14ba drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0129e03b drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0138e4eb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03186fa6 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03681ea7 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046636d9 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c4206c drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0628e801 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b813d6 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0772f850 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb377e drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08abd46a drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08d0cc11 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0987946b drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x099a649d drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b662c0 drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ce8ca8 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a822716 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ac75d38 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c9de3c6 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cdab41e drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dec43ea drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e467486 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e6b64a3 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb6313c drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0efa44d8 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f14a1aa drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fcf7a9d drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd79c4d drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff82b4d drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ffaa7e5 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x102ee6a5 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10baa425 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10ea2ca8 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x124dde17 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e355ca drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13474b36 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a71d1d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1461baed drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15162dfe drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1532e195 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x160d0825 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1620dd3c drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x176fc989 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18966e36 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x189edb72 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8b073d drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b609d20 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be6445d drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c069668 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cc86478 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d02d9fa drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de01798 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed1d6b9 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f282eea drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f523364 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f981114 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2032730c drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21caa247 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x224e6867 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2299be94 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22f80d82 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24792cb9 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a6d251 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25122ea5 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2539ea42 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a55161 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2744096f drm_prime_sg_to_page_array +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 0x2889e201 drm_wait_one_vblank +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 0x2d62b779 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9fadc0 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e990789 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f31f2d7 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f92cf79 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3009698f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301fea61 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3282b828 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32d174c8 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x344e1bd9 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34831306 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x355ff996 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3582c345 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35a77144 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35db1d59 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3793b7a1 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x388163e5 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a7cf0c drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +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 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d01db03 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e12720d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3f8c5c drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ed47732 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f32f28f drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd2264c drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41648627 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f5d48d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x455a7e67 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b374e2 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47c29435 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48320284 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49737ef6 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4986170c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7b9fab drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa63c43 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3bb26c drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c58f69a drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cacab43 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce1fe58 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e514a83 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f233a29 drm_modeset_acquire_init +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 0x508f6138 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5144a716 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x524617c2 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x529fe733 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c5664e drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55feb618 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5684a0f6 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5724c9cb drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5737911a drm_hdmi_avi_infoframe_quant_range +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 0x59019ef4 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ae7423 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a05ac62 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a3acba2 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aa75dd5 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aaa470a drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b43f29a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b49ec1a drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b57bab4 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c504a41 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9ae404 drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d078607 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e8f662a drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa9cdac drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fc3ef32 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x609122ed drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b9e113 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6145e179 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x617fa11a drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6222a642 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x623d2f1e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a232e6 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x660d525c drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x667eab5c drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6683545a drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x679389d4 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680b3990 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6850ee5e drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6884f5e8 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68d814ce drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69124815 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x691e2197 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b5032a drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69c5ffc9 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a21f040 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a307c00 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4188bc drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a440933 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6aaac421 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac3a436 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b79d1e2 drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5fdc8d drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e396f5c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea2b98c drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2b97e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x727b44a4 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72ae63ab drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73eaaf3c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74c90979 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76954a60 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77aae160 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x780d40e2 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78425e4e drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78b06240 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d98407 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79245f97 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79b5c109 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79bd1e2c drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b45b53a drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b91e54f drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0d6962 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1ff716 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4a1aa7 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ceab8ea drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ced75ae drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edae4a8 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f71097d drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ff5582c drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x6fe769c1 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0294273b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03967858 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x066ed34c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06b25961 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07fb8871 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x086cd68e drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08cfc830 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08d685ea drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b444463 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ca12a31 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0da4c668 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe2041b __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11f742a7 drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1263da79 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12c5ab7b drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d5477c drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ea7ffcf drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22309d70 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d8a12e drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x234187b8 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2360c2b0 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x252d8bd9 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262b2703 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262c92a7 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2803f90c drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x282af770 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28fb6cbf drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x299e3e3a __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2be2a886 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c05c118 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c3cacc7 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c8e9e3e drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cd5a4df drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cfa8537 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x352e0673 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3687a90c drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e48939 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x373f4ff3 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x378aaaeb drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a9d40f5 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ab9e37c drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ac5faed drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad0d50f drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b1ff5bb drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d6b1dfc drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40093757 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e26258 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4272221c drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42bbcc25 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44095a22 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44b55a6d drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b02faf drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4986513a drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49dbacba drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b156109 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b955e5c drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c5a0b45 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50668351 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52a608b8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55776053 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55cba4b7 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5602f8ba drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59829780 drm_atomic_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 0x5a651b01 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c06ade2 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dd9e279 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e432a8f drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fea194a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60b7fbd0 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ddc869 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60ecc400 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a62323 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c923d3 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6880bfd1 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c86a9e drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68e6860c drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a1784ac drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d6d2ba3 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e9c7ebc drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e9cadca drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fdcbc2d drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71349633 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x728d3220 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x737739da devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ce9eb1 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77927df2 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e797c3 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7949d894 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a9a421e drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ae16bde drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7beb1299 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bfade76 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c05b446 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d0c50fe drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f9e7861 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0c1d3eda mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x29eaa654 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2be1bb63 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x41894dbe mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x47fd35e8 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f0af7a5 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f55309c mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x51032200 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x614743ef mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0d8d2f1f drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1b21bbc9 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1b3156e4 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x43500744 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x59cc56cf drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fe86688 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x06c17a78 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0bee1737 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x111719c9 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x334fd9ea drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3bb9aebc drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x455730e8 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4b86e2f5 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x59568f54 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x70dd2f85 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x04641cd4 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x176fb981 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x189542e9 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x239deef5 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3273e522 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x33dc24a7 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3a8a997b drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x400e17ca drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4b9a5002 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5429e353 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6d8cbbd9 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72d61517 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b284410 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00f3e73b ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09260316 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a040f5d ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x120501d6 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x138e0bfa ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17b9394f ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1fa62696 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21109b2f ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x259122c2 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x260aef40 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29551615 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c1c00a2 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x352ba0d6 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x398acb09 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b5792a4 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bfb649c ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44894c53 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x473ad4fb ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47eac59a ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bf29cbe ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d7003e2 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x597beab1 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df243fd ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x675852f7 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e383105 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa639a0 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x729db630 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78b18f2d ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78e21f43 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79696091 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d9e3d84 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_tt_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0fb9b2cd host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35169966 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x35e5d43c host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x37192592 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4447eff6 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x46fa5178 host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4cf87fde host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4e4de4dc host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x53deec85 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57a41d6c host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x59769780 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5d64120b host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6cdf6c7c host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x78538679 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7adbcb38 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7ecdf5b8 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_request +EXPORT_SYMBOL drivers/hid/hid 0x2b6aebb6 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 0x7cfe9e14 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7fffffff i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7fffffff i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7fffffff i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x53a1da50 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7462ad64 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x19bf1395 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x7fffffff qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x595d387c iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7eb9615e iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x565817de iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7fffffff iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1813e44f mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7fffffff mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7fffffff mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x7fffffff hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x7fffffff hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x195091ee bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x7fffffff bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x11acb8c9 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7fffffff st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x7fffffff st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x06dbf203 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x1389b5de iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x2192b83a __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x51058e4d iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x5143a641 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x5339607f iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x668f344f iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x794d5088 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x7c6d81cf iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7fffffff iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0492acd0 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1bd6d0c6 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x21625a10 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x5c5741a7 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x12fe52f3 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1df2c6c1 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2d2b150f iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7fffffff iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x14f49ca2 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x4aa3368c iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x09be261c bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6993c08a bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7fffffff bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7fffffff bmp280_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1a4774cc ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x285af29e ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3805060e ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a12dda3 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6d5cc125 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x706e44ac ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77761ecd ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x794f814c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a8c1ba2 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x000ca942 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00a702bb ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00aacb42 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02435176 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0255b622 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07595c07 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09545f15 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09d5db04 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a948e9b ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cc0661e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db5bd32 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0de0e489 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104a26bd ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ef90cb ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11dc44d0 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11e2a71e ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12aa01d9 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x151c24fd ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1568aa2f rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15713624 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15ac29a1 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1686c2da ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1692073b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16d952cd rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a55fe4e rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c2bacc9 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d5ed55b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fca67aa ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21d06c16 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d8fef5 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27504aa3 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27abd79d ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x282b3512 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ae79344 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b13007b rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b35eefc rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e067e04 rdma_alloc_netdev +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 0x31b1e655 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36d77562 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37a86b59 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37e879f4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3844a002 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a9bf1d6 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cd8f182 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e3fc6ce rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3eb769a2 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x402f3e15 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x405daf4f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4065ff02 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4490b1a4 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4515eef2 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x456c542e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45b717d6 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x464352c5 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46675efc ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x474c1903 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e8270b ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4820f9e0 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bac0c31 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c8ff5de rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4deea7e6 ib_cq_pool_put +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 0x504e84b7 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ad6554 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53df7f86 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57712777 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59cf998c ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c2f9d8a rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d69a559 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60fa416c rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x614a10e9 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x619292c4 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61fb5a29 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64371135 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65aa9c24 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66579717 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x669b7645 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68209419 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69befb82 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d75de20 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f68b268 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ffed77c ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x706d67f3 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71014f0c ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x722e8c62 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73166212 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73f55ca4 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x745db242 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74936179 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x757057d3 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7644fab6 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x766d11f1 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783a1cd0 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7951ca2a ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79771e53 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7995abe4 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x799affe4 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a24610a ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cf5f730 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d3d3a75 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7de2b5a2 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x04a38602 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0be21544 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0c47dc7d uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0d25ac11 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1504aef9 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1bafa9c4 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2310daf2 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x296738e2 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a727b61 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36c2c11d ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x39ba2fe2 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40b7b1c7 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x46173f22 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f5079cc ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e3036ca ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5e99c405 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ec31463 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6264f61e ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6be9c0d1 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x737c4412 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7b0e1e19 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7eebf573 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7f7698e2 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x142f9348 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e027aa3 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5e9edc31 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6f7dc720 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0324ffef rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x15f3c44d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x195ca9c1 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x196b7951 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23057144 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2902410f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c049704 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x324a31d6 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x391dae7a rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ecf0486 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4243b715 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x441bb31b rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a9f0fb7 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c0ac6b1 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ed0627f rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x61aca85c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6344c63a rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x673f5b08 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c3d2485 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x32d1f2f6 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x44096e87 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4409e6d2 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6645f474 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x0bd65da4 rtrs_ib_dev_put +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 0x6fcf8e76 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1243209a rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1cb76dc5 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2af61dfc rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7df0ca6b rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70271636 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x77566f5c gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_unregister_driver +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x23ec3bd1 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7fffffff iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7fffffff iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7fffffff matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x39171f12 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5e57e368 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x665044f4 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x4ea1f763 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0877c5b3 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4e29e0e5 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x56773a8d sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7fffffff ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7fffffff ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x13cb7410 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x229bb470 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x368f1a7a capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff 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 0x7fffffff isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x43a6306a mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4c264ac4 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7fffffff mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7fffffff mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x05942cf9 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x09445435 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2123379a 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 0x2fd0da2c mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x312bf3f8 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4456f4be mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4b01a0f8 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x508e74ab queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x653355fc get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6cb43bdf bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bc5b472 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bcb566c recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x0231600a ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x3cd72f42 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 0x7fffffff ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x7fffffff cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6d603f9c omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x756cd198 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x0c83e237 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x155cbc94 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x64a1d6ae dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x7fffffff dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3209ef9c dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x6e7ddedf raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x7fffffff r5c_journal_mode_set +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x004995cd flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x055b0818 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x336ebb5c flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1b474326 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3b558555 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3e48c7c0 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_update +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7fffffff cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x442b3758 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 0x453e39e5 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 0x459fe592 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2fc9bd23 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3d58fa9a vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x421760e4 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x7fffffff vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x7fffffff vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x00561790 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c1d02ee dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11739e26 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1617836e dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d74e824 dvb_ca_en50221_camchange_irq +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 0x229ffd2e dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2a410e1b dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f58f6a8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f4452e1 dvb_frontend_suspend +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 0x490edf88 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x557e71bb dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x7fffffff ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7fffffff atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x00ec5a43 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0259fffe au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1bc34cc2 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x20de1535 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7fffffff au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x7fffffff bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x7fffffff cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x7fffffff cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7fffffff cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0f1b7cd4 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x3f81de03 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x7fffffff cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x7fffffff cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7fffffff cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7fffffff cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1f11e327 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0506866b cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7fffffff cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x49b4ab09 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x193cf03b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2cac6c53 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3fdab3b4 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x47e1eafd dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0f99001d dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x15fa48ce dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x29e72a55 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3eb89160 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7fffffff dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x784ece1d dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7fffffff dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x18b926e7 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x296cc68a dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2b8d3564 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x374dc692 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x54c19584 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x671c2df4 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x18e8b533 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x210d01dd dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x551c577f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fffffff dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fffffff dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6de7a963 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x393fa350 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x7fffffff drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x7fffffff ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x01b3fb91 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x1757a3a7 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7fffffff dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7fffffff dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x32f782d6 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x70e74321 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7fffffff helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x05a526a7 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7014ef3f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7fffffff isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x21977788 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x44d4879b itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7fffffff ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1305dcc7 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x1580f229 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x4e2fb0a0 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x1a4328c7 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x7fffffff lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x7fffffff lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x7fffffff lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x11ded94a lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x0a1d04b3 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x59497edd lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7fffffff lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x14057478 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5408c234 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7fffffff m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7fffffff m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x05f267c4 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x03231c79 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7fffffff mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x5bf666cc mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x70b02ef1 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x487ab032 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x7fffffff or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x7fffffff or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x1e9e0a12 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x7fffffff s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7eb17736 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7fffffff s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7fffffff s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x7fffffff s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x7fffffff si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7fffffff sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7fffffff stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x7fffffff stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x3896dd25 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7fffffff stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x11ef7b00 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7fffffff stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x219c4fb8 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7fffffff stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7fffffff stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x77ad1ba5 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x603b9e3f stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x13917ade stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x7fffffff stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x7fffffff tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3282c95d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6161815f tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7fffffff tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7fffffff tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x35249f66 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x7fffffff tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x7fffffff tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7fffffff tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x7fffffff tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x4dc9e720 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x0d332534 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x404a4fb2 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x169c273e ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x25d208c9 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7fffffff zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x434d1ee2 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x3224515d zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7fffffff zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5d993471 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5f927f63 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x07b71336 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x14484240 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x50da393f bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7293c9d2 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7a976b42 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38914fd3 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3c8d5473 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x7fffffff dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1db0c0c4 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff 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 0x7fffffff altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fffffff altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fffffff altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2bd3abbd cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6dcaa61e cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5fff598a vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7fffffff vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1cea5e79 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x33234444 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x038d915e cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x069d9766 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1a15a974 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28788d5f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ba8c536 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x34410727 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3eab15ac cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5321aee4 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x541c863d cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x671a22db cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x76fa9bb6 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x7fffffff ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0bb6187e ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1523e776 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d45e769 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x551d3ad3 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x652f3675 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6726a2ec ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6b785400 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6eafb864 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71114d5b ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a14cbf5 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff 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 0x2f681c73 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40cf2921 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x479311d9 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4faeeaae saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x540f6154 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x658e4264 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x78a21f86 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa_dsp_writel +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x6671c6ea vdoa_context_configure +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x787fe8a8 vdoa_device_run +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fe3d6f9 vdoa_context_create +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fffffff vdoa_context_destroy +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fffffff vdoa_wait_for_completion +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x12d0fa91 csc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x27f7c000 csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x5faa4ebc csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x7fffffff csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x486ed65f sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x64a7d78b sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x699ca8dc sc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x142c5640 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 0x16471806 vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x16f0b6e4 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1d8a5dbd vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1e26321d vpdma_misc_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x28b17ec9 vpdma_get_list_mask +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 0x4c1acd74 vpdma_clear_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x4ccc5198 vpdma_unmap_desc_buf +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 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6456c0c6 vpdma_hwlist_release +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 0x754094d3 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/radio/tea575x 0x05ab4f9a snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0eb5b3ab snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3424a93d snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3d98bfae snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3ea56624 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2d538888 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x59fa4717 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x080d832b fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7fffffff fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0a949ebb fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x737fc072 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x7fffffff fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7fffffff max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x7fffffff mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x7fffffff mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x7fffffff mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x7fffffff mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x7fffffff mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x1f21c0a3 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x56bab5ac tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x7fffffff tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x665a4d8e xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2ff6a8ae xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7fffffff xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f19ae8b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x16207e85 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5502c6c7 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x75f6889f dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7ad3f914 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3a9012da dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3aa3a4a9 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5064e9a0 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x65d933e3 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x719fd508 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x76bc411d dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x093ed01a 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 0x7fffffff rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x0ecfa3fb dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x27e6bff2 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x33b249b1 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x467df778 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x635cfa82 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x41da185f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7fffffff dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0fac39e5 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0bdb1ba3 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0e537b01 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0fa6b649 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x19c083f0 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x35b25722 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x42ae0e7c go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5bce4b2e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6426c8bf go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x467c6e79 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x679da85b gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6dbc1d26 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_suspend +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x307d9164 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x1a80c336 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3147c2fc ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x03caf3cb v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x75926800 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1c0331d6 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x449a6597 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 0x6ac6fccb v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02a16eed v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x030d254f __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0467898e v4l2_query_ext_ctrl +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 0x0e2a1c2c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x130ee00f v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1405eca9 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18ef77da v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1cff5948 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x227ab16e v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23249deb v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2575e321 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27502491 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x297a6059 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2adf4f4c v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f4f463f v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35244c32 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3aa51586 v4l2_querymenu +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 0x4a124024 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a98b24a v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x526e942d v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5588351b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5896ddc3 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59687ba4 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59e44b31 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6217b57e v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ad705aa __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7bf5a371 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_unregister_device +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2027ae60 rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3bd5e4c1 rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x733e866f rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_manual_xfer +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ee9f046 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3978f69a memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ab058a6 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3eeea001 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x51755aff memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5493973b memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c5bf3ea memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e9a0d8c memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00b51a39 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x03fad6e5 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08dcdb0b mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e785484 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10b316ce mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x150c0579 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2340913d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28dc0daf mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d939db9 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e84e65f mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x558dceb4 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x55cfabe7 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57b931af mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a31be5e mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bcd9c41 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ddad511 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x065934d1 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06a276d8 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1805817f mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2347adb6 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x401f2db8 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4cb50950 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57f4014a mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58c43300 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x615713ab mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63d68575 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6eac3ddd mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7725be87 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f5da3de mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x58875f0f axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x697eb61d dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7fffffff dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x7fffffff dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x12103a9f pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7fffffff pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x15c5bb11 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2093ac7a mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5da2575e mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6f1191e0 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x72991cac mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x7fffffff 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 0x7fffffff tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/wm8994 0x58f9de65 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x71aeb9bf wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x51693680 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x7fffffff ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x7fffffff c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x7fffffff c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x01d243b5 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x0e56e23e tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x5127f490 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x534f64e3 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x586b05e4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c1e7dd6 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7b39e380 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7d1ae70e tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x408b3d8f dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4ecda816 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x69c2a44b dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7fffffff mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7fffffff mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x45258595 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4b7334e5 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x7fffffff mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x7fffffff lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x24351100 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6f49e815 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7eb47fa9 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x19990015 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5bd87c71 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x75128e20 denali_remove +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1c225e92 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x28e415e8 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44e6e2e7 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x450049e5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x594a6f48 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ef7ef3b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x693c69b3 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7baf71e1 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7f4719b0 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7137b141 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x787adb45 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x02431792 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x2c0da3fb ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_probe_common +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0020533a b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a93665f b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d709ea1 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23e1f13b b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x25d698bb b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x270cb547 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x292d05d7 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2a2c3ed8 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x30f69dfb b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x37cfa089 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4823b11b b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4ca381ad b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x50ec271c b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60835ec7 b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6e16ce9b b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75efd412 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7738a731 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7a912030 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7cdede59 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ef3ef94 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x16138ed4 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x16356a0f b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x23b10d45 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x6acdab6e ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x7fffffff ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x08db2fbc ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4f73d469 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x556a19a3 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x16d3104d vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6c521d02 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x092d9d22 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5b938eea xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x62411413 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x51c75f5a __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x75cda539 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x7fffffff aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0d43e102 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x53a36ba2 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0663aba5 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a1566c7 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16242be3 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x175ab398 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x194241cf cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x228ce136 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6aa4ec82 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6b47a2a3 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78831f0a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1fbe769f cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20b45531 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ae80aad cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c61a2bd cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ef272a0 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f4f5d1b cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a1d2c01 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3cf9ba82 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41fd1c05 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x454ac9bc cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47abe7ba cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cd83646 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe326dc 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 0x5181344f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x53fdee3d cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x640b981a cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x65c751eb cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x73999de5 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7517fe69 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76069829 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x768c3cf5 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x09f2acb6 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 0x40f28223 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5bd08c14 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7bdbad56 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x17c181cb vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2e0b9a81 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x371ce53c 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 0x7fffffff be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x4ab8ca00 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5a3ec6fc fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6ab30573 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x0edbf617 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5e1d6cc6 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x3ffbe8c9 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x09daef8e hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0bac19a7 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x744e63ce hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7245ab9a iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7fffffff iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x6dfaeca0 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0x7fffffff ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x71c74816 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7fffffff prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ccdeb0f mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d95113d mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1278b482 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a22bb19 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a4b4a1f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ca21bc8 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287f9eee mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ddeb019 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e1f2ae4 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d61f1f mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x442d9aba mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45f46d47 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a23c92b set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a810591 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d6907e9 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4e57c0 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c59798 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69918598 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7524484a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7beee274 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cd4b7ad mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7df29bb9 mlx4_is_slave_active +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 0x7fffffff get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x021fb5b9 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037d7f0c mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09fa3983 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b238980 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ebef3ff mlx5_core_dealloc_transport_domain +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 0x0fa1109c mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fade266 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10fcf9e9 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12d5d022 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13fa80f7 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17a2a602 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18304720 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b2017c8 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c5f34c5 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d72c0f8 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f5cfdb0 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x208d2414 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25774ecd mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25d6c2dd mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d9be3b mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x270d2e35 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x275ffcaa mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d6d4527 mlx5_query_ib_port_oper +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 0x30f8fe27 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32dd6950 mlx5_core_destroy_tir +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 0x3a9c0f50 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c37d8f0 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c680b09 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e17e399 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fc0188b mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x470a9a74 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47230fb2 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47a7abd2 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48dc8463 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4aa9b6cc mlx5_lag_get_roce_netdev +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 0x4d642513 __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e299164 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e850974 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ef8bee5 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5092bedc mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536a3b1a mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5382231e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5514f9ba mlx5_put_uars_page +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 0x57ccd519 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x587890cd mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58d5c9a9 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c7c4429 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dd41d61 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fe9e20b mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ba11dd mlx5_core_create_rq +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 0x6523ddfa mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x655d3df0 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65e6854f mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6870d926 mlx5_free_bfreg +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 0x6984f028 mlx5_eswitch_get_vport_metadata_for_set +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 0x6e2c07d6 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e46e292 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ec532b6 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x722fa91a mlx5_eswitch_get_core_dev +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 0x735f890c mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7437d61b mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x764de790 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x767508c1 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d91360f mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x7fffffff mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x123d3479 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1e091407 mlxsw_core_port_devlink_port_get +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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x33c00ec4 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x36db2152 mlxsw_afa_block_append_mirror +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 0x3a09285c mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43dc517a mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44d728a8 mlxsw_core_traps_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 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4baba7b6 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55ac2237 mlxsw_core_bus_device_register +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 0x5a939205 mlxsw_afk_values_add_u32 +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 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x64944622 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x78f27323 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x7fffffff mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_set_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x5b6b61da mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7fffffff mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x1bb730b5 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7fffffff mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0296a7b6 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04b46efa ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ade7224 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b4e90be ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1128a449 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x159fc3a2 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x175e6634 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b10c722 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b6ae4c3 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x215d791e ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26940e5f 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 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x334fe083 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34e2c7ce ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3bf296f1 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e88cef4 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x413d262b ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41517d86 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fc1c4d8 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x508c6b0e ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f802c6 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x536e8f0a ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x56152ec1 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b583191 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f706faa ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65a1d209 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68bc8a0a ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a870c17 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ca9428b ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6eced02b ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70ac6a2b ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x75ebcb08 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7cfcbda6 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7d9a51d1 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f24d233 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fbf48dd ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4ac39a1a qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7a625f50 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x101cc564 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3c3b1321 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x7fffffff mscc_miim_setup +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x6b93afd0 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x459f41de pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x7fffffff sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0434954d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x13afbdee team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x29b99d1e team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x3f4e2fc0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7a51fdc7 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x39c36090 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6cf7fbb9 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7fffffff usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x028f84d8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x18b84e54 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2510c9e4 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2e105298 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x54d62c60 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x57be1a28 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x68cd9297 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b49bda7 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4bb7e739 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4edd4226 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x53c3ddb8 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x56f17605 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x63bf18d1 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x65c9c29d ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01ada1d5 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0477cfcc ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1a511a54 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b8ad75c ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1c740ca7 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b62e008 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b69f365 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3262f748 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x35338e6d ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d33673a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x437bb2cf ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x480a3fec ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4dcbecda ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51ee2ddf ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5275a88d ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x574f7de2 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b7379ed ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c0478f5 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x62585156 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x673e4f59 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6e27a3ed ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x719d1dbe ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72925cbf ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74e13d28 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7504b6aa ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x787fc748 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x788ea5b9 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79f095a9 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7c312c72 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x07c53dca ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x081ff4a6 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x09bfdd25 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x107cac98 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1de322d9 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1e9d0fc0 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29c819ec ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x30a7f867 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x31d6915f ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x367bc05b ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x41277dcd ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x42f3f5a7 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x504babff ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5184cc0f ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6c58d1a2 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e2c0404 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x703b62f6 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72fb2bf0 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7b86a028 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0c28a908 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x175bef8f ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2977e7b8 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2bdfb7d6 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 0x55d4ea84 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5c3aff68 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x74a88df9 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7cc05fe9 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x094e78fa ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cdcdd42 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x183fe1d2 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26d16850 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31820f25 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3d8649cd ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4160b1c2 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x44a2a85e ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4698e978 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5559be41 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b7bb20d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x663112fc ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77a92676 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x77be9714 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00e94aca ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06832ceb ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06ac80be ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07e58e90 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08280872 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x083c7896 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08a728b4 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b055d86 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d7b42c6 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e6c7917 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f4e3313 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f731ad2 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11684f46 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11973e91 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13b90b71 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1782dbbf ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17d205af ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x195a5526 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e16274b ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f3e022d ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x207fb3ec ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20bae71c ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x230430cb ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24ae5c7a ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2573abff ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25861805 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2909f12e ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3006563d ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x353ee34b ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35d13dd4 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36e8dad2 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37378fe2 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38f5e6b4 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f3ba15e ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40e95cb6 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43c09425 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4542abe3 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x481b2207 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4938aaaf ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cd17665 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef8be31 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x579c5d55 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5af0ca4e ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bdfa576 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62468e21 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62d19d5d ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6410d521 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x679a81e0 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b47113b ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ba60553 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e0708e5 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70e04eda ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x715d7b66 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72663244 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x734240a5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7643b2f0 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7844c5c1 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d01da4a ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x48a9742b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7fffffff atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7fffffff 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 0x210adb14 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x236ed518 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x32b80e66 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x45644f4b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x471788eb brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x646ffe08 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x03fd4144 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1411e39d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1b61b920 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1f3c442d libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d0d5903 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2e776065 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3adadaff libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4edfe46f libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71cada95 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73102f96 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7b828441 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x007d6f6a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x021308cc il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x025ac79c il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02f709e5 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x04882075 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x085e1172 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0cd34ae5 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0d047302 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x137358ec il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1752377e il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d21a78d il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f906550 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23d06407 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x258bbbe8 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26db4e0a il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2890b00f il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x29648786 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ac38e6 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34241e2a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3718c4ff il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x37de3bfd il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x381be292 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38e7b484 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b44abe9 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cd2ce5a il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3eece08c il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f45eec9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46a361b6 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x470f06d8 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4df3a1a1 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fdc2dee il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x50451d21 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5312732d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53ad1d9e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x548a3eb4 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5eb3117e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fd49f13 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x617e9d7a il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64b6a8b2 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6859101c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c10ede8 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d0dd5df il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d5ca7a2 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e15ae75 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x751acb56 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ba23491 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ccc35c6 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7eca64a1 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f37ed16 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x16cafecc __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 0x3ea8b86b __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x364dd578 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x42dc767c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4e53ee73 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x61076fbb hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x728580ea hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14f036d2 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3e5b41aa orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x478d84ac __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x618f2ba0 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6430c3e1 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7e2c80b9 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x7fffffff rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x000b5cc8 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x07bfeb35 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1286801b _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20aaee6d rtl92c_dm_init +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 0x250acea2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2dc8c01e rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38942869 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x38af5b27 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3abb8969 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b89b50f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4280f2ca _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46115a69 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50206fd5 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5220abd5 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x565758b9 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59453514 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c02f4e1 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ecc8f69 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x70d667db rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73e7c72d rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2a2f5aae rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x30977b60 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x790f9438 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ea9c8db rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x108b274b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x123c875a rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x146b8512 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ad3e256 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b60d5d6 efuse_power_switch +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 0x2990c4fb rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ccb5a3d rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44e6a324 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ab39833 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aeaee7c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b938dc1 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57694445 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63e85869 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67f1ffdd rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6c492798 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x7fffffff rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x46bb7e97 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x309b73a8 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x7fffffff rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x01f7a939 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x079b52c5 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07f6f40c rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11dd2763 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b4607c4 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1c67514e rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x20747e86 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2091c406 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x211ddbaf rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x24eea719 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x31ee1031 rtw_bf_cfg_csi_rate +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 0x3d49d040 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x41e05596 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43e7e94d rtw_rx_fill_rx_status +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 0x45e21927 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x495dd85d rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d909ed0 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f117824 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59162043 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59e453f9 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5bf97354 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c485e80 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x60847715 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x63c9aa8c rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6abcb690 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f54c1ea rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71b0cd0e __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7ae280dd rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d34b470 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f2ddef3 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x0ff01246 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x17492d20 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7fffffff rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7fffffff rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x69aaf66c rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x7fffffff rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x04c16f7c rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0602a0c9 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x06aa9c1b rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a63a959 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0f05daa6 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x12fe94aa rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x194e3b9f rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1c55e3af rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x220180c5 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25e5fe8d rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x28a727f6 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2c59e64e rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2d7c68df rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x335b9a05 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c185a89 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x444ba2b0 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e0ce9c6 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f0c654a rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x517043cf rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5f8fb245 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x646564ef rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x66a18f4c rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6dcadcfb rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7013ee3f rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x70c3bbcc rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x74d12a39 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c8d1a22 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f693305 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x28c8fc7b rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x31fdb556 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3992d01e rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x43136789 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x56fcf871 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5db37398 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x33d15b01 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6dc67dfa wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2f4184d8 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7fffffff fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7fffffff microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7fffffff microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6143302f nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x7fffffff pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x48f0a845 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7fffffff pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x74dc7281 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x08ffa486 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1a5abf7d st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3705ca8d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x51144be8 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x66d4780e ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0faa0e0b st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14ce7763 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x16c1157f st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x194f91e7 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1cf5d6a6 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x41f302b9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5060e6e9 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f6cca75 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x606193d8 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x66849505 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x69a901cb st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70488488 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x77c7f612 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x2268675b ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x478e84ce ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x532bcc69 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x668f21c4 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x6840762c ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x68bebcc2 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x70841a3a ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x78603160 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/parport/parport 0x17fc789c parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x1d360765 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x217b5eed parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x28460abc parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x34c49f31 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3620b721 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x3c8fde7e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f30d205 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4f532424 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x57b15a64 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x60f400df parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x6e205b94 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x6f8e72b2 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x7cc0125d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_read +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_release +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_write +EXPORT_SYMBOL drivers/parport/parport_pc 0x352e4836 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7fffffff parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x07511c65 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c780fab pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2b95b664 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x33be74f5 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3ada6c3f pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x71648be9 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x070924c5 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x12bc3b2c cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x415198b4 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x59a1c3ab cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_resume +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x7fffffff rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x5e781d9d qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x6aa123d5 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x7a76cf90 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x09108022 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x160f3a83 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x20e7bfd8 rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3678820e rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x399fb85b rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3f6e9fad rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4689193e rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4aa8acb1 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4b437d25 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x78401f8c rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x78740860 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7885d534 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fc8ef73 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x7fffffff rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x0cb34101 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x53af3b0f scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5c8b819b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x760b170d scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fffffff scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0cfc5d04 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1571266b fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1803403d fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7bfddffe fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7eed9f70 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x051a876c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x062c1f47 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11cc73d9 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11f974e6 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14fc6e8b fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16374dd7 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2246e042 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28c86010 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a477086 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e1602c0 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e1f7c44 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ddd8ad9 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f877981 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43c3d385 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4971f162 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4b482772 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dc632cd fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50677973 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5128cb88 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58bf354a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d3aa345 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65e38223 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66abddb2 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69089618 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78d4b704 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x18841978 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4ec2e79a sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x48e7812b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x07397c41 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0d92f960 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2e94c117 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37d7e0cf qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5981eb5c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f437e2c qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6a23605b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/raid_class 0x73e9ee24 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x7fffffff raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x7fffffff raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0bd59eb3 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d4b98ce fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1f93a951 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27d3984e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a927e0c fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33f05e29 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x506bbfde fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x62d52670 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x63adf151 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x798afc3b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7bdcb444 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x097dcc3c sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0fcb7a85 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17ab7e41 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x21eef193 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38fbb058 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x42cf82c2 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x552cb7db sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67dd2faa scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76935e68 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7eea0d6e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a4d91fc spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x727f4a67 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x59e4f8ed srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x640343af srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_timed_out +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 0x20cb37a2 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x22fbccc1 cmdq_pkt_flush_async +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 0x437bfc1a cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x47ef9293 cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x60db9531 cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x64a280fd cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7525fb04 cmdq_pkt_set_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s_mask_value +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s_value +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x4031ce7d of_get_ocmem +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7fffffff ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7fffffff 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 0x7fffffff pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x16807e3a geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x17536351 geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x249e1e9b geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2d75a926 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x32a880a8 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4282d372 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x551d710a geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5962db54 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x61d20323 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x67fef873 geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x68bb55f8 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x038cb5e2 qmi_add_server +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 0x5e80c2cd qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6f2dc675 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7c976cc1 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_txn_wait +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 0x7fffffff qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x7fffffff qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x05e824c9 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x165dce96 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1cb9cd92 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x252c575d sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x289d11a9 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37ec762b sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49f7d3c9 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x653752f6 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x69e4e03a sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6eed2ca4 sdw_bwrite_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 0x7fffffff sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_write +EXPORT_SYMBOL drivers/ssb/ssb 0x01922893 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x13e0672a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x29905718 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x324bf21c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x42a90d7e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4800ecb1 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x764aac13 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x7846c331 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0db15fe6 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ba5a169 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3625c5d4 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e97558c fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x570d0dfa fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x607bad3f fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x617e6046 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x632d07a3 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x694c1475 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6d961a37 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x791ddc37 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x40f84d0b gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7fffffff gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7fffffff gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0344b3e0 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6ad55318 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x147f886c sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x16c907fc nvec_write_sync +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x7fffffff nvec_write_async +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0b62e55b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x129ed848 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x13c658c7 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17c8b776 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c4d611c rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1dc80d5a rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ae1f980 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bc72834 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2fa62501 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x365c9f1d rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3888e29a rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ce8ac73 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42be7340 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ba836b5 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5152b8d1 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5489ae8d rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e85d9a8 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64caed05 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67464578 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x677df9ce rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x686c4b28 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74437aa0 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x078272e6 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d3d3df4 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10e188e0 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x111c647e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12f28928 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20d0549f ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2370d6cd is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28204a45 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29463550 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b3580a7 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e6709b9 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f3b9aae ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31fda124 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3981c065 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x419bb9ce ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45743a91 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47814ee9 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a9c52f3 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x530c39d5 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56bcf0f9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bb60163 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65e13c19 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d814bc3 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f969041 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75c00c18 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff to_legal_channel +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03d05b52 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x047dd77e iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x081f75ed iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ef3f7d7 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0fb0f0fd iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3185377e iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35fa1231 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d0931de iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3eda32df __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48c3ff8a iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4cae1d3a iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fb866a4 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53283428 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5edf02f5 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x64ae2610 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x696bfef1 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e9fc633 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75182016 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d187953 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7ecd44ba iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/target_core_mod 0x01ac1c61 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x01b54b0a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x03bcb3b2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x078a0d6e target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c391659 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x0cc9e3ab target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x121b28d5 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d87492c core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e210e8e target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x234a1f45 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c4e504c target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c704472 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e6b01e5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x39f8db89 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c88ea05 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e3c2b97 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4349a25e target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4410f332 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x45b62c0f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x51c90a9d spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x55cd4e4f sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x59541d2b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b7e85c7 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c8a3466 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x630d797d transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6560b9c8 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x65dfeede target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x75d21f14 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x75e1d66f target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x7643c44a sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a6a08cc target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a890370 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cde28e7 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e4372da spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x35fbe1d8 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4ef04076 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5ea4dfb1 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x02c5d1eb tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x36287f1c tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7fffffff ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7fffffff ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x38435464 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7fffffff usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x5e656702 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07dd110a usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1a353170 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x230128f2 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x32745050 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x37d4be3f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6616375f usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e479265 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x07e854bf usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x5895ae8a vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x39e83bb2 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4a5ff84a mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5c9fef36 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x60867e2f mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6f72cf58 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_driver +EXPORT_SYMBOL drivers/vhost/vhost 0x1f36854b vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x6828b6bb 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 0x7fffffff vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_enable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x298845d0 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x46d7e06f lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x07751bbe svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x24de5d51 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x1ca69f14 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x344c4a3e sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x25b20dbf 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 0x7fffffff cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x7fffffff cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x7fffffff mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x7fffffff mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x54fb6104 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x673c0db7 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x29ec4402 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7fffffff DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7fffffff DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7fffffff matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5fb5e202 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7fffffff matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1000c264 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x713a4074 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x78d98f26 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7c6c4798 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2a52773b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2e6dac80 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5cace9ad matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_var2my +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 0x0b769c6e dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2423d741 dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2c353a5b dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x2d77ad28 omapdss_output_set_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x308d4dab dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d36d54d dispc_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3d6656f6 omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3e912096 dss_mgr_set_timings +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 0x473b1743 omapdss_unregister_output +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 0x4ed68e67 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4f86ed27 dss_mgr_start_update +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 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x660ad7bf omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x6b1a3090 omap_dss_ntsc_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x718fe3aa omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x71a3227c omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7d6ca36a omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_disconnect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_enable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_default_get_resolution +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x7fffffff sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0x7fffffff save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x12103588 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7c9f9f37 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0dd92a35 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7fffffff w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x060ec9d3 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7fffffff w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x401854a4 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x5d7c381d w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_unregister_family +EXPORT_SYMBOL fs/fscache/fscache 0x03c9cf95 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1b412660 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1e50252a fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x1f76d349 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x204e1793 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x22932399 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x24a2b880 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x25b5c149 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x36d1e3f6 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3c6851b4 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5dd58438 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x5e77a293 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x60c70f72 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6b9e2156 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7250605c __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x79c17b43 fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x7c4daa19 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x7d37ed2b fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x7da7b14c fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_wq +EXPORT_SYMBOL fs/netfs/netfs 0x55930274 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x67a6fee6 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_write_begin +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x06a4faaf qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x221188d5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4cea9830 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4ebaea62 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6dd0b5a5 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_entry_unused +EXPORT_SYMBOL lib/crc-itu-t 0x7fffffff crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0x7fffffff crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0x7fffffff crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0x7fffffff arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0x7fffffff 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 0x7fffffff chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x7fffffff 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 0x7fffffff poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0x7fffffff poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x7fffffff crc32c +EXPORT_SYMBOL lib/libcrc32c 0x7fffffff crc32c_impl +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +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 0x7b43a73a lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_committed +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_del +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_find +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_get +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_reset +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_set +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_try_lock +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 0x7fffffff 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 0x7fffffff LZ4_compress_HC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7fffffff 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 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 0x7fffffff objagg_hints_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_obj_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_stats_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_stats_put +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x7fffffff parman_create +EXPORT_SYMBOL lib/parman 0x7fffffff parman_destroy +EXPORT_SYMBOL lib/parman 0x7fffffff parman_item_remove +EXPORT_SYMBOL lib/parman 0x7fffffff parman_prio_fini +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 0x7fffffff raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x0979ccc1 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3db1101e lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdevice +EXPORT_SYMBOL net/802/p8022 0x446445be register_8022_client +EXPORT_SYMBOL net/802/p8022 0x7fffffff unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x29277067 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x5d08397a unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0f8549b8 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x12d3dfcf p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x1d6c4553 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x21eb6174 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x234e9ffb p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x2aa119ad p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x2c91da2c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2d05a61c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x32069312 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x39a1cca8 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x39b7acd3 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3c369bd5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x3f8fd91c v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4237a84b p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x4b5f9d94 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x4e449951 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x52f2e0de p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x55c5096d p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6cd85301 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x706e8cb3 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x766a15bd p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x769023c7 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x78d3c174 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x7bb32619 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff v9fs_register_trans +EXPORT_SYMBOL net/appletalk/appletalk 0x02fce69a alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x2e164013 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x55ac223d atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x19f12400 atm_charge +EXPORT_SYMBOL net/atm/atm 0x1ab30407 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x1f404c8e atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x38b74cda atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x3d66a45f atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x3e101de7 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x60d53183 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0x7fffffff deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7fffffff sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0x7fffffff sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0x7fffffff vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x7fffffff vcc_process_recv_queue +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 0x4a9b1649 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x52c7bde0 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5e2271dd ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x6016a496 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00a02eb8 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a1e860d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d722203 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1430809b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18b8ff09 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f4b0386 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2470278f hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cbf2bd0 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2eff48ad hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37d9ba8c hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e5b4def bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x416f1250 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x428306dc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42aa6c56 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5983cc44 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a8a3f8f hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x686ab9c5 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6aa36754 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b94538b __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6be8c6aa hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6d35c527 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x779e39fd hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78082733 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79985f1d l2cap_is_socket +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 0x7d9519ae hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e036918 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_unregister_user +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x58c46417 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x719f5d63 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_unregister_template +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6ac37247 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x7fffffff caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x7fffffff caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x7fffffff caif_free_client +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0x7fffffff get_cfcnfg +EXPORT_SYMBOL net/can/can 0x4e75f685 can_send +EXPORT_SYMBOL net/can/can 0x67ca04fa can_proto_unregister +EXPORT_SYMBOL net/can/can 0x7c3de432 can_rx_register +EXPORT_SYMBOL net/can/can 0x7fffffff can_proto_register +EXPORT_SYMBOL net/can/can 0x7fffffff can_rx_unregister +EXPORT_SYMBOL net/can/can 0x7fffffff can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0f77d42b ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x14959c9a ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x16cc3baf ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x1c185941 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20921aff ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2195c694 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x225f0b73 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x229a2832 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x2397b9dc ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x27dcd7c5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2c40431f ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x2d53bd8c ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x3039e409 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x37976075 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x38e2b3f2 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3bbb9ab6 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x3d2bcb22 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3e74696a ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x41b81ee3 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x4440fd16 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x44d51d58 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x453b6f4d __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48b37d7f osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x4a66f7b6 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4d3898ac ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x4facb5f5 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x502e7cd9 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x581537e3 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x592b405f osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5b7d43f5 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x5d82dd8a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x602d1f38 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6098ea75 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x61625509 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x6367f8c8 ceph_open_session +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 0x665ed0f3 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x672158f2 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6e88546a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x740704bb ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x748a229e ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x76bebac5 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x76fa91ff osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x7ca29c35 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x7f774b18 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x7fadb563 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fc30e0a ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x441af6ab dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7fffffff dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x32843a81 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x7fffffff hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x069437e1 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1de77a96 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x51f6658d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x3c438677 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x48939f15 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7fffffff fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7fffffff gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x27b5e5d1 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4af0c17c ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x68c6970c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x77b250a1 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x0526be18 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7fffffff xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x26e74344 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0a13fd90 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x20de2216 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x55e18845 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x678eb007 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3b174b0e ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4db13a0d ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7f2b2796 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7fffffff ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x76d5ab75 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x7fffffff xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5e62918d xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7fffffff xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x0f2f5394 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x1c12f4f6 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x4603a014 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x2b711b5e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x476bdfda llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d313b3 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x658817bc llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x6797c9b8 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x03448ce3 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x04f5b7a8 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0670f7b4 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x067ecd34 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x07c9fca8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x0b6945fc ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0ebceb0f ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x0ee66250 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x11bcd5f1 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x1798f939 ieee80211_ctstoself_get +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 0x1a622fa6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x23e9e23a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x23ede496 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x25243e15 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2f05a771 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x327e9b40 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x33b0cb8e ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x3aa3b781 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x3b7752fa ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3e87d831 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x3eef5dad ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x430f4b49 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x450bcc3d ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x4651bd59 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4939d752 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4acf1f05 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4af9af2e wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4b19e4e3 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4c3710d2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4c8ec547 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x4da91dd5 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x4e86e434 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x52a37a93 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x5434e615 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x58804227 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5a505380 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5db61bff ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x5e31963f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x61247a75 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x62db1145 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x63368cba ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x642060dc ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x6675c5c3 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x68430cbe ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x69fe3381 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6b2413bd ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6b89f851 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x6f997cb8 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x74515292 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x752ca411 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7561d262 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x77cbba0a ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7bf7b1bf ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x7cbc037c ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x0ece2c60 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1a928cb5 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x496b79de ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x56b75189 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_xmit_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0237c2bd register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x536cdefc register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x577eb4f1 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x616eb322 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x77646926 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x41e60cbd nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x7fffffff pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x037af016 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x34ea73af nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0x7fffffff nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0268d80d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x064c3767 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x0fd86775 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x308c96b8 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 0x58c098bb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7adca1b7 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_find_jump_offset +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_target +EXPORT_SYMBOL net/nfc/hci/hci 0x022e1c67 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x03c78e99 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1c3d5aab nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x30d59e96 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x3d1692bf nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x477e0006 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x496822a0 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x74748e68 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_llc_stop +EXPORT_SYMBOL net/nfc/nci/nci 0x0603edbf nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x093e1243 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0c94d7cb nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1174dbe2 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x13ab1562 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3a2eaf22 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x3c0dba29 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3fa35569 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x470ab881 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4becb609 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x56960b34 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x6908ea96 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x0da584e5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x1ce88064 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x2bef48c9 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x2d611458 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x388cbdf6 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x39f29e73 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x42aed5d2 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x4bc193c4 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6d6a00ec nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6fd90f23 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x797a3410 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x7a12f058 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x24523b8c nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x15d02f2d phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x22e89d49 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x413e364f phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x5913c213 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5d125027 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07af7697 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x147a7e59 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2184fd21 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2a0d2b5e rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x51a939f5 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6fb2ff40 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7702b6ad rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7a980139 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/sctp/sctp 0x394b7dd1 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3e8645e8 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x5f700479 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6203d4d2 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x736ba91d __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x7fffffff __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x7fffffff __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __tracepoint_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x00023d26 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x59f89fe0 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2f9bc270 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x01dec879 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x68bb8a35 tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0x7fffffff tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x002f09a5 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x01dca7a4 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x01df5cab cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x0405ef51 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x0412dbbf cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x0bc86be3 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x10fb0350 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x11408745 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x149f3e3e cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x178a719a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1c17b10a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x23541f27 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x2375a606 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x25f38925 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x294fbfc9 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x29afca0f cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x2b5ac49d cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x2e3258d8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x2e86b5ce ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2fcd58f7 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3557535d cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x3b910c63 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3caa3e7d cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3dd36204 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4201a1d7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x45da376d cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x472ab09d cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4c1b49de regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4c5a55dd cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x569abc64 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5a07c7f5 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5b0611cc cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x63790397 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x66a18859 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x66c62684 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x6809b703 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69c509a3 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6aec0c0d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6e4b47bd cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x72f16e37 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x7319c19b cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7384f426 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x77acd86b cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x78b7aa55 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x78dbbd7a cfg80211_iter_combinations +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 0x7b10a7b4 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_unregister +EXPORT_SYMBOL net/wireless/lib80211 0x2d2f344a lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x3ff4e1a7 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6fd28022 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_register_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7fffffff 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 0x400c2259 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 0x7fffffff snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff 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 0x7fffffff snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x70cab927 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x7fffffff snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a6e3817 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x161b6258 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x187e3a90 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c9e6335 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1dade328 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2bc5e743 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ee2f2e2 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x32176208 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6da647c3 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7559e76b snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x0cf20995 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x1d8e4f55 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 0x7fffffff snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0a9f0f06 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0c1be6cb snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2b0eba06 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4615ffbf snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d3975d6 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7cda9c3e snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1864c256 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x200fd17f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6784cfb1 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6932d716 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7185a4cb snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f02ca6a fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32152664 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x44279d7d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45563efd fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45cc0485 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e998768 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5812fab7 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x63fedc54 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x786b4cef fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x030156b5 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x3091e38c snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x482644ec snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1babe2f9 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x534a494f snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7fffffff snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7fffffff snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x5feadefa snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x7fffffff snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x055aca09 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2e04ee38 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3ec74a5d snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_probeaddr +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04d870e6 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b76b6c3 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b9de7ac snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a00f5cf snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x41d26d64 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b73c81b snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e44ea64 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x65376c6d snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x74f07955 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a86bce5 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x06d28503 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x262b3c56 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fffffff snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x033874c3 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x034fc5da oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x278abd86 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3db67b10 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x59b79eb1 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b1c8533 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x721362d4 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75af2228 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7c6ecd70 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_uart +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0x7fffffff acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x51edf83d snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x6227709e snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x7fffffff adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x326bc54d wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7fffffff pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7fffffff pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0x7fffffff hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5f63c98a tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x6139a630 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5d0b5b4d aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x746c132c aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7fffffff aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3695f8ca wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x329f5717 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x56261b29 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x682649a6 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x68514e74 qcom_snd_parse_of +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x270e5c8d __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_suspend +EXPORT_SYMBOL vmlinux 0x00082237 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x00139ae9 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x0028bce6 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x00482b72 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x004cff0c elevator_alloc +EXPORT_SYMBOL vmlinux 0x004d8359 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x006b5c1a phy_print_status +EXPORT_SYMBOL vmlinux 0x006d5aec xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x006dff34 snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x007bb137 fb_blank +EXPORT_SYMBOL vmlinux 0x007f945c tcp_connect +EXPORT_SYMBOL vmlinux 0x00aac48c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00cd8c6b __serio_register_driver +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00ea2e0a inet_recvmsg +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101875a page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x01086901 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x010970f8 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x010b9c7b mdiobb_read +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x011b1be5 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012b40e0 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0149b7ca seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x01812134 kern_unmount +EXPORT_SYMBOL vmlinux 0x01821529 fs_bio_set +EXPORT_SYMBOL vmlinux 0x01830813 kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x018893bf keyring_alloc +EXPORT_SYMBOL vmlinux 0x01a264db xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x01a8d54b gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x01acc80d ip_options_compile +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01d220c0 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x01ddb677 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x01e7bf8e textsearch_register +EXPORT_SYMBOL vmlinux 0x01ee624f fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x020416f8 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0218828c neigh_destroy +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0230abae bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x02518813 phy_connect +EXPORT_SYMBOL vmlinux 0x025f20a4 param_get_int +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x028f6495 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a6e5df init_pseudo +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02cad187 unload_nls +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f1f27d bdi_unregister +EXPORT_SYMBOL vmlinux 0x02f36166 bio_split +EXPORT_SYMBOL vmlinux 0x02f79482 nla_reserve +EXPORT_SYMBOL vmlinux 0x03084c89 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x030b1007 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0344a7d5 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x0352db7b ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x0356cc3a inet_release +EXPORT_SYMBOL vmlinux 0x035a839d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x035aaf00 xsk_clear_tx_need_wakeup +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 0x03863f21 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03995aef single_release +EXPORT_SYMBOL vmlinux 0x03a791cd dentry_path_raw +EXPORT_SYMBOL vmlinux 0x03ad2376 page_get_link +EXPORT_SYMBOL vmlinux 0x03ad27e3 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x03b019f0 netpoll_setup +EXPORT_SYMBOL vmlinux 0x03b54284 key_revoke +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03bc2fa2 kill_fasync +EXPORT_SYMBOL vmlinux 0x03cd48ce inc_node_state +EXPORT_SYMBOL vmlinux 0x03f59151 pci_enable_device +EXPORT_SYMBOL vmlinux 0x03fa521d genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fbbd31 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04038732 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x04160aae tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x0419591e __sg_free_table +EXPORT_SYMBOL vmlinux 0x042685d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x042d46ad unregister_md_personality +EXPORT_SYMBOL vmlinux 0x0430edb2 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x0462a0d0 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x0475c498 param_set_invbool +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x049186fb __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x049fcefd simple_transaction_get +EXPORT_SYMBOL vmlinux 0x04a13fb9 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x04ae0988 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x04b64ea6 nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x04bcc68b tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d405d8 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x04f0eb20 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x04fcb5dc snd_jack_new +EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0514a73d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x051a412f mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x051e479c i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05296842 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054d7094 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x055aeff1 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x05612b1b gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x05795a67 vm_map_pages +EXPORT_SYMBOL vmlinux 0x058836ac mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x05890e73 fb_set_var +EXPORT_SYMBOL vmlinux 0x0596e716 tcp_poll +EXPORT_SYMBOL vmlinux 0x059e16e1 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x05ade6cb fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0x05d8e783 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x05f70a9c inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x060b26c2 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x0614c6a5 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06381297 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x06400e0c genphy_resume +EXPORT_SYMBOL vmlinux 0x0655cafe md_write_inc +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06909ef2 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x069140e5 md_error +EXPORT_SYMBOL vmlinux 0x069adfba nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x069f3f2b inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x06af6b4c of_n_size_cells +EXPORT_SYMBOL vmlinux 0x06b919de discard_new_inode +EXPORT_SYMBOL vmlinux 0x06ce0724 read_code +EXPORT_SYMBOL vmlinux 0x06cfda3b dquot_acquire +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06da150d sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x06e0a94c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x06f93bb8 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x06fcd4fc nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x07032b9d blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x0721a737 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073017e3 snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0x0734c2e7 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x0736f69c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x07413eef sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x0742a576 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x075d07d0 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x0762683b xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x07657fbd __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x0778fd13 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x0796f8bd netpoll_print_options +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b05102 input_open_device +EXPORT_SYMBOL vmlinux 0x07b3069b of_node_name_eq +EXPORT_SYMBOL vmlinux 0x07b86c34 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x07bbad0a jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d1480a blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x07d60fd9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x07de5b29 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07e8a51d eth_type_trans +EXPORT_SYMBOL vmlinux 0x07eed04f mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08119198 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083c6040 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08617165 __quota_error +EXPORT_SYMBOL vmlinux 0x086253a7 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088429f5 skb_copy +EXPORT_SYMBOL vmlinux 0x088ea2b6 vfs_mknod +EXPORT_SYMBOL vmlinux 0x089245e2 ether_setup +EXPORT_SYMBOL vmlinux 0x08b28031 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x08b35139 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f150b4 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0910a46d tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x092f505d netif_carrier_on +EXPORT_SYMBOL vmlinux 0x095994ce iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x095dd756 sound_class +EXPORT_SYMBOL vmlinux 0x0964b6c3 ll_rw_block +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098c029b tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x0994cbed kobject_get +EXPORT_SYMBOL vmlinux 0x099548c9 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0999c0cc mmc_register_driver +EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x09c97bf2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e52cb7 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0f8b61 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a2ebae9 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a51e9cf devm_iounmap +EXPORT_SYMBOL vmlinux 0x0a60cd4d scm_fp_dup +EXPORT_SYMBOL vmlinux 0x0a8cac35 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x0a8f4cf8 inode_init_once +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a9b33a4 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa09d79 omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab4c4c1 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x0ab80064 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0ac81dfc of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x0aca37f8 snd_seq_root +EXPORT_SYMBOL vmlinux 0x0acc8a95 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae04e5e d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0aebd82c sock_create_lite +EXPORT_SYMBOL vmlinux 0x0af9d17b nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x0afa88cb flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x0b15bafe nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b27e1ea md_write_start +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b48dd48 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b6c0cd9 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x0b709411 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x0b71ac83 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7828f0 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x0b7e25ef kmap_high +EXPORT_SYMBOL vmlinux 0x0b872502 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x0b8d6068 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x0b8dcf06 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0b931ef4 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x0b9bc0ad tcf_idr_create +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb2098a netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x0bb3c950 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf73cf5 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x0bf90eac netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x0c010e6c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x0c04ebcf napi_get_frags +EXPORT_SYMBOL vmlinux 0x0c1e2899 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c4b8d7f snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x0c62e420 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x0c67e3a2 __netif_schedule +EXPORT_SYMBOL vmlinux 0x0c7f82c4 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x0c893b3d of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x0c8d53f2 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca85b14 from_kprojid +EXPORT_SYMBOL vmlinux 0x0cad00c2 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb5eae1 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x0cb7359d fs_lookup_param +EXPORT_SYMBOL vmlinux 0x0cd01e9a netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x0cdca063 of_clk_get +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdf8041 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x0d06c617 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d17af16 blkdev_put +EXPORT_SYMBOL vmlinux 0x0d19256f dump_emit +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d207bac scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d419fbb __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0d471ad6 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61d967 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x0d656da5 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x0d688c4e unregister_nls +EXPORT_SYMBOL vmlinux 0x0d7e5dcc tty_register_driver +EXPORT_SYMBOL vmlinux 0x0d85b6bc lru_cache_add +EXPORT_SYMBOL vmlinux 0x0dab4408 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dde4b85 tcp_mmap +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e3b517c file_modified +EXPORT_SYMBOL vmlinux 0x0e432911 udp_gro_complete +EXPORT_SYMBOL vmlinux 0x0e5d2250 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0e5e604c rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x0e775f4b phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x0e850737 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x0e85c277 submit_bio +EXPORT_SYMBOL vmlinux 0x0e886cad d_add +EXPORT_SYMBOL vmlinux 0x0e8f1224 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea59195 mdio_device_register +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb1c915 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x0eb3e86a tty_unthrottle +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0eb8c2ce __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x0ec27c27 snd_card_free +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec89fdf pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x0eca3076 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x0ed7b7bb tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0f06957f allocate_resource +EXPORT_SYMBOL vmlinux 0x0f07c38a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0c83c4 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x0f16c4dd remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2ae8b8 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x0f4c55b0 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0f4cddd5 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x0f6baf8a dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0f76ea8f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f887b48 udp_seq_next +EXPORT_SYMBOL vmlinux 0x0fa0408e debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x0fa3b3a2 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc346ed flush_signals +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd30e77 __lock_buffer +EXPORT_SYMBOL vmlinux 0x0fd4ba6b vme_lm_request +EXPORT_SYMBOL vmlinux 0x0fd7929c of_match_device +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe55484 iunique +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1012cf82 input_inject_event +EXPORT_SYMBOL vmlinux 0x1012d9b2 trace_event_printf +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x10267aab fget +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x10407fe2 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x104fcbac pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x1057605e blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x105a3b92 sg_miter_start +EXPORT_SYMBOL vmlinux 0x105fa5b7 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x10753e14 seq_putc +EXPORT_SYMBOL vmlinux 0x10791035 input_copy_abs +EXPORT_SYMBOL vmlinux 0x1079ee67 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108715d8 complete_request_key +EXPORT_SYMBOL vmlinux 0x10a4f051 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x10b2bc7d tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x10c5cfa1 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x10d34f77 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e18e1d unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x10e279af handle_edge_irq +EXPORT_SYMBOL vmlinux 0x10e4c24c mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ea3314 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112ff2dc scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x1130162f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x114a7bb7 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x116fb18d max8925_reg_read +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x119e496e pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x11b29497 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x11c33c0d napi_gro_frags +EXPORT_SYMBOL vmlinux 0x11ced5f7 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x11d01d9b fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x11e0d494 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e41a2e unlock_rename +EXPORT_SYMBOL vmlinux 0x11e6fa30 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x11f0c301 arp_create +EXPORT_SYMBOL vmlinux 0x11f62efa xp_dma_map +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 0x1218c1c5 would_dump +EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x12277afe skb_copy_header +EXPORT_SYMBOL vmlinux 0x12408786 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12505490 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x1262236b nobh_write_end +EXPORT_SYMBOL vmlinux 0x126adad1 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1273e4c7 snd_dma_alloc_dir_pages +EXPORT_SYMBOL vmlinux 0x12757252 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x128c976a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x1295504f __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x12ae78b8 vfs_create +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d71bec cdev_device_add +EXPORT_SYMBOL vmlinux 0x12e5ef14 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f23468 tso_count_descs +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130db649 get_acl +EXPORT_SYMBOL vmlinux 0x131cffcd rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x131f88cd get_tree_bdev +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1324f13b xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1352baba sk_error_report +EXPORT_SYMBOL vmlinux 0x1363e774 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x136994da amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x13756396 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x137c154c set_capacity +EXPORT_SYMBOL vmlinux 0x137cc168 migrate_page +EXPORT_SYMBOL vmlinux 0x137ed415 sk_dst_check +EXPORT_SYMBOL vmlinux 0x138508ac snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x13951711 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x139b4143 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x139cd164 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x139cff4b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x13cc2863 icmp6_send +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 0x13ddb2bd vfs_symlink +EXPORT_SYMBOL vmlinux 0x13ed30e8 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fa6e55 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x1415b1b0 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x142cd976 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x1431e271 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x1435887b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1442f18d netdev_info +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x14532a6a tcp_parse_options +EXPORT_SYMBOL vmlinux 0x1453b552 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146060ec of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1471cf7a arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x1476d6fb _dev_printk +EXPORT_SYMBOL vmlinux 0x1479cf03 skb_find_text +EXPORT_SYMBOL vmlinux 0x149ef38f of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x14a356fa xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x14b281d1 param_get_long +EXPORT_SYMBOL vmlinux 0x14d09113 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x14d3eb2f simple_empty +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14ff535a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x1502506b xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x150e2a4b set_page_dirty +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1523620b genphy_loopback +EXPORT_SYMBOL vmlinux 0x15240b24 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x157aa268 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x15846945 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x1587e98a udp6_csum_init +EXPORT_SYMBOL vmlinux 0x158ba738 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x15aa1ce6 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x15b97540 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15be545f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15e077d9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x15f24cc3 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x15f6d94e ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x161a2ea2 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1631c090 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16361716 ip6_xmit +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x16597cd7 snd_timer_open +EXPORT_SYMBOL vmlinux 0x166dd90c eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x167a8357 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x1681f3c3 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x1684c2a5 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x16a77473 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16b50bf8 tso_build_data +EXPORT_SYMBOL vmlinux 0x16b6f94d inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x16e113dd phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x173a8132 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x174342fd tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x17492ae8 seq_vprintf +EXPORT_SYMBOL vmlinux 0x174e98a3 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x17511fca device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x177a36f8 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x1786824b sock_set_mark +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178e783a twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x17bdb5c1 sock_edemux +EXPORT_SYMBOL vmlinux 0x17ccf098 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x17d891cc mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x17dc7f70 msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x17e8f610 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x17f24439 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x17f96cc5 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x17fa01ea nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x1803e83d snd_pcm_new +EXPORT_SYMBOL vmlinux 0x181e1437 submit_bh +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x18470487 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x185c32cf sgl_free +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1896be06 netif_device_attach +EXPORT_SYMBOL vmlinux 0x18ac2c39 generic_write_checks +EXPORT_SYMBOL vmlinux 0x18bd7772 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x18cdde39 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x18ce4710 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x18d91748 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ed033d _dev_emerg +EXPORT_SYMBOL vmlinux 0x18f350b9 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x18fe7ad6 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x190c1981 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x191560e7 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x191fd023 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x193a01e8 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x193ba8c4 block_write_end +EXPORT_SYMBOL vmlinux 0x1949dd76 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x195eded8 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x19646019 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x19668813 of_get_parent +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a36937 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x19b37001 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19e011ef dump_skip_to +EXPORT_SYMBOL vmlinux 0x19f18e39 arp_tbl +EXPORT_SYMBOL vmlinux 0x1a00ad18 snd_card_new +EXPORT_SYMBOL vmlinux 0x1a103706 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x1a183447 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a3e0fb8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x1a4727df scsi_partsize +EXPORT_SYMBOL vmlinux 0x1a51c881 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x1a5c3ba6 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7a8f70 input_allocate_device +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a812712 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1a8f07f9 vfs_statfs +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9d8fe7 sock_rfree +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad7b7fe sock_no_mmap +EXPORT_SYMBOL vmlinux 0x1adea4cc bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1ae5d6ef _dev_notice +EXPORT_SYMBOL vmlinux 0x1aea297d ps2_command +EXPORT_SYMBOL vmlinux 0x1af8932e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1afebe0f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0e45f9 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x1b15bd13 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x1b16b0ea cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x1b20797d mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x1b259dd3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b3e246d gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x1b599ca9 console_start +EXPORT_SYMBOL vmlinux 0x1b5aaf75 sock_wake_async +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6d1f56 module_layout +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b79d55e blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed +EXPORT_SYMBOL vmlinux 0x1b98e534 vme_master_request +EXPORT_SYMBOL vmlinux 0x1b9d26a4 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x1b9fe760 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x1bad01b5 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bcc4f74 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x1c0235ea ptp_find_pin +EXPORT_SYMBOL vmlinux 0x1c50738f dev_mc_init +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6263af blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1c791522 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x1c85a502 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x1c97502f flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x1cb7ba92 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x1cbb7608 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc640cc xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd7b2f0 netif_skb_features +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d028c58 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x1d11ae3a devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x1d15fc65 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1d1902c9 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x1d6479ee dma_free_attrs +EXPORT_SYMBOL vmlinux 0x1d6f24dd d_find_alias +EXPORT_SYMBOL vmlinux 0x1d7290cd __neigh_create +EXPORT_SYMBOL vmlinux 0x1d74af94 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d81417f mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x1d9cac7b mpage_readahead +EXPORT_SYMBOL vmlinux 0x1db2e24b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1db49ce8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x1dc1e59f vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc7079a xp_can_alloc +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 0x1de96eb3 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e155f45 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e301bfb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1e5d77f7 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x1e6a2a2d vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e79ac46 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea78448 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x1ea7873b km_state_notify +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1ec4e6b3 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x1ec5f633 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1edf91a2 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x1ee0b86e iget_failed +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1ef72008 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x1ef8a7ab netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x1f24bbf2 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x1f27bb30 dquot_file_open +EXPORT_SYMBOL vmlinux 0x1f36e700 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1f495bbe inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f5338fd dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x1f57a8a8 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x1f75c559 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x1f8d3d38 __folio_alloc +EXPORT_SYMBOL vmlinux 0x1f992bea devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x1fa10260 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc916cb register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe4f0d8 get_mem_type +EXPORT_SYMBOL vmlinux 0x1fe8c00f init_special_inode +EXPORT_SYMBOL vmlinux 0x1ff3aa45 mipi_dsi_driver_register_full +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 0x201053bc security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x20280c39 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x203929ee netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x2042b8a4 __scsi_device_lookup_by_target +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 0x2084d5a3 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x20863404 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x20a744cf hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b4c7ba generic_fadvise +EXPORT_SYMBOL vmlinux 0x20b6547d generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x20bc37da genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x20bd2398 fsync_bdev +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20f882a7 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x20f8ef7b nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x21021ad2 napi_disable +EXPORT_SYMBOL vmlinux 0x210ef117 devm_release_resource +EXPORT_SYMBOL vmlinux 0x2110e0eb nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x211b047d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x211b63ab __put_user_ns +EXPORT_SYMBOL vmlinux 0x211ee9bc qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x21327588 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x217f83ca udplite_prot +EXPORT_SYMBOL vmlinux 0x21879cf1 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x21910e21 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x2193ae9a bio_free_pages +EXPORT_SYMBOL vmlinux 0x219c13e7 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x219ffe31 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x21b5ee5b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c04ae7 pci_match_id +EXPORT_SYMBOL vmlinux 0x21d53512 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x21d6ef55 netdev_change_features +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +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 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223006a4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x2231b5f2 dma_map_resource +EXPORT_SYMBOL vmlinux 0x2258d746 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x226082bc vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x226ce4af snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x2273db6d padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x227a643d get_tz_trend +EXPORT_SYMBOL vmlinux 0x227c9e29 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x227d3294 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x227d92da nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x227e2164 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22df283a eth_header_cache +EXPORT_SYMBOL vmlinux 0x22e36666 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x22e41a4d genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x22ea69bb inc_node_page_state +EXPORT_SYMBOL vmlinux 0x231d199d sock_setsockopt +EXPORT_SYMBOL vmlinux 0x232b90e3 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x232b9fc3 simple_link +EXPORT_SYMBOL vmlinux 0x23304b28 inode_insert5 +EXPORT_SYMBOL vmlinux 0x235dcc18 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236bd5eb pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x236f0cd8 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238b1d20 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x238ed7cd kobject_add +EXPORT_SYMBOL vmlinux 0x23912267 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c0a857 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24030cf9 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2405da44 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x2416cc95 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x24307f91 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x24324113 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2458343e ppp_register_channel +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245c7ab8 param_get_short +EXPORT_SYMBOL vmlinux 0x245d58c6 dev_add_pack +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x246ee88e unpin_user_pages +EXPORT_SYMBOL vmlinux 0x2475125c snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x247a285c blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x24992356 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x249a6b61 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x249d75e0 send_sig +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b3f994 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x24b664ad d_delete +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dd755e mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x24f50211 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x24f78d17 __scm_destroy +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250a0e7a tty_write_room +EXPORT_SYMBOL vmlinux 0x2520d9cc pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x253034eb devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x2535457a vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x253d5ff0 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x2540f444 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x2568ac17 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x2572b7ba of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2587e755 __free_pages +EXPORT_SYMBOL vmlinux 0x258a8178 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x258bc45e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25955a41 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x25b10aa8 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x25c8b716 default_llseek +EXPORT_SYMBOL vmlinux 0x25cd3869 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x262a08a7 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2644d1ba i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x26628c77 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x266ef900 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x2671eb48 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x268636a9 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26899dfd mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x268b4924 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x2690e6c1 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x26994f08 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x26a76203 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26dc598a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x26df5259 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x26e0031e mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x26f6257d security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x26fa58f5 skb_ext_add +EXPORT_SYMBOL vmlinux 0x2708b149 register_netdevice +EXPORT_SYMBOL vmlinux 0x270a77c9 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x270ac400 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27194197 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x27302e0b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2730d771 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273dee87 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276850c1 mmc_command_done +EXPORT_SYMBOL vmlinux 0x276a3a44 irq_stat +EXPORT_SYMBOL vmlinux 0x27724971 uart_resume_port +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277d1e73 input_register_handle +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x279b1f34 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27de2fc6 nand_ecc_prepare_io_req +EXPORT_SYMBOL vmlinux 0x27e7f7ff jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x28108e35 current_in_userns +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2824f5b2 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x2828d24d of_iomap +EXPORT_SYMBOL vmlinux 0x282b8db3 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x283d9977 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x28415c55 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x284a1486 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x287329ef set_cached_acl +EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x2881d7be fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x288f9f2e backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x289c775d __find_get_block +EXPORT_SYMBOL vmlinux 0x28d2a7f1 dev_change_flags +EXPORT_SYMBOL vmlinux 0x28f8a7a4 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29029a9b scsi_print_result +EXPORT_SYMBOL vmlinux 0x291b607e vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x293a2e2b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x293c6d16 d_alloc_name +EXPORT_SYMBOL vmlinux 0x293ee3a8 netdev_notice +EXPORT_SYMBOL vmlinux 0x2948ebe7 dm_put_device +EXPORT_SYMBOL vmlinux 0x295d50ac xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x297a3eb4 vm_mmap +EXPORT_SYMBOL vmlinux 0x297d3423 sk_common_release +EXPORT_SYMBOL vmlinux 0x298d332b ps2_begin_command +EXPORT_SYMBOL vmlinux 0x299a3239 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29a8c113 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x29bb61d2 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x29be51a6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x29c44efd unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x29c862b6 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x29ca5756 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x29d3fcca tty_kref_put +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29df6135 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x29e200fc netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x29e7a880 phy_loopback +EXPORT_SYMBOL vmlinux 0x29fa1cbe page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x29fce0ee snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x2a09a34d __serio_register_port +EXPORT_SYMBOL vmlinux 0x2a0fc1d7 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x2a156ee9 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x2a1a9a1c genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x2a1cb76b tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x2a1e048d nonseekable_open +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a3bf44c mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x2a451b1f ppp_input +EXPORT_SYMBOL vmlinux 0x2a59b41d tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x2a5b5568 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x2a6c07a1 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x2a7ef249 console_stop +EXPORT_SYMBOL vmlinux 0x2a91ab45 vfs_llseek +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9e9102 netif_device_detach +EXPORT_SYMBOL vmlinux 0x2a9faeb4 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2ab4a8f3 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x2ac3b9f2 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x2afd4aba dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x2b145ff0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x2b3c796d textsearch_unregister +EXPORT_SYMBOL vmlinux 0x2b478bb6 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x2b4da798 md_register_thread +EXPORT_SYMBOL vmlinux 0x2b58539a locks_delete_block +EXPORT_SYMBOL vmlinux 0x2b58724c devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b68f61d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x2b7dd098 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2b8482cc dst_release_immediate +EXPORT_SYMBOL vmlinux 0x2b84b1c8 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2b8e089e vm_map_ram +EXPORT_SYMBOL vmlinux 0x2b9143d0 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bc31fa1 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2bc8ece3 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x2bdd19cd pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x2bdfc5a7 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x2be9fe68 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c19ce71 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3206a7 dma_pool_create +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c42a97b _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2c5c5d1f phy_attach +EXPORT_SYMBOL vmlinux 0x2c5ceedd fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x2c5de08a nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c78c2f6 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c7e7636 tso_start +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2ca0e6b0 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x2cd89b74 inet6_getname +EXPORT_SYMBOL vmlinux 0x2ce56547 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x2cec2c3a finalize_exec +EXPORT_SYMBOL vmlinux 0x2cf5fa0a key_put +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d19e4da mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x2d1a69be pci_resize_resource +EXPORT_SYMBOL vmlinux 0x2d1f5eb5 __bforget +EXPORT_SYMBOL vmlinux 0x2d20e5c7 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x2d2a9b21 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4268ff pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x2d4472c2 zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d50a651 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x2d542312 _dev_info +EXPORT_SYMBOL vmlinux 0x2d560143 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x2d5a6b1e eth_header +EXPORT_SYMBOL vmlinux 0x2d66ddf9 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d7074ca kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x2d750955 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9587cf pci_iomap_range +EXPORT_SYMBOL vmlinux 0x2d97207b sock_kfree_s +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da247aa phy_read_paged +EXPORT_SYMBOL vmlinux 0x2db1b71c zap_page_range +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2df16954 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x2e089eca snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x2e0e022c __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2fd1a3 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x2e3cb4f2 simple_rename +EXPORT_SYMBOL vmlinux 0x2e3eb2b1 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e66849b dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2e6e2573 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x2e790443 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x2e800386 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x2e993713 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x2ea36113 ac97_bus_type +EXPORT_SYMBOL vmlinux 0x2ebadc33 pci_disable_device +EXPORT_SYMBOL vmlinux 0x2ebb9e19 snd_power_wait +EXPORT_SYMBOL vmlinux 0x2ebbcaae __folio_lock +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecb1ed8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x2edd3e75 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x2ede8f92 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2eed5718 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f22c073 folio_add_lru +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f366222 tcp_req_err +EXPORT_SYMBOL vmlinux 0x2f42152b elv_rb_del +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream +EXPORT_SYMBOL vmlinux 0x2f69c290 vm_node_stat +EXPORT_SYMBOL vmlinux 0x2f83ab28 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x2fc251af ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2fcbf131 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x2fdd5ec6 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fedbda2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x300b17e1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x300dc93c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3023f24f key_unlink +EXPORT_SYMBOL vmlinux 0x302c3a9e dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x303cd21d vfs_setpos +EXPORT_SYMBOL vmlinux 0x30440c0b generic_perform_write +EXPORT_SYMBOL vmlinux 0x304f8477 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x306d20d7 import_iovec +EXPORT_SYMBOL vmlinux 0x30701042 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3076798a unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x3094a60b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098be4e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30d3328c ipv6_dev_mc_dec +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 0x30e9945d free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x30f42fb2 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x30f6a8aa fget_raw +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x315322f1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3158198e netdev_update_features +EXPORT_SYMBOL vmlinux 0x3158bad2 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x316d4a7f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x317f0837 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x318ca64f nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x31924d38 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31b39f66 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x31bffc0c zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x31dc5d6d page_pool_destroy +EXPORT_SYMBOL vmlinux 0x31eebfcb udp_set_csum +EXPORT_SYMBOL vmlinux 0x31ef7686 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x32046af3 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x3209efe9 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x321ce9c9 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322b8812 follow_down_one +EXPORT_SYMBOL vmlinux 0x323267e5 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x3234a906 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x32372954 inet_del_offload +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x323e54cc fb_show_logo +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x324de467 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x324e10db of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x32788770 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32995741 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x32a0f445 d_drop +EXPORT_SYMBOL vmlinux 0x32a25108 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x32a8a257 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x32b12568 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x32b4ead7 migrate_page_states +EXPORT_SYMBOL vmlinux 0x32c5f7c9 secpath_set +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e82757 tcf_register_action +EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp +EXPORT_SYMBOL vmlinux 0x32fc03bf __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x3319133e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x331bea0d current_time +EXPORT_SYMBOL vmlinux 0x332488b3 phy_device_create +EXPORT_SYMBOL vmlinux 0x3331e032 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3334319c mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x333aad2e processor +EXPORT_SYMBOL vmlinux 0x3367e547 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x337e1aff nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x338714e1 folio_write_one +EXPORT_SYMBOL vmlinux 0x33a57f54 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x33bddf11 param_ops_short +EXPORT_SYMBOL vmlinux 0x33c5b4d4 dquot_get_state +EXPORT_SYMBOL vmlinux 0x33c680bf dump_align +EXPORT_SYMBOL vmlinux 0x33cbf40d iterate_fd +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33e3c671 dm_mq_kick_requeue_list +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 0x3423e9b6 follow_down +EXPORT_SYMBOL vmlinux 0x343ddc9f netif_rx +EXPORT_SYMBOL vmlinux 0x344a6c90 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x34608a5e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x34666c3b phy_write_mmd +EXPORT_SYMBOL vmlinux 0x34670f72 __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x346b56dc snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a31d64 dump_skip +EXPORT_SYMBOL vmlinux 0x34bc171f flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x34c068dd ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x34c3d2d7 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34d7900d uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x35089160 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352c05d9 release_resource +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x353ed6f5 contig_page_data +EXPORT_SYMBOL vmlinux 0x3554888a buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35665c61 seq_open_private +EXPORT_SYMBOL vmlinux 0x3569bc98 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x357ff594 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x359ab566 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x359ba6ae ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x35a78bfe csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ab6e60 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x35eb47bb get_cached_acl +EXPORT_SYMBOL vmlinux 0x35f47c9b napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x36050803 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x3628b422 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x362c2689 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x364c1f07 get_user_pages +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36655728 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x36669fa4 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x3685dcb4 vm_event_states +EXPORT_SYMBOL vmlinux 0x36869011 bio_add_page +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36b9c372 file_update_time +EXPORT_SYMBOL vmlinux 0x36c1ba94 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x36d64630 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x36e5a52c __sock_create +EXPORT_SYMBOL vmlinux 0x3711470a stop_tty +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x3725c02a xp_free +EXPORT_SYMBOL vmlinux 0x373fe48c __kfree_skb +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x37681ffd put_fs_context +EXPORT_SYMBOL vmlinux 0x377126fb nand_create_bbt +EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x37887591 mmc_start_request +EXPORT_SYMBOL vmlinux 0x378946bf rproc_boot +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37988e62 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x37a195a5 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c19b1b __register_nls +EXPORT_SYMBOL vmlinux 0x37c3a166 kern_path_create +EXPORT_SYMBOL vmlinux 0x37d4b386 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x37db4bb7 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37dd56cb input_free_device +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3803845e of_match_node +EXPORT_SYMBOL vmlinux 0x38076dc0 d_alloc +EXPORT_SYMBOL vmlinux 0x380ece03 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3829229d tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x38371995 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38675415 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x3877c490 jbd2_journal_try_to_free_buffers +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 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bc4d3b _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x38c10453 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x38d2de7b blk_start_plug +EXPORT_SYMBOL vmlinux 0x38d5ba34 request_key_rcu +EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x38f14936 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x38f37da7 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x391ce15f _dev_err +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394ec850 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x39573b3a prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x395c82a1 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x397e0ec0 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x398230f7 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ede44 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x39abf199 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x39b3e109 mmc_add_host +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b57bc1 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x39b623ea folio_mapping +EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39bfc2c5 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39e3706d __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x39e52b74 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x39ec85cc tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x39f0fd3a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x39f9627a security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x3a00a826 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3a4c323f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x3a4ed65d nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5616d3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x3a74d980 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3a7b83ca scsi_device_put +EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold +EXPORT_SYMBOL vmlinux 0x3a8b9aa2 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x3a8c821c dquot_disable +EXPORT_SYMBOL vmlinux 0x3ab0c447 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3ab41aca path_is_under +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac124ed kernel_param_lock +EXPORT_SYMBOL vmlinux 0x3ac78b1d __ip_options_compile +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae62743 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3ae78da0 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x3b0c6079 kset_unregister +EXPORT_SYMBOL vmlinux 0x3b1f3f38 ping_prot +EXPORT_SYMBOL vmlinux 0x3b2641e0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b31886c remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b5a3387 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b644e9f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x3b67a8d5 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b71cb00 filemap_flush +EXPORT_SYMBOL vmlinux 0x3b7fded2 kthread_bind +EXPORT_SYMBOL vmlinux 0x3bbe3055 __skb_checksum +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3be10562 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf5d5df serio_bus +EXPORT_SYMBOL vmlinux 0x3bf81e9c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c186490 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x3c1a2298 iget5_locked +EXPORT_SYMBOL vmlinux 0x3c1d4506 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x3c24318c __f_setown +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c5fb328 proc_mkdir +EXPORT_SYMBOL vmlinux 0x3c7950d3 devm_ioremap +EXPORT_SYMBOL vmlinux 0x3c7aac35 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3c7c8187 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x3c82f0f4 rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3c923b5d snd_component_add +EXPORT_SYMBOL vmlinux 0x3c9ea67e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x3cc2c2a2 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x3cc96af7 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x3cd32e20 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3cd4b289 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x3cde93f6 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce73b91 make_kgid +EXPORT_SYMBOL vmlinux 0x3d02fc09 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x3d08ea9a qdisc_reset +EXPORT_SYMBOL vmlinux 0x3d0e62ce posix_test_lock +EXPORT_SYMBOL vmlinux 0x3d30a204 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d3ce2a5 sg_miter_next +EXPORT_SYMBOL vmlinux 0x3d3fcf2a wireless_send_event +EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array +EXPORT_SYMBOL vmlinux 0x3d4abd32 ip_defrag +EXPORT_SYMBOL vmlinux 0x3d5d0178 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x3d66535f inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3d765041 key_task_permission +EXPORT_SYMBOL vmlinux 0x3d96bf39 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x3da0f707 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x3db77ba7 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce5078 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x3dcf1ffa __wake_up +EXPORT_SYMBOL vmlinux 0x3dd878a0 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x3de6380c dcb_getapp +EXPORT_SYMBOL vmlinux 0x3df853bf passthru_features_check +EXPORT_SYMBOL vmlinux 0x3dfbe4c2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfca719 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x3e0974d6 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x3e0f5883 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x3e1c3c0f scsi_host_get +EXPORT_SYMBOL vmlinux 0x3e3853fa vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e46e0b6 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x3e503e24 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x3e57eaef __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x3e6689ad seq_open +EXPORT_SYMBOL vmlinux 0x3e7a0bba vfs_create_mount +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e94aa98 framebuffer_release +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ef1b3fd vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x3ef6f8b3 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f074439 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x3f0d693b hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3f0f452f inode_update_time +EXPORT_SYMBOL vmlinux 0x3f140258 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x3f18fca2 wake_up_process +EXPORT_SYMBOL vmlinux 0x3f1f7b24 inet6_release +EXPORT_SYMBOL vmlinux 0x3f266dad misc_deregister +EXPORT_SYMBOL vmlinux 0x3f392889 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f59a6c7 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f635eb7 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fb4a21d xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x3fbab01a snd_timer_continue +EXPORT_SYMBOL vmlinux 0x3fca0f4f inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe71364 amba_release_regions +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3ff05f1b ihold +EXPORT_SYMBOL vmlinux 0x3ff2fd7a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3ffce4ca __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x40021556 bio_reset +EXPORT_SYMBOL vmlinux 0x40081913 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x4011c58c kernel_bind +EXPORT_SYMBOL vmlinux 0x401ad1c1 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x401c160e build_skb_around +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x403b5c15 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x404c4ee9 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x40576ae0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4078dcfd poll_freewait +EXPORT_SYMBOL vmlinux 0x40814f4f page_pool_create +EXPORT_SYMBOL vmlinux 0x40874c11 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x40966a5a inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409d2f49 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b0797d simple_map_init +EXPORT_SYMBOL vmlinux 0x40b50b7e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40c13b33 vme_irq_free +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 0x40e25f92 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x40e5f8de rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f225b3 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x40fef532 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x40ff0215 find_vma +EXPORT_SYMBOL vmlinux 0x4111b8d7 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x411585be ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x411aa3ea blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4133d24a mdio_driver_register +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x415c682f iov_iter_discard +EXPORT_SYMBOL vmlinux 0x416c9187 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41901707 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x4192b43d init_task +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41c1c5a2 genl_notify +EXPORT_SYMBOL vmlinux 0x41c80163 proc_symlink +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41ec79c9 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x41ee474c tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x41f288bd blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x421a05cc sock_efree +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x42201cdd dma_supported +EXPORT_SYMBOL vmlinux 0x422974c8 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x42425642 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x42848567 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x428a473b mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x42915379 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x42a267bc d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x42a53102 sock_no_bind +EXPORT_SYMBOL vmlinux 0x42ae54bb devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x42cd4d80 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x42defa04 dst_discard_out +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f621de xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431e4cd0 cont_write_begin +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432722ba param_ops_ushort +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433b6678 dev_load +EXPORT_SYMBOL vmlinux 0x433f20b1 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x433fb25d vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435a823c inet_accept +EXPORT_SYMBOL vmlinux 0x435bd2ba dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x436638f2 configfs_register_group +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x4382fb35 d_tmpfile +EXPORT_SYMBOL vmlinux 0x4384eb42 __release_region +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438980b0 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x43a415af unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x43aa1414 fb_pan_display +EXPORT_SYMBOL vmlinux 0x43b646db uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x43ca8b3b netdev_crit +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d42131 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x43d73570 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds +EXPORT_SYMBOL vmlinux 0x43eca0a4 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fe83ed ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x44003e36 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443870e6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x4443f9b5 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4445f2a1 sock_set_priority +EXPORT_SYMBOL vmlinux 0x44460096 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x44525844 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x445eb2ce inet_protos +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 0x448d3c80 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x44a312b1 __pagevec_release +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44bb520e tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x44c0b82b __do_once_done +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44d6a890 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e07d09 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e6ca93 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x45275539 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452c91fd snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x452ec34c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45684026 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458d6b5e generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x458dd351 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45d8ff01 mii_link_ok +EXPORT_SYMBOL vmlinux 0x45e22881 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x45e90a03 simple_get_link +EXPORT_SYMBOL vmlinux 0x45f5ec83 genphy_read_status +EXPORT_SYMBOL vmlinux 0x45f8ccd6 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x45fab664 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x46047bf2 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4615388d snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x461989cb blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x461aec41 param_ops_string +EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46357e25 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x464eda7d d_move +EXPORT_SYMBOL vmlinux 0x464f87e5 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x465a407a ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x465f950a pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x4663eee5 logfc +EXPORT_SYMBOL vmlinux 0x46642796 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x466657ec phy_disconnect +EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x46709dd7 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x46717090 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x4675feb7 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46b5b23d udp_seq_stop +EXPORT_SYMBOL vmlinux 0x46b76610 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x46cbe901 param_set_copystring +EXPORT_SYMBOL vmlinux 0x46ce36d4 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46f54cb3 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x46fdfafa page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4708b106 inet_shutdown +EXPORT_SYMBOL vmlinux 0x47201a81 is_bad_inode +EXPORT_SYMBOL vmlinux 0x4727c50b unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x4727e082 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x474dc49d fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x475d84ef gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x476450a4 dev_add_offload +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x47857067 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4791cb02 end_page_writeback +EXPORT_SYMBOL vmlinux 0x47a0167f scsi_register_interface +EXPORT_SYMBOL vmlinux 0x47a6bfa9 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x47add33a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47cf2315 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x47d939a0 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47ebe467 may_umount_tree +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48363efb pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x4849e50f md_reload_sb +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x48572fa4 __module_get +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486132f6 kernel_accept +EXPORT_SYMBOL vmlinux 0x486135b8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x4872a207 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x489e8ca1 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48caa689 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49127ab0 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x4931d3aa inet6_offloads +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4957ae48 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x495d3119 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x498bb131 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x498cc7fe input_grab_device +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x49a0b37e blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x49a1787c backlight_force_update +EXPORT_SYMBOL vmlinux 0x49bc7ee1 blk_put_queue +EXPORT_SYMBOL vmlinux 0x49d45274 sk_capable +EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49ecae8f snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f2f256 __inet_hash +EXPORT_SYMBOL vmlinux 0x4a02f57d ppp_input_error +EXPORT_SYMBOL vmlinux 0x4a078d8e xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x4a3cbc8c phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a3fb0e3 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x4a4426c5 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x4a57ac72 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x4a6dbe1e folio_mapped +EXPORT_SYMBOL vmlinux 0x4a935f5d jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aa66311 mmc_request_done +EXPORT_SYMBOL vmlinux 0x4ad80c36 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x4adc4d38 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4ae262b6 km_state_expired +EXPORT_SYMBOL vmlinux 0x4ae79632 input_register_handler +EXPORT_SYMBOL vmlinux 0x4ae8ee66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x4aeb183d mmc_free_host +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b20a4d8 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4b23c734 config_item_get +EXPORT_SYMBOL vmlinux 0x4b2dc7d2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x4b3d303d pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x4b3f89c0 drop_nlink +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b77708b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4b7878ee tcp_seq_next +EXPORT_SYMBOL vmlinux 0x4b8c8892 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x4b8cf67d dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x4b9b6d0f module_put +EXPORT_SYMBOL vmlinux 0x4be61028 sock_alloc +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef0cdc cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4c0006aa mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x4c0330f9 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x4c074a4f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x4c07a1c4 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x4c11a829 save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x4c15d4c0 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c275fcb generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c3361cf phy_get_pause +EXPORT_SYMBOL vmlinux 0x4c36998a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c6f544a scsi_done_direct +EXPORT_SYMBOL vmlinux 0x4c7f214a send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x4c83617b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x4c8480bd address_space_init_once +EXPORT_SYMBOL vmlinux 0x4c892998 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x4caef1e6 device_add_disk +EXPORT_SYMBOL vmlinux 0x4cb3a838 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cc93f86 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x4cd5532f __d_lookup_done +EXPORT_SYMBOL vmlinux 0x4cd6223e dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4d07c092 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0db718 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4d261499 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x4d2f2a5d devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d47b94e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x4d4c2ada vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d65dc97 param_set_bint +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d8d76f8 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x4d93e935 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4de63d04 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e11eb63 seq_write +EXPORT_SYMBOL vmlinux 0x4e16a10b file_ns_capable +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3dc967 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x4e420d49 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4e482e4f nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e73cc63 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4e7832b4 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x4e7e6115 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x4e80d27c ucc_fast_enable +EXPORT_SYMBOL vmlinux 0x4e9d59f8 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ecc766f mount_nodev +EXPORT_SYMBOL vmlinux 0x4ed2ca95 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x4ee13e66 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4f019976 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f368a4d flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x4f4d6200 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4fcb3859 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x4fd995e7 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4fe423ff __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x4fe7acf0 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4ffcc17f fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x502a308f eth_mac_addr +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x502e18ce of_device_register +EXPORT_SYMBOL vmlinux 0x5031d35d vga_put +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5047100f vfs_rmdir +EXPORT_SYMBOL vmlinux 0x5056b3e0 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x506e5479 __icmp_send +EXPORT_SYMBOL vmlinux 0x5077e828 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x507bfa26 from_kuid +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x5098ae9c of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50a65769 rproc_del +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bd2e0a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d1e38b tcp_time_wait +EXPORT_SYMBOL vmlinux 0x50d2efdb key_alloc +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50e3b709 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x50e5d843 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x50e89f7e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x50f28458 update_devfreq +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x50fd73f2 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x510737ee flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x5135c2af __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5138de94 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x51441468 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5148e6fe dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x51634115 da903x_query_status +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x517018a2 sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x5177bd55 bio_put +EXPORT_SYMBOL vmlinux 0x51809782 softnet_data +EXPORT_SYMBOL vmlinux 0x518990d2 pci_pme_active +EXPORT_SYMBOL vmlinux 0x519e9ca1 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x519f4108 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x51a23fdc scsi_device_resume +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51ad65c4 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x51df0484 pps_register_source +EXPORT_SYMBOL vmlinux 0x51dff1b2 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x51e4e183 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51ed7c89 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x51f1829b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x521cd3f8 read_cache_page +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x5273f8f9 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x52759669 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x528a38b6 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52ad9f96 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x52b6ea5c register_key_type +EXPORT_SYMBOL vmlinux 0x52cf212f forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x52cf3540 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dc157d register_filesystem +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52efe58d page_mapping +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530b1fcc rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x5318bdbd del_gendisk +EXPORT_SYMBOL vmlinux 0x533428f9 genphy_update_link +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x534815d6 security_path_unlink +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x53642f19 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x537f71c7 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x53917375 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x5393a16d snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x53a598ba snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x53a93dc9 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53af1de3 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x53c5f44d sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x53f11a3a inet_frags_fini +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5404f003 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x540c5907 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x5421a4dc blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x545274f2 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x54578ce6 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x5462b0fa devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x54879238 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x548dd49e pci_get_class +EXPORT_SYMBOL vmlinux 0x5496b202 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54c5f860 tty_unlock +EXPORT_SYMBOL vmlinux 0x54c67293 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x54d9151b of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x54e21eee udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f6c2a3 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5509addf cdev_add +EXPORT_SYMBOL vmlinux 0x550fd3bd sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5530c2b3 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x553ac2e7 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x55461e94 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x55726e50 from_kgid +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55995c39 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x55abc4b8 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x55ba53eb ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x55d7dd4c eth_validate_addr +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e5de40 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x562193a0 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563a9e08 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x563bedda cfb_imageblit +EXPORT_SYMBOL vmlinux 0x56498087 paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x567a7cd5 do_map_probe +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56872ef1 devm_memunmap +EXPORT_SYMBOL vmlinux 0x568c180d xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x569e7978 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e29502 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x56e6568b of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x5724ad7c pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x57282e22 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x572adefb tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x57341933 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x57387320 __scm_send +EXPORT_SYMBOL vmlinux 0x5738e979 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x573e2a41 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x57432a9e mdiobus_write +EXPORT_SYMBOL vmlinux 0x5744124b xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577255e0 config_item_put +EXPORT_SYMBOL vmlinux 0x577997d7 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5785ee42 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x57ae56aa mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d1a915 mdio_device_create +EXPORT_SYMBOL vmlinux 0x57d4c38e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57e99d84 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57fde6a5 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x580e65cb __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x58175c8d fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581cde4e up +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5826b0c4 snd_device_new +EXPORT_SYMBOL vmlinux 0x582974d3 __devm_release_region +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5842dbdf tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5855b740 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5855f0c5 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x5887ec77 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b063c2 param_set_ullong +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bb0d1e tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x593269ba fput +EXPORT_SYMBOL vmlinux 0x59431b19 ipv4_specific +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59604fb7 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x59970928 sync_filesystem +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 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d93e30 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x59db72cc cqhci_deactivate +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e77aed tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x59edcda1 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0e9e36 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x5a120d20 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a172558 pci_release_regions +EXPORT_SYMBOL vmlinux 0x5a292f55 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x5a297cda set_nlink +EXPORT_SYMBOL vmlinux 0x5a3e3975 snd_timer_close +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a612b6a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x5a6a2c49 pci_select_bars +EXPORT_SYMBOL vmlinux 0x5a767aaf ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x5a7cf9c2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x5a8bb165 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x5a8cde7e phy_device_register +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa1fbe5 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x5aa3c254 padata_free_shell +EXPORT_SYMBOL vmlinux 0x5ab29095 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x5ab2e8bc simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x5ac1e4a9 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x5ac9bee1 generic_write_end +EXPORT_SYMBOL vmlinux 0x5acb898a backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae1d06d dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x5ae7ab72 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x5aef0010 of_get_property +EXPORT_SYMBOL vmlinux 0x5af23373 generic_permission +EXPORT_SYMBOL vmlinux 0x5af9d0fd kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x5b00f90c make_kuid +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b0f3058 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x5b26bc58 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x5b2b160e d_exact_alias +EXPORT_SYMBOL vmlinux 0x5b2ddacf netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x5b2fbf46 key_move +EXPORT_SYMBOL vmlinux 0x5b3f40c7 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5b46c27f fddi_type_trans +EXPORT_SYMBOL vmlinux 0x5b5830a7 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x5b7b42a1 noop_fsync +EXPORT_SYMBOL vmlinux 0x5b8dab69 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5ba9632e bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bc9ee88 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5bd44fa3 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bd7f2b5 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf8f351 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x5bf922e8 bdevname +EXPORT_SYMBOL vmlinux 0x5c08c585 set_anon_super +EXPORT_SYMBOL vmlinux 0x5c08df93 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x5c0955bf add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5c12dad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x5c14ad91 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x5c150d13 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5c16947f register_netdev +EXPORT_SYMBOL vmlinux 0x5c1e2454 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x5c1f470e ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5c2256d9 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x5c2300dc do_SAK +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c44138c _dev_crit +EXPORT_SYMBOL vmlinux 0x5c4aa598 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x5c5069d9 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x5c645437 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c83f880 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c979e3c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cd7875a block_read_full_folio +EXPORT_SYMBOL vmlinux 0x5cda1478 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x5ce81e77 audit_log +EXPORT_SYMBOL vmlinux 0x5cf309fe tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d1d6ae5 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d3f1adc truncate_setsize +EXPORT_SYMBOL vmlinux 0x5d46c5ea dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d49d8da cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x5d4b68c0 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x5d4d81d7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x5d50b68d posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5d5ec929 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x5d5eeb84 pci_iounmap +EXPORT_SYMBOL vmlinux 0x5d63e749 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x5d7200c0 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5da0c832 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x5dba71d7 sg_last +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd9543c inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5ddba986 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x5df091f9 setattr_prepare +EXPORT_SYMBOL vmlinux 0x5df385c7 load_nls_default +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1318be xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x5e148b86 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x5e171310 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x5e207aa5 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e38c830 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x5e392a05 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x5e40c294 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x5e4dbcff pps_event +EXPORT_SYMBOL vmlinux 0x5e556f87 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x5e689fde con_is_visible +EXPORT_SYMBOL vmlinux 0x5e6de149 unpin_user_page +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0x5e7e27eb writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5e7e8b42 devm_clk_put +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e8820d2 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x5e8c8545 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97b2fe __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x5ea5c3b9 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5eac7d8c param_get_charp +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec88bf6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed2d33f new_inode +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5edebbaf ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x5f01f9c5 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x5f091a67 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0e76ee netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x5f1f3bea phy_find_first +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f3b74ce blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x5f4864e2 eth_header_parse +EXPORT_SYMBOL vmlinux 0x5f4999d3 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x5f4f5c8b simple_release_fs +EXPORT_SYMBOL vmlinux 0x5f52e84d qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f777a8d netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x5f80763a dst_dev_put +EXPORT_SYMBOL vmlinux 0x5f97a7ca nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x5fa2c338 inet_frag_find +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fb79bae dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x5fbc8d12 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x5fe05a84 f_setown +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff6bceb dev_uc_add +EXPORT_SYMBOL vmlinux 0x6000fffc blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x6003b632 sk_wait_data +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600de027 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60290ed3 vif_device_init +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x602ce7df phy_aneg_done +EXPORT_SYMBOL vmlinux 0x602ea605 param_get_uint +EXPORT_SYMBOL vmlinux 0x6030cc90 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x60347d97 bio_init +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60371ea2 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x603d0bcd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x60533b1a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x60535ba6 __ps2_command +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x606368ff vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x608a691b page_address +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6098f7ed cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609d8ab5 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a09884 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60bf45a2 of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60cbaf35 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60d9ef42 tty_port_put +EXPORT_SYMBOL vmlinux 0x60e02309 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x60eb9afe arp_xmit +EXPORT_SYMBOL vmlinux 0x60f58d78 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x61073748 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x613d0028 seq_lseek +EXPORT_SYMBOL vmlinux 0x6147fbda of_get_mac_address +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x61587c7f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x61590de7 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615ce16c page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x6165d7f9 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x617d72a4 pci_request_region +EXPORT_SYMBOL vmlinux 0x617f8b7d kill_block_super +EXPORT_SYMBOL vmlinux 0x619ab93e xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x61a12e06 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x61aa94cd dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x61b02813 dev_trans_start +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bbf17e uart_update_timeout +EXPORT_SYMBOL vmlinux 0x61bf1eb2 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x61c4352d blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61ca84f6 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x61df398d fifo_set_limit +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f060ad nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6215fa63 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x62168bdc kthread_stop +EXPORT_SYMBOL vmlinux 0x621b9343 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x621f4d54 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622f1b79 block_commit_write +EXPORT_SYMBOL vmlinux 0x624bd99f blk_queue_split +EXPORT_SYMBOL vmlinux 0x62678fa1 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6270820b dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62791110 qdisc_put +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628a79e7 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x628c4e73 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x62973dfe snd_timer_notify +EXPORT_SYMBOL vmlinux 0x62b9567c override_creds +EXPORT_SYMBOL vmlinux 0x62d85b41 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x62e8d280 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x62eb7853 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x62f259ac snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x630240fc jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x630da232 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319e96b xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632a27d1 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x6344c1ad ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0x63652c71 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x6367976c configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x638eaefb phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x63902407 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aa849d vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c892b8 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x63e1a4ca vlan_for_each +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f17622 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x63ff81cd pci_scan_slot +EXPORT_SYMBOL vmlinux 0x640f15c5 skb_eth_push +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64236a28 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x643c0676 input_match_device_id +EXPORT_SYMBOL vmlinux 0x6442e6c6 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6458ea2a locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x646415e4 phy_attached_print +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x6483760d inet_stream_ops +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64ae1788 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x64b7814a param_ops_ulong +EXPORT_SYMBOL vmlinux 0x64fcf314 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x651005b2 make_bad_inode +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 0x651bd6ea devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x653d6122 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x65404646 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654386d2 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x65460871 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654b855e rproc_put +EXPORT_SYMBOL vmlinux 0x655ff853 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x657b2e09 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658f0f75 d_splice_alias +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a84860 kernel_read +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e29ee7 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x65f61ca7 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x662074a4 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x6620801a rproc_detach +EXPORT_SYMBOL vmlinux 0x66231326 km_new_mapping +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x664da36e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x665052b1 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x6657feb3 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x666604c8 cad_pid +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666d062f pci_choose_state +EXPORT_SYMBOL vmlinux 0x666d3aae genlmsg_put +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6674bd14 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0x667e89a2 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x66ac2163 keyring_search +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66b236e4 free_task +EXPORT_SYMBOL vmlinux 0x66d3f673 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x66e82193 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x66ef8538 sk_alloc +EXPORT_SYMBOL vmlinux 0x6706adc0 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x67092819 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x670b6d15 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x67136e84 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x67200e81 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x67393f1b page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x674911bf mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675125a4 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67759b5c kobject_del +EXPORT_SYMBOL vmlinux 0x67a7246d release_sock +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b616eb config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b8a54d param_get_invbool +EXPORT_SYMBOL vmlinux 0x67bb66b6 fasync_helper +EXPORT_SYMBOL vmlinux 0x67ce16a4 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x67d27f1e rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x67e07440 d_obtain_root +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x67eceb09 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x67effda8 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x6810696f kernel_write +EXPORT_SYMBOL vmlinux 0x683a670c pci_dev_get +EXPORT_SYMBOL vmlinux 0x6845c537 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688fd0cb bpf_link_put +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68c497c6 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x68c87f60 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x68d55655 vme_bus_type +EXPORT_SYMBOL vmlinux 0x68db1051 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x68de9516 kunmap_high +EXPORT_SYMBOL vmlinux 0x68e19ea1 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x68e61f15 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x68ea01f7 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x68f8b6e9 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x68f98efd simple_open +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6917f8bc netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x692094a7 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x69565a53 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x695dd7a6 snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697a56a6 uart_match_port +EXPORT_SYMBOL vmlinux 0x699c6b81 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x69ae2c7f bio_chain +EXPORT_SYMBOL vmlinux 0x69bc5f95 km_policy_expired +EXPORT_SYMBOL vmlinux 0x69c45533 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69df02f9 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a048dd7 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x6a0706d4 cpu_user +EXPORT_SYMBOL vmlinux 0x6a16523f dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x6a25a2d4 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x6a59bbeb done_path_create +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a6bf76d mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a6e22a0 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x6a790acf write_cache_pages +EXPORT_SYMBOL vmlinux 0x6a7d281a filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x6a83377f __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x6a8889fe neigh_for_each +EXPORT_SYMBOL vmlinux 0x6a89e53d file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6a9391b4 dst_destroy +EXPORT_SYMBOL vmlinux 0x6a9a06de nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6ab02d73 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6ac491da param_set_charp +EXPORT_SYMBOL vmlinux 0x6ac5b087 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad5d0ed linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x6ad6e024 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds +EXPORT_SYMBOL vmlinux 0x6ad80afa param_get_hexint +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6b0a24da __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3d6972 request_key_tag +EXPORT_SYMBOL vmlinux 0x6b48f7fc of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b67f49f __breadahead +EXPORT_SYMBOL vmlinux 0x6b77eaea jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b9a4525 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x6b9d980f finish_open +EXPORT_SYMBOL vmlinux 0x6ba13061 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x6bac0f4d pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x6bb8c16b serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc89da3 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x6bd1c72e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x6bef8402 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6bf0a055 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x6bf9c5d8 of_translate_address +EXPORT_SYMBOL vmlinux 0x6c03a782 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c5ff091 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c80e26d clear_nlink +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c854498 user_revoke +EXPORT_SYMBOL vmlinux 0x6c8d9bb6 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6c949e41 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x6c9d42d4 write_inode_now +EXPORT_SYMBOL vmlinux 0x6ca44d7a pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x6caaaf00 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x6caef131 ata_print_version +EXPORT_SYMBOL vmlinux 0x6cb05017 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cbce29b inode_permission +EXPORT_SYMBOL vmlinux 0x6ccac69d __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x6ccf947c input_register_device +EXPORT_SYMBOL vmlinux 0x6cd2eb1d tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x6cdff22b __brelse +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d02a72f page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6d1088b8 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d39ce42 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6d481afe snd_card_register +EXPORT_SYMBOL vmlinux 0x6d53f6a8 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x6d55f555 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x6d5c4b17 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6d5f06e1 ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d686182 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d98d9e0 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x6d9d5f67 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x6d9f2003 build_skb +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dca4a26 adjust_resource +EXPORT_SYMBOL vmlinux 0x6dca564f simple_setattr +EXPORT_SYMBOL vmlinux 0x6dcf1ce4 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds +EXPORT_SYMBOL vmlinux 0x6de938fe sock_kmalloc +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dff9fab padata_do_serial +EXPORT_SYMBOL vmlinux 0x6e23306f qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x6e3af01f netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e6def9f vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x6e70088f netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7d371e dcache_readdir +EXPORT_SYMBOL vmlinux 0x6e7df214 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6e8ca5f7 pci_restore_state +EXPORT_SYMBOL vmlinux 0x6e9d581c sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea64d1a register_md_personality +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ebcd28b __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6efe682a bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f059ebf __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x6f06fe62 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x6f0a0560 param_ops_bint +EXPORT_SYMBOL vmlinux 0x6f1b037f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x6f5fd617 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x6f734f57 netdev_err +EXPORT_SYMBOL vmlinux 0x6f746991 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f9a3416 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x6f9a4736 sock_no_connect +EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6faf1b8e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6fb2fad9 serio_open +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fc42109 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6fc8034a of_phy_find_device +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdb7027 vga_get +EXPORT_SYMBOL vmlinux 0x6fe2107d tcp_check_req +EXPORT_SYMBOL vmlinux 0x6ff4a778 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x6fff93ea i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70123aca pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x7013ce78 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x7016a6e9 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702a7ee2 mii_check_media +EXPORT_SYMBOL vmlinux 0x703b6bb4 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x703f6e47 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x705da535 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x706633b2 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7079cefc dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x70a19105 __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x70a2d1cd skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x70a342ee lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x70d43ccc vfs_get_super +EXPORT_SYMBOL vmlinux 0x70f9ece3 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7107567d make_kprojid +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x71207c81 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x71298cf8 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7137bb36 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x7153fdd6 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7159d4ce tcp_child_process +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x71656a0c scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x716b58cb ioport_resource +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7182a799 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x719c3d69 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a968f7 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x71b92a4a blk_execute_rq +EXPORT_SYMBOL vmlinux 0x71c33930 padata_free +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d37b88 add_to_pipe +EXPORT_SYMBOL vmlinux 0x71d935b2 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x71ef2f8c mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x71fe8c02 get_fs_type +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7206ea32 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7207221e netlink_net_capable +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720be098 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7216e3da ip_setsockopt +EXPORT_SYMBOL vmlinux 0x721ec013 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x722eb268 pci_request_regions +EXPORT_SYMBOL vmlinux 0x72436161 dm_register_target +EXPORT_SYMBOL vmlinux 0x725f2afe register_shrinker +EXPORT_SYMBOL vmlinux 0x727a3ffe of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x72831976 keyring_clear +EXPORT_SYMBOL vmlinux 0x728d68c5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x72acc8ef blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c8ff0a flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x72c90bea jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x72df40b3 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x72e4869c tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0x730b6399 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x730f5c97 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7310b20a __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73170413 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x7317790e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73401552 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7359948d vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x735e6ce6 pci_dev_put +EXPORT_SYMBOL vmlinux 0x73667310 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x737a951f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738bccc8 kobject_put +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x7399d4f6 dev_addr_add +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73bd4d88 tty_do_resize +EXPORT_SYMBOL vmlinux 0x73c56198 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x73c62162 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e29d7f phy_detach +EXPORT_SYMBOL vmlinux 0x740df8fc mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7411bf1e no_llseek +EXPORT_SYMBOL vmlinux 0x7412d96b backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x74192380 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x741fd49d jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x74465f42 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7451b933 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7464044a of_device_alloc +EXPORT_SYMBOL vmlinux 0x747b20ee vme_irq_request +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x748cc482 skb_seq_read +EXPORT_SYMBOL vmlinux 0x74ac158f __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x74b372ee proc_create_data +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c104d8 rtc_add_group +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cbc14a tcp_read_sock +EXPORT_SYMBOL vmlinux 0x74d883e7 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x74e08177 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f07b3c mii_check_link +EXPORT_SYMBOL vmlinux 0x74f8eb95 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7520c00e unregister_key_type +EXPORT_SYMBOL vmlinux 0x75216f66 sget_fc +EXPORT_SYMBOL vmlinux 0x75344eb9 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x75437897 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x755a41d3 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x755b9d3b sget +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x7577d053 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x757ac0ae cdrom_open +EXPORT_SYMBOL vmlinux 0x757e6313 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x7580d007 padata_alloc +EXPORT_SYMBOL vmlinux 0x75861ee7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x759a3da0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x759c1119 kernel_listen +EXPORT_SYMBOL vmlinux 0x75adf405 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x75b3b54e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x75b52d09 pcim_iomap +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c7111a __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x75cac60a bio_uninit +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75dc0c46 block_truncate_page +EXPORT_SYMBOL vmlinux 0x75e3f314 register_cdrom +EXPORT_SYMBOL vmlinux 0x75e48a97 touch_atime +EXPORT_SYMBOL vmlinux 0x75f05efc cqhci_resume +EXPORT_SYMBOL vmlinux 0x75f26fad pci_remove_bus +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b3199 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x7610c29f __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x762ca79f md_cluster_ops +EXPORT_SYMBOL vmlinux 0x7633a235 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x7643dff1 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7666cf1f nla_put +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766bb3f7 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x7671444e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x76739d31 mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a2cff0 rt6_lookup +EXPORT_SYMBOL vmlinux 0x76a5ccf1 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x76a92723 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x76ee43c2 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x77069553 empty_zero_page +EXPORT_SYMBOL vmlinux 0x770f081e __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x77179fc7 file_remove_privs +EXPORT_SYMBOL vmlinux 0x77303294 nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77331053 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x77378da6 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x7742efac __post_watch_notification +EXPORT_SYMBOL vmlinux 0x7767ae77 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x7773313d pci_release_resource +EXPORT_SYMBOL vmlinux 0x778da792 mount_bdev +EXPORT_SYMBOL vmlinux 0x7790b394 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x7792884f cdev_del +EXPORT_SYMBOL vmlinux 0x7793ba27 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x77b7a7da dec_node_page_state +EXPORT_SYMBOL vmlinux 0x77bae010 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d1082e put_ipc_ns +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x77fb37be memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x7800055b input_get_keycode +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7827d430 __break_lease +EXPORT_SYMBOL vmlinux 0x784b5bd4 gro_cells_init +EXPORT_SYMBOL vmlinux 0x784f2982 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x78546644 phy_error +EXPORT_SYMBOL vmlinux 0x785da817 skb_dequeue +EXPORT_SYMBOL vmlinux 0x786f150b noop_llseek +EXPORT_SYMBOL vmlinux 0x7874d2d0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x787a3141 dcb_setapp +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78943eab xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x789c1897 devm_free_irq +EXPORT_SYMBOL vmlinux 0x78a010cf xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b2f46d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78d16482 simple_write_begin +EXPORT_SYMBOL vmlinux 0x78d3767e netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e39fa0 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x791b2497 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x793c6bd4 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x79456942 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x79507121 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x795902d0 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x795f2299 __netif_rx +EXPORT_SYMBOL vmlinux 0x796083e2 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x79760c01 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7985fc35 netdev_warn +EXPORT_SYMBOL vmlinux 0x798c0f1b migrate_page_copy +EXPORT_SYMBOL vmlinux 0x79912b21 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x79be7dc1 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x79dad2b5 start_tty +EXPORT_SYMBOL vmlinux 0x79de38e8 tcf_block_put +EXPORT_SYMBOL vmlinux 0x79e2152f init_net +EXPORT_SYMBOL vmlinux 0x79e65ca2 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x79f02a0b scsi_device_get +EXPORT_SYMBOL vmlinux 0x79f1c36c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x79fd34d5 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0c1de0 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7a0cd7ba tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a387a07 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x7a39a051 udp_prot +EXPORT_SYMBOL vmlinux 0x7a3d848a __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a42fc0f genphy_suspend +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a44c048 thaw_super +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a607396 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x7a619ee4 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x7a6ce6e1 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x7a758c74 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7a780733 inet_listen +EXPORT_SYMBOL vmlinux 0x7a79b9f3 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7a8fe503 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa383bd dev_mc_sync +EXPORT_SYMBOL vmlinux 0x7aa48a8a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7aab9345 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7ab1781d __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7ab4ec54 param_get_byte +EXPORT_SYMBOL vmlinux 0x7ab7b695 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +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 0x7ae4c2a7 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7af0d992 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0e205f set_page_writeback +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2a8d26 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b325e24 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x7b46df96 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b646554 config_group_find_item +EXPORT_SYMBOL vmlinux 0x7b7bc447 vga_client_register +EXPORT_SYMBOL vmlinux 0x7b8aba58 d_set_d_op +EXPORT_SYMBOL vmlinux 0x7b97f7f3 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x7ba3df37 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bc6791b __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7bdd355b generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7c073633 dev_get_flags +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1c69be mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x7c26fd51 sgl_free_order +EXPORT_SYMBOL vmlinux 0x7c2a8997 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x7c2fd861 rproc_add +EXPORT_SYMBOL vmlinux 0x7c32ac57 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7c34faa3 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c55f36e get_watch_queue +EXPORT_SYMBOL vmlinux 0x7c72489e locks_remove_posix +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cdd846e noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x7cdeeb4d pgprot_user +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce28405 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x7ce3aaaa cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf93872 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d07944c vc_cons +EXPORT_SYMBOL vmlinux 0x7d09596b dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7d0a60c2 nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0x7d0d173a blk_integrity_register +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d26fe21 key_invalidate +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4fa30c mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7d51b0a2 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x7d6c2636 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x7d7115ec PageMovable +EXPORT_SYMBOL vmlinux 0x7d7b5749 param_ops_byte +EXPORT_SYMBOL vmlinux 0x7d7be9d1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7d7d9f46 deactivate_super +EXPORT_SYMBOL vmlinux 0x7d905f42 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7d9dc71d security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc983e2 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x7dccd87b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x7dcf77bb jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x7dda8e13 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e10823b ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x7e19b1e3 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x7e2fa0f6 nf_log_unset +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e406f29 d_rehash +EXPORT_SYMBOL vmlinux 0x7e6e4262 param_get_bool +EXPORT_SYMBOL vmlinux 0x7e70da4d seq_bprintf +EXPORT_SYMBOL vmlinux 0x7e71fb81 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7ead590d vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7eb6c0b1 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ecd8edc blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x7ef2936e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7efd8c2a generic_read_dir +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0b4d59 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f34d820 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x7f485084 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x7f4fa2f7 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7f5635f8 filp_open +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f72a2b5 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7cff2b sock_create_kern +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f8ba8ab inet_addr_type +EXPORT_SYMBOL vmlinux 0x7f946a41 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x7fb6ed5a seq_dentry +EXPORT_SYMBOL vmlinux 0x7fbbf891 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x7fc0da63 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd84361 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff66f79 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff I_BDEV +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x7fffffff __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7fffffff __SetPageMovable +EXPORT_SYMBOL vmlinux 0x7fffffff ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7fffffff ___ratelimit +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_lasr +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0x7fffffff __alloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff __alloc_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x7fffffff __ashrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __bio_advance +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_clear +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_or +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_xor +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x7fffffff __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7fffffff __block_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff __block_write_full_page +EXPORT_SYMBOL vmlinux 0x7fffffff __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7fffffff __bread_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff __bswapsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __cap_empty_set +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x7fffffff __check_object_size +EXPORT_SYMBOL vmlinux 0x7fffffff __check_sticky +EXPORT_SYMBOL vmlinux 0x7fffffff __clzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __d_drop +EXPORT_SYMBOL vmlinux 0x7fffffff __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __destroy_inode +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_slow_start +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x7fffffff __fdget +EXPORT_SYMBOL vmlinux 0x7fffffff __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7fffffff __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x7fffffff __flush_workqueue +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff __fput_sync +EXPORT_SYMBOL vmlinux 0x7fffffff __fs_parse +EXPORT_SYMBOL vmlinux 0x7fffffff __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7fffffff __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x7fffffff __genradix_ptr +EXPORT_SYMBOL vmlinux 0x7fffffff __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_2 +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_8 +EXPORT_SYMBOL vmlinux 0x7fffffff __getblk_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_init +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x7fffffff __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7fffffff __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x7fffffff __invalidate_device +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7fffffff __kfence_pool +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_free +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_in +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0x7fffffff __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x7fffffff __kmap_to_page +EXPORT_SYMBOL vmlinux 0x7fffffff __lshrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x7fffffff __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7fffffff __memset64 +EXPORT_SYMBOL vmlinux 0x7fffffff __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7fffffff __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x7fffffff __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x7fffffff __muldi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mutex_init +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x7fffffff __next_node_in +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff __num_online_cpus +EXPORT_SYMBOL vmlinux 0x7fffffff __of_get_address +EXPORT_SYMBOL vmlinux 0x7fffffff __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x7fffffff __pci_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x7fffffff __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x7fffffff __phy_resume +EXPORT_SYMBOL vmlinux 0x7fffffff __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x7fffffff __posix_acl_create +EXPORT_SYMBOL vmlinux 0x7fffffff __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0x7fffffff __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0x7fffffff __put_cred +EXPORT_SYMBOL vmlinux 0x7fffffff __put_page +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_1 +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_2 +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_4 +EXPORT_SYMBOL vmlinux 0x7fffffff __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x7fffffff __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsb +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsl +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsw +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesb +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesl +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesw +EXPORT_SYMBOL vmlinux 0x7fffffff __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x7fffffff __readwrite_bug +EXPORT_SYMBOL vmlinux 0x7fffffff __register_binfmt +EXPORT_SYMBOL vmlinux 0x7fffffff __register_chrdev +EXPORT_SYMBOL vmlinux 0x7fffffff __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7fffffff __request_module +EXPORT_SYMBOL vmlinux 0x7fffffff __request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_execute +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7fffffff __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7fffffff __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x7fffffff __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0x7fffffff __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_pad +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7fffffff __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7fffffff __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x7fffffff __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7fffffff __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0x7fffffff __udivsi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __udp_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff __umodsi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff __vmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff __wait_on_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0x7fffffff __write_overflow_field +EXPORT_SYMBOL vmlinux 0x7fffffff __xa_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __xa_erase +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _bcd2bin +EXPORT_SYMBOL vmlinux 0x7fffffff _bin2bcd +EXPORT_SYMBOL vmlinux 0x7fffffff _copy_to_iter +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_alert +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_warn +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_last_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _kstrtol +EXPORT_SYMBOL vmlinux 0x7fffffff _local_bh_enable +EXPORT_SYMBOL vmlinux 0x7fffffff _memset_io +EXPORT_SYMBOL vmlinux 0x7fffffff _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0x7fffffff _printk +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0x7fffffff _test_and_change_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _totalram_pages +EXPORT_SYMBOL vmlinux 0x7fffffff abort +EXPORT_SYMBOL vmlinux 0x7fffffff add_device_randomness +EXPORT_SYMBOL vmlinux 0x7fffffff add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7fffffff add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x7fffffff add_wait_queue +EXPORT_SYMBOL vmlinux 0x7fffffff add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_fddidev +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7fffffff amba_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff amba_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff amba_request_regions +EXPORT_SYMBOL vmlinux 0x7fffffff argv_free +EXPORT_SYMBOL vmlinux 0x7fffffff arm_clear_user +EXPORT_SYMBOL vmlinux 0x7fffffff arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff arm_delay_ops +EXPORT_SYMBOL vmlinux 0x7fffffff arm_dma_ops +EXPORT_SYMBOL vmlinux 0x7fffffff arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0x7fffffff arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x7fffffff arp_send +EXPORT_SYMBOL vmlinux 0x7fffffff atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff atomic_io_modify +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_end +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_format +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_start +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_subject_context +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_task_context +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_task_info +EXPORT_SYMBOL vmlinux 0x7fffffff autoremove_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff avenrun +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x7fffffff bcmp +EXPORT_SYMBOL vmlinux 0x7fffffff bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x7fffffff bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x7fffffff bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_put +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_register +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x7fffffff begin_new_exec +EXPORT_SYMBOL vmlinux 0x7fffffff bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff bh_submit_read +EXPORT_SYMBOL vmlinux 0x7fffffff bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_copy_data +EXPORT_SYMBOL vmlinux 0x7fffffff bio_endio +EXPORT_SYMBOL vmlinux 0x7fffffff bio_init_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x7fffffff bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x7fffffff bio_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_exit +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_init +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7fffffff bit_waitqueue +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_bitremap +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_free +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_parse +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_remap +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff blackhole_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff blake2s_compress +EXPORT_SYMBOL vmlinux 0x7fffffff blake2s_final +EXPORT_SYMBOL vmlinux 0x7fffffff blk_check_plugged +EXPORT_SYMBOL vmlinux 0x7fffffff blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x7fffffff blk_get_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x7fffffff blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_init +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x7fffffff blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7fffffff block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_full_page +EXPORT_SYMBOL vmlinux 0x7fffffff bmap +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_map_get +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff brioctl_set +EXPORT_SYMBOL vmlinux 0x7fffffff bsearch +EXPORT_SYMBOL vmlinux 0x7fffffff buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff cacheid +EXPORT_SYMBOL vmlinux 0x7fffffff call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff call_fib_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7fffffff call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper +EXPORT_SYMBOL vmlinux 0x7fffffff can_do_mlock +EXPORT_SYMBOL vmlinux 0x7fffffff can_nice +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff capable +EXPORT_SYMBOL vmlinux 0x7fffffff capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x7fffffff cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_device_del +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_init +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_check_events +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_release +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7fffffff clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x7fffffff clear_inode +EXPORT_SYMBOL vmlinux 0x7fffffff clk_add_alias +EXPORT_SYMBOL vmlinux 0x7fffffff clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0x7fffffff clk_get +EXPORT_SYMBOL vmlinux 0x7fffffff clk_get_sys +EXPORT_SYMBOL vmlinux 0x7fffffff clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x7fffffff clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x7fffffff clkdev_add +EXPORT_SYMBOL vmlinux 0x7fffffff close_fd +EXPORT_SYMBOL vmlinux 0x7fffffff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0x7fffffff color_table +EXPORT_SYMBOL vmlinux 0x7fffffff complete +EXPORT_SYMBOL vmlinux 0x7fffffff complete_all +EXPORT_SYMBOL vmlinux 0x7fffffff component_match_add_release +EXPORT_SYMBOL vmlinux 0x7fffffff con_is_bound +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_init +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_set_name +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_depend_item +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x7fffffff console_blank_hook +EXPORT_SYMBOL vmlinux 0x7fffffff console_blanked +EXPORT_SYMBOL vmlinux 0x7fffffff console_conditional_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff console_lock +EXPORT_SYMBOL vmlinux 0x7fffffff console_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff consume_skb +EXPORT_SYMBOL vmlinux 0x7fffffff cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7fffffff copy_from_user_toio +EXPORT_SYMBOL vmlinux 0x7fffffff copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x7fffffff copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x7fffffff copy_string_kernel +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_addr +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x7fffffff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x7fffffff cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7fffffff cpu_tlb +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_get +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_but +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_local_spread +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_next +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_init +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_irq +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x7fffffff crc16 +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_be +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_le +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_le_shift +EXPORT_SYMBOL vmlinux 0x7fffffff crc8 +EXPORT_SYMBOL vmlinux 0x7fffffff crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0x7fffffff crc8_populate_msb +EXPORT_SYMBOL vmlinux 0x7fffffff crc_ccitt +EXPORT_SYMBOL vmlinux 0x7fffffff crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x7fffffff crc_t10dif +EXPORT_SYMBOL vmlinux 0x7fffffff crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x7fffffff csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x7fffffff csum_partial +EXPORT_SYMBOL vmlinux 0x7fffffff csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x7fffffff current_work +EXPORT_SYMBOL vmlinux 0x7fffffff d_add_ci +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_anon +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x7fffffff d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_genocide +EXPORT_SYMBOL vmlinux 0x7fffffff d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff d_instantiate +EXPORT_SYMBOL vmlinux 0x7fffffff d_instantiate_new +EXPORT_SYMBOL vmlinux 0x7fffffff d_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff d_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff d_make_root +EXPORT_SYMBOL vmlinux 0x7fffffff d_path +EXPORT_SYMBOL vmlinux 0x7fffffff d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7fffffff datagram_poll +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_close +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff default_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff del_timer_sync +EXPORT_SYMBOL vmlinux 0x7fffffff delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x7fffffff dentry_create +EXPORT_SYMBOL vmlinux 0x7fffffff dentry_open +EXPORT_SYMBOL vmlinux 0x7fffffff dev_activate +EXPORT_SYMBOL vmlinux 0x7fffffff dev_addr_del +EXPORT_SYMBOL vmlinux 0x7fffffff dev_addr_mod +EXPORT_SYMBOL vmlinux 0x7fffffff dev_close +EXPORT_SYMBOL vmlinux 0x7fffffff dev_deactivate +EXPORT_SYMBOL vmlinux 0x7fffffff dev_driver_string +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_add +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_del +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_flush +EXPORT_SYMBOL vmlinux 0x7fffffff dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff dev_printk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff dev_remove_offload +EXPORT_SYMBOL vmlinux 0x7fffffff dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_alias +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_init +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_update_status +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_update_target +EXPORT_SYMBOL vmlinux 0x7fffffff devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_get +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x7fffffff devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7fffffff devm_memremap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7fffffff devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x7fffffff devm_of_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x7fffffff devm_register_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x7fffffff devm_request_resource +EXPORT_SYMBOL vmlinux 0x7fffffff dget_parent +EXPORT_SYMBOL vmlinux 0x7fffffff dim_calc_stats +EXPORT_SYMBOL vmlinux 0x7fffffff dim_on_top +EXPORT_SYMBOL vmlinux 0x7fffffff dim_park_on_top +EXPORT_SYMBOL vmlinux 0x7fffffff dim_turn +EXPORT_SYMBOL vmlinux 0x7fffffff disk_stack_limits +EXPORT_SYMBOL vmlinux 0x7fffffff div64_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff div_s64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff dm_get_device +EXPORT_SYMBOL vmlinux 0x7fffffff dm_io +EXPORT_SYMBOL vmlinux 0x7fffffff dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x7fffffff dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_event +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_get_size +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x7fffffff dm_unregister_target +EXPORT_SYMBOL vmlinux 0x7fffffff dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_describe +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_release +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff dma_find_channel +EXPORT_SYMBOL vmlinux 0x7fffffff dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_free +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_fini +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_init +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dma_set_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7fffffff dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x7fffffff dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dmaengine_get +EXPORT_SYMBOL vmlinux 0x7fffffff dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7fffffff dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x7fffffff dmam_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_check_system +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0x7fffffff dns_query +EXPORT_SYMBOL vmlinux 0x7fffffff do_blank_screen +EXPORT_SYMBOL vmlinux 0x7fffffff do_splice_direct +EXPORT_SYMBOL vmlinux 0x7fffffff do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0x7fffffff do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x7fffffff dotdot_name +EXPORT_SYMBOL vmlinux 0x7fffffff down +EXPORT_SYMBOL vmlinux 0x7fffffff down_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff down_read +EXPORT_SYMBOL vmlinux 0x7fffffff down_read_killable +EXPORT_SYMBOL vmlinux 0x7fffffff down_read_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff down_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff down_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff downgrade_write +EXPORT_SYMBOL vmlinux 0x7fffffff dput +EXPORT_SYMBOL vmlinux 0x7fffffff dqget +EXPORT_SYMBOL vmlinux 0x7fffffff dql_completed +EXPORT_SYMBOL vmlinux 0x7fffffff dql_reset +EXPORT_SYMBOL vmlinux 0x7fffffff dqput +EXPORT_SYMBOL vmlinux 0x7fffffff dqstats +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_commit +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_drop +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_initialize +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_operations +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_release +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_resume +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_scan_active +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x7fffffff drm_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0x7fffffff drop_super +EXPORT_SYMBOL vmlinux 0x7fffffff drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff dst_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff dst_default_metrics +EXPORT_SYMBOL vmlinux 0x7fffffff dst_init +EXPORT_SYMBOL vmlinux 0x7fffffff dst_release +EXPORT_SYMBOL vmlinux 0x7fffffff dump_page +EXPORT_SYMBOL vmlinux 0x7fffffff dup_iter +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x7fffffff edac_mc_find +EXPORT_SYMBOL vmlinux 0x7fffffff efi +EXPORT_SYMBOL vmlinux 0x7fffffff efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0x7fffffff elf_set_personality +EXPORT_SYMBOL vmlinux 0x7fffffff elm_config +EXPORT_SYMBOL vmlinux 0x7fffffff elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x7fffffff elv_rb_add +EXPORT_SYMBOL vmlinux 0x7fffffff elv_rb_find +EXPORT_SYMBOL vmlinux 0x7fffffff elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x7fffffff elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7fffffff empty_aops +EXPORT_SYMBOL vmlinux 0x7fffffff enable_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff enable_irq +EXPORT_SYMBOL vmlinux 0x7fffffff end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7fffffff end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x7fffffff end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7fffffff errseq_sample +EXPORT_SYMBOL vmlinux 0x7fffffff eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_notify +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_readable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fb_add_videomode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_class +EXPORT_SYMBOL vmlinux 0x7fffffff fb_default_cmap +EXPORT_SYMBOL vmlinux 0x7fffffff fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_best_display +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0x7fffffff fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x7fffffff fb_get_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_get_options +EXPORT_SYMBOL vmlinux 0x7fffffff fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0x7fffffff fb_match_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0x7fffffff fb_register_client +EXPORT_SYMBOL vmlinux 0x7fffffff fb_set_cmap +EXPORT_SYMBOL vmlinux 0x7fffffff fb_set_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff fb_unregister_client +EXPORT_SYMBOL vmlinux 0x7fffffff fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x7fffffff fc_mount +EXPORT_SYMBOL vmlinux 0x7fffffff fd_install +EXPORT_SYMBOL vmlinux 0x7fffffff fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x7fffffff fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff fiemap_prep +EXPORT_SYMBOL vmlinux 0x7fffffff file_open_root +EXPORT_SYMBOL vmlinux 0x7fffffff file_path +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fault +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_map_pages +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_release_folio +EXPORT_SYMBOL vmlinux 0x7fffffff filp_close +EXPORT_SYMBOL vmlinux 0x7fffffff find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x7fffffff find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7fffffff find_inode_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff find_next_clump8 +EXPORT_SYMBOL vmlinux 0x7fffffff finish_no_open +EXPORT_SYMBOL vmlinux 0x7fffffff finish_swait +EXPORT_SYMBOL vmlinux 0x7fffffff fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x7fffffff flush_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff folio_account_redirty +EXPORT_SYMBOL vmlinux 0x7fffffff folio_end_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x7fffffff folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x7fffffff folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff folio_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_bit +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x7fffffff folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x7fffffff follow_pfn +EXPORT_SYMBOL vmlinux 0x7fffffff follow_up +EXPORT_SYMBOL vmlinux 0x7fffffff font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x7fffffff forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7fffffff fortify_panic +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_exit +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_init +EXPORT_SYMBOL vmlinux 0x7fffffff free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x7fffffff free_buffer_head +EXPORT_SYMBOL vmlinux 0x7fffffff free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x7fffffff free_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff free_opal_dev +EXPORT_SYMBOL vmlinux 0x7fffffff freeze_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff freeze_super +EXPORT_SYMBOL vmlinux 0x7fffffff freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x7fffffff fs_overflowgid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_string +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x7fffffff full_name_hash +EXPORT_SYMBOL vmlinux 0x7fffffff fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x7fffffff fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x7fffffff gen_estimator_active +EXPORT_SYMBOL vmlinux 0x7fffffff gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff gen_new_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7fffffff gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff generate_random_guid +EXPORT_SYMBOL vmlinux 0x7fffffff generate_random_uuid +EXPORT_SYMBOL vmlinux 0x7fffffff generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7fffffff generic_check_addressable +EXPORT_SYMBOL vmlinux 0x7fffffff generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x7fffffff generic_delete_inode +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_open +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7fffffff generic_fillattr +EXPORT_SYMBOL vmlinux 0x7fffffff generic_listxattr +EXPORT_SYMBOL vmlinux 0x7fffffff generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7fffffff generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x7fffffff generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x7fffffff generic_setlease +EXPORT_SYMBOL vmlinux 0x7fffffff generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff generic_update_time +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7fffffff generic_writepages +EXPORT_SYMBOL vmlinux 0x7fffffff genl_register_family +EXPORT_SYMBOL vmlinux 0x7fffffff genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x7fffffff get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff get_default_font +EXPORT_SYMBOL vmlinux 0x7fffffff get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x7fffffff get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x7fffffff get_next_ino +EXPORT_SYMBOL vmlinux 0x7fffffff get_option +EXPORT_SYMBOL vmlinux 0x7fffffff get_options +EXPORT_SYMBOL vmlinux 0x7fffffff get_phy_device +EXPORT_SYMBOL vmlinux 0x7fffffff get_random_u32 +EXPORT_SYMBOL vmlinux 0x7fffffff get_random_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff get_task_cred +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_keyed +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_single +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x7fffffff get_unmapped_area +EXPORT_SYMBOL vmlinux 0x7fffffff get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0x7fffffff get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7fffffff get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff get_vm_area +EXPORT_SYMBOL vmlinux 0x7fffffff get_zeroed_page +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_lle +EXPORT_SYMBOL vmlinux 0x7fffffff gic_pmr_sync +EXPORT_SYMBOL vmlinux 0x7fffffff give_up_console +EXPORT_SYMBOL vmlinux 0x7fffffff global_cursor_default +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x7fffffff gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x7fffffff gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x7fffffff gpmc_cs_request +EXPORT_SYMBOL vmlinux 0x7fffffff grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_receive +EXPORT_SYMBOL vmlinux 0x7fffffff groups_sort +EXPORT_SYMBOL vmlinux 0x7fffffff guid_null +EXPORT_SYMBOL vmlinux 0x7fffffff guid_parse +EXPORT_SYMBOL vmlinux 0x7fffffff has_capability +EXPORT_SYMBOL vmlinux 0x7fffffff has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x7fffffff hchacha_block_generic +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x7fffffff hex_asc_upper +EXPORT_SYMBOL vmlinux 0x7fffffff hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff hex_to_bin +EXPORT_SYMBOL vmlinux 0x7fffffff high_memory +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_verify_client +EXPORT_SYMBOL vmlinux 0x7fffffff icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x7fffffff icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x7fffffff icst_hz +EXPORT_SYMBOL vmlinux 0x7fffffff icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0x7fffffff ida_alloc_range +EXPORT_SYMBOL vmlinux 0x7fffffff ida_free +EXPORT_SYMBOL vmlinux 0x7fffffff idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x7fffffff idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x7fffffff idr_preload +EXPORT_SYMBOL vmlinux 0x7fffffff iget_locked +EXPORT_SYMBOL vmlinux 0x7fffffff ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x7fffffff igrab +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup5 +EXPORT_SYMBOL vmlinux 0x7fffffff import_single_range +EXPORT_SYMBOL vmlinux 0x7fffffff imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x7fffffff imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0x7fffffff imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x7fffffff imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0x7fffffff imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0x7fffffff in4_pton +EXPORT_SYMBOL vmlinux 0x7fffffff in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0x7fffffff in_group_p +EXPORT_SYMBOL vmlinux 0x7fffffff inc_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_add_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_bind +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_protos +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7fffffff inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet_add_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_is_any +EXPORT_SYMBOL vmlinux 0x7fffffff inet_bind +EXPORT_SYMBOL vmlinux 0x7fffffff inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7fffffff inet_current_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_kill +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frags_init +EXPORT_SYMBOL vmlinux 0x7fffffff inet_getname +EXPORT_SYMBOL vmlinux 0x7fffffff inet_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff inet_offloads +EXPORT_SYMBOL vmlinux 0x7fffffff inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7fffffff inet_put_port +EXPORT_SYMBOL vmlinux 0x7fffffff inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x7fffffff inet_select_addr +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7fffffff inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7fffffff init_cdrom_command +EXPORT_SYMBOL vmlinux 0x7fffffff init_on_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff init_on_free +EXPORT_SYMBOL vmlinux 0x7fffffff init_timer_key +EXPORT_SYMBOL vmlinux 0x7fffffff init_wait_entry +EXPORT_SYMBOL vmlinux 0x7fffffff inode_dio_wait +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_always +EXPORT_SYMBOL vmlinux 0x7fffffff inode_init_owner +EXPORT_SYMBOL vmlinux 0x7fffffff inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7fffffff inode_needs_sync +EXPORT_SYMBOL vmlinux 0x7fffffff inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x7fffffff inode_nohighmem +EXPORT_SYMBOL vmlinux 0x7fffffff inode_set_flags +EXPORT_SYMBOL vmlinux 0x7fffffff inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7fffffff input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x7fffffff input_close_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7fffffff input_event +EXPORT_SYMBOL vmlinux 0x7fffffff input_flush_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_new_minor +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x7fffffff input_release_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_reset_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_abs_params +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_capability +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_keycode +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff input_setup_polling +EXPORT_SYMBOL vmlinux 0x7fffffff input_unregister_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7fffffff insert_inode_locked +EXPORT_SYMBOL vmlinux 0x7fffffff insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x7fffffff int_sqrt +EXPORT_SYMBOL vmlinux 0x7fffffff invalidate_disk +EXPORT_SYMBOL vmlinux 0x7fffffff invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff io_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff io_schedule_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x7fffffff ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7fffffff iomem_resource +EXPORT_SYMBOL vmlinux 0x7fffffff ioport_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff ioremap +EXPORT_SYMBOL vmlinux 0x7fffffff ioremap_page +EXPORT_SYMBOL vmlinux 0x7fffffff ioremap_wc +EXPORT_SYMBOL vmlinux 0x7fffffff iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_init +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7fffffff ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_frag_init +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7fffffff ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x7fffffff ip_check_defrag +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_init +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x7fffffff ip_local_deliver +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x7fffffff ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x7fffffff ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x7fffffff iptun_encaps +EXPORT_SYMBOL vmlinux 0x7fffffff iput +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_complete +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_enable +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_init +EXPORT_SYMBOL vmlinux 0x7fffffff irq_set_chip +EXPORT_SYMBOL vmlinux 0x7fffffff irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0x7fffffff is_console_locked +EXPORT_SYMBOL vmlinux 0x7fffffff is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x7fffffff is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0x7fffffff is_subdir +EXPORT_SYMBOL vmlinux 0x7fffffff is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0x7fffffff isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0x7fffffff iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_dir +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_supers_type +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0x7fffffff kasprintf +EXPORT_SYMBOL vmlinux 0x7fffffff kern_path +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_connect +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_cpustat +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_getpeername +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_neon_end +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x7fffffff key_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_payload_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_type_keyring +EXPORT_SYMBOL vmlinux 0x7fffffff key_update +EXPORT_SYMBOL vmlinux 0x7fffffff key_validate +EXPORT_SYMBOL vmlinux 0x7fffffff keyring_restrict +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_const +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_link +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_sensitive +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x7fffffff kill_anon_super +EXPORT_SYMBOL vmlinux 0x7fffffff kill_litter_super +EXPORT_SYMBOL vmlinux 0x7fffffff kill_pgrp +EXPORT_SYMBOL vmlinux 0x7fffffff kill_pid +EXPORT_SYMBOL vmlinux 0x7fffffff km_policy_notify +EXPORT_SYMBOL vmlinux 0x7fffffff km_query +EXPORT_SYMBOL vmlinux 0x7fffffff km_report +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_init +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_set_name +EXPORT_SYMBOL vmlinux 0x7fffffff krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x7fffffff kset_register +EXPORT_SYMBOL vmlinux 0x7fffffff ksize +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoint +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos16 +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_should_stop +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7fffffff kvmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff kvrealloc +EXPORT_SYMBOL vmlinux 0x7fffffff lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7fffffff lease_modify +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x7fffffff list_sort +EXPORT_SYMBOL vmlinux 0x7fffffff load_nls +EXPORT_SYMBOL vmlinux 0x7fffffff lock_rename +EXPORT_SYMBOL vmlinux 0x7fffffff lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_get +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_put_return +EXPORT_SYMBOL vmlinux 0x7fffffff locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_free_lock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_init_lock +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_constant +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_len +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x7fffffff map_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff match_hex +EXPORT_SYMBOL vmlinux 0x7fffffff match_octal +EXPORT_SYMBOL vmlinux 0x7fffffff match_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff match_string +EXPORT_SYMBOL vmlinux 0x7fffffff match_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff match_uint +EXPORT_SYMBOL vmlinux 0x7fffffff max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_read_reg +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7fffffff may_setattr +EXPORT_SYMBOL vmlinux 0x7fffffff may_umount +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_create +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7fffffff md_check_recovery +EXPORT_SYMBOL vmlinux 0x7fffffff md_done_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_finish_reshape +EXPORT_SYMBOL vmlinux 0x7fffffff md_flush_request +EXPORT_SYMBOL vmlinux 0x7fffffff md_handle_request +EXPORT_SYMBOL vmlinux 0x7fffffff md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x7fffffff md_integrity_register +EXPORT_SYMBOL vmlinux 0x7fffffff md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_update_sb +EXPORT_SYMBOL vmlinux 0x7fffffff md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_write_end +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_find_bus +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_write +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_free +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_read +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_scan +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x7fffffff mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x7fffffff mem_map +EXPORT_SYMBOL vmlinux 0x7fffffff memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff memchr +EXPORT_SYMBOL vmlinux 0x7fffffff memcpy +EXPORT_SYMBOL vmlinux 0x7fffffff memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x7fffffff memdup_user +EXPORT_SYMBOL vmlinux 0x7fffffff memdup_user_nul +EXPORT_SYMBOL vmlinux 0x7fffffff memmove +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_create +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_exit +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_free_slab +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_init +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff memremap +EXPORT_SYMBOL vmlinux 0x7fffffff memset16 +EXPORT_SYMBOL vmlinux 0x7fffffff memunmap +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x7fffffff migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x7fffffff mii_nway_restart +EXPORT_SYMBOL vmlinux 0x7fffffff mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x7fffffff minmax_running_max +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x7fffffff misc_register +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_get_card +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_of_parse +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_put_card +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_release_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_release +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x7fffffff mmput_async +EXPORT_SYMBOL vmlinux 0x7fffffff mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7fffffff mntget +EXPORT_SYMBOL vmlinux 0x7fffffff mntput +EXPORT_SYMBOL vmlinux 0x7fffffff mod_node_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff mod_timer +EXPORT_SYMBOL vmlinux 0x7fffffff module_refcount +EXPORT_SYMBOL vmlinux 0x7fffffff mount_single +EXPORT_SYMBOL vmlinux 0x7fffffff mount_subtree +EXPORT_SYMBOL vmlinux 0x7fffffff movable_zone +EXPORT_SYMBOL vmlinux 0x7fffffff mpage_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff mpage_writepages +EXPORT_SYMBOL vmlinux 0x7fffffff mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x7fffffff mr_dump +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x7fffffff mr_table_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff mr_table_dump +EXPORT_SYMBOL vmlinux 0x7fffffff msleep +EXPORT_SYMBOL vmlinux 0x7fffffff msleep_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x7fffffff mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_is_locked +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff mx51_revision +EXPORT_SYMBOL vmlinux 0x7fffffff mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x7fffffff nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x7fffffff nand_monolithic_read_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x7fffffff napi_build_skb +EXPORT_SYMBOL vmlinux 0x7fffffff napi_complete_done +EXPORT_SYMBOL vmlinux 0x7fffffff napi_enable +EXPORT_SYMBOL vmlinux 0x7fffffff ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x7fffffff ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x7fffffff ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x7fffffff ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7fffffff ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_update +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x7fffffff net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x7fffffff net_ns_barrier +EXPORT_SYMBOL vmlinux 0x7fffffff net_ratelimit +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_alert +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_emerg +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_features_change +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_printk +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7fffffff netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x7fffffff netif_receive_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_lock +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x7fffffff netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_ack +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_capable +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_set_err +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unicast +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7fffffff netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x7fffffff next_arg +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x7fffffff nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x7fffffff nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_packet +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_register +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_set +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_trace +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7fffffff nf_reinject +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x7fffffff nla_append +EXPORT_SYMBOL vmlinux 0x7fffffff nla_find +EXPORT_SYMBOL vmlinux 0x7fffffff nla_memcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_memcpy +EXPORT_SYMBOL vmlinux 0x7fffffff nla_policy_len +EXPORT_SYMBOL vmlinux 0x7fffffff nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff nmi_panic +EXPORT_SYMBOL vmlinux 0x7fffffff no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff nobh_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff node_states +EXPORT_SYMBOL vmlinux 0x7fffffff noop_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7fffffff notify_change +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_setid +EXPORT_SYMBOL vmlinux 0x7fffffff of_chosen +EXPORT_SYMBOL vmlinux 0x7fffffff of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_is_available +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_min_tck +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_child +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7fffffff of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr2_get_info +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x7fffffff of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_get +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_put +EXPORT_SYMBOL vmlinux 0x7fffffff of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_connect +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_platform_device_create +EXPORT_SYMBOL vmlinux 0x7fffffff of_root +EXPORT_SYMBOL vmlinux 0x7fffffff of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7fffffff omap_rev +EXPORT_SYMBOL vmlinux 0x7fffffff omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x7fffffff omap_type +EXPORT_SYMBOL vmlinux 0x7fffffff omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x7fffffff omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x7fffffff omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x7fffffff omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0x7fffffff on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x7fffffff oops_in_progress +EXPORT_SYMBOL vmlinux 0x7fffffff open_exec +EXPORT_SYMBOL vmlinux 0x7fffffff open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7fffffff out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x7fffffff overflowuid +EXPORT_SYMBOL vmlinux 0x7fffffff padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7fffffff page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x7fffffff page_frag_free +EXPORT_SYMBOL vmlinux 0x7fffffff page_mapped +EXPORT_SYMBOL vmlinux 0x7fffffff page_offline_end +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x7fffffff page_readlink +EXPORT_SYMBOL vmlinux 0x7fffffff page_symlink +EXPORT_SYMBOL vmlinux 0x7fffffff pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x7fffffff pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x7fffffff panic +EXPORT_SYMBOL vmlinux 0x7fffffff panic_notifier_list +EXPORT_SYMBOL vmlinux 0x7fffffff par_io_of_config +EXPORT_SYMBOL vmlinux 0x7fffffff param_array_ops +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_string +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ullong +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_int +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_invbool +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_int +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_short +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff path_get +EXPORT_SYMBOL vmlinux 0x7fffffff path_has_submounts +EXPORT_SYMBOL vmlinux 0x7fffffff path_put +EXPORT_SYMBOL vmlinux 0x7fffffff pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x7fffffff pci_assign_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_clear_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7fffffff pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x7fffffff pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x7fffffff pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_capability +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_fixup_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_slot +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7fffffff pci_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff pci_irq_vector +EXPORT_SYMBOL vmlinux 0x7fffffff pci_map_rom +EXPORT_SYMBOL vmlinux 0x7fffffff pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x7fffffff pci_pci_problems +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x7fffffff pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x7fffffff pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_save_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x7fffffff pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7fffffff pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x7fffffff pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_mps +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_enable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x7fffffff pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x7fffffff pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x7fffffff pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7fffffff peernet2id +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x7fffffff pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_kernel +EXPORT_SYMBOL vmlinux 0x7fffffff phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attach_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attached_info +EXPORT_SYMBOL vmlinux 0x7fffffff phy_config_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff phy_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x7fffffff phy_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7fffffff phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x7fffffff phy_init_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_init_hw +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x7fffffff phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7fffffff phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7fffffff phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7fffffff phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7fffffff phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x7fffffff phy_resume +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_sfp_detach +EXPORT_SYMBOL vmlinux 0x7fffffff phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x7fffffff phy_start +EXPORT_SYMBOL vmlinux 0x7fffffff phy_stop +EXPORT_SYMBOL vmlinux 0x7fffffff phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7fffffff phy_validate_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_write_paged +EXPORT_SYMBOL vmlinux 0x7fffffff phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7fffffff pid_task +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_lock +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x7fffffff pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x7fffffff pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7fffffff poll_initwait +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_init +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_valid +EXPORT_SYMBOL vmlinux 0x7fffffff posix_lock_file +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7fffffff pr_flush +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_off +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_on +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dobool +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dointvec +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dostring +EXPORT_SYMBOL vmlinux 0x7fffffff proc_douintvec +EXPORT_SYMBOL vmlinux 0x7fffffff proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x7fffffff proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x7fffffff proc_remove +EXPORT_SYMBOL vmlinux 0x7fffffff proc_set_size +EXPORT_SYMBOL vmlinux 0x7fffffff proc_set_user +EXPORT_SYMBOL vmlinux 0x7fffffff profile_pc +EXPORT_SYMBOL vmlinux 0x7fffffff proto_register +EXPORT_SYMBOL vmlinux 0x7fffffff proto_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_drain +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_end_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_init +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff pskb_expand_head +EXPORT_SYMBOL vmlinux 0x7fffffff pskb_extract +EXPORT_SYMBOL vmlinux 0x7fffffff pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_register +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0x7fffffff put_cmsg +EXPORT_SYMBOL vmlinux 0x7fffffff put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x7fffffff put_disk +EXPORT_SYMBOL vmlinux 0x7fffffff put_pages_list +EXPORT_SYMBOL vmlinux 0x7fffffff put_watch_queue +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_io_writel +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x7fffffff qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0x7fffffff qe_put_snum +EXPORT_SYMBOL vmlinux 0x7fffffff qid_eq +EXPORT_SYMBOL vmlinux 0x7fffffff qid_valid +EXPORT_SYMBOL vmlinux 0x7fffffff queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x7fffffff queue_rcu_work +EXPORT_SYMBOL vmlinux 0x7fffffff queue_work_on +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7fffffff ram_aops +EXPORT_SYMBOL vmlinux 0x7fffffff rational_best_approximation +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_init +EXPORT_SYMBOL vmlinux 0x7fffffff rb_first +EXPORT_SYMBOL vmlinux 0x7fffffff rb_first_postorder +EXPORT_SYMBOL vmlinux 0x7fffffff rb_insert_color +EXPORT_SYMBOL vmlinux 0x7fffffff rb_last +EXPORT_SYMBOL vmlinux 0x7fffffff rb_next +EXPORT_SYMBOL vmlinux 0x7fffffff rb_prev +EXPORT_SYMBOL vmlinux 0x7fffffff rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7fffffff rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x7fffffff rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x7fffffff read_cache_folio +EXPORT_SYMBOL vmlinux 0x7fffffff read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff readahead_expand +EXPORT_SYMBOL vmlinux 0x7fffffff recalc_sigpending +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0x7fffffff redraw_screen +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0x7fffffff register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_console +EXPORT_SYMBOL vmlinux 0x7fffffff register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_framebuffer +EXPORT_SYMBOL vmlinux 0x7fffffff register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7fffffff register_module_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7fffffff register_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff register_quota_format +EXPORT_SYMBOL vmlinux 0x7fffffff register_restart_handler +EXPORT_SYMBOL vmlinux 0x7fffffff register_sound_dsp +EXPORT_SYMBOL vmlinux 0x7fffffff register_sound_special +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl_table +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysrq_key +EXPORT_SYMBOL vmlinux 0x7fffffff register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7fffffff registered_fb +EXPORT_SYMBOL vmlinux 0x7fffffff regset_get +EXPORT_SYMBOL vmlinux 0x7fffffff regset_get_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7fffffff release_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff release_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff release_pages +EXPORT_SYMBOL vmlinux 0x7fffffff remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7fffffff remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7fffffff remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x7fffffff remove_wait_queue +EXPORT_SYMBOL vmlinux 0x7fffffff remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x7fffffff rename_lock +EXPORT_SYMBOL vmlinux 0x7fffffff request_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7fffffff request_resource +EXPORT_SYMBOL vmlinux 0x7fffffff request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7fffffff reservation_ww_class +EXPORT_SYMBOL vmlinux 0x7fffffff reset_devices +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_blocked +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_register +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_states +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0x7fffffff rfs_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rio_query_mport +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_write +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_free +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff rps_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rt_dst_clone +EXPORT_SYMBOL vmlinux 0x7fffffff rtc_lock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_lock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_notify +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_unicast +EXPORT_SYMBOL vmlinux 0x7fffffff rw_verify_area +EXPORT_SYMBOL vmlinux 0x7fffffff sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7fffffff schedule_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff scm_detach_fds +EXPORT_SYMBOL vmlinux 0x7fffffff scmd_printk +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_block_requests +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_done +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_busy +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_put +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_logging_level +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_command +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_remove_host +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_remove_target +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x7fffffff scsilun_to_int +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7fffffff secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x7fffffff secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x7fffffff secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_transaction +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x7fffffff security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0x7fffffff security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_ismaclabel +EXPORT_SYMBOL vmlinux 0x7fffffff security_locked_down +EXPORT_SYMBOL vmlinux 0x7fffffff security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x7fffffff security_path_mknod +EXPORT_SYMBOL vmlinux 0x7fffffff security_path_rename +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_remount +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7fffffff security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x7fffffff security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x7fffffff security_sk_clone +EXPORT_SYMBOL vmlinux 0x7fffffff security_sock_graft +EXPORT_SYMBOL vmlinux 0x7fffffff security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7fffffff security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x7fffffff security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x7fffffff security_tun_dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x7fffffff send_sig_info +EXPORT_SYMBOL vmlinux 0x7fffffff seq_file_path +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_next +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_start +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_start_head +EXPORT_SYMBOL vmlinux 0x7fffffff seq_pad +EXPORT_SYMBOL vmlinux 0x7fffffff seq_path +EXPORT_SYMBOL vmlinux 0x7fffffff seq_printf +EXPORT_SYMBOL vmlinux 0x7fffffff seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7fffffff seq_puts +EXPORT_SYMBOL vmlinux 0x7fffffff seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff seq_read_iter +EXPORT_SYMBOL vmlinux 0x7fffffff seq_release +EXPORT_SYMBOL vmlinux 0x7fffffff seq_release_private +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_resume_port +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0x7fffffff serio_close +EXPORT_SYMBOL vmlinux 0x7fffffff serio_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff serio_reconnect +EXPORT_SYMBOL vmlinux 0x7fffffff serio_rescan +EXPORT_SYMBOL vmlinux 0x7fffffff serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7fffffff set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x7fffffff set_bh_page +EXPORT_SYMBOL vmlinux 0x7fffffff set_binfmt +EXPORT_SYMBOL vmlinux 0x7fffffff set_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff set_create_files_as +EXPORT_SYMBOL vmlinux 0x7fffffff set_current_groups +EXPORT_SYMBOL vmlinux 0x7fffffff set_disk_ro +EXPORT_SYMBOL vmlinux 0x7fffffff set_freezable +EXPORT_SYMBOL vmlinux 0x7fffffff set_groups +EXPORT_SYMBOL vmlinux 0x7fffffff set_posix_acl +EXPORT_SYMBOL vmlinux 0x7fffffff set_user_nice +EXPORT_SYMBOL vmlinux 0x7fffffff setattr_copy +EXPORT_SYMBOL vmlinux 0x7fffffff setup_new_exec +EXPORT_SYMBOL vmlinux 0x7fffffff sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x7fffffff sg_alloc_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x7fffffff sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff sg_free_append_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_free_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_init_one +EXPORT_SYMBOL vmlinux 0x7fffffff sg_init_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_skip +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_stop +EXPORT_SYMBOL vmlinux 0x7fffffff sg_nents +EXPORT_SYMBOL vmlinux 0x7fffffff sg_next +EXPORT_SYMBOL vmlinux 0x7fffffff sg_split +EXPORT_SYMBOL vmlinux 0x7fffffff sgl_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x7fffffff sha224_final +EXPORT_SYMBOL vmlinux 0x7fffffff sha224_update +EXPORT_SYMBOL vmlinux 0x7fffffff sha256 +EXPORT_SYMBOL vmlinux 0x7fffffff shmem_aops +EXPORT_SYMBOL vmlinux 0x7fffffff should_remove_suid +EXPORT_SYMBOL vmlinux 0x7fffffff shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dir_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_fill_super +EXPORT_SYMBOL vmlinux 0x7fffffff simple_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff simple_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7fffffff simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7fffffff simple_rmdir +EXPORT_SYMBOL vmlinux 0x7fffffff simple_statfs +EXPORT_SYMBOL vmlinux 0x7fffffff simple_strtoll +EXPORT_SYMBOL vmlinux 0x7fffffff simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_release +EXPORT_SYMBOL vmlinux 0x7fffffff simple_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff single_open +EXPORT_SYMBOL vmlinux 0x7fffffff single_open_size +EXPORT_SYMBOL vmlinux 0x7fffffff siphash_3u32 +EXPORT_SYMBOL vmlinux 0x7fffffff siphash_3u64 +EXPORT_SYMBOL vmlinux 0x7fffffff sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0x7fffffff sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x7fffffff sk_free +EXPORT_SYMBOL vmlinux 0x7fffffff sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7fffffff sk_net_capable +EXPORT_SYMBOL vmlinux 0x7fffffff sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7fffffff sk_reset_timer +EXPORT_SYMBOL vmlinux 0x7fffffff sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_error +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7fffffff skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7fffffff skb_append +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x7fffffff skb_clone +EXPORT_SYMBOL vmlinux 0x7fffffff skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x7fffffff skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x7fffffff skb_dump +EXPORT_SYMBOL vmlinux 0x7fffffff skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x7fffffff skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x7fffffff skb_eth_pop +EXPORT_SYMBOL vmlinux 0x7fffffff skb_expand_head +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x7fffffff skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x7fffffff skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7fffffff skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7fffffff skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff skb_pull +EXPORT_SYMBOL vmlinux 0x7fffffff skb_pull_data +EXPORT_SYMBOL vmlinux 0x7fffffff skb_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_put +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_tail +EXPORT_SYMBOL vmlinux 0x7fffffff skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7fffffff skb_split +EXPORT_SYMBOL vmlinux 0x7fffffff skb_store_bits +EXPORT_SYMBOL vmlinux 0x7fffffff skb_trim +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tx_error +EXPORT_SYMBOL vmlinux 0x7fffffff skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x7fffffff skb_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_push +EXPORT_SYMBOL vmlinux 0x7fffffff skip_spaces +EXPORT_SYMBOL vmlinux 0x7fffffff slash_name +EXPORT_SYMBOL vmlinux 0x7fffffff slhc_compress +EXPORT_SYMBOL vmlinux 0x7fffffff slhc_uncompress +EXPORT_SYMBOL vmlinux 0x7fffffff smp_call_function +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_file_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_set_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x7fffffff snd_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_get_str +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_interval_list +EXPORT_SYMBOL vmlinux 0x7fffffff snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_report +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x7fffffff snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0x7fffffff snd_major +EXPORT_SYMBOL vmlinux 0x7fffffff snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x7fffffff snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_limit_rates +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x7fffffff snd_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x7fffffff snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x7fffffff snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_pause +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_start +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff snprintf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7fffffff sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bind_add +EXPORT_SYMBOL vmlinux 0x7fffffff sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7fffffff sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create +EXPORT_SYMBOL vmlinux 0x7fffffff sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x7fffffff sock_from_file +EXPORT_SYMBOL vmlinux 0x7fffffff sock_get_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7fffffff sock_i_ino +EXPORT_SYMBOL vmlinux 0x7fffffff sock_i_uid +EXPORT_SYMBOL vmlinux 0x7fffffff sock_init_data +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x7fffffff sock_load_diag_module +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_accept +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_getname +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_linger +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_listen +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7fffffff sock_pfree +EXPORT_SYMBOL vmlinux 0x7fffffff sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x7fffffff sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x7fffffff sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_register +EXPORT_SYMBOL vmlinux 0x7fffffff sock_release +EXPORT_SYMBOL vmlinux 0x7fffffff sock_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x7fffffff sock_wfree +EXPORT_SYMBOL vmlinux 0x7fffffff sort +EXPORT_SYMBOL vmlinux 0x7fffffff sort_r +EXPORT_SYMBOL vmlinux 0x7fffffff splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7fffffff sscanf +EXPORT_SYMBOL vmlinux 0x7fffffff starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7fffffff stmp_reset_block +EXPORT_SYMBOL vmlinux 0x7fffffff stpcpy +EXPORT_SYMBOL vmlinux 0x7fffffff strcasecmp +EXPORT_SYMBOL vmlinux 0x7fffffff strchrnul +EXPORT_SYMBOL vmlinux 0x7fffffff strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff strcpy +EXPORT_SYMBOL vmlinux 0x7fffffff stream_open +EXPORT_SYMBOL vmlinux 0x7fffffff string_escape_mem +EXPORT_SYMBOL vmlinux 0x7fffffff string_unescape +EXPORT_SYMBOL vmlinux 0x7fffffff strlcat +EXPORT_SYMBOL vmlinux 0x7fffffff strlen +EXPORT_SYMBOL vmlinux 0x7fffffff strncat +EXPORT_SYMBOL vmlinux 0x7fffffff strncmp +EXPORT_SYMBOL vmlinux 0x7fffffff strnlen +EXPORT_SYMBOL vmlinux 0x7fffffff strnlen_user +EXPORT_SYMBOL vmlinux 0x7fffffff strpbrk +EXPORT_SYMBOL vmlinux 0x7fffffff strrchr +EXPORT_SYMBOL vmlinux 0x7fffffff strscpy_pad +EXPORT_SYMBOL vmlinux 0x7fffffff strsep +EXPORT_SYMBOL vmlinux 0x7fffffff strspn +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bio_wait +EXPORT_SYMBOL vmlinux 0x7fffffff super_setup_bdi +EXPORT_SYMBOL vmlinux 0x7fffffff super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x7fffffff swake_up_all +EXPORT_SYMBOL vmlinux 0x7fffffff swake_up_one +EXPORT_SYMBOL vmlinux 0x7fffffff sync_blockdev +EXPORT_SYMBOL vmlinux 0x7fffffff sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff sync_file_create +EXPORT_SYMBOL vmlinux 0x7fffffff sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x7fffffff sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff synchronize_irq +EXPORT_SYMBOL vmlinux 0x7fffffff synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0x7fffffff sys_tz +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_vals +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x7fffffff system_rev +EXPORT_SYMBOL vmlinux 0x7fffffff system_serial +EXPORT_SYMBOL vmlinux 0x7fffffff system_serial_high +EXPORT_SYMBOL vmlinux 0x7fffffff system_state +EXPORT_SYMBOL vmlinux 0x7fffffff t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x7fffffff t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x7fffffff t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x7fffffff t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x7fffffff take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7fffffff task_work_add +EXPORT_SYMBOL vmlinux 0x7fffffff tasklet_setup +EXPORT_SYMBOL vmlinux 0x7fffffff tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0x7fffffff tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x7fffffff tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_get +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_classify +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_register +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_change +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_search +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_queue_work +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_close +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_filter +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_init_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_make_synack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_prot +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff thaw_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff thread_group_exited +EXPORT_SYMBOL vmlinux 0x7fffffff timer_reduce +EXPORT_SYMBOL vmlinux 0x7fffffff timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0x7fffffff tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x7fffffff touch_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7fffffff try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x7fffffff try_module_get +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_release_page +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff tty_check_change +EXPORT_SYMBOL vmlinux 0x7fffffff tty_devnum +EXPORT_SYMBOL vmlinux 0x7fffffff tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff tty_hangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7fffffff tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x7fffffff tty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff tty_name +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_close +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_close_end +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_hangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_init +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_open +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x7fffffff tty_vhangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_power +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x7fffffff twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7fffffff twl_i2c_write +EXPORT_SYMBOL vmlinux 0x7fffffff twl_rev +EXPORT_SYMBOL vmlinux 0x7fffffff twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0x7fffffff uart_add_one_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_get_divisor +EXPORT_SYMBOL vmlinux 0x7fffffff uart_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff uart_suspend_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_free +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_init +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_free +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_init +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x7fffffff ucs2_strsize +EXPORT_SYMBOL vmlinux 0x7fffffff udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x7fffffff udp6_set_csum +EXPORT_SYMBOL vmlinux 0x7fffffff udp_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_encap_disable +EXPORT_SYMBOL vmlinux 0x7fffffff udp_encap_enable +EXPORT_SYMBOL vmlinux 0x7fffffff udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x7fffffff udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x7fffffff udp_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7fffffff udp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_read_sock +EXPORT_SYMBOL vmlinux 0x7fffffff udp_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_ops +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7fffffff udp_table +EXPORT_SYMBOL vmlinux 0x7fffffff udplite_table +EXPORT_SYMBOL vmlinux 0x7fffffff unix_get_socket +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_new_inode +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_page +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7fffffff unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_blkdev +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_console +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_filesystem +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_quota_format +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_shrinker +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sound_special +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x7fffffff up_read +EXPORT_SYMBOL vmlinux 0x7fffffff update_region +EXPORT_SYMBOL vmlinux 0x7fffffff user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7fffffff user_path_create +EXPORT_SYMBOL vmlinux 0x7fffffff usleep_range_state +EXPORT_SYMBOL vmlinux 0x7fffffff utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_load +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_strncmp +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_unload +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_validate +EXPORT_SYMBOL vmlinux 0x7fffffff utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x7fffffff uuid_is_valid +EXPORT_SYMBOL vmlinux 0x7fffffff uuid_parse +EXPORT_SYMBOL vmlinux 0x7fffffff v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x7fffffff vc_resize +EXPORT_SYMBOL vmlinux 0x7fffffff vcalloc +EXPORT_SYMBOL vmlinux 0x7fffffff verify_spi_info +EXPORT_SYMBOL vmlinux 0x7fffffff vesa_modes +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff vfree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fsync +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_get_tree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iter_read +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iter_write +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_link +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_mkdir +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_readlink +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_rename +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vid_add +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vid_del +EXPORT_SYMBOL vmlinux 0x7fffffff vm_brk_flags +EXPORT_SYMBOL vmlinux 0x7fffffff vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x7fffffff vm_insert_page +EXPORT_SYMBOL vmlinux 0x7fffffff vm_insert_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vma_set_file +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_32 +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_array +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7fffffff vmap +EXPORT_SYMBOL vmlinux 0x7fffffff vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_request +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_get_size +EXPORT_SYMBOL vmlinux 0x7fffffff vme_init_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff vme_irq_generate +EXPORT_SYMBOL vmlinux 0x7fffffff vme_lm_detach +EXPORT_SYMBOL vmlinux 0x7fffffff vme_lm_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_write +EXPORT_SYMBOL vmlinux 0x7fffffff vme_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_get +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_request +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slot_num +EXPORT_SYMBOL vmlinux 0x7fffffff vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x7fffffff vmemdup_user +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x7fffffff vprintk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff vscnprintf +EXPORT_SYMBOL vmlinux 0x7fffffff vsnprintf +EXPORT_SYMBOL vmlinux 0x7fffffff vunmap +EXPORT_SYMBOL vmlinux 0x7fffffff vzalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_woken +EXPORT_SYMBOL vmlinux 0x7fffffff wake_bit_function +EXPORT_SYMBOL vmlinux 0x7fffffff wake_up_bit +EXPORT_SYMBOL vmlinux 0x7fffffff wake_up_var +EXPORT_SYMBOL vmlinux 0x7fffffff walk_stackframe +EXPORT_SYMBOL vmlinux 0x7fffffff watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x7fffffff watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x7fffffff wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7fffffff woken_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff xa_erase +EXPORT_SYMBOL vmlinux 0x7fffffff xa_extract +EXPORT_SYMBOL vmlinux 0x7fffffff xa_find_after +EXPORT_SYMBOL vmlinux 0x7fffffff xa_get_mark +EXPORT_SYMBOL vmlinux 0x7fffffff xa_load +EXPORT_SYMBOL vmlinux 0x7fffffff xattr_full_name +EXPORT_SYMBOL vmlinux 0x7fffffff xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_input +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_register_km +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_free +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_update +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7fffffff xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_release +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xxh32_copy_state +EXPORT_SYMBOL vmlinux 0x7fffffff xxh32_update +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64 +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64_copy_state +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64_digest +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_reset +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_run +EXPORT_SYMBOL vmlinux 0x7fffffff zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7fffffff zero_pfn +EXPORT_SYMBOL vmlinux 0x7fffffff zero_user_segments +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0x7fffffff zpool_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_compress_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_flush_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_cstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_is_error +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_reset_dstream +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x4dc32b25 sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x7fffffff sha1_update_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x145e7f3e af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x14b8dd9e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x3873c54b af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x40f45f37 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x56b711df af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x6db52a9e af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x70800ddc af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x72a50fab af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x07956f0c async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x05e1674f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7fffffff async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7fffffff async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7fffffff async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x71eb1097 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x172b4c07 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x49d6adfc async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5fcdb36e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fffffff async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7fffffff blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x1d2650ed cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x7fffffff __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x23395ecf cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7fffffff __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7fffffff __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 0x7fffffff cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x7fffffff cast_s3 +EXPORT_SYMBOL_GPL crypto/cryptd 0x02db5a43 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x049700f2 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x325713ff cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3e5fab49 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x586c97ca cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x685d9e2c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x7068d283 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0f4ab866 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2e4beb8e crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4721dd73 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6878e03d crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6acd1e09 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x6fe2ab29 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x72d93b9f crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7bec6456 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x0b1e20d1 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x504cb053 simd_aead_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x5c547c04 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x66983e96 simd_skcipher_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_register_skciphers_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_skcipher_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_unregister_aeads +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 0x7fffffff crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4310f74e serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7fffffff __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7fffffff __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0x7fffffff sm3_final +EXPORT_SYMBOL_GPL crypto/sm3 0x7fffffff sm3_update +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0x7fffffff sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0606db09 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x086330d7 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x196cfa50 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1d44681b 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 0x37a4f555 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41677e93 spk_ttyio_synth_probe +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 0x4a6990b1 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x71d80a64 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7d39b7ff spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_request_region +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7fffffff __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x7fffffff 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 0x7fffffff charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff 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 0x7fffffff hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_shift_cursor +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 0x7fffffff ks0108_address +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x7fffffff ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x7fffffff ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x1eb5595a linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7fffffff linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x2cb6d34f regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x4dd0a46f __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7fffffff __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x6a0d01eb __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2dc6c389 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7fffffff __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x35533281 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7fffffff __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x01f30785 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7fffffff __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1d54d3fe __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x5637b80a __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0e466c21 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7fffffff __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x71369cab __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x43de0075 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7fffffff __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0293a6ca bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21b2bc60 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x280eb593 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x498563d1 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5326b5a4 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5b20a521 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x624cd4c3 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x675f9431 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68664686 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70c1d4ea bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7dc9f233 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x21631f56 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x53fd22d5 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x77050d79 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78080d39 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x007c5186 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0f74147f btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1626c9e6 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21cb1ff6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x27207987 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x53eb27f3 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x60800dd8 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x636e81b3 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x672574b0 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x72d599fe btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x16488326 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x446c4642 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52fe669e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x643211aa btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x40d941d5 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x34b02eac qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4b584bab qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4be8e86d qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x69abba1b btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x71753ce0 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7c9b6764 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4655ba7f hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x6ad4afee hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x0e7ba34f mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x02feda90 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06023e36 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09351ebe mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0db41c24 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1463d1e4 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1864126c mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2065db40 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2aa1c80c mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3e8dd2bd mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x41048cb6 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x448b1c0f mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4a1f6e25 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4daa565a mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4f1a9d1b mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x500c13f1 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x67239388 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6b78cf7a mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ef3582e mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x715f5159 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7f931ae1 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x0b19e966 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4b31cb53 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x5e44bc21 __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x7fffffff moxtet_device_write +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0000139e clk_alpha_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08f0cc30 clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d10c3c4 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0d678ab9 qcom_reset_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e5f8a53 clk_pll_sr2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0e98da3d clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0x1cbd386f clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x1d1645f5 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x2eda7aff qcom_cc_probe_by_index +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 0x34a20153 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3747af55 clk_rcg_bypass2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x395868a1 qcom_find_freq_floor +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 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 0x66c4ddc3 qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x68199825 clk_disable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x6af41b8b qcom_pll_set_fsm_mode +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 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 0x7d3cc627 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0869bc32 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1a76b998 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1b5d1d67 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e05848e comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21796a2d __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2771b563 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3283484c comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4328671a comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x473f6ccb comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a90d3ca comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5a34f072 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e5888e1 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7188fb63 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x754262e1 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x765c7ccc comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x775c3445 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7ced63d0 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x180899a7 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2806528c comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x78b186fb comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x795fde58 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7aaac37e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x05c95d4b comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x7fffffff addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x52fcccf4 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x6e87c027 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x09f14520 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0baf0af2 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x406548a8 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x41ea068e comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4bf30389 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4e920c82 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x519573b0 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x744e86b8 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7fffffff subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7fffffff subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7fffffff subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x7fffffff das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x0c6696a7 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x13238288 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b1f864e mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x270ee3f2 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3197ce0c mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4358e246 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x53e8acde mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6330a988 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6a16b38d mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7c96cc77 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7fffffff labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7fffffff 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 0x7fffffff ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1c08283e ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x2189e12a ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3ac21c3b ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4d3aa792 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5134ef06 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5284d328 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x559e6bf9 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5e140063 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x76162926 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7a51123b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x263b0990 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2722a591 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x42884d1a ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x42940733 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7fffffff ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0752fa15 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x147dff86 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2995ef57 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_open +EXPORT_SYMBOL_GPL drivers/counter/counter 0x05c49d75 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x394631e1 counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4520f347 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x4dc7395b devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x547e1538 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x64d85817 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fffffff counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fffffff counter_push_event +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x701db540 omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x7fffffff omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7b5c6ebd dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7fffffff dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x213f90c1 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x438e5d50 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4c28d85f dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x00096b87 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x07ab3da7 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1674ca18 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1ffaf77f fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x22c9f4c9 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2779714e fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x63a21edc fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x682351bb fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x69c9336d fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1a5b2f71 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7fffffff hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x1e4c0e55 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7fffffff fw_card_release +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7fffffff fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7ef6c915 get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x04ea20bf cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x1243fe9f cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x17901e1d cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x21715f56 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x38ffd2b8 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x594ae58b cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x62378a9b cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x65c09848 cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7acbcf5c cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x7fffffff mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x7fffffff alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x065b477a dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e08faae dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x17b53484 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1e5222a9 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2bc0b54a dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2fc39192 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x502efb84 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x68825c24 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6f713413 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x793ba6de dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_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 0x1c2a7aae fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x22726f9c fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x361a5969 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x42ff61cd fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5c2150ca fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x72831a74 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x12f5a57c fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x26fa6c77 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4387968e fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5b321626 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3758d759 fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6c79256c fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x19827c58 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x40261e0b fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4e71c7f4 fsi_master_register +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 0x65afd38c fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x3d622b5e fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7fffffff sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7fffffff sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x04ca84dc gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3363f625 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7311d8d3 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7fffffff gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x015b6978 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x73b26008 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x7fffffff aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x7fffffff aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7fffffff __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7fffffff __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x11c7f453 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x22f89c2a analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x29232caf analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5685e412 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff 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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2f8b72be dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x077442d2 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x0d667204 dw_mipi_dsi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x283e1bba 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/display/drm_display_helper 0x0cb138fb drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x472d7666 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7cd3fc09 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x06fff337 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2643246f drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x48ced681 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x52ace1fb of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x580b5b56 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5fe3122c drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6289efca drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x65ef6741 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6657ec13 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x668e770e drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67456828 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x0fbcc5d0 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x12753b44 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x149d4542 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4256e9db drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4b2f8b38 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x5b935267 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x75a08d46 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x118ad676 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3273182e drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x565cc958 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6cd634bd drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x743efb42 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7cf17237 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x135432c4 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6c31e9b6 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x2f438c90 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7fffffff imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x7fffffff mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x6341f275 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x5b24caba s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x7fffffff s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x7fffffff pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x343ca812 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x6cba8881 rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x5d8c659a rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x20a526f9 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x6fc273f9 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7fffffff ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7fffffff ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7fffffff ssd130x_shutdown +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 0x069af03b ipu_idmac_select_buffer +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 0x09636f96 ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0e2c01aa ipu_dmfc_get +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 0x0f7105da ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x10d5cd87 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +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 0x164b893a ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1711aed0 ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1724cc50 ipu_fsu_link +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 0x18df6b03 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e0c4b9a ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e296e43 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e71df21 ipu_prg_channel_configure +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1e729e94 ipu_cpmem_set_resolution +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 0x212aecfd 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 0x258a4439 ipu_image_convert_queue +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x28ffe6e5 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x296e5604 ipu_prg_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cca78fd ipu_idmac_link +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 0x2f92d651 ipu_ic_task_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2fbc289a ipu_prg_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 0x30f47b06 ipu_module_disable +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 0x39b5827c ipu_idmac_disable_channel +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 0x3dede077 ipu_module_enable +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 0x3ecdcc42 ipu_image_convert_sync +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 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 0x49dd3cdb ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x504544d0 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51e6540c ipu_cpmem_set_high_priority +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 0x52a47d88 ipu_cpmem_set_yuv_interleaved +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 0x5816be28 ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5a87cd07 ipu_cpmem_set_stride +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 0x5f0f14d0 ipu_prg_format_supported +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5ff76ab7 ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x623722e2 ipu_ic_task_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x644d2afa ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6cfeafe1 ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x70870a6c ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x717f2766 ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x733e6195 ipu_idmac_lock_enable +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 0x76671b4a ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7ce0c325 ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_prg_channel_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13648d1d gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15717e67 gb_hd_create +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 0x16dfb5ef greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x17880aa5 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x190f9a46 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1fe4ddf4 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x207db51e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x229dc911 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x23d2cd52 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2da18d35 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f1b2263 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x31b23e58 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x38d6d4c0 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3d3e6426 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x425e7d33 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5420cad2 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60f50030 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7f8db02b gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fda15fc greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x042e3f60 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07130057 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c2ca7c7 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x176139a9 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19cb5aa3 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c4eae4f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24f88cd4 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2973e4a9 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29ab32ad hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b549333 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3048c63a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32459c09 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45aefde8 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a6c0e26 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b3d71cb hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d1c7499 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x521dd800 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x568a107a hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56bfec1c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f6ae809 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x61fd715b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x669082d1 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69045b4b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x691b8ed6 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a448ae2 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b80f426 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73c12f3a hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x740331cd hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x740784ea hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x75ccef4f hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidraw_report_event +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 0x7fffffff roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2f4458c7 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3872c5d4 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43343cee roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x46cf23ee roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7ca8bc55 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x00c32abe sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x088395f3 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x504d3ad5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x52be3252 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5702f566 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x59b159fe sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3a5583ed vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x7fffffff vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x34a7f2bf i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fffffff i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fffffff i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fffffff i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fffffff i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x19e90703 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x46acb3f7 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x7fffffff usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x381d251d ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7b0df3d0 ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7fffffff ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7fffffff ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x7fffffff ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x7fffffff ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0bc3a709 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f43d75a hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x10f06758 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1226675e hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x18b85e33 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x266cb0fb hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x538120db hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5bc42ccb hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x65fa3a57 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7fffffff adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x7fffffff ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x7fffffff ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1468d140 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x18264eca nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x6f3ab87f nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x37e874cb intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x612e416c intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6f5ec6b6 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x009d8ecc to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x164e808e stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c3ce5ca stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x45626c8e stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4f2ce87a stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x64abbd0d stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7c3c8109 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x7fffffff i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x20e7707a i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6f0a7f25 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7fffffff i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7fffffff i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x14c8782a i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x390d1666 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6bff9a8f i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7fffffff i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0438b00e i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1428a0f8 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1bfb1bee i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x227ce336 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22938241 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a321115 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x387f2ae6 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x41cf40be i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4c07359a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4ed399cb i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x53a076cb i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x58a42875 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a4f0172 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x793ffdb9 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x454a83cc devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x7fffffff 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 0x7fffffff iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x07e5a299 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0beb87ee iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1d75a2a0 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x73afffc5 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7b93599b iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x7fffffff devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x28e3f6c5 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 0x3a00243f iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7fffffff iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7fffffff iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x704601be devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x24c745d3 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x7fffffff sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x06e08d45 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1e1dcad9 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x231b5dc1 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x25592f51 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x3c379f13 cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x698f1427 cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3901fa46 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7fffffff bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7fffffff bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x07413499 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x6d2bc027 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x78cbd0d4 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x7fffffff bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x7fffffff fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0e607663 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x15683ecd inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x38cae065 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x3457dab7 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x5866a638 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0134f703 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c9185d2 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13a9e325 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x187554cf iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b092ce1 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ca8535f devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1fbb84ac iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20ce344a iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2674ebc0 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26d327c4 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f46d27 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c05678d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x319c2e22 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3261815d devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x34e4005c iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x377aab19 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bdf87fb devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ede0aad iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x551bec8b devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5a6fcdeb iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69dc95ed iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71a10154 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7411970c iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78c5b6fc iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a41401b iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ad18413 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c80895e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c95f150 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0x7fffffff ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c0a2677 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x15888de3 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3f55f397 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x534ed82e rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x542cd015 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5a7d39f2 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x7fffffff input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7fffffff matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7025617e adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7fffffff adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7fffffff adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x25a10248 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x27936b48 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2e144571 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x38cade05 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3c36c233 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x443e714c rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x64b5c6cc rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7051305b rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x010e5d01 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1c2dbab4 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x48e1412f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x34fd9e0e cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4f189cd8 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fffffff cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fffffff cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0b0b1be3 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x2732e3fa tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5e990503 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x67852f3f tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x125758cb wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45a31810 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a41dba3 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77ffc6f9 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x798ddc6c wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x7fffffff imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x7fffffff imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x7fffffff of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x048c4cfb qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x42a3338c qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0f7c9e2a free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x48b9ac87 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x4a42a414 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff iova_domain_init_rcaches +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff put_iova_domain +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0ad9c1d6 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6506dec3 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x74b3adcd ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7de3bb1a ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0fcca9b5 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x52e109bf devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x07fd9bcc devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2d8209ea led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5e52ad1b lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x62dd2824 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x7fffffff ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05907c93 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x06bceaa1 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x092f5d59 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x1b97ebbe __traceiter_bcache_btree_node_free +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 0x21497ca6 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x258b624e __traceiter_bcache_btree_write +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 0x2d506526 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2f4efd74 __traceiter_bcache_bypass_congested +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 0x40bb3414 __traceiter_bcache_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 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5376f7e2 __traceiter_bcache_btree_node_compact +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 0x5dc90254 __traceiter_bcache_btree_node_alloc +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 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 0x7f6c1e94 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x02194eea dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x062fe70f dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x07992120 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08f1cb4d dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2f3b9d02 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x34a73239 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5b35151b dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6420e8f8 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 0x7fffffff dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_deferred_set_add_work +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 0x3e708dd4 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 0x7fffffff dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_write_dirty_buffers_async +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 0x5d903688 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x29b7ad29 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x7fffffff 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 0x2a4c832e 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 0x5f6c34a2 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_region_context +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 0x7fffffff dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x02a62857 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0e64d4a0 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x25bc3623 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2f36d9b3 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37a3e023 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3c4fce26 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3ed40727 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x437ddf27 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x51985f4c cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6575a35f cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x669fdab3 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x059368d3 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d37ac65 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2089142a saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x20d59642 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x30b85b93 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x45542426 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3edb0c66 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x416dd7dd saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x77225a35 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1e438f18 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e86dc7 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x34bf0e61 smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x50b058fc sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x537ae6d7 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x56b5c840 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6163930e smscore_register_hotplug +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 0x7562cdaf sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff 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 0x7fffffff tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x00f4b6b9 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06f1014d __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1c6a4d25 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x258064fe vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b57679c vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d54e9f2 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2f77f938 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2fc3fec6 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3d8654bd vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e0ec154 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x415d9ecf vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x422d06d7 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x47f7a1b5 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a866c29 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x62e60eeb vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6672bc31 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6d4fae27 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7fffffff vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x7fffffff vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x7a7a5d30 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x14aeb622 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a636b1c vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x114442af vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x184cb9de vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b5a7432 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2dc426c6 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x44f9de56 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c41ac68 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4d3e6124 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x50224b09 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x53077dde vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x59bd8750 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62f06be1 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x69b7f755 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x70d6cce6 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ed6d60f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x5f7e30cc vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0c2454ea dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x5f61e7ed dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x786ab461 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x7fffffff as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x4185d4e0 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x2addfebb gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7fffffff mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x7fffffff stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x7fffffff stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x609643ef tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x30594dd2 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x7c982506 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0b6f38cd max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0cfb9773 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x54bf5c3f max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x55a210b1 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5b03c876 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x724196bd max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ad1012d max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d7efb88 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2027ce7a media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22226cc4 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x242ece51 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x25c59810 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26995bd3 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29d0b044 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2a73a612 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2b85ee63 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e4b6854 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a2e0f55 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x41ff18f7 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x49f6ac8b media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5064725b __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x506e48f5 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5df7bb9e media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5e5cfb7b media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65e5c897 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x65e9f332 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x683fc32c media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bdd7db9 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x743ebebb __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7cab5968 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d8003b1 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7faae20e media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_put +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5ff7ed81 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21a5a92e mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x224e64ee mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x24dd2991 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3c53a591 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3fb86851 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4104c5a3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4818fd72 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4caffcb7 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51ccd51b mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x51ed5482 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x576bce12 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fc42e8f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6e8a0b2d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x071f173a saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x156f1922 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x203a8e72 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x410218d9 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ce4dc23 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4e11ef07 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55355a45 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x650468bb saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c22d6ff saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x247087d2 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x28b38c2d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3829a0db ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x72a0baee ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x2fcc2266 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x799c84f9 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7e661a9a mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7fffffff mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7fffffff mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5884e70e vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x75f86ffd vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x7fffffff rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x7fffffff rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x41f3d6d0 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x73f78575 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/ti/omap/omap-vout 0x085d8e48 omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/platform/ti/omap/omap-vout 0x0a59c11d omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/platform/ti/omap/omap-vout 0x0d615dfe omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/platform/ti/omap/omap-vout 0x3739df24 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/platform/ti/omap/omap-vout 0x6e8a3074 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x4687a556 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x64275056 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6c5b9902 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff 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 0x68dedfab xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x7fffffff xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7fffffff radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7fffffff radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2717bf79 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x30582dae si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7b09ddcd si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7fffffff si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7fffffff si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x11b81176 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x24b0bef6 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fa8b82a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5abfac30 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x64eb483e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7d570534 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x7fffffff mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7fffffff microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7fffffff mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7fffffff r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x76402801 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x1b864bb7 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7fffffff tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7fffffff tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x267f640c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x30333ac4 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7fffffff tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x36b94f3b tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7fffffff tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x7fffffff simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04e1dcd6 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x056ce3c6 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c8622b7 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ff626ca cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22808258 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x25cd40bd cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x272e3f75 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x352e5908 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43859561 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5041b973 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x52184293 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5f1569ac cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6e4abb4d cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7fffffff mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x7fffffff mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0299615e em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08767756 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x38d8a776 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x55af7d2f em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x58fe0135 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ad46f3e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x71c11207 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x73fc4419 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x653069a7 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x29cb154e __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x368031ec v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6bd5d0eb __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff __v4l2_async_nf_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 0x7fffffff v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x3ea63457 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7fffffff v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7fffffff v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x000c422d v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x05f6c918 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3c2034da v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x46b4f15c v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4a4aba2e v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5a82be5e v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x7fffffff 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 0x7fffffff v4l2_jpeg_parse_frame_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x7fffffff v4l2_jpeg_parse_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x7fffffff v4l2_jpeg_parse_quantization_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x00462bbf v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x159898d3 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x174d8d14 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1986f3f4 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1ae818bc v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2beab054 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2c48ad0a v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x35a97f85 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3969dd1b v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x41eac957 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4535d8a5 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x469d888e v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4daca1a5 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x51b06389 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x580e92e7 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59844cdb v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e79c290 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fe89596 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63879b7c v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c3efdb9 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x759f0a55 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x789e7b63 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x78b2db67 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x150ae41d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1b09ba51 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b45cd4e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4003fca5 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4442e01c videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a518367 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5428ba83 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56c0f808 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5730545e videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6a43a912 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e8b3114 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b3f571c videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2108bb67 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x349468eb videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x3dbb75b4 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x53f593f2 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x46ce06de videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x54d70a72 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fffffff videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x029b1c3b __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0391f639 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a68326d v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c77e7a9 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x112b1837 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1218ad88 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1290b81b __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x13c0bf00 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17bd8d75 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d570cfd v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d6c662d v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2256627c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x23834060 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2e7126a7 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2fea6e58 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x301cea1b v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30a998c5 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x323f0af0 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x374cd366 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3c5f1f6c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x411dafb4 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x429483fb v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x52d61d6d v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x575d459a v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5f39889d v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6636cefa v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c4a256 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67a1526f v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69d5b89d v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ce1c95c __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e828edd v4l2_mc_create_media_graph +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 0x72548858 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74272e9b v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x744c66d0 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b30ba2e __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b78a4bf v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x49a8a623 ti_emif_get_mem_type +EXPORT_SYMBOL_GPL drivers/memory/ti-emif-sram 0x7fffffff ti_emif_copy_pm_function_table +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2542b5d6 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0dc975b9 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x35181359 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x36f89b2d cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x38c0d9b4 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3c8330c2 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4939f24f wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4dfa5386 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6e49277a wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7e521180 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fbbf18e wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4802aa02 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x4a79d6c0 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0fcb72f1 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x45f401d3 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4fbf56b2 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7f01fc8f da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0x7fffffff gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0x7fffffff gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0x7fffffff iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x29e43bef kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x354f4a7a kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3a93f8cc kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x43710377 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0c60c623 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x4083962c lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7fffffff lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x008f55b0 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4f047792 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6a27f362 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x78331ccf lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7c7d2e9a lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7fffffff lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7fffffff lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7fffffff lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x01135308 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x011e8f48 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c35a43d cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1c38787d cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2bb4bfc0 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2bb96380 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3361c870 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x336c1430 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f1b9529 cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x42264e04 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x422b9244 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5b20e092 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5d9e7714 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f00b931 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5f0d6571 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6881a2cc cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x688c7e8c cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7054d57c cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7059093c cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7f0e27a8 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4deccc53 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0x7fffffff cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04d50cad pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x107d83d8 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x166f545c pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x70abc0e8 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x743cf3a7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x5fb37bb3 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x63cdb8c8 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2c368ca2 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7fffffff devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7fffffff rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x7fffffff retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x039223b4 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0afd2a91 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0afe9d0d si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d6723bf si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x12bc91db si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23320781 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x234566dc si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x270c69a4 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32c58387 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35a7fab2 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3835f309 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e3008e6 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46222b73 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e200716 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fcffca7 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75f59fa4 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x2b1bd9ff ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7fffffff ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x167f9016 stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7fffffff stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x197e228d am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x1f6218f5 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2f9dabee am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x48dc412a tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x68c9926d tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7fffffff tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7fffffff ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x0a44f062 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4208564b alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x5eedb5b4 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x62a35b86 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x028870cd rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x08df9a95 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0cb2a4f1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1143f93b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1fffbd18 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x25c93481 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2acb9a5f rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x372e954e rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x52bcd2f7 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x566292ae rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7a1d9a06 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7d4080c4 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7f472903 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x0b923f4d rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1040dcff rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1b282aac rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4ae353f2 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4c7ff7f7 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x57796135 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x34295572 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x44448d66 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7fffffff cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7fffffff 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 0x7fffffff 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 0x7fffffff eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5c2e2802 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f72cc5e enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0501abbc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1049474f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14791f27 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2719ccee lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6b038714 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7fffffff devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7fffffff st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7fffffff st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x048b5eb9 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x573e18fd uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x2907dcc7 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x613c86f2 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7fffffff dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x35f7abf7 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7fffffff renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0a5b69c4 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x17aac852 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x27b5967e tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x5291df14 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0a825cde channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0ef6ff35 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x162728c4 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x162d3302 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1860f6b2 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x25c5c548 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3f5bf02f most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5ad02502 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_submit_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x20920ba6 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x31e17342 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x53dfda43 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4fc68675 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7fffffff cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7fffffff cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x4e84c58e hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7fffffff hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x300fda3b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x2a2eeeef brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4fdbe2bc brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7fffffff brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x7fffffff denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x1786ddf6 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x460ff5e9 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7fffffff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x25006112 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x313685e1 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38d43536 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7ea3a25b ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x08846d71 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0e7ac962 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x153bfadd mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1d078acc mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x44241d35 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4a6b68fb mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4e5ea3b1 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7f27f917 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7fffffff arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7fffffff devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2032235f c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x37c8f2ef register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7c4c7b8b unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0b107928 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x79357b00 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07cd686a alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a988dc9 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 0x115861ec can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x12fd70d6 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1e6260f5 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x20d7c21c can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2aa9e9a0 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x340f2758 of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x36937e70 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4290aac8 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45481a65 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ef67493 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 0x6053543a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x63b3f5b0 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7bf8c9e4 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7edfcf58 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff open_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x07537d65 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5353ae3f m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5fd73383 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x776470c4 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49a41bbc register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x3799ef63 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x09f90e29 ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0aac4dd9 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1b823cd1 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x24f04ecd ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x26fe9d22 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x36860ce0 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x53e6e506 ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5b89f94e ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6552464b ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6790c61e ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x69131f15 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6a292de2 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6f3336a8 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x40309b4a rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0aa079b7 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2c4da910 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2fe47ff3 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5a7b8ba6 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5d8ad13f rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5dfa16bd rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7ab08a44 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fa9fea9 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x7fffffff ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x08928cca arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x634140f3 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x01ff1d63 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x11519536 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4444a4ed fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x496a5468 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5d8f14da fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x66b91da0 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7d594d7f fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1a6da1a0 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x2f00ad87 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x017d57fd mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03a920f0 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a61d5c mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073e9c99 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09e41ad5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d4af928 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fdc8ba9 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1075bb84 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x107f235a mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13547483 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146f6a51 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1508e181 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16c4ceb3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1adac514 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f71fe96 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f9c68b6 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24bd0725 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2609661f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x279e25f7 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bb7e4bd mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e94b388 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x305a03f9 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3146f276 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36d2f5d2 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3be57520 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d71db7d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e899f9c mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40c5122e mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4215ae18 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44157648 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x446d7a4e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4490f147 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44abf291 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46364105 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a4316a1 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a85c174 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e01e74a mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f701e1c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f8c665a mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5258e19a mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5266a7c7 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52ff2b23 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x551de9bc mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55cfab68 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56321db2 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57f868de mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae44f3f mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d28906e mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dca5309 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x607ad8e1 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66396389 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d577e4c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6db5dc25 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbff090 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73b36396 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73ed3ecd mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79c967b0 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e928128 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00999f9b mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x010389cf mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0248a607 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ca0d46 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x069772f7 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a833ca7 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a91bf1e mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d2feb25 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dc7c03e mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20eeeeb3 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23ff56af mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x274245e4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e05c9e9 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32bc7ef0 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3310720e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34301e9a mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x391ff427 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff9a93f mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b864909 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c41b9c4 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e237418 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edc133c mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f295c11 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50235c73 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5091d8a0 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x547802bb mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x647874d1 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65b4266f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68661113 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f615e68 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x701f8213 mlx5_query_nic_vport_node_guid +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 0x722ef171 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72e2dfad mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x735b93e1 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74b2881e mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78090f5d mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79f31569 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f69af3e mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x7fffffff devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b9d94f5 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c12ebd6 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x112b12e9 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a03d29d ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25930e88 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x305354c9 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x383e338c ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39684dcb ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b59aa8b __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b949a40 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dae6a4d ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54770f89 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5a62a8c0 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5b8665a5 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65d8ee97 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x66a256c7 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6825e4c2 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6b98d64f ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70619bcd ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7af3a6aa ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c7bf900 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff 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 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x68f3d2db stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5a8493c6 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x781e8913 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7a34670b stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x33fc6452 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x64ca93aa w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7fffffff w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7fffffff w5100_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x7fffffff geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x2c2701c9 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x7fffffff macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x725133b8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x78f7faca macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7fffffff macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7fffffff macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x7fffffff mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x56881cf8 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x3214bb92 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x6c114ae4 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0f79a6d4 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x15907bfb xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x280a1272 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x5873d522 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0c145c1c bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x11cf6f6a bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c50f8cc bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1fe9c360 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ccafaa9 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3fbd2ef3 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4a1f7da0 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d68c591 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x67b14b61 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x70ea0dbb bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7da3a54c bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_set_eee +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 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2ae0cd6b phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x44a0be9c phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4782bbda phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x534d620d 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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x76880af7 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_stop +EXPORT_SYMBOL_GPL drivers/net/tap 0x17bab829 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x2cd43725 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x51ed5011 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x48214fbb usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x678f0460 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6f2de8a8 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6fb85fb6 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x714785ea usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ab8112a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0be116e7 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x185daa00 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25010fb6 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5f5a05e5 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6443b3b4 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x773c284e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x5e29817b rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1fbae5e4 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x20b89652 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x100dc456 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x106ae850 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15daa24b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2586b9e7 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f43d676 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3156047a usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a674706 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3cd61113 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x478d6176 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x494e6b48 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5277d48f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5403378a usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54dd4c7a usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55c15685 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5759bf1e usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x57975253 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61a4c7dd usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x623cca59 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62ae5e41 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d5dcc0a usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x13da5d0f vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6cf405f7 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x5e93951e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x63718b26 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fa1ad32 iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x243d9b03 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3b7188b1 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x728ceed9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7aa058eb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x09094c46 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1021fa88 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2e428639 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x341f5762 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x346f7353 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4ab54f6e 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 0x760c24ec __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x786ce920 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fb5624e lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x315f0b9e lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3e96d564 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x28cbf732 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2b587ed5 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x311fc699 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x47e9e4d5 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x50c0da35 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x51c8b816 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e698635 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6c5f1644 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c5fadf9 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x03345a90 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0601239d mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0eae87ea mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f96eedb mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1420e889 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1446ff9e mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14d395b0 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x191c45a4 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x220b6fee mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22fb6cb5 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x240a6e01 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27f1ce8c mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28bb5f04 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x290865bd mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x35e5cf84 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x375992cc mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38bbb280 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3bed2b58 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3df4ae92 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x406ebf2d mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x476b6014 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4bb5ed1b mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d66d973 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50a19009 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52f1fadc mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x56c622fb mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5aae7e09 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5cac4e13 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ef4d5f6 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x607d047a mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x636d3794 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6393c586 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x642587ba mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6463b30e mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x676a2a22 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x68c875a6 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69932f70 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e08f0c3 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73a15758 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75c9f3b3 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x75e33059 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x014b1e4f mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04ecefb4 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05ab7f60 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x075e26b3 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f19fc27 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0fc41df5 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x194d7824 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f7eae1b mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2739d682 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2cccccb5 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x377afe22 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x39ab3413 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c18ceb4 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4484aa01 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fe5ef74 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x511af902 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53bad316 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55f00c40 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58b9832f mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f84b654 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69439007 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ddd8502 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x70449262 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x725cd988 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79af516d mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0e9fef76 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x118a961a mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x22bd299f mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2c390dc3 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x530a0e20 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5b651c12 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5bb72f20 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x60653f16 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x66ead4a5 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03e54898 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x364bfa2b ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x37b71b78 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x58360774 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d157c15 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x793d5aa2 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x04be30e3 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x204ba5ad mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x277a99a7 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f0c4582 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2f91ce1e mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3bfe1abc mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4cf4aecd mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4ef6acdb mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x69d6bd3c mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7a7b7df8 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7c342435 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d228177 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7fffffff 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 0x3156384f mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x370b75ad mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3cde77c6 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3e4eb22e mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x15b49fc0 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2124cf1c mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6f175cb0 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x78fcc7b4 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7e69dd72 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_mac_stop +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 0x05a5c4cf mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x09ab1e37 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0a1e15b8 mt76x02_dma_disable +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 0x0e39e0c1 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1263c1df mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x185aa497 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c3356c8 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d8813e7 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e64b418 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x224a41a4 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ddb4dc6 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2ee3c3cb mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x321e2503 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34790b6b mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3909075a mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f087d55 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x40f832c9 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x421dc441 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4b3f8524 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c4570aa mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d119367 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e0b1e86 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x55fd4d94 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x58b31a9e mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x59da6f68 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x61068231 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x67c0df35 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x686f7983 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6bcef367 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6f83b02d mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7651c5bc mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x765a4e01 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x78a71630 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f04c4d5 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0b48f045 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x42b05cc0 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x50c2eefc mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f7743a8 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x10bae8ce mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1925c080 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x22c9ada8 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x28e34ba9 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x454baeba mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x475fa044 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x48ac33eb mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x503576a6 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54a21ccd mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6a3cdcf0 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6fa92746 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7911a1fa mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x082fd6ff __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0d4059e5 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2905bafd mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2d0ac78a mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x408636eb mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5a1f5678 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5e55705e mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63bcf34f mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6dc67292 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x74c19630 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x40dafdeb chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x731650ac wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x20bf3f21 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 0x496c612e qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x62508ece qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fd8f7e8 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00657c5a rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x00d5e484 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0fbc36a0 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x12607d12 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1a183afb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c2e61c5 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x382ec651 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a8f55a9 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3fc52123 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x433626e5 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45880ecf rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4fbfa68b rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x563c5df2 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5f6d7be7 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64ce7c9d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6abd37f0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x716c4285 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7189e400 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x728a7047 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b8c3353 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x027bf3cd rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x07f271cb rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x12a9a7f3 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1733f0ef rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2a5eae46 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2d2e0d7c 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 0x33657c28 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51946311 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x53075287 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6923a545 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x72add56b rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7ba3ea68 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0348b1e0 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0baaf224 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0d38b40a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x153056fb rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1859a3d7 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c16c4d4 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e5fd3cc rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x266393a2 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x270595a4 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x296749f6 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2dd7702c rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2feb71ae rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3485c101 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3f1494a6 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43c7d330 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4937b5f3 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x59b4b56c rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5af99608 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b448f1b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f81551e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x607e87ef rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x63f00adf rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a913377 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6be5ab8d rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x70dfc0a4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x710d4abd rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x19b7b129 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1ba18b7d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x342b3b00 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x09a6256e rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x0ca61d6b rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x20fff338 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x228c15e1 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x381eb4c5 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4a76dd55 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4f87e96b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f9f2ef4 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x416f1066 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x05e685af rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e0fee1a rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25520daf rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25b01ae0 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x292a772c rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a96a251 rtl8723_download_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 0x40b4cc0e rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4737dc75 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x57ea3032 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b4406cc rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6188abc3 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7db40820 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0f61677b rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14531180 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22037c71 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x285ca491 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 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 0x4666e3d0 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c747c4 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4821cbe1 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ac44096 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4faa8a6d rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5f39875d rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78f2c75e rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7aad401f rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2eac0c1d rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3c004d00 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x3c4b6e50 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x66c7e425 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x400cacc0 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0405e267 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x08b9bee9 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b37191d wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0da7aadd wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2447f29b wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x249ac2ec wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2b4792b7 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3943a33c wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a1fecd6 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a3a7902 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d356599 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x43fd18b3 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ed55dd9 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5643b7ee wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x597bc399 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e9697bc wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eca4e24 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60a929a5 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x638f97c8 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67074185 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3333c4e3 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x50916d3a nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0391c627 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x39ce0c6f pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3c33b75d pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6a838e88 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7d4cd659 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1070fb2c st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x53bbe206 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x68a3f57f st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x3c999200 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x454ec88a st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x7fffffff st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x06f94cee ntb_transport_create_queue +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 0x548fd6a7 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x679d4352 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x03f312c1 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x04d88dea nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0906cf1f 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 0x12e189bb nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x202a4e1f nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x29e3459b nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a924460 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2b940085 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d7dbed8 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x403315b2 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x409e2d13 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x47908c91 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d9b9cfd nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ffb16f5 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x52a8fdb4 nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x53a1ca15 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x549e28e7 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x591dbe9d nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a92b060 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5ff626f4 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d66f916 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x74a83a96 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x76652f1a nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79ba60f7 nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x04d69f7f nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e336bd7 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0f3da65e nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x597c19ac nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x60425f6e nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7a16bced nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7b42443c nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x27581377 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 0x6fc23522 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x23af17e7 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x272c78b5 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3d1a9621 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7235540a nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0e3c043d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x55422b47 nvmet_fc_register_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fffffff nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fffffff nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fffffff nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x7fffffff switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x32502903 tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x36a72098 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x47c5b9f7 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4e10ed64 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x66bda8d9 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x67d96711 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7fffffff omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7fffffff omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7fffffff 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 0x1a3b87a4 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7fffffff mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7fffffff mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x3ced4cb6 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x7fffffff lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x6ba1d25c cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7fffffff 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 0x7fffffff cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x091e4851 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x1bb2034d reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x46eefd97 devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7fffffff devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x0fda5f32 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x19d88ac5 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x42c27d62 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x5fe68cf9 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7fffffff pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0d64d903 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4f651398 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7a6a6bb8 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x418ce19e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x61f1e672 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x63b31bbf rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x413b8c3c wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5d0baaba wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5ddd9d63 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6b83f5e3 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x7fffffff wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2eb8285d scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3f978736 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x53c28209 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x72d76d5d scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x0210287a scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x47b4c38f scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x6fd7455d scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fffffff scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fffffff scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x2d76dff0 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x509d8e48 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fb17bd3 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x7fffffff qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x05eda930 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x2f6e02d1 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x7fffffff qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x7fffffff mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x7fffffff mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x7fffffff qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03aaab82 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f5d2730 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x103d6397 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1320edc7 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18e560a6 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3513020b cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35966b8b cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x374da97a cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3797b50d cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39d05379 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x411b6464 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4162e991 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x443fa959 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4741a0ed cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a04ad80 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4aea0049 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fab74be cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d4847f1 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x663920be cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66e20bb4 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71c421de cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7dbaa2f9 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x295afbc5 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2aa3c6c3 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3252e0dd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x643dfed4 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6a651ffa fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x769a8671 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7bc5ea58 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fb219eb fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x52e90580 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x7fffffff fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x10521a45 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x56252b43 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x62726352 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x701b198b fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x130a12fa iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16c354ea __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2163cc18 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2649e2b3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28b9fdd9 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cd879c8 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ceb2f7 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3902f617 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x49820b9c iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56a4afed iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f092aa5 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6093ddf7 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x710594d5 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x730bbf58 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a8940f2 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ab4eb3a iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b83b410 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ae15705 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x28556756 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d73e1cd iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3d567f0f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49c8a707 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4ba6655b iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7171bc67 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0d0826b1 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14f5cdc4 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15c711d3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b30553d sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24674985 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2506e558 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x286d675c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a42da3c sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x31b48373 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x384a0a6e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3da49816 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3dacfde5 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43876689 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44d07478 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x44e9482a sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4abfbaae sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e027bb2 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78d60228 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fda8f5a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x289a83ed 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 0x058dd416 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07560c2c iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x097043f7 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11277298 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1312be41 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1699cf47 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18914d03 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18d03853 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21dbcb34 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27bebdc4 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x280ee39d iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28dcd161 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a7dec93 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x30d5c056 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33efc3d2 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x360c242a __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36f7fb70 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a7e99d1 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3f1f6830 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47bc36ba iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48c2b3e4 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x538de7c1 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cc81f95 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x656570ca iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67233681 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e58d843 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fedaf89 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x717cba41 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3c00dcbc sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x735e9916 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7fffffff sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7fffffff sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x43540fec spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7fffffff spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7fffffff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x48563e4b srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x62ccef9c srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7243f5a2 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x33791e8a siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3c0cd98e siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4f5cc201 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7768f61f __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x01df2730 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x070c9fec of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x08a18a8f slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0ed7681b slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0f67f291 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1150aec2 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16175300 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1d442d62 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3952beec slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3c5dcff4 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42448132 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4621c9c4 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4ea40120 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x62865ca2 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x70028ae8 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_writeb +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 0x7fffffff meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x7fffffff meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x104d5bf5 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x27bd2a13 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x4e20fb74 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_send_port_pkt +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 0x7fffffff llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x39aeaa9a 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 0x7fffffff qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x531b2f76 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x3b5941d1 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7fffffff altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0cfb7e3e spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5f307079 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x767231ca spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7877077b spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x31fc7992 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7fffffff spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7fffffff spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x02b1e157 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x189cc8c1 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1df65a83 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x323e32ba spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x361c8c4c spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x381a59f5 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x40128c45 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x480db039 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x490e8e0a spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x508093c4 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66016fae spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7a87da20 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x55e53864 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x035a4331 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1c35e32b anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x21531bcf anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x249ee612 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2db628b9 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x424f6a5c anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4517aef9 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5c8b5a43 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x66c823c5 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x03bba3dd fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6bd1c3d8 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0c4dd3f8 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2b9d7f9b gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2f06f9d6 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5c8a8ecd gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6c4b4c93 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0835058f gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1625de8a gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x248cd97c gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x3a03ed7c gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x5e75fbb8 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x793ebf2f gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x79a8b918 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x7855ae31 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 0x7fffffff gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x7fffffff gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x10509833 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7e79f585 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x35ac2ab6 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7fffffff gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7fffffff adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1fcec46b imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x24cf78d3 imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3975a862 imx_media_capture_device_error +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 0x496fd704 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4a09040e imx_media_capture_device_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 0x54179eee imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5c8bce0a imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5f028190 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6b0fcf7a imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6e808400 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7c492b6f imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f57a2e8 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f869548 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0216c5a1 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x03262426 amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x08e6b979 amvdec_set_par_from_dar +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 0x118a2a9b amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x19492daa amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x344ac727 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4518692e amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4a420743 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5613fca6 codec_hevc_free_mmu_headers +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 0x6f49e2b6 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x728ec2a0 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x3739d04f nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1482c605 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x30b6f553 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7fffffff target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7fffffff target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x05c670b2 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0d3be52e tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x11743135 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x20df8a36 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x285fac48 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3ee5fa74 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x47ef44ed tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x52ee5e5f tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6e63c079 tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x79e77f41 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7d5c609b tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7df88971 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff teedev_close_context +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x084f6ee3 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0d2e96c2 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x12fcaa07 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2704b192 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c2c688b tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2c5b79b5 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2f304d5a 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 0x3a28ce90 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3e6e7265 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3eb7c101 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e415e45 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x60e34d1b tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64b2ed36 tb_register_service_driver +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 0x6e1e37ed tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x70e8edb7 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x78de6f01 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0231ad84 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0be23976 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x12773b7c ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x259444cb ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x273114f1 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2d334ae8 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x31309676 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3fe9ed0f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x49b70618 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x633cdaee ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x69028700 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6e41647b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7fffffff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7fffffff ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7fffffff ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2d404119 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x352271a3 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x17abca0c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7fffffff usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2e4bdd46 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x53e43dd9 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x624ddb06 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6505eb68 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6a77519b cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7f927a4e cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x05fd5225 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1fc20969 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x55ff521a ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1adac2d9 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x2cf7197e imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x3ee34fd1 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7a18cbae imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x47ab0369 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7f7a32c2 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x13b83be3 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x37784fa4 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x49be9ba4 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4ee178a3 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x53f9b56b u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5bcb7710 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x71fc01f3 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7938a91d u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7df9591b u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12c7c6cd gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20566a20 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x288b0267 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x50e3076e gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5fe15054 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x68863b94 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77245655 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x0ac4791b gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bd476a gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x43690ef9 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x629ed775 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x77dbf841 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x41cafcf0 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x5cb2d755 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x028f8d2f 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 0x1bd875eb fsg_show_nofua +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 0x2d4b7673 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x379de988 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 0x552d9ce0 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 0x62e1ee07 fsg_store_cdrom +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 0x6e507b9e fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7588065a fsg_common_set_cdev +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 0x7fffffff fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c367e9b rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x51edce90 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5a169bb6 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5d20c030 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c5865d9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c589aba usb_validate_langid +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x10e12427 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1118bb22 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b7132ba usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x25e12805 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x292387c4 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d39badc usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x342a1aaf usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x346160ad usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x404c8b31 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5324914a usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c7f0bfc usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6feda100 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x757ab318 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x02a614f7 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0e98b847 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x17aa8af7 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x47643608 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x55c4d934 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff udc_probe +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x7fffffff renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x18aefb25 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x7fffffff ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x132cdf25 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2352ae2a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a5f867f usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x53a84001 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x542705c4 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6f731b0b usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x6488d969 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x7fffffff isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x1a00105b tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x2e1404c6 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x6591895e tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x687e6973 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x0ab71243 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x31d9e615 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x358e0585 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x38c0242d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x41aa0ede usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58376b93 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5c91afcc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x655579d1 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7374848e usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x749a110a usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7aa1d1c0 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x167a4dd5 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7fffffff dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x7fffffff tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x7fffffff tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x7fffffff 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 0x7fffffff tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x028292e5 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x08513e43 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ae4522b typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x100fc534 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11b8c3bf typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1631d8c6 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b88a37d typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x22309d40 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a1c5710 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2dfd7c33 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31115a06 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3ab6c7b9 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d0351f4 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x407157b4 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x462dfe4c typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46375308 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46992395 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x46e4ffc6 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47bb9c5b typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4e7a6b62 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x513e02a9 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x525e015b typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57bb3c7d typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58cf7dc1 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5b4bf439 typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c411a43 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c6522e5 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e63ce18 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5f67b72f typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x602ecffd typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x66b94a40 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7064a544 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x72bc0403 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x73efca55 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b721e3e typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x17f4f05c ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x23aae10b ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2f894abc ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4a9b21cf ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4c863697 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x016dd819 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x277d3ec7 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2d397da8 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x46535128 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bc2c69a usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e3ffee3 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0db61061 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x198c82d1 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2944e89d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4a5c2097 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5268c916 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x5eb5c3bc vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x7fffffff vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x7fffffff mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0690255f vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0814e012 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0c7c8e48 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2674a587 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3c990e77 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4416e969 vfio_pci_core_unregister_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 0x54288073 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ec40c2c vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7a4d94d0 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d6cfcd9 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x326bb70b vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x380ca20c vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x269114a0 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7fffffff vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04931f19 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x052e59e3 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d6e858f vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0e9ba43a vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x126c0676 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13c37247 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x197806e7 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b4ed263 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b862b28 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e58a30e vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30250df4 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3377f513 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x377fc1bb vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c38e10e vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d8f232f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x409f62c0 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x455313f2 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x496f26d9 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4df758de vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x51085c1f vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53eda67e vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c89f4c6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ca6b48e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d5fd10a vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x799f7187 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_work_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 0x7fffffff vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x40310f80 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4eb4b17d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60b3023e ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x39941360 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x788d60c3 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7fffffff fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x0e145a07 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x33cfd253 omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3641ea94 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7aa055fe omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0cf2262f sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7fffffff sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x48614c88 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50e58836 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1c0519f4 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x403448a0 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0fc86190 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1ee2bdab lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x58576774 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fc72449 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00d20fa1 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0580d485 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0597021e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x097f5daa nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b125fe9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cf9eec5 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1383f5a8 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b064357 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ca6674d nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f093c08 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x204ac0ad nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25b2dad8 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2784eb3d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b5eb32 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a572c5b nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c60e01c nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e603e86 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f25f183 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37b549c0 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cb10c9 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37cb4203 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3854fa2b nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39a8fc9f nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b799ae2 nfs_client_init_is_complete +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 0x417dd814 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4514593e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46b53940 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46b9edf8 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4785cd7b __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c731c66 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x500620de nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5018e132 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51643ed7 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5268a6e4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x543f7b96 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55aba05a nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55bec5e0 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55dcc714 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x563d2ec7 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x571935a6 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5819c324 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a69d5d3 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5aad58a7 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b987dc3 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bd123df nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cc0c9c7 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5eaa3251 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x619fec6a get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62901f1c nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6886aa00 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69514ca5 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b231904 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d1bdfb5 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e578e65 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ec3072b nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72b8237e nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79df8aaf nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a09025a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7edf9d64 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7fffffff nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x042562e2 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05b504bf pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x086fa2c3 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b5a7e70 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4ecb2a nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ef4545c __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0fbee7d4 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10ac0048 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x188ced47 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x199163f7 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1af2130d pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b17876f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b63fd19 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bb52e39 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f3e4be5 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1f81564f pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2630c453 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x292b7525 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29ef90c4 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e858fb9 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x380652a1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b599ca9 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4259d83e nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45ab76b3 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45c905b4 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x46a7859b pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49fe9116 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4e3deb37 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f1fe550 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5141d4f7 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55477a75 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x594f5778 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5985198c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5c53b478 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fa25512 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x667445c9 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f26d050 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x714b1a50 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73195c30 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75788d96 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x77898edc pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78954796 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a4e7f4e __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d05b1b8 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d979567 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x49a50344 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x138ae87b nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5c2a5138 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7c409081 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fffffff nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x410b58b1 nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x059eea1d o2nm_node_put +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 0x2e812bed o2hb_setup_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 0x7300e759 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x09c985bf dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4e21dead dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x577c963a dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6db0a0a2 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 0x7f18ad47 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x07c2b0b8 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 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7fffffff register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7fffffff unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x4eaca584 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x7fffffff register_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0x7fffffff cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0x7fffffff cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x7fffffff cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x7fffffff cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0x7fffffff sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x7fffffff sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +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 0x7fffffff des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff 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 0x7fffffff poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fffffff notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fffffff 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 0x39a7ce3a raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x584fb431 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7fffffff lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x4418ff4a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x74473897 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x29d6dbd5 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x2db52fa2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x68c96804 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7fffffff p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0x7fffffff register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0x7fffffff unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x166fddbe l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x21c262b3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x55165145 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7e252c31 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x7fffffff hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x032c33df br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x08b9a69b br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a679397 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0bd24a40 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ac2313b br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x472c7ce3 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49adc036 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5e71c24f br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x60a4270f br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e2c5c46 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70c5da5b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x740f6204 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x7fffffff failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x7fffffff failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x7fffffff failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11f28cbf dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1800e78c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1eed4458 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2219fa2a dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27a37128 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a39cce9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f355349 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6cb4c6 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a121279 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4efac2f2 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3d1017d5 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3e42ba35 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4cbbcb7c dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x584da6a1 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6b8dd876 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7fffffff dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x03bf9b37 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08806f38 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x15b4ed9b dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x25032ed9 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27cb55da dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x31c6a887 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3e19881e dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3eb66680 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x430b1514 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x47888f8f dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x483a6379 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x517aade5 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6812a656 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6de98e2c dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ea958f4 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x16346b60 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x207f08a8 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x49961ab2 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ife/ife 0x073e016f ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x24375624 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 0x7fffffff ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0147a1e2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7a466030 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7fffffff esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x18d5eb28 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7fffffff gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1a8fa4b7 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2a467750 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3610d17a inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6509e9e6 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7f9fbe58 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x243abbee gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c4e0fed ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0d0dba7d ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x127edceb ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x16e970c3 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c339f12 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ab51415 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2debb668 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x52029def ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b8da823 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x601010aa ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x61e29702 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6402e606 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x08d7faa3 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x52441e16 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7fffffff nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2be5fab1 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4107ced4 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6b2e9300 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6fa6b828 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6fac4838 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x7fffffff nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fffffff nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fffffff nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fffffff nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7318257e nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7fffffff nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x36a1bfe9 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7e6cab9a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x066206c1 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x0e204386 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x26a862de udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c0be942 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x77c98e09 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x14783e6f esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0df36b79 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7fffffff udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6d275698 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0abdd95d nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7fffffff nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7fffffff nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x3be5f212 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2297f5c2 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2e3373cd nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x43770068 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x4888a847 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x63404d02 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x4bc7032a nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x77d3b5f2 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7fffffff nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x059d5945 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x093f24bf l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20924ae1 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x51f8e1d4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57c0c347 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x615561bf l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64754539 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6f8dda32 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72c8328e l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x79eb4142 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x2b3459d1 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x41b449d1 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x051a15ee ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x16594fac ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1795a3a3 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1e03bfaa ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b19994c wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x308bc708 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3e29a9d9 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3faa8e19 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44b94d86 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x45341d9e ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4b2cc810 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5683266c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e2bfc6a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6daad347 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7831043d ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1271385f nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2ca73883 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5537b0b0 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5b71152a mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0eb40c06 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1e837e6d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2204cdcc 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 0x2bd14f7b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2c27d694 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x36098286 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39a58a6b ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x39ce0459 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3c2feacc ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3fe051b9 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4283cac6 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d69f7e3 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5257ff6b ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x668ba827 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6ff8391f ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x319bb2bf nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x4711b7ea nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5aba9fda nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0260d282 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05d8267c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a204a16 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 0x0df616a4 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12ac4ebb nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1863768e nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d23792b nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d98cc31 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x203b567d nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2214f4bf nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2252fc58 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24d9419f nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b66777e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b82622e nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d1a1901 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2db466e4 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2dcb5a48 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eb05a5d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fdf3be9 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3588a461 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x375e0e35 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b575d89 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dfd19e0 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4309084c __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4551d1eb nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45e62604 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47a8794e nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c453b35 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d0aa819 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e7f3491 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fa66f25 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64f07cad nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68596a6b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x685a9b74 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6955c75f nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6999c750 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f4a06ba nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72bbfb00 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78953279 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dae3a27 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7fffffff nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7fffffff nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7fffffff nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x119af16b get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x338f18bf set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3726acf0 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x653844bb set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6a71a553 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f54ae0e nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7fffffff nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4a540ce1 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x60a2dc77 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x32f39606 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x029d0399 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x50100ae9 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x561cfb45 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5d07c6cc nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b7e9915 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x11855f1a flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x24c54c85 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3105d856 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3348987b nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3d998f6c nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x512e6a33 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x518a23c8 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x57747319 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7437c1b0 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76459a74 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x02193b3e nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x11b77a36 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1cce5dd4 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2b0f83b2 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2e5b1240 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3a54146a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x642a5ee9 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d15d4f4 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x08cef5e1 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1927db8d nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4eb81a2e synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5d16d507 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f5217dd nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6327034b ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x64ebc72f synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x025253f4 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0be72532 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0c038c5b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x200ce3e2 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b74cba9 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c5212ed nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3268dcd7 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32f6070c nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35e29fc8 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4113ea22 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43f99509 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x44648ebf nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x48cc0bef nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4dcbdcce nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d2b9f92 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61bd66b7 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61bfd19f nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a2d7811 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7cb470d3 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d46c86c nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x03cab9a4 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0889e303 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3aee9a28 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4228a96c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4d8810b4 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x566275a4 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x0ed6056a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7fffffff nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x7fffffff nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x24533e27 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7fffffff nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x3646bda7 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x51c2c995 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fffffff nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fffffff nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0599675d xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14adf958 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x394c9fd4 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4340c6c4 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4c197f52 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4d6a9a93 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e3e851f xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6fb40688 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x769890ea xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7708f3c8 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7fffffff xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7fffffff xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x76b64a03 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0a0ce49d nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1bf7160c nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x507dea8c nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x4c69c0ee nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x6938964a nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x01762429 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16bab502 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1a75fd70 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1c89b2e7 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff ovs_vport_free +EXPORT_SYMBOL_GPL net/psample/psample 0x4779ae9d psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x498cc2e7 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x4e42bf54 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x45779c8f qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_ns_remove +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x03f101e5 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x04779a2d rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x08295b72 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x1294e874 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x16a70e6b rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x1a9bfa4a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x29ca5c11 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f32561d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3effe63f rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x52e5aa98 rds_recv_incoming +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 0x6e1b3b6e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6f3bd3b5 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7f387ed8 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_trans_register +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x2ca19f2f pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x59402e0f pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7fffffff taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x5bfd6974 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x05c1f094 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x527369b4 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x55026808 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7f8a41be smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff 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 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5c1f7402 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x67f8212e svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7026b895 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0022686a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x015720d7 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a5ccb1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03a894ae xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05a8c8cb rpc_exit +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 0x0685ad59 rpcauth_unwrap_resp_decode +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 0x0db6132a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dc7ece6 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ff73dc0 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10967bfe rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x119e0400 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13be7c99 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1670172a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174f6833 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x194ed7f5 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d8dcb59 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd244f3 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e19563b rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2a651e rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb7afad rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x201ac151 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x207d18f7 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2251a800 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ac4f39 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x282724c7 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2997a4b5 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29a5c88a rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2acb210a svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5842e8 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cbc6ebb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d60e430 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db444dd cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee10177 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f61a5a0 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fa0db8f rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3019cb86 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30ce44d0 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ad9215 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326c72c0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x336dad85 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33b1cfc5 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x347e9e7d xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x375f0273 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f2f9d0 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x383da7b0 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386aeb98 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ae87a21 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0f92d3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b3ffba2 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bb9734b xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bdf5438 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2755c2 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f5e3472 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x401e0b84 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40d3cdab xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40e6a852 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4135914f rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4143c0f4 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x423c747b rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x466366bb xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ccc91c xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x493415af rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49a621a5 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ce7642 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b489b35 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5531a0 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500b590c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x502f6098 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522f4bb4 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54f4a869 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565e1195 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57aec61c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57bf7325 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58792fe2 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59b7d875 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5b0106 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b561b3f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd3d0be cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2cc71a xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d911be2 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dec0df0 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eabb8a1 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61212ad2 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6126f260 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x613bb54c rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x631b836b svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63b52513 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x641ac0e1 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6489f24b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65eb2184 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x681b9960 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x684d5e95 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a04876f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b150e93 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c113daa xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6edadf88 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee9dfaa xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f49b715 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fdfe73f auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x707fc063 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733aba33 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74200259 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x760a971c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x775d8e35 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b5fd889 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c9ffc57 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc023c7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f9a708b __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/tls/tls 0x361ebaa0 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x5d58fc88 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff 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 0x1745814a virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1b6f8aff virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x354a311d virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3be90dfa virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3ded1e8f virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x40af9f6d virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49d4428e virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4f228737 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52fd14bc virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x61adbc4f virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x78b0f436 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04e073d9 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08e72d6f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0a5c430e vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1bbd41ce vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1c3a699e vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b58b403 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x31049f7d vsock_find_bound_socket +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 0x47b2f4c6 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x480c11e6 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58fcfe2c vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x599a9e9a vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5babe3fb vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6e36e243 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7459f44a vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x05e559e4 cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0f8b1179 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x27123602 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4e99e686 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69b26205 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fad2bcd cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff 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 0x7fffffff xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x289ba372 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3da7bcc3 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x78e12531 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7fffffff ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7fffffff xfrma_policy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x7fffffff snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x7fffffff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7fffffff __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x7fffffff snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x103a4301 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x238f0fce amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x54d1abf4 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x62a54aee amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6fc44b6d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x73bf0922 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x064e89c8 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07e32f36 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a40692d snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c18131c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c31bf0b snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x18a5cfc2 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1908c62b snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21767fa9 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ca3697c snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32632ad8 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3954218f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3dc30368 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40c4d120 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4124710f snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43665035 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4402c3e9 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4718bcb3 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4bc93d90 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5020dbba snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x522b499c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x539b2565 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53d769a1 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x555d209f hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x564ac693 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b65192b snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6088e071 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64ea5e42 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x660f6753 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67767f64 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b8e32df snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bcb3951 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c94da77 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ceaf6fe snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ff0d9b9 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70e08f4a snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x719028d1 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72d83e4d snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7559d497 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x770745ca snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7716723a snd_hdac_bus_enter_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 0x7d681df8 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x55eba945 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7fffffff snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x52b671f0 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5662c5ca snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7b37a9b8 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0067bb62 snd_hda_enum_helper_info +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 0x09fec565 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a5984d1 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ec1b2fe snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0e5acc snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12e2e90d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1302bc40 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x134e6296 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13e25267 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14753ff4 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14aa68b3 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x154e8c7d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17a77876 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d6b5de9 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x285ca729 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28b151d2 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28da5883 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b821263 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bcc8247 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c1d24ba snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d5b54be snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31b2850d snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33fba55c snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3413d4da snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x353c353e snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x366162c4 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38d38a76 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3971e460 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d2bdfeb snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ddbaf86 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e72ddc4 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41d552e2 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4461ccde __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x456f8789 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4685145f snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x480f3611 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a4cde41 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fb27da3 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x504c33ff snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51f4937a snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5362ce16 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53b51e29 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56086b10 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x567b5c06 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58750423 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ca63512 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f6594d8 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61d0eae2 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x630dd52d snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63cc18b3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63d5102c snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65483cea snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65c6002e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68b9ed64 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b5cd508 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b6b0722 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6dc2c90e azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e3c32f5 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f60fd1b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x730a67c1 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75555deb snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76c32494 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x773769fc snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x780324ee snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7833e64f snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78be8f7c __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79a310d9 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a9635d4 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d068dc2 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d92847e snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ec2723f azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x00253ca5 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0461e556 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x10c44352 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13ab9da0 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x178dbb83 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b687f4b snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x29cc3982 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31d30859 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x483ade1f snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x616d4db3 snd_hda_gen_mic_autoswitch +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 0x7fffffff hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x55e85981 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0x7fffffff adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x3c54153e adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7fffffff adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7fffffff adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x07f5400c adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x29fb0f91 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3b57fe60 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3f26ea6d adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4186851e adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x63492761 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7ab9f694 adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x7fffffff adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x2d38e037 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x448705a6 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7fffffff cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1daded68 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1f2f0134 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x21902ea7 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x24aef8cc cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x61e4c433 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x70e39c81 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7b03b264 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3d7825a0 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 0x7fffffff cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3d20b7cc cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x55530a48 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x771921b4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x017913c2 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7fffffff da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7fffffff da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7fffffff da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2053cb26 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7fffffff es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x7fffffff lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x7fffffff lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7fffffff max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0f458611 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4bb172cf max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x08243729 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2218ece4 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x2c11f8a4 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7fffffff mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x32b698af mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x3cbf8cef mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x4258043a mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x7fffffff nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x483b9ce4 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7fffffff nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x2225649e pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7cac9adf pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7fffffff pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x1999ddf3 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x7b1c36f7 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1d68273e pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7fffffff pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x127af4de pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6cc882be pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7fffffff pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7fffffff pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7fffffff 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 0x7fffffff rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7fffffff rl6231_get_pre_div +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 0x7fffffff rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x070a180e rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x361e0c84 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0d772a89 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7fffffff rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x7fffffff rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7fffffff rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x7fffffff 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 0x7fffffff rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x7fffffff rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x7fffffff rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x0b15d791 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x16ead4f3 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x26466045 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x34cb1a7a rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4e005192 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5c7f84c4 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x756c6e11 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x7fffffff rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5fd8fdd9 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6f706b03 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x3d74fd4f devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x23a66124 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0514254d ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7fffffff ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5f6d4007 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x674ee78e aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0fef9545 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x432345fb twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x6e4523ce twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7fffffff twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7fffffff twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x7fffffff twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x1f6ae7e9 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x26d0425e wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2f0d1c5e wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b9b199b wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x13c19575 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1dba7535 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e835d4f wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2cc8035c wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x36f1ef1f wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4dc25f46 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c6947c5 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6cd08f34 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6e2aae0b wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x77b2cc04 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x78c1e1c7 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7a98a6fe wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x16c0528a wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1cfcaa38 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2520c9d3 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2d2e3c9d wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4d42326b wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5b9baf3c wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x5cc66d67 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7fffffff wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x019697dd wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1a717f59 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x52e23955 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7fffffff wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x7fffffff wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x6f013484 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5bec9946 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x7fffffff wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6ea9210b fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x33f397c2 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7dd3e5a4 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7fffffff audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7fffffff audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7fffffff audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x13a3000b asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x21cbae12 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x34015802 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3b3bb351 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4231c08b asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x45525f51 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4d945bae asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x577f49e0 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5bd0373a asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x68591779 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7250b9ca asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x02d3a475 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x08eb4db0 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0e8fa638 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0f7ab2ca mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x188c9620 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1fde393f mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x21dfc1a6 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x269660c9 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2ec843aa mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x312cbf47 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x489e3b17 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66668910 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x69983d9e mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6bae1c7b mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x40e2f88c mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x7fffffff mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x3b833827 axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x44546d8e axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4928a172 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x59dc9bff axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x70761977 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x14468237 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x443d22ba axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x506c837c axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7c1869df axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7fffffff axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7fffffff axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x7fffffff axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x73f10bd3 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x77546f07 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x46cf3ac4 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x75e609a6 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7b5f5d63 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x132ebb13 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x3b168286 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x7fffffff q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x66b99662 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 0x7fffffff q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff 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 0x7fffffff q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7fffffff q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x5510c8c0 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7fffffff q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7fffffff q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x7fffffff q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0425ba67 audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x07096300 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x08b1a616 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0f8d51fa audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1613c749 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1f7c1391 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x206a2c27 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x20db903d audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x29db8554 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2cafe69e audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2d7f6fc1 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3b33eeca audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4063c478 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x423ef2ed q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x56b121a5 audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x0f44f2b2 q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x600c8fe9 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x7fffffff q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x56a3facc asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2ce730fd asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x41c4fb68 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x7fffffff asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x77ed5f79 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x7fffffff tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x7fffffff tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x121aa505 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2b336f95 tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3f9272bc tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5793de1a tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x7fffffff tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x7fffffff 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 0x7fffffff tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x2b668508 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcpdm 0x7fffffff omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x44d4d202 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x01948c7a sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x37db646c udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0953199f line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0e74c0fd line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x19a86fc0 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 0x22ce947b line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3af185ef line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3fc4fc4f line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x452e906b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5e21b223 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x790dfdbc line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7f1414dd line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_version_request_async +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x0000f79a devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00010d0b vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x0007e75e espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x002a0b10 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x002fb3dd pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x00436469 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x004618d8 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x005baf81 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x007f1810 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00b446f4 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x00b71b58 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x00bfe7c4 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x00cc0078 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x00cdcc04 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d8a269 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x011c4b4a pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x01232100 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x0130b402 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0138c44d dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x013922e1 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x01497e37 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x014b7e41 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x0154d637 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01594edc clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0171e3f5 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01879793 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x018f056f device_add +EXPORT_SYMBOL_GPL vmlinux 0x01baea82 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x01c0c9c5 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1102e pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e5fd18 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x01ed89ed snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x0200568c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0203183a sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0221e713 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x022b1f3b is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0240c2f7 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x0240f492 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x027abae0 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x028026bc perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x028f5d96 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x0291eeb0 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x02b485fb of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x02c4c456 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c894c2 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x02ca29de sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x02e662ab dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02f13c02 set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0302e913 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0304deaa dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x030d67ae gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x031325b6 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x03164d2c irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0319ef04 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032949c6 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x032a86c0 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x032de469 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0333c1cb lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03440880 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x0358628b phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x036bb262 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x0388a87a of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x038f5b7a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03a46c7e phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x03aa2ad4 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03d0c194 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0402f7ba ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x04060cc4 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x0415bc57 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x041c2740 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x0423fde9 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x0428e2ea blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x042dac7e devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x0433e419 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x044a78cc crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x0450401d crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dee92 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04759762 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x049f11d9 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x049ff56d platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x04a4dd7b power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x04a78480 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x04a8b384 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04b6cacb regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cdd9cf snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x04d9aceb inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x04dcce4e remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04e8e734 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x05040081 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x050f8a12 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0510e01b devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0543cf1d tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x054c732f fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055394dd usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x0557bcd0 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x055a378a vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x056090fe dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0563364a of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x0585b7cc of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058b67a5 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x058e5310 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x05926a5e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x05a0f893 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x05a1077c __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05a16291 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x05a460b3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x05a51e86 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x05a924bd snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x05b053b6 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x05b4e4f8 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05c9f6f7 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x05e62687 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x05e6464d report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x06024945 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x060abbf2 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x06154697 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x061cd2fd pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0625f101 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06286bea of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x062f5fc0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x06456ebb usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x064be0c1 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0652086f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x0674c79a sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x068721b8 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x068e76b3 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x06942d5d serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x06a19cc0 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x06a1f0e4 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x06a5aa4b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x06a7a968 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x06b53bd2 memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x06b8aa91 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x06bde660 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cf309b scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x06d142db of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x06d1c125 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x06d2b195 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x06d9c3b4 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06eac34f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x06fe00be sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x070593e6 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x071009f8 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x073559c5 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x07392b1f crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x073df4ba perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0753a320 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x075be30b pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x075f25f5 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x076951fd blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x07721777 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x077aa142 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x07944d66 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x07ad0e1a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bb71b1 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c3a135 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x07d60c79 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x07dbd2e9 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x07e041fe regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x07e07042 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x07fe8d7a clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x07ff0c79 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x080fb8e4 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x08106a53 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08192b9f fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x0827c423 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x082cf2d8 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x08384264 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x083f76c3 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x0849478b regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x085f97c6 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x087d59e0 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08871639 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0897fb97 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x0899f34e crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x089f50c5 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x08a6d1b9 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08b513b8 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x08d3c5a9 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x08d46d52 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x08d5c1c1 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x08ed6cb0 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x08f57f06 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x08fbc11a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x08ff9ed4 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x090375c0 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x09077a71 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x091105a8 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x09138663 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0944407e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x094c3d2d snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x094dbbf4 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x096a377f ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x097438fe blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x097fa724 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x09877e8d md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x0992d44d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x09a13d16 usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x09a8b03b fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x09ac1387 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x09b46729 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x09b51cc2 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b9681d elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x09bba50d fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x09e001bf pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x09f710b9 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x0a0d0e66 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x0a2023e1 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x0a243e02 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x0a27456f ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0a2d38a4 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a37a5f4 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x0a4132b2 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0a5f8831 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x0a68d6f3 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6c8d19 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x0a73cfa7 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x0ab2349b pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x0ab4bfe4 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x0ac728af usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x0ad54bc9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x0ad7c7b9 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x0aeadea5 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x0aecdec4 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x0af0499f virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x0af388a0 sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x0afe56b4 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0e3438 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x0b160466 mmput +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b3506aa ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x0b3b6d62 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x0b439e8d ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0b460086 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b57411d regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0b5c242d sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x0b6ccaa5 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x0b6e15fc rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x0b6e986b __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0b7b523d ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x0b9b9ba7 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b9c10c4 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ba1ce1e put_pid +EXPORT_SYMBOL_GPL vmlinux 0x0ba5d493 pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x0bab14ea nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb69c7a xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x0bb791ef dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0bbb77fc mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x0bdcb7bc snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x0bee1f82 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x0bf0fb7d __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c18a5dd balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x0c251710 mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x0c2fe12c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c36fc8b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x0c3acb4a key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x0c3c83da nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0c4298f4 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0c468731 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x0c4ef21d sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0c625788 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x0c7d3821 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca352a8 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x0cbab9e0 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ccd7ac5 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x0ce144fc device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0ce20966 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0cf8bcfc inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x0cfe98ff addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x0d0e9d42 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x0d120dbb sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d13d32c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0d27775f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x0d280d92 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d3e3481 bch_free +EXPORT_SYMBOL_GPL vmlinux 0x0d3f2fac __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0d4138f3 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d58c22a sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x0d5a39b5 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0d76af3e wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x0d7cc113 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x0d7e3039 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x0da19ea7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x0da260c8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x0dbc0c0e fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dfdfd15 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e03a1fe snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x0e097467 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0e38c4e0 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x0e396160 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x0e51f13c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x0e557588 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e5e204d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x0e636fc6 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0e6caf92 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e791dab mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x0e7d687a virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x0e83151f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e968f92 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x0ebac269 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0ed30357 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x0ee864bb cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0ef737cf bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x0efe490e clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x0efff8c4 skb_zerocopy_iter_stream +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 0x0f3fb0fa dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0f405961 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f41ecbd usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f4c574f pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x0f5ac426 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f797a14 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8b123a register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x0f8e46a8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x0f97eeca clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x0fa795cd perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x0fb32fce snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x0fb8b75d ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0fb90957 snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x0fc9f6d0 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd6b68d scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x0fd7142d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0fed2bc4 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x0ffc36c3 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x1005439d mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x10057e6a __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10220cad dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x102e7afc kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x103b4547 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x10535b88 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1056b0d5 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x105b39b4 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL vmlinux 0x105d3f5c usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x1066dd7f iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x106b3ac1 nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x106bfcef platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x10702458 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x107eed37 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x1082e573 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x108d0ee2 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x10919735 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x1095af8c cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x10ab356f user_read +EXPORT_SYMBOL_GPL vmlinux 0x10ac7362 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x10d61741 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e32c80 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x10e9a21a irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eefc46 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x1102b964 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1104fd12 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x11530914 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x1156c0bf __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x116fa0d4 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x11739943 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x11767292 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x117cc266 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x119f9a4a ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x11a98654 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x11b1aad4 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x11b4f6dc devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x11b9aca9 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x11c13553 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e72f40 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1206638a snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x1210370c irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x1212912e crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1231b06e crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1235f62c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x124f58e8 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x125ae694 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x12682ad7 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x12833632 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x128b90f9 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12a17921 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x12a433bc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x12baf2bd __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x12c6602c sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL vmlinux 0x12d4174f sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x12d61166 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x1317644c blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131c3dac __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131fc516 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x1326e320 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133e0c39 musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x13470ba9 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x134aac54 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x13573323 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x135745ab pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136ef111 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1381933c extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13849034 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139cf3ab bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x13c37a03 page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13d0d8a2 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13edf44c driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x13eeb417 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140fd041 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x141489a5 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x14164084 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x141c9d39 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x142ccf26 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x14313359 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x1432a1a8 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x1435550b vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x1440ed06 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x144c7f92 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x1451a9d2 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x145fc7ac pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1460f975 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x1467d479 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x146a07a7 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x1470093f get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x14964ed5 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x149afa35 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14be1d5e ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x14dad4ca devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x14deba58 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x14e6dec6 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x14e82176 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x14efca0d blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x151bf994 mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x152b4ed2 snd_soc_dapm_get_pin_status +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 0x1558e0d0 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x1570b0a7 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158c2d0a cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x159077e3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1592fd25 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1595990b disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x1596331e virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15abfaba crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b1c82b spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x15c0a0b6 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x15c3b698 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x15c876e2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x15ccba7a imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x15cd23bc wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x15cf1146 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x15d686f9 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x15debb03 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x15e7308d fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x16019558 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x161990b4 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x162fa616 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x163fa5ef wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1646204b pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16472ffe serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x16571cdb dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x1659a47f rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x166e9ac6 snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x167be244 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x168505a8 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169572a2 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x169b457b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x16add22e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16daa10f nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16eeaab5 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x16f12913 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17153c7f devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x172d54a5 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x17317acd devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x17346ff7 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x17352aae ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x1735ab58 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x1736e2f9 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x173b0f76 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x1776fb29 musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x17777646 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1784f385 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x178bcbbe crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x178d5441 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x179f5c81 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x17a4f298 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x17ac4f92 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x17ae4250 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x17bb02ce virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x17d90dae extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x17f1f5b6 mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x17f40bbf debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18011723 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x18112c1b dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x1811f7b7 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x181e44c4 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x18351429 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1850aaa6 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x18543411 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x18619524 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x186f82ec call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x18717808 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x18728b60 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1872ec4b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x187ecff8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x1880581b dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x188bbc58 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x18a09bb0 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f70e66 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190320bd udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x190a7209 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x190c4d69 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x1914a8e1 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x1916a46b mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x191e8345 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x19304f30 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x193d9386 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x19424a51 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x195da375 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x196862c8 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x1968d8e3 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x197060d6 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x19728f56 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1972bf63 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x197ef92b nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b3466f device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19b80b98 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x19bcc035 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x19bf3327 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c20b63 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x19de8069 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19fde26b dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x19fe16a5 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a114b31 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a234eaf __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a246347 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a3e323e pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1a408041 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1a44572f rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a45c74b pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1a51c36c pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x1a649f96 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1a67fa37 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a79ed9f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1a7d73f4 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x1a7e90e9 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1a83eea0 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x1a92e448 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1a9be8ba pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1a9e07ec of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1ac138fd hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x1ac6844f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x1ac90940 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x1ac9485d devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x1aca6964 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x1ad5d37d scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x1ad6231b kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b01f43b meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b0fd4bd mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1b1400c2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x1b15a8b7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x1b1c0746 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b470e8f ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b4d0446 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5b3252 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x1b6fcef3 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92977d mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9409ef of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc16b6d bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcb18a4 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x1bcd0c01 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1bcfc9c2 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x1bd426f8 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1bd7bb69 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x1bdf3800 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1bf1b951 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x1bf5f10f snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c0a0e19 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c13c5a5 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x1c162d54 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1c18e5ba irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x1c380c80 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1c3b2fed ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x1c43ae7c regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1c47bddd crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x1c4da7cf pci_epf_destroy +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 0x1c7394d9 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c78b15e vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1c7b7baa blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x1c7bb1ec blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x1c7be59c __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x1c7dc8c6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c812eab alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1c85b7ed device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8c18d2 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1c918bad mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x1c9dddb9 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1c9df7b2 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x1ca17f4b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccdc362 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1cefdfa2 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x1cfaf990 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x1cfb8ed4 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x1cfc8d3e fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x1cfcd303 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d158b52 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x1d1719f6 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x1d1d6ebd ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d39ec81 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d467214 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x1d5059b4 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x1d5ed776 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d5f506a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d6ec8b4 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x1d6f799e __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d77f6b3 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d962047 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x1da593dc serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x1da70d6b anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x1db1a988 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x1db44bdd scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1db69982 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1dbe19d9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1dc17bf9 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x1de0c62e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x1df5eb21 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfce577 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e08671a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x1e0be52f debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1e153ae6 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x1e27b1af modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x1e311054 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x1e3448d2 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e3597ea devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1e3a12b6 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e45b40f __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e618dfc devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e882e8b mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e986551 sdhci_setup_host +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 0x1ec662f1 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x1ed137a4 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1ed9920d blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1ee0b658 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x1ee31b89 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x1efd4d3a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1f05dc96 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f141392 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1f1d01d6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x1f27db7e iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1f37dab6 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4704a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f582ed1 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x1f587abf bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f72a35a mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f9aa84c fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fbc9e3f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fdb8f87 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1febbafa qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x1ff4435c fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x1ff63cda spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x1ffbf8e7 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x1ffdbf4b usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x2003fe42 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200a507e power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2020aefc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x2039f635 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x206af112 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x20832a3b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2096a0de power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x209f4b47 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x20ae217b snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x20ae220b debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x20cbb283 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x20e5d77f efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x20fb5e3f snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x20fd27ef sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x2100ff41 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x211d2011 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x2121e989 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x213d60ba ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x213efc5f __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x21563e68 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x215dd642 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x2167d0c0 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x216a8fe2 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x217028db clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x217ee22a tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x218eb852 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x2190f155 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x219167dd handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b12f3f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x21c9cc2c sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d1cd35 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x21d2219a snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x21d37489 imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x21d90254 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x21dacf65 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x21dfe62d __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x21e7c5e7 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x21eb457a sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x22079ce2 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22148e02 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x221db774 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2222b758 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x222c494b crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x223e215c rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x224b23dd irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x225f9870 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x226841e4 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x228c9b4f vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x228d49a2 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b1b340 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x22b6a58a usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x22b7abbf tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x22bea2be mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x22bf66f7 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x22c2b88f snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x22c670a4 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x22cf4878 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e0495d unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x22e6315c ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x22f0bdfc ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x22feaddf ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x230d25a7 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x230f8ddf pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x231066dc xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x23122eef devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x2314ae22 __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x231e919f noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x2328d0ac ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x232e3cfd crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x2366b10b nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x237330ab pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x237476c4 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x2379ef08 icc_nodes_remove +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 0x239bbfae of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x23a69d20 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x23a7765c kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x23d8fa1e virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x23db9810 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x23dd8978 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242faddc irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2449a7f1 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x244bda65 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x244e8db3 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2457e350 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x2459a6c2 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2460aeec serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux +EXPORT_SYMBOL_GPL vmlinux 0x247e1658 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x24858d3b devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x24901d2e unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x24cfdc65 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24dbaa39 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x24dbbaf7 tty_save_termios +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 0x2504f828 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x250ada31 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x251cc5ff sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x2523a920 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x2524b4f0 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x252bb79a spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253e8d29 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x253eab65 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x254f68e3 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x2568722a switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x2571aff3 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x2576e861 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL vmlinux 0x257c52e4 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x258dfe61 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25a287fd sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x25b35027 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d28019 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x25e58593 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x25eea68b raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x25f164b5 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x26057a8d synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x260662c6 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x2609df71 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2647cfe8 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x265e611d __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x266866b4 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x26695218 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26889006 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x269c8287 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x269dd7c0 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x26a54418 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ca436a devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x26d63465 mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ef0e73 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x26f625ca wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x270007cb of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x272314f2 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x273ac4b9 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2740a68e __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x27497402 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x278308f6 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2791f26c gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x27996753 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x279c9854 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x27a39a50 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x27b1b929 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x27b23620 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x27b3fdff regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x27b8aade skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x27cba29c extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x27e28716 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fe5f8b __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x2807b380 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x2812b997 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x281826f8 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x28259da8 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282cedca cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x283ffe9f imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x286443c5 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28700e4d usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x287527f7 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x288058bc nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a622c9 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28ad7ceb pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28d02314 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x28e9841b cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28f2cac2 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x28f7108d shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x29057eb5 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x290b86c4 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x292591ae cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x292c8eb6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x2936664f of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2937727c regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2939769d dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x293cbe43 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x294ed340 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295c454c gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x2960a6c2 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x2963ecdd ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x296da6e5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x29727d25 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x2981a22e wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x2996fd60 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x299ee5af blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x29a65b6f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x29a76043 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x29ab4887 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x29afd47f sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x29b41daf pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x29bc9565 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x29c523a8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x29cc7f17 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29eadd6c bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ecfaf4 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x29eef303 nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x29f38741 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2a01f1ce usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x2a08e629 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a2cffe0 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x2a312524 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a3dc738 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2a470914 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x2a4ec21d regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2a5641ee component_add +EXPORT_SYMBOL_GPL vmlinux 0x2a564a21 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x2a5c4a28 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a640334 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x2a6438e2 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a732f54 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x2a87e81d irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a88ac05 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x2a8de3da relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aab2bb1 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x2ab3ce2c tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x2ab482c1 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2ab9587d of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2ad051b5 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x2ad17b73 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x2aefb667 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x2af4c032 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2b08ca72 nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x2b15df6c wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b1b8344 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2b239b17 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b3e595a gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b42d8c9 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b4916da blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x2b5be635 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x2b607e7e ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b684413 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2b68bedc input_class +EXPORT_SYMBOL_GPL vmlinux 0x2b841f28 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b986fe0 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x2ba130f1 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2ba5659d crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2bb3042b vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x2bdee17a mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2c01cd15 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x2c071711 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x2c0b2eee dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x2c1b5fc4 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x2c1ba89a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c250d64 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2c2a3ff8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c388acb virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x2c45b426 component_del +EXPORT_SYMBOL_GPL vmlinux 0x2c481cd2 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x2c481f74 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2c4ca775 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x2c5026d1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2c53f98f tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2c58c9fa snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7a2d42 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2c7cee5e vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c817702 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x2c81a826 imx_1443x_pll +EXPORT_SYMBOL_GPL vmlinux 0x2c890ea0 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f13f device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca27ddd regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2cb1991e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2cb489d5 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2cb9abeb bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x2cd6f417 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2cda2a40 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cf7e624 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2d016883 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2d02aae0 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2d03f3a3 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d0d7513 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d1a0c4b usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1b0d5c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2d1c6af2 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x2d1ec36b thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x2d223a28 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x2d284371 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d2e703d of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d448140 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0x2d54aa3a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x2d54bc59 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2db03808 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dba9af7 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2dc7bc09 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x2dcfc53a crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2dd17f0d icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e10c6be sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e3bdaf4 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e4cc2f8 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2e4ddddc fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x2e593eb5 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6e44ba proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x2e6ec443 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2e922d04 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x2e9973b4 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x2ea03e99 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x2ea15a18 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2ea920a1 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x2eb06d8f snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ecf5856 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2eee8635 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x2eef5ab1 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x2ef8684f __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2efa597d devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2f0bb71b gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1a3300 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f25a2fc pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2f270c3e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x2f28d446 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2f37f7b7 mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x2f40bfd9 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x2f4a6b12 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x2f4bedfa __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x2f5208a9 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x2f59e2e2 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x2f5d0018 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f6f4ddb sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x2f6febe5 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x2f7353d6 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2f804d19 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x2f80a762 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x2fa6db20 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x2fa8858d tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fb47493 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc80225 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x2fcba9a1 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x2fcfd2c3 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x2fe464ca usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2fee86c0 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x30096d57 insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x3009d0ec cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x301f46e2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x302917ec ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x302fdd9d fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x3030fd5e __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x303568fb regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3044513e pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x3045fd97 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x3047f190 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x30497973 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3053ba31 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306679f5 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x30672c2c crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x3069e46b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x30758a21 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x30767cae bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x30791488 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x307cdf48 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x3088902b snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x3097385c crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x309fb9a7 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30b2c89b mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x30d25ccd pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x30ff678f snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x310d04c8 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x310f58b1 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x311d76c8 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x311f0320 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31336f22 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x31420e17 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31434550 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3152d7eb mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x3153f56f snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x315c33c6 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x316031cf tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x31623d31 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x31753aba device_store_int +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 0x31981839 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31afffdb mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x31ba055f nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d8122a irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x31eca934 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x31f3ce6f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x31f9d882 imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x31fd5dbf rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x31fe5f99 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x32065172 sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x321a0219 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x3224daed musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x323a93e2 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x324ad1df to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x324f0442 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x325e5118 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x3275b24d clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x327bd6e9 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x327fcdee pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x328cdee9 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x32a107a4 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x32aa89e7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32abd690 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x32be2df3 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32dfd8e2 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x32e31286 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x32e3f45b sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x32fbec40 nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x330d5fce phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x33208b59 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x333912fa component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x33484dc9 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x334fcce5 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x337268f9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3380dae8 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x3382af8b i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x338883ad pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x338954b1 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x3391345f of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3396e182 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x339d659d dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x33a63e88 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x33b1ce0b proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x33b46aa6 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x33c029c0 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x33cc6bd9 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x34033f45 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x3417d1b9 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x341bde63 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x341ca172 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x34244b2f pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x3424cc85 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344253c7 mvebu_mbus_get_pcie_mem_aperture +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3448cabb irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x344bd03b devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345878cb usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x345baad0 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x3461e4e6 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x3463db8f power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x3464f439 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x34692def dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x347a7a3c mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x348a140b vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x349af138 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x349f2f77 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x34a3c292 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34ae14cc driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34b796e3 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x34be70fd mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x34c37bb7 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x34cf8838 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x34db3c08 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x34e96b9c pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x34f51514 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x34f5ecb0 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x34f91aec securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x34fdd655 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x34fdf958 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x34ff09cb iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x34ff4e83 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x350002a5 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x350f9bc9 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x351db3d7 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x352af523 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x352b0f8f fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352df7f3 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x352dff2d regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x35302b8e __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3549c383 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x354e8185 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x35522db7 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x3558772e usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x3580166d regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x35876e65 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x358cf3ae ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a1e5d5 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x35b12fec regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x35b79a9a kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x35cfab06 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x35d2742d __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x35e658f0 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x35efc47f __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x35efdc96 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x36187dc6 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x361b0ca4 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x361ea58e serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36266b44 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x362b97a9 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x3633821c device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x363884a3 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x363fdf6a cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x365871cd pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x36604259 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x36662075 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3677d849 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x367adf39 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369051c9 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x369390be alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36aac785 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x36aba74e clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x36bc15a1 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x36c379b8 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x36c591e9 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x36cfc651 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36f08ffe to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x36f6608b inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36f7a60c snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x37040039 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x370bba9c gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x370d935b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x371632eb __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x371e8c5d nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x374a9821 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x3754cf3f of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x375bd803 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x37621f9c nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3762debb fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377c8b82 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x37a8c5d1 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x37ac32f3 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x37adf3a5 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x37bcea21 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x37c71296 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x37d915c4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x37e24815 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x37f98356 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x37fb286a snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x38096539 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x381ecfe6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x38266436 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382897ca ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x382de1bd extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x383672eb ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384b7edb cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x384dc29b mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x386ceff3 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x386ddcf4 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x387fd8de spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38962587 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x389e5996 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38a352c0 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b38593 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38cab653 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2725d uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38edbc73 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x38f19581 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x38f5e04a dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x38f99023 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x38fd46ba ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x390ba2ea clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x3913ed06 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x391a3692 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x3945ff5e scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x394e6a00 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x395d13b8 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x3960a7d5 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x396d2576 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x397196bb pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39899e95 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x398a8755 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x3993c1af devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39abc210 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x39bbe020 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x39c19f7f tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c901d8 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x39d28ff3 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x39e1563b strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x39f1e05a register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x39f3d996 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a144d7e pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x3a163a5c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3a17efce sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x3a199e6b devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3a1b5fe2 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3a1ff8d3 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x3a2c84d9 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a2e7fe1 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a59e1c6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a687efa of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x3a6ba6bb pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x3a71eda5 user_update +EXPORT_SYMBOL_GPL vmlinux 0x3a7c19e9 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa71cf5 page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad6bc20 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x3ada06b1 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x3adc0e54 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3ae86134 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3aee0105 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3af10ea4 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b0728bf fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x3b0e30a3 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x3b1916cb usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x3b1e9218 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3b22ead5 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x3b36c927 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3b496184 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b64b8d6 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b6637db of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x3b6ed6f5 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3b72ebc4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x3b922190 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3b9cb3aa musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3b9e4bfa bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x3ba8402a i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3bb2267a gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x3bb2fe8f snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x3bb9ffea snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x3bc73d60 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x3bc9f8e0 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c10ff25 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3c177332 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3c1b83c5 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1dd6c0 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c2f99be pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x3c30cd5d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3c36f045 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c4522fa nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x3c5e6ca6 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c7e266a bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x3c864287 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x3c96996c pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x3c977a87 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x3c99f01f sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cbc7fe2 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cdff220 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x3cf00f4b mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x3d0107c8 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x3d05d0ef attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3d0e4a5b perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3d10bfd8 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3d338747 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d395b9f dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d42cda5 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d59aeed dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x3d5a1c3f pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3d5c4e6b snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3d815303 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3dbb4b02 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3dc32978 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x3dc754fa blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x3dd5fa0b usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc7f7a free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x3e2461ee __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3e27065b usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e413619 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e46d802 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3e47fdbd devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e50997c gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3e5231c3 snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e742e4b devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x3e75c860 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x3e803ec7 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x3e85ac26 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x3e8fd49b dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x3e976334 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ed89e3d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef3fe96 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x3efcee68 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f0a6d20 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3f20d69d usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x3f3b75cb devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f497012 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f50ff5b devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x3f5a73d1 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x3f839346 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f84f7b5 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fb7afe5 nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3fbce00f devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff3a0bb snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x3ffde93e pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x400a1458 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40596b14 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x40597a88 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x405bba1e otg_ulpi_create +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 0x407e7207 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x4084b9a4 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409a6ddb spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a3ae2c bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x40b37456 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x40bb4fea devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40cdc3ff pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x40cebb80 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x40d51ead gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x40d72754 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x40e2b383 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x40e5ca5e icc_put +EXPORT_SYMBOL_GPL vmlinux 0x40e8f3a3 md_allow_write +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 0x411c9563 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x411fd114 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x412402d1 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412cd966 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x413182fa device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x413680bb ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x4143acdf pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x414b4e32 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4152d45f sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x416d7173 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x416f2678 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x41702044 dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x417bbc81 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x417fe450 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4191bb86 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x419851dc phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a592ca regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x41aa145b uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x41aaca31 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41ccd51c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ef7671 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x41f68f9c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x41f79b4d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4207931e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42114e45 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x42221fb5 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x422fb589 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x423949be __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4267542e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x426a6b71 cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x427310ad inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42905a77 irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429d699d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x42e372a9 attribute_container_unregister +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 0x42f8ab18 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x42f9b26b snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0x430d2625 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x431c93b4 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x4320c797 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x43303407 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x4340a26b i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x43454ab8 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x43574920 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x43600dd6 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x43601848 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x436c7176 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4392de97 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43af5a1b stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x43c106ef vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0x43c4814a udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x43ceaba1 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x43d49b0a regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43ee81f1 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x43f76749 pci_epc_get_features +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 0x4407fb4b __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x44116c6e bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x4414ec44 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x44163865 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x441b69da devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x442c8973 regulator_bulk_unregister_supply_alias +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 0x443c06b7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x444a6a5c pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445fb50c transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x446c9ae9 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x446efa08 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4473fa72 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x447cc01b rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484f44f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x448c8257 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x4493fa50 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x449646fa devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x44ab57a4 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c7fb64 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x44cb2fb3 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x44d74d69 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4504d96a dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x45051f45 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4520518a snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x4520fef6 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x45370b73 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455a9299 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x455dfed7 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x4560e3c8 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d76fd rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x457e0a39 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x458df475 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x459b5dca tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x45a747b0 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x45ae23fc crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x45f9ed49 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46011f92 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46109243 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x46226cd4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4625bdcf phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x462e238d mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x463ec36c vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x46407165 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x46607078 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x4664aa8c edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x466d0f2a __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x467aa025 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x467f5de4 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468ec976 thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x46a47721 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x46aaf361 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x46ac26b0 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x46bb4265 snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0x46bc4830 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x46bcb80c devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46d524c4 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x46d703a6 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x46db5401 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x46e59db6 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x46e7b24f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x46edec82 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x470cff24 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x471dbb96 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723fa6e devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x472a7c8a ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x472c9419 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x47314cbb pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x47494d71 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476fa1b5 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x4777cdf8 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x479cc4d0 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47bd138d snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x47beb1b0 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x47c92c70 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47dea766 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x47e1e1a8 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x47f08cb7 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x47f4ac07 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x47f6b4da class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47f7a94f devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47fed44a netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x4800c194 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4802276d dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48237ba5 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x4853dcd1 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x4855b179 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x485f6c56 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x486c5879 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x4870aa9f snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0x48777c72 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x489199c1 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x4898224b nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x48ae3879 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x48aeb9aa fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x48b2055b __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x48b9f4c5 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x48c15163 devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48cce5b7 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x48dac35e __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x48e7ab6a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4925b178 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493650dc irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x4942c5ac blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x494e1069 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x495e0341 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x497dca67 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x497fb768 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x4983ad60 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x498865b1 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4991d4db tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x49931e6f skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x499a4fc4 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x499b530a virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x49bc3340 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d96707 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x49de22d1 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49fcec3b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x4a101e86 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0x4a571ecd md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x4a691f3c gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x4a700bd6 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x4a7773f0 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x4a7b54c5 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4a7d0c0f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x4a7e2fb0 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x4a81e2e7 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x4a95ad2f scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x4a96b388 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x4aac4ead da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ac77b9a mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ae7104b mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x4aeb2672 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4b15319b ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x4b1654a7 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b1d8538 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4b2f8b95 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4b39334a fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4b44ea58 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b57640d device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x4b6cfbd4 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x4b9ad52d bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x4baabc96 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bbbfe8e get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bbed0c0 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x4bc70f4e ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x4bc892e0 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x4bd570ed regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4bd9726e strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be2c83d blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x4c168bf8 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x4c2bbd47 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c55afb1 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4c7252d6 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c768e86 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c7a8b37 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x4c842605 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x4c8b1cb9 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x4ca1659d dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x4ca5545b proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x4ca5f7ab usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4cacb19b fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cbd69d7 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x4cc50615 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4cea6fc6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4ceba78d umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cfeb89d rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d03b96e vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x4d219aea mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x4d2269a7 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x4d2d9e41 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4689d0 get_device +EXPORT_SYMBOL_GPL vmlinux 0x4d48b8b5 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6ea6a9 vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x4d70602e __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d781017 sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4d7c2c2a perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4d8d553f fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x4d923d0d pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x4d96ce20 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dc07355 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x4dc2aaa5 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4de416c0 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x4dfe32d3 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e20db53 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4e222f37 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x4e2860b7 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4e2ef14b ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x4e4b6cca ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4e4e3f1b sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e6581cd iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x4e77fb74 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4e8a277b wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4e8c99ea device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4e9849d1 hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x4ea284d1 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x4eabcdb4 sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ec0fac2 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x4ec1bfb0 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x4ec4d86f devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x4ece3ec2 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x4ed232c8 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x4ee9b32c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x4eea6535 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x4eeeb0e6 get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef9c338 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f18d9c7 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4f21f7bc ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f3564b5 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f4936e4 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f64c85f xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x4f68672c add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d57a7 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4f70bfee __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7b027b noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x4f8d1a54 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x4f8fc747 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x4f927657 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9cff9e pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x4fa35bdf dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x4fb0be2c clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4fb9b3e4 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff95955 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x500c8195 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL vmlinux 0x5019bef5 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5021c229 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x50289ce9 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x50434792 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5048ae06 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50665445 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x50703085 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x5086c2d9 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5093c240 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x5096d647 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x509a21dd crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a3b412 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x50b348b8 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x50b51049 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50be08d6 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x50bf31e2 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50caca60 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x50d1fb78 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x50dc8437 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x50e412d5 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x50e62682 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ec4642 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51131321 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x51186717 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x511c23cf mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x5121e180 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x5128b9b5 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x51379137 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x514b4f61 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x516b7d8b dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x5180f35a crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x518403ff __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x518b841a icc_get +EXPORT_SYMBOL_GPL vmlinux 0x518cff98 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b076cc irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x51ba5e39 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x51be7898 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x51ccd7fa pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x51f38069 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x52073255 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x52500f07 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x525be224 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x52641615 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x5273796e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x527c5798 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52ba5959 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d10352 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d9e593 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x52dcaabe of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x52e6c02f __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x52ec337a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x530a0ca1 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5314aebd usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x53277b15 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x5335fb70 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x533a72e7 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x533ce0fa devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x533dc8f5 device_move +EXPORT_SYMBOL_GPL vmlinux 0x534125a9 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x53436952 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x53449d74 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x534f93c5 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x5354402e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535b4266 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536cfbc4 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x538634c1 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x5387c039 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538f61c0 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x539cf691 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x53a13806 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x53a56400 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e18d98 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x53ea75a6 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x53ff35e2 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x5406b84a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5426c295 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x5427fba3 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x5436a2c4 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x5447a97a nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x54490b2b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x54550c95 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5472d902 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x5478ec8d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x547ea619 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x548c929c pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x54943a14 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5498f0ce sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54da6af3 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5506ad5c fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x550947c4 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x550bbba3 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x551acea4 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x551b0403 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55372889 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553f0954 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554c2f8d __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x555a8a67 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5581e767 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x55929818 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x559b38e1 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x559e7026 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x55a15381 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x55a98e28 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x55b181af pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x55ba135e inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d04acb snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x55d6e495 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x55e29c6a rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x55e2c51b aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x55ec0b69 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fc85f9 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560bb2c9 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x560ff7eb samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x562314b4 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562e9d4c tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x562f8aa9 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x5634e95f __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x56389ec4 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x563c1d8f device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5653a2ea dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x566957c9 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x566cf8d2 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x566f20cb cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x568280ab pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x5684a296 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x5684a5d8 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x5697fa0a sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56b0e5af ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56b6c74c devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x56b8a17c debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x56bb81ca debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x56ce2343 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x56cf94ec regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56ea78ee crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5700c16d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x571636b9 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x571f761e mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x572f990f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x5756a1b1 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x577d131b pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5782e67d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5788f3c4 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57969755 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57a875a5 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x57cbdb37 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x57d2c8e0 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e99ee6 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x57f1665d snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x580e83ee irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x581bae1f dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x581d2245 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x581f45c2 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x58271377 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x5830a383 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583b76d7 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x58425747 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x58437d0c subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x584d83ab __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x586bc7ee mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x5873a469 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x587ca792 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x5890cf82 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x58a28376 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x58b01db8 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x58be4ea2 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58c181bc icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x58c32c3b misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x58c349c8 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x58ca2786 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x58d274db devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x58d5b70b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x59187393 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x59192b55 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x5919b034 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x59255141 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5949b457 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x594d9540 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x5988875b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5990367d rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x5995fbd3 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59b2b975 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x59b93454 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59cc9272 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x59d2bd6d irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x59d79fca regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x59e63c85 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x5a006c46 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5a03e601 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x5a08e13a put_pid_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 0x5a2b80ed edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x5a2b9dc6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5a482aa5 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4a6d8b nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x5a63cd05 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x5a65ce14 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a71a29f dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5a750b69 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a84abe5 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x5a8e279f dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x5a9c4d71 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x5aa1dfed sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x5aa826c8 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ab2d34c __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x5ad7616d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5aee0b4b mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5b001de2 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x5b17c126 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b27d7a8 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x5b29bf8e inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b602b86 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5b6707c2 sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5b7e2a31 mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x5b82d911 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b8a1bfd snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5ba428f2 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bae983f debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5bb11fc3 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5bbb9b73 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x5bbba9f2 __traceiter_tcp_bad_csum +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 0x5be57241 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x5bec8227 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x5bee5840 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5bf9fa9e platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5bfdf3cf devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x5c122cd1 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5c1d95b7 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x5c22b032 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c4dd5d1 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c642f34 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c773f0a ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x5c7c17ef serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c87f8e2 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5c8d4b57 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x5c9c6a76 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x5ca01320 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cadbd1c of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x5caf19a2 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5cafcccc of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5ce90bb4 scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf0edcf clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x5cfe0c64 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d02bb59 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d0b4b38 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x5d0b7339 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d23318b sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x5d2a015a devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3196ea cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d344db3 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d374188 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5d39d840 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x5d3ce478 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x5d41c6cc kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x5d49eae4 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x5d4bf724 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5d6fa589 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x5d7693cb platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d95cef1 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da4d94e sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dae9d1a do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x5ddbec05 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5df1fc6a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x5dfbc6ff __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0daf3f pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5e11a451 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x5e29bc97 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x5e3c606d devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x5e45e45f of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e581fa1 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5e5c8a1e devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e6a0f71 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5e6b9127 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e815de4 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e869f0f xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x5e8957b7 nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x5e8d1f80 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x5ea267ef blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x5ea75e4d device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x5eac2981 mtk_clk_register_composites +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 0x5ece45fb cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x5ee42391 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5efc5458 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x5f142fbe crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x5f1e39f7 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5f1ec905 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x5f1f3a21 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5f383ae0 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5f64d456 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x5f66e4bf fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f6f4e77 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f914035 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5f978d05 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x5f9e630f crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5faaff83 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x5fab8285 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x5fb1aecf peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5fb9a161 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x5fbb3467 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5fbd093f mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x5fc1bb86 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5fcbc5c4 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x5fccd6ab srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x5fd22264 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5fe1fab7 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5fea1d81 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x5ff46320 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x5ffb9b99 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5ffbd42b mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600b1d10 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x601ac941 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x60236fa9 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6028a06c genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x60300d22 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x60310a97 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6039b2cb mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x6041cfda usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x60616ffd ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6083ab93 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x608b29f1 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60aad291 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b21252 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x60b8cb80 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x60bb964b usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x60c08e16 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x60c2594b crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x60d1f07a bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x60e0d0aa fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f1292c snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x60f38679 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x60f90c69 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x60fb4e75 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6102d73f sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x610a752e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x61123cd1 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x611803cd wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612adac0 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x612b4ee8 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61452e8c i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x616a5658 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x617574f3 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x6177fc53 nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x617a2833 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x617b3139 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x618180e8 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618bfcc7 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x61900950 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x6197040a irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x61a6c44f sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x61a9b7a6 snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x61ba4dfb blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x61be7fdd inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61cbc6fc sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f6efe8 snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x620eb0b6 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x6214a228 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x62172287 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x621a6d5c serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x622704f8 dw_pcie_write_dbi +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 0x624ecfca fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625be818 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62738eee blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x628c7e7e power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x62a1ad1a dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x62a8b4c8 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bb9fc5 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x62c884d9 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x62cd84ca fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62e5ecab synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x630c6ffd relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x63149c59 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x631cb29d skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x6320063f gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x635163f8 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x6363f3e9 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x637d5d1a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x6382839d of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x6389f004 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x63a50f17 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63b68ff6 sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x63ba93d3 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x63baa76f sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x63bfec83 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c52ac6 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x63de391d phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x63e03263 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63f483f2 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x64081f7b bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x640ea407 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x641ba698 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6426464b do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x64290992 snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x642b59ec devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x6432701a phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x64411794 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x644e7646 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x645867b7 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x648c5825 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x648eac21 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x6496896e snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x649a326b snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64c3d9b3 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x64c45a1e pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x64ca4f1a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64edef3d iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x64f08ead da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x650abf53 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x65280b38 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x65284995 efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x652967d5 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x652b6601 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x65306e71 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x655294ef l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655bc9e1 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x65698aae pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x656b00be sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x656e1fd1 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6571d1fa wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x6582ebd2 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x658e2acf __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x659cc187 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x65ac5eda iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d41a66 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x65d4f644 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x65d5ff1b ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x65db8e61 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x65def01d mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x65e8472f scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x65ee0e31 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x660141ee pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x660ee10b fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x66123376 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6649552c posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666991f3 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x6675ef67 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66868764 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x668e169c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x66922558 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x66a20022 nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x66a372b0 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x66afb446 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b41274 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bfcd25 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x66c53f7e devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x66ce6fbf dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x66cf0ee3 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x66d0f832 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d9b01e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x66e536fa perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x66e66e7f iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x66fc9987 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x670768f3 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x6709da3e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x670c3c3c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x673e8507 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67488e2f __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x674a5dd0 omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x6759230c fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x67719497 of_css +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x678b43cc dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x678fd03f nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679cdbce pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x67a68232 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x67bf66c7 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x67c27dfd rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x67ced6df dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dbbb8b __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x67ddfdb9 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x67f5fb4f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6801f2a6 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x681356e2 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x682b8518 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683a2ddd register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x683accd4 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x68489efe ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x685a1b3f extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x685bb852 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x687525ba badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x687bbe26 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x687f9bad sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x688d8910 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68b85a67 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x68c083ef pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x68e2bf50 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x68e7d8b4 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x68e8acdd gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6926ca24 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69388018 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696484de ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x696f1e43 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69819f67 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x6982dc77 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x698360ae __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x6994cce6 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x69a79079 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x69a999ce snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x69b4f170 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d28eac mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x69dd4869 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x69e047a8 crypto_unregister_templates +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 0x69f40d0f bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69f501e8 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x69fa4cab crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x69fe66b4 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a043276 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x6a055e2a snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a19d11d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x6a20134d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a3219ba rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a58649a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x6a64cecc pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x6a76832a key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6a7ef6cf nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x6a930e99 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x6a9eee88 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ab65731 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6abfec36 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x6add6341 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x6adee227 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6ae5d51e xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x6ae76cdf ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6b032e2e devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6b05786b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x6b0a8e87 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x6b0e35d1 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x6b14e7a1 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x6b17df14 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1a847e root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b1ebf09 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6b20b347 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b39851f dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b49b9ea unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6b4a24fd devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x6b637d74 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x6b7b2472 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b86b38a shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x6b8eb159 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x6b8fc4f1 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x6b99d828 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x6ba77519 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bac3b4b tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x6bb68d69 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6bbad26e __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bcf00aa device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6bfafd7c blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x6c0d0232 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x6c29cf44 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x6c2bfbe1 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x6c3ebd74 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c6e98e0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c88ab1e edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6c8ebd2b of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c96f31d rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6c9c3fef snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x6c9cd126 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x6ca1f6c2 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ca3b842 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca7a785 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6cad72c5 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6cb157f6 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x6ccc0352 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x6ccf5977 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd20d6c serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x6cd96910 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x6cdd4b20 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x6ce53ebf devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6cecfddd rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6cee77f7 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x6cf1e8a9 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x6cfecf98 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d1279d1 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6d1c30c2 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x6d207e08 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6d2703e1 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d421dc7 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d42a285 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d4739da dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x6d47d7cf dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6d5eae14 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d61f8f9 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8747a0 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6d9a9c93 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x6da1b666 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x6da59797 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6db91085 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dcaec7e synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x6dcb6a07 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddcc4a3 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6de4c0e0 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6de5e17e usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL vmlinux 0x6dffee70 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1f50cf usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x6e27c074 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e34b75f regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e39cf44 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e3dbd9c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4695c0 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e5ab5df xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x6e5cb200 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6e683693 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9071d1 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e94031c __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x6eb1c8ba nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer +EXPORT_SYMBOL_GPL vmlinux 0x6ef071b2 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f0942c3 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f18cbca regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6f1cbcf6 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f29f506 pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f89d3d6 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6f8c90e6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f9c8906 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fbbc1b9 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fcf5ff2 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7016744a usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7021a748 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x704065f1 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7051d447 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x70694606 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70813856 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x708e2b0e rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x70986349 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x709aebb9 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x70bbb4b8 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x70bdd17c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x70be753a tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c868a5 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70ea35dc perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x70ed9997 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711c90c4 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x711cc0b2 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x712a75e2 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x71342223 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7141ae47 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x7145544f mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x71568dd4 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x715f237d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x718250d4 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x71925004 snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a12bc6 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71aa247a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6715f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b7e6bb ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x71c8faa0 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x71cc5119 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71e05f27 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x71e9de82 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x71faa227 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7204325f wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x720d0c5f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x72170f79 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x7233bbd4 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x723e2349 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7243a12b usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7252c68b netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x725ab212 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72672e71 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7276f4eb device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72899571 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x728a5f99 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x72ac9421 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x72aec3fb tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72b32481 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x72bdb683 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x72ccbea6 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x72d5eede pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x73081990 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x731183f5 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x732f0917 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73324655 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x73357aa8 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7376c946 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x73788296 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x737ef0db spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x739c2627 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x739fe87c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad7254 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x73b17ed1 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x73b86875 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73b984ee msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x73c705ca trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d99189 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x73f9c8c0 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x73fae215 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x73ff48ad bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x7405c1aa crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7417d647 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x741bfec2 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x74236f47 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x74251934 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x742e60c0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x74372a79 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7440b316 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x74429594 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x744c4098 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x744e1e1a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x74573aa4 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x745c782a efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x745d9ec8 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x74683c66 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7490912d auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x749fea57 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x74a845b8 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x74a9f0b5 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x74b25075 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x74b56250 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cae82f device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x74dcf1d2 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x74f4560d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7502538d __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752b9734 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x754efd03 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x75564034 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x758b89d0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7591838c devres_get +EXPORT_SYMBOL_GPL vmlinux 0x75a20292 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x75ab590b dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x75b043ea clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x75b0e71d wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x75b0fe1f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x75ba60c5 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75c1e28e dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x75d6c99b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x75d9118a dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x75dc842b ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e8b7e8 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x75e8f224 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ed246d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x75ef4820 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x75ef5e01 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761634e1 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x7622f998 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x763293db iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x76379de7 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x763a55eb device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x765676ff usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x765af157 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x7664637f fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7674639d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768ccc0f dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7694f454 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7697d582 usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x76a8d626 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76de5a78 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76ea5ea5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f35a7b ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76f58a71 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x76fcc195 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x76ff7b4e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7706992d dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x7711bec6 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x771c3cb2 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x771dfcee cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x7720eafc gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x774d2fd6 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775f9b08 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7767d860 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x778cd0b9 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77920980 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x779cb2d1 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x77a24e76 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x77a402ac i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b46ffb usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x77c9339f rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x77d2a416 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x77d2ac91 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x7803b2c4 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x780cb6b3 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x780d33ac dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x78147cef skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x781d9df0 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x782980a6 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x784ebf60 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7858d8d8 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786070df nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x78652145 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x7880951e extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x78897731 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789072b4 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x7895419e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a6708e gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x78b6e0ea mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x78d59d95 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x78d8443d crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x793d3dad irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794954d6 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7951c9d8 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x7963da74 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x796bec48 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x796fe64f spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x79a2f4da __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x79a98cbb omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x79abceb8 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x79b0016d usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x79b4abd1 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x79d9940a sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e3e6ca tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x79ec6467 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x79f14997 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x79f49854 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x79fd28b5 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL vmlinux 0x7a07af80 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x7a1133e8 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x7a1e0095 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7a2e34cc invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a5534e5 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7a5a02cb lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x7a5ae79b scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a690f3e ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a76b35d fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a81e6d4 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa7f971 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acc838d snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad8981f snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x7ad9979e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7adb76f1 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7ae02f7b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7af2e1a7 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x7af8c456 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x7b0e12e4 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x7b118a34 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x7b12cceb devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b247038 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7b32aaec wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7b44908d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7b4cab51 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7b4f4f26 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7b536d97 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x7b590fa5 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5c616d bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7b68ce95 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7b7d9cfc dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7baccef1 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc645aa devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7bc649fa clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x7bda9ce0 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7be96bb1 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bed9fed nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bf2967f tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7c0713eb devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x7c076a8e vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x7c18e717 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c417624 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7c4826a2 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c66621d efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x7c69c063 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c6b4ac2 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x7c80a0c6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c85fe9a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7c92265b usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9c690f sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7ca1ca31 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cbf39ce acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7cc4fcda irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x7cd1b5ff i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce73d72 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf61a89 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7d00cfa1 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x7d034b44 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7d05bc85 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x7d08f022 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x7d23fe57 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x7d333e5c snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x7d3ec733 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d4ff68d virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x7d57a344 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5afe09 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x7d699770 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7d76baad relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x7d8d03da usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7d90f49c dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7d991f30 nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7db56127 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7db94c9d phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x7dd1c36e nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7dd64775 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7df07616 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7dff1ef1 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7e0ebc72 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7e174528 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x7e2d0f5a ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7e2fabcf __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3fb02a mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x7e44311d genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x7e451f6b wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x7e5cf53f md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5ea803 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6d2e97 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e84b2bd pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x7e89828e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7e8db034 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e92313d pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x7e960440 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x7eaa0e89 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x7eb00a3f usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec26baf mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x7ec9f48d mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7ed67f52 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7eda12d9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7edd9fd4 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x7ede47f5 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x7ee7af4a __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7efa54ca ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f059733 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7f0ff3b9 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7f1ad240 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f2e260a snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7f370a56 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x7f54973b skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7f5bdb3e crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7f6b07f2 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f8f878a device_create +EXPORT_SYMBOL_GPL vmlinux 0x7faa6ba9 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb03ae7 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fb7a797 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7fbc7c80 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x7fca3c84 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x7ff0d934 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x7ff255fd usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __class_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_last +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cci_probed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crc64_be +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff create_signature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_rs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kick_process +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lcm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_run +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_add_window_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_add_window_remap_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_del_window +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_get_pcie_io_aperture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_tweak_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nl_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff no_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_err +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_group_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff prof_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff return_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff run_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_free_on_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_kill_fasync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff split_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_process +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra20_clk_prepare_emc_mc_same_freq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra20_clk_set_emc_round_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_fifo_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_unmap_object +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x7fffffff fw_fallback_config vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x7fffffff register_firmware_config_sysctl vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x7fffffff hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x0f634ca0 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x5f3d1ac1 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x027166b8 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x7fffffff ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x38d503cb ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x7fffffff ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x1f1040bd ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x693a3094 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x24097546 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x7fffffff __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x19076276 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x22e3262a adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x26c9b0ac __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x384144ce __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x57def4a3 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6c60db58 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x790ac083 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x70ee01fe adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x3569861f adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x7fffffff adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x7fffffff adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x098f7007 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x7fffffff adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2f9b8d5e ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x324502d3 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4f7fa3e1 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6a0e69b9 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x533f5a84 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x7fffffff bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x1b916a10 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x3ade15a9 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x6604b579 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7fffffff bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x311052a5 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x17b957fc bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x7fffffff bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x474afc3c bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x6fc8e31a bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x58225589 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x1120be8c hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x21f6a636 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x24d717f3 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x3e2f862f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6e8a0b2e hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x75262493 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f0b74a7 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 0x7fffffff hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2311a5c9 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x4eef860d hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x71de5a09 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7fffffff hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x342fc774 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x10af6ded ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x6624a1bc ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x676f2f2c mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7ec18921 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7fffffff mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x038e226d mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x07d91065 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x197f6de9 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2001a53f mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2fd20c13 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4a7afe45 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4f69bffb mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x571ae9f0 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5c27d46f mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x65ae17d5 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7557d971 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x0f67164a mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x495c1283 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7fffffff ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x580744ba rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x7fffffff rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x7fffffff rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x38c8d7cd scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x7fffffff scd30_probe drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x09d2a4c2 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x549b76fa ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x54f5dc7f ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x632eea13 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6a9e067e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fc45cf5 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x045daf6e st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x387bee10 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x50470d94 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5bbc542a st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x64a2eee8 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x6c5cd8a0 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6dd992d0 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x718606c3 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x7fffffff st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x7fffffff st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x7fffffff st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x1a702f71 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x64296e6a zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_probe drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x07f4eb58 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x08842b41 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0d9d12cd iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f08e1cf iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1159b9ef iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16e57d94 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x199ed1b8 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1c48129a iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1c53eb33 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1efff6b5 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x23485167 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x24d1ae7e iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x29ec604a iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a2ce896 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c0f571f iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2e2c9a1c iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2ec3edd4 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36631a8d iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37398f8b iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b921eb2 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3c1f1375 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x442d11ab iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4808702a iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49f729c9 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49fe3a9b iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4e1538f6 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5237a66e iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x52406a5a iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d6da993 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5de53ea8 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x623240bd iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64230f07 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x654ba95f iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x684dcb95 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e498b4f iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x72749f66 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7cccb519 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x1233c3fa ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x620fd338 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x1b9e5f8f chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c9cfdb0 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2cb40d2a mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3a682650 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3f34f161 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4342b6f9 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x593ff2d7 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5ccf10a5 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7adf5803 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7c967ca9 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_unregister_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2a08d29d nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6609104a nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6c77c1d6 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x09590085 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x104a3c36 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x10cd54cc peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x14899402 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x14c3721f peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x14db67c7 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x203c5e8e peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2416ef43 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x311ee811 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3bbca7da devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x518bbfc5 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5263e5df peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x60654be8 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6707d0c8 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e540699 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x721fab4c peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x1f8a09f0 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x476c34ee peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x4ceb9c01 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x03fde15d pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0e6db091 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1af5f5b7 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x235b6ad5 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2ccba68e pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2e264481 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x326ab70b pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x463f70e3 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4a012006 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x546eae4f pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x63469a6c pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6f9f7cb1 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7e403603 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_write_event_config drivers/iio/proximity/sx_common +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x0e4a9217 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x2b8cff85 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x68b43ec9 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0bc2afa2 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0c9cbfae dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x4a791c17 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6465a595 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6f9e3ebe dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_update_config drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x7fffffff firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x00368d6a usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0093df3d usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x01e87cf8 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 0x2413784e usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x27460de0 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3283f7b1 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x34a893e6 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x46d80f5d usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4fd639be usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x616d5ed8 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x642e76b2 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x66909f3c usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b062631 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_set_xfer_buf drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/armhf/generic-lpae b/debian.hwe-5.19/abi/armhf/generic-lpae new file mode 100644 index 000000000000..9f661f5b0318 --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic-lpae @@ -0,0 +1,25981 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x199039c2 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x37dab0fd crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5384fa90 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x01265960 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x01cfdfd5 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x07411a45 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x07aa5ac0 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1a684ec9 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x20e21734 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x218fee5b is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x32cb71ea cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x3709e903 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3a61cd66 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3cf92792 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47424406 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4780298a cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x485135bf cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4dea41c6 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x568d4f51 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5930dc69 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5a9d0a7c cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5ccee664 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x63c68c65 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x680b4f6c to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x698b30f8 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x718f5240 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73e134a4 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73e70542 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x74fe9fbd devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x76ccdd62 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x79aba6e5 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7fffffff to_cxl_decoder drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x1f524c67 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x26d6f231 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x608585b7 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6ab53516 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x76af0424 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fc0edd9 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7fffffff dma_buf_vunmap vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x7fffffff chacha_init_arch +EXPORT_SYMBOL arch/arm/crypto/chacha-neon 0x7fffffff hchacha_block_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x3c74a43e curve25519_base_arch +EXPORT_SYMBOL arch/arm/crypto/curve25519-neon 0x7fffffff 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 0x7fffffff poly1305_final_arch +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x7fffffff crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0x7fffffff crypto_sha256_arm_update +EXPORT_SYMBOL arch/arm/lib/xor-neon 0x2e9a6ad4 xor_block_neon_inner +EXPORT_SYMBOL crypto/blake2b_generic 0x7fffffff 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 0x7fffffff crypto_ecdh_shared_secret +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_gen_privkey +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_get_curve +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_get_curve25519 +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_is_pubkey_valid_partial +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_make_pub_key +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_point_is_zero +EXPORT_SYMBOL crypto/ecc 0x7fffffff ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_cmp +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_from_le64 +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_num_bits +EXPORT_SYMBOL crypto/ecc 0x7fffffff vli_sub +EXPORT_SYMBOL crypto/nhpoly1305 0x26dd06b0 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x3f53026b crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x56a9853e crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x7c54fadb crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x7fffffff crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x584f9f36 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0x6ff85d8c crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x7fffffff crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0x7fffffff sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0x7fffffff crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x7fffffff suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x5f212c71 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0x7fffffff 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 0x7fffffff drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0b7c4954 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x334b29b1 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x33621231 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x47a58fa3 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4a5868a2 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x5a5b25c2 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x7fffffff pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x03070e6f btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x7fffffff rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x1b403528 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2208ed3a ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50064bb0 ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x65c5d9ab ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7fffffff ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x0152e6fa kcs_bmc_write_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x20f25239 kcs_bmc_unregister_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x41b4306e kcs_bmc_register_driver +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x44aee827 kcs_bmc_write_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_add_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_disable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_enable_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_handle_event +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_read_data +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_read_status +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_remove_device +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_update_event_mask +EXPORT_SYMBOL drivers/char/ipmi/kcs_bmc 0x7fffffff kcs_bmc_update_status +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x39edfc29 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x45a636a4 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x495d1b5e st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7fffffff st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x3e330aa3 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x4cebcd7e xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x7fffffff xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0455416c xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x741182eb xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x7fffffff xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x25c98843 clk_alpha_pll_zonda_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fixed_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_lucid_5lpe_ops +EXPORT_SYMBOL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_5lpe_ops +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x24c623ca atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x59e51046 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x7fffffff atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/caam/caam 0x37734e06 caam_dpaa2 +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x273cfbf5 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x30f4814c caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x53694de5 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x594fb987 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7fffffff 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 0x7fffffff cnstr_shdsc_aead_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_aead_givencap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_aead_null_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_aead_null_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_gcm_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_gcm_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_rfc4106_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_rfc4106_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x7fffffff cnstr_shdsc_xts_skcipher_decap +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x30a1e372 cnstr_shdsc_sk_hash +EXPORT_SYMBOL drivers/crypto/caam/caamhash_desc 0x7fffffff cnstr_shdsc_ahash +EXPORT_SYMBOL drivers/crypto/caam/error 0x2eed504a caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_dump_sg +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_imx +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_little_end +EXPORT_SYMBOL drivers/crypto/caam/error 0x7fffffff caam_strstatus +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0804a466 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1c9b02ba fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2005ef82 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x22b4d824 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x303fad29 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c67eeaa fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4101fcfa fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4454a8fd fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a3fef68 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4fc33f09 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x556601c3 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x59703a34 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62c5abb1 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69f08f72 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c319806 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fffffff fw_send_response +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x59f29fef imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x7fffffff imx_dsp_request_channel +EXPORT_SYMBOL drivers/fpga/dfl 0x7fffffff __dfl_driver_register +EXPORT_SYMBOL drivers/fpga/dfl 0x7fffffff dfl_driver_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x015ff318 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x054e3691 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07153538 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09baf512 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b440ef3 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d4bbd4b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e48a2d1 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x121e56a4 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1261080b drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13499bf0 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x149b3126 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16aa4c24 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17e09f5d drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1889b371 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a383653 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bad5522 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x20e6cd22 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x212ee33f drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22ddc429 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2303d769 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28b4bc73 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x28c3c338 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2995cf1d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b65925b drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c904326 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2db1b1fd drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2eb50c03 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ef693a9 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x309bc1e1 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x313ac0a4 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x31a28782 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x36db12bf drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x47ebde75 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48f02079 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49fed9ab drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ea670c4 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5475caf4 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x55946524 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c6baf8f drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5d825293 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5fed9b99 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x637db9eb drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67a32523 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67b2a99d drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6c6b8074 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e917b2d drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6ee71ecc drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71b846e4 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74054ecd drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74702f29 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7672c9d0 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7928db59 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x79c7f28c drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7a7d0367 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c1b7908 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c22ad70 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fc1c427 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7fffffff drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0012816c drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00de8419 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01c6fe34 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01eef8fc drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0339d620 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0342713c drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03bfebb6 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ff4b55 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0663a0e7 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06b626d5 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0776f9fe drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f12caa drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aaeea82 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b039f47 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b738ca4 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c4223fb drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d418ab5 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d52fabe drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e35fae0 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f35e379 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7ad7d6 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fa2945f drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbf97bb drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd8f9d7 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ff7b7bd drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ffd7d2c drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1026f5d6 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10433103 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x113612de drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11959096 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ad7129 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1202960b drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13bd3f95 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1478a08a drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15f85e92 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18082d90 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18d5bb74 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x197e1389 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19998382 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a392f49 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aaeb81f drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e24e13f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eb39941 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee2360e drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f195733 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fe9adc4 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20835fd6 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ead9ae drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22647f0a drm_vblank_work_flush +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 0x24ed96a1 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x257186ee drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2669684b drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x275e05ec drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2991c6a2 drm_mode_object_get +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 0x2b569791 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b9e6180 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c9098f7 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d44e182 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e884475 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb4b5fc drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eba0b05 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x328b8c21 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3340561a drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34446c26 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34e90fa1 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36a9dd01 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36b935f3 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36d4f98d drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x375ebe34 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d298ee drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380b5fbb __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38eec6de drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39093b79 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x393347ca drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39ea8a9f drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a231adb drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a4bb978 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac19831 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3acdffe5 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3adf72b3 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ae5987f drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aefc327 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b68d153 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba305a8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c433da6 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c58f6f6 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e243c62 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ef791ba drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2403d3 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fea0500 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fea8e65 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x406af936 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40de48df drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41c9e0bf drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f9c588 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x438d9493 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43aa72ed drm_property_create_object +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 0x47bce533 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47bd5d35 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483b1c29 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48434917 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x487e7c2b drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bc540e drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x496148e4 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ab3e8a7 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b345a8d drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cddfc63 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d73b36c drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e01d814 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5f1bff drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8169e2 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fd03681 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a6314e drm_mode_validate_driver +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 0x52fe23b9 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53598604 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539d7767 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54166576 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54c902c7 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x564e068b drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57a9611f drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599538e9 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59d1c997 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b308e44 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b6641c7 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bce47bf drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd0ac19 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2b3d38 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7ba527 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d9f92c6 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5de0ebb3 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dff4e1f drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e0e123b drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e9ca923 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ff6b5c2 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x608774fc drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6092acd4 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c7ab84 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6271ce59 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6495eecd drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b09e8e drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x661ed164 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6874e836 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a200fdf drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a69d873 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b2d8c98 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b84a9af drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f6be657 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700c7860 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x701beb79 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71221d52 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x718350c9 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c1a08b drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7211024d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7273d2ff drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73370338 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73696f1c drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74eaf26b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75a2ee8c drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7751e0b3 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x778b097f drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a5c82a drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77d6ec9e drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77e4ba9d drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ac2ce00 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b293f26 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bebdca7 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4933cb drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c69ee05 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e0e1f9e drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eef3c89 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3a668a drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fffffff of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x01359399 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x7423fd03 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01925968 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01d447ff drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0263267d drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03cd6beb drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c24ec1 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x058e84db drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07582dd6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x089752f8 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ac6f9a1 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b16881b drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b6485c1 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d54c84a drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0edaf82d drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fb3879b drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fc20547 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ffce3d2 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14019298 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16d6fd90 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18db07f0 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e706cd drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a40560b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af9aa5f drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c90119a drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d53c1e6 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e2437a2 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e36cc57 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fdc7f0b drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fed7a93 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x206c2a3b __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2101f77f drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x212b1d0e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23417cd8 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24604782 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27029adc drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28370ff6 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x286da054 drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b46444e drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bac2940 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c048bb7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e5e8bd5 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f9d7444 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3091250a drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30e52e08 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x315d2b6d drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31fd37a3 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x327ae743 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33a5d344 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3509cabd drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3545a00c drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36c95379 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3820a4ee drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x399b57ae drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d8a05c0 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e0af4dd drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea49b85 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f0213b5 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f19d9d8 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40f85c90 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41441ede drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x415f3fec __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42539d2f drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x443428c3 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45065fde drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45095eef drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f9106e drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4834906a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e16f00 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b401730 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d27a71f drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e0bf64c drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e9f6a56 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50ce0ab6 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x561bc912 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56665bab drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57aa6d5a drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a05f5cc drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a52e806 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bec611c drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ccc3e84 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cfe57a4 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5863e3 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d8c8851 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e47b6fa drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e4998bd drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x657c6ff2 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66a633c3 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e613e3 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x674ba7fe drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68a09a17 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b0b9550 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b7bd589 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d26865c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6f9c6c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e999b29 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ed80874 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6edf2907 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7018fcc7 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72602bd5 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7334aab7 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78d11c3f drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc748b0 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ddb2384 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e016d38 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e29117e drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e37ae36 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e81aa94 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x121501eb mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c73825d mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2370c7ad mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x36c5bcc4 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4774631d mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x515b0d55 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5efd10f6 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x67d8ae02 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x69f3234d mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7fffffff mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x11386f0f drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1822623a drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1a4cf9b1 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6ce2f38f drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1352b3e1 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2e7e5721 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x50b996e1 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7fffffff drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1145de72 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x150bc4c1 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d31f3ac drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3b621f89 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x47ced4f5 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4a06da3c drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x560c87b9 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x63e42653 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7fffffff drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x330e5692 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0db2ddde drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x29877bbd drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2af51b5b drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2b36d3fd drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3596ad3e drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3ebb6e81 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4e024089 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5bab9877 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x72db9775 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a25668b drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7afaf64c drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7fffffff drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00d4283c ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0de476c2 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13790457 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14c013d6 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x14c097eb ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1814834d ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23adff16 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24f87ae1 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34dd7c5c ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b8441b9 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bd173ce ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x454d6fa4 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4afacd66 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cdb9dd9 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fbc509a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55bf19d4 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56c8777b ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f90cfb8 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66adcf02 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e4f7b6f ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70097692 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x720447b0 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75c1a361 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x777ba054 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a91e590 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b49680f ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7bd474cc ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7eea6ce7 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fcfae8f ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7fffffff ttm_tt_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0466252b host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x060018b2 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x061d284d host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x072cfd92 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x08ebada5 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0f51a2c0 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x15e82fd2 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1c8d556b host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1cd2d1eb host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3211888e host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x365c3c69 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x39f2cb23 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3dfd071b host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x401ed2e0 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4dfa1957 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x57553ccd host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5a9f39a9 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5b8526d8 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x689f3cce host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6bf356f8 host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x754becac host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7687adbe host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7fffffff tegra_mipi_request +EXPORT_SYMBOL drivers/hid/hid 0x474141ce 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 0x7fffffff sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_watchdog_register +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x7fffffff sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x07f93376 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7fffffff i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7fffffff i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0615fb8d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7fffffff i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7fffffff amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x7fffffff qcom_adc5_prescaling_from_dt +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x63b594eb iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x7fffffff iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x552c2c8c iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x7475f8cc iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7489ac8f mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x783fe495 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x7fffffff mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x0c86d610 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x26ee096c hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x4f89f848 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x7fffffff bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x7fffffff fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x0b356fb4 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x684b2cff st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0f54436c iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x1299476f iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x1749c9ef iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x25a29da5 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3a5f3384 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3c12761d iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x3f2b77e3 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x5a1bf49f iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6210dd81 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x6c09515a iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x7738fc67 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x790277ef iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x7fffffff iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x7fffffff iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x00d49d86 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x3e5c3090 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7fffffff iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7fffffff iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x1c3fbb91 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x5cecb0af iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7fffffff iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x7fffffff iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7fffffff iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x7fffffff iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x32ccdc11 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5cf342f6 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x6f2b6dd2 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7fffffff bmp280_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x02900ec6 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05d62366 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0ca2f542 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ad3c8f9 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4e08f557 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x735927c3 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fffffff 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 0x01b880f9 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02f86ae8 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062a84f9 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x066cf0e5 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x069da4cc ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0714f1e1 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09811267 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b3aad9e rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bd124ba ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d749cf3 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0deff278 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eb6b139 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0feba3b2 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1332687c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1392609f rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13b88c12 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x187f6ad7 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x188ee9fc rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ab4ea9f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b8a759e rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d9286b5 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20c41729 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d4eb33 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23041ee3 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b93cb24 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea317a3 ib_query_qp +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 0x314c9037 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31ba1b4c ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33bb231d ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34578d20 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35587003 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35c61a88 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a9293d ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39e2bfbf rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a0362e2 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b6bee39 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ccf6460 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cf64ba4 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e0b06bf ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e267181 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3edeeb1e ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3faa07b8 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4007153f rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4052742a rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41cf03de rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4265d648 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a21f55 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45f9ec63 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4715be23 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47e0b748 rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f21ce8 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b04f00b ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c7ed37b ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ca9f206 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d2d7f8b ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d427ef1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e35e4f3 ib_get_cached_port_state +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 0x523ae3aa rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5690b107 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x569c7c7c ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57c7f80d ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59b5fd24 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5afe3c0f ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f74ed1a ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fa4df46 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x616ea62e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63251663 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6581ca90 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65d75505 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665fa60c rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66832d0f ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c29a14e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c98115c ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d44581c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e2df2b0 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x727d5c1c ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7350f9c5 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x759ab93c ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76165443 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f40972 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7883deb9 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7902a996 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79bba0f5 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79fcad16 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aa0052d ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ac7dfa3 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c13659b ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cc694e6 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d632b28 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e505597 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ebafb4f rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa9fd3e rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc364ca ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fffffff roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x009ee160 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x04b102e9 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x237aee30 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x26514319 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x27bd38ba uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36d72c6d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3708de2b ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3761dd8e ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x388b2d84 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d3f4ac9 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x40263412 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x461583cb ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f34596f flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x54aec691 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5c042c24 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d3dbc9f 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 0x6371cb86 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6a3ae652 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x72083dbc ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x73f19bf9 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fb13625 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7fffffff uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x01cfdda6 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x59cb5168 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72566292 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7fffffff iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b0a7247 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e032bd1 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11ec90de rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12f582c3 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1902cfeb rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1de4c586 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x21c1fffb rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x264113d1 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34c6ef9f rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d8fad19 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46eef0d7 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4949a457 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49bc776a rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x621df810 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66ab0a9a rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ebb596b rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x71fe0556 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x75f024fe rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78b013ef rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fae3504 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fffffff rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0971d7c5 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x581aa9a2 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7edbef1a rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7fffffff rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x105d3ce6 rtrs_rdma_dev_pd_init +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 0x78171d72 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x1fcebe9e rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2e2eb64a rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x38508093 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x788ca58e rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7fffffff rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/input/gameport/gameport 0x06e712b3 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x128d4de7 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x213b2c28 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x39166064 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x43aa9d24 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x54702753 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fffffff gameport_unregister_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x2b8d863a iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7fffffff iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x7fffffff iforce_send_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7fffffff matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1276d8f5 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x564fc7be ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x7fffffff ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x47fc05af cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x7fffffff cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0x4b961962 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1820fb3e sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6eb69ea7 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7fffffff sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0b35e8c8 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x7fffffff ad7879_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x1ab6f1ab qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x4c7571ac qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6bc7502c capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7b03e9c8 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7fffffff detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x27c58fd5 isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x4644eea5 isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x5b835a58 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/isdnhdlc 0x7fffffff isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4bd3d7ec mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x76564c8f mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7e57bc65 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7fffffff mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7fffffff mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7fffffff mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x214adb0e recv_Echannel +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 0x269e9066 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a919866 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3948548c recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x448d6a08 mISDN_unregister_device +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 0x5b5196a7 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bafaa6e mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x618c2df3 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70199bc8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x78e2fefb recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a6a36bf mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7fffffff recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x7fffffff 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 0x7fffffff ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x7fffffff ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x7fffffff ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/mailbox/mtk-cmdq-mailbox 0x7a5a36f4 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x1321f1fe omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x3416aa16 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x7fffffff omap_mbox_request_channel +EXPORT_SYMBOL drivers/md/dm-log 0x091408fa dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x5901868a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x7fffffff dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x7fffffff dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x40031944 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x64a7763d dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fffffff dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x2395ea00 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x7fffffff raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x02302aa0 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0533dc7c flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0ff48a89 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1181b6d9 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1784d6f9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x248d7691 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x470c9a99 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x60d59a97 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7b186733 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7fffffff flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/cx2341x 0x00a3db8a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5f6e4aea cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7fffffff cx2341x_update +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x7fffffff cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x23e95ec6 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 0x36263081 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 0x2e676e2b vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff frame_vector_to_pages +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff frame_vector_to_pfns +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff get_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x0abd2623 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6053bc12 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7fffffff vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x7fffffff vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0x7fffffff vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0x51ad5f2a vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x05580cd9 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0977874b dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0e6dfb38 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x127b0fce dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1609d70c dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ba00260 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e7a8283 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f36b2be dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x214d5b4e dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ca3b8d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29c1f1bf dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c12c287 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c9b0eae dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2e06a61b dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35cbb077 dvb_register_adapter +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 0x3fe8ff59 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x42d15a1b dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e00f885 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6baa0d9f dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ff21bc3 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7ac3b9d0 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x7fffffff ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x7fffffff atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x41e9327c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x490d774f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x575fe2b1 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6f6ec212 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x715651e7 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fffffff au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x7fffffff au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x7fffffff bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x52cb70f2 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x7fffffff cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x49db3a9d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7fffffff cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7fffffff cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x035c3e8b cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x40133099 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x66fd088c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x7fffffff cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x7fffffff cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x39389959 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7847b1bb cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7fffffff cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x553eb923 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7fffffff dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1a308b2b dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30c91a86 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30eafa36 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3120ebc5 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x472e81af dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a834825 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x737d1b43 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7fffffff dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7fffffff dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x23d04036 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x48616378 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fffffff dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1249379f dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x61c4614f dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7fffffff dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x576608f9 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x7fffffff dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0c5a8473 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x10ccf4da dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3ad33b52 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x597edc0f dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x59e5519f dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7ceab1df dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7fffffff dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x017fc34c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2c04de1f dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3695c288 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fffffff dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7fffffff dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x49337bf4 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7fffffff drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x395c1dde drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x4433a9f1 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7fffffff dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x0c3a733e dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7fffffff dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x7fffffff dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x7fffffff ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x3bc1243c helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x7fffffff helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x33448e77 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x7fffffff isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x7fffffff isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x2de76dfa isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x59b611a6 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7fffffff ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x2e6769c2 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x06fc2c98 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x08e1092a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7fffffff lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x627690c0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x0b336c7e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x312cd258 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x5f0be8d6 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x7fffffff lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7fffffff lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7fffffff lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x7fffffff lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x17258591 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7fffffff m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x24e0eed4 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7fffffff mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x0a8c0fdd mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7fffffff mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7fffffff mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x7fffffff nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x7fffffff nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x4c0f2c7a or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x7ae3b1a6 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x7fffffff s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x7fffffff s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x28ad5151 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x576d5576 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x7fffffff s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x263cada1 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x7fffffff si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x14be2101 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x16a0c4ba stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x0f6713ed stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x7fffffff stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x7fffffff stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x7fffffff stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0fa3afee stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x50138d41 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x60e3937b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x7fffffff stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x7fffffff stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7fffffff stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x425faca0 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x58a6fab3 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x422623fa tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7fffffff tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x6ffefb4e tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x08c86af5 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x33457581 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x4ee87d99 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x3a632934 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x3dca84b4 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x7fffffff tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x0f5792d6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x7fffffff ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7fffffff tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x541ee9fb ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x1f33349a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x07a7604f zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x7fffffff zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x7fffffff zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x153ffd52 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7fffffff zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3754672d flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x44c4cc34 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7fffffff flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5abfc64d bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x7fffffff bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7fffffff bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x00b50c4b dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x447f2cef dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5c8ec0d1 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7125dcc9 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x748878ef dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7fffffff write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x7fffffff dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0d2a2d11 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0ded62d8 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1342ac15 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3b4c0c4a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7fffffff cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fffffff altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fffffff altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7fffffff altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2801348f cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6d78e64f cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x79831050 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7fffffff cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x711dfbba vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7fffffff vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3530badc cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x64225b11 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x735ebba5 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7fffffff cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1132175f cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x41272c43 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4f717ce1 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x51104f25 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7fffffff cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x041d836b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15e0f3bf cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b40deac cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3df6ce38 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e9e9364 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x506bae6e cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60233fdc cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6da2eeb9 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7fffffff cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x7fffffff ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x027ec5e3 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1b2e690c ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d932de7 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x259ca59a ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31a66f86 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36de6196 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x56530d97 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5cfbcaf0 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x699117c2 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ec1c7a4 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7fffffff ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x075a7d59 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x235284aa saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2a10d5bd saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35c1af08 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x617ed9d1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f68c76e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x6671c6ea vdoa_context_configure +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x6ce9e4a5 vdoa_device_run +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fe3d6f9 vdoa_context_create +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fffffff vdoa_context_destroy +EXPORT_SYMBOL drivers/media/platform/chips-media/imx-vdoa 0x7fffffff vdoa_wait_for_completion +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x28dee389 csc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x3dc58faf csc_set_coeff +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x570f8abd csc_set_coeff_bypass +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-csc 0x7fffffff csc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x21b9b6b8 sc_set_hs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x5ed12025 sc_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x729931ed sc_set_vs_coeffs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_config_scaler +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-sc 0x7fffffff sc_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x07464bcf vpdma_add_cfd_block +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x132ca3bb vpdma_list_busy +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x1d513b04 vpdma_clear_list_stat +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 0x3269c1e2 vpdma_add_sync_on_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3ab97eb5 vpdma_map_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x3b3f4afb vpdma_create_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x48edbd90 vpdma_set_line_mode +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x49293b26 vpdma_yuv_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x4b80e1ca vpdma_set_frame_start_event +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x50ec40af vpdma_rgb_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x5772a9bf vpdma_unmap_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x5954a942 vpdma_create +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x60708dc6 vpdma_raw_fmts +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x690077b3 vpdma_hwlist_release +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6ea95e2f vpdma_free_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x6edb7125 vpdma_get_list_mask +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x73ae3d42 vpdma_add_cfd_adb +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x77b38560 vpdma_set_max_size +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7a4fd3c1 vpdma_enable_list_complete_irq +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_add_abort_channel_ctd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_alloc_desc_buf +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_dump_regs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_free_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_get_list_stat +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_hwlist_alloc +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_hwlist_get_priv +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_list_cleanup +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_rawchan_add_out_dtd +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_reset_desc_list +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_set_bg_color +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_submit_descs +EXPORT_SYMBOL drivers/media/platform/ti/vpe/ti-vpdma 0x7fffffff vpdma_update_dma_addr +EXPORT_SYMBOL drivers/media/radio/tea575x 0x072e61ed snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2b2a3995 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x49a9ec1c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5853433a snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5e7bdae8 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7fffffff snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2985a3fd ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x52092b20 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7fffffff ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x7fffffff fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x7fffffff fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1617b915 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x388ec5fd fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x73b9f621 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7fffffff max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x03f87b43 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x16bb1d27 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x0b278f2f mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x542f6785 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x076be49f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7fffffff qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x077463d2 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x7fffffff tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x0305df78 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x039b0564 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7df37496 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x32eebbc5 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x23236c78 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x444957cb dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x482a5226 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x68baaa37 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78cb4cce dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fffffff dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3948a607 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 0x65efa98c dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7fffffff 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 0x7fffffff af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x7fffffff rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x206b8a29 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2d68e733 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x589a4859 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7fffffff rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x39333987 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x7fffffff dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2cfe1005 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x352f730a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3a92c043 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4ad8ee01 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5f055759 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7fffffff go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0109c90c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x36c50e54 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3fa5691f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x48019dec gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6b825dd9 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7fffffff gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x4e661c69 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x65a11da3 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x148bac5a v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x673dfd44 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x76dcd080 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x699ea403 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff 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 0x089758db v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c5d0240 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1203dd6b 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 0x1c5e035e __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d37c89b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x237d292b v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24a5d1dc video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b19c675 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dc0aff9 v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f4382eb v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4064cfb5 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4999adbf __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57b46c85 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f471afe v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62504fb5 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6a945e10 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ab72b6d v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dce6cab __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70cbe129 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x724e076e v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72d42f9f v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ec107aa __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fffffff video_unregister_device +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x279e9d1a rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x2b3fe72a rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x780ef39b rpcif_sw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x7fffffff rpcif_prepare +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b2bd36c memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x26ec87f8 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x31cbc3d3 memstick_add_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 0x68b684e3 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6e2e2c7e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x707593c1 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x77263b3f memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7fffffff memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08bc12b4 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x113368a1 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bb919a8 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c793706 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d17743f mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d216d23 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1e8dab4b mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f3b868a mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x219631f9 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2486be51 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2abbc8aa mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d036e9f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b61a9f8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d2c67f6 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6fb36343 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7145b6c2 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x79565206 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7fffffff mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02d051a0 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x09a987dd mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f0cb40f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28231a5d mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2fa920d3 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35a7b119 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cf7a82c mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58ef04a9 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60da572f mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x657ad9d6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705552ce mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77d76f38 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f3bcada mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7fffffff mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x7fffffff axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x10fd12c6 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6f3e8e31 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7fffffff dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x66d17cdc pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x7b6c9071 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x07eb5353 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1aa99f6a mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2c9ee2c4 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x32051caa mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x726a6494 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x78f6a610 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/qcom_rpm 0x7fffffff 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 0x7fffffff tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x7fffffff tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/wm8994 0x37045ad7 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x44b392f6 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x4e3bd4d7 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x7689296f wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7fffffff wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x13ee022d ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x62948d82 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x2fb85933 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3a9e77e1 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x68e807b3 c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x10cd4577 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x342d1490 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x372507f2 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4c4826e8 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x50fe64a3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5c6d6f6d tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7fffffff tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x19344fa3 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x35cad34e dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x7fffffff dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x2b1e6c9e mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x7fffffff mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1f0bee65 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x23027823 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x46a17fca cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x508d9516 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7fffffff cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x7fffffff mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x7fffffff lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x7fffffff of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x248880a1 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x46d7fa1e onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x1c18c916 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x7fffffff denali_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x00780bc6 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x104c2557 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x10536172 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x229bd4a1 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x28ec85c0 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3f37b692 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x50070020 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x593c0b15 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x674c3c66 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7fffffff arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x09470943 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x7fffffff com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x14e92646 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x7fffffff ctucan_suspend +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x039e25e1 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a009374 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0f978de3 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x11014266 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16dba6a3 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1e906bcb b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2fa919ae b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x339cfeaf b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3d5ff27a b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4226efb3 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c509a50 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x57c7c365 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x590cd8c2 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f75aa54 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x60e3d888 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x669c04b4 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6dbcef4d b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x70f6e54d b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7fffffff b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x06eafcde b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6260867e b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x7fffffff b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x090e3dd3 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5dbb558d lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x7fffffff lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x399b087b ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x7fffffff ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x1f00bc18 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5a0da0ab ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x20b66c94 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x6b375820 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7fffffff vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x13c22e57 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x19989cd0 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x2582e003 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7003f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs7004f_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x7fffffff xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x163eadd9 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x199d2bac ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4f63611f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5e46832c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x679f95a5 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x72caa59e ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7fffffff ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x7fffffff aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x7fffffff bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1104fe46 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x03032bee cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0f9c9cb5 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x14881303 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2f29d1cb cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3c88250d cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3f91300e cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f8beb92 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x50c6e922 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6acd2f8a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c80d8ad dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70a6c7b1 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fffffff t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00fb3b4b cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15f9b230 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x163d9336 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ef57a10 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x211228f5 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2444512f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24668b86 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f2c3996 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b647129 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7901b3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3d343f34 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4509e36f cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47ca16b3 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x48787001 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a89bd3f cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cd86a51 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d5b28fc cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x529e468d cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x54dcdc30 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d22a3df cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5faa6713 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6117fa62 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x697485e2 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x797a4b33 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fca152d cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7fffffff 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 0x2c028ef2 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x32d517c4 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3a0b8bc9 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5d8f8347 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7a489cb0 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7e93e06d cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x7fffffff cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x63d270a5 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x65aa9672 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7fffffff vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0fcd7a7e 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 0x596ee2d5 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x7fffffff enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x37470167 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x7fffffff hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x7fffffff hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x001031de hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x0374dd84 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x2949f8a2 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x3f5fb3e5 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5e2f300c hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7fffffff hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7fffffff iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x7fffffff iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x6dfaeca0 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0x7fffffff ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x3e29f38b prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7fffffff prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8e25c5 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e345d2d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f664ec2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13a26db1 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1415a7a1 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e5ac607 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20579c24 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24854f3d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fb2d9ce mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39c4af58 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b1b34df mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc6e0df mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47fa85fc set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4842e7e6 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53040a31 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53b23a17 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5826ea28 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ed8e9fa mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6738f434 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ddee8a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78545a68 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a079118 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a8369ba mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f483d51 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fb1607a mlx4_is_slave_active +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 0x7fffffff get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0031c62f mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0132c349 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05e490a4 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x094d73aa mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a755296 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bd87750 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0dd5f6a0 mlx5_lag_is_sriov +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 0x101f02d0 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1048a16e mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10d70b7c mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x144ca0e5 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14b7bbd2 mlx5_debugfs_get_dev_root +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 0x1909c43b mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1db787dc mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fbf356e mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2341e379 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d61f62 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x243fbc50 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2590722f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e7d8e6 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2942b18c mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b340161 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d22105e mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e01f9e9 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2eac5e77 mlx5_get_uars_page +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 0x355af51d mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36090bdb __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36e6ea55 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x380073ac mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a488011 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6fb886 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c72f0aa mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cbce097 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3eebcb2c mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40f34ec6 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x416cb9e7 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44b497f4 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x469a66cb mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x476a0ab4 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4af28c13 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b518d56 mlx5_rl_is_in_range +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 0x5048d7f8 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x517539e0 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51b2ab3c __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52b5e610 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ff1f4b __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53740d94 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55239627 mlx5_packet_reformat_dealloc +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 0x55a513ee mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56136732 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x579c90c5 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x585441e8 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595bec96 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e0bb2 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5cb705d3 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5de1b09f mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f853c02 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ff3835c mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60152706 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60a3adb3 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60d0fe0e mlx5_fpga_mem_write +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 0x65365d93 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65e659f2 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66c26b06 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x679a428f mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6842aaaf mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68b7ad15 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69e42263 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d691ef0 mlx5_cmd_do +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 0x72e652ae mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7358ed10 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x739b573b mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74a15d5b mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x752f9a7d mlx5_rsc_dump_next +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 0x77ea850f mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794e04da __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b359a09 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7db5310c mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f13ed88 __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fc3016f mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_destroy_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0x7fffffff mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x088c47d5 mlxsw_core_skb_transmit +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 0x0f72bcc2 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x116fa910 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1e091407 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1e7e7d42 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x202693f0 mlxsw_afa_block_cur_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x21daf3af mlxsw_afa_block_append_qos_dsfield +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x326c1d2e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3c108881 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3f672008 mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5496a8da mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55c5b7e1 mlxsw_core_traps_register +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 0x5a939205 mlxsw_afk_values_add_u32 +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 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 0x6656d338 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x7fffffff mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_drop +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_fid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_mcrouter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afa_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_afk_encode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_env_set_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_trans_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7fffffff mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7fffffff mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7fffffff mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x348ff37a mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x7fffffff mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00dee45b ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x02071e9b ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x031d75df ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0601b6a2 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f399d4d ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1034c39d ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14644903 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14e76929 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x162a308e ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b304cb5 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1c0d71bc ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1dd168c5 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1f82ea89 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26e6f199 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x279977a9 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cd0a46c ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2d3af181 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x357dbf37 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x393e4dac ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x395ddac3 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3a1b7c1a ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3cc5fa73 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ff8d4b3 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40209ecf ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x420c0fbc ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4315ee0e ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47f703f5 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51361705 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x555ccd61 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c81a2ff ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67582f7d ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x68748904 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x693ae199 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6aa21cc4 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ba34391 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6fe00788 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x74adb196 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7a54e1d5 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7e5a482a ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7f4ccc0a ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x1bf6e924 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x6abdde9b qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7fffffff qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0fda1573 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x57420227 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x603646c1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7fffffff hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_ethtool_ksettings_get_npage +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7fffffff mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x7fffffff mscc_miim_setup +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x303012ca lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x7fffffff lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7fffffff unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x7fffffff sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2ea216fe team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x34084b46 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x37fbc7a1 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x7fffffff team_options_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0587feb2 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7fffffff usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7fffffff usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09fa9bba detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2fc1a976 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3092022d register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4ac0e9ca hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x552f9970 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x741ccbf2 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7b3bfd92 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7fffffff unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0613a92d ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x279db2bf ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2cdecd2d ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x54ab8524 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5cda405d ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5de9a924 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7fffffff dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x092beaa4 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c0b9a8f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0e897c07 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x13f4e182 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14420024 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2913f6e7 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2962fa73 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3382ce79 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37cf3aa7 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ecd8c69 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f759a87 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x417e4bba ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44e3996c ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4dd0be8b ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5372591d ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53db542f ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55df4631 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5b8762cc ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60df8b56 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x652dc47a ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6577f4a2 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6611a4e2 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x68af3b30 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x72557852 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d7993db ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d992189 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7fffffff ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x031e988a ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x046e4e9a ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x081ff4a6 __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16359780 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2b16cf2a ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x33daf665 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x460d5f6c ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x47df6c55 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5375e18e ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5523a4a9 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5fa21c0d ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x61f9841a ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x65bad275 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x66096ddb ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6a6c81cf ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6b6dc775 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6ed909bb ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f06f26c ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74a3bc13 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7ac5479c ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7c13df8b ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7d405c9f ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7fffffff ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x100f471d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2be333ab ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30752492 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4e21f37c ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x57125e31 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6f05c027 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7fffffff ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cde19c4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x178df3ec ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x188e8037 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x332a49f2 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3df09420 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3e61a081 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x522c9352 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x524abb54 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b50ca55 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5ce4ef88 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x65b63bd3 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fffffff ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0055da68 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x006461a1 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0258eef2 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08c93cfe ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a78cf9 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09c3b679 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c8323f2 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0feaabb4 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1441f9ea ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16852bd0 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1949a55b ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fbee51d ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21bad3cd ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23a3e745 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23a8c33f ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2551fa25 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28e2cf5d ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2940067c ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ec53828 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3033ddf8 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3550e176 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37203d91 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x373b77d1 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x428bbf73 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44742d65 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44efeda5 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bd7a0e8 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fa7cd32 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x503f7438 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50bd14ef ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51afcc38 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53f9ad0c ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57084b80 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57bc2cd0 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x588fc593 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5923be14 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5db7819d ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e78bc5f ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6064a685 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64245bd0 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6520b72c ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65ac3bed ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66c2ebd8 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x696ecbd8 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69c7d785 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a9bb9d1 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cea0d46 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e41ee88 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70672f46 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x710daded ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x769828ff ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x779a3e1f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x799921ce ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e082f5b ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e09ffe4 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fee88e6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fffffff ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1450883d stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x67e9ced5 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x7fffffff atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1576b9d8 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 0x1a682c88 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6cf7224c brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x6d8c8cbc brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x78e1c869 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7fffffff brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0c1ff5ba alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x250c9978 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x26cefb28 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x284c7293 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2d02599a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3139e1b9 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x32807fff libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5869968c libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a7be435 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x654e51a0 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b30a838 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6d31de03 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x71086e94 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7fffffff libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0124e413 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x044e1af5 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c0aeee5 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f2b5ead il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1409a133 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16265cfe il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x16d7fd4c _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17242b45 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19405a36 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20869b81 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x23a06e20 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x287f4b19 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2946fac9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bfd72c0 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d5e82c3 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ec8f394 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x34a98235 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x390517a9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x397e5e60 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ec32717 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 0x42f3b14e il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x433abc60 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x43a6917e il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4503b563 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47adbecc il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ae66682 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55c3ad60 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56fec7fe il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x571d20fe il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57bfabe9 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65baa4c4 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x67c16cd7 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70478ed8 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7c7dd777 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7cec98c1 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7e887c34 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7edba78b il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1c5036c0 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x466ae44d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x6ff0d5fc __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7e60358e __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x7fffffff __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0f3664b5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x20680b63 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2396cf3c hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2a63bfbf hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3fc4c4e0 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45028d1c hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x465de69f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x624a7e34 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67922581 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6f8db634 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fffffff prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11a729a7 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x13050b08 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2eb6c80d orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x338052c5 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x34a293b8 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5128600e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f163184 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x65bf049c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6699b951 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x7fffffff orinoco_up +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x7bc614cb mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x7fffffff rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03a8cc76 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05cf960b _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bdf2a7a _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10cdbe31 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e13e6f8 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1ee08e86 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22e974f9 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2327d91c _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x391533f9 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c6eb278 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d658b45 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f77b10c rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4b17f261 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50b9eda5 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5616472b rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a30513c rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c5db477 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x614f5ce1 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x626b497e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f5566c2 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72b7925b rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x733aab28 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x7fffffff rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x418050e8 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x484fa67b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6323fc46 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x7fffffff rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06ab468c rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x09be4ec7 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e040575 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x11f2a328 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c7277f6 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2bcdad1c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ef4689b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x320f3846 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3aa24dc1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c761d1c efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3d3ec7ac rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x418342a3 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46c3a4b1 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x521a76ed rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x545adc40 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55beee26 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e03eb36 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x663a12d1 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x696155ad rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708d89de rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ac0817c rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f259444 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x7fffffff rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x4861047e rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x3e410941 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x7fffffff rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0086a4d2 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0e90d332 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0fdc749f rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10068e71 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11ab673a rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1832f2ec rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a756242 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f7791ed rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x256b88a2 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ef9d198 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3418e720 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4136f984 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x43676ccf rtw_phy_set_edcca_th +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 0x4636abe3 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x463b9981 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x523a7fbd rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5310b4a5 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 0x588ab8c9 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59536ef9 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59982fc1 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5a34d48c rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c7214e8 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5cced949 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5f539154 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x620f2c89 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6240f8f8 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6600ea07 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a165ec3 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6bbe8f8a rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6ca326dc rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e04e37d rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f6d5d4b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f89256d rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71179efd rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x713876f1 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76f11ff4 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7d327700 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7fffffff rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x2213f7ba rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3b913d5d rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7fffffff rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x7fffffff rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x7fffffff rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x2a1fe9ef rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x03fdbe03 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x08af249f rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x150e8c30 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16206e29 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1857d7ee rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2157911d rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23f92bf7 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x24420d8e rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2526dc8f rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a06ee3f rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3e69a35d rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4321609b rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x474e49cb rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4cbfcc79 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x527944e5 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52d57217 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x556bc3fe rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x59174e99 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5b1a4a86 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x619fae70 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x61fccca9 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65896263 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x69cdd41b rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6d40e19d rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e9ce99c rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f38aa34 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f523a9c rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7199e4d1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7d5751cd __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7fffffff rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x104de8e6 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x26d619b8 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x30a1adf2 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x587ed3e4 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x634edf8c rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7197d698 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7fffffff rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x1f8e5a42 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0f7c463d wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4dc12352 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x541b7be0 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x442eb8b2 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x7fffffff fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x51e4c19b microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x6dc9ebed microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x19ab1ff1 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7fffffff nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x7fffffff pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0a23494a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7fffffff pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x20411e7b s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x37293430 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x533d3441 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7fffffff s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x07c0b070 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c8e1e3a st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2394d965 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x38654457 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e58f172 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x632bc409 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f6d99e1 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4f2ab870 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a4979de st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e57f4a5 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74bc9060 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76a66a33 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d04003b st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7fffffff st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x0b286d17 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x0e00ab22 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x1bf39043 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x3075c0ba ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x453f7ae9 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x46c0843e ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x682d1cfa ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6e83306b ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x78594692 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x7efba977 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7fffffff ntbm_msi_free_irq +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7cf12844 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7fffffff nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x128ea17d parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x14f6e574 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x2b695450 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x38ccd31f parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x44135dbf parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x48906eea parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x490fd4da __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4de7d913 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x593c8636 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ea25275 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x6180cc2d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6fd334c3 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x784c0d1f parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_read +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_release +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7fffffff parport_write +EXPORT_SYMBOL drivers/parport/parport_pc 0x7fffffff parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7fffffff parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x152fda33 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1c780fab pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x35cf7948 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4387a093 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x504ae783 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x52ba58a1 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x54ea8300 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7fffffff pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x57710d2a pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x0014cb74 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5088d02a cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7fffffff cros_ec_unregister +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x7fffffff rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x7fffffff qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x7fffffff rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x7fffffff rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x08ac68e5 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0bfef70e rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x128354db rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x15f5f91a unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x28b3bce1 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2f596b47 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3572271e rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x463bc840 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x52dd1f7b rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ca741ce rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7fffffff rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x29c9370e rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x7fffffff ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1329b8d2 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1b1d1f3f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7cd6510f scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7fffffff scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x107a653b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x181b9fa1 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x44fc01c5 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67016632 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x67eec080 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a11b9f7 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x051a876c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ca57ea8 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16894ac4 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c2402b3 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c6bd7c4 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c790c1c fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20c1e6d4 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a477086 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x356f5302 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b2ab960 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4185371c fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a56d950 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54773eb7 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ab41f0c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b141754 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b76ea89 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d3aa345 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63755c0c fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65e38223 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66b340e9 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x66f0b2ab fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69089618 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a4cde24 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ed63598 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fae0322 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73b499d0 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7bf7ce00 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ebcf544 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fffffff libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1db3e190 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7fffffff sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x1bb66628 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x7fffffff mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1a8fd94c qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1ad10062 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4cc434f9 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x60b207b4 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7e23e7b2 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7fffffff qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0x739115cb raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x7fffffff raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x7fffffff raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0fe2ab36 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x12213682 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1a49bdbe fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x332fbe52 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67d29ec3 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6ccb2355 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6fd33fda fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7257f3cf fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x78bdff6f fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7fffffff scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x115f18a4 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e81611e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2db7f37a sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ef8993e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x484f1c38 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x510b9354 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x642e0d75 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67beb0cf sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7b46b154 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7fffffff scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x01f8b2e9 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7f4af57d spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7fffffff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5eb2f030 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x6acef10f srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7fffffff srp_timed_out +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 0x5e605e5d cmdq_pkt_write_s_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x66907959 cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x707fc9be cmdq_pkt_write_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_dev_get_client_reg +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_mbox_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_destroy +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_finalize +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_jump +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_read_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_wfe +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x7fffffff cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7fffffff ocmem_allocate +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7fffffff ocmem_free +EXPORT_SYMBOL drivers/soc/qcom/ocmem 0x7fffffff of_get_ocmem +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 0x7fffffff pdr_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x0d0a80c5 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x1d09ed49 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x24cfb776 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x303aa8cd geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5b9153fb geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5c958e01 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x72dc2f76 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7364e669 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x75830bad geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7af70ad5 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7e60f3db geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x7fffffff geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x2333aed6 qmp_put +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_get +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x7fffffff qmp_send +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x036cdda9 qmi_txn_cancel +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 0x38d5dfd5 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3a7ac4db qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3b1df823 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x3f5336e9 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x41a34d6a qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6b52c4bf qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x7fffffff qmi_send_response +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 0x7fffffff qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/smem 0x7fffffff qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x7fffffff qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0f7392f7 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0fce8cda sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x11846d4d sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x24b7fcf8 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x29a293af sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2cd44f25 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x37e2b5e7 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x40a6669f sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x41a18ea5 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x43f6fde5 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x48dd0ac5 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5166e710 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x553aeca5 sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58fc45a1 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5a7928dd sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6a974840 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7dbf7c69 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7fffffff sdw_rows +EXPORT_SYMBOL drivers/ssb/ssb 0x09de8633 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1415b00a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x29311049 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x39c8a5e5 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x466e59fd ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x4c6ceb26 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x4cbd7b80 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x4f807fe8 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5897c835 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x6e359c70 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x7fffffff ssb_set_devtypedata +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01abf2ce fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x07cd209a fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c51c2a1 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e402769 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x219292ec fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x234a1832 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38ba8c89 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3fc97e43 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4e7b5058 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71eccad4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7719ac2f fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f7247fd fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fffffff fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x6941c6e2 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7146d2df gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7fffffff gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x7fffffff adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x1f2f0840 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x7fffffff sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x7fffffff nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0x7fffffff nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x016619b0 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05487a28 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x091004b8 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ea60f21 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f2dba13 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1052cbfb rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x16e91f0f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x17e3a171 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a136dbd rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e3d0e25 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x273a157c rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3954afb2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x40d8d096 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x452f5578 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4df7a59e rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x526252c8 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61e7e11c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68a76209 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6be3a16b rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7894712d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x78ef23ba rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d3ea0c3 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fffffff rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03e27d1c ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0975ca37 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c0262e2 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0d79e27d ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fd1a8c9 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20e39c84 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3347124a ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d67b557 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x420cb41d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47c7f49a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49d08c17 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b5100a8 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x52dc737a ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5dcbb35a ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6125cb90 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66a19410 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69bb84c3 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x73242604 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x747f39ee to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77d3cc75 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fffffff notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x068669dd iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x115223c2 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1598b6a2 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x180ababb iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18972dfe iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x19b5ab9a iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x25b0f4ee iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x27f18955 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b3e9e62 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3078b64e iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x33627696 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x440f6ebd iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46286e38 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4d780d9e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53296735 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x622d176c iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ecf6234 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x70f2e6c1 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c5a6834 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d526f39 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7fffffff iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/target_core_mod 0x00992e37 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x03bb4ba3 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x08ceb34a core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0bfce17f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1943e928 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e0090bf target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f8b97ad target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x203dd0d5 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2138a243 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x273c26a0 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a8d3927 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x326a4b23 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x345e0257 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e5b687c target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x3faa0a02 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x41705832 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x45892ca7 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x47a30520 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c3fbfe9 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ce52b08 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dcd1779 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b4e62fa target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bd65146 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x62cf4016 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6816774a sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x69df03c2 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x712049d5 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x764cb446 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bf67156 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d4dfdc0 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fffffff transport_wait_for_tasks +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0879e61e ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1d1f9dd6 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3880ee40 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x4950cbc1 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x59174dec ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x69746d2b ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x2eb6e9f1 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x3417c6f1 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x54f786a9 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x7fffffff ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x7fffffff usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x7fffffff usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x7fffffff sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x24dab19d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x27d68fa5 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x28de4a9b usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x34373a61 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x46da2f3f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5481ea33 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6fa118eb usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7fffffff usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x79bdd34b vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x126226a2 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4c2e0156 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x659b703c mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7553c4f3 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7bb21f80 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7fffffff mdev_unregister_driver +EXPORT_SYMBOL drivers/vhost/vhost 0x7fffffff vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x7fffffff 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 0x7fffffff vringh_abandon_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_abandon_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_complete_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_complete_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_getdesc_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_getdesc_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_init_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_init_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_iov_pull_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_kiov_advance +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_need_notify_user +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_disable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_disable_kern +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_enable_iotlb +EXPORT_SYMBOL drivers/vhost/vringh 0x7fffffff vringh_notify_enable_user +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1340ccee devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x19925dcb lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7fffffff lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0fd99882 svga_get_tilemax +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 0x26e3b168 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x40e96b1f svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x72da3550 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7fffffff svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x6ef6202d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x471595e4 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7fffffff sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x52f5f43d cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x7fffffff cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x1b8626ee mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x7fffffff mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x27aab7bf matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7fffffff matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x22d085c4 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x533636ab DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7fffffff matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7fffffff matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x3cfb3119 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x7fffffff matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7df46874 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7fffffff matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x79e385b1 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x7fffffff matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2d09dd4e matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x59f69ea2 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7fffffff matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x00a20a27 omapdss_output_unset_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x00d37866 omap_dss_get_output +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 0x03bb654f omapdss_register_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x087c654a dss_mgr_enable +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 0x322fd3f9 dss_mgr_disable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x37e4e8a1 omap_dss_find_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3a50573f dispc_ovl_check +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x3b431555 omapdss_output_set_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 0x3df618cb dss_mgr_set_timings +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 0x47c54de6 omap_dss_find_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4bd67a8d dispc_write_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x4e642219 dss_install_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x51e1d250 dss_mgr_disconnect +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 0x5d44f893 omapdss_find_mgr_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x663293bf omap_dss_put_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66cdd3c9 dispc_mgr_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x66d68cdf 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 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x72af1399 omapdss_find_output_from_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_free_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_framedone_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_get_vsync_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_go +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_go_busy +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_is_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_mgr_set_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_enabled +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_set_channel_out +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_ovl_setup +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_read_irqenable +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_read_irqstatus +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_request_irq +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dispc_runtime_get +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_feat_get_num_mgrs +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_feat_get_num_ovls +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_connect +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_register_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_set_lcd_config +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_start_update +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dispc_register_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dispc_unregister_isr +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_find_output_by_port_node +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_next_device +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_num_overlay_managers +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_overlay +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_get_overlay_manager +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_dss_pal_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omap_video_timings_to_videomode +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_compat_init +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_default_get_recommended_bpp +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_default_get_timings +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_is_initialized +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_register_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_unregister_display +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_unregister_output +EXPORT_SYMBOL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff videomode_to_omap_video_timings +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x7fffffff sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0x7fffffff save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x279d3f7b is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x76f69340 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7fffffff virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x6182c6be w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7fffffff w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x53c820eb w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x70d2c43b w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x432ad3d9 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x4332e866 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x65ee316a w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7fffffff w1_register_family +EXPORT_SYMBOL fs/fscache/fscache 0x04c26dbd __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1138c221 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x13aa8cd8 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x187dc3b9 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a598025 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1c2861cf __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1d3c424a fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x240dce1c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x24d81932 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x281b5d85 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x28400bfa fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x28d2b4fe fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x28fd80f0 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x56f03cdb fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x64560402 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6871e5cc __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7234ad9e fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7250605c __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x79c17b43 fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x7c4daa19 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7fffffff fscache_wq +EXPORT_SYMBOL fs/netfs/netfs 0x21231769 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x5ac16d86 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x7fffffff netfs_subreq_terminated +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x37d755da qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x463b0fce qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x6ebc4727 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7c9b6617 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7fffffff qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x7fffffff crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0x7fffffff crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0x7fffffff crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0x7fffffff arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0x7fffffff 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 0x7fffffff chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x7fffffff 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 0x7fffffff poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0x7fffffff poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x7fffffff crc32c +EXPORT_SYMBOL lib/libcrc32c 0x7fffffff crc32c_impl +EXPORT_SYMBOL lib/lru_cache 0x03f599c7 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0x4092e01e 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 0x7fffffff lc_committed +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_del +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_find +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_get +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_reset +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_set +EXPORT_SYMBOL lib/lru_cache 0x7fffffff lc_try_lock +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 0x7fffffff 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 0x7fffffff LZ4_compress_HC +EXPORT_SYMBOL lib/lz4/lz4hc_compress 0x7fffffff 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 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 0x7fffffff objagg_hints_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_obj_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_stats_get +EXPORT_SYMBOL lib/objagg 0x7fffffff objagg_stats_put +EXPORT_SYMBOL lib/parman 0x0f518717 parman_prio_init +EXPORT_SYMBOL lib/parman 0x7b03d378 parman_item_add +EXPORT_SYMBOL lib/parman 0x7fffffff parman_create +EXPORT_SYMBOL lib/parman 0x7fffffff parman_destroy +EXPORT_SYMBOL lib/parman 0x7fffffff parman_item_remove +EXPORT_SYMBOL lib/parman 0x7fffffff parman_prio_fini +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 0x7fffffff raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gflog +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7fffffff raid6_gfmul +EXPORT_SYMBOL net/6lowpan/6lowpan 0x169af8b3 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x52fd25f0 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x6c0f3377 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x71e06ae3 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7fffffff lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0x3ab63c4f register_8022_client +EXPORT_SYMBOL net/802/p8022 0x7fffffff unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x743222b1 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x7a0212c1 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03156bb4 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x04924d74 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x05099c3d p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x17e0de58 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x1f859394 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x22a05bbe p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x24561b9f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x289ac199 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x2ced9d97 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3144d05c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x3a175862 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x3ae7619f p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d3596ec p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3d986cf9 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x493e4633 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x4d13e69e p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4d57fa43 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x50442849 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x535c41cb p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x647b27d4 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x6eb46637 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x70d1df43 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7fffffff v9fs_unregister_trans +EXPORT_SYMBOL net/appletalk/appletalk 0x7862986d aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x7fffffff atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x02e17a6e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x0e6a5aed atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x10e7834a deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x128fa572 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x40e27172 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x40e8440f atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6b9a3871 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_charge +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7fffffff atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0x7fffffff sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0x7fffffff sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0x7fffffff vcc_process_recv_queue +EXPORT_SYMBOL net/ax25/ax25 0x11e1e59f ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x130a90a6 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x14987078 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 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0x7fffffff null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d181103 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x10430210 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18c92598 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21035c88 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25a844fa l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27cd9dc4 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x282e42ba l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x35993ff8 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ab08c0c hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4dc92a89 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x521946df hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x535f0c40 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x550d646d bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e502e1c __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60bff150 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62eb379b bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65c8737f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6af6267c bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7071a34e hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77fc161b bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7808b804 bt_sock_stream_recvmsg +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 0x7d258501 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d934116 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e1f7e6b hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e933421 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fffffff l2cap_register_user +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x62057a23 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x67c20911 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7fffffff ebt_unregister_template +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1c74aa7b caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3a6da767 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7fffffff caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x7fffffff caif_free_client +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7fffffff cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0x7fffffff get_cfcnfg +EXPORT_SYMBOL net/can/can 0x256a33fa can_rx_register +EXPORT_SYMBOL net/can/can 0x4a4fbe84 can_send +EXPORT_SYMBOL net/can/can 0x4e367661 can_proto_register +EXPORT_SYMBOL net/can/can 0x7377e0db can_rx_unregister +EXPORT_SYMBOL net/can/can 0x7fffffff can_proto_unregister +EXPORT_SYMBOL net/can/can 0x7fffffff can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x01f51117 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0a3c60e0 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0x0b3811cf ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x1454ca91 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x15aeb6df osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x1b124fc1 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x1bb09e29 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1c3b24fa osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1cba3f20 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x1db244b8 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x1f734839 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x1faaa754 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20eb554b ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x214077b6 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x229acce0 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x24183fc7 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2438b038 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x253e7716 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x257098d5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2711bef1 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3046e504 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x3160255d ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x317ac0ee ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0x341b70f0 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x34226feb ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x35145b8e ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x3522979c ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x3808a9a1 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3abf967e ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d0f2a7c ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x410601fd ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x45044d94 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x4583d861 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x466e9960 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4673256b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x4726551b ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4baea413 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4cf2c9d4 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4e6c32f0 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x4f112744 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x539c0d18 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x5663b15a ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x587ca113 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x610b6b45 ceph_cls_unlock +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 0x65430c52 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x6a0cee5b ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6adc3ae5 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x6e8b0927 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x6edb8cb7 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x71fb8d66 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x726c1229 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x735cf217 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x749e1b74 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x75a8ddfe ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x75c023b0 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x760e82d2 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x766e0483 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7ae21173 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x7c2f56a7 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7cfb1b4f ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x7febf7c8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7fffffff osd_req_op_xattr_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x32ed517b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7fffffff dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x086be214 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x4408fcc4 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0f0b6cfe wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x567288e0 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7fffffff wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x01b6d37c __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x19741ae4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7fffffff __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7fffffff fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7fffffff gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x34464353 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x518f3551 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3553f100 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7fffffff ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0x7fffffff xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x7fffffff xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x2f1f2bf5 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0224308e ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x12099eea ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x258deda1 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67f7af4f ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x339e8c4e ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x38534f8b ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5f28f11c ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7fffffff ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x0ff6e2f0 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x4fcafe35 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7fffffff xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7fffffff xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x15beb02d lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x19e42938 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x60280835 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x65aa9b4c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x7fffffff lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6d250b19 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x786ba673 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x7fffffff llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x002b2155 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x04af178a ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0557739a ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x068b4745 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x09c41b88 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x0b18a68d ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x0c8cadc1 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0cefad78 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x0da6cc6b ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x0db7efc4 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x102ecb29 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x165e9720 ieee80211_rx_ba_timer_expired +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 0x1ad88fcf ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x1b4c63dd ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x1b923c37 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x226dc01b ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x287b0ab1 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x2896ff58 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x303f954b ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x3612f8ff ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x37a4b89d ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x3d5a4059 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3f03790e ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x4405cfe6 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x44ea457e ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x451d8ec6 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x48c59a29 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x4a82778c ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x55bfabda ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x5ed16bf1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5ef3e771 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5f588062 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x616aba83 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63508511 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x65883d4d ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x6741a93b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6999a669 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x6d099de9 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x6d3a9ee1 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x716face3 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x73e51606 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x745d59bc ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x74d487ab ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7905f80d ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7944deec __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x794ffcc5 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7b639156 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x7c333482 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7fffffff wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x60afd09a ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x7fffffff ieee802154_xmit_hw_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x03620408 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06bfef4a ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1bd7939f register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1daf7df7 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x262f2b08 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x27dd2b60 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4ebad4e6 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5164aa68 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x681b5b19 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x78407fb1 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7fffffff unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2460a432 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x7fffffff pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x5e03d247 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7fffffff nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nft_fib 0x7fffffff nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x1a4393d2 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1f8a03d3 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x7e9a615d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_find_jump_offset +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7fffffff xt_unregister_matches +EXPORT_SYMBOL net/nfc/hci/hci 0x02ada5ac nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x09a2a675 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x16cfc6ba nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x38b20972 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x3b0e26c4 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x478f8674 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x54494d7d nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x59131470 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x7fffffff nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x17a9a2d9 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x21be93f1 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x24398c56 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x258385c7 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x3b1a96d8 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3c4bb2d5 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3d4b772f nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x5682afa4 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x6459d06e nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x6970abf8 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x6fa786e0 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x7e79a36a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7fffffff nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x1cf4b739 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x2f8f15c8 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x52035210 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x5a06819c nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x680af62a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x6a767129 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x750f0799 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x7fffffff nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc_digital 0x63767908 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x74c41eb3 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7fffffff nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x211cc177 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x45c50770 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x586f9b89 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5fe98b4a pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x657eee0c pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7fffffff pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x07a280f6 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14ef7b6c rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x14f2cbb4 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x199f109a rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b599127 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1cfdf5f9 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x52784b12 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5446a613 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x59e18822 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x643bdcda rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7d48cf33 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x7fffffff rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x7fffffff sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x01fec82f __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x12616ffc __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x32e3f119 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x6203d4d2 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x736ba91d __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x7fffffff __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x7fffffff __tracepoint_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x29e6ca4d gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7a7b73de gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x205d6e85 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x7fffffff xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x33c32d5f tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x4595ea7b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x7fffffff tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x7fffffff tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x02a6f0e4 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x04776067 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x04febf8f cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x09458eb3 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x09a2a8dd cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a46b28e cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x0a775080 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x0aefa318 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x0b472bde cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0ebc4dfc cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x0fe14809 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1399d11a cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x13e38d76 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x15e0269b cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1729393a wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x17846270 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1982503b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1a5056a9 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x1b38aaa4 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x1c9e5995 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ec07d79 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1fd0e221 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x263e638e cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x2e532141 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x2fc23867 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x32fb9c8a cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x38cb594a ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x3ab21301 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3ec2ae5f cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4561fed5 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x47e55d48 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4832e3a4 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x492bdff6 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x5005a3b4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x511a79ae cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x54368f4e cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x54de4197 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x569d1ab9 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x58fbf844 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5cc9fcc2 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5ced617b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5dbb27aa cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x5dc7cd36 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5f26def9 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5f5aa08c cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x5fac22c8 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x62faaa99 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x63b9e947 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x682626de wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x69a8ea23 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c353b34 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x6efeaf11 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x7013bfc9 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x758a4785 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x75955ee2 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x75c15c9a ieee80211_amsdu_to_8023s +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 0x7e8da277 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x7fffffff wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/lib80211 0x1a64b4d1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x4064ca3f lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5d546bfa lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7fffffff lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x7fffffff 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 0x6928999c snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7fffffff snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x7fffffff 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 0x7fffffff snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x7309c37d snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x7fffffff snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06eaabb0 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15ebc0ae __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1867510e snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c2e3a94 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2588d285 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c75c66c snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7fffffff snd_rawmidi_transmit_peek +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 0x7fffffff 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 0x7fffffff snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x7fffffff snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x227cfa75 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x48c16e60 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x503da649 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d81e97f snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x76c10825 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7fffffff snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d434bbf snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x527b35d2 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5f6d326a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x69ffbd0a snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7fffffff snd_vx_setup_firmware +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04ed82af avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e127e0b amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x142750e5 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15b54097 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x172fd302 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f2ab508 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2256a56e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x352f589a cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x378b52f1 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d14f234 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40b5bf2b amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a8abc50 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e8702bd amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x51419226 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56d8dacc cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x576be8a0 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a9b6214 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x61d6a9fe amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62eecf63 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x744ebe83 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fffffff iso_packets_buffer_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6f4796e2 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4633d5a3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x46cf7d4b snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4b9037cf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x71246707 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fffffff snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0bfb9903 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4a79f9ed snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6465bf53 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x7fffffff snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x53c0c789 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x66f577cd snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7eae9c84 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7fffffff snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x10d0a0dc snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x11743d21 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x53abb405 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fffffff snd_i2c_probeaddr +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d215e94 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2748c2b4 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ac0b699 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x326f6329 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f95755c snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f53ada6 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x750cf8c3 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fc19354 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fffffff snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x021cf34c snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x43971c66 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6623b682 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x73f0c5a9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7e444520 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7fffffff snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1b6d2320 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x6a4501ac snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fffffff snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x09901c2f oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1326f72d oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2ba911a6 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x316460aa oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x327dc493 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4908809b oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cb8cc08 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x623e2f21 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a13e097 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x73be29b2 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fffffff oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3549915c snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5b3ec379 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7fffffff snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7fffffff snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7fffffff snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0x7fffffff acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x24751dd7 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x7fffffff snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x7541682c adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x2c22bcf5 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7fffffff pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x7fffffff pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0x7fffffff hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x46f25efc tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x69de9173 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x09c67a26 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x37a1479c aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7fffffff aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff 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 0x72632cfa 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 0x7fffffff wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x793b30a3 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x7fffffff mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x2a9ca00c qcom_snd_parse_of +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x008a37a2 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1a4c42f7 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6b49bf43 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7fffffff snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7fffffff snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7fffffff snd_emux_unlock_voice +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 0x7fffffff __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fffffff __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fffffff __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fffffff snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fffffff snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7fffffff snd_util_memhdr_new +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 0x7fffffff __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7fffffff snd_usbmidi_suspend +EXPORT_SYMBOL vmlinux 0x00043b95 ip_output +EXPORT_SYMBOL vmlinux 0x000a3c2f qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x000bb7e8 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x0017eb7f mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x001ce8a1 netdev_features_change +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x003d3eb6 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x004d29bd dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x005746e1 snd_register_device +EXPORT_SYMBOL vmlinux 0x005896c5 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x007286de of_chosen +EXPORT_SYMBOL vmlinux 0x0072a479 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x009fe3cd dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b8321a phy_attach +EXPORT_SYMBOL vmlinux 0x00d21202 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e04562 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x00eea2cd page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0106dce5 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x010f8550 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x014965ed i2c_del_driver +EXPORT_SYMBOL vmlinux 0x01505d85 imx_scu_call_rpc +EXPORT_SYMBOL vmlinux 0x01513fae ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x0153ca64 ip_cmsg_recv_offset +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 0x019b0733 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01bf78b5 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x01e56f39 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x01ff3835 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x02248148 pci_match_id +EXPORT_SYMBOL vmlinux 0x025a8d02 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x026cad92 pci_map_rom +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0282d653 dev_get_flags +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a3973e may_setattr +EXPORT_SYMBOL vmlinux 0x02ac45bf thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x02b29b68 mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x02be5332 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02d54a57 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f79482 nla_reserve +EXPORT_SYMBOL vmlinux 0x032538e3 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03362cfd tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x033e6a19 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03788840 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037fa875 nf_log_unset +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a5ef9d phy_connect +EXPORT_SYMBOL vmlinux 0x03a92f40 mr_dump +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03cc0828 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x03fba701 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04078c0b always_delete_dentry +EXPORT_SYMBOL vmlinux 0x040bf2b6 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x0412acb4 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x043112a0 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x04369ee3 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x04426f14 mem_section +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044fb722 dev_base_lock +EXPORT_SYMBOL vmlinux 0x0458f804 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x0462b9b2 nf_reinject +EXPORT_SYMBOL vmlinux 0x04637748 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x04688036 cdrom_release +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0487e4c7 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x0498eeed __snd_pcm_lib_xfer +EXPORT_SYMBOL vmlinux 0x04a00d45 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x04c3e379 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x04c6b4c3 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x04c8a150 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04d3e732 file_open_root +EXPORT_SYMBOL vmlinux 0x04ed23e8 give_up_console +EXPORT_SYMBOL vmlinux 0x04f47376 snd_pcm_set_managed_buffer +EXPORT_SYMBOL vmlinux 0x04f840f3 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x04fd85b4 set_security_override +EXPORT_SYMBOL vmlinux 0x0508088e ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051c6195 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x052236ab pci_remove_bus +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053cbb74 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x05414699 poll_freewait +EXPORT_SYMBOL vmlinux 0x05416fb1 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x054179f6 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x05428ef4 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05681e15 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x05939d56 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x0596cd92 __fs_parse +EXPORT_SYMBOL vmlinux 0x05b0caa0 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x05b8cfda vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0x05c4fcc0 proc_create_data +EXPORT_SYMBOL vmlinux 0x05cd617e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x05d6f8d1 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x060e7a42 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618b8fc unregister_qdisc +EXPORT_SYMBOL vmlinux 0x062c4156 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0634e886 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x064dc67c mpage_readahead +EXPORT_SYMBOL vmlinux 0x06550b89 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x065b3038 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x06640f2d netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066fec8b __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x067863ed genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x0686f15e mmc_detect_change +EXPORT_SYMBOL vmlinux 0x06919e48 _dev_err +EXPORT_SYMBOL vmlinux 0x069be8da dqget +EXPORT_SYMBOL vmlinux 0x069c50ef dev_mc_flush +EXPORT_SYMBOL vmlinux 0x06a3e0fc snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x06aa95aa put_cmsg +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d8e987 ihold +EXPORT_SYMBOL vmlinux 0x06dc9276 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x06f26d14 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x06fdf861 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x0702a23e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x07065bd3 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071809e5 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x0721331a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x072a0f5c set_anon_super +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07504e5d sock_wake_async +EXPORT_SYMBOL vmlinux 0x075a518b devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x0776454a dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x077af67c init_opal_dev +EXPORT_SYMBOL vmlinux 0x0782cb2f from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0790c68e simple_release_fs +EXPORT_SYMBOL vmlinux 0x0791b7f6 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x079271e6 vme_bus_num +EXPORT_SYMBOL vmlinux 0x07941789 __of_get_address +EXPORT_SYMBOL vmlinux 0x0797325d qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x07a01cf1 netdev_info +EXPORT_SYMBOL vmlinux 0x07a7638a __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aacd17 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x07b09833 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x07b6c3b3 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x07bf92e9 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x07c6be5b unregister_filesystem +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dcddc0 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x07e2c085 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x07f2ecbd inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fa4fa0 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08086899 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x08196968 dev_close +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08326783 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x08376c18 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08432f81 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x08489426 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x0858cf9d skb_eth_pop +EXPORT_SYMBOL vmlinux 0x085c119a input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x08697e8f md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x087d7d76 sock_efree +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08a9b748 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x08b05e42 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x08b9ada8 devm_request_resource +EXPORT_SYMBOL vmlinux 0x08ca0132 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x08d2a209 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x08d66d4b _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x08d83614 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x090ebf02 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x0912b0f1 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x0925cce8 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x09263fd7 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x09451929 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x094998c6 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x0959e0ec snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0x097614c6 igrab +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097d9911 folio_mapped +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098e2e14 km_policy_expired +EXPORT_SYMBOL vmlinux 0x099c52fe lease_get_mtime +EXPORT_SYMBOL vmlinux 0x09a1a0f1 generic_file_open +EXPORT_SYMBOL vmlinux 0x09a5d57d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x09a874db dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x09ae0faa iget5_locked +EXPORT_SYMBOL vmlinux 0x09af8d91 param_ops_long +EXPORT_SYMBOL vmlinux 0x09b01ed2 pci_request_region +EXPORT_SYMBOL vmlinux 0x09b152e2 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x09b7adc4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x09b9d8e1 get_watch_queue +EXPORT_SYMBOL vmlinux 0x09c2cff2 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x09c7fe16 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x09cda927 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e18ae6 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a1a8868 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a5572a6 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0a5868a9 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x0a60eb4b kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x0a630980 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x0a88761f user_path_at_empty +EXPORT_SYMBOL vmlinux 0x0a8b3576 mount_nodev +EXPORT_SYMBOL vmlinux 0x0a96b96a kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae547ed xxh64_update +EXPORT_SYMBOL vmlinux 0x0ae79976 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x0aec61f7 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x0afe1e2f rtnl_notify +EXPORT_SYMBOL vmlinux 0x0b03bf08 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x0b1b939e kmemdup +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b230081 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x0b3bd4e2 input_set_capability +EXPORT_SYMBOL vmlinux 0x0b401748 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b56a37d page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x0b5f0936 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x0b617520 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b816d42 nand_get_set_features_notsupp +EXPORT_SYMBOL vmlinux 0x0b86153c ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x0b9a83aa dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x0b9b9946 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba2bfc5 inet6_protos +EXPORT_SYMBOL vmlinux 0x0bbaf9d2 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc4ba1e serio_unregister_port +EXPORT_SYMBOL vmlinux 0x0bd8ddf5 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x0bdb5ebc mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x0bdc3c94 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x0bef7cf4 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf4ac58 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0bf76273 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0x0bf966ec show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x0bfa8a55 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x0c0d3fd4 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x0c125f26 of_node_put +EXPORT_SYMBOL vmlinux 0x0c1faed7 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c27df6a tcf_block_put +EXPORT_SYMBOL vmlinux 0x0c28ef4d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x0c4904af dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0c56261c set_disk_ro +EXPORT_SYMBOL vmlinux 0x0c5d362b inode_init_once +EXPORT_SYMBOL vmlinux 0x0c65c260 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x0c8084e7 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0ca94d93 tty_write_room +EXPORT_SYMBOL vmlinux 0x0cab6745 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb22f28 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x0cd0853f crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x0cd14e5b neigh_parms_release +EXPORT_SYMBOL vmlinux 0x0cd62a5c make_kgid +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cdfa5a6 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x0cf4002a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1701b2 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x0d1b54c1 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d233fe3 input_event +EXPORT_SYMBOL vmlinux 0x0d246a14 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4627ae backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d951332 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x0da56ff1 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x0db08513 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x0dba5e9a radix_tree_delete +EXPORT_SYMBOL vmlinux 0x0dbbb676 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd0e8eb dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x0dd495d3 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x0dd6c031 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0x0ddec4e8 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x0de0ddbc pci_set_mwi +EXPORT_SYMBOL vmlinux 0x0de34a4f __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x0deece5a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0e036260 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x0e0a08a5 simple_unlink +EXPORT_SYMBOL vmlinux 0x0e16c93b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c8804 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x0e257e7a dma_find_channel +EXPORT_SYMBOL vmlinux 0x0e30edff dst_discard_out +EXPORT_SYMBOL vmlinux 0x0e370c7b tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x0e5da8f0 utf8_normalize +EXPORT_SYMBOL vmlinux 0x0e6b78ea netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x0e809a28 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0e851f1a pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x0e8f8685 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x0e941980 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x0e98d5e9 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eafd213 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec0aac5 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ee22d65 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f26bd7d mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x0f2addc8 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x0f415c76 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x0f566cba kmem_cache_size +EXPORT_SYMBOL vmlinux 0x0f586b60 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x0f655355 vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x0f76d596 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8943db dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x0f985d20 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x0fb21a1b tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd0f592 mutex_trylock +EXPORT_SYMBOL vmlinux 0x0fd81a62 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fdb7b2a get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x0fe1bd65 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x0fea2229 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff18a2f inode_init_owner +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10018cb0 __pv_offset +EXPORT_SYMBOL vmlinux 0x1004acdf neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x100bce92 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x10170b2c napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1023e854 vga_client_register +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10416216 netdev_update_features +EXPORT_SYMBOL vmlinux 0x104790e2 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x106246dd d_rehash +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10708f97 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x10739f1e swake_up_locked +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1094fa47 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x109a1041 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x10b97ba5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x10bc0234 dma_pool_create +EXPORT_SYMBOL vmlinux 0x10c67b41 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x10cf616a nand_ecc_finish_io_req +EXPORT_SYMBOL vmlinux 0x10d4f30d xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ea86a0 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x10f1905f security_path_unlink +EXPORT_SYMBOL vmlinux 0x10f54206 init_net +EXPORT_SYMBOL vmlinux 0x11033b58 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11098293 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x110ecf53 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x11319c65 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x114002fd dev_mc_add +EXPORT_SYMBOL vmlinux 0x1143873f rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x114798a4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x11658493 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118ae7c7 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x1198d6f8 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a7b395 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x11c3e530 input_register_device +EXPORT_SYMBOL vmlinux 0x11c765e6 pps_register_source +EXPORT_SYMBOL vmlinux 0x11e0275f napi_consume_skb +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +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 0x12156cc3 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x121eda0e devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x12225cfe i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x1222af7f security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x122c71ef dump_align +EXPORT_SYMBOL vmlinux 0x122eb50b devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1230682c free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x12333182 dev_driver_string +EXPORT_SYMBOL vmlinux 0x1246999b nobh_write_end +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124c2b7d __put_user_ns +EXPORT_SYMBOL vmlinux 0x124d0c64 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x127da270 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x127f1c3c __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x12827367 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x128e44e5 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x1292149b tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x129367ca gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12ce9c8c fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x12e0b27b netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x12f19edf __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fdda0a arm_dma_ops +EXPORT_SYMBOL vmlinux 0x130a6313 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x130adb90 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x130ea94e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13342cf9 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x136231a1 vme_dma_request +EXPORT_SYMBOL vmlinux 0x1371da00 cdrom_open +EXPORT_SYMBOL vmlinux 0x1378c6b7 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x13956b87 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1396af39 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x1397c8c0 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x13b56f17 sock_wfree +EXPORT_SYMBOL vmlinux 0x13b920b3 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fcbc9e generic_file_llseek +EXPORT_SYMBOL vmlinux 0x1408b0be generic_file_fsync +EXPORT_SYMBOL vmlinux 0x140cef8e cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x142109bc zpool_register_driver +EXPORT_SYMBOL vmlinux 0x1421d8cd gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x1448bbeb genphy_update_link +EXPORT_SYMBOL vmlinux 0x144e98f6 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x1451e8e5 vm_zone_stat +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1465e05c mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x146cbbb0 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x1471df1d simple_dir_operations +EXPORT_SYMBOL vmlinux 0x1474080d gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x1486978a gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x148a5f9d netif_tx_lock +EXPORT_SYMBOL vmlinux 0x149c044b twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x14af9b2f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x14d0bfdd udplite_prot +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e6d5de __neigh_create +EXPORT_SYMBOL vmlinux 0x1510d23e sock_bind_add +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1523976b elv_rb_del +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153df9f0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x1541a570 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1559e1ef phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x1564fdc1 mntput +EXPORT_SYMBOL vmlinux 0x1565086d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1569190f max8925_set_bits +EXPORT_SYMBOL vmlinux 0x156989b6 kill_pgrp +EXPORT_SYMBOL vmlinux 0x1588f327 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x15ae2dc3 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x15b662f3 open_exec +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bdceb5 __f_setown +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15d036b2 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x15d05397 dev_mc_del +EXPORT_SYMBOL vmlinux 0x15e7e114 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x161ab5a1 __netif_rx +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x162c75c1 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0x16312f32 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x16369c25 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x16525cc4 xa_find +EXPORT_SYMBOL vmlinux 0x165656ac kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x167de76b phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x169baa83 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x16adbf67 down_killable +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e73be6 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x16ea719b ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x16f24b00 from_kprojid +EXPORT_SYMBOL vmlinux 0x16f3eb05 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x173ace3c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x175c370b __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x1776962f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x179aeb25 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x17af6cce __scm_destroy +EXPORT_SYMBOL vmlinux 0x18117c70 touch_atime +EXPORT_SYMBOL vmlinux 0x182c328d mmc_release_host +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x185e4830 shmem_aops +EXPORT_SYMBOL vmlinux 0x1862dbb5 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x187664fd sg_miter_start +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187a63c1 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18cd9bbe devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f2ab5d _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x191c3ef8 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x193e16d1 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x193eef4d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x195c8596 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x197cc8d0 snd_sgbuf_get_page +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x199e5e7e skb_expand_head +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a6168d gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x19a84a24 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x19a97652 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x19aa2565 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x19b6fb9d vme_slot_num +EXPORT_SYMBOL vmlinux 0x19bcdac5 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19be8778 rtc_add_group +EXPORT_SYMBOL vmlinux 0x19c619dd md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x19f18343 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x19f6075c read_code +EXPORT_SYMBOL vmlinux 0x19fcadbe xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x1a21d691 __ksize +EXPORT_SYMBOL vmlinux 0x1a263c78 amba_driver_register +EXPORT_SYMBOL vmlinux 0x1a264c3c call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x1a26effe hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x1a34ccde block_read_full_folio +EXPORT_SYMBOL vmlinux 0x1a377376 d_drop +EXPORT_SYMBOL vmlinux 0x1a4196f9 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x1a43bef5 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x1a4a67b9 init_pseudo +EXPORT_SYMBOL vmlinux 0x1a5f1d5c twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7bc9ef xxh32 +EXPORT_SYMBOL vmlinux 0x1a8257ad param_set_byte +EXPORT_SYMBOL vmlinux 0x1a8cec51 unix_attach_fds +EXPORT_SYMBOL vmlinux 0x1a9813b7 of_device_unregister +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9bbb1a get_vm_area +EXPORT_SYMBOL vmlinux 0x1a9c9cd9 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1aa43176 do_map_probe +EXPORT_SYMBOL vmlinux 0x1aa86d18 rdma_dim +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1af97c39 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x1afaf2c8 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x1afc30e8 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1c736f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1b1cfc92 dst_init +EXPORT_SYMBOL vmlinux 0x1b25f187 __xa_store +EXPORT_SYMBOL vmlinux 0x1b5a2742 scsi_device_put +EXPORT_SYMBOL vmlinux 0x1b5a7689 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1b5aa68d add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b754a3b sock_create +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7e300d jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x1b820d37 import_iovec +EXPORT_SYMBOL vmlinux 0x1b965a53 kunmap_local_indexed +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bcdaf25 vfs_get_link +EXPORT_SYMBOL vmlinux 0x1beef739 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c62319f of_node_name_eq +EXPORT_SYMBOL vmlinux 0x1c72cfeb end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x1c777c5c dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x1cb1375a migrate_page_copy +EXPORT_SYMBOL vmlinux 0x1cb9180c inet_bind +EXPORT_SYMBOL vmlinux 0x1cbf758e free_buffer_head +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd09d96 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x1cdc3346 follow_up +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d265d6b jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x1d316c8b tcp_parse_options +EXPORT_SYMBOL vmlinux 0x1d37eeed ioremap +EXPORT_SYMBOL vmlinux 0x1d3d8978 register_netdev +EXPORT_SYMBOL vmlinux 0x1d5a7c0c phy_resume +EXPORT_SYMBOL vmlinux 0x1d5b67de xfrm_init_state +EXPORT_SYMBOL vmlinux 0x1d793f2a tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x1d796395 hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0x1d829f08 of_find_property +EXPORT_SYMBOL vmlinux 0x1d8d93c3 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x1d961d41 d_make_root +EXPORT_SYMBOL vmlinux 0x1da9ddab iov_iter_discard +EXPORT_SYMBOL vmlinux 0x1daee677 input_inject_event +EXPORT_SYMBOL vmlinux 0x1db7911a snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +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 0x1dea0633 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0af518 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x1e0c1cfd sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x1e14fe39 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x1e1c2bfa of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e233c27 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x1e32aba0 devfreq_update_target +EXPORT_SYMBOL vmlinux 0x1e33d957 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x1e5284e4 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x1e584af0 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7ad0c4 phy_device_free +EXPORT_SYMBOL vmlinux 0x1e96f43d __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x1e994dab key_type_keyring +EXPORT_SYMBOL vmlinux 0x1e9de2f9 kernel_write +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea0c7b8 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1ea2696d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1ea2961d can_nice +EXPORT_SYMBOL vmlinux 0x1eaa853b security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1eb50bad rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x1eb64646 div64_s64 +EXPORT_SYMBOL vmlinux 0x1ed6f7bc of_phy_connect +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef0d9bf set_bh_page +EXPORT_SYMBOL vmlinux 0x1ef19dc8 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1ef8091b netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x1f268663 dst_release +EXPORT_SYMBOL vmlinux 0x1f274009 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x1f38ff97 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x1f4d5778 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x1f55d456 seq_release +EXPORT_SYMBOL vmlinux 0x1f70318b filemap_check_errors +EXPORT_SYMBOL vmlinux 0x1f73e452 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1f74f2d7 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x1f772e63 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x1f9603a4 simple_setattr +EXPORT_SYMBOL vmlinux 0x1f9bc1d3 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x1fa80194 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x1faa38a3 neigh_for_each +EXPORT_SYMBOL vmlinux 0x1fb64f6e of_get_mac_address +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fbe1801 locks_init_lock +EXPORT_SYMBOL vmlinux 0x1fcb9662 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1ff76d56 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200036a3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x200039b0 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x20021b3f __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x20070ea2 _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2009d5d8 pci_iounmap +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2029cf93 kobject_init +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2061c689 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x20726e1b __alloc_skb +EXPORT_SYMBOL vmlinux 0x2072b8b4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c9d0b0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20d7bc96 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x20db662c param_ops_uint +EXPORT_SYMBOL vmlinux 0x20e313cc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x20ee2b32 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x20f9a804 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x212f237d _dev_notice +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21417610 mdio_device_free +EXPORT_SYMBOL vmlinux 0x214f2b21 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x2155aeb0 nf_log_trace +EXPORT_SYMBOL vmlinux 0x215667b2 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x215d8b4f neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x2172c553 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2175b344 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x217b2724 skb_clone +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21c43749 component_match_add_release +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21eaf49e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x22157e5f omap_rtc_power_off_program +EXPORT_SYMBOL vmlinux 0x2220bd48 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x22533c4a folio_wait_bit +EXPORT_SYMBOL vmlinux 0x225c5816 wake_up_process +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x227ad8ea skb_pull +EXPORT_SYMBOL vmlinux 0x228ee980 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x22ae9c01 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22df9ff4 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x22e923a2 inc_node_state +EXPORT_SYMBOL vmlinux 0x23093e77 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x231d27c9 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x2338662f dm_put_device +EXPORT_SYMBOL vmlinux 0x234317b4 __phy_resume +EXPORT_SYMBOL vmlinux 0x234e87e1 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x2350e51a snd_compr_free_pages +EXPORT_SYMBOL vmlinux 0x2351c45d __quota_error +EXPORT_SYMBOL vmlinux 0x2353f5f5 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x23592ade bio_init_clone +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236837ea sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x236d2293 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x2388eb58 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2390b33f phy_validate_pause +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23e7a7bd dump_skip_to +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23f2f842 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24078ddd input_release_device +EXPORT_SYMBOL vmlinux 0x2407a0e0 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x2417497d __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x241b5677 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x2427a250 set_binfmt +EXPORT_SYMBOL vmlinux 0x242d463e jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244eeec9 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24632749 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x246790df idr_for_each +EXPORT_SYMBOL vmlinux 0x246ea205 blake2s_update +EXPORT_SYMBOL vmlinux 0x248dc160 kobject_del +EXPORT_SYMBOL vmlinux 0x24a766a8 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24bd06df ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d7c4e9 snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x24da5cf1 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25091957 __module_get +EXPORT_SYMBOL vmlinux 0x251b3255 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x252278a6 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x252c0a8d rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x252ec08a __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x252ee9f7 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x254f2600 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x256b7cf9 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x2574854b module_layout +EXPORT_SYMBOL vmlinux 0x257ae45c dma_fence_free +EXPORT_SYMBOL vmlinux 0x257d9700 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x257e1163 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x2590e8c7 dm_table_event +EXPORT_SYMBOL vmlinux 0x25bbf1bc simple_rename +EXPORT_SYMBOL vmlinux 0x25e4871b key_reject_and_link +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f23a52 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260ebf64 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x262af7a6 inode_insert5 +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2656725f tcp_close +EXPORT_SYMBOL vmlinux 0x2659fca9 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x2663ad35 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x26670d88 finish_open +EXPORT_SYMBOL vmlinux 0x266e408d seq_putc +EXPORT_SYMBOL vmlinux 0x267c7bb3 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x2688bed2 posix_test_lock +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 0x26988bff sync_file_create +EXPORT_SYMBOL vmlinux 0x26a15cd4 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x26ad5531 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26d3ed3f ps2_init +EXPORT_SYMBOL vmlinux 0x26eafaa3 md_write_start +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27116ddf mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2755e543 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276a13e2 dma_map_resource +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27931966 sock_no_connect +EXPORT_SYMBOL vmlinux 0x279c0f1a path_put +EXPORT_SYMBOL vmlinux 0x27b97768 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27cfde1a security_inode_init_security +EXPORT_SYMBOL vmlinux 0x27d1b27e bio_copy_data +EXPORT_SYMBOL vmlinux 0x27d8bf42 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x27e15adc reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x27f4d6e3 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x27f50eee napi_get_frags +EXPORT_SYMBOL vmlinux 0x27fae69f vfs_link +EXPORT_SYMBOL vmlinux 0x280533d6 pci_release_regions +EXPORT_SYMBOL vmlinux 0x28055e2f dev_uc_del +EXPORT_SYMBOL vmlinux 0x2805d9c4 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2823156c submit_bio +EXPORT_SYMBOL vmlinux 0x2830d4e4 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x28345b1e snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x2859e627 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x286e692d xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x2873438a zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2878e15a idr_destroy +EXPORT_SYMBOL vmlinux 0x28952e10 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x28a7b26d phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x28b74601 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x28ce97b2 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x28dc9455 import_single_range +EXPORT_SYMBOL vmlinux 0x28e1af3d inet_accept +EXPORT_SYMBOL vmlinux 0x28f06f2c mmput_async +EXPORT_SYMBOL vmlinux 0x28f06f73 peernet2id +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28f9b55e ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x28fca161 of_clk_get +EXPORT_SYMBOL vmlinux 0x290ca879 register_key_type +EXPORT_SYMBOL vmlinux 0x291dbc8c xfrm_register_type +EXPORT_SYMBOL vmlinux 0x2937bbdc vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2945309a ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x294e19dc vfs_get_tree +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296520e8 param_set_ullong +EXPORT_SYMBOL vmlinux 0x297ca62e rproc_free +EXPORT_SYMBOL vmlinux 0x299fe165 pci_restore_state +EXPORT_SYMBOL vmlinux 0x29a47fe9 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x29ab2d7d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x29ad0b9b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x29cca460 datagram_poll +EXPORT_SYMBOL vmlinux 0x29d3b648 neigh_lookup +EXPORT_SYMBOL vmlinux 0x29d9f26e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x29fc8042 snd_dma_alloc_dir_pages +EXPORT_SYMBOL vmlinux 0x2a049c6b security_path_rename +EXPORT_SYMBOL vmlinux 0x2a0c24e6 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x2a149769 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x2a2a6a55 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a4c5bd4 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x2a5263c5 get_tz_trend +EXPORT_SYMBOL vmlinux 0x2a63c8fc of_lpddr3_get_min_tck +EXPORT_SYMBOL vmlinux 0x2a7f8620 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x2a9085e0 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa25880 tcp_check_req +EXPORT_SYMBOL vmlinux 0x2aa4f474 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x2ae26aba pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x2ae304dc dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x2ae68b66 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x2aff19e2 set_posix_acl +EXPORT_SYMBOL vmlinux 0x2b06cb64 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x2b07c8ba gro_cells_init +EXPORT_SYMBOL vmlinux 0x2b14e7c4 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x2b1c5ee0 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL vmlinux 0x2b1da9f9 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x2b31bdc4 cdev_device_add +EXPORT_SYMBOL vmlinux 0x2b4d3d75 dm_get_device +EXPORT_SYMBOL vmlinux 0x2b500d07 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2b558325 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x2b627360 neigh_update +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6a0f69 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x2b77ecc3 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x2b7d7265 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x2b97b28d skb_append +EXPORT_SYMBOL vmlinux 0x2b99722a __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x2b9b2495 kernel_read +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba3c390 fs_bio_set +EXPORT_SYMBOL vmlinux 0x2bba495f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2bc2b901 input_register_handle +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2be3fd08 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x2bedb80d snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x2bf7e315 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x2bff5887 xa_destroy +EXPORT_SYMBOL vmlinux 0x2c026821 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2c0420aa netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x2c0c18e3 proc_mkdir +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 0x2c54b9fd security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x2c56cb48 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2c5ed688 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x2c6b6974 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x2c756976 uart_resume_port +EXPORT_SYMBOL vmlinux 0x2c7aa916 pci_release_resource +EXPORT_SYMBOL vmlinux 0x2c7c3d6d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c950f45 dev_uc_add +EXPORT_SYMBOL vmlinux 0x2c9a3ae9 input_reset_device +EXPORT_SYMBOL vmlinux 0x2cbb8940 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x2cbe3573 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x2cd0d077 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x2ce53aa1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x2ceb9569 genphy_read_status +EXPORT_SYMBOL vmlinux 0x2cef25d4 d_tmpfile +EXPORT_SYMBOL vmlinux 0x2cf02bb5 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x2cfde9a2 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x2cff7cb6 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16a028 simple_lookup +EXPORT_SYMBOL vmlinux 0x2d210679 udp_prot +EXPORT_SYMBOL vmlinux 0x2d211670 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x2d22616e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2d2bf12d generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d36c19d inet_del_protocol +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3cb57e hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x2d4472c2 zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6fcc06 __kmalloc +EXPORT_SYMBOL vmlinux 0x2d852cab __mdiobus_write +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2dade767 dquot_drop +EXPORT_SYMBOL vmlinux 0x2db09003 snd_timer_instance_new +EXPORT_SYMBOL vmlinux 0x2dd18bb0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x2dd29dcd mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x2dd61e83 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2e0a95c6 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2e0c614d of_match_node +EXPORT_SYMBOL vmlinux 0x2e1141ee freezing_slow_path +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e33669b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e7c72be seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x2e8259bc tty_port_close_start +EXPORT_SYMBOL vmlinux 0x2e83a5af msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x2e8aa580 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x2e929029 config_item_set_name +EXPORT_SYMBOL vmlinux 0x2ea96f50 rawnand_sw_bch_cleanup +EXPORT_SYMBOL vmlinux 0x2ec10da0 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x2ec39a9e pci_dev_put +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2edb10d0 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2edeb3d9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x2ef9cb76 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f11f4a2 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f127391 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x2f1749df genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x2f1eaf21 par_io_of_config +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f3de7fd of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x2f425458 snd_sgbuf_get_addr +EXPORT_SYMBOL vmlinux 0x2f50cbf5 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x2f5b0fdb gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2f61f324 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x2f6957bd zstd_end_stream +EXPORT_SYMBOL vmlinux 0x2f69c290 vm_node_stat +EXPORT_SYMBOL vmlinux 0x2f73aac2 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x2f748694 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f856503 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x2fa65b1b iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x2fab5b8b nand_ecc_is_strong_enough +EXPORT_SYMBOL vmlinux 0x2fbaa96b eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x2fbe4cb6 vm_insert_page +EXPORT_SYMBOL vmlinux 0x2fc7ffc9 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x2fd690b4 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x302592f4 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x302f278d device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x30418838 task_work_add +EXPORT_SYMBOL vmlinux 0x3056098c bio_chain +EXPORT_SYMBOL vmlinux 0x3057e7a5 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x30701042 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x30745185 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a87e2f md_bitmap_free +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30ad183c genphy_resume +EXPORT_SYMBOL vmlinux 0x30b36b01 cpu_user +EXPORT_SYMBOL vmlinux 0x30b613fe tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x30bfa837 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x30d9a471 gen_pool_create +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30eb0ebf md_error +EXPORT_SYMBOL vmlinux 0x30f8ab9a bio_put +EXPORT_SYMBOL vmlinux 0x311026fa register_sound_dsp +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x314966c4 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x314b20c8 scnprintf +EXPORT_SYMBOL vmlinux 0x31502711 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3152edbc mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3164b741 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x31719351 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x3178126d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x317a2d9f mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x318235d1 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31bb9e32 zap_page_range +EXPORT_SYMBOL vmlinux 0x31c1622d pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x31c300eb blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x31ef1bd0 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x3200e6ca napi_complete_done +EXPORT_SYMBOL vmlinux 0x32139644 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x321d7f2b dentry_open +EXPORT_SYMBOL vmlinux 0x321e25b1 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x3234c7c1 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x32378a8b mmc_can_discard +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3239dd9c elm_config +EXPORT_SYMBOL vmlinux 0x32430023 _totalhigh_pages +EXPORT_SYMBOL vmlinux 0x3248c161 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x32585fdc current_time +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x327b7c8c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x32829685 iterate_fd +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x3285b8b0 vm_map_ram +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328e0bbc filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x32a87f5e devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x32b5fe46 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x32b9cd7b rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x32c1a1af arp_tbl +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d3bd22 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x32ee1630 cred_fscmp +EXPORT_SYMBOL vmlinux 0x32f59e96 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3314851e is_subdir +EXPORT_SYMBOL vmlinux 0x33219850 cdev_add +EXPORT_SYMBOL vmlinux 0x33233549 generic_fadvise +EXPORT_SYMBOL vmlinux 0x3333f303 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x33437da0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x335216fd cfb_imageblit +EXPORT_SYMBOL vmlinux 0x3370b32d __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x338c1161 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x33940cb8 elv_rb_add +EXPORT_SYMBOL vmlinux 0x339f07fd skb_find_text +EXPORT_SYMBOL vmlinux 0x33b381d1 dev_addr_del +EXPORT_SYMBOL vmlinux 0x33b7c673 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x33c1f6d5 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x33c75fc3 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x33d92b84 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fb4bd4 devm_memremap +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x34146a5b tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x342ac12c try_module_get +EXPORT_SYMBOL vmlinux 0x344e1ae5 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x34521ff2 kern_unmount +EXPORT_SYMBOL vmlinux 0x345791ef param_get_hexint +EXPORT_SYMBOL vmlinux 0x34588da7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x346237ed tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x3465e94f dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x347686bb setup_arg_pages +EXPORT_SYMBOL vmlinux 0x349b4277 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a0373d register_filesystem +EXPORT_SYMBOL vmlinux 0x34a04d71 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x34a8e81a vif_device_init +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34ca145c kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x34cd08fb mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x34d33836 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x35050bc8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x3515b58c netif_device_attach +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35204996 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x3535dc84 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3545bb97 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x354746bd kernel_accept +EXPORT_SYMBOL vmlinux 0x355a7fd1 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x355dff10 d_path +EXPORT_SYMBOL vmlinux 0x355f52ab dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x35601f84 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x35608d2d vme_register_bridge +EXPORT_SYMBOL vmlinux 0x3560e651 kmemdup_nul +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3578c0da devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x357a1095 nand_ecc_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x3582ccb2 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x358a84fb jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x358ed506 devm_release_resource +EXPORT_SYMBOL vmlinux 0x3590a7fd folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35aa98b0 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x35bb510c dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x35c49f19 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x35c792ff pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x35c79d37 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x35c92dec invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x35cc71b8 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x35dce439 km_policy_notify +EXPORT_SYMBOL vmlinux 0x35dec863 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x35ea78f5 atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x36008ec6 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361b4abd blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x361b7eea netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x36289dea __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x3630ef45 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3684ae3b xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x369e8212 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x36af5e35 bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x36c7a1c5 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x36d69557 ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x36dd310e md_update_sb +EXPORT_SYMBOL vmlinux 0x37064a25 of_device_alloc +EXPORT_SYMBOL vmlinux 0x37105d00 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x3721e157 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x37387d23 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3754f6ff devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376df1df folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x376e5a8d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x37717419 lock_rename +EXPORT_SYMBOL vmlinux 0x377498e4 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x3774dd3a load_nls +EXPORT_SYMBOL vmlinux 0x3775e8fd migrate_page +EXPORT_SYMBOL vmlinux 0x377b5d91 inet_getname +EXPORT_SYMBOL vmlinux 0x37814426 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x37a8ace7 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x37a93371 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x37b022f9 sg_split +EXPORT_SYMBOL vmlinux 0x37b46020 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e2e67b bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x37eaaf49 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x38180745 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38360cc0 skb_dump +EXPORT_SYMBOL vmlinux 0x3837e12f __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3842b3a6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x38678b9c skb_copy_header +EXPORT_SYMBOL vmlinux 0x386d9ce9 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x38921957 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389b3017 rawnand_sw_hamming_init +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a53e78 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ac4ced tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x38b505b0 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x38c18357 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x38db51f4 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x38de402b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x38e775f7 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x390a6682 registered_fb +EXPORT_SYMBOL vmlinux 0x392254d9 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3927bda1 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3957ba67 bioset_exit +EXPORT_SYMBOL vmlinux 0x395d811d km_new_mapping +EXPORT_SYMBOL vmlinux 0x3960a962 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x396ec192 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x3985d702 phy_find_first +EXPORT_SYMBOL vmlinux 0x3992bc63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0x39938d94 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a43dda mdiobus_write +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b8ac0d proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x39bb870c __vcalloc +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39c88fd5 flush_rcu_work +EXPORT_SYMBOL vmlinux 0x39c97e7a mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x39cd57e4 kill_pid +EXPORT_SYMBOL vmlinux 0x39d5f55f inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x39e8fb66 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3a0a2d6f devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2658c6 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a386941 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x3a498ca0 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a64ff87 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x3a6960c7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x3a844392 md_register_thread +EXPORT_SYMBOL vmlinux 0x3a8486f2 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x3a84fed3 utf8_casefold +EXPORT_SYMBOL vmlinux 0x3a937af5 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3aa18273 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x3aa81685 km_query +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac9d058 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3ad6fd8e krait_get_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x3ae0f0b1 config_item_get +EXPORT_SYMBOL vmlinux 0x3aea2fee elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x3aefa7e5 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x3af2ddb6 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x3b0735f0 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x3b07983d fb_set_var +EXPORT_SYMBOL vmlinux 0x3b26853a seq_lseek +EXPORT_SYMBOL vmlinux 0x3b299067 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b40879d check_zeroed_user +EXPORT_SYMBOL vmlinux 0x3b5902cc of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b79993f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x3b8250ae input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x3b9fae62 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x3ba5a648 noop_fsync +EXPORT_SYMBOL vmlinux 0x3baefb1b netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x3bbb5b39 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc5d0fb clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x3bc6d097 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3bca8da2 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x3be39688 of_device_is_available +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3becb5fd nf_hook_slow +EXPORT_SYMBOL vmlinux 0x3bf55c4d devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x3c0b5353 blk_post_runtime_resume +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 0x3c4437b5 serio_close +EXPORT_SYMBOL vmlinux 0x3c60315c ioremap_cache +EXPORT_SYMBOL vmlinux 0x3c8c818b input_setup_polling +EXPORT_SYMBOL vmlinux 0x3c8f6ef0 __xa_insert +EXPORT_SYMBOL vmlinux 0x3c8f6f80 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x3ca5b276 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x3cbd3da2 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0x3cbece34 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x3cbed38a snd_card_register +EXPORT_SYMBOL vmlinux 0x3cc2c3fa of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3cd5897c tso_build_hdr +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d071c04 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3d0bf18d __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x3d25f66b misc_register +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d404ceb __vmalloc_array +EXPORT_SYMBOL vmlinux 0x3d510ae6 filp_open +EXPORT_SYMBOL vmlinux 0x3d6b9a89 to_nd_btt +EXPORT_SYMBOL vmlinux 0x3d752d62 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x3d786e48 freeze_bdev +EXPORT_SYMBOL vmlinux 0x3da4a4fc filemap_fault +EXPORT_SYMBOL vmlinux 0x3dab374b vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x3db38e1b md_reload_sb +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 0x3de08975 dquot_transfer +EXPORT_SYMBOL vmlinux 0x3df336a9 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3df528bc validate_slab_cache +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dffede0 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x3e009d20 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x3e1113d2 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x3e1620a7 tcp_filter +EXPORT_SYMBOL vmlinux 0x3e348e70 freeze_super +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3d6c12 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x3e4a66fd pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x3e82f3e9 get_random_bytes +EXPORT_SYMBOL vmlinux 0x3e89e060 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x3e9ff7fe cdev_alloc +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ea20931 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x3ea90089 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x3ec30060 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x3ec80fa0 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x3ed104a5 xa_set_mark +EXPORT_SYMBOL vmlinux 0x3ed2e834 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x3ed577ce fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x3ede01ac param_set_int +EXPORT_SYMBOL vmlinux 0x3eeeab6b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f03e104 d_add +EXPORT_SYMBOL vmlinux 0x3f0eeda0 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3f1e10a0 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x3f316efe cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x3f40329a snd_timer_new +EXPORT_SYMBOL vmlinux 0x3f437111 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f45f465 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0x3f4af46f gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5c3992 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3f60b396 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x3f62d048 dma_fence_init +EXPORT_SYMBOL vmlinux 0x3f68d464 da903x_query_status +EXPORT_SYMBOL vmlinux 0x3f71c956 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3f7c7fe9 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x3f856f8d folio_mapping +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f994979 dquot_initialize +EXPORT_SYMBOL vmlinux 0x3fa121ef vfs_fsync +EXPORT_SYMBOL vmlinux 0x3fb9797c forget_cached_acl +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc22846 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3fc7b31c kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x3fcfbdd7 alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x3fd6f6da tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fea538c hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x400f791f rpmh_write_async +EXPORT_SYMBOL vmlinux 0x401262a6 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x402059ac vfs_rename +EXPORT_SYMBOL vmlinux 0x4027830c snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x403a93e7 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x4047e9b2 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x4051ee7b xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4073177d t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x4078c37b xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x40843c55 get_cached_acl +EXPORT_SYMBOL vmlinux 0x408c74b1 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409b7058 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x40a600b9 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b1f3fc md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x40b51c05 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x40c06919 twl6040_power +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 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x4115a842 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x412214c0 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4134bc86 discard_new_inode +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414975dd __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x4155c0ce security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x415b1d56 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x416c7705 kobject_set_name +EXPORT_SYMBOL vmlinux 0x41725d88 security_inode_setsecctx +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 0x418f7084 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x41bb273f jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x41bb84fc dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x41c829ba fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41eb546c nlmsg_notify +EXPORT_SYMBOL vmlinux 0x41ecbce8 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4203135d sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x420b52ab flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x421920e9 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x421d4dcf krealloc +EXPORT_SYMBOL vmlinux 0x421e39c2 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x4224b059 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x42393bb6 kthread_stop +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d1d0e map_destroy +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424d98a9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4251b390 con_is_visible +EXPORT_SYMBOL vmlinux 0x4253aa7e down_write +EXPORT_SYMBOL vmlinux 0x42604384 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x4277e42a cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4297675b fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429dd8aa scsi_remove_host +EXPORT_SYMBOL vmlinux 0x42b2aa75 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x42cabd07 pci_get_device +EXPORT_SYMBOL vmlinux 0x42ccd2ca mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x42d117d3 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x42d8642c pci_irq_vector +EXPORT_SYMBOL vmlinux 0x42ea3d11 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f45c09 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x42fad61a devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430356b4 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x43393792 of_translate_address +EXPORT_SYMBOL vmlinux 0x4340263f ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437be471 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4398e691 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x439ade70 user_revoke +EXPORT_SYMBOL vmlinux 0x43ca815e __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x43cba86e flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43e57231 commit_creds +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x43fe8f9b sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4405caa5 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442b7591 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x443240ef param_get_invbool +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443bd058 cqhci_resume +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444cc8ed tcp_md5_needed +EXPORT_SYMBOL vmlinux 0x4461c5d6 scsi_print_result +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 0x446e5cd1 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x4471040a empty_zero_page +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b5a488 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x44b777de block_commit_write +EXPORT_SYMBOL vmlinux 0x44bba857 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x44c2d112 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x44c9dc6c percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e65252 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x44e66ed2 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44fab301 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x44ff6480 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x4502107c bdi_register +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453ebd91 vfs_get_super +EXPORT_SYMBOL vmlinux 0x454adf6c dec_node_page_state +EXPORT_SYMBOL vmlinux 0x454ed9df shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x45506951 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x455461fb mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x4558ed92 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458c27bd start_tty +EXPORT_SYMBOL vmlinux 0x45976c09 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x45b09450 dma_supported +EXPORT_SYMBOL vmlinux 0x45bd19de nla_strscpy +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45d73376 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x45ea479c phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x45fdee7f dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x4600a9d6 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x46012a22 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x46139eae mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x461a1323 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46244c03 ns_capable +EXPORT_SYMBOL vmlinux 0x4627a981 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46320e6b input_unregister_device +EXPORT_SYMBOL vmlinux 0x464ddf94 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x465dfbf7 _dev_emerg +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x46669d36 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x467ed0dc tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46ac2212 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x46b702a1 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x46bbe52e mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x46c9bbe3 kmap_high +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46de6fb1 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x46f09464 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x46f48d48 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x471def74 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x47281a4a fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x472a1662 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x473023b4 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4735f290 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x473d225c snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x4756260d ida_destroy +EXPORT_SYMBOL vmlinux 0x4757f392 rproc_detach +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477b7a27 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x4787b730 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x478f80f9 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x4793513f bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x47b45d36 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x47b8fdaf security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x47bf8b75 vfs_symlink +EXPORT_SYMBOL vmlinux 0x47c087b7 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47d92c03 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47ff659d gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x48074c22 dquot_disable +EXPORT_SYMBOL vmlinux 0x481039ce inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4811f484 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48198fe3 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x48211a92 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x483650a5 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x4843342f pagecache_get_page +EXPORT_SYMBOL vmlinux 0x4845aa0c dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484a6395 con_is_bound +EXPORT_SYMBOL vmlinux 0x484d559a pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486500bb inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x48661eae register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x4886b229 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x488f865f uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x48a3fc08 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48aeb5c1 serio_reconnect +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c3c365 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x48c3fd49 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d6cbcd tcp_peek_len +EXPORT_SYMBOL vmlinux 0x49037cbc processor +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49046e7c __free_pages +EXPORT_SYMBOL vmlinux 0x4908ec78 vmap +EXPORT_SYMBOL vmlinux 0x490a800e blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x490f1937 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x491d2253 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x492ab3c8 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495dde33 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x497115e6 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x4976e6f5 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x49871971 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x49894d72 request_key_rcu +EXPORT_SYMBOL vmlinux 0x49933f4c input_set_timestamp +EXPORT_SYMBOL vmlinux 0x49970de8 finish_wait +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a7a104 security_sk_clone +EXPORT_SYMBOL vmlinux 0x49b66fd6 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x49c0926f __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x49c29b4e phy_read_mmd +EXPORT_SYMBOL vmlinux 0x49d0ec64 mount_subtree +EXPORT_SYMBOL vmlinux 0x49d61380 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x49e14e96 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x49e2bff8 proto_register +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f26466 kstrndup +EXPORT_SYMBOL vmlinux 0x49f98082 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x49ff1c3a netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4a08c255 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x4a1530a5 nand_ecc_init_ctx +EXPORT_SYMBOL vmlinux 0x4a20d720 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4a3b1cdf nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a603961 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x4a6c5997 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL vmlinux 0x4a7e20c8 sk_wait_data +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9a22e5 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x4aa36692 ppp_input_error +EXPORT_SYMBOL vmlinux 0x4ab4a228 devm_ioremap +EXPORT_SYMBOL vmlinux 0x4ade86b5 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0x4af388a4 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b050e23 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4b23769c blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x4b33ffbf sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x4b3e159a napi_disable +EXPORT_SYMBOL vmlinux 0x4b50843e netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x4b59966c devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x4b5f365c tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b60c262 netlink_capable +EXPORT_SYMBOL vmlinux 0x4b8a8174 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x4b991a35 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x4babb8b0 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x4bb06b22 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4bb0c148 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf75ed1 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x4bf992a0 tty_check_change +EXPORT_SYMBOL vmlinux 0x4bfdcefa __memset32 +EXPORT_SYMBOL vmlinux 0x4bfe14ca bio_split +EXPORT_SYMBOL vmlinux 0x4c110721 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4c1cca3b cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c316cd1 add_watch_to_object +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c6c6036 nf_log_register +EXPORT_SYMBOL vmlinux 0x4c784fc2 try_to_release_page +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0f98c1 __netif_schedule +EXPORT_SYMBOL vmlinux 0x4d23ff0a mtd_concat_create +EXPORT_SYMBOL vmlinux 0x4d28215a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x4d3286ad __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4d399f4b cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4d94e6 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x4d514485 xa_store +EXPORT_SYMBOL vmlinux 0x4d9033bb zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da0c60b skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x4dbafb58 inet_add_offload +EXPORT_SYMBOL vmlinux 0x4dce47d8 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x4dd81f44 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x4dddcc81 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df43e18 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x4e05bdec mempool_init_node +EXPORT_SYMBOL vmlinux 0x4e25a35a pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x4e2b76ef buffer_migrate_page +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 0x4e43613d register_sound_special +EXPORT_SYMBOL vmlinux 0x4e4745ed scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x4e5c2c77 km_report +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea3dc0b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec60cb1 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x4edc439a file_modified +EXPORT_SYMBOL vmlinux 0x4ee98ebd tcp_have_smc +EXPORT_SYMBOL vmlinux 0x4efe19ac blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x4f05f018 neigh_xmit +EXPORT_SYMBOL vmlinux 0x4f0ba30b tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x4f0c6702 seq_printf +EXPORT_SYMBOL vmlinux 0x4f0fc3ae of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x4f1ba73a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1e0842 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4f20a5e0 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2dfb53 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x4f339a64 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x4f4efb08 rproc_boot +EXPORT_SYMBOL vmlinux 0x4f5e30b4 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x4f7ecd5e filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x4f80eba3 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f82aded xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8d4231 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x4fcd5178 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x4fef3d7b tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x4fef3ef4 completion_done +EXPORT_SYMBOL vmlinux 0x4ff7cc3c dev_printk_emit +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 0x500a1a2f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x500e79cb blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x50132873 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x50283cac devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x50288a40 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5028c57d begin_new_exec +EXPORT_SYMBOL vmlinux 0x50293b20 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x502b6647 mempool_create_node +EXPORT_SYMBOL vmlinux 0x503600c7 vfs_setpos +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507de6a6 rproc_add +EXPORT_SYMBOL vmlinux 0x5081ba27 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e96a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x50931a80 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b55f99 netdev_state_change +EXPORT_SYMBOL vmlinux 0x50b5da23 put_fs_context +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b78390 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50bf50fd __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d71bcf gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x50d87ee0 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50fd6103 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x5119e1d0 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x511f142b devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x51238992 inet_frags_init +EXPORT_SYMBOL vmlinux 0x512e891c posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x513bd99a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x513ef240 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x51480110 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x514a62ec dq_data_lock +EXPORT_SYMBOL vmlinux 0x515305a2 wireless_send_event +EXPORT_SYMBOL vmlinux 0x515a99d1 setattr_copy +EXPORT_SYMBOL vmlinux 0x5163521a skb_queue_purge +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51679d22 mii_check_media +EXPORT_SYMBOL vmlinux 0x516aac88 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x519578f7 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x51a910c0 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x51aa2c72 snd_component_add +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51f16cdb vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x51fff388 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x521fff50 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x522fb0e4 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x524b31ea param_ops_short +EXPORT_SYMBOL vmlinux 0x526c3a6c jiffies +EXPORT_SYMBOL vmlinux 0x527894f0 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528dbcbb ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x5294ac79 seq_file_path +EXPORT_SYMBOL vmlinux 0x52d23b42 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x53027541 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x5305cff5 __register_chrdev +EXPORT_SYMBOL vmlinux 0x5309a351 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531886d0 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533b11ac genl_notify +EXPORT_SYMBOL vmlinux 0x533fb51d folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x5340530f proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5349b2e2 dquot_commit +EXPORT_SYMBOL vmlinux 0x536060af radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x537b38b7 register_framebuffer +EXPORT_SYMBOL vmlinux 0x53918fac dma_resv_fini +EXPORT_SYMBOL vmlinux 0x53aeb013 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x53b7315d bdi_alloc +EXPORT_SYMBOL vmlinux 0x53f381f5 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5447ea96 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x54542f28 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x547633bd end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x5491fcb6 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x549e201d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x54a08b38 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x54a4ba2b scsi_remove_target +EXPORT_SYMBOL vmlinux 0x54a9800c param_ops_bool +EXPORT_SYMBOL vmlinux 0x54b0cd1d inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54c4babf seq_open +EXPORT_SYMBOL vmlinux 0x54c8aa50 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x54cb4444 register_md_personality +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e89058 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x54f55812 console_stop +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5514b698 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55358636 netpoll_setup +EXPORT_SYMBOL vmlinux 0x553c2aff vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x553cedb8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x554482ca serio_open +EXPORT_SYMBOL vmlinux 0x5545a639 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55522095 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x556051aa n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x55610511 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5562e403 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559e0393 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x55b3b106 __inet_hash +EXPORT_SYMBOL vmlinux 0x55bad8be alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x55bed1af __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x55ce8b51 xp_dma_map +EXPORT_SYMBOL vmlinux 0x55d8b59e mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e8b0ef vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x55eb7e5c tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x55eb869a _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x5608c6df phy_read_paged +EXPORT_SYMBOL vmlinux 0x560f04de jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x561a21bf of_match_device +EXPORT_SYMBOL vmlinux 0x561c2d3d is_bad_inode +EXPORT_SYMBOL vmlinux 0x56200414 dput +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56390598 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56406513 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x5643c434 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5648d379 param_get_ullong +EXPORT_SYMBOL vmlinux 0x56546b11 tty_do_resize +EXPORT_SYMBOL vmlinux 0x565671a6 input_free_device +EXPORT_SYMBOL vmlinux 0x565f82e1 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x5678821e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5689a2b0 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x568b83b1 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x569af675 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x56a004e1 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x56a23c9a eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x56c150b1 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x56c72948 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x56c76ec3 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cc324b truncate_setsize +EXPORT_SYMBOL vmlinux 0x56df326b snd_dma_buffer_mmap +EXPORT_SYMBOL vmlinux 0x56e1ab7d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x570efa7c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5726d108 tty_name +EXPORT_SYMBOL vmlinux 0x572a4253 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x5733f705 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x57438f33 skb_ext_add +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57537046 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57637eb5 clk_get +EXPORT_SYMBOL vmlinux 0x57660334 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576990e5 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x5770303d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x577d9170 rio_query_mport +EXPORT_SYMBOL vmlinux 0x578097bf jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x57ba073f generic_fillattr +EXPORT_SYMBOL vmlinux 0x57c2406c blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x57c95047 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x57ce3b82 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x57ceedb1 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x57d8588b phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x57e5170c qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x57eed6c5 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x58023273 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x5809dab0 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x58109899 km_state_notify +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581c6030 arp_create +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 0x583ce735 param_get_uint +EXPORT_SYMBOL vmlinux 0x584463d4 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x584c7c64 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x586048e0 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x586d8616 __scm_send +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x5898daf3 fb_class +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c7e299 proc_set_size +EXPORT_SYMBOL vmlinux 0x58cb983a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x58d8d2b7 input_flush_device +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ea0c9a dev_get_iflink +EXPORT_SYMBOL vmlinux 0x58fad869 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x590c51bf in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x591cea56 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x5928e7b1 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x592b5bd9 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x592eb649 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59511b59 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x59548e56 mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x59552924 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x5984901c thread_group_exited +EXPORT_SYMBOL vmlinux 0x59871448 input_close_device +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x59a17bfc tegra114_clock_tune_cpu_trimmers_high +EXPORT_SYMBOL vmlinux 0x59a30fa4 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x59b438ec __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x59b7cab6 mempool_resize +EXPORT_SYMBOL vmlinux 0x59cf0b3b zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59f6e51c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x59fc3baa __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x5a0429b5 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x5a049f30 update_region +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a14de15 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x5a1817f9 invalidate_disk +EXPORT_SYMBOL vmlinux 0x5a1a56a4 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x5a37495c d_invalidate +EXPORT_SYMBOL vmlinux 0x5a451cbb softnet_data +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a51a819 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x5a7d35f5 snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x5a831179 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x5a8df9de register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5a980d6f key_link +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa4669a param_set_ulong +EXPORT_SYMBOL vmlinux 0x5aa9b23b __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5af1df32 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b062284 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5b2237b3 vme_bus_type +EXPORT_SYMBOL vmlinux 0x5b27e8e6 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x5b41adb3 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x5b497a2b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5b5280a3 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b60ad9b qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x5bbe49f4 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5bd0909d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda4214 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x5bdab269 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bfcdde4 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5c050a40 simple_map_init +EXPORT_SYMBOL vmlinux 0x5c1e5b1d param_get_bool +EXPORT_SYMBOL vmlinux 0x5c2ef9d5 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4b98d3 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x5c5ef6a8 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x5c716976 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5c76c999 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5c7843b7 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x5c791309 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x5c7f1284 int_sqrt64 +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5ca5fea0 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x5cbd8e69 __crc32c_le +EXPORT_SYMBOL vmlinux 0x5cc3e87f write_inode_now +EXPORT_SYMBOL vmlinux 0x5ccb33aa dst_alloc +EXPORT_SYMBOL vmlinux 0x5cd7c01c pci_resize_resource +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cff155b jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x5d0026df __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x5d01fce6 set_page_writeback +EXPORT_SYMBOL vmlinux 0x5d088d61 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x5d14a80e ip_frag_init +EXPORT_SYMBOL vmlinux 0x5d20b04d mdio_find_bus +EXPORT_SYMBOL vmlinux 0x5d363fda ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5d37d658 dim_park_tired +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d512088 amba_release_regions +EXPORT_SYMBOL vmlinux 0x5d515151 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x5d6a2e9e kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x5d6a55ed snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL vmlinux 0x5d6e1eb8 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x5d765a9e neigh_seq_start +EXPORT_SYMBOL vmlinux 0x5d80e8fa generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5d82b444 nand_read_oob_std +EXPORT_SYMBOL vmlinux 0x5d99b8d3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5dafa0d4 kill_litter_super +EXPORT_SYMBOL vmlinux 0x5db786f0 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x5dbb77d0 dm_io +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd211dc register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x5ddac875 abort_creds +EXPORT_SYMBOL vmlinux 0x5de64ff4 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x5e078111 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x5e079ae1 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1790b5 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x5e2df6a2 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e382897 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x5e42bc3a sk_free +EXPORT_SYMBOL vmlinux 0x5e539fb0 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x5e54e5b9 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5e585844 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e7e03a9 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e8a6f0a netif_carrier_on +EXPORT_SYMBOL vmlinux 0x5e8dfd90 sock_no_accept +EXPORT_SYMBOL vmlinux 0x5e946146 block_write_end +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e980394 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x5e9d4372 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebf6ea3 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x5ec2b92b dup_iter +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed05bf6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5ed3bbd1 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eed7262 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f16bf3f pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f2c9501 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5f2cb0cb reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f5ef1e5 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f921d25 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x5fb01358 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fb81f3c fiemap_prep +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600e6126 sk_alloc +EXPORT_SYMBOL vmlinux 0x6019236e mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x607062ba md_done_sync +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 0x60aed060 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x60b07dd7 snd_pcm_new +EXPORT_SYMBOL vmlinux 0x60bffe6d div64_u64 +EXPORT_SYMBOL vmlinux 0x60c6de62 md_integrity_register +EXPORT_SYMBOL vmlinux 0x60d5c72d phy_device_remove +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x61128d91 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x61226fb1 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x61230dba scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6136fcbf md_unregister_thread +EXPORT_SYMBOL vmlinux 0x613bf785 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x614e85fb pci_get_class +EXPORT_SYMBOL vmlinux 0x615327ee folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x6156c7f4 net_dim +EXPORT_SYMBOL vmlinux 0x6157f687 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6164da2f rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x618a0826 snd_timer_start +EXPORT_SYMBOL vmlinux 0x619139cd blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x61b76bb9 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c5c37e napi_build_skb +EXPORT_SYMBOL vmlinux 0x61c76b3a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x61dfdc52 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61ee1387 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x61fab985 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x620aaaf9 snd_device_register +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62430298 of_get_nand_ecc_user_config +EXPORT_SYMBOL vmlinux 0x62471091 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x624738e8 file_ns_capable +EXPORT_SYMBOL vmlinux 0x625b4e4d seq_read_iter +EXPORT_SYMBOL vmlinux 0x626baa2a bprm_change_interp +EXPORT_SYMBOL vmlinux 0x626fbaba folio_unlock +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62792e78 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x627f14ff seq_vprintf +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62880e10 dma_set_mask +EXPORT_SYMBOL vmlinux 0x62910092 generic_update_time +EXPORT_SYMBOL vmlinux 0x62a7194c netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x62ab9022 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x62b9567c override_creds +EXPORT_SYMBOL vmlinux 0x62cf7042 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x62d1b93e of_platform_device_create +EXPORT_SYMBOL vmlinux 0x62d3fb85 pci_request_irq +EXPORT_SYMBOL vmlinux 0x62d8ce0d jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x62f576d9 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x630580ad xsk_tx_release +EXPORT_SYMBOL vmlinux 0x63076a8e tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x6310a826 qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632998b2 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x633a13f0 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x6342f99f mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x63441561 vfs_unlink +EXPORT_SYMBOL vmlinux 0x6346d0fc wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x6351ac42 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0x636463dc inet6_ioctl +EXPORT_SYMBOL vmlinux 0x636ee43e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x63785d8d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x63810be7 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x6385d829 input_set_keycode +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a9f6dc rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x63b3763c jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x63b480b6 pps_event +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c85c71 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x63c9e8f0 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x63cdba08 dev_set_alias +EXPORT_SYMBOL vmlinux 0x63d88359 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x63e23d37 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x63e32fc2 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f23d15 __skb_pad +EXPORT_SYMBOL vmlinux 0x63f7c87c iunique +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642e1b65 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x644f44a3 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x6455d53a set_user_nice +EXPORT_SYMBOL vmlinux 0x647af474 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64833350 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64add786 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x64b5ee24 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x64bd0fb3 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x64c789e8 finish_no_open +EXPORT_SYMBOL vmlinux 0x64ca5f51 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x64cd7ec0 fasync_helper +EXPORT_SYMBOL vmlinux 0x64e2a002 seq_dentry +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6513d54e ll_rw_block +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651eb57d snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652bd95a __brelse +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654e31ab inode_init_always +EXPORT_SYMBOL vmlinux 0x656aa79e rawnand_sw_bch_init +EXPORT_SYMBOL vmlinux 0x6578533e prepare_to_wait +EXPORT_SYMBOL vmlinux 0x657a7ff5 serio_rescan +EXPORT_SYMBOL vmlinux 0x657cd88d tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x65855f54 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a48eb3 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x65a4cf09 nf_log_packet +EXPORT_SYMBOL vmlinux 0x65ba43bb ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x65d411e9 idr_get_next +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e3be07 init_task +EXPORT_SYMBOL vmlinux 0x65fe4894 mmc_add_host +EXPORT_SYMBOL vmlinux 0x660d2d3f dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x660f29d6 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x662b6e64 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x6639de50 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x66474aa4 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66657274 kmalloc_order +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x666cdb60 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667b41bd filemap_flush +EXPORT_SYMBOL vmlinux 0x668bb9e4 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x66aed8c5 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x66c4139d sock_alloc_file +EXPORT_SYMBOL vmlinux 0x66d222a6 udp_set_csum +EXPORT_SYMBOL vmlinux 0x66de910e udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x66e1e138 mmc_free_host +EXPORT_SYMBOL vmlinux 0x670a1724 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x67139521 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x67284bbe security_path_mknod +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67b0e482 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c7010b sync_filesystem +EXPORT_SYMBOL vmlinux 0x67ea2c91 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x67ea6e61 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x67fcd2ea deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x67fdecf2 phy_print_status +EXPORT_SYMBOL vmlinux 0x680d6942 kset_register +EXPORT_SYMBOL vmlinux 0x680e4c4b scsi_device_get +EXPORT_SYMBOL vmlinux 0x68124fd8 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x68163e03 sg_miter_next +EXPORT_SYMBOL vmlinux 0x681970ea vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x681e9b79 vme_lm_request +EXPORT_SYMBOL vmlinux 0x683237c3 mpage_writepage +EXPORT_SYMBOL vmlinux 0x6857acd8 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x68604fa0 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x686a062a security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x686ecc0e snd_card_file_add +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687bc746 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x688ade11 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x689235cc sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x68956f1e max8925_reg_read +EXPORT_SYMBOL vmlinux 0x68a11012 bpf_link_put +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68a3bd45 dev_uc_init +EXPORT_SYMBOL vmlinux 0x68ade11a devm_register_netdev +EXPORT_SYMBOL vmlinux 0x68b71e8e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x68b8bfd9 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x68b9e41e filemap_map_pages +EXPORT_SYMBOL vmlinux 0x68c97be4 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x68d67391 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x68d8cb2c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x68dc467c tcp_seq_next +EXPORT_SYMBOL vmlinux 0x68dfa19d truncate_pagecache +EXPORT_SYMBOL vmlinux 0x68f7bed9 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x690630df inet_stream_ops +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69187277 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x691938f8 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x692560d6 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x6929ffc0 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x69425296 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x6953c357 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697a54cf dma_resv_init +EXPORT_SYMBOL vmlinux 0x697ca772 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x697cb0fb sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x698c94e6 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x69b40260 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x69b4a285 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x69dc6d00 poll_initwait +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e51d08 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x69e9804c mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x6a00f209 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a25b3eb __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x6a297758 kill_block_super +EXPORT_SYMBOL vmlinux 0x6a36a8f8 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x6a3bee65 snd_timer_open +EXPORT_SYMBOL vmlinux 0x6a4d6f1d __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x6a5b5919 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a602673 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x6a627089 kobject_put +EXPORT_SYMBOL vmlinux 0x6a62b4cf netif_receive_skb +EXPORT_SYMBOL vmlinux 0x6a631a8f scsi_done_direct +EXPORT_SYMBOL vmlinux 0x6a64a72a netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a7c42ea cqhci_pltfm_init +EXPORT_SYMBOL vmlinux 0x6a8831e0 jiffies_64 +EXPORT_SYMBOL vmlinux 0x6a989bcb __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab02d73 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x6ab59572 send_sig +EXPORT_SYMBOL vmlinux 0x6ac80c29 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6ad7a335 prepare_creds +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af7b21a packing +EXPORT_SYMBOL vmlinux 0x6afa2e43 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x6b25ea22 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x6b26f4cf skb_checksum +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b498efc serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x6b4e55db inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b604710 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6b6190d9 fb_blank +EXPORT_SYMBOL vmlinux 0x6b719644 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x6b76f65f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x6b7b8480 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b979384 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x6b9a4525 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x6b9d77bb bdevname +EXPORT_SYMBOL vmlinux 0x6bb7a761 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6bb93d9e sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x6bbf358d ip_frag_next +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6be9ebd3 _snd_ctl_add_follower +EXPORT_SYMBOL vmlinux 0x6bf31015 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x6bf5cf07 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x6bf7d3c2 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x6c1397e5 inet_del_offload +EXPORT_SYMBOL vmlinux 0x6c14313b param_ops_string +EXPORT_SYMBOL vmlinux 0x6c1668ed mdio_device_register +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c2688bc iput +EXPORT_SYMBOL vmlinux 0x6c3ff9bb inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x6c4bd1bc netif_rx +EXPORT_SYMBOL vmlinux 0x6c4f3514 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x6c5968e1 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c73c01c kern_unmount_array +EXPORT_SYMBOL vmlinux 0x6c810e42 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x6c87396f ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x6c93270f __serio_register_port +EXPORT_SYMBOL vmlinux 0x6c9a0a55 inet_ioctl +EXPORT_SYMBOL vmlinux 0x6caae680 fb_get_mode +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6ce9f920 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d0160a8 d_set_d_op +EXPORT_SYMBOL vmlinux 0x6d13022f flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x6d243cb0 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2a2486 page_mapped +EXPORT_SYMBOL vmlinux 0x6d2c9dff skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6d2d3a45 snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4699e7 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x6d54c6f3 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x6d5bcc35 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x6d625bba nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6720cd scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d830922 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x6d89b199 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6d91fc27 of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x6d92a71d snd_card_free +EXPORT_SYMBOL vmlinux 0x6d9344ad inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x6daff194 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd83de9 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x6dd96df2 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x6ddcdbad revert_creds +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df50f97 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x6dfa6294 of_root +EXPORT_SYMBOL vmlinux 0x6e0e202b scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6e1258ff dev_change_flags +EXPORT_SYMBOL vmlinux 0x6e180630 __kfree_skb +EXPORT_SYMBOL vmlinux 0x6e3f8e23 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x6e4268e4 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x6e4318fd filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6e448a9b kthread_bind +EXPORT_SYMBOL vmlinux 0x6e4e7714 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x6e4f4f0c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x6e526a4a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x6e706118 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea65ae2 seq_puts +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec8a12e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x6ecdb792 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6ef75b41 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f013ecd __init_rwsem +EXPORT_SYMBOL vmlinux 0x6f24dd5b pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x6f36eda7 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x6f5b4c67 netif_skb_features +EXPORT_SYMBOL vmlinux 0x6f5f246d netdev_err +EXPORT_SYMBOL vmlinux 0x6f6794b0 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6f773f0a noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x6f77a70f of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x6f83fba8 hex2bin +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f903fd7 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x6f914f54 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL vmlinux 0x6fa008fd mdio_device_create +EXPORT_SYMBOL vmlinux 0x6fa6597c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6fadd866 nf_log_set +EXPORT_SYMBOL vmlinux 0x6fb374e6 down_write_killable +EXPORT_SYMBOL vmlinux 0x6fb4f17c vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x6fbe4717 idr_replace +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcf6c27 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6fd24721 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe0fb64 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x70442931 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7047fe2e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x70526d85 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x705764d9 set_cached_acl +EXPORT_SYMBOL vmlinux 0x70703993 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7087eec6 xfrm_input +EXPORT_SYMBOL vmlinux 0x7096878f tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x70981e9b skb_dequeue +EXPORT_SYMBOL vmlinux 0x7099ebb5 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x70afa974 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x70ba919e sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x70d65102 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x70dd2073 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x70fc99e0 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x711b8a9b __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x712110ab proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7133b3c3 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x714117c4 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7152b03f netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7166a96c pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718e5590 release_pages +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a7967a elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x71a941c0 inet_protos +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71c96d70 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x71dbf49c pci_request_regions +EXPORT_SYMBOL vmlinux 0x71ebe9dd pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x71f7de4f proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x72005410 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720cd6c5 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x72310bdb inet_csk_accept +EXPORT_SYMBOL vmlinux 0x723612a6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x72447594 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x72656aed scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x7279c8b6 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x729dfd6d pci_enable_device +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b766dc twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x72b80a53 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72c00f7e crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x72e03567 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f34a60 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x73029c92 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x73037574 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x7305a98b unregister_netdev +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 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73349ff0 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x73599b46 dget_parent +EXPORT_SYMBOL vmlinux 0x735bc3ab __sock_create +EXPORT_SYMBOL vmlinux 0x7370599a devm_memunmap +EXPORT_SYMBOL vmlinux 0x737a0666 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x737b8959 thaw_super +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7387c2fa tcf_idr_create +EXPORT_SYMBOL vmlinux 0x738d5de3 pci_bus_read_config_dword +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 0x73b5242f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x73c303e2 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x73c60a21 ip_defrag +EXPORT_SYMBOL vmlinux 0x73c79a3e configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x73d4e5c0 I_BDEV +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f79363 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x740695fe ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413c41a xfrm_register_km +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742ad38f jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x742fc1e7 fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x7452bd61 skb_seq_read +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d207ea fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5791c xfrm_state_free +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fe4c1a module_put +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751d9d8d fput +EXPORT_SYMBOL vmlinux 0x753074e2 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x755306ee migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7555efbc tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x75641302 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x75687b0a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x756c41e5 dev_get_stats +EXPORT_SYMBOL vmlinux 0x757dd9f3 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x75823951 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x758d7d4c snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x759338c6 misc_deregister +EXPORT_SYMBOL vmlinux 0x7595ac8a mdiobus_free +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 0x75e00b4e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x75fed357 elevator_alloc +EXPORT_SYMBOL vmlinux 0x75ff7a36 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x760363ac dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x76088d88 path_get +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76143282 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7631e99b phy_drivers_register +EXPORT_SYMBOL vmlinux 0x7633dfb5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x76388c19 folio_write_one +EXPORT_SYMBOL vmlinux 0x7643658e input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7646c677 update_devfreq +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764826e7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x764b6083 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7666cf1f nla_put +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x76962c08 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a58911 snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x76a6385e reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x76b2f1ab seq_release_private +EXPORT_SYMBOL vmlinux 0x76b446fc generic_write_checks +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76cf9531 kunmap_high +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d85e33 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x76da1054 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x76e8b587 pci_release_region +EXPORT_SYMBOL vmlinux 0x76eb5f54 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x76fce113 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x7735cdda remove_arg_zero +EXPORT_SYMBOL vmlinux 0x775bdbe4 unix_get_socket +EXPORT_SYMBOL vmlinux 0x775c6ebc md_cluster_ops +EXPORT_SYMBOL vmlinux 0x7775dc53 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x77796145 bio_uninit +EXPORT_SYMBOL vmlinux 0x7783a17b super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77943df6 __d_drop +EXPORT_SYMBOL vmlinux 0x77a0df47 bio_add_page +EXPORT_SYMBOL vmlinux 0x77a9e6b7 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cff1c8 put_disk +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ef9dd5 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x77f6f183 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x78227ee7 param_ops_int +EXPORT_SYMBOL vmlinux 0x782a3f5a inode_nohighmem +EXPORT_SYMBOL vmlinux 0x782c048e neigh_direct_output +EXPORT_SYMBOL vmlinux 0x78331174 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x785bdcea zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x7863b3be simple_link +EXPORT_SYMBOL vmlinux 0x78779c0b set_fiq_handler +EXPORT_SYMBOL vmlinux 0x787ddb66 __bread_gfp +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789000e7 rawnand_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7897c45b ether_setup +EXPORT_SYMBOL vmlinux 0x789f6f8d scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a251d9 config_group_init +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78d03213 param_set_copystring +EXPORT_SYMBOL vmlinux 0x78d88ed1 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79014383 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x7903a450 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x79047096 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x7909109f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x7918e10a devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x791b2497 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x791d9f67 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x794153da write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x794765d1 mempool_free +EXPORT_SYMBOL vmlinux 0x795ac491 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x7965caaf vfs_iter_read +EXPORT_SYMBOL vmlinux 0x79723522 input_register_handler +EXPORT_SYMBOL vmlinux 0x7983d86d fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x79ba9b85 vga_get +EXPORT_SYMBOL vmlinux 0x79bfa858 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x79dc58da sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x79de9926 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a099364 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a10bee0 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7a183f62 iptun_encaps +EXPORT_SYMBOL vmlinux 0x7a188b0e mii_check_link +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a20bf00 devm_clk_get +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3b4160 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x7a3e8a42 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7a44c000 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x7a4632f7 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a6c3fcb secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x7a701c18 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x7a7811c1 vfs_statfs +EXPORT_SYMBOL vmlinux 0x7a834bf0 simple_write_begin +EXPORT_SYMBOL vmlinux 0x7a8fbece qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a963608 vfs_readlink +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa67ce9 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x7aa72941 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abc20e8 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL vmlinux 0x7ac7542e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad50006 pps_unregister_source +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 0x7af32263 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0e5d0b _dev_alert +EXPORT_SYMBOL vmlinux 0x7b1edd52 dev_load +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2fb85d __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b684378 md_write_end +EXPORT_SYMBOL vmlinux 0x7b6bbfc1 __kmap_to_page +EXPORT_SYMBOL vmlinux 0x7b72d0b7 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7b83b1af netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x7b92a8a8 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0x7b92f289 simple_fill_super +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bb3fb3d unregister_nls +EXPORT_SYMBOL vmlinux 0x7bb53c5e no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x7bbd8084 genl_register_family +EXPORT_SYMBOL vmlinux 0x7bc8a70d tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7bc96644 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x7c00a6a9 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c243ba2 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x7c25384e device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48f95a __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7c5ac0a8 d_splice_alias +EXPORT_SYMBOL vmlinux 0x7c66adcb simple_transaction_release +EXPORT_SYMBOL vmlinux 0x7c7b63f4 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7c7d7613 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7c893e0b kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x7c8c2210 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x7c8cea9e key_create_or_update +EXPORT_SYMBOL vmlinux 0x7c965df5 thaw_bdev +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9cc8d6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x7ca0dfef snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x7ca81f01 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x7cae6d8c tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc212c7 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x7cdce2c2 user_path_create +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce28187 ac97_bus_type +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 0x7d1621ee inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x7d19a759 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x7d22f6a6 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x7d2ef2b0 down_read_interruptible +EXPORT_SYMBOL vmlinux 0x7d32bdf0 dump_page +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d4d2fa2 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x7d4dc09c __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7d578821 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x7d5fd00e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7d8ce431 snd_device_new +EXPORT_SYMBOL vmlinux 0x7da15eae xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcc7ba8 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x7dd6727c snd_sgbuf_get_chunk_size +EXPORT_SYMBOL vmlinux 0x7dd67ae9 netdev_alert +EXPORT_SYMBOL vmlinux 0x7de0f041 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x7dedbe60 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x7def7668 sock_register +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfebd4c snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x7e0c90f7 cpu_tlb +EXPORT_SYMBOL vmlinux 0x7e0ce0c3 up_write +EXPORT_SYMBOL vmlinux 0x7e0f4cc7 tso_build_data +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e4e01e8 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x7e66d6b9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x7e876a00 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7e96f179 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x7e986abe try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x7ec4f3f5 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x7ec68985 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7ec7f1a7 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ecd27d2 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x7ee7aede textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7eef414d inet_addr_type +EXPORT_SYMBOL vmlinux 0x7efd74e4 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f07cf87 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7f0ce0ff phy_driver_register +EXPORT_SYMBOL vmlinux 0x7f19beb4 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2bd903 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7f569982 bdi_unregister +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f794569 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x7f7e18ad __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f7ff01a seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x7f9faa09 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x7faa3363 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x7fab6065 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x7fb10723 km_state_expired +EXPORT_SYMBOL vmlinux 0x7fbc8eda flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7fcc925e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd598fd jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fdfdc1e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x7fffffff LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x7fffffff PageMovable +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x7fffffff __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7fffffff __SetPageMovable +EXPORT_SYMBOL vmlinux 0x7fffffff ___pskb_trim +EXPORT_SYMBOL vmlinux 0x7fffffff ___ratelimit +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_lasr +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0x7fffffff __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0x7fffffff __alloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0x7fffffff __ashrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __bforget +EXPORT_SYMBOL vmlinux 0x7fffffff __bio_advance +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_clear +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_or +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x7fffffff __bitmap_xor +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x7fffffff __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7fffffff __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7fffffff __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7fffffff __block_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff __block_write_full_page +EXPORT_SYMBOL vmlinux 0x7fffffff __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7fffffff __breadahead +EXPORT_SYMBOL vmlinux 0x7fffffff __break_lease +EXPORT_SYMBOL vmlinux 0x7fffffff __bswapsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __cap_empty_set +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x7fffffff __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x7fffffff __check_object_size +EXPORT_SYMBOL vmlinux 0x7fffffff __check_sticky +EXPORT_SYMBOL vmlinux 0x7fffffff __clzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x7fffffff __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __ctzsi2 +EXPORT_SYMBOL vmlinux 0x7fffffff __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __destroy_inode +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_release_region +EXPORT_SYMBOL vmlinux 0x7fffffff __devm_request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_done +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x7fffffff __do_once_slow_start +EXPORT_SYMBOL vmlinux 0x7fffffff __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7fffffff __dquot_free_space +EXPORT_SYMBOL vmlinux 0x7fffffff __dquot_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x7fffffff __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff __fdget +EXPORT_SYMBOL vmlinux 0x7fffffff __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x7fffffff __find_get_block +EXPORT_SYMBOL vmlinux 0x7fffffff __flush_workqueue +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_lock +EXPORT_SYMBOL vmlinux 0x7fffffff __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff __fput_sync +EXPORT_SYMBOL vmlinux 0x7fffffff __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7fffffff __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7fffffff __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x7fffffff __genradix_ptr +EXPORT_SYMBOL vmlinux 0x7fffffff __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_2 +EXPORT_SYMBOL vmlinux 0x7fffffff __get_user_8 +EXPORT_SYMBOL vmlinux 0x7fffffff __getblk_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_init +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x7fffffff __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff __icmp_send +EXPORT_SYMBOL vmlinux 0x7fffffff __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7fffffff __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff __invalidate_device +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_dev_find +EXPORT_SYMBOL vmlinux 0x7fffffff __ip_options_compile +EXPORT_SYMBOL vmlinux 0x7fffffff __kfence_pool +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_free +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_in +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x7fffffff __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0x7fffffff __kmap_local_page_prot +EXPORT_SYMBOL vmlinux 0x7fffffff __lock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7fffffff __lshrdi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x7fffffff __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7fffffff __mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff __memset64 +EXPORT_SYMBOL vmlinux 0x7fffffff __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x7fffffff __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff __muldi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __mutex_init +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __napi_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __nd_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_event_send +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x7fffffff __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x7fffffff __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7fffffff __next_node_in +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x7fffffff __nlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff __num_online_cpus +EXPORT_SYMBOL vmlinux 0x7fffffff __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x7fffffff __pagevec_release +EXPORT_SYMBOL vmlinux 0x7fffffff __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x7fffffff __pci_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x7fffffff __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x7fffffff __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x7fffffff __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x7fffffff __posix_acl_create +EXPORT_SYMBOL vmlinux 0x7fffffff __post_watch_notification +EXPORT_SYMBOL vmlinux 0x7fffffff __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0x7fffffff __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0x7fffffff __ps2_command +EXPORT_SYMBOL vmlinux 0x7fffffff __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x7fffffff __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7fffffff __put_cred +EXPORT_SYMBOL vmlinux 0x7fffffff __put_page +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_1 +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_2 +EXPORT_SYMBOL vmlinux 0x7fffffff __put_user_4 +EXPORT_SYMBOL vmlinux 0x7fffffff __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x7fffffff __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsb +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsl +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_readsw +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesb +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesl +EXPORT_SYMBOL vmlinux 0x7fffffff __raw_writesw +EXPORT_SYMBOL vmlinux 0x7fffffff __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x7fffffff __readwrite_bug +EXPORT_SYMBOL vmlinux 0x7fffffff __register_binfmt +EXPORT_SYMBOL vmlinux 0x7fffffff __register_nls +EXPORT_SYMBOL vmlinux 0x7fffffff __request_module +EXPORT_SYMBOL vmlinux 0x7fffffff __request_region +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_execute +EXPORT_SYMBOL vmlinux 0x7fffffff __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7fffffff __seq_open_private +EXPORT_SYMBOL vmlinux 0x7fffffff __serio_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0x7fffffff __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x7fffffff __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7fffffff __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_get_hash +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7fffffff __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7fffffff __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x7fffffff __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x7fffffff __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x7fffffff __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x7fffffff __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x7fffffff __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0x7fffffff __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0x7fffffff __udivsi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __umodsi3 +EXPORT_SYMBOL vmlinux 0x7fffffff __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x7fffffff __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x7fffffff __vmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff __wait_on_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7fffffff __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0x7fffffff __write_overflow_field +EXPORT_SYMBOL vmlinux 0x7fffffff __xa_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff __xa_erase +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7fffffff __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7fffffff _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _bcd2bin +EXPORT_SYMBOL vmlinux 0x7fffffff _bin2bcd +EXPORT_SYMBOL vmlinux 0x7fffffff _copy_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff _copy_to_iter +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_crit +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_info +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_printk +EXPORT_SYMBOL vmlinux 0x7fffffff _dev_warn +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_and_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x7fffffff _find_last_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _find_next_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _kstrtol +EXPORT_SYMBOL vmlinux 0x7fffffff _local_bh_enable +EXPORT_SYMBOL vmlinux 0x7fffffff _memset_io +EXPORT_SYMBOL vmlinux 0x7fffffff _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0x7fffffff _printk +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x7fffffff _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff _test_and_change_bit +EXPORT_SYMBOL vmlinux 0x7fffffff _totalram_pages +EXPORT_SYMBOL vmlinux 0x7fffffff abort +EXPORT_SYMBOL vmlinux 0x7fffffff add_device_randomness +EXPORT_SYMBOL vmlinux 0x7fffffff add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7fffffff add_to_pipe +EXPORT_SYMBOL vmlinux 0x7fffffff add_wait_queue +EXPORT_SYMBOL vmlinux 0x7fffffff add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff address_space_init_once +EXPORT_SYMBOL vmlinux 0x7fffffff adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7fffffff adjust_resource +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_fcdev +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x7fffffff alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x7fffffff allocate_resource +EXPORT_SYMBOL vmlinux 0x7fffffff amba_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff amba_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff amba_request_regions +EXPORT_SYMBOL vmlinux 0x7fffffff argv_free +EXPORT_SYMBOL vmlinux 0x7fffffff arm_clear_user +EXPORT_SYMBOL vmlinux 0x7fffffff arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x7fffffff arm_copy_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff arm_delay_ops +EXPORT_SYMBOL vmlinux 0x7fffffff arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0x7fffffff arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0x7fffffff arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x7fffffff arp_send +EXPORT_SYMBOL vmlinux 0x7fffffff arp_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ata_print_version +EXPORT_SYMBOL vmlinux 0x7fffffff atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff atomic_io_modify +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_end +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_format +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_start +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_subject_context +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_task_context +EXPORT_SYMBOL vmlinux 0x7fffffff audit_log_task_info +EXPORT_SYMBOL vmlinux 0x7fffffff autoremove_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff avenrun +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_force_update +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff bcmp +EXPORT_SYMBOL vmlinux 0x7fffffff bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x7fffffff bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x7fffffff bdi_put +EXPORT_SYMBOL vmlinux 0x7fffffff bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff bh_submit_read +EXPORT_SYMBOL vmlinux 0x7fffffff bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x7fffffff bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7fffffff bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x7fffffff bio_endio +EXPORT_SYMBOL vmlinux 0x7fffffff bio_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff bio_init +EXPORT_SYMBOL vmlinux 0x7fffffff bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x7fffffff bio_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff bio_reset +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_init +EXPORT_SYMBOL vmlinux 0x7fffffff bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7fffffff bit_waitqueue +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_bitremap +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_free +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_parse +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_remap +EXPORT_SYMBOL vmlinux 0x7fffffff bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff blackhole_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff blake2s_compress +EXPORT_SYMBOL vmlinux 0x7fffffff blake2s_final +EXPORT_SYMBOL vmlinux 0x7fffffff blk_check_plugged +EXPORT_SYMBOL vmlinux 0x7fffffff blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x7fffffff blk_finish_plug +EXPORT_SYMBOL vmlinux 0x7fffffff blk_get_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x7fffffff blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x7fffffff blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff blk_put_queue +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_split +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x7fffffff blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7fffffff blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x7fffffff blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x7fffffff blk_start_plug +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7fffffff blkdev_put +EXPORT_SYMBOL vmlinux 0x7fffffff block_dirty_folio +EXPORT_SYMBOL vmlinux 0x7fffffff block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7fffffff block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7fffffff block_truncate_page +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff block_write_full_page +EXPORT_SYMBOL vmlinux 0x7fffffff bmap +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_map_get +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x7fffffff bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff brioctl_set +EXPORT_SYMBOL vmlinux 0x7fffffff bsearch +EXPORT_SYMBOL vmlinux 0x7fffffff buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff build_skb +EXPORT_SYMBOL vmlinux 0x7fffffff build_skb_around +EXPORT_SYMBOL vmlinux 0x7fffffff cacheid +EXPORT_SYMBOL vmlinux 0x7fffffff cad_pid +EXPORT_SYMBOL vmlinux 0x7fffffff call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff call_fib_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7fffffff call_usermodehelper +EXPORT_SYMBOL vmlinux 0x7fffffff can_do_mlock +EXPORT_SYMBOL vmlinux 0x7fffffff cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff capable +EXPORT_SYMBOL vmlinux 0x7fffffff cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_del +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_device_del +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_init +EXPORT_SYMBOL vmlinux 0x7fffffff cdev_set_parent +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7fffffff cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7fffffff cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7fffffff clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x7fffffff clear_inode +EXPORT_SYMBOL vmlinux 0x7fffffff clear_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff clk_add_alias +EXPORT_SYMBOL vmlinux 0x7fffffff clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0x7fffffff clk_get_sys +EXPORT_SYMBOL vmlinux 0x7fffffff clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x7fffffff clkdev_add +EXPORT_SYMBOL vmlinux 0x7fffffff clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x7fffffff clocksource_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff close_fd +EXPORT_SYMBOL vmlinux 0x7fffffff close_fd_get_file +EXPORT_SYMBOL vmlinux 0x7fffffff cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0x7fffffff color_table +EXPORT_SYMBOL vmlinux 0x7fffffff complete +EXPORT_SYMBOL vmlinux 0x7fffffff complete_all +EXPORT_SYMBOL vmlinux 0x7fffffff complete_request_key +EXPORT_SYMBOL vmlinux 0x7fffffff component_match_add_typed +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_find_item +EXPORT_SYMBOL vmlinux 0x7fffffff config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x7fffffff config_item_put +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_depend_item +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_register_group +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x7fffffff configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x7fffffff console_blank_hook +EXPORT_SYMBOL vmlinux 0x7fffffff console_blanked +EXPORT_SYMBOL vmlinux 0x7fffffff console_conditional_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff console_lock +EXPORT_SYMBOL vmlinux 0x7fffffff console_start +EXPORT_SYMBOL vmlinux 0x7fffffff console_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff consume_skb +EXPORT_SYMBOL vmlinux 0x7fffffff cont_write_begin +EXPORT_SYMBOL vmlinux 0x7fffffff contig_page_data +EXPORT_SYMBOL vmlinux 0x7fffffff cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x7fffffff copy_from_user_toio +EXPORT_SYMBOL vmlinux 0x7fffffff copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x7fffffff copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_addr +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x7fffffff cpu_all_bits +EXPORT_SYMBOL vmlinux 0x7fffffff cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_get +EXPORT_SYMBOL vmlinux 0x7fffffff cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_any_but +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_local_spread +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_next +EXPORT_SYMBOL vmlinux 0x7fffffff cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_deactivate +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_init +EXPORT_SYMBOL vmlinux 0x7fffffff cqhci_irq +EXPORT_SYMBOL vmlinux 0x7fffffff crc16 +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_be +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_le +EXPORT_SYMBOL vmlinux 0x7fffffff crc32_le_shift +EXPORT_SYMBOL vmlinux 0x7fffffff crc8 +EXPORT_SYMBOL vmlinux 0x7fffffff crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0x7fffffff crc8_populate_msb +EXPORT_SYMBOL vmlinux 0x7fffffff crc_ccitt +EXPORT_SYMBOL vmlinux 0x7fffffff crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x7fffffff crc_t10dif +EXPORT_SYMBOL vmlinux 0x7fffffff crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x7fffffff create_empty_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x7fffffff cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x7fffffff crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x7fffffff csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff csum_partial +EXPORT_SYMBOL vmlinux 0x7fffffff csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x7fffffff current_in_userns +EXPORT_SYMBOL vmlinux 0x7fffffff current_work +EXPORT_SYMBOL vmlinux 0x7fffffff d_add_ci +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_anon +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_name +EXPORT_SYMBOL vmlinux 0x7fffffff d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x7fffffff d_delete +EXPORT_SYMBOL vmlinux 0x7fffffff d_exact_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_find_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_genocide +EXPORT_SYMBOL vmlinux 0x7fffffff d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff d_instantiate +EXPORT_SYMBOL vmlinux 0x7fffffff d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x7fffffff d_instantiate_new +EXPORT_SYMBOL vmlinux 0x7fffffff d_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x7fffffff d_move +EXPORT_SYMBOL vmlinux 0x7fffffff d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7fffffff d_obtain_root +EXPORT_SYMBOL vmlinux 0x7fffffff d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7fffffff d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_close +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_dir_open +EXPORT_SYMBOL vmlinux 0x7fffffff dcache_readdir +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_getapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x7fffffff dcb_setapp +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7fffffff deactivate_super +EXPORT_SYMBOL vmlinux 0x7fffffff dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff default_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff default_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff del_gendisk +EXPORT_SYMBOL vmlinux 0x7fffffff del_timer_sync +EXPORT_SYMBOL vmlinux 0x7fffffff delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x7fffffff dentry_create +EXPORT_SYMBOL vmlinux 0x7fffffff dev_activate +EXPORT_SYMBOL vmlinux 0x7fffffff dev_add_offload +EXPORT_SYMBOL vmlinux 0x7fffffff dev_add_pack +EXPORT_SYMBOL vmlinux 0x7fffffff dev_addr_add +EXPORT_SYMBOL vmlinux 0x7fffffff dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7fffffff dev_deactivate +EXPORT_SYMBOL vmlinux 0x7fffffff dev_disable_lro +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x7fffffff dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x7fffffff dev_lstats_read +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7fffffff dev_mc_init +EXPORT_SYMBOL vmlinux 0x7fffffff dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x7fffffff dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x7fffffff dev_set_threaded +EXPORT_SYMBOL vmlinux 0x7fffffff dev_trans_start +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_flush +EXPORT_SYMBOL vmlinux 0x7fffffff dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x7fffffff dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7fffffff devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff device_add_disk +EXPORT_SYMBOL vmlinux 0x7fffffff device_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x7fffffff devm_clk_put +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x7fffffff devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff devm_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x7fffffff devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7fffffff devm_iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fffffff devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x7fffffff devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x7fffffff devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x7fffffff devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x7fffffff devm_rproc_add +EXPORT_SYMBOL vmlinux 0x7fffffff devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff dim_calc_stats +EXPORT_SYMBOL vmlinux 0x7fffffff dim_on_top +EXPORT_SYMBOL vmlinux 0x7fffffff dim_park_on_top +EXPORT_SYMBOL vmlinux 0x7fffffff dim_turn +EXPORT_SYMBOL vmlinux 0x7fffffff disk_stack_limits +EXPORT_SYMBOL vmlinux 0x7fffffff div64_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff div_s64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x7fffffff dm_kobject_release +EXPORT_SYMBOL vmlinux 0x7fffffff dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x7fffffff dm_register_target +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_get_md +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_get_size +EXPORT_SYMBOL vmlinux 0x7fffffff dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_describe +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_release +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x7fffffff dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff dma_free_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x7fffffff dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x7fffffff dma_sync_wait +EXPORT_SYMBOL vmlinux 0x7fffffff dmaengine_get +EXPORT_SYMBOL vmlinux 0x7fffffff dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_check_system +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x7fffffff dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0x7fffffff dns_query +EXPORT_SYMBOL vmlinux 0x7fffffff do_SAK +EXPORT_SYMBOL vmlinux 0x7fffffff do_blank_screen +EXPORT_SYMBOL vmlinux 0x7fffffff do_clone_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff do_splice_direct +EXPORT_SYMBOL vmlinux 0x7fffffff do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0x7fffffff do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x7fffffff done_path_create +EXPORT_SYMBOL vmlinux 0x7fffffff dotdot_name +EXPORT_SYMBOL vmlinux 0x7fffffff down +EXPORT_SYMBOL vmlinux 0x7fffffff down_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff down_read +EXPORT_SYMBOL vmlinux 0x7fffffff down_read_killable +EXPORT_SYMBOL vmlinux 0x7fffffff down_read_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff down_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff down_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff downgrade_write +EXPORT_SYMBOL vmlinux 0x7fffffff dql_init +EXPORT_SYMBOL vmlinux 0x7fffffff dql_reset +EXPORT_SYMBOL vmlinux 0x7fffffff dqput +EXPORT_SYMBOL vmlinux 0x7fffffff dqstats +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_acquire +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_file_open +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_get_state +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_operations +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_release +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_resume +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_scan_active +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x7fffffff dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x7fffffff drm_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0x7fffffff drop_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff drop_super +EXPORT_SYMBOL vmlinux 0x7fffffff drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7fffffff dst_default_metrics +EXPORT_SYMBOL vmlinux 0x7fffffff dst_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff dst_dev_put +EXPORT_SYMBOL vmlinux 0x7fffffff dump_emit +EXPORT_SYMBOL vmlinux 0x7fffffff dump_skip +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff ecc_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x7fffffff edac_mc_find +EXPORT_SYMBOL vmlinux 0x7fffffff efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0x7fffffff elf_set_personality +EXPORT_SYMBOL vmlinux 0x7fffffff elv_rb_find +EXPORT_SYMBOL vmlinux 0x7fffffff empty_aops +EXPORT_SYMBOL vmlinux 0x7fffffff enable_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff enable_irq +EXPORT_SYMBOL vmlinux 0x7fffffff end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7fffffff end_page_writeback +EXPORT_SYMBOL vmlinux 0x7fffffff errseq_sample +EXPORT_SYMBOL vmlinux 0x7fffffff eth_get_headlen +EXPORT_SYMBOL vmlinux 0x7fffffff eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_cache +EXPORT_SYMBOL vmlinux 0x7fffffff eth_header_parse +EXPORT_SYMBOL vmlinux 0x7fffffff eth_mac_addr +EXPORT_SYMBOL vmlinux 0x7fffffff eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff eth_type_trans +EXPORT_SYMBOL vmlinux 0x7fffffff eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_notify +EXPORT_SYMBOL vmlinux 0x7fffffff ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7fffffff f_setown +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_readable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fault_in_writeable +EXPORT_SYMBOL vmlinux 0x7fffffff fb_add_videomode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_default_cmap +EXPORT_SYMBOL vmlinux 0x7fffffff fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_best_display +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0x7fffffff fb_get_options +EXPORT_SYMBOL vmlinux 0x7fffffff fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0x7fffffff fb_match_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0x7fffffff fb_pan_display +EXPORT_SYMBOL vmlinux 0x7fffffff fb_register_client +EXPORT_SYMBOL vmlinux 0x7fffffff fb_set_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff fb_show_logo +EXPORT_SYMBOL vmlinux 0x7fffffff fb_unregister_client +EXPORT_SYMBOL vmlinux 0x7fffffff fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7fffffff fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x7fffffff fc_mount +EXPORT_SYMBOL vmlinux 0x7fffffff fd_install +EXPORT_SYMBOL vmlinux 0x7fffffff fget +EXPORT_SYMBOL vmlinux 0x7fffffff fget_raw +EXPORT_SYMBOL vmlinux 0x7fffffff fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x7fffffff fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x7fffffff fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7fffffff file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x7fffffff file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x7fffffff file_path +EXPORT_SYMBOL vmlinux 0x7fffffff file_remove_privs +EXPORT_SYMBOL vmlinux 0x7fffffff file_update_time +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x7fffffff fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_release_folio +EXPORT_SYMBOL vmlinux 0x7fffffff filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x7fffffff filp_close +EXPORT_SYMBOL vmlinux 0x7fffffff finalize_exec +EXPORT_SYMBOL vmlinux 0x7fffffff find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x7fffffff find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff find_next_clump8 +EXPORT_SYMBOL vmlinux 0x7fffffff find_vma +EXPORT_SYMBOL vmlinux 0x7fffffff finish_swait +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x7fffffff flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x7fffffff flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x7fffffff flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x7fffffff flush_delayed_work +EXPORT_SYMBOL vmlinux 0x7fffffff flush_signals +EXPORT_SYMBOL vmlinux 0x7fffffff folio_add_lru +EXPORT_SYMBOL vmlinux 0x7fffffff folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x7fffffff folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x7fffffff folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x7fffffff folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff follow_down +EXPORT_SYMBOL vmlinux 0x7fffffff follow_down_one +EXPORT_SYMBOL vmlinux 0x7fffffff follow_pfn +EXPORT_SYMBOL vmlinux 0x7fffffff font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x7fffffff fortify_panic +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_exit +EXPORT_SYMBOL vmlinux 0x7fffffff fqdir_init +EXPORT_SYMBOL vmlinux 0x7fffffff framebuffer_release +EXPORT_SYMBOL vmlinux 0x7fffffff free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x7fffffff free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff free_netdev +EXPORT_SYMBOL vmlinux 0x7fffffff free_opal_dev +EXPORT_SYMBOL vmlinux 0x7fffffff free_task +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid +EXPORT_SYMBOL vmlinux 0x7fffffff from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x7fffffff from_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x7fffffff fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x7fffffff fs_lookup_param +EXPORT_SYMBOL vmlinux 0x7fffffff fs_overflowgid +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_path +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_string +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x7fffffff fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x7fffffff fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x7fffffff fsync_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff full_name_hash +EXPORT_SYMBOL vmlinux 0x7fffffff fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0x7fffffff gen_estimator_active +EXPORT_SYMBOL vmlinux 0x7fffffff gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff gen_new_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7fffffff gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7fffffff gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x7fffffff generate_random_guid +EXPORT_SYMBOL vmlinux 0x7fffffff generate_random_uuid +EXPORT_SYMBOL vmlinux 0x7fffffff generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7fffffff generic_check_addressable +EXPORT_SYMBOL vmlinux 0x7fffffff generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x7fffffff generic_copy_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff generic_delete_inode +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7fffffff generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7fffffff generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x7fffffff generic_listxattr +EXPORT_SYMBOL vmlinux 0x7fffffff generic_perform_write +EXPORT_SYMBOL vmlinux 0x7fffffff generic_permission +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x7fffffff generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x7fffffff generic_read_dir +EXPORT_SYMBOL vmlinux 0x7fffffff generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x7fffffff generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x7fffffff generic_setlease +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x7fffffff generic_write_end +EXPORT_SYMBOL vmlinux 0x7fffffff generic_writepages +EXPORT_SYMBOL vmlinux 0x7fffffff genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7fffffff genlmsg_put +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_loopback +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff genphy_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff get_acl +EXPORT_SYMBOL vmlinux 0x7fffffff get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x7fffffff get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff get_default_font +EXPORT_SYMBOL vmlinux 0x7fffffff get_fs_type +EXPORT_SYMBOL vmlinux 0x7fffffff get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x7fffffff get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x7fffffff get_next_ino +EXPORT_SYMBOL vmlinux 0x7fffffff get_option +EXPORT_SYMBOL vmlinux 0x7fffffff get_options +EXPORT_SYMBOL vmlinux 0x7fffffff get_phy_device +EXPORT_SYMBOL vmlinux 0x7fffffff get_random_u32 +EXPORT_SYMBOL vmlinux 0x7fffffff get_random_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff get_task_cred +EXPORT_SYMBOL vmlinux 0x7fffffff get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_keyed +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_nodev +EXPORT_SYMBOL vmlinux 0x7fffffff get_tree_single +EXPORT_SYMBOL vmlinux 0x7fffffff get_unmapped_area +EXPORT_SYMBOL vmlinux 0x7fffffff get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0x7fffffff get_user_pages +EXPORT_SYMBOL vmlinux 0x7fffffff get_zeroed_page +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x7fffffff gf128mul_lle +EXPORT_SYMBOL vmlinux 0x7fffffff gic_pmr_sync +EXPORT_SYMBOL vmlinux 0x7fffffff global_cursor_default +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x7fffffff gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x7fffffff gpmc_cs_request +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff gro_cells_receive +EXPORT_SYMBOL vmlinux 0x7fffffff gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7fffffff groups_sort +EXPORT_SYMBOL vmlinux 0x7fffffff guid_null +EXPORT_SYMBOL vmlinux 0x7fffffff guid_parse +EXPORT_SYMBOL vmlinux 0x7fffffff handle_edge_irq +EXPORT_SYMBOL vmlinux 0x7fffffff has_capability +EXPORT_SYMBOL vmlinux 0x7fffffff has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x7fffffff hchacha_block_generic +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x7fffffff hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x7fffffff hex_asc_upper +EXPORT_SYMBOL vmlinux 0x7fffffff hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff hex_to_bin +EXPORT_SYMBOL vmlinux 0x7fffffff high_memory +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x7fffffff hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7fffffff i2c_transfer +EXPORT_SYMBOL vmlinux 0x7fffffff icmp6_send +EXPORT_SYMBOL vmlinux 0x7fffffff icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x7fffffff icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x7fffffff icst_hz +EXPORT_SYMBOL vmlinux 0x7fffffff icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0x7fffffff ida_alloc_range +EXPORT_SYMBOL vmlinux 0x7fffffff ida_free +EXPORT_SYMBOL vmlinux 0x7fffffff idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x7fffffff idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x7fffffff idr_preload +EXPORT_SYMBOL vmlinux 0x7fffffff iget_failed +EXPORT_SYMBOL vmlinux 0x7fffffff iget_locked +EXPORT_SYMBOL vmlinux 0x7fffffff ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup5 +EXPORT_SYMBOL vmlinux 0x7fffffff ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x7fffffff imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x7fffffff imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0x7fffffff imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x7fffffff imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0x7fffffff imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0x7fffffff in4_pton +EXPORT_SYMBOL vmlinux 0x7fffffff in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0x7fffffff in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0x7fffffff in_group_p +EXPORT_SYMBOL vmlinux 0x7fffffff inc_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_add_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_bind +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_del_offload +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_getname +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_offloads +EXPORT_SYMBOL vmlinux 0x7fffffff inet6_release +EXPORT_SYMBOL vmlinux 0x7fffffff inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7fffffff inet_add_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff inet_addr_is_any +EXPORT_SYMBOL vmlinux 0x7fffffff inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7fffffff inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7fffffff inet_current_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7fffffff inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_find +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_kill +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x7fffffff inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x7fffffff inet_listen +EXPORT_SYMBOL vmlinux 0x7fffffff inet_offloads +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7fffffff inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7fffffff inet_put_port +EXPORT_SYMBOL vmlinux 0x7fffffff inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x7fffffff inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7fffffff inet_release +EXPORT_SYMBOL vmlinux 0x7fffffff inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x7fffffff inet_select_addr +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sendpage +EXPORT_SYMBOL vmlinux 0x7fffffff inet_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7fffffff inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7fffffff inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7fffffff inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x7fffffff init_cdrom_command +EXPORT_SYMBOL vmlinux 0x7fffffff init_on_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff init_on_free +EXPORT_SYMBOL vmlinux 0x7fffffff init_special_inode +EXPORT_SYMBOL vmlinux 0x7fffffff init_timer_key +EXPORT_SYMBOL vmlinux 0x7fffffff init_wait_entry +EXPORT_SYMBOL vmlinux 0x7fffffff inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_dio_wait +EXPORT_SYMBOL vmlinux 0x7fffffff inode_get_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7fffffff inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7fffffff inode_permission +EXPORT_SYMBOL vmlinux 0x7fffffff inode_set_flags +EXPORT_SYMBOL vmlinux 0x7fffffff inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7fffffff inode_update_time +EXPORT_SYMBOL vmlinux 0x7fffffff input_allocate_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_copy_abs +EXPORT_SYMBOL vmlinux 0x7fffffff input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_keycode +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_new_minor +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff input_get_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff input_grab_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7fffffff input_match_device_id +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x7fffffff input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x7fffffff input_open_device +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_abs_params +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x7fffffff insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x7fffffff int_sqrt +EXPORT_SYMBOL vmlinux 0x7fffffff io_schedule +EXPORT_SYMBOL vmlinux 0x7fffffff io_schedule_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7fffffff ioport_resource +EXPORT_SYMBOL vmlinux 0x7fffffff ioport_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff ioremap_page +EXPORT_SYMBOL vmlinux 0x7fffffff ioremap_wc +EXPORT_SYMBOL vmlinux 0x7fffffff iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_init +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x7fffffff iov_iter_zero +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_frag_next +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_output +EXPORT_SYMBOL vmlinux 0x7fffffff ip6_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x7fffffff ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0x7fffffff ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x7fffffff ip_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x7fffffff ip_options_compile +EXPORT_SYMBOL vmlinux 0x7fffffff ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x7fffffff ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x7fffffff ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x7fffffff ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x7fffffff ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x7fffffff ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x7fffffff ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0x7fffffff ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x7fffffff ipv4_specific +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x7fffffff ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x7fffffff irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_complete +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_enable +EXPORT_SYMBOL vmlinux 0x7fffffff irq_poll_init +EXPORT_SYMBOL vmlinux 0x7fffffff irq_set_chip +EXPORT_SYMBOL vmlinux 0x7fffffff irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0x7fffffff irq_stat +EXPORT_SYMBOL vmlinux 0x7fffffff is_console_locked +EXPORT_SYMBOL vmlinux 0x7fffffff is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x7fffffff is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0x7fffffff is_nd_btt +EXPORT_SYMBOL vmlinux 0x7fffffff is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0x7fffffff isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0x7fffffff iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x7fffffff iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x7fffffff iterate_dir +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x7fffffff iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x7fffffff iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x7fffffff jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0x7fffffff jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0x7fffffff kasprintf +EXPORT_SYMBOL vmlinux 0x7fffffff kern_path +EXPORT_SYMBOL vmlinux 0x7fffffff kern_path_create +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_bind +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_connect +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_cpustat +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_listen +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_neon_end +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x7fffffff kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff key_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x7fffffff key_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff key_move +EXPORT_SYMBOL vmlinux 0x7fffffff key_put +EXPORT_SYMBOL vmlinux 0x7fffffff key_revoke +EXPORT_SYMBOL vmlinux 0x7fffffff key_task_permission +EXPORT_SYMBOL vmlinux 0x7fffffff key_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff key_update +EXPORT_SYMBOL vmlinux 0x7fffffff key_validate +EXPORT_SYMBOL vmlinux 0x7fffffff keyring_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff keyring_clear +EXPORT_SYMBOL vmlinux 0x7fffffff keyring_restrict +EXPORT_SYMBOL vmlinux 0x7fffffff keyring_search +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_const +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_link +EXPORT_SYMBOL vmlinux 0x7fffffff kfree_sensitive +EXPORT_SYMBOL vmlinux 0x7fffffff kill_anon_super +EXPORT_SYMBOL vmlinux 0x7fffffff kill_fasync +EXPORT_SYMBOL vmlinux 0x7fffffff kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x7fffffff kmalloc_caches +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x7fffffff kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_add +EXPORT_SYMBOL vmlinux 0x7fffffff kobject_get +EXPORT_SYMBOL vmlinux 0x7fffffff krait_set_l2_indirect_reg +EXPORT_SYMBOL vmlinux 0x7fffffff kset_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff ksize +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoint +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos16 +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_create_worker +EXPORT_SYMBOL vmlinux 0x7fffffff kthread_should_stop +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x7fffffff kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7fffffff kvmalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff kvrealloc +EXPORT_SYMBOL vmlinux 0x7fffffff lease_modify +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_cpu +EXPORT_SYMBOL vmlinux 0x7fffffff ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x7fffffff list_sort +EXPORT_SYMBOL vmlinux 0x7fffffff load_nls_default +EXPORT_SYMBOL vmlinux 0x7fffffff lock_sock_nested +EXPORT_SYMBOL vmlinux 0x7fffffff lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_get +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x7fffffff lockref_put_return +EXPORT_SYMBOL vmlinux 0x7fffffff locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_delete_block +EXPORT_SYMBOL vmlinux 0x7fffffff locks_free_lock +EXPORT_SYMBOL vmlinux 0x7fffffff locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7fffffff logfc +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_constant +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_len +EXPORT_SYMBOL vmlinux 0x7fffffff lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x7fffffff lru_cache_add +EXPORT_SYMBOL vmlinux 0x7fffffff make_bad_inode +EXPORT_SYMBOL vmlinux 0x7fffffff make_kprojid +EXPORT_SYMBOL vmlinux 0x7fffffff make_kuid +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x7fffffff mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff mark_info_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7fffffff match_hex +EXPORT_SYMBOL vmlinux 0x7fffffff match_octal +EXPORT_SYMBOL vmlinux 0x7fffffff match_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff match_string +EXPORT_SYMBOL vmlinux 0x7fffffff match_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff match_uint +EXPORT_SYMBOL vmlinux 0x7fffffff max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_read_reg +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_update_reg +EXPORT_SYMBOL vmlinux 0x7fffffff max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7fffffff may_umount +EXPORT_SYMBOL vmlinux 0x7fffffff may_umount_tree +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_create +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x7fffffff md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x7fffffff md_check_recovery +EXPORT_SYMBOL vmlinux 0x7fffffff md_finish_reshape +EXPORT_SYMBOL vmlinux 0x7fffffff md_flush_request +EXPORT_SYMBOL vmlinux 0x7fffffff md_handle_request +EXPORT_SYMBOL vmlinux 0x7fffffff md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x7fffffff md_write_inc +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_device_remove +EXPORT_SYMBOL vmlinux 0x7fffffff mdio_driver_register +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_read +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobb_write +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_read +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x7fffffff mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff mem_map +EXPORT_SYMBOL vmlinux 0x7fffffff memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x7fffffff memchr +EXPORT_SYMBOL vmlinux 0x7fffffff memcpy +EXPORT_SYMBOL vmlinux 0x7fffffff memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x7fffffff memdup_user +EXPORT_SYMBOL vmlinux 0x7fffffff memdup_user_nul +EXPORT_SYMBOL vmlinux 0x7fffffff memmove +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_create +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_exit +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_free_slab +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_init +EXPORT_SYMBOL vmlinux 0x7fffffff mempool_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff memregion_free +EXPORT_SYMBOL vmlinux 0x7fffffff memremap +EXPORT_SYMBOL vmlinux 0x7fffffff memset16 +EXPORT_SYMBOL vmlinux 0x7fffffff memunmap +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x7fffffff mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x7fffffff migrate_page_states +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x7fffffff mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7fffffff mii_link_ok +EXPORT_SYMBOL vmlinux 0x7fffffff mii_nway_restart +EXPORT_SYMBOL vmlinux 0x7fffffff mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x7fffffff mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x7fffffff minmax_running_max +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x7fffffff mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_command_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_erase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_get_card +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_put_card +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_request_done +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_start_request +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x7fffffff mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x7fffffff mntget +EXPORT_SYMBOL vmlinux 0x7fffffff mod_timer +EXPORT_SYMBOL vmlinux 0x7fffffff mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7fffffff module_refcount +EXPORT_SYMBOL vmlinux 0x7fffffff mount_bdev +EXPORT_SYMBOL vmlinux 0x7fffffff mount_single +EXPORT_SYMBOL vmlinux 0x7fffffff movable_zone +EXPORT_SYMBOL vmlinux 0x7fffffff mpage_read_folio +EXPORT_SYMBOL vmlinux 0x7fffffff mpage_writepages +EXPORT_SYMBOL vmlinux 0x7fffffff mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x7fffffff mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x7fffffff mr_table_dump +EXPORT_SYMBOL vmlinux 0x7fffffff mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff msleep +EXPORT_SYMBOL vmlinux 0x7fffffff msleep_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x7fffffff msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_is_locked +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x7fffffff mutex_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff mx51_revision +EXPORT_SYMBOL vmlinux 0x7fffffff mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x7fffffff nand_create_bbt +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_get_sw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_prepare_io_req +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL vmlinux 0x7fffffff nand_monolithic_read_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff nand_monolithic_write_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff nand_read_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff nand_scan_with_ids +EXPORT_SYMBOL vmlinux 0x7fffffff nand_write_oob_std +EXPORT_SYMBOL vmlinux 0x7fffffff nand_write_page_raw +EXPORT_SYMBOL vmlinux 0x7fffffff napi_enable +EXPORT_SYMBOL vmlinux 0x7fffffff napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x7fffffff nd_btt_version +EXPORT_SYMBOL vmlinux 0x7fffffff nd_device_notify +EXPORT_SYMBOL vmlinux 0x7fffffff nd_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff nd_device_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff nd_integrity_init +EXPORT_SYMBOL vmlinux 0x7fffffff nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x7fffffff nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7fffffff nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x7fffffff ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x7fffffff ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_connected_output +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_ifdown +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x7fffffff neigh_table_init +EXPORT_SYMBOL vmlinux 0x7fffffff net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x7fffffff net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x7fffffff net_ns_barrier +EXPORT_SYMBOL vmlinux 0x7fffffff net_ratelimit +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_change_features +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_crit +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_emerg +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_notice +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_printk +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff netdev_warn +EXPORT_SYMBOL vmlinux 0x7fffffff netif_carrier_off +EXPORT_SYMBOL vmlinux 0x7fffffff netif_device_detach +EXPORT_SYMBOL vmlinux 0x7fffffff netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x7fffffff netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x7fffffff netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x7fffffff netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x7fffffff netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x7fffffff netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff netlbl_audit_start +EXPORT_SYMBOL vmlinux 0x7fffffff netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_ack +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_set_err +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unicast +EXPORT_SYMBOL vmlinux 0x7fffffff netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_print_options +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x7fffffff netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7fffffff netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x7fffffff new_inode +EXPORT_SYMBOL vmlinux 0x7fffffff next_arg +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x7fffffff nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x7fffffff nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7fffffff nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x7fffffff nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7fffffff nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7fffffff nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x7fffffff nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x7fffffff nla_append +EXPORT_SYMBOL vmlinux 0x7fffffff nla_find +EXPORT_SYMBOL vmlinux 0x7fffffff nla_memcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_memcpy +EXPORT_SYMBOL vmlinux 0x7fffffff nla_policy_len +EXPORT_SYMBOL vmlinux 0x7fffffff nla_put_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff nla_strdup +EXPORT_SYMBOL vmlinux 0x7fffffff nmi_panic +EXPORT_SYMBOL vmlinux 0x7fffffff no_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x7fffffff nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x7fffffff nobh_writepage +EXPORT_SYMBOL vmlinux 0x7fffffff node_states +EXPORT_SYMBOL vmlinux 0x7fffffff nonseekable_open +EXPORT_SYMBOL vmlinux 0x7fffffff noop_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff noop_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff notify_change +EXPORT_SYMBOL vmlinux 0x7fffffff ns_capable_setid +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x7fffffff nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x7fffffff of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x7fffffff of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x7fffffff of_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x7fffffff of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_min_tck +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_child +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_next_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_get_property +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x7fffffff of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7fffffff of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x7fffffff of_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr2_get_info +EXPORT_SYMBOL vmlinux 0x7fffffff of_lpddr3_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x7fffffff of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7fffffff of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_get +EXPORT_SYMBOL vmlinux 0x7fffffff of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x7fffffff of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x7fffffff of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_find_device +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7fffffff omap_rev +EXPORT_SYMBOL vmlinux 0x7fffffff omap_type +EXPORT_SYMBOL vmlinux 0x7fffffff on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x7fffffff oops_in_progress +EXPORT_SYMBOL vmlinux 0x7fffffff open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7fffffff out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x7fffffff overflowuid +EXPORT_SYMBOL vmlinux 0x7fffffff padata_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7fffffff padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7fffffff padata_do_serial +EXPORT_SYMBOL vmlinux 0x7fffffff padata_free +EXPORT_SYMBOL vmlinux 0x7fffffff padata_free_shell +EXPORT_SYMBOL vmlinux 0x7fffffff padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x7fffffff page_address +EXPORT_SYMBOL vmlinux 0x7fffffff page_frag_free +EXPORT_SYMBOL vmlinux 0x7fffffff page_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff page_mapping +EXPORT_SYMBOL vmlinux 0x7fffffff page_offline_end +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_create +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_release_page +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x7fffffff page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x7fffffff page_readlink +EXPORT_SYMBOL vmlinux 0x7fffffff page_symlink +EXPORT_SYMBOL vmlinux 0x7fffffff page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7fffffff page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x7fffffff pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x7fffffff panic +EXPORT_SYMBOL vmlinux 0x7fffffff panic_notifier_list +EXPORT_SYMBOL vmlinux 0x7fffffff param_array_ops +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_int +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_short +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_string +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ulong +EXPORT_SYMBOL vmlinux 0x7fffffff param_get_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_bint +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_byte +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_ops_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_bint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_bool +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_charp +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_hexint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_invbool +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_long +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_short +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_uint +EXPORT_SYMBOL vmlinux 0x7fffffff param_set_ushort +EXPORT_SYMBOL vmlinux 0x7fffffff passthru_features_check +EXPORT_SYMBOL vmlinux 0x7fffffff path_has_submounts +EXPORT_SYMBOL vmlinux 0x7fffffff path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x7fffffff path_is_under +EXPORT_SYMBOL vmlinux 0x7fffffff pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_type +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pci_choose_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_clear_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_dev_get +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msi +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7fffffff pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7fffffff pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x7fffffff pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_capability +EXPORT_SYMBOL vmlinux 0x7fffffff pci_find_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq +EXPORT_SYMBOL vmlinux 0x7fffffff pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_slot +EXPORT_SYMBOL vmlinux 0x7fffffff pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7fffffff pci_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x7fffffff pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x7fffffff pci_pci_problems +EXPORT_SYMBOL vmlinux 0x7fffffff pci_pme_active +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7fffffff pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x7fffffff pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x7fffffff pci_save_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x7fffffff pci_scan_slot +EXPORT_SYMBOL vmlinux 0x7fffffff pci_select_bars +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_master +EXPORT_SYMBOL vmlinux 0x7fffffff pci_set_power_state +EXPORT_SYMBOL vmlinux 0x7fffffff pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x7fffffff pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7fffffff pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x7fffffff pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_get_mps +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7fffffff pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_enable_device +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iomap +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7fffffff pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x7fffffff pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x7fffffff percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x7fffffff pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_kernel +EXPORT_SYMBOL vmlinux 0x7fffffff pgprot_user +EXPORT_SYMBOL vmlinux 0x7fffffff phy_aneg_done +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attach_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attached_info +EXPORT_SYMBOL vmlinux 0x7fffffff phy_attached_print +EXPORT_SYMBOL vmlinux 0x7fffffff phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7fffffff phy_detach +EXPORT_SYMBOL vmlinux 0x7fffffff phy_device_create +EXPORT_SYMBOL vmlinux 0x7fffffff phy_device_register +EXPORT_SYMBOL vmlinux 0x7fffffff phy_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x7fffffff phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff phy_error +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x7fffffff phy_get_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_init_eee +EXPORT_SYMBOL vmlinux 0x7fffffff phy_init_hw +EXPORT_SYMBOL vmlinux 0x7fffffff phy_loopback +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x7fffffff phy_modify_paged +EXPORT_SYMBOL vmlinux 0x7fffffff phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x7fffffff phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7fffffff phy_sfp_detach +EXPORT_SYMBOL vmlinux 0x7fffffff phy_start +EXPORT_SYMBOL vmlinux 0x7fffffff phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7fffffff phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x7fffffff phy_stop +EXPORT_SYMBOL vmlinux 0x7fffffff phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7fffffff phy_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0x7fffffff phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7fffffff phy_write_paged +EXPORT_SYMBOL vmlinux 0x7fffffff pid_task +EXPORT_SYMBOL vmlinux 0x7fffffff pin_user_pages +EXPORT_SYMBOL vmlinux 0x7fffffff ping_prot +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_lock +EXPORT_SYMBOL vmlinux 0x7fffffff pipe_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x7fffffff pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x7fffffff pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7fffffff pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7fffffff pmem_sector_size +EXPORT_SYMBOL vmlinux 0x7fffffff pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_init +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x7fffffff posix_acl_valid +EXPORT_SYMBOL vmlinux 0x7fffffff posix_lock_file +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_channel_index +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_dev_name +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_input +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x7fffffff ppp_unit_number +EXPORT_SYMBOL vmlinux 0x7fffffff pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x7fffffff pr_flush +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x7fffffff prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_off +EXPORT_SYMBOL vmlinux 0x7fffffff probe_irq_on +EXPORT_SYMBOL vmlinux 0x7fffffff proc_create +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dobool +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dointvec +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff proc_dostring +EXPORT_SYMBOL vmlinux 0x7fffffff proc_douintvec +EXPORT_SYMBOL vmlinux 0x7fffffff proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x7fffffff proc_remove +EXPORT_SYMBOL vmlinux 0x7fffffff proc_set_user +EXPORT_SYMBOL vmlinux 0x7fffffff proc_symlink +EXPORT_SYMBOL vmlinux 0x7fffffff profile_pc +EXPORT_SYMBOL vmlinux 0x7fffffff proto_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_begin_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_drain +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_end_command +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x7fffffff ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x7fffffff pskb_extract +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_event +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_index +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_clock_register +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_find_pin +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0x7fffffff ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x7fffffff put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x7fffffff put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x7fffffff put_ipc_ns +EXPORT_SYMBOL vmlinux 0x7fffffff put_pages_list +EXPORT_SYMBOL vmlinux 0x7fffffff put_watch_queue +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_dcvsh_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_ocmem_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x7fffffff qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_put +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_reset +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x7fffffff qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x7fffffff qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0x7fffffff qe_put_snum +EXPORT_SYMBOL vmlinux 0x7fffffff qid_eq +EXPORT_SYMBOL vmlinux 0x7fffffff qid_valid +EXPORT_SYMBOL vmlinux 0x7fffffff queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x7fffffff queue_rcu_work +EXPORT_SYMBOL vmlinux 0x7fffffff queue_work_on +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x7fffffff radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7fffffff ram_aops +EXPORT_SYMBOL vmlinux 0x7fffffff rational_best_approximation +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_bch_correct +EXPORT_SYMBOL vmlinux 0x7fffffff rawnand_sw_hamming_correct +EXPORT_SYMBOL vmlinux 0x7fffffff rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x7fffffff rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff rb_first +EXPORT_SYMBOL vmlinux 0x7fffffff rb_first_postorder +EXPORT_SYMBOL vmlinux 0x7fffffff rb_insert_color +EXPORT_SYMBOL vmlinux 0x7fffffff rb_last +EXPORT_SYMBOL vmlinux 0x7fffffff rb_next +EXPORT_SYMBOL vmlinux 0x7fffffff rb_prev +EXPORT_SYMBOL vmlinux 0x7fffffff rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x7fffffff rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x7fffffff read_cache_folio +EXPORT_SYMBOL vmlinux 0x7fffffff read_cache_page +EXPORT_SYMBOL vmlinux 0x7fffffff read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x7fffffff readahead_expand +EXPORT_SYMBOL vmlinux 0x7fffffff recalc_sigpending +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value +EXPORT_SYMBOL vmlinux 0x7fffffff reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0x7fffffff redraw_screen +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0x7fffffff refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0x7fffffff register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_cdrom +EXPORT_SYMBOL vmlinux 0x7fffffff register_console +EXPORT_SYMBOL vmlinux 0x7fffffff register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_fib_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_module_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7fffffff register_qdisc +EXPORT_SYMBOL vmlinux 0x7fffffff register_quota_format +EXPORT_SYMBOL vmlinux 0x7fffffff register_restart_handler +EXPORT_SYMBOL vmlinux 0x7fffffff register_shrinker +EXPORT_SYMBOL vmlinux 0x7fffffff register_sound_special_device +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysctl_table +EXPORT_SYMBOL vmlinux 0x7fffffff register_sysrq_key +EXPORT_SYMBOL vmlinux 0x7fffffff regset_get +EXPORT_SYMBOL vmlinux 0x7fffffff regset_get_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff release_and_free_resource +EXPORT_SYMBOL vmlinux 0x7fffffff release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7fffffff release_fiq +EXPORT_SYMBOL vmlinux 0x7fffffff release_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff release_resource +EXPORT_SYMBOL vmlinux 0x7fffffff release_sock +EXPORT_SYMBOL vmlinux 0x7fffffff remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7fffffff remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x7fffffff remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x7fffffff remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7fffffff remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x7fffffff remove_wait_queue +EXPORT_SYMBOL vmlinux 0x7fffffff rename_lock +EXPORT_SYMBOL vmlinux 0x7fffffff request_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x7fffffff request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7fffffff request_key_tag +EXPORT_SYMBOL vmlinux 0x7fffffff request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7fffffff request_threaded_irq +EXPORT_SYMBOL vmlinux 0x7fffffff reservation_ww_class +EXPORT_SYMBOL vmlinux 0x7fffffff reset_devices +EXPORT_SYMBOL vmlinux 0x7fffffff resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x7fffffff reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_blocked +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_register +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_states +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x7fffffff rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0x7fffffff rfs_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_invalidate +EXPORT_SYMBOL vmlinux 0x7fffffff rpmh_write +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_del +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_put +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff rps_needed +EXPORT_SYMBOL vmlinux 0x7fffffff rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x7fffffff rt6_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff rt_dst_clone +EXPORT_SYMBOL vmlinux 0x7fffffff rtc_add_groups +EXPORT_SYMBOL vmlinux 0x7fffffff rtc_lock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_create_link +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_lock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_trylock +EXPORT_SYMBOL vmlinux 0x7fffffff rtnl_unicast +EXPORT_SYMBOL vmlinux 0x7fffffff rw_verify_area +EXPORT_SYMBOL vmlinux 0x7fffffff save_stack_trace_tsk +EXPORT_SYMBOL vmlinux 0x7fffffff sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff schedule_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7fffffff scmd_printk +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_add_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_block_requests +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_resume +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dma_map +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_done +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_get +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_host_put +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_logging_level +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_partsize +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_command +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_scan_target +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x7fffffff scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x7fffffff scsilun_to_int +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7fffffff sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7fffffff secpath_set +EXPORT_SYMBOL vmlinux 0x7fffffff secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x7fffffff secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x7fffffff security_binder_transaction +EXPORT_SYMBOL vmlinux 0x7fffffff security_d_instantiate +EXPORT_SYMBOL vmlinux 0x7fffffff security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x7fffffff security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x7fffffff security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x7fffffff security_ismaclabel +EXPORT_SYMBOL vmlinux 0x7fffffff security_locked_down +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_remount +EXPORT_SYMBOL vmlinux 0x7fffffff security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x7fffffff security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7fffffff security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x7fffffff security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x7fffffff security_sock_graft +EXPORT_SYMBOL vmlinux 0x7fffffff security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x7fffffff security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x7fffffff security_tun_dev_open +EXPORT_SYMBOL vmlinux 0x7fffffff security_unix_may_send +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x7fffffff seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x7fffffff send_sig_info +EXPORT_SYMBOL vmlinux 0x7fffffff send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x7fffffff seq_bprintf +EXPORT_SYMBOL vmlinux 0x7fffffff seq_escape_mem +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_next +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_start +EXPORT_SYMBOL vmlinux 0x7fffffff seq_list_start_head +EXPORT_SYMBOL vmlinux 0x7fffffff seq_open_private +EXPORT_SYMBOL vmlinux 0x7fffffff seq_pad +EXPORT_SYMBOL vmlinux 0x7fffffff seq_path +EXPORT_SYMBOL vmlinux 0x7fffffff seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x7fffffff seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7fffffff seq_read +EXPORT_SYMBOL vmlinux 0x7fffffff seq_write +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_resume_port +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0x7fffffff serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0x7fffffff serio_bus +EXPORT_SYMBOL vmlinux 0x7fffffff serio_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x7fffffff set_blocksize +EXPORT_SYMBOL vmlinux 0x7fffffff set_capacity +EXPORT_SYMBOL vmlinux 0x7fffffff set_create_files_as +EXPORT_SYMBOL vmlinux 0x7fffffff set_current_groups +EXPORT_SYMBOL vmlinux 0x7fffffff set_freezable +EXPORT_SYMBOL vmlinux 0x7fffffff set_groups +EXPORT_SYMBOL vmlinux 0x7fffffff set_nlink +EXPORT_SYMBOL vmlinux 0x7fffffff set_page_dirty +EXPORT_SYMBOL vmlinux 0x7fffffff setattr_prepare +EXPORT_SYMBOL vmlinux 0x7fffffff setup_new_exec +EXPORT_SYMBOL vmlinux 0x7fffffff sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff sg_free_append_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_init_one +EXPORT_SYMBOL vmlinux 0x7fffffff sg_init_table +EXPORT_SYMBOL vmlinux 0x7fffffff sg_last +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_skip +EXPORT_SYMBOL vmlinux 0x7fffffff sg_miter_stop +EXPORT_SYMBOL vmlinux 0x7fffffff sg_next +EXPORT_SYMBOL vmlinux 0x7fffffff sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff sget +EXPORT_SYMBOL vmlinux 0x7fffffff sget_fc +EXPORT_SYMBOL vmlinux 0x7fffffff sgl_alloc_order +EXPORT_SYMBOL vmlinux 0x7fffffff sgl_free +EXPORT_SYMBOL vmlinux 0x7fffffff sha224_final +EXPORT_SYMBOL vmlinux 0x7fffffff sha224_update +EXPORT_SYMBOL vmlinux 0x7fffffff sha256 +EXPORT_SYMBOL vmlinux 0x7fffffff should_remove_suid +EXPORT_SYMBOL vmlinux 0x7fffffff shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7fffffff simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_empty +EXPORT_SYMBOL vmlinux 0x7fffffff simple_get_link +EXPORT_SYMBOL vmlinux 0x7fffffff simple_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7fffffff simple_open +EXPORT_SYMBOL vmlinux 0x7fffffff simple_rmdir +EXPORT_SYMBOL vmlinux 0x7fffffff simple_statfs +EXPORT_SYMBOL vmlinux 0x7fffffff simple_strtoll +EXPORT_SYMBOL vmlinux 0x7fffffff simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_get +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_read +EXPORT_SYMBOL vmlinux 0x7fffffff simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7fffffff single_open +EXPORT_SYMBOL vmlinux 0x7fffffff single_open_size +EXPORT_SYMBOL vmlinux 0x7fffffff single_release +EXPORT_SYMBOL vmlinux 0x7fffffff siphash_3u32 +EXPORT_SYMBOL vmlinux 0x7fffffff siphash_3u64 +EXPORT_SYMBOL vmlinux 0x7fffffff sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0x7fffffff sk_capable +EXPORT_SYMBOL vmlinux 0x7fffffff sk_common_release +EXPORT_SYMBOL vmlinux 0x7fffffff sk_dst_check +EXPORT_SYMBOL vmlinux 0x7fffffff sk_error_report +EXPORT_SYMBOL vmlinux 0x7fffffff sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x7fffffff sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7fffffff sk_net_capable +EXPORT_SYMBOL vmlinux 0x7fffffff sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7fffffff sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7fffffff sk_reset_timer +EXPORT_SYMBOL vmlinux 0x7fffffff sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_error +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7fffffff sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7fffffff skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7fffffff skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x7fffffff skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_bits +EXPORT_SYMBOL vmlinux 0x7fffffff skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x7fffffff skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x7fffffff skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x7fffffff skb_eth_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x7fffffff skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x7fffffff skb_free_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x7fffffff skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x7fffffff skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x7fffffff skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x7fffffff skb_pull_data +EXPORT_SYMBOL vmlinux 0x7fffffff skb_push +EXPORT_SYMBOL vmlinux 0x7fffffff skb_put +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_head +EXPORT_SYMBOL vmlinux 0x7fffffff skb_queue_tail +EXPORT_SYMBOL vmlinux 0x7fffffff skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x7fffffff skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7fffffff skb_split +EXPORT_SYMBOL vmlinux 0x7fffffff skb_store_bits +EXPORT_SYMBOL vmlinux 0x7fffffff skb_trim +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x7fffffff skb_tx_error +EXPORT_SYMBOL vmlinux 0x7fffffff skb_unlink +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7fffffff skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x7fffffff skip_spaces +EXPORT_SYMBOL vmlinux 0x7fffffff slash_name +EXPORT_SYMBOL vmlinux 0x7fffffff slhc_compress +EXPORT_SYMBOL vmlinux 0x7fffffff slhc_uncompress +EXPORT_SYMBOL vmlinux 0x7fffffff smp_call_function +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_card_set_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_compr_malloc_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_notify_one +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x7fffffff snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x7fffffff snd_device_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x7fffffff snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_get_str +EXPORT_SYMBOL vmlinux 0x7fffffff snd_info_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_interval_list +EXPORT_SYMBOL vmlinux 0x7fffffff snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_jack_report +EXPORT_SYMBOL vmlinux 0x7fffffff snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0x7fffffff snd_major +EXPORT_SYMBOL vmlinux 0x7fffffff snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_limit_rates +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x7fffffff snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x7fffffff snd_power_wait +EXPORT_SYMBOL vmlinux 0x7fffffff snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_seq_root +EXPORT_SYMBOL vmlinux 0x7fffffff snd_soc_alloc_ac97_component +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_close +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_continue +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_global_register +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_instance_free +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_pause +EXPORT_SYMBOL vmlinux 0x7fffffff snd_timer_stop +EXPORT_SYMBOL vmlinux 0x7fffffff snd_unregister_device +EXPORT_SYMBOL vmlinux 0x7fffffff snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x7fffffff snprintf +EXPORT_SYMBOL vmlinux 0x7fffffff sock_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create_kern +EXPORT_SYMBOL vmlinux 0x7fffffff sock_create_lite +EXPORT_SYMBOL vmlinux 0x7fffffff sock_edemux +EXPORT_SYMBOL vmlinux 0x7fffffff sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x7fffffff sock_from_file +EXPORT_SYMBOL vmlinux 0x7fffffff sock_get_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff sock_gettstamp +EXPORT_SYMBOL vmlinux 0x7fffffff sock_i_ino +EXPORT_SYMBOL vmlinux 0x7fffffff sock_i_uid +EXPORT_SYMBOL vmlinux 0x7fffffff sock_init_data +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kfree_s +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x7fffffff sock_load_diag_module +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_bind +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_getname +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_linger +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_listen +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7fffffff sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7fffffff sock_pfree +EXPORT_SYMBOL vmlinux 0x7fffffff sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x7fffffff sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_release +EXPORT_SYMBOL vmlinux 0x7fffffff sock_rfree +EXPORT_SYMBOL vmlinux 0x7fffffff sock_sendmsg +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_mark +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_priority +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x7fffffff sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x7fffffff sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff sock_wmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff sockfd_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff sort +EXPORT_SYMBOL vmlinux 0x7fffffff sort_r +EXPORT_SYMBOL vmlinux 0x7fffffff sound_class +EXPORT_SYMBOL vmlinux 0x7fffffff sscanf +EXPORT_SYMBOL vmlinux 0x7fffffff starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7fffffff stmp_reset_block +EXPORT_SYMBOL vmlinux 0x7fffffff stop_tty +EXPORT_SYMBOL vmlinux 0x7fffffff stpcpy +EXPORT_SYMBOL vmlinux 0x7fffffff strcasecmp +EXPORT_SYMBOL vmlinux 0x7fffffff strchrnul +EXPORT_SYMBOL vmlinux 0x7fffffff strcmp +EXPORT_SYMBOL vmlinux 0x7fffffff strcpy +EXPORT_SYMBOL vmlinux 0x7fffffff stream_open +EXPORT_SYMBOL vmlinux 0x7fffffff string_escape_mem +EXPORT_SYMBOL vmlinux 0x7fffffff string_unescape +EXPORT_SYMBOL vmlinux 0x7fffffff strlcat +EXPORT_SYMBOL vmlinux 0x7fffffff strlen +EXPORT_SYMBOL vmlinux 0x7fffffff strncat +EXPORT_SYMBOL vmlinux 0x7fffffff strncmp +EXPORT_SYMBOL vmlinux 0x7fffffff strnlen +EXPORT_SYMBOL vmlinux 0x7fffffff strnlen_user +EXPORT_SYMBOL vmlinux 0x7fffffff strpbrk +EXPORT_SYMBOL vmlinux 0x7fffffff strrchr +EXPORT_SYMBOL vmlinux 0x7fffffff strscpy_pad +EXPORT_SYMBOL vmlinux 0x7fffffff strsep +EXPORT_SYMBOL vmlinux 0x7fffffff strspn +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bh +EXPORT_SYMBOL vmlinux 0x7fffffff submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7fffffff super_setup_bdi +EXPORT_SYMBOL vmlinux 0x7fffffff swake_up_all +EXPORT_SYMBOL vmlinux 0x7fffffff swake_up_one +EXPORT_SYMBOL vmlinux 0x7fffffff sync_blockdev +EXPORT_SYMBOL vmlinux 0x7fffffff sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x7fffffff sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x7fffffff synchronize_irq +EXPORT_SYMBOL vmlinux 0x7fffffff synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0x7fffffff sys_tz +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_vals +EXPORT_SYMBOL vmlinux 0x7fffffff sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0x7fffffff sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x7fffffff system_rev +EXPORT_SYMBOL vmlinux 0x7fffffff system_serial +EXPORT_SYMBOL vmlinux 0x7fffffff system_serial_high +EXPORT_SYMBOL vmlinux 0x7fffffff system_state +EXPORT_SYMBOL vmlinux 0x7fffffff take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x7fffffff tasklet_setup +EXPORT_SYMBOL vmlinux 0x7fffffff tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0x7fffffff tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x7fffffff tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x7fffffff tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_get +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_classify +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_register +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_idr_release +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_queue_work +EXPORT_SYMBOL vmlinux 0x7fffffff tcf_register_action +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_child_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_prot +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_req_err +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_deassert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0x7fffffff tegra114_clock_tune_cpu_trimmers_low +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x7fffffff tegra_sku_info +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_register +EXPORT_SYMBOL vmlinux 0x7fffffff textsearch_unregister +EXPORT_SYMBOL vmlinux 0x7fffffff thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x7fffffff timer_reduce +EXPORT_SYMBOL vmlinux 0x7fffffff timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x7fffffff tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0x7fffffff tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x7fffffff to_ndd +EXPORT_SYMBOL vmlinux 0x7fffffff touch_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x7fffffff touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x7fffffff touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0x7fffffff trace_event_printf +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_flags_seq_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x7fffffff trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x7fffffff trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x7fffffff truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7fffffff try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x7fffffff try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7fffffff tso_count_descs +EXPORT_SYMBOL vmlinux 0x7fffffff tso_start +EXPORT_SYMBOL vmlinux 0x7fffffff tty_devnum +EXPORT_SYMBOL vmlinux 0x7fffffff tty_hangup +EXPORT_SYMBOL vmlinux 0x7fffffff tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7fffffff tty_kref_put +EXPORT_SYMBOL vmlinux 0x7fffffff tty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_close +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_init +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_open +EXPORT_SYMBOL vmlinux 0x7fffffff tty_port_put +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_device +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unlock +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x7fffffff tty_unthrottle +EXPORT_SYMBOL vmlinux 0x7fffffff tty_vhangup +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x7fffffff twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x7fffffff twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7fffffff twl_i2c_write +EXPORT_SYMBOL vmlinux 0x7fffffff twl_rev +EXPORT_SYMBOL vmlinux 0x7fffffff twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0x7fffffff uart_add_one_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_get_divisor +EXPORT_SYMBOL vmlinux 0x7fffffff uart_match_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_suspend_port +EXPORT_SYMBOL vmlinux 0x7fffffff uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff uart_update_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_enable +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_init +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0x7fffffff ucc_slow_init +EXPORT_SYMBOL vmlinux 0x7fffffff ucs2_strsize +EXPORT_SYMBOL vmlinux 0x7fffffff udp6_csum_init +EXPORT_SYMBOL vmlinux 0x7fffffff udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x7fffffff udp_disconnect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_encap_disable +EXPORT_SYMBOL vmlinux 0x7fffffff udp_encap_enable +EXPORT_SYMBOL vmlinux 0x7fffffff udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x7fffffff udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x7fffffff udp_gro_complete +EXPORT_SYMBOL vmlinux 0x7fffffff udp_gro_receive +EXPORT_SYMBOL vmlinux 0x7fffffff udp_ioctl +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x7fffffff udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7fffffff udp_poll +EXPORT_SYMBOL vmlinux 0x7fffffff udp_pre_connect +EXPORT_SYMBOL vmlinux 0x7fffffff udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x7fffffff udp_read_sock +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_next +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_start +EXPORT_SYMBOL vmlinux 0x7fffffff udp_seq_stop +EXPORT_SYMBOL vmlinux 0x7fffffff udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x7fffffff udp_table +EXPORT_SYMBOL vmlinux 0x7fffffff udplite_table +EXPORT_SYMBOL vmlinux 0x7fffffff unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x7fffffff unload_nls +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_buffer +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_page +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_rename +EXPORT_SYMBOL vmlinux 0x7fffffff unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7fffffff unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x7fffffff unpin_user_page +EXPORT_SYMBOL vmlinux 0x7fffffff unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_blkdev +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_cdrom +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_console +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_key_type +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_quota_format +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sound_special +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x7fffffff unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7fffffff up_read +EXPORT_SYMBOL vmlinux 0x7fffffff usleep_range_state +EXPORT_SYMBOL vmlinux 0x7fffffff utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_load +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_strncmp +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_unload +EXPORT_SYMBOL vmlinux 0x7fffffff utf8_validate +EXPORT_SYMBOL vmlinux 0x7fffffff utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x7fffffff uuid_is_valid +EXPORT_SYMBOL vmlinux 0x7fffffff uuid_parse +EXPORT_SYMBOL vmlinux 0x7fffffff v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x7fffffff vc_cons +EXPORT_SYMBOL vmlinux 0x7fffffff vc_resize +EXPORT_SYMBOL vmlinux 0x7fffffff vcalloc +EXPORT_SYMBOL vmlinux 0x7fffffff verify_spi_info +EXPORT_SYMBOL vmlinux 0x7fffffff vesa_modes +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x7fffffff vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vfree +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_create +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_create_mount +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_llseek +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_mkdir +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_mknod +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x7fffffff vfs_rmdir +EXPORT_SYMBOL vmlinux 0x7fffffff vga_put +EXPORT_SYMBOL vmlinux 0x7fffffff vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_for_each +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vid_add +EXPORT_SYMBOL vmlinux 0x7fffffff vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7fffffff vm_brk_flags +EXPORT_SYMBOL vmlinux 0x7fffffff vm_event_states +EXPORT_SYMBOL vmlinux 0x7fffffff vm_insert_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vm_map_pages +EXPORT_SYMBOL vmlinux 0x7fffffff vm_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff vma_set_file +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_32 +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_array +EXPORT_SYMBOL vmlinux 0x7fffffff vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7fffffff vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0x7fffffff vme_free_consistent +EXPORT_SYMBOL vmlinux 0x7fffffff vme_get_size +EXPORT_SYMBOL vmlinux 0x7fffffff vme_irq_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_irq_request +EXPORT_SYMBOL vmlinux 0x7fffffff vme_lm_detach +EXPORT_SYMBOL vmlinux 0x7fffffff vme_lm_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_mmap +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_request +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_set +EXPORT_SYMBOL vmlinux 0x7fffffff vme_master_write +EXPORT_SYMBOL vmlinux 0x7fffffff vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x7fffffff vme_register_driver +EXPORT_SYMBOL vmlinux 0x7fffffff vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_free +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_get +EXPORT_SYMBOL vmlinux 0x7fffffff vme_slave_request +EXPORT_SYMBOL vmlinux 0x7fffffff vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x7fffffff vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x7fffffff vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x7fffffff vmemdup_user +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x7fffffff vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x7fffffff vprintk_emit +EXPORT_SYMBOL vmlinux 0x7fffffff vscnprintf +EXPORT_SYMBOL vmlinux 0x7fffffff vsnprintf +EXPORT_SYMBOL vmlinux 0x7fffffff vunmap +EXPORT_SYMBOL vmlinux 0x7fffffff vzalloc_node +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7fffffff wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x7fffffff wait_woken +EXPORT_SYMBOL vmlinux 0x7fffffff wake_bit_function +EXPORT_SYMBOL vmlinux 0x7fffffff wake_up_bit +EXPORT_SYMBOL vmlinux 0x7fffffff wake_up_var +EXPORT_SYMBOL vmlinux 0x7fffffff walk_stackframe +EXPORT_SYMBOL vmlinux 0x7fffffff watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x7fffffff watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x7fffffff wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7fffffff woken_wake_function +EXPORT_SYMBOL vmlinux 0x7fffffff would_dump +EXPORT_SYMBOL vmlinux 0x7fffffff write_cache_pages +EXPORT_SYMBOL vmlinux 0x7fffffff writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x7fffffff writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x7fffffff ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x7fffffff ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x7fffffff xa_erase +EXPORT_SYMBOL vmlinux 0x7fffffff xa_extract +EXPORT_SYMBOL vmlinux 0x7fffffff xa_find_after +EXPORT_SYMBOL vmlinux 0x7fffffff xa_get_mark +EXPORT_SYMBOL vmlinux 0x7fffffff xa_get_order +EXPORT_SYMBOL vmlinux 0x7fffffff xa_load +EXPORT_SYMBOL vmlinux 0x7fffffff xa_store_range +EXPORT_SYMBOL vmlinux 0x7fffffff xattr_full_name +EXPORT_SYMBOL vmlinux 0x7fffffff xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_add +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x7fffffff xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc +EXPORT_SYMBOL vmlinux 0x7fffffff xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x7fffffff xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7fffffff xp_free +EXPORT_SYMBOL vmlinux 0x7fffffff xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x7fffffff xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x7fffffff xxh32_copy_state +EXPORT_SYMBOL vmlinux 0x7fffffff xxh32_update +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64 +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64_copy_state +EXPORT_SYMBOL vmlinux 0x7fffffff xxh64_digest +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_reset +EXPORT_SYMBOL vmlinux 0x7fffffff xz_dec_run +EXPORT_SYMBOL vmlinux 0x7fffffff zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7fffffff zero_pfn +EXPORT_SYMBOL vmlinux 0x7fffffff zero_user_segments +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x7fffffff zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_compress_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_flush_stream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_cstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_is_error +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x7fffffff zstd_reset_dstream +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x5692a5ec sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x7d8a30df sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/af_alg 0x19173494 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1ff6aaa9 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x3d62f6f0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3e5e5bd8 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a907335 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7fffffff af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7fffffff async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x54dd79b1 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7fffffff async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2ead3760 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x43b238f2 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3578b229 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x638a0984 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7fffffff async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x464f19e0 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x70f13cb5 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fffffff async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fffffff async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x7fffffff blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x1f6c9382 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x7fffffff __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7fffffff __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7fffffff __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x7fffffff 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 0x7fffffff cast_s1 +EXPORT_SYMBOL_GPL crypto/cast_common 0x7fffffff cast_s3 +EXPORT_SYMBOL_GPL crypto/cryptd 0x15bff801 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x2b59fe72 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x2ca02583 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x3990f44a cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x61a35a32 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x7e59de54 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x7fffffff cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x035548ef crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x14a2433f crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x409b6209 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x60eab0d3 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x66b9c099 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7fffffff crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x1243b4ac simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x31da4153 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 0x69e4aebc simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_aead_create +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_aead_free +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff simd_skcipher_create_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x7fffffff 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 0x7fffffff crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x19ad7f57 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7fffffff __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7fffffff __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0x7fffffff sm3_final +EXPORT_SYMBOL_GPL crypto/sm3 0x7fffffff sm3_update +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0x7fffffff sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff __twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x7fffffff twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1b92189b spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x276ed57b spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2e7e21d7 speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x32dd3a49 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x364059cc synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4150fc26 synth_add +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 0x4b2d108c spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x68119e6e spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_get_var +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_putws_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7fffffff synth_request_region +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x267781da __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x3b9158aa 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 0x7fffffff charlcd_alloc +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff charlcd_backlight +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff charlcd_free +EXPORT_SYMBOL_GPL drivers/auxdisplay/charlcd 0x7fffffff 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 0x7fffffff hd44780_common_blink +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_cursor +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_fontsize +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_init_display +EXPORT_SYMBOL_GPL drivers/auxdisplay/hd44780_common 0x7fffffff hd44780_common_shift_cursor +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 0x7fffffff ks0108_address +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x7fffffff ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x7fffffff ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x4cbf35a8 linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x7fffffff linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x02cbccba __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x75bf5cc9 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x7fffffff __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x7fffffff __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x433cb7e5 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x7fffffff __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7fffffff __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x7fffffff __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7fffffff __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x7fffffff __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x0bcdc915 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x7fffffff __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x032b2695 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x7fffffff __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7fffffff __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7fffffff __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x7fffffff __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0481b842 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x09b45b07 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b604212 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f23a9fe bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3106c6eb bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x34db19fa bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x59221b1e bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6366ebcc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x661a71b1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x79502d0e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7fffffff bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2cbfa19f btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x40c986e5 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x46b4e66d btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x64dbafdb btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x74f12875 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x79f399e7 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7fffffff btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0c470dc9 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0f877bea btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2ba993f1 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2cd5d7f8 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x341cf688 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x370f2aba btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3ec58bf7 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f29e71d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x53089621 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x612d0226 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x628dc744 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fffffff btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1a97e8f5 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1d7bc1fa btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x26a0e85d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5aaa69e4 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7fffffff btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x09c6faf6 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x5ae0592c btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7fffffff btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x31dac61b qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x47ddd546 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7fffffff qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x04985ac2 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x4d58c081 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x57d3646d btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x7fffffff btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7beb875d hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7fffffff hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x198878e6 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x50f0326f __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6002976e mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x625083e7 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7fffffff mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x05c2ddd0 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06f9eeca mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x10512cc2 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x210dfdb5 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x27a8245b mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x28087d58 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2eec6e7e mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3fd917d7 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4b1375ae mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x55adcda6 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x60a4c20f mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x623c75a7 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6819054d mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x6ac40e39 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7171ea47 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x73e04b52 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x76f79193 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7fffffff mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x03c78888 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x338d1198 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x65f5044c moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x751d4e9d __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 0x1cbd386f clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x306e7e8c 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 0x3b15a709 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3d9d67cc qcom_cc_probe_by_index +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 0x60e2e044 qcom_cc_register_sleep_clk +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 0x7737d034 qcom_cc_map +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 0x7b0ae2d4 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7cf80f95 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7e66fd9e clk_regmap_mux_div_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_evo_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_lucid_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_postdiv_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_alpha_pll_trion_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_edp_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_fabia_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_gfx3d_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_pll_configure_sr +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_rcg_pixel_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff krait_div2_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff krait_mux_clk_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_cc_register_rcg_dfs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x7fffffff qcom_find_cfg_index +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x093d0205 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1519e561 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x15e405f6 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e285110 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x233a87fa __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x27aa3e4d comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2c6c35bc comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b54c48b comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x41336b8a comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x43de4ffd comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x455940e6 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x48dd09a8 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b09638b comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x551d248c comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56d1f674 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5714550e comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5acb0d84 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5eaadf1d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x61940137 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6311247d comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x753ece66 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7e8627cf comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fffffff range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0a886461 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x3eb19c12 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4925c164 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x64af372d comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x7fffffff comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x13343ed2 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x4587233e comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7fffffff comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x738d5dd1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x01ed52f7 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x7fffffff amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x086e6f1c amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0ddbdea5 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3da7b256 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4a58505d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x561b0040 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5e4d2128 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x63e0a44a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x67ab58eb comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6c25baa3 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6e62bac3 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7fffffff comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x024b6f1f subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x0dee5b93 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x7fffffff subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x7fffffff das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x107e1f2a mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1e0683b6 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x2540d3b4 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x25c927d0 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3994fc93 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3b7ab4aa mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x46b21387 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4a5c1969 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5e8c619d mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x67a919ee mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c4ea8cf mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x71da30a9 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7cf21891 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fffffff mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x42ec9960 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7fffffff 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 0x7fffffff ni_assign_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_find_route_set +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_route_set_has_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_route_to_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x7fffffff ni_sort_device_routes +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0e53ed6e ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x104cf3b0 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1f485977 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x212b02ba ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x26469cb3 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4b2f1fb2 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x535d421c ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7fffffff ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x08220b8e ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x275c868b ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2a9a35b8 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x43769ec9 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7202964c ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7ae5df87 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x0a32f111 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x167dea24 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1a25b6ac comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x29f21409 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6f66aa3a comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7fffffff comedi_open +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0758d068 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6f05ec5a counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x70d62326 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x79dde431 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7e02f789 counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fffffff counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fffffff counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x7fffffff devm_counter_add +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x5c2673e4 omap_crypto_cleanup +EXPORT_SYMBOL_GPL drivers/crypto/omap-crypto 0x7fffffff omap_crypto_align_sg +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x451b6191 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x327eb3e4 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x7fffffff dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03b6d554 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x51f7348b idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6629635c dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7abaf5f3 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7fffffff idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x05cedfcc fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x06cfa292 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x10572929 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2c5ab208 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4087f762 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x575ae500 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5c4146f1 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6cfe5e78 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x6e43f8be fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7fffffff fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1c475525 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x7fffffff hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7fffffff fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7fffffff fw_card_release +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x7fffffff fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x7fffffff get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x05a3c1d3 cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x08e37c59 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x483f8546 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4a163802 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5035acbb cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x536bd34e cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x631eea12 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x66898ffd cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x74dd833a cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7c0010c3 cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7fffffff cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x6d933080 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x7fffffff alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3037278d dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a7dfef8 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3b070c74 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3c76d08b dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3ea64e26 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x400de1a5 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4082327e dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57788386 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x663d9180 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7528581e dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7fffffff dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0773379d fpga_bridge_put +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 0x70657026 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7e918c88 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x7fffffff of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1541ffc5 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x223c2924 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2641ac5e fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3d5cd3c0 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x411ec6e8 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x601d9ed9 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x629f1f3e fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63200e4f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x673bcc0b fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7fffffff fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x43cd8f68 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x5449501b fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x7fffffff fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0aa99fad fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x0ff951aa fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x40567ba5 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x480b31bb fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4c75b957 fsi_driver_register +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 0x7fffffff fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7fffffff fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x0ba18c14 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x04e714bb sbefifo_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x7fffffff sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x0ea1a3a3 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x1b9b6534 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6dfd3b46 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6f878b99 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7d0b6146 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2ecccf81 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3ffd74fc gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x7fffffff gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x5dcbe46c aspeed_gpio_copro_set_ops +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x7fffffff aspeed_gpio_copro_grab_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-aspeed 0x7fffffff aspeed_gpio_copro_release_gpio +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x1fa36fb4 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x34b310d7 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x36a0630e analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x36bad58b analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3c864290 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x78494794 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7fffffff 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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x797cfb9b dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x79fc0b33 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 0x7fffffff dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7fffffff dw_hdmi_set_sample_width +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 0x7fffffff dw_mipi_dsi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-mipi-dsi 0x7fffffff dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x19aa0eef drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x2acc5245 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x2e189ba8 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x695b935a of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fffffff dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x00182d47 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x05cf20dd drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0cc81f22 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ac7efeb drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2206f346 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x342f3d2a drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4dde1541 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ebfd509 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5427b7cc drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6638117d drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7fffffff drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x324652f8 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x3694cfdc drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x40375c5e drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x79ba1b5a drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7fffffff drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0693b001 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x129dd559 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2bb74e1f drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3e6b839f drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5109fc0a drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x72d37fda drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7bc38bf8 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7fffffff drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x11a1051c drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x3f3fe7ae drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x52c8c15d drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x54862e5a drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7fffffff drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x0820e3bf imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x7fffffff imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/mcde/mcde_drm 0x7fffffff mcde_display_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2e1af8d8 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x562879ee meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7fffffff meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x63dcb1d8 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x7fffffff s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x2a2a74eb pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x582b41a1 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x6e0bd065 rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x7fffffff rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x46f33d55 rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7132da0e rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7fffffff rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x185c51f2 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x24f42066 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7c7d4f0c vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x7fffffff rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x290b31b1 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x46d5c68d ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7fffffff ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x02cee6c0 ipu_cpmem_get_burstsize +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 0x067dc30d ipu_image_convert_prepare +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x06977221 ipu_set_csi_src_mux +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 0x078360a2 ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x07dc2d4b ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x08095c03 ipu_set_ic_src_mux +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 0x0fa8833c ipu_fsu_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x118160e1 ipu_ic_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x12017094 ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x125d155b ipu_idmac_channel_busy +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 0x16fd156c ipu_cpmem_zero +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 0x195a2dc6 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1a668c13 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ba37b65 ipu_image_convert +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1da81315 ipu_dc_enable +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 0x20a99086 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x20fb8dba ipu_prg_channel_disable +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 0x2b9455a8 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2c441bd1 ipu_idmac_wait_busy +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 0x2d02e4f7 ipu_cpmem_set_buffer +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 0x3166aec7 ipu_dmfc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x34a77331 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x372f8afd ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x37330c97 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x38636300 ipu_cpmem_skip_odd_chroma_rows +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x387da251 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3b2cbf9b ipu_di_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 0x413451e5 ipu_prg_channel_configure +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 0x4211ca61 ipu_prg_disable +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 0x4323d7d8 ipu_prg_format_supported +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 0x4aac605c ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4d1181e6 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x51475e87 ipu_dmfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x527f3b94 ipu_smfc_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53de277c ipu_di_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x55767280 ipu_vdi_set_motion +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5802dba0 ipu_vdi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x580d2f81 ipu_vdi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x59b10126 ipu_cpmem_set_high_priority +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 0x5b7b7a00 ipu_prg_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5cae270a ipu_vdi_unsetup +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +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 0x62ca48c8 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x62d5a797 ipu_idmac_unlink +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x63856c4c ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x66bcc2f6 ipu_cpmem_set_rotation +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7068e939 ipu_dc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7118e192 ipu_prg_present +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x731a49f5 ipu_cpmem_set_format_passthrough +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7348a662 ipu_prg_channel_configure_pending +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x781712ac ipu_idmac_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x78abf697 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7f7c576c ipu_cpmem_set_uv_offset +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_image +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_init_interface +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_downsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_skip_smfc +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_test_generator +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_csi_set_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dc_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_degrees_to_rot_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_di_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_di_init_sync_panel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dmfc_config_wait4eot +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_enable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_set_global_alpha +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_set_window_pos +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dp_setup_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_fsu_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_get_num +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_task_graphics_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_ic_task_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_get_current_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_idmac_link +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_image_convert_adjust +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_image_convert_queue +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_image_convert_sync +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_image_convert_verify +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_module_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_pixelformat_to_colorspace +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_map_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_srm_dp_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_set_field_order +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7fffffff ipu_vdi_setup +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x00201b48 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05521e7d gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x06e1c2af gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x07177533 __traceiter_gb_hd_create +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 0x164c8150 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x189a83ef greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x19c8e4e0 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x26e3f323 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3112e25e gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3481e560 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x357b80e4 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x35a6d354 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x367346cc gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x36b26b2b gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b6533aa gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x42966687 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x44c3770c gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47b41aba __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x553cea4e gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x565f4f40 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56d2e506 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5d0920ee gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6618046f gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x71bd0eb1 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7778075e gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfa420b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bfcf07d __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7e14e99b __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fffffff greybus_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x01c7c913 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05ecb446 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1762f876 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17a921ba hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x18d46c4f hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1f9b5f98 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c2b2dec hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d9a51f8 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ecace8a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3500026a hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36b2e187 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x392fe7ce hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x40616089 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x440fe219 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47430c84 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d6e999c hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ba6982f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67c16c8c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b048f55 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x78b72136 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d2f156c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7de5db6e hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ef859b8 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fffffff hidinput_report_event +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 0x7fffffff roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x45cde86c roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x57b3a2a8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6ecc503c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f9e3466 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fffffff roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x038d21aa sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2c460ba0 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5b9e866c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x757b64d1 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x760e55a3 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x761b0787 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7fffffff sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x214de131 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x3468965a vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x2e37ee44 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x5908727a i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6ee4a190 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x72a75684 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fffffff i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x65160ff0 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x46922e94 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5e446c74 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0b73448f hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x245f05db hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x366f3185 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x59ccc13e hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x60f3896f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x67bc0d6b hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7510b00d hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b6744b0 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7bfd6b36 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fffffff hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x6ec0ccdf adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x7fffffff adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x7fffffff ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x7fffffff ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x5553b82c nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7fffffff nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5326ea60 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5d0a5829 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x684f9c62 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7fffffff intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x31405a7e intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7fffffff intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x03c29fd4 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0650845b stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x06903549 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x29352237 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7fffffff to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x6e84dea1 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4b1794ff i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x629e448d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x6c98c51e i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7fffffff i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x49af88bc i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x71aa5154 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7fffffff i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7fffffff i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x04b4c6a9 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0a03142b i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0cfc7df9 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c0348a7 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x212ab162 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x27685ae3 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x34c21ad7 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x47106cee i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6eb16632 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x74b20c2a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7fffffff i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x6f0b9f65 adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x7fffffff devm_adi_axi_adc_conv_register +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x11cc2335 iio_channel_cb_get_iio_dev +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 0x6b9e85d8 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 0x7fffffff iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x7fffffff iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x09cdefde iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x12ab0326 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1f9881f8 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x22a6eb2c iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x3008f422 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5bdf81a3 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5fc46ae1 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7fffffff iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x7fffffff 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 0x40adc254 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x65640853 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7fffffff iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x7fffffff iio_hw_consumer_free +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0x7fffffff devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0bb81bb4 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x42188095 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0d18d1ca cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4b3a3541 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_capture +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_register +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7fffffff cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x403b5537 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x63191998 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7fffffff bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x3246ec7f fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7fffffff fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7fffffff fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x7fffffff bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x04d6a7e6 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x001f9615 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x7d627d13 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x7fffffff inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x7fffffff inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x7fffffff inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x043b4bc7 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x09a07cc0 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d1ecc73 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x18ecc55f __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x19c70d41 iio_update_buffers +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 0x2ee2cdbe iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x33b7c56d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36fbfaeb iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x38d67942 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42b7299e devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x461fdcf6 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4630c7f3 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x46db98e7 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x491c8be4 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4fa7b1c4 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x549622e1 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54d3e444 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ae5d054 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6504520f iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x67cf04f6 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69be16c3 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x71904966 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x77af3d23 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7adce071 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7c726818 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7cc05624 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7fffffff iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0x7fffffff ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x029f3b80 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0f7ffa45 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x18e87cd3 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2d96fbb7 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x5aace086 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x63870397 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6491bd2c rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x797a3351 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7fffffff rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x2d7ab42a input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x7fffffff matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7fffffff adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7fffffff adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x7fffffff adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x01858ca1 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1139400b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1f1e398e rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x436db2de rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6b71825a __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6f66c83d rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7fffffff rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6d8b13f4 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x706128bd cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7fffffff cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x70c2648a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7fffffff cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fffffff cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7fffffff cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6018bee4 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7fffffff tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7fffffff tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7fffffff tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2fa7d7a9 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cbe290e wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x53a0f0dd wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6811b5f9 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a40cfb8 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6de17f9c wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x715c2cb5 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77fed2e2 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7fffffff wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x434c085c imx_icc_register +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x7fffffff imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x0b39b783 qcom_icc_bcm_voter_commit +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x2f573302 qcom_icc_bcm_voter_add +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-bcm-voter 0x7fffffff of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x4ec633eb qcom_icc_pre_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x7fffffff qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qcom_icc_rpm_smd_available +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-smd-rpm 0x7fffffff qcom_icc_rpm_smd_send +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x0f7c9e2a free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x48b9ac87 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x4a42a414 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff iova_domain_init_rcaches +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x7fffffff put_iova_domain +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x15805f44 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2c9da4c2 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2db37b26 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x632b8a63 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x68e7c9a2 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7145cf79 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7fffffff ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1c52c770 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x29301a59 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3c399174 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x71cfa881 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77355e6d devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7fffffff led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x2e29bd1f devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4946edca devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x77c64ffe led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7fffffff led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x044c9291 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x06f7f9da lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0ad4ff02 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x31497fd4 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3c7d0419 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x502e24d8 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x671decb0 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x78577d7b lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7fffffff lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x7fffffff 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 0x00dea3fc __traceiter_bcache_alloc_fail +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 0x07ebcc98 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a62aea7 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1798e673 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x2cd46d2a __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2e6c12a7 __traceiter_bcache_journal_full +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 0x350c6c70 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f71c77a __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45f7519f __traceiter_bcache_request_end +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 0x553357b8 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58cc87e4 __traceiter_bcache_request_start +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 0x5fbd6296 __traceiter_bcache_btree_cache_cannibalize +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 0x628aeadd __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6342122d __traceiter_bcache_btree_node_alloc +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 0x7119c1ae __traceiter_bcache_btree_read +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 0x750e6ea8 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a8521af __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7b6679bd __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7fffffff __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x08e092cb dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x11ee6cdc dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1aca9996 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1b3d055a dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x320c7777 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3b748056 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x56ea0c76 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 0x69536ef0 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x74cc380d dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7896d9b1 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7ce4a7f1 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7f640a74 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fffffff dm_deferred_set_add_work +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 0x2b877141 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x7fffffff dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7fffffff dm_bufio_write_dirty_buffers_async +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 0x7fffffff btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_nr_demotions_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7fffffff dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x2cb70db9 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6d9c8741 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 0x1c51a515 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x7e454eac dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7fffffff dm_rh_region_context +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 0x7fffffff dm_array_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_info_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_resize +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_set_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_array_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_begin +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_cursor_skip +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_del +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bitset_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_is_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_set_read_only +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_cursor_get_value +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_cursor_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_lookup_next +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_btree_walk +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_disk_bitset_init +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7fffffff dm_tm_with_runs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0854c0d4 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3cea0f44 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x409cba17 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5918c6ca cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x595c49c2 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5a6b24f0 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5aa8cddc cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x609b0f2c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x634dc788 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x746be8f3 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x79ea400e cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7bec6f03 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7fffffff cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x033bfac4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0ca894ab saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19f7c042 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x32d98d6d saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3502cef1 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3b245101 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e225d54 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7fffffff saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x11e1ce13 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2c304cb1 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x362f28aa saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x48fd5267 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7fffffff saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13a34c2b smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21ea1f69 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x274685aa sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2bf4cc9c smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2ec6e7e4 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3493b461 smscore_start_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 0x40e4d3eb sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x53ae1a6e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6137f263 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x61a67160 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 0x7fffffff sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7fffffff smscore_unregister_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 0x7fffffff tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7fffffff tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x00238ca9 vb2_plane_vaddr +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 0x0c04568d vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x10bfca05 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x115b62a5 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x23ed6205 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x247bbdde vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2b1f28f9 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2d9ed9ef vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3138a769 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x31804452 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3455b183 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x383d869f vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3b5929ca vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3e599a5b vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x50be7473 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x55c59bfc vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5629bb5e __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5817183f __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x597176f4 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f9e9fbf __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6af836e6 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fffffff vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x46dad60b vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x60b1409a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x1d681dd2 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x7fffffff vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00449a80 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x012c3b01 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x04c6a2a4 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x06f395d1 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x12dc11a1 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x14b00520 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1cf6f9a1 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21ec67ac vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x306d7a1a vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4979763c vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f562de1 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62a0dafc vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x78cb7bb7 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7b126e12 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7d7307ad vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fffffff vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x111da1d8 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x31069a76 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x7fffffff dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x7fffffff as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x7fffffff cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x7d1b109a gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x19410f5e mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x7fffffff stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x7fffffff stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x2fcd8c77 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x7e732190 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x3c60e205 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x38f781da max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4dd24692 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5d9c65d3 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5eb41074 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x703c04ca max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x78bd9c5f max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7fffffff max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0749bd5a media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08f52936 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d48fe69 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x10f5abd6 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13206142 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ca21148 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d5c791c media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e09bb6f __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20bed8c5 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x245b5468 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x296cd3dc media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x29bf7978 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ba04b5a media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2e2fb253 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38f9b7b6 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x402493ca media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x468aafc7 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ecd25f0 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5c497ec0 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x61918bcc media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x656879b2 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68c1c5ba media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6aa38f62 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6b0c3120 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6cd1aa7b media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d027c3a media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d8df8b7 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7fffffff media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7c26956d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0512ad68 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x10da9ec8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x30e459ae mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x43ad1d24 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x526e2687 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x58f655d6 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5cd47bfa mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ce67a26 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x62889d54 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7b3440f1 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7fffffff mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10bc2628 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b0d3092 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2291f029 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x22a5112e saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x251022bf saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3ca1f43f saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4afb24ca saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5182240c saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5ef7e097 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6e781c70 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f196d99 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7c2bf885 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fffffff saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0390b0dd ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x263a82a0 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x483d6e40 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7fffffff ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x021ffc75 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x04ddc118 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x23f62af4 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x47012444 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7fffffff mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x1f8535d3 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x28817c80 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x38b97aef vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x5a4195ae vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x7fffffff vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x7fffffff rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x7fffffff rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x29f4e0b3 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x3b9018b6 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x460eea2f vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7fffffff vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2b98e4 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x18ce0835 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1f81ff7e xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x367208a4 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5855bf43 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x60d5d517 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7fffffff 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 0x7e746d17 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x7fffffff xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x33c08e68 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7fffffff radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x14f6ee34 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x23f61763 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x3227c67f si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7fffffff si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7fffffff si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a32a385 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0d79b484 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25d653e3 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x28af3c3f rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x619ec53f lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65da256b ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x68cc801f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6cbb4da5 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x703ae18a ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75231fcd ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x778c9768 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fffffff rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x5d36ad72 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7fffffff microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x7a2f12f1 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x7fffffff r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7fffffff tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x7fffffff tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x274046a3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6a2ec8c7 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0164c803 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x4409c8fe tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x7fffffff tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x11a2e334 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7fffffff tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x6dae0517 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x00ea762d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01adb14d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04ba45de cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b463ef0 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2616107f cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x30e4987b cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e92e5e0 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x57b8f8fe cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59741d60 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x697ea8ff cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x75206577 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76ac37ec cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ac2e7b1 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7fffffff is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7fffffff mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x7201fe51 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x01474828 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x036ae7ca em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0929e5fb em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e8713e8 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1fe30987 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2093abed em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x24fe9184 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45f5a235 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4f2a11e0 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x60f13d5b em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x76de57ac em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fffffff em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1f038ed7 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x31301ddd tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7fffffff tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x60560bfe __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x7fffffff v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x7fffffff v4l2_detect_cvt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_dv_timings_aspect_ratio +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_enum_dv_timings_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_find_dv_timings_cea861_vic +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_hdmi_rx_colorimetry +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_match_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x7fffffff v4l2_phys_addr_for_input +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6c602d21 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7fffffff v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x7fffffff v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x62031e77 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x7fffffff v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x7fffffff 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 0x7fffffff v4l2_jpeg_parse_frame_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x7fffffff v4l2_jpeg_parse_header +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-jpeg 0x7fffffff v4l2_jpeg_parse_quantization_tables +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x012477ca v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x025479fd v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f1eb987 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0f40dcce v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x145cfe7d v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1c308578 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1d1f8107 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x218810cd v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24a1a81f v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d030e57 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37b76d7d v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x389c933c v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ae2e959 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42be1c8a v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x44193a48 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x46028312 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4a4c73c3 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4f8086db v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6397402b v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65193a56 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x668cdded v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x673b8ca1 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x682bcd0b v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6f04210d 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 0x7fffffff v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7fffffff v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x7fffffff v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18767e69 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2bdbf365 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4bd8a2d8 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5a310bb4 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5def7582 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x60be1144 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6196ca66 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6fb8eda7 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7fffffff videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x66b7dccf videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x7fffffff videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x06262d6b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2c97ccac videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x69022244 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x05eff0b6 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x15767600 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d474229 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26423979 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x282fa480 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x297299ed 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 0x2e00c350 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ed9acd3 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x379908e2 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x389cff28 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ee6ad2b v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x492591d4 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4cd7f273 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x561c9941 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56f0a581 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x585e0568 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6446d5ce __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x655bc0ea v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x659837ad __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c4a256 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67bdd18d v4l2_mc_create_media_graph +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 0x71f90e88 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x72ccf257 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74205019 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74c3e41b v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74e346cd v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7567e474 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a00dba1 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ceb44e6 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7fffffff v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x2228ec3e pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x72e5f9ec pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7fffffff pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x014e7db4 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x05e507d5 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x07d94125 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x08e525b9 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2f95f08c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3e672678 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 0x6b468736 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7d5fe734 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff cs47l24_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7fffffff wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x1d67e56b atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x7fffffff atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x09ae7b16 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x59d85db0 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7fffffff da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0x7fffffff gsc_read +EXPORT_SYMBOL_GPL drivers/mfd/gateworks-gsc 0x7fffffff gsc_write +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0x7fffffff iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0080720a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2ec20944 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x400a0392 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x56c8f821 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x62cb0918 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7fffffff kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x77504fa3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7fffffff lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7fffffff lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2bfd8824 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4b830f79 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7fffffff lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x400ec409 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x61b96737 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7fffffff lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fb4f0f8 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0fb92cb8 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x17618748 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x176c5b08 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1cdd1625 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x25131c30 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x251ec070 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x33eca6e6 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3835eb05 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38383745 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4c81edf4 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4c8c31b4 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54549a44 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54594604 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54fd094d cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x62448f46 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6626013c cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x662bdd7c cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x69619a86 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6c651f6f cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b00f609 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b0d2a49 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7fffffff madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x1f937fc5 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x27575c31 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3558a959 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x75e2e279 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7fffffff mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0x7fffffff cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x351c93c6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3cc090b9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5915bb89 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a75f391 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6e1c6d4a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x73831eb7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7fffffff pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x45795920 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7fffffff pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3a6560ec pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4c007020 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7fffffff pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7fffffff devm_rave_sp_register_event_notifier +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x7fffffff rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x56d1a8c5 retu_read +EXPORT_SYMBOL_GPL drivers/mfd/retu-mfd 0x7fffffff retu_write +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0460bad8 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0916c2ff si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0ce73b96 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16d63c8a si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f424b50 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21db266d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24181dc6 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x256c7f37 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2e120355 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x425fb52e si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x43ff8cb7 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x55e63afe si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x58e4ab4a si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e2dc61b si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60e97096 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68da91bd si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7a3b1146 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fffffff si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x4c01b01b ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x7e82d54f ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7fffffff stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0x7fffffff stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x26273bb8 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x37fe5dd7 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x61407f77 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7fffffff am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x404a5cd7 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6ce5832e tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7fffffff tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x447ae4cf ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1b066d0e alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2289e7e9 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x2929cb0c alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7fffffff alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x09b17a9a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0a57cc7b rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1042a66f rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34b7bde7 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4011729a rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x40c00f36 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x55661d7b rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x673f8e8b rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e3408c1 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7e0e712c rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7fffffff rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x054befee rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x195777fe rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d186b0b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x415fd972 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x4b9ba0b4 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7fffffff rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x20d764dd cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x42dfa1ce cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x67e7a73b cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7fffffff cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x0b008db0 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x296a8983 oslec_update +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x3115970d oslec_create +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x4b711f77 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x5909e701 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x780d3f01 oslec_flush +EXPORT_SYMBOL_GPL drivers/misc/echo/echo 0x7fffffff 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 0x7fffffff eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_readb +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x7fffffff eeprom_93cx6_write +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2c7a72fa enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x31e8edb5 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3770f91f enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4b6c9545 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x52805fdc enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x613fdd21 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fffffff enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x20b0a2cf lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3ac3aa34 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5535e065 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5daaf3e9 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x68c44e8e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x71bd2c81 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fffffff lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x7fffffff devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7fffffff st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x7fffffff st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x3d744531 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7fffffff uacce_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x3e19ad65 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7fffffff dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x7fffffff dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7fffffff renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x7fffffff renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x0d36407f tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x490fa5f7 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4be6c256 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x669873f0 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x6b2678b1 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7484c48b tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7fffffff tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/most/most_core 0x1775abf5 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x17aa58b3 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2bea5ac9 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x44559d8f most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x46110912 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7aafe345 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7fffffff most_submit_mbo +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x287d22a6 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7fffffff cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x390e5a42 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7fffffff cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x5b30f343 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x12f07b44 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7fffffff cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7fffffff cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7fffffff hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x7fffffff hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x088a799c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x7fffffff onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7fffffff brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7fffffff brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x7fffffff brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x7fffffff denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x7fffffff sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x50192bfd spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7fffffff spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00511ade ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x036f2f5e ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x077f88c0 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2d59091f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x368749e2 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4dfa4398 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5df3f9b8 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7fffffff ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x190eca46 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1f957540 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1fcc373c devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3d1f3d39 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3ffd9649 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x52fa0280 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7f99f2bf devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7fffffff mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1b88f4e4 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x366a79e5 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x07c2c62f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x11bd518b alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6b9369f1 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7fffffff unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x65bb489e alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7e862ccc free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7fffffff unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1b396c44 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1c4e8d8e of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x223fa5e3 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2399a5d0 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x266d03a1 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d704421 can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x33cac304 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f1935be can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4551f7c3 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x483c2154 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 0x6a1012f4 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6cf21c06 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e413cf3 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x75ec9059 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fffffff safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x060f2690 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x1243ff93 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x74c8d2ad m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7fffffff m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x02c6f12f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e18b353 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7fffffff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x4dec1cde lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x144e30c0 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1ecd7f8a ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x20b18b2c ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x213e7a89 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x259c5e01 ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2775556d ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x314dc644 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4aced8f8 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5e50dd89 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6998fdfc ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x72ef0922 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7ec04143 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7fffffff ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x55b4822f rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0789e035 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1f2460d2 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x3358e078 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x550156ef rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5ae5dc6b rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5f577ccd rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6ddeef25 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7dc9f9a6 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x7fffffff rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/8390/ax88796 0x406acc5f ax_NS8390_reinit +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x056eb235 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x7fffffff arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x51da9cfe enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x5322db88 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x7fffffff enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x0eeb681b fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x23e31799 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4fe01435 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6cac3e5f fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x735ddee7 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7fffffff fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7fffffff i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x7fffffff i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0336ac76 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x09d889ec ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x59027859 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x73751c9d ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x7fffffff ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01d7738c mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x049004e5 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06086a17 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08960c97 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ef21079 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ca3559 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1567ab45 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1708209d mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17a5b6f0 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eddf4c3 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206e4fff mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e5d3c3 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22240c8b mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22af64fa mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23deb6c0 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x278a0b78 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2910b430 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aad94f3 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d337769 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x325ebbbd mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c5b3dc mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347ec5e0 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34c59b61 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3511a3db mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3613c29f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3628c936 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365600e2 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39a9ecf5 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d3fdfa4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f0a1c32 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x412e7fe4 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b801c6 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4953e143 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a396633 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dfca2c1 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51f369e6 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57a0ebab mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59f4ecb5 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5af95b6e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cb1d749 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df4f9dc mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60d390b8 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62a3964d mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62ff1e5d mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x668d2454 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b49c54 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e64844c mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ea6efb0 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd893f2 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x716d23c5 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73d08b09 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x740ba586 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77db8146 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7813539e mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7967f366 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a645b03 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bad8c35 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e29218f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f021ac8 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f63c8fd mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fffffff mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x045d3f98 mlx5_query_module_eeprom_by_page +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 0x077b0a32 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x086d493d mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e484b65 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1319fd35 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x132ab8fb mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19c31987 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2946ab mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b6701f mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f9306ee mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303125d2 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x374eb6df mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39cb1dd4 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45640c9e mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54b7c664 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d868a9 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5621aa5a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e8ff64f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60320ab2 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x619a4b0c mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d1aea3 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x636c4b3b mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645f43f1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64ebb226 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66b8a685 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x699ae818 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73c4ae61 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fffffff mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x05d395da ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7fffffff ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x2695f52f regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x4be2f862 regmap_encx24j600_spi_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x59410dd6 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07bf6947 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0de601b0 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x15ebbeca ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x164dd375 ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16b639a2 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1b09840d ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1fc37b8b ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2cac6a7e ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e3ade74 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4212ddf5 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42712659 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4b8da8de ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4dbbf645 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x54e5884c ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ee9d9b6 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c5bd9eb __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fffffff 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 0x0fe54703 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x40773dae stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x461f5774 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x50dfc71e stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x5fab63ca stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7fffffff stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x55be2e6a stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fffffff stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0538c65e w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x3b2077a8 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x4a13f503 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x71f38f47 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3bea5b83 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7fffffff ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0x37d10109 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0b662e08 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x56550869 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7cc19dc1 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7fffffff macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x7fffffff mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x7fffffff mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x7fffffff net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x7fffffff net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x021c8c60 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x34d7d206 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x35872664 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7bb37af3 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x7fffffff xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x04f5d91f bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f355b66 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1d599c56 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2302d4ce bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27bceab0 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2ac69e04 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x30b1e5c5 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ad7d409 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x466f4724 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50fb509e bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x52a7de98 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x64c55833 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6554b2b7 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6945c5a0 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6baf14bc bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7277ac4e bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7fffffff bcm_phy_write_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 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15d84420 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3086059b phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +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 0x5fa224c4 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_resume +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_set_port_modes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7fffffff phylink_stop +EXPORT_SYMBOL_GPL drivers/net/tap 0x021448c5 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x19920d22 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x27cddab0 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x7fffffff tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x2a954adb usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4a8c4c5a usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x52d2efc3 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5cc67040 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7fffffff usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x13c752df cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x252b12d1 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3931cf95 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7fffffff cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x7fffffff rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x512510a3 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c44af70 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x76b273c2 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7d0b2fef rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7fffffff rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x045833a0 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06c4c7d4 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0df4224d usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1098c7e1 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1310ae5c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15499e34 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1883891b usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1bf36da7 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c4d224c usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ec98e79 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1efbf79e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37f4b9a7 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x40a5f20e usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44cc2fd4 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x47c36a6c usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69f4bd1f usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74ac4a17 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79a3c281 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7a28f87a usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fffffff usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5d742bf7 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x7fffffff vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x08dc1e64 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55b9e8d1 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7fffffff il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x1fa1ad32 iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x243d9b03 iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x036ae635 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x31bb3fcb p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x38ea02b7 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6cbbfd7f p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x7fffffff p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x099b5742 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0aef0931 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0e9f4fb1 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x24782478 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2bbbee92 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3fd590d6 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x441d3ccd lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4873065d lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x53372878 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x67ab223b lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x726ed3ea lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7fffffff lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x3f099a76 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x521152c0 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x5ce92977 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7fffffff lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x163ababa mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x23363b29 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x305b4b2f mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x38c8c8a3 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3992083e mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x53b3cc29 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5597ed88 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x59d3dbc3 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x62bc984c mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6444db3a mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6623013d _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6d6bab83 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6efdc37b mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x771fccad mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x780baeb6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7fffffff mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00f540a7 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0172780c mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x08575a9b mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0afc34d9 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ceb7003 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15895b45 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x16516b38 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17d70444 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x19edb433 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x203aebfe mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x210264a3 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21259635 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22bba0c9 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x26e6f06f __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x275eba48 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x29180871 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2be2ab2a mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d2be3db mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2d9574a3 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f163f73 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x331a6009 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x352fc2b1 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x396734f8 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x41387653 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x42e1055a mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b7bc89e __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d5bb0c8 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e06a76d mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e4b8f94 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x556217ae mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x561bc17b mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58a3a42a mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5946901b mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5b797149 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x619d39cd mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x633d38e3 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x64242f02 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x696d7f4d mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71948082 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x726fb15d mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7510399b mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78f56494 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bfd31b5 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7df6c536 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fffffff mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x049fefcf mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c48ea70 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f36933d mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0ff9efc2 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11258fcf mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1508de20 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x180229b7 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19131525 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2222979f mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28977227 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f2f386e mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f93e243 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3259b466 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33c5fb8b mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x35e14626 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4096bcb4 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42302f3d mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44bb616d mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494a37d1 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x49dc9e58 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4bca7476 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x504857ea mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58fcaa63 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6358fa40 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x648470bd mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x649eefd1 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64b63a45 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ac59d14 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6aebd3f5 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b18a710 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78ca6d03 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x797b6aa0 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79bfe4ff mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b758d62 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7f45f152 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ff1e9f2 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7fffffff mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x03696098 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x10e1e0d7 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x17d8b9b3 mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1f10050f mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x35aff823 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x40ecfe27 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x41da2573 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x69aef24b mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6b5e4b70 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c29a0ac mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fffffff mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x074aca47 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0fb04d50 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2c5e5b73 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x32642152 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5f1890ed ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5f2cbe1f __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x67956325 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7cb10c0e mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7fffffff mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x06ef2ef4 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c3882a6 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x21ee1b8f mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x23fb5a34 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x275dc2a5 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x33bf37d8 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x40c367f1 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x568dbf30 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x588d09e1 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e12fe57 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x71ee068f __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7fffffff mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x7fffffff 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 0x4880a202 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7fffffff mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7fffffff mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7fffffff mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x02c68a78 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0884ffd3 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0d2f9938 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x2b00da45 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x570ad3c0 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7fffffff mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0025cd64 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x007034e5 mt76x02_update_channel +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 0x04a6c25a mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b7e4640 mt76x02_set_rts_threshold +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 0x0e00c4c4 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1062857a mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1436845d mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15915fdb mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17cc435c mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18ad713b mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x19e70061 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b5154e7 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2d418dc2 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2dc60db8 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x30d3407b mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34e6e032 mt76x02_eeprom_parse_hw_cap +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 0x367e16a9 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ec4dcfd mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4274fba3 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x44c0dd52 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x475ffa6f mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x598ec950 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a5e7fc7 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b17cb4b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5b8b12ab mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd7dcc7 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5f036b65 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6097278b mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6361a1c9 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x637e1b89 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6793d627 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x686b9677 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6964c0a7 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6cb44700 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6eb63df7 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x766b79ab mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7db975a0 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7e5bc784 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fffffff mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x49e68486 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x55c61685 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x57bbb191 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7fffffff mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0df456c7 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x24bd9373 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x29eced34 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x474ec9f5 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4b2b65fe mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x50cc6c87 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x69b406e1 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7003d73c mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7fffffff mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0258f4ef mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0dfcdf84 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1379a0e6 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1526c29c mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1820060d __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2201dacb mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2814eb9e mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3b3f0ee5 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4799197c mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4cc56eb8 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x55e5e816 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x576b2c3c mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63512dec mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x716ce64f mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x73211274 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x74c0cdc7 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7fffffff mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x03bf8e79 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2845e46c wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7899a9c7 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7fffffff wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x28152e63 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 0x3d9e8447 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x61a357f9 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x7fffffff qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03e4d696 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x044793e1 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x19022697 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23499624 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x246c3f53 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x254b3367 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2e89cb1a rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x33a5d25c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39932d42 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f0aa6bf rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x446ae72a rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49ef16b3 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c0fdadd rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c3b2734 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4c8fa5e4 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x50d47939 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x541039de rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6b5f123e rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x76780105 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7fffffff rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x06761e95 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x23ba91f5 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x2d060192 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 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3ea5c26d rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5701c7c7 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x6e98b853 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7de28d26 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fdda4a3 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7fffffff rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x01b8499e rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0b96af71 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x10042d90 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1012541e rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d69420c rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21cfccd5 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26478a7b rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2bdda3ed rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3988f898 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4e93966d rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4ef88d0e rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5103c8dc rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5f6cbf22 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64c165fb rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65af5d49 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6a1f9427 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6cba15b5 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6eca8885 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7fffffff rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x118226b8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3f1a71e9 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x66c8255f rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x7fffffff rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0574d2cd rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x69a57ef9 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7fffffff rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1452636d rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x30dd97b1 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x436e5107 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4d18ec30 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x68030e9b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7216fc34 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7665754c rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7c4c1ad1 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x7fffffff rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2657bf68 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c6fc987 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55c7e20b rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fffffff dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0dd0d4d8 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x107f07bd rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x107f7917 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1418691c rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19294da9 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1afcdd4d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b3b072e rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2e9f1211 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x337c2a7f rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36c70042 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48c151b0 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4bbd280c rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4c141b4e rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x524c3c4e rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x525d6353 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x624fa74f rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6f96e59a rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fffffff rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x036a7a62 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0491a193 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x148f221b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f2c9521 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26a61b3b rtl_get_hwinfo +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 0x2e2bca57 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x34fffb08 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37b993b4 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5248f4aa rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58940099 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x737978aa rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x780199fa rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79dbda3b rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7fffffff rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x26e51715 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6d74c903 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7fffffff rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7fffffff cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7fffffff wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00649a94 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1edf9687 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x213626a5 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x23269974 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29b1ae1c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2df66b51 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x361e35f1 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3bb1d2aa wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3f554a36 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x405021fb wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x414d37eb wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4350fdd7 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a574c2c wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4ca63b44 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x549daf1a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bb5f07f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5c62b497 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cccfa74 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62463be1 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65de0135 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cf812cc wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x729173b7 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73fd888f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x75e1c902 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fffffff wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x17ac1538 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x7fffffff nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x05173d75 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x36e44b4a pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x43c9d641 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x4b045ee8 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7ed952c5 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x7fffffff pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x02dfa7bc st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2effac2e st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2fbc3448 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x362b86bc st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7f5d21bf st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7fffffff st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x261b2f99 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x5dff854f st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x6cd5be56 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 0x4dbf9113 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x51b82f31 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_free_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_rx_remove +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7fffffff ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x268798cf virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x7fffffff async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00899183 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00a8a90d nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0a231c16 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 0x1deac6b6 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1fdf528b nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20879ba9 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x20e7e14c nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2311e5ec __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30d018e7 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3b3db106 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3cc3551f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ebd1c19 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3f2512cd nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41165499 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4759253b nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c203938 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x512df546 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x581d16c9 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5e247b76 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c997c25 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6d93bd6d nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e7caf77 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x738a20d8 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7c2420a1 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7e071d64 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fffffff nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x047947f3 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0e1f31fe nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x70c8f784 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7159b71f nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x75fc7f08 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7c716ca9 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x7fffffff nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x26227c42 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 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7fffffff nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0a9c2957 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1bcbd40e nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x31fb2e4d nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x66b08016 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7461be80 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7a50b392 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7fffffff nvmet_unregister_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 0x7a770606 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 0x7fffffff nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x67c56bb7 switchtec_class +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x03549566 tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x068569c2 tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x39525ab3 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x42da0a4d tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x55acbbbb tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x58e2328b tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x68867f5e tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x6d750edc tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7fffffff tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x19852cbd omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x5577f5e0 omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-control 0x7fffffff 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 0x7fffffff mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7fffffff mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7fffffff mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x23974b72 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x51b5d7cd lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7fffffff cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x7fffffff 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 0x7fffffff cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7fffffff devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7fffffff devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7fffffff reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x7fffffff reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x5092d82e bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x59879e3a bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x7fffffff bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3eea0dcb pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x74006c7d pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x7fffffff pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x07d73425 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x0b48bf3e ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x18c889cf ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x72695648 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7fffffff ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x148c64b2 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6e531681 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7fffffff mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x033ce5d6 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x10551ee3 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x33381b71 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x79ab9837 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7fffffff wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x1075b587 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x05d9f765 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x0610b7a9 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7150dc7e scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x7fffffff scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x02d7da03 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x04dc04d0 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x11c6d490 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x77fe0b1e scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7fffffff scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x71e80418 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x7fffffff qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x7fffffff qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x215201e3 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x35fe00a6 qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x40b189ba qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5d4f6a88 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_deinit +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x7fffffff qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x1482d168 qcom_sysmon_shutdown_acked +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x7fffffff qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_sysmon 0x7fffffff qcom_remove_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x7fffffff mtk_rpmsg_create_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x7fffffff mtk_rpmsg_destroy_rproc_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x7fffffff qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x105b3457 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink_smem 0x72dd75d9 qcom_glink_smem_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x047bf1d2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06546037 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d741383 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0eee5216 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1413ef56 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x162520da cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x264ac683 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2af338fe cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4323e331 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4451935c cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45278a71 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48286c2f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f19caae cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f7e7f76 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x64cfd1cd cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67e350f2 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d84100e cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7efb3f28 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fffffff cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0398242e fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x085c1057 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0e0c5ddb fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2a39ab2c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x39a59a00 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f88c842 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c94fa08 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6398d531 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6569bd72 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6d706deb fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7cc3bb92 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7fffffff fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x35310e71 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x585037e0 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x08b54c37 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x0d4ef44b iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x76616bd8 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7fffffff iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x701b198b fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x052d4620 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x089ba7c9 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x158e287a iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x163011c8 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18479bca iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19be7588 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f1fbe0c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21f93afc iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2398da8b iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x342587a6 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x370b2b76 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40f3ad81 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46f32186 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x505535f1 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50cad8ab iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x529e7c18 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x596224a9 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x597e7c03 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a2b934f iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5f671b31 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64c86d60 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67550233 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x772314d1 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a32ada4 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a9f701b iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c344eed iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7fffffff iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0e3b642b iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2576405d iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32124e4c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e7db434 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43766638 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46d035c8 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ac204ce iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6c78ff10 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e10acb5 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fffffff iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04438717 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0f53194a sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18132c3d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25886998 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d05d83e sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42767a19 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4412832f sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x639dcf0d sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6950fcb8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7579d9f1 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x799e8465 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b4296d9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b56715d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fffffff sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x7fffffff 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 0x035cd919 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x088d67a3 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f942899 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17255816 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17c0cd75 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1f05f4f8 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a8527a3 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b07b7fc iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e2dd077 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f384263 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2fa41055 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3003ad09 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x338f0d3f __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39d40107 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b91ef85 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3c1633c9 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46b5bb9d __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4abfc3c8 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55102d6c iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5595e93f iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57eb3507 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d052435 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d3019ce iscsi_offload_mesg +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 0x76930fb0 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79001aa6 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ced5abd __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7fffffff iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2ce07c52 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5b0030c0 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7fffffff sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7fffffff 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 0x7fffffff spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7fffffff spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x7fffffff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x08ddabfa srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x24240ed7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c46c1a9 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5e01f3e0 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fffffff srp_rport_del +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1601c475 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2e40a83a __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x31e90af3 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7fffffff siox_master_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2a5fd3b4 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x364123bc slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3bfafb1f slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5630a87c slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x565205ce of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5aa39bfe slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5c5f9f31 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d46d66b __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7fffffff slimbus_bus +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x0fc75712 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 0x7fffffff meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x0691d996 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff apr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7fffffff gpr_send_port_pkt +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 0x7fffffff llcc_get_slice_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x03c4bfd4 qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x45e1cd7c qcom_mdt_get_size +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x6f404e33 qcom_mdt_read_metadata +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x7fffffff qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x79581e4f sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x7fffffff sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7fffffff altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7fffffff altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1e55104f spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3711fae9 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x41c4d62e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fffffff spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0c104229 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7fffffff spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x7fffffff spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0df745fc spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1ddbcf12 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1fd3755e spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32b00b5d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3677058f spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x46e48b26 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c7a279e spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5942fd3f spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7fffffff spmi_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x2bb8ef98 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0dea09ed anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x3414f215 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x356644cf anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x7fffffff devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x2894bbe5 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x57d6d42e fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6c25fc83 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7fffffff fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x185a2690 gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x43b97267 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x46b8d376 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x716746b8 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x74cb2419 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7e1edfbd gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x7fffffff gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x16ffe1a5 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2760d86a gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x35c99aea gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x753cedeb gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x7fffffff gb_audio_gb_set_pcm +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 0x7a436cb0 gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x7fffffff gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x7fffffff gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x00824400 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x7fffffff gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x18d956e1 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x7fffffff gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5b62054c adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x11b489e8 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x13597b52 imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x14589337 imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20fdabfc imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x21671e03 imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3ccec22c imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x45266280 imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4c373e06 imx_media_init_cfg +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 0x5fb22ddd imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x6d990876 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7758b481 imx_media_capture_device_remove +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7f5fbde9 imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_enum_mbus_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_enum_pixel_formats +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_get_pad_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_grp_id_to_sd_name +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_mbus_fmt_to_pix_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7fffffff imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x02ef6c7b amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0ff6ec63 amvdec_add_ts +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 0x160c295e amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1738f188 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2f9d76d4 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4aa9b4d4 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x4e5cdf75 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x524bfe3e amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x582a57fb 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 0x60f0a8f8 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6544af93 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6be0c245 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6efdb84f codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x7fffffff codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x23006ccd nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x2e248923 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x7fffffff nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x1ed8271a target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2e95b82b target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7fffffff target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x7fffffff target_queue_submission +EXPORT_SYMBOL_GPL drivers/tee/tee 0x02f734c4 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0576fb2b tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x216563a8 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x28da7f4e tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x329b760f tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3f135c18 tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4196a87b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x4c4af3dc tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x538f785f tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x66d44c91 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6f5bb1d2 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x793427d5 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7fffffff teedev_open +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0d9cc429 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e5aa6b6 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1cbeecfe __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1e308159 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x21a31526 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x267f6007 tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31ca79d3 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x36521060 tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x38f14a35 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x39a6a8d2 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42dfe7fe tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e3603e0 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x64b377b5 tb_xdomain_alloc_in_hopid +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 0x76274acf tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x786d9e6d tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7fffffff tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x01c765e6 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x11a412b2 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2185eb0a ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2254df08 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2b657433 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x389aa182 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3d5491e6 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f15df50 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x47f5f1bb ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4af14f14 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x55ac9870 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a59a402 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6d0a48fc ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7ccdc8c0 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7ee55f9f ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7fffffff ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x777e0641 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7fffffff ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x7fffffff ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3b33fba5 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x62019381 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x78ed4af4 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7fffffff __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x00fedc2e usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x39ef7af9 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x0eae40f0 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2d74cd16 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x385f471f cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x3fd64418 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7fffffff cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0b8d68ea ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x7fffffff hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1932cd51 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x261c7da4 imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x61aaf5d9 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7fffffff imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0deb4bd4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5ffb2f55 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7fffffff ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x05094375 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x130fcccb u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2a6ed361 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3136308e u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x34dda1b6 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5310fd65 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x70f81d00 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x790ebd10 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fffffff u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a06041b gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x286bceb3 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e40153c gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x434c3434 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a349247 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x55d33950 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x73ff1e13 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x746e697c gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c7f6273 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d990e74 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7fffffff gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2b0e69a9 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 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 0x7fffffff gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7fffffff gserial_set_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x12772b85 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x338f98b3 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7fffffff ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1191bddf fsg_show_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 0x1883303e fsg_common_remove_lun +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 0x2f600eee fsg_store_ro +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 0x459cf56b fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5acc43ce fsg_show_cdrom +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 0x777b1442 fsg_store_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 0x7fffffff fsg_common_create_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7fffffff store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0b2f11ea rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x54eb1b3b rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6113964d rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68c5a1f7 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x71ee596a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7315fe3b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7fffffff rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04ccf513 usb_gstrings_attach +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 0x1148eb28 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x12159155 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2660063c unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e9fe085 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f9ad679 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b997e63 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4dc727fe usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x574a00fc usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d38d684 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6516aa19 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6831269c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fa691ec usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6fd6c80d usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fffffff usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0b6469d8 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x21f72491 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x25bd7280 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x47cfd2a4 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x51d93a93 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x59cbbbe7 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 0x67e21ad9 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x76e09610 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7fffffff empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x54a4815c renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x7fffffff ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x7fffffff ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x025ed581 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6b230864 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6e45af39 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6f795b30 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7d2a66d8 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7fffffff usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-am335x-control 0x1d016d84 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6412d5cf isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x629cd9c3 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7fffffff tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7fffffff tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x7fffffff tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x7fffffff usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0c39c54c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0dc76ccd usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x28896fe4 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46a869bc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4ddfddf2 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e26a3d3 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7cd46732 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7d2862de usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fffffff usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7fffffff dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x7fffffff dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x70f07b9f tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x7fffffff tcpci_get_tcpm_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x7fffffff tcpci_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x0b3aa901 tcpm_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3b84657b tcpm_pd_transmit_complete +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x76eeda4b tcpm_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_cc_change +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_pd_hard_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_pd_receive +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_sourcing_vbus +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_tcpc_reset +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x7fffffff tcpm_vbus_change +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x092ff893 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17f4444b __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1adca30a typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b1a05c9 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1f5f0f13 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1fb6f76f typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x20bce648 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x31dade95 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32eecc4f typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f716fc2 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3fc1dfaa typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x407c4ba6 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40ba917f typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40d753e5 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x419fd224 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x471d4257 typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x49d7b3d0 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c5a3b6c typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4eb1275f typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x550ca2eb typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x571e2d49 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c70c677 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x68f2fa2d typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7c3c44bc typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7d5dafe9 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7fffffff typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1e6a6505 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7e7eb148 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7fffffff ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2b8bab5f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x349e39e1 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x41bcba6c usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x44bf384d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4cd779bf usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e51e13b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6c82d69d usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7fffffff usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x228d35b2 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x273d1e41 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2fe3ed5b vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x63febb38 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fffffff vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x2a5578b7 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x16a49738 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0bce8d55 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0fa3ec99 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x13e4bb7a vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2caedbef vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3807be55 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e811798 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x472c803b vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4c474a51 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 0x5209f5e2 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7fffffff vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x332164bd vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x6a60faf7 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x768e8950 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7fffffff vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x56cf9323 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x7fffffff vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x01fb35af vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x027b1f03 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0473d2b6 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x06cfd671 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x08e35eea vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09270c3f vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0fd10c22 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b2b04e2 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25d5cc5e vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x262eb0cc vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2688be00 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a2478c5 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2bee7112 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2de04d24 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x38bb4743 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ce387d2 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40eef6c9 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43df5b47 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4828e95d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5115d6a1 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5147342a vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52d694a0 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5592015d vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56cda858 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6e476d06 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x75f07ee8 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77f990b8 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7fffffff vhost_work_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 0x7fffffff vhost_iotlb_add_range_ctx +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_alloc +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_free +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_itree_next +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x7fffffff vhost_iotlb_map_free +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x073d0f81 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f958dae ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1f0d78fd ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x765cb78e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x79ac0d58 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fffffff ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x7fffffff fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x0fe2aa41 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3545377c fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x19b5ea2c omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x26ad4aa2 omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL drivers/video/fbdev/omap2/omapfb/dss/omapdss 0x7fffffff omapdss_of_get_next_port +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3e9fcaec sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6b7c103a sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1b49b1e2 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2a2bbb8b w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2d0566d8 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x48c404b9 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7413a0a6 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7fffffff w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x406db9d8 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 0x7fffffff dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7fffffff dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2662122b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x468ec2e5 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7fffffff nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0365f249 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x052b8a22 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b42bee nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x086548db nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094a0239 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ada78d0 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c8f05a3 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d3ab922 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f66152a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x148b9a1b nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15dee2ef nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f7b453 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ca1f7d2 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cb1c0ba nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cf12166 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d636340 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e50a99d nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2e82df nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f303755 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c43f8c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x277fb35e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x280b04e9 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29939ad9 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29a4768c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7b118d nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cb995bd __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d4ab94c nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2edfc55c nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x306db4f9 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31e7914f __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32c779fc nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d0795f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3aebfc17 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3df61c4f nfs_pageio_init_write +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 0x4462f826 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e11635 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ad411c nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x475b5026 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x479451f7 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a886ba nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49121870 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a8600a2 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d9c6f0f nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4dbe49cd nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5790a40f nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57d1304a nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59b355a7 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59f0c655 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b2234fb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d88ef8b nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f59df02 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6695f62e nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6718f36c nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68ab3405 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cd64d65 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6cf636a3 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72159156 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7630c547 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x770178d7 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x777fe77a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77eca95a nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79188bf6 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79ccfddd nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a175250 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7125e3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a9bfa82 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ec97867 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f3ee327 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f5e0f19 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fffffff send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x74e44078 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03f17e8b pnfs_generic_pg_init_read +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 0x0d823535 pnfs_generic_pg_check_layout +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 0x112bf52e pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12e7234d pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1418f3c3 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16165dd7 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1da4ae78 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e64425a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2105148f nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22310157 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x263b3e9a nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x267e259d nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28d667fc pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dd02b9d __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e79bf5b __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2eb47c13 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33b74811 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x349e2a63 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36aa9faf pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3a3eab52 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4543e9b0 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x483714c1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x493f0a21 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c42ec13 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f1bd705 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f807861 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50e2c381 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5324a143 pnfs_ld_read_done +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 0x5c043531 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ca3ae2b __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6033212a __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62a4e047 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67aa6101 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x680b4d18 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c24fbeb pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d5f64d4 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f621e0f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7039f58b pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x721f8b7b pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7441a994 pnfs_report_layoutstat +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 0x7b053c14 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bb5ab2b pnfs_destroy_layout +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 0x7fffffff __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fffffff pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1179f7a2 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7fffffff locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fffffff nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fffffff nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fffffff nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7fffffff nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x7fffffff nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0fa708ab o2hb_register_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 0x364f639b o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3a3e6c91 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4c172fc3 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5eec6656 o2nm_get_node_by_num +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 0x7ae85108 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7fffffff o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4d49355a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x753b670b 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 0x7fffffff dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7fffffff dlmlock +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 0x639166bd ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7fffffff ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x01599a12 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7fffffff register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x49512e2f register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x6a5a2364 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0x7fffffff cifs_arc4_crypt +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_arc4 0x7fffffff cifs_arc4_setkey +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x798f3830 cifs_md4_init +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x7fffffff cifs_md4_final +EXPORT_SYMBOL_GPL fs/smbfs_common/cifs_md4 0x7fffffff cifs_md4_update +EXPORT_SYMBOL_GPL lib/842/842_compress 0x7fffffff sw842_compress +EXPORT_SYMBOL_GPL lib/842/842_decompress 0x7fffffff sw842_decompress +EXPORT_SYMBOL_GPL lib/crc4 0x696b3a5a crc4 +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 0x7fffffff des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x7fffffff 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 0x7fffffff poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7bc19e8e notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fffffff 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 0x39a7ce3a raid6_call +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x222c8e7f lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x7fffffff lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x10aa0149 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x5e0eca40 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x63fad110 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7fffffff garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x718d22fc mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7fffffff mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7fffffff stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x244626b5 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7fffffff p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0x7fffffff register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0x7fffffff unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7fffffff ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0f971eb2 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4922ab44 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4f170204 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c72abeb l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x606fb1b5 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7fffffff l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x7fffffff hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a41ffae br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x172aa35f br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x18673e37 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x296408f0 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x35d0508d br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x418dd474 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x60c81dcd br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6916a063 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e128697 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x724de35f br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x77667a4e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fffffff nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x1f41f123 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x52573f0b failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x7fffffff failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0081a787 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0346bc45 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0af118a9 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d2033f0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e87a6bb dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2070b9d5 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x236f3ebb dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a27e407 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x37858017 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c00756d dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x426765ee dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x42caddfe dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x448afd5c dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5159b10d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5587ccf0 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6af05682 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x706e9bd0 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x721308bf dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x74d63e79 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a70d4a4 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fffffff dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0866c956 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x24389549 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x37e19d1f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x39dbb50d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x705d8cfc dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x798ef4c8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x027f893b dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x08d1d75c dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x12429656 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1a2f516a dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1b8b2c2a dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x226e0b64 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x254b66a7 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27151f48 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x29813c54 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x319f16e7 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32f5bdaf dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x44c394e7 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x51a0e82c dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5ff11fff dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x66b3b75f dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x69633b08 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c88b896 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c95f930 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7a7062b5 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d835aa7 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fffffff vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x01124fb3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2b99355c ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7fffffff ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ife/ife 0x04818221 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x7fffffff ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0x7fffffff ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0fd19ddc esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7fffffff esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x7fffffff esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7fffffff gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7fffffff gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1826bd69 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1b3aa56a inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x30926b08 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4052ada5 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x413617f7 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x77cad366 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7fffffff inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x7fffffff gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19e93710 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2704c175 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x468ea1cf ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x493bf5e9 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4d29f917 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x624dad43 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6c504966 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x743d8734 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7fffffff ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7fffffff arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x5a9380d2 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7fffffff nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7fffffff nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x7fffffff nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x1dbc82e3 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x238ea559 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x29072a46 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7fffffff nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x7fffffff nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1685f25d nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fffffff nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7fffffff nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x2fe28995 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x7fffffff nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x01f35ee7 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x22fafc94 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2dba685b tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7fffffff tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a2fcc55 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x219faefa udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5dc29444 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7fffffff udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x38330177 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x49f75e11 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x7fffffff esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7fffffff ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7fffffff udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x7fffffff udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x08ab6a8e ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x0e64c073 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x40d9290d nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x7fffffff nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x7fffffff nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x107759d3 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x21c26a26 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2d419d39 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x56eedce5 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x63805af8 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7fffffff nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x1026d6ba nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7fffffff nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7fffffff nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x7fffffff nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1e2c35d4 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20d1ed77 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23954713 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x53246320 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a42598c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7be2f80f l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7fffffff l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x6b7c61ce l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x7fffffff l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x043a7fb5 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x23ab4624 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x268d26f2 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2aa94031 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2f242071 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4d4ea6e2 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 0x68f2ed28 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6de90c07 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x76336abd ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x792588d0 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_key_replay +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fffffff wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1ce645e6 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1dee4649 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x6cd218d9 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7fffffff mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x16443c96 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 0x23d47eca ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x31c0dd4a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x34637c25 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4742c21f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4c44b3e0 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4da9b600 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5b2e7094 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x752c4f41 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x758062c3 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 0x7fffffff ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fffffff ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x053c1274 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6a6d3a46 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7fffffff register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1d7bfbde nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x39780f3e nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x3b59d62c nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5aba9fda nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fffffff nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x055026d5 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a37a312 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ba8ce77 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bab94cd nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0de1fb51 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x110e5f92 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13361f73 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16dd3800 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f0140cb nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28e8a2ad nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3459643a nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34c58edb nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36bb6797 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3973c07a nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39bff5e0 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3adabd5f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c0faa6a nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d508582 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e28ecd8 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f22f3ac nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x438c9c38 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4612f0c4 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473e385d nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b5ebe25 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ea258d2 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x537aff45 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53ca7615 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57696457 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57e26553 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59c96227 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5aa79657 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cdf57a0 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d618211 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63072f87 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6584ce82 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65aeca6b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6afc4e7d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cb91797 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x742fdd05 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x779e4eec nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d9ed29f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dabf512 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fbccf0d nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fffffff nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7136016c nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x32db436b nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7fffffff nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x56869f8a get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5cdbce07 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6241a09a set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x737fcb0b nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x75c35a64 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7f5ab61b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7fffffff set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7fffffff nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5e53da73 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7fffffff nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7fffffff nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x7122d6e2 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fffffff nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fffffff nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x7fffffff nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x06829d0b nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0b004d48 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x100135b8 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x13a6b0b9 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2298f5d7 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3134cc74 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3f433d6b nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4c7d5efe flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6a5240c3 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6a790911 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x79944e19 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7c61d02b nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x7fffffff nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x03f72557 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x178f78c7 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33702a27 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x43a2d85a nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x450bba2c nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5e576492 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x78a76b5b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7fffffff nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x09d50544 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1e23d69d synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x35165777 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7fffffff synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x16f95cc9 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x17a816c0 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x18507419 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1bacd278 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x228def67 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x241b54d2 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d0f5ac2 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x357c6fe9 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36a14b8d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39df28a9 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a42f5db nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ca7946f nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3e75df08 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x491e3c96 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f00cff9 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f1b780f nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x646c2e2e nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64eca3e8 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7236c12a nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x750497a6 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7a33181d nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7b8ecb7d nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7d2b5b09 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7fffffff nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x10c21c46 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1ee6dfa0 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7fffffff nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x17fd0c7b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7fffffff nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x30a36b87 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x33ede922 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x198a9b97 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3d3efd8b nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x53cf9299 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6dec4833 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x77f64c99 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x041756a3 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x2dbced44 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fffffff nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7fffffff nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00132a00 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x084ff4c7 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2f63dc01 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x31764b11 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f1ef70a xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x798bde61 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f1b2bdb xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7fffffff xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7fffffff xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x7fffffff xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x27a7833e nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x37a4b7d3 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7fffffff nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x02210c9d nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1deddcec nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7fffffff nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x22618ec9 nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0x7fffffff nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x25f00608 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x37af3834 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6df03da9 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fffffff ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/psample/psample 0x4909f324 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x51c72aae psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x7fffffff psample_sample_packet +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x7fffffff qrtr_ns_remove +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0bcaf37d rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0d06fb4a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1330a50a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x1455f118 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1d3ecf6a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x1de465bc rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32e8729f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3c0f6fbc rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3d3c47c0 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x48df80b6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x4b6c982e rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x530dfe66 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x567ba851 rds_conn_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 0x6044715d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6bcc2f23 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x72c6b76b rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x7311a26c rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x747c53da rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7c17ca62 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7fffffff rds_trans_register +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x15a55f7f pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x7fffffff pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7db7d103 taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x7fffffff taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x532c566c sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x53f8ec19 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7fffffff sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/smc/smc 0x02e69fd3 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x11814565 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3f3d0340 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x4b3fce6b smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x5babb137 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x73bb58f1 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x7fffffff 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 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x60817eda gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7fffffff svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0223c49f rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x031c6f33 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03676482 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03b28c14 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x048b8ace svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04a4f76d rpc_localaddr +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 0x077dea19 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x093c44a5 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a4248d8 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a9f5c6b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa0ab03 rpc_exit +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 0x0d0c78d1 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e341709 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea5ccc6 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f65b930 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f7f6627 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fbb0f84 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1064ff77 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x144c3f69 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1500c6c9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x150a645f svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16f1aa49 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1807e7d1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19f37d59 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19f4ebda cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a76c3c4 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ccefb8f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fdf750d auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20f8434c xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2365c0d9 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23abfa70 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23c636ef cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2448cf6e svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x246ea6ea xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2506fb8c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ccfa5b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x269d168e xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27cab663 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28057d14 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2931a8b4 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6727e9 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b20f488 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9ed1b7 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ba3bed9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2d8be2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9ac3c1 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb1b696 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fce415c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f60e8d auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3349260a rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34776407 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34ca4eb4 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38f79a6b rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39a9c562 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ab7f35 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a746185 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb1f47d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc7af38 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d9cfaf0 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40ab26a8 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42ba9ffa xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43d455ca rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45fe61c6 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d7df20 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a6b12ac xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a7b7435 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a8111e0 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9dda8a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bc7cb73 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c06ab23 svc_generic_init_request +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 0x4ed0725f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x502f8af6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5045854a rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5055ba5d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52ea0b0c xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53f67679 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x559b2635 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573b4f94 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x581259c1 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58922ccf xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59fec328 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a0229e2 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c53654d svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dde78e0 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e493242 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f667e0d xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c4b9fe sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x628b34e7 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643f8043 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x654566e4 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a26233 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x688f9546 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6941276e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cbcb840 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1a848b gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f670b36 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70531dbf svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x718ff222 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7242da47 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7301d8a0 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736f9aaf svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74510e24 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d67f10 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76907fbb xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76bab83b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771ac612 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x771c0dd3 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7922a5f7 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7935f0a8 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b13ac93 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b6b3150 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c722bfb rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c81f016 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d59c18d __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fffffff xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/tls/tls 0x0e70deb8 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x7fffffff 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 0x03c650d4 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x09c51368 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e06869c virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1392e217 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x15809dc4 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x235be940 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x24a8ba24 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x31bc2eaf virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37d12b39 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x44f1c7b7 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x45ba642d virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x493d31a2 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x556bbb05 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x56e12c55 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62800633 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x64040f54 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c17e1c5 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7daf0fdc virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fffffff virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x032452f0 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0f03a791 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10e4194f vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1b3eb9f1 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x26543c72 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f4457c1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f58ce59 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x315e2844 vsock_core_register +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 0x4884092b vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4f96f125 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x58e852bc vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x65904f2c vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6ab0898b vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7fffffff vsock_stream_has_space +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16bb0435 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26867d0b cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2a5e62be cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4959424a cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4ef6ec43 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x559fb79e cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69c51f9d cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78964288 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7fffffff 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 0x7fffffff xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7fffffff xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x02191278 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x088a0070 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x327ba555 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7a22150f ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x4a0c7516 xfrm_msg_min +EXPORT_SYMBOL_GPL net/xfrm/xfrm_user 0x7fffffff xfrma_policy +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x7fffffff snd_seq_client_ioctl_lock +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq 0x7fffffff snd_seq_client_ioctl_unlock +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1449a65d snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x39fd6e31 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x29648c47 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4ee66d07 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5c7ddd81 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x72ed8113 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7fffffff amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02a8090f snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04a74386 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c2d05c3 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cb51c35 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0da072ba snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x100c0e87 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x101897b1 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11a9ad28 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1aa1a967 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d465417 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x214050c2 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x21e09bdc snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d51adb snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2767465a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29303d16 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2964d765 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a8d533e snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2acc1ce3 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e1accae snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e96319a snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c5b077 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31352650 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33885f3c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3522514e snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b05f535 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 0x3de38447 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4012e711 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4407ade3 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x496d7d81 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b6a13da snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f3966f9 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x552a8310 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b0bffd5 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 0x5e45d5c8 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e74879f snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e79f44a snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6030b9bc snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x607d420c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61cd16e1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67ac761a snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67ba5a2d 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 0x68914952 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77dfa876 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ba5978e snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7becc3d3 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f7f65ab snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fffffff snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7fffffff snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x7fffffff snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x60962303 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7fffffff snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x045fb649 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x072a47df snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09925130 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bba1d78 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10811506 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x118f2b10 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12430552 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13425b43 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1541e348 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19773a1d snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a8e6c26 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d37d356 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ec43d40 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21ab3ebf snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2396cdc7 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2856a41a azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x293d558e azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b33fcbf azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cf25631 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eed4a16 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x302b135e snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30c12db4 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x353e746d snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35ab2b09 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36b39964 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37218b47 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x378872d6 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3855a7da snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x391dd76b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x393d3d90 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3db4b087 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45150bff snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4595f668 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4597490c snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4687db65 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x488cbc95 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4db406df azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e05b5f4 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f9e38f0 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54f2d4ab snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x556982e0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x558abd52 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56109cc3 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5896e2c8 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d7b07c1 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eea8065 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f0a4708 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x602a1f32 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617c7aa0 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61b02f02 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x642d2751 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66c5f9f3 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ec3be9a snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7165587a snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73214641 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x738586c4 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76339fcd hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x774a7492 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78052f22 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x792b474a snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bccc7ec snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cd55f84 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cfe0b53 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc96b03 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7eb40a4b snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fffffff snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0d8e036c snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1f05f438 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1fb41515 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2113ebb9 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2195daf8 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3b0057b8 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46b4a799 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x553b6318 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5fff6e77 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70de7c4b snd_hda_gen_stream_pm +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 0x78b99e68 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x78c46b80 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7bf13c5e snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7fffffff snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x5b8d0bc8 mt6359_accdet_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0x7fffffff adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x361cdd06 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x312f7de6 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x7fffffff adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0a409b91 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x1ec49f90 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2c47daf0 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x526ed9d2 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5c0fc43f adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x73eb71a7 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7fffffff adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x7fffffff adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x286c49d5 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7fffffff cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x7fffffff cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0f91346d cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1c304f07 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x24c0c33d cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6fdee01e cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x79231160 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7fffffff cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x29e08ea3 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7078f2de cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x182d30c0 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7a172526 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7fffffff cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0e7c5fa8 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x1668b484 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7fffffff cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x286e87cf da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x6914e24a da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7fffffff da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7fffffff da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x44ccd536 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7fffffff es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x517b0dbe lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x5271f607 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x7fffffff max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x0716863d soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x30bb2d7c soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7fffffff max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x5d280ff3 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7a1ab4bd mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7fffffff mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7fffffff mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x2ab717a4 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x594ff60b mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x756bcd78 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x7fffffff mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x6af994ba nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7fffffff nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x7fffffff nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x34ca8551 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7fffffff pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7fffffff pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x337a2979 pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x7fffffff pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x24350b9f pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x7fffffff pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x21e9758e pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x72804ecb pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x7fffffff pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7358d7fa pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x78faaae2 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7fffffff pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7fffffff 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 0x7fffffff rl6231_calc_dmic_clk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rl6231 0x7fffffff rl6231_get_pre_div +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 0x7fffffff rt5514_spi_burst_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x35d25c0b rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x79300d8f rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7b4fa801 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x7fffffff rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x66851928 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x7fffffff rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x6fd2d714 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7fffffff rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x3de0f685 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 0x7fffffff rt5677_spi_hotword_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x7fffffff rt5677_spi_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x7fffffff rt5677_spi_write_firmware +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x27ac6222 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2ea84e06 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x60059f9d rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x64ec359d rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6d75dd13 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7fffffff rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x7fffffff rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x077560eb sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0e42e9a0 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3f1fe2e9 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x47de6dce sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7fffffff sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x7fffffff devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x7fffffff devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7fffffff ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7fffffff ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x60171660 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x7fffffff aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x769059f8 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd-mbhc 0x7fffffff wcd_mbhc_event_notify +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x2f65562c wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x4ecb7cca wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x73f94b51 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7fffffff wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x09843c05 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x17e67c52 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x26174fef wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2fac7794 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4a3a6d45 wm_adsp_compr_open +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 0x593e702a wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5d83752a wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6546beb8 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6840e1a0 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74e356ed wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7fffffff wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1b451061 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x2119ed25 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3bf6dae9 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5283f1b1 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x54932eeb wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6b5f925a wm_hubs_hpr_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 0x7fffffff wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x7fffffff wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x5176c847 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x7fffffff wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0d17c475 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0dccba61 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1356cf5b wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7fffffff wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x44be17f1 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7fffffff wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x234b6a66 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x7fffffff wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0e17d43a fsl_asrc_component +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card 0x7fffffff audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x057ba92b audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x73fe2c19 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7fffffff audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x7fffffff audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x10eb171a asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x329f38d2 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3d5b3007 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x452e28fc asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4bcd73fa asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4ef40eaa asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x54ed5b6e asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x65efe969 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x74441e24 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_convert_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7fffffff asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x02ae7fee mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0410cd9d mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x09f83271 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0ec1058e mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1b7a0eb4 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x206177a2 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x2a808c29 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x31ed1f49 mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x400325b3 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4660ba3d mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4b24c075 mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4efdfed9 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x51904ca7 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x651b72b8 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ba91513 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6c023e1b mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6ccf7715 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x7fffffff mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x72c94d09 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x7fffffff mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x30b16d88 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4771bbc7 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x78128455 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7c27cf82 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fc22fbb axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x7fffffff axg_fifo_probe +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 0x311fa5b9 axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x314f9f02 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 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 0x7fffffff axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x7fffffff axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x1b486632 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x05218640 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x06c3ec44 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x4ca5f8ec meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7e63fb2e meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7fffffff meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x258f8e39 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x283e327e meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x571f3d49 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7fffffff meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x1bc3447e q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x360d666d q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x5b4b85db 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 0x19b85e3e q6afe_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_hdmi_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_i2s_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_port_get_from_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff q6afe_port_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7fffffff 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 0x7fffffff q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_audio_client_free +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_cmd_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_enc_cfg_blk_pcm_format_support +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_get_session_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_media_format_block_multi_ch_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_open_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_run +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_ape +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_flac +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_media_format_block_wma_v10 +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_stream_remove_initial_silence +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x7fffffff q6asm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7e52e977 q6core_is_adsp_ready +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6core 0x7fffffff q6core_get_svc_api_info +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x6b1f91a0 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7fffffff q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x7fffffff q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x7fffffff q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0e765bcf q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0fa3cae9 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1c6a1c03 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2707fe8a q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x366d55ab audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x38546d73 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x46f936ef audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4ab13822 q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5c02794e audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5ecaa3fd q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x681072e5 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6ba55511 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6bbb8729 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6d632f11 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6e2fb8a0 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7fffffff q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x0d89a46e q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x4a40e864 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x7769a5dd q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0x11a44ecf asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x131ec0a1 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x3b98f6cc lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4126db95 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x5330aeea asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x7fffffff asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x7fffffff asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x3775b23e asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x19bcc516 tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0x7fffffff tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x1a0602fc tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x2b69cca6 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x3b1d9461 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x4101e18f tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x7fffffff tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x7fffffff tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x7fffffff 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 0x7fffffff tegra124_ahub_set_cif +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_allocate_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_disable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_enable_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_enable_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_free_rx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_free_tx_fifo +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra30-ahub 0x7fffffff tegra30_ahub_unset_rx_cif_source +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-omap-mcbsp 0x2614b126 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-edma 0x04e59c65 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0x0ec54777 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x7fffffff udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0082eba8 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x31fe4a6b line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3816a766 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3f24e914 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x404b9bf1 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4cc43bd6 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4ccc9356 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5e006513 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x607788d6 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7fffffff line6_version_request_async +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_register_consumer +EXPORT_SYMBOL_GPL virt/lib/irqbypass 0x7fffffff irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0x00047d28 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x0017f48c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x00368e68 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x003ca4da pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x00490c96 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x004b6284 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00529c9d devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0053e821 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0063e47d dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x006b728f spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x007f088e irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x0097bec1 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x009ee238 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x00ab41c7 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x00bd5c4a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00e807fb dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x00eee03f fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x00f55413 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00fcf2dc nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x0115dcf3 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x011fe6a2 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x012103cb da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0127e73c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x012cbf67 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x013bb4ab apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x0144fea9 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01504f1a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x016db70e aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x0171e3f5 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x01856c27 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018f6ddf mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x0191cd43 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x01b016fe mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL vmlinux 0x01bc3456 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x01c308a4 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cbcc9d pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x01d64777 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x01db9cee irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e3af09 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x01f0d5c9 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x020420de nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x022080ef perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x022fcd47 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02418487 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x024b99e8 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x024be55d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0259e2a8 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x025d30b3 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x0260c1d8 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x026ac99e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x026f3380 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02804813 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x028a5ae0 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x02a3994e extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x02aae1a7 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x02acae3e edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02cb4826 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x02d9aca7 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x02ea61a6 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x02ea9e2f __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x02ed05bb snd_soc_component_compr_free +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0312e7b8 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03245641 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x03297499 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x032afb3f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x03315f0c btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0340bc9a elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0348a7a6 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x036d8e9b klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x037017c7 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0371f681 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x037e55b3 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x0387daa6 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0390336a regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03b2623e __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x03c49ae9 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x03ce5e2e device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x03f18087 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x03f469fa mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x0404fbb3 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x0405ebdc snd_compress_new +EXPORT_SYMBOL_GPL vmlinux 0x0406a89e snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x04072fe8 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x0409d06b clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x041e5286 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x04222b0f ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x042eca42 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x043675cd of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x04386c8b usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x04491a9a __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x0464ddf2 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04704e83 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0x047548ad fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x047b52c4 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x047e3566 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x0499c697 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x04a6d5eb of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04a6db5a pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x04ae4635 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x04c0aeb7 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04ccc4b7 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x04cde0f7 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x04d86512 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0501b344 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x05040081 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x05429fc7 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0562bf87 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x05682928 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x056914c1 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x057085b3 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x05749bb2 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x058310bc __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058e5310 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x059bd5de class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x05a12e98 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x05b85325 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x05c93cab __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x05dba0d2 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x05e0c871 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x05e1c53d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x05eb7523 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x05f44942 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x05fceb99 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x060e6464 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x06122337 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x061c0315 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063b55c3 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x06452117 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x064d7a1c ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0655699b devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x0681c03b tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x06899788 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x069b4bec debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x06af4462 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x06b52aec blk_trace_remove +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 0x06d5aba8 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x06dfe7d4 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x06e2ef94 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x06e92aea nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x06e9fd6d xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x06ec30f4 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x070a20c7 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x070bf8b8 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x07116365 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x0713645c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072c1514 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07315125 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x07418f8f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x075764c3 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07721095 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x0775f71b pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x078beeb9 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x07a1b93c devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x07a323d1 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL vmlinux 0x07a77425 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x07a7d67d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07a7e676 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x07ab1100 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07bddb04 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c400c7 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x07e9ee8d tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07ea896c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x07f3a233 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x07f5bfed __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x080096bc tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x0803b39a snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0x080b609b usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081ae405 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x081d42c2 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x08351aa6 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x08382003 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x08393f46 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0849950d rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0855d80c crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x08653478 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x086e51a5 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x087948bb rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088d7a1e sdhci_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x08970d4f synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x08a5b1af rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08b32329 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x08b513b8 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x08d2028e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x08d7a56d ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x08eaccc0 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x08f27347 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09354077 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x093f310d of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x093f6250 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x0946fae3 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x0947d369 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL vmlinux 0x094d61f4 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x09678c13 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x097a2a04 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0989d07a virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x09ae7a5e phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09bafcc0 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x09bb25d2 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x09c06523 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL vmlinux 0x09c273a4 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x09d38c42 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x09db9ab5 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x09dca0d7 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x09dcd2a1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x09dd19a2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x09e53260 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a018261 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x0a0d8137 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x0a3408e4 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x0a3c72c9 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x0a42f412 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0a470b8f sdhci_enable_clk +EXPORT_SYMBOL_GPL vmlinux 0x0a5f4ffd crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0a601a2b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0a6b6096 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6c6ce6 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0a6fcb86 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0a70d45c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x0a71b6eb edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x0a7dc82a ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x0a88cf57 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x0a8af62d crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x0a8c3b4b usb_ep_set_halt +EXPORT_SYMBOL_GPL vmlinux 0x0a8dee5a debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x0a8e1573 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0a9d7af7 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x0aa4d57b platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0ab3f1a9 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x0ab95ade snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x0abe4c6d fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x0acc4af7 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x0acfe2e7 usb_ep_set_wedge +EXPORT_SYMBOL_GPL vmlinux 0x0ade38d6 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0ae556df __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0aea6264 usb_initialize_gadget +EXPORT_SYMBOL_GPL vmlinux 0x0afd6cab extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0affc1e2 snd_soc_dapm_init +EXPORT_SYMBOL_GPL vmlinux 0x0b04404d register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x0b0529c2 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1087b9 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x0b16f43f crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0b19b18f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0b266e64 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0b2970fe klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2fd9ae pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x0b329484 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b3cc5b8 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0b4613fc dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0x0b56f189 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x0b68ce3f hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x0b6bae1b device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0b722a24 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b72a3de snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x0b768480 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x0b7bff03 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x0b8602b7 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0b860770 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0b8969fa dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0b927181 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x0b967ffe __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0bad434b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x0baeeac5 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb73bc7 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0bb797fe sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x0bb99a5a dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x0bba2f21 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0bbb77fc mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x0bc0844b acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0bd78240 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0bda5428 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x0bda5519 free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x0bded385 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0bef88d5 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf523b9 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x0bf7da65 rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bff00c0 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0c1dca0c __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x0c2ea756 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x0c303f52 bch_encode +EXPORT_SYMBOL_GPL vmlinux 0x0c31d608 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c35ac80 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x0c5d22a1 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0c764439 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0c83ddd9 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c892acf usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x0c8fad29 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c8fb946 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0c96434a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x0c9b23a9 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x0ca3f99b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cd7fe8a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x0cde4bdd __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0ce93a3c __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0cfd11ba iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x0d02b4b2 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d1823ea dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0d35b51a srcu_batches_completed +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 0x0d52e134 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x0d83c868 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x0d8b9af9 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d98152f __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x0dad3755 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x0db9ae96 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dd1bc60 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06dea of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x0de2934c sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x0de5be24 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0de909b5 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0df59de1 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x0dfc1003 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0dfd3e25 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x0dfe79b3 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e25be06 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x0e29f9a7 topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x0e3c62c9 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x0e47397b nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x0e48c883 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0e4bdb6a pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x0e579311 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0e58f5f5 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0e5b4975 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e87cd47 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0ed7ab41 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x0edbfce5 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x0edc26c0 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x0ee504fc crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0eeb5417 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x0eefb674 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x0ef5b314 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x0efcaab8 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x0f12ed11 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1cb12f perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x0f2be247 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x0f2da3dc rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f38ad29 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x0f3c520a fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x0f452a47 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x0f49621d cpts_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0f5f71d7 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0f62f5fd badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x0f68a4fd sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0f6a3f32 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f80a5de sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x0fabd7e8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x0fad596b pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0fc06a92 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0fc3f774 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x0fc5a449 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x0fd2d192 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fdaa168 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x0fe3b279 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x0ff0483d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x100359e4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101b84ba cpts_register +EXPORT_SYMBOL_GPL vmlinux 0x1028142b mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x102b6903 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x103235e3 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x1033ce27 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x103a434a ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x103d079b usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x103d08fa usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x1043cac3 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0x105c5c52 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x10635233 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x106ad9e1 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x109b9cf3 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x10acb180 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x10af779f hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x10af8e10 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x10bde107 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x10d1c67d devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x10d24603 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10db65b8 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1101d078 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x1104c4d5 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x1105e4df pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL vmlinux 0x110f34a2 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x1113209a pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x112b07d8 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x114a3740 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x114fe79d bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x11526c9a meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x117f9744 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1183c86c edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x1189a758 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x119225d4 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x119a7b6f inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x11b07abd pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x11b854ee pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x11b8a4a8 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x11c1f345 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e015a4 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL vmlinux 0x120538a0 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x121bc934 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121fd8d8 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x122562b7 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x122be74d soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x12310a75 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x1231219b fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x123354b0 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x12444fa7 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x124a37e8 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126b08cb crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x127ea270 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x128135d7 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x128813f5 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x128af867 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x12931972 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12974f6e phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x1299df71 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x12a64f26 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x12a8afb5 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x12ae82eb vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x12bd96f3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x12c6ba28 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x12cee48a rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x12d90b4d pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1315ae69 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132e005d __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1354fbe1 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x136d7b88 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x137b7c80 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13894710 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139364f0 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x13bcec38 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x13c23cb9 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x13c638ee devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x13d18f4d pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x13d7ae7f ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x13daa83c serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f4605b page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x13fdee9a pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x13fe77d7 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141333fc tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x141a5bd5 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x141f4e4e devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x143c1c7e zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x144d6774 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x145d1eeb gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x14719a23 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x148eaf1b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x14901fad spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x149217ce icc_put +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14ad27ef pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x14ae8f68 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x14b24157 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x14b90ce0 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x14cf7a81 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x14d47507 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x14da76db devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x14dcb473 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x14dd66f7 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x14fe4d41 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x150139ac mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x15093d37 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1512feec crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1524dd4e apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x152bb0f7 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL vmlinux 0x152eb486 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x15301afa fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x153685dd cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15408f9a device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1542d2ef __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x15500829 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x1550efdf inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15645487 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x156a5819 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x156ac10e syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1570e53f event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158c53f8 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x158ee10c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x15923adf register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1593d0f1 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ab2790 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b28e2e snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x15eca580 percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x15f12202 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x15f1f38b debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x15f3bb0b crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x15fbc022 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x15fcefcf ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x160f32b3 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x16132fa2 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x161664be gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x1617d393 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x161a7861 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x162277ff crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x16273d24 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x162b916b snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x16393063 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164e15b3 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x164ea1a1 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x16616a52 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x16643dd7 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x16775772 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167ee726 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x1683b350 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x1690be07 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x169b185f verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x16a2320b fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x16a670a0 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x16a7f61b pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x16ad4bcd genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x16c69fe9 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL vmlinux 0x16ccb00f sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x16cff694 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x16d8951e regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x16d9f9ff pci_remap_cfgspace +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd4c7d nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170e4c92 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x1726753e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1736486e ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x173f3d6d snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0x1744532a dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17537452 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x176058bc transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x176e910e irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x1779aea6 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17a90bfe device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x17b87544 snd_soc_new_compress +EXPORT_SYMBOL_GPL vmlinux 0x17b8cba8 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x17bde396 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x17d2a4a4 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x17d52fcd cpts_misc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x17ee2fae fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x17f9c35a pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x17f9dace regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x18045491 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x1809a3c0 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x1810a81b vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x182665b2 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x182c84d6 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x182e35e6 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x1837c772 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x183898a5 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1844c966 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x184c4716 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1853ce23 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1887584e pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x18886d62 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x189ad408 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x189f6679 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x18aefdfc device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18b71f0c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x18bab327 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x18c0d5a9 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x18c1b795 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x18c9f5f7 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x18e03596 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18ecae59 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x18f59347 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x18fa8c4d pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190a0f49 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x1921431b meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0x194132fa zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd751 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x1964592d fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x1965ccd0 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x196de47f gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x19728f56 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19917c11 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x199cbadb crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x19a141dd usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a4bbc5 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x19a533c9 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x19a67ce2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x19ab9779 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x19b00e22 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x19b1f46f usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ef8aab fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x1a02bc4c tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x1a073a45 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a12b996 of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a19c836 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1a266232 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x1a267fa8 bch_init +EXPORT_SYMBOL_GPL vmlinux 0x1a28032a __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1a2c94eb bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x1a2d16b7 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x1a4a377c pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x1a4cd5be ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x1a4dba27 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0x1a524b58 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1a552842 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x1a63f28b nand_reset +EXPORT_SYMBOL_GPL vmlinux 0x1a65e1eb regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7451eb sdhci_start_tuning +EXPORT_SYMBOL_GPL vmlinux 0x1a768143 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a775b76 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x1a779641 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x1a8086e1 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x1a830f91 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a8f9036 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x1a970b94 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x1aaf8958 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1ac9485d devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x1ad97029 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x1ae88c73 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x1af16761 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x1af1ff4d rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af293e8 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1b0318a3 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x1b04e9d1 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x1b0a6e45 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x1b0cf2e0 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1b3d7326 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b45b8f0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1b4989bc regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x1b49e15a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b553eaa pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8b2e75 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x1b8ba133 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x1b8c03ac virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b94d2a7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x1baa55d5 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x1baaca47 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x1bbd84e3 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x1bbe64b0 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bd88036 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1be02ce0 snd_soc_runtime_action +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf2ce09 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x1c01e03d __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x1c052f60 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x1c0de71c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1c12fcb5 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x1c1f750c dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x1c2e2a71 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1c2e9db0 snd_soc_component_write_field +EXPORT_SYMBOL_GPL vmlinux 0x1c3b5577 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5af644 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6720cf devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c812eab alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c946b4f vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1ca065ef cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x1cab4701 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x1cb306ca driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x1cb8ffc1 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1cbc35d9 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cdf4efb copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x1cea3104 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x1cef9a22 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x1cf56b4c of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cf6e701 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d1bcab5 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x1d1bcbdd device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d25bc06 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x1d27d374 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1d29b9e1 decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x1d326af7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x1d46485e dapm_pinctrl_event +EXPORT_SYMBOL_GPL vmlinux 0x1d4af59f page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x1d57e8e9 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d678a71 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d880975 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1d8a083c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9c724f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1db3c74d kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e042d5b pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e06e9ed rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1e0c304a bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x1e134afb trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x1e18b432 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x1e3a697e strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x1e3b5184 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1e3ef4d9 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x1e4491d7 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x1e47148e tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x1e504d92 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1e530bdb pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5d8792 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x1e618dfc devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x1e6fcefa device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x1e7420f5 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x1e75fdb7 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x1e7849a7 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8f18a0 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e90d1eb snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x1e91bc5c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e9e1c9a __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e9efb66 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x1ea20fdf screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x1ea83718 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x1eaccc00 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x1ead3e62 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x1eb519b9 snd_soc_component_read_field +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebbfcd2 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec6899e perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x1f346d68 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f3f0497 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4704a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x1f4cf05f devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc4a5 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x1f6eed4c ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x1f71f048 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x1f749d7c devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x1f760479 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f85ef1d spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x1f8ea736 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1f8fff99 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x1f98c0b3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x1f99524d phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa65721 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1faa82e6 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x1fb80b89 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1fb88da7 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b38 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x1fca0b71 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x1fcb0bcb platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fcb78ba dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x1fd7a0a5 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff87f9e i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x202a044f iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x20324d48 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x20421b5a get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x2057ab08 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x20663fda split_page +EXPORT_SYMBOL_GPL vmlinux 0x206b46c9 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL vmlinux 0x20771649 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208720db __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x208f8965 nand_write_data_op +EXPORT_SYMBOL_GPL vmlinux 0x20935ea6 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x20a6bd49 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x20a6e133 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x20ab9cae add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x20afad18 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x20c6ad55 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x20d5ac29 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x20d66d2b of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x20f5a0ae devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x2101fb57 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x21072dae pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x21087621 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x21150dcb sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x211f671d fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x212ecd4b of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x21332501 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x21494650 mvebu_mbus_get_dram_win_info +EXPORT_SYMBOL_GPL vmlinux 0x21497d9b bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x214ac3f3 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x214d118c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x214d7a42 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0x214e9361 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x21563e68 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21726652 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2181b0a1 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x21881c76 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x2193b756 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x21a410a1 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a9138a rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bdb7f0 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x21cbc3d0 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x21cc46f8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cff89e ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x21fbb656 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x22046c16 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221f63ce iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x2222b69f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x2238fe9e i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x223f6eb9 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2244633c input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x224594a5 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x224caa5a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x22510e35 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x226ee222 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x228f8275 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x2297a63f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x22a80508 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b448f4 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x22c6c1f3 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x22c7baff bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x22cd7231 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x22d54d6e __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22ef28dd bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x22f13386 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x23003e18 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x2308d372 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x2309efee dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x2311d929 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x231f42f6 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23414501 user_read +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23666d59 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x2368d679 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x236faf53 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x2372d9aa rio_unregister_mport +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 0x23a56fb7 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x23ab97b5 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x23aeb99e sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x23b08f0f regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x23b36693 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x23b7ef84 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x23be8e42 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x23d30575 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x23d8db5c io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x23f50d12 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x23f8663e efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x2407a0bc snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x241b6092 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242f71b6 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x24453713 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x244639cf ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x244ebea8 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x24658a65 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x246b84a4 r9a06g032_sysctrl_set_dmamux +EXPORT_SYMBOL_GPL vmlinux 0x2478fa67 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x2479a52c get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x24863bfc crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e42dc pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x24a89c37 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24af071b devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x24c82133 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x24cdee1b efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x24d06f91 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL vmlinux 0x24d0fd07 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x24d91273 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e102c4 snd_soc_dapm_mixer_update_power +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 0x24f903bd tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x24f9e12e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x24fa6a9d crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24fccc3a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x250b41e1 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x2516bbe8 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x251a170f genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x251bf12a iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x25211324 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x2523086a platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25276be7 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x253152ff stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25533f1d dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x2574c9e8 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x25799722 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x25853d3b iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x258d2583 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25b9ba32 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d0bc23 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x25d34039 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x25d35d2b nanddev_mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x25e8161f tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x25f1047c ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x2602e966 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2613b526 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x264a1b5d snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2664fb50 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2673ccf4 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x26743cb6 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL vmlinux 0x2675849a sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2679b1ba wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26927e2e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x269f7f44 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x26a9b415 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26bca5cd pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x26bcdea1 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x26c04015 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x26c547c0 bL_switcher_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26c56b4a usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cf6a80 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x26d7122d wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x26d80db9 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x26d84c89 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26ee5a05 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x26f84fe1 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x27137015 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x272729ae of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x2734197f musb_readb +EXPORT_SYMBOL_GPL vmlinux 0x273de577 nand_readid_op +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27580ce1 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x2767642b power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x2769b946 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x277fd9e0 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x2781e843 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x2785f9c9 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x278e9ede iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x278f16f2 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2797b492 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x279b373a dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x279f3155 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x27a13dc2 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x27a3b869 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x27b0dc5b netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x27c29bc4 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x27d64673 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x27e767b9 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f5bf3a irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2802246e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2803296d debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x2808b1a5 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28315546 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x283ffe9f imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0x2847c0db crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x284a1761 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x284a2ffb irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28682599 device_move +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x287c45b2 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288ae827 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x2891100b dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x28995681 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x28a7db63 nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28c12054 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x28eb95da devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x28f7df52 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x28f91d04 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x28fcdb5e iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2902f6d6 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2903ed5e iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x29041eaa task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x291123ea __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x291264ea pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x292c0ebb snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x293f10f9 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x2945bc46 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x2946c3a0 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x294f13af power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x295a2670 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295c39d4 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x296f4ee5 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x298272c8 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x29865ca7 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x298763fa snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL vmlinux 0x298db758 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x298dde7b inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29a1cfc9 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x29bb6df6 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x29c409c0 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x29cf2470 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f3a513 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x29f85974 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x29fd5808 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x2a030347 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x2a29acff led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a314a94 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a45281e genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x2a45daaa ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2a533fd4 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a718017 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a732f54 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x2a82a575 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x2a9249bc md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x2a97576b serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ae446a9 pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x2ae4bbde inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x2afe5594 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x2aff9cea sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2b24a3b8 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b506b55 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2b5ddd94 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6274cb is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x2b652fc5 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2b67adad srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2b7d736a mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2baccb77 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bb0845e bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x2bb9f479 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x2bd78488 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x2bdc7c8c xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be5030f copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x2be8182d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2beaf7f5 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x2c01ec93 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x2c072ec4 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2c114ced dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x2c134c2b gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c185b50 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c308a2d da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2c33a504 snd_soc_find_dai +EXPORT_SYMBOL_GPL vmlinux 0x2c399793 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c42ed52 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c4aa63b usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2c509e83 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x2c5e8fee perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x2c60860e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x2c65c19b css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c733614 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x2c764e96 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0x2c767811 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2c7d514e kpp_register_instance +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 0x2c900c0b serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x2c97c770 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca2ef5b rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2cac458c extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x2cb44ea0 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x2cc509f2 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x2cc76742 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2cc80f93 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x2cc84d51 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x2cd4252a dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x2cd7e0a3 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ce9451a snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x2cec4a15 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x2cfa3af9 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x2cfa5ea7 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d01ac78 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2d034595 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x2d0ccbcd sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d24cdc0 of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2d25569d ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d46137a switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x2d521983 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x2d526a7c filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d65a776 sdhci_cqe_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d690212 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x2d7e95ac crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x2d929252 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x2da80dd4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x2daa8696 omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db83013 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2db88076 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2dd068b1 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2df25e9e ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x2df6d649 __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x2df9850e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2dfba337 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x2dfeb3fb hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e083d24 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e18643c unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e398ab0 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e3fdc8a dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2e4261f6 snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0x2e4a9b74 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e55dec3 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL vmlinux 0x2e5c31dc mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e7f94ad usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e8700e8 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x2e8ee58e regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x2e9205fe pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x2e946e1b usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x2e97b40e deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x2e99c68f of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2e9bd736 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x2e9fa875 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x2ea1022b xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2ea5b736 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x2eb3d4b7 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec18f1e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2ed8897f dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x2f0c35e6 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f49020c devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2f497a11 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x2f5cd3dd mvebu_mbus_add_window_by_id +EXPORT_SYMBOL_GPL vmlinux 0x2f63e634 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f759df9 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x2f9dc11e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2fade0be synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2fb02adb metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fbdcbad __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fcfe4dc spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x2fe4fc29 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x3007c57d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3008c43a nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x300a372d devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x301296a5 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3014957c dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x3027a082 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x303982de cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x303be9d8 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x3044f5db tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x3047f190 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x30552355 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x305620d9 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x30588627 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3066750c ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x306e0ac4 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x30748a22 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x3079e6e9 mvebu_mbus_add_window_remap_by_id +EXPORT_SYMBOL_GPL vmlinux 0x308618d9 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x308a302f gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x30964928 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x30a262dc look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30b3b8a9 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x30c5168f genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x30c87d18 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x30caac75 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x30d4e116 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x30d565f2 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x30def34f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x30e641df __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x30e84829 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x30eb4985 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x30ef8161 device_create +EXPORT_SYMBOL_GPL vmlinux 0x30f10002 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x30f5fd8a of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x30f93ae8 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x30ff2fde tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x310101f2 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x31012648 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3107e482 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x310b6270 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x31238600 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x3124c170 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313445e4 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x3135a119 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x31384cb5 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3143a9b1 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3152126e gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x3157fcea devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x31636c79 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x3165426a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x316806a0 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x3170e79c balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x31863bf3 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x318f5573 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3198f0e2 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x319a373b snd_soc_dai_active +EXPORT_SYMBOL_GPL vmlinux 0x319d759d devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31afffdb mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x31b98aa3 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31dd9865 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x31f8db1a __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3204e6de uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x320e2858 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3219b9a5 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32300023 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x323847b6 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x324b798f genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x32580a50 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x325a5e1e gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x325f14e1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x3260d3bd gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32ae76df __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x32b02040 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x32b8f95d fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c78885 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x32cbafc4 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x32cda530 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x32da879a devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x32eee78c devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x33149b2a crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x3328c6c2 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x332b4e9b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x332cf836 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x3335ae32 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3342986e mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3353a4d3 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x335b3eb1 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3372c8e3 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x3376e63c fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x33850ce3 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x338566bb ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x339b5355 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x33a83244 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x33b3b603 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x33ca82d4 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x33cd2cd6 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x33cf3071 nanddev_init +EXPORT_SYMBOL_GPL vmlinux 0x33d30528 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL vmlinux 0x33d8a31a skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x33dd685e sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x33e73297 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x33e9e0a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f1ae37 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x33f3c1d9 mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0x33f3d08d component_del +EXPORT_SYMBOL_GPL vmlinux 0x340adf96 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x3418350b scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x34440804 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x344bd03b devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3461ba36 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x3461e4e6 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x34628ff2 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34656908 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x346f8972 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL vmlinux 0x3471fae8 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x347fb78e tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x34952db5 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x349f917c edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x34a2d86e lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34bf2b54 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x34c9ea64 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x34d02821 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x34d73b91 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x34dad60c i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x34de7c0c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x34e263e8 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3515c195 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x35185ba0 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x351ca590 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x3528b5f4 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x352add12 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3533cff0 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x35374b16 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x35430f8c iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x3554becb ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3559165a snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x35622b6d tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35681ae3 __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x35707839 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x357803b5 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3581221e iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x358a86ab ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3590eaff nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x35a0d817 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x35a93499 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x35af5ed2 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x35d217a1 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x35d81ae9 iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x35f4a8b6 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x35fc9a28 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x360ae071 meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x36152141 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x36226c29 nanddev_isbad +EXPORT_SYMBOL_GPL vmlinux 0x3622990b mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x36235725 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36356eda tegra124_clk_set_emc_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x3637c9fb set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x363df4d6 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x3640f0cd usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x36547816 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x36709748 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x367feb96 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x36916b3d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b71eda posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x36db4c6e rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x36f6608b inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3723e71a spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x372ed98f __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x37377134 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x373af281 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x37595cb3 meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0x3768c394 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37743b64 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3774a422 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x37773856 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x377e9ac0 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x3787ca94 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x378940d3 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x378c74a0 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x37be2eca null_dailink_component +EXPORT_SYMBOL_GPL vmlinux 0x37d0ce34 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x37e3010f proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x37f50b89 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL vmlinux 0x3805ca33 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3815b8f9 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3829998f switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38413a6c max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x38443526 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x384da78e regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x3871aec7 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x38817808 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3887a1a4 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38ab67c8 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x38b2c7b3 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x38b97009 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x38bcbc5e fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x38c02ab0 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x38c0c9e4 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x38c474a5 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x38c9f0de regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x38d7083f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e3bc1b led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38eee643 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x390265aa ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x391c3abd mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x391f7399 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x3924cc8e regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x3959c5d0 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x3966730d do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3966f65a __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x396a7588 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3977ae79 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x397dc241 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x399d19da del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x399d73d1 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b2cb00 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x39bb52c5 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39d392b0 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x39d4efbd thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x39d857b4 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x39dbe224 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x39f1aa07 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x3a14f027 sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3a1ff8d3 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a560cd9 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a60053b virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x3a75d34e tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3a977828 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3a97cc6b nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aaec1c2 musb_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x3ab70944 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3abc1bef rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x3ac68f5d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x3acc14e8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aced81a ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ad06875 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x3adc5642 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3aeea589 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3af2532f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x3b01bee7 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x3b0714f7 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x3b07572a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b08a01d rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x3b193fbb relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3b217f36 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x3b28d1bc register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x3b490649 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b59596b of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x3b97cbef xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3b9aaaf7 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x3baaaf5d xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x3bb1623e l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x3bb7a54c led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x3bc55f7f phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3be0b2c5 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf1f2d7 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x3bf39aa7 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x3c07ecbb genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x3c0d27d6 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2168a9 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3565f9 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3c38a5fd nand_prog_page_op +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c454317 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x3c56b055 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x3c58c7b3 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x3c5b0875 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x3c61ee30 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c72724e usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3c779d83 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3c841e2f nand_read_data_op +EXPORT_SYMBOL_GPL vmlinux 0x3ca2e3c3 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x3ca6ca1c bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cac58d3 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x3cbb7138 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x3cc01f09 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x3cc404de snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd7e6a4 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x3cdc3a6c serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x3ce92820 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x3cf00f4b mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0x3d0818ac nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3d0a799f crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3a96fb espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d564371 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x3d625ad0 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0x3d6bd359 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x3d81d21c usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8f155f extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da2eb73 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3da67968 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x3dae9adc regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3db48a49 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3dc1b851 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x3de7f128 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfaf3e2 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e06f687 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3e0d4cfd device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e48ca3a snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL vmlinux 0x3e4aa0f7 device_register +EXPORT_SYMBOL_GPL vmlinux 0x3e4f36f7 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3e5d06a6 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3e5dc1e5 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x3e617eb2 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3e6705c7 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3e6c331e debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x3e6cf380 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e79e6b1 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x3e86f6cd set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3e976334 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x3ea06a7b gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3ead4253 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x3eb8bf1f snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x3eba9463 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3ec3cba3 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x3ec40239 idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x3ec818f2 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x3edd986e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3eeba03c __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x3eef468c devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f02eeab dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x3f060887 __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3f21e4c5 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f499adf nand_status_op +EXPORT_SYMBOL_GPL vmlinux 0x3f4baa11 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x3f4c1718 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x3f57ab54 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x3f5aa3b5 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x3f670866 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x3f6eda3a crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3f7afcd1 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x3f842366 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3fac687e __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3fb040e0 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3fb4ec2a devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x3fc0391f ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x3fd6e897 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3fe670b3 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffa3eda iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400bbc67 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x4016bff6 nand_read_oob_op +EXPORT_SYMBOL_GPL vmlinux 0x402641e1 musb_queue_resume_work +EXPORT_SYMBOL_GPL vmlinux 0x402c2ee8 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x402c48c8 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x40301553 get_device +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40530715 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4058b05b __virtio_unbreak_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 0x4071d326 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x4076a5e1 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x407ba06d regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x407fe4b9 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x4082f95f pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x4083fb81 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x4084366c pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x408cc6f6 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x408fbbfc gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409fd637 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a48abf devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x40a84cfb crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x40bd7616 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x40bfc4fe fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x40c3c8d1 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x40cc0cef phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x40d72754 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x40d8a27f mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL vmlinux 0x40e87d86 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x40ecda45 vchan_find_desc +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 0x4111cb0f mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x41133c3e sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x411fb07c __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x412b7bfc fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412ce80b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x412d54be ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x412e1d4f led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x4135ed2c dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x413976e8 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x4139b9a9 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x413a90e2 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x414538e6 synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x414b2f0d devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x41509fe8 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4151860b devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x415319c8 __kmap_local_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x4164b0c5 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4165a42d ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4169549f mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x41698604 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x416d7173 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x4170f4c2 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41873d9c wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x41884098 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x419464a4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x41960869 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41aae3ff xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x41b4dfb8 mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41c30f3a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x41ed0bc8 of_devfreq_cooling_register_power +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 0x42044b4a dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42096ec0 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x420d5ab8 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4224397f crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x422ee124 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x422f5379 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x423c8a85 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x423ecea8 register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x4243b924 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x424af2bb device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4266b5e4 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429d302f debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x42ac8c27 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x42ca26ec crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x42cc582f snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x42ce6c44 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42d1d2dd handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x42e7713d usb_gadget_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42eb5735 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x42efb127 nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x42f4ac3e vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x42f52ed5 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fd1106 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x42fd1ea7 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x43039a44 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x431303e9 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4347651b gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x43478e62 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x435fddb8 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x4360b962 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4372f3c2 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43a3a057 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b1e9ce pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x43c77179 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x43cca2d8 reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x43dfd261 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x43e53806 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x43f0df98 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fafafa sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x43fd6520 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440386d7 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x440a66fd usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x44219817 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4425918d amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0x442de496 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44398199 mvebu_mbus_del_window +EXPORT_SYMBOL_GPL vmlinux 0x4439bcd2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x44417e13 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4459d6e1 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x445dd246 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x446ed9e4 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x447428d1 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x4482569b scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44935150 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x44a40581 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x44b20254 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x44b83e00 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x44b85995 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ccab91 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44f09c9b __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4516cd46 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x45172d64 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x4519355e devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x4533a143 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x45341779 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x4548f87e dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x454f0e96 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455ceab2 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x456512d6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459a2a9c task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x459f9ebd devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x45be577b xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x45c2c5fd ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x45c769fa inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x45c7c5a7 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x45d07221 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0x45d7eb92 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x45daaa46 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x45dfa533 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x45dffd2d mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL vmlinux 0x45e40d9d of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x45e86b1e ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x45f8e322 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x45ff8535 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460d8ef5 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x46127fe1 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4613bcc8 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x461c5232 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x4622a6c5 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x4622c8c4 component_add +EXPORT_SYMBOL_GPL vmlinux 0x462e238d mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0x46300e95 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x4633762b tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x464269f8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x46486982 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x4658c0e4 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x465f74d7 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x46621327 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x4665e2fd tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4685102f sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a60ca1 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x46af42b8 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x46b2088a devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x46b7f9af transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x46c06c19 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46ffd4ce ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x4711b7eb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x471fd98d irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47293792 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x473113b1 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x47317949 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x4733a959 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x4737aeba component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x473d35e0 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47715809 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x478370f8 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x478f4996 __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x47925794 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x47937669 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a3597c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47abbae7 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x47b40935 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x47ba9db3 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x47c80836 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x47d04381 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x47d87b85 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x47dbff5f snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e58052 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x47ee6060 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x48020c1c irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x48023ed1 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x48031bc0 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x480ef8f0 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x481fde60 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4823f78f bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4833db79 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x484779ef __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x4852a839 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x4855c737 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x485ae717 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x486ba5c2 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x48770e34 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x487f352c gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x487f8b0c hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x48805086 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x48936076 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x489441af pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48ac05d6 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x48aec276 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x48b2055b __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48d00541 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x48e38783 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x48f7887e sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x48faef62 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x49000ee8 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x490a4f29 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4912272f irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x492e16f1 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x49326ef6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x493f7faa dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x49434a19 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x494fceb6 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4950c0a3 mtd_pairing_groups +EXPORT_SYMBOL_GPL vmlinux 0x49604033 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4965a9eb dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4974770f crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x49830f0e __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x4988c090 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499b6425 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x49a7935a cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x49bc272e srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x49c17135 rio_mport_write_config_16 +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 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb7c91 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x49fe3ebb sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x4a02dcfa regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x4a0c14b0 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1efe75 meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0x4a28c82d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x4a2c9ad8 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0x4a2f3ae6 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x4a31f380 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x4a33506c usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL vmlinux 0x4a53b680 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x4a81061b mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ac3d523 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4ac77b9a mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ad26019 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4adf7fad attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4af190ca tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4b0d1cbe fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x4b3012db kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b638bee wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x4b6bddd4 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL vmlinux 0x4b6c9dcd pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x4b76eea7 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b7da13d sdhci_cqe_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b893cd8 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x4b932844 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x4bad94f1 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x4bb7e755 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4bbe2cd1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4bc19fac power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x4bc8bcd7 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x4bce41e1 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4bd465c6 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be555fd usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x4bfa2aa0 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x4bfb051c mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x4bfcb8b5 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x4bfce8b6 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x4c1a40d6 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x4c1e95ea mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x4c234129 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x4c3e86a4 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4c3feac4 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x4c507391 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c649a27 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x4c67e00a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x4c6cb562 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x4c70bee1 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x4ca04c5d phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x4ca78fd1 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cc1043d __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4cd3d39c uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x4cd9e20f of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x4cda2605 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x4ce9aaba mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4cee2c75 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x4cf24332 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4cf90ac2 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4cfbbcaf usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d07863b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4d160fdc devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x4d179c77 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x4d185248 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4d23dded rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x4d281278 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d44323b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d57fd60 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x4d60bebe snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x4d679e3d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d8c5b96 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x4d8e0810 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d951919 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4da35620 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db0362c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x4dc62423 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x4dd22feb blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de0b1d1 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2381e register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4df09e14 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x4df4738b fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e02d5c8 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x4e28d1b9 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e2de395 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4e4a667c cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e58bb5a mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x4e5924bc bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4e5afd6f iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x4e761b25 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e7ae288 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x4e83a4c9 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e84cc7e efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x4e918404 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x4e9413d1 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x4e9bd8eb imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x4e9f0448 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x4ea68ea5 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4ead9601 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x4ebbde62 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x4eca8f8f sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x4ecae4cc rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4ed96ca4 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4eddd2fe tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ee7da50 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4eea67fe page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4efe6765 mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x4f0a83da da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f203b1f subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4f221155 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f3ba219 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x4f423721 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x4f57fe06 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x4f5fb849 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x4f5ff5fb device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x4f65004b raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6e0f47 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7de20b sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4f867b0f regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f870510 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4f933eb0 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x4faa17ba sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x4faf0b34 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4fc648ba nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x4fcce6c3 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff4345b __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x5002bec0 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x5008239d filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x500c1e94 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x503eeebb synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x504886e7 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x505a7119 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50647fef ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x506a1641 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL vmlinux 0x5074416c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x507f6f58 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5089b07d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x508afef4 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL vmlinux 0x50c25ae5 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cb9fc7 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x50d3e808 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x50e07de8 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x50e4a460 pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ec12d9 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x50f739a1 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fbee77 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x51153b89 __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x5115aa1d folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x511e95d1 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x5122e6fa thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5128b9b5 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5142f49f dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x5147593d kick_process +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x516012cb mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x518e232d fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519c2d75 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51aef14b extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x51b546ed of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x51b6d6b2 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x51d1deae virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x51ec767a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x51f0ed35 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x51f1af27 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x51f5cde9 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x52045600 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x52066243 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x521ccc47 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x52228515 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5229242d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x52327169 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x5235c909 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x5241954d da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x5261322c rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x526448c5 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x52890d56 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x528b390e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c995f4 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x52d39e69 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52e403f4 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x52e5b461 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x52e67eb6 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x530ac2e2 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x53139af2 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5317a243 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x531b7bb8 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x53247c17 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x5324cf26 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x5325db23 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x532db355 usb_gadget_activate +EXPORT_SYMBOL_GPL vmlinux 0x5339362b nanddev_markbad +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53640494 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536fe2ba regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x53851023 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x53893491 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538f92c2 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x5390573b vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x53933778 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x53a022da mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x53b2a50e dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x53b6b034 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x53bbfe02 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x53bcc5e0 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x53bfc903 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x53cae3c2 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x53cb3f73 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53f6993b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x53fc054f nand_prog_page_end_op +EXPORT_SYMBOL_GPL vmlinux 0x5411f4e2 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5412abfb cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x54172702 cci_disable_port_by_cpu +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541dea7a __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x5420ab42 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x544057f5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x54546575 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5481e092 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x548c407f public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x549348c9 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5497e121 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x549a0c65 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x549f0dd3 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x54a2052c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54a6af82 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x54bef728 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL vmlinux 0x54d4771b snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x54e65b74 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54eb7c38 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x54f32d4e devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x54f869a3 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x54fa030e relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x54fccc40 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x550ff360 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55391052 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553bdf77 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555a873e usb_gadget_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x55650dcc rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x55694359 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x556957f6 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557b9ee1 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5585f858 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x559bb136 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x55b257f0 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d328d2 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x55e121d5 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x55e49cb2 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f549ad snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0x55fcc24b devres_find +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560d9088 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x560f2050 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x561150c7 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x56143cfb pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561835eb init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL vmlinux 0x5633c0c0 sdhci_calc_clk +EXPORT_SYMBOL_GPL vmlinux 0x563aecd2 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565b7b65 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x5666334c tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x567128fc device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5674bf7a mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x568020d0 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x56872fae udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x569094c3 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x56a6a76c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56be99f2 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x56d46c9d efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f800e2 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x56f95657 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x56febff2 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x57019778 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x5705076f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x57092750 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5736c7e4 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x573bf724 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x573f376d exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x57426ae1 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x5751bba0 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x5753ff8a udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x57878765 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579622c0 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a231cc usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x57b02330 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x57b22d84 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d516fd inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x57e1d030 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x57e5951f cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x57f061b1 nand_change_read_column_op +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fbebd1 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x580b8f2d __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x58122307 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5813a33c ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x5827ca8d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x582c43cd sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58329902 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x58425747 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x58642d52 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587ac04d cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x589ab91a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x58c1ece8 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x58d1eb9f led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f0308a clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x58fdbd7e snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x590fe3e2 cpts_release +EXPORT_SYMBOL_GPL vmlinux 0x592987ae irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x593f51a4 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0x59413a9a sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x5947ca28 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5954a3cc extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x59551cc1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x59593d4c edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x59610834 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x59664f2a of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x5979e084 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x597a86f0 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59908e16 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x599c13de xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x59a1fab8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x59a35603 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x59a471b3 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x59b5def6 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x59b7a75c usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c5b251 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x59ca83d5 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x59d2c48c disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x59dc01b1 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x59de5c00 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x59e49fb0 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x59e7313e __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x59e76b08 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59ff17fc dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5a0d932c fork_usermode_driver +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 0x5a368f9e wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5a4345cc devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a557da3 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x5a60d70e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7096e9 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a87a75d pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5aa0a9d9 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x5aa7e5de cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5aba5756 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x5ac84d00 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ad32b68 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ada9bea snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x5adf6019 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5ae83c07 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL vmlinux 0x5afb591d dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5afcd632 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x5aff26ff usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2dce8d __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x5b316080 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x5b3bdea8 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5b41f5b5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x5b4957c5 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6c4eee perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x5b7c1604 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x5b7ca1f1 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x5b7f557a mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL vmlinux 0x5b82d911 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b90c85b mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x5b96e5ae __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5b994e71 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x5b99e19c devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5baacb5d devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x5baebbd9 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc16c6a __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x5bc950fe regulator_irq_helper_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5bcc0df7 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5bcfefcb nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd52ecf usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x5bdae35b usb_phy_roothub_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c0cc9ae crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x5c12bc29 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c15202d __put_net +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c683a94 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x5c70942f phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7d7c09 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c845f14 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x5c84d1f6 mvebu_mbus_get_io_win_info +EXPORT_SYMBOL_GPL vmlinux 0x5c8cb7b8 dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x5c9643b6 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x5c98e7ae regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x5c99d54e edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0x5ca01320 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ca04770 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cadaa15 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x5cb306c7 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x5cc2a511 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x5cd34a6a usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5cd550a5 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x5ceb9748 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf2e983 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5cf4466c xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x5cfb6c6d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x5cfbdd42 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d00452a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5d0a0eff __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5d0b42ef pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x5d113e45 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5d1241fa virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x5d297356 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2f81b3 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5d30efb4 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL vmlinux 0x5d340077 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d6b6eec of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x5d6fd72a sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x5d82a5b8 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d89209a __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x5d90280e pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x5d99a006 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db4314f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x5dbfe8c6 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x5ddcc44b snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5ddeb867 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e00ea33 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x5e04f5bb usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x5e14e6b6 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL vmlinux 0x5e272913 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x5e39bada debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5e3e16fc sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x5e49f43e vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x5e4d54f1 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x5e504919 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5c8a1e devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x5e5defc3 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x5e5ff0d0 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5e60e0f7 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x5e67b71d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0x5e70aabc __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x5e76ea21 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e78b7ff device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e957966 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x5e96e614 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x5e9d6c68 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e9d93c5 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x5eac2981 mtk_clk_register_composites +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 0x5eb9c2ae __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5ec2319a mtk_mutex_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x5ed433b1 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x5ef1787a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x5ef751ea nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f26fb96 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5f288f12 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f736e1d md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x5f755b70 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x5f7f9d85 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x5f8b0c15 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f8e17b2 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x5f9b873f mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL vmlinux 0x5fa00f18 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb1aa4e irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x5fc70474 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x5fd11da3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5fd249c3 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x5fd4eb67 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5fe12e23 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x5ffe9aa7 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x60036b08 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6003d485 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x60054c3a dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6008c91e platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6011eb03 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x60300d22 mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x6031bc0e usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x6040a708 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x604172f4 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x60606431 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x6060ee96 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x60618e14 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x60671345 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606e4327 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x6085843b dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x60905a00 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x609156e9 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b5c0cf snd_soc_component_compr_open +EXPORT_SYMBOL_GPL vmlinux 0x60b82b56 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x60bb3d2b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x60c90f8f crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60fbf27b regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x610cb644 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x6123b73a regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b7977 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612df3d1 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x613048cb gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x6132f0a0 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x614782f1 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x616efba7 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x61806d0e serdev_device_open +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 0x619e149d crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x61a5d010 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x61b9ca06 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x61bd69bc platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c2a859 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL vmlinux 0x61e5bcaf sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x61e6f3f4 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x61ee7dc5 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x620571f1 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6206caa9 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x621eb946 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x6221be57 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6225fd0e nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62314390 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6249d94a of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0x6253c932 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x6263b94f snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x626477d6 pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x629abb7d __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x62a8d704 md_start +EXPORT_SYMBOL_GPL vmlinux 0x62a9c1f0 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bf7476 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x62c33f00 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x62c75b99 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x62d0e2a6 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x62e7ec29 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x62f2ff63 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x62fc2fc3 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x63090722 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x6319eeee blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x63372a0a scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x6337d46e disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x633cb2c6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x633df511 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6352b809 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x635a115d paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x637c1a8d unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x63808708 xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x63826508 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x63880f81 musb_set_peripheral +EXPORT_SYMBOL_GPL vmlinux 0x63a03424 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x63a8ebf4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x63adbf92 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x63afc309 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63bd2462 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63e18c64 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63e6c1e8 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x63faf641 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x63fcf4a8 mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6410bac9 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6429e474 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x642ea52b fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x64334fff kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x643d29d1 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0x644bfdcf trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x64533940 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x645bc78f irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x645f6ca7 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x646f91ec file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6475494e skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x647d7aec regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x64881579 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x6499ca92 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x64a2c7e7 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x64b6de2a __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x64c07d32 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x64d4cbbe crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x64dccc4c perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x64e0e2ad pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x64e13ca7 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x65227701 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65406698 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x65506d3f dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x655f84b0 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x656f1abd dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x65733cd2 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x65770d7a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x658d603f crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x6590608e fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x659fd0bc fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x65b51d7d rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x65bee259 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d70f8a pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x65de6933 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6607af47 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661a2d4d anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x661aa877 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6628d69a dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x6629110a shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x6632b327 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x66424e94 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x66485c46 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x66655fc6 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x6679057f sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x66826357 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668ee402 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL vmlinux 0x669af8cf device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x66ae0d7e dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c9cf69 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66db6849 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x66fae962 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x66fc2bc0 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x66fcab8d dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x6703903b register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x670ac6af gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x671451cb mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x671dab40 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x671fe9fe kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x672614f8 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x672dadeb nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x672eab14 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6740280b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67465e57 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x674e461d irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x675cf4d3 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x677095b8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6771590c blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x6779ca8f devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x677bb069 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x6781513c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67987265 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x67a359e0 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67b2b8f5 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x67da5581 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x6803604e rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x680657dd usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x6807309c ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x68076a28 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x68144de9 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x6824d60a iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683b8ffe cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x683c688b mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x68497666 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x685acc6f blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x68667c35 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x68758502 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x68758fda nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x6879c927 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x687fca31 imx6q_cpuidle_fec_irqs_used +EXPORT_SYMBOL_GPL vmlinux 0x6891880b cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a0dfd2 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x68a2393c snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x68a5834a crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x68ae2d43 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x68b1cc59 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x68c97fde of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x6909af53 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x690e42f7 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691156ce of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x692a4f08 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x69386db6 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x693af88b gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x693d310a extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6945725e mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x6948e56d usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x694e99a5 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x695269e7 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x695bf5e9 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x695e979f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x696e5f43 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x696e86e2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x6977917d devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6991d668 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x69921935 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x699985fa netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x69b343d3 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x69b5b5a2 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d28eac mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x69d6a903 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x69e21500 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x69e24514 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x69e452e9 kernfs_get +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 0x69f31464 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x69f32c34 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a140b70 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0x6a1482d7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x6a1cc520 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x6a22331e imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x6a29e5d2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6a367b0f scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5b025e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x6a6af426 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a6ecf9a iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6a727bee sdhci_switch_external_dma +EXPORT_SYMBOL_GPL vmlinux 0x6a99427d extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x6a9b3891 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x6a9b9280 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x6aa59962 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6aa5e412 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6aa8f819 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x6ab3729c gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6ab8ef18 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ac7a81f nand_select_target +EXPORT_SYMBOL_GPL vmlinux 0x6ad90385 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x6ade1c95 snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x6ae8101b clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x6af67da8 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x6b06ae8b sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6b07829a fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b27cc80 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x6b334acc trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b490440 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b69fca7 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6b70e0e4 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b85e03f devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b8aeeab ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b8dad26 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x6baa78da __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb04338 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6bb43837 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6bb95287 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6bbe7a01 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x6bc31a18 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x6bc357f2 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6bc60609 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x6bcb71d7 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bdaf213 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x6bdd680c snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL vmlinux 0x6beb97b0 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x6c1856d2 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x6c2fcb4b create_signature +EXPORT_SYMBOL_GPL vmlinux 0x6c375e09 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c43b737 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c525118 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6c52b730 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c54d663 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x6c5534e5 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c615b7b __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6c70332d crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c8610bc skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6c965533 omap_iommu_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caaf9f4 hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6caf78de blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x6cbdd644 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x6cd17e49 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x6cd414bd ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x6cde1165 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x6cf45608 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x6cf77689 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x6d003643 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x6d023263 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d4d4cb3 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d579600 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6d5b8219 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x6d6b0f98 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d6b2e0f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d73bfa7 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d804475 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x6d833417 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6d911630 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d9149ee dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x6d916c6a nand_ecc_restore_req +EXPORT_SYMBOL_GPL vmlinux 0x6da4b901 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbc4617 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6dbdc3b0 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x6dc43f43 imx6q_cpuidle_fec_irqs_unused +EXPORT_SYMBOL_GPL vmlinux 0x6dcc0df9 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6dd1b8a7 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x6dd1d64a snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd627f1 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x6de0fe45 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x6de42f0a inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6de9458a snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x6dfbf3bd tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e031aa5 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e1e56e8 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6e2a6fda ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x6e2bfea9 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e42c2ba device_del +EXPORT_SYMBOL_GPL vmlinux 0x6e51e2ca ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x6e635087 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e6368a3 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6e679321 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6e683693 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x6e6ac389 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6e6bd447 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e6ea796 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7a48b4 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x6e8446db snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x6e85962c of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e92acfe icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x6e9316ea wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x6ea600d7 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6ea84d92 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x6eae6749 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x6eb15d9a devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x6eb61294 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6eb614db of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x6eb88cc8 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec43206 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x6ec72d0c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ee990d1 lpddr2_jedec_manufacturer +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f031ff9 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f094449 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x6f0acb76 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x6f1216a4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f149467 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6f18cdbf disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f354641 nand_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6f3ed2a3 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x6f4873b9 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x6f48ecd6 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x6f490b43 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x6f592b49 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x6f611bc0 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f725de8 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL vmlinux 0x6f7a4861 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fafe53c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x6fb7e313 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x6fbaed3c dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6fcd8a13 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd3cf1d usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x6fdff7fd simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6ff4e396 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x7010df94 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x701c2a7b pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x702151b1 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x7022806f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x70240944 clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0x70336436 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL vmlinux 0x7039b8ef alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x70499642 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x704b440c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x7057d8c8 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x7064a796 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7084edd1 nand_reset_op +EXPORT_SYMBOL_GPL vmlinux 0x708ca813 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x7093caaf md_run +EXPORT_SYMBOL_GPL vmlinux 0x70990689 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d24479 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x70e24953 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x70e82e5e register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x71018320 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7104cb0b dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710cff13 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x710df87b acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x710ed2eb ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x711ac047 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x712e2d9e skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x713e1cea raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x713fa43b serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7141696a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7144aad2 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7145544f mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x7150e99c dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0x7156caf1 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715a4f37 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169c204 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7173250b __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +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 0x71a8fca3 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x71a97c1b policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x71a9a3ab mtk_mutex_acquire +EXPORT_SYMBOL_GPL vmlinux 0x71ac8817 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b8eb73 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x71bbea02 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x71be933b dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x71c0c4a7 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x71c2cbe8 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71e436c9 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x71f522a4 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x71fe89ec dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x72010495 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x721ba9b8 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x721bc04d usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x72338d93 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x72364bc1 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x7236bdf8 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x723c6e4c cpts_unregister +EXPORT_SYMBOL_GPL vmlinux 0x723e8513 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x72459bdf pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x724ab555 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x725dcbdf dst_blackhole_redirect +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 0x728437e5 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x72885b48 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7290212d crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x729dbe6b sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x72b299e1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0x72be62b1 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72daa924 usb_gadget_connect +EXPORT_SYMBOL_GPL vmlinux 0x72e9bd78 put_device +EXPORT_SYMBOL_GPL vmlinux 0x73041aba irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7311d81e tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x731b5896 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x7335912a cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x7348293b edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x734f341b sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73547b88 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x737010f1 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x7382962e dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7384723e usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7387b4d4 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7397afe5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7398ff35 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x739c5107 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ac1358 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c93a88 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d210d9 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x73e6697c serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x73eaa81f of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x74145989 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL vmlinux 0x7419a9e4 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x741cccc3 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x741f9c57 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743cc2cf blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x74445267 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x7447fd89 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x744ecba7 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x7451cac0 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x745c2f3f regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x746eba66 mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x749391fb serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x7495ef52 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x74b3419a bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74b706ca gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x74babf8e sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bd10e0 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x74cf8767 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x74f017e9 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x74fdf865 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x74fe65ee fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x74feb0af vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0x750099d1 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7503d761 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x75116c97 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7513b5ec __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x751a8e37 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x751f2081 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x751faf9e pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75293cd7 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7533047f devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x755ae3c8 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x75624e39 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75a49b34 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x75aa74ad dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x75ac0015 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x75acca1b devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x75bf6cc0 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x75cc637b nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75dee61c of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e94d85 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x7600b45a iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x76096b7b blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x7612f41c sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x7618643e led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x7625f804 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x762a8119 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x7637c5fa folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x763a90aa srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x764170a5 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7669ff05 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x766c8ff0 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x767ca69a usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768da472 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x76945c62 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x76b29892 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x76b961f1 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x76befb68 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e10a88 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x76e89e2c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76eeae93 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76fba120 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7700f288 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x770834ed fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x771dfcee cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x771eae71 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x7725a0ec of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x77377b12 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x773c685e usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x7740b989 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x77428b23 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x774efaf8 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x77511ff3 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7761cb34 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x77701482 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x777f806c thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x77814f1f fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x77855bdb dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x7797d873 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x77a69870 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b2349d snd_card_free_on_error +EXPORT_SYMBOL_GPL vmlinux 0x77b58827 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x77c4c31f crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x77ca0ab9 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x77ccc87f devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x77cde88d usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x77d499db sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e7b022 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x77ee4fbf of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x77f38b3e inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7824ee54 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x782e3674 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x78465080 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7855fbc7 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7857749b ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7860f23f rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x786336dc class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x788a9190 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78924f58 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x789401c7 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78c64dff rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e6754c usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x78e9e5f7 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x78ecf001 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x78ee8b6f rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x78f39ec9 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x78f62b77 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x79098f95 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x790c527b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x790c663a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x791bd3fc usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x7928ade7 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x79499888 nanddev_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x794a0461 rockchip_pcie_disable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x795261b7 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x795577ae find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x7956bed7 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x79610efd rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x79676261 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x79800b46 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x79817ff7 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x798a4c84 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x798a9838 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x799df638 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x79a5c4fb sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x79ae1789 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x79b31dce crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x79c15764 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x79cc0cac __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x79cec525 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x79d1eca1 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x79d3f89e dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x79d98e05 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e24a3c nand_soft_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x79e6908c br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x7a0273f3 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x7a1025ba snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7a18b3ac pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x7a1c483c fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x7a2134e8 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7a27c564 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a3f2079 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7a41553a cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x7a41b9f2 usb_ep_set_maxpacket_limit +EXPORT_SYMBOL_GPL vmlinux 0x7a48d06c cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7a4afd53 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7a4f58fd mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7a4fba66 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x7a55b630 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7a56b34c register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x7a5cd6bc nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x7a618cca gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7a725575 led_put +EXPORT_SYMBOL_GPL vmlinux 0x7a735925 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a75e12d get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7a7f1396 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa76d7d dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac27848 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7ac3fbe9 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acb08cb amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ada9471 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x7ae8b88e device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7afde3e4 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7b012803 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x7b163832 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b2e2cdf usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x7b3197ca int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x7b31d7db device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7b3e50d8 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7b46f719 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7b4a2bc1 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b536d97 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b737356 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b995fda devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7ba83813 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb39a2e gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x7bba8f27 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x7bbe2170 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x7bc83b5f clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7bcebcf6 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7bcfec8f kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0x7bf2b8a3 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bf2e067 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x7bfe9945 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7c0a353d pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7c1bdddb get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7c1c996a dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x7c1da2e4 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x7c277115 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7c28526f fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3fa550 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x7c48cd90 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x7c49d8b8 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7c5444f1 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x7c5968da disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7c72ed6f syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7c7d672f of_css +EXPORT_SYMBOL_GPL vmlinux 0x7c8ca9e3 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9da611 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb291eb ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7cba515a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7cbe1710 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7cd6246f device_rename +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d00f76f usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x7d1b8adb regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7d1d37cd device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7d41e048 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7d4927c9 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x7d4b0b3a of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7d52992a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d68f31d raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7d6ef9a1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d792ea8 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7dbf522d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7dc0a7ac irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x7dcd0ba8 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddf0b51 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7dfeabdc sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x7e07231c extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7e18ac30 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e406c58 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x7e41f6a2 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7e5259af usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e5870f7 iommu_group_get +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 0x7e6b1d48 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7e794ebc rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e924f37 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7e94a79a ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7eafad50 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x7eb52436 vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebaf6ba fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7ecfac08 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eee097b skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x7ef6f69e __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f2623ee mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f33ec8d devres_add +EXPORT_SYMBOL_GPL vmlinux 0x7f4b6ba8 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7f4caeb0 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7f4f8c36 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7f510d32 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7f5169f9 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7f550ec3 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f60f04b pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x7f64746c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x7f64fbc8 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x7f6f44ba of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8dd2bb bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x7f90d542 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fc1dcaf i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x7fd9a882 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fea66d9 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sdhci_read_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sdhci_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xas_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bch_decode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_last +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cci_probed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpts_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crc64_be +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff exynos_get_pmu_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff free_rs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff get_tree_mtd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_rs_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kill_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff klist_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lcm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mcpm_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mctrl_gpio_to_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmput +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_write_oob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_clearb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_root_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_set_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mv_mbus_dram_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_get_pcie_io_aperture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff mvebu_mbus_get_pcie_mem_aperture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_change_write_column_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_decode_ext_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_deselect_target +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_erase_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_gpio_waitrdy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_read_page_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_subop_get_data_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_bbt_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_erase +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nf_route +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff no_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_iommu_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_err +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_group_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff prof_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff public_key_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff return_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff run_dax +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_adma_write_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_cleanup_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_cqe_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_dumpregs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_end_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_execute_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_get_property +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_request_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_reset_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_ios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_set_power_noreg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_setup_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_disconnect_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_card_ref +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_compr_stop_error +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_register_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_ctl_request_layer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_device_get_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_devm_card_new +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dma_buffer_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_fasync_helper +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_kill_fasync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_initialize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_jack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_action +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_lookup_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_register_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snd_soc_unregister_dai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sram_exec_copy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff strp_process +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra20_clk_prepare_emc_mc_same_freq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra20_clk_set_emc_round_callback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_read_ram_code +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ti_clk_is_in_standby +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_del_gadget +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ep_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_check_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gadget_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_string +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_describe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff user_update +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_load +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_split +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_free +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0x7fffffff zs_unmap_object +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x7fffffff fw_fallback_config vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x7fffffff register_firmware_config_sysctl vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x124171e1 hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x4441d545 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x7fffffff ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x2ba45b57 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x4664f7cc ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x0736dc7f ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0x2ed51b52 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x70e40078 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x7fffffff ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x4fd781fb adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x7fffffff __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0c069b04 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x2bfe290c __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x42386bbf adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x524f0b80 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x645f9c28 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6f94cdf6 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x791fb231 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7bc3a51d __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7fffffff __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x57c5cae0 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x7fffffff adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x7fffffff adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x7fffffff adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x26623b0f adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x2e589b1b adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x48cf5016 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x176089ec ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x188989bc ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1d063c81 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x43485374 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x437fc55d ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5d5c8103 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7fffffff ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x05e63322 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x0a2ed74e bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x2ded73a8 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x59754c67 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7fffffff bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7fffffff bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x3bd80404 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x77c362b4 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7fffffff bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x2fd44f67 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x7fffffff bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x5fac3278 bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x7fffffff bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x064c106d fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x5ec91e14 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x7fffffff fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x067c8907 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x39824054 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x59973ce5 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x65828fd6 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6a7c064c hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x736d7bff 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 0x7fffffff hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7fffffff hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3f0f1964 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6dd9cd9f hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x749cf574 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x7fffffff hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x3cf29667 hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7fffffff hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x5b4979c9 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x7fffffff kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0091e531 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x0e3741b4 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x34bce4e0 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4e469557 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5629be45 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7fffffff ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x208d84b4 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x6a85d0ce mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x71217eb9 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x03d2b4c0 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1aefff22 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1bfff50b mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1d8b0025 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x38c3ebc4 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x44f1b847 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x50efa50b mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x540b0f72 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x692d4ae7 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7be55ba5 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7fffffff mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x2dde1020 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x0fd36ff2 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x7fffffff ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x23ea47e1 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x7fffffff rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x7fffffff rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x6e1c9c7c scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x7fffffff scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x0057c66d ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x217f8927 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2394c5b7 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7c4bf7f6 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7fffffff ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1acdfe7a st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x23a0c5ea st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x26e18ce3 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x27f12cca st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2919567e st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x342af6ed st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x353e5633 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x38d5af06 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x50a0f94d st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5fcb3859 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x7265b0a9 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x785d28a1 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fdb20c6 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7fffffff st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x7fffffff st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x2be72b30 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x3a2a6f0c st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x030898ff zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x0ddc8d1a zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x5adbdc4c zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7fffffff zpa2326_remove drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x00393a49 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x004a11a7 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x08c7c9c4 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x162f1bfb iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1900c6ce iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1c48129a iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bf03d14 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c0f571f iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2e21de40 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x33acbbeb iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36fd6c6d iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3812cb92 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ac213ba iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b07db77 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x42eed88c iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46f6e924 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x484a26c5 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4942bc08 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4a45b810 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d55cebc iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x53ff1553 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x568c9f71 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d9f6039 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ef4a44d iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6df2e264 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a761302 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7eee4a29 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fffffff iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x7fffffff ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x7fffffff ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0029554e mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x269e60ce mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x44cd90f1 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x688c42b2 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7d3c9af1 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7fffffff mcb_unregister_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x227d23d6 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5cecdd1d nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x63dca6ae nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x70e173e1 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7fffffff nvme_put_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x01699eb4 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x025ed68d peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x06d65b25 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x415f95d0 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4bf846e1 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x58cb55ff peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5bbe1404 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x69a17738 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x73d8890f peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7ec232f0 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7fffffff peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x20e0ecf4 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x465f8aa7 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x4fed7525 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7d848440 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x7fffffff peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0ad6d8e2 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2c96ef8b pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2ce46ef3 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2d484a29 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x30ba73bb pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x40addac2 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x564924c5 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x66c9653b pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c06399f pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7fffffff pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x1bda87e9 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x25489aad sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x7fffffff sx_common_read_proximity drivers/iio/proximity/sx_common +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x08d96e05 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x7fffffff cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x499edd0f dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7b349bb2 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7fffffff dw_spi_update_config drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x7fffffff firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x0a6b6fd1 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0ade16c5 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x0c8b7f15 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x18effe76 usb_stor_probe1 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 0x3bcf5441 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4c158601 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x51b9b691 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x60cae2ce usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6781a44c usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x793e4aa9 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7fffffff usb_stor_suspend drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/armhf/generic-lpae.compiler b/debian.hwe-5.19/abi/armhf/generic-lpae.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/armhf/generic-lpae.modules b/debian.hwe-5.19/abi/armhf/generic-lpae.modules new file mode 100644 index 000000000000..553cdcf82e9e --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic-lpae.modules @@ -0,0 +1,6781 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv4420 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +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 +amphion-vpu +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 +amt +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 +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-uart-routing +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_edac +aspeed_gfx +ast +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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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-hi3519 +clk-hi655x +clk-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-pwm +clk-qcom +clk-renesas-pcie +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_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +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 +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 +cs3308 +cs5345 +cs53l32a +cs89x0 +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dm9051 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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 +dwc2_pci +dwc3 +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 +ecc-mtk +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 +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 +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 +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 +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 +fsa4480 +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-ldb +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 +funcore +funeth +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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-en7523 +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-sim +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ts4800 +gpio-ts4900 +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 +gpmi-nand +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +gxp-wdt +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +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 +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-axxia +i2c-cbus-gpio +i2c-ccgx-ucsi +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-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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxdrm +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-it6505 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_mx_ao_arc +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_ep +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 +milbeaut-hdmac +milbeaut-xdmac +milbeaut_usio +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5-vfio-pci +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxreg-lc +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 +mp5023 +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_felix +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +mse102x +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +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_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +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 +og01a1b +ohci-platform +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 +open-dice +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 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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-dra7xx +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-mediatek-gen3 +pcie-qcom-ep +pcie-rockchip-host +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-aspeed +peci-cpu +peci-cputemp +peci-dimmtemp +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-usb2 +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-meson8-hdmi-tx +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-edp +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-naneng-combphy +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 +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-qcm2290 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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 +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-msc313 +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-optee +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-rzn1 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +rzg2l_thermal +rzg2l_wdt +rzn1-dmamux +rzn1_wdt +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 +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 +scd4x +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-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3_generic +sm4 +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +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-acp-config +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-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-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-q6apm +snd-q6dsp-common +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-generic +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-ics43432 +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +snd-soc-nau8822 +snd-soc-nau8824 +snd-soc-omap-mcbsp +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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-sc7180 +snd-soc-sc7280 +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-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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-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 +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-aspeed-smc +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-cadence-xspi +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-mtk-snfi +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-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-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-mtk-pmif +spmi-pmic-arb +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssbi +ssd1307fb +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tegra186-gpc-dma +tegra30-devfreq +tegra30-tsensor +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test-kprobes +test_blackhole_dev +test_bpf +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-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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts4800-ts +ts4800_wdt +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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-hisi +ufs-mediatek +ufs_qcom +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +ug3105_battery +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 +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 +v4l2-vp9 +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-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +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 +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +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 +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 +zr364xx +zram +zstd diff --git a/debian.hwe-5.19/abi/armhf/generic-lpae.retpoline b/debian.hwe-5.19/abi/armhf/generic-lpae.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic-lpae.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/armhf/generic.compiler b/debian.hwe-5.19/abi/armhf/generic.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/armhf/generic.modules b/debian.hwe-5.19/abi/armhf/generic.modules new file mode 100644 index 000000000000..cfeef58f1797 --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic.modules @@ -0,0 +1,6782 @@ +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv4420 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +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 +amphion-vpu +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 +amt +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 +asix +aspeed-lpc-ctrl +aspeed-lpc-snoop +aspeed-p2a-ctrl +aspeed-pwm-tacho +aspeed-uart-routing +aspeed-vhub +aspeed-video +aspeed_adc +aspeed_edac +aspeed_gfx +ast +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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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-hi3519 +clk-hi655x +clk-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-pwm +clk-qcom +clk-renesas-pcie +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_rsvp +cls_rsvp6 +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 +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 +cs3308 +cs5345 +cs53l32a +cs89x0 +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dm9051 +dm9601 +dma-axi-dmac +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dove_thermal +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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 +dwc2_pci +dwc3 +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 +ecc-mtk +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 +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 +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 +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 +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 +fsa4480 +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-ldb +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 +funcore +funeth +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_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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-bd71815 +gpio-bd71828 +gpio-bd9571mwv +gpio-beeper +gpio-cadence +gpio-charger +gpio-da9052 +gpio-da9055 +gpio-dln2 +gpio-dwapb +gpio-en7523 +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-sim +gpio-siox +gpio-syscon +gpio-tpic2810 +gpio-tps65086 +gpio-tps65218 +gpio-tps65912 +gpio-ts4800 +gpio-ts4900 +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 +gpmi-nand +gpu-sched +gpucc-msm8998 +gpucc-sc7180 +gpucc-sc7280 +gpucc-sdm660 +gpucc-sdm845 +gpucc-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +gxp-wdt +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +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-ccgx-ucsi +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-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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxdrm +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-it6505 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-ns2 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pm8058 +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr2_nvm +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_mx_ao_arc +meson_nand +meson_saradc +meson_wdt +metro-usb +metronomefb +mf6x4 +mgag200 +mhi +mhi_ep +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 +milbeaut-hdmac +milbeaut-xdmac +milbeaut_usio +minix +mip6 +mipi-i3c-hci +mite +mk712 +mkiss +ml86v7667 +mlx4_core +mlx4_en +mlx4_ib +mlx5-vfio-pci +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxreg-lc +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 +mp5023 +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_felix +mscc_ocelot +mscc_ocelot_switch_lib +mscc_seville +msdos +mse102x +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd_dataflash +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +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_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_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_meson_mx_efuse +nvmem_qcom-spmi-sdam +nvmem_qfprom +nvmem_rockchip_efuse +nvmem_snvs_lpgpr +nvmet +nvmet-fc +nvmet-rdma +nvmet-tcp +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +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 +og01a1b +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 +open-dice +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 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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-dra7xx +pci-epf-ntb +pci-pf-stub +pci-stub +pci200syn +pcie-mediatek-gen3 +pcie-qcom-ep +pcie-rockchip-host +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-aspeed +peci-cpu +peci-cputemp +peci-dimmtemp +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-usb2 +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-meson8-hdmi-tx +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-edp +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-naneng-combphy +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 +phylink +physmap +pi3usb30532 +pi433 +pim4328 +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-qcm2290 +pinctrl-qcs404 +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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-tegra +pwm-tiecap +pwm-tiehrpwm +pwm-twl +pwm-twl-led +pwm-vibra +pwm-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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 +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-msc313 +rtc-msm6242 +rtc-mt2712 +rtc-mt6397 +rtc-mt7622 +rtc-mxc +rtc-mxc_v2 +rtc-ntxec +rtc-optee +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-rzn1 +rtc-s35390a +rtc-s5m +rtc-sd3078 +rtc-sh +rtc-snvs +rtc-stk17ta8 +rtc-tegra +rtc-tps6586x +rtc-tps65910 +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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +rtw89_core +rtw89_pci +rx51_battery +rxrpc +rza_wdt +rzg2l_thermal +rzg2l_wdt +rzn1-dmamux +rzn1_wdt +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 +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 +scd4x +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-tegra +sdhci-xenon-driver +sdhci_am654 +sdhci_f_sdh30 +sdio_uart +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3_generic +sm4 +sm4_generic +sm501fb +sm712fb +sm750fb +sm_common +sm_ftl +smartpqi +smb347-charger +smc +smc911x +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-acp-config +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-q6apm +snd-q6dsp-common +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-generic +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-ics43432 +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +snd-soc-nau8822 +snd-soc-nau8824 +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-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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-rx51 +snd-soc-sc7180 +snd-soc-sc7280 +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-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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-twl4030 +snd-soc-twl6040 +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-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 +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-aspeed-smc +spi-axi-spi-engine +spi-bitbang +spi-butterfly +spi-cadence +spi-cadence-quadspi +spi-cadence-xspi +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-mtk-snfi +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-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-xcomm +spi-zynqmp-gqspi +spi_ks8995 +spidev +spinand +spmi +spmi-mtk-pmif +spmi-pmic-arb +sprd_serial +sps30 +sps30_i2c +sps30_serial +sr030pc30 +sr9700 +sr9800 +srf04 +srf08 +ssb +ssb-hcd +ssbi +ssd1307fb +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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_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-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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts4800-ts +ts4800_wdt +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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-hisi +ufs-mediatek +ufs_qcom +ufshcd-core +ufshcd-dwc +ufshcd-pci +ufshcd-pltfrm +ug3105_battery +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 +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 +v4l2-vp9 +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-amba +vfio-pci +vfio-pci-core +vfio-platform +vfio-platform-amdxgbe +vfio-platform-base +vfio-platform-calxedaxgmac +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 +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +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 +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 +zr364xx +zram +zstd diff --git a/debian.hwe-5.19/abi/armhf/generic.retpoline b/debian.hwe-5.19/abi/armhf/generic.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/armhf/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/fwinfo b/debian.hwe-5.19/abi/fwinfo new file mode 100644 index 000000000000..9ae2f8edc1bd --- /dev/null +++ b/debian.hwe-5.19/abi/fwinfo @@ -0,0 +1,2053 @@ +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_cap.bin +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/dcn_3_1_5_dmcub.bin +firmware: amdgpu/dcn_3_1_6_dmcub.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/gc_10_3_6_ce.bin +firmware: amdgpu/gc_10_3_6_me.bin +firmware: amdgpu/gc_10_3_6_mec.bin +firmware: amdgpu/gc_10_3_6_mec2.bin +firmware: amdgpu/gc_10_3_6_pfp.bin +firmware: amdgpu/gc_10_3_6_rlc.bin +firmware: amdgpu/gc_10_3_7_ce.bin +firmware: amdgpu/gc_10_3_7_me.bin +firmware: amdgpu/gc_10_3_7_mec.bin +firmware: amdgpu/gc_10_3_7_mec2.bin +firmware: amdgpu/gc_10_3_7_pfp.bin +firmware: amdgpu/gc_10_3_7_rlc.bin +firmware: amdgpu/gc_11_0_0_imu.bin +firmware: amdgpu/gc_11_0_0_me.bin +firmware: amdgpu/gc_11_0_0_mec.bin +firmware: amdgpu/gc_11_0_0_mes.bin +firmware: amdgpu/gc_11_0_0_mes1.bin +firmware: amdgpu/gc_11_0_0_pfp.bin +firmware: amdgpu/gc_11_0_0_rlc.bin +firmware: amdgpu/gc_11_0_0_toc.bin +firmware: amdgpu/gc_11_0_1_imu.bin +firmware: amdgpu/gc_11_0_1_me.bin +firmware: amdgpu/gc_11_0_1_mec.bin +firmware: amdgpu/gc_11_0_1_mes.bin +firmware: amdgpu/gc_11_0_1_mes1.bin +firmware: amdgpu/gc_11_0_1_pfp.bin +firmware: amdgpu/gc_11_0_1_rlc.bin +firmware: amdgpu/gc_11_0_2_imu.bin +firmware: amdgpu/gc_11_0_2_me.bin +firmware: amdgpu/gc_11_0_2_mec.bin +firmware: amdgpu/gc_11_0_2_mes.bin +firmware: amdgpu/gc_11_0_2_mes1.bin +firmware: amdgpu/gc_11_0_2_pfp.bin +firmware: amdgpu/gc_11_0_2_rlc.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/ip_discovery.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_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_cap.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_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/psp_13_0_0_sos.bin +firmware: amdgpu/psp_13_0_5_ta.bin +firmware: amdgpu/psp_13_0_5_toc.bin +firmware: amdgpu/psp_13_0_7_sos.bin +firmware: amdgpu/psp_13_0_8_ta.bin +firmware: amdgpu/psp_13_0_8_toc.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_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/sdma_5_2_6.bin +firmware: amdgpu/sdma_5_2_7.bin +firmware: amdgpu/sdma_6_0_0.bin +firmware: amdgpu/sdma_6_0_1.bin +firmware: amdgpu/sdma_6_0_2.bin +firmware: amdgpu/si58_mc.bin +firmware: amdgpu/sienna_cichlid_cap.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_mes1.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/smu_13_0_0.bin +firmware: amdgpu/smu_13_0_7.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_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/vcn_3_1_2.bin +firmware: amdgpu/vcn_4_0_0.bin +firmware: amdgpu/vcn_4_0_4.bin +firmware: amdgpu/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_cap.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_ce.bin +firmware: amdgpu/yellow_carp_dmcub.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: 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_driver_si2141_rom60.fw +firmware: dvb_driver_si2141_rom61.fw +firmware: dvb_driver_si2146_rom11.fw +firmware: dvb_driver_si2147_rom50.fw +firmware: dvb_driver_si2148_rom32.fw +firmware: dvb_driver_si2148_rom33.fw +firmware: dvb_driver_si2157_rom50.fw +firmware: dvb_driver_si2158_rom51.fw +firmware: dvb_driver_si2177_rom50.fw +firmware: dvb_driver_si2178_rom50.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_16.bin +firmware: i915/adlp_guc_69.0.3.bin +firmware: i915/adlp_guc_70.1.1.bin +firmware: i915/adls_dmc_ver2_01.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_70.1.1.bin +firmware: i915/bxt_huc_2.0.0.bin +firmware: i915/cml_guc_70.1.1.bin +firmware: i915/cml_huc_4.0.0.bin +firmware: i915/dg1_dmc_ver2_02.bin +firmware: i915/dg1_guc_70.1.1.bin +firmware: i915/dg1_huc_7.9.3.bin +firmware: i915/dg2_guc_70.1.2.bin +firmware: i915/ehl_guc_70.1.1.bin +firmware: i915/ehl_huc_9.0.0.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_70.1.1.bin +firmware: i915/glk_huc_4.0.0.bin +firmware: i915/icl_dmc_ver1_09.bin +firmware: i915/icl_guc_70.1.1.bin +firmware: i915/icl_huc_9.0.0.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_70.1.1.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_70.1.1.bin +firmware: i915/skl_huc_2.0.0.bin +firmware: i915/tgl_dmc_ver2_12.bin +firmware: i915/tgl_guc_69.0.3.bin +firmware: i915/tgl_guc_70.1.1.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: ifpp.bin +firmware: imx/sdma/sdma-imx6q.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: inside-secure/eip197_minifw/ifpp.bin +firmware: inside-secure/eip197_minifw/ipue.bin +firmware: inside-secure/eip197b/ifpp.bin +firmware: inside-secure/eip197b/ipue.bin +firmware: inside-secure/eip197d/ifpp.bin +firmware: inside-secure/eip197d/ipue.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: ipue.bin +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-BzBnj-a0-fm-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-fm4-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-gf-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-gf4-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-hr-b0-72.ucode +firmware: iwlwifi-Qu-b0-hr-b0-72.ucode +firmware: iwlwifi-Qu-b0-jf-b0-72.ucode +firmware: iwlwifi-Qu-c0-hr-b0-72.ucode +firmware: iwlwifi-QuQnj-b0-hr-b0-72.ucode +firmware: iwlwifi-QuQnj-b0-jf-b0-72.ucode +firmware: iwlwifi-QuZ-a0-hr-b0-72.ucode +firmware: iwlwifi-QuZ-a0-jf-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-gf-a0-72.ucode +firmware: iwlwifi-SoSnj-a0-gf4-a0-72.ucode +firmware: iwlwifi-SoSnj-a0-hr-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-jf-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-mr-a0-72.ucode +firmware: iwlwifi-bz-a0-fm-a0-72.ucode +firmware: iwlwifi-bz-a0-gf-a0-72.ucode +firmware: iwlwifi-bz-a0-gf4-a0-72.ucode +firmware: iwlwifi-bz-a0-hr-b0-72.ucode +firmware: iwlwifi-bz-a0-mr-a0-72.ucode +firmware: iwlwifi-cc-a0-72.ucode +firmware: iwlwifi-gl-a0-fm-a0-72.ucode +firmware: iwlwifi-ma-a0-fm-a0-72.ucode +firmware: iwlwifi-ma-a0-gf-a0-72.ucode +firmware: iwlwifi-ma-a0-gf4-a0-72.ucode +firmware: iwlwifi-ma-a0-hr-b0-72.ucode +firmware: iwlwifi-ma-a0-mr-a0-72.ucode +firmware: iwlwifi-so-a0-gf-a0-72.ucode +firmware: iwlwifi-so-a0-hr-b0-72.ucode +firmware: iwlwifi-so-a0-jf-b0-72.ucode +firmware: iwlwifi-ty-a0-gf-a0-72.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/BT_RAM_CODE_MT7961_1_2_hdr.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: mediatek/mt7916_rom_patch.bin +firmware: mediatek/mt7916_wa.bin +firmware: mediatek/mt7916_wm.bin +firmware: mediatek/mt7986_rom_patch.bin +firmware: mediatek/mt7986_rom_patch_mt7975.bin +firmware: mediatek/mt7986_wa.bin +firmware: mediatek/mt7986_wm.bin +firmware: mediatek/mt7986_wm_mt7975.bin +firmware: mellanox/lc_ini_bundle_2010_1006.bin +firmware: mellanox/mlxsw_spectrum-13.2010.1006.mfa2 +firmware: mellanox/mlxsw_spectrum2-29.2010.1006.mfa2 +firmware: mellanox/mlxsw_spectrum3-30.2010.1006.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/sdiouart8997_combo_v4.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/nvdec.bin +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra194/nvdec.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra194/xusb.bin +firmware: nvidia/tegra210/nvdec.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: plfxlc/lifi-x.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.59.1.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_bt/rtl8852bu_config.bin +firmware: rtl_bt/rtl8852bu_fw.bin +firmware: rtl_bt/rtl8852cu_config.bin +firmware: rtl_bt/rtl8852cu_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: rtw89/rtw8852c_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/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 diff --git a/debian.hwe-5.19/abi/fwinfo.builtin b/debian.hwe-5.19/abi/fwinfo.builtin new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/debian.hwe-5.19/abi/ppc64el/generic b/debian.hwe-5.19/abi/ppc64el/generic new file mode 100644 index 000000000000..13962fcd5818 --- /dev/null +++ b/debian.hwe-5.19/abi/ppc64el/generic @@ -0,0 +1,25231 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x6e9fabc7 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x886d6d5f crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x9a5473fa crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x04d93fe7 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x099e33c6 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x16c5d159 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23a03d4a cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x26e1c7b7 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29633733 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x30c26b6f devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x37dc64b0 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3c2e922a cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4c7e545c cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5a3f7277 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x632821c6 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6371f2df cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x642eff8d is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x649d1eef to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x67cc19bf devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x690731a3 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6c010ea2 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x70371a07 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x74a4ea3f devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x74b005c8 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x837b0751 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x87227753 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x949988e6 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9b5ebb0f cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9e9d3c39 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xabc15863 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaea96a57 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb115b6fa to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2075347 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbcf6ce62 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc327f316 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc9b8c49c cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xca0e9331 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbca4fd5 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcc25cfcc cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcdbdde38 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcdf2fa72 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xce7f0e88 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcea390a1 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcedeba80 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd4fba0f8 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd6bb1e36 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdbbf1862 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe05f28f5 is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3e6c679 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xef1c951d cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xefca105a devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfac76780 cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfdd7ffc4 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xff07c247 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0338e4a9 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x049abf4d dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x098bad15 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2da2c9b1 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x35cb8c6b dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x523408a4 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x525309a7 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5382a5cc dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x57598435 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5b2a9588 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x829cbe69 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb057bbce dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb19edda2 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc54a000f dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc554df0c dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe3cd741c dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xfe84a3ba dma_buf_attach vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/powerpc/kvm/kvm 0x87528038 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x3dbd5d63 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x528e6519 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x54a77498 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x6a03cf6c crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x955744c6 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xa0344394 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/sha3_generic 0x4e7b757f crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0x8e010673 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xc1a5d79e crypto_sha3_init +EXPORT_SYMBOL crypto/sm2_generic 0x75f75d15 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x165c7349 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x48e1124a bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0x49d42f1f 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 0x048cf25f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x109032fa pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1fb95d51 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4857e32e pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x50ac4835 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x626494ae pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x844f43ad pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcbd4aa30 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xcfc3e604 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xd3a3ada5 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xd3cc8a70 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd7a2435b pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x772e5ec7 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xbab16efd rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xef515eff 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 0x0bfbf01e ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x465e8ecf ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4e73c0c0 ipmi_smi_watcher_register +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 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa107d476 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 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 0xe98c507d ipmb_checksum +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 0x126b8556 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e190809 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8b649eb7 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdb973a21 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x1eef9047 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x549121ac xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd85adae4 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x1cdc3f31 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x2405d77b xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x543bcf3f xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x154bf5bd atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc6540f97 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe3a94985 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 0x003ef9d8 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0068159c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x02cd83cc fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d1ecdef fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x230f3cd2 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39d89396 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b08a19e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3dc31293 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4afe4fca fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7039aee0 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7615be01 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cf85381 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x830f731c fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8ca408c3 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadf32e31 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc5e25b3 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc00e60e1 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc1af0b12 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd766582d fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc3c94f2 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe16bb04f fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe47ffeb0 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec9d3279 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1aa5965 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf6651253 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9e7e20e fw_card_initialize +EXPORT_SYMBOL drivers/fpga/dfl 0x87299647 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xd900900e __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x00029a65 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0348c486 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x055fcd2c drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05795dc6 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x066fb447 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0949aced drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09912fd5 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0afd1a2a drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fbf6f31 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0feb385e drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11686b76 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12f68f7f drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13da748d drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x148f41cb drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x16c627c2 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a2aad31 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a486054 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a857b89 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1de483c3 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2983949b drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c68a384 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x306db96b drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x33e6da30 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34b34875 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37ec39de drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x38473bf3 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3cc3260b drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d5b9753 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x404d902a drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x45cc4e75 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x461fe97a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x495a5ec6 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cd1f74a drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4ee4eed9 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4f627d07 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51fceceb drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5334ef61 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x542fd899 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x566a0b8b drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x566f3f3e drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57017ace drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57cd1431 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5915e9cc drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5de944e6 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6138fc85 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6504ba13 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x658264a6 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x66430d38 drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f5819d6 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x713eacb8 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x71ace35a drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x732cdc7b drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77e66ec3 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d4a0b03 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80eb70bd drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x879cbadf drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x890d4632 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90f1e3c1 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x91447fad drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x93267901 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9533e95c drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a9381ac drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9bfdc801 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9e42e0c7 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4196008 drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa4f68939 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7c6ceca drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7d42e9b drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa91fc6f1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad2fd8e5 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xadb1f578 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3c540fa drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4965f75 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb5d0770c drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6e2a8a1 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb742914d drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb7d64cd drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbc996cb6 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbe67248b drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf99a038 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2176797 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc32031a5 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc56b81fb drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcac30e5b drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf3f1982 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd0658cc4 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd10f1a26 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd12f4761 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd3a0e9fb drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd598e552 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9ed7717 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdaa94773 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb7f7d3a drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd04587f drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe22db046 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe38e88a8 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe74e6ca0 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9ff71c8 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb1c3efd drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf5a089ed drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf817393b drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf93647d1 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa953954 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb422e48 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb62b0fe drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc064dcf drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfcb1466b drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd0e9e1f drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x004e83dd drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00928497 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0123567c drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x014589f4 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01df39f7 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03f46c8a drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0414c0a0 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x052f7251 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056a852f drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e648c8 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d33e43 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0822e445 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08352e86 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x084e6e8d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x092f23b5 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8b8c1b drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c4bf8d4 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d1b4a92 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df74279 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e29ae80 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eada1d4 drm_gem_private_object_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 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c7a66b __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110b25c8 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11495bb2 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x117e2efa drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11ec0351 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1340ae09 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1340e47f drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1561bde7 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1960d383 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x196dd4ea drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19823de1 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a8488fe drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afaeea1 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb8e396 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c123439 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da70795 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de54ebd drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df04a2d drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e07cd90 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e4213f7 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e832cfb drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef11014 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x204d2b11 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20afa31b drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2295bdf5 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22ee6738 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2311746e drm_atomic_bridge_chain_pre_enable +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 0x24d221db drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d2b9a1 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24e94ee2 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25394d9f drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x253bd3ac drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x258481a9 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26387430 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26472c32 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26a4d24a __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26d5b626 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ed213a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28305dbc drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28659d7e drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x289ec00d drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28eb141c drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f5de87 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ac4b0a7 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b51f703 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eccd96f drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3010fb46 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30c65586 drm_plane_create_color_properties +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 0x32e0beb8 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ea31e7 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x352b3dc7 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x361b4dc9 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3630e912 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366a7593 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3995f76c drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39b497b2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39cca02e drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a0c7241 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a759ac6 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a7b5ebc drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aaf2a0c drm_property_blob_get +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 0x3bcb7d0e drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4a72ee drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cbd27da drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e2f52d2 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e686b5a drm_client_dev_hotplug +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 0x3ffe2081 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405c09b7 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x421d290f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x436c11b8 drm_dev_unplug +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 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46415031 drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4649421a drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47450a0d drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47e4bd66 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483c6ee1 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4888d3fb drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49027c65 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49d7af5a drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a214036 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a29fdde drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b685ea1 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4becd110 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c349b82 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c67f40b drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c935dfe drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf528de drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da7c875 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e25c090 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e48af27 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e877075 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec81fb3 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f1173d8 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fc72ab2 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fcfaddf drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x506fd7de drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50c7b86a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50eb3408 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a684d1 drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51fdc680 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x520d88e3 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5287a73f drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5297edea drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c1a069 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53e72dda drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54253eb0 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e76ff1 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56fa6755 __devm_drm_dev_alloc +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 0x57dad725 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57f3ab01 drm_connector_list_iter_end +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 0x5a5cd426 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aec6af7 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b4e3cc6 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b664561 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5ffcde drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e66aa57 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f32059f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f94edbc drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x602ef289 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x604692c4 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6058c722 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6150e36f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629183a9 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a8c51c drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6677a3bb drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66aa4126 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67fbd951 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6be11f56 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3ce089 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c4cc6ac drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c61f039 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca4e06f drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d44368a drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d58d43a drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9af596 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dd3b401 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f8d0311 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702da259 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71a71c39 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x726def4b drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d9a6a9 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759376f2 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75c42ca5 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76157af6 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76bbc9a8 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f1db36 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771a0702 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77398ea5 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x790c9ea4 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79925fbc drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b420931 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9024a0 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8be08a drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd48bc7 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3fe815 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed8fc22 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee8c851 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c40faa drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80eb0216 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8140f33b drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81c74ff0 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83523553 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x836a0701 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838bfa37 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b154e8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d99910 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83fae886 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8440cb51 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c89552 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8567861c drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8593efa6 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x867fda60 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86dae462 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86e6227a drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8737d444 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87795c7d drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889b4cbd drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88eee36c drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8907ac9c drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8953ee89 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89765418 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3484e5 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b1e6537 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b517508 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf6630e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d2ca9af drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d974388 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eda9c35 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8efe4fec drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x900e6795 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95997d49 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95dc4443 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95ea5437 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a62e0a drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x972680c9 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9790a9e9 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fe5ce6 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98397613 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f9fdcb drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a010e42 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab9b1dc drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad52f38 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c0b6bc4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cabcc2b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9db97adf drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0984a4 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7b1f04 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8368f3 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8de75e drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fc1f8a2 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0e715e0 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1302248 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21de7ec drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa24377c1 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa29f7a16 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3aaf50c drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa412ee32 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa486e942 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4a2dd88 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa609fadc drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6357872 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa759dd32 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa847f0ce drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88fb92f drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b138f9 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa94a409f drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa97cb47b drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a06efc drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa38d02f drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa7dce2a drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaba31317 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad612d15 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae285f09 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae31ac30 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1811f3 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf5296a5 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcb14de drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb116063b drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1418409 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2dfc6db drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f056ba __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3d74a6d drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb555d90b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb77f7717 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb80ff0af drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85df3af devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5971e5 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbeae9e9 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbfe3ab1 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc101d5b drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc53ba45 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce7b167 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec0ca95 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc176ea72 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2847f30 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2d4c155 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc333b5bf drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc33b453d drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3c4c11d drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc413a261 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5cc59a0 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5dc264b drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6cdfa53 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc70d7365 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7928514 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82fa8f5 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8772ba2 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc883a284 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc942723d drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9c75bca drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9e5b7da drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca43806e drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabf4b31 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb5caae3 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5ff6ab drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd071514 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce7ce1f4 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef5b29a drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3f200d drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01567ba drm_mode_create_dp_colorspace_property +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 0xd31d350c drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3611c7a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4d74cc5 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd509bcd9 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd62f7637 drm_client_modeset_commit_locked +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 0xd7190c88 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd83020af drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9714c4a drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda7e2868 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda80f983 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda99818e of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1652c4 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb73c537 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcca352f drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddc34deb drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdef158a8 drm_vblank_work_init +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 0xdfe5bbee drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe036b225 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0525792 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1121f83 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe43b5e1e drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4ce5e90 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5461eee drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5b6ec85 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe607c64e drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe919f0c6 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea314fb3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea68d5d0 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea69c49f drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaa4f75d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec51a608 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec6535f1 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xece0ac0c drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed97ed02 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee19b622 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef45242 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef8d9f5 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00d9b9f drm_mode_set_config_internal +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 0xf166ef8b drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf196167e drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1c0a1e4 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1efe1b4 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d960df drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e36bdc drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f449bb drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3333488 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4b6bffb drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fb3b8e drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b465f2 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89116ec __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa4e53bb drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb33ad46 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb521e00 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb6e8f5e drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc806a72 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcd57462 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd28d577 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfef35602 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff242526 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe5068a drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x5a217b71 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0xff055ea7 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0053a1a6 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00fcd21a drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04f0878e drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062d3552 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06c1eff4 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f5297a drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0befce9b drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bf03b7d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e2287b1 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e51aa1f drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f05d8f8 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f371d66 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f439c81 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd14f06 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fd2d263 drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1048f9d5 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12305db4 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12ae64b9 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16138342 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b9a7ca6 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c5fca52 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cc2ad43 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd9d403 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef0a90a drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20b6d5ed drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20e70aac drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20ed7143 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24573444 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2645a058 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x271bd6de __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28315689 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28498632 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b452fb9 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c20e981 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2db501cd drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd8aea3 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e51fdf0 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a996fe drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31231ad2 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x316254b6 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x347f3c49 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36568e4e drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379250e7 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3795878d drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x390bc569 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c57f9ad drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fe06e87 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x411d4263 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42ac63cb drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4338c4d6 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4370d5f2 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45074be0 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45fd3d95 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46a50bec drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x474a4ebe drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47b6fb4f __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e9c10e devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49573cbc drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ae649ef drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bfe778b drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e34c655 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f42fb8e __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x500bff8f drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x503771cd drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x514622b1 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x517fb255 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51dd5303 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53c52d7e drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56ce88eb drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58a33e23 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596a9b58 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ac13fdf __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c1dac43 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c7bba75 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60bc7ad1 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6676aea6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668e2af3 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682da90f drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68fe4ace drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6976c792 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ad6bd4a drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cee4374 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71c72b41 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71d4ee47 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x729a6a0c drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76e0f2a4 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78ecd95e drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1fd779 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c96c175 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cb70cc5 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d5ee7e4 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d7f9dc4 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc27dad drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e1423d4 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e8a2974 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed5dd4d drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eed3665 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80f3ef5a drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82cb615c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ba5952 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x880b395f drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88e900a9 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b2ab733 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c50b2eb drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cab71b1 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f92f24f __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90d1fe04 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913c7989 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x913d84cb drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x914ca49c __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92efae8c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x937787c1 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94e39d7b drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95ea1287 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e44bd3 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa32b17ba drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa34b0071 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3ea6fd9 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4768b48 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47a58cf drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9480bfb drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa55960a drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab8fdc7a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad6bcefa drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0c8d1ad drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1238b4f drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb20b4eaf drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb387c752 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6c42fa0 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7b7983a drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba8ad610 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb74664f drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefe8ae6 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf30eb34 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc24adc01 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc252df93 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc65c03b6 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc860616d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8869b3c drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9d2971b drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca6eef93 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaf02796 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbca3514 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4c52d3 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcef3a0bf drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf4305fd __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd031a4e6 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1be80cc drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3330d26 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7004584 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8b87907 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8d4fb45 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd90731f8 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdacb51f0 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd0a2c9c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd933138 drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde883e66 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdebab7bf drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfa3393f drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfdefa4f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe042492d drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe12b9b17 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe392c68a drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4209e31 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe504a13b drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5bc6205 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe65bfb5f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6638c1e drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe773d39d drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8bf586f drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe94d7486 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee7da103 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeeb9f577 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf00633c1 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf06da729 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a6e129 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf17b0058 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5500eda drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf71311bb drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7cb6240 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf84273e9 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf871ea60 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8adc0cd drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf98bab25 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9e3bfa7 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad4d99d drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb52554a drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdc2db0a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfefba36f __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x023f06df mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x09f51cea mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1c4e5cc7 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1fa0ec2f mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4030bd12 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x428de2d8 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4f901145 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x5795b6b1 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6537014c mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7420a061 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb25526c5 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcb126582 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe8566182 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf038c951 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3ae9ba9 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf3fd49ed mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xff780155 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x1a1a828c drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2e3ff7a2 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x2f692ca1 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6c686c5b drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6d1e8c90 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6d866a37 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xae22f784 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdf374259 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe2f89923 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfe7e6783 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x07e0fc8f drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1d4ac3c8 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x242cb2f7 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2ae90f81 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2c549f3b drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0b10be6c drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1dd2cf7f drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3d2cfa97 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4fdf8b42 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x51cb82f6 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5fea0230 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6c9f5ed9 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x88be2528 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8f055e3c drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x91773dea drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x97afff29 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9a527830 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbe421732 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc563e791 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe4b3dd44 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xed1b1cfa drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x042743c1 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ac00e20 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0adff89c drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x35589649 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x47452442 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x48cdb194 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d8613d1 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5281f679 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5fbb8043 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6134be0d drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6450234c drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6f179e9c drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x719e98ce drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e885d1b drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x85836bf9 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x8ba03921 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x99174a87 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa93e9e2f drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb1e2d560 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb68f3c18 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbb71cb52 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc92f1863 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd7502703 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe34b926a drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe829de3b drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfc85dc5d drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfccc6559 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0043efb3 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x006c7ba0 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0174671e ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x035acf25 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05d265a0 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e54cda3 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13b19b0c ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x141ed191 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e91976d ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2006e910 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2609dcdc ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x283901a4 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bbdae34 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c29a433 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e9b0cc1 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f128a86 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x346d9a57 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x399d60ab ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4623cc14 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e04987f ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52701b7d ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x538f4721 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55a26b31 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b15d453 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b5e743a ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f263760 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f5d3c6c ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fbd69e0 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60decb1a ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62b790fc ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63d63908 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65a38158 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x686a9598 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6a99b4d9 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ca11073 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d38cfe2 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a15fc95 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a05977 ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x936b8e34 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x939213b1 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9719a28f ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9841c9a3 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e898aa2 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9e97bca7 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa25bc6d0 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7f665c1 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa95af7fc ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaa8b3f2c ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad1a9d57 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0b767d9 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0e5bff2 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb368512f ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcb236ae ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd2dcb34 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd155a525 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd274b002 ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd46de77a ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5672ff8 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe3135f7e ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe985e781 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea576780 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeebeade2 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeef3c357 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5be3eee ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf60bd19b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa6210a4 ttm_bo_mem_space +EXPORT_SYMBOL drivers/hid/hid 0xed8540f9 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 0xc1e7568d i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc7b6d7ed i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe4adef29 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x08f39f41 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7edbb8ec i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x04811a1c amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x713206e2 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x76a1ca3a iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa555b412 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd78468dc iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x355052e2 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf998ce0a mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xfd2067d5 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x291e0d0c hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x84951940 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xa2d4569d bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x6fdc7a01 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x01c4ca5c st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xacc5941c st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x13bf6185 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x1c640d57 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x2420e8ca iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x29a618da iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x29cea8ef iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2bf9fcba iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2cd7c72d iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31842fe4 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x3c4a6410 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x528af7eb iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x6c3f16c9 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x7dc3973d __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x83b47a7e iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x85134485 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x8cba866c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x9cec7a97 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xb7c538e7 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xbb38a805 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc2b6975f iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd01a820e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xd47931b7 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf0c2000f iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xf187228d iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x30eaf9e9 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x17835611 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x6e2cc05a iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x7d30a749 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x8b9914f2 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0c114ae1 iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xafe01a9d iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc5125992 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xd6e76719 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x88c35fb6 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xec31a8aa iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x51ba2786 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5b433ab2 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb64ff753 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xbb3cfae4 bmp180_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1776a43c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x210dc0ef ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x231f96eb ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x355301aa ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3d9b0188 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c48ae01 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5840c8c1 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59a9e318 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80d7141d ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86c457ad ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xba341d56 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbde47cea ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf43e5a5 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe2e9dd08 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe444b628 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00236780 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02370750 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02464cdd ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x035f96f0 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x040c06e0 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04b267db ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06bf6dfc rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07272aed ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e61403 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0958d9eb rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x099facf6 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a23f32a rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a28bdef rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ab812ea rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x116cde7a rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12ac2fab rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d9bb68 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x167128d6 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1722c3a0 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17847410 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a43971f rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b745a6c ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c023aa0 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e2f2107 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f28c50a ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2059afa3 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20d3e885 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2214ed3a rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2387172b rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23b40385 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24e56c76 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25bd7d7c ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26b9b8f8 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x279d853d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2880923c ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29c6c033 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b0ef8c3 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ee6619d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33d04351 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34666cc0 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37264e89 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37b3cf80 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f599cf rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37f9d244 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6bf983 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c876bf5 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3db45717 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3efe89a2 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f931c90 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41a4bf91 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x420ff96a rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4488f05f rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x470f18c9 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4773d2cb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b889551 ib_qp_usecnt_dec +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 0x4e91b766 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ee4e4ec ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ef5205a rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f90d83a rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fa6dfec ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50eec77d rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52b8a76c rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x532448a9 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538e67e9 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55dc77e4 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57486c91 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57774fe3 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a88bc02 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e91825f ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f5a4225 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6136aab7 ib_rdmacg_uncharge +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 0x6486a361 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65b0444e ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66150ffd rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x686bb2f7 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6acf23d2 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71a03fac ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72bc42fd ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ee39e4 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74fffce8 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77b2db23 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7860914b ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79141a63 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7921a66f ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bac529f rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e079aed ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e6d9d31 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e759c38 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f1fef64 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f831337 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc86157 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82a0cc68 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82c6a2f1 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b45572 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84747b26 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85625dce ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86a1fa81 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a58f078 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ad3d20b ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c73843d rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c8163e4 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8fd21e88 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93fb488f ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x943682d4 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95801474 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95b8b3d8 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9602659d ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x975ff2b9 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9992ea5b ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ab60cd5 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b40bc5f ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bac2a07 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfc6a61 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e3cb8fd ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f16f02e rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e8fa25 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa59d2a71 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa68b782c rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6e8205a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa936c233 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab8f1ba1 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadd1924d ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadda3576 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae810034 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb17c6fa7 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb18819b9 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2e5f5e5 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb37b0ba2 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb457d04c ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb48e992d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb53964ec ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54617c5 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7d0b97a ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb96419f1 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba74c0f1 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf07dfa4 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0484bc3 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a6fef0 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc37ec7e5 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4529808 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc454e022 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc569de7d rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc789baf9 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7d02926 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc903b2d3 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb88ba5c rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd293466 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd94f1c7 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcddb9603 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd224494c rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd272c670 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd34635d0 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd520381c rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd65ac7e2 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd68d3f6d ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd75e8e99 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd848907f ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8aca3dc rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd98a6875 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9f36770 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda790a4e ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde3164ff ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf68b6fc rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe216e49d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe30f4f8a ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3999fb2 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8e8427b rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeba9233b __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd41c09 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec390658 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecac9d17 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef4be647 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefb0b60d ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf00d2546 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0255e50 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf07bdad4 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf197be0a ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf30183aa ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3305129 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf60e5ed0 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6141955 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6245ad6 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf69b874f rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf74ccb9a rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8971974 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf923d91b ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcbfe643 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff3d570c rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff4a557a ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffff3074 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x002e471f ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x03817758 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0dad56f5 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x10c86cfe _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11018db6 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x186dda7a uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x242935a9 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x278ece68 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2bea3691 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x342e3301 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x349fdb1b ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x37b937eb _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d883fc3 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4fb8f44c uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x574e27a1 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57a98d2f ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x582255ef ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x59421d84 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5ae6b589 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x76284ff1 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x78add33d ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x85cde0d4 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x88a24d82 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8edcf8bd uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x907df2da uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9105407b ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x92dd0409 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x93528e92 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9b6a877d ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4fbc81b ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc0255f8e uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3a52a67 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcd886ae6 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd69a6da5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd72c35ad ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe748ced8 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf7391a44 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x252244a6 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x318f9112 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76023b3c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8f55353b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa6520528 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdff73aa0 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe142ae3e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfc8f3200 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x007f6dc4 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02d646dd rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03fed368 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e3132bb rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0fcee4b7 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x148f62fe rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1cf6e3b2 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31e7ad78 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3900949f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45b29d3f rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51737f2d rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59e8fb70 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x60f065c3 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d61e09c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x766b1050 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7e9c792d rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80ee2739 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x837baa36 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8515fcef rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87707cfd __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8fe9b179 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x98c44db7 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2b703fd rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4c508c5 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6ceb137 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc37b429a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc51e5011 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc96f752f rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcdce5b01 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd41de65a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe24c0b9f rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed7c27a7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf5858724 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd3a9a4f rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x062d24b6 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x2dfa5ac7 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3cd54c9d rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x5455964b rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9250cedf rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa876b669 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf3449ba9 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 0x2ca81fe3 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 0x62d7262b rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x7468ac3a rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x84776255 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0dd8cb42 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4eda85ad rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x59d2ba6e rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x7f083a1a rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa59c4ff rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xcb499edb rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/input/gameport/gameport 0x04a40ded gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5085abf6 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5d46de51 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x606f6a69 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8dd1990a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdf2df7d3 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe88a202b gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5e18a2b gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfab1debd __gameport_register_port +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x307b3bbd iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x653de226 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x899bc27b iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xfc20c5bb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2da6dc91 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x759ead45 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc799364b ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4ed3e3f7 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 0x6fe462a8 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0b8538e2 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1deb6e33 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3501d076 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x64f3f396 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x75f2185e sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x0336665b ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9a5cc49e ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x141d0b50 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x78aa121d capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x86e861aa attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x990a2f23 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb057a756 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 0x25012582 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e301e19 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5f3d6ee9 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa03e576f mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x2fc34d8d mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc69700ba mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1aaee996 recv_Bchannel +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 0x30db391b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36d82fa8 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ca4365e bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40ec092c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46e92f07 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x49ce1cb6 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d7c398e mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x580a6ac6 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bb874a4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x706bb476 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x761a2c77 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x799279f1 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8eac1b1f get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91a81f19 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9821d5c1 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa4e8c12f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf47f3b5 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9dfe1a0 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0355926 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 0xdf8ec270 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3913fab bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa3d6c0d mISDN_unregister_Bprotocol +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 0x09e3395e 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/leds/leds-ti-lmu-common 0xe20b68ee ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/md/dm-log 0x0f601757 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x3421280b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x38446313 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xa3371788 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x01ba721c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x20d63e00 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x69979792 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x890bf02a dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xae5577e2 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd0188424 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x046e87af r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xe97141d2 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04eda1ea flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20b735a6 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2aa44609 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x50e54ede flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x786fdb81 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x78e2daae flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x83f5e191 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x94669854 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa291bd9b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa311607e flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb2d69484 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe292fb16 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xefc746ce flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/cx2341x 0x07234706 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 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x97eebbc7 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc702489f cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdff2e71b cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x2772d3f7 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x65bd7957 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 0x4bf06773 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 0x6688ed31 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x8378750a 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 0x8b6dcc0f vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xa41648dd vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb0b02ecd vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xb7295d4c vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xdb77ce67 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xfe4d12db 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 0xc6004035 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x064fd246 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08f83fec dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b863f03 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x101c30f5 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1023bcd7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x113b5999 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x15052806 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x21b99d2e dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x29d58443 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3aad435f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4502c3be dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x52eb4a92 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5830a49a dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59a6eadd dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66a68864 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x66bd7694 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ab6aac6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e8f003a dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6ef5628b dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7214ae36 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x782e58f9 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7c358dcb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7d5725a8 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x82878c35 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8597c7d0 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8b856f8f dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8fd6e094 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9dffb35d dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9e787c04 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1ab1077 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2ee8d2b dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5a3524f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba4beba0 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbc05d026 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5b7aa57 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce748c8d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdbe5a8bd dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe02577f7 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed056cde dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf127150d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xed8456cb ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xebb1865c atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f710370 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1845a41b au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x582c1209 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5f33f80c au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x63a1f42b au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa2f08481 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbcd57f4b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xed0e0310 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfb43a66f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xcc583447 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xead023ad bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x1bfb71ba cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x48458176 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xbff5e615 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0b9f46a3 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x935d7473 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe3d50b3b cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x440d66d3 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x6c2ef8ae cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xa3937a98 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x42fd0d58 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0953d365 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x451ad4e2 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x8a47c073 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x01b2c49a dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x49bc4918 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x60689db5 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x89db973f dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xda3f812a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1bbac930 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x278363a7 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2b11de92 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5686deb6 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x57216274 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6995178e dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6ea8a88d dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x71a7ff14 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7f4972fc dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8ca62f44 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaef45d92 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcc0d867a dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd260c47 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5a5434f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfd0c2fe2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x1a54001c dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0c850061 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2be4e869 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3c0f3431 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x67e3d456 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6ca18da6 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb8d98929 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x40f19b54 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7cde2c0c dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd2fce8a7 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf0c67b49 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x6ce3bd06 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xd52a47df dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x007be2d4 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1733e6bd dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x202599b6 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x32c05f59 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x32e8059b dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x53a57f8f dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x79749346 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8bdd7e72 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc6f5c118 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcca00f70 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd27582fd dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xe81f0d26 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfc171bf0 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x08212650 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1cb0c825 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3b30619f dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x71416dda dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd861312d dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1c6436a1 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x76b3d14a drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xc9944f12 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb5a3a2b4 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x7757150e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3721a222 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x9cef864a dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xac413f53 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x3f4c5bf1 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x1d4eccab helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x3e034986 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x6807a183 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x1470c9ac isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x618ac45a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x0b98db6c isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x766bc895 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0f9399dc ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x9d54fd19 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x19d157a2 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x9782a95d lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xd986f268 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8c4fb253 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x5153fac0 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x0c0fcf87 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x50b8c3d7 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xd3989784 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x33f3a4b3 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x40c870fe lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xb73858a9 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3e0c19cd m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x81a574df m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xa960bc37 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xef48b3fe mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x45e37db3 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xb4d7b919 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd26f2618 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x2500f21e nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8d51f07d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xd38c3ac8 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x33f9d9d3 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x0d1b6173 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x8ce5d132 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x176c37b6 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x254fda29 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x02e79dad s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xe3b47f0c s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x4908dca6 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xdba280b3 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x37616877 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x22051188 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xbad1625c stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x910549a9 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xe5f7fb4d stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x85512342 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x05341c1d stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x76404f78 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa2fcfa3a stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x68060974 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb6cfee45 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3dc3589a stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xc7fcf588 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x24d83efe tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xae4a89b4 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x3d4c7118 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1314955f tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe7774305 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xe01ae85d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x45ba73d1 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x048aa96b tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x600b8025 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2afe30f5 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x3b4ed53e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x843fe4ed tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x93fc1f6f ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x0d3883d1 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x47c7ca32 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xdad8e68c zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x669e2d41 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x65d5e8b6 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xad208924 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0854e9f7 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0e5ec5b1 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x32a5ab9f flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5990a5ff flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x84aabb8b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x91fcd7c6 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9280ddb8 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1b5b54ed bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x36a39e8a bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x82c84409 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9b54654b 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 0x5f8790c8 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x71c87479 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/bttv 0xf1266226 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1427ff1a rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1a76b94b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x33a1015c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3f29550d dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x457dda0c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x77e81d69 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x830f0bf2 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8e6555b9 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaade2ad5 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbbf697ec dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x10dd836a cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4a51ebce cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x75b55243 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xba78f562 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc53f6c34 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xbd2ab821 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x19be4110 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3776ec40 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x408822ff cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4e299eee cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8fa4fa97 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa14c878f cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf9042681 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x17896b09 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x4b729bbc vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2a146498 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3491da10 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9bd9d17f cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9cb50912 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0314d275 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x254559b3 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x30355b4a cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x49f5d89d cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6a80e677 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x99bfdefb cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xeb73a54f cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x15115d34 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x17c1ca40 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x199e2448 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x28fa656a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2a07f80b cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2eeaa7bc cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x60263260 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7240aed7 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x73c707bc cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x73dbbd53 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x768ba8b8 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x823d1774 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9175d73b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9e800c2a cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xade2c006 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb628bf0e cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2588a41 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdbe38913 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xec95b8ec cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4cb9669 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0xb3cdc99b ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x09bcdc91 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f073ce6 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x314eecae ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x39475488 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45138e5e ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x58217a90 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7f6fbda2 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8656d3b7 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x86e60884 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x948cb176 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9b3a5e0e ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa8417751 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0704af4 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc5437c10 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd63095b2 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf65200b1 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf7c2d597 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0ab3bfaf saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x283ab104 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x35e439ca saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4e418c3a saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x604df333 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x71f9c7a5 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7dc815e5 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e9165cf saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x84af28b9 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbc24c2c2 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfc581d5a saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfe84ce92 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/radio/tea575x 0x23de927d snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x24497a99 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8af5f3aa snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9a394cd7 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa3ad95c4 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcea0f328 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf0f714f9 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x18b9fe40 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaf3163ec ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xaa554f93 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xe7fbef1d fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x0badf05b fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1a7a030c fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa1b702fe fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x6cb6f6f3 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x46f5729d mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x37378fec mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xb8f8ee45 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x48ae661d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x02afe4c6 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x6504a36d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd0ca755b tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0xb375a638 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xcf3e8cb7 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xbdd83a3d xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4794bc1d cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc03a24b0 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x032845bc dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4555dadb dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5d57d7e9 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x886380d1 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x90d9918c dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x93a9e987 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa87349fe dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc34b1a14 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfc9ec6ba dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x125b9d35 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 0xa8bc9b1a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb1f07c5f usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcb6ea594 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcbaea93a dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd4e75a3e 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 0x62626144 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 0x090f7808 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1d664dff dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x35f9b43a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3ad0833a dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8617c257 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x98582af2 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xab6359ef dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb3279f80 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xda0ae3b2 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x674085dd dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xbee7edcf dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4aa24c6f em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x4e17a051 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x25ec1da6 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x2e62f3d7 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5e6abfb9 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa6d11fe0 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa76c037f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbff4f40c go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd63e067c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4c50ecb go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xeeaacd31 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x12d97529 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3fb53631 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x67ee901a gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6abbdc26 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x83a90898 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xce1cf217 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xec357e86 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xef66aeb3 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbf69a3a4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xeaa895ed tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf78d696e tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc4f8a0b1 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xef3fa17b ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x07f0fce1 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x09ebf0f0 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x47a3d46d v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x609c84bb v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbe2b2b92 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd10a1107 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2949c624 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 0x73df211c v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x795b7548 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb3606e0a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05c0dbc4 v4l2_subdev_call_wrappers +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 0x0a94e74e __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x107e51d8 video_device_release_empty +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 0x16db2c14 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a436493 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ab2f515 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ad48317 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d49945b v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27ab57a1 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2940a2d3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b569eb0 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31b9ac2b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33347197 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34b0b7be v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38792abc v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b294517 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f06195b v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3fa5e8d8 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46008ddc v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x467bf6ac video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x494016e0 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b906eb5 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x566f952a v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58b04b18 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59329743 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c8537cf __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x61f0d97d v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x657fc34a v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f1734dd v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x763d7ed2 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x893e9d61 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d25f3df v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x91006bb4 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99718e00 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a8af23b __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa25f5277 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2c8b59a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4917717 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa5d4ddf v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf8e0957 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb18a9ce6 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb194c738 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb50fac3d v4l2_ctrl_find +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 0xc33b3372 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc94be983 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd11eed4f video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2138c9d v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd65cec7d v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde6c4c73 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed65dbac v4l2_ctrl_new_std +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 0xffddec59 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0d34b3e3 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13309ad9 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2c006a1f memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2e474c7f memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x36a44a58 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f9744cf memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x880ec805 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f99614c memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa50309b4 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaf7266d1 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc8b37ed memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe545b653 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0263413c mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b0690bb mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0dfbefdb mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1245a014 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dd0fb25 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2326d8a7 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x23822382 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35ff3c42 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x47a6f9b8 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4cc6f39b mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4e03873d mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5fc005a6 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bca4267 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71cc642a mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x774ace22 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83899735 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1fa6704 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa3c9061d mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac6204b2 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad07b97d mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1b5d4b1 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb8720b21 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb90ae3c5 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf432437 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd0d3f42f mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd41b5e3b mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5d68536 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe0682b94 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe50d795f mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x014c5bd1 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26cab52e mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bc497bb mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x416f5fb8 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41931d86 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48094ecc mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d624a67 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5db7fac0 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f887397 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7015f611 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x725576b4 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79031bb0 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8806119a mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94cd0810 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99b41378 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c5d8505 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacf08517 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd28b4cc4 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde0e706a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf0f517e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1c31ec2 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2fb3365 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe67b0787 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed3c6e46 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef1f9002 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef5a498a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf5683823 mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/axp20x 0x371cb04b axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xae91cb85 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xb4200d70 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x07110075 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe4fc2d7f dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xfce2e730 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0ab2e0db pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe4c3174d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x01b1ae62 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28c007a7 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3a66c922 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5292fa17 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x749b91ff mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80c7aa92 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb0060577 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc909fdfc mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcf5d8dcf mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xdc1a3d21 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfbb9b7fa 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 0x174964ef wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x197a0587 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2b40be1e wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x424ac463 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x861807aa wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xcf5dbe8b wm8994_irq_exit +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4176b1a7 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x633a6d4c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x58c743ca c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x7e06eb2d c2port_device_register +EXPORT_SYMBOL drivers/misc/tifm_core 0x0b7472ff tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x34ac8fb1 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x5a2928cd tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8d2eae7d tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f30d441 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb0826e65 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xba7e8bb3 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc283efb6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xc87fd19b tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xda768b2b tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3d07858 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xee4cae51 tifm_free_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x321582ad cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xab20a9db cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd2b3547d cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd5b9171a cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xec1e46d0 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xd83397f6 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe6257cc1 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x93cc4dfc cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9e5a17ad cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa645acf1 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xae9bef3b cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xcb8e0fcc cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd3ded887 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfebd2476 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x29798dd3 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa750b4a8 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbacfd1e9 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xde4d7b9d map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbf299c19 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x903b043f lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc8939b2c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xbaeaa140 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xc41866dd mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0705a9e7 nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0d464275 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x23d5bbf2 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x24114f91 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3847b099 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x48693dc9 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4cead317 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x539df37e nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x65db3357 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x83056308 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8cb342ee nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99661c0b nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9a2f6837 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9a764fae of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9e6db784 nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc4c6ef79 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd3cdea16 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd4168dc7 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd560313d nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe43454c8 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf5762719 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff7fac07 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x8eaeaa3a onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xceb2bac0 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x89110e13 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa4ba040e denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x058dda08 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x064cfaa6 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x5911bf69 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x60647304 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x68fb57ae rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7b6b8806 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x85638740 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 0xaa6a441d rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbd0496b4 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc2c5ae6c rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcda82af2 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd0c2f1cb nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd363b00d nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd87a429b rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xdaa300fd nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xebe549bc nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xffa837c7 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1259d3bc alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x338e40e6 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d67d375 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60f75a2f free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x81e4b3e2 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8fb34168 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9deb39eb arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe517b3d3 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1d51572 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf31447e4 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfdc97cce arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x00e694b6 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8e3abff7 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x996b2154 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x846d7b39 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe4c7be8e ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xfe41946c ctucan_suspend +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0cc8daaf b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0db3dbe5 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x13f8f7ee b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x16887656 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1b49fbac b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x21eef277 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x273abb81 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2933335a b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3245590a b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34caf3d3 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3df23adb b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x446a3857 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x527e850a b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x65f2b0ff b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7bac46eb b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7d122e44 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x974afe40 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xaa975560 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xad6e5ecd b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0b9abe3 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2238810 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb4f9514e b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb622329d b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb6e0e7a1 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb86bf7c0 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbeba4d08 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbf24e9ac b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5efe023 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc7632ea5 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd090cdb4 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd222c3d5 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd41788b9 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7781a21 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd91cb3cc b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9fb1512 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdc433a2b b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf3944595 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfe21402c b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x30e9ea16 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x41104cd6 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x92677dfb b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xd744ab26 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x584e7985 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xa0771b03 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xfb0b792c lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0xcc2f8166 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xd8d1b50d ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x41271f0d ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x5305d7e6 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xc6516116 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x8d1574c8 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf01b7d58 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xf8f3b8aa vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x06dce48b xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x07e5eab7 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x3f4cb890 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5ede00ee 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/ethernet/8390/8390 0x0c79f408 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x153c6221 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c0135c7 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x35b2e147 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x39b501cf ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3eccc941 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f70d67d ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x51cd7b68 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa91a5fb6 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa997b91d ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x27f948f0 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xac76d783 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x0a8afe54 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x2f21b23c 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 0x01269f25 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0b62836c dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0da8da4e cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x29c683cb cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a3d1da7 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x39381d8f cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e7bcb45 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f4879e2 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7a2f8a2a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7bc2093e t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e27aff2 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd6d46e0 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1cc5a15 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xda08d807 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdb194a0d cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc94c343 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x047f9313 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066bd60d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11079e92 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18ebef0b cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x216fdd6c cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23aac8b0 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28b15748 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bf89779 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41ea9b97 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4910cb9e cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x49431fe4 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4bfceeab cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50125ffd cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6014407d cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c3d9284 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7501f0b6 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75b68356 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x760d26ef cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ec005a7 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84a79d13 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87361dd6 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x873fad28 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x87779b91 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8797bd60 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f57f6c9 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90bc6d41 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91ce1888 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91e16614 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9445a1e9 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94d1a3b9 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94ec65fa cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96601c8d cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9b390a41 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9da46e46 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa69e9f49 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5d4fc6e cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc06fa5f1 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3078aca cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7d97513 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe05eabc5 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0aabbd0 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed1f7487 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1fb0fde cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6eb8f14 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf784bc7e cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfb8250bc cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdcd3824 cxgb4_flush_eq_cache +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 0x4aa17f69 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x67277c14 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9c9ac788 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xdfc1bdc4 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xe88c6492 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf79a217f cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfe12600c cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x633a8d74 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x703f3323 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x781cdb6a vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9615460d vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9a988fcb vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcc5630fe vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x5f41da57 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdc803e02 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0xc7ee891f enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x1f06bca5 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x6d9fbebf fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xbcc33da5 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdffcaf6a fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x9ac857b6 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xccb326d2 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x425b50b9 prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x9bd95ffa prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0461ca1b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b9d4b04 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f1ed7b9 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11cfc87b mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf0ab1b mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d540409 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x222df097 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3773a9de mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a31b0ef mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b7f4608 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c0bf5b2 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x427fab90 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42fc383e mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4324f9d8 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x480c4140 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53eced6e set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a774d3e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ece3dbb mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f766bab mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x674e08f0 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e55a742 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x791d46e6 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bceac88 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ee52d03 mlx4_SET_MCAST_FLTR +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 0x94d893ab mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x971776bf mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba79e59 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9deb3c66 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa60c32ff mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7b2305a mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaee578ce mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6db1c4b mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaa2d569 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc56d2bc4 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9c4c852 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd00cac27 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd04573a2 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd214548b mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb8f9529 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf7e11d9 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb6d49ee mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed7bfd54 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf063d4b9 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa0445e4 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x011dac42 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01676914 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0238da12 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x039a1bc1 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06ad0d57 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x076d5efa mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a3639dd mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a8c8ba0 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b6d1f4d mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cb23d8a mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cce88b9 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0d5e146e mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e0b119a mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105232a4 mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1168cd37 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12cfbdd9 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e33da2 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x190e70a3 mlx5_rl_remove_rate_raw +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 0x1e503b79 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ea3777d mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x227d2233 mlx5_lag_is_active +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 0x25e1e167 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2640240b mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26f26382 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27b5685b mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b299bd1 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bf560dd mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c37cf09 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d582513 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f2d5b97 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f432098 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f50235b mlx5_fc_create +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 0x3315f54b mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x33e30676 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x367c2178 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38c1c913 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x396566d0 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39e4952a mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3da47994 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df7509e mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ed26aca __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f11572b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f9d000f mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ff65c92 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4356b8a7 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45795186 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4618c723 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cf7e09e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d395fc4 mlx5_core_modify_tis +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 0x4e8404e7 mlx5_core_alloc_transport_domain +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 0x59f184e5 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a2d5338 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bcd7898 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c146789 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e732f5b mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6123155c mlx5_sriov_blocking_notifier_register +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 0x6228f625 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65a23ecd mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6875a74b mlx5_lag_is_shared_fdb +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 0x6b1fdb8e mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c583529 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f14b7a1 mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fd7cba6 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7250205b mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x732c14c4 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73e13c26 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x757574ac mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77d21b9e mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78112e07 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7af9293e mlx5_core_destroy_rq +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 0x7c2ed66c mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f5caaeb mlx5_comp_vectors_count +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 0x82692cda mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f3762b mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84bd40c5 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85d954eb mlx5_fpga_sbu_conn_create +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 0x8a8ac746 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b67f1c0 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c6e61ad mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ca01bd9 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90e54846 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91416c3d mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91870b25 mlx5_get_flow_namespace +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 0x935279a3 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945a1d30 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9745ea77 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97511fe3 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b3bb0f3 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d13db13 mlx5_debugfs_root +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 0xa6057ae7 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa78a66b7 mlx5_eswitch_get_encap_mode +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 0xafb0170d __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb009f8bc mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0569933 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb24700ce mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb400dc06 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4119f02 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5a8279c mlx5_cmd_exec_polling +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 0xb893b105 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8ab4754 mlx5_add_flow_rules +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 0xbdcea230 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf6efe07 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc19fc644 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc23f89bb mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2de2db5 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc50a28a2 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e2fde4 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc2828cc mlx5_cmd_exec_cb +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 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7ae114f mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd802bf7d mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd81236c7 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd4249c4 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0432751 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2bd07de mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3474788 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe36360c5 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe47d1dac mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5b04a45 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fcf4c5 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8c3279f mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea76fb2b mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed352304 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee6dd327 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1eb03c3 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf573ef5d mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf591c842 mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf649cbae mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7ef3ca5 mlx5_core_destroy_mkey +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 0xf97212cb mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf999a439 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa27c4d7 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfba40dbf mlx5_cmd_create_vport_lag +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 0xfcb00c68 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebdf3dc mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff1ab173 mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x17833157 mlxsw_env_reset_module +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 0x1ba9a70b mlxsw_core_rx_listener_unregister +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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x315eafd1 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4a9e3580 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5019c7c6 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x58d3cb62 mlxsw_core_ptp_transmitted +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 0x5a939205 mlxsw_afk_values_add_u32 +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 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6393daff mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x68120413 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b3d23b0 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x834f2138 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x950a1607 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9641f7b1 mlxsw_env_get_module_eeprom +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0xa4cec3c7 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaf79cab9 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb7686727 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc9dc65ba mlxsw_core_driver_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 0xcbd64375 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd0032f00 mlxsw_core_port_devlink_port_get +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 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdab47342 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc8374bb mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x15364573 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xf9c3dcb7 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8777d66a mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9fe3f4b6 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04a821fa ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0bdd5a31 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e297522 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11cbfa06 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1261d862 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14fa51c5 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d975361 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21f28f38 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x22f31724 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x274a0e05 ocelot_port_fdb_do_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2a94d05d ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2b09847e ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2bc8e6dc ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2f4cd767 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x351d5340 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x38512f8f ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x402d44ec ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40af666d ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42b61604 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e6b3485 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x643375f4 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67bc5111 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x695068c5 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c25b705 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f306238 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x70bd31bb ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x72e11393 ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x745f7f09 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x77221a17 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ad1c12a ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7ff3ed3f ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8114ff06 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8c0ebf0d ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9002d990 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9241f400 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x94997d27 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x987b5d83 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9a56aba6 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9bc31113 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c4f7abb ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ccfde2a ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d849a52 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f3aacd5 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa329805c ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa386baf3 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5b15aa9 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa74bb0d8 ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xae9899cb ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1bff65a ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9cf23c0 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb9d4e71a ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbaf3ae71 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb4d935d ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc22d450d ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc24b9620 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc328e8b0 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc34b3c91 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc53dfb67 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc892b94d ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd7e30ba ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd33c9eed ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd49e0933 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6eef848 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7f6accd ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd85669fc ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbb4d459 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc68cf8d ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdf382220 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe4b54a9a ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe52e756b ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe58be018 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed1eec29 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xee71a9d6 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa36412d ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x2fac56bd qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x667609db qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x67632f1c qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x992e03d0 qed_put_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x9eeeef48 qed_put_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xc45b131f qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x116ec501 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x8d3d8471 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x225e23b3 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x300b98a1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x50c571fd hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd639c3d4 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9991948 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x28bfb28f free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x8cd4ac72 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd2400b9e alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd9714536 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0bac06d8 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xf225f80e cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0xd594e4ee mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x04a5c0a6 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x051534bd mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x113d4b88 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x2f13a487 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x49391234 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x688ef13b generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x7d5e3cd8 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x97962b5a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xafdd707a mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xbb7e0c2c mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0b39dceb lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x31602b06 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4006bc8c bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x354ca033 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x37d12843 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6bf7e61e pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf8c6f93a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0xcd4d9705 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x06ad2800 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x0e3fc323 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x3b6ec0b3 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7121a618 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x970f9e2a team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xa821f880 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xdb94ed8f team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf2915612 team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x41d08033 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xba5ac3a9 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdf7354f9 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x03127fd6 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x57d295f8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5a28bc2c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8afdcbe9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8d528fc8 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb2162a8d hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdc13dabd detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe0b4b341 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xea9f337e hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf1308eb8 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1080c7ae ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2273dc53 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2e255679 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6f717a4c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x79807311 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x84e5cad7 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9c0a59b1 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb120088d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf8aef16 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0cad5ba dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe56af78a ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf345c9db ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfa9917c2 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x011e86f7 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x03ce5e07 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0428576c ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0533e3b8 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1318b7b0 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2281b643 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x248dc454 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27885aea __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x382e7cbc ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3c362a21 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x40ce5044 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x43c85761 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x44bd41d2 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45240455 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50910ed5 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x553449bb ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55d39fb2 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x567eb248 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64913bc3 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x64fa6b1c ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x685df510 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c66634b ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7271dc51 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x742864e0 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75c692be ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76d57954 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7b694e89 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e5fdf8d ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x899ca8fb ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b0bb92d ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95b9f4c3 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99a04bb5 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9d600f45 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9eb54ae1 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa245413d ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa4c827a4 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8105b1f ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8c6d686 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa7efb6c ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaf709384 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb17d4546 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb485f873 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc826fa98 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xce6aa89f ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfc7f96d ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd30dc220 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd9fabfef ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xde5a946f ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe210cea5 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe4c5914d ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe6406fdf ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe73c0516 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf0e2a13b ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf37d9cbe ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf775b78c ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xffc5eecf ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x02c1cf41 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b31ff49 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x13c0ec5d ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1a529a0f ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x20adedfa ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x29e54733 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2d1dd58b ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x352ed3d4 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x37ebd34f ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3c0cfd22 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x446ccbb8 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4c924eca ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4df673f8 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6bec8908 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72a9a75a ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x735a2a9a ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74b55fa3 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7629d322 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7a74c585 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83fe81e3 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8b6984a1 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8de3b0d1 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x97492113 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e3c01b5 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xadd673d0 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaddd4413 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb4cc8e36 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb689ff66 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbee236ac ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc11d9af6 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc2f77ce0 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc882864c ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xca8386d6 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcc50ceee ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcf04b00e ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe2832e9e ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf8824818 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf9da2af3 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1660541d ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x468b1bfe ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4ea5dbfb ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5061d987 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7da0b26e ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e0db9e6 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x83cd6604 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8df52e15 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb881b1a9 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb9a689dd ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc05b97ef ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc82b228e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xce04fd44 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0169d946 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x22275481 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2258f481 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46593de4 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x487533d6 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x54ec6295 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59cfcc60 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6f9fe0dc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x80307f06 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x896a04a9 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8c6e2d6c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xaf6ba687 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafd570af ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc87cd578 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xce4762bc ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7b2b4ce ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe1b11e82 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe5d696a7 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xef33536c ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf268d2eb ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf621a2cf ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7ded2c3 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8f9b3dc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00553530 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02d5429e ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0937e567 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ce0a9c1 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e03285f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e42af87 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10bf0494 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13a4c7d9 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13d7f815 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x172ab510 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17ef648a ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19dbef64 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b173ee5 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cd09ac7 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fe78dd3 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208805d5 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24c380b9 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2555645e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x261618da ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27c4e998 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29e359c4 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29f256f9 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aeb58d4 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d70f40a ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x315568b7 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36c20101 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39496d1a ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ce20bca ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4247e852 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43783fe6 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43db69ca ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44553b2f ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4699528a ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47b2a572 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48149d03 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x494e0c94 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b6f9d44 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fb7731b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x582d7aa6 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a9e50da ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b9565b5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61856671 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x62f5e54f ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63d9397d ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x64aed9c1 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b3935c ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6618f3a3 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67643a33 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69f16263 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6abcaac0 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x718d60eb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73804f29 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ad9d337 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c00ef82 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7df3bc22 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ee35007 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80258b31 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81e22996 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f5b5de5 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x930f5e83 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98fafd2b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9add814d ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ec7151e ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fc238cb ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ff805aa ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0ef1be3 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa129ec57 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa745dc61 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa923006b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9fd7b20 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac3e5d23 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafb17ff2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafb272c3 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2fd4dd9 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3c8ff44 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb646098c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9419e04 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb96af518 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbab100b1 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe55165e ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc11bb22f ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4a1242e ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5d81e42 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6824b0c ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7a789e1 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7faa5c4 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2d5be53 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd411cb57 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4de62f5 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd85e408d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0dadddb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1c19aa1 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2c34b76 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe627809d ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6d37102 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec1c7988 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecdd722b ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed57f4e5 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0081b1e ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0581f16 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e714d9 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7037642 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7aa925d ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc4aef2b ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd595952 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff189710 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfffcb1b8 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x426cbe6a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xbec68739 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc8eb4d19 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x0c5761d8 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 0x1f8149e7 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x3cff5e04 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x4d048507 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x937254f9 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9c1ea746 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9ef95275 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 0xa9fbfbcd brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xab4fb988 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb326ad21 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbb6bb099 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfa8d38f8 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xfff84154 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x0e8534ef init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x2cd0a8ff stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x90a48d84 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x13fc3dbb libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x19c47e77 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3bfe70f7 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x413f657c libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x63b2bff9 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6850b64b libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6aec968b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x73056d49 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8e3dfd08 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x988889bf alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa15f315e libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xbe4d0530 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc0a4797b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc5f9eeee libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xcaaac672 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xce030d72 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdde43dc1 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe7a0b979 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfbae9fc1 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfebe6918 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02452e69 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x03206606 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05c83d19 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0841df9a il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f8732ff il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x175f375f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17d9f2f9 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x20f14baf il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24dfaabb il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25769975 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x26c04ca3 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e2e7073 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f121377 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x30915181 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3138984c il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31ca7b3c il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x339b95b9 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38d05bf7 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3cc6b46b il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4034421a il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x455f59d9 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49cfcc7a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4efe75dd il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fb22c2f il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x544c3f38 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5856435a il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x58736d40 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ae62e6c il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5c71c3c6 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5ce3f40d il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5dc0a266 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5df511b6 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x630c149c il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x646a7a0d il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6639f73b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c2462ea il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6dc04619 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x73e28867 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x748dd20e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7a9f9b7c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x88227804 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8ccd730c il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d0049c0 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d404297 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8d48ee89 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x937f6871 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a71f401 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c16af35 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cff99a6 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d682b4f il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d7f7142 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa07f8611 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa29679d3 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3889c5a il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4466f23 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa83801e3 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9ff9f5e il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaae47a56 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac414639 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae022502 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaec72e7f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf30414a il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb514acb7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb5c105d5 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb74b4b20 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb867a39f il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb8bea009 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb1adbd4 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb539421 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbbb2537 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbe6e0e7f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbeb93242 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfcb4b49 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfed8c17 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3a31216 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc42576e4 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc5b1dd2d il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8ef9eb8 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd8374f1 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd02e3a67 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd179ef72 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd86cd209 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9315096 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc9707b7 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd856cc6 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xde8e03dd il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf8c883d il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1d97df8 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe27f6b14 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe576bcdd il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe6f5ab58 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe76b9e59 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xeffa9539 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf1a6fcb4 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf652212b il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa9322e4 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfdac0690 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xff7e7092 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x166ef846 __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 0x4028d16f __traceiter_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 0x742af889 __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 0x012cf887 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2316014a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4aee0f3b hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4d9fa226 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x645eb398 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67295470 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x68d1199a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6c2922c0 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 0x79849242 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7c8e115a prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x84a5a13e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x85224b0a hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8c113c58 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9626363a hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c861a5d hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xaa4168b7 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc3c1ce22 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc7b7a4e6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xca1f51fd hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd25160ab hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5b863d7 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe5c6bd48 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeb5448f5 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf478cba4 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfa75c8ce hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0f5c4cb0 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1551a56a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x383ddb8c orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3de87915 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x48c68da8 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4d82678a orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5d7b5e7e alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5e7e9496 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x620be3db orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8f6121f6 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x9c37c3f4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa8c56480 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc29737d4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd80e66f1 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdd8f4ebf free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5cf449d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x46f625eb mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf31273b5 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c1e553f rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1104aa27 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b71cde2 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bf20949 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f0e8b86 rtl92c_phy_set_io_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 0x39ecbaf6 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3fd03b58 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x40b2be68 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41219af7 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42239a98 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x46b97dd4 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5633b4a4 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5acbbb7a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5bb1530e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7727058d _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f531e9f rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x805308a7 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86f60273 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e20ef86 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x911eacf2 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9470c65f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99e2b0e5 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ea074ee _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2d89612 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa4b931c2 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab840f73 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xafc31f95 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2572809 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb5320cca _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba6487b0 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbea1dac7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb6e5ef1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfc30ac4 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd408bf28 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe1019768 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe43779ed rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe49b14b9 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe82d20ee rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8b09f6a rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed79c844 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf8cea772 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2bed3c1e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x387cc219 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x65880f4a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe286a05b rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5a1e57ea rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x6f40b1d7 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcd7278e7 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xffba3147 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08656a87 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08a11312 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x116dc3c7 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x20ae94e0 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22875b51 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2b8c5f0a rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b3b750c rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3c05d1b7 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x557a53bf efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59702dda rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59ef9b57 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x702a27e7 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72aeaf17 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e7d6798 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83b0ec7b rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85c80539 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x906ff464 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92547797 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9bd3e39b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa89908b7 efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb41c581f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb918bf2d rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc9752cf9 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd530cdea rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddc0759d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea77ce08 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb12c326 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 0xee2ee4c2 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5815390 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc600c8 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x26bc96c7 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0xbb7ce14a rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xcd5cec75 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x229e874b rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x084c342f rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x08e9a799 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0d14c82f rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0f0a3b99 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x14a02aff rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x198b91aa rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x291eff12 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2c0b599d rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2ee9b59e rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3452855f rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x396a8cd0 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42ab8d54 rtw_phy_pwrtrack_need_lck +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 0x4def4002 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4f52e5ab 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 0x5631763a rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b6c0bd3 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e93301b rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6239c9bb rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64f4efeb rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x655a45c0 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x678a9c48 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67bc4c3b rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x694f7391 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6b08b549 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x74114113 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x746a9a90 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x81a1d4ee rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x82d8e96c rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x832239f0 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x86d4795d rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8722da03 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x876eac48 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a83b074 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8bb2424f rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9225c23c rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x935574bb rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x939e7d7f rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9ea77105 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8daea7e rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa93bd01c rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xac841821 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0b73da6 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb23980df rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb601c0f0 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb9372889 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba462283 rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba8fe9c1 rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0d9d491 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd259a1e4 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdc8508de rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdd929bd7 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdf1ec24e rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe361cf7a rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe8af0b70 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe9763782 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xec81bf02 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecaebaa8 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf01e5bb3 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf46c8cef check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf57bb89f rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x01427e79 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x33bf027a rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x76ebba24 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xa6022b59 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x5fbd2913 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xb386b78c rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x02bff04d __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0525be1c rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0ba53343 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x116a7c4f rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x16699430 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x18770b16 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x199e326f rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x23ece9e5 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a938f0b rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x363cbe38 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3c97d02a rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x435b0707 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44116c57 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x442e3ce8 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x44b460a0 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x45d49a96 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46108e97 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x46dca723 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ba84799 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c4f6638 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x50520c6a rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x51e13285 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f245d5f rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6f3060b3 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c49f039 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e3d7fdc rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x853ba281 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x866609fe rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x88988fd8 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89c21228 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8a774981 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b1410e3 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8e6b8f81 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x923e079b rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9362caa2 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x978eba6c rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9c287b82 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9d26fa8a rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1d6f086 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa554a0a5 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa8472278 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb72064fa rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb775377f rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbce1c22c rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc030412f rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc7ba6335 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb6c71eb rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcbbdbe4e rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xccaf8e6b rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe8e09c86 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb98719c rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfd7f5789 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x09734ee0 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x122ff634 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2783d36f rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x59481da0 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x6dd572f8 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7afdf5c4 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7e5dc934 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x83adbe2a rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8735b4ac rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc9b70083 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xca1191c8 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd539a7c6 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe1728849 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf1c6f498 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe1f5088 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0x92c9f921 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x011f3cf8 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x39452ac4 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa42092b3 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe7d0bda9 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4d5926b5 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x875e774c fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2e993480 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x95963261 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1df6cc31 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8030cb4f nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb3e8857a nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xea7e8066 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xef32e740 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf1cf2ccb pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x60268279 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9f8c8bfd s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb1f9b509 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xc20d429f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5d4ed861 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x62faaadf ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x675abde8 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x78a20f0d ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87a46eb7 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa1bb2a5a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xacef7be4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb108152 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe2b3107f ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf9e96f4f ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2245144b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a8bd15e st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2e7f2e0f st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5bc11109 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c9d222e st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6a292c2f st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d6b9f20 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6eeb9ebe st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6f0cae9a st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7bab6ae3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9feb7e0b st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1f7abb4 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbaff4c3f st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcb85501b st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd240c8aa st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd617f8ec st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe480c9a3 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf6215fa1 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x17329caf ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x1797845f ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x19c0a635 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2c6acfe6 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x3547500c ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x4e63d6d8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x4fba26ad ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x56722a8e ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6a50c36a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x7cef3326 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x7e2189c2 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa3f3e60f ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xa3fa4242 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xa5c91621 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xa6080d9d ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xc9622cbe ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xcb068fdb ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xd45a8892 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xd73c57b2 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xeae07602 ntb_msg_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x4a17bb41 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xea3ce9ec nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x065127e8 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x099ea7ba parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1f3573e3 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x21238c20 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4740ac63 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x48ff478a parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4cb58757 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4eeee375 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x52137444 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x5791865a parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x611453c7 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x62158f58 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7a3fd5f2 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x869be810 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x89be14aa parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x9d3638ab parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x9fe59eb0 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xacdb3330 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xaec2f1e5 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbd323a78 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xbd3cb78a parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xbdcbc938 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xbfc0a305 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xc054e3b8 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xc4cf072b parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xccf64aed parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd65c00e4 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xe85e696f parport_read +EXPORT_SYMBOL drivers/parport/parport 0xeef52e02 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf65a2990 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xf9faaa56 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0xbd4a246b parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf8be3038 parport_pc_unregister_port +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0x040c174a rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x19caa4b0 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xa8f682cf rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x02397a4b __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0780169f rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x14bb20b2 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x31595a6e rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x31db222c rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37c426fc rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3925da21 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4041ca49 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4065e491 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x43dac1e5 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7823a4f3 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x84e17095 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x987c1baf rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa11818ad rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa25640fc rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb21dbe5f rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc89c9582 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdc3c9dc2 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xdcba9ce9 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x4fb0f3b8 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x00d6bb7d ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x01d1a60b scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa55462c7 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xea886e69 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xeb205aab scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x046bddfb fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1c4392f5 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x27bdeda5 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2bb038c8 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a476766 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x69c0fe0f fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x732fffb7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9d6e946f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f26196b fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2a6ba30 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd92c97a9 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09dc2f99 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ba40959 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0cfce31b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x127ec528 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x13dd16b3 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x175caf9f fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1954dc23 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d18ea61 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1dd534e0 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x211ab275 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22edabc6 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22f19e3f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x231f15c1 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f2a991 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2db20bf1 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x365554a3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x383767c9 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ad0e849 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3cc3b7c5 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40b7f9f2 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x484c7898 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x486b53c8 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48e5c50a fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c06ad3d fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x557fbb9f fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x647532ca fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7374c4fc fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x738c6f4a fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75c273ea fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x78c64fe0 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x797f7c7b fc_rport_create +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 0x8abcea83 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d23a263 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f8e4641 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98ad2bec fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98f0753e fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b21d4aa fc_get_host_speed +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 0xa7539948 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0f28ee5 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1c78fa7 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb80df0c5 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c352d9 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1cbdfb1 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc43a9f39 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce9101a9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcea41267 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcea74baa fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd4946547 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd69d8424 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd98f5bb0 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb0b21b5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe437629c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea1ca525 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeba919c4 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebef59db fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed2c130f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1238d4e fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf689e662 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd6628a4 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4ad52ad0 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7d0294dd sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbd529635 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc42ede5c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa21fafb9 mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xa5924f1e mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xb2cf7c01 mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x258fbfa5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3c656784 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x636f973c qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x64d503e1 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6ba0d892 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8576084e qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb7c745e0 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc4068807 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcb129010 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd3a592b9 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe60acce4 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeabd41cc qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0x7e558e67 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x8de844e4 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xf35e8fb0 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1350379e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22f5a725 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2c5f24db fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bfa303c fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x44913d43 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x505690fe fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5e5709c4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7d4eb32a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8d4630af scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ad4f0f6 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc08db4fa fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc8c8493 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd9541e5d fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdbc696bb fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe25f0e90 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf098c3ec fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2e915c4 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x016e4768 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0206fbe9 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0af1a7c4 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x130b932a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3462a53b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38313d2a sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3d402b0e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ef6ff6f sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44cd9256 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d5a87f4 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fa8c2f5 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x55bd9548 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ad91448 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6708c27d sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ab5a0a3 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6cc7d483 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e808b1a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75027a2e sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x885a06a4 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ef4d0c1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0b9ee54 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa45ace7d sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad88b8c3 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb250de1 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc975ffc sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe55376e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5c86717 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1e559da sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeb31862d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0c7581ba spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x200a36ff spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2fe70a54 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3ca0ffdd spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x97a39fd6 spi_dv_device +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x014c3fe5 qmi_send_indication +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 0x4c7a04ad qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8ae0eaab qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8f8f4851 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xabb846b6 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc6ec0620 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xcf6309ad qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf4b630d2 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfccf9f56 qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xfe9b6e35 qmi_add_server +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x01b16a75 sdw_bus_master_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 0x2080f22f sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x21735ca6 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x257f278d sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2f442dbb sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x32b216d7 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x39fd53a6 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3d44d6ea sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x51d2f604 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x67faa2cd sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x706455f2 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7b9a2d29 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7bf22dad sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x97ef634d sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa5ed5992 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac01332c sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb1c01ef0 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb4bde4fa sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb6d5a07f sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb87df919 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb95fd274 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xba54b904 sdw_cols +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xbbec2c2e sdw_enable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc3cb7290 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xceb822b0 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd0c74024 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd5ad67a1 sdw_bus_master_delete +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 0xf8cdecde sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/ssb/ssb 0x05f0f4d2 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x19183b89 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2ab7f2a8 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3ad363be ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x3c3e988c ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5b483fa0 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x60a230aa ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x77290149 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x879a0e40 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x9935e71f ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x9ef3b6f1 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa79b795f ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xb027a1ca ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb99a0d98 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xba6a649c ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xbc1c68c5 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbec26c1b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcabcb247 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd7b045e3 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe715c582 ssb_driver_unregister +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f9b83b9 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10557b00 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x17d43314 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x195c28f1 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x442cfc97 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x48aac369 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70dce079 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71579446 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x734f1191 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x746b0c06 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x775c5a82 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x826b84c4 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x90c10fcd fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e0b40ec fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb346d0b9 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb443f540 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbb9118e4 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf9438ac fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc9d43ae2 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce574e1f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcf41e9a2 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda8002fd fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec36c2b4 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf193e8aa fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc032135 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x31b2e3f7 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7629e100 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xff744146 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc844f764 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x258d5fe5 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xbd0df073 sp8870_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x01e8403f RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x07bb6472 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x086838f7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08d9d1c6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ab8c1fe rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cd59465 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x221ff3b0 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22292759 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2edaa84c rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32d82991 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x331df894 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4186669a rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4630386c rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b5b03a2 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d09dad8 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4de1f190 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4e450097 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x509c34be rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54b0a7b7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e4c4443 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x611bab98 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68359b78 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7955c43a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x795a0b86 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7af1353d rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x801b976f rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x868a67dd rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89afb1d6 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c68c909 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa038f766 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa45b1ac6 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5482415 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa589d444 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2709134 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb38036ae dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc6bce154 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7ac3aaa free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc94b6409 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcdbf03a1 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb493458 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6d7f31c HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7066434 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7f8c02f alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee60f7fd rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf117c83b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf137d93e rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2b870ff rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfb5073e9 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfc51a1ee rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03003f86 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0abc40ca ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb63bf5 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x12339193 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x13493748 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1401efa5 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x148fee3d ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15a2da32 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x172ad261 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b0a09d1 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b59734f ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dbeea89 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2348bee7 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b622ad7 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c0b0abe ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c36fad3 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x35221b14 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cc1eba1 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e7f6671 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4021e615 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x409cafe9 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44165d37 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45161566 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46d6e79a ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cf911e6 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x593507d2 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6238b109 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x638ec5d9 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ce00df1 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e6cece6 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7952269f ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fc930dd ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d904598 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95420b46 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95537162 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9592cf86 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa21fb681 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa706f573 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf0f24f2 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc15a7669 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6894b05 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6e5fb11 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0ded23b ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd54893c1 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef53650 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1dcb60b ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3f2e2ba dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea1684d3 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2bb9921 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2e1dd6a HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3026514 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3ed57e9 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7eceb87 dot11d_scan_complete +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d8d3ca8 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0f1cd2d3 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10325ee1 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13128294 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38abad97 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d7872b4 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40a2c66c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44babe60 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4b64940f iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x57bf6d28 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b668edb iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5dc9821a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x607bfaf9 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65022f83 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6bcab536 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e9d3da4 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ea5f700 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x74125fec iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79a6ff49 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88ad3d77 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a0208a0 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b89fadc iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d768ab9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fee62e9 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98827e53 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa02ba0e3 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa247f944 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5d59c47 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa98c4787 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaaa58ac0 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e3ba36 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc28f5707 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2a4e303 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd367ebb2 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd65a1dcf iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd8fce07d iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbd7cf3b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbfb510b iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf7544ef iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe18b14e0 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec3ec52b iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec81799b 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 0xf565527e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa918525 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfaf56ff8 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x01bbb839 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x041ef3b2 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e1bec84 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x112d8fad target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c63f127 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x26ea2bb8 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3043f1d8 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x337d30c3 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x33e386df core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x376956c0 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b752c9f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e5e676e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x40837c9e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x45043d03 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x48b4e0b9 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bd1dcd6 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d5f4bfa target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e1d1732 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e556c04 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x518ad0e9 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x51b15997 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x557c9140 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x56475bc4 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x58c2f4a6 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x5934889e core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b813ade core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x614797a9 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x626d9104 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x663274be passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x714c64ca spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x71b7c1b4 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x73dab089 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x77764cfd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a20beca transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b5d1c54 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fd85bd6 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8271b7ca target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d59e0ef transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ef92c73 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x91917016 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de57001 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xa20b2e50 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5205bd1 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa72c7a7a core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9cf09ad transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xac1dd023 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb322a70a transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb36dc650 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3c224b8 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7953262 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7ad7998 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9f8eaed target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbef10a5d transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0b7440c target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc780efd8 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc938d5ed core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xca28cb2c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfacdc17 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0a60614 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9fd36c7 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xdab862e5 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcf069ab target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xdef1c1d5 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0e6206f transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6796e59 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8efe05b transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe92a1f0b target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xea78e139 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xedc91dac target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xf038b8ef sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xf29fa319 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe996462 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xff975754 transport_free_session +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x0ab2cc94 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x14b60fba ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2a0a4429 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x2cd8b5ee ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x328f8e2b ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x480633d4 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x69224a3f ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe3e5ac77 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x39f4e6e0 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x604fcd3f tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x3ae0ccef ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xb84be07b ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x3f490d2f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x6fc10da0 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xf883d5c4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07db268c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0850a9ef usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2e7eddad usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x411382b2 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x882f22a6 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9824469e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac710789 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7d12b43 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xead2e944 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf1c8dc1f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf5a09867 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc884db99 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdbaadeac usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0xaa034672 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1a2ef46c mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4474e908 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9884691d mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xab012017 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xb0b36bec mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc8f68a75 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xce3a0aaa mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe7d98ed4 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x1507031c vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0x3845ecfa 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 0x64b4f194 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6b728db5 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x8a86b708 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x90e8457b lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x050592bf svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0653e53a svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1060261e svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1ed16caa svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4e6e78d8 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 0x84fd9afc svga_tilecopy +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 0xef726fdf svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x6167e3b5 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x3c12a879 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x58647f66 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3628532d 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/matrox/g450_pll 0x6321a3c5 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x941bd2d5 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xcdee8119 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2b7c2bac matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2e07a1d5 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5162179d DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc6e401b1 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd90547ca matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x58b23382 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x15d6d4ef matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x181a7b80 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2fb87ae8 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x32907f7b matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4fc92a21 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9dbff11d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x20384242 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x33af8e67 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7a903b77 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc708a17e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xdee9f427 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x06d4cc94 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3de0240d virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x54455bf9 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb6dc199f virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc614ebee w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xdb112ee3 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x14ac9b68 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xf9e64b0e w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x07230554 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x69e48f47 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x74586f49 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x862d4168 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x160a324b fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1f2960dd fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2451c665 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2f6498ea fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x39a432f5 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x45014f2c fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4c059ed9 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4fd19a59 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x60b23e15 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x68cd663e fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6cc21497 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x72209ccb __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x727dc677 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0x755f9e70 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x77944169 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8a1426ba fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8f402372 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x92ba6879 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xa22fd660 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbef3d9ce __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0xbfe3059f fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc0420f7c fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd74d9f88 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xdecb0727 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0xe9355746 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0xeaecd859 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf06f59aa __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf4f1b282 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0xf5c7099f fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xf9375e90 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x066d4fd6 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x529d0d43 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x5a54f196 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x856e6a18 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xae6cd163 netfs_read_folio +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x63f90be6 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x70bf97cd qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x824d873b qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x98708709 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcd83d976 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xdea4f794 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crc8 0x9c5d5b94 crc8 +EXPORT_SYMBOL lib/crc8 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL lib/crc8 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4cf5f5a8 lc_is_used +EXPORT_SYMBOL lib/lru_cache 0x5752f31b lc_del +EXPORT_SYMBOL lib/lru_cache 0x7257beee lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb672aa97 lc_create +EXPORT_SYMBOL lib/lru_cache 0xbdfabafa lc_seq_printf_stats +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 0xf4122685 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xfd525ec7 lc_put +EXPORT_SYMBOL lib/lz4/lz4_compress 0x4f4d78c5 LZ4_compress_default +EXPORT_SYMBOL lib/lz4/lz4_compress 0x5bc92e85 LZ4_compress_destSize +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 net/6lowpan/6lowpan 0x0d6aa726 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x27056198 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x37d1604c lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x447b0784 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc6ddb29f lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xdf42cae7 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0xaea5b7b6 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xbd7ae19f unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0xa49acead unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xb1f3524d register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0231a501 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x05ea0ce3 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x0acbc311 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x10fc2092 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x18dd72c4 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x237c0999 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2822b625 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4aa0b161 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x4bc11cac p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4e3ff1e1 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x506775f2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x5765190b p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x5e0c4d45 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x62e25923 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6465bf45 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6512362f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6a94cb65 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6b696e8d p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6f8d746b p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x8cacebc8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x8d3ef9be v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x9040672e p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x93a94fa9 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9ecb4702 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa2bf7f29 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xa2cb51e5 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xa3175772 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xa4facb32 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xa8277320 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb42adbf5 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb5d7e2da p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xba6061d1 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xbb085df4 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xc38070ff p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc9d63277 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xcc815452 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xce00d612 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd76c24ff p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe311d1fa p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8d35734 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xebe8a949 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf279584a v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xfb0411b1 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xfe5de847 p9_client_read +EXPORT_SYMBOL net/appletalk/appletalk 0xab7031df aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xbcf3c8f3 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xc530606e alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xc8770103 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x251c882d atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x26709a4a atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3e65a385 atm_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x72414a92 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x78122200 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x81e7acc7 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x951090d7 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa88c25b0 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xae3fe1de atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xb4dc1908 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xbc954f83 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe3cbf445 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf6f45fb9 vcc_process_recv_queue +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3a90862b ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3db4dab2 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6de74955 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x81ed99c3 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xddb6c299 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xea338416 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xfd7be4ce ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xfe25433c ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03c69cfe bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x05808ecc bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a7a2815 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f572b19 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x121c9d4d hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12287d9e bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c98e971 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x320cac4b bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3446fe0a hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38f8b9b3 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e314ed5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x437f0822 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x43cad0fe bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54e7a5c0 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x565c6822 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x570011e2 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58eddde6 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e5b259b hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x617a54b4 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x688be970 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b644553 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76762c91 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77336a1c __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7a7a45e4 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7e6cb13c l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b718f12 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8cf5b5b5 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e89922a __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98221694 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98a7d95e bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bca39c5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa380745a l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6a2b7b8 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf8f6ece l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb43573a1 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8637af9 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd4622e6 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd135263e hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3c46a96 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3d3186d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde8c50a0 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed038391 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef176a1e __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf168123b hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2dd293d bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4af77fc hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf84d6214 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8677f84 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8a1973f bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc4449d6 __hci_cmd_sync +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0e7821ec ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2fd1bbe8 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x554076e4 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5d8a7bbe ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xae08db7e ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcccbb7aa ebt_unregister_template +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x7f33c849 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8d180bd4 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x8f79ede7 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xac433b57 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xc661ea5f caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x0b6427ce can_rx_unregister +EXPORT_SYMBOL net/can/can 0x8e4152ac can_send +EXPORT_SYMBOL net/can/can 0x954662b7 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x96ed41aa can_sock_destruct +EXPORT_SYMBOL net/can/can 0x9b09c052 can_proto_register +EXPORT_SYMBOL net/can/can 0xe16014f7 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x072401e1 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x08b0a0b2 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x08f63819 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x0c4463b0 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x0cf31865 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0fb59811 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x10056a03 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x11f40026 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1208f2f5 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x1334e5e8 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x14801c99 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x1e6fb4cf ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1eb30234 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1fdda336 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x23c15cd1 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x27ab7b01 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x2a6b4e46 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2aca1f03 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x2fa9f9a5 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x2fc8af9f osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3253b25a osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x38fb69d1 ceph_con_init +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 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x420480fa ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x43ba179e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x46094f26 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46b3190d ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x4728b340 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x4973ee72 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4cf4b0aa ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x529fe05b ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x53b88f14 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x53bde46a ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5932dcc8 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x59762e96 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5aaee326 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5bb74485 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x6075ef04 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6259d052 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x68457844 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c1eac00 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x6c65e94b ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x6f1b4c4a osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x6f730838 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x71c87f25 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x733bf2c0 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x7355826b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x78248813 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7b7325e7 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x81b07dbd ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8474b139 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x86702e7a ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8726b77e ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x88fa161d ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x89e3c3af osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x8c140973 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8e96f99b ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x92230db4 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x93f10b7f ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x96a97805 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x988fa323 ceph_auth_handle_svc_reply_more +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 0x9d9f4516 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x9f058e8f 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 0xa2de73c1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa31cc864 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa32f4196 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa5153a09 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xa61bb992 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xa6685a2c ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa6e25c58 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0xa7261927 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xaa26810e ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xaa598c07 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xaee3e448 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xaf4f8dd9 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2137b62 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8592dd8 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbb244f0b ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xbc4d4cb4 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xbcb89124 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd48114e ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0c5f9d8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc1a2a6d3 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0xc1d83f9a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc4892119 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xc509f35a ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xc763f2e1 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcba6aee6 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xce7abe05 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xd18360f2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd33fc2bc ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xd3b0db2e 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 0xd6e053a5 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd893e4c6 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xdcb39285 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe022108c ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0xe1c93f0c ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xe44aaf69 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xe6cc1764 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +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 0xf420cbb7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xf6def5e8 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xfae26ee5 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xfb68dc03 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xfb9e5960 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xfc08e952 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2fc76373 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xc6279e52 dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x5af0a56d hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0x9c419af1 is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5db0af46 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x96a76971 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc8c6f72a wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe8b6d935 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf5d58d54 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf8b56aa9 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x2822a756 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd4819581 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x52a491e8 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x49560e6e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7d2bf5d3 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xda92ed2f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf56499b6 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5b2939eb arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x71be5205 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb7ca29ef arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc4ec5f08 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x28f958e6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5267ec3e ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x83e40083 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe381af76 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x888666da xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb8f2c0f5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x3a1a8cef udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d945b42 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x452e98ca ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e541342 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x51a76a50 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d0a2c0d ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6fd2c4b4 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa74e7c81 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb5ca20d6 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xfb0febec ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4de2a5b6 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5b65e209 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7990847f ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xce5c7f78 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xab1c421c xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe2e7063d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7221a9d4 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf33b0683 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x03f52e67 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x2f1e8b93 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x4cec1727 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x7476be4a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x81ddd322 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x9a19bfc5 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xa4ec3e2d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xc2406a80 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3f5dd7d9 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5eeef68e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x695cce41 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x75a53487 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x999c94bf llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xa60da461 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xaa46a7e8 llc_sap_find +EXPORT_SYMBOL net/mac80211/mac80211 0x01a6a4ce ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x020dea26 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0283900c ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x02f1d4fe ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x081bafd5 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x08db45ab ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x0957ab2b ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0c5177e9 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x0cc25003 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x0f3921d9 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x17c41bb5 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1803b6fe ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x191917fb __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1adf20c5 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x1ca73eb8 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1efb31ce ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x224e39d2 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x251632ae ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x29778345 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2e03175e ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3040ab07 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x3297b10d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3502d438 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x35ff5e98 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x380a7302 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x383f6880 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x3ad1fa16 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x436de0de ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x45623c57 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x47fbb8b0 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x48b38748 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x493deb05 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4dbd64fe ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x503a2a56 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x528dd06b ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5307de04 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x56c69142 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x5e679a5e ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5e724597 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f570d86 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6bbf6249 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6ca32f7e ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x6cd53413 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x71ad9179 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x744dbe8b ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x761fc45a ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7997cf1b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7b4113b7 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x7e31d60f ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x7efe0b6f ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7f33d142 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8260ba17 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8415d2b9 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x858c0f40 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x8f0c2f68 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x94cc84b0 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9ddc1d0e ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa41ac085 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa6d669f1 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xa6e6441d ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa95cbca9 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xa97442f0 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xaa3d4e8d ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xab2c4a2c ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xab658c4b ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xab80fb07 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xadfcc6eb ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0xb42390a2 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0xb5056c66 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb5d1e3b8 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xb8473a70 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb88c8e9a ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xbbd10af9 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbcd19bb6 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbfb61be7 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc057739b ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xc1a16e3c ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc1f0c3aa ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xc3967749 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc3e58981 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc5cb99b9 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xca45057b ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xcb643734 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xcd75f5a2 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xceb93ce3 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xcf6e6706 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcfebbbb5 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xdb72b321 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xdeab316d ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xdf2e4a20 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xdf323085 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xe2a79706 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe5bec68a ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe99d8991 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xeb01b037 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xec48c604 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xf23a3c9f __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf312e888 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xf41d587e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf473fbc6 ieee80211_rx_napi +EXPORT_SYMBOL net/mac802154/mac802154 0x1749c89b ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x1b5d5415 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x219568f4 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x28624b4f ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x409ba105 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x4e2590eb ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x57fef72b ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x947d862e ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa2d509fe ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xb6a263bf ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xe91041a1 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x062b29ef unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18bd589f ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a179826 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1de32efc register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x244ea9ed ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59126866 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ee25d49 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5f7b2544 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x77dd340e ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x77f67154 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x926f8559 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb7e4354c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc297ea73 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9aa6fce register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfbe24413 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7f0516ad nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x9e97e979 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xaf50117d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe96c745c nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xffeb34f2 __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 0x1d5d9dfe xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3cf0a91c xt_find_table +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 0x6234f1a0 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x858e2210 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8a66062b xt_register_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 0xaaa74d0b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xca98a511 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd0254554 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xdaa5fc31 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xe7f59d03 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x037163fd nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x0dfba79c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x18034b67 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x1f6b0af3 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x27fcf052 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3028014f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3cc33454 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3f97ca21 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x603ee586 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x604e5cd4 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0xad3180c6 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb0c9334e nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb86a0820 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbb1a2688 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xcb70651a nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xcceebf7d nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xd750a720 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xdbf11740 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe14c4bd1 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xf88e467e nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xffd19a56 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x03567444 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x10184ee8 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x204397cc nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2589b071 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x289c00dd nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x29f463c7 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x3a350f3f nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3b3e9cb0 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x3dcb162d nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x407f5d35 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x5480226d nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x57ffdf9b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x5f9cbab4 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x69679cd6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7c339405 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7e9ea400 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x802d6123 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8bc98d06 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x9928dc7b nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9fa2e38f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa3085e58 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xafebbccd nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc08f1134 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xcb54bbaf nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xce599738 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcf6c93a7 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xdfc1eb2a nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xfb09e0dd nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xfb9bb034 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nfc 0x06889e72 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x158e293f nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x1662c0cd nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x28165fca nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x372d20fb nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x38de3372 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x40bb78b5 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x79bf1dee nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7abb54c7 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8ff00e1e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x90e0165d nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xa170a68a nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xad7e0e45 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb3bddfac nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xb4206a4e nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb6df9358 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xb7ed9b78 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xbf31a8d3 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xca0c890b nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xd5c51bd5 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd9eaa89a nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xecf31535 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf4118ca7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf9cfa0ef nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xfb77f316 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc_digital 0x1f733262 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x324298ab nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x6407c439 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x76793e34 nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x5429dc16 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6f34d5bc phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x7e426c11 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8f857498 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x967233a8 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa73aa579 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xb334fc27 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xb7f5a4f6 pn_sock_unhash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x01a81ad0 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e221437 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1deb43a2 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b4ea3bb rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x36147904 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x45ae2fbf key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a85c1de rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x65e3196b rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x70e66d4a rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8c8070fc rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa39fd064 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb2cdbe97 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb53ce1f1 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb926b24d rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb9aa53af rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcef94c81 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd34f7608 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf4c5af1c rxrpc_kernel_check_life +EXPORT_SYMBOL net/sctp/sctp 0x885b2920 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1d281413 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3ae366a3 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xa5084294 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xfd368606 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x075f23ac gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x55bb9e0d gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf2b0879e gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4c8b799a svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5f8205f8 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x9435a195 xdr_truncate_encode +EXPORT_SYMBOL net/tipc/tipc 0x9b3d0ca9 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xbcbe8d41 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xc734733e tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xef871f6b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tls/tls 0xfdee6207 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x0225bdff cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x08508d19 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0994d503 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x0ba362c9 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x0bac0eb1 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0de60a53 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x12f0ea30 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x12faad8f cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19b24887 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1ef7b0fc cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x2314affa cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x2850184f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2a366351 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2a6ae16e ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2dc7d93c cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x2ec42bee cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2fbc0ac5 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x321b99b3 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x347c8695 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x39d75d38 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x429ea279 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x43cabd9b cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x43f67e5e cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x45a47da7 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x47163dfa cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x495829c8 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x49c68362 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x4af2adb2 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x4b58766a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4f344606 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x4f9ad24c cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x52e08571 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x547bccd8 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x55f1828f wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x5727545d cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x5a1d3e0a cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5b6bb021 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x5cc412ce cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x60515b99 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x61b03ca8 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x620400a5 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x63081709 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x63c9bba3 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6dfc6333 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6fd4da41 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x718788ab cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x72301306 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x74bcf162 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x75527fa0 cfg80211_iter_combinations +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 0x7c9cf9cb wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7e985482 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x81553680 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x822ad375 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x829893c4 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x830f4a1e cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x869f1f78 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x8bf19eb1 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8f48ab9a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x927067d1 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x93394a35 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x93b2de50 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x93b8661e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x96484e58 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x98ae39a4 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9e64675f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9f0ac758 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xa16a5c09 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa7d80a26 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xa875bafa cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xa9ec9b94 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xac60448b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xada5c0d0 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xaf9953d1 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb5a7945d cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xb5f2f290 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xbd2ab07b __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc2120701 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc21a674d ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc6312929 wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0xc7cd44be cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xccbe234e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xccc40aa7 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xcd90df42 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xd06886f5 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd2b7f138 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xd341f2fe cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xd48c40fd cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd507cf94 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd605ef7a wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d4ec40 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdb32e10e cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdd756e93 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xe04236c8 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0xe3d3599d wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xe433b94c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe83bb007 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf163cbf6 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf3ce4c2e cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf40f3cfc cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf95e2c19 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0xfac5c51e cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/lib80211 0x18b5de1b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2763fa50 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x40593e46 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6335cb0a lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x7be781e8 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xcc9a5ac9 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x3bf19f6c ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x46580538 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 0x2d5699eb 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 0x320f8f31 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0xbd94e54f 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 0xf0b34c02 snd_seq_event_port_attach +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 0x3ef73e0f snd_virmidi_new +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 0x1d061c99 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x1ffd21d8 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x208c73aa snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x221a1e51 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x30e936cc snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x32351461 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x37ec6751 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x39e00517 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x400f9155 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x45f630ab snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x48d30122 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4fba50e0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5d6e55b8 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x60785624 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x6156b450 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x621aca9e snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x6463715d snd_card_file_add +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 0x80fc0f2f snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x858c6c23 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x87206058 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x8d0bd656 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e3ca366 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92c52c00 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x94c1f70a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9ca01a41 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa08c28a0 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xa69254f7 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xaa987f8a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xafc89084 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb251a6d1 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb9683eaa snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xba89f381 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xbac6615d snd_register_device +EXPORT_SYMBOL sound/core/snd 0xbf962704 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xca74b368 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcff2dc9d snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd32f2725 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xd6e14f00 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xd786ce7c snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xe087ab70 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe21e626a snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xe7113f20 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xea444bc4 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf5e34373 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xf872d313 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xfc4a401a snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xfca3e051 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xfe004ae1 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x58b51d11 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xb2359d58 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x07a2fe97 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 0x0e99f298 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x0fc41f88 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x0fca0624 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x12edd9da snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x1342aad1 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x208a86ab snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x27624e8a snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x2be48d04 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2c20b555 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x2d0b7aba snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x2f0af131 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x3355ce28 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3955628c snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x44c5970d snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x48904b96 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 0x51a6171a snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x534392fe snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x53a258c9 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x53aa9427 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x56423ad0 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x614adc85 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6585babd snd_pcm_hw_param_first +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 0x6e086556 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x6e896b8a snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70d2cd25 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x742c944e snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x774ca241 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x7b4bb90e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x83d96c6f snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8531d507 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x90a21883 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9b5eae0a snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xa4811818 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaa50638a snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbaef15b9 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xbe1b81e3 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xc3c848c7 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xc89258ff snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xda3ffae4 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xdd27fcfb __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0xe1324b84 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xe2dade1f snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xe31a21b1 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeca2135c snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xef491ef8 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf25a991d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf9610d1d snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xfe5ba0df snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xff798d76 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06adffb1 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15e2c8d9 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x22308ddd snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x29a54fbd snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x39778a00 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c413df1 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f3bccdf snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5edda66b snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67e655a4 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x69a344c3 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e3f3994 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4d9f058 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6962efa snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa9e1df9a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb69b4e3b snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbacd5640 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb0e467f snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xec8c02c3 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2eea791 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfd7c76c8 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x306ba57b 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 0x10a90134 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x42a79a11 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x48dea819 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x49382d1b snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x565aaeac snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5c5d92bf snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x7c92ae9e snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x94f4dc23 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa447497d snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xaa837c37 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xbc99b8bf snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xbd12f8fe snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xc5c28011 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xdea017b4 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0xe3aa5ffa snd_timer_notify +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 0xc866935a snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x01437937 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a482107 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x284f8a6b snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x44f95a41 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7da010ec snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x92afba2f snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcfc6fa2a snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf44485e1 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfc737cf7 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 0x44d5c40f snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5793d829 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x59b3678a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5e1491b4 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80ad9482 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9249cc02 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9cbbfc89 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa45e187a snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe7aeadbe snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x041c3580 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1003ac23 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19c935a7 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23bbf535 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x33af3733 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37b505b3 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3bd1ef81 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4863ef4e avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ca230a7 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52b0d550 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55b331d3 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5dd11d62 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e4c5748 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64c0bee2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88ddb2c5 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d217a68 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94e36ac3 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa46ae6ca avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb92d7665 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0a70574 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0d19496 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc61175b1 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb8f4a96 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0e607e2 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2050e3b cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8fb67d5 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9666803 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe47c60a2 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd84a190 cmp_connection_establish +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xbd8b5594 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc0c7ef54 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0aa60597 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x28d8af45 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3dd6b8f9 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69ae3f91 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7dbf3b86 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaa643177 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb382031a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd229596c snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x16781c58 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x16878374 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x38f53ea1 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x73d51f71 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd7890b42 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe6c96b0b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1f65020e snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x30b48a8d snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3bd7e4f2 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9308fa5e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa6d3c3d7 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc192028a snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0b69cec3 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x110c5284 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1820a6ba snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x61484f41 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x72e9dd56 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x831fc29e snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x84471b0b snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x87e3847d snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8d1d2987 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc6e4b986 snd_sbdsp_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x036c600e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0ee389c6 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12666a47 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e653175 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e888255 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3f201d7d snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x482a4613 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5a0b5e5e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8146550c snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa17e7444 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad3f1511 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbe05d933 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf19c8cc snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd4f58967 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd7706678 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdda24f8f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf8085118 snd_ac97_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x889a3afb snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd3c2307a snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe44b54f5 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0988bc83 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ba8c6d2 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f3b33a2 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53d9e059 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e8eedb8 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d735aac oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e4e1b4c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x74509221 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x76babf7e oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f558ec6 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83cb6738 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8665b742 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x94c0f752 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa41bd4ae oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb21203b5 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6e9c17b oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcc84bdd2 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd506af4f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef2421d6 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6a5302f oxygen_reset_uart +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x4339623d snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xcfd6a678 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xe9787d4e adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x4dd5a25f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x11f9b3d2 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xc838fefd pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0da29e8a tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xc7986c98 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x7ba18511 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xbae71e3c aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xc4941067 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x26037bc7 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xe86d5a7d 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 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 0xae8ff9e4 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xbd1487ab wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xc77d3b9e 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 0x7c11f506 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soundcore 0x401cf111 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8d468526 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa282d598 sound_class +EXPORT_SYMBOL sound/soundcore 0xc7202b9d register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe1fa5ceb register_sound_dsp +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x0b868d8e __snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xb2af19e1 snd_usbmidi_resume +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xbed43a41 snd_usbmidi_suspend +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x0026fb75 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x0033079c scm_detach_fds +EXPORT_SYMBOL vmlinux 0x003a7a96 h_ipi_redirect +EXPORT_SYMBOL vmlinux 0x004050da phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x004857e8 generic_fillattr +EXPORT_SYMBOL vmlinux 0x00640c5c blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x006d3c52 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0x008f490b tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x009249fe gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x0140c525 gen_pool_create +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0148da89 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x0151d8bd setup_arg_pages +EXPORT_SYMBOL vmlinux 0x01553c5e input_free_device +EXPORT_SYMBOL vmlinux 0x015fc29b pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x01609e3d radix__flush_tlb_page +EXPORT_SYMBOL vmlinux 0x016be051 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017c1c47 __dev_set_mtu +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 0x018fbf38 of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x0194d25c skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x01982074 xa_set_mark +EXPORT_SYMBOL vmlinux 0x01998768 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01e80408 timer_interrupt +EXPORT_SYMBOL vmlinux 0x01eb3b11 kernel_accept +EXPORT_SYMBOL vmlinux 0x01ec3b0d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x01ed6022 eth_header +EXPORT_SYMBOL vmlinux 0x01f1d3e6 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x01fcce75 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x0200b110 pps_register_source +EXPORT_SYMBOL vmlinux 0x0201a877 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021f1f3d mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x0228925f iowrite64_hi_lo +EXPORT_SYMBOL vmlinux 0x023c5c89 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x024380ac twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x02450bec import_iovec +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024e21fc unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x0256ff1f softnet_data +EXPORT_SYMBOL vmlinux 0x025a514e __mdiobus_register +EXPORT_SYMBOL vmlinux 0x025c1602 __debugger_sstep +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02775e76 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029fcfb3 abort_creds +EXPORT_SYMBOL vmlinux 0x02a50641 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x02ac4985 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x02b3a92d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c07b3d d_lookup +EXPORT_SYMBOL vmlinux 0x02c3c40e __debugger_break_match +EXPORT_SYMBOL vmlinux 0x02c5b246 tcp_connect +EXPORT_SYMBOL vmlinux 0x02df50b0 jiffies +EXPORT_SYMBOL vmlinux 0x030b0273 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x03160e1c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x0316b137 path_get +EXPORT_SYMBOL vmlinux 0x03260f98 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033ab463 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x0356070e pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03724303 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03f28f77 mount_nodev +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040c5b2d no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x040ca17d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x040ebc44 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x042e919c kthread_bind +EXPORT_SYMBOL vmlinux 0x04336822 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x043c86cf kernel_listen +EXPORT_SYMBOL vmlinux 0x043cdb65 bio_reset +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04679125 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x046ce173 sock_edemux +EXPORT_SYMBOL vmlinux 0x0474520b seq_vprintf +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x0482d356 tty_devnum +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04896c68 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x0489ab0c _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x048edead key_type_keyring +EXPORT_SYMBOL vmlinux 0x04b8e39e ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x04cde1e3 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x04e1b263 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04eaefa2 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x04f158be cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05290bc0 sock_no_accept +EXPORT_SYMBOL vmlinux 0x0541e878 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x0560533a genl_notify +EXPORT_SYMBOL vmlinux 0x058037fe sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x058df385 dev_deactivate +EXPORT_SYMBOL vmlinux 0x05980d0e redraw_screen +EXPORT_SYMBOL vmlinux 0x05a04c65 skb_seq_read +EXPORT_SYMBOL vmlinux 0x05af46ad disk_stack_limits +EXPORT_SYMBOL vmlinux 0x05ca290a dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x05cc0007 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x05cf5baf vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x05fae0fb mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x06093a08 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x063385dd get_tree_single +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063fbb83 ns_capable +EXPORT_SYMBOL vmlinux 0x0649c047 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x065bc7e9 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x067b4431 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06bd5c5e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x06ce507f mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06e20cfb noop_qdisc +EXPORT_SYMBOL vmlinux 0x06f677c3 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x072bd31c twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073fec1f pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x074368db md_write_inc +EXPORT_SYMBOL vmlinux 0x074a0c1d alloc_fcdev +EXPORT_SYMBOL vmlinux 0x0755077f kobject_add +EXPORT_SYMBOL vmlinux 0x075fbb3c dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x075fbe8e reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x078f36ab sock_alloc_file +EXPORT_SYMBOL vmlinux 0x07a0295b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x07a7384e radix__local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a89651 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x07b2f73c tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x07ba42d5 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d0e2de tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x07d54a5b udp6_set_csum +EXPORT_SYMBOL vmlinux 0x07da2d63 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x07f0014e xp_free +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07f89ee7 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082ce866 do_splice_direct +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084b448c km_policy_notify +EXPORT_SYMBOL vmlinux 0x08500164 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x0854d25c sock_setsockopt +EXPORT_SYMBOL vmlinux 0x08584889 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x0868f0f7 param_get_hexint +EXPORT_SYMBOL vmlinux 0x0871790a __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08855390 da903x_query_status +EXPORT_SYMBOL vmlinux 0x08986a95 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x08a8dedf user_revoke +EXPORT_SYMBOL vmlinux 0x08c026bc rtnl_unicast +EXPORT_SYMBOL vmlinux 0x08e4112f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x090f28b5 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x0924bccb xfrm_input +EXPORT_SYMBOL vmlinux 0x092fe9df rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x093290f0 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x094446ac napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x0944f7f0 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x094ae9e9 sock_no_getname +EXPORT_SYMBOL vmlinux 0x094f4c1e __brelse +EXPORT_SYMBOL vmlinux 0x095d0d1b phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x0961b991 folio_write_one +EXPORT_SYMBOL vmlinux 0x0964e5a0 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x096a7e99 mutex_lock +EXPORT_SYMBOL vmlinux 0x09721f85 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x098435b0 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09945309 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09bbfa33 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x09bd2d9d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x09cbbd52 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x09ce9a31 __put_page +EXPORT_SYMBOL vmlinux 0x09cf6156 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09dd5df8 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x09f3848d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a19dfbb rproc_put +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a245f81 pci_set_master +EXPORT_SYMBOL vmlinux 0x0a394019 km_query +EXPORT_SYMBOL vmlinux 0x0a4004c6 md_update_sb +EXPORT_SYMBOL vmlinux 0x0a692b33 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7a255f agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a96e707 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa82f66 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0af62058 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x0b0f865c setattr_prepare +EXPORT_SYMBOL vmlinux 0x0b148bf8 input_event +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b28e38f page_pool_destroy +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b330954 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x0b5f7981 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b784bf0 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x0b8a6338 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x0b9de4fd mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba42d62 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x0bb6ce3d inet6_protos +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd210f0 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bf31475 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x0bf36885 do_wait_intr +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c04fe89 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2e9af6 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0c3c9163 seq_path +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c79d82f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x0c79f2be netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x0c93ca7c datagram_poll +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cb12092 xa_destroy +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 0x0ce22ff3 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x0ceef8de __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x0cf5ad55 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x0cf98ca0 __xa_alloc +EXPORT_SYMBOL vmlinux 0x0cfcef94 dquot_drop +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0a5789 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x0d112874 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d2cfdeb dev_remove_offload +EXPORT_SYMBOL vmlinux 0x0d327ed5 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d58205f pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x0d6a38e7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0d7e482c of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0d86e7b0 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0d9b6efc xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0dac3188 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x0db55a20 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x0dca2725 inet_offloads +EXPORT_SYMBOL vmlinux 0x0dd84745 unregister_netdev +EXPORT_SYMBOL vmlinux 0x0de75a16 ppp_input +EXPORT_SYMBOL vmlinux 0x0df81d67 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x0e14227d mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e2224c0 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x0e2e4fab xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0e34fac3 nd_device_register +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e46b5b9 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x0e4b13fa gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x0e54b0b5 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x0e594a0b vme_slave_request +EXPORT_SYMBOL vmlinux 0x0e83af8b dev_get_stats +EXPORT_SYMBOL vmlinux 0x0e89e223 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x0e8a02dd wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x0e9cf00a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x0e9e05d6 make_kprojid +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eb20c6a tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed8aeae rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x0eddd4ac pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0efc5ced mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f15c085 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1b59a7 padata_alloc +EXPORT_SYMBOL vmlinux 0x0f37dc0f devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x0f3c866a is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x0f4267ae unix_attach_fds +EXPORT_SYMBOL vmlinux 0x0f756676 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x0f75ff43 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f89ce1c dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x0f93c104 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0f973b83 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x0f9bb05e simple_transaction_release +EXPORT_SYMBOL vmlinux 0x0f9f5980 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fc88834 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd95a31 simple_rmdir +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 0x10391eb7 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x104d4d56 tty_register_driver +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105b4da6 devm_release_resource +EXPORT_SYMBOL vmlinux 0x105bdf1c __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1083e0a0 sock_set_mark +EXPORT_SYMBOL vmlinux 0x10a4e10a kern_path_create +EXPORT_SYMBOL vmlinux 0x10a996f6 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x10a9e25a pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x10c6ab00 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x10c94100 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x10d242ba clear_inode +EXPORT_SYMBOL vmlinux 0x10d96c64 crypto_sha256_finup +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 0x10f38112 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11107ab0 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x111fa7c9 qe_pin_set_dedicated +EXPORT_SYMBOL vmlinux 0x11319e3f reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x11375103 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0x1149845a param_set_int +EXPORT_SYMBOL vmlinux 0x116627c9 ioremap_prot +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1193b513 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x1194c7c9 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x119ef1f0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x11a8313c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x11b5409e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x11c872bd pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d5cc48 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x11de7c04 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11f30dc7 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x11f96bc3 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x11fff7ef pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x12023434 ps2_end_command +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120b5f3e blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x120c6c2c i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1213b196 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x1217208d register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x122ce437 arp_send +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12769d3b fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x12a88158 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x12ab0071 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x12c05d95 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d87804 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x12e3c528 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12ed6cf5 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12f7f6eb free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x12faaa4b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x1310df14 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x1322098c platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x13239368 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x133eed38 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x138da35f mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x1392bbd4 ip_defrag +EXPORT_SYMBOL vmlinux 0x13951357 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x139acc04 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x139d12e1 vif_device_init +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13b41558 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13c4a0bb vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x13ce133f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d0b9da ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13e1b2d5 current_stack_frame +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13f855f5 ps2_drain +EXPORT_SYMBOL vmlinux 0x1409e5dc phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x142076a8 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x1421ec6e unregister_console +EXPORT_SYMBOL vmlinux 0x142a4345 mipi_dsi_generic_read +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 0x14640bfa inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x146e23b4 migrate_page +EXPORT_SYMBOL vmlinux 0x147e0857 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x1481dfc9 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x1483e079 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x149054d8 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x14a233b8 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x14a2b413 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x14a8b364 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x14b81d84 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d1a0c7 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x14f364b3 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x14f44c33 key_revoke +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153317ff fiemap_prep +EXPORT_SYMBOL vmlinux 0x153529b6 seq_printf +EXPORT_SYMBOL vmlinux 0x154376c5 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x156dfce4 dquot_get_state +EXPORT_SYMBOL vmlinux 0x158249ac __folio_lock +EXPORT_SYMBOL vmlinux 0x15b7a7c8 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c04719 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x15f44eb8 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x1608bbc1 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x160bfc49 xp_alloc +EXPORT_SYMBOL vmlinux 0x160e84be mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x161d1bcf pci_request_irq +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x165ef2a7 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x1666e48a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167f2072 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x1682d19f rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x168f728c always_delete_dentry +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16a644c2 __serio_register_port +EXPORT_SYMBOL vmlinux 0x16c24737 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x16c68cbc tcf_action_exec +EXPORT_SYMBOL vmlinux 0x16d2dc3d netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x16ded1eb inet_frag_kill +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f028f9 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x16f8ec4d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x17216ade proc_create +EXPORT_SYMBOL vmlinux 0x1731aa1c devm_iounmap +EXPORT_SYMBOL vmlinux 0x1731bd53 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x17615fe1 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x17693b4a __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x176e9037 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x17717178 mntget +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x178efd83 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x178f8b12 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x1791c299 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x17aaced3 import_single_range +EXPORT_SYMBOL vmlinux 0x17c7f18f vm_mmap +EXPORT_SYMBOL vmlinux 0x17e2c256 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x17ef3544 swake_up_one +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f6c56b __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x17f7a63f tty_unthrottle +EXPORT_SYMBOL vmlinux 0x1822c235 dev_driver_string +EXPORT_SYMBOL vmlinux 0x18255c0d __init_rwsem +EXPORT_SYMBOL vmlinux 0x1828aa95 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x18340a8f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x186ca1f5 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x186d7188 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x187a362f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x18842777 read_cache_folio +EXPORT_SYMBOL vmlinux 0x18867d2b rproc_boot +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a17f84 tty_vhangup +EXPORT_SYMBOL vmlinux 0x18a8de0c key_reject_and_link +EXPORT_SYMBOL vmlinux 0x18a961b3 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x18ba1795 pci_clear_master +EXPORT_SYMBOL vmlinux 0x18c2bb55 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x18c7e572 uart_register_driver +EXPORT_SYMBOL vmlinux 0x18dcd954 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ec8377 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x18eda15e register_netdev +EXPORT_SYMBOL vmlinux 0x18fca40a blk_finish_plug +EXPORT_SYMBOL vmlinux 0x18fef596 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x18ff2351 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x190ee910 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x193e3c2e tty_port_open +EXPORT_SYMBOL vmlinux 0x193ea0af vio_unregister_device +EXPORT_SYMBOL vmlinux 0x193f3011 d_move +EXPORT_SYMBOL vmlinux 0x1945becc simple_dir_operations +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x196a5a99 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x19751eb5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1991e221 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x199c4ec1 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a7168c rw_verify_area +EXPORT_SYMBOL vmlinux 0x19b16b34 up_read +EXPORT_SYMBOL vmlinux 0x19b4324b i2c_clients_command +EXPORT_SYMBOL vmlinux 0x19b60e7c pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ce07f6 vga_client_register +EXPORT_SYMBOL vmlinux 0x19d68628 xa_get_mark +EXPORT_SYMBOL vmlinux 0x19d73b38 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x19f747b0 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x19f74ca1 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x1a14b521 get_user_pages +EXPORT_SYMBOL vmlinux 0x1a2e4ea1 seq_read_iter +EXPORT_SYMBOL vmlinux 0x1a36a221 lease_modify +EXPORT_SYMBOL vmlinux 0x1a398119 config_item_set_name +EXPORT_SYMBOL vmlinux 0x1a4627ab netdev_features_change +EXPORT_SYMBOL vmlinux 0x1a6167bf input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x1a6ead86 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1a70b675 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x1a777e9f sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x1a7aac93 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x1a7da22a tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1a9e7ee0 of_device_alloc +EXPORT_SYMBOL vmlinux 0x1aa2b3f1 tlbie_capable +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae64dac inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x1aef6376 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afdc244 mutex_trylock +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0f6c97 __alloc_pages +EXPORT_SYMBOL vmlinux 0x1b162f27 pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x1b27845f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x1b479d74 framebuffer_release +EXPORT_SYMBOL vmlinux 0x1b5c1477 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8e981c iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x1ba3165d misc_deregister +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baae9d6 dma_fence_init +EXPORT_SYMBOL vmlinux 0x1bb05a95 sget_fc +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bc8db16 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x1bc96301 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bee7937 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1c13ed5f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1c1f2149 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1c36fa97 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c680c20 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x1c78f5f2 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x1c7cfdb1 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x1ca1b1be radix_tree_delete +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1ca91f96 dst_dev_put +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cde0a51 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x1ce15d0a __irq_regs +EXPORT_SYMBOL vmlinux 0x1cff74a7 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x1d060366 ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d10bb97 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x1d13c940 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0x1d335db2 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x1d4ec6ab kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d669a8b __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1d77e6ac generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x1d8545d5 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x1d86d76f devm_register_netdev +EXPORT_SYMBOL vmlinux 0x1d8edd01 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1dc55ae1 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd25cf0 single_open +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1df49575 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x1df80f91 tso_count_descs +EXPORT_SYMBOL vmlinux 0x1dfddab3 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cf514 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x1e1992cc __memset64 +EXPORT_SYMBOL vmlinux 0x1e1d311a get_phy_device +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e283290 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x1e3ed328 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6d56d2 mmc_add_host +EXPORT_SYMBOL vmlinux 0x1e754f13 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1e837226 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x1e875885 add_wait_queue +EXPORT_SYMBOL vmlinux 0x1e921ace do_SAK +EXPORT_SYMBOL vmlinux 0x1e95cdf2 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eba6ef8 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x1ec934bc mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1eec0d12 devm_ioremap +EXPORT_SYMBOL vmlinux 0x1f021f8a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1f03b50d dns_query +EXPORT_SYMBOL vmlinux 0x1f0714e3 kernel_bind +EXPORT_SYMBOL vmlinux 0x1f174bff skb_pull_data +EXPORT_SYMBOL vmlinux 0x1f20b495 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x1f2d1982 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x1f40db44 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x1f687a19 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x1f744dd0 iput +EXPORT_SYMBOL vmlinux 0x1f74af1b security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x1f815046 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x1fa81df7 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x1fa973e6 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x1fb56df6 elv_rb_del +EXPORT_SYMBOL vmlinux 0x1fb71039 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x1fb9e59b tcp_sendpage +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fca138c mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd510b5 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x1fe08e39 invalidate_disk +EXPORT_SYMBOL vmlinux 0x1feff17f scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1fffbdf5 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201dfc84 blk_start_plug +EXPORT_SYMBOL vmlinux 0x2036b85b fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x203de0ad of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20719caa discard_new_inode +EXPORT_SYMBOL vmlinux 0x2088467c i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x209265d4 param_ops_charp +EXPORT_SYMBOL vmlinux 0x209d260c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b93b95 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20f1ba53 phy_find_first +EXPORT_SYMBOL vmlinux 0x210f76bb mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21554ee8 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x21579f4d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x21643854 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x216a66b4 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x216d4de7 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21a14edb pipe_unlock +EXPORT_SYMBOL vmlinux 0x21b27305 generic_set_encrypted_ci_d_ops +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 0x21c045d0 single_open_size +EXPORT_SYMBOL vmlinux 0x21d5092f phy_device_register +EXPORT_SYMBOL vmlinux 0x21daaac1 sk_error_report +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x22079571 vme_irq_free +EXPORT_SYMBOL vmlinux 0x22168216 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x221f28d7 input_inject_event +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x225d1590 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x2294bf92 posix_test_lock +EXPORT_SYMBOL vmlinux 0x22967a6f ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x22acdddc devm_memunmap +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c3866b dev_disable_lro +EXPORT_SYMBOL vmlinux 0x22dee641 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x2310ae4d pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x232485e6 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x2327d2c0 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x23282210 of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x233a8188 agp_create_memory +EXPORT_SYMBOL vmlinux 0x233cab92 cpumask_next +EXPORT_SYMBOL vmlinux 0x235c60a4 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x23619cff jiffies_64 +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2365f733 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x23672887 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x2372ed7b dev_close +EXPORT_SYMBOL vmlinux 0x23792644 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x238119fb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238ba4f0 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x2392d2e8 __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x239713a5 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x23b2721d netlink_unicast +EXPORT_SYMBOL vmlinux 0x23b5b617 mempool_create +EXPORT_SYMBOL vmlinux 0x23b975a3 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c1b3cc textsearch_unregister +EXPORT_SYMBOL vmlinux 0x23c67a94 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x23d8c203 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23db66a8 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241a46e9 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x2420fb6f mr_table_alloc +EXPORT_SYMBOL vmlinux 0x244076c8 tcp_mmap +EXPORT_SYMBOL vmlinux 0x24412a26 __scm_send +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2461a23e vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x24640695 security_sk_clone +EXPORT_SYMBOL vmlinux 0x24777a4d pci_request_region +EXPORT_SYMBOL vmlinux 0x24836da8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24949870 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x24a10b81 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x24b133c3 pci_write_config_word +EXPORT_SYMBOL vmlinux 0x24ba1cfd param_set_long +EXPORT_SYMBOL vmlinux 0x24c20d8e pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x24c8f6fd ppc_md +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d71f5d vme_register_bridge +EXPORT_SYMBOL vmlinux 0x24ec7f09 cdrom_release +EXPORT_SYMBOL vmlinux 0x24f2b13c truncate_setsize +EXPORT_SYMBOL vmlinux 0x24f9f5e0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x24fcc4c7 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x25064f23 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x250788f0 rename_lock +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x253ad8be zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x254c9287 ioremap +EXPORT_SYMBOL vmlinux 0x255232b8 __devm_release_region +EXPORT_SYMBOL vmlinux 0x2554701c of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x257285b6 sock_i_uid +EXPORT_SYMBOL vmlinux 0x257a54f1 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x2581a2be ll_rw_block +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584d583 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259ed865 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x25b0bbf5 twl6040_power +EXPORT_SYMBOL vmlinux 0x25c00eac unpin_user_page +EXPORT_SYMBOL vmlinux 0x25d22f68 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x26075448 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x2615f9d2 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x26179a56 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x266b05de iterate_dir +EXPORT_SYMBOL vmlinux 0x266e87cf mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x2674db4a fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x2678e012 flush_signals +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26a051fb locks_delete_block +EXPORT_SYMBOL vmlinux 0x26acdf03 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x26baf5c0 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x26bb4951 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x27050a7f neigh_direct_output +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x27108d55 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x2745af71 mmc_can_gpio_ro +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 0x2764f3c4 __netif_rx +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277ecee1 down_write +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2783ad0f vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278dc470 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x278df2a5 folio_add_lru +EXPORT_SYMBOL vmlinux 0x2798692d dquot_scan_active +EXPORT_SYMBOL vmlinux 0x27a15933 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x27bb438d tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x27bbb1e0 generic_setlease +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bc1742 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x27c9d1f9 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27cf5e13 skb_append +EXPORT_SYMBOL vmlinux 0x27ed876e unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x27f10fa1 phy_init_eee +EXPORT_SYMBOL vmlinux 0x27f32684 locks_init_lock +EXPORT_SYMBOL vmlinux 0x27f87b41 has_capability +EXPORT_SYMBOL vmlinux 0x28179815 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281b0749 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x282f8618 netpoll_setup +EXPORT_SYMBOL vmlinux 0x285960ce md_register_thread +EXPORT_SYMBOL vmlinux 0x28659c3f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2866f5c3 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x286f7bfc pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287c078b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x2885bb29 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x288edae2 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x288fa94b xattr_full_name +EXPORT_SYMBOL vmlinux 0x288fd670 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x28939a62 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x289eab77 set_page_writeback +EXPORT_SYMBOL vmlinux 0x28b4099f blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x28cc74bf __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x290182e3 skb_find_text +EXPORT_SYMBOL vmlinux 0x2915c217 register_framebuffer +EXPORT_SYMBOL vmlinux 0x2928bab0 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x292a4699 pci_save_state +EXPORT_SYMBOL vmlinux 0x29411d80 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29625563 __devm_request_region +EXPORT_SYMBOL vmlinux 0x29760636 eth_type_trans +EXPORT_SYMBOL vmlinux 0x2982b8d4 shmem_aops +EXPORT_SYMBOL vmlinux 0x299ff460 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x29a9628e unregister_shrinker +EXPORT_SYMBOL vmlinux 0x29b0f360 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x29b28b0b fsync_bdev +EXPORT_SYMBOL vmlinux 0x29ce1145 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x29d7e699 nf_log_trace +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e93ebf key_invalidate +EXPORT_SYMBOL vmlinux 0x29ffef82 cdrom_open +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a411fdf fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x2a426884 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x2a63a196 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x2a71e9b7 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2a866b98 udp6_csum_init +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 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2abe6563 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x2acaafed ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x2add5df1 key_link +EXPORT_SYMBOL vmlinux 0x2ae8cf8d config_item_get +EXPORT_SYMBOL vmlinux 0x2af02f20 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x2af4e03b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x2b022d46 mmc_start_request +EXPORT_SYMBOL vmlinux 0x2b3170eb dst_release +EXPORT_SYMBOL vmlinux 0x2b5f9229 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x2b64d0bc rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6d879c dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x2b83bea3 param_set_ushort +EXPORT_SYMBOL vmlinux 0x2b8dbbd0 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x2b9486fc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bcd6971 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2bdc5e8f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x2c03e4d4 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x2c057a8d freeze_bdev +EXPORT_SYMBOL vmlinux 0x2c19bec3 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2c22fee2 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x2c24ce51 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c330bd1 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x2c39b839 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x2c4188d0 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2c41ce09 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x2c5c1d71 iget_locked +EXPORT_SYMBOL vmlinux 0x2c6055ec page_get_link +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c89fbff dma_supported +EXPORT_SYMBOL vmlinux 0x2c90c48a fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x2c94f474 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x2cca74d7 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd49250 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2cdc8e43 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x2cdff684 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x2ce6fc51 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x2cec4763 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2cf15bb0 serio_open +EXPORT_SYMBOL vmlinux 0x2cf32053 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d1dd99c new_inode +EXPORT_SYMBOL vmlinux 0x2d2d75f1 __find_get_block +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4ba920 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d7df11c tcf_exts_change +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da3fc18 vc_resize +EXPORT_SYMBOL vmlinux 0x2dabdffd devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x2db5687c inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x2dc4e156 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x2dc6acad ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x2dcdea36 chip_to_vas_id +EXPORT_SYMBOL vmlinux 0x2dce19f1 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x2e12f519 of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1fab2f _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x2e299585 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2d9984 bio_uninit +EXPORT_SYMBOL vmlinux 0x2e2fa0ab dquot_release +EXPORT_SYMBOL vmlinux 0x2e579367 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x2e5c55f9 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x2e5f0be6 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7a9d2a follow_down +EXPORT_SYMBOL vmlinux 0x2e865dbd mount_subtree +EXPORT_SYMBOL vmlinux 0x2e8c6dd5 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x2eb8a2ed mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x2ec5399a ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed0cc14 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x2ed60238 d_make_root +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eee3cf1 d_invalidate +EXPORT_SYMBOL vmlinux 0x2f000c44 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f155d6c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x2f198101 d_rehash +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f5671c7 poll_freewait +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8264bd gtm_get_timer16 +EXPORT_SYMBOL vmlinux 0x2f88c5d7 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb5109a dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x2fc2f008 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x2fc606e5 __fs_parse +EXPORT_SYMBOL vmlinux 0x2fc78fcc xa_erase +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff1812f jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x2ff892ed tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x2ffae7d6 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x2fff3b76 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x303c514e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x30450b50 request_firmware +EXPORT_SYMBOL vmlinux 0x304c8410 register_shrinker +EXPORT_SYMBOL vmlinux 0x3058ea5f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x305cf10a security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x306f73b6 sock_release +EXPORT_SYMBOL vmlinux 0x30802a06 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x3081df41 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x3092a337 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b1b938 dev_activate +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c7a2de follow_down_one +EXPORT_SYMBOL vmlinux 0x30de3ab0 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x30f1875c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x30f50823 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x311c2e1e bio_endio +EXPORT_SYMBOL vmlinux 0x311fd254 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x3125e3f8 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3127eed4 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x312cf672 dup_iter +EXPORT_SYMBOL vmlinux 0x3174b18b generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x3187a192 page_mapping +EXPORT_SYMBOL vmlinux 0x318c2442 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x31a62e28 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x31b1a41c __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x31bac99b arch_free_page +EXPORT_SYMBOL vmlinux 0x31ddeaa4 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x31eff074 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x31f085aa mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x32087b61 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x3216872e tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x3217c3a3 __memset32 +EXPORT_SYMBOL vmlinux 0x3218004e iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x321f1255 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x322103c4 ip_frag_init +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32242da1 generic_listxattr +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3240eb3f __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x327a7bda flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x327b623a netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x327c3c12 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328f3b08 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x32934f68 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x32b7d5b2 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x32bcb559 __breadahead +EXPORT_SYMBOL vmlinux 0x32c7195c serio_close +EXPORT_SYMBOL vmlinux 0x32ca6ab6 vga_get +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e676a8 kset_register +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32f6617c key_validate +EXPORT_SYMBOL vmlinux 0x32fd4bef of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x330cde00 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3312c9fe flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x331822f3 vfs_setpos +EXPORT_SYMBOL vmlinux 0x332d5cab skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x33953a7a km_state_expired +EXPORT_SYMBOL vmlinux 0x33a0f299 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x33a918eb fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x33a927d3 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x33ac3a7d ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x33b6e793 md_reload_sb +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d2e63f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x33de9ae5 inet6_offloads +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 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x342b8a6a clear_nlink +EXPORT_SYMBOL vmlinux 0x342eeac5 dquot_operations +EXPORT_SYMBOL vmlinux 0x3436c697 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x344dd2ec devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x345c8916 strict_msr_control +EXPORT_SYMBOL vmlinux 0x34702788 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x34799cb6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a0f781 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x34affb1f md_error +EXPORT_SYMBOL vmlinux 0x34bf2c9c rfkill_alloc +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34cb3f2e phy_drivers_register +EXPORT_SYMBOL vmlinux 0x34e1f75d dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fdb0ea __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x3500c064 inet_addr_type +EXPORT_SYMBOL vmlinux 0x3502575e udp_set_csum +EXPORT_SYMBOL vmlinux 0x350a1d29 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x350b419c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35257e6c epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0x352bb201 xa_store +EXPORT_SYMBOL vmlinux 0x352db4e2 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x35313ebd agp_generic_enable +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3547ce23 md_done_sync +EXPORT_SYMBOL vmlinux 0x354cdf78 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x35517b95 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3552ea32 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x35557fe2 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x3557dc49 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3570dd02 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3573e0d0 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x3575144a param_get_int +EXPORT_SYMBOL vmlinux 0x3579452e netdev_emerg +EXPORT_SYMBOL vmlinux 0x3582799f netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x3589f70a d_obtain_alias +EXPORT_SYMBOL vmlinux 0x358d60bc netdev_state_change +EXPORT_SYMBOL vmlinux 0x359749ec dev_mc_del +EXPORT_SYMBOL vmlinux 0x3599d1b8 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x35a87c88 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b80f2a blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x35e83030 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x35f97f54 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x35ff8999 pci_iounmap +EXPORT_SYMBOL vmlinux 0x361c826b blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x361d74d3 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x362ed8f8 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x3643d68f __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365d3f3a tcp_poll +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36614887 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x36739316 pci_release_resource +EXPORT_SYMBOL vmlinux 0x369e050b iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x36b95828 pid_task +EXPORT_SYMBOL vmlinux 0x36c7d2fe dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x36d291b1 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x36d48eba eeh_dev_release +EXPORT_SYMBOL vmlinux 0x36e4e8f6 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x36e73204 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x36eaafe2 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372232f8 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x372e4092 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x376979c9 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x376aacc3 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x376d2196 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x37706355 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x377fa428 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x37a5e05a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x37b232ee file_modified +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37bf98d2 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x37cc9c23 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x37d723b0 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x37dc334d fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x37deb930 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x37e3dc94 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x37f40aa5 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x38026cb6 complete +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382fcedf ethtool_notify +EXPORT_SYMBOL vmlinux 0x3835132a seq_bprintf +EXPORT_SYMBOL vmlinux 0x38381bc9 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x383f8368 ilookup5 +EXPORT_SYMBOL vmlinux 0x384242fd fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x384718a8 qdisc_put +EXPORT_SYMBOL vmlinux 0x384fe501 vmemmap +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x387c5626 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x3885251c jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38870de4 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389944cd skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x389a2da5 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x389b688d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38da41b5 register_cdrom +EXPORT_SYMBOL vmlinux 0x38de28cd revert_creds +EXPORT_SYMBOL vmlinux 0x38f47f12 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f508e4 of_device_unregister +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3905756b jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393ed21c sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394a337e nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39593be1 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3966d65b bdi_alloc +EXPORT_SYMBOL vmlinux 0x396b2a43 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x3975e415 __scsi_execute +EXPORT_SYMBOL vmlinux 0x397c1433 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399ca4b6 dev_open +EXPORT_SYMBOL vmlinux 0x399f43fc netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x39a7887d serio_unregister_port +EXPORT_SYMBOL vmlinux 0x39b02f4f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b89aca vfs_fsync +EXPORT_SYMBOL vmlinux 0x39bf6f48 set_cached_acl +EXPORT_SYMBOL vmlinux 0x39cef8ed nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39dd57af __phy_resume +EXPORT_SYMBOL vmlinux 0x39e2d8ee dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x39e2e743 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x39f9e18c dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x3a1003b5 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x3a10fe9d handle_edge_irq +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a141a3b of_root +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a344600 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a74ee6f fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x3a820175 sock_create_lite +EXPORT_SYMBOL vmlinux 0x3a875620 __xa_store +EXPORT_SYMBOL vmlinux 0x3ab61dad do_clone_file_range +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab98195 neigh_xmit +EXPORT_SYMBOL vmlinux 0x3acbf48d generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x3ada5d5f __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3b0ad506 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x3b2a529d stream_open +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b4c7321 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x3b4f45bc dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b7b48f4 page_mapped +EXPORT_SYMBOL vmlinux 0x3b8c80d0 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x3bb019b1 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x3bbed9a5 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x3bc3a8f6 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x3bd45313 devm_memremap +EXPORT_SYMBOL vmlinux 0x3bdac837 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bf0605f inet6_bind +EXPORT_SYMBOL vmlinux 0x3bfb09fa gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x3c04828f folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x3c0d9646 simple_statfs +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c345b5d finish_no_open +EXPORT_SYMBOL vmlinux 0x3c379878 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c489e00 poll_initwait +EXPORT_SYMBOL vmlinux 0x3c5ae4a8 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0x3c78a5ff linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x3c890d58 kernel_read +EXPORT_SYMBOL vmlinux 0x3c984188 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cc2a802 bdi_put +EXPORT_SYMBOL vmlinux 0x3cc39bb3 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x3cdbec34 __block_write_begin +EXPORT_SYMBOL vmlinux 0x3ce1240a input_copy_abs +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfe9e5e vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3d77cf37 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x3d82be76 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x3d9fc8a1 sock_queue_err_skb +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 0x3db0a06d nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df8a16a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e07b971 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x3e2e8ec5 ip6_output +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e5f75b7 nd_btt_version +EXPORT_SYMBOL vmlinux 0x3e62f93a sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x3e6be375 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x3e9d071f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ea1b6e4 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x3ea2d2c1 I_BDEV +EXPORT_SYMBOL vmlinux 0x3eabf792 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x3ec545e8 param_set_short +EXPORT_SYMBOL vmlinux 0x3edd76ee devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x3ef33ef5 fb_get_mode +EXPORT_SYMBOL vmlinux 0x3efa7885 of_node_get +EXPORT_SYMBOL vmlinux 0x3efd8bac netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f03dc1a of_read_drc_info_cell +EXPORT_SYMBOL vmlinux 0x3f0b8874 skb_push +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f16adfb readahead_expand +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f3f0231 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4eabb8 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x3f6b29de mntput +EXPORT_SYMBOL vmlinux 0x3f7e617f __next_node_in +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8b9349 dqput +EXPORT_SYMBOL vmlinux 0x3f97f5a5 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x3f9f8dd5 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x3fac9934 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x3fb1931a dev_uc_add +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc27fa7 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x3fd5ba8d vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fead0cb skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x3ff93288 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x402214c7 phy_init_hw +EXPORT_SYMBOL vmlinux 0x402b6070 mr_table_dump +EXPORT_SYMBOL vmlinux 0x40315f7a skb_copy_header +EXPORT_SYMBOL vmlinux 0x405726ea dmam_pool_create +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x40700977 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x4071ad18 logfc +EXPORT_SYMBOL vmlinux 0x40812f2f kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x408ac0c4 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x409114c8 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x4093d203 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cb3d84 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x40cc3a57 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x40cf3eb4 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40db067a dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x40edb69a mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x40f2d61d devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x4113f2aa ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x41151d11 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x412a762e inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41383b56 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x413be8e9 param_ops_bint +EXPORT_SYMBOL vmlinux 0x41472f4a folio_account_redirty +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4158c50c skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x4158cb93 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x416e8b44 dev_add_offload +EXPORT_SYMBOL vmlinux 0x4178504f vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4191ed5d __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x419da4b6 param_set_copystring +EXPORT_SYMBOL vmlinux 0x41abd4db _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x41ae718a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x41b4e2b7 dump_skip_to +EXPORT_SYMBOL vmlinux 0x41b91841 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x41c73fd9 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41d2ef2c cdev_alloc +EXPORT_SYMBOL vmlinux 0x41e60c57 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41eeb100 scsi_print_command +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x421cadee security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4232545c qdisc_reset +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4249b622 pci_release_region +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42568cff xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x426cb015 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x42736793 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x429b002f add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x429de5b2 edac_mc_find +EXPORT_SYMBOL vmlinux 0x42c52566 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x42cdb9c0 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x42d7cf1a sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x42dd963b tcp_prot +EXPORT_SYMBOL vmlinux 0x42f030bd dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f3fe34 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x42f852d8 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x4302b5d6 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43062331 is_nd_dax +EXPORT_SYMBOL vmlinux 0x430e726b phy_connect +EXPORT_SYMBOL vmlinux 0x43104e96 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x431ee76d kill_pgrp +EXPORT_SYMBOL vmlinux 0x43223582 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x4324f754 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x4331fe9f phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x4338db36 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4346334d inet_sendpage +EXPORT_SYMBOL vmlinux 0x434c82b5 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4353d052 freeze_super +EXPORT_SYMBOL vmlinux 0x4355fdf1 inet_getname +EXPORT_SYMBOL vmlinux 0x436a3095 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x4380343e vlan_vid_add +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43a97999 setup_new_exec +EXPORT_SYMBOL vmlinux 0x43b18f96 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x43bdaf52 sk_wait_data +EXPORT_SYMBOL vmlinux 0x43c267b3 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x43c82edf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x43c831d3 sk_free +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d5be2d dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x43edb6b0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4411dd4d remove_arg_zero +EXPORT_SYMBOL vmlinux 0x4423edb1 page_pool_create +EXPORT_SYMBOL vmlinux 0x443f21c3 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444ba272 _dev_crit +EXPORT_SYMBOL vmlinux 0x445adf7b blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4463638f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x446dec79 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x4488bc8a prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x4490218a blk_execute_rq +EXPORT_SYMBOL vmlinux 0x4492abd4 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x44954155 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x449c95b3 drop_super +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44b42da9 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x44ddf176 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x44e03d3a gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x44e0896e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f873d2 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450bd37e __pmd_index_size +EXPORT_SYMBOL vmlinux 0x450d640b dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x452287df gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x45235daf rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x45295c82 request_key_tag +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x452d4173 bio_copy_data +EXPORT_SYMBOL vmlinux 0x4534a2cf brioctl_set +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4542fdbc kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x45474787 ether_setup +EXPORT_SYMBOL vmlinux 0x45502b1f migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x45665d49 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x45726296 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457f26ae dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x45888085 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x458ee2e2 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x45dcd2d5 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x45edbabe netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x45f596f1 _dev_err +EXPORT_SYMBOL vmlinux 0x45f6c038 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x46001d34 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x460738a7 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461296c3 sg_miter_next +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462aaf2f pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x463d2424 skb_queue_head +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x4653225a fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x46632bbe dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466eb80f dm_kobject_release +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 0x46a14ba9 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c7bfeb icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x46d5beb7 input_set_capability +EXPORT_SYMBOL vmlinux 0x46f0c3ad get_watch_queue +EXPORT_SYMBOL vmlinux 0x46f25801 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x46f9f2b5 xa_find_after +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x472a7084 __napi_schedule +EXPORT_SYMBOL vmlinux 0x475ba5d1 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477104e2 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x4771d001 seq_write +EXPORT_SYMBOL vmlinux 0x4772c5f7 netdev_update_features +EXPORT_SYMBOL vmlinux 0x47790bfe __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x477d53f6 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x478330be dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x479f3f0f inet_csk_clear_xmit_timers +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 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d74c6e blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x47ee79c9 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x47f2d347 inet_protos +EXPORT_SYMBOL vmlinux 0x480368fd tcp_check_req +EXPORT_SYMBOL vmlinux 0x4805b4d2 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x480aa2f7 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x481aef2a configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x4822b79b skb_store_bits +EXPORT_SYMBOL vmlinux 0x48283af8 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x483db813 would_dump +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4848cfb1 phy_mipi_dphy_get_default_config +EXPORT_SYMBOL vmlinux 0x484ae5f5 bio_alloc_clone +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 0x489f0042 vfs_unlink +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a4337a phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b2ce90 dquot_acquire +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48ca165c blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48dc8e6f pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x48ee3e04 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x48f5f51a xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x48fec0cb inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x4901f240 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490980dc vme_lm_request +EXPORT_SYMBOL vmlinux 0x492f122a dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x494111d9 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x49527d2f nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x496da56b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x498cd15e scsi_scan_target +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b43c40 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x49d718bf scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x49e09db8 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x49e6ad58 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x49e83293 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x4a192bc7 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x4a370023 vm_map_ram +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a55c8ea ioremap_wc +EXPORT_SYMBOL vmlinux 0x4a5bda96 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aabc6df is_subdir +EXPORT_SYMBOL vmlinux 0x4ab6f98c of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x4abbc809 iget_failed +EXPORT_SYMBOL vmlinux 0x4abbd8f6 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4ac4cacc neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x4acaf52e device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x4acb134f __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4adb0a1a fput +EXPORT_SYMBOL vmlinux 0x4ae4195e blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aecac07 mdiobus_read +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b0069f4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x4b010147 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0caaee skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x4b382465 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x4b3a2d26 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x4b3c53b8 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x4b5ec15b gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4ba8aced pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x4bdc638f sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x4bde4958 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x4be33079 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x4be510e2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4c199a03 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x4c3ebcec jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c48ac05 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x4c5f1f65 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x4c7653fa jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x4c77f20e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x4c856f54 __destroy_inode +EXPORT_SYMBOL vmlinux 0x4c88d766 devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x4c8f8959 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x4cabd54b try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cba92e1 tso_build_data +EXPORT_SYMBOL vmlinux 0x4cbf3df7 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x4cc1d4ee devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x4cc4ebb5 peernet2id +EXPORT_SYMBOL vmlinux 0x4cc6534b cpu_l2_cache_map +EXPORT_SYMBOL vmlinux 0x4cdcf93f crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x4ce47ca2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x4ceb422a srp_timed_out +EXPORT_SYMBOL vmlinux 0x4cf55acb seq_read +EXPORT_SYMBOL vmlinux 0x4d04637c registered_fb +EXPORT_SYMBOL vmlinux 0x4d061110 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x4d086f9d skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x4d0b5ba9 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x4d103890 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x4d103d8c key_unlink +EXPORT_SYMBOL vmlinux 0x4d2a848e dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x4d5bd116 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x4d636075 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6ae35f rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4d76500d notify_change +EXPORT_SYMBOL vmlinux 0x4d78b867 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x4d8b8834 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL vmlinux 0x4d97f9d4 blkdev_put +EXPORT_SYMBOL vmlinux 0x4d9b1d21 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db385a3 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x4dc6e8ac phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4df02057 crc32_be +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4e07b830 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x4e3163f6 dquot_file_open +EXPORT_SYMBOL vmlinux 0x4e332902 nla_append +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e4ce2fd clocksource_unregister +EXPORT_SYMBOL vmlinux 0x4e5254ec __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e561177 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7ff165 ppp_input_error +EXPORT_SYMBOL vmlinux 0x4e9a1653 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x4e9ae02c udp_sk_rx_dst_set +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 0x4ec87ca3 arp_tbl +EXPORT_SYMBOL vmlinux 0x4ecac4a6 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x4ed1d290 touch_buffer +EXPORT_SYMBOL vmlinux 0x4eddf401 block_truncate_page +EXPORT_SYMBOL vmlinux 0x4ee70f9d vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x4ee79552 bpf_map_get +EXPORT_SYMBOL vmlinux 0x4eeb1446 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x4efb31bd locks_copy_lock +EXPORT_SYMBOL vmlinux 0x4efc6ead sget +EXPORT_SYMBOL vmlinux 0x4f04d2d7 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x4f0bc6b8 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x4f12d548 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f331a96 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x4f3456a7 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4f44d594 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x4f4b97ab xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x4f5bf686 __check_sticky +EXPORT_SYMBOL vmlinux 0x4f7a01c1 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x4f7d4df1 proc_set_size +EXPORT_SYMBOL vmlinux 0x4f8cf699 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x4f9955fa ip_frag_next +EXPORT_SYMBOL vmlinux 0x4fa60bfd qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x4fa65563 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x4fc92d1a pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x4fd6591d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x4fda1208 key_move +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe645c2 skb_copy +EXPORT_SYMBOL vmlinux 0x4fe7adce neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4ffb59a7 pin_user_pages +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x500190b5 inode_insert5 +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500c1f9e simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5015720d d_prune_aliases +EXPORT_SYMBOL vmlinux 0x5021f499 fb_class +EXPORT_SYMBOL vmlinux 0x5049ed8e blk_sync_queue +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5067c0bb set_user_nice +EXPORT_SYMBOL vmlinux 0x5068a25e try_module_get +EXPORT_SYMBOL vmlinux 0x50697ff4 bio_add_page +EXPORT_SYMBOL vmlinux 0x5069f7ec inet_stream_ops +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5079c9d7 __pte_index_size +EXPORT_SYMBOL vmlinux 0x507cd705 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x509281b1 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50943806 vme_register_driver +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b6291 _dev_emerg +EXPORT_SYMBOL vmlinux 0x509e7b78 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b04638 audit_log +EXPORT_SYMBOL vmlinux 0x50b56086 path_has_submounts +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 0x50f662a2 put_watch_queue +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x510128cd max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x5102a80e xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x510633b8 elv_rb_find +EXPORT_SYMBOL vmlinux 0x510985bc __nd_driver_register +EXPORT_SYMBOL vmlinux 0x510ef41e serio_interrupt +EXPORT_SYMBOL vmlinux 0x5112ea30 release_sock +EXPORT_SYMBOL vmlinux 0x5121ff8f mdio_device_reset +EXPORT_SYMBOL vmlinux 0x5125587a register_console +EXPORT_SYMBOL vmlinux 0x512badd2 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x513089e5 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x513afc28 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x513eafe3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x51494930 update_region +EXPORT_SYMBOL vmlinux 0x515ebac3 file_update_time +EXPORT_SYMBOL vmlinux 0x5160a4a5 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51686c98 mmc_get_card +EXPORT_SYMBOL vmlinux 0x516a37f9 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x517a8dc7 sock_wake_async +EXPORT_SYMBOL vmlinux 0x518d2bcf pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x519934a8 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x519bb3e7 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x51de613a __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x51e295c1 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x51e5b40d simple_open +EXPORT_SYMBOL vmlinux 0x51f2d83a cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x51f59768 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x51fc07fb phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x52120089 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x523040f7 of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x523c08b7 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x525db41a csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x526fc8e1 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x527c774a dquot_quota_off +EXPORT_SYMBOL vmlinux 0x52872d58 vfs_rename +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52abbcfd ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x52b4a854 nf_log_unset +EXPORT_SYMBOL vmlinux 0x52b72efb mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x52bd6876 scsi_partsize +EXPORT_SYMBOL vmlinux 0x52c5a818 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e896fd mmu_feature_keys +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f0c00e pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x52f672d1 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x5308e350 __vmalloc_start +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53244726 elevator_alloc +EXPORT_SYMBOL vmlinux 0x532663f7 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x532bf7ce __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5339f5cc pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x533ccd3f unregister_md_personality +EXPORT_SYMBOL vmlinux 0x5340ef13 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x534abac0 param_ops_byte +EXPORT_SYMBOL vmlinux 0x5350e8d1 param_get_ushort +EXPORT_SYMBOL vmlinux 0x536068bb unregister_nls +EXPORT_SYMBOL vmlinux 0x5363032e write_inode_now +EXPORT_SYMBOL vmlinux 0x5364bf39 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x5379a4a2 seq_dentry +EXPORT_SYMBOL vmlinux 0x53a69258 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x53ca0d70 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x53d0549e security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x53d6d562 vm_map_pages +EXPORT_SYMBOL vmlinux 0x54066388 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541e7733 xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x542a4541 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x543cce69 dcache_readdir +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544f16c0 from_kgid +EXPORT_SYMBOL vmlinux 0x54640f18 dst_discard_out +EXPORT_SYMBOL vmlinux 0x54925481 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x5493b4c3 setattr_copy +EXPORT_SYMBOL vmlinux 0x549671fa iov_iter_revert +EXPORT_SYMBOL vmlinux 0x54a83537 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54c15a91 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x54d9e0f2 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x54e07a33 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x54e3d5fd __pmd_frag_nr +EXPORT_SYMBOL vmlinux 0x54e3ebbc PageMovable +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54fd0809 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508535d tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x5510b9a2 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x5513d441 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551cbcb1 inet6_getname +EXPORT_SYMBOL vmlinux 0x5538f550 eth_header_cache +EXPORT_SYMBOL vmlinux 0x55398bd6 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55503be8 __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x55686530 __arch_clear_user +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x55762a6e inode_init_always +EXPORT_SYMBOL vmlinux 0x5576732f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x557e8488 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559421f3 d_exact_alias +EXPORT_SYMBOL vmlinux 0x559663a5 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x55a104bc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x55aa3c8f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x55c3cff8 phy_driver_register +EXPORT_SYMBOL vmlinux 0x55ceb0a1 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e5ee64 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x562e9776 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56ac2a7c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cdb8d3 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x56d0ed6c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x56db2a99 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x56e9fa1c xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x571228fa tcf_idr_release +EXPORT_SYMBOL vmlinux 0x572ae748 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575fef9f arp_create +EXPORT_SYMBOL vmlinux 0x5761f4db ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x576358a7 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x57642cd5 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57bbe09b i2c_register_driver +EXPORT_SYMBOL vmlinux 0x57bdb3e2 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x57c10181 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x57c40d0f phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x57f9ac7d __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582702c2 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x58272b1d prepare_creds +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5840c036 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x587367a5 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x5877efe7 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587e992b of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5897a21d file_ns_capable +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58ccbb45 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x58d45bec sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x58d86620 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eae8e9 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594c1716 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596ba765 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x59757699 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x59853a0d jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x59894fa7 down_write_trylock +EXPORT_SYMBOL vmlinux 0x5992037e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x599a3365 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59a849d1 devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59d22f62 srp_rport_put +EXPORT_SYMBOL vmlinux 0x59e36c48 dm_register_target +EXPORT_SYMBOL vmlinux 0x59f79935 single_release +EXPORT_SYMBOL vmlinux 0x59fb4741 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a032030 gtm_put_timer16 +EXPORT_SYMBOL vmlinux 0x5a088923 up_write +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a165082 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a320b35 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x5a414ad0 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a747a44 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x5a7d5a96 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa07348 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5ab00381 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x5ab312c1 dget_parent +EXPORT_SYMBOL vmlinux 0x5ab97069 keyring_search +EXPORT_SYMBOL vmlinux 0x5ac7d5e0 lru_cache_add +EXPORT_SYMBOL vmlinux 0x5ad20d47 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x5ad8d29f dst_alloc +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae8eb36 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x5b1add5d tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x5b21d36b rproc_del +EXPORT_SYMBOL vmlinux 0x5b3e9bca file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b48a4be backlight_force_update +EXPORT_SYMBOL vmlinux 0x5b4aaab7 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5b4fa204 vfs_getattr +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5f71b5 filemap_flush +EXPORT_SYMBOL vmlinux 0x5b6fc64b __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x5b760467 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x5b895359 register_netdevice +EXPORT_SYMBOL vmlinux 0x5b8b826e follow_pfn +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5ba7dd75 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x5bb62cd2 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x5bc3175f phy_suspend +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bed695b dev_mc_sync +EXPORT_SYMBOL vmlinux 0x5c07bdc2 path_is_under +EXPORT_SYMBOL vmlinux 0x5c29ae04 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x5c2e04b0 vme_bus_type +EXPORT_SYMBOL vmlinux 0x5c39d42b find_inode_rcu +EXPORT_SYMBOL vmlinux 0x5c3a8a4d folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c3e80d4 vlan_for_each +EXPORT_SYMBOL vmlinux 0x5c4eecd6 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x5c50e2de config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x5c7c6f0b ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x5c905b8a xmon +EXPORT_SYMBOL vmlinux 0x5c933a60 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x5c9fad7f serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x5cb645ba skb_ext_add +EXPORT_SYMBOL vmlinux 0x5cb6e3c5 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x5cb8a2c8 d_alloc +EXPORT_SYMBOL vmlinux 0x5cbc2f67 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5cc2e252 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x5cc3fad3 igrab +EXPORT_SYMBOL vmlinux 0x5cea2d5e devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0f427f blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x5d18d1b6 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5d28e9cf sync_file_create +EXPORT_SYMBOL vmlinux 0x5d3a6483 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x5d44d4f4 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d611685 param_array_ops +EXPORT_SYMBOL vmlinux 0x5d935f04 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x5d9c755f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x5da3d0b9 scsi_print_result +EXPORT_SYMBOL vmlinux 0x5dbe948f vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x5dbf6458 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x5df49be6 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e17a339 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x5e2d36ff netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x5e3207aa end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5e3726a7 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e386fcd free_netdev +EXPORT_SYMBOL vmlinux 0x5e3a81fc fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x5e4a5bb0 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x5e5ab12f con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x5e60397f scmd_printk +EXPORT_SYMBOL vmlinux 0x5e664b94 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x5e7b7218 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x5e7e9d86 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x5e81a4e6 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x5e8a3db9 i2c_transfer +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e95b4a6 make_kuid +EXPORT_SYMBOL vmlinux 0x5e99dfca uaccess_flush_key +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9f179 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed67945 ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee42fcb no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x5ee5451c param_get_long +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0b1ba9 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x5f1550fe scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f4e5894 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f5c52b3 tcp_close +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6f9e16 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5f78a480 mach_pseries +EXPORT_SYMBOL vmlinux 0x5f7aea97 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fa96741 mount_bdev +EXPORT_SYMBOL vmlinux 0x5fb22284 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x5fb516f8 xa_find +EXPORT_SYMBOL vmlinux 0x5fbb4b00 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fee1b2a dma_find_channel +EXPORT_SYMBOL vmlinux 0x5ff48486 fs_bio_set +EXPORT_SYMBOL vmlinux 0x5ffe041e pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x600006f5 tso_build_hdr +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 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6025f9e3 dquot_resume +EXPORT_SYMBOL vmlinux 0x602ab1e5 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6037a2f8 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x6047b7b2 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605cdf31 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x60608975 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x608249d9 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60956a2d dev_set_mtu +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a3a17c flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x60b5edff jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x60ba52ad fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x60c32933 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x60cb50d0 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x60d18a90 bpf_link_put +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60de2dff agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x60ee1bba bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x60eeb489 pci_restore_state +EXPORT_SYMBOL vmlinux 0x60f3176e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x61119db7 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x6115375c agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x6118dc26 start_thread +EXPORT_SYMBOL vmlinux 0x6121bd54 dql_init +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612f42ec max8925_reg_read +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61349c11 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61956d8c ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x61986b8e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b5f4e3 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b8a10c pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x61c09467 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x61c1ab51 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x61cb246f _raw_write_lock +EXPORT_SYMBOL vmlinux 0x61de9e14 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x61e139ef d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61f3b0fa tcp_release_cb +EXPORT_SYMBOL vmlinux 0x61f842a7 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x620306f2 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x62037a4d of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62335f99 nf_log_register +EXPORT_SYMBOL vmlinux 0x62495703 seq_open_private +EXPORT_SYMBOL vmlinux 0x626847e8 set_bh_page +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62747f32 radix__flush_tlb_range +EXPORT_SYMBOL vmlinux 0x627ee2e6 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x6280f5d8 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628bffc1 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x628f45b3 tso_start +EXPORT_SYMBOL vmlinux 0x62931eb5 netif_skb_features +EXPORT_SYMBOL vmlinux 0x62b06c30 finish_open +EXPORT_SYMBOL vmlinux 0x62bfa023 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x62d6031e sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x62dfda83 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631adeb9 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632acf09 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x632c961f validate_slab_cache +EXPORT_SYMBOL vmlinux 0x634ab60f deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x63605acf drop_nlink +EXPORT_SYMBOL vmlinux 0x636b1c3c __neigh_create +EXPORT_SYMBOL vmlinux 0x636f0fab rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x6376c4b2 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x63885f33 to_nd_btt +EXPORT_SYMBOL vmlinux 0x639e2a9c generic_perform_write +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 0x63d4bdbf inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f2ea14 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x63f60bde xfrm_state_update +EXPORT_SYMBOL vmlinux 0x63fee6d6 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x63ff023f flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64468406 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x644c0511 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x64539a71 skb_checksum +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64831cb8 xa_extract +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649c9a32 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64aa92bf refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x64add76b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bf5454 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x64cd1c40 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x64e70bbe blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x64e92984 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x64ef5791 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x64f48fda iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x65045e10 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x6504a996 fb_set_var +EXPORT_SYMBOL vmlinux 0x650b8ef1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x650fe3fc d_add +EXPORT_SYMBOL vmlinux 0x65124fa0 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6513433d get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x65180707 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652e5288 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x653022fb skb_dequeue +EXPORT_SYMBOL vmlinux 0x653a2e83 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x653fd827 dm_put_device +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x654bd16b rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x655d7611 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x655e0b65 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x657b9994 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x65873462 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x65897306 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x658bf924 tty_port_put +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65abf448 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x65c0ba4c __xfrm_route_forward +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 0x65eea1a5 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x65f3fbef register_key_type +EXPORT_SYMBOL vmlinux 0x65f5797b xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x65f795d6 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x65f7b852 inet_select_addr +EXPORT_SYMBOL vmlinux 0x6633f972 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x663e6da1 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x66453244 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66820b50 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x66abfd2f netlink_ack +EXPORT_SYMBOL vmlinux 0x66b3b516 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66c2a4d9 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x66c44cae ping_prot +EXPORT_SYMBOL vmlinux 0x66ca02ee cpumask_any_but +EXPORT_SYMBOL vmlinux 0x66d58a96 lookup_one_len +EXPORT_SYMBOL vmlinux 0x66d76ac8 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x67020c4a pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x67070fb8 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x67168cd0 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x6719c6c3 napi_disable +EXPORT_SYMBOL vmlinux 0x671be094 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x671d9e5a __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x671fb047 filp_close +EXPORT_SYMBOL vmlinux 0x6738a06c vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x677b3fcd xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x679bd30d generic_write_checks +EXPORT_SYMBOL vmlinux 0x679e1eda md_finish_reshape +EXPORT_SYMBOL vmlinux 0x67a6e555 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x67a9a1d4 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x67b08207 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67fc472c gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0x680fc8ff pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x681a4e86 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x681c0c99 vfs_mknod +EXPORT_SYMBOL vmlinux 0x681efaf9 inet_release +EXPORT_SYMBOL vmlinux 0x68226c6f phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x682b2665 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x6832af00 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x685687b0 idr_replace +EXPORT_SYMBOL vmlinux 0x685a8a61 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x68678fb1 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x686818bb down_read +EXPORT_SYMBOL vmlinux 0x6871c711 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68860d1c radix__local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x688f658e phy_stop +EXPORT_SYMBOL vmlinux 0x68a30ffe shared_processor +EXPORT_SYMBOL vmlinux 0x68acc5bd kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x68b60d4a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x68c3f6be scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x68c45f47 can_nice +EXPORT_SYMBOL vmlinux 0x68c68407 of_find_property +EXPORT_SYMBOL vmlinux 0x68dcf627 vfs_get_link +EXPORT_SYMBOL vmlinux 0x69059013 rproc_detach +EXPORT_SYMBOL vmlinux 0x690855f2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x6909440b __pgd_table_size +EXPORT_SYMBOL vmlinux 0x690f8f48 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x6914860c phy_error +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x692d5fae mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x693f11a9 irq_set_chip +EXPORT_SYMBOL vmlinux 0x694288bd pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x69443e84 generic_read_dir +EXPORT_SYMBOL vmlinux 0x694e852e __alloc_skb +EXPORT_SYMBOL vmlinux 0x6950c6a9 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x695b1132 secpath_set +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x698b9533 input_register_handle +EXPORT_SYMBOL vmlinux 0x69902d0e __module_get +EXPORT_SYMBOL vmlinux 0x69bbf6ad i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x69dc9597 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69e99d95 mmc_free_host +EXPORT_SYMBOL vmlinux 0x69f4e123 dma_map_resource +EXPORT_SYMBOL vmlinux 0x69f71948 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x69feaa7a unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a128b75 proc_mkdir +EXPORT_SYMBOL vmlinux 0x6a19f00f ptp_clock_event +EXPORT_SYMBOL vmlinux 0x6a42709f kmem_cache_size +EXPORT_SYMBOL vmlinux 0x6a456879 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x6a4fa9db inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x6a56f0dd ip6_route_me_harder +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 0x6a82d8f8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x6a98c582 genphy_suspend +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aac354e jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x6ab5b138 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x6ad38b50 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x6ade6454 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x6aedc7f3 inet_listen +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af1eae4 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x6affcd9f dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x6b0a912b ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b1f5c8c try_to_release_page +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5ff116 generic_permission +EXPORT_SYMBOL vmlinux 0x6b734a75 kobject_set_name +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b858580 set_create_files_as +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6ba2828b bdevname +EXPORT_SYMBOL vmlinux 0x6ba376ec sk_alloc +EXPORT_SYMBOL vmlinux 0x6baa25f4 nf_log_set +EXPORT_SYMBOL vmlinux 0x6bbcfaaf max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc85c44 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6bd27fe4 phy_start +EXPORT_SYMBOL vmlinux 0x6bd9a1a4 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x6bdeab7f down_read_interruptible +EXPORT_SYMBOL vmlinux 0x6be16674 uart_resume_port +EXPORT_SYMBOL vmlinux 0x6be38b7e __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bf49262 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x6c06059d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x6c08004d msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x6c1b8faf rt6_lookup +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c351077 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x6c553e10 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x6c5804f3 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c67897a ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6c6d21df from_kgid_munged +EXPORT_SYMBOL vmlinux 0x6c7643e5 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c9da9ad rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6ca41fbf bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x6ca86c9b rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x6cb283ec blk_put_queue +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cccf01d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x6cdcee40 skb_clone +EXPORT_SYMBOL vmlinux 0x6ce3bafb pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6cecc88c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d08951e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x6d26b9ea set_disk_ro +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d3d886c i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d73c7e5 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8266c2 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x6d8ccf04 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x6d8f2642 genlmsg_put +EXPORT_SYMBOL vmlinux 0x6daa8e00 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6db88152 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc0758d pci_pme_active +EXPORT_SYMBOL vmlinux 0x6dc56795 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x6dc70194 ptp_clock_index +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd7acc8 sock_no_connect +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df3876c wireless_spy_update +EXPORT_SYMBOL vmlinux 0x6df6d582 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x6e075440 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x6e1e6688 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x6e1ffb3d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x6e25c874 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x6e35d0dc block_write_begin +EXPORT_SYMBOL vmlinux 0x6e4f59d8 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x6e5768c8 of_translate_address +EXPORT_SYMBOL vmlinux 0x6e5b714d vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5c6324 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x6e640405 kill_pid +EXPORT_SYMBOL vmlinux 0x6e6ba496 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7bcff7 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x6e7e01e5 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6e93cef4 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x6e9a448d __pte_frag_nr +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea22a59 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x6ea2ad2b __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec3c82f clk_get +EXPORT_SYMBOL vmlinux 0x6ec42860 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x6eed5ade kern_unmount_array +EXPORT_SYMBOL vmlinux 0x6ef712e0 kobject_init +EXPORT_SYMBOL vmlinux 0x6f08b1c6 mempool_exit +EXPORT_SYMBOL vmlinux 0x6f0d8ac8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6f0dd8a8 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x6f1283ee idr_for_each +EXPORT_SYMBOL vmlinux 0x6f192c42 arp_xmit +EXPORT_SYMBOL vmlinux 0x6f343762 input_grab_device +EXPORT_SYMBOL vmlinux 0x6f4230ce tcp_req_err +EXPORT_SYMBOL vmlinux 0x6f43f72f pcim_iomap +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f6104fc netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x6f7e9f8f filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6f841220 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f92fd3a ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb95257 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd545fe agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdb9cf7 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x6fef80f2 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70078b1a vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x7011ec67 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x70252c00 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x70262f14 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x702c067e simple_get_link +EXPORT_SYMBOL vmlinux 0x703346f4 proc_remove +EXPORT_SYMBOL vmlinux 0x703602e8 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x703ee124 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x704115b3 qe_usb_clock_set +EXPORT_SYMBOL vmlinux 0x7049a0fe phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706b5a02 inode_init_once +EXPORT_SYMBOL vmlinux 0x706cc294 dump_skip +EXPORT_SYMBOL vmlinux 0x706cc5dd tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x707e48e4 md_check_recovery +EXPORT_SYMBOL vmlinux 0x707f4cb1 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x70830802 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x70858923 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x708897df backlight_device_register +EXPORT_SYMBOL vmlinux 0x708ce9a8 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x708dd4f3 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x70a748f7 finalize_exec +EXPORT_SYMBOL vmlinux 0x70ba0be8 dev_uc_del +EXPORT_SYMBOL vmlinux 0x70c28793 fc_mount +EXPORT_SYMBOL vmlinux 0x70ce8481 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x70e41463 d_drop +EXPORT_SYMBOL vmlinux 0x70e8819c phy_print_status +EXPORT_SYMBOL vmlinux 0x70f36afb device_get_mac_address +EXPORT_SYMBOL vmlinux 0x70f8d4a7 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x7103acd6 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x710499c7 sock_pfree +EXPORT_SYMBOL vmlinux 0x710929e9 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7131bf58 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x71380ac8 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0x7145b7b7 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x714df03f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x715a1a8f pipe_lock +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7169cd0a of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7180db37 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x7183d544 sock_init_data +EXPORT_SYMBOL vmlinux 0x7186f151 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x7194b54c scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x7199f832 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ad0660 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x71ada8e0 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x71ae2a9d mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x71be1067 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x71bf12d3 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x71d10994 rtnl_notify +EXPORT_SYMBOL vmlinux 0x71dbc141 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x71dd7abe __bio_advance +EXPORT_SYMBOL vmlinux 0x71df4241 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x71fc29fe sock_rfree +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x721afa50 noop_llseek +EXPORT_SYMBOL vmlinux 0x721d10cc __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7235e251 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x7249a78b textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x724eb081 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x72560d0e proc_symlink +EXPORT_SYMBOL vmlinux 0x725d4d14 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x725e1964 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x72608c0e do_uaccess_flush +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bd24e3 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72e07fb7 param_ops_string +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee200a __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x72f2e960 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x72fdca2f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x730043d2 dev_load +EXPORT_SYMBOL vmlinux 0x730081e9 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x730d0afb has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x73109446 down_interruptible +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7315c4a2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7336e2f4 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x733fb28e md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x734a7780 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x73531024 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x736513e5 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x736997d7 netdev_printk +EXPORT_SYMBOL vmlinux 0x736b13e8 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738fd1c4 pci_select_bars +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a0445b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x73a88432 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73abc5fc current_time +EXPORT_SYMBOL vmlinux 0x73aebe66 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x73b2e30c xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x73e69f03 netdev_info +EXPORT_SYMBOL vmlinux 0x73ed600c blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x74181e23 dquot_destroy +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429cfa3 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7439fd86 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x743a6c3a fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7454da01 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x747c472d netdev_warn +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x748842e0 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x74916a4e flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x74a2b4a1 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x74b4b1ee jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c4ad1d keyring_clear +EXPORT_SYMBOL vmlinux 0x74c69f32 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x74da2d5b giveup_altivec +EXPORT_SYMBOL vmlinux 0x74dfdfae jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f1cd69 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x74f4e9f2 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x75041eb3 param_get_string +EXPORT_SYMBOL vmlinux 0x75207e86 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x75242f91 udp_disconnect +EXPORT_SYMBOL vmlinux 0x7530d93a skb_checksum_help +EXPORT_SYMBOL vmlinux 0x7535c3ab mmput_async +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7552028a thread_group_exited +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x757e6360 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x75808505 neigh_update +EXPORT_SYMBOL vmlinux 0x75821bb0 send_sig_info +EXPORT_SYMBOL vmlinux 0x75aa6ca1 __kernel_virt_start +EXPORT_SYMBOL vmlinux 0x75bd0deb set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c6af31 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610754a __register_nls +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763c5b24 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x76454900 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766a9862 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x766dd696 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76cc5cb8 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e9c0de __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x76f14bac vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x76fa2121 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x7709c7ba scsi_device_put +EXPORT_SYMBOL vmlinux 0x77234d37 downgrade_write +EXPORT_SYMBOL vmlinux 0x772e47a0 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77338818 of_chosen +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773b3cea tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x775f8299 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x776272e1 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x7771dd4a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77b7b17e devm_request_resource +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d1e7a9 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x77ddb14c param_ops_ushort +EXPORT_SYMBOL vmlinux 0x77e7396d kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f183e9 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x77f24ca7 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x77fee50d register_sysctl_table +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7824cd9b neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x783d1dc0 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7862a80d eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x7864c89e pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x786c6050 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x787457ed netlink_set_err +EXPORT_SYMBOL vmlinux 0x787a5830 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78851d2f _outsb +EXPORT_SYMBOL vmlinux 0x78a055b1 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b3d6d1 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78bfc7ae fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x78c2ea5d netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x78d7e341 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x78d8a653 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x78ddd60d netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x78decafa make_bad_inode +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e72707 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x79240aa2 phy_attached_info +EXPORT_SYMBOL vmlinux 0x79280ffb con_is_bound +EXPORT_SYMBOL vmlinux 0x792f8fa7 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7938b3ae crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x79581232 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x7959e0f8 inc_node_state +EXPORT_SYMBOL vmlinux 0x79716c11 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x7981bb88 fb_pan_display +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aac071 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x79aaf4f1 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x79b451d1 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x79bc8ae3 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x79c77b6e dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x79d6e540 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x79f8362c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1ad0d1 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a24aeeb read_cache_page +EXPORT_SYMBOL vmlinux 0x7a2c881a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7a2d6c97 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a371b30 begin_new_exec +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a676c12 unregister_key_type +EXPORT_SYMBOL vmlinux 0x7a6b018e vc_cons +EXPORT_SYMBOL vmlinux 0x7a71741f __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x7a74ff8a rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0x7a7ca267 sk_common_release +EXPORT_SYMBOL vmlinux 0x7a7de0d6 mempool_init_node +EXPORT_SYMBOL vmlinux 0x7a89f209 bdi_register +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9cd11e dev_mc_add +EXPORT_SYMBOL vmlinux 0x7aa0414e kset_unregister +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaa4f0a ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x7ab5f8c3 _insw_ns +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7aba86db node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7abdb6c8 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x7abfd1c3 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7ac99f49 pci_free_irq +EXPORT_SYMBOL vmlinux 0x7acce1c7 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7aff5872 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x7b165a7b qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x7b2dd59b xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7b334aeb seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x7b34a379 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3efaf6 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7b422bde pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b70eb94 cdev_device_del +EXPORT_SYMBOL vmlinux 0x7b744fd7 phy_write_paged +EXPORT_SYMBOL vmlinux 0x7babe858 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bcf8172 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7bd457f4 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x7bd8f50d radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x7be79b7d input_unregister_handle +EXPORT_SYMBOL vmlinux 0x7bed09d2 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x7beef58b register_md_personality +EXPORT_SYMBOL vmlinux 0x7befa3a7 folio_alloc +EXPORT_SYMBOL vmlinux 0x7c1066d3 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2ff90b phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c515fab xfrm_lookup +EXPORT_SYMBOL vmlinux 0x7c528892 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x7c63a098 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x7c66dffa simple_release_fs +EXPORT_SYMBOL vmlinux 0x7c6fb751 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7c7107fd of_device_is_available +EXPORT_SYMBOL vmlinux 0x7c75265b __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x7c86e0ce tcf_block_get +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cafd294 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x7cc12c52 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x7ccd7585 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7cce52a0 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7ccec940 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce74f2c xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d008316 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d316164 misc_register +EXPORT_SYMBOL vmlinux 0x7d39b8b1 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d501e0a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d5ee36a generic_fadvise +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d845f0e _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x7da8f93b xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc29279 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc686bd gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dca2088 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x7dcd10c3 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7dd1e896 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x7dd7d828 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x7dd920fa free_buffer_head +EXPORT_SYMBOL vmlinux 0x7debb4db ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df6a07f netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x7dfc8277 isa_mem_base +EXPORT_SYMBOL vmlinux 0x7dfcbd70 seq_open +EXPORT_SYMBOL vmlinux 0x7e07473d devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x7e089a22 mac_find_mode +EXPORT_SYMBOL vmlinux 0x7e13cad5 dma_resv_init +EXPORT_SYMBOL vmlinux 0x7e2d6436 ida_free +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e33ea24 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x7e434011 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x7e477d8f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x7e4cdc54 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x7e50ebef mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x7e592fc5 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x7e59b5ee mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x7e5ac945 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7e628bb3 submit_bh +EXPORT_SYMBOL vmlinux 0x7e669f9c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7e6c997a jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x7e7edfaf xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x7e7f34c9 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x7e881078 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x7e8d6e5e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7e9c2ce5 dm_table_event +EXPORT_SYMBOL vmlinux 0x7e9d7f81 inet6_release +EXPORT_SYMBOL vmlinux 0x7ea29532 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x7eb964ab netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x7eeb6523 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x7ef4f5df register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f0e9f8d sk_net_capable +EXPORT_SYMBOL vmlinux 0x7f146756 bio_split +EXPORT_SYMBOL vmlinux 0x7f17ede6 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7f19e998 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2520db scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7f3e168b __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x7f405b81 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x7f471655 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f63d046 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x7f675e61 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x7f71fb97 xa_load +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7aff6e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f89c0ba get_thermal_instance +EXPORT_SYMBOL vmlinux 0x7f8cd32d tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x7f8f2257 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7fb50cd9 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7fbaa05c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x7fcf0729 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff2be9b gro_cells_receive +EXPORT_SYMBOL vmlinux 0x8009e77d migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8056db6d __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x805e5fd6 sock_register +EXPORT_SYMBOL vmlinux 0x8073f82b ip_output +EXPORT_SYMBOL vmlinux 0x8080f889 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x8088b139 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x808ca733 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x80a98a1b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x80ae335b inet_del_offload +EXPORT_SYMBOL vmlinux 0x80afe275 put_cmsg +EXPORT_SYMBOL vmlinux 0x80b1d40b __put_user_ns +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80db4132 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ef519e thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8111980a tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x8115accb nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816b3485 vm_insert_page +EXPORT_SYMBOL vmlinux 0x8174203d is_nd_btt +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x8186d58d vlan_vid_del +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a0642d __register_chrdev +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c5aa4d inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x81c85301 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x81ce0902 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x81cf22e8 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x81db43b9 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e37da9 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x820c47b8 of_get_parent +EXPORT_SYMBOL vmlinux 0x8213224f tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x821559d6 __vmalloc_end +EXPORT_SYMBOL vmlinux 0x821743d8 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x82248dec backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x822abeef pci_get_class +EXPORT_SYMBOL vmlinux 0x823964ce unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x823caa00 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x823ea220 fd_install +EXPORT_SYMBOL vmlinux 0x824640c1 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8246c2e5 elv_rb_add +EXPORT_SYMBOL vmlinux 0x8252f0cb load_nls_default +EXPORT_SYMBOL vmlinux 0x825bf613 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x828dfc98 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x829231f9 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x82b40c67 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x82babd70 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cba53b km_state_notify +EXPORT_SYMBOL vmlinux 0x82def727 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x82ea5418 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x82ec5a6e napi_build_skb +EXPORT_SYMBOL vmlinux 0x82f0b7fe __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x82f48ad3 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x82f4adbd _copy_from_iter +EXPORT_SYMBOL vmlinux 0x8321c314 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x8333c28e config_group_find_item +EXPORT_SYMBOL vmlinux 0x833513e7 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x833a6ee3 param_get_byte +EXPORT_SYMBOL vmlinux 0x834658ac cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8347123f netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b71cd udp_read_sock +EXPORT_SYMBOL vmlinux 0x8361bee2 netdev_change_features +EXPORT_SYMBOL vmlinux 0x837a2223 __kfree_skb +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837b829b vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8382466d unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8384cc91 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x839266b1 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x83992fb2 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x83b2094d __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x83ba8346 udplite_prot +EXPORT_SYMBOL vmlinux 0x83c9c186 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8409d6ca blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x8412353c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x841473af audit_log_start +EXPORT_SYMBOL vmlinux 0x84176b7f vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x84478dae gro_cells_init +EXPORT_SYMBOL vmlinux 0x845e13e1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x846a4f05 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x8474c8d1 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x8478f2f5 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848bebea fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84952a77 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84aeb25f dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1ad08 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84cd3fdc __post_watch_notification +EXPORT_SYMBOL vmlinux 0x84d19106 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x84f0bbb2 add_to_pipe +EXPORT_SYMBOL vmlinux 0x84f3c134 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8523131c set_capacity +EXPORT_SYMBOL vmlinux 0x85231a80 dump_page +EXPORT_SYMBOL vmlinux 0x85250ccc xa_store_range +EXPORT_SYMBOL vmlinux 0x8525d654 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x8526541b make_kgid +EXPORT_SYMBOL vmlinux 0x852b221f nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x8530e5f1 udp_poll +EXPORT_SYMBOL vmlinux 0x8538c5b7 simple_rename +EXPORT_SYMBOL vmlinux 0x85649fae md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857121e4 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x85771d49 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x858c0146 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x859f557e pci_irq_vector +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d14718 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x85d53731 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x85da2062 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e189b5 dput +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f2cbf4 mmc_put_card +EXPORT_SYMBOL vmlinux 0x85fe5f73 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x86100ab4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863c5da4 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x865b81b4 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x867c5319 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x868448a0 padata_free +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a8bf60 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x86aedf02 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x86b1026f proc_douintvec +EXPORT_SYMBOL vmlinux 0x86b45a9b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e24dbe scsi_add_device +EXPORT_SYMBOL vmlinux 0x86e93ef0 may_umount +EXPORT_SYMBOL vmlinux 0x86fa21a1 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fc28ae seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x87036453 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x87137a92 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x871664bc pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x872a5283 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x87346a40 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x87386f41 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8756c914 do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x87592313 mdio_device_free +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x876f2775 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8780e3d1 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x8787dce9 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x879f761b register_quota_format +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a352f5 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c2f4a2 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x87d54b76 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x8806489c device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x880810cc __i2c_transfer +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x882e277b input_get_timestamp +EXPORT_SYMBOL vmlinux 0x88465cad _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x88661fc0 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889916ac request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x88993295 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x88ad7061 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x88ce2bdd fs_param_is_string +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e73c03 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x88e82854 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x88f3bd37 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x88ff3cd0 gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x8904ea97 param_set_charp +EXPORT_SYMBOL vmlinux 0x89097604 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x8914c964 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x89525270 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8963d40f d_set_d_op +EXPORT_SYMBOL vmlinux 0x896b4e94 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x89898459 kvm_irq_bypass +EXPORT_SYMBOL vmlinux 0x8993dae0 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x89a54633 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x89aa6232 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x89c6e090 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x89d27cd6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x8a0119f7 put_fs_context +EXPORT_SYMBOL vmlinux 0x8a106b6a fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x8a1899de netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x8a30088a netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x8a362caa dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x8a364866 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x8a36667b tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x8a3703c8 sync_blockdev +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 0x8a780e8f of_node_to_nid +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a83342a dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x8a9211a6 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aaa5787 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x8ab00ab3 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac3bb12 dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8acec534 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x8ad32f02 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8ad39905 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8ae328f3 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x8ae71a72 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x8aeec782 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x8af2c05b qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b1a896c inode_permission +EXPORT_SYMBOL vmlinux 0x8b1fef4a tty_lock +EXPORT_SYMBOL vmlinux 0x8b266603 vfs_create +EXPORT_SYMBOL vmlinux 0x8b38d7df sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x8b423b16 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8b5a4723 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6769bb tty_port_close +EXPORT_SYMBOL vmlinux 0x8b693406 tcf_register_action +EXPORT_SYMBOL vmlinux 0x8b7ef2a2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b95ba41 dma_fence_signal +EXPORT_SYMBOL vmlinux 0x8ba9c109 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x8bc4b6ef folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x8bc71943 vga_put +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bf99d22 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c51753a watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x8c521eb5 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8ca28f6c sock_create +EXPORT_SYMBOL vmlinux 0x8ca57cfe generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc15d06 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc691a9 set_binfmt +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cccc9ee inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8cd62994 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x8cf529d1 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x8cf6c32b inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8d09a688 param_set_byte +EXPORT_SYMBOL vmlinux 0x8d12c01f flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x8d2753bc radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x8d46b5a4 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x8d490561 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x8d4f12d4 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x8d50216b ___pskb_trim +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d606c88 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x8d657d96 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x8d6872c4 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7687fa pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8d9ce724 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x8d9e7d3f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x8dca8379 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8dd2375e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x8dd565b4 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x8dd8101e tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x8dd9dee3 input_set_keycode +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df4a7bc pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e142d91 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x8e159f7d d_instantiate +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e437412 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x8e495e02 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e516edf mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x8e6e2aba mmc_is_req_done +EXPORT_SYMBOL vmlinux 0x8e84562c tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x8e8b0757 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea2a317 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8ec45b30 start_tty +EXPORT_SYMBOL vmlinux 0x8ec9b0da kill_block_super +EXPORT_SYMBOL vmlinux 0x8ed3efbb phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x8eec42b2 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x8ef53b7b generic_update_time +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f26dab2 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x8f68da79 __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x8f7259c2 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x8f78483f agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x8f7e5ac7 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x8f8b7b35 init_pseudo +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fcedb6e __vio_register_driver +EXPORT_SYMBOL vmlinux 0x8fe9d189 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9001f61e vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x90159984 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x9023361b proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x903d8002 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x903d97df sock_recvmsg +EXPORT_SYMBOL vmlinux 0x905409a0 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x905418fd kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x906ecfa4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x90919128 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x9092a793 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x909d9472 param_get_ullong +EXPORT_SYMBOL vmlinux 0x90ba912b __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x90bdb457 set_nlink +EXPORT_SYMBOL vmlinux 0x90c8994d xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x90e5c20e __register_binfmt +EXPORT_SYMBOL vmlinux 0x90ebd4e8 dentry_open +EXPORT_SYMBOL vmlinux 0x90fa6b4e pci_claim_resource +EXPORT_SYMBOL vmlinux 0x910d8667 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x9133020e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x91466d62 d_delete +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x916758a3 node_states +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x916de422 proto_register +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a6d5a3 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91e1b36d unlock_page +EXPORT_SYMBOL vmlinux 0x91e70a13 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x91e81470 cdev_add +EXPORT_SYMBOL vmlinux 0x91ebe753 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fcc8ab pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x920202bf pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x920c59af netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x92128357 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x92184446 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x92281465 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x922de7b2 fqdir_init +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9233f254 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923cfdc0 component_match_add_release +EXPORT_SYMBOL vmlinux 0x92499a46 end_page_writeback +EXPORT_SYMBOL vmlinux 0x924df109 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x92512b48 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x9251f0d2 wait_for_completion +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9259967f vme_init_bridge +EXPORT_SYMBOL vmlinux 0x92675c70 scsi_device_get +EXPORT_SYMBOL vmlinux 0x927b8b6d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x928b8016 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x92905154 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929ca23a __serio_register_driver +EXPORT_SYMBOL vmlinux 0x92b25955 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c2db6a add_watch_to_object +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92facad6 simple_write_begin +EXPORT_SYMBOL vmlinux 0x92fdd816 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9307946e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9323cb8d xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x9326a948 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x9350dab2 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x9351dd57 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x9353a7d8 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x936960cb ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x937209a6 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93862df6 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x939c07ec netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x939c850c tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x93a64dbe phy_register_fixup +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93aaf572 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d70e94 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x93e7fb01 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x93fba37b param_ops_uint +EXPORT_SYMBOL vmlinux 0x93fd7e0b take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x9412f6bf mmc_command_done +EXPORT_SYMBOL vmlinux 0x941599b9 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x9422a66f cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x9436eb11 pps_event +EXPORT_SYMBOL vmlinux 0x943d1279 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9465132f i2c_verify_client +EXPORT_SYMBOL vmlinux 0x94667988 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x946a23b5 default_amr +EXPORT_SYMBOL vmlinux 0x9494fa7b touch_atime +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949a9b76 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x94a329c6 bdi_unregister +EXPORT_SYMBOL vmlinux 0x94a5fd84 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x94a9a4aa _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x94b1d3eb skb_dump +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c5e1ca ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94eca2a5 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x94f27437 phy_attached_print +EXPORT_SYMBOL vmlinux 0x94f3c65e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x94fc7628 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950c8d0b is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x951f2e52 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x95280412 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x9539a85e agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954df0bb of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955e8368 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0x958014c1 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x95b45053 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x95b67864 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x95c6c48a qe_pin_set_gpio +EXPORT_SYMBOL vmlinux 0x95cb39fc default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x95d71583 init_special_inode +EXPORT_SYMBOL vmlinux 0x95e2fbcc __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x95fd65a4 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x9601afb5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9602f69c dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x96095282 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x961b11e8 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x961b951c mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x961ecbe6 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x964b734a rproc_free +EXPORT_SYMBOL vmlinux 0x967d58c6 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x969184e8 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x9696f2e7 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x969f154d trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x96a3e105 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d35491 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96fe910a devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x97099093 register_qdisc +EXPORT_SYMBOL vmlinux 0x971ec27c hvc_put_chars +EXPORT_SYMBOL vmlinux 0x9720d95c filemap_check_errors +EXPORT_SYMBOL vmlinux 0x972a125a ptp_clock_register +EXPORT_SYMBOL vmlinux 0x972aca3f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x9730cb94 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x973c09e5 __pgd_index_size +EXPORT_SYMBOL vmlinux 0x974e4f96 input_reset_device +EXPORT_SYMBOL vmlinux 0x9759733f inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x976406bd remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9797455e kern_path +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97afe068 build_skb +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97cdfaf6 skb_trim +EXPORT_SYMBOL vmlinux 0x97e55234 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x9802e000 iunique +EXPORT_SYMBOL vmlinux 0x98141829 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982a7402 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x98313c8d bio_free_pages +EXPORT_SYMBOL vmlinux 0x98425a92 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x984a163f of_device_register +EXPORT_SYMBOL vmlinux 0x984bb083 uart_match_port +EXPORT_SYMBOL vmlinux 0x984bf1fe ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x984ecb5b blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x9851cad3 dev_trans_start +EXPORT_SYMBOL vmlinux 0x985b14fd percpu_counter_set +EXPORT_SYMBOL vmlinux 0x98a2675a phy_loopback +EXPORT_SYMBOL vmlinux 0x98af827e get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x98b3e4af nd_integrity_init +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cc1418 netdev_alert +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98da3362 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98ee0c8d netdev_notice +EXPORT_SYMBOL vmlinux 0x990374f6 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x9905586d genphy_update_link +EXPORT_SYMBOL vmlinux 0x99100462 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x991c418a cdev_init +EXPORT_SYMBOL vmlinux 0x992fcf28 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x9930b935 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99593fae cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x9965460e __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9974a9b0 tty_do_resize +EXPORT_SYMBOL vmlinux 0x9984414f key_alloc +EXPORT_SYMBOL vmlinux 0x9996477b __nla_put +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a5c185 __d_drop +EXPORT_SYMBOL vmlinux 0x99a85de0 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x99b424de f_setown +EXPORT_SYMBOL vmlinux 0x99ceb805 simple_setattr +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d9e8b0 pci_bus_type +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dfe89a jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x99f92f28 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a05ce76 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1b1bf4 dev_mc_init +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a3cf28d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a7ece5d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9aaff277 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x9acde112 gtm_ack_timer16 +EXPORT_SYMBOL vmlinux 0x9ad16ec8 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af4a341 sock_efree +EXPORT_SYMBOL vmlinux 0x9afd7d6f iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x9b1b41e7 _dev_warn +EXPORT_SYMBOL vmlinux 0x9b24d4da seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b290da7 posix_lock_file +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b4170da devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b991dcc devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9baaef4a tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bbc2627 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x9bd048a5 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x9bea2401 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9c149f21 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9c16a5c0 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x9c1925ff skb_copy_expand +EXPORT_SYMBOL vmlinux 0x9c1d6175 udp_prot +EXPORT_SYMBOL vmlinux 0x9c46973c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9c4bbf4a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c857d32 sock_bind_add +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8cd9c9 ip_options_compile +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc06025 md_write_end +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd302bb vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce769e7 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x9cf2d9a1 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9cf4c4f4 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d2031a4 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x9d20b55f tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x9d265c3e dump_emit +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d27a65e sock_no_linger +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d31d4f3 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9d45502d update_devfreq +EXPORT_SYMBOL vmlinux 0x9d52b647 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x9d624c43 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x9d6d027a no_llseek +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d7f9a58 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x9d96a9b0 mmu_hash_ops +EXPORT_SYMBOL vmlinux 0x9d9e3b5d sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9da04dbd scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x9da87cce input_release_device +EXPORT_SYMBOL vmlinux 0x9dbeb608 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x9dbef713 unload_nls +EXPORT_SYMBOL vmlinux 0x9dc992b0 sock_wfree +EXPORT_SYMBOL vmlinux 0x9dd8bc17 _dev_alert +EXPORT_SYMBOL vmlinux 0x9dd8dd57 load_fp_state +EXPORT_SYMBOL vmlinux 0x9de145b6 block_write_end +EXPORT_SYMBOL vmlinux 0x9de706b5 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9df1aa94 __d_lookup_done +EXPORT_SYMBOL vmlinux 0x9e09df23 fget_raw +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e355161 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x9e4ae2a6 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x9e4da44f unregister_quota_format +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e60815b prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6d3173 input_unregister_device +EXPORT_SYMBOL vmlinux 0x9e6f9988 xp_dma_map +EXPORT_SYMBOL vmlinux 0x9e775621 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x9e90d8df blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ead63d5 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x9ebd7df2 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec22e11 dquot_alloc +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ece6f89 iterate_fd +EXPORT_SYMBOL vmlinux 0x9ecff882 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x9ed0a289 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9ed74d1c jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ef9d48c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x9f06ff33 free_task +EXPORT_SYMBOL vmlinux 0x9f0d4d7f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9f0da287 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x9f1db9a8 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9f209ec0 inet_bind +EXPORT_SYMBOL vmlinux 0x9f3455e4 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f7097f6 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fad518e irq_stat +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fb83171 agp_bridge +EXPORT_SYMBOL vmlinux 0x9fbb5869 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9fbbe465 vmap +EXPORT_SYMBOL vmlinux 0x9fbc2e03 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x9fbe14c6 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x9fbfc4a4 empty_aops +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe7ceef param_set_ullong +EXPORT_SYMBOL vmlinux 0x9feba4db from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0165259 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xa01a0791 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa0262284 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03a0123 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0579598 mmc_request_done +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05986bc __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0821370 dst_release_immediate +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa093d5df block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0baf722 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xa0bf4522 blk_queue_update_dma_pad +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 0xa0f6a483 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10c532f giveup_all +EXPORT_SYMBOL vmlinux 0xa120e187 commit_creds +EXPORT_SYMBOL vmlinux 0xa12a7d67 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xa16b1cc7 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xa16fbd76 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xa17cfe7f skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xa1b8f774 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa1d3fd42 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xa1d405e5 vfs_statfs +EXPORT_SYMBOL vmlinux 0xa1e89cad sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xa1eaa2cd mempool_init +EXPORT_SYMBOL vmlinux 0xa20206f8 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2060c07 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa21a95dc get_vm_area +EXPORT_SYMBOL vmlinux 0xa2298afd vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xa23da579 noop_fsync +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24ba7b9 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa251abd5 nobh_write_end +EXPORT_SYMBOL vmlinux 0xa2543913 skb_eth_push +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa26fcbac tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa293dd57 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xa29983cf tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xa2a3d0d9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2d0ebf1 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2f89125 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xa31639a2 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xa326c0f7 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xa3295308 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xa333177b __filemap_get_folio +EXPORT_SYMBOL vmlinux 0xa3336026 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa34d09b6 mpage_writepage +EXPORT_SYMBOL vmlinux 0xa34ea576 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa34f9571 mount_single +EXPORT_SYMBOL vmlinux 0xa35510ee inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0xa35854e2 simple_unlink +EXPORT_SYMBOL vmlinux 0xa366ff8d xa_get_order +EXPORT_SYMBOL vmlinux 0xa37884f4 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xa3820b23 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa398d46f memcpy_page_flushcache +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a6b163 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3deb11f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa3fba052 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa3fd6c24 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40107b3 filp_open +EXPORT_SYMBOL vmlinux 0xa402ea91 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xa4224988 mr_dump +EXPORT_SYMBOL vmlinux 0xa427c944 devm_clk_get +EXPORT_SYMBOL vmlinux 0xa453fa05 dma_set_mask +EXPORT_SYMBOL vmlinux 0xa458c78c posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa467f622 init_net +EXPORT_SYMBOL vmlinux 0xa473c2f0 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa47cf1ae sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa47d25a8 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa4835d52 md_flush_request +EXPORT_SYMBOL vmlinux 0xa488d6dd __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xa490d185 dev_change_flags +EXPORT_SYMBOL vmlinux 0xa4940a20 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xa49a9b46 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa4a0e5de dev_uc_flush +EXPORT_SYMBOL vmlinux 0xa4b089a6 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xa4b82dd2 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d7cb92 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa4d942fb folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa4e5d7d7 skb_unlink +EXPORT_SYMBOL vmlinux 0xa4f11191 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xa50326d9 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa5148c7b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xa524175b __put_cred +EXPORT_SYMBOL vmlinux 0xa5432b37 locks_free_lock +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c3275 pci_get_slot +EXPORT_SYMBOL vmlinux 0xa561b9e2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xa581f992 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xa59c7b68 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa5bc4061 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xa5c05100 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xa5cc314e iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xa5ccfe2a cdev_device_add +EXPORT_SYMBOL vmlinux 0xa5d10990 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xa5db2eb9 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa5e340f5 input_register_device +EXPORT_SYMBOL vmlinux 0xa5f79747 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xa6153324 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62572d9 md_integrity_register +EXPORT_SYMBOL vmlinux 0xa62db81e i2c_del_driver +EXPORT_SYMBOL vmlinux 0xa6351fd3 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa635d2a6 profile_pc +EXPORT_SYMBOL vmlinux 0xa63edec4 scsi_host_put +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6579f21 __pud_val_bits +EXPORT_SYMBOL vmlinux 0xa6587ee3 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa668c02d of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68d3ee3 d_splice_alias +EXPORT_SYMBOL vmlinux 0xa6982c1f bioset_exit +EXPORT_SYMBOL vmlinux 0xa6993f10 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xa6a1cac4 phy_config_aneg +EXPORT_SYMBOL vmlinux 0xa6a5531a dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xa6affb6c mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa6c89c52 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xa6e95542 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xa6eab077 __invalidate_device +EXPORT_SYMBOL vmlinux 0xa6fc3d03 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa71dc26e __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xa72e0945 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xa73dc74e inet_add_offload +EXPORT_SYMBOL vmlinux 0xa74c3183 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7516a2b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xa758b4c3 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xa75c2039 of_node_name_eq +EXPORT_SYMBOL vmlinux 0xa76084bc __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa7761422 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xa77b1ed6 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77fc9cd twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa7884ea3 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa78c6986 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xa79bff2d hpage_shift +EXPORT_SYMBOL vmlinux 0xa7a439e8 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xa7c45e7e rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xa7d1f5c5 ata_print_version +EXPORT_SYMBOL vmlinux 0xa7e87316 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xa7ec1202 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7f4d831 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xa7f7d578 param_ops_short +EXPORT_SYMBOL vmlinux 0xa7fab390 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xa818540f cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa818f81b generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xa82057b6 pci_disable_device +EXPORT_SYMBOL vmlinux 0xa8393fa1 give_up_console +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 0xa84ff7ba of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xa85336f5 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8896319 __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa8a83aba uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa8b4afb6 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cb7b39 get_fs_type +EXPORT_SYMBOL vmlinux 0xa8dbd17f devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f82170 iov_iter_init +EXPORT_SYMBOL vmlinux 0xa8fe7763 fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90ee7fe of_iomap +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa92172ab fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xa9228967 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa9331d53 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xa9359691 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xa958db19 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xa95b47b0 filemap_fault +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa983d979 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0xa9beb5b1 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa9c9dc3e tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xa9db2fec skb_expand_head +EXPORT_SYMBOL vmlinux 0xa9dffce5 mempool_free +EXPORT_SYMBOL vmlinux 0xa9f31876 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xa9fd1a87 folio_mapping +EXPORT_SYMBOL vmlinux 0xaa03e619 radix__flush_all_mm +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0d3630 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa327a81 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xaa3f6f04 radix__flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xaa4172b3 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xaa4fbfc0 padata_do_serial +EXPORT_SYMBOL vmlinux 0xaa6002a7 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa75c1d8 phy_read_paged +EXPORT_SYMBOL vmlinux 0xaa7a00d7 security_path_mknod +EXPORT_SYMBOL vmlinux 0xaa7bd92e dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xaa9179c4 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xaaa48cf2 sock_no_listen +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa9c132 bio_init +EXPORT_SYMBOL vmlinux 0xaab2ee91 complete_all +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 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab0df098 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xab22d791 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xab25dd26 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3a7659 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3e6227 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xab57a8ba dev_set_alias +EXPORT_SYMBOL vmlinux 0xab5fed4c vfs_iter_read +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 0xab862836 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xabac53fe pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xabbeea24 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac04654f _dev_info +EXPORT_SYMBOL vmlinux 0xac06057e rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xac0fae2b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac27501a proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac40185c pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xac430423 __pmd_val_bits +EXPORT_SYMBOL vmlinux 0xac59b0dc blk_queue_split +EXPORT_SYMBOL vmlinux 0xac5b8cf6 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7644e4 rtc_add_groups +EXPORT_SYMBOL vmlinux 0xac7b30de jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xac8926d2 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xaca365c3 devfreq_update_status +EXPORT_SYMBOL vmlinux 0xaca8855d nd_dax_probe +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc9b1d5 inet_frags_init +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xace43fc7 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacfaa161 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xacfe5e87 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad089b83 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad16836a max8925_reg_write +EXPORT_SYMBOL vmlinux 0xad1c6706 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xad261be5 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xad280411 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xad3131c3 d_path +EXPORT_SYMBOL vmlinux 0xad34e84e inet_sendmsg +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3fb67f fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad612115 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad848431 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xad86e51d dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xad8a54b1 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xad91e1bf of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb00770 wireless_send_event +EXPORT_SYMBOL vmlinux 0xadbc8f62 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xadbecb18 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc8678b simple_getattr +EXPORT_SYMBOL vmlinux 0xadc9ed7d inet_put_port +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadeb67f9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xadecade3 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1e6d1d netif_rx +EXPORT_SYMBOL vmlinux 0xae2f57a1 kernel_connect +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae4265ab __do_once_slow_done +EXPORT_SYMBOL vmlinux 0xae4c8439 __pte_table_size +EXPORT_SYMBOL vmlinux 0xae551485 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xae58540c __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xae5b2f60 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xae60e926 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xae709f23 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xae72c653 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xae933e73 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaead1eac inetdev_by_index +EXPORT_SYMBOL vmlinux 0xaeb77f14 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaed6c7de kern_unmount +EXPORT_SYMBOL vmlinux 0xaed9d07f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xaef126c4 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xaef5e026 config_group_init +EXPORT_SYMBOL vmlinux 0xaf158fce security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xaf1a0d6a splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xaf2d17b7 submit_bio +EXPORT_SYMBOL vmlinux 0xaf339e30 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4d70ee file_remove_privs +EXPORT_SYMBOL vmlinux 0xaf509757 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xaf5e3228 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xaf71e9c0 tty_register_device +EXPORT_SYMBOL vmlinux 0xafaa7653 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xafc06bcd wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc3e9e9 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafc6ecc7 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xafca6254 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xafd008ab tty_port_close_end +EXPORT_SYMBOL vmlinux 0xafe99079 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xafecaece init_task +EXPORT_SYMBOL vmlinux 0xafefcaab console_stop +EXPORT_SYMBOL vmlinux 0xb00036c1 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xb008fb35 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xb01559ab scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb067b3e6 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xb06be062 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xb08cc567 __ps2_command +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0abd837 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xb0b9a986 _dev_notice +EXPORT_SYMBOL vmlinux 0xb0bde8a0 complete_request_key +EXPORT_SYMBOL vmlinux 0xb0c76281 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xb0d7455d vio_get_attribute +EXPORT_SYMBOL vmlinux 0xb0d812d8 task_work_add +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e2df8f security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb0f313e7 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xb1056dc0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb117808b stop_tty +EXPORT_SYMBOL vmlinux 0xb11bd171 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xb12258e4 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15f8231 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xb170791d kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb179f8d0 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb186a8e0 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xb190f717 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xb19d55df fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0xb1c0eebb tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c5c64e gtm_set_exact_timer16 +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb200c09b simple_fill_super +EXPORT_SYMBOL vmlinux 0xb204cdf8 seq_release +EXPORT_SYMBOL vmlinux 0xb21171f0 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xb215a043 of_get_property +EXPORT_SYMBOL vmlinux 0xb21f41e2 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xb22305d5 vme_dma_request +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb23ac325 tty_port_init +EXPORT_SYMBOL vmlinux 0xb25c13dd __quota_error +EXPORT_SYMBOL vmlinux 0xb2635052 node_data +EXPORT_SYMBOL vmlinux 0xb2722171 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb283a698 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xb29e9b9d tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb2a0e58b netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xb2acc4cd __msr_check_and_clear +EXPORT_SYMBOL vmlinux 0xb2acd9e5 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xb2c6db3e pci_find_bus +EXPORT_SYMBOL vmlinux 0xb2dac6c7 dquot_disable +EXPORT_SYMBOL vmlinux 0xb2e3f1a9 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xb2ed0cf2 skb_pull +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2ff0ee7 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31cca18 input_close_device +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb325a448 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xb32d52b9 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xb3469e0e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xb350f6f2 dqstats +EXPORT_SYMBOL vmlinux 0xb3539f0b mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xb35c8ca3 skb_put +EXPORT_SYMBOL vmlinux 0xb361c799 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb381f99d i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xb383f28c of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xb3ae80f2 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xb3beee0e xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e3ac95 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f940a1 sock_alloc +EXPORT_SYMBOL vmlinux 0xb40a73a8 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb40da4e8 inode_init_owner +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb432fa28 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xb4347bd9 netif_device_detach +EXPORT_SYMBOL vmlinux 0xb439860d d_genocide +EXPORT_SYMBOL vmlinux 0xb4424b2b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xb44478a6 qe_pin_free +EXPORT_SYMBOL vmlinux 0xb45f3735 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xb4648dae padata_alloc_shell +EXPORT_SYMBOL vmlinux 0xb473e2c2 lockref_get +EXPORT_SYMBOL vmlinux 0xb47be20e pseries_disable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xb487210c __nla_reserve +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb492b1ef sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb494d42b fs_param_is_path +EXPORT_SYMBOL vmlinux 0xb49c3027 __skb_ext_del +EXPORT_SYMBOL vmlinux 0xb4d198ce jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f7b8df of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb50a042d mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb513881d xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb517f0ff prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xb539b516 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xb53ae8ea of_match_device +EXPORT_SYMBOL vmlinux 0xb555f9f3 gtm_get_specific_timer16 +EXPORT_SYMBOL vmlinux 0xb567f9b5 mpage_readahead +EXPORT_SYMBOL vmlinux 0xb571b8ea folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a94144 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5b65bcd devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0xb5c82dbb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f00222 md_handle_request +EXPORT_SYMBOL vmlinux 0xb5fc1f12 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xb600afb5 param_set_bint +EXPORT_SYMBOL vmlinux 0xb6072c40 tcf_block_put +EXPORT_SYMBOL vmlinux 0xb62e6f6c pci_find_resource +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6361231 mutex_is_locked +EXPORT_SYMBOL vmlinux 0xb6426c0f fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xb64d04ce qdisc_hash_add +EXPORT_SYMBOL vmlinux 0xb665f115 get_cached_acl +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb6741e77 seq_release_private +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b8903 dev_get_flags +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6981ba0 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xb69c4fdf napi_enable +EXPORT_SYMBOL vmlinux 0xb69d70f3 zap_page_range +EXPORT_SYMBOL vmlinux 0xb6a6685a seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6b23de9 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xb6bfd56d vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xb6c78f26 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6d5b40a of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fae8e9 tty_unlock +EXPORT_SYMBOL vmlinux 0xb6fc9092 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +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 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb720e1ab mem_section +EXPORT_SYMBOL vmlinux 0xb73232ad alloc_fddidev +EXPORT_SYMBOL vmlinux 0xb7487f80 pci_iomap +EXPORT_SYMBOL vmlinux 0xb749332d pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xb74d06af inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xb7667156 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb77179a5 blk_rq_init +EXPORT_SYMBOL vmlinux 0xb781a0c4 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7997a75 is_bad_inode +EXPORT_SYMBOL vmlinux 0xb79c6154 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0xb7a58915 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d0dfcd tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xb7d2ef3d gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb7e65a5e devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xb7eb4b93 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb8217bc0 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb82622d5 to_nd_dax +EXPORT_SYMBOL vmlinux 0xb851d2c6 of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0xb85283b2 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb869c1bd __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xb86c1ea0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xb86c29f2 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xb8707908 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xb8957afb dst_init +EXPORT_SYMBOL vmlinux 0xb897a3a1 lock_rename +EXPORT_SYMBOL vmlinux 0xb89a4b6f nf_log_packet +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a74142 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b2a962 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8cfe175 iptun_encaps +EXPORT_SYMBOL vmlinux 0xb8d224d7 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xb8ff71b0 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xb8ff72ee filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb916a537 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb91beeb2 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb91e93ad xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xb922f350 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb94f5210 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb979a5c1 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xb996ee32 param_get_bool +EXPORT_SYMBOL vmlinux 0xb9a83f34 __inet_hash +EXPORT_SYMBOL vmlinux 0xb9c1a52b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xb9de864d vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ee84fb ram_aops +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba087bd6 nla_reserve +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba38a3dd inet_shutdown +EXPORT_SYMBOL vmlinux 0xba3b830c dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba67a355 nmi_panic +EXPORT_SYMBOL vmlinux 0xba691c85 _insb +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba76af71 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0xba77f468 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xba8f48c6 param_ops_long +EXPORT_SYMBOL vmlinux 0xba9efce8 unix_get_socket +EXPORT_SYMBOL vmlinux 0xbac35553 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xbade0308 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xbaf5c585 dst_destroy +EXPORT_SYMBOL vmlinux 0xbaff8e3f __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0b51a2 block_write_full_page +EXPORT_SYMBOL vmlinux 0xbb1086cc cdev_del +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2e72db bio_chain +EXPORT_SYMBOL vmlinux 0xbb3e9e90 __pmd_table_size +EXPORT_SYMBOL vmlinux 0xbb43342f simple_transaction_set +EXPORT_SYMBOL vmlinux 0xbb4507a2 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb502af2 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xbb75fc61 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xbb761d20 cont_write_begin +EXPORT_SYMBOL vmlinux 0xbb7b414e gtm_stop_timer16 +EXPORT_SYMBOL vmlinux 0xbb83256a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xbb87404e from_kuid +EXPORT_SYMBOL vmlinux 0xbba0bdca machine_id +EXPORT_SYMBOL vmlinux 0xbba75607 down_killable +EXPORT_SYMBOL vmlinux 0xbbdf47a7 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xbbe02118 icmp6_send +EXPORT_SYMBOL vmlinux 0xbbe75fd7 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc1f09cd request_key_rcu +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc42c17f mutex_unlock +EXPORT_SYMBOL vmlinux 0xbc4314a8 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xbc45c808 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xbc485c4f d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xbc49d094 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xbc4d9a68 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xbc4dcfdf rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xbc5546bd page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0xbc57ec4e set_anon_super +EXPORT_SYMBOL vmlinux 0xbc619ec6 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbc62b910 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xbc64c75f get_tree_nodev +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbca764ee pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xbca9aea9 param_get_ulong +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb627bd netif_device_attach +EXPORT_SYMBOL vmlinux 0xbcdac172 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xbcecbe2b write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbcefae58 ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xbcf2ff15 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xbcf54e7f _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xbd010223 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xbd0cb16e qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xbd37de78 seq_file_path +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd510091 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd64663b mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6bfb48 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xbd702b12 mdio_device_create +EXPORT_SYMBOL vmlinux 0xbd798649 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xbd92817b __seq_open_private +EXPORT_SYMBOL vmlinux 0xbdb7af0d send_sig +EXPORT_SYMBOL vmlinux 0xbdbf89e9 napi_complete_done +EXPORT_SYMBOL vmlinux 0xbdc97277 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xbdcb0c24 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xbdd089a3 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xbdd59566 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xbde3c669 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xbdeb8d13 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xbded4237 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xbe0d8363 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe164b3b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xbe237ca2 devm_free_irq +EXPORT_SYMBOL vmlinux 0xbe29794a tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xbe2abce6 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xbe461081 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe51c998 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xbe530ee9 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe7d132a set_posix_acl +EXPORT_SYMBOL vmlinux 0xbe892306 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xbe8f0ef2 of_node_put +EXPORT_SYMBOL vmlinux 0xbe93fcf6 of_match_node +EXPORT_SYMBOL vmlinux 0xbeb99017 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xbed9b853 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xbedb1653 generic_file_open +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf118c63 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xbf1289df page_readlink +EXPORT_SYMBOL vmlinux 0xbf24d3f4 vfs_ioctl +EXPORT_SYMBOL vmlinux 0xbf25f81e bio_put +EXPORT_SYMBOL vmlinux 0xbf3076ff pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xbf596f45 _insl_ns +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf637581 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xbf6908b2 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xbf7220f4 config_item_put +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9c1f6e con_is_visible +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe6733b vme_slot_num +EXPORT_SYMBOL vmlinux 0xbfe92ab2 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbff3f973 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc00e8047 genphy_read_status +EXPORT_SYMBOL vmlinux 0xc01bcb02 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc029fd2a flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xc031ed81 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc039ed3b param_set_invbool +EXPORT_SYMBOL vmlinux 0xc0715ac1 pci_find_capability +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0954478 nla_put +EXPORT_SYMBOL vmlinux 0xc0aea334 generic_writepages +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b346d8 opal_nx_coproc_init +EXPORT_SYMBOL vmlinux 0xc0b47942 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc0caa912 vga_con +EXPORT_SYMBOL vmlinux 0xc0d6d78f __var_waitqueue +EXPORT_SYMBOL vmlinux 0xc0f2722c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc134b38b ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xc135e48d scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xc1466e4a unpin_user_pages +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc15ae652 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc17eacc4 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc1a2b839 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xc1aed260 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xc1c0418e xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc1c161e1 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xc1ce2bd1 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d6db7a qe_pin_request +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e4b583 param_get_uint +EXPORT_SYMBOL vmlinux 0xc2010560 file_path +EXPORT_SYMBOL vmlinux 0xc2130302 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xc22027db i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xc22467f2 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xc22cf143 inet_ioctl +EXPORT_SYMBOL vmlinux 0xc2317264 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2490212 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xc256b176 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xc258f18b filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xc259672a ip6_xmit +EXPORT_SYMBOL vmlinux 0xc259aae2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc26f097e input_open_device +EXPORT_SYMBOL vmlinux 0xc273a50b blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0xc275b4ba of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0xc27c92e2 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xc27dc044 nonseekable_open +EXPORT_SYMBOL vmlinux 0xc2818b37 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29c6ca0 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc2c0ae35 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0xc2d48846 thaw_bdev +EXPORT_SYMBOL vmlinux 0xc2d72f68 security_sock_graft +EXPORT_SYMBOL vmlinux 0xc2db46c2 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e8ff4d __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc3065421 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xc30e98ca of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31ab10b inet_csk_accept +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc32cac4a rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xc33ee4ba ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xc352640c ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xc367c90b get_acl +EXPORT_SYMBOL vmlinux 0xc36cd389 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xc375a9ae dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc37cb073 key_task_permission +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3b7b4e6 input_register_handler +EXPORT_SYMBOL vmlinux 0xc3c24008 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xc3c288fa sk_dst_check +EXPORT_SYMBOL vmlinux 0xc3c37185 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xc3c52ae8 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xc3e4e40c phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xc3ee7ff9 genphy_loopback +EXPORT_SYMBOL vmlinux 0xc408449b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xc4126942 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xc415cc8c mmc_can_erase +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc41f2b8b msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc446150d del_gendisk +EXPORT_SYMBOL vmlinux 0xc44b2409 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4649d91 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc4689ffd trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc46c6cc0 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4866275 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xc48b4bcc current_in_userns +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4afe3ac netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xc4cdf48f _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xc4ce175f unlock_buffer +EXPORT_SYMBOL vmlinux 0xc4ce6f65 vme_master_request +EXPORT_SYMBOL vmlinux 0xc4d0e458 pci_enable_device +EXPORT_SYMBOL vmlinux 0xc4f1abb8 dcb_getapp +EXPORT_SYMBOL vmlinux 0xc51a3640 down_write_killable +EXPORT_SYMBOL vmlinux 0xc5332321 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xc54ee009 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5583105 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xc5616685 vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xc5625a33 iget5_locked +EXPORT_SYMBOL vmlinux 0xc5675ec0 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc572a9f3 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc575ade4 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xc5883ef6 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc595fa02 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a1d4a4 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5a396fd udplite_table +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5cb933c security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xc5d1effc __bforget +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f19886 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc608d292 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61b13d5 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc61b8087 idr_destroy +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc61dbb59 netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc6369552 sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xc65af6e2 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6603bcc skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xc660bafa dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xc664b528 mempool_create_node +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67af65b register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc683cf53 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc6b688bf tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d220d1 rtas_busy_delay +EXPORT_SYMBOL vmlinux 0xc6d6af46 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6faa06c rt_dst_alloc +EXPORT_SYMBOL vmlinux 0xc70e92af devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc715b441 sock_from_file +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc722a12e hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xc730250b path_put +EXPORT_SYMBOL vmlinux 0xc748dfb1 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xc760ff96 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xc767bfd9 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc7816bea pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79e3252 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7dafbab tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xc7f34787 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc7f484b1 ida_destroy +EXPORT_SYMBOL vmlinux 0xc8312c20 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8569cc2 key_put +EXPORT_SYMBOL vmlinux 0xc859a615 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc8885593 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc88d2989 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8bc1186 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc8c167b3 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xc8ccdd1d phy_resume +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f5a95a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc955cb2c down_trylock +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 0xc9813af6 __skb_checksum +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9bbf670 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xc9d7967a __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc9dc3d79 __pte_frag_size_shift +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e02755 tty_write_room +EXPORT_SYMBOL vmlinux 0xca07ce07 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xca122f2b ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca18bf28 input_flush_device +EXPORT_SYMBOL vmlinux 0xca1f4680 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca47aa05 nf_reinject +EXPORT_SYMBOL vmlinux 0xca5f3154 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xca65c911 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xca8c938f address_space_init_once +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca95bb5f pci_dev_get +EXPORT_SYMBOL vmlinux 0xca9dbb44 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0xca9efeb7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xcabb9b46 kobject_del +EXPORT_SYMBOL vmlinux 0xcacb4e78 tty_check_change +EXPORT_SYMBOL vmlinux 0xcad1c491 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xcaf3331f tty_unregister_device +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0a5174 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xcb2ea0b5 finish_wait +EXPORT_SYMBOL vmlinux 0xcb30f6fc dcache_dir_open +EXPORT_SYMBOL vmlinux 0xcb37132c security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3c8a7d ___ratelimit +EXPORT_SYMBOL vmlinux 0xcb3d1a37 rtc_add_group +EXPORT_SYMBOL vmlinux 0xcb3ff0c2 get_tree_keyed +EXPORT_SYMBOL vmlinux 0xcb4ab1b6 vfs_link +EXPORT_SYMBOL vmlinux 0xcb4dd8d1 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcb52831a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xcb54da6f ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xcb66db37 agp_backend_release +EXPORT_SYMBOL vmlinux 0xcb745ec7 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xcbbdf955 udp_gro_receive +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc83d30 alloc_pages +EXPORT_SYMBOL vmlinux 0xcbcc1f6b param_set_bool +EXPORT_SYMBOL vmlinux 0xcbcf0968 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbdbde47 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xcbed7dde block_commit_write +EXPORT_SYMBOL vmlinux 0xcbee68bc dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xcbf5cf09 mach_powernv +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc23002a hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2687cf seq_lseek +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc3e6ae6 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc465047 simple_lookup +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc626c2c completion_done +EXPORT_SYMBOL vmlinux 0xcc64b052 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xcc901f82 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xcca3cba9 input_allocate_device +EXPORT_SYMBOL vmlinux 0xccb6eac8 dma_fence_free +EXPORT_SYMBOL vmlinux 0xccb80d3d to_ndd +EXPORT_SYMBOL vmlinux 0xccc66e43 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xccc74e27 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0xccd243ce inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd76092 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xcce485d3 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xcce64ac5 may_umount_tree +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd124150 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xcd1cc9aa pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd379a72 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xcd3d4377 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xcd3e2d4e inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xcd434056 neigh_for_each +EXPORT_SYMBOL vmlinux 0xcd5a4308 keyring_alloc +EXPORT_SYMBOL vmlinux 0xcd7b6452 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xcd826c23 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd886477 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xcd906ffa vio_register_device_node +EXPORT_SYMBOL vmlinux 0xcda7b218 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xcda87909 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xcdb6562a __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xcdc0349c add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xcdc153bc xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcf4cb2 bh_submit_read +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdee038f _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xcdfe0a16 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xce18bbe1 fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c6db6 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xce35a51c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xce443924 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xce4496bf kill_fasync +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4d709e param_set_uint +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce53aa61 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce66e95d max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce740f82 fb_find_mode +EXPORT_SYMBOL vmlinux 0xce807151 idr_get_next +EXPORT_SYMBOL vmlinux 0xce8815bc pci_release_regions +EXPORT_SYMBOL vmlinux 0xce910775 input_match_device_id +EXPORT_SYMBOL vmlinux 0xce914ef6 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xce9e4b16 phy_device_free +EXPORT_SYMBOL vmlinux 0xcea13239 proc_dobool +EXPORT_SYMBOL vmlinux 0xceaa72ab ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceade55a user_path_at_empty +EXPORT_SYMBOL vmlinux 0xcebd3ca7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xcec5feeb cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xcec766f1 __memset16 +EXPORT_SYMBOL vmlinux 0xced2d07c pci_write_vpd +EXPORT_SYMBOL vmlinux 0xced2fd8c register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xcee3e869 netif_tx_lock +EXPORT_SYMBOL vmlinux 0xceeba656 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xcef2e92d tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0cf433 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xcf33c3a9 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf3e5e28 flush_all_to_thread +EXPORT_SYMBOL vmlinux 0xcf414e0f inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xcf50df22 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xcf69b32c fasync_helper +EXPORT_SYMBOL vmlinux 0xcf910b4f get_unmapped_area +EXPORT_SYMBOL vmlinux 0xcf92da66 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xcf96e4d6 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xcf9a189a down_timeout +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa1678c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xcfc3ada9 ps2_command +EXPORT_SYMBOL vmlinux 0xcfd3a9a0 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfd92e68 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd014f497 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd0315d96 security_path_unlink +EXPORT_SYMBOL vmlinux 0xd040ab1f netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd066ea84 pci_choose_state +EXPORT_SYMBOL vmlinux 0xd06f136d fget +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd07686c8 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xd082eb5d pci_dev_put +EXPORT_SYMBOL vmlinux 0xd083041b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd0befd12 textsearch_register +EXPORT_SYMBOL vmlinux 0xd0bfb8b0 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd1006f45 __sock_create +EXPORT_SYMBOL vmlinux 0xd103535c netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xd10f36ec skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd12a72be eth_gro_complete +EXPORT_SYMBOL vmlinux 0xd12e82f3 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xd13b232a put_ipc_ns +EXPORT_SYMBOL vmlinux 0xd17f9f47 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xd199a342 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xd19c1b7d pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd19caaac ilookup +EXPORT_SYMBOL vmlinux 0xd1a83098 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xd1ada28a pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xd1b2e307 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e7bdfc pci_map_rom +EXPORT_SYMBOL vmlinux 0xd1f210d7 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xd1f5f94e dev_addr_del +EXPORT_SYMBOL vmlinux 0xd2151b62 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd21cb5c8 vfs_readlink +EXPORT_SYMBOL vmlinux 0xd23e780e clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd242bd5b flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xd2486bbe unlock_new_inode +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd263c721 kobject_put +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd29972ef nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd2ada0b6 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xd2c016f4 __udp_disconnect +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d66885 __fput_sync +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dc2a64 inc_nlink +EXPORT_SYMBOL vmlinux 0xd2deff31 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xd2df8b93 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32e0292 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xd33e2781 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xd34f2673 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xd352ef5e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd3530d81 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xd3538844 seq_pad +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd356c7cd vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd380a224 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd3a88f68 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xd3b4014d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xd3b49a05 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xd3bf1ef9 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd3cbafec napi_get_frags +EXPORT_SYMBOL vmlinux 0xd3cbe560 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd3e74325 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xd3f64f86 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41a807d devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0xd425c8b7 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd434e02f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xd4429d20 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xd44ba824 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xd45a6782 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd480a4c8 module_layout +EXPORT_SYMBOL vmlinux 0xd48aee2c ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4921f62 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xd49ac016 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xd4a844a9 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xd4b0dde7 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4be3c16 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xd4c34c88 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd4c4efac d_alloc_anon +EXPORT_SYMBOL vmlinux 0xd4d7c068 fsl_upm_find +EXPORT_SYMBOL vmlinux 0xd4dbb265 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xd4de4f26 dm_io +EXPORT_SYMBOL vmlinux 0xd4ea53c3 phy_detach +EXPORT_SYMBOL vmlinux 0xd4eea929 inet_accept +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fd0ec2 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0xd518d6b7 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xd519b028 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd529f474 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xd52a64df __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd53fe053 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xd541c984 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xd55b4599 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xd55fa416 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xd5755bf8 trace_event_printf +EXPORT_SYMBOL vmlinux 0xd57baee0 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd58b2147 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd5a045d7 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xd5a70065 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd5ace3d3 get_task_cred +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 0xd5d013b7 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xd5d288ac bio_init_clone +EXPORT_SYMBOL vmlinux 0xd60249c0 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xd602927b register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd6045c89 giveup_fpu +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61013cc nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd61c2a91 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xd63cd60c proto_unregister +EXPORT_SYMBOL vmlinux 0xd64d0c6d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd65c21f8 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd680ff8c writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xd6841dda netif_receive_skb +EXPORT_SYMBOL vmlinux 0xd6847255 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd68600a4 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6900764 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xd69052db scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xd69948fb proc_dointvec +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b0cbe6 udp_seq_start +EXPORT_SYMBOL vmlinux 0xd6b29f76 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xd6bb8c1e max8998_update_reg +EXPORT_SYMBOL vmlinux 0xd6bde284 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xd6d39d3c set_blocksize +EXPORT_SYMBOL vmlinux 0xd6ea283b qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd700d850 ihold +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70e849e pci_match_id +EXPORT_SYMBOL vmlinux 0xd713611f phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xd7184c04 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd739213e of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74d8bc4 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd750d9fb nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xd76acb81 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd76fdace inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xd777b1ab km_report +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7896b58 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7a60a1c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xd7b064e9 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xd7cd1b9c xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7d9c076 release_pages +EXPORT_SYMBOL vmlinux 0xd7da2d53 fqdir_exit +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ebda43 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xd7f0ef02 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xd7f5ce82 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xd80378ed cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd810fadb __ip_dev_find +EXPORT_SYMBOL vmlinux 0xd81b56bf invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd8249d35 should_remove_suid +EXPORT_SYMBOL vmlinux 0xd83cdc99 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xd8548b30 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xd8895f57 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xd88d6692 follow_up +EXPORT_SYMBOL vmlinux 0xd896c172 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b2f4a3 netdev_crit +EXPORT_SYMBOL vmlinux 0xd8b43edc mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8bf52a0 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xd90882b1 register_filesystem +EXPORT_SYMBOL vmlinux 0xd90c7bc0 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd923e3bf dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xd9337113 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd93427b3 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xd949709e unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xd9858368 d_add_ci +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd985fdb2 sk_stream_error +EXPORT_SYMBOL vmlinux 0xd98c34fa __dquot_transfer +EXPORT_SYMBOL vmlinux 0xd9a1dc63 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xd9a347b0 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c42a53 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xd9c96876 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd9d64802 padata_free_shell +EXPORT_SYMBOL vmlinux 0xd9d8e61d par_io_of_config +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9f0ca61 sock_create_kern +EXPORT_SYMBOL vmlinux 0xd9f2175a agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xd9fd5415 vme_bus_num +EXPORT_SYMBOL vmlinux 0xda297b7d netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xda36e533 page_symlink +EXPORT_SYMBOL vmlinux 0xda3b60f0 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda69bd3c copy_string_kernel +EXPORT_SYMBOL vmlinux 0xda9fe7a6 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xdaa3714d ppp_register_channel +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdae10d9f dma_pool_create +EXPORT_SYMBOL vmlinux 0xdae5552e ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdaecefe5 serio_reconnect +EXPORT_SYMBOL vmlinux 0xdaf93160 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdb1e7f2d mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb311b9e build_skb_around +EXPORT_SYMBOL vmlinux 0xdb3f1500 sk_capable +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7b06a4 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xdb7e025a dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdb8227b1 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xdb849abf security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0xdb9adb47 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xdbb14407 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xdbbb0591 rproc_alloc +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe440e1 tcf_classify +EXPORT_SYMBOL vmlinux 0xdbebf260 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xdbf3110e gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0xdbfa0017 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xdc11df62 nobh_writepage +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1a2d2f km_new_mapping +EXPORT_SYMBOL vmlinux 0xdc2d256c flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xdc3cde61 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc3fcbcb __mutex_init +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc568cf0 dquot_initialize +EXPORT_SYMBOL vmlinux 0xdc6fa739 user_path_create +EXPORT_SYMBOL vmlinux 0xdc75cec9 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xdc7a0fc9 dm_get_device +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcac4521 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xdcb3e5f1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcbf86b3 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xdccf39c2 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce5468e md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xdcf5a505 sock_no_bind +EXPORT_SYMBOL vmlinux 0xdd026c4b pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd467bd2 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xdd52eec4 input_setup_polling +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd76e33a pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd951a1d of_platform_device_create +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddcca2df netlink_broadcast +EXPORT_SYMBOL vmlinux 0xdddab0e2 sock_gettstamp +EXPORT_SYMBOL vmlinux 0xde06edff agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xde3c706e __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xde4465d5 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0xde45d085 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xde45d92b pcibus_to_node +EXPORT_SYMBOL vmlinux 0xde461484 set_groups +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde57cea6 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xde66f446 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xde6ffe3f pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xde78ba26 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xde7cd709 rtas +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea94f44 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeea2d51 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xdeeb424c nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xdef52925 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdf00b5d7 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xdf0c31a7 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xdf1afa71 configfs_register_group +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf327599 from_kprojid +EXPORT_SYMBOL vmlinux 0xdf43211d t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xdf4ac4e4 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xdf516385 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xdf54a1da tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf66b42d flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xdf6c5a5a dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xdf761328 device_add_disk +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9a4f5e security_sb_remount +EXPORT_SYMBOL vmlinux 0xdfae1543 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xdfb344a3 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xdfb605cc of_clk_get +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc81993 put_disk +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd1c3cd nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xdfddb954 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xdff536e1 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0059cc8 sock_i_ino +EXPORT_SYMBOL vmlinux 0xe0091d7a input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe00a611c agp_free_memory +EXPORT_SYMBOL vmlinux 0xe022e639 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0xe02a6566 ps2_init +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe062d97e paca_ptrs +EXPORT_SYMBOL vmlinux 0xe06e3abc get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe0840703 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xe08e95c8 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0987518 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b4a14f rproc_add +EXPORT_SYMBOL vmlinux 0xe0bf8edc ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xe0c49a83 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe0caeb21 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xe0d02f67 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xe0d171a3 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xe0dba5f6 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe0e864af phy_attach +EXPORT_SYMBOL vmlinux 0xe0ed1c8d get_agp_version +EXPORT_SYMBOL vmlinux 0xe0f77ac0 xp_can_alloc +EXPORT_SYMBOL vmlinux 0xe1078f0e param_get_charp +EXPORT_SYMBOL vmlinux 0xe117512d param_get_invbool +EXPORT_SYMBOL vmlinux 0xe11c1526 neigh_lookup +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe14164d3 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xe162f3b5 __icmp_send +EXPORT_SYMBOL vmlinux 0xe18c721b ip_do_fragment +EXPORT_SYMBOL vmlinux 0xe1af72c0 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xe1bef007 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xe1d43b84 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1deb206 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xe1df1220 sock_set_priority +EXPORT_SYMBOL vmlinux 0xe1dfba47 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xe1ea27c8 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xe1f56410 __bread_gfp +EXPORT_SYMBOL vmlinux 0xe2055c97 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xe21d57db uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe25d20d3 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe26a01c9 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe279d05d dquot_commit +EXPORT_SYMBOL vmlinux 0xe27f756c tty_name +EXPORT_SYMBOL vmlinux 0xe28b4c03 thaw_super +EXPORT_SYMBOL vmlinux 0xe29fb96e agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe2b6622b tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xe2c3693f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xe2d28f08 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d792b5 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe2d996dd xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xe2e33bb9 unlock_rename +EXPORT_SYMBOL vmlinux 0xe2e391ad nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xe2f68834 find_vma +EXPORT_SYMBOL vmlinux 0xe3183c69 genl_register_family +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32ac151 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xe32ee280 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xe33ab46a jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe33cc232 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe3419758 udp_seq_stop +EXPORT_SYMBOL vmlinux 0xe3477939 of_graph_is_present +EXPORT_SYMBOL vmlinux 0xe34e8b26 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xe3845d9d locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3c93900 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe3cdb069 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xe3ce51a5 sync_inode_metadata +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 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe4214767 __f_setown +EXPORT_SYMBOL vmlinux 0xe423ffe2 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xe42a214e console_start +EXPORT_SYMBOL vmlinux 0xe42ac025 seq_putc +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4459748 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xe45d4532 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0xe4980b25 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe4a851ce neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xe4ad5b84 pci_get_device +EXPORT_SYMBOL vmlinux 0xe4af8ea7 vio_find_node +EXPORT_SYMBOL vmlinux 0xe4ba316c mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4d22f84 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xe4da3ce7 agp_enable +EXPORT_SYMBOL vmlinux 0xe4e35e72 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xe4e7cff3 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe4efb700 register_sysctl +EXPORT_SYMBOL vmlinux 0xe5052c35 gtm_set_timer16 +EXPORT_SYMBOL vmlinux 0xe516d86e input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52e4b75 inet_frag_find +EXPORT_SYMBOL vmlinux 0xe551ca94 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58fe84d jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe59c8b27 bioset_init +EXPORT_SYMBOL vmlinux 0xe5a68528 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe5ac9c84 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xe5afabd5 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0xe5b18786 __skb_pad +EXPORT_SYMBOL vmlinux 0xe5b29090 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe5bdccb3 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d0bd84 __lock_buffer +EXPORT_SYMBOL vmlinux 0xe5d71a61 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xe5df15a3 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe60b40b7 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe60d7cc2 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6141cf2 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe64a398c iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe65e150e pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0xe6607137 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe67f64cb of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xe68d9203 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xe694077f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xe6b7c070 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xe6ccf095 generic_write_end +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d611af phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xe6ed48c6 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xe6f9c0fd sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xe703d69f of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xe712e18e rio_query_mport +EXPORT_SYMBOL vmlinux 0xe7333f9b radix__flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xe7442d24 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe74438e9 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xe76335c5 __debugger +EXPORT_SYMBOL vmlinux 0xe789455b param_ops_bool +EXPORT_SYMBOL vmlinux 0xe79451c0 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xe796ecac __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe79a2e0e set_page_dirty +EXPORT_SYMBOL vmlinux 0xe7aecccd page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xe7c2ced7 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d7f5ff filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xe7f9c25f load_nls +EXPORT_SYMBOL vmlinux 0xe83010e9 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xe849ecab pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe8672e4f genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xe878cc22 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xe886aa6f vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xe88802ee folio_unlock +EXPORT_SYMBOL vmlinux 0xe8a63c2c cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xe8a9edf2 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8b80834 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0xe8b9e339 param_get_short +EXPORT_SYMBOL vmlinux 0xe8d54c77 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xe8d61ef0 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe8da88a4 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xe8dbb642 may_setattr +EXPORT_SYMBOL vmlinux 0xe8df7267 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9284440 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xe9477c23 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xe94f1342 phy_device_remove +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe959c77e tcp_filter +EXPORT_SYMBOL vmlinux 0xe9732d87 d_find_alias +EXPORT_SYMBOL vmlinux 0xe975e92b blk_get_queue +EXPORT_SYMBOL vmlinux 0xe9774d96 cad_pid +EXPORT_SYMBOL vmlinux 0xe9a46397 simple_empty +EXPORT_SYMBOL vmlinux 0xe9aaf799 vm_event_states +EXPORT_SYMBOL vmlinux 0xe9b2e190 proc_set_user +EXPORT_SYMBOL vmlinux 0xe9b4e2d3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe9d4938d clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9dc3164 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe9e3a6e3 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xe9e75287 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fbb27a mdio_device_register +EXPORT_SYMBOL vmlinux 0xe9fc8b01 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea426e43 mempool_resize +EXPORT_SYMBOL vmlinux 0xea4550b1 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xea607d6d send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea7356e2 done_path_create +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea80392f on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0xeab24923 netdev_err +EXPORT_SYMBOL vmlinux 0xeab45c0f nd_btt_probe +EXPORT_SYMBOL vmlinux 0xeab4c181 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xead03a46 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0xeadf42b2 module_refcount +EXPORT_SYMBOL vmlinux 0xeadf5574 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xeae18f75 wake_up_process +EXPORT_SYMBOL vmlinux 0xeae8d9e4 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3e8011 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb6fdddf tty_kref_put +EXPORT_SYMBOL vmlinux 0xeb74a124 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xeb7cd9e3 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeb8f2d4f __pmd_frag_size_shift +EXPORT_SYMBOL vmlinux 0xeb94a3c1 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba590c1 of_node_name_prefix +EXPORT_SYMBOL vmlinux 0xeba79a3a inode_set_flags +EXPORT_SYMBOL vmlinux 0xebd32cdd dma_fence_get_status +EXPORT_SYMBOL vmlinux 0xebd373e8 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0xebd79fbb km_policy_expired +EXPORT_SYMBOL vmlinux 0xebe36e64 skb_split +EXPORT_SYMBOL vmlinux 0xec09bf31 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xec1b39bc set_security_override +EXPORT_SYMBOL vmlinux 0xec27bb96 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec4a0ce5 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4fb493 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xec9361c1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xec97ead8 __kernel_io_start +EXPORT_SYMBOL vmlinux 0xec9c2d70 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xecaad0a3 d_obtain_root +EXPORT_SYMBOL vmlinux 0xecc340ee pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xecca3a4f twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xecddb3d5 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xecdf9c69 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xece0f6e3 _dev_printk +EXPORT_SYMBOL vmlinux 0xece3bc14 __do_once_done +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfba725 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xecfdaf20 pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xed12897c mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xed313b8f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xed3557f4 dev_uc_init +EXPORT_SYMBOL vmlinux 0xed63dcb9 module_put +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed684d47 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xed6d6a45 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xed71ccc3 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xed83248b security_unix_may_send +EXPORT_SYMBOL vmlinux 0xed8b4098 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xed9ef090 phy_device_create +EXPORT_SYMBOL vmlinux 0xeda6775e netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xeda9e5da file_open_root +EXPORT_SYMBOL vmlinux 0xedb5b8f5 unix_gc_lock +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xede5ba07 serio_rescan +EXPORT_SYMBOL vmlinux 0xedf6f526 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xedf97ce0 clk_add_alias +EXPORT_SYMBOL vmlinux 0xee2a336f dev_add_pack +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee59b9f1 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xee665faf add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xee782bb4 serio_bus +EXPORT_SYMBOL vmlinux 0xee847e56 in_dev_finish_destroy +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 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeab32cc twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xeeb80c11 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xeeb82877 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0xeebcc77b phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xeed5bcca __pud_table_size +EXPORT_SYMBOL vmlinux 0xeee06c5c fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeef3730d phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xeef495fe truncate_pagecache +EXPORT_SYMBOL vmlinux 0xeeff2850 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xef00ab5f generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xef04549f md_write_start +EXPORT_SYMBOL vmlinux 0xef0c2294 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xef27a635 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xef374128 fb_blank +EXPORT_SYMBOL vmlinux 0xef3c27e8 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xef542b37 pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0xef61f384 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xef648b2b __mdiobus_read +EXPORT_SYMBOL vmlinux 0xef71a22c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xef7de3b0 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xef854929 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xef9b6b48 get_tz_trend +EXPORT_SYMBOL vmlinux 0xefacd9fa fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefce911d phy_disconnect +EXPORT_SYMBOL vmlinux 0xefddbc54 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xefe150eb eth_header_parse +EXPORT_SYMBOL vmlinux 0xefebd6a7 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xefef297d __break_lease +EXPORT_SYMBOL vmlinux 0xeff47306 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf024f7cf consume_skb +EXPORT_SYMBOL vmlinux 0xf02be880 inode_update_time +EXPORT_SYMBOL vmlinux 0xf0329ad1 down_read_trylock +EXPORT_SYMBOL vmlinux 0xf03597ff request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xf0388a23 simple_link +EXPORT_SYMBOL vmlinux 0xf0483f00 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xf06038a3 mdiobus_write +EXPORT_SYMBOL vmlinux 0xf060fbc5 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xf07350bd proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf073c7a5 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf077bcbb ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf086156b xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xf097672a configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xf0981a1d seq_puts +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0bfbf99 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf0c2d63a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xf0d3ede6 proc_create_data +EXPORT_SYMBOL vmlinux 0xf0e08338 pskb_extract +EXPORT_SYMBOL vmlinux 0xf0fd8b23 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xf10a4057 regset_get +EXPORT_SYMBOL vmlinux 0xf110d1cb pseries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0xf1120ebb mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf130b788 udp_seq_next +EXPORT_SYMBOL vmlinux 0xf13185e0 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xf133623b seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xf1349228 swake_up_locked +EXPORT_SYMBOL vmlinux 0xf152cf75 folio_mapped +EXPORT_SYMBOL vmlinux 0xf181a4bc sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19ef167 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +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 0xf2098933 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xf22080cf of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xf226df06 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf241461f __xa_insert +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf271d043 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xf273b56f mpage_writepages +EXPORT_SYMBOL vmlinux 0xf27d08d6 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf294e591 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xf29df442 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2a3a6e3 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf2a3e3ec mark_info_dirty +EXPORT_SYMBOL vmlinux 0xf2a965d0 vma_set_file +EXPORT_SYMBOL vmlinux 0xf2b27f4d ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xf2b6b67e rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d8aa19 vfs_symlink +EXPORT_SYMBOL vmlinux 0xf2dad8ea pci_request_regions +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2fc28f6 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xf305c4e6 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf31a160b dquot_transfer +EXPORT_SYMBOL vmlinux 0xf31c7b37 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xf328873a of_phy_connect +EXPORT_SYMBOL vmlinux 0xf3291f27 __folio_alloc +EXPORT_SYMBOL vmlinux 0xf3387542 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf33f803e lookup_one +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 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf37fc045 finish_swait +EXPORT_SYMBOL vmlinux 0xf385781e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf38bc2a2 __free_pages +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39de339 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xf39f2605 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a60cc3 regset_get_alloc +EXPORT_SYMBOL vmlinux 0xf3afc959 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xf3b03e15 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf3b7f646 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xf3bc3481 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xf3c59624 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e675bf cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf3e6b013 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf3f0eec3 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xf40a812b ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xf425e18d sync_filesystem +EXPORT_SYMBOL vmlinux 0xf42d64ca proc_dostring +EXPORT_SYMBOL vmlinux 0xf445b33c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf46664fc nd_device_notify +EXPORT_SYMBOL vmlinux 0xf472017a swake_up_all +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4766a4c devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xf49dcc9d tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xf4a6a37f udp_pre_connect +EXPORT_SYMBOL vmlinux 0xf4c2897a jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xf4c4919c kthread_stop +EXPORT_SYMBOL vmlinux 0xf4cb7e1d generic_ro_fops +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dc9018 decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xf4df0099 cred_fscmp +EXPORT_SYMBOL vmlinux 0xf4e1a3b3 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xf4e521df clear_user_page +EXPORT_SYMBOL vmlinux 0xf4ec3f8e param_ops_hexint +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf515c59f netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xf524a412 open_exec +EXPORT_SYMBOL vmlinux 0xf53affcb netlink_capable +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf53f722e trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xf54133b8 kobject_get +EXPORT_SYMBOL vmlinux 0xf5488fd9 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5881f0e fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a3d9a4 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5ac19df of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0xf5c49675 d_alloc_name +EXPORT_SYMBOL vmlinux 0xf5c8a2e2 srp_rport_get +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5ec3166 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf6080258 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xf60a1f99 deactivate_super +EXPORT_SYMBOL vmlinux 0xf6150d63 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xf615e567 kernel_write +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf630bdd7 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xf6424663 udp_ioctl +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6492b2f mdiobus_free +EXPORT_SYMBOL vmlinux 0xf652cd3b register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xf65dd045 bio_kmalloc +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf667a31e vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xf676e157 agp_copy_info +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69037f0 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf69d4a58 default_llseek +EXPORT_SYMBOL vmlinux 0xf6aea57b copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf707c9e6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xf72c274b devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf744da14 bmap +EXPORT_SYMBOL vmlinux 0xf76e4e94 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xf770598a xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7820b4a mmc_erase +EXPORT_SYMBOL vmlinux 0xf7a61323 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf7b24c88 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xf7b5390b validate_sp +EXPORT_SYMBOL vmlinux 0xf7b57e93 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf7c2df39 __wake_up_bit +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d403d9 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xf7e72dd9 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xf7fa543d flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xf7fc33f0 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0xf7fe0ecd dqget +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812a62f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf812e574 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf8279c01 md_bitmap_free +EXPORT_SYMBOL vmlinux 0xf8295eff jbd2_trans_will_send_data_barrier +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 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8afb6e0 __of_get_address +EXPORT_SYMBOL vmlinux 0xf8c24e76 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8da9731 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf8e1115e _outsl_ns +EXPORT_SYMBOL vmlinux 0xf8e73fc5 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90517fe bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xf91f43e4 vfs_get_super +EXPORT_SYMBOL vmlinux 0xf939901e mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94781ed security_path_rename +EXPORT_SYMBOL vmlinux 0xf9560a56 kill_anon_super +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf988cd34 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf98bef9f input_unregister_handler +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b1cdcd smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9d2502a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0aa651 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa36d386 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xfa490df0 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xfa525ac5 tty_hangup +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6fc1a0 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xfa811b0a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xfa915a11 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xfa9c2ece _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab91f9b find_inode_nowait +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfaf71e81 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xfb232c7e idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xfb24312e dump_align +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb40c381 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xfb4b0800 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfb5dbca9 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6e7849 phy_get_pause +EXPORT_SYMBOL vmlinux 0xfb70e0ba of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xfb7af6b2 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba99ab7 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbac8da6 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb04789 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbbf7ab flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc5d668 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xfc198352 override_creds +EXPORT_SYMBOL vmlinux 0xfc22a968 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xfc22b999 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xfc2b31a3 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xfc382645 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc55ca40 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xfc9c1add qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xfca6ffa9 mmc_release_host +EXPORT_SYMBOL vmlinux 0xfcb27ff0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0xfcb6237d write_cache_pages +EXPORT_SYMBOL vmlinux 0xfcc9153e of_get_next_child +EXPORT_SYMBOL vmlinux 0xfccabb36 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd059d4 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfce328ee devm_clk_put +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf7f9a5 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xfd084230 radix__flush_pmd_tlb_range +EXPORT_SYMBOL vmlinux 0xfd0b508f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xfd19289c fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xfd20dd1e pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xfd34eae2 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xfd5006ba devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xfd67e14f configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xfd7309c5 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xfd8500a3 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xfd87da1f of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xfd90efb3 genphy_resume +EXPORT_SYMBOL vmlinux 0xfdbd830f dentry_create +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd0b03d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xfdd26036 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xfdd4216d pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xfdd6bbad __wake_up +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfddbfc8e dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0xfde6aa7c __pagevec_release +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfcdd5f __csum_partial +EXPORT_SYMBOL vmlinux 0xfdff84a6 vme_irq_request +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe07b3ea blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfe17d8d1 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2836ee bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xfe290e5e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xfe319711 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xfe41121c fb_show_logo +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe493637 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xfe4a48c3 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xfe4b0821 migrate_page_states +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6895e7 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xfe6a42cc sock_kfree_s +EXPORT_SYMBOL vmlinux 0xfe835d98 scsi_done +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfea0832e pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec8d843 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee8de6a _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfefc2ecc generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff05b17a phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2cfc43 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xff2f9594 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xff3a4f74 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xff43281b ipv4_specific +EXPORT_SYMBOL vmlinux 0xff609d0c xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff69e325 scsi_host_get +EXPORT_SYMBOL vmlinux 0xff705275 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xff78f5b5 d_tmpfile +EXPORT_SYMBOL vmlinux 0xff81f9f3 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xff9095d4 param_set_hexint +EXPORT_SYMBOL vmlinux 0xff97e747 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc86af0 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffe43913 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xffe6697e mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xffe690fd udp_table +EXPORT_SYMBOL vmlinux 0xffeeb99f __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL vmlinux 0xfffb9896 __dec_zone_page_state +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x014212b0 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x01b15d1b kvmppc_xive_push_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x02e5aee4 file_is_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04aee54d kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07602246 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07d233ee kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0811fae4 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x106197e3 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1094815a kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x15d70e95 kvmppc_xive_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x175bd6e1 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x197b1be8 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ebab19c mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2018b88f kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x220d6134 kvmppc_h_stuff_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x223e88a4 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2376de41 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2430b7c3 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2903c1ef kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x29622cc8 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x34ebe7cb kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x372f4f33 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x38c07941 kvmppc_core_queue_inst_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3cbaf964 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3ee8fec2 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x40b821ef kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x424f5484 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4340eb7b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x44c100ab __SCK__tp_func_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4632f830 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x46878a70 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x49287c91 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4c6e4432 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50f05a8e kvmppc_h_put_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x51570761 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x57faede2 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59ba456e kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5b290869 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5cf0fa9f gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d35eb50 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5d967dd3 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x61407068 kvmppc_xics_rm_complete +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x617ccf0b kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x63063fd9 kvmppc_xive_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x64730211 kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65b1feab vcpu_put +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 0x6af7af73 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6dfd5193 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x73911214 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x75a9d9e9 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7818b7cb kvmppc_xics_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79b1c7ee kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x79c7334a kvmppc_book3s_queue_irqprio +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 0x7cf35292 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d3b3e08 __traceiter_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7d48d9ae kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8082a64a kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8102ab8d kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8122a59f kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8193b2da kvmppc_core_queue_data_storage +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x89a5ec3b kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e953419 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa713e29b kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8244431 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa9ac7e7d __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xac948d61 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xacdf19be kvmppc_xive_rearm_escalation +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xaebdc7ec kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb0458a70 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb26ebacd kvmppc_core_queue_machine_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb41a681f kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbac2b29e kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf1d4b24 kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc0db35eb kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc732a089 kvmppc_h_put_tce_indirect +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc779fa9a kvmppc_xive_clr_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xca673016 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcb71aade kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcee2820f kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd0db299d kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd2d07237 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdd34421b kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xde70fa33 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe557c15d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe893bfb8 gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xea493540 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xec0dce1e gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xed4a8012 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xedec02e6 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xedf55e19 kvmppc_xive_pull_vcpu +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf04d30a1 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf06b16c2 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf3650fa3 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf554d274 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf84bb342 kvmppc_h_get_tce +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8acaa7e kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8f00375 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf8f68b08 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf91ca617 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfb8ad3f0 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfd0398ae kvmppc_xics_set_mapped +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfd6dfe02 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xff53b0ad kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x5c525451 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x02f1ae92 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x05b4ba47 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x145ddd94 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x1c35de97 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x2e00087b af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x48da7e67 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x5241675f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b0baef6 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x64ed828b af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x79c7d03d af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x7d300fad af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x8517aac6 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x8571f2b9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xc604e017 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb07c83e af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd33f5746 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xd4ff9e09 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xec66880f af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfdd49e00 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x357ab7f5 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8194570b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x759c0df7 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x9e624fbf async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4d9c703d async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x57a6aec7 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8a45a795 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe1bc7684 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x28cc9cb0 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x61cf2dcd async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8c8633c5 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe9a056a7 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xec290d93 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xcac70600 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 0x545d18e9 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 0x0e54c97d cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x371a97c2 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x417b96e2 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x426f1185 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x461a7c0f cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5a8b163f cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x79e0d19d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x80d72a92 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x8e7f20ca cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x97fb6ec1 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb4e4bd26 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc9339fd7 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd7ef666e cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x013a9c04 crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x054fbc6e crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x1486be09 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x60f63794 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x80c8269c crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8c118f21 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa21a73c0 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa6ae966e crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xad35ffd6 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xaf5db03f crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0ca5410 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc33d6f1b crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdf92ee2f crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe0aa2905 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf9cf8b5d crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x33b866ce crypto_ecdh_decode_key +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0x7475be8e crypto_ecdh_key_len +EXPORT_SYMBOL_GPL crypto/ecdh_generic 0xb230d2ec crypto_ecdh_encode_key +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x4eb4c55e __serpent_encrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0x7959f7f6 serpent_setkey +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xbcc074f3 __serpent_decrypt +EXPORT_SYMBOL_GPL crypto/serpent_generic 0xd4c9681a __serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0x949ddb6b twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2c83993d spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x30a7b1f5 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x363cb220 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x40314288 synth_remove +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 0x49d5fdef spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x67074ccf spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7475aac5 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8aecfdb4 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa13ff4c3 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +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 0xc1cac50e spk_do_catch_up_unicode +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 0xd199ec9f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd6215582 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd8fd86cf synth_release_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xde2872dc spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xebaa8144 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfa064920 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0066af43 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x028fb5b3 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x08071461 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x189a4129 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1d840f88 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1dd11464 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1e9b1572 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x32528682 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b4ecbdc ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4edbc02f ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5d255d78 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6213e964 ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76a084aa ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a213cf3 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9244c397 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92695993 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x940be719 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4b62436 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xae7c9386 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb79056e8 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdaf6e77 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc69a8dec ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xca1e565e ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe2c9e7b1 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0e0b114c ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x35612dc0 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3b7feb84 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4275fbb7 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x771f0e73 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7add4cd9 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8d52a3af ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x945d6492 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9b0ffb6a ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9cd7a5ce ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa065c7e6 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbddfbba5 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc1db2f39 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdd22f976 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdf3872ad ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf0d62503 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xaa04bde5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xea9ef480 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/auxdisplay/line-display 0x1d255310 linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x9f192f79 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x18c32704 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x2e378f12 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xd87c4034 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x83b47ca4 __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xccf57b94 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x254347b0 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xdf268bd1 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x017020a9 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xd208af25 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x83138068 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb90b0878 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1853f2ec __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5bc2e9e4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x743a8e71 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8f48e0d0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x25576fcc __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x6381d8c3 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02667bbd bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x171d89dd bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19390945 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x23a38eb2 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x33585dce bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5365b2d8 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x582b173a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x595bd0a2 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6200426c bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7229645c bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a131384 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b8480f2 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x894d3cfa bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x939b5d0c bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b4e5cee bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa125c593 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa8ea1ca5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8c78e46 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc44b466b bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc494e7b8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc4d1ba32 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd318e0c9 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe77b8938 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2b1bd61 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x093f5e21 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27f2954c btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3e35d076 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x80da0944 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb2033d43 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb4cd43b9 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb6d7d327 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbe32bb1e btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x07897ede btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x23e68410 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37704c1e btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x577ca122 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5f43ba28 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7d7287a4 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9aa3f532 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa02fd016 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa08eafb2 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa92bc3b4 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbf1c5556 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbfe39ca5 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd0ced654 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd9c3bb6b btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb9c3b5c btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfde25848 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfe0fa6cd btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0b2590c3 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d56fe14 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18da6ab3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3121d58e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x42b56b2e btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f8684ef btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x74d15e49 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b8d8404 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f2d823f btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9f861135 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec7b0a69 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x48ad0a04 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x639159c2 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xa3842047 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0338d1f9 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x119b838c qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3636a13d qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3c349240 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xe8dca2cb qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x20a8fe0c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x33d98ad8 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6cbda7e5 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcb9f4113 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xe24ad8bd btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf7e83a7d btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x24fc00e9 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x9c8f67e3 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xce434aa9 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe94b3f3c h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5595d5f8 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x7428ec92 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x914c5025 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb5318a89 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd39851ba __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdd179092 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xdf4fe602 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xfb257198 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0ee09f83 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1548c66e mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x24b15bcc mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x278c2977 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x39cabcc2 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3f6b3eea mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x41151a99 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x438ed582 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x45455227 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x48d0df7e mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5787126a mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x60a35c50 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x74becdb7 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7939fb69 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x82d1fb56 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8926b291 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa12453ed mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb4fb5d8a mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb8c0d754 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc403a67b mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc897b3da mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcb247fb1 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xce78dd11 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcf4211c8 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd3ccacff mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdb1f2f9a mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdea575b0 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdf53e326 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe763d89f mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe90bb863 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfffdfc89 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x424efa9d moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4d572d90 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x98b2455f __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xab7e800e moxtet_device_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x05715712 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x08fc5d53 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1c5b5c31 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1e05033c comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1fe4d29c comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x202ab5f4 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2224a688 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x296dbb7c comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2b229186 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2bd042a0 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34b55c95 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x36aa96fb comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3964d619 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3b5957b3 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3e0bef8a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x404dcf22 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x415bfe52 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x418e2b38 comedi_alloc_spriv +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 0x4fef5350 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54b78e40 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x569247b8 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6045932e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x70cd2350 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x78067bde comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x84177935 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x861b636e comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8e25a60a comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95428453 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9dc7b61b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa9974143 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1043fb8 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb5ee4310 comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdc7249b6 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe29121d0 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe61c21d4 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfa4ad489 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5e73ae8c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x70f23b07 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x82fdb9c7 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x86e9d6eb comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9e7e79de comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc8549d09 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xdff14481 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe652536e comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x5bb87439 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6ed5ea57 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x7639a6dd comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x939e691a comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xc071a4fc comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xecab2273 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xab07e4c6 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x65e9a7a1 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xe359ca68 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x6571af5f amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2af28b15 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4f63408b comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4f687131 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x567ca044 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x920da39a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x92a19ea0 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9877d2bb comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9e5e278d comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xad965e37 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xda40f2fb comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xda43d22a comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xed829838 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf35da685 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x213f7d84 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x24e416db subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x377fdd6c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x1cb1dc73 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x7bf8bad5 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x814c0da3 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 0x4e6d2594 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1b541fff mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x379ae08c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3eb1c317 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3faac5bb mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x456ffb24 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x57f1b90b mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60a8a3e3 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7fdabcf8 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x876411fd mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8f5b605e mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9033652e mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb148f0a8 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbc0065f6 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbc8d4b11 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xbd24e796 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe4038c2e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x255b57a3 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x7745412a labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x1a09943e labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2ac5a43b labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5ae90fbc labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x7cff9fde labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xab1d87fe labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +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 0x027b1d49 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x05517534 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0afd73c4 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3f5807df ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x46b34a1c ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4797cb65 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6133c91f ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8440b0ae ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86251caa ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x954ba556 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9b108f5a ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa7bf1f24 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xab159527 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc3ad4079 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd1ecfec0 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe5ac33ef ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0c81f3cf ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x66397754 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x73b98a9c ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7a207d95 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe2db1dbd ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe369c2cd ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x005096e0 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x00bd58c4 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1f5b0aee comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xa0afda6c comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xd9166fec comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xe6d2b820 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xeba88404 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0bddc340 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x441c7ab0 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x62400966 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x91d99480 counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb33615a7 counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0xbefa605a counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0xe095cb50 devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf3894722 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x0e035ceb nx842_crypto_compress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x3fbccefb nx842_crypto_decompress +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0x9d8a6641 nx842_crypto_init +EXPORT_SYMBOL_GPL drivers/crypto/nx/nx-compress 0xe4bc6298 nx842_crypto_exit +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x0dfe7cc9 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x3e3ed2dc dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x563966b0 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x03cf6f55 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x65d88f50 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8ca464b6 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8ec1bf25 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbb436fdb dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd228dac1 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdd33023a idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x022deee3 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0c78da87 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x17a72fa6 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x365492d3 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x4abfc866 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5f5a90d4 fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x60c9b9c1 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7d299bc3 fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x869c700b fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x97ca4097 fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa2a24bc3 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa3d58568 fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb996e447 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xde2e7a24 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2948957 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf2d9fac8 fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xfd6cd30f fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x27194797 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x2c6a0515 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x00db1943 vchan_tx_desc_free +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x06ae9558 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x3b49511c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb907a398 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xba88a1b5 vchan_init +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x2bf29437 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x13d52eee cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x1ed14814 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x20ae35bf cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x2b798820 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x3424dd0f cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x3456ae12 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x385db2c4 cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x494f68e6 cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x608a4fc8 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6fa6e5a6 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7041f2fb cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x76eb3131 cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa0ba10a2 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa606869e cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xba5ad8a7 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbaca0f9b cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbb3d3ed3 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc1815275 cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd356075b cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd8d76ecc cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xdc176300 cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xe3d12064 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xed02f682 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfa68bd6e cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xf94d8e22 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0695b5d3 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x142aec26 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x174dded0 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b226eef dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x1b4b2106 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x274a79ee dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2872527c dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2c390db6 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x352abb16 dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a8b0d2d dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7e4357df dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8839c51b dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8bea297d dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8fa9d6c6 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x92d94aab dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x94f58f64 dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x993a37c1 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc1097e33 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc3d077e3 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc61d2181 dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xde858a00 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe765b472 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf94cf9a1 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0c954781 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x673aaf73 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x75bc3ee1 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8269614c fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xac3dba52 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc82b520a fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xcaaecbd5 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xdf4171e7 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf5a6f975 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1e733f51 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1f6da5cd devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x224f357b fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x55cfc7f6 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6dfb3967 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x97d1d927 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa35f8188 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb211d439 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb9ee7498 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc5a82ebb fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc73af414 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd2468334 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdc58caed fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x03f71a46 fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x919c6901 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x954f7cb3 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x9a114b66 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xad2380ed fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2a6359b9 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x41be7cd9 fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x58226331 fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x7ab33f36 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa3c671a4 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xb5c080a6 fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xbb1b07f0 fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc5d93094 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-core 0xe40f6123 fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe56fad50 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x0762511e fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd4a90eed sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xfaa157f7 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x976c451c gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xb78e091b gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd543fb6e gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xd7f1d1c2 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xe1a34f2b gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x3cae2a0c gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x49cd85c6 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x80fc8feb gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xc69a0a61 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xef969291 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa79790a2 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe962e9ad __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x1297740b analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x26574c06 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 0x512114f0 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x512ca560 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x53a43515 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xaf26901e analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf42afbe1 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf668239d analogix_dp_start_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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8fae7515 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc47d80da dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xfa1433b5 dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x365332a2 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x513a19a1 of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7108482f __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7fce0758 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x879dddfd dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xfa485faa devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0f5d5477 drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x161819da drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ac333da drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4fd86b91 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x58523554 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x715a511b drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7c3756be drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x91a09a4a drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9486121c drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c94d4e0 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa4fbc747 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb4732807 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb985c998 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbf476e2f drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd06880f4 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe10a56b7 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe2786243 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6994083 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff8cf0a7 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xffce2f87 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x3ecc4b2a drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4690f14f drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x49530122 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x6d0a3939 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7f6db45f drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x86e0c2a2 drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xab2ad5ae drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xab4096b0 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xb859747a drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xdecbd500 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe370bc54 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xfb107aa5 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0b859aca drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6ac2124f drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x71dbf1fe drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x98ed685d drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xac93d47f drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb6035c4a drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc63c923b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd14bb500 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xee86e150 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf866a30c drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x18e0d83d drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5101cf9c drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5ab5de40 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x612544c5 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x75b8b62b drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8f45db4d drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x9b28124b drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xa602daef drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x97a68f14 s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe4e4cedb s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x331cae49 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3b680df0 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x7b0c5fe5 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04efb343 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x062006e8 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0a722f69 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0b229210 gb_hd_add +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 0x1ca1e153 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2789c907 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x28ad7350 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d0b08c6 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f432391 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3227a017 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3550f94e gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x37b5ea23 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b0c1555 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b655058 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4ebbf13d gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x544a6b4a gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x547878e4 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x54c2e2f8 gb_connection_create_flags +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 0x6143ce71 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6578a811 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b49bf84 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6cf3488c gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b35e39f gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8246dd4c gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85290f7d gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8bcedd57 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x95a6612e gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98a135f5 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e4608e7 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9fe7c69a gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa26e35a9 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa9efdf1c gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb1b31f3e __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc99e9b41 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcbe21261 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce0ee4cf __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd475f35e gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xda63cd61 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xebb06fe9 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xebba3dc5 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef4dc173 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf1da6f03 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfb8f0b1a gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x06dcbf92 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0aa02876 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0bead425 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ee5c44b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14653b20 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c0fa87d hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e6f6873 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x247b4b0e hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2499d1e8 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d4bddde hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3538452d hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36ef172a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c2c3cd2 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f51c489 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50e77dd3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55956568 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f98c861 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x633c4531 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66f5e706 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e123203 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f7dbfbe hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8930c682 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cc4b15e hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97629208 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98214623 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e958e6b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa0aefe50 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa846a6bb hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa5fb5fa hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae351cf3 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb76ea8d hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbede504e hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1da6f0f hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5d4e79b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb74b3e2 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbd37f79 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce751634 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcf6ca346 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd1451944 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdaf6711b hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdffd6078 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3ae687f hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4730f39 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe603f9ea __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4835d2a hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf560afae hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf80f8d09 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb68d434 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc5af874 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xad5c72b2 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0f759526 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x38259763 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x39b58d62 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5329a9e5 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xad3b6078 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xba3a0c7f roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2542a7c9 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x749957ec sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x81d5e15c sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbb6d41ee sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd389dbad sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe1f89f96 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe539549c sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf1581352 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf8e6f66c sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x188429c5 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x35cfb972 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x351fd4dc i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x4e9c2259 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7fc47459 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x991960c6 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xfbcee8b8 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x899def67 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x011adb2b hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb7129ed9 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0f4c9852 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13199721 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x149cd779 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1c277597 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2af89adb hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46afb2fb hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48cc1f7d hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x55286504 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5e48dc21 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6b5abecc hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6c2b2fa8 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8bfff47f hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9951c00f hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa73d3558 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb4e34427 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe2b1f889 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3516c37 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb8ca987 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x33ce5fb0 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd84c3fa7 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x9d74fd9a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2c5df098 nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x3a395661 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x510b285d nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x8c1682e2 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc373ebcb nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xd3ce11b9 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1484bf7c intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x2f42b419 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x482e90ab intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x58dad744 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6e36b4a0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9d29e394 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb33933bd intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xca4dd330 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdd84eedc intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0224895f intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0b108847 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xcadfae1f intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3195d21f stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x382e2d42 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x50ef61b5 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5312d165 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x81ccf5d7 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa692b14d stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb8ad4dad stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcaae7760 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe4ebb427 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0xf08e9135 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x394eb8b8 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa7c77509 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcc093699 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xdda9d6e4 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0e54578b i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x004669fb i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07d5d6b4 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1e809a05 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33fbbdcd i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3aed2429 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x429acb7a i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x547815cb i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5504f8a8 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5564c05f i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x626040f3 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7467b5b4 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f18bede i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8974f2d0 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8ff14da0 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x906927f5 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa792c352 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xab04a36a i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xae1dc41a i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb21d9646 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb512b767 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd838faac i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe49ae606 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe6fa6f78 i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7f0a91f dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf764836d i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x1d3b5396 adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x8487fb5b 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 0x7a711aef iio_channel_start_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x88f279e8 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x92836baf 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 0xbb6028ab iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0022077f iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x03acd865 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0df6f717 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4b891986 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4c458653 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4ee3cfe6 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x77bef4a4 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7bd4927e iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x939dec59 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd16869a6 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdc312846 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xfa48cbcd iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x687f6fa5 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 0x4d82923a devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x55eb6669 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 0xf64c8049 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0xfff8348a devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xe3f16f79 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x054ecbc0 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x73d18397 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd48aba7c bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x921028ae fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x9a0edd15 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa8c45311 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xf71e7d78 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x1ff8fd75 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0237dd12 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x68db45f4 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xcc5c57fd inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x4959d174 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xbeb07be9 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x014be52c iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0ac26e9b iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0b8cd9df iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e3d5c2f iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x123d6d7c devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b6eba17 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1ee13de7 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x228f851b devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28460927 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x285c4f26 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a703fd9 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c9e5fb0 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bcc914a devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x434ee46b iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4561a312 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x48ceb4c6 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4a009e00 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b4ffd18 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b776563 iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4bc30edb iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56efac13 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cc498c9 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70955bbf iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ebef72a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x87ad69f9 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8af05fcf iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8b16d962 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ca7e67c iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9262617e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95aacdbf iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f1fb57e iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0e4b92e iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc50bea6 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbcc85d55 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe2a767d iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc451fcd2 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5ddd64d iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xca9464ab devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd0f6630f devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd314e759 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd80c3de5 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda94e5f2 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc5970ca iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe477141c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe8fac6d2 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9c47bd1 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xedb32f6b iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2401eef iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6ab33ea iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6c94e0c __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7515de1 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfda6a44a iio_channel_get +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x07e4f978 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2bc83a6e rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3a41a288 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x49549b18 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x49702f5a rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x524f2894 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x87cf39b5 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x90538468 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x957f35f5 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb09badb4 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe7e31782 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xedc1ba56 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x05ff6d42 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcb068c69 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xba062c90 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2931aaea rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b69c25f rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x422ea5a3 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x46cbc674 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4dc4eb8b rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x71fca17d rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x785ac4cf rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ed2c704 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x99807c94 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa1961dba __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb9927552 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc4b2650f rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xcd7eab46 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4f0931e8 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc56bd660 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd658b640 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x35f73020 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xabb55f7d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x26d79778 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbf513d74 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x05aecbca tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x0c68a7d7 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x278e13af tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8e6a0ee2 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x29e56aed wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x345b77b7 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4fd3a990 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x59d400ef wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5e904284 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8577a3cd wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9223eedf wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad2fbdc7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb883bf45 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc53effab wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe54f6a73 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xea66bda6 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x42acbf2f free_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x5a7ce630 alloc_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x651f2a1d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x695e804c __free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x826ad319 alloc_iova_fast +EXPORT_SYMBOL_GPL drivers/iommu/iova 0x91c07a28 reserve_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xbb0cc449 free_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xbd08f9e0 find_iova +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xcefe03d4 init_iova_domain +EXPORT_SYMBOL_GPL drivers/iommu/iova 0xef4d8133 put_iova_domain +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1fef42b8 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x35858e8f ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x67225add ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x76ee9826 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x99bf90dd ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb316173b ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc55f4f1d ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcf0c5faf ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf6c12e48 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ec4f39b led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x63574e56 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x819d2545 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcbf7ae37 devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdb75b5e0 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe03f88a1 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf3701d6c led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf3a1c9f7 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x0de49ee0 devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x252b2629 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x4800e3c7 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xab965ffc led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xde488487 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x063cb469 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b1777d0 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x811143df lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x814936cc lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa53f504d lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xac1a0705 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbd3932a3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc2978141 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcddded92 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xda125548 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/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x14ad2cd7 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x14d58388 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x61c36ea6 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7aa08bc8 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7e981190 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8f6cbdb1 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x943039c7 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xaf834a7b wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +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 0x0b896162 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0f29fccb __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x106d39fb __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x17a83e40 __traceiter_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x181a1930 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x191717af __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1934a9a9 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1b083369 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c599ebe __traceiter_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c71a406 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1c83d5b7 __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x22ae6324 __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x247094cb __traceiter_bcache_request_end +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 0x3472bb78 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35e4f42f __traceiter_bcache_btree_node_split +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 0x478ea3e5 __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x488aca90 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5143cfd6 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x51d0e534 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x53b5e5e3 __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x58d629e8 __traceiter_bcache_btree_cache_cannibalize +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 0x684963da __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6be33fab __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6f3a1496 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x989d5d60 __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 0xa2730991 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa64134e4 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa8243525 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa842a5c8 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa88998d6 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xae4d62ea __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba843c3f __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb9060b5 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbbc80c6c __traceiter_bcache_btree_write +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 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd4108bc __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd75bce3 __traceiter_bcache_read_retry +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 0xfa980ef9 __traceiter_bcache_btree_node_alloc +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 0xfeb91e63 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1de28de9 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x26f61068 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2d2659d5 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e587166 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e59b749 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eaf2afa dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x426d937c dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4c2db58b dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x58f0d459 dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f0a1e11 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f629594 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 0x7672a689 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8fa22485 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xab816db7 dm_cell_visit_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 0xbaa5e4d4 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 0xd7496422 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd7a236fd dm_cell_quiesce_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 0x31b2c5b6 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 0x547db67c 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 0xa070c429 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 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 0x1338fdfe dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x505eaa30 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 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 0x5caef02f 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 0x73f36a75 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7ab0ba0f dm_rh_delay +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 0x8d724dde 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 0xcc880729 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfcc937c9 dm_rh_mark_nosync +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 0xfdf63e93 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0225379c cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0bd58682 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x14c3e966 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x15fd9f33 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x27a872e8 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2a732f40 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2b639b34 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x38daf479 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x46cafa99 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x509ba7fa cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x55b1687f cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x668b5abe cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x73db5baf cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8ac01c6b cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8bead917 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x916be9fd cec_notifier_cec_adap_register +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 0xc142323d cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xedf459e7 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf42b5f41 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf6938d31 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1b19bb42 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2719095e saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4ff31340 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6bca53a1 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6f3613b6 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x73267d71 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x749ef7ae saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb7092d90 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xec388bab saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xef70f8f4 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a2298b2 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x20197554 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x41b0e377 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x44fb01c8 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x598e4dbd saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7ffccefd saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe3e9bd41 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x05a2573d smscore_set_board_id +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 0x4230bc54 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x46edbaf1 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4ac747f4 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6fc46c30 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 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 0x87c2ffac smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8c32bcb1 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99b995cb sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9ba22140 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9e010871 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xafff6f04 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb43a51ff sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbf49f7cb smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc67d0f95 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3fef00b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xedc3c7f5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa3b0ec0 smscore_putbuffer +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 0x07026a7b __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x07729fd4 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x217a77ba __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 0x2b3c02d0 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x374e4a6c vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x56c83c20 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x64bc45c8 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6badd14e vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7998b2a0 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x82801381 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83ab23a3 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8ddb0f56 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8f1237be vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa6fadfbe vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xabd4e3a6 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb0821d14 __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 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc8b25fc7 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd48b2b6a vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd579675e vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5c55756 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe158298b vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe9fe4a0e vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xeabf6f0a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xef9da2fe __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf05cca5a vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf0d0ace6 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf5327b37 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf6c53100 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfa24b049 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfff4bb73 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc4e42bb0 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xc7db086a vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x978fc7b2 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0xc0268255 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x07121a1c vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0854bf2b vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1ce10e26 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3bc83d93 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x446e2288 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4795fe07 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6562fc8f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x692fcbf4 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6dc64ac4 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x72500ffc vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82cdfe57 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95d81190 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa316eff5 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa6687b4f vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa7b00a12 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab5aa31e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xad42d7d4 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae01cbde vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4437955 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc61f8d06 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc7814ffb vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc8bc6b38 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb38c3db vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcca2d2be vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd3b4f731 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdcedd50e vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe0e65f9f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe251eb20 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe43349e2 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe639f35f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf179586e vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfb5260fd vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe43e182 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xff12fd2f vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x5c25275a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x0eb9fcb9 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa2302412 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xeb124496 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x5c6bd998 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x54856212 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x54c476cb gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x73bd75c2 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x83daee4d stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x567f3f89 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xe7a7fb3e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x399a1ed2 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x15f08bdf ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x022f73ec max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x0d632141 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2bd4bf40 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x30c5807b max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x35be4367 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x40c35b82 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4d16fece max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6d44ca05 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a7092dd max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8c3e94cb max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x990658a1 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xab13e808 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xbc96972b max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02ed1541 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x08575a9b media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c5eaf92 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0fb54158 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1892840d media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x20b711ca media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x24ac989c media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3056b33c media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x5fff2c9f media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x602967f2 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64af2811 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x653af73f media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6672ed63 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x67ce7fc1 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x68d79efc media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6998953d media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6e4461c4 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7bb13c0d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7bdf1e5a media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d026fe4 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x809a8b70 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x87fb4e0b media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8980a9e6 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8db8d9e2 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9805501f media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9dc6c1ae media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9ff97f41 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa83d7ff6 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xac9dcb31 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb1c26aa0 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xba57f433 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe218142 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc0d53cd6 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc6e4d806 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd5ecc882 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6991e34 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6c333b3 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd7797f34 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde23069c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xde984a66 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdf7ab125 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6caa42a __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xebc78a00 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xee4addaf __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf696b0ea media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8a62767 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf9152286 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xa4abe707 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x04e30540 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0afcdb38 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0bec3cd6 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16698219 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x23c5255f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2891970e mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39e9b008 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4ab710b5 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x511761d7 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64280aab mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a193d97 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7ff5cc8c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x93edd6d3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9b01f187 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0907d0b mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4dcb4d3 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbf9f449d mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde588e29 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe8b1cce9 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x012cf8a6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b451a81 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ca89c42 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2e344993 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x31c6e205 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35b95f61 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35d3ae9a saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3d781063 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52ba4aaa saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x55d17c2e saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5af1655a saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63d4c64a saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x65cebd96 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80e4db51 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb34b3def saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb508dc92 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd4c7c4a saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf33938a2 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf876e39f saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0f822e5e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x49403d8f ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6a502d94 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 0xa6a28788 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcb3990f2 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xe00e1aa5 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xef3f48f5 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x170fef16 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x7e68293d mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9f90b119 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xde41b884 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xfa140548 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x008c062b xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0c7d3324 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x18b29710 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x89f90f00 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa8be34c6 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 0xbb326cc8 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd5685269 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x44677a00 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9356c7a0 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb9e18205 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x435c70e2 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x558d181d si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5b7f427b si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x8876ad0b si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe4356484 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x013f0eb6 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x01fcd79d rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1687e3ac rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27bc3662 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x27bd4a12 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3283fe5e devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4082a5d0 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cbe50e2 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71789797 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x775cbfaf rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87070261 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8d720c16 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad171efa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xadeb7ac2 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf1c6040 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb07c07de rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb5e22b45 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbef1458e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca739fa4 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7875151 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7fd1582 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xefc5bb4e mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7ad38216 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x1b9e4d02 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xdc775ed8 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xa552ef85 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x56ef619c tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7cd03fc3 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xe6f79023 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xad17c8d3 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x8bf6ce1c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc19f7412 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x11409207 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf788126c tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xaff26586 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1364ea58 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x167f340b cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1910c61f cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1a9f5ba4 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f4c94d5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e7b6033 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5160b647 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6267260f cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7aa573fa cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7ffb8ab1 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x81c1e3fd cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8726fdf9 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa33f5602 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf8bb994 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcfc41d4a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd74f6f1f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe22d6813 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe306739e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe314ee07 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc43c8bf cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x2665faea mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xcfe23bf0 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0b3ddd99 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x152f9f6e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ce67cd2 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x37728758 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x45e338fb em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5acbe0da em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70dd54fa em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7784c47b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x85cc2593 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a6559a1 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x947e218f em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x96729604 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xac18c78b em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb92724aa em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbff0a224 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc17aa175 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc78476f5 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xda1a8c46 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1d61923b tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x87fd67ef tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbda1c07e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf34eed43 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x0a68ac2a __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x27a3121e __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x60975236 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xd787fcb8 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe14b8839 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x402e0b64 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x6e0d4564 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa8bfb471 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x08b24e63 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x21924477 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2e2c7610 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x49bda7c2 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x630946e5 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6b3b8127 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x93c04b90 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc4220ea5 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xd722ca41 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xdfe504c1 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0355f0a0 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x043fde04 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d2843f2 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x166d1daf v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b65ce59 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2002a120 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29c6dd9d v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x338a8122 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e2bba47 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40fdb7c0 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x442f9759 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48eba51c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x53282de7 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e36628b v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67f7f1b5 v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6aeff430 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x728531a1 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73354f4e v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73e37f2f v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74860cb5 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x777521ae v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x795cd004 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x843e6d1a v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bd06da1 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ec73f4e v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa52a9c4b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaab391b1 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaefaae1d v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc038ceb v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc655dab v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0484eaf v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4a3e56b v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca267e72 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd18399b v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce2f7884 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcfe86399 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd01fd37a v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd1b8e79 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe72414e6 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeaae057b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeccafe83 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefe8ec57 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 0xf6645de9 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe29bd81 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x01ca4383 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x036f82e8 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03c1d744 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0425be4c videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x05438a97 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0994c8d9 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a73eb29 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d96360b videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bdd33d9 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x446cc787 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x463049dd videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ac97293 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b3ec7d4 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63f94254 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b63b893 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7022ec0d videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87a24381 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9559cad6 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b436cad videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa88dbdef videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9e5b12f videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc2575bf9 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd66a520d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8e770ab videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x47eefe8d videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x51ab06ca 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 0x661167e3 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6ef9999f videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7329b879 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8776472a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe3806835 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x026b38ee v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x078874a7 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c33e8b4 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11ed1dc6 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x138ee7e0 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1423c5f1 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x178130c0 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1901bd47 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1eb623c4 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f09fbed v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20b2a14c v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x28b573b6 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29d97468 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 0x2e585232 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30e74586 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3a8cd3b5 v4l2_event_unsubscribe_all +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 0x4746cd90 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x476c2213 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x491317ce v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x49b4b77f v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x580f0a13 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a55208f __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a627ca7 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5acff25f v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5cf34a65 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x60d1a980 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6245f980 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63b5b7df v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6bfa4243 v4l2_event_dequeue +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 0x6f0be808 __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6fc60de9 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7da7b25e v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x80feba79 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x815a69c4 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8b263d7e v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95b9ad6d v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x990dfe1b __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99951b19 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a1c4685 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fd16f48 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa0cbbd0f v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7365105 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaafdf713 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xacb32380 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaff3a21f v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0615ca3 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb8bf5b79 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb993c0cb v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf6edf78 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc33adb92 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb73181d v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xceede609 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde70da35 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe09d261a v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe79cff73 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe826e624 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeabfc680 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebcc86c8 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a75066 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3b24ac0 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfd913ae4 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfef1d19d v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x25469736 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x25814738 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe3e45c62 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0c24f7d6 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x143649b6 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x1707e549 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x38236ca4 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x44da9ba7 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a16f9c8 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5ed98f70 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7089e2a1 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x7b1bade8 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8648f9d5 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8dac1f06 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x97ba2f21 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa176970e arizona_free_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 0xb0cafa14 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc5703899 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf73b9ac8 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfa7033a1 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xff309478 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x15aa338c atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xcb942616 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1961e634 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2d3a6c6b da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3a334c42 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6449f213 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7f820d23 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc86b430c da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdc17ff75 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 0x07565a51 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x318a5823 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x32faabc0 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4cafd292 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x51bdbf54 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb7c2293b kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xbe3b2024 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc30a274e kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x21584a18 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3dd81d2d lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd70fd303 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1613bd26 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4189388e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x57528c1b lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5b79a162 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa87e48b6 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeee4d3ed lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfc9cc8b5 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2ede14e7 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xbf14f6cb lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdc739442 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a1758b0 cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0a1a84f0 cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12c22f00 cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x12cff340 cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x201e7acc cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x24260773 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x254334fd cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x254ee8bd cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3865c3c8 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x38681f88 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x492245bc cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x492f99fc cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x51f7320c cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x51faee4c cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x54038777 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x667629f1 cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x667bf5b1 cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6a501cbe madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b50dec4 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7b5d0284 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa6a857f6 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb1937408 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb19ea848 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb933b4b1 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbca3a291 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9ceb59f cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2a66904 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf2abb544 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3515d753 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x365236bf mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x64e788f7 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6eab7ec5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x76e87d9f mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb75c35b7 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2baf455c pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2fc73c85 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4caa83c4 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c77866d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7ea63fb3 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x984bb258 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa684289b pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7057e2b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc316625b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xee6717ea pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xef78c722 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x3dbb9c4c pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xc0a8e1b8 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x00cfbbae pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8140fe43 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa1295581 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb93d069f pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xbe36720f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x3c5203c4 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 0x1536a133 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x193ae67f si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e486f40 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23b1e93c si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23b4d372 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x28096c70 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e5424be si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44340654 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a4cd05f si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e749c19 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ffd4c70 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x680808b3 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x681a82d4 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ab5d979 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7abdff91 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8aa497be si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9157107a si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x920fae8d si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x983c889d si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99980d4f si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x99aed559 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa0d1076f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa245712c si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa56510f8 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb49d5972 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba0e29c5 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbeca7ce4 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd31c8eab si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd66391ab si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd9c38ccb si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdce51815 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde093eb2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7abe430 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf57f032a si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1e562898 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x59311f0b sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7031d2d8 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8dfc6146 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x93b26163 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbd168d9f stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbfe1ab3a stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x05972f1c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x68f892ec am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x9ae8f9dd am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xac90ff8c am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x28cce9f0 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x46bc6434 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd563d2af tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xda308d93 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x04c43e8c alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x087c0742 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3071a88b alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3a2ce6f3 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4c2c1ccb alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x7e8b3eef alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xecaf0868 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0ca1a9cb rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x20c4f6b0 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2307d63f rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x27cd5b1f rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x43f40b84 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4ebe27cf rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5b3eae69 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65fcfcd9 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x680dd284 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x690069f7 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6cc62512 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7382ca00 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x85403cbb rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x8b37bff7 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa8791d02 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb587cf3f rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbc558511 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc196e67b rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd0124188 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd0ebbc0f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd5027e33 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4a86991 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4b5ac53 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xebb7ac6a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1a6e1abe rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3df5b4d0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x401d947a rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x574f2f40 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x648bf0f9 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6d892eb1 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x6e0b5e3f rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7a7f1d54 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x7d694720 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x91b93746 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9e3d933f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa42d92cd rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xd1d0880c rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4cb1365d cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8083c395 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe850cff6 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf9eb975c cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x099488ef cxl_get_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x163c7993 cxl_context_events_pending +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x198fb0e4 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x20790258 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2ca14b94 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2cf581c9 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2ee73ed3 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x344589d1 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x37617355 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3f131615 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x4e879fe9 cxllib_get_PE_attributes +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x52e93e38 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5b981301 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5dbf2ac8 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x603e4639 cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6846e285 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6e4923ab cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7155a826 cxllib_switch_phb_mode +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7ca50024 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x80e18c64 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8551d6a0 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x861b2eb3 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8a115894 cxl_set_priv +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8f881dd2 cxl_set_driver_ops +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa40d1e04 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa5d26fae cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc87b098b cxllib_slot_is_supported +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xc8b1ef48 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcf0b8471 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd8c13198 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe0251e43 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xe04c5af7 cxllib_set_device_dma +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xea7b29b2 cxllib_handle_fault +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xef57470f cxllib_get_xsl_config +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf52c71b4 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xf534d824 cxl_set_master +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 0x070d1851 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x536588f5 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x696af723 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90b8f6f8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb82529a4 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd56eb0d9 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xebe66d55 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf24b3955 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3a11133f lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x50c093c4 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6f6cc5a2 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x732e43fc lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb8dc18b3 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc99aded6 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xca57bd2e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd3475eaf lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x00329712 ocxl_afu_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x08a7fe28 ocxl_global_mmio_clear64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x16869078 ocxl_function_fetch_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x17e4359b ocxl_context_detach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1abbb4ae ocxl_function_close +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x1b9742ef ocxl_config_set_afu_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x224477bf ocxl_global_mmio_write64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x28929560 ocxl_afu_put +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2b00d980 ocxl_afu_get_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d2e1142 ocxl_config_read_afu +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x2d876dd2 ocxl_link_remove_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x32804b59 ocxl_context_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x3965260f ocxl_function_afu_list +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x40049cea ocxl_link_add_pe +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x40af2ab7 ocxl_config_get_actag_info +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x47bb439f ocxl_context_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x487d4747 ocxl_global_mmio_clear32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x522718c3 ocxl_irq_set_handler +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5d8814ea ocxl_link_free_irq +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x5da2f572 ocxl_afu_irq_get_addr +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x629eced0 ocxl_global_mmio_write32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6c06a880 ocxl_afu_get +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x6cd29c41 ocxl_afu_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x7a4032d9 ocxl_config_set_afu_actag +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0x956ee902 ocxl_global_mmio_read64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa393aff2 ocxl_config_read_function +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa3c135cd ocxl_afu_irq_free +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa41a9094 ocxl_global_mmio_set64 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xa5ab0229 ocxl_config_set_TL +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc2b7ffa9 ocxl_config_terminate_pasid +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xc5b6d598 ocxl_global_mmio_read32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xcecb053f ocxl_function_open +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xd57e0fa7 ocxl_link_irq_alloc +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xde9f1375 ocxl_link_release +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe4c029fb ocxl_global_mmio_set32 +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xe76815d9 ocxl_afu_set_private +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xeb20e01c ocxl_context_attach +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xeda4b110 ocxl_config_set_afu_state +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf069e10c ocxl_function_config +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf8693d73 ocxl_link_setup +EXPORT_SYMBOL_GPL drivers/misc/ocxl/ocxl 0xf8ba7e54 ocxl_config_set_actag +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x639130d7 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x91401317 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc3503d7f st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x0f004f11 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xdfb55386 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe668d410 uacce_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x07a78bab sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0973441c sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x10505442 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1512d3be sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b7b0057 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c3ed7cb sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30687929 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x35de2639 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4124ab88 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x460b528d sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4e713f19 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53978a16 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x53f94ff2 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57c31a80 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x585c02b2 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5b8f524e sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6214ac6d sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d9fdac6 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fd804b8 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6fed06c8 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7099b582 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x74d9b41c __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x804e29ed sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x85342435 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c2686ce sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9c71f763 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1257c89 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa4938c89 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5ae92fe sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xadb4c5a9 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb2297c27 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb236b6d2 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd4f19bd sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc9484c82 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0c64e57 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd1baeda sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe0633763 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe141187e sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb1a940d sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebdfad4d sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf23f8150 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfdbd2854 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x01739251 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0b050a67 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0ecb4675 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0f557491 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4e82ee6d sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x583035e8 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6bb8ec8d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x77304ffa sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe4bbf7c1 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/most/most_core 0x05acea3b most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0674b7d2 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11808adb most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2bf5b564 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4dd057ce most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x775e4a30 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x77f6cba1 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x87414404 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x8e63b32e most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x9bb6c7b1 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1c4482c most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbbb9959c most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbc617f84 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe892e0b0 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x517e0006 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x6e5725ee cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x93490078 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0f91fcca cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x71c3b71a cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x823a789c cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xe004d19d cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x58737e75 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x95ebc912 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xef330850 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x732fb6f3 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb76ca289 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c2cf296 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0c5f0f78 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0da368de mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c1666a5 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2704f4c2 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca503a4 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x313813ac __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33f75751 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x374cc21d register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a911d30 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3de8c7f4 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x496b53a7 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a1ee8d9 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4acc966e mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4afafb3c mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c0f4eb1 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4eb813bf mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x525da885 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x526155f2 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53238d3a mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53bedfa9 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5511eb00 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x565fa8f0 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5db4b6eb mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c631d35 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ed8d98d mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x748e64e1 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7497d979 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8af1d2c0 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f6191fc get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9270dd4c mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94264673 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96d8ac49 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c135096 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5b0b5cc mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa9ac68d4 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb16c124f put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb53b87b4 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7bfa63e mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf47e104 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc6039099 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc75b465f mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce58bf71 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4b4c671 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7a2deed mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda69d9d0 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddfe10dd mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdf22ce62 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe12c283b get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2769ed9 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6954a7a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xea57c40a mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xef79ec87 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfffe69b3 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5cb0669a del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x93e8b542 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb97a602a add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd47515e3 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf38760ed register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x01f377ac nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x09af0cf0 nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0c4953c4 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x121c3cf3 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x17b526b3 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x19787970 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x29ee22f0 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2a3ae876 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2b168be3 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2d0cbb86 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x316ada70 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x31ef99b0 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x35683bcd nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3f861c6b nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6f558eef mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7f7930a2 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x97946161 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9ce13685 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xbfdac058 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xccb5b62e nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1b6c33b nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd1d7c86f nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe81e2bfb nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe8b5711c nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xefe7638c mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfe9ce9a5 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x01c67e29 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xd276c943 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x9cc6c640 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x049eab39 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x06232c3a nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0863a675 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x17f2bd80 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x18baccaa nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x236de086 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x26ced7bb nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5ce9305a nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x746e6863 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7ad9c396 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x856d1fec nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa6099be2 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xac70635f nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbd0e88a9 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc5b2fc39 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xc7bf4720 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xca652bfa nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xccb200d3 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd02f719b nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd9785ec1 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe84792b0 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe99e2525 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xea43abd6 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xff878e2a nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0x3e289a60 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x6ef1299c spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x994e651b spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x19fc5f96 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2b0c22d7 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x359f44de ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x36040b54 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x424e6ace ubi_leb_read +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 0x6c8035f8 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x701d96cf ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7f09c78f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87ec04a7 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x98606f55 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9f8b8835 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xac485277 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd119213c ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd4590689 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0db26d5a mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x29222608 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3f8e3a7d mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x42c37856 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x47d51216 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x4b378497 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5440fa69 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x56ddc749 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5815f104 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x58289c51 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6939fdfb devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7381e54e devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xca04f3f9 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdb563a97 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x32c8d48b devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x58d7ed79 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0d3700d3 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2862aea0 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2c14912d c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x35b7f1f2 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x78c97861 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfef039ff c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x2f360770 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x55324b86 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe144ee0e alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xee8d034b unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0152092a free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0971dce2 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0a83573d can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0b6a4aa1 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1350530d of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x269f97fb alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3eb7dc10 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4cff331f can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5cc68511 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x604751d8 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 0x647d352b can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x73f3ea97 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7fb5ecfa open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x836d6aa2 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85982ce1 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x85c525df can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x984e006b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9acb6493 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ec9d437 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ed599bf can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2814a2f can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6b80674 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xbbbe60e2 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc26afbec can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc4682980 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc666c6db can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcc34a9d4 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xdceb6cd5 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf0959e70 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf6dc9eb2 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x14195476 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x32e4b1f1 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x6ee24ce6 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x8e7f4826 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd26a00cd m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xdafe6372 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf5e14749 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf666859a m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x86e7e7a5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbb6bd621 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbd380d3f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe83ff37f alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xc9a15601 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2faf42e2 ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x30828925 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x36278b19 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x38b2ef1e ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e781f6b ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4fa5ccbe ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5ff5ccd1 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x621f3798 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6e88345b ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x773edf6f ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x913087f9 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa7d233d2 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcb2b2326 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcc6e5a4b ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xcfdd1666 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd5e1d711 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd9a3ef32 ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdad0c981 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xefca128d ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf4e40906 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf5103970 ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf533d91e ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf8de86d2 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfceb12af ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfe9f5abc ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x6a49c3cc rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x12a425dc rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x20d92131 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x26d9d181 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5a1bad0b rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x69339369 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6c1b1dca rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa21873b4 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xba862b80 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbbc55622 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbbcf19f2 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xbd3d982b rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe55bddf1 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x43bd7745 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x57974f0f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcab8c2fd enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd0ef64c3 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x04362c5a fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x17981204 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x313c7a2f fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x42eb04f8 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6483e1c5 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6b3e8c26 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa135bd62 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc6721f81 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd230527e fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd6b3fccc fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xeb87af53 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1ca746a6 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xcd166d79 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x02afd038 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x356d9450 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x37b4cb58 ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x70631cd0 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xdc8506a1 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00650feb mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0489487d mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f8ac84 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08fb30a5 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c6e9a0d mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cac3b33 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eaa2cd3 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10144f30 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10b5599e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ad2cc5 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x140cbe24 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15a78723 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1679ec8e mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18644162 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x187f878c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18a1cf63 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a5a80a4 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae9d099 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d1e49b8 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x275c519e mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28285394 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2876f29e mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c5c7f48 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c664a4f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1488b3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32dd3d10 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3526fb08 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35b51b85 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365def7a mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37e7d817 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a2e6e05 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3acb0376 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d5c9a06 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42e8825c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44d0f84c mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x464529b7 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a2da4a2 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b8369ce mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8448d8 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51208957 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525af9b5 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535cd2b9 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53dc874d mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56efd845 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dc91301 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e117fd2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f6889da mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fa4bc6a mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fbe35ad mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x620859d3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6489851d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66cb7038 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a50af8a mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aa71a69 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ae5c27e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1b1b61 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e15f56b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7205d027 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75362819 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76242a54 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782abbbf mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78a00e46 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b849a0f mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x803712b8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x828b4123 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83d6ca76 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x891b5c9b mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a016ba4 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bb0820f mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cfa39f3 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f8b417 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95cf45df mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9679a4d1 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fed362 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a4e6ad3 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6b08bc mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa09105be mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa380c257 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e99032 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8819036 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9f52556 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3766d0c mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6cc8645 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbce85360 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe44c9bd mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf13ab3a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf5ceaa3 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc032964b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0a9b418 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc32e335b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57e2bae mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc83db409 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbf1ef85 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd569035 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7b6c6f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce122d42 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd138c66d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2e0f1a8 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ee957d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f4c1a7 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda065cd3 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdac21cf5 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbdbd075 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3a9b64 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc7e7b86 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddea4da5 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe959705f mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaad080c mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedc88939 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef4d9b7d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef51e5f6 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf30a145c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6cec6c2 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf73334da mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7850c12 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8829eea mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa37ed38 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfafd143a __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcaf5e98 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd1f3039 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdb382e2 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0531543c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05d4f556 mlx5_set_port_wol +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 0x19b695ed mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ae943ce mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2187c709 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2461c9b3 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c8dcc3 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25891fe3 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26e8b3c9 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b796c19 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3478e344 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3834f1ba mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a1559d5 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b7fe9b5 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40628261 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b754bfa mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cb0a391 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52d17683 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54ab9344 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55dcff74 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597f4b24 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f0aedd5 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63107fe1 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x65828d74 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6987a7f0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2ddcaa mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c6efc6f mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cca6b66 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7468ea5e mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x747257cf mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74c266c4 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a393e9 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dd4e914 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fbd9343 mlx5_query_port_prio_tc +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 0x886003f9 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aec0302 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x913b0dc8 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x926b6582 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ebabfc3 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ed869cd mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f27be95 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f3f6685 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa53a550f mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7c4bcea mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa9c1c8a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaddb3bb8 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2851474 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5af6b08 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5657b0 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1232ede mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1e0a63c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6f06fe2 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc83138f7 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf31e6b3 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1817cf0 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd694fcfe mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9bf823e mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbf6e9c4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbfc2099 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde533195 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1a64399 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1ae5969 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3274b9e mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea58f1b0 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb76ed55 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdd64a9d mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb4ac89 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x58a28519 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x8356b6a5 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x887ca459 ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa1cda6bc ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6a18a9db 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 0x058fef6d __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x27ad33e6 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28b4a3b6 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29e7143b __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x300ef0c2 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36f6d6b8 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d3052ce __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3e7ac557 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x483f678f ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4c7921ec ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x507a6393 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57877aa9 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x62a6b373 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6c3f2e51 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x728e4d5e ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x750e0fa2 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x783be773 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7fc0c7fe ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9061f0c2 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x955a3c76 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f030c9f ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1b75c46 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2df04bf ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4d44320 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb997a836 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8b7afe7 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd0be38c __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe905b54f ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf19b8cda ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9d4b537 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 0x08f641ba stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x386354c0 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x909c8e77 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 0x92f86a2e stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xaaafcaa1 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc2fedee2 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x57e9bae5 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x80b696e3 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xacdc57e5 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb5c4c42c stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xffa23ccb stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0a2263ea w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x0e9f2ac2 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x501f4ad0 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xec09f576 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2280ef3c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x108d437d ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x48c640f0 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x67688343 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdb3337ef ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe894a686 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x597a577b macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0443e8a5 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0c256829 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9bf9a74b macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf870d3fa macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x9d181c0d mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-mux 0x747796bc mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x10783706 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x690879f2 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0bffeeff xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x23532425 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3f7bec16 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x62f650d5 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x70f0a1d0 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xd4587ba6 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06b87076 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1c3ed04f bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24b49c8f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2cc060c8 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e0d2dbe bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c282a77 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x435d3bca bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44f10f7a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x499f2175 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x50f2798f bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51d27b5e bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5585d182 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d71802b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61d205a5 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d6d69db bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x922ab96f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9dcb6f4e bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa531c273 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa8be0ff1 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9624d7c __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa9fdea03 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1f202d0 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb3e44e64 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb74d1ae9 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8acccc8 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb9edb338 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc4372c68 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc80f77c5 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcc8b54e9 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce0838af bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1413fb0 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd9338a7b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddb6c4a0 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeed04ea2 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x44022996 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x451981ef phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x48c3c969 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 0x5b68a658 phylink_generic_validate +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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x71ef826a phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x72e21f13 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x758c6b49 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xaec92d6a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcaafefc4 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 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 0x19d24ffc tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x1aa00e49 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x5a28e4b4 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x71d1b7e8 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x7a3de848 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xa5df4ff3 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xb5d64df3 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xbb8c2b17 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xcd5cc1db tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x01d82fda usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x13cf2e65 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1d8de83c usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x387d5326 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4faf82da usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcf3addbd usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe4d2643c usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x027fc513 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0f67f5a7 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x140b83b8 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x34e4c9c0 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7cfd66d3 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x95f608f0 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb4f43f3a cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbe06acc2 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc2ff5284 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe8c9f44f cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfeccbd74 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xfa7a557e rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x59523d72 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5f49fdfd rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83a9e4ba generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x86315e94 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd05f7efb rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc5f3568 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0376c59f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15bbaf22 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16df205e usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x19522062 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b7e8c64 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1ce169c0 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f7c66b0 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22c1978d usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ac22cf7 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2feea809 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41c81888 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e3b1028 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b7ac899 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6021fe0b usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6d7a31a2 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72a767be usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x80fbbabb usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x869a5956 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x874acd9b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8dcd6b6c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc2ce134 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc50ad23 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcaee0cfb usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcc821f54 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1937ed9 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1d223c6 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd470f25a usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd48a7756 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdbe63efd usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd8b9708 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe125d72c usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3c1e0a5 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf26781b2 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa6ad30b usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x210b47d8 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x903ce5d7 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xaf7d7fcc vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xe11aaecc vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0xd37f26b4 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x32a4be4f il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6cf8aaee il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7abcb9f3 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93b66063 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd331c13a _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1fd2ec2e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x634412c9 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x637b85d5 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x70c994d1 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x798a0601 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xade1b7c7 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc1e2323d p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc2d3b0a0 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xebf7cebc p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x07e275c3 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0ed5bb97 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x11b70c23 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x18805b3b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3b5f3f56 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40fee78e __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x462fade8 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x46e2aa85 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x4d52c9e4 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x59d6cac5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x652ebc68 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x7067402e lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x83fdb41f lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x937131d9 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb23d0608 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf3fe0b3 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0070ed6d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x13269ad2 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7f621040 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa4af5b2c __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xa5aa8fe9 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xac9dcf62 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc304cee8 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 0xe660cdf7 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0ddd0a1a mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x139c54bb mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1e666853 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x22013ffb mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2807939c mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2ef48e60 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3131dff1 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x33c92362 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43112595 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x43501413 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x487484e0 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x67ab3fe8 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6984f4e6 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x718d4c86 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x961cb8ce mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa1f722a6 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa995479 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb34aea60 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc608ed11 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xca71b5c1 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0082b35 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 0xdba2efe9 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf0e22df3 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf6298451 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x000a3507 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x003f8585 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01efa125 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x05f14a13 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0691da0a mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a8c9ebb mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0c3b2f21 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0cdc6f22 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e7eead4 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12091f2d mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13802bf5 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13e0e7aa __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17956105 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1890c70c mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1b33cbbf mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1f8ac718 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x202b5d9a mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x21d6018c mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x22e0d222 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28365e70 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28653b2a mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x28afe920 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ec2ea83 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2f555cce mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x314d19c5 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3696afc1 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x38c13ee7 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d4f998a mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4115a7e2 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4256c356 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4469e590 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x496f9c4f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a128c53 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e4c7329 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5316c102 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57b6895d mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5aaf55d5 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70e7b8cb mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x71a9ac8e __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7254a28a mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x730237c7 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x745be10e mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x76b9746e mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x77cda8f4 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7851b811 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bbc3d93 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d35c248 mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7d56adb4 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81e843d4 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x87f9d505 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d14e948 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8eba23a7 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92f73f58 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9c2c5bf2 __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa23a126b mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa470350f mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa49753ea mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa6bc065f mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa72bb794 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa8802ce6 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb7eb3633 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb48fce8 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc3fe87f5 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4707d5c mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5977a50 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5ec254b mt76_get_antenna +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 0xca522e55 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd4353584 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd936d026 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd96d7f86 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb68164d mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdba6d359 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc6dac3e mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0011361 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe091d3d2 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeb6eb2a1 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xec098a4b mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xefd213d6 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0f1402a mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb89ffde mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0d6d1dfe mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x11ff2ae0 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x13e09348 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25c9c3b2 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x28e39b28 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2da8390d mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f350dde mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x33f95218 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x349633b3 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3cd34528 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3d5779ef mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x43596e14 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4537aab4 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d48768c mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4d9b78c8 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4e6b2f49 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5c903d6f mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6290b514 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x62dc3ac3 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x662efbcc mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6d4a174f mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6e35a5df mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x74f6c7fd mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7709fa8a mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x80981d36 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x81ac0ed9 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8373a7ad mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84ea320a mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85137d9e mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85ca1a2b mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8755769b mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x88ae2b27 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x893db942 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b6f51af mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8e480afb mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9c9911b6 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa4452344 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadc71996 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb194df1b mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb4036919 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbc6150b2 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd45050f mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc228b10f mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc4fa4bfd mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8202984 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xccdd7df8 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcf43fff0 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd0dc298d mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd783e5e8 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xda913001 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdad1e4f0 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd6e7300 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf92d60c mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe0b01b86 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9e1c5ad mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf536670c mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf610c5f7 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf615e3d5 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xff2c28cb mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0cc6c15f mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1d2a232b mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x56ea6ccb mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5d94a26e mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x69a16e9e mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6b31be02 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x81c0c5ae mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x86c0ec93 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x936f70db mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x95441754 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa305ae3e mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa8a6d7e6 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xb846fba9 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xc039b351 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xca52863e mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf68da6d9 mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x17f5f0c5 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x26710a4b mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x47716521 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70a17390 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7ed7050d mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8b0cf707 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x92a5a828 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb09484c4 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb09cc484 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xb149f097 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbae820d3 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc9b95751 mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdb316b09 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf828528b mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0416119c mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x08526073 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b2090c7 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2852599b mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x340a11ac mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3b7b9be3 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3e41ed83 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x489fc881 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4cfc86a7 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x55d5c008 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6d63881c mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6f496f20 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x796c19d5 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7b6cdf66 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x851630aa mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8a15045a mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91bad0e2 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa9466908 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xaa711dc1 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb83e26d2 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca62873f mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcbc362ba mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd4b222fb mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd8ca8e2a mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd943986d mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xde06820a mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xedcb371a mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfee5da33 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xd5549501 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0abb5873 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0d52ec3e mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x57e40139 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x87ecc4db mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x10450c3c mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4c2c9fd0 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7af4140f mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x8c401cd5 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa54583fb mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc046e314 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc1b334e3 mt76x0_set_sar_specs +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 0x08fd8184 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b2e906d mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d4023ec mt76x02_get_max_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0f55c8db mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x109fba23 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17535b64 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x18af05a7 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1afbf87b mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1b4068d1 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x23ad265b mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2541c446 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x280ce442 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2b723386 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35cf6090 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 0x38264a39 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3a0b9f10 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42289517 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42aa7bf6 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4a0207b2 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4bb8ea9d mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4e346836 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x548703b2 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56654cd1 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5965c47f mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63fc43ea mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x65b628ff mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b40e797 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b84d267 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d22ffdf mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6fceb63b mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x76649dbb mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7fed06f8 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x80d05899 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x833e885f mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84a0f119 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8abbc958 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8ba16b74 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95d9a5db mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x95fa9911 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99ad7b90 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f2abeb6 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f36fdd4 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa52a56d6 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xad7a3d60 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb36479dd mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb4de26ab mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb6a691b5 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb803cc92 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbe91e201 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc082926f mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc087a602 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc29d520e mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc30e6c92 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xca85a796 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcfeace5e mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd72eda9d mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdca98e95 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf16b053 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe000af0f mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe0b54b0e mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe51a01fa mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7d38123 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe8f8ccf0 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xecdf52c5 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3dc89b3 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfae924c4 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb6a9842 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x20ffafdf mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6ec8d803 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x6f8c7005 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x814c6da7 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x874553fc mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbd25a110 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc864cee6 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd723ac84 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1845c0b4 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1ebb1ca1 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3341030a mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3737e90b mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x3a7c7ef6 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x44a11c5d mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x46442963 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x71103295 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x822dba8d mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x89718fef mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8ac319f2 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x8d3f4b46 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x95cdec79 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa7f151ed mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xac8eb3b2 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb140f5d9 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd2d445f6 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd7c7a3b4 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf2597c4b mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf8c28bb3 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x06ee02e1 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x16a972d8 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1bf57a87 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2b91282a mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x337d6a44 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x451f81aa mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x469eaefc mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x47676b83 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4b6de551 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4c41e954 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5364afb7 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x61ef9611 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6250d41b mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6c90a339 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x72c6d0d6 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x807b2633 mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x84388349 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8d3e9897 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x95bf38e1 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa5746626 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xaf997765 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xbd4f024f __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc2f954a6 mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xcfe82d0e mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf75514d0 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x02f83b77 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x1c473cb6 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x35a83ca0 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x429472e2 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x640a86d6 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x7f1e1310 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa1918c0e wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1e52115a 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 0x32bb66ac qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x5e9974b7 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8481cde7 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xde28ac85 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xf9491fd5 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0275cc4f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0f83c949 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13fcc6b6 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x199f3627 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1c3cd123 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1f637352 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x21d9421d rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x263d3779 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2ae4b037 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2b0ab76e rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3497b8a0 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x37687708 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3921b43e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ea50578 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x46440087 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x59940498 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x601a4fc0 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6eb24324 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7e34f1bf rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7f796eb0 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x80affd75 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8dc86bf4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8dfca2dc rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f41b7ca rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x952c91b6 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x96280b13 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x999b4941 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3f0b285 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb8926977 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb92cece4 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xba4afcd6 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbebc08f4 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2782bb3 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc3fd135f rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd3c2062 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd262a9fb rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe27f62a9 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe632d518 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe6e9eb69 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf1422aa2 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf389f4c0 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4361920 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfbc1a51c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffdb273d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x025143e5 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0d602629 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1629203a rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1d216bbe 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 0x35a67e56 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3624b2c5 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 0x40698365 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4befd34a 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 0x50853876 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9af56baf rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9c3be7ae 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 0xcb1020cb rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd9cc876 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf0b238ac rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf71a2f76 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf7c4d721 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0233fe8b rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0899a7b5 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0a9f5e59 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e85d18b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0fb4bba7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x142bd2e0 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x144b226f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1c1ae7b0 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2671999d rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2f0c89dd rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3279f951 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3975de96 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3ed03664 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3fe358ab rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4039f82a rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4a072361 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54f5e8de rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5adec077 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5e55f754 rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x64000f7b rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65e4db54 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68b02820 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x705e7c2d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x77890151 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x78240829 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7a33d02f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x82469294 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x88e5b669 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f00d2b1 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x981f8748 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e02c08a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa07532d0 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaa2df65e rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaecbb51e rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf1cb544 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb52693b5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca2e5169 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd4772d88 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd59f6ba2 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde380dbf rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdf5de308 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfa73fab rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe23fe454 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef091d93 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf0967b85 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf1f3d0b4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6899b28 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x1772c7f7 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x807bda13 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8da66bbf rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xef54643d rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xfa0cc86b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1550d8d6 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x91f4e20a rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xefd6da56 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x18fb2edb rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x23588b24 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x24dc5c93 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4bd2fd2d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4ff541c0 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x662af543 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x74a2a2bb rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa1457157 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa1b4fa66 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa4b53269 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa5538df0 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xae43e9ce rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe5445ba rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xcb42d330 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdbbf7ca2 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xddb6251a rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x55d5024a dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd245313 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcca17342 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc486c66 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0892a11e rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x160badee rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1c927b5d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1fe86f5f rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2b8969e4 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ce9550d rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34240d4d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x351fc5f0 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 0x47951d1d rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47d165ae rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5ffcb964 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89858eb9 rtl8723_enable_fw_download +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 0xa8844f9f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xac5be128 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb64c110d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfdfa176 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1e59237 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3697dbc rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc40d0dda rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd1c88683 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7703604 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd1fa80c rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe49fcba6 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf11122ab rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf1edf27e rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0560a23d rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a19f050 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e2ce073 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14f30106 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16d46de1 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21b761dc rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2fa54021 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d06efb6 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x680365f1 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ceeb4a5 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x803d888f rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x83e896b5 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85793c3b rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92b0a55b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94bd6a74 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa04fdf0c rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0a17a5f rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa87d9d4d rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaa9d3a93 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafb56b64 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1e84b01 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2b43092 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd947010 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff7240ba rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc75fe6 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23e93bbf rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x63d7ba56 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6b23c674 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x863ded45 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc27b30f5 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x33f80966 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7188f44b cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa68851ed cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xa88ed19e cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa746a980 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb91402e9 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe500e385 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 0x106c47fa wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13ab1a61 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14f9c0a2 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17548ccf wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1cedf629 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2019ddad wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x268b9bf5 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2cc9f766 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b025ccf wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40366a7f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4696dc17 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c5f1d8a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52a2fa13 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5cedd903 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ec297c4 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x65427cc5 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x664129d4 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x666f8faa wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x730b3784 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79e443d2 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d226ccb wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7ea04bf7 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f7825b8 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x831d5387 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85b947bc wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a845820 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90cc2588 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9cb23e39 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d7c6f08 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa0bbc21e wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1ad174d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5068ab6 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad94c39e wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae2d1d6d wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8de62b5 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe2539b5 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbeb256b1 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcf31dd51 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdd9f1077 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde7e2072 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2266eac wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe1b3c8d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfff8aa30 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x00287370 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2c63f994 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd6d34d97 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe2a8a414 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1346eaa2 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x29efc331 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x726a492f pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb190f08e pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xc508d921 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdd3ccf1f pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdf7bf2a9 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4fca0e92 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8f400623 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x901566a0 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbcdb6292 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9951df8 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcabf25fe st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe7ea5926 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf1cb96f2 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0562bf3b st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x85d0b297 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xa9185cd6 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0651adfc ntb_transport_unregister_client +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 0xba8232ad 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 0xc3f5e65b ntb_transport_create_queue +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 0x56d0d89b virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x5d191e84 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06987f6e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1540cd24 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d8b40b4 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x30c01a6b __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3c77006b nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x402cacf7 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x48d3002e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49e69f81 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4a5e817d nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4fe4014b nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x517fd12b nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x520fdccf nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x56abcb16 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78ab49ec nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7cbfa4c6 nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82c3cc0c nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x831b52d3 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x862c3790 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8dacc8a8 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8df7855c nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9ae9e357 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9cf04c6b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa16a0542 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5231da5 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa586407e nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa75e709e nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa847efd2 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaace0002 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb05dda51 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb37752d6 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb68c1548 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb98152ca nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4421922 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc6b479d __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf67beb1 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd45434ee admin_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd58bbbcb nvme_delete_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1866132 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1e68dd3 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb1778c8 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec8e6164 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xec91c1f6 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf118f74c nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf554dd4e nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf66d7856 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfafeb612 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x00f10fbf nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x15daa72a nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x30777142 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x384c24be nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5563c61d nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x62ee1415 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6d4ab529 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8322644f nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc3a9f1b3 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeef4d34b 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 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xbab51c5d 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 0x3d0a3469 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5b84fb7c nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5fcecf26 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x668ffbdb nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x6a5cba78 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x737c787f nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8775fe3e nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9c304e4f nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xa8d87c5f nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc5a60aaa nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeeccfd6f nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x532f98ff 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/hotplug/pnv-php 0xc56f97e3 pnv_php_set_slot_power_state +EXPORT_SYMBOL_GPL drivers/pci/hotplug/pnv-php 0xcf468a20 pnv_php_find_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x20a4b033 rpaphp_check_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x2a919f63 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x7432b9ef rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x97a544a9 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x4bffe6ac mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x7b844243 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x96266664 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x5f717d95 devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x719ff450 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x80a51b2e devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x9b38fc59 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x56b260b5 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xcd6e325f bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xeeb61b10 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x728491a5 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x84c2fdd8 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x96de7ae6 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x11ba2391 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2a974f37 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x4bf98eae ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x875843b9 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x949dbb41 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xaccb26f9 ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb5b1bee3 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe5354241 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x031451b7 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2f4c2fed mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x478c1030 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4b692786 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x80082330 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0xe50af799 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x02abed06 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1f6a5ca8 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x90fe6743 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xac435732 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc28610b4 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdf9d5f07 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x65a2ef91 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf620ca8f qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03e412fb cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05ad0b1d cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0fcb9f4a cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1474fb2f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14ad3769 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22958633 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2934a231 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3154fbac cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3580de00 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d04d242 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40466e55 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44f502d7 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x507e7be2 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53c7336d cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57d7978e cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c0f4616 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61f31970 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x651bffa5 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x740069ed cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x743f6bd5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7650c650 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e10c8e1 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e154d58 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f762a32 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8993e772 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8acf6dc0 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8dd4e438 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e9393ac cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9feb92d8 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa38ce989 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa52e4d5e cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7d8a93e cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad6ef75b cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf45ec50 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb232c889 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb60c6c19 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc9936a7 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3f246e2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4de3fca cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0c054e4 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4382100 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf82bd31e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8753bc0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfff56fc8 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4a233f67 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54e9c5d0 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5d0f57f2 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5e0a5323 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x697cccda fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6afbf386 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7304472c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8829ae7f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x91d67f86 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x92655ac8 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9f03dc7e fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa8523c1f fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xac5adda0 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6d5aa31 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 0xe9f5fba8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeacf4a70 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x1b9757cf fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x377ef28e fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x09c35658 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4df1ff61 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x68b500dd iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0ca96ab iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe2fe1842 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe7f1d2c1 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xea0551e6 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x09279ed6 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x071e1e23 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0845107f iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0eb7c4b0 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10e4c652 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11b07afd iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b983b15 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20ea1e39 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26b3f28b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x310598ff iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31c532af iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3279a819 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36d85b62 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x374101bd iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b4ae85c iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d246b9f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ee90fde iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3fad913d iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x439634fb iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x541ec7dc iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ce7b23f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d49db2c iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e3309a6 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63b33e5b iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7335794d iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7967ad7d iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x798588a9 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79efe8bb iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a3cdb04 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c2240cb iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9beb26c4 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa15dfb74 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa69d538e iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa857660b iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xadf37307 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc43841b6 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc950ea5b iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcac475a6 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf86348a iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2fb1745 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4ea63b6 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7ab541e iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd8ab2156 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc2d48fb iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde010c26 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe010c5c5 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecccac78 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee115211 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf699c0b1 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08788fcc iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x21f45c0c iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2a7d7b8a iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2df71e49 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ab4b2e2 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fba103d iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52beee35 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5ca92fab iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5cdf1aaa iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x628f363a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78a5b9ba iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x794369e7 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x920b0d0a iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa2f1552b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb77006b3 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc677a0d0 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc75e4e67 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0b5696cd sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x161be600 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x187986f4 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18ff7ab0 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cffa5d0 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2affe4f0 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3639055d sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3bca18f9 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e2f3fff sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42eee7ef sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b378cef sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56b50700 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x58872022 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a224fad sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x60cdabbf sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c1e0fe5 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f064ea2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9010d0e9 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99e7efc4 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa02e2364 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa1168af6 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa27af1df sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa7654ad0 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9a32cea sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad8c735b sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf8b4e91 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba88dc69 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc13e7497 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xca92893d sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd8110d84 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdacb86a3 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdff1090b sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe1041bd9 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4ba784a sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe5deb284 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe97b8b77 sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0623e25 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x6f51f78e 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 0x0da2fec2 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ee62b12 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f6dfe28 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ffc655d iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x217f05f9 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x270cc525 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f5ac1b9 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3ac00234 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43215a20 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x450d2dd7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cb6f8f2 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584324ea 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 0x5932f3cf iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e2d4e64 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64e46ae5 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 0x6cf8b894 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6d723fa1 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f57d5f5 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 0x75066645 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b6b964a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ef19582 iscsi_destroy_all_flashnode +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 0x89b239ec iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a1c2027 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c327922 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91114b99 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9319c724 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94224435 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a30c91a iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9cd79886 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0bb6509 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa41ad167 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58ea0cd iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb24b2ef9 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3a8be6e __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb721f94e iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc21e4017 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc65640b2 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcbd0c84a iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc7f806b iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6fb7e39 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3703b6f __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe55986db iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea314d19 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeda37549 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1d9c505 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf62a4dbb iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8d4c7a2 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb736704 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x135df79d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa491a424 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa723c60a sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf6df35c9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x44f68b41 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/siox/siox-core 0x3fa51c86 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7b0b1677 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd06fc804 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd99f39a7 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xdcf78626 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xec1b0136 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x05d465ba slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x07fd5f62 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0c9d55a8 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x16f77b32 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17a6ae1f slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1a523d33 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1b603d47 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x222fb3c7 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x42b4154c of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4806237b slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4a897f56 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4b414ed9 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x78d33d5e slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8c289ab0 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x93d8954c slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98bb16c9 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x98d1b84a slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9c3e0f99 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9e6ea7c3 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9ee64ab2 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xae93d3bd slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb3cad7b6 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc7fca4c9 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xcc3ae260 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd1fae58d slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xee09dfef slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x1440fbf3 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x474d7f04 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xcdb4004c sdw_bus_type +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x9496e825 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x282b1f3d spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x40e19675 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x55f86754 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7b1e76c0 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x96f93bc0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd072e59b spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x28955088 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcc863002 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcd99b7b8 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x039b7792 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0f6ef16c __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x287f5426 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c3bbaba spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x42a463aa spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4c321c7f spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x519707f4 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61de90df spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x66b0d673 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8d02f335 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8e119931 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa0294fcd spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa84393ce spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa919d2e0 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb423c23f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb8dc5618 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc63142d0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef72c8e5 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x722df3e1 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1324b0ff anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6cd4fc67 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8ce4e807 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8d16f568 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x9f3c27a2 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xaa97cf99 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xaaf8c4a0 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xc19526f3 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xca25aeae anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xcfaa0525 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xee8fa7f6 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xf4f9b336 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfcb658c7 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x65929d97 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x7e78a712 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x80820fef fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xb7940618 fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x213e2856 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x27b1cc37 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x36eb010d gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4be85d83 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4f771693 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x55b19d1c gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x5c1b4f82 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x87af2131 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x94c37820 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xaef6fd40 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcc01dbf4 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xed5f6fbe gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf5b83ac9 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x14d0ee53 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1a3969a8 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2990aa59 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2aa97708 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2e970042 gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x55261b24 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x87f95536 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8d356941 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9b186441 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaa1b2493 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xaed18379 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbda577e1 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xef97bb54 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x06f960c1 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x0a4e335b gb_audio_manager_put_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 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 0x41aaf665 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x6a4faf29 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x8ce4dce0 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xc7c5e77e gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x90c42db0 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x049a4687 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x15b5bd91 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x459937ac target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xc8176007 target_submit +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0aa60665 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0c7beb6f tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1956f838 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x31a7cd0c __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3cf4a987 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3d78cbc4 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4bd82697 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4c82ba30 tb_ring_poll +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 0x5e5ddffd tb_xdomain_enable_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 0x68b37ca3 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6a1b8ca0 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x77c54867 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x96adffbd tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa49ef1cd tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4a72934 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa7fd8588 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa8a3e519 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb0b1b086 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc0c99686 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc8f14ac7 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc972e5fc tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcf4f51ac tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd32721f1 tb_service_type +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 0xfd5668a1 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x04caa99d ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0501bd24 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x11101979 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x19298084 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x196afb04 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x23edbcaa ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2e6bee2b ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4a28f0bc ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4e16c9ca ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x504a9951 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a833456 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x74f5fd97 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x75c24bd1 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7a038b6d ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8a15027d ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8e298e21 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x93bc972b ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x97dd2f5b ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9a2e388c ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa9d09703 ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc0ae238e ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc0b5941d ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfde9581c ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x01cfb509 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x74f0a4ad ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0701b63b __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x388299f4 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x968ddd35 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xa35a6749 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0ec27b48 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x610490ee usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x11ca2e18 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x58b35a7b cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x77588169 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x861f344c cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8859ce1a cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9865d480 cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb68cebb6 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe0d02d67 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe49846b0 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3a8edc2f hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6273c878 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb8be069e ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd8e9410e ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1348af58 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x32afb2f7 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x53780a6e imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x85a89e9b imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x8725d56e imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x89017abc imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x09270133 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1a569a72 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1b632391 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2e1358da ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x85b29502 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xea924d01 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x083b03cf g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x19280814 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1ceee29c g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3d1e89fd u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4196f84d u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5bd7e285 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6c163583 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x72c680eb u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7e36a201 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x88049896 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x881dda83 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa07ef292 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc63568be u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc698ad24 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc7225358 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x011cd17d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x09f8ccbf gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b353cb9 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x62e208c6 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65a04faf gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x65a3efa0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x69b2955f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c20d3f9 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7da2f179 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x804a805f gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8253c5c6 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x872158a3 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 0xaf432d78 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xebd912fb gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf9b01cf2 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xff88c995 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 0x46ba5d2a 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 0x6740070b 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 0xc22ad6d4 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xcba6a10e gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1f1383f6 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3299bc3a ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x928373de ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02c6e5e9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0bbb63bd fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3a532620 fsg_store_nofua +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 0x4c328f2c fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x58ad6345 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x58c5266c fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5ec9f0db fsg_show_cdrom +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 0x7c22786d fsg_store_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 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 0x9a3f5d8c fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xaac83f6b fsg_lun_close +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 0xb935ba61 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc0e98af3 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xceeb57fc 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 0xe24a7b37 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7fd631c fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf24a3643 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3cd7ac1 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0dac10d7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f4fab64 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c5be088 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1c62011c rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x237fc721 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4393bf56 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x65314860 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8da3b6d9 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9e8224fc rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa5bc2cb0 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbdfb096a rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd9c6bc07 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd9e61369 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdff0ba87 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xedc4bc1f rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0166d65a 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 0x1423cb27 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b1ddfdf usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1b909113 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21ce7539 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27a0f707 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29396955 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f07f99e usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48dc661d usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4d92043d usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x55d054ce usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5656451c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6a5de41c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x705b6367 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7f6edffe usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7fb62ba0 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8970868b usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ac7cae3 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cb0e2cb usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x90064b5f unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x919ead19 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93b426a5 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9b62a9b usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4375e38 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd71993de usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8418d4d config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda0855af usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdf9cfe86 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0605c8b usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe13c01f2 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf2eee1c5 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0db762f5 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2cb6b82e udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c7f2d2c udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3fdb9fd4 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x69854acd udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x9f1fb58d free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb523e2d9 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xee4b8d00 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf0df34f7 empty_req_queue +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 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x145d3d75 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x190e903f usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x208ae892 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2936040a usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2abfdb72 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3192f3c7 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a46d95c usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3a8d1fa8 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 0x4ba86c2e usb_gadget_unmap_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 0x548c34d5 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x656c34e5 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6a2e3c29 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x773b587a usb_add_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 0x7de3c5e9 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7f31e957 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8231705f usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x87673b1d 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 0x8e90ee20 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9dc48819 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa57f51b0 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa801366c usb_gadget_unregister_driver +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 0xb3a2268d usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbd12bf78 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3e0f424 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc40e82ae usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc4560c74 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb44cf9d usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda85332f usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdf57aeb3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xa483deb7 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x209168e8 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x723d7e44 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x37213b49 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4d72bde6 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xba8ad552 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xcb570847 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdaf3191a usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xddb0cd6c usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe45dfcc5 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfaf2ec08 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfe3dc08b usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x09492220 musb_mailbox +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0b4a8834 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 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 0x70c5ed0d musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x94a7443a musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xa2d4a817 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xac94d554 musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc65e088b musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xc7919a0c 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 0x0628804c usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x30c6e755 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x336cb177 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x78068673 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xfccc1e7c usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x2e068338 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xca0191b9 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x02b23698 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x125c0d57 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3994b721 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a998a1c usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x417e118d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55837c67 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x58c8e21f usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69bc96d1 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74379816 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7c4c0cb1 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90e7a860 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x95bbf0d7 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa1669b75 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa7de8a19 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb139a91b usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdae1a36d usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe842cc46 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedbaaa57 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf2ec91be usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8bd6efc usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x80cb2691 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x9e0c3709 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x69ebf34b 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 0x90eb7384 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 0x04864950 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0b393782 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0bee4a0b typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c2cf654 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x11828e5d typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x153bdad9 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x17866eea typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1903ba28 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1b4761cc typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x24870a05 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x25181590 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x259d1320 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ba709f7 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2bbc6a58 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2e4e71fc typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x32288290 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3e3b3d45 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3f8193bb typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x47120ab0 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x48053d64 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4dc02684 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5188b3c3 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x525765b4 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6ee22872 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7b51eb77 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ea734ce fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80dafcf4 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b976191 typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8d09a08e typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8ee20e1e typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8f0a998a typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93493c87 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x93ab453e typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x956f91f5 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa106d825 typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa5c95e59 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa907eddc typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac0afc23 typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xac66e0f6 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb3ac4a63 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb6d535be typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbde34081 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc3518462 typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcf961782 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4e8cf31 typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd6ca5844 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd950cdea fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda05dcd1 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc01a206 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe84f7209 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea681692 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed2c5b4d typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf037951b typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf8f831b7 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfe2503a0 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x065d5ac9 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x1b80169d ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x413d8806 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x4632b7d9 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6116adef ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6a4e9c6a ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x6f1daab1 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7ddad555 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x9bd59a32 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x17872755 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21d0bfe1 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2ef06bbe usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x313a8049 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x40f17803 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x56a63655 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x60b69c82 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x64d296a0 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7125b060 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8ca44bb7 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa21862cc 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 0xe33b0493 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xef8fa788 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x06bfe19a __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0b97e839 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0da76433 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0f565f25 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x30884232 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4a824cdd __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x98af7c8e vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x993e62f4 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9dad4dc6 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xca1551da vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdb447466 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x923a032b vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x6beab59b mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04af26e9 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b8071d2 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32caae7d vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a83b9e4 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3a914e6b vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c571e5c vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3dd5a00b vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f8d2b9f vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x480a7efd vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4abdc33d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x512e877d vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5173dd83 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x568764b6 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5bb367f2 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f50a965 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x61b21bed vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6fa0422f vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79608f0b vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x80b9da6d vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86570caa vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8af2da61 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8eb9384a vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9236b462 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93ee29c3 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x959ba5de vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97d28e5b vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99078ca5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9953b1f1 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa798dc20 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabeab1de vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8bca10b vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0a09d86 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4373950 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdba86a9c vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc6dcd1e vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe314ab8f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe386e25c vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2161708 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8dd128f vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9b08a55 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x38ff875f vhost_iotlb_add_range +EXPORT_SYMBOL_GPL drivers/vhost/vhost_iotlb 0x5f4e5249 vhost_iotlb_reset +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 0x8a7d8ee9 vhost_iotlb_init +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 0x1e5cf266 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x269e98ee ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x29e52800 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x46b41897 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5830ad7c ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c5747d4 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd0f45333 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x487c786b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x8a0129fe fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb924f22e fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4edcec81 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xcc52d083 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4b523986 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5204771d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f8d7d7f w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7a446d98 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x93ff2bdf w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaec74082 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb1ef76eb w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb358ca54 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc5edca47 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe8e93ff8 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfabc0683 w1_read_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4df81266 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8dc355ea dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa50b0135 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x143d7b79 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x26a44c84 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x629bf6c9 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x95a47295 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa2a1e28a nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf11bafe1 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf157d657 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x031f2e52 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03be72a1 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04ae142b nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06734c45 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d18319 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a5660e2 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d246a6b nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d2e974d nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d4ae2ae nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e1b0511 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f4fe979 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd1669a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1298b380 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16f8854e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bdaf897 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c5c0e16 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d210eed nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d7b69de nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f2fc836 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2144f875 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b75428 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x220b84d2 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2344f23a nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24a886b2 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2667f673 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2684302f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26ef7d85 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27a143ba nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29e88eb5 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a43b2ff nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c022ed2 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d474ad9 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ea24a39 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31c9215a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34208a65 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34f537bf nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38bdc9bc nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39346750 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3da9d921 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ee1369b nfs_do_submount +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 0x409072c6 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40aa6651 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4322ac7a nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x443c36d0 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4684f920 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4843e35f nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496cd91e nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bb1c9e4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c484b95 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb75d0f nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4de9b845 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x501f1955 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50978465 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c16be0 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56c37297 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57f1d610 nfs_pageio_reset_read_mds +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 0x5a1a06f3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b90e2f7 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf136c8 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf98fc1 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d09d4da nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d4acadb nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64fccb81 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x655d95cd nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69c21d0f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e484ef9 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e6dc0c4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fd164d1 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71fef14c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75a21f92 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76e0db1e nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77f84153 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d3a81e2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e04c658 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e398c23 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f1da05 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8154e525 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82298d02 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82eb237d nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8445207d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87890cb8 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a7d49a4 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c8f1c29 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f48472c nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90b12a33 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90cf5f46 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94cb7c3c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94e354f1 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9757b4c9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a31e765 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e0ebe9e nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f2363ff nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0db8b59 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa19af59c nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa48d4fab nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa64f3232 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa73ed2e7 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafc130b nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacbbf524 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb438a5dd nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7d838b8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba2c9d8d nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaa7e201 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbabafb76 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfda1c62 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1b6764c nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1dfce85 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a12ca1 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3abe457 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8bd22da nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c80b42 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd92ce53 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf0d086b nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd298439f nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd36d4a29 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd380a56b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4081ae7 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5d47a45 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd70143bf nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaaca661 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb003b21 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbff4bd7 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfcecc98 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe160e173 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1dd484c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6206283 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf33e1313 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3c3d315 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4345092 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa742864 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaacdaf1 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfca4849a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfec2f525 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff091081 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff641d2f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x4b5fbdc8 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0678965c nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ab70530 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x104eb376 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157895f0 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1adaf0a8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c9565e7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ceadd10 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e863de3 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1eb00312 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21e9191c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2934411b __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b8730a7 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x304a9bb7 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3191bacb pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x324a722f __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32be9ff1 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34233ae1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x348efa5c pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36cb1281 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b32c5d6 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b369e76 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bc77139 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3be65ee8 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x51fdbe6f nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x578f23f5 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58c15c4c nfs4_test_deviceid_unavailable +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 0x5dcf5ba2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e9122ca pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ea3f9a6 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f551825 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60fa795a pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64df2f1c __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x65760af0 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68b37e99 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aa42ef9 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ab52197 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d20a525 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e45996c __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74380d7e __traceiter_pnfs_mds_fallback_read_done +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 0x7b851cf5 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cb3a0a3 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d9f24e7 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81a5fde4 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81bffeb4 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8444c5c5 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x879ef960 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95748846 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x965800e2 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x98063603 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99d4dbdc nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fb03e37 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa11d6313 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3c5cb6e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa92841c3 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaefef0bf pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb43e6188 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb2e1101 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc874b91 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4f345ee pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8f7e3ef nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaa4497f nfs41_sequence_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 0xd6a05f7a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd752c0cb pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8f8f182 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9675d20 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda53fe80 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb55a837 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd2818f2 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf4c8119 pnfs_read_resend_pnfs +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 0xe4b42dfe nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5951c7a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8ad5c54 pnfs_register_layoutdriver +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 0xed691ee2 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xede41327 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf07db925 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3c6fa9d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf403d4f7 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf507c9c8 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5f44ba8 pnfs_error_mark_layout_for_return +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 0xf9f0464e pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1ba1c3d2 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x62f0d8f0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb13e37cb locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0a621f60 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x74bc78b7 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa2736be9 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc5f97287 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0xd95ee966 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 0x5602b6ae o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x59ddb9b9 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5cc885c0 o2nm_node_put +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 0x72f912a7 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7e79626d o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9b7b029e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6dff996 o2nm_get_node_by_ip +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 0x145d8bfc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1dd088a6 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1eb699a9 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x247b3fc8 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4616a4ea dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5ff19bea dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_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 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x29bde4a0 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x59010678 ocfs2_stack_glue_register +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 0xea733250 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xfb978fba ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x3e8c6c70 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x402eee6b unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x46dab9b8 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x8ab8cf12 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/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/notifier-error-inject 0x4e512416 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x6197f24f notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x01f3248e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x071186e3 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x5b0cf2fb garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x92acf725 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xa1f8d155 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc23aab08 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xdfd8c61a garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xf23c958b garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x1b305cf9 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x27d2ac44 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x3f4d93fd mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x90adcab7 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xdf4f0cdc mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xec348eea mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x5e68d19b stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xeb90a5d3 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x30c77c1c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x41336510 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 0x67508396 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 0x0b0cb8fb l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0d88f3b6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x34c6dde6 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x799ec1d7 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa36d2169 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc7ef89d0 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe7d933cd l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf2f2c77d bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfa97ccb6 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x5ccf3cfd hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x01236512 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x01ba516b br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x064a6016 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0821b3c4 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x097b29c6 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x193a962e br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x218e6f9c br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2c9f9585 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x40acdd74 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x427a8848 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x44853304 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7341631b br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d804093 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8fdda216 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9db04038 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5719470 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xadb79f44 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0a54ef7 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc712016 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc037c0a2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xde9bbbdd br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe090bcb3 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe53de89f br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf15a67c3 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xff658430 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x2698f1ee failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x673dcdeb failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xa6a0b8bc failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x005b7eed dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0f66698b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1caff75d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1eddd2fd dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2185d03e dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2690b9f8 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33aad52b dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34ad8769 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x38b0e4f0 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b4e23c2 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40953268 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x481c1e46 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x499e74d1 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5265eca7 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5267124b dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5450208f dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5933acc9 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d1bafe0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f5dc195 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ecfaa09 dccp_death_row +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 0x8f8a2299 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9452b4a0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d914a4c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafb2e76e dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb03a33ee inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd7784e2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc9d59a84 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7071615 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd8b2961f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdd63a480 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe27d8aca dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf048a563 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf14a36f8 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x062b9724 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0721e914 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x909b1609 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x951cd9b1 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9c417d9b dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcd573f0f dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x00ee6202 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0820e30a dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0e42b4b9 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x23980ffd dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x27beab91 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2d62f786 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3094216c dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x33e3f9a0 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42334aaa dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x475c5d11 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x504ac6bd dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c1952d1 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5eecc03b dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x621f4ea9 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x63ee101f dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x64e7329e dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ea28ccd dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x71b9ecf5 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7bf4e92d dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7dd4fe9a dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x839d6f4a dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8d599299 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95601b74 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x961f72bd dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x97feeb88 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9ae54957 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c62405b dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa7199f9b dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa9c1fdc0 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd0fcc606 dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf3734fa8 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7db0bf5e ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x817cf765 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9d8e233d ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xde25e999 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ife/ife 0x4e40a051 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x8c76e3c5 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xc8931ba5 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdbb587e2 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe7343a6d esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0x10e9d884 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x982df8e1 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x213d8b39 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3edb72e0 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x730443c6 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x866af9ca inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc2f91760 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc68a105d inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc72cc272 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xca2875c5 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcd26561 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x199a4b49 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bfb7004 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c6775a8 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0dec4efc ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1b49c9b9 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b4addff ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5692bffc ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6554e374 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6f77cb2d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x74825fde ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8016b6e1 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9633c42b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae84384b ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4e9e213 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd8ac0c6 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeac9b48a __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeec18101 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe190942 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb71575f5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf30a636e ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x54b33b17 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xdb6e1b17 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x09feb5ed nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d85f758 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5d49ba75 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75260def nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8e1bb1e4 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xaf0f2bd3 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb1ff2a3f nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcf9666b7 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xd1fadf86 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0e6f1d98 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x8ae7bcc9 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xbfd0ee33 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x05c3eff3 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xadb2ae6a nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7625c301 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x80575f9e tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8306080f tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa5e7a5ed tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd86a733f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x3a3077b1 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x52e1d6a9 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa55798ca setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xab6883de udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbb7407e7 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbd18d4b9 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbdeb1a54 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc44fbab5 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x6cd420b5 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x75917987 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x963a6744 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4ff2fcff ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5cf789c3 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x80340847 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x32f263f1 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xb21cefb4 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xec9f6f86 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x002525f5 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x39999e55 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xeba82c58 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xf1664ae7 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3035017f nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x591905d3 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaa75db27 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb4dbb1da nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbbe67ba5 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd3afe0f2 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xeb4d5f3b nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x569d7eef nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x0c8fb488 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x88066c58 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xab414699 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x95ee4b8b nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xf05289b7 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e0901da l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x13873425 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18cf8fde l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1b431a2a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x249dae8e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4becfbe3 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67252c50 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x873c4024 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x87779991 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91340d83 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bdf1e53 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xace658cd l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb231adff l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb79e35d4 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb95f100e l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc23b182a l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xceb3923e l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd47f3056 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe731202d l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xed904ab5 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf41cf753 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x2127b34e l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x78436a84 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02de8587 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x15447536 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x250beca9 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x26b49d91 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x36f12f40 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b257d89 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x40cd8744 ieee80211_gtk_rekey_add +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 0x6cca9eac ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6eef7016 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71b1cef5 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e09c1a0 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x822f19e8 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86241fc6 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95af9dc2 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9fff77bc ieee80211_ave_rssi +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 0xc7b5756e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xca2c08f1 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb143e15 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcfd06205 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd076178a ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe75681e5 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed1015e4 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x066b91a7 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1bf440f3 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x485caef2 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x806d8d1d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf347d2e6 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1078c2fb ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15cc535c ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c6be2f7 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x21d73441 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25b37f7a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28bfa3db ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3b6b8ebd ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x457bcc92 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4d2ee9bd ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6ede71ab ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x76ad03fa ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80f37f22 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x979e9137 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ea00725 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 0xc9891b9c ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca75e44c ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd8f0c298 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0803b45 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed5946ec ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x30a8badf register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x65abbfe4 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6d968a02 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc7f540a2 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1f0f56d3 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x41dc3ffe nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x439146de nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5732ef62 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6665a8e5 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xc1863ab7 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf6f308ff nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04791598 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04a8fbb6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x084f7506 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1190fbfc nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x133211c8 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14cbecc8 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x157d8deb nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b053ff7 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb67ee3 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20b32c56 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x288306d0 nf_ct_set_timeout +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 0x2e6a7512 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x340aeb00 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c5a862d nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fa500d8 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42c34103 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4429507a nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47527aff nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4cd71ec6 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d710302 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x555a9262 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57c33faf nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a5be995 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c6b0c0b nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61c2611e nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x622b256a nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a066e15 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b985626 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c35e131 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d4f37b1 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fe0582a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fe56689 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x714f9031 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x751f4a51 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a86d6e7 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c6a36be nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e0a328e nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f473995 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f8266e1 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85494485 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8557cdbd nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ee9d3b7 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91c4143f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9600d862 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c572d5c nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d08f297 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1cc1312 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3f7901a nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3fddb18 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa400d126 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa86d1b6a nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadcfcc9b nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaee5859d __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb107e685 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2551ff9 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb0f81c4 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc270fc6b nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc44e722a nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6a5f9d4 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce6ffa8a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf3bbc4e nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd133fed8 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1a6d160 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2508fe0 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd28e7ec1 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 0xdaf6be46 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb35b60 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe194b426 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe53c62cb nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe619441d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe78031af nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb4b87fa nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedfcf49f nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeebad536 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3a2542f nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf874d745 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9e1b7de nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd29a3b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd1189c1 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd6acba0 nf_conntrack_find_get +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 0x8b10fcf7 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1cd34c11 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb3a35241 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x09574550 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x189b6fdf nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x439b40e7 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5d695d9f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6d4a173d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9259ac48 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa1e5e5d1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa35c9c7b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdedb137f get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1d2dacf set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x4208b0a5 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x031d7a6b nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6095abca ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8be3759f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x93515776 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa3cdd6b4 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe17d329f nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf2c3a027 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xffe04a0f ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb3323447 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x785ac5f7 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x0bd9f379 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x77b4c0b4 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbba34067 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x187314b6 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1e10d7f9 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x25c72fd3 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39ef69ff flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4bb49284 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x4e6a54cc nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x70eb24e5 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x735d6593 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9306f43a flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9ac1a20f flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9bf7c8e3 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa0cca931 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb8b2af74 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd0d8f179 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdcc58b71 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf46f31cb nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfbdad305 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1384e7a4 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x13a1e119 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x148cc411 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x15fd81c2 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x16589675 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1758c107 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x234e3802 nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bee04be 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 0x68f15cec nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x75b97a3b nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86b239a4 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbaf5d6fa nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd587cb48 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd86cb79d 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 0xf6294332 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfdfc77db nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x19f8710c nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1ac50f18 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x276a5933 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2eb8cb13 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x43d8c68c synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x477c0c63 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa4e1085e synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbf320b35 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd4097fae nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd73401ba nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf8d6a5cb ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x044eaafa nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x172c8343 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1b1e7b86 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1c5963a4 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e55d46f nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3135abc4 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x36d70886 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3afd38b7 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x412d0e80 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x43f0a3dd nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4619bba8 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e82db07 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4f43c7cb nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x590092fa nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5c2b930c nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61ac75f9 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64777b20 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x647864e0 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x64e3eeaf nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6fadc7f5 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6ff00846 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70b0ad9e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72929f5b nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78361bbf nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84071ebd nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x89f178e5 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x967d17d2 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x99764539 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9eb5b253 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa01bed4f nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2befeb7 nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9055ba2 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab1f4488 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb6517f72 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb697205a nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbcb14649 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc5fff966 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd516f50d nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf731b07 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4ae1cdc nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeda5598b nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf131dc70 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3388d51 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf3c53cc0 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0d164552 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x289dea58 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2ae41015 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x477ca04b nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6ba17670 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x73957e84 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfe271f0f nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x11573ee8 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3bbbe788 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc0392e5a nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x19b96e2b nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x682953b6 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x12acc829 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x1fd51457 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4c4a1fb6 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xac53e2c4 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe65924fa nft_fib_reduce +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 0x8725cc4a nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb00839b9 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd79c2169 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x038fcb9f xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x087076d1 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x114f5232 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21c9d36b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x309d70b6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x30cd0d5e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3292fb45 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x37838f0c xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d6c88e2 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e212a8e xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f1cbbd0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x716cc767 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75d786b0 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x80cd8d10 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8319213f xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87bc8740 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae82c5b xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f8c9ce6 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 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc2e9cf86 xt_check_match +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 0xd40eaf62 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe4d7633b xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf3001256 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfade56ca xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x546faa80 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xbc9775fe xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x565d1296 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x7ba27025 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xa592a953 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2f08d1d5 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x337bedea nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x990722ef nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0xc4e79c60 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xd56d32d3 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x17ec085a __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1cc05870 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2d08fa20 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x732c8b5b ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xca030d70 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xde42b3b4 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x719d4519 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x92b938e8 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xb6dc4d17 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xd731c748 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x5d442655 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf50436de qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf8db4095 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0142faed rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x064968e2 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x0b1ee474 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x0d9658df rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x17f90e7d rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x246391af rds_inc_path_init +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 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 0x6a15bf21 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x6d6e1ac2 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x6f89410a rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x72db3c5b rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x72f0f0a6 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x774bb30f rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x83499ae9 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8f8e1943 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x96b49655 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa33e8da0 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa4869a12 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb6d596e7 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xba9bb4d4 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc6f11079 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xce9a8e60 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xd3b6d3d9 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe5c0156a rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xecd49b0b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xed00d087 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xee41973e rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xf18c7d22 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf9f40372 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xfcaa9aa5 rds_send_ping +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x3c52155b pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe23b9933 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 0x1848d12f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x76d16dd4 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x7786248e sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xe9b5e40f sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/smc/smc 0x0cacd3d8 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0x0e57ac12 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3cbeebdc smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x7aad5a86 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x82c09f9c smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x990976c4 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x9ff159b4 smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xbad0f3ac smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbb6f9d66 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xdf7b2890 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 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5c32d1f2 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8808c879 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x91303cd2 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd3f3fb10 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01523482 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01c12f28 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03341f60 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e7c979 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0528ac33 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0585c143 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x060549f7 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06704933 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07853099 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07db6752 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ddc769 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a7966bb auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a821bb7 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bb65404 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf4a559 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d462056 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3a45b8 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea980e4 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1053c4aa rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d48b5c rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x124bdbce svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14b462ac rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16aae3c4 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17784c0c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17faa554 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x181e2781 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1993d26f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19fd4a0d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b43d079 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ecc4642 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fbacb96 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2149d926 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21820965 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ca8f63 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22424331 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248bde66 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25cd272c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272a8e53 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275910f8 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27bf31f6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29ae5e05 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a30609e rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b8b8320 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bcac98d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d3d4c02 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f584fac xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x308c9172 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30abcfe6 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x319b442e xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32364a22 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33fd79fa rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3462888a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348655ce auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c25cc9 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3587cc7f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3956c073 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b801296 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c035bc0 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d557b91 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5f02a8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f88b69d rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd9dc3c cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41dd85fd xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435d202b svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4480d371 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4485505a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4593954a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47db3dbc xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x485837c7 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4af0e234 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c75935c xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d8aadb3 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e73b648 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f71f382 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb42a53 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50148e00 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51b1231f svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522476e6 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53882ba4 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x558d2d3d rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55da9806 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5663baf3 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5688a174 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x569a4b61 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5757e399 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57d18419 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58b0221e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59cab27f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b19b524 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c543c40 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ea6d624 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ffd6c11 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b3febf xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x622891a4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b6f744 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6745efd8 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b05b56 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67dfbec9 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69587895 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fa67f2 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ad479eb rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6adf24cd xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b9ffd49 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c12d156 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c57a83d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4655d8 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ee89896 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ca7200 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7330cc21 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74973283 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x753a315a xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f5412f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x781bd06e svc_xprt_enqueue +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 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f423fc2 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x803e8ce9 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80ca5fc0 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x826e23c0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839ebdc8 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x860a20fc sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x899a2a8d xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a25758e sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a65527d xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b968db1 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc32133 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bdd2610 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db4bc09 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8df243cb svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e362132 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f86760f rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ffacf3b xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9144e06a rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9192c931 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92b9eed3 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93173f91 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96070095 rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9668248f svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x980ea831 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98c68a47 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9939bad9 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d052f9 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b759103 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c601ee1 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca9e763 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e0ac07c xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa046bf3d rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa277d5fc svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa32b43c7 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa511beb5 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa60d45d7 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77afa43 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7ae6579 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae69109b xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaee7b2ae xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2886956 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2b4da46 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb34851f9 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb52b19ee svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6648ba4 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9552309 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbde73dda rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbec5e905 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf18272e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff545b7 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1bdcd08 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1c7460a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc20c8829 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4702242 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ea9732 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52c456c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58cc39f xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5ac966a cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e1364a xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc789b1ae svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83acb49 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb37690d xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc011ddb xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5d1a35 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf60a4ad svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfa6c512 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28ca415 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd483bb78 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4ecc329 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5c59cfd rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5d7ed5b rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6ba4c81 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70d0443 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd84ca3dc xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87d7166 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8cd16aa xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0e8fb7 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc498f86 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdce29a5a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf425359 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe033a48e svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe08709e6 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1181524 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe154bb69 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe230bfea xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24cd1a3 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25c68f0 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe32f7d63 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fc625b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe43f450e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe558ab74 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe65fa479 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6e790cf rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe74b0b74 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f25f26 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e71f32 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2acfaf rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb4205f9 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc2f7cf xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecde0197 rpc_call_start +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 0xeedf9dd4 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf248601a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26778ea rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf283bd7f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ddf0f5 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4847ed8 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ceb15f xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6f072e0 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f98afc svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf85a0935 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfadb3a35 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe1e0a9 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdf4a8ee xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe1b5f3c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe26476e rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe82abcc rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea423f5 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff852e59 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa6e880 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/tls/tls 0x04bbc070 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0x542c82d6 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x614ebcb3 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0x88aeebc2 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 0x06075864 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0a714bec virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0fb00666 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x163f16f1 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1db35322 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c8d00fa virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3de2d219 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3f095a52 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x43478772 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x46304ae7 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4955b966 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4b60225e virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x506dbcc8 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x539de7aa virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6aa8f4db virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x72a09ef3 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7b6b9051 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8c8a0ee3 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x927e9133 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x927f7186 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa9144ac5 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0a2deae virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb29ed35c virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb669d130 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb77f1d04 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb7ab7c6e virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcb0ecb54 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1585345 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9b8850e virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd9e6dd6d virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe2b97bda virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe53ac0b2 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe659a9e1 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf99141be virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0494bf8f vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08176a4c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x192937b5 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25efb5d7 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +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 0x4018cf89 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x455943a3 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f4999df vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6cf43bd5 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6f5d6aa0 vsock_for_each_connected_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 0x95aa114b vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9c6f5c7e vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa3c56e08 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xad9b19d7 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb464a328 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb96f1666 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdf9b4cb4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdfc39064 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xecf29b4f vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xee0e7943 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf8cdf9f2 vsock_add_pending +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x023d62b6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x09298626 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24dcb8d4 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3546b401 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62875740 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x749bb833 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a8c6a1a cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91102926 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9a11ee09 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa47007b5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc928d559 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca56abb7 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xce65ebaf cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe6b9ba47 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xed462b28 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xff48c093 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +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 0x1b29c8df ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x27671b61 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x287540c7 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf444ea8d 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 0xb5d2429f 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 0x000f8035 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x12871510 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x1f4d3f63 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x32965cb4 snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x3427a1bc snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x548fb522 snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x633a771f snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x6a02454d snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x704f7c71 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x80c83831 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x86d76732 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x88126a2b snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x8a070da1 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0x9123910c snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0xa9d271ad snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xd0b24eb6 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xe277ed2c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xe3d1d9fd snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xe68900a0 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xd6ce26b8 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xf277d74a 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 0x0b394aad snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x12e9cf48 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2f413b61 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x31dda347 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x37916c6b snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42155f7d snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x572c9269 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x652af258 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9c6e2de0 snd_pcm_fill_iec958_consumer +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 0xac3f5d64 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb193635e _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcba10bd2 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd0756b50 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfc2debad snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1330eb57 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x40bbf9ba snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4d6b2385 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x53be6a26 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x64e24d24 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7f55e85a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xae84c913 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbf0b7237 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc44f9ec5 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd0b37461 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd62a81b9 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd9b7f4c5 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x8843fee0 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0xd8008452 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0f88d51f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x202973b2 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3d620adf amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x43807044 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4f0da0ef amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x694683f3 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa419bfc9 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6602c2b amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa712fb4e amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc5689c69 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xda7d3249 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xddc4310c amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe808ed28 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01d29373 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08846721 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0ab58004 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bb85bde snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e68b1be snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x146ef00a snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b51cf48 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ffb9e3b snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d40c6d snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2b4acabc snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bf57573 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2f2b9cd0 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36da5638 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x396037f7 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x419c75f6 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42081690 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42716284 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43977478 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x453dc78c snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x476457d1 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54cf2347 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x598f93d6 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a0395cb snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5bf57100 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c0534ed snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e3a9b3e snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60338449 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60ae4dbc snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x621daa22 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65db1d99 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69c3f6a9 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cd3077e snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70f166a1 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x715e0e1f snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73470a4a snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74bf202e 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 0x77ec3ac8 snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x794efc8f snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c5740d0 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d7b1d34 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e7be678 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87178aa1 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88dca9ab snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b558bb6 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d9b85af snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e731660 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f0f25ea snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9084dfe6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90bfc92f snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90d1d71d snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93480073 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x935e79ff snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9417bff2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9637a8fc snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ac0dc39 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d676a83 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac0da1b9 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad17cb91 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf6a2ea0 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafbd07dd snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0f35eb7 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb94d636e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbe0c395 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf9f4f9e snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5025d08 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8a4efd5 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca253fb5 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce496bcb snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd42b3124 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd652e6e5 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd97bc8a5 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde4c6ad3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe1548c29 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5d9a1e5 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0f3c679 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf197bee6 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ccdba3 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1ec1ae4 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf2fd03a4 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf37f2fdf snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5e79e20 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf60f6c67 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf658afe1 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7e9ad84 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8128282 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2c5663a9 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xad7c4ad4 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x12e6a3a8 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3969797c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x43262d2e snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb498a19b snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb550d92a snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbcaf461d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03a5c39b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03c53e41 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x042d9a1e azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04abfec4 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05c4cff0 snd_hda_override_amp_caps +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 0x0b01c704 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b0ec757 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c1a5290 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e983d1f snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x112395a2 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12cca9ee snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14d58b20 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1701c6a3 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e19efa snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b7f20aa snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d8cbb83 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d92695f snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e12dbb2 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x201de92c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2065a350 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20ad94c6 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21c9f219 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21dc23d6 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x255f652b azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27fb5c69 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ac92789 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b057205 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c7d3c43 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2dbdcecb snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e1c9b25 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x321f2829 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3994a436 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa383ab snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b42ae04 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b769894 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bf3c0fa snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cb5d132 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d164c06 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f651f9a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49dde2ce __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4acdcccd snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ce104e2 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f2a406b snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fbdd36f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x515d3912 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x546fe308 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56c0637b snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5748fa1a snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ae1722e __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bd23a89 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x609271db snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61b6352d snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65cf3301 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66270758 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f1472c snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6df2dd86 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7080cc46 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71961002 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x747543cf snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74c0b1be snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74ca9ecb snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76af26d4 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7760fc41 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77989d2d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78c1bdcd __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c137d9a snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e3d76ad snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87f463d6 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x890dc08f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ca253e9 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x901c2cc7 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97c282c8 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9855e568 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98de23f4 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bc896d2 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd298fe snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9df48f5f snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f4e1bf0 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1179b33 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3ed3f03 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa43307c7 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4a83807 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5726da9 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa69835d9 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7e58a2b snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa5aea7f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadbd22ff azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb16aa9fb snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2ed59eb snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb34e7e38 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb790e87d snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c14e7d is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c1acb9 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8f3df19 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb90779cf snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba8a64bd snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbaad1a7 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbd06d21 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc1222dc snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd340493 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe38922f snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0686c54 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc17af420 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc61c8fa1 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6d0ba9b snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc75380d1 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7d551c5 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8c3061a azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcab46987 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd745c75 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcddec9a7 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd19616b9 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd41208c9 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd490451a snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5b314fd azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8f7345d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda5b5176 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd872bff snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe053303f snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2270c84 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeccb47de snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed0d47c6 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed76e0d5 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee86695b snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf18c5c05 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf629456b _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6ce0619 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc670dc8 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd82d3d7 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a51e062 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x25dbc8eb snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x293e8a34 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x33b1ca67 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x369f5de4 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x556418b0 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64e9ff2b snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x650a3615 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6880c3a9 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7187384d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7244b718 snd_hda_gen_add_mute_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 0x7870c45a snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x808339d0 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8cf59a70 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa53e1c01 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb4ae1e53 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb509a443 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd51dd990 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec88fc94 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xecc7d426 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeee18b22 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 0xb252714a adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x5b283867 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x6f872d87 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0e32955c adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x28063b8a adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x2c72935a adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4fad7016 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5b0dceb5 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x773d70dd adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xa5f8ecf3 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaa873cb7 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdc4a8c5e adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xfd971445 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x210d515f adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x382c815d cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x88066a29 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8b88fd3f cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0a090054 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x1518a096 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2557d572 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2f17004d cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5900aa34 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6ab21667 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8e43fc02 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9483e65d cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x9fc099fd cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb0fb62ea cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe1e5b48f cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xed60a832 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xef55aceb cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0297387d 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 0x83d1b674 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x43f01a7c cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x6f57e41f cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x790f7b48 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xaf1a136a cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc41eeba4 cs42l51_resume +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 0x80506e61 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xe72f5d89 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfb2a1fac cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x588a4338 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x6359f20d es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x399dbb2b lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xce40366d lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x1842416b max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x81421b95 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xabdc62ab max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xf59fc843 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x4393b5c5 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x637635c3 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xcb7fdc09 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xfbb8b420 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x60aa6a82 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x104ec57d nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x4e093f38 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x667f4c28 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xc4271742 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa55dbf4f pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc397bb6a pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x345795a0 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x6f24c2ba pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x447aebd7 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x8bcc8232 pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc7cbd3af pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdd1834b5 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x34e826fe pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x45f73020 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd565c57e pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xf26e61fd 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-rt5640 0x1b7fa993 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6711ee62 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x87ede236 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x88dbdb0d rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xccb715e8 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf2f30870 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x3b74774c rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xdf69a2eb rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x0dd0d3e1 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x092c069b rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x24206396 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 0x36c2c438 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x53cb0ac7 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 0x63767ebd rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6a9a6f85 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x79945bca rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7dab29b5 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x80b7ca16 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x92a3e0c9 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf8461c49 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4e0c2f43 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x793670ee sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x837d3a53 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9f0b04be sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xffbe80b5 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xdb3e7c25 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xd6f10972 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x4674fc85 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x65e877ae ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3cf05971 aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x07734d22 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x8bea57cd 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 0x3c6d5ce8 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x420f5ab5 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6b0be274 wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x79b0891f wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xdfc0d126 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x031431a6 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a3fd4f5 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x19401a31 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x366fe86d 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 0x571ea5a2 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x66cb62ef wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74bee096 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x778ab014 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x88cb8a4c wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x894458f3 wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f7bf2d2 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8fb5228e wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x916b40f7 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x91d0e753 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x96f4be72 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb71896da wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb8fa5391 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xba93e8c0 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbbf035b8 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc9b28688 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd035bf2a wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd759223f wm_adsp_compr_set_params +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 0xf644703a wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf8d0eb18 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfb06a50d wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x1e3ec2ca wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xea025d4a wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5448e936 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6dd7dc3d wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x805d808a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x937720e9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8c533e10 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4ecd6a7b wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3ec7d749 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 0x3c54d715 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x815ab97f audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x954655f6 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x9f139ea8 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xa8f0f166 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x018dbbb5 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x071890f6 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1f6f8118 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x22d2eec9 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2eeca0fb asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2f62ad33 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c47ef04 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3e783ddf asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40915af4 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x40f8c3d8 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x58c625e7 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x69d5f521 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x726a4588 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75e603cc asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x86bca128 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x87d883c4 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa66edc53 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa90b6e32 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbbad36a9 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbf8c1232 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd68a2b22 asoc_simple_parse_convert +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 0xf5b46f81 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02b13176 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0563ea81 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05a59d58 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06215248 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0694bdff snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0908d90d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a0de8c8 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a563fdd snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b129739 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c3cafdb snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c58dfac snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0caf578d snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f95ba50 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x109a280a snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10a29750 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14bb3402 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1569037d snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x157abece snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15c31879 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15f10467 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16420dca snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184ab928 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a0dc1b5 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1be68f83 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d8f902b snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eac27bc snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2109d27a snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x239b378e devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23bd675c snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23fa9f19 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x242096fc snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29154c44 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b2e2592 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b5ec210 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba6bd69 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bd3272b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d27351e snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d627382 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e74d5cc devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f1660f5 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f57aaa9 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30867c57 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x316ae5e9 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31b81043 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322f5255 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33fae84b devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34c75237 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3518c101 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39dfc3fe snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a81e750 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ac83e82 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c805dbf soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x417eb745 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x420f56a6 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452cb0a3 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4661c0c4 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4708a425 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x475e0985 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x492b1396 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af09801 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b740cd6 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb2f2ac snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51aae9f5 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51e3f618 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5344e799 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53f2317f snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54a684f4 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55131ebe snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55cc5f36 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56438472 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56d5d6ff snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57a583b3 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57c6d1c4 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x599eebef snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b7c59aa snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5baa0382 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bb0697e snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bfb597e snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cba63ee snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6094f199 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x618eb78d snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61f1c9a4 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6309c788 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x639fc380 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64cb80df snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x663aedaf snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6648d103 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x670c91ac snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6957be68 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a0d1827 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b39097a snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b418b46 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bb1cb6d snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bcb2cf4 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bd24993 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d061f40 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d89a346 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f562a6d snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x704eea37 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71376150 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71babd29 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7508840d snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75458a90 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ab3007 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75d5fb2d snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bda83f6 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fbef5c5 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808579cb snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8621390a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87ec61f1 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8999e778 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ae46825 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d370b58 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e781201 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x911d0322 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91473198 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91495d8e snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926ce706 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x931c2e5a snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9339a6f6 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9369c378 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93e6ee9b snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94678e63 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fb627c snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97c77adb snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97df0e84 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x993b50a4 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9948fa72 snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a91a8a8 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b133969 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b599b2d snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c62c7f3 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c719847 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d852345 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0827b13 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c96084 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa43926ae snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa90ba7d9 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabef068b snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadc7ce26 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaff8456a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0af8cd9 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e173ac snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e4e1e0 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb138f4b8 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb20ee9ff snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4fde4e9 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a0ffa8 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb93f6acd snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb29922b snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc28e083 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc052b7 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcde8e27 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd0b9a91 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe4287e1 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf43c70a dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc082563a snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0a8d829 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0f9b260 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc16536d4 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2c8d7a0 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc457fe6f snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc46d6f9e snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb7b6590 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb24117 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbb4fc39 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc0db25 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcde1f52f dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce1656ef snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf0c3a6c snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0ca0d2a snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd178c488 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2a203d5 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3706ab2 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd433cbe4 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8d14f14 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd98d237d devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbccbea5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbce1384 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd139f6d snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddc97acf snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdec5e1cb snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdede4176 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfd0aa0a snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe30f09d7 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f39719 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe617457b snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6d45510 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe74aac17 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b58a25 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9057301 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe938840b snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebc0b9cc snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec341e9d snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xede179d5 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee60f3a4 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee6406ab snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeeea3c8c snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefad03b9 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf07522cf snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0a2ac7f snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf11ba476 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2e447e3 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf36afbd9 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4177e2d snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7c6b409 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb97c9cb snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbaf637b snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc1228a6 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x028e6731 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x03c33991 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x18e8b2ff line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1b8ea1f2 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 0x337e75e0 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7375baba line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8d9c3cc7 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x92a35873 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa4574622 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa4913ede line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xba2e7b05 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb89ff31 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc5574b3f line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcb2ecb8c line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdd3aaf3c line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4c593ad line6_probe +EXPORT_SYMBOL_GPL vmlinux 0x002200d3 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00239988 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x003bfdb2 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x00454a0a devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x004db007 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x00562518 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x00593275 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x006710b9 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x006e8068 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008a2b9d pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x00a66f6c inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x00ad1ede __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x00cb3be5 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x00d099b1 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d6cb34 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x00e46927 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x00e7d78b get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0102f9d5 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x0121c5c2 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x012774b0 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x0140620f spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x01432417 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x0156cb7b sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0159c819 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x01776dd5 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x017791f0 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x017cbf58 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01907648 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x019112a6 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x01922f34 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x019498b8 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x019c54f5 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x019f1035 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01aa4972 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e7e6b7 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02138387 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x0213a8e6 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02440321 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0245103f pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024d5506 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x025e3e8a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x026d1526 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x026e1712 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x026ea989 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x027dcd1a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x0284321b dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x028f0476 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x029d6bad crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x02a84b7a fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x02bb9986 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x02c1875b rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02dce5e8 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x02ed2705 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x02f4e00b ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x030f443a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0313e496 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x031ae819 dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0325bbce vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0332a213 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033a2e51 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0353c6a9 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x0354c916 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x0358b897 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03730ddb of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x037badfd dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x038eb3a7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039944a8 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x03ae3a20 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x03b65492 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x03b89d67 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03ca6a1a nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d4a285 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x03e11898 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x03f0f2d0 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x03f9b32d tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04258796 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x042c04f6 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x04395910 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x046f6e2f blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x047064c7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x0478485f regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x04932c74 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x0497863d pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x04992b68 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x049c0171 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x049e3ee9 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04c9183d pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x04cc5bca shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e9e85f pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x04fba19f usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x0526f377 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x05400571 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x05464841 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05564eda usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x0558ab4a freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x05590c83 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x055a7b2d iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x055b8217 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05691001 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x056aae8e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x056ae989 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x05ad0ace posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x05c130e8 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x05d2c0c6 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x05d89535 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x05dccd3c dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x05eece3c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x05f1c8e6 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x0603de1e usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x060f8834 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x0617b7e6 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0621a86b dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06285d2a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x063c2b43 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0679949c of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x068aa67a devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x0696c661 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x069ffb66 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x06a1f56b vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x06b61b18 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x06c52ce0 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06e3b666 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x07097686 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x0709ebd3 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x071b0a86 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x0758ca7e __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x075e9727 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x0780c3fa fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x0784dd98 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b70b1c power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d4d192 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x07e62da5 decrementer_max +EXPORT_SYMBOL_GPL vmlinux 0x07f766e2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x08025739 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081b980c pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x081f4f8a pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x08222851 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x083f5294 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x084418bd bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x0847eb33 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x0851f509 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x08529394 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x086a1b28 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088a86fd fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x089ff7dc regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08b523f1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x08bbb207 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08ddf749 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x08e2bab7 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x08e77d29 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x0904c4eb __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x091216d9 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x0916d722 sysfs_remove_link +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 0x09745721 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x097a5e35 vas_register_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0x097fc857 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x098c4e42 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x09952284 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x09973e74 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x099b14f2 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x09a7409f xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x09a7f86e wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b5b2e8 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09d83ef6 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x09dc5eac hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0x09e70363 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x09ed2a43 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x0a26e2dc virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x0a275be0 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x0a328fbd rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x0a3a0e1c phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x0a41a37c hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a529a89 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x0a5691ab zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0a62e909 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0a66554b vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x0a6a99e5 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a852d9b dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x0a94684a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0a9c5a7a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0x0aa142f5 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x0aaa1dc7 kvmppc_save_user_regs +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0acad5bd nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0aceaffe regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0acebe73 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0ad85fe4 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x0adbecac alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x0af13131 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x0af22d6a serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af4798b usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0aff1ce4 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0b0510b9 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b186222 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b317ca9 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x0b3c54c6 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b41d76b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x0b5f5cee generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x0b60265f regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x0b91fda1 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0bad72ac fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x0bb12c79 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbf6bc4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x0bcf0e32 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x0bcf96e4 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0bd24910 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x0be29867 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x0bee671b of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c047599 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0c095cbb devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0c0b71b0 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x0c0c132b dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x0c1d2f6e clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x0c1f3632 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x0c26b130 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c39a4ea sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x0c3dd5b8 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x0c402cac replay_system_reset +EXPORT_SYMBOL_GPL vmlinux 0x0c4e4200 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x0c580ca2 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x0c6124f6 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0ca61f60 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x0cab1cb3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0cb9a778 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0cead399 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0cf24224 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0d092b38 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0d09661b dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x0d125ab6 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x0d156a6f debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x0d258a7b thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x0d389db7 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d429843 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4711c7 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d496a54 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0d49e04f eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0x0d50bfbf elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d7f0a73 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0d95260d dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x0db919e1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x0dc7e01d simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x0dd5a05b dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0de8861e bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x0df50594 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x0e0a168b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x0e0b9940 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e322112 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0e379bab usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x0e468f2e da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e4a532a bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x0e4f9f52 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x0e521b82 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e60e877 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x0e61ea0d component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x0e629254 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e8055e3 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0e878519 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e8bbe10 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x0ea2a72b usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x0ea6a18d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x0ea94167 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x0ead818a page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ed29448 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0ee28fba clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x0ee8e400 kvmppc_h_set_xdabr +EXPORT_SYMBOL_GPL vmlinux 0x0ee9944a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0eec7176 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0ef07bcb pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f03f918 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x0f097e24 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f23d709 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x0f25ac9f perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x0f2f23a4 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x0f35efa8 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x0f3dc715 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0f43252f spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x0f49c948 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x0f5bad01 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0f60f337 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x0f68aa6e sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x0f726abf crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x0f8f082f synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x0f9df41a usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc865 of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fb74564 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fc246d4 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x0fc66d18 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd9c068 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x0feba8cb fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x10015de4 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x100a5a28 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x100ea0cc power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10207fa9 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x103e0c0d regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x104bb69f iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x104c3347 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1066a450 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x10686d31 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1068ba5b iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1088388b of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108c9646 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x108d4fa0 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x109e2916 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x10b77a09 kvmppc_p9_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x10c2004b dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x10c87ab2 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fe219a __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x1101dc9a fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x1117f2f3 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1119dc35 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x111e6dfc pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x1127dcc0 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1136cfbf irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x113b1688 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x113b3fc7 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x11551196 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1158f8e3 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x11638a69 xive_native_alloc_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x116c233a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x116ccc97 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x116f7fa8 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x117c2f24 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x117eea7b divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x118b539e blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0x11997ced led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x11a938c9 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x11ad70d8 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x11c155d3 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x11ca8615 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x11d28c3f pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x11d8a2d4 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x11de6925 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e7d726 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x11ff61ed wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1201ec42 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x1203a4fe device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x1217b5fc irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12211d03 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x12237fc3 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x122ce299 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1240d411 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x12437e32 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12581577 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x12661fb6 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126eb335 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x1285af47 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x129c9394 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x12a3b507 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x12c015d5 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x12c25e51 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x12c6dc1d dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x12e52676 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12faceb7 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x130a6304 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13261012 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x132c9f39 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1354c0a6 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x1358fba5 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x13700078 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x13711ac9 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1372e6cb ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1376982c __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x137e955c iommu_tce_table_put +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13935b2e add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x13945a74 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x13b902bc dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x13bd1ceb mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d2ca0c dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x13dd8110 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x13e5fe7c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fc3621 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14160e85 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x141dc82d skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x143efec9 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x14436801 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14765eca regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x147e1c7b skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x149683c1 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x14aeef55 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x14b63b92 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x14b6febf devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x14c1be56 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x14d4dc25 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x14e9f089 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x14f0b7e2 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x14ff43d3 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x150a572a md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x150ec44a rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x15119189 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x151d3652 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x15202e7e usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x15294601 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x152c6cce __class_register +EXPORT_SYMBOL_GPL vmlinux 0x1537c7f2 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1543da77 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1562339f iommu_flush_tce +EXPORT_SYMBOL_GPL vmlinux 0x15693acf fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x15714802 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a0e99e skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15c9ce06 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x15cdf85d pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x15e04491 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f3c2ef ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x15fd52bb of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x1604c89e led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x160f3baa xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x162d27b1 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x16369a27 xive_native_sync_queue +EXPORT_SYMBOL_GPL vmlinux 0x16383c53 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x163fccab __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x166e225f fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x16749cab regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1685b5d9 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x169e4285 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16c5ec08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x16cb8215 power_supply_class +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 0x16ed2917 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x16f23aba pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x16f3ee31 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0x16f8cb20 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1714c2b7 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x171874b2 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x1723313e pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x17273253 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1737ef5b gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x17528d89 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17613e1f rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x1779a2d0 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17815b1e __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x178bedb1 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x179edebe kvmppc_h_clear_mod +EXPORT_SYMBOL_GPL vmlinux 0x17a31743 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x17b5189d fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x17c2cbfc hash__alloc_context_id +EXPORT_SYMBOL_GPL vmlinux 0x17c83344 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1802ad79 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x18276a0f od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x182b91f9 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x18356ed2 vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0x183792f8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1843e540 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x185adb50 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x18654dea trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x1866c012 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x187606bb virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x18819bd1 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x1884430e cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x188c141f pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x1890a662 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x18965763 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b9492d adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x18be0063 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x18cb948a dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x18dee5e6 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fb88b3 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0x1909d0d5 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x190a31e7 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x190e5c1d spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1910a0bf dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x19139fb0 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1943bd33 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1951d34d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x19598212 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x195e6b53 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x19675863 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1968207a blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x196b11a7 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x196f0c8b badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b3af74 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c7f647 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x19c97d6d get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x19d0a0b2 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x19d93f6d __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19dfe5ec crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19ee90da of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x19ffb20b inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1a061950 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x1a0f4fba regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a11a7fc irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1e8472 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x1a2607cf regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1a2c55db tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a2c6230 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x1a558445 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x1a5c30c2 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1a5eafd5 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a690a3f auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7e30a7 input_class +EXPORT_SYMBOL_GPL vmlinux 0x1a834ee0 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a9c20b1 xive_cleanup_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1aa63736 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x1abf44a9 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad47e06 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x1ae85ed4 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af611a6 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x1af8f5d2 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x1b08e1a5 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x1b2d613d genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x1b320af7 pnv_pci_get_presence_state +EXPORT_SYMBOL_GPL vmlinux 0x1b3faa45 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1b4dc291 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5ac30c nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1b707216 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1b7669ed pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x1b7d669d cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b85ebcb blkcg_deactivate_policy +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 0x1b9d61b3 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcb7151 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x1bd3d7eb nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x1bddfde8 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1be921c4 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x1bea723a rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c0631cb bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1c1a0fe1 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1c28fbf6 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x1c2ef225 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c556dc8 l3mdev_table_lookup_unregister +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 0x1c7114df of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1c76937e tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c78ebca nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1c7df74c kvm_hv_vm_activated +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88657b i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x1c8bca8d emulate_vsx_store +EXPORT_SYMBOL_GPL vmlinux 0x1c8e2fed usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x1ca169ae sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x1cba415e clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc00362 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1cc094df dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x1cc987f3 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1cd5a3a1 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x1cef3226 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0x1cf0fd9f restore_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1d148155 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x1d2056ee phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d24466e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1d251d71 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x1d4ab6e9 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d4c7940 iommu_tce_kill +EXPORT_SYMBOL_GPL vmlinux 0x1d51e8b4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x1d725e59 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x1d73012d kvmppc_update_dirty_map +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d850144 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x1d888e12 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x1d9202c4 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x1d9efd21 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1da6f4df pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x1db9927b device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x1dd8e6ac irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x1df33284 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x1df9e692 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0cf235 opal_get_sensor_data_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1e2d848e sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1e408669 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e438d16 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x1e4a2394 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x1e4e2556 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5c369d clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1e65eebf gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7cc785 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x1e81d00d sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x1e81f49a serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e8389e1 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e883649 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9170a8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1e93e14a blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eafd61e usb_hcd_start_port_resume +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 0x1edac5c3 xive_native_enable_vp +EXPORT_SYMBOL_GPL vmlinux 0x1ee4d4fb ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1ee9fd5a led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efa35d9 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1efabdfa pseries_eeh_init_edev_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1f050e36 pnv_pci_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x1f0fcf9f regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f4590b0 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1f4b8615 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f7d5262 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f85947a of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f92399d icc_get +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb1dc2e irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1fcf1b40 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x1fd34df1 dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x1fdb2659 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1ff1e5f9 of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x1ff9aaf7 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x2009ca2d usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200d4550 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20324a3d rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x203e2317 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x204067ff vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x204ace40 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x20699181 pnv_ocxl_set_tl_conf +EXPORT_SYMBOL_GPL vmlinux 0x20705f2b regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x207c2b1a tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x208c7193 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2093ab9a of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x20988e9b icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x209cdc41 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x209e57b3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x20a29553 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x20b3c1ab debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x20cfe897 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x20d15441 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x20e33916 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x2108f3e1 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x212b5343 led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x21305f11 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x21385152 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x2138d404 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2147805b proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x21491487 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x214a494c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2169cfc9 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21abc79e fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c8af8e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d4d98b pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x21daa116 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x21fe8d29 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2214bc1e dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2224ac49 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22253c0c remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x2237af2d dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0x22430127 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x22472028 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x225a43c7 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x226e0802 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x229529a9 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x229e81c4 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x22a322e2 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x22a83e8a of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b4ebac to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x22c17b6c kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x22c22bd4 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x22d3efb8 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x22d4bd4a devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22da6ded eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x22ef0cab disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x22fdf65f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x2302a807 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x230c3449 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x23111ece netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2315ff49 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2341fa9f of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x235a9b56 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x235d7e65 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x235dc0d0 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x236cace5 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x236e7467 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x2372f8bb watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x23779690 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x237c4f34 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x238181a5 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x2384c653 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23880e0b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239e0c4d clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x23b26884 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x23b9d5a5 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23d5e2c7 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x23e095b6 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x23f3063e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x23f4e80f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x24064c67 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x241de1db crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242af0ca irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x24337309 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x2437fed1 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x24590670 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x245ee4b1 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x24638e92 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x246e58f5 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x24736aa5 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x24754c07 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x248452d4 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2486464f sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x248812f9 device_add +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24aae132 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b9f356 mmu_partition_table_set_entry +EXPORT_SYMBOL_GPL vmlinux 0x24bb9eef kvmppc_host_rm_ops_hv +EXPORT_SYMBOL_GPL vmlinux 0x24c2f984 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x24cceede crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e58b8c net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ecb936 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24fdfd37 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x25104b08 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x2512aa1b cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x252151d4 kvmppc_save_current_sprs +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x255878ec ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x2559d24d kvmppc_h_set_dabr +EXPORT_SYMBOL_GPL vmlinux 0x2574d9bd net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x25785a05 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x257b3a5a pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x259248d2 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x259564eb __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x25af5e94 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bce9a6 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x25c4f87b pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x25cb1ce9 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x25da8845 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x25dddb2a tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x25f662a3 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x2600849d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2636e159 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x2640f72f tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2656772e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2666685f crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x268b7f08 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x26918054 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2692b936 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x269e78a1 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x26a19e6f bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x26aa1426 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26b31093 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e9889e devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x272721ee unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x272ebd54 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x2740be5d devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x27462dd3 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x27475c29 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27592e7c pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2766802f unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x27739cd5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x2777a1a8 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x27859b17 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x27884fd2 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x279aba79 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x27a571ce iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x27a79eab __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x27b35a8a serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x27bb25f7 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x27c820e0 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x27ce3ec0 cpu_latency_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x27d413be blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e144a2 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f96bdc kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb3eeb iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x281944c2 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282f8667 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2835fad5 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x283cc33e regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2857f0e4 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2868d4f0 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2897d59a devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a634bf edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x28a8f935 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab4fb9 pinctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x28b030d2 of_overlay_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28bd5d07 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x28c8a3db mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x28cbe831 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x28d65363 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x28dd4c84 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x28e2c9c0 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x28f20347 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x28f5bf7f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x28f6ec84 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x28fce434 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x2907c1e0 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x2908d79d mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29311d44 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x293989eb kvm_alloc_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0x293edeef splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x2940032d pnv_pci_get_power_state +EXPORT_SYMBOL_GPL vmlinux 0x294226c1 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x294a608a divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x294bdab4 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2950f7d9 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x2970139f get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x298575d3 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x298c5792 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x2990186e usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x29aa48d0 radix__flush_tlb_lpid_page +EXPORT_SYMBOL_GPL vmlinux 0x29ac8ada pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x29b49515 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x29bafe84 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x29c4f223 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x29d14bd2 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x29d94531 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x29e623ed bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x29e9bec0 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f10b8b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x29f5b418 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x29fb8e24 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2a0d7fd2 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x2a1b0a1c isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x2a29a8b9 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2a336698 opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0x2a42cf8c pci_find_bus_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2a480369 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2a527211 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x2a5981e9 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a77f7d1 __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x2a7e659f uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a8a0d17 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2a8f149c __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9cd587 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0x2abec62a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x2ac1e3bb pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2acd0f9d crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x2acdd798 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x2ada7bdc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2af3879d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2af60b78 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x2b191253 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x2b19193d fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x2b1bae0e cpu_to_core_id +EXPORT_SYMBOL_GPL vmlinux 0x2b1fba0f xive_native_disable_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b2785e5 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x2b2e3007 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2b3ad650 _proc_mkdir +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 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b79781d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2b7f99f0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2b9427cb phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9a86ac device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x2ba31402 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2bb1100a pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x2bb1cb97 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x2bb2a768 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x2bb9095f radix__flush_pwc_lpid +EXPORT_SYMBOL_GPL vmlinux 0x2bd68f49 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bdfb156 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x2be08478 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x2bec6275 split_page +EXPORT_SYMBOL_GPL vmlinux 0x2becb7e8 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x2c0ab51a ahash_register_instance +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 0x2c596fcb usb_role_switch_register +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 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9b1c26 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x2c9edac4 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x2cb3f54f dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x2cb77c40 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x2cd5df3a opal_ipmi_send +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2cde1be4 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ce403dd of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x2ce52235 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cef6105 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x2cef61a2 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x2cfc2d08 of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x2cfe0132 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x2d16d90d pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1c4ddf fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2d1f3e65 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x2d263960 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d305c96 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d307fd8 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x2d3b8352 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d5db41b __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x2d5ec75a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d6046ca devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6462e3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x2d678898 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2d6a0002 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x2d7592a6 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d7d09a7 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x2d80fe02 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x2d97bc9a clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x2da14cea tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x2dbf90b6 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2dc918c0 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de885eb tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2df45bcd dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x2df9bbfa pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x2dfefa42 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e214a62 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e359ff2 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2e4fddef lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x2e59822f irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2e5aca2c of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e6d309d unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0x2e8afb4f vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0x2e9ba1af fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x2eb59408 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2eb9bfee devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ecaf8e5 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ed7e78e crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2ee3301f dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2ee82c5d dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x2eea2ebd elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x2eec9803 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x2ef513d7 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2f051107 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f32412d devres_add +EXPORT_SYMBOL_GPL vmlinux 0x2f3ab856 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f3c48a5 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f4aef47 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f4b2a4a device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x2f4cb430 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x2f69b3be ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2f6ba333 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x2f6dcfe2 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x2f87c0a5 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x2f8a850d device_create +EXPORT_SYMBOL_GPL vmlinux 0x2f98cf1a xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2fb2a593 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc71d20 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x2fdf15fc __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2fe0a19f irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2ff7868b crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x2ffbd18c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30029f0c tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x300417fd ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x300f615d folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301c5225 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x302d01a6 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x3050e6b3 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x3055020d encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x305f5f18 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x307ed4fa gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x308245f3 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x3087fcfc clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x309a912c iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x30a2c048 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x30bdbfd0 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x30bdee6d xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x30be2126 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x30c13570 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x30c3d26e usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x30d82191 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x30e0b588 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x30e23d83 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x30fe31a1 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x30fe58ed clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310273a4 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x31119e31 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3117e2e9 kvmppc_msr_hard_disable_set_facilities +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31269173 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x3128fefc devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x312d715d of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x313564c8 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x313a06bf ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x3149224b pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3161a1d5 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x317750a8 power_supply_charge_behaviour_show +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 0x319dfcc1 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31aeaff8 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d37806 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x31d4362f md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x31fb8d51 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x31fb9b51 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x31fbcb94 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x321fd7df irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32283bf8 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x32324a97 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x3244ed37 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32682025 pci_remove_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x32804d31 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x328076be ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x32aa98d5 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c9bece serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x32c9c9a3 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x32d69f47 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x32df26af usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e35fbc tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x32e57f13 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x32e9d97c dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3303f55c devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3313a7de sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x33389c0a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x333e4a9b xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0x334930d8 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x335957ce regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x337fb069 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x3380a2b8 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x33902251 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x33b31526 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x33cd8188 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x33dc4d62 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f1b319 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x340f52e8 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x341193fd fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x342fb176 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3449a558 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x344de5ce wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x344de686 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345f7623 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3464f5e6 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x3477880d __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x349fc048 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34c693ee dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x34dfd0a9 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x34e07868 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34ebe246 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x34f20735 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x35018dcc device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x35038a9e posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353af18b device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x353c9635 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3540f3cd inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3548f681 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x35602905 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35672507 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x3567f64a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x357777da ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x358704ba raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a51220 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x35a7633f xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x35cc4987 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x35cf6944 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x35dfb921 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x35f458fb dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x35f79a74 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x360b44f3 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x36141c51 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x361c730c devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x361de87c device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x36363488 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x3645db2f pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x364b0366 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x36580913 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x36610904 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x366ebe28 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x367dba44 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b55753 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x36b5dcb0 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x36ca915b iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x36d4c71a pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x36dd7f5b locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3752becb __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x375aea70 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x376241ad debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x3767cbe6 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x37769d8e ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x377b8f7e xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x3788c262 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x378b949e device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x378f21d1 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x37976600 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x37aa0492 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x37b75001 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37d067d3 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x37da9dfd fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x37dc8acb vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x37e96227 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x37eaea90 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x37feaaf6 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38173032 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x381f8cf8 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x38235886 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x382f2479 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383ccad6 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x384efa30 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x3857086c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x385a007c usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38678401 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x38865fb9 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x388f6efd of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a09828 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b46249 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x38bc936f virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x38c7c425 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x38d0222c gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x38d23562 badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x38debaea xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38feef7e hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x39019a20 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x391899c7 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3924d52e pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0x3936bc46 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x3938737a ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x394dc5ce sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x394e0154 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x395928fa devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x396e89ac blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x39738134 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x39856777 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x398f9dae mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x399dc04d vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b3debe xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c65e2e power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x39cec1d4 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x39d3d327 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3a19c7fa __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3a219784 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x3a22194a sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a520c4b ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a562711 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x3a69c206 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a76ad99 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a803310 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa58c46 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3ab4de3e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x3ab55616 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x3ab80fa1 pnv_pci_get_slot_id +EXPORT_SYMBOL_GPL vmlinux 0x3ab9d6f6 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x3ac9c0fb iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad293ce syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x3ad43185 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x3adc3fe1 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x3aed2135 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x3afea682 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x3aff0ddc l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3b036e5e md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3b0d84f8 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3b26de4a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x3b3b48c3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x3b3c7e27 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5d747d blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b757ff3 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b8090d2 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3b8f4788 rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b9a67a7 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3baf1659 put_device +EXPORT_SYMBOL_GPL vmlinux 0x3bb5d1f7 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3bd0309f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdb626f sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bed40da spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3c1bd62e simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2a835a phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c37cbf8 machine_check_print_event_info +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c3ef713 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x3c55746e vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL vmlinux 0x3c58c2fa virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x3c65793a devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6add27 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x3c85e2cd xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x3c8bb6d5 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1277f extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd658a7 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x3ceac9f4 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x3cf1a24b perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3cfb796d kvmppc_save_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x3cff35c6 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3d098ae2 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x3d0b8f02 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x3d328ba2 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x3d37a0b9 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d46cb44 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x3d487b97 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6584a9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3d6666d7 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x3d7719fb device_link_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 0x3d90fd26 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x3d938466 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da2c356 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3db1dfc4 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x3db31b1d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x3db8a8da early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x3dbab726 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x3dbc51ee create_signature +EXPORT_SYMBOL_GPL vmlinux 0x3dbd6d96 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x3dbd81d5 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x3dc9e6ab pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x3dcdd498 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x3dda88c8 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3ddb0372 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x3de5e56b thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df6efe6 pnv_ocxl_unmap_lpar +EXPORT_SYMBOL_GPL vmlinux 0x3df96f9e security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3e0a7ede pci_hp_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x3e0d650a cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x3e10523a trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x3e19cf81 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x3e1e3a4e platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e24ef2b fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x3e27d569 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x3e3c8e4a devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3e3caec7 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x3e43c4e9 of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x3e536340 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3e5a72f7 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7e14db copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x3e93dda2 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x3ea1e11c nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x3eb19328 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x3ebb32c6 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x3ebe138c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3ecdaa2b __find_linux_pte +EXPORT_SYMBOL_GPL vmlinux 0x3ee0af55 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3eeca07d pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef373b5 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x3f054a22 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x3f060583 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x3f194cf6 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x3f1b0619 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x3f2526ba devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x3f26d182 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x3f308066 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f36c8ad i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x3f41340f icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f57c1cf ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x3f64df31 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x3f688779 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3f799ee0 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3f801f38 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x3f81c5a8 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f85570e irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x3f88ef35 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x3faa540c fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x3fd7736d cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe0d1a4 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff43fe8 pnv_pci_set_tunnel_bar +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400f9de7 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x401bd1ed platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x402fc3ef bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x4034330e __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x403673b4 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x405a6aad usb_enable_ltm +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 0x40748b1b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x408c5dae of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a1daf1 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a32786 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x40a3e386 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x40a6d1dc cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x40b013f3 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x40b2ff7d vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x40b5be99 xive_native_populate_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40bc8411 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x40bd9287 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x40c74b71 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x40d6d8bf vfs_test_lock +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 0x40fa7348 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x410a1edc ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x41123068 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4116ae8c vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x4123ebab pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x412533fa fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x4126b1e2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x41274262 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41495d83 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414d7aae xive_native_get_queue_state +EXPORT_SYMBOL_GPL vmlinux 0x41585a67 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x415fdb0b bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x4165c8de crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4187fc17 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41a829d6 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x41ab0d92 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x41ada5bb clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bc4be8 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x41c35154 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41ef1bb4 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x4200634f kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4227d66a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4228dc45 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x422d13e1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x422f8087 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x42338b6f mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x42378add ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x4241e8f7 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x425034c7 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4269ed12 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x42763b34 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x42783f29 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x427a6799 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x427b5684 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429cff1e skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x42b12f35 of_css +EXPORT_SYMBOL_GPL vmlinux 0x42c2132b debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x42c69c1f kvmppc_check_need_tlb_flush +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42ef0bc4 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42fb3fc5 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x430d4afd __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fdf91 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x431e74b5 device_del +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x433c433b devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x4348205e policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x436e1a75 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438fca7b __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x43a03316 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43b9b20d pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x43bfbbb7 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x43ca903a regcache_sync_region +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 0x441c74db rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x441e3b0e irq_domain_simple_ops +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 0x443a8b0d sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x4443d0ef xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x447aaad7 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x447b11d6 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x447f237f pnv_ocxl_unmap_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4493e42f rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x449c6887 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x449fa45d btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x44b09de0 iommu_tce_check_ioba +EXPORT_SYMBOL_GPL vmlinux 0x44b2420e vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d2d9ff sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x44e69913 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450838ed __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x45528479 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x45578f1a smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x45597170 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x456fa76e vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x4573f859 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458f0766 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x45a27909 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x45b76cf5 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x45cbc87b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46064842 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4612d016 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4629ba37 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x4636c293 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4644bda4 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x464fe8cd gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x465708aa devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x46616023 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x467085f0 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x4674fc05 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x4676f70b spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x467eb7de vas_unregister_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x4681e55f iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4683bdd5 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468f2574 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x4692f673 copy_mc_generic +EXPORT_SYMBOL_GPL vmlinux 0x46a1200d kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x46afa59b fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x46bc6513 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x46c9f278 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x46cd50fb klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x46e465de klist_init +EXPORT_SYMBOL_GPL vmlinux 0x46e6e359 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x46fa8861 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4705c76c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x470f7417 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x471a0ed8 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47549e49 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f42ac kvmppc_h_bulk_remove +EXPORT_SYMBOL_GPL vmlinux 0x477569c1 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x47814902 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x4786a0c6 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4790cce1 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b7a692 cpu_feature_keys +EXPORT_SYMBOL_GPL vmlinux 0x47b7abce rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x47c27929 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47df54d0 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x47eaaaad hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47ef0fcc vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x48265ccd fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x482b7be2 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x484a2d7a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x4854072e dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x486436c8 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4868bcd1 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x4869a8f7 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x487ac245 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x487ffcf7 pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0x4883e408 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4888b8dd devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x4891e4b0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x48a08d17 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48b3168f gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x48baee19 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48c341f9 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x48d34c61 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x48e014ba mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x48ed22ab irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x48fb5182 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x48fba791 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x48fef709 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x490551c9 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x490a030e elv_register +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 0x493e387b account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x493e76bf tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x494551f9 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x495b67e6 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49662fd1 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x4968e04a mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x496edbcb clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x497bc84d nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x49845d43 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x498e3090 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499699fa devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x499f6d67 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x49aa858d devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x49b14e03 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x49ba7b71 pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x49bf3041 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x49c66639 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x49ca496b crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e669a0 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f3b073 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a04083f do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x4a179bee devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a352578 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x4a3c529a mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x4a3ed196 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x4a5f140e crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x4a5f8ea0 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x4a61eb1a br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x4a6baec6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x4a735513 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a7f72d5 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a9f047a tm_enable +EXPORT_SYMBOL_GPL vmlinux 0x4abe9e35 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ace754e __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ad182dd tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x4ad2d7ef cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4ae77b68 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x4b091939 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4b26cfb7 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x4b26fef9 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4b37d0c3 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4b38dc99 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4b3cd776 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4b46eee2 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x4b47e9c3 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x4b501115 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b533154 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x4b5a94e9 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b5d3489 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x4b5d94a2 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x4b5e55cd gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b6474e2 vas_init_tx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x4b69a96c nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4b6ebcb9 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4b82331e nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x4b83baea devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x4b973b57 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b9b1828 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x4bac89a4 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x4bc14878 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4bcf27b3 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x4bd3127b trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be5de08 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4be6f6bd xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bef0884 pgtable_cache_add +EXPORT_SYMBOL_GPL vmlinux 0x4c30296a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4c37a848 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c45dd44 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4c4f33b3 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c696e1d firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4c778e1e class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4c81b891 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x4c885d8b attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x4c96b398 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x4cabac32 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4cacf891 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb73a41 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cb8dc07 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4ccbe53c iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x4ce8d214 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4cf8d4b3 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x4cff026d devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d04d88b __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4d143a8e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4d256ec3 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x4d334e6c ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d3b0cff mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d3d24f5 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x4d3e096a ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d5e244a device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x4d65c27f mm_iommu_new +EXPORT_SYMBOL_GPL vmlinux 0x4d6cf37c sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d6dc7ed of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d799e44 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db519f1 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x4db89acb vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x4dc52c09 pnv_power9_force_smt4_catch +EXPORT_SYMBOL_GPL vmlinux 0x4dd1bcdf bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4dd625dc blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e172464 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e33b064 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4e36bcc1 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x4e3ad984 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x4e3dac2e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x4e46aa18 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0x4e4e877d dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x4e532d32 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e73edfc skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e85a647 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e8bf35b dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x4e912857 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x4e97edfc ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x4ea2df0e gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb3bd82 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4ebf7e77 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x4ec061b6 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x4ec8490e pci_add_device_node_info +EXPORT_SYMBOL_GPL vmlinux 0x4ee454ef devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ee71909 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4eea2f5f devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4eeba689 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0a8741 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x4f180173 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4f22c56a crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2e526c __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4f42c7f1 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4f4f5897 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x4f5076b3 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4f50f1b1 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f5e4e6d devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x4f661a74 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f76804a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4f9f6ab9 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4fa59eb8 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x4fc9d607 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x4fd8e530 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdd6ee2 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4fdfae19 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe7a135 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x5001f0ad mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x500392c1 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x5007d64f of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x501af55d palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x5032782b __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x50361a42 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x5036d86b rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x5045a866 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506b00a7 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x508377eb xive_native_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509afe23 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x50b24793 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x50bd152e of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x50c2fce7 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x50d1bf28 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x50dd1af5 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fa077c device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5105d56e hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x510aea25 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x5121777e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x51310ec0 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x5138ed4d trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513e4959 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x5146d5f3 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x514a4d62 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x51588a46 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5168c3ec __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x517ed87e irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x518039e3 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x51829796 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x518773e2 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x518b3220 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x518d7e4a mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x519ec3da of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51beb9cb ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x51ccd370 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x51d456d9 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x51da05f1 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x51df98d0 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x51e44e8f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5203e8f5 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x5205cbf4 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x520ac5f3 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x521f8a80 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5224f062 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52279ece irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x5231c635 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x523dff22 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x525ec370 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x52943f90 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b4ccd3 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x52b5be00 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c9a973 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x52c9e901 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x52cba0a8 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x52cf7d5f __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52d27351 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52fabb80 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5302c32a pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5304135b platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x5305a435 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x530d5f23 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x530eeb63 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x531547f5 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x53159621 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x531e7b8b vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x531ec423 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x532839b6 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532d1b0d driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x534050f9 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x5349bc7d fuse_dax_cancel_work +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 0x53823212 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53828dfb genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x53a0c7b2 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x53a51686 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x53a5ecf9 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d9f73a sensor_group_enable +EXPORT_SYMBOL_GPL vmlinux 0x53eb6496 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x53f662b7 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x5413ac07 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54250898 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x542f3f3b unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x5458e5a2 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x54675a42 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x546a7345 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x546aa1fa switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x546ec976 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x5470d6c1 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x547ff8cf pnv_ocxl_get_actag +EXPORT_SYMBOL_GPL vmlinux 0x54827570 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x548f90a1 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ead9a inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x54a61c1e of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x54bacd3c tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x54c90f95 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x5523d22a pm_runtime_allow +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 0x5547bbfd crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x556247ee genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5574b4e0 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x55760bb1 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x558f218f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x559593fc phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x55a7a075 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x55a9cb58 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x55acdc78 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x55ae98b6 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x55b45e4f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b4c4f3 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x55b73003 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x55c5b388 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d5f297 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x55dc8c14 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x55e14aa7 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f093a9 opal_write_oppanel_async +EXPORT_SYMBOL_GPL vmlinux 0x55fe2582 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x560e4eee list_lru_walk_node +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 0x563814af ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x563d6108 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x563dcd72 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x5649ffd8 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x5679e317 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x568b9dab vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x56c672c4 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x56ce8df2 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x5724a334 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x5726a5c8 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x572d83ac load_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0x5736a330 mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0x574563a9 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x575d62e1 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x576ed250 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0x5770ef54 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579de55b of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579ed0f1 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x579ef5f3 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x57ad4be0 opal_int_eoi +EXPORT_SYMBOL_GPL vmlinux 0x57b44a81 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x57be2e59 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x57cf8efb sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d45ef7 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x57eb938a pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fb9c7e edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x580f1224 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x582a33c7 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58497411 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5858856c ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x585c1319 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x5860a5a6 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x5868a4fb clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58816d3b skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5889fe15 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x58913e4e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5893e9e8 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x589d9d33 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x58b36b74 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58bf22c7 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x58c0e4d1 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x58d417eb devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x58d54f95 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x58d57235 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x58daf959 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58dc23ec pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58df15fd usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x58e4cabe bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x58e53597 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x58f479a0 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x5902b1db fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x5909fc18 opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0x5910e486 vas_rx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x5918335c tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x59194eac xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x59335f4b sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5936ad55 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x593e48b0 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x594a4fef request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x5958f576 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x596907d6 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x5982aa3a vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x599dbd3a irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x59af17e1 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59c477eb __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x59ebb7b9 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0x59f06fc9 srcu_notifier_chain_register +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 0x5a30bce8 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a4dfd00 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x5a64addb cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7c6ec6 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x5a9f83d8 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5aba55b2 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x5aba6009 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x5ac44e5a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x5acda639 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x5adbc43e kvmppc_hpte_hv_fault +EXPORT_SYMBOL_GPL vmlinux 0x5add2e16 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x5ae16882 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x5b06ef35 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5b0c0845 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b3bf695 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5b3dd167 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b43da4a sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x5b4e59b2 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x5b65d81f kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b741526 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x5b77f3f6 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5b7bedac regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5b9042d6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bb10d8e iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x5bb288b4 enable_kprobe +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 0x5be21fce make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x5be6d046 of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5bfce83c perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c02df5c fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x5c09712b pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c50dacc clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x5c55e703 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5fb695 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5c6d8827 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x5c700840 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c85146b xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0x5cad87db usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cae7b74 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5caeee9e gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x5cb99d97 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x5cbd7e03 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x5cc09ce0 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x5cc2cac8 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x5cd0e5eb __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5cd305ed digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5cd44c51 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5cd85b90 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x5ce816ee bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf0b2fe tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x5cf958b8 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x5cf98071 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x5cfe2482 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5d20ef6b serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d58fcdf unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5d62a508 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x5d6cb56d mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d7aae76 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d88144c serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da7c1c5 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5dae773b proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x5dccce69 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x5de0a441 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x5df7f1b3 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5e003690 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x5e00aea4 ucall_norets +EXPORT_SYMBOL_GPL vmlinux 0x5e08d9b0 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e19de65 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x5e25f855 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5e2e437d pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x5e397b51 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5e504ee9 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e54e214 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x5e569c4c usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x5e5ce758 devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x5e6118d1 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e6414bd blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5e6f6b3c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5e710794 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7b0ea4 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x5e8300ff regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9659c7 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x5e9875f2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb1487a ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ec34d9f device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x5ec8c322 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x5ed0da6c tm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ed73969 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x5ee474fa crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x5eecb19c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x5eedf1af xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5ef09600 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5ef3b04e noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x5f059f1f bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f3b1a06 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x5f49f0d9 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x5f562dd4 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5f58db42 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb973b8 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0x5fc51c0e crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x5fd9115c device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x5fdd633a pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe061bb cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x5ff09a26 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ff19cce pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x6000187c opal_check_token +EXPORT_SYMBOL_GPL vmlinux 0x60046128 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600cc455 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0x603782d4 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x603a1d84 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x6043aa8e irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x60593de2 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x60655421 sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x6067c92d trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x6068db76 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x60779414 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60816576 xas_find +EXPORT_SYMBOL_GPL vmlinux 0x6081884a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x60838cf3 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x608df156 xfrm_output +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 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60b877d0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x60c56b10 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x60c5b787 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x60c7a5ea nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x60c9f3a6 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x60ccf69f spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60db52a8 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x60ebc5c2 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f23671 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x610f399b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x61144817 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6129c0db xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612aef0e i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61406bf0 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x6146c01f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x614840fb component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +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 0x619a8194 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x61b25504 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x61be3720 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61d6ee43 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x61e0172f tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x61f1d7c0 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x61f408c3 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x62202630 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x62279fe4 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x622c420d nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6233785e debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x624f2a07 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x6250b282 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x625e85fd ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x6260df9a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x6263d412 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x626eff12 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x626fcd39 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x62770d9c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x628148be _kvmppc_restore_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0x6295204e ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x62a1e3fb tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x62addc2f alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x62ae7019 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x62b01370 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bb49ad genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x62d45cec __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x62fb8acf regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x6303ab37 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x632140ff raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x632c580f iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x633f5a7a dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x634702c8 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x636a9530 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x636dc7b5 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x637045bf dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63764c70 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x63795933 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x637c1335 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x637f19b4 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x63912a06 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x63a1280e usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x63a1ff35 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x63b3d2bc check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63f32621 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x63f710ef bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x640a1659 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6418789c xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x6428c7c1 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x6435b52e usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x64375df8 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x644b6aa6 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x64512ffe pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64599b60 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x645a33e3 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x645bd6b8 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x647987c9 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x648b67d7 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x6493a2df rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x64a24680 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x64a9b0c0 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x64b53be9 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x64b95a6b ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64be5caf inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x64d020bd pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x64d323a0 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x64dad373 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x64dc76d6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e3e13f gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x64e7cad0 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x64ee1b48 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f73532 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6505f6a1 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x650d49fb gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x65319a2d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653b617a icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x654891c6 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x654b52fe regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x655d228c fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x655f3923 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x656be2d8 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x656d8db3 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x657aa733 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x657de88f phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x65871f11 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x65918956 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x65b28aa1 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x65b71240 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x65c8e0e3 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65dac9eb dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x65e04404 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x65e6ad45 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x65f149ef devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x65fc4e7b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661f4402 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x6632c561 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663c2d61 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x664e8085 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x66507d3c vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666dbb35 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x666df6e7 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x667cfde9 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669affa6 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x66a9b54e devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x66b017ac iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x66b3ffc3 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x66b894eb __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c387a2 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x66c9dcbd vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d9ae66 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x66e5caeb __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x66ea3ae6 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x66ee177a trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x6705d69b iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x670ce365 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x6710c8cd usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x672de746 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6759e578 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x675d9f2a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x677328bf vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x6781c56c devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x678fe387 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x67919ef9 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a669d0 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x67a8c81c led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x67b608b1 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x67cbf81c devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x67d09881 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x67d31cd0 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x67d48d8d cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dd4e54 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x67e323a9 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67f1a6a9 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x680eedcc of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x6811130d register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6821be13 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6826a3f8 skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x682b25b5 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x682cbd3e i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683e4636 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x68445690 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684bef69 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x684dbf11 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x6858d77e pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x685f6991 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0x687615ff nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x68786f2e xive_native_configure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6883adba genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x688fe5e6 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689af381 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x68ac5d6c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x68b29095 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x68c4fcfe pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x68d96349 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x690227e6 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6909a38b opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69106da9 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6928269b xive_native_disable_vp +EXPORT_SYMBOL_GPL vmlinux 0x692e34d3 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x69456b28 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x694903fc usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6958232c cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x6958846b sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6964d5e6 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x696f2b63 of_changeset_init +EXPORT_SYMBOL_GPL vmlinux 0x697a2531 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x699286be of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x6994c9dd ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x69a54b4c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x69a97570 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x69aeddef atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x69bc9d10 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x69ca1d6d of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d1fb88 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x69d3cea3 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x69d82c3e iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x69e4b547 of_pci_parse_bus_range +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 0x69fd3883 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a00b7c9 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a1aa39b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6a1f65e8 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3f0e4a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a47f024 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a51308b sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x6a5a9252 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x6a77025b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6a80c9a0 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8fb24d devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x6a9cf140 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x6ab37e83 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x6ac764cd vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6ace490e devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x6ae4d407 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x6af6e609 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6afc1391 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x6b08f30d fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1abedc inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x6b237069 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b2cf84c cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b7247d8 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6b77340e mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b950c5c max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb66fc7 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce3092 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6be9e144 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6bea000c reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6c009477 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6c08b8b1 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c24b4e3 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x6c25ae50 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5162e7 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x6c523508 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6c5867a2 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5e8a43 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x6c62f1cc posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x6c646821 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c808c9a pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0x6c89015e kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6caa7442 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x6cad59cb __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x6cc67c4e pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x6cfddd43 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d05db72 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d12b4a4 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x6d12b7fd usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x6d14d8c4 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6d24b9ca platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d31879e devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x6d400906 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x6d402a51 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6d42861d shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6d450ff2 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x6d57b248 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x6d58478f ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6d5bc0a3 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x6d66a767 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6f0763 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8d503d cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6da5569d led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x6da6ca2d __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6db18079 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6db25bfa of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x6db41704 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0x6db565b6 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd2d3f8 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dee8987 of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6e0960ce crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e13832c pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x6e185c06 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6e200a38 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x6e30668f irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e412fc0 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x6e4c3c16 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e63267a shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e640631 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x6e6582f0 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x6e69fcd4 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7fd6f3 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x6e891a08 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e927aa3 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6ea329c1 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebeed34 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eee7bac pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ef8d940 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6f0088d9 xive_native_sync_source +EXPORT_SYMBOL_GPL vmlinux 0x6f03f727 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x6f042b8e raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1658b3 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f26ed7c nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x6f447abb pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6f4eb35a lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x6f5abbe3 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x6f6190fe input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x6f6a0c57 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f80ba38 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6faf7f27 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x6fbcc24a init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6fc22103 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x6fc6d094 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x6fc81a65 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6fcb73ee usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6ff38d9f crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff96f1e badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x6ffe8244 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x70012dcb sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x701609e6 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x7022f1b9 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x70384f68 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x70446ea1 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x704f24ae kvmppc_restore_tm_hv +EXPORT_SYMBOL_GPL vmlinux 0x705001cc i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x7054cc93 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7069f913 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7081971a pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x70843c2d of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x708bcca5 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x70adfc60 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x70aeb441 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf8a07 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x70d4f974 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x70d8cb40 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x70dae95b usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x70deb22f regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x70e17cb0 mm_iommu_newdev +EXPORT_SYMBOL_GPL vmlinux 0x70e99f77 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x70eaa462 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710fd3f5 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x711481c8 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x7126bac9 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7135a8fa lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7153b7ab vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x71549330 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x715cc841 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x715f2704 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71652390 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x71687446 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x717dea54 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x718a5444 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a3e897 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x71ac94d6 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x71ace7d6 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b61c9f store_vcpu_state +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c4156a ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x71dbf522 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x71e4f3c3 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x71fd6612 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x72064de3 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x7207d131 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x72269e6a ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x722b5652 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x72485c7a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x7254ef5d serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x726004ae __traceiter_fdb_delete +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 0x727ac692 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72873e53 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x7289ff20 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7294e14d debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7298e264 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x72a8bae4 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x72c35a1b strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x72d25881 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e544a1 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x72e781a2 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x73157447 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x7316e73f nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x7319a990 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x73201036 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x732ac5a5 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x7339825f regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x73629ff7 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x7364260a wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x7366d8c7 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x737895e7 vas_init_rx_win_attr +EXPORT_SYMBOL_GPL vmlinux 0x737ff816 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x73808d9e usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x73919677 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x739fcf8c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x73a1b8ae devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a8ada3 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x73bcb984 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x73bf3895 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d3ffea balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x73dad67d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x73f1085d usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x74050fdf iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x740d040f rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x7413f5ce devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x74199b26 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0x741b4eaf edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x742d95a6 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x743095a1 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x74375df3 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74528fd4 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x7456a405 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7459cba7 sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x745db7b7 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x746c4e2d usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7472c092 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x7475d19e devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x74ab91ad iommu_tce_xchg_no_kill +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bc5645 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x74be2917 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x74c16cee virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74c7cbf0 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x74cad25b lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x74d78aff usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x74d82c7e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x74e2357a devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74eb183a dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x74f448cf tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x7503b023 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751666d2 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x75166ad8 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7517d318 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753278ff crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x753ce0ac tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x754ba823 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x7566e6b9 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x7569cec8 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x75795c84 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757cfe35 xive_native_get_vp_info +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bc98e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x75a830ef gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x75acc167 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x75ada9c2 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x75ae743f devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x75d3b6b4 sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x75d968d4 kvmppc_inject_interrupt_hv +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75df59f6 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f13021 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x76039ccb kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x760cccac ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x76199cfe securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x762ad49e __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x763376bf usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x7637b3e8 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x763f39d3 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x76422227 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x764a6916 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x76643720 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x7667cb70 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x766e613c irq_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a6dfdc dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x76cd9e38 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x76d3b084 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76eb1cdc gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f2abe0 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76f81b01 vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0x7707c950 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x7708a136 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x771a431f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x771bff56 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7724cd7f fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x772bd722 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x772dea9a bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x773b881d ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x773cc963 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x773e0951 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x773eb7eb usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7747ff0e ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7758be05 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x776b813c usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7780959f dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x7790f5fa pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a08400 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x77a8611f kvmppc_h_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77ce0fe5 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x77cf6f17 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x77dc7488 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77eb8c3b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x7801ef8a rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78130acb __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7814d17d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782448d1 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x782c2ee5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x786c0579 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78887bca crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788ec5ea irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78c41407 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x78cdec09 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x78dc8c4a dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x78df0ce1 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x78e58a4e xive_native_has_single_escalation +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7926c5ae dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x793e7b5b ata_sas_port_stop +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 0x79629e1b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x7968abf9 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x796fd725 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x797c9637 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x798f816c dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x79932acc devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x799707ae regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x79972045 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x799a5640 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x79a6581e rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x79acb263 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x79aedcb0 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x79c5e647 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x79cbafb7 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e2618e of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x79e447ce usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x79e4f351 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x79f30160 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fb3b6d crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7a0b7e06 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x7a2e36a2 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x7a33f814 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7a46156d trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x7a4a27ec sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7a4f87df devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7a5a3405 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a5bec71 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x7a5d6629 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7a641ce1 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x7a68e12c dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a86ae65 led_sysfs_enable +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 0x7ab5792a flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x7abf441b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x7ac0e2c3 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7ac2d3f7 spi_mem_supports_op +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 0x7ad659e5 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x7ad8888e rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b05e324 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b19789a ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7b1df89f pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x7b275cf9 user_read +EXPORT_SYMBOL_GPL vmlinux 0x7b3005b4 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x7b3ddcbb __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x7b4f4a70 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x7b4ff8f4 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5eec97 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b655023 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x7b6e00a9 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7b783824 ppc_breakpoint_available +EXPORT_SYMBOL_GPL vmlinux 0x7b7e6d7e usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7b9018ca regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x7b91aacb fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc362ba cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x7bcde953 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7bd24f4a crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7bdd83d3 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x7be65f1c vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x7bed1fc4 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7bf3d123 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x7bffac0e spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7c105352 srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x7c140d04 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7c16a2aa ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7c25dbe9 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c33446a mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3862c1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c4131e6 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x7c48c715 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x7c73a9e0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9f7546 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ca32fc6 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7cb07dd1 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb2d276 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x7cbdca61 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd516bd dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdca86c mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cebf342 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7d0069d8 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d025236 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x7d0a212a debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x7d118cb5 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d297bb9 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7d2afaf7 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d3fc3ec serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7d4d3e8d fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5e736b devres_release +EXPORT_SYMBOL_GPL vmlinux 0x7d858067 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7d967aed skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7d9a9ccd clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x7da2f7f8 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7da314df devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7db6e1cc ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x7dc532c6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddd5fd4 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7dfa06a2 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x7e07f6c7 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x7e16db09 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x7e1b367e disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x7e1e1bd3 iommu_tce_check_gpa +EXPORT_SYMBOL_GPL vmlinux 0x7e2231fe mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7e31a54c of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x7e32416a ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x7e34ea5b bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x7e3bd4dd pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3cfbc0 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7e482ec9 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7e48a7c4 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x7e4bd600 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x7e5455e0 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e62f73d net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8996e4 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7ea7b15c bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb7aafe __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebaa46e __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7ec58934 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x7ed6fbe2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7edc05c7 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f332f02 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x7f374c03 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x7f3bd9d3 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x7f3fa06c kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x7f524652 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7f56c517 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x7f59866b regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f9066d4 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7faed271 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fbfc11b nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7fca2e54 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x7fe1189a irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x7fe7e50f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7fe9e575 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7fef4b9c of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x7ffa9f21 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x8013dc9f vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x80307b9b dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x804f485a dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x80611c9c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x806b33d9 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x80762b9a ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x80888c43 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b2010f skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x80b6a62a devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x80b90014 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80c28513 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d165fa ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e2492f clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x80e4ebca gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x80e88d1c of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x80efd908 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x80fe896b device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x81117221 do_h_rpt_invalidate_prt +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8123a156 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x813a84c5 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x81674f78 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816ede57 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x817065b3 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81875a1a clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x8189eb9e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x818c056d iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b72c69 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x81d192cc fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x81dfb41b sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81ebcc50 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f7d396 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x81febd87 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x8202bb01 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x820b6d99 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x82194049 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x821f17ba evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8249cf5c devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x825d69a5 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0x8265c0e0 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x827530f1 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x8287815a tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x8290c2a2 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82aff0dc regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dc32e1 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x82eae137 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x830c08c3 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x830e8e17 rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x8312450b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x8323159f housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x832d146c ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x833137e2 seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x833b5211 mce_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x835c3b73 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83743837 hash__has_transparent_hugepage +EXPORT_SYMBOL_GPL vmlinux 0x837eb2be crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x839f634a iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x83a5913b balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x83ac1986 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x83b521e4 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x83b6b3f1 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x83e8dfb0 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x840532e1 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841d3240 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x84220523 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f956e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x8439738b switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x84498007 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x844c2f3d vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845c6d09 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8465579c __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x846763b8 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x84810761 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x84827f94 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84ab530c ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84b4e94c dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x84c4c29b scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x84d92ed3 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x84e38ed6 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x84e5c078 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x84e7574e dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f166b8 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84f1a05e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x84f64824 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851bdb03 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8536a0e9 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x853c9c7a scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x85484fe8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x8552a223 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x856279bd clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x856469c5 vas_tx_win_open +EXPORT_SYMBOL_GPL vmlinux 0x8571402a fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x8578dfa2 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8585a677 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x85875793 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x8598dff6 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x859ce0e2 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x85bab520 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x85c560ca blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x85cdc67d proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x85cedb27 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x85d55de9 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x85efd590 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x85f0702d get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x85fcc502 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862ba4b6 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862efff2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x864a6709 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x86509960 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86622538 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x866ca597 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x86711ca6 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86883812 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x869881fa handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x869a0d6a kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x869cca35 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x86a64fdb rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x86a9f128 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x86abd2f1 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x86ad4657 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86b49199 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e62a7b posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x86f2d1c6 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86ff0d9e device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x86ff2293 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x87122c5c genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x871e1a20 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x873d46a4 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x875550f9 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x87559a14 pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8782def9 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x87917baa get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x87aaaca4 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87b8ef64 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x87c07206 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x87c1e373 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x87c393aa ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x87e21ad7 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x87e9b180 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x880d6d60 devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x8813063e led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x88217a2d apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x88236e69 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x8826ed85 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x88316a04 vas_register_api_pseries +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885668c8 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x886f88a9 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x8893e6b0 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x8896df7d mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x8899080a of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b54720 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x88b78ec7 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x88bbd4c4 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x88c553fd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88effcd7 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x88f6dbcc ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x890a79c1 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x890ce9b0 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c627c tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x8944e629 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8950198e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x895182b9 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x895308e1 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x895921f4 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x8967ddb2 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x896b0c9b pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x896ebb30 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x897b2190 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b41f0a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c270d4 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89dedde6 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x89ed73f1 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a04289a skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x8a08b01d subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a19a7e9 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a44999b devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a4978a4 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a4b10ee crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x8a53ab58 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a57c08c regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8a5bd877 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x8a5d4681 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8a5eab96 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8a5f3623 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a6a5345 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8a6e50aa pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x8a74cd5f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x8a81bc5d copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8e77e3 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8a9dbcad opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x8aa76a97 of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x8aac81b2 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x8ab2be58 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x8ab6424c vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac741a4 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x8ad37e8c blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x8add20a7 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x8af2061d __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b28395f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b337d19 mm_iommu_is_devmem +EXPORT_SYMBOL_GPL vmlinux 0x8b3556ec tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8b3df046 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x8b4100aa rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x8b4761cf dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8b487f00 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x8b4dc87e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x8b57fd43 divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x8b62efd7 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x8b6af1d3 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x8b6c761a __xive_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b70f701 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b8f7793 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8b9644c7 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b9777ef switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x8bb0144e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8bc13c1d get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8bc3d65e power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x8bd54c1b sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x8bfd4e79 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed0ce crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c141436 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8c1703fe regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x8c4833db devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8c6f7261 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7e7f3f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c8011d8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8c83ecb0 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x8c89b316 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c920a79 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x8c97279f iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8cb5cc37 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x8cb8dfcb devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x8cc5c37f power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x8ccabc2c edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x8cd3948b wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8cd4305f tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x8cd94f86 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x8cd9be4a subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x8cdb8ff8 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8ce8f029 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8cf2d286 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x8cfa34d6 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d278b6a xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d368bdd platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d3738c5 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x8d4308b0 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x8d4cceb5 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x8d560088 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8d61bc88 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x8d65bf9b vas_paste_crb +EXPORT_SYMBOL_GPL vmlinux 0x8d6dc201 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x8d76a210 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8560a8 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d932ec0 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x8d997c2f pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db51d40 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dcb5a22 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x8dcc48d9 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8dce284b xas_split +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de0dfc3 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8df51555 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8dfc9dd9 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x8dfcea1c sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x8e024a34 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x8e044373 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x8e3e2091 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b1738 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e5e87d2 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6c7ccd devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e841922 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97aa0f pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x8ea053df devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x8ead5e62 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb8e712 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ebcf357 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x8ecb3ee8 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8ee9ab31 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef1d52d regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8f043297 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0ad093 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x8f171b77 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x8f1f1e03 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x8f1f9efa phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8f269d1e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x8f275de8 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8f33b068 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x8f6920fd devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f6a86c6 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f783150 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f8c4e46 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x8f96b7eb regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fa6b765 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x8fac1c1c thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fb04d68 pnv_ocxl_spa_release +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fdae71c irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x8fec14cb platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffbcf7e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x9019b6c0 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x9022ef5b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x902759ed inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x9027dc46 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9057b5d4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x905dd614 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x90626ef1 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x90782528 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x908d0328 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x90939672 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x909c5c58 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b65b81 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x90c911aa kvmppc_set_msr_hv +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90e452d7 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x90f00fcf devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x911d18ae dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x91235425 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x913af88d pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x9152b770 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x9154b637 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x9168dd60 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x91728421 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x918b864a devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x91920ce8 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a341ab powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x91a3bdbc fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x91ac8a44 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x91acc0bf vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cdfafd irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x91d40441 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x91d926af led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92107d9f wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x9240ac8a rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92463d9c devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925009cc vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x92533ccf gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x9267190e gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x92896159 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x928e8e4a nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x928ed7f2 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x92936176 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x92938c21 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x929c0c77 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92a13e8e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x92aa373b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x92ccd54f ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d72a44 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e374e3 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x92e571a5 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92ec9088 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x92f0aa28 opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9327c693 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x932a8258 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x934a0aee kvmppc_subcore_exit_guest +EXPORT_SYMBOL_GPL vmlinux 0x935915dc blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x935aee16 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x935e1d44 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x935e919e rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x93678b95 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x93864c80 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x938ddadf sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x93925007 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x93978247 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x939d4964 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x93a5ace8 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x93b32214 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x93c600db netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93ccce8c platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x940094ec bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x941d903f devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x941eef27 clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94252065 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942c4035 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x942f9f42 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9432a298 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x94351bf7 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9435d894 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943cc26e sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x94466cd1 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9446a869 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x945789d9 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x945a37c0 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x945ae450 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x9465b18f led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946b539e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x947dc5e9 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9494eb93 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a1d5d8 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x94ac5f06 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x94ae435e to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x94af6eda receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x94d139fe crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x94d1bf0e bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x94dfecf6 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x94e0dd1f usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95079615 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x9529d00d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955427d2 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x955b027b pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956ad0a0 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x957119dd __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x957604db nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x957bae5f dw8250_setup_port +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 0x95a3087a __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x95a7c7e9 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x95b6fec4 xive_native_free_vp_block +EXPORT_SYMBOL_GPL vmlinux 0x95b98e2d devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bcf404 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x95ce651b vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x95ddb35d fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ffff0b dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x960856db ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9617ad1a ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x961b222c nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x962cf4a9 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9648ca86 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x96496cc3 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x964b5fcd led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9658c252 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x965a816c nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x9671fdd2 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x967c0b30 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0x968c906a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x968d7fe6 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x96b751e9 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96c78ed3 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x96ca63f5 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x96cc48b9 xive_native_default_eq_shift +EXPORT_SYMBOL_GPL vmlinux 0x96e838ac cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x97002044 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x97053efa smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x970da920 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9725d14c edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x972b102f ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x97310b79 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x97329730 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x97433d92 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x97447157 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x974b3cc8 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9766f623 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x976c1b10 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x9771cdfb power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9774fa43 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x977ef868 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9796cb04 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x979a770a debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x97af4676 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x97c02c6b replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x97c1ff16 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x97c7c5a8 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x97d54160 pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x97d9d172 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e8a577 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x97ee5d5e wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x97fbda67 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x982067be sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x98322d4c of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9834c754 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x98398aca regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98506a34 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98549d41 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9855a697 opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0x9855f287 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9857dcf8 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x9858eba0 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9863c26e mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x986acb72 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988c6a2d bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989eef39 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x989f0142 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x98a65602 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b84212 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x98bbc5f4 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98de1278 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x98e3c716 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f5b4ea ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x98f6cf0c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x990a23cf sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x9926fb29 of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x99296b17 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x9932e4a0 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x99408264 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x9952b912 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9967fbfb is_xive_irq +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x99729def pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x997e10d9 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x9986cabc hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99988d28 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x99bb1f52 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x99cc1b82 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x99cdac4a devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x99d70050 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99eddd5f __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f15c0b percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0dca74 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1dbdcf to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x9a310a66 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a3660ab wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9a41253d pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9a570319 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a7e7cc5 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x9a96d012 raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x9ab946c5 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad007f2 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x9ad58ad9 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b130ca5 h_query_vas_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x9b147bc9 save_p9_host_os_sprs +EXPORT_SYMBOL_GPL vmlinux 0x9b167534 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x9b1a6900 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x9b1fd611 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b304012 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b58c853 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b614d49 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b618029 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x9b6d43f3 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b78cb2a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9b82dc91 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b955bd6 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x9b96d91a fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba2cbe1 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x9bc46485 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9bd957e0 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x9bde79bc xive_tima_os +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf14fa4 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x9bff99a3 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x9c073adb ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x9c0e5e5f __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x9c2b6633 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x9c2e0c25 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9c37153f gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9c3757e0 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x9c3cc1e8 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x9c3f12bc gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9c504b31 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x9c57be41 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c69d196 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c8992f0 of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x9c8e8aa0 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf7fc4f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d10bd86 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d42ecfb devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9d4334e7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d4fd9d6 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x9d54722c ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x9d55586c netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d56c26b compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9d5dc41f skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9d898c3d da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9d8a4c64 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d8bc18f blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x9d8df0c7 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x9d9149d6 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x9da97271 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x9dc64ffe pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dc7cbcd trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9dd41c23 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x9ddaae82 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x9de1cccb fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9de6b9a3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x9de6d8db devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9e097d0b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9e0f97fe exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9e1ca881 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9e237ba5 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9e31681a input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e425153 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e52ae16 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9e61c65c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9e6e56a2 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ea60084 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9ec1f364 kvmppc_subcore_enter_guest +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edf7293 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef09e2d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9f02f664 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9f0bb9cd stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9f325367 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x9f3dc0eb get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x9f4a97ba __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f5ccd64 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9f650786 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x9f7449df pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x9f898963 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fa29eec tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x9fabf413 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x9fb0bcba nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fcfa6b4 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa02c5cfd spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0387821 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0597eaa usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xa065a54b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xa074d166 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa08337ed btree_init +EXPORT_SYMBOL_GPL vmlinux 0xa08b4557 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xa0bd194e of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xa0be2987 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0e1ad44 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xa0ea89b2 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa1136616 eeh_pe_mark_isolated +EXPORT_SYMBOL_GPL vmlinux 0xa114ed20 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa1188f35 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xa118d32a irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xa129f28e driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0xa12a61ce devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa13b2962 pnv_ocxl_tlb_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa13bcc05 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xa154edb0 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa167def9 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xa16d719c pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0xa184d5f2 mmu_vmalloc_psize +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa1937ca9 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa1a2e53d skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa1ad5910 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xa1b2a0fe tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa1b2f875 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xa1b59dea blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xa1bbb720 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa1c3bf82 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1da4507 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1de094f tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xa208dea9 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20df0e0 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa235f509 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xa23ec288 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xa23eee1d devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xa24a6a71 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2786c64 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xa2904765 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xa298af95 xive_native_get_queue_info +EXPORT_SYMBOL_GPL vmlinux 0xa2acc5b6 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e3b8cd ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa2ecb6a3 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xa30f8ecc user_update +EXPORT_SYMBOL_GPL vmlinux 0xa3166d81 clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xa32e85db iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xa32fac77 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xa333c3dd ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xa33d91a8 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xa3417c5b usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xa351784c __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xa365a59d fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa36fe5d0 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xa3784f82 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xa37d4109 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xa37d7ac1 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xa37e13c5 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38e3258 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a3ef63 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa3b56555 hpte_page_sizes +EXPORT_SYMBOL_GPL vmlinux 0xa3b75a62 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bd54d7 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xa3bf1a3d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xa3d1bbd4 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa3e12121 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa3e3a209 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3fdeea6 of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa40fc8f6 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa413ebb0 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa42dfcfc cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa437c661 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xa439c69e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xa445a61a rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa45ecbf4 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0xa463dd20 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xa4698b40 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xa479032e nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xa47a7751 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa496c6b0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xa4aa685f __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b847ea extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4ca5be0 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xa4d7ba32 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4e89306 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xa4f16ad6 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa50b8ef2 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xa50de3e9 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xa50fc5ae device_move +EXPORT_SYMBOL_GPL vmlinux 0xa51ae0a8 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xa5212943 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa539a419 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55346e7 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xa554f6d0 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xa56aa8ba __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xa56bb892 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa578fe9a irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xa58a380a wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b039ab spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xa5b05d63 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa5b8fef3 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xa5bcefb7 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e0cbef fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f6f23d driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa602641c fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xa6071cc7 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa61603e9 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xa61a84e8 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa63d96a8 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa655abc2 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa6623874 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa67b2729 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa6845c7d __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +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 0xa6b65f39 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa6bb2693 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6c5b3bc get_device +EXPORT_SYMBOL_GPL vmlinux 0xa6d1e06f splpar_spin_yield +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e4b67a devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa6ee15ca __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6ee634f fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa6f8d395 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xa6fb36c5 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6ffe72e sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0xa7025f65 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa712d6f7 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa71c1fdd rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xa7349751 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xa74a63e6 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7674c43 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xa76df802 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa76f25e0 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa7777edb alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xa77c3938 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xa7857109 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xa78623fa netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xa786cafe usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xa795a4a5 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa7983a0f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xa79c5ee6 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xa7ae38d3 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa7b1cb87 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa7b5133e edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa7d7ed4f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa7e3ca3a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xa7e86243 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0xa7f0d694 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xa814dfea regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0xa8156674 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xa826e773 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xa82a7b85 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa84260ab skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa8432032 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xa845c2c5 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xa849b1d3 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa84c3701 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xa84f5c50 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8696e1a devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa8785091 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa88a2c35 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xa88bc565 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xa88bfc3f bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xa88de089 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xa891489b __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8af0145 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xa8b468bc mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa8c2347d nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa8d224f8 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xa8d6f1dd crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xa8e46223 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa8ef7f49 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa8f3f495 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xa90cf07f dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xa90da643 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa90e3b96 timer_rearm_host_dec +EXPORT_SYMBOL_GPL vmlinux 0xa91144dc wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa955c345 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa972c4f8 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xa97502eb __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa97c4739 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa98691e6 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99e8b12 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a0ee26 pnv_pci_get_device_tree +EXPORT_SYMBOL_GPL vmlinux 0xa9a9a420 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9f899dc transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xaa07c9be sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xaa09e9f1 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xaa1758c5 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa1d9508 md_start +EXPORT_SYMBOL_GPL vmlinux 0xaa216f01 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xaa3d82e2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xaa49b0cd devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaaa5ec9 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xaaac46a0 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xaad42f5b nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xab1a4c3a pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xab1dcb2c of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xab2c73bc dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xab3bf4a4 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xab3ffbe2 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xab417abc devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xab53f3df of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xab5b83dc lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xab62e16a crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xab71f298 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xab8c18ff ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xab94d377 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xab9531db fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xab9a7a81 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xaba99081 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xabb50783 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xabc287fe rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabde1d45 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xabe575c4 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xabe9eb23 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xabea180b kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xabea9a6d ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xabfc7bb3 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xac00429d __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xac03512c of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac1f02a4 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0xac295c8f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xac2b7ebf switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xac4c30d5 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xac621346 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac69ad4d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xac7595d7 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xac7c5321 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xac828fde dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xaca31faa of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xaca5085b wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xacb1a3af sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacb7e757 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xace4c8de perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xace59bb6 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xace908a4 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad1175a1 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xad12bb7a gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad49ad48 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xad4cd868 strp_init +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 0xad76a404 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xad81bc2f devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad8406c5 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xad94b91d iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xad9efcf6 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbcd9b2 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xadc861bd platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xadcd269c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xaddf0e5b unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadfe703a udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xae096359 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae20806a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3a1a47 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xae3f260d regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xae442152 dawr_force_enable +EXPORT_SYMBOL_GPL vmlinux 0xae47b20d __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xae57fdfe devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae735202 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae864461 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xae87cad0 memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xae91eac5 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeb5d2c4 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xaebf6ea5 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaeeab918 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xaef1ffcf fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xaefa9ebb pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf07a333 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xaf0c29b8 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf177c44 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xaf1e10da opal_int_set_mfrr +EXPORT_SYMBOL_GPL vmlinux 0xaf215454 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xaf30e4a9 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xaf38e994 regulator_get_optional +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 0xaf4858fc pnv_ocxl_get_xsl_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf676a90 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf832af4 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf869282 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xaf8f2221 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xaf9e1113 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xafb0cd15 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xafb974e5 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xafbac171 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafc12b0e of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xafc19b53 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xafc2e947 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xafcc8ba3 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xafdccc1f mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe3d36b tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff16e35 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xb009154b phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb00bedbd edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xb0169ae1 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0xb01eb623 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xb02e08f2 vmalloc_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb04b9f17 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xb04d9b69 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xb05410f0 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb05b1237 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb06634ec opal_xscom_write +EXPORT_SYMBOL_GPL vmlinux 0xb06da7ee pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0902385 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb09b7319 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xb09d45b0 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xb0a51a7f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c25b59 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0da3590 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xb0e39316 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb0e52f90 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0xb0f65317 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb0f73f8e __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb0f82e7f dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xb0fc6a6c i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb0fc7bd2 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb10d295f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb11f8fe1 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xb1217c51 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb13b078d mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xb13b1fd5 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb170bfd9 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb180dac4 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1979a34 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xb19818aa blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xb19e678d __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xb19e6ce5 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb1a73574 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xb1b32865 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb1b41bf6 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1baff17 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c2ab97 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xb1c5f832 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb1cdad82 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xb1cf9dcd gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb1fcdbb9 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xb200692d __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xb2018231 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb202471c netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xb207fa0f ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb20e427d fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb24808fe gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xb2558098 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26ca1e9 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb27caeba pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb27f811a spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xb2816a97 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2996be7 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2a653fc confirm_error_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2a941ef trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2bdd672 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2ceba4a dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xb2d13a69 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0xb2e4e8fe auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e9220e ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0xb2ed7b0d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb2ff05c4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb356a407 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0xb364586c crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb368b0cd devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3883b91 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xb393bebc __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb39aca9f blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3b4881f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb3b7a0a6 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xb3b8585c switch_pmu_to_guest +EXPORT_SYMBOL_GPL vmlinux 0xb3c5a40f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xb3d78ec4 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xb3e15e36 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xb3ec52b8 pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xb406536b pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb40e960e debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb421afa4 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb434d34f i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44730b1 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb47033d2 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xb47bad3e inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb47e6361 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4885c5e __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb4994f15 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xb4a2bbe2 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c3a091 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xb4cd7317 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xb4d10183 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb5003210 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb554f2e1 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb56651ba wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xb56c27ef badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xb56d72f8 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xb56ed688 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb570321b fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb5771aff nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xb5837ba1 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xb5a04f05 xive_native_has_save_restore +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5ab022b perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xb5ad0b19 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xb5c93427 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xb5ee0671 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xb604ef12 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb605a9c8 iommu_tce_table_get +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb61193da pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62a9e94 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xb62cdb2c sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63717bf event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb639c788 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xb63fd8ab mmput +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 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb658384d switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xb667fdfe fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d6f08 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb67e7508 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68bb0e6 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb697c14b iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6ad2e3b __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb6b28514 xas_load +EXPORT_SYMBOL_GPL vmlinux 0xb6cd96c1 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6ea4f69 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb6eb5849 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6f25e9c regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb6fa5009 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb7161b95 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xb729a642 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74737b0 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xb74c1eaf of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb761f414 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb77839cc devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb78cc0d3 crypto_chain +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 0xb7d17fa0 pgtable_cache +EXPORT_SYMBOL_GPL vmlinux 0xb7d9cfa3 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb7e479f5 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7e68ea1 kvmppc_h_remove +EXPORT_SYMBOL_GPL vmlinux 0xb7f17d4a genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xb832bafa __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb83505bc scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb842a185 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb845001f pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb84b3673 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xb8609828 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xb86b8150 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb880c9a2 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8919ae6 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8c075e6 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb8c1a475 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xb8c644ab mce_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb8cc94e5 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e08bc7 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8e47bfe register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb8e4a9ac sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0xb90057fe dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xb90a4152 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xb90b01b2 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb918624f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xb91e6703 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb92aec62 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94fe0c8 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb9590a63 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0xb95eb5c3 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97a6f72 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb98190fb pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb986ac6d flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xb98e521a dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xb99dc0cc unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb99df747 xive_native_has_queue_state_support +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c018dd pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9fa80ee securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xba014c84 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba076daa trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xba0a2023 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1b0697 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xba1df57e __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2e23ee eeh_pe_state_mark +EXPORT_SYMBOL_GPL vmlinux 0xba31dc1e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xba4b1b3d alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xba6647aa bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xba7217dc device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xba777f61 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xba984f8b blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xbaa9f417 of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbabbef37 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xbabe7135 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbac6617a dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xbadf1f79 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xbaea6670 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xbaef0a8f crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xbaf1f34f call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf5b62e ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaffd10b regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1822d5 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb30f520 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb3185e3 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xbb324995 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xbb32c978 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbb4a2da0 hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0xbb4c13b4 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6c75ac xas_pause +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb701b5d ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb80f63e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbb99aed6 vas_win_close +EXPORT_SYMBOL_GPL vmlinux 0xbba868a6 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbbb7f851 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe7363f dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xbbe7a175 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xbbebf3cf vas_unregister_api_powernv +EXPORT_SYMBOL_GPL vmlinux 0xbc0208d6 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbc0756fc debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xbc0a56a8 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xbc2ea5b3 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbc3b20c1 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc48e9a0 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7f3063 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbc89254b blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xbc8c4bab pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xbca3bcf7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbca90730 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce58e13 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xbce87257 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06981c debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd25c2f2 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd2d8f02 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xbd2ee994 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xbd36dbaf __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd6135a0 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xbd6508b2 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xbd65c2d5 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xbd69f15f tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd90e7ef task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xbda5bbe2 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xbdaef405 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc4f3e9 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbdd6d9a1 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddb90ed genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbe1021ee tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xbe23bfea class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xbe3135c4 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0xbe372928 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xbe38c416 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xbe3d48f3 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbe3fd025 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xbe5de087 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe74f625 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xbe7750bb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe7d083a __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xbe8dda3f devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xbe8dfb64 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe97cec2 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea256da tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbea3fb7a sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea63e77 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xbeb2857f usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xbebe625a event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xbec36348 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xbec40cfd sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xbed2764e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xbed75501 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbedf3fb8 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbeefed52 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbef17744 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xbefc6ae5 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf2789e4 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xbf2b6587 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf314b6a rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf5803f9 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0xbf75292e mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0xbf772d52 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf89ec6e skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xbf8a6eef pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xbf90f58c irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0xbf9b0d06 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xbf9f82da is_pnv_opal_msi +EXPORT_SYMBOL_GPL vmlinux 0xbfacfb59 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd2b2dc mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeea1df of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xbfefffc8 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc028ccd7 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xc02b2136 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xc031d103 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc0326628 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xc0376542 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xc03fb062 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xc053cd17 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xc0550c95 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc06198b1 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc085a495 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ad4bca crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0b30ac8 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc0b64f56 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xc0ce1dfd kvmppc_h_protect +EXPORT_SYMBOL_GPL vmlinux 0xc0d170ba vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0ef163d virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f86b00 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xc0f9b4aa nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc1077869 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xc107a6df __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc114eeab fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xc11805b2 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc11ba99c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc11bb921 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0xc11c274b rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc11e3919 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc12d0d40 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc12da4c3 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xc146cb65 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xc14ca228 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xc16fe30c access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xc1743430 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17c25bb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc1986172 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1c2cb4e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc1c495a8 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xc1ccc99d pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc1d7468b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xc1df0a6a regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xc1e0bd89 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xc1ed9c89 cpu_latency_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc1f337c1 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc2016555 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xc218a058 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc21a6473 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22b8ab7 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xc2356714 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0xc2396afe devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc2516c6f crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc2532ce7 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2788212 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc27b16fb gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xc27e63e5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28b4522 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xc28c5838 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b76387 pm_runtime_irq_safe +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 0xc2c275ff opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xc2c8b469 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xc2c9cff5 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc2e57cf7 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xc2e84770 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2f30c78 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xc2fa69d3 raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xc30c55cb blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xc3217878 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc3304b56 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xc33e597a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34fef3f devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0xc36364b6 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3944258 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xc3955cb0 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc3a05644 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc3a56157 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc3b5862f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d98826 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3df0ac0 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f3ecac mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xc412fdf3 radix__flush_all_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc4153f77 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xc4236bbd crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc429e9d9 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xc42e0198 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4367669 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc43cf854 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc44016fc vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0xc442bfc0 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44fb053 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45bca0c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xc460b5b1 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc463e29c inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc46b5e00 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc474cf1e bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4919b4a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4c55391 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xc4cbbfc1 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc4d12927 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xc4d7987a usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xc4dca67d led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xc4dcf313 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc4e53239 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f476ec em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0xc507c1db cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xc50cb0f1 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc513281f espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xc51b9576 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xc52e0ef0 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc53e2e3d smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc550b981 devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56e63c5 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0xc56ff7ce bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc5786418 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xc5839768 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58ae46e fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xc59f44dd iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5d8b369 pnv_ocxl_get_tl_cap +EXPORT_SYMBOL_GPL vmlinux 0xc5ee1f22 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xc5fc4948 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xc6050b15 vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61aef15 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc6299625 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xc62ee5e4 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc62f3979 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6492f5d tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc652a2fa __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc65a9310 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xc662ecda __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xc6645f58 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0xc66545b1 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0xc66ae51d sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66bdc41 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc67ab8e4 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0xc68c3a58 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +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 0xc6b1107e fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xc6b299ee cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6b49b8f sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc6bf17b5 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc6c59e9d bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6c70475 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc6ceb5ee pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6ead9d6 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc6f72ce7 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xc6fd392c dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xc705f74f devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xc727f959 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xc73e50d9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc743b2a8 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc751b6fc __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xc768e3b0 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xc77381a4 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc777fd2b pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xc780d6b9 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc78a1e41 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc790af16 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0xc799cf73 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b1a233 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xc7c56d59 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xc7dec824 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xc7e376d4 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7ebec48 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80b1d59 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8176ba9 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xc8184026 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc838b44f devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc83a2f4c icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc86b7842 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc871b2ba sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xc88abf45 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xc88bb345 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc88f50d7 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xc8bedc16 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc8d15a70 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xc8d78b04 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8fa1427 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xc8fa5eef kvmhv_vcpu_entry_p9 +EXPORT_SYMBOL_GPL vmlinux 0xc8fe4f2b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc8fed680 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xc90fee4a pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0xc91b296f hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9354302 devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9579026 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc969dcaf switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xc9702876 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9755925 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9831339 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xc9a8b6f5 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xc9b1e818 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc9c44223 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9c56873 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9c6a27a xive_native_set_queue_state +EXPORT_SYMBOL_GPL vmlinux 0xc9c7d69a __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xc9ce3124 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xc9e1c455 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f2bf79 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xc9f58057 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xc9fad164 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xc9ffd987 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xca0143bb rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xca0cade1 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xca18c837 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xca26b000 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xca449b7a switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca4b5c51 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0xca6b85d9 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xca6c9b7c inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xca7016e7 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xca7053ac thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xca71d461 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xca72d8c4 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8083a1 pnv_ocxl_map_lpar +EXPORT_SYMBOL_GPL vmlinux 0xca94bf41 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcabca638 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac95688 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xcacef8de devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xcad8e938 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcadab7df blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0xcb024011 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb063f84 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb0a2809 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xcb27f7a1 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcb2bd7b5 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb324866 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xcb518019 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb58b3e4 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xcb5adbd0 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xcb602498 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xcb70815a clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0xcb71f91b ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcb77fc6f bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xcb889ffb fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xcb8a1bce vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xcb94ed1a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xcba67571 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcba8fdba phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xcbb625d6 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcbc11589 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xcbcad39b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xcbcf89bb regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcbd8e8f5 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf53f9c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xcbfa49a6 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xcc020e8f input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc195ff9 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xcc1eecea gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0xcc279c9a da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc37f2dc virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3c97d3 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc5462b5 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xcc54929e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xcc59802b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcc5cc250 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xcc75156c crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc89515c regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xcc8e5360 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcc9cee41 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcca4483b irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xcca7c552 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccc77419 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xccceb699 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce3e7d4 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xcceb56ef crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0xcceb970d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xccf08071 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccf85614 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xcd0a7b09 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcd151f6c kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xcd1d0d4c ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2904d5 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xcd2a4f6a __class_create +EXPORT_SYMBOL_GPL vmlinux 0xcd2ab716 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xcd2e7183 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xcd34f514 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xcd35255d xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xcd3f668c phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xcd405bfe crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xcd4082ef devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xcd468c35 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xcd4d4948 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xcd5a606c of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xcd64ac18 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7b75cd __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xcd819977 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd90087b regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd944164 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd9adb40 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda49102 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xcda7cf45 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc3dd86 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xcdc99b9d __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd1a841 xive_tima +EXPORT_SYMBOL_GPL vmlinux 0xcdda48b8 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0xcde70e9d devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcde9b9be inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xce169f6d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xce406d6b devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xce41cb61 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xce42f2f3 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xce45f9fe pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xce494406 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xce4e0279 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xce69b846 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce79fbef tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xce7abf87 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb4b99c klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xcec516da sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee36cc2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xcf03f439 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xcf133159 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xcf147318 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcf1a775f __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcf1f2a19 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcf233437 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xcf2518b0 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2c939a crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xcf3c2a47 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xcf3e440a put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcf5143cc kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xcf694762 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xcf865692 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcf878827 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xcf9c2ce6 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcfac6344 pnv_ocxl_map_xsl_regs +EXPORT_SYMBOL_GPL vmlinux 0xcfae7b1c iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcfc0255f bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc0c7aa usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfe2540d crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xcfe27781 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xcfef1b47 switch_pmu_to_host +EXPORT_SYMBOL_GPL vmlinux 0xcff9b5c9 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcffa9baf msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd02f1dd4 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd087299d dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd08e8b14 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xd08ee3fe tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xd0a46218 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd0ab26e3 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xd0ad94c1 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd0b4b87d devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xd0b67644 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd0b9fdca gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c73e57 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd0cabd1c __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0e62485 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xd0e81551 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd0e82ee7 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xd0f3ae97 gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xd0f946cf tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd102eaf7 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xd12372c1 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd12cd5e2 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0xd12e3ef2 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd13188db vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0xd13d53ae trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15da316 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd15f8b95 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1694779 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd17d152e cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd1882e65 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd1917ed3 pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1aaa539 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xd1baa424 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1ee4285 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbdf09 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd2102f76 dev_fill_metadata_dst +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 0xd22f0b56 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd232f4e9 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd23436de pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd2477509 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd25fa61d sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26aff72 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29038a3 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xd2916868 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a53e4e usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xd2a822c7 pseries_reloc_on_exception +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b978cb balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e7704e crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd2fd1357 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2ff8cd0 fscrypt_ioctl_remove_key_all_users +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 0xd326630e __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xd328042c regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xd338bfb8 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xd3392588 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd33a5aaa tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xd345e956 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd3506ec1 device_register +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3696945 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0xd37faf27 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0xd38030da clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xd3805e96 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xd392367f devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a2647a md_run +EXPORT_SYMBOL_GPL vmlinux 0xd3aa83d9 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xd3ad38af sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd3b5ad98 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd3bd4035 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xd3d4400e skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xd3e0e017 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd3e3310a __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3fcfe2c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40415df dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xd4060bfd eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0xd406bf46 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xd40d1da1 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd41d1fe5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xd426559c usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4507256 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xd4523010 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xd457c975 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd4594aa4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd45d6a3d blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xd45da1ae spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd47bae0f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd49e419c ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xd4aeaef3 decrementers_next_tb +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 0xd4c4e980 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4ddb252 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd50be012 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53afa1f usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56331a6 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd592ed51 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59db8dc evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xd5aa3c87 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xd5afa49b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xd5b1fde3 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xd5cbb102 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xd5f598a4 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xd5f8a0a2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xd607c9a4 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xd60f4c1f fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xd62b92a4 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd6423641 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd64d7551 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd660582a __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd661d5aa blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xd665fe87 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0xd6716021 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67aa291 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd67bea5e scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xd68179c9 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xd6932476 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd693415e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd69a3904 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xd69edfe7 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b0ccf2 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xd6bcd594 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd6bf625a btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xd6dcfc9e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xd6e1ef0c pnv_ocxl_get_pasid_count +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7069995 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xd71bc921 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd725efba device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd727788a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd73bb97a fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xd748db13 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd74d2956 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd74fb83c ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75ba32e i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xd76205eb ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd7662704 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xd767b28e of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76b9bdd pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xd76e4a35 ioremap_phb +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd775a780 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xd7772072 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xd777bc36 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xd79312c5 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xd7933665 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd7956c9b reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0xd798b66c vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xd79baa6a ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xd7a72d5a xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd7b8e356 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xd7bad4c2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xd7bca97d metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd7cc63b5 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d0766b clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7d9473d dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xd7dccd23 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd7de8ed7 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xd7fc8900 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xd80b2f5d blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xd816cc71 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xd8217141 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xd82abf89 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd84cd368 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd86c8b79 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xd87d354e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8914ecf fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd8987304 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xd89a4ce2 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd8a26cd0 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd8bb290e set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd8daea18 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd8e82785 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd8efe8de regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd8f5818c thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd905a415 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91fb5f9 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd93a96f3 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd94098cf devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0xd94113da devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xd94a3e0e vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd971a6ce class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd988abc9 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd9a3ee6a peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd9bb076e sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d9efc2 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e53efc folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xd9e660ef regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xd9eb32ab of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda14601b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xda1db9e7 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda37da49 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xda41cdbd bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xda46948a fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xda77caf6 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xda80eba0 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xda820b4f devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdaa7077f devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdaae3249 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xdaaf8233 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab69401 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xdabb2c14 sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0xdacc568b gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xdad9629f __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xdae10826 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf5e074 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdb01fc81 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdb0d1f5a ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xdb0ec250 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdb1cab27 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xdb2c8daa dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xdb3794ce emulate_vsx_load +EXPORT_SYMBOL_GPL vmlinux 0xdb504016 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xdb619c2a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xdb744794 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0xdb7a2c51 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8e3f5b dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xdb91a90b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xdb974d69 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xdba971ba sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xdbb5eefe pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xdbbbe533 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdbc72ac2 xive_native_alloc_irq_on_chip +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbddeb5a pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf6cfb1 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc05fcf4 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdc0b2b5b opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xdc144ca5 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xdc1a9080 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdc2546f9 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xdc3c889b blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xdc426736 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xdc4362d5 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc45f2e8 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc4ba5c6 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc69c5cc perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xdc737b16 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc85a662 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9f1531 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca43c05 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xdca939fb usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xdcb0677c nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xdcbcffbf rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdcc01848 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xdcd131de debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xdce00afc fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xdcf0f054 led_put +EXPORT_SYMBOL_GPL vmlinux 0xdcf0fe4b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xdd034ea6 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd09343d usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdd14729c pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xdd14e7f1 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdd2148d7 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xdd2bbd5f fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xdd3710e1 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xdd42b8bf edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd6a006d balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd6e141e wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xdd724d00 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd9ac3e7 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xdda65ab2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdda73eaa __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xdda92bad ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd594a3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xddd7514a dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xdde9534a page_endio +EXPORT_SYMBOL_GPL vmlinux 0xddee3a1b nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xddf3bb22 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xddf8c09d pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0xde0e5f79 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xde103b14 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xde1daf1c __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xde22996e usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xde24dc3a crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde3ceba4 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xde4cc848 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7f578e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xde902d76 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xde9989cb gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xdeb95144 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xded85872 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xded8c0e9 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdee9ac6e phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdef20b41 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf015b6c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xdf022714 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf0c757f ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1620b1 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xdf179f53 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xdf1d55c8 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xdf1e9cfa btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf3413ec gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdf43e19b disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdf55e0b4 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdf5a0518 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf86b5b2 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf93acd3 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xdfa44314 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xdfb8ddce clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xdfbfc1ca i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfcf76fc wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xdfcfc497 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdfd5bcc9 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xdfe288dd wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xdff568cb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xdffe1d21 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xe0008f17 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xe00a2b43 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xe02d2ecf sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe03ce21c mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe045d69e __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xe05bace5 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0766831 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09a5c22 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe09e281f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c1557b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe0c80971 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe0e1dab7 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe0e75214 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe0e96594 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe0eded2e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xe0f1fca7 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe1084c43 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe108d302 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xe10a7510 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xe10d521a subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe1108cc0 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0xe122e1ea register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe147c0f1 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xe14bda54 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe14d37c9 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xe157df5b ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe157f851 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe161b07b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17dce4c pci_hp_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xe1886040 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xe194bfa7 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe1ae0dd6 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1d4db89 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xe20baeb3 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe20f96b7 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe23100bb ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe2389706 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe246aa01 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xe2656f4d ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xe2691fe2 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xe2a2e015 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xe2a34bb3 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xe2b0c200 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d06ffe of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xe2d7fa4a gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe2daeed8 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xe2db6343 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xe2e718d2 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe2ee4153 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0xe2f13fae fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xe3126ce1 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe329109d kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xe33838a5 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe352a378 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xe353bbbe nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe365b568 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xe37278df gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xe374c7b9 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe37a17ca gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe390a782 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xe390ae99 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0xe397caf5 seq_buf_printf +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 0xe3bc6d43 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xe3d000e1 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e8d39b vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4106b5b crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xe418080d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe4213bb9 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4352b0b inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4409599 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xe447900b list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe44ed72e scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe462fe87 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xe46de43a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xe4719378 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe490d589 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe493c0a0 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a5eb4d pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4d0202e gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4d3747e pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xe4d6b17e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e8d6ee of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xe4edb150 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe50227c4 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0xe504cd3a led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xe5220151 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xe52f07e4 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe530a31e sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xe5314605 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xe53d23ca max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xe543ed43 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xe549ff19 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe54a1482 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xe553ae94 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe559dd14 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xe5664946 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fbf4d pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe59b4f2b pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe5a13511 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0xe5a7d1a7 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe5a7e1bb devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0xe5b7e857 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe5c5251c dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xe5c93a35 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xe5d126ac fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xe5da850c dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe5ec503b __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5eeaddc blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xe5eefd90 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60d36b2 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xe616a64d devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xe62430f8 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe649721d copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xe65028c4 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe6658b50 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xe68f245f thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0xe694efc0 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xe6a13e7d xive_native_configure_irq +EXPORT_SYMBOL_GPL vmlinux 0xe6a458bd regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xe6c36bf9 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xe6c59685 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe6d1cb56 strp_process +EXPORT_SYMBOL_GPL vmlinux 0xe6da9667 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xe6e1e6a0 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6f30ab9 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xe6f923b7 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe70b0a75 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xe70f7a2d led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe71f4dd9 kvmppc_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xe71fe38a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xe72961e5 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe72c0af5 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0xe731fdda find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xe735ffea regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe74a9d41 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77469c0 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xe77a61c7 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe77e8748 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78b8e29 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7abe34c fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xe7be906b xive_irq_free_data +EXPORT_SYMBOL_GPL vmlinux 0xe7c48dab vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xe7cbfa88 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xe7cfeb3b nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0xe7d34db2 opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7d8eea8 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe7df6c8c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7fdf420 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xe80fe8ac devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xe8120c29 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8256262 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe82ba21a irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87546b7 component_del +EXPORT_SYMBOL_GPL vmlinux 0xe876a1c1 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe878b210 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe880593a edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xe889ba0b crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xe898231d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8a844c9 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c389ce __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe8d47226 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xe8d6c181 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xe8e42d4f blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0xe8fef48a ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xe909eee3 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xe90c9559 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xe9108361 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe927225b ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xe93b29b4 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe93bd43b platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xe93c6442 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0xe93c9616 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9441e8c __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe9537e88 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe96b2488 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe96f996c dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe976d6f4 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xe9799a4a cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xe985280e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe988fde6 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xe9a067db call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xe9a070b4 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xe9a15ce8 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xe9b0aed9 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e48642 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe9f246d6 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xea01147e iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea084b73 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xea095ba9 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea32557f ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xea329b38 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea55248d pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xea585d64 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xea614e0a mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xea6adaa6 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xea6dd543 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xea772b1d i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0xea88c866 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xea93009b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xea932c76 bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xea9d1fee of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xeab0a321 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xeac6c543 fanout_mutex +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 0xead655f3 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xeadb8e62 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xeadf72e1 tm_abort +EXPORT_SYMBOL_GPL vmlinux 0xeae0a27c register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8b1c6 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xeb1a4f29 opal_error_code +EXPORT_SYMBOL_GPL vmlinux 0xeb1e1f2c tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xeb49b14c xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xeb4ac9b8 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xeb556019 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xeb5a946a inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xeb5d59ae fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xeb5e0946 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xeb61cb78 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xeb6a1489 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xeb735af2 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xeb89335f serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xeb9c71e6 pnv_ocxl_spa_setup +EXPORT_SYMBOL_GPL vmlinux 0xeba7c0fe pci_traverse_device_nodes +EXPORT_SYMBOL_GPL vmlinux 0xebafaa27 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xebc665cd of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebd84751 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xebdae8ec ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xebe8aa4e devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xebf38ef1 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xec000c9c regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xec1fdcde __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xec223099 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xec2eb52f perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xec356c53 msr_check_and_set +EXPORT_SYMBOL_GPL vmlinux 0xec3df6a7 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xec425449 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xec472932 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec7598d3 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec7795c5 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xec7910e1 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xec7f1196 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xec84bfb9 opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0xec945678 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xec96dd4f wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xecb6843a usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xecb8d93d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xecde268a ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xecf7c81d thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xed0b0460 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xed102c35 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xed14485f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xed1a7cc6 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xed223985 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed609e50 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xed66ed06 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0xed78edda __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xed7f244a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed9c3bee crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xed9f242f thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xedd4651b devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xedd78d52 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xedda264d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xeddc0d85 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xedddac8c of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xede47987 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xededf880 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xedf62e9b devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xee0044ce kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xee0d7488 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xee19590a led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xee1aa8e8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee25d33b pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0xee320db0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3d4471 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xee4bd57f of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee52a638 tps6586x_clr_bits +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 0xee6da522 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xee8da70e crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xeea02d33 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xeeab776b blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xeeca57c1 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed26b3a gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xeed5b0e0 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xeed5c499 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee0c291 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xeeef240c __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeefa5221 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xef03802e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xef12de7c task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xef198c96 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xef225b6e dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef327223 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4ca87e fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xef5be910 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xef5db66d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d0376 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef830c5e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xef8dfa2d devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0xef93d3f8 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xef9d49b0 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefcc2dfd lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xefcfd081 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xefd7a47f of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xefe9363e ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xefeac955 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xf009cea7 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf00fb170 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xf01d340c crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xf027525b of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xf030b816 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xf033aff2 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xf03fafe9 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf06d5de3 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf07bd09d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf07e539c tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a5ebae synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xf0b18c51 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xf0b2e511 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xf0b9ef32 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xf0d287f8 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf0f150b0 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0xf0ffc315 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xf137d49b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf14ec097 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xf17ae215 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf1804287 cxl_afu_put +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18de2fc __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xf18e4ed2 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1980932 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1bab6d7 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf1c2bafe irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0xf1c87c82 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0xf1d2cc58 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1ee01f3 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xf1f36947 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xf204d6db wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22db504 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0xf261af3f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xf267c862 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xf2716698 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf27a0b0a device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xf27b3af5 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf28f66ea dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xf291a3fd fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf29296b0 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a0e0e5 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf2ad1eba platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2cc5e63 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xf2f0b73a xive_native_get_vp_state +EXPORT_SYMBOL_GPL vmlinux 0xf2f28652 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf2f81554 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30bdd4c device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf316673b kick_process +EXPORT_SYMBOL_GPL vmlinux 0xf319c605 vas_copy_crb +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf32ed297 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf336519a usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf348b18b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf353664d set_thread_tidr +EXPORT_SYMBOL_GPL vmlinux 0xf35ac6b3 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xf35cbfb5 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xf36c36ff hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf36dd131 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf36ea3ec vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xf370ca76 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xf372e01b blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xf37359fd regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xf378d95e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37e837a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3a3219f component_add +EXPORT_SYMBOL_GPL vmlinux 0xf3a3cf11 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xf3b443eb rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3cdf723 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf3de6741 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf3e34b2e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf3eaf867 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xf3f04cd0 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf41071a5 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xf4211abe devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46f7c73 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xf4703c9a irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf47ecda3 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xf47f09da blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xf48e7769 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xf4959e1d find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bd1486 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf4c994f5 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xf4c9ea7f trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4e5e031 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xf51498ae rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf525fbd6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xf52dc7d6 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf5464aa9 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf548a180 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xf54946bd __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xf549e897 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56b8991 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0xf574c34b scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf58458e6 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xf59d1cd4 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b372e3 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf5b70697 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xf5c62cc0 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0xf5c7708c __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf5ca2deb irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xf5cd3243 pnv_ocxl_spa_remove_pe_from_cache +EXPORT_SYMBOL_GPL vmlinux 0xf5cd84e7 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf5d19182 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f71b7d sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf6000b44 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xf603b454 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xf6060178 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xf6148ae7 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf61ad5af kernstart_virt_addr +EXPORT_SYMBOL_GPL vmlinux 0xf6246e67 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xf624e519 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf63961c6 rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xf63affe6 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf64ce724 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xf64f0f5c get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf6650caa tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf66ef60c ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf684f795 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf6908867 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf6a0c9ba platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a7134f iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xf6beb116 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c15090 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xf6c46c01 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e05d25 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e3d6fb devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf6e6e698 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ec63a8 kvmppc_h_clear_ref +EXPORT_SYMBOL_GPL vmlinux 0xf6ed38a4 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf6fa8233 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xf7112447 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf71af7fb ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf72018d0 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xf7220d44 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72fea62 sbitmap_queue_clear +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 0xf74c892c fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xf74cc635 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf751c181 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf756afc7 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xf757d61f crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf7580cfa icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xf7744eda regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf77f6620 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf78dada0 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xf78df7ca iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xf7ab90c1 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xf7af2945 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf7b5790c alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf7bc60ce dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7dbffbd cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xf7df6f57 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf7fca65e thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf800eb24 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8314f3d fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf8343945 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf85508a8 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xf85bb9f0 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf89a80f8 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf89bb27a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8bf9183 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf8c36d3e nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0xf8c3dced skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xf8dad2d1 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf8ddbd6c usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf8dddeb8 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xf8e10930 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xf8e604dd sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf8f1d100 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf9090ad7 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf93daa1f blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xf94d1762 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf9645b16 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xf9707214 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf973834c regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xf97471ef opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0xf9783ba7 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xf9953793 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf997a33f devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b61998 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xf9c0535c edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9d2dbc7 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf9efd29b filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xf9f9aedf cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa09e618 cxl_afu_get +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2a9890 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xfa396924 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfa3f84c7 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa4bf17c devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xfa650e12 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7d2ad8 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfa7d87f1 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xfa7f77f9 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab736d1 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfabb6aff opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae172e0 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb122adb __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xfb2e52bf pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb450ed1 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xfb479a27 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfb5edf3b pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb720a6c serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xfb738290 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xfb7f35c6 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xfb7f8928 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfb80eba4 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcbbdfb dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xfbccd3b1 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xfbe65425 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfbe9da71 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbf0151f regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0b62fc crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xfc0c7653 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1f103f da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc234177 _kvmppc_save_tm_pr +EXPORT_SYMBOL_GPL vmlinux 0xfc28d162 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xfc2e07d3 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc4e9c5a pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xfc50d8e8 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xfc51b499 mmu_lpid_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc53f2b7 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xfc5d269e tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc5d29d7 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0xfc611ef6 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xfc683b45 has_big_cores +EXPORT_SYMBOL_GPL vmlinux 0xfc9087bd dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xfca629bd dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcaf49b0 trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfce2e058 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfce36902 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcf2cbc7 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xfcf8b1b6 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xfcf9b6fd get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa0f11 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd050d8c edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfd0dfc44 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd120773 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd167d11 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3f030d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfd44d67f power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xfd4fb870 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xfd534e30 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd5dff1b fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xfd68f5b5 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xfd6c8fca __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xfd7833c7 kvm_free_hpt_cma +EXPORT_SYMBOL_GPL vmlinux 0xfd7bb6a5 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xfd840dad synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xfd86d975 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xfd87a204 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xfd9940e5 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xfda58a2a perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xfdaebe23 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xfdb159bc serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xfdb4a0f3 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbdf495 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfdc1b891 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xfdd44dfe vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0xfde0b047 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xfdee88dd virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xfdf3c2b3 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xfdfdc907 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xfe0c0a87 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xfe108e08 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xfe132796 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xfe18b1cd usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe1aa51f adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe1eb439 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xfe2c3286 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xfe37c4a5 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe474a52 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4a7b15 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfe56435a spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xfe577971 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfe646431 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xfe79a14a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfeaa1558 opal_async_wait_response_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xfeadd4f2 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xfec6ff6a usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed16b08 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0xfed80b93 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfedc4cd1 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee77b76 iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0ebbf9 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff21dc7e dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3b4c2f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff5bd2fa iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xff61c4d2 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xff7a2071 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xff7c2d7d clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff802a2d __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff8778f5 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa992e4 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xffab3064 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc18da1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xfff8e292 tty_ldisc_ref_wait +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xbb55f1ad hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x66a66dce ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x93545f2a ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x77f88a17 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xded887fe ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0xd7ad2e47 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xf162a78a ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x7531a54c ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xd067166f ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x3fa92d04 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x85e3ce06 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0e791ffd __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0f3a3c26 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x30f8f247 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x38fa63bd __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3cf5149b __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5cb942e2 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x61eb062b devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x911a4ca1 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9b8db5b6 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd523ded7 adis_init drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x823824d0 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xd539e537 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xe5b5abf8 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xaf7550d9 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x813257c8 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x84ff188b adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x004ac1d6 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x037be8e2 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0a793445 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1686a4fe ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7536a7e8 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x85446eb6 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8bff6703 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xafdafb18 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd142600f ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe4d23781 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x9a1439dd bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xe8bb9df7 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x33dc5686 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xb04bb7ec bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd684b993 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xd9332de5 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x54c52b21 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x9817a659 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xce7fe9d5 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe3f91a29 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xc8d1f1c2 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xa41aaff7 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x8495226e bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xb9e90f96 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xc81de78f bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd2ebecf2 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x129919a6 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x2c7e3302 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x435ac90e fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x8ea0a7c7 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x0002231e hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x1255ddae hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x25bd94c7 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x2d5e1b94 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x6321dea8 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7b13709d hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x82fc7ba1 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x87d1b892 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xa03ec1f1 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb402cd74 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb888d48f hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc53e510f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x1cc881e9 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6a3d55de hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa8e5109f hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xbfc5b558 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x311f8725 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x7515e384 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xb394ad7d hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xf76fd12e hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x10b9d46a kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x6aaf2a47 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xd26d245a kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x107ad3c2 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x18cb825f ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x22458be4 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x48a26753 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x75a74821 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7b4a54ae ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbf6b909a ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd525fa27 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe34efb8c ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x1b26618b mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xe5e27fa6 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xef33a3b6 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x0425f4e3 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x095a498a mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0b9ad5d7 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0bed3b0b mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x13fdefce mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x377c02a3 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x3c148279 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x449c1582 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x574d939b mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7486c1c4 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa73ddb02 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa898928a mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa9b2fb8a mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb04a880e mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc4477741 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xdabc86d7 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0xae24133b mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x050efc26 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x0ede2d71 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x17137b55 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x033a25bb scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0x36138ab5 scd30_probe drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x1d54671e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2971542a ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x48430d72 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x5f1ab284 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x78fff4d8 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa996da3e ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd77db481 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd87d0517 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x03c6a37c st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x044a8178 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x097a3857 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0dcc7bc2 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x166cad7b st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x1f7fbdb8 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x22da1625 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x24b644ca st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x5e61381b st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7f1b4585 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x83394bd8 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9cc1d0d8 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9eb6b9e5 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xaa621dc9 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xac063787 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xbda4b3cf st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xbfc76641 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc4dba343 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xc6b9f3b3 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcc6cd341 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcd0a122d st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd7096b64 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xda51b3c6 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xebeb3c49 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xeeef8e24 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xf23a7f9a st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xe5b02890 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x77e81860 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xc346f236 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x4eff18d8 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x7e8c9f6f zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8aa724d6 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa44d8719 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xb45266e2 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf7f65f78 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x047cfaf5 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x07c07439 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0a5d7f33 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0bb77353 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0c1aa873 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e45d802 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e6d3a17 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x12b1ecb0 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x160ad2ce iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16e420c4 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ee1c386 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x229d8b26 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x23d6cc81 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32eb2d76 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34278b61 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34a5f4e8 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35307150 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x384f1648 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3bfd4277 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cb3f69c iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3df39fcd iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x46145689 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4f52c0ef iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x56b8859d iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5b2ebf83 iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x60598fcf iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x64d8a32f iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c8b5d8b __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e4a86d9 iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6f82b8a1 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x724e8822 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7307e077 iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78f1fc0a iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7a7132c7 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x83f0535d iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x853fc2d3 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x86b79720 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8e2a0005 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8e417d7a iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9327b0f4 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x940c1c8d iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x994cce90 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xadac2383 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xadfd8cd1 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb649831a iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbd080e28 _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc3710db4 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc8c4dfe7 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcae69747 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd7a3da4 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcff2b7c9 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3c0d4cc iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd75e8b3b iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdfd4d3ab iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe71ebf9a iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75f34bf iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea9648a7 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xeaba2cb2 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf0775dbe iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf80c96c2 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfcb417f5 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfeba0312 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x58cc816d ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x874eb05d ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x018925c5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1d8e7e17 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x2c36b391 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x32ce6fb5 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4a7d1abd chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x53bdef79 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x614c559a mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x63bcbda7 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x8d9ba47a mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa85fc51d mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xaf7ad989 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb956128b mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd0ef2f45 mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xdfea4bf8 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x038f75a4 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x06e51d50 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x0dd9d7c3 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x1ac9c570 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x6c1e9436 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8b232318 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0667a010 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x07284fbb peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x07e5486d peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0a1c2e89 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x20ecd10e peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x460a763c peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x491d6dd4 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5d174827 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5d587a54 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x65c9dda2 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6b7fb37f peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x70c49543 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x78194925 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7a4fd3e7 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7ceb5251 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x821520ed peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8c1cc886 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8febe2cc devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x943c36c1 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xae40ff53 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaea4dab5 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc343434c peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc631200c peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd4984499 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe19fd329 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe31c1df8 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe6f5173a peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe77e8ae3 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xed41bc0e peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x04dd9a76 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x5129a97b peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa74e4336 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xe3efd469 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xfd5c6356 peci_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x12ba41a2 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x1a0f4101 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2e0ff98e pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x30b65b79 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x422f6de8 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4b5679fb pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4e3a6dd8 pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6112e7a8 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x68fbe287 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x780b6e51 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x790b243f pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x999dbb19 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9cbb7805 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb5d38124 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb6a90222 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xcc327c47 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd3be4e22 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd6a62245 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf3ce12e0 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6dc8c316 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x6f704312 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x91c52bb2 sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xa358596a sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x198847d7 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x65c0d051 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xcba718f5 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x5a19f079 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x9ef72a87 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xddcfebcb cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x11c37c74 dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x21882e0a dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2e505958 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x32514248 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x627cea6a dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x6377e70e dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x63c00d4e dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x9214c14e dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x923196f2 dw_spi_add_host drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x1174717e usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1196ca84 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x30bfde92 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x357cd6c0 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3a4f1808 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5e945778 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5efd4d5b usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6ccd3737 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x75e3a750 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ce5b4bb usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x88bae9e1 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaa4cce6d usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xaf178d10 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb54b0192 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc3cfc8d4 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4e8e3b7 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd8f1b648 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe0f2ee20 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe18051da usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe1db6541 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe7b62c4e usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf0939101 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf22278e6 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfb441aa5 usb_stor_probe1 drivers/usb/storage/usb-storage diff --git a/debian.hwe-5.19/abi/ppc64el/generic.compiler b/debian.hwe-5.19/abi/ppc64el/generic.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/ppc64el/generic.modules b/debian.hwe-5.19/abi/ppc64el/generic.modules new file mode 100644 index 000000000000..9ee5136dd0d0 --- /dev/null +++ b/debian.hwe-5.19/abi/ppc64el/generic.modules @@ -0,0 +1,5846 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_dw +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +amt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +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 +ax88796c +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 +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 +btmtk +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-dphy-rx +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-renesas-pcie +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_rsvp +cls_rsvp6 +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 +crc7 +crc8 +crct10dif-vpmsum +cryptd +crypto_engine +crypto_safexcel +crypto_user +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cxlflash +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +delta-ahe50dc-fan +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 +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_panel_orientation_quirks +drm_shmem_helper +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-gp-audio +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 +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 +fsa4480 +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 +funcore +funeth +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-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-sim +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_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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +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-ccgx-ucsi +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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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 +ina238 +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_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 +ip5xxx_power +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 +iqs7222 +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it913x +itd1000 +ite-it6505 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-powernv +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +line-display +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +ltc2688 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-serial +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_ep +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-vfio-pci +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 +mp5023 +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 +mse102x +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 +mt7921-common +mt7921e +mt7921s +mt7921u +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 +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +octeon_ep +ocxl +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +og01a1b +ohci-platform +omap4-keypad +omfs +omninet +on20 +on26 +onenand +opal-prd +open-dice +opencores-kbd +openvswitch +opt3001 +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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 +peci +peci-cpu +peci-cputemp +peci-dimmtemp +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-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 +plfxlc +pli1209bc +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-xilinx +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 +rcar_mipi_dsi +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +scd30_core +scd30_i2c +scd30_serial +scd4x +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 +sensehat-joystick +sensorhub +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +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 +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3_generic +sm4 +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-acp-config +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-generic +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-ak4375 +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-audio-graph-card2 +snd-soc-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-macro-common +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-rt9120 +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-tas5805m +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-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-cadence-xspi +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3_spi +svc-i3c-master +svgalib +switchtec +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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_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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +ug3105_battery +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 +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +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 +zr364xx +zram +zstd +zunicode +zzstd diff --git a/debian.hwe-5.19/abi/ppc64el/generic.retpoline b/debian.hwe-5.19/abi/ppc64el/generic.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/ppc64el/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/s390x/generic b/debian.hwe-5.19/abi/s390x/generic new file mode 100644 index 000000000000..b9610c6ab7f3 --- /dev/null +++ b/debian.hwe-5.19/abi/s390x/generic @@ -0,0 +1,13874 @@ +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x28c98fda crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xc28fbd31 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xeaaa002d crypto_cipher_setkey vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x05a43d8f dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x0f834074 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x11adc2b8 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3a2a8baa dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5a36ccfd dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6ec08896 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x6f45dfa7 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7ba65f75 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8a74e6c1 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8f63ade1 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x94a4c473 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9b80e965 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb9f8a293 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd39f43cd dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdc34ce76 dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe8ee08c6 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf73eafc4 dma_buf_dynamic_attach vmlinux +EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0x220b49ab chacha_crypt_arch +EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0xdc94f829 chacha_init_arch +EXPORT_SYMBOL arch/s390/crypto/chacha_s390 0xdd8ec6bd hchacha_block_arch +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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x0b28671c crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x2f515837 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0x5f55e05c crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x9d96ce75 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/nhpoly1305 0xa415fb35 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xe01a2232 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/sha3_generic 0x34d789fe crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x3efeee2d crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xe8d1e5e7 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xfcd40d70 sm2_compute_z_digest +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 0x00ed0571 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bfad2a drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02266b30 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x027a77b2 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02f62c10 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03156232 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04091d8e drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05895787 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06a02e37 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07112cbd drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0765eef6 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x081f4f32 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0839351f drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0928bf88 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a8082c2 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0acc0bee drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3ef652 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb90fb8 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e7ecf79 drm_connector_has_possible_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 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10e0bc9b drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1117f557 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13ff3b71 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1424d8b5 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ed02d2 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1514c39c drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x153dd981 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159feb87 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16425ca1 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1663ec28 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1699e8f5 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x178d6f1a drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x180ce11a drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1afe431a drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcadeee drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8139fe drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e873cf3 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2091c1ae drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x215e65fe drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e13bc9 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2214516f drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2423f51f drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24766dbe drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cc9c46 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a8b993 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f71010 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x284fb522 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28db9b3c drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8757e4 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bc5ee46 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c236ee1 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf3d6aa drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4b3e05 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d7372ee drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e336a41 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e4967c3 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e66be19 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f3547e1 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30ef510e drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31f32e49 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3301e070 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33911269 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3391f79d drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35aaa4e2 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36bb4ec7 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x374f81c0 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37592d3c drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37bf5d22 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d1cdfb drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37eee34f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38247cae drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386ad622 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3ba50e drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a485ca0 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3aa28bcd drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0b6904 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3be010a4 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cb803c8 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbde9b6 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40eb75f4 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fa04b1 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43196fb5 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43bc8ce4 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44280f76 drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448cfa1d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c8ad31 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44dc4d99 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46502a62 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47087773 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f84419 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4945ea85 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4962598e drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a49c3d4 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa3fa23 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cdf77f9 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d0a156c drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ddc55ee drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4e364a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e7b45a2 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f59b2c4 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50f0c5f6 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51b4808f drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535d3d11 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x552612c3 drm_sysfs_connector_hotplug_event +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 0x580b3a6d drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593730b8 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a47178d drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a84f4ba drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0f45f7 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b266c12 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bbd0254 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c133a9b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd99c16 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dde07ab drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ea41ceb drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f034789 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f31bcf5 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x606d97af drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60848820 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60968837 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6149a06b drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61969d4c drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e259e4 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6487823e drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6543dff2 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fc98ce drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x682fbda3 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x683804ab drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x699b3432 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ad2ead drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ef5ad1 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a01417a drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a13abfa drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a26ff70 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a3a80c0 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a46fa67 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6abf0e3d drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b432d19 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5f61e7 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca50c2b drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d18ba12 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e65e371 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e73f60d __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f815f0d drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fbbfcad __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709f3e1a drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d3eebf drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7139ce4d drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723ab1f4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x736d8071 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b43b9a drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x742d5af9 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77864ce6 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ccc23b drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x783312d4 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78cae975 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x796002ae drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c125b11 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c70c230 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbbdc7f __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d0a164d drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9b3370 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e90755a drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ebfbe8c drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x818b6acd drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81b46b80 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ff5f11 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x834e2913 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83b33f80 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83bfef41 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842eeffc drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8497833b drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x868ee288 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89903e69 drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b6e03c drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89ef65ea drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89efa561 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ab5cd75 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bbeb186 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c027e0a drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd1f61b drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d1f310b drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d38c095 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e85a271 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f4063f7 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x902ee980 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91db51b6 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91deddbe drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92265a8c drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943abd96 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x948a480c __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x949683c3 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94baab24 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ec1cb2 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x950c7d5d drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96528a3a drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x965dd812 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a89527 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97d36c34 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98254e88 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99bf8acb drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a020a56 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a1e08dc drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9af43117 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c53572a drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d2f20f0 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e7296e6 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd699cd drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ff50b29 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1203760 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1957426 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa281df0a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2ae03ce drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2eb61a8 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa372ae16 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e4c2e0 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa46f639b drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ec2523 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6611995 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72f1d3d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7339a52 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7ff050f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b29126 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa926649e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa758517 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab3433f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaabf668b drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac4f53e7 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5c9ca2 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad748206 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5c995b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7ae7bf drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaed8c548 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf349dc3 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf59ffc1 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafe4a26e drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafedbad7 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb028aded drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b269cb drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0cba924 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1124822 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1838ee3 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1bd5af9 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3132810 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31d25d8 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e8ce54 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fe0501 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6242dfc drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb64320c4 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a67ee1 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb72d1ac9 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb79be432 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb84770ec drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ea1933 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba7c335b drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc5c8c0d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbccf892b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7ffbca drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbda40080 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe5b629f drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbec2fe6f drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfcfc893 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04a7225 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0bb0f6a drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22bb89c drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3b2c370 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5bbc88c drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc68084cb drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d0a91b drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8500267 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc956f9cc devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9cfee31 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca53d87a drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca652a16 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba3fe1e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbefcdd4 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce59dc6 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd7e09d2 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbc93c6 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebefd04 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe68115 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1324a69 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18dcf3a drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1bc6b0b drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2034e19 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3835f31 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd565b7f9 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd584daca drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd73630b9 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76691d6 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76aeb47 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd76bcc8f drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d2c6e3 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f055db drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda3f6a98 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad6d2cf drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb19637a drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb1d896b drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb607620 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc952f01 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcb26600 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd01cdb1 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd4a74d7 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd580e4e drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd62d1fc drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde3b3305 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xded8b287 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee78947 drm_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 0xdf7bb491 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0c4c44c drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe143fffa drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2715fba drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a44fc5 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe58e4fcc drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe70f880f drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe847e397 drm_mode_create +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 0xea26a3a8 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea3af578 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea870c0f drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4dfb23 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb75a0f1 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb8dd11c drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb7f8c6 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec76b243 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1ff476 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed5ba72e drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef3d5a19 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef781667 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9c1ada drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc70747 drm_poll +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 0xf1025b07 drm_client_framebuffer_delete +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 0xf2183154 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf219a9bf drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf29c46bb drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3c72651 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf40c6f39 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf597aaa1 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d94b97 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8279531 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf82ef560 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf89ea685 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf96a1985 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ab9224 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1d7a07 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7209d0 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa87dcb1 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb04a916 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb06de6c drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc06d538 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcef12e0 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd20a635 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd65dc39 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdf1e380 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe5636c9 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeab7f56 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0a331d drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff620318 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe33497 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0371a960 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05ce5c92 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06f2f527 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07ea1df1 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09e52faa drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09ec9ea4 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b9146bb drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e1ffa04 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e71eff0 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ebd5e42 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f047a83 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x123cf2f6 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13375fc4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a1e539 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1632d397 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1755cd58 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19e637c3 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1cc56065 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f6bac68 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20d0f163 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21401b78 drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21b42cc0 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22fed07e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23a73a54 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x251dcf30 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ce17ce drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x266e67da drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f0ba5e drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2984183a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2aafe53f drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2be1f1c4 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c110154 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cccf3c2 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d75d99e __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e155733 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34d1bbae drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x354f5e3b drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x355889b1 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3724e11d drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x376e0e6d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x376f01f1 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3992cf0f drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a15b311 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b92b659 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d10e176 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e3f7f76 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e514d23 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed1287b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fcd02ab drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x409c433e drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40e37791 __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4231ed0e drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44628a28 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45227c4f drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46055b9d drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46f2a023 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x493ee789 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aee603f drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f467d64 devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f9f5f03 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fdb0df3 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x545dc4db drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a1922d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55d00eb1 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa2b037 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b0b521e drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b2601cd drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e5ca203 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb7f5a3 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61d8c010 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x626829b2 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x635ace59 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63cab3fb drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64560e9d __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6526fcf3 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66dc5822 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x675702a0 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67717d68 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f702a4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69ac395e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69b1b8ff drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b22c521 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b8a7cb8 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c00ae6e drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c3f04d7 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d561033 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7d21ca drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e05628b drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70be296e drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71804d05 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72085af5 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x726c5750 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ce0d18 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x743d35e4 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76131e09 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ce833d __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77dbab2b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7964f9dc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b036bd4 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cb3f7d0 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80cd0ab8 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81fd20ef drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82938d67 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82efeadd drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x836bb535 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x849d905b drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87035489 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x879d5585 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88743071 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a7ea57b drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a990be8 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b0651e4 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b8bb70e __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91d01864 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92bfba68 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93cec5c7 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95934dca drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b130fb8 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c78c80f drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9dd34325 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ecf0ff6 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f329b92 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f68a301 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa120754e drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa841a411 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa852820 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa8ff2cc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabba4a47 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae71d0ed drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf29be29 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf51c042 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb18fe4cf drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3906f4a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa2d29c drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd123294 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe053e4a drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe52189b drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc05e3f4c drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1089056 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3aa6a39 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc460392a drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4d12377 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc58738c7 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc732f148 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7404529 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc75a8c45 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9592b1d drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9665787 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc56dcac drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd5481e5 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdd3b092 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdde332f __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2ad64e8 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd539c8d6 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd5d731e2 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd897bb44 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e50690 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda9d698b drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb82bc58 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc28fee5 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde414876 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe145e875 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3962b0e drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4151a56 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7f1d238 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea08f446 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae135c7 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeed504c1 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf04a79cb drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf233be72 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2e86cd4 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3bcdc86 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3be2b68 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6801c40 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf94ad13b drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa226c7e drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa302b34 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaa381f9 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb6d09b6 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb7ae24a drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc0edc42 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfda6aefd drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe2ff07c drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe394d36 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe507a17 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe9fb9dd drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff7adee0 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff8cb640 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_panel_orientation_quirks 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x234ca7f9 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3b93e5d1 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3e2c1392 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x43f73c1c drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5dccb072 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x85412dd7 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xab1e336a drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xdbcf81a8 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe9b7f2ee drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xf83be689 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x17d8a9cc drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x78d62d2c drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x834bfb07 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xcb735320 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe579b43c drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x10834637 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x1cc699cb drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3442733d drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x539b7865 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x542e3c68 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x61706416 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x68526d5e drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x83b2cc40 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x8d0c1f18 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x937a464e drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9f3bc84d drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa8b3c006 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb79a0a01 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2849728 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xee841ab4 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xfca8ad19 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x003a6358 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02dfd84f ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x061f12a1 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bbb46e4 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e821531 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f6a9e82 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1123d92a ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1775e026 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bf23a1e ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x248bbf6a ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x29da2619 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2dbddb2c ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e1a8bce ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e8e12cc ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31e09af0 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32c7dbe3 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d0fb727 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ff8f6dc ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x425a3f82 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44a3b954 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x456e9d71 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c9a9a73 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4de75134 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52226e63 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f263760 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60a57031 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d82cccd ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6decc3b0 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ff7bcfc ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x708804b9 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71306e41 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7266a11c ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82ab626f ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8918c3a8 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a69c288 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a8c6116 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8b8bbf2e ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dc5ae64 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x962624cd ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa02f94ba ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3fabb9e ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xad6d8737 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1aeda68 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb260dfdc ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb412f4e1 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb58d1aba ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5b11f0f ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb802f770 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9a09af0 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbbf4f3e7 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc334a94b ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5a206a4 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce97361b ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd088ed79 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0f5cc83 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2445aba ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8a26459 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8fb8e42 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebff9b02 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeeb37377 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf80f170c ttm_bo_vm_access +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4b034ce5 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x76263271 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xda79f390 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/i2c-core 0x0d4cacfb i2c_get_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x16206dbb __i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x2a3f77cd i2c_del_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0x34465b7c i2c_smbus_write_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3491d1ae i2c_smbus_pec +EXPORT_SYMBOL drivers/i2c/i2c-core 0x3c7f3d1e i2c_clients_command +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4579a544 i2c_smbus_read_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x4cf6f689 __i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0x546db122 i2c_smbus_write_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x5deeea27 i2c_verify_client +EXPORT_SYMBOL drivers/i2c/i2c-core 0x6fbdae8c i2c_register_driver +EXPORT_SYMBOL drivers/i2c/i2c-core 0x764c45f1 i2c_smbus_read_word_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0x8765e671 i2c_smbus_read_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9a8bf31b i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL drivers/i2c/i2c-core 0x9f75aa98 i2c_smbus_read_byte_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xad1be116 i2c_verify_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xae52aaf1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xb333c326 i2c_transfer_buffer_flags +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc21dd42a i2c_transfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xc8d9c0ea i2c_add_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xcd1d6d60 i2c_smbus_xfer +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe75dbd28 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe9558d32 i2c_smbus_write_block_data +EXPORT_SYMBOL drivers/i2c/i2c-core 0xe9a33b30 i2c_smbus_write_byte +EXPORT_SYMBOL drivers/i2c/i2c-core 0xed8aa808 i2c_put_adapter +EXPORT_SYMBOL drivers/i2c/i2c-core 0xf8ce2801 i2c_del_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x059b87a4 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bb9d394 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2120c7aa ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4dc2e3b2 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x52dfdc22 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5992c124 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6501c37d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b9bb711 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x765c3a85 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e2e2ae7 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa055658e ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa50c39ce ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb10663be ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd40079c5 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfbc66df8 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x003c3bdc rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0193b953 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x024d4c86 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0404864d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05426757 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062e81d4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08927300 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x093fd2b1 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a5b17a4 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cd1699b ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e02be98 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e6a2612 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11d99df8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x121ed7b9 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12d8e5d6 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x139d51f8 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13bb34c0 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x142a5e9e rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14461182 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18527e15 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1962659d ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ea8a9b6 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20d0d318 ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2287fa05 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23927034 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23cf579a rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2474340f ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2620bfc6 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26a97890 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27773f6d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27c34239 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x295c94af ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a120b33 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a204037 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b90d300 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e14def8 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e404bcf ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30436ba4 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x307e8e8b rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30fdddaa rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30fe7f5d ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31d03bd6 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33023522 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33aa4751 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3538b56c ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3542e431 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36b7ef4e roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3987bb3d ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b0f8b0c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c637875 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c878a04 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e3376c7 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e6c6b37 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ec73adb ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f3473c6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e2fb28 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42212bdb ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4243ef72 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x434c5d10 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45011536 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47d79b5f ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x483800af ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x489f7a8c ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ac36c9e rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c292dfb rdma_user_mmap_entry_remove +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 0x50bf8f0d ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x519cb687 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52648738 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5415eed9 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54ee850a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563fe297 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5676aa15 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58b1543a ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5961b55b ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a51a3cb ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c92d945 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eb93c2f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60c9b2fb rdma_restrack_add +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 0x6660b38a ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67c102e9 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6809ad44 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x689586b1 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a20e40 ib_dereg_mr_user +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 0x6fb0cf35 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x706adba0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7105362b ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x714a7a4d rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71e58548 rdma_restrack_set_name +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 0x76576c86 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x782589d9 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79787750 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79d843b6 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b549c0e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e93d0b8 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7efb2375 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80a91638 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80f960c8 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x827a11e3 rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x83b0cd22 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x853db706 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8544fdff ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86b90f5e ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87b0fef1 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89000af7 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a965ba6 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bbb8267 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f54aca7 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90635e20 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93639fe3 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93af640a ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956a78d9 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9573ffe4 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x958f25a3 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95dcfe0b ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x997a3fcf rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba0fdc7 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c302efe ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c350dc4 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c5864ed rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c65ba9a rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de0f92e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ed28a83 rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9feebfae rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0794c27 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0985814 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0d0f0ea ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9340f16 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9dccd60 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa236555 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab5cb5c5 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3e6b2b ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaeef9d0e __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb01cd800 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb27d34b2 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d226ab rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb564fa46 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb682b8a6 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81fd82a rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaaca48a ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbca1b37c ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1492998 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3d06537 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc488cd0f ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4dba8ec ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6c9b716 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc79daf98 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8f32451 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc90b4fe7 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca273f38 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc4b2ef ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcced7373 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdc59004 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce8a7727 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf8fbfc9 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd08859a9 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1eb69ae ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd299bdfc __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2cfbfd8 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5f80f72 ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd66bf322 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd87cecfd rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdab5015e __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb59236a rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xddd74992 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdeac8159 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe006d4b1 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe19b23a7 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe425901e rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5d247c5 ib_create_ah_from_wc +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 0xea75d093 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea8049f5 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb75ae24 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebe85929 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1a5dea ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee21790c ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2694ed ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf294dee9 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2c3a04e ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3aa7833 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54f682a ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5d4ad8d ib_get_cached_port_state +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 0xf73da4f0 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7e2fad8 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf80bcdf5 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf83bdb5c ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8b417f9 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8d88047 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf94fd321 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbc3a9a8 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcfc5e54 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd9e3e2c ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffd1ee8c rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffe5da25 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0468f7d2 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x06370240 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0b469671 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x15432077 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x19a5f6a7 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1daa8d0b ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e65cfe7 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x21109c44 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x256ef22c ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x36ddc309 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d3244bf ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3f3c5833 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48973b5e ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x57cbb11d flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5b69d346 ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d86c396 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6034e74b 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 0x64e143b4 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x660fbc12 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x790ef1e5 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7d0c250b ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x83669912 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8d8e60af uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x943dbea9 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x96a47ec8 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x97c9020d ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9600388 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xacdd7120 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc918cd4b ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd5c4ccfb uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe047ab79 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4e6d5d8 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe784059d ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe9e2bb4d _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf70ebf61 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf82f5a49 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf9fb6dc0 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x08a70e0f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x16cfeb44 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x35677350 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da20d28 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x62d4940e iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb301b8e2 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe8fd1b1e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf44b9d03 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0acc10b1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19c7aacc rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1a3d73e0 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x212266dd rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2422bc30 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x294f425d rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2f03cf5a rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x410fc496 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x496090e1 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4eab527d rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x52d30f9a rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f70bcfc rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62e69b10 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6604832b rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x675e36ac rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bd0d6e4 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f300e4c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f4557af rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7642566b rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x777fc345 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x77e1cff0 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x864a3c7d rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88d6bd71 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa2d20935 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa83a09c9 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5ba5884 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbc283994 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe9cc43e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc03c23da rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcba61d30 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd39fe3a5 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xed7717f3 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf37ae48f rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3cc1bd3 rdma_listen +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3ff4f082 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x658e0b0b rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x92843042 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa56d7007 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd6a3ee99 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xed1e52b2 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xfd447f01 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1bb2653a rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x33b1c303 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x44f07472 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f6c7edf rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x99b7caed sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x9b94df88 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xc28750dd rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2748b62e rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x3ea418cf rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x4d375573 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x563e5153 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x5bfbf29b rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x94ec24ec rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/md/dm-log 0x1ec4d439 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x3c709224 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x630d943e dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe6ed7a01 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3064ff1a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3abfe117 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x761dc559 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9614524a dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xac861150 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe2fd04d1 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x42cfc521 raid5_set_cache_size +EXPORT_SYMBOL drivers/md/raid456 0x6e478142 r5c_journal_mode_set +EXPORT_SYMBOL drivers/mfd/mfd-core 0x1b232404 mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0x97571db7 devm_mfd_add_devices +EXPORT_SYMBOL drivers/mfd/mfd-core 0xafa66f72 mfd_remove_devices_late +EXPORT_SYMBOL drivers/mfd/mfd-core 0xb9b00c01 mfd_cell_enable +EXPORT_SYMBOL drivers/mfd/mfd-core 0xd873da46 mfd_cell_disable +EXPORT_SYMBOL drivers/mfd/mfd-core 0xe28a865c mfd_remove_devices +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x053d13c4 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06660a13 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a857909 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f00cf70 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f85acf6 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e96c8a0 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f2db6b3 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33146117 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x333607e7 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x341c48a7 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d035899 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d570fbe mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4290278a mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46d9f075 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4845aea7 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e2870fd mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55858cbe mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592b675c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66b1a99d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a75bab3 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70633fd9 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73b1d828 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73cdc17b mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x741cc718 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f0ecdcc mlx4_eq_get_irq +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 0x80132594 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88fee2bd mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcb0169 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e91b4a4 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x930df1d8 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacbb1280 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b9812c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5f7d4f2 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf75c1de mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc325041a mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd3c13c4 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2fdeffe mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3265b16 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3d722a3 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe21d2b8d mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe978702d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed852bd3 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b6921c mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff26b3d1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0165059f mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x024888d1 mlx5_lag_get_peer_mdev +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 0x050af820 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x052f4c2d mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x055b78ac mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x091c1787 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c48ef0b mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0de04a96 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e8067f4 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f45c4b0 mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x105d9a6f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x107fee6f mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11457b34 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14923027 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a9b57c2 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce49ddd mlx5_mpfs_add_mac +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 0x1e6eebd7 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20ae9d62 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22bce683 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x241c3340 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x244320f7 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x258523e9 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d78599 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c56b2e0 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2db31f64 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dffd7cf mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e10cd6f mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30f5f3cc mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3570be21 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36872123 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3aecdb5e __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dab3196 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43983982 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x465703b7 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46e477cb mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ed7b02c mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f5586da mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51371a99 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51464f32 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52c2584a mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52ecb035 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5322d2d1 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x547b9608 mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55216463 mlx5_rl_remove_rate +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 0x573b8a57 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a3e5ec4 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e42a66f mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63f5a6fa __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x643955dd mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x645d2cc4 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66fcb2be mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6aa22512 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c69ebd5 mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cbd8965 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ddb119d mlx5_fpga_get_sbu_caps +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 0x728daf46 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74093e15 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x748f7a7f mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7637e92d mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76c0f750 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7970a8f7 mlx5_core_modify_tis +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 0x7c966b87 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dd7e1a6 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7deb6ac6 mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd709fe __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x803792a9 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82913adf mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82bc0ffc mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83476bd3 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x834ac904 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83e7e1d2 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x851e0360 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85450a42 mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8662b1e6 mlx5_lag_is_shared_fdb +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 0x88115bc7 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c2d3f2b mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9582bfce mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b78ec8b mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9beb7133 mlx5_packet_reformat_alloc +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 0x9f918a7d mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fecc8ff mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa4415622 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa70ace70 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7c1a956 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa75bb71 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab0de97b mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4bb7f8 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacde8b72 mlx5_lag_is_master +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 0xae9a8223 mlx5_core_create_tis +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 0xaf58e936 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb266aa55 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb411f52a mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4270108 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb594d2a9 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5ec5a13 __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 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 0xbca3f8c3 mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeb72d06 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc096ff42 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc29afe01 mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2a04edf mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc46118c4 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4ebe4ae mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc957e1c5 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc993d381 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc5017bd mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccbf9ff3 mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf052873 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd018b502 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd118a2fc mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2279822 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2756f9c mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd38fe192 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4f0455f mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd57073d9 mlx5_rsc_dump_next +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 0xd6c981eb mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde7e507c mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2495574 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2dcbbf0 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3138eb6 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5cab06a __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7e74a09 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9256a1c mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb419dfb mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb445c5c mlx5_eswitch_get_encap_mode +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 0xecca9eb0 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed19faee mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed602dac mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee597cc5 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeebdd937 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefa8bce7 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1ec9ddc mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6a3da6c mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f1b1d2 mlx5_core_alloc_transport_domain +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 0xf8eff7e3 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb043c33 mlx5_core_destroy_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 0xfe17501c mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff470a6b mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xa70e23a9 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0426fdba mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b89155f mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b9cffd2 mlxsw_core_skb_transmit +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e5f55a2 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x30d2fad9 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3607da31 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x477f5aa6 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x489d69bd mlxsw_env_reset_module +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 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +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 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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x69910190 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6a11b783 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6cbee721 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x72720d5b mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f2d4c19 mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7f659d4c mlxsw_afa_block_append_vlan_modify +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x827a2f1f mlxsw_afa_block_jump +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x829e8851 mlxsw_afa_block_first_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0xa015ddb2 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa82ca95a mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb5eeb940 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +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 0xbaca8c20 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +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 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdece9319 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 0xe4fbaaa9 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe891b97d 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 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x282c2a97 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xefd4f099 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x6a3aaa03 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/team/team 0x096ca9ce team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x684dd78c team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x786797cf team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7f2095f0 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x873744e1 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xb85fb6cb team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xc12b4739 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe939d318 team_mode_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x18b6d0bc ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x1a747086 ptp_find_pin_unlocked +EXPORT_SYMBOL drivers/ptp/ptp 0x3aeab639 ptp_cancel_worker_sync +EXPORT_SYMBOL drivers/ptp/ptp 0x40a668d5 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x46e25259 ptp_schedule_worker +EXPORT_SYMBOL drivers/ptp/ptp 0x71d07378 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xab802b1a ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xb0a6ead2 ptp_find_pin +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x020a87c1 dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x09ace359 dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x0b22c339 dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1427a36a dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x15e41599 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x167a414e dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x19082a77 dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2b1c0017 dasd_ffree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2c9cf44c dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2eda56ca dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x331dbd0e dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x33893e14 dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x35c9c407 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3b793871 dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3d54d084 dasd_fmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4fd36f9c dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x534aba7d dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x57ca24d9 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x648898ca dasd_path_remove_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6f13d817 dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x706aedeb dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x70f9ee86 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x81fb51cc dasd_path_create_kobj +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8959f676 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa6c04fb2 dasd_set_feature +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xa882aa12 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xaccd87c0 dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb5a5889f dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xba46a993 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xc134caac dasd_sleep_on_queue_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcabb0638 dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xcce9dd73 dasd_schedule_requeue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdd476506 dasd_path_create_kobjects +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdec92b8e dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xf80b3c75 dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xfe70b8e0 dasd_enable_device +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 0x022ad0d7 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x0ba5c3a0 tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x11c949a0 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x178153ac tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x182f0b4d tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x20a46485 tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x47dedb6b tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0x53bcc2e5 tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0x5732eaeb tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0x58da35c1 tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0x644049fe tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x697114db tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0x6ab34be7 tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0x6ee9a28b tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x82830ae2 tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0x900d6b4a tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0x90a91bb2 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x9282f360 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0x952b75fa tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0x9d05edf2 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0x9e022ca2 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0xa7b3dc7f tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xb0c6f3f9 tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0xb1d0e856 tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0xb42c5d25 tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0xba3bfa51 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0xbfdd5390 tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xc4ce135b tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xc7da086f tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0xc8ba4fb7 tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0xd48b7d68 tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xd6310338 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xdad10f92 tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xdb63633d tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0xdbc4edb2 tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0xddd27991 tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0xdeac18b9 tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0xe1202d85 tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0xe45d2a25 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0xe7c77a9d tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0xece58852 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xeedbc004 tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0xf85ec136 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0x62e7da44 tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0xaf3a2c16 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0xe4ec9202 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0xeabdaef5 register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x04468012 ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0a1acf9e ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x0cfbb80c ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x15ad6086 ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x2eb9dbf2 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x36673c13 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xf28bcfc2 dev_is_ccwgroup +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xfd72431e ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/qdio 0x0dd1ee1e qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0x7f56d334 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x00cbfcde __traceiter_vfio_ccw_chp_event +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x7acf9c1f __SCK__tp_func_vfio_ccw_fsm_io_request +EXPORT_SYMBOL drivers/s390/cio/vfio_ccw 0x87db7cac __traceiter_vfio_ccw_fsm_event +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 0x0ebc8b2f __SCK__tp_func_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x1360e3df cca_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x177c49f9 zcrypt_queue_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x17a7ba6e __SCK__tp_func_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x274ee02a ep11_findcard2 +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2af6340e cca_check_secaeskeytoken +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x2dc30fe9 cca_findcard +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x314aed2b cca_get_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x404502d2 __traceiter_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4812044f ep11_check_aes_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x49071731 ep11_check_aes_key +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x4aad03c0 cca_gencipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x52190334 cca_sec2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x528cac6a zcrypt_queue_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x54ec76ad zcrypt_msgtype +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x5e050fdf cca_genseckey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x67e750b4 zcrypt_queue_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7136ef09 zcrypt_card_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x742e0afe zcrypt_card_alloc +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x7dd52fc2 ep11_clr2keyblob +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x838f1acc zcrypt_card_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x85ca4e1d __traceiter_s390_zcrypt_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x88cf5390 zcrypt_queue_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0x8e61f5ad cca_check_secaescipherkey +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 0x9b41d74f cca_check_sececckeytoken +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 0xbca3476d zcrypt_card_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc0c976b6 ep11_get_domain_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc20af440 cca_query_crypto_facility +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc23843b6 ep11_genaeskey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc3ee9fa0 cca_cipher2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xc79ae663 __tracepoint_s390_zcrypt_rep +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xca323a3e ep11_check_ecc_key_with_hdr +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xd53d2132 zcrypt_queue_alloc +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 0xe41a19a2 zcrypt_card_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xea54d73e cca_clr2cipherkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xec693119 cca_ecc2protkey +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xee077284 ep11_get_card_info +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xf404cb7a zcrypt_queue_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xfa128312 zcrypt_send_ep11_cprb +EXPORT_SYMBOL drivers/s390/crypto/zcrypt 0xff53b870 zcrypt_card_free +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 0x16c1398a fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x34c6ca40 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x466917b9 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4686fbc5 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x49cc58f3 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x668fe1f7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6776ec35 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6ea87ca2 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba02852a fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd59bb1f0 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xee569974 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x089df89c fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09d5cde9 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b0068c9 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c8a811b fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d18ea61 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20cf53ec fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x244045c1 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x298590d1 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f0ee177 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x300960af fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32c355e1 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d148f2b fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45bba58a fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48e5c50a fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4c50e7a9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e1a1f1e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x50a3a5c9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5394a807 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53b1fb8d fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55668210 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x576cc2be fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x595d466f fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59eef069 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c53ac90 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64438361 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69418424 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b3fa621 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d6d0622 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x708e777f fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75a15095 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7684e415 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce8fa4d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f47a5fd fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7fe3b1bd fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x831c4b00 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x858437b6 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d23a263 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f7f57eb fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9133a63b fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x937d4b77 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x996b7a21 fc_linkdown +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 0xafaa5ff3 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb27b010c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb54e7b9e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb82ec555 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1cbdfb1 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4cbc4e3 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9cd1363 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcae60820 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb18f479 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce8ab603 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3a6fe9d fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd791973f fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfa68c69 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe295f4d0 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb150d8b fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed2c130f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1e0571d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf689e662 fc_fill_hdr +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 0x6fb0f5f2 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x726ded0b sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7322cdf6 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xeba2b77c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/raid_class 0x9cfb9e82 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xd148fcc3 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xdc026cb2 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19fb5a72 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27bc85a6 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2ee7c26b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x30b5fa24 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33b2e822 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b7247ae fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bf622d6 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f3c6d88 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f3f87be scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61a164a9 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7e5f7161 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86d32e4e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d8acfc6 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc46e08ff fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe00635f8 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf2281b46 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfff85b5a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0887084c sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c711f0e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0faa5984 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39be4da2 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c4318fa sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4072592c sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48456316 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x533eed9b sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58a0e74a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6176f26e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x694f9284 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6d4352a4 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x70e54b5d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84493b03 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84815370 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x87795f9a sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c54163e sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x93ce92d3 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x975c65af sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae38ffe3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaf2df8b4 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5438669 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbc18e61b scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe6be735 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc64e238b sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcee2613b sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3983704 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7d20fbd sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0f01432 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0c243e1e spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x14034793 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x5b262f9c spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe8256485 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xed8eac1e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x08d88ab7 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x09541ba5 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1856712f srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3ffc0aa4 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd378b545 srp_reconnect_rport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x04f7808f iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x092f546b iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13463484 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16d6a382 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18f7e905 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23c05d84 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x254f650e iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d3e8b70 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f073f5b iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b05f02e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d09e1c4 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46ce87e1 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x474e14bd iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x480fad9e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x50cf23ea iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b72a3d6 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c8c4014 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x600f4a0b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61372b34 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6368cb16 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6afac18b __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6b6f4fb3 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e3875f5 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7888fc05 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7de24cf3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x873468d3 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cbdee2c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f98b8f4 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x979d98b7 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9818a9dc iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98d8a799 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e61520f iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaeea5062 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb851a4b2 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbbbccd6b iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90ea5f0 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xce89abf5 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3ec7d9e iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe62bb4c5 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe737dc9b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec23805d iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee2af3fb iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefcf647d iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf41af0ed iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf70caa0e iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dc78629 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e183ea8 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ea79df0 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fad7a92 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x130ea67d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x136f5cf4 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1646c040 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x1804910c transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x1881abe5 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x18a6b354 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x199af2c8 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f925f06 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x266a1168 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2710c434 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2be39c3e spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x34c320b8 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x36ab339b transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x43f806e4 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x443a4e02 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x451995e8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bd8ca52 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x50edda94 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x536f5f3b transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x59c3bc8d target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5a1ce9bc __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x63dd0192 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x653ce3ae target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x6651c1a7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x698f9700 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b5bfac1 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x71ec9b5f core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x74d96d7e target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x76363062 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x77cb5a59 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x79025472 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f6377c1 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fb38d22 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x87a56865 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x899323ba transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f7f3118 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x919b0b24 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x97130637 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x99898696 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b664de0 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2ff6421 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa54955a8 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5ee3665 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa974c84c target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xac751303 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xafdb3ff5 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb81a48ab transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xba6dde63 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbac8f7e3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdcef6c5 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc02df470 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc381a613 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc45ba5e0 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc49945ce sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xc559fede target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc993ae3a core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xccfbd321 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4937af8 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7609098 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xddbbd2c6 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1035ab3 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe25a231b target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6739801 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe98d7502 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xea9def76 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xec282143 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf15d11a8 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4d9a882 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8da48b6 sbc_dif_verify +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x02b633ed uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2836e486 uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x2fdd344e uart_get_divisor +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x37ab689d uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x42a34860 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x42e8d432 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x5fb37de1 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x6b7b73e9 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x7bea43a8 uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x8035626d uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xed4887de uart_get_baud_rate +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x242b52bc mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4a0a0df9 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x535ddf32 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5ef017d2 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6409d94a mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x829292a4 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xafe3d7d6 mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xc1e0e155 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/vfio 0x01bb02c6 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x4232a0c3 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x4f44ece4 vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xaf8a4a7f vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xb1b50ff3 vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0xe5285778 vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xf3411eb8 vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0xfbcc5a4f vfio_pin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0x2fd9ca54 vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0xedb9879a vhost_chr_poll +EXPORT_SYMBOL drivers/video/fbdev/core/cfbcopyarea 0x2e77a95e cfb_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/cfbfillrect 0xd81b4c5b cfb_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/cfbimgblt 0x9fafdc18 cfb_imageblit +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x1b0dc024 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xed612521 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xe4ba6d2e sys_imageblit +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1feaa043 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x215fbf94 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa7a4c7c8 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xccfefd49 virtio_dma_buf_export +EXPORT_SYMBOL fs/fscache/fscache 0x03bccffc fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0baaf0dc __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2f317ce9 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x38e68643 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bc2e3b0 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4f34c215 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x51063e1f fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x526b3309 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x55c12c18 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x598ac814 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x5a0603cd fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6da478ad __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8329a435 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x870150f2 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8a46d7f7 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x916482c7 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x92daba9c __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9a484990 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x9be5b205 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaf788a93 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xb81f5624 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbe51b8a3 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbf8c35fb fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc4d63512 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0xccc604e6 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xcdf76dba fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe4fcb63d __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf675c810 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf68b44dc fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0xff20eabd fscache_clearance_waiters +EXPORT_SYMBOL fs/netfs/netfs 0x52c260bc netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x6bd66701 netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0xb3403381 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xca3bb131 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xcfce9304 netfs_write_begin +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x5c8556b6 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x89ed14bb qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x969bede8 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xa2d7e104 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa73fc143 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xc04c4224 qtree_delete_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 0x0034302f lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x0f6f0fdb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x17c6b1e1 lc_del +EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x6f1d0c3b lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0x7267d690 lc_seq_dump_details +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 net/802/p8022 0xe4363adb register_8022_client +EXPORT_SYMBOL net/802/p8022 0xfb8c85c4 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x71da1586 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9a6d4810 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0ee76b75 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x10a08463 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x16df3f8e p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1abff5d4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x2b8b7378 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x2d41eea8 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x30d78df9 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x37f9fb85 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x409e1222 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x42533502 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x516dc300 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x518f3d6a p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x57a034ed p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x59e84c5f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x5b9c0ff8 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x5c7fc9b1 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x5cf1e1c6 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x61cbaebe p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x685493a8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x74023639 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x7d6ecf05 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8696a4dc p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x89ac608d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9877c5dc p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x9ef0a40a p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa130e22b p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaf71f0d4 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0xafbaa22d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb13bf38c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xb9363a71 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xbe9b03b9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xc46ee56d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc648c2b0 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xc7bad4fc p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xd06b6e44 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd80714d2 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xd88d8ecf p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xdbc6968e p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xdde91b31 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe00faa2f p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe41441cd p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xe46e2864 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeadbad32 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf12ac34e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf2312926 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xf94ecd66 v9fs_get_default_trans +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2139bfcc ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2fddad1c ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3319cb8 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcd33e89f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xce29920f ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe89b52ff ebt_unregister_table +EXPORT_SYMBOL net/ceph/libceph 0x00e901a0 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x0571061d osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x060eb6aa ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x081edd9f ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x083bc8a2 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x093e1ea4 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x0b2ed612 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x0ce74839 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x0dfbc531 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x0e776b7e ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x122ecaa7 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x12e813ef ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x133d80de ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1610c090 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x177fd287 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1de39952 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1e226890 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x1e627b1f ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x20e9c65c ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2366376c ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x23dd0642 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x247baa3e ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x26b1c963 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x2d3fd498 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x2e91edb6 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x30dea2dc ceph_osdc_unwatch +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 0x37c0e583 osd_req_op_extent_osd_data_pagelist +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 0x4060690d ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x410a20b4 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x427f8247 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x435f2cd4 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x4439e2f1 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x471db92d ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4dfe31e3 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x50ac2bb2 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x52e131f0 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x53a44e1a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x5538b6f0 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5d3d40c0 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5d4b9e39 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x5f0790e8 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x60d4cab8 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x62162e60 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6273a145 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x63958736 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x6680eef8 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x66c585a0 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6a1e2741 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6addc432 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x6d082fa7 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x7790a91c ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x780f4fc1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x78bb200c ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x7afb84c2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x7bb11d24 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x8111e973 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x818c5370 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x81d82bea ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x8375650f ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x88a38c75 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8a34c276 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x8f59076a osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x905897ea ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x9435c090 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0x965a710b osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x98f63b30 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x9a9c26df ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9d1bf7fd ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x9d8471a6 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa29555e5 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0xa376f5df ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xa58b7e99 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa8a1eb47 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaa210dca ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae4ca65f ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2a3896c osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb33ec69c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5495fd7 ceph_print_client_options +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 0xba3c854c osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xbb861ff4 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbc98cee2 ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd38f90e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0125f54 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xc0fb8501 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc21144ee ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xc2fc624e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xc4450cd7 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0xc4bc6320 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xc8f84a56 ceph_put_page_vector +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 0xcbcd83d4 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xcc0dccc0 ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd1df3323 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xd40af701 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xd47f0aaf ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4e08173 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd4f60a96 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xd8a7deb8 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xd9083992 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xd941625e ceph_cls_lock_info +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 0xe0b07067 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe2d2a219 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xe33d9db1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe6fca58c ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xe85108a4 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xea6389a1 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xed26c100 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef6c270b ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xf1e56e99 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf54a16e2 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xf8f3eb49 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xfc599778 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x08bafa2e dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa5129139 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x3899cd11 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x3a1f9cc9 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xcebd5dd1 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xdef70806 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x7d3217ca gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1e05f22d ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3c43c91b ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3e11845e ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf698b383 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7d362874 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xab3dcfad arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xae77e9d3 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd75692ce arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0bcb3b42 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x27edb62f ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x34bdbc60 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x750a1892 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x68db2690 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xb4a1a17f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xe73bbdd9 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0917f571 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x16b625d3 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x1a7dbf40 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2dbd5804 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2e2d149c ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x52f7739a ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xad5cefe3 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe024465d ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe7844c80 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x408d6f18 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8b390e0e ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcb47f7d8 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf0c561a6 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x067362db xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xae305fa7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1c40cabc xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe2c00912 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/llc/llc 0x0033e572 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1cb98347 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 0x66f46a6e llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x6e7e0400 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x7792c5bd llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xcc1bc09b llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xdd281758 llc_mac_hdr_init +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1d270173 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20cf5785 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x465a0cf9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ed73d35 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x673035ff ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c8c4223 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa0368413 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa4b8bb90 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xad7e81cf ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb108e5bb ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0ec0210 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc754f55c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcf291053 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeef72c9d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfc0b6d27 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xfac688fd nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2e03bb19 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x435424a7 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x44f77711 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x7c2ad84d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nft_fib 0xb3c36947 nft_fib_policy +EXPORT_SYMBOL net/netfilter/x_tables 0x0891a7da xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0d7f5fcd xt_alloc_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x181b47e4 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 0x4d83b944 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x9260e919 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9b7aeba5 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x9be58206 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9e353e74 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa1a704e1 xt_register_match +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 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfbd7122f xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfd45e9bf xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2b850cf0 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x32eb1dc2 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4e7d3d75 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x51a70a7a rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x71cf4924 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x74025ea7 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0x935f2b11 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb6ba73b0 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb8708a11 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcef556b9 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd651d274 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd6c06454 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xd6f74210 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc1dcdd7 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe0681e9f rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe70bb8ce rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xece2f0ba rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xfc84e94d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x74ecc314 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x5908f912 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x64d90977 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8a2578f9 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc97d2e87 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x16ca2608 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4252c410 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcd804cf7 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x95f0cfe4 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb82bfb5d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xeea2c8c6 xdr_restrict_buflen +EXPORT_SYMBOL net/tipc/tipc 0x27c6fdad tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x64f3c6cd tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0x6c9a322e tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x8bef5d57 tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x4dbe4ff9 tls_get_record +EXPORT_SYMBOL vmlinux 0x00010040 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x001bd7ba qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x002b2a17 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x00344cd0 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x003dabb8 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x0045cd31 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x00607e60 pci_iomap_wc +EXPORT_SYMBOL vmlinux 0x00672777 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x00674ffc vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x0095b100 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x009d910e flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x00a1f3ca prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00c539bf scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x00c779cf param_ops_hexint +EXPORT_SYMBOL vmlinux 0x00da4ef7 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x00e6a7bf pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x00f772c4 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0112922f tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x011db4b6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x012575d9 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x01339241 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0139768e blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x014716eb hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0153a8a0 elv_rb_add +EXPORT_SYMBOL vmlinux 0x016dc2dd netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x017c76d2 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017e2782 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x01a20ede radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x01beb46d __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01ddea35 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02110d44 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x021df714 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x022eb54d pci_get_slot +EXPORT_SYMBOL vmlinux 0x02419b90 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02856c17 tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x028c2f73 dqget +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02a05686 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x02a5f616 ccw_driver_register +EXPORT_SYMBOL vmlinux 0x02a61af3 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x02b0e3ec pcibios_bus_to_resource +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 0x02fcc9f8 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03482149 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x034a7afe idr_destroy +EXPORT_SYMBOL vmlinux 0x034f52bf dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0361eded pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03867020 xp_alloc +EXPORT_SYMBOL vmlinux 0x038762c8 idr_get_next_ul +EXPORT_SYMBOL vmlinux 0x038ec9f3 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03d2240c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x03d2eaca has_capability +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x043cffc4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04444662 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044c201c register_qdisc +EXPORT_SYMBOL vmlinux 0x045cd854 kbd_ascebc +EXPORT_SYMBOL vmlinux 0x0461de7d pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x0467042a unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x04880439 setup_new_exec +EXPORT_SYMBOL vmlinux 0x04aa7fae filp_open +EXPORT_SYMBOL vmlinux 0x04caa0d6 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x04ccaf2d tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x04d5546b d_alloc +EXPORT_SYMBOL vmlinux 0x050cb0e6 security_path_rename +EXPORT_SYMBOL vmlinux 0x0513cfba ip_setsockopt +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053c05df udplite_prot +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055cce95 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0584d4ac __traceiter_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x0586bd28 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x059c2d52 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x05a363c8 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x05c841fc input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x05ccfe6f fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x05ce4498 input_unregister_device +EXPORT_SYMBOL vmlinux 0x05f04c95 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x05fe18b3 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0621fd1c inet_frags_init +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 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06762891 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x0677c1a0 secpath_set +EXPORT_SYMBOL vmlinux 0x0686bc7d set_blocksize +EXPORT_SYMBOL vmlinux 0x0687c679 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x06c2dfcf vlan_vid_add +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06ec8a0f blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x06faa44a param_set_copystring +EXPORT_SYMBOL vmlinux 0x06fc0689 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071013a0 netdev_features_change +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x0736c3ff fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0x074260d3 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x07680bab pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x079c35b5 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07bffe6b zero_fill_bio +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d9b2ea scsi_ioctl +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fced7d component_match_add_typed +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x080de768 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x081b50be jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08456553 match_string +EXPORT_SYMBOL vmlinux 0x086ba31e pci_pme_active +EXPORT_SYMBOL vmlinux 0x086e8526 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x08804d4c sock_set_priority +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x088c96f6 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x08929b71 seq_read_iter +EXPORT_SYMBOL vmlinux 0x0894ad35 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x089f1bd4 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x08ad8521 register_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x08b3af1f iucv_root +EXPORT_SYMBOL vmlinux 0x08c4b6a0 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x08d49b78 tty_write_room +EXPORT_SYMBOL vmlinux 0x08dc5179 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x08e57c6d inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x08e6fa35 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x08fec34f pci_find_resource +EXPORT_SYMBOL vmlinux 0x091acbbf param_set_bool +EXPORT_SYMBOL vmlinux 0x091d6069 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x0920b173 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x094effa5 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0x0970102e zstd_compress_bound +EXPORT_SYMBOL vmlinux 0x0970eb93 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097bbde6 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099509b3 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x099d4629 _dev_warn +EXPORT_SYMBOL vmlinux 0x09c1d351 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09def582 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x09e9655e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x09ed8fa2 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x09f2c370 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a096895 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x0a1846c5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0a1e9bee security_binder_transaction +EXPORT_SYMBOL vmlinux 0x0a3b0d94 raw_copy_from_user +EXPORT_SYMBOL vmlinux 0x0a557d49 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a8c4545 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ac56da4 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0b15280c kobject_init +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b376cf0 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x0b50e892 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0b55d539 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x0b6dba54 generic_setlease +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8f527f blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x0b9f30cb tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba9ce91 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x0bbeac5c dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc94a01 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x0bf3023c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x0c0c122e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x0c17a68e zlib_dfltcc_support +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2f917e scsi_done +EXPORT_SYMBOL vmlinux 0x0c333a7f radix_tree_insert +EXPORT_SYMBOL vmlinux 0x0c44ab43 sock_create_kern +EXPORT_SYMBOL vmlinux 0x0c451570 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0c5f6e22 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x0c6926a4 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0c6ccf20 s390_isolate_bp +EXPORT_SYMBOL vmlinux 0x0c7098b1 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x0c721e60 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c904c5b mempool_exit +EXPORT_SYMBOL vmlinux 0x0c920616 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x0c93baeb elv_rb_find +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc0f4c5 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0x0cc63d67 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0ccb8c8e input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x0cce2f8e debug_set_level +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd7d953 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x0cf1585e sock_from_file +EXPORT_SYMBOL vmlinux 0x0cf29d4c tcp_check_req +EXPORT_SYMBOL vmlinux 0x0cff8635 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d3a65f9 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x0d3ee005 follow_down_one +EXPORT_SYMBOL vmlinux 0x0d425aa9 d_drop +EXPORT_SYMBOL vmlinux 0x0d4350f7 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0x0d461172 dma_supported +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d8578ed tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x0d9faa2f __scm_destroy +EXPORT_SYMBOL vmlinux 0x0d9fc353 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x0dac46c0 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0dcf21a0 __scsi_execute +EXPORT_SYMBOL vmlinux 0x0ddf8ceb pcie_print_link_status +EXPORT_SYMBOL vmlinux 0x0ded18b7 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x0e077e4e netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1ee435 _copy_from_user_key +EXPORT_SYMBOL vmlinux 0x0e35b941 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x0e52ae7e km_new_mapping +EXPORT_SYMBOL vmlinux 0x0e56b80a __SCK__tp_func_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x0e58b61f dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x0e639ec1 seq_open +EXPORT_SYMBOL vmlinux 0x0e945b5e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x0e962d91 phy_init_eee +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0ea9e8e0 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0eb373df neigh_update +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ebce972 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x0ec6bcde netlink_unicast +EXPORT_SYMBOL vmlinux 0x0ecfa792 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x0ee10e52 __do_once_done +EXPORT_SYMBOL vmlinux 0x0ee61a9b airq_iv_free +EXPORT_SYMBOL vmlinux 0x0efab633 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0e90d7 netdev_warn +EXPORT_SYMBOL vmlinux 0x0f0e9b35 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2a9bbb flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x0f2c7f86 dm_table_event +EXPORT_SYMBOL vmlinux 0x0f41cec1 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x0f59acca __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x0f5a75f8 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8e2e5c security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x0f8e3f38 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x0f9a1731 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcd75fd sock_recvmsg +EXPORT_SYMBOL vmlinux 0x0fce549d jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x0fce9bec generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x0fd16d0f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fd9358f config_item_get +EXPORT_SYMBOL vmlinux 0x0fdf1c30 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x0fe39d12 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0fe67269 cond_set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x0ff5700f register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x0ffc9609 ap_recv +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1012f62a __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x103bafd6 down_read +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x104c9044 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x104fe2de phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10776fb9 xa_extract +EXPORT_SYMBOL vmlinux 0x10799145 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x107d1f6e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108c96ed pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x10976f68 do_splice_direct +EXPORT_SYMBOL vmlinux 0x10a6ae45 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x10a7a06e pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x10b5520a dm_table_get_md +EXPORT_SYMBOL vmlinux 0x10d6fb78 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10ef0bb8 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x10f25560 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x112121f7 __traceiter_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x113eec8d misc_deregister +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11839362 _dev_printk +EXPORT_SYMBOL vmlinux 0x11b5409e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11d602fc jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11eaf1ab unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x11ec7959 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x11f0f083 kernel_cpumcf_avail +EXPORT_SYMBOL vmlinux 0x11f1c183 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x12085911 write_cache_pages +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x12315018 md_done_sync +EXPORT_SYMBOL vmlinux 0x1239fc2d sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x123f7d23 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124e6b55 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x12627da4 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x12641250 get_phys_clock +EXPORT_SYMBOL vmlinux 0x1279e0a2 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x12856a98 generic_perform_write +EXPORT_SYMBOL vmlinux 0x12a16804 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x12b2e8a9 ccw_device_resume +EXPORT_SYMBOL vmlinux 0x12bf6043 inet_offloads +EXPORT_SYMBOL vmlinux 0x12c60cd8 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x12c619b0 set_anon_super +EXPORT_SYMBOL vmlinux 0x12c8320c inode_dio_wait +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d652ca netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x12dab13f __skb_pad +EXPORT_SYMBOL vmlinux 0x12ec9d79 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x12f3cf14 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12fe638d diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x13089a33 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a1e88 get_fs_type +EXPORT_SYMBOL vmlinux 0x131ec486 mpage_writepage +EXPORT_SYMBOL vmlinux 0x13203741 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x13272aec blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x132917fa fb_set_var +EXPORT_SYMBOL vmlinux 0x1337d8e7 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x135167d9 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x1369af66 simple_release_fs +EXPORT_SYMBOL vmlinux 0x13759fc6 ccw_device_dma_zalloc +EXPORT_SYMBOL vmlinux 0x13795927 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x138892f4 skb_split +EXPORT_SYMBOL vmlinux 0x13c2d517 udp_ioctl +EXPORT_SYMBOL vmlinux 0x13c96b5a netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d2bcc0 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13d929a0 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x13dec8a4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x13ea4ebb pci_find_bus +EXPORT_SYMBOL vmlinux 0x13ecf92a configfs_depend_item +EXPORT_SYMBOL vmlinux 0x140b32d9 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x1432fa5a pci_claim_resource +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x144d84ae netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x145f5d6b netpoll_print_options +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147c9e4e kernel_read +EXPORT_SYMBOL vmlinux 0x147d7290 xor_block_xc +EXPORT_SYMBOL vmlinux 0x14a70daf dev_alloc_name +EXPORT_SYMBOL vmlinux 0x14a83f9b pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x14b43845 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x14b4e1f6 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x14b6676c import_single_range +EXPORT_SYMBOL vmlinux 0x14ba09e3 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x14c10313 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x14c409ee inet_frag_find +EXPORT_SYMBOL vmlinux 0x14c46099 netlink_capable +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14da0e9d netif_tx_lock +EXPORT_SYMBOL vmlinux 0x14dbca00 lowcore_ptr +EXPORT_SYMBOL vmlinux 0x14e1485a flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x14ea86da pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x150cf75c dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x15149de1 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1523db7d dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x1527d618 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x152fe57b inode_add_bytes +EXPORT_SYMBOL vmlinux 0x15356a31 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x1535c5a3 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1560da3c ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x156f00f3 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x1572550c dcb_getapp +EXPORT_SYMBOL vmlinux 0x15a7789f skb_find_text +EXPORT_SYMBOL vmlinux 0x15b49bac vscnprintf +EXPORT_SYMBOL vmlinux 0x15b53ab7 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15ce333a tcp_poll +EXPORT_SYMBOL vmlinux 0x15d85a57 down_trylock +EXPORT_SYMBOL vmlinux 0x15dbae86 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x15e00264 phy_stop +EXPORT_SYMBOL vmlinux 0x1600fca1 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x160bec04 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x16161185 dm_register_target +EXPORT_SYMBOL vmlinux 0x16278299 skb_ext_add +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1643df05 __quota_error +EXPORT_SYMBOL vmlinux 0x165d15e2 down_interruptible +EXPORT_SYMBOL vmlinux 0x166014c8 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x16631068 read_cache_folio +EXPORT_SYMBOL vmlinux 0x168b0404 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x16d4a6ea __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0x16d4e3d4 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x17013366 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1708e606 free_task +EXPORT_SYMBOL vmlinux 0x17121b17 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1731766e unlock_page +EXPORT_SYMBOL vmlinux 0x1736df10 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x1742d304 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x17456f42 phy_detach +EXPORT_SYMBOL vmlinux 0x174947b5 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x17514072 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1777442f scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x177c9096 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x17a500c4 param_get_uint +EXPORT_SYMBOL vmlinux 0x17b2a015 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x17dcbb24 vc_resize +EXPORT_SYMBOL vmlinux 0x18085f7d pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x1826fa0f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x18343115 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x183f9978 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1893b84d config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x18959bb9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18a3bf8e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18dfb593 register_cdrom +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f98081 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x19022434 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x191f288e iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x192bd96e dev_mc_flush +EXPORT_SYMBOL vmlinux 0x192dc5c2 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x19377f8a jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1981a722 kill_fasync +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b00a80 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0x19b99622 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c11980 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x19cd9810 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x19d65459 ipv4_specific +EXPORT_SYMBOL vmlinux 0x19d94f48 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x19e270a0 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x1a0693a3 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x1a08d2ba VMALLOC_START +EXPORT_SYMBOL vmlinux 0x1a0ad80b generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x1a0ae1ce bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0x1a0c8867 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x1a0cf96c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x1a13be57 d_exact_alias +EXPORT_SYMBOL vmlinux 0x1a63a9c6 tso_start +EXPORT_SYMBOL vmlinux 0x1a79a066 security_sk_clone +EXPORT_SYMBOL vmlinux 0x1a845bf2 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x1a8dff2d netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x1a8e8f58 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1a95bb36 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aa30ced ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1aa7fb28 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x1ab09b67 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x1ab4d7eb napi_consume_skb +EXPORT_SYMBOL vmlinux 0x1ac7f4c2 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1ae70b0d xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x1afa7255 ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b19556c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x1b23124a setattr_copy +EXPORT_SYMBOL vmlinux 0x1b4dc4f4 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b64df52 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x1b72ab2a xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1ba04458 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1ba1c068 build_skb_around +EXPORT_SYMBOL vmlinux 0x1bb1207d phy_attach +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bd6be0f jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x1bf32382 param_ops_bool +EXPORT_SYMBOL vmlinux 0x1bf7d0d3 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x1bf8c95c bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x1bfd1a61 vm_event_states +EXPORT_SYMBOL vmlinux 0x1c001dbb handle_edge_irq +EXPORT_SYMBOL vmlinux 0x1c059116 d_tmpfile +EXPORT_SYMBOL vmlinux 0x1c05dcb8 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x1c2a6fcc dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1c538383 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1c59c3f0 pci_iomap +EXPORT_SYMBOL vmlinux 0x1c65d1e3 ioremap_wt +EXPORT_SYMBOL vmlinux 0x1c664434 __write_overflow_field +EXPORT_SYMBOL vmlinux 0x1c75119e folio_write_one +EXPORT_SYMBOL vmlinux 0x1c8571f9 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x1c9a9ccd _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x1cab8977 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1cb93cdd udp_read_sock +EXPORT_SYMBOL vmlinux 0x1cbfb123 hdmi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc4f300 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd9af0e input_free_device +EXPORT_SYMBOL vmlinux 0x1ce26a63 zstd_flush_stream +EXPORT_SYMBOL vmlinux 0x1cf4a702 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x1d06d041 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x1d216a6b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1d3e2765 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0x1d449b90 dfltcc_can_deflate +EXPORT_SYMBOL vmlinux 0x1d530d26 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x1d5583be dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1d5808af lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d5ef3e1 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1d691a58 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x1d7d75b0 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x1d82da11 proc_mkdir +EXPORT_SYMBOL vmlinux 0x1d93568c pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x1dadd920 __kmalloc +EXPORT_SYMBOL vmlinux 0x1dbd49f3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x1dc015a3 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1de5127e kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1dea4165 eth_header_cache +EXPORT_SYMBOL vmlinux 0x1def22d8 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1e00d32c inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e34fb9f sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x1e3cbe3c tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1e407abd tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x1e5fac40 __destroy_inode +EXPORT_SYMBOL vmlinux 0x1e63fe69 vcalloc +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e9914f2 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec9b66a eth_mac_addr +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef9af5a skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x1f0d21fb freeze_bdev +EXPORT_SYMBOL vmlinux 0x1f1e2aaa give_up_console +EXPORT_SYMBOL vmlinux 0x1f39b17c __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x1f4bfcdb pci_get_device +EXPORT_SYMBOL vmlinux 0x1f4c7087 pci_request_irq +EXPORT_SYMBOL vmlinux 0x1f5a2abb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1f768980 ping_prot +EXPORT_SYMBOL vmlinux 0x1f814fd4 filemap_release_folio +EXPORT_SYMBOL vmlinux 0x1f858967 netdev_err +EXPORT_SYMBOL vmlinux 0x1f91fa75 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1f95657b mempool_resize +EXPORT_SYMBOL vmlinux 0x1f972b06 inet_del_offload +EXPORT_SYMBOL vmlinux 0x1faaa76c security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x1fb27078 tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x1fbbdfc2 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcb720d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x1fcc9f7c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x1fda8755 __memset32 +EXPORT_SYMBOL vmlinux 0x1fe9e4a8 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x1fea53b3 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20050ce6 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x2005d114 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2014a246 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x2022feb9 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x202c6bc2 mdiobus_free +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2058d2dc genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x20592c6f arch_write_lock_wait +EXPORT_SYMBOL vmlinux 0x2063a4f6 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x206677e5 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x2084d709 pgste_perform_essa +EXPORT_SYMBOL vmlinux 0x208d150a set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20ee076e itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x20f3685a module_refcount +EXPORT_SYMBOL vmlinux 0x21036c63 fd_install +EXPORT_SYMBOL vmlinux 0x21045a10 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x21281724 md_register_thread +EXPORT_SYMBOL vmlinux 0x2139471f __sk_dst_check +EXPORT_SYMBOL vmlinux 0x2140e3bc kthread_create_worker +EXPORT_SYMBOL vmlinux 0x215a04b2 __invalidate_device +EXPORT_SYMBOL vmlinux 0x215b3c9a dst_destroy +EXPORT_SYMBOL vmlinux 0x215e91ed update_region +EXPORT_SYMBOL vmlinux 0x21631b9e may_umount +EXPORT_SYMBOL vmlinux 0x218346f0 begin_new_exec +EXPORT_SYMBOL vmlinux 0x218e1061 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21df7c10 pin_user_pages +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ea83bc zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x22042d3f __put_user_ns +EXPORT_SYMBOL vmlinux 0x2210642c sclp_ap_deconfigure +EXPORT_SYMBOL vmlinux 0x221567e6 __traceiter_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0x221c0f3f dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x223b5c24 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x227687ae netlink_ack +EXPORT_SYMBOL vmlinux 0x228d9333 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x2294fc34 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x22a92905 vif_device_init +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cb3831 security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x22dd6d51 tccb_init +EXPORT_SYMBOL vmlinux 0x22efdc0a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x22f4d958 kern_path_create +EXPORT_SYMBOL vmlinux 0x22f9ffa4 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2308e34d __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x23092ee4 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x231197af xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x237b50f3 sk_alloc +EXPORT_SYMBOL vmlinux 0x23924a48 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2413f25f configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x24140a19 pci_release_regions +EXPORT_SYMBOL vmlinux 0x2420eb5d devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x242d7801 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2439b6d3 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x24458544 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x245629a5 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x24569849 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x247a3fe4 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x247c627a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x2492f9f5 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x24b598e8 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x24b8528f mutex_trylock +EXPORT_SYMBOL vmlinux 0x24bb15bd migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x24bc53b0 __traceiter_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0x24c24e25 d_instantiate +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dada3e get_pgste +EXPORT_SYMBOL vmlinux 0x24dd43a2 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x24ddb3bc pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x24ef7969 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x24fc0938 tcp_mmap +EXPORT_SYMBOL vmlinux 0x250d96bb scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x2515f09f tcp_disconnect +EXPORT_SYMBOL vmlinux 0x251c4c36 pci_scan_root_bus +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 0x25381202 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x253cc91c dev_mc_init +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x255068cc skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x255cc783 bio_add_page +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258bee44 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x259e6beb blackhole_netdev +EXPORT_SYMBOL vmlinux 0x25b48e26 dput +EXPORT_SYMBOL vmlinux 0x25badad3 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x25bc0114 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x25ca8ca2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x25cb94aa trace_event_printf +EXPORT_SYMBOL vmlinux 0x25d59066 ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e688f5 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x26065a0a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26280c94 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2641a1c6 diag224 +EXPORT_SYMBOL vmlinux 0x2665ed82 init_task +EXPORT_SYMBOL vmlinux 0x266c9921 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x266de471 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x26798e1c pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26979f69 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x26a5b938 sclp_pci_configure +EXPORT_SYMBOL vmlinux 0x26e18854 inet_protos +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26eae2db inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x26ed29eb super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x27037c62 __lock_buffer +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x2711925f seq_bprintf +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x272ac44c fs_param_is_u32 +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 0x27657212 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x27714839 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277d4035 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27a8f51b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x27aca58d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27d44e5e try_to_release_page +EXPORT_SYMBOL vmlinux 0x27eb9cd1 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x27ec6d6f debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x27fe11fe register_shrinker +EXPORT_SYMBOL vmlinux 0x2802d0dc pneigh_lookup +EXPORT_SYMBOL vmlinux 0x2805325a __udp_disconnect +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2855ab1d flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x2866f7b2 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x286a3661 airq_iv_scan +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287f23ab mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x28876432 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x28899159 netdev_info +EXPORT_SYMBOL vmlinux 0x28c7455d ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x28c89964 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x28d65de0 vm_mmap +EXPORT_SYMBOL vmlinux 0x28e18208 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x28eb1dba genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x28f4421d dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29065cde security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x2924d63a lru_cache_add +EXPORT_SYMBOL vmlinux 0x2934cf62 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x293b3238 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x294261f6 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x2946f6f6 seq_release +EXPORT_SYMBOL vmlinux 0x294ce267 block_commit_write +EXPORT_SYMBOL vmlinux 0x2950207e inet_shutdown +EXPORT_SYMBOL vmlinux 0x29522efb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2956cf37 sclp_remove_processed +EXPORT_SYMBOL vmlinux 0x2959ea0c padata_free_shell +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x296c8e5b key_unlink +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x297b51cc udp_disconnect +EXPORT_SYMBOL vmlinux 0x29876990 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x2998c907 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x29a84555 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x29bc8b81 __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x29cc5a2e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x29cdcc4d fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x29d9efe2 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2a3092da dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x2a342c9d default_llseek +EXPORT_SYMBOL vmlinux 0x2a37d0b5 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x2a3819cf unregister_nls +EXPORT_SYMBOL vmlinux 0x2a41d203 dql_init +EXPORT_SYMBOL vmlinux 0x2a60ab3c devm_release_resource +EXPORT_SYMBOL vmlinux 0x2a805563 __kernel_cpumcf_end +EXPORT_SYMBOL vmlinux 0x2aa2a581 simple_rmdir +EXPORT_SYMBOL vmlinux 0x2aa71d0c proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x2af3f454 ssch +EXPORT_SYMBOL vmlinux 0x2b12e7cd scsi_print_result +EXPORT_SYMBOL vmlinux 0x2b21b559 raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x2b2383f9 input_set_keycode +EXPORT_SYMBOL vmlinux 0x2b2e7ce6 keyring_clear +EXPORT_SYMBOL vmlinux 0x2b346beb tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2b4179a9 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x2b591fef pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b733c80 sync_filesystem +EXPORT_SYMBOL vmlinux 0x2b98058e t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba18f4a fasync_helper +EXPORT_SYMBOL vmlinux 0x2bbe18dc netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x2bbe76f4 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2bc21233 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x2be0b4a5 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x2be9b22d dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x2bec2579 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x2c079f3f jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x2c255266 inet6_protos +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c385d75 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x2c38ba92 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x2c5b1c9b dm_kobject_release +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c9d741c tty_hangup +EXPORT_SYMBOL vmlinux 0x2cb75ff1 __tracepoint_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0x2cbd23af trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x2cc3379f cdev_device_del +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cedbcaa dma_free_attrs +EXPORT_SYMBOL vmlinux 0x2d06ff8d get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x2d0cc08c jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1bb74a copy_string_kernel +EXPORT_SYMBOL vmlinux 0x2d276715 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d31e99c genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3dcb07 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x2d46da68 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6a2d4e jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x2d6abb18 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x2d832cbf utf8_casefold +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9c7309 pci_save_state +EXPORT_SYMBOL vmlinux 0x2dd0b680 neigh_lookup +EXPORT_SYMBOL vmlinux 0x2ddb834b __xa_alloc +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2def2764 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x2e0b23f9 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x2e22625d iov_iter_revert +EXPORT_SYMBOL vmlinux 0x2e3c5950 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e85e905 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x2e90efb9 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x2e969449 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x2e9fca4a unregister_md_personality +EXPORT_SYMBOL vmlinux 0x2eabc203 follow_up +EXPORT_SYMBOL vmlinux 0x2eba109d inet6_getname +EXPORT_SYMBOL vmlinux 0x2ec0f757 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ed963a3 file_modified +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2efbadc0 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f297e32 napi_get_frags +EXPORT_SYMBOL vmlinux 0x2f2e06df netpoll_setup +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f3bebf4 _dev_err +EXPORT_SYMBOL vmlinux 0x2f40e5be page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2f67c902 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x2f6bdd5a pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x2f7189fa device_add_disk +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f8fe0ac flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fba6d87 bh_submit_read +EXPORT_SYMBOL vmlinux 0x2fd09944 blake2s_update +EXPORT_SYMBOL vmlinux 0x2fe14e0d xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2fe207bb end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff38541 bio_put +EXPORT_SYMBOL vmlinux 0x2ffd70d3 config_group_find_item +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x30057e2d sock_create_lite +EXPORT_SYMBOL vmlinux 0x300d6be4 __irq_regs +EXPORT_SYMBOL vmlinux 0x301e07a5 simple_lookup +EXPORT_SYMBOL vmlinux 0x30267fa1 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x305cb95e fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x30797d86 make_bad_inode +EXPORT_SYMBOL vmlinux 0x307b9ff8 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x307c110a mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x308734d0 kobject_set_name +EXPORT_SYMBOL vmlinux 0x30888380 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x309010a2 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30cd2190 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x30e33ba2 generic_writepages +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e87bad fb_pan_display +EXPORT_SYMBOL vmlinux 0x30ef667b __netif_rx +EXPORT_SYMBOL vmlinux 0x30f65059 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x30f658db pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x310117bf key_validate +EXPORT_SYMBOL vmlinux 0x3107d298 fb_show_logo +EXPORT_SYMBOL vmlinux 0x310bfa4d block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x310f5595 ap_driver_unregister +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3133a681 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x31475e37 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x318c8529 __fs_parse +EXPORT_SYMBOL vmlinux 0x31952c72 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x31a34dc6 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0x31e7b349 key_create_or_update +EXPORT_SYMBOL vmlinux 0x3207d127 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x321a1a8b fb_find_mode +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x327bca58 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x328a25c6 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32f23f00 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x32fc6f0f blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x330a5310 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x331de0b9 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x33338341 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x333c2bbb netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x334fb963 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x335f9d34 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x3362a5ac udp_table +EXPORT_SYMBOL vmlinux 0x33765dd1 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x339c6380 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0x33a75ef1 dquot_resume +EXPORT_SYMBOL vmlinux 0x33af2fd5 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x33ecee95 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x33fa677f rename_lock +EXPORT_SYMBOL vmlinux 0x33fc1e82 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x34180713 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x3449ac07 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x344d1c28 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x3454e3c1 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x345fcab5 fsync_bdev +EXPORT_SYMBOL vmlinux 0x3471db68 input_reset_device +EXPORT_SYMBOL vmlinux 0x34842c02 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349e7284 generic_fadvise +EXPORT_SYMBOL vmlinux 0x34adabca copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x34b22092 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x34b8c376 cont_write_begin +EXPORT_SYMBOL vmlinux 0x34c6dce8 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34d0ce3f __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x34e1df02 __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x34e7b44d flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35186bdb scsi_partsize +EXPORT_SYMBOL vmlinux 0x353f1dfc tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x3543e16f kill_anon_super +EXPORT_SYMBOL vmlinux 0x357bdb72 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0x3589e046 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x35a0cf58 reset_guest_reference_bit +EXPORT_SYMBOL vmlinux 0x35a3acdb mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ac73f5 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x35ae4edc get_tree_keyed +EXPORT_SYMBOL vmlinux 0x35c8fba4 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x35fc4f72 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x364d1898 seq_lseek +EXPORT_SYMBOL vmlinux 0x3658e1d4 seq_read +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x36827a84 arp_send +EXPORT_SYMBOL vmlinux 0x3685eb02 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x368e9a90 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x36a5be7b dev_driver_string +EXPORT_SYMBOL vmlinux 0x36af6564 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x36d50657 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x36ecf60d __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x370756ff bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x37281ac1 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x372e9733 ccw_device_clear +EXPORT_SYMBOL vmlinux 0x37365012 load_nls +EXPORT_SYMBOL vmlinux 0x3736d025 down_read_killable +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37484280 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375ac910 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0x376a9f23 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x37708762 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x379549dc dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x379e4d77 proto_unregister +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37bf4047 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x37dbaff9 from_kgid +EXPORT_SYMBOL vmlinux 0x37e64cdd forget_cached_acl +EXPORT_SYMBOL vmlinux 0x380ec283 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x38197024 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3832522f __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x383ce150 key_link +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x387982aa folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x3899e725 ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x389b688d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x38a52db1 dma_fence_init +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38cbee44 seq_printf +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x392da8df phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x3936c13e _dev_alert +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x394ba6fb register_framebuffer +EXPORT_SYMBOL vmlinux 0x3951ff27 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x39780c1f blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x397ab879 mount_nodev +EXPORT_SYMBOL vmlinux 0x39960d2e xfrm_register_km +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b77a9f tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x39dd97c2 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x39f55669 load_nls_default +EXPORT_SYMBOL vmlinux 0x39fd2b63 zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1733d0 dfltcc_inflate +EXPORT_SYMBOL vmlinux 0x3a1c3bec netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a2fda44 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x3a361b0f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a52ae34 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x3a6009dd phy_device_create +EXPORT_SYMBOL vmlinux 0x3a8f22ce gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x3a906da6 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abe42e5 seq_pad +EXPORT_SYMBOL vmlinux 0x3ac0d6a4 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x3ac4fe04 unix_get_socket +EXPORT_SYMBOL vmlinux 0x3acc7dee mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3acc8c21 sk_stream_error +EXPORT_SYMBOL vmlinux 0x3af54163 netdev_emerg +EXPORT_SYMBOL vmlinux 0x3b101132 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x3b176ce7 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3b31a6d8 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b74af56 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x3b756f6a crc32_le +EXPORT_SYMBOL vmlinux 0x3b83e8d1 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x3b8fef11 tcf_block_put +EXPORT_SYMBOL vmlinux 0x3bb3a92b reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x3bbde49f cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x3bcc45cc mdiobus_write +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3beafe0a sclp +EXPORT_SYMBOL vmlinux 0x3bfa4018 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3bfd2e07 ns_capable_setid +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c280698 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c458311 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x3c510aef skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x3c527c06 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3c531813 zstd_is_error +EXPORT_SYMBOL vmlinux 0x3c5abdd3 keyring_search +EXPORT_SYMBOL vmlinux 0x3c67e4b0 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3c69f923 sock_rfree +EXPORT_SYMBOL vmlinux 0x3c768b51 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0x3c8aead5 qdisc_put +EXPORT_SYMBOL vmlinux 0x3c9b8a2d scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3cb93b4a pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x3cd458c2 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf19779 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0x3cfda512 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x3cfe82e5 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x3d0d4baa skb_copy_header +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d1fe0fc posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x3d21ac73 get_cached_acl +EXPORT_SYMBOL vmlinux 0x3d281c24 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x3d2981fa utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x3d3dff8c md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0x3d4cb9d1 airq_iv_create +EXPORT_SYMBOL vmlinux 0x3d4dd722 netif_device_detach +EXPORT_SYMBOL vmlinux 0x3d55e755 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3d5615d2 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x3d5cd2cf tcf_em_register +EXPORT_SYMBOL vmlinux 0x3d6b3755 empty_name +EXPORT_SYMBOL vmlinux 0x3d766a40 md_write_start +EXPORT_SYMBOL vmlinux 0x3d7ec0d7 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x3da152be no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db3b5a6 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dddbd81 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x3de3b88a __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x3deba122 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x3dedc7e2 phy_attached_info +EXPORT_SYMBOL vmlinux 0x3deeae55 iget_failed +EXPORT_SYMBOL vmlinux 0x3df1d408 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e066dc9 blkdev_put +EXPORT_SYMBOL vmlinux 0x3e1d5461 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x3e1f0c0e blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x3e27874c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4520ad pps_event +EXPORT_SYMBOL vmlinux 0x3e459db2 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x3e45e4f1 phy_init_hw +EXPORT_SYMBOL vmlinux 0x3e5679e1 make_kgid +EXPORT_SYMBOL vmlinux 0x3e572682 __wake_up +EXPORT_SYMBOL vmlinux 0x3e6a83a6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3e73c8c2 readahead_expand +EXPORT_SYMBOL vmlinux 0x3e811204 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x3e88b2af jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x3e920b9a open_exec +EXPORT_SYMBOL vmlinux 0x3ea3e7b9 __free_pages +EXPORT_SYMBOL vmlinux 0x3ea5c350 __alloc_skb +EXPORT_SYMBOL vmlinux 0x3ed94ac2 dev_addr_add +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f2437a0 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3f3697f3 cdev_device_add +EXPORT_SYMBOL vmlinux 0x3f4324e2 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3f440d11 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4a830e pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x3f4c90ec phy_drivers_register +EXPORT_SYMBOL vmlinux 0x3f4d32b3 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x3f647645 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x3f65c32c __skb_get_hash +EXPORT_SYMBOL vmlinux 0x3f6bf626 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x3f763893 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3fa8853f ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fbe71bf security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x3fcc3185 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x3fd418f4 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fefa791 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x3ff31bcc scmd_printk +EXPORT_SYMBOL vmlinux 0x3ff6e4a0 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x400a9f73 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x401d2322 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x401da122 bdi_register +EXPORT_SYMBOL vmlinux 0x402861ac sk_capable +EXPORT_SYMBOL vmlinux 0x402a960a jiffies_64 +EXPORT_SYMBOL vmlinux 0x4047af7e filemap_map_pages +EXPORT_SYMBOL vmlinux 0x4062366a dst_release_immediate +EXPORT_SYMBOL vmlinux 0x4074d876 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x407cd333 tcp_close +EXPORT_SYMBOL vmlinux 0x40814589 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a15183 folio_mapping +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b77a89 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x40bd5689 phy_start +EXPORT_SYMBOL vmlinux 0x40bfc630 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e3ac1d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x410bda7a iucv_if +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4147aa02 __tracepoint_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x4147ad5c scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149b396 s390_isolate_bp_guest +EXPORT_SYMBOL vmlinux 0x41506706 dma_fence_describe +EXPORT_SYMBOL vmlinux 0x41795c89 mr_dump +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41894100 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x41b875ac inet_select_addr +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41ceab2a invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x41cf4eaf phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x41d31293 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x41d72415 mr_table_dump +EXPORT_SYMBOL vmlinux 0x41de8343 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x41ed6430 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x41f8052c pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4207d09a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x422dfb12 input_grab_device +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4236d330 mount_bdev +EXPORT_SYMBOL vmlinux 0x423e6934 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x424077ce locks_delete_block +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4266aebb jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x42700390 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x4279566d __netif_schedule +EXPORT_SYMBOL vmlinux 0x427dbbcc block_write_full_page +EXPORT_SYMBOL vmlinux 0x4288bc07 task_work_add +EXPORT_SYMBOL vmlinux 0x429dcdc0 xa_find_after +EXPORT_SYMBOL vmlinux 0x42ad3bdc proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x42ae6d99 xa_find +EXPORT_SYMBOL vmlinux 0x42af982f xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x42b5aa9d phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x42c4050a zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x42d9d371 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0x42daf4f5 d_move +EXPORT_SYMBOL vmlinux 0x42eb90db tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fc23ac prepare_creds +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x43366593 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4353ac17 dm_get_device +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 0x43883701 tcp_filter +EXPORT_SYMBOL vmlinux 0x43988d3a skb_checksum +EXPORT_SYMBOL vmlinux 0x43a0ab79 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cac1e8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d9ba52 fault_in_readable +EXPORT_SYMBOL vmlinux 0x43e2859f input_register_device +EXPORT_SYMBOL vmlinux 0x440a947a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x441b7cfe ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x442e1d7b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x443847fc try_module_get +EXPORT_SYMBOL vmlinux 0x44450c65 param_get_charp +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x447e4631 file_path +EXPORT_SYMBOL vmlinux 0x44a03d64 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44a8e281 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x44aa20e8 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x44aa55f7 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x44b30fb5 csch +EXPORT_SYMBOL vmlinux 0x44be533f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x44cd3041 mount_single +EXPORT_SYMBOL vmlinux 0x44d23375 input_inject_event +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9b7d0 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x450d470a pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x45143776 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45564bb6 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x4574b843 input_register_handle +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458b3c53 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x45b9877f prepare_to_wait +EXPORT_SYMBOL vmlinux 0x45d3c773 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x45dfed8b fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x45e19a0c nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x45e97559 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x45f17fb6 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x45f81d00 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x45fdb146 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x4600af9e tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461a164f phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x46280bd1 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x462f2c0b request_key_tag +EXPORT_SYMBOL vmlinux 0x463fa62a tcf_register_action +EXPORT_SYMBOL vmlinux 0x465576ac dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467a1549 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x467f1092 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x46895b1f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x46aca34a pci_set_power_state +EXPORT_SYMBOL vmlinux 0x46c0dc9d skb_dequeue +EXPORT_SYMBOL vmlinux 0x46c341bf filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x46c430e7 blk_rq_init +EXPORT_SYMBOL vmlinux 0x46cd8fce iucv_message_send +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46dbcb36 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x46dfcbf2 param_get_invbool +EXPORT_SYMBOL vmlinux 0x46e319aa tcw_set_data +EXPORT_SYMBOL vmlinux 0x46e68ccb dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x46f52e1f param_ops_long +EXPORT_SYMBOL vmlinux 0x471be145 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x471c4df5 kset_unregister +EXPORT_SYMBOL vmlinux 0x47392e76 sclp_ocf_cpc_name_copy +EXPORT_SYMBOL vmlinux 0x4740307a phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4791c6ea gen_pool_create +EXPORT_SYMBOL vmlinux 0x479c1073 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x47b8cac9 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x47c07f82 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c73607 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x47ce6a3c vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x47d199b6 inode_update_time +EXPORT_SYMBOL vmlinux 0x47d547b5 __put_page +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 0x482b78cb input_register_handler +EXPORT_SYMBOL vmlinux 0x48367fdd folio_unlock +EXPORT_SYMBOL vmlinux 0x48484cf0 skb_unlink +EXPORT_SYMBOL vmlinux 0x484d396b mpage_readahead +EXPORT_SYMBOL vmlinux 0x484f6edf ktime_get_coarse_real_ts64 +EXPORT_SYMBOL vmlinux 0x484fc1cb dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x486495af xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x487370a2 fault_in_writeable +EXPORT_SYMBOL vmlinux 0x487aab1d sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x487db957 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x489108a1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48d03b73 netif_device_attach +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48e1ee3d __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x48f64b18 cdev_del +EXPORT_SYMBOL vmlinux 0x48f6905b zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490dddac dq_data_lock +EXPORT_SYMBOL vmlinux 0x4932011e gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x495990f3 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x49646058 kobject_del +EXPORT_SYMBOL vmlinux 0x49672828 node_states +EXPORT_SYMBOL vmlinux 0x499a1c18 eth_type_trans +EXPORT_SYMBOL vmlinux 0x499efc09 block_read_full_folio +EXPORT_SYMBOL vmlinux 0x49a8455a start_tty +EXPORT_SYMBOL vmlinux 0x49c1a23a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x49cc521b ap_send_online_uevent +EXPORT_SYMBOL vmlinux 0x49cc7ea2 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x49cd88a9 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x49e5e7f3 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x49ed83ba pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x49ed9955 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x4a150fba complete_request_key +EXPORT_SYMBOL vmlinux 0x4a22c776 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x4a572e3a swake_up_all +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a9f7054 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x4abc69b1 can_nice +EXPORT_SYMBOL vmlinux 0x4ac552bb dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4ac8de64 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x4adb7234 phy_attached_print +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4b0069f4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x4b081d00 cred_fscmp +EXPORT_SYMBOL vmlinux 0x4b08dc18 xfrm_input +EXPORT_SYMBOL vmlinux 0x4b0b019e add_device_randomness +EXPORT_SYMBOL vmlinux 0x4b33b4c5 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x4b369167 __SCK__tp_func_s390_diagnose +EXPORT_SYMBOL vmlinux 0x4b3cbd14 drop_super +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b64b97a __d_lookup_done +EXPORT_SYMBOL vmlinux 0x4b87be76 input_get_keycode +EXPORT_SYMBOL vmlinux 0x4b8f4e7a down_read_trylock +EXPORT_SYMBOL vmlinux 0x4b9c971f inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x4b9e6193 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4bb8fae1 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x4bc09630 sock_set_mark +EXPORT_SYMBOL vmlinux 0x4c078dc1 from_kuid +EXPORT_SYMBOL vmlinux 0x4c1425b5 unregister_netdev +EXPORT_SYMBOL vmlinux 0x4c348303 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x4c3edd58 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c522f6f nf_getsockopt +EXPORT_SYMBOL vmlinux 0x4c87478b ccw_device_start_key +EXPORT_SYMBOL vmlinux 0x4c9f234d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x4ca9c51d napi_enable +EXPORT_SYMBOL vmlinux 0x4cacfb6b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x4cc7bf0b blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x4ccc5204 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x4cce0210 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4cec4d3a phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x4d102125 finish_no_open +EXPORT_SYMBOL vmlinux 0x4d1aa7a3 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x4d5a565c km_state_expired +EXPORT_SYMBOL vmlinux 0x4d5fe525 percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0x4d628e81 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x4d7c5a47 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da0ff73 phy_connect +EXPORT_SYMBOL vmlinux 0x4db1660d phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x4dc35441 pci_disable_device +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df2ea84 gen_estimator_read +EXPORT_SYMBOL vmlinux 0x4df83e03 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4df88965 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4e06a594 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4e14fb7d __traceiter_s390_cio_msch +EXPORT_SYMBOL vmlinux 0x4e2446c2 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x4e2aee7b blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x4e332902 nla_append +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e360f64 set_user_nice +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e41212d ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x4e4924ea init_virt_timer +EXPORT_SYMBOL vmlinux 0x4e538af0 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x4e61a7ec param_get_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6ac1b4 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e84bb09 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x4e89ce10 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x4e8e2703 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0x4e9e6a05 downgrade_write +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecb37b0 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4eda1da4 __register_nls +EXPORT_SYMBOL vmlinux 0x4ee274bc netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x4ef8a56b skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x4f06f508 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f21b8b2 d_alloc_name +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f319a0f path_is_under +EXPORT_SYMBOL vmlinux 0x4f390922 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x4f3ecf96 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x4f520597 bdi_alloc +EXPORT_SYMBOL vmlinux 0x4f59fc49 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x4f5aa411 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x4f5f2d83 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x4f6f897e new_inode +EXPORT_SYMBOL vmlinux 0x4f78d611 dev_set_alias +EXPORT_SYMBOL vmlinux 0x4f82db82 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x4f87b9c8 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x4f97e3a9 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x4fba9f21 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x4fbe3685 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x4fcee2df request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x4fda3929 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x5003d52a ap_perms_mutex +EXPORT_SYMBOL vmlinux 0x500797c4 dma_resv_init +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x5025ed26 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x50287fb6 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x502a8acc get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x50369154 neigh_table_init +EXPORT_SYMBOL vmlinux 0x504eb131 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506718e5 sock_no_connect +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x507144f4 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x507b25d0 kstrndup +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c72851 bio_chain +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50dc5c4e flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x50e06c60 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x50e087dc radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x50e161cd vfs_unlink +EXPORT_SYMBOL vmlinux 0x5107e0f8 pci_bus_type +EXPORT_SYMBOL vmlinux 0x5112b8b6 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x5118fd3c __inet_hash +EXPORT_SYMBOL vmlinux 0x511d47d4 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x513fdc5f param_set_ullong +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x515230ad genl_unregister_family +EXPORT_SYMBOL vmlinux 0x515296b8 page_mapped +EXPORT_SYMBOL vmlinux 0x515856ee t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x51605b6a dev_activate +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5182149a nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x518bb9e6 diag204 +EXPORT_SYMBOL vmlinux 0x51919d0e __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5199fb2a __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x51a7662f _dev_emerg +EXPORT_SYMBOL vmlinux 0x51a99d4f set_posix_acl +EXPORT_SYMBOL vmlinux 0x51ae229c sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x51af3202 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x51c2c096 generic_permission +EXPORT_SYMBOL vmlinux 0x51cb9ed1 xp_free +EXPORT_SYMBOL vmlinux 0x51d5a430 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x521769bb crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x521b178e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x521edcd2 simple_statfs +EXPORT_SYMBOL vmlinux 0x5220b195 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x522541ec pci_write_config_word +EXPORT_SYMBOL vmlinux 0x52500b86 bio_copy_data +EXPORT_SYMBOL vmlinux 0x5253d9de napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x5256367d ___pskb_trim +EXPORT_SYMBOL vmlinux 0x525c47ef xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x5263fb92 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x527503dc scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x527e8c3d inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x52819990 kernel_cpumcf_alert +EXPORT_SYMBOL vmlinux 0x52a94400 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x52c4dfd1 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x52c7ab2f tty_port_put +EXPORT_SYMBOL vmlinux 0x52ccc978 noop_fsync +EXPORT_SYMBOL vmlinux 0x52cd1625 register_console +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52db1a14 zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x52db40b0 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x530bbc96 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0x531625b6 wait_for_completion +EXPORT_SYMBOL vmlinux 0x53303cc6 set_bh_page +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x534ccc50 get_task_cred +EXPORT_SYMBOL vmlinux 0x53679006 tcp_child_process +EXPORT_SYMBOL vmlinux 0x537cbed0 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x537cef36 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x538e72c2 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x53a520f4 ap_queue_init_reply +EXPORT_SYMBOL vmlinux 0x53c24b01 mutex_is_locked +EXPORT_SYMBOL vmlinux 0x53c8b67b ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x53cf3347 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x53d617b4 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x53dfa00b grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x53fd6dc9 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x542ad1ab t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54501538 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x5459ac9a iucv_bus +EXPORT_SYMBOL vmlinux 0x545b4d47 regset_get +EXPORT_SYMBOL vmlinux 0x546889ed skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x5474ed34 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x548d17c4 airq_iv_alloc +EXPORT_SYMBOL vmlinux 0x54a082b4 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54df0aff simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5513aab0 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x551668bc kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552556a8 gen_pool_dma_alloc_algo +EXPORT_SYMBOL vmlinux 0x552c8681 bdevname +EXPORT_SYMBOL vmlinux 0x552d839d blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x5539faf6 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x553d9c5b simple_dir_operations +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555ccb97 up_read +EXPORT_SYMBOL vmlinux 0x55773cb0 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x557845e4 dquot_file_open +EXPORT_SYMBOL vmlinux 0x557d2e55 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558f4dbb inet_ioctl +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55be8c7b param_get_hexint +EXPORT_SYMBOL vmlinux 0x55d63108 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55e93966 phy_suspend +EXPORT_SYMBOL vmlinux 0x55eccdf5 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x55f309e9 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x55fd18a3 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x560376da pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x5625b8e0 unmap_mapping_range +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 0x565671df posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x566094c8 irq_set_chip +EXPORT_SYMBOL vmlinux 0x5660f88f raw3270_add_view +EXPORT_SYMBOL vmlinux 0x566fc490 vm_insert_page +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d50988 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x56d78870 chsc +EXPORT_SYMBOL vmlinux 0x56fbacc3 make_kprojid +EXPORT_SYMBOL vmlinux 0x56fe48cb vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x571ae438 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x571d3635 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x572096fb devm_ioremap +EXPORT_SYMBOL vmlinux 0x57247306 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x574c0d42 xp_dma_map +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5755bdb5 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5785144d phy_driver_register +EXPORT_SYMBOL vmlinux 0x57a8d85f ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x57b4b9a1 register_external_irq +EXPORT_SYMBOL vmlinux 0x57bb64d6 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but +EXPORT_SYMBOL vmlinux 0x57f18433 swake_up_one +EXPORT_SYMBOL vmlinux 0x5804c56e param_ops_short +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 0x58302ea5 pskb_extract +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x5888c6cd jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x58929748 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x589911d5 md_handle_request +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e30690 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eae9ec gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x58fbc98d skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x590da2bb fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x59164d75 elevator_alloc +EXPORT_SYMBOL vmlinux 0x5917653a netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x593ca230 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x594aba7f __block_write_full_page +EXPORT_SYMBOL vmlinux 0x5983486f cdrom_release +EXPORT_SYMBOL vmlinux 0x5985f3e4 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x598f0a95 udplite_table +EXPORT_SYMBOL vmlinux 0x5994b0c1 param_set_long +EXPORT_SYMBOL vmlinux 0x59a9d83d pskb_expand_head +EXPORT_SYMBOL vmlinux 0x59abecd3 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c96d81 kthread_bind +EXPORT_SYMBOL vmlinux 0x59d83e51 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x59dc71d1 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x59de2ed4 debug_exception_common +EXPORT_SYMBOL vmlinux 0x59e1d90c scsi_print_command +EXPORT_SYMBOL vmlinux 0x59ec5524 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x5a082401 d_add_ci +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0dfd44 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x5a10f98e del_virt_timer +EXPORT_SYMBOL vmlinux 0x5a1a90f7 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0x5a449467 stream_open +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 0x5a6e67f6 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x5a7b6360 ap_queue_message +EXPORT_SYMBOL vmlinux 0x5a7ed19f audit_log_start +EXPORT_SYMBOL vmlinux 0x5a87d350 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x5a8d8e5c cdev_add +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5aa44d2e clear_inode +EXPORT_SYMBOL vmlinux 0x5ac53902 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5aec33d8 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x5aedcbce add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x5afba951 hmm_range_fault +EXPORT_SYMBOL vmlinux 0x5afc902b vfs_statfs +EXPORT_SYMBOL vmlinux 0x5b0156ed cdev_set_parent +EXPORT_SYMBOL vmlinux 0x5b09a617 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x5b163a15 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5b2b28ab tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x5b33b485 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5b40a0b5 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x5b4d6b3c input_event +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +EXPORT_SYMBOL vmlinux 0x5b6dc921 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x5b745a3d xa_load +EXPORT_SYMBOL vmlinux 0x5b7a779e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x5b81ab9e md_error +EXPORT_SYMBOL vmlinux 0x5b8e2be5 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x5bc2b096 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5bdcabe7 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c0716d4 arp_xmit +EXPORT_SYMBOL vmlinux 0x5c2ab814 config_item_put +EXPORT_SYMBOL vmlinux 0x5c30ba05 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c487c37 migrate_page +EXPORT_SYMBOL vmlinux 0x5c4a4e44 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x5c4a80d2 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x5c503f5d netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5c7e2dd9 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x5c812dd2 f_setown +EXPORT_SYMBOL vmlinux 0x5cacc7c4 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5cb0d3da __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x5cb4090a raw3270_request_set_cmd +EXPORT_SYMBOL vmlinux 0x5cbdc84c xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cd6f99b completion_done +EXPORT_SYMBOL vmlinux 0x5cd9e04d thaw_bdev +EXPORT_SYMBOL vmlinux 0x5cdb137b ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x5ce21e40 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5ce5a70d mpage_writepages +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfed871 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5d16d8cd radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x5d1b8272 nonseekable_open +EXPORT_SYMBOL vmlinux 0x5d3f1694 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x5d44dfdc genl_notify +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d679bec input_flush_device +EXPORT_SYMBOL vmlinux 0x5d7dee6b strscpy_pad +EXPORT_SYMBOL vmlinux 0x5d95f99c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x5da84b31 unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x5dd22874 kbd_ioctl +EXPORT_SYMBOL vmlinux 0x5ddf7d37 con_is_visible +EXPORT_SYMBOL vmlinux 0x5df756d7 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e0f2bc4 __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x5e159d2b eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x5e218c0b config_group_init +EXPORT_SYMBOL vmlinux 0x5e21cb82 ap_send +EXPORT_SYMBOL vmlinux 0x5e21cc9b jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e411534 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x5e4ecca4 ip6_output +EXPORT_SYMBOL vmlinux 0x5e61e55a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x5e75da9c __sock_create +EXPORT_SYMBOL vmlinux 0x5e7c527e find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x5e82a5c2 registered_fb +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea31004 arch_spin_trylock_retry +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec82f9f tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ed95944 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x5efdd68b __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x5f039ebd qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x5f05625d fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f11c748 nmi_panic +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f4f954b dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x5f539c8e scsi_host_get +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f6b7aae ll_rw_block +EXPORT_SYMBOL vmlinux 0x5f702d9b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5f9619a3 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5f98bdb6 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x5f9ede6c proc_dostring +EXPORT_SYMBOL vmlinux 0x5fa038e1 d_rehash +EXPORT_SYMBOL vmlinux 0x5fc3a00f input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x5fc3d43e flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x5fca0cbc input_close_device +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fdf5069 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x5fe447a9 bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0x5fef520c jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x5fffe6da bpf_map_get +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6019e8d7 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6032531f find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x605fed1e bio_init +EXPORT_SYMBOL vmlinux 0x607a69c3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a8145b phy_disconnect +EXPORT_SYMBOL vmlinux 0x60c311d6 raw3270_start +EXPORT_SYMBOL vmlinux 0x60c5b4fc udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x60cf0d39 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x60d6fed8 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x61028590 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x6108288f complete_all +EXPORT_SYMBOL vmlinux 0x610ac13e pagecache_get_page +EXPORT_SYMBOL vmlinux 0x61153c22 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x614e76c5 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61693e9a __skb_checksum +EXPORT_SYMBOL vmlinux 0x61731c00 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x61848e8d folio_add_lru +EXPORT_SYMBOL vmlinux 0x6185457e scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x6188a420 key_revoke +EXPORT_SYMBOL vmlinux 0x618f235b insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x61986b8e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x619a5d6e bio_uninit +EXPORT_SYMBOL vmlinux 0x619a8678 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61cbcd6e md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x61d07bc9 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e90ecb param_set_short +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x621e07d3 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x62214ecf inc_nlink +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623646a3 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x623deeb6 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x624c45c1 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x624f5ab3 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x62518341 alloc_pages +EXPORT_SYMBOL vmlinux 0x62596993 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x626925c9 sock_release +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274f5af vfs_readlink +EXPORT_SYMBOL vmlinux 0x627bc1c4 smp_ctl_set_clear_bit +EXPORT_SYMBOL vmlinux 0x627cd9df sock_efree +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62ab7f84 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x62bd1f37 dget_parent +EXPORT_SYMBOL vmlinux 0x62c04da6 inet_accept +EXPORT_SYMBOL vmlinux 0x62d47a92 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x62d62e53 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x62ec56a1 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x630a8f8d bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x630af2b9 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x63296a88 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x6340001a inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x63448377 skb_put +EXPORT_SYMBOL vmlinux 0x635264db may_setattr +EXPORT_SYMBOL vmlinux 0x635b6fc7 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x63682b3d inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x636ace72 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x636b8c86 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x6371e098 cio_irb +EXPORT_SYMBOL vmlinux 0x638174e1 get_vm_area +EXPORT_SYMBOL vmlinux 0x639acf83 pipe_unlock +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 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d05910 pci_dev_put +EXPORT_SYMBOL vmlinux 0x63d276a6 ccw_device_start +EXPORT_SYMBOL vmlinux 0x63dbed84 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x63e2c915 seq_vprintf +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f6c8a0 pci_free_irq +EXPORT_SYMBOL vmlinux 0x640335b5 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x64070086 register_filesystem +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643e2ccd skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x644a4d12 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x6458f1e7 zstd_init_cstream +EXPORT_SYMBOL vmlinux 0x64596da7 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x647cdf4c pci_remove_bus +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x64846c50 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x648a9938 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x648bfe4a skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64e3f3cb get_acl +EXPORT_SYMBOL vmlinux 0x64eec5d0 simple_setattr +EXPORT_SYMBOL vmlinux 0x64f4fdbd xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6513df16 km_policy_notify +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x6524b910 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x65355dad clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x653e272c poll_initwait +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65455723 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x655036aa pci_dev_get +EXPORT_SYMBOL vmlinux 0x6553ff39 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658d518a ip_getsockopt +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65abf261 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x65c3ffe8 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x65c6b1d7 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ed5e9d pci_release_resource +EXPORT_SYMBOL vmlinux 0x66009d02 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x6623f2e3 vmalloc_array +EXPORT_SYMBOL vmlinux 0x664fb992 skb_expand_head +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66609ee2 skb_seq_read +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666a8b29 ip_defrag +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66922c87 put_watch_queue +EXPORT_SYMBOL vmlinux 0x6692e0a8 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x669531ab fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x66a04e5f inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x66b3c522 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x66be10a3 security_path_mknod +EXPORT_SYMBOL vmlinux 0x66d9dfce __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x66fe865b zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x6720b262 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6723ee11 audit_log +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x6752a43f security_unix_may_send +EXPORT_SYMBOL vmlinux 0x676155ff dotdot_name +EXPORT_SYMBOL vmlinux 0x6762e507 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x67761128 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x677e6098 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x6787f57c finalize_exec +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x67a5b82a genphy_loopback +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b61f1a flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bc5dca d_genocide +EXPORT_SYMBOL vmlinux 0x67c12a9e __dquot_free_space +EXPORT_SYMBOL vmlinux 0x67ce597c unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x67d62b35 kernel_write +EXPORT_SYMBOL vmlinux 0x67e2272e refcount_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x67e55ab9 kill_pgrp +EXPORT_SYMBOL vmlinux 0x67e83f80 seq_open_private +EXPORT_SYMBOL vmlinux 0x67e96c90 softnet_data +EXPORT_SYMBOL vmlinux 0x6851db41 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x686de6cf write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x686f7078 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x68837f31 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x68cb33c0 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x68cf3daf xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x68e799ae skb_copy_bits +EXPORT_SYMBOL vmlinux 0x68e8fcd5 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x68eea293 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x68f32651 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x68f6dce6 discard_new_inode +EXPORT_SYMBOL vmlinux 0x68fad6f0 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0x68fe9e66 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x6907831b tcp_read_sock +EXPORT_SYMBOL vmlinux 0x69097457 crc32_be +EXPORT_SYMBOL vmlinux 0x690f9dfa hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69353915 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x693abdcf tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x695c6cdf follow_pfn +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x698925b6 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x69a3bb67 elv_rb_del +EXPORT_SYMBOL vmlinux 0x69b13d80 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x69b442f8 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x69d7769c __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0x69f26fce __folio_alloc +EXPORT_SYMBOL vmlinux 0x69f31f87 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2d46fd dquot_destroy +EXPORT_SYMBOL vmlinux 0x6a480bd6 single_open_size +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 0x6a76ecdf try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6a77853c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x6a8dec8a tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa89a55 file_ns_capable +EXPORT_SYMBOL vmlinux 0x6ab23aa1 load_fpu_regs +EXPORT_SYMBOL vmlinux 0x6ad077b1 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x6adae56d security_path_unlink +EXPORT_SYMBOL vmlinux 0x6ae2dc0f __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x6ae7cdad phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af927fc tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x6afec9c0 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b5bbbd4 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x6b5c926d register_key_type +EXPORT_SYMBOL vmlinux 0x6b7c9589 page_mapping +EXPORT_SYMBOL vmlinux 0x6b7dc1a6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x6b84fc8e devm_request_resource +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 0x6b93640b __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x6ba4a11d module_put +EXPORT_SYMBOL vmlinux 0x6bac671b __crc32c_le +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcaddac inode_get_bytes +EXPORT_SYMBOL vmlinux 0x6bd878ad inode_init_once +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bfe1653 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x6c041e19 __xa_insert +EXPORT_SYMBOL vmlinux 0x6c1fa293 path_has_submounts +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c3c5820 sg_miter_next +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c80a419 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc11bb3 ip_output +EXPORT_SYMBOL vmlinux 0x6ccc34dd sort +EXPORT_SYMBOL vmlinux 0x6cd4fb66 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x6cf192df kvrealloc +EXPORT_SYMBOL vmlinux 0x6d0702ed unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2c9fec genphy_resume +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d4559f9 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x6d5db48f filp_close +EXPORT_SYMBOL vmlinux 0x6d6549ad vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x6d72b084 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d82df03 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x6d911de1 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x6d92def0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x6da1e160 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x6daea280 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbc8b5c tty_do_resize +EXPORT_SYMBOL vmlinux 0x6dc0a59d validate_slab_cache +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6ddbd4e5 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x6ddbe9a8 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6de7bbcb scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x6debc2e5 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e0134a3 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x6e150d9f fs_param_is_string +EXPORT_SYMBOL vmlinux 0x6e2da197 arch_read_lock_wait +EXPORT_SYMBOL vmlinux 0x6e3260fb phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6e3e80d5 unregister_console +EXPORT_SYMBOL vmlinux 0x6e4c3473 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x6e4e8e72 dev_uc_del +EXPORT_SYMBOL vmlinux 0x6e6fe742 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7470bb key_alloc +EXPORT_SYMBOL vmlinux 0x6e7aaed9 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea379a8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eba92bf __phy_resume +EXPORT_SYMBOL vmlinux 0x6ef84303 kvmalloc_node +EXPORT_SYMBOL vmlinux 0x6f156c32 proc_set_size +EXPORT_SYMBOL vmlinux 0x6f20e8a0 nla_strscpy +EXPORT_SYMBOL vmlinux 0x6f2df3ef dma_fence_signal +EXPORT_SYMBOL vmlinux 0x6f401aea setup_arg_pages +EXPORT_SYMBOL vmlinux 0x6f53043d wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f62f7b0 deactivate_super +EXPORT_SYMBOL vmlinux 0x6f66ee1a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x6f79375c mempool_free +EXPORT_SYMBOL vmlinux 0x6f81c5a2 param_ops_uint +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fc0c58d dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x6fd4a0ce __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff230ca dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x70147f04 kern_unmount +EXPORT_SYMBOL vmlinux 0x702b2947 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x70336943 xa_set_mark +EXPORT_SYMBOL vmlinux 0x7051c9f7 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x708524b1 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x70930acb padata_alloc +EXPORT_SYMBOL vmlinux 0x70957489 kobject_add +EXPORT_SYMBOL vmlinux 0x70a26790 path_put +EXPORT_SYMBOL vmlinux 0x70b1ce8f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x70cca1e5 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x70d4b083 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x70f81b56 ap_max_msg_size +EXPORT_SYMBOL vmlinux 0x711e1491 ap_perms +EXPORT_SYMBOL vmlinux 0x7120f9bd LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x71231484 simple_fill_super +EXPORT_SYMBOL vmlinux 0x7125c48f udp_seq_ops +EXPORT_SYMBOL vmlinux 0x7126b210 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713c21ce cdev_init +EXPORT_SYMBOL vmlinux 0x714328ae read_cache_page +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x714c8b54 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x7150447b param_set_bint +EXPORT_SYMBOL vmlinux 0x715480bb udp_seq_stop +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715f1ba3 tcp_connect +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7175699b iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x71a19809 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x71a42c38 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c27b9b scsi_print_sense +EXPORT_SYMBOL vmlinux 0x71e41d76 kill_pid +EXPORT_SYMBOL vmlinux 0x71faed13 touch_buffer +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x720ad197 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x720f8588 send_sig +EXPORT_SYMBOL vmlinux 0x72171f5f freeze_super +EXPORT_SYMBOL vmlinux 0x72234329 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x72250219 seq_escape_mem +EXPORT_SYMBOL vmlinux 0x72297f25 __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x72334fe5 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x72475699 kill_block_super +EXPORT_SYMBOL vmlinux 0x7286a4fc put_disk +EXPORT_SYMBOL vmlinux 0x729bdd42 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x72a169b4 fget_raw +EXPORT_SYMBOL vmlinux 0x72b2cec0 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x72b3cfd9 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bdf2c4 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x72cbc730 done_path_create +EXPORT_SYMBOL vmlinux 0x72d32a4b phy_modify_paged +EXPORT_SYMBOL vmlinux 0x72d58b58 sock_init_data +EXPORT_SYMBOL vmlinux 0x72da70e2 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f7ef74 tcp_req_err +EXPORT_SYMBOL vmlinux 0x73018f77 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x7301dcf5 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x7303c29c pci_clear_master +EXPORT_SYMBOL vmlinux 0x730ae7c0 free_buffer_head +EXPORT_SYMBOL vmlinux 0x730b096c ap_apqn_in_matrix_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0x730d6de2 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x731edda4 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x73258cbb __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7339f28b xp_can_alloc +EXPORT_SYMBOL vmlinux 0x7357b813 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7369e4a3 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x7372941c fs_param_is_path +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x7389706a __memset16 +EXPORT_SYMBOL vmlinux 0x738bcb9b arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x738bdc7e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x738d1bd3 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73d02d70 find_inode_rcu +EXPORT_SYMBOL vmlinux 0x73f4bab8 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x73fa799e security_sock_graft +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 0x742a93f5 kobject_put +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x745f316f param_set_int +EXPORT_SYMBOL vmlinux 0x746c64d0 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x746e4f59 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7470b01a tsb_init +EXPORT_SYMBOL vmlinux 0x747363a7 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74a40aff jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x74ae8866 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c782d9 con_is_bound +EXPORT_SYMBOL vmlinux 0x74d21356 get_user_pages +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74d85ad5 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f3df74 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x74ffeb8b commit_creds +EXPORT_SYMBOL vmlinux 0x7511203d open_with_fake_path +EXPORT_SYMBOL vmlinux 0x7516d149 input_allocate_device +EXPORT_SYMBOL vmlinux 0x752485be generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x752f6274 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7535749d sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x753a8325 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x754a6ba3 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0x756726c9 set_cached_acl +EXPORT_SYMBOL vmlinux 0x759a0416 __memset64 +EXPORT_SYMBOL vmlinux 0x759fd7f5 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x75b7bd20 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x75b9cf29 hsch +EXPORT_SYMBOL vmlinux 0x75bbd13c rawv6_mh_filter_register +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 0x75d6194a pci_match_id +EXPORT_SYMBOL vmlinux 0x75e3f586 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x75f62bfe dev_trans_start +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760d20b1 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762addd6 phy_device_register +EXPORT_SYMBOL vmlinux 0x762d95cf tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x76426845 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764de605 param_set_byte +EXPORT_SYMBOL vmlinux 0x7650f1cb sk_dst_check +EXPORT_SYMBOL vmlinux 0x766035e9 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x766449bd blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x76679b0c config_item_set_name +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a1d649 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x76ac4bc1 sock_no_getname +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76f1d3e5 set_pgste_bits +EXPORT_SYMBOL vmlinux 0x76fefe53 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x77247c5e ap_bus_force_rescan +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x773274a8 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773e7ada cdrom_open +EXPORT_SYMBOL vmlinux 0x77418541 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x774ab4b4 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x77507d7b nf_reinject +EXPORT_SYMBOL vmlinux 0x777964b9 would_dump +EXPORT_SYMBOL vmlinux 0x7779de8d d_splice_alias +EXPORT_SYMBOL vmlinux 0x7798cbcc tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x77a23ca5 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77bba121 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cb0bce jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x77cbe84d get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x77d177fd dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x7805d1a0 __put_cred +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x781736a0 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x7819aea9 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x781c0c9b sock_register +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x78569adf ida_alloc_range +EXPORT_SYMBOL vmlinux 0x7873cf78 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789bcc14 vfs_get_link +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78afe906 dcb_setapp +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c12cf4 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f1475a __traceiter_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0x78f1b445 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x790175dc ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x79035513 simple_getattr +EXPORT_SYMBOL vmlinux 0x7927342d kset_register +EXPORT_SYMBOL vmlinux 0x79370a3f eth_header_parse +EXPORT_SYMBOL vmlinux 0x79472255 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x794dfb91 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x7961e000 tty_port_init +EXPORT_SYMBOL vmlinux 0x79633b13 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x7970ef55 swake_up_locked +EXPORT_SYMBOL vmlinux 0x79773ff4 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x797ac108 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0x797fe49c scsi_register_driver +EXPORT_SYMBOL vmlinux 0x79816357 dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x7983aa76 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x79b1ca4c set_nlink +EXPORT_SYMBOL vmlinux 0x79cd6498 down_write_killable +EXPORT_SYMBOL vmlinux 0x79d265ed xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a0a7c35 skb_append +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a3992bd scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5e94a8 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x7a7c7b79 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7a7d60e6 iucv_register +EXPORT_SYMBOL vmlinux 0x7a94f0c5 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac448e7 netif_rx +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adc7d81 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x7ae775f4 bdi_unregister +EXPORT_SYMBOL vmlinux 0x7b0a9183 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x7b1339e0 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x7b1de5d2 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x7b23a647 register_netdevice +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4f7a1d gro_cells_init +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b8b9acd sock_edemux +EXPORT_SYMBOL vmlinux 0x7bae7754 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7baffe15 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7bb7340c tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bd7dfd0 ap_test_config_usage_domain +EXPORT_SYMBOL vmlinux 0x7be2ec0f copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x7c04d187 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x7c14f503 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2130ae pci_iounmap +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c683925 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7c706e55 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7c780606 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7c84c157 vm_map_pages +EXPORT_SYMBOL vmlinux 0x7c860902 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7c9fe5a7 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7ca42530 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x7cb5c89e dquot_alloc +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ced436f tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0c8c55 thaw_super +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d1f5f95 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x7d2462ba flush_signals +EXPORT_SYMBOL vmlinux 0x7d442524 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7d49ef3e iov_iter_init +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d522361 mempool_create_node +EXPORT_SYMBOL vmlinux 0x7d6b18cc file_open_root +EXPORT_SYMBOL vmlinux 0x7d6c7303 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x7d740138 touch_atime +EXPORT_SYMBOL vmlinux 0x7d8766fd clocksource_unregister +EXPORT_SYMBOL vmlinux 0x7d8dbb29 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7da4aace register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x7da5b367 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dd5ba2d tcf_idr_create +EXPORT_SYMBOL vmlinux 0x7dec65ff mempool_init +EXPORT_SYMBOL vmlinux 0x7def0473 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e23dc31 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x7e2981fe skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x7e29fa33 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x7e2e3d1b ptep_xchg_direct +EXPORT_SYMBOL vmlinux 0x7e30704d is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e3bfd7c __module_get +EXPORT_SYMBOL vmlinux 0x7e4ef1cb md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x7e50325f jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x7e61193f pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x7e71ec2b dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x7e821ba1 crc_ccitt +EXPORT_SYMBOL vmlinux 0x7e9ba9a7 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7eab641e gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x7ebdbd0e ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x7ece20ad dev_mc_del +EXPORT_SYMBOL vmlinux 0x7eda253b filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x7ee17b84 __register_binfmt +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f25b856 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7f4ba429 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x7f4c565b add_wait_queue +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5519f2 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x7f5a80c3 bio_reset +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f683235 unload_nls +EXPORT_SYMBOL vmlinux 0x7f6a7acd eth_validate_addr +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7ea33d pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f94a66f rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x7f957121 dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x7fad1632 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x7fc3c773 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x80253e40 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x80318b30 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80465c9b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x804a190f flow_rule_match_control +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 0x806076f0 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x806f2c92 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x80842dcd zap_page_range +EXPORT_SYMBOL vmlinux 0x80b95784 rw_verify_area +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7f717 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x80def5f6 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x810f40f8 set_page_writeback +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 0x812c78b4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x812f78eb xxh64_update +EXPORT_SYMBOL vmlinux 0x813114e2 tty_unlock +EXPORT_SYMBOL vmlinux 0x8133798b cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x813f046f gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x8156c7da dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x8159fd94 fwnode_iomap +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816c6a6e pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81844c9d vmemdup_user +EXPORT_SYMBOL vmlinux 0x8194e5cf skb_queue_purge +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a58001 mempool_init_node +EXPORT_SYMBOL vmlinux 0x81b433f2 down +EXPORT_SYMBOL vmlinux 0x81bd3a0d pci_resize_resource +EXPORT_SYMBOL vmlinux 0x81c521ce proc_dobool +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f918a2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x81fbb534 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x820731e7 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x8223dbf4 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x822539c3 tty_vhangup +EXPORT_SYMBOL vmlinux 0x8232f097 tcf_block_get +EXPORT_SYMBOL vmlinux 0x8246a51f generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x824bb676 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x826f8ac8 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x827ae947 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8281f0f4 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x828af1dc dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x828c2133 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x82b86706 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x82c2f005 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x82c557e1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82c87d77 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x82e903aa phy_register_fixup +EXPORT_SYMBOL vmlinux 0x830992bf tcp_seq_start +EXPORT_SYMBOL vmlinux 0x831a66a6 I_BDEV +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8364ad91 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x836d8ea0 param_get_long +EXPORT_SYMBOL vmlinux 0x8377b4b0 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x83813003 block_write_begin +EXPORT_SYMBOL vmlinux 0x83860aa7 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x83ab4811 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x83b9f6fa simple_transaction_release +EXPORT_SYMBOL vmlinux 0x83bdb3e1 gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0x83c2aa59 nobh_write_end +EXPORT_SYMBOL vmlinux 0x83d4519b ip_frag_next +EXPORT_SYMBOL vmlinux 0x83d8dbdb ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x83df572e debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x83eec27b locks_free_lock +EXPORT_SYMBOL vmlinux 0x83f6f70d param_ops_ushort +EXPORT_SYMBOL vmlinux 0x84021876 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840be041 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x84180182 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x841a7dc2 set_capacity +EXPORT_SYMBOL vmlinux 0x841cc2f6 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x8426e047 vfs_get_super +EXPORT_SYMBOL vmlinux 0x84654986 mdio_device_free +EXPORT_SYMBOL vmlinux 0x8499b061 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1ad08 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84c8d95c padata_do_serial +EXPORT_SYMBOL vmlinux 0x84d4c8cc crc16 +EXPORT_SYMBOL vmlinux 0x84d9d8cf truncate_setsize +EXPORT_SYMBOL vmlinux 0x84dc1e46 scsi_device_get +EXPORT_SYMBOL vmlinux 0x84ec937a show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x84f263ed dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x84fc790b udp_prot +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85807064 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x858c0d88 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x85a3d8d0 generic_fillattr +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b72ab7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x85bbd89d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d14264 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x85d4a167 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x85d9ee0d neigh_direct_output +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f0464a skb_free_datagram +EXPORT_SYMBOL vmlinux 0x860efa2c mutex_lock +EXPORT_SYMBOL vmlinux 0x86216acd __xa_set_mark +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x8630ec23 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863fd3af address_space_init_once +EXPORT_SYMBOL vmlinux 0x86483aee tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x86495f93 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x866460fb ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x86679edb tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x8674a07b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x8676db46 get_random_bytes +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bde1d down_write_trylock +EXPORT_SYMBOL vmlinux 0x869ca174 qdisc_reset +EXPORT_SYMBOL vmlinux 0x86a34793 _copy_to_user_key +EXPORT_SYMBOL vmlinux 0x86a8f3bb dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x86a8fb71 mutex_unlock +EXPORT_SYMBOL vmlinux 0x86a9d784 __breadahead +EXPORT_SYMBOL vmlinux 0x86bdbe46 __tracepoint_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0x86bf7394 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x86cb39f6 param_ops_string +EXPORT_SYMBOL vmlinux 0x86d2335e mempool_create +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e953a9 __bforget +EXPORT_SYMBOL vmlinux 0x86f86c89 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87072773 skb_pull_data +EXPORT_SYMBOL vmlinux 0x872673ee alloc_fcdev +EXPORT_SYMBOL vmlinux 0x8729fc30 keyring_alloc +EXPORT_SYMBOL vmlinux 0x87415ad1 eth_header +EXPORT_SYMBOL vmlinux 0x874f7e68 ip6_xmit +EXPORT_SYMBOL vmlinux 0x87532703 raw3270_start_irq +EXPORT_SYMBOL vmlinux 0x875bdb38 d_invalidate +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x877cda24 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x877e7798 debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0x877f2123 sock_wfree +EXPORT_SYMBOL vmlinux 0x879bcd03 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a3d0af folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87d2caeb __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x87df2c32 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x87e8151c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x87fcab48 hex2bin +EXPORT_SYMBOL vmlinux 0x88013834 vfs_getattr +EXPORT_SYMBOL vmlinux 0x88029e45 debug_unregister +EXPORT_SYMBOL vmlinux 0x880fb929 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881e0806 dst_discard_out +EXPORT_SYMBOL vmlinux 0x88300dce pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x8845d89a __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0x88472f43 fb_blank +EXPORT_SYMBOL vmlinux 0x88585bda bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x8866e4a9 param_get_byte +EXPORT_SYMBOL vmlinux 0x886c0563 shmem_aops +EXPORT_SYMBOL vmlinux 0x8875ed21 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x887e1860 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x887efc6f __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x88886b9d generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x888e4911 dma_set_mask +EXPORT_SYMBOL vmlinux 0x88956ecd flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x88999894 utf8_validate +EXPORT_SYMBOL vmlinux 0x88b28881 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x88c837ef put_cmsg +EXPORT_SYMBOL vmlinux 0x88c880b9 set_groups +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e52cdb idr_for_each +EXPORT_SYMBOL vmlinux 0x891638db input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x8917c965 vlan_for_each +EXPORT_SYMBOL vmlinux 0x89475eab rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x895b5e8b fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x895fa25e md_write_end +EXPORT_SYMBOL vmlinux 0x89621b96 __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0x8983266b iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x898b19cc utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0x89a09837 ioremap_prot +EXPORT_SYMBOL vmlinux 0x89a72572 __tracepoint_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0x89bc0899 redraw_screen +EXPORT_SYMBOL vmlinux 0x89cf605b setattr_prepare +EXPORT_SYMBOL vmlinux 0x89dd1a23 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x89f0f589 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x89fc544c msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x89ff6563 console_start +EXPORT_SYMBOL vmlinux 0x8a1c008e flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x8a2fac7a md_update_sb +EXPORT_SYMBOL vmlinux 0x8a53c614 unlock_rename +EXPORT_SYMBOL vmlinux 0x8a65338b percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x8a705ea8 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8bc311 devm_memremap +EXPORT_SYMBOL vmlinux 0x8a97c283 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab8fe9f __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8acba2a8 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x8ae4fda9 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x8aff9396 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8b001cb8 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b02a750 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x8b07d1ad sg_miter_stop +EXPORT_SYMBOL vmlinux 0x8b37f3b8 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x8b42709f xp_dma_unmap +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 0x8b69b617 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x8b78590d inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b9712a2 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x8ba7a73c sockfd_lookup +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bf4fb0b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x8bfe5e1e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x8c2c477c xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8c38e4b2 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x8c50975f pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x8c63df0a __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x8c6592fc hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x8c65b7a9 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x8c6a0cf7 ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x8c816c50 override_creds +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c875be0 tcw_init +EXPORT_SYMBOL vmlinux 0x8c939355 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cb062a8 iucv_message_reply +EXPORT_SYMBOL vmlinux 0x8cdfc002 sclp_unregister +EXPORT_SYMBOL vmlinux 0x8cef78c1 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x8d059f51 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8d0a1022 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x8d0b153d dev_uc_add +EXPORT_SYMBOL vmlinux 0x8d0fd4ef idr_replace +EXPORT_SYMBOL vmlinux 0x8d3508cc udp_seq_next +EXPORT_SYMBOL vmlinux 0x8d42f91b vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5f624e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x8d63a28d input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d93fd02 pci_restore_state +EXPORT_SYMBOL vmlinux 0x8da6753b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x8dafa31f cdev_alloc +EXPORT_SYMBOL vmlinux 0x8dc2d3dd blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x8dc3821a dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8dc425bb param_set_uint +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0ac805 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x8e0ff321 submit_bio +EXPORT_SYMBOL vmlinux 0x8e1b2c32 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x8e241b73 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x8e391424 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x8e53a7c8 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x8e562fe8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x8e73ebce proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x8e7c9784 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9c8219 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x8eb050d7 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ec39417 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x8ec671b5 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x8ecb0d0f netdev_notice +EXPORT_SYMBOL vmlinux 0x8ecea520 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x8ecef4e6 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x8ed0642f vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x8edf3cef add_watch_to_object +EXPORT_SYMBOL vmlinux 0x8f089832 iterate_dir +EXPORT_SYMBOL vmlinux 0x8f12e77d pci_request_regions +EXPORT_SYMBOL vmlinux 0x8f23f1c4 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x8f2e8039 zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0x8f3ed559 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x8f787444 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x8f89edc2 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x8f92470b blk_integrity_register +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa0fb86 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x8fa3baf4 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8fb7fcae nf_setsockopt +EXPORT_SYMBOL vmlinux 0x8fb80490 bmap +EXPORT_SYMBOL vmlinux 0x8fd0849b utf8_normalize +EXPORT_SYMBOL vmlinux 0x8fd5fc62 dma_pool_create +EXPORT_SYMBOL vmlinux 0x8fe089dd blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9001ef1b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x90057b89 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x901d1676 netdev_state_change +EXPORT_SYMBOL vmlinux 0x901d2a5e set_binfmt +EXPORT_SYMBOL vmlinux 0x903c4619 pmdp_xchg_direct +EXPORT_SYMBOL vmlinux 0x90514d97 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x9067bc1d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x907faabf zstd_compress_stream +EXPORT_SYMBOL vmlinux 0x90a55a29 sock_no_accept +EXPORT_SYMBOL vmlinux 0x90abb542 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x90af749e dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x90b584ce pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x90b83c0c inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x90ba912b __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x90be1e82 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x90becd3c security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x90c79c06 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x90d4bc50 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x910b9808 bioset_exit +EXPORT_SYMBOL vmlinux 0x910c7a0c alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x9145e8e6 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x915b6d38 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0x9164440d debug_event_common +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x917f0e9c km_state_notify +EXPORT_SYMBOL vmlinux 0x91965208 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a5de5e neigh_table_clear +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91c4a4ae scsi_remove_device +EXPORT_SYMBOL vmlinux 0x91c74a40 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x91cd524b proc_symlink +EXPORT_SYMBOL vmlinux 0x91e0116c dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x9204dba7 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x921e1bbf devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x92217474 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927e2955 xa_get_order +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x9299ebc7 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x929b4a78 fget +EXPORT_SYMBOL vmlinux 0x92a16af7 lockref_get +EXPORT_SYMBOL vmlinux 0x92cf2923 dump_skip +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d6ea76 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x92e42b11 bdi_put +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x9313a64e genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x9318fa66 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x9336b593 pci_choose_state +EXPORT_SYMBOL vmlinux 0x933afd98 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x93696a10 inet_sendpage +EXPORT_SYMBOL vmlinux 0x937343be netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x93771bfb dev_add_pack +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9386fae5 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x938da9b3 bio_init_clone +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c325e4 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x93c672e0 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x93e32688 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x93e6ae5b nlmsg_notify +EXPORT_SYMBOL vmlinux 0x93ec2d2b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942f4c5c iucv_message_reject +EXPORT_SYMBOL vmlinux 0x943db376 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x9442ab98 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944395cb dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x94466085 devm_memunmap +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x9477ed45 console_stop +EXPORT_SYMBOL vmlinux 0x947fdb4e qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b4e186 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x94be9724 seq_puts +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c9a54b fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x94dde473 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x94de64c4 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x94e2eaf8 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94f90afc phy_write_paged +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95187659 regset_get_alloc +EXPORT_SYMBOL vmlinux 0x951a2dfe iucv_path_accept +EXPORT_SYMBOL vmlinux 0x952cfb54 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x9530365d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0x954121b2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x954a1ffe phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954e0abd device_get_mac_address +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x957891df devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x959d3e90 dump_page +EXPORT_SYMBOL vmlinux 0x95aad211 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x95b38ccc resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x95c07f01 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x95c3f8e5 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x95ce62f1 key_type_keyring +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95e63ced prot_virt_host +EXPORT_SYMBOL vmlinux 0x95ecb8ae __seq_open_private +EXPORT_SYMBOL vmlinux 0x963e0fa6 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x96564e54 pid_task +EXPORT_SYMBOL vmlinux 0x966f7ddc qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x96a2a091 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x96a7f1ce neigh_for_each +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d5c67b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x96db63df xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x96f8b324 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x96f9993f __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9703a514 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x970f17a7 ap_parse_mask_str +EXPORT_SYMBOL vmlinux 0x97102bcf inet6_offloads +EXPORT_SYMBOL vmlinux 0x9710bcd3 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x9715f91a iunique +EXPORT_SYMBOL vmlinux 0x97222f34 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x9723a298 pci_map_rom +EXPORT_SYMBOL vmlinux 0x972815d3 __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x974d0924 __kernel_cpumcf_begin +EXPORT_SYMBOL vmlinux 0x975636da iov_iter_discard +EXPORT_SYMBOL vmlinux 0x9780c2d8 __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979b5887 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97bfbc5b tso_build_data +EXPORT_SYMBOL vmlinux 0x97c250f8 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x97d5cfe1 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x97d9ac98 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x98200e4c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x9839a803 __brelse +EXPORT_SYMBOL vmlinux 0x983f1d2d netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x983fd7ee security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x9841c6a2 iget_locked +EXPORT_SYMBOL vmlinux 0x9883d158 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x989e0aa2 lookup_one_len +EXPORT_SYMBOL vmlinux 0x989e1516 xa_destroy +EXPORT_SYMBOL vmlinux 0x98b145d4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x98bd594c pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x98c2f539 d_add +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98d52e03 vfs_create +EXPORT_SYMBOL vmlinux 0x98d7838d bioset_init +EXPORT_SYMBOL vmlinux 0x98de1c15 snprintf +EXPORT_SYMBOL vmlinux 0x98e2196c __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e71d04 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x98ee2a4f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x9900761a zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x99095a9d skb_queue_tail +EXPORT_SYMBOL vmlinux 0x99193fa4 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9972b379 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x997359e1 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x9996477b __nla_put +EXPORT_SYMBOL vmlinux 0x999cb5c5 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b6d3f6 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x99c178b5 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x99c28d8c generic_listxattr +EXPORT_SYMBOL vmlinux 0x99ca74a6 xa_erase +EXPORT_SYMBOL vmlinux 0x99d265b9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f6a73c xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x9a0b1d27 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x9a1cb0dd add_to_pipe +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a29cf6a jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9a3a8b7d ap_driver_register +EXPORT_SYMBOL vmlinux 0x9a3c9a81 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a684448 do_wait_intr +EXPORT_SYMBOL vmlinux 0x9a8789c2 mdiobus_read +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a96005b vfs_iter_write +EXPORT_SYMBOL vmlinux 0x9aa4c75d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ac5ed60 unregister_key_type +EXPORT_SYMBOL vmlinux 0x9acb4fb4 block_truncate_page +EXPORT_SYMBOL vmlinux 0x9acb7bac zpci_report_error +EXPORT_SYMBOL vmlinux 0x9ad99857 dev_open +EXPORT_SYMBOL vmlinux 0x9adc9c67 vsnprintf +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9ae75e23 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x9af370ac get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9b21fc52 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2af560 no_llseek +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b42ef0f dfltcc_reset +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b5f91f2 param_get_short +EXPORT_SYMBOL vmlinux 0x9b7470c1 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x9b791d98 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b8e0062 netlink_set_err +EXPORT_SYMBOL vmlinux 0x9b9bf91c key_task_permission +EXPORT_SYMBOL vmlinux 0x9bcf3558 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x9bd20399 pipe_lock +EXPORT_SYMBOL vmlinux 0x9be5099c unpin_user_page +EXPORT_SYMBOL vmlinux 0x9bec81b9 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x9bedd673 dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x9bf06bd7 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x9c049806 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x9c151813 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9c594c68 key_put +EXPORT_SYMBOL vmlinux 0x9c72f7c9 sget +EXPORT_SYMBOL vmlinux 0x9c82911a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8c86b8 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x9cadbd3b __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x9cde8ee5 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce2e247 neigh_destroy +EXPORT_SYMBOL vmlinux 0x9ce40bac __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1da73e raw3270_find_view +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d503d43 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x9d509dca init_opal_dev +EXPORT_SYMBOL vmlinux 0x9d615d47 component_match_add_release +EXPORT_SYMBOL vmlinux 0x9d6afab2 itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x9d6e1808 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d8bbbe2 dev_mc_add +EXPORT_SYMBOL vmlinux 0x9dbe53d0 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x9dc8c7a3 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x9dd110fd lease_modify +EXPORT_SYMBOL vmlinux 0x9df2842e sock_setsockopt +EXPORT_SYMBOL vmlinux 0x9df85e95 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e16d5e5 sock_create +EXPORT_SYMBOL vmlinux 0x9e265708 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x9e35dd3d flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x9e386727 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x9e3a4965 uv_info +EXPORT_SYMBOL vmlinux 0x9e48c3ae dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672336 param_set_ushort +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9783e1 __tracepoint_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9f0c903f phy_device_free +EXPORT_SYMBOL vmlinux 0x9f1b09bc no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f477239 netdev_crit +EXPORT_SYMBOL vmlinux 0x9f48626f kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x9f48ad98 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f55a43b n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x9f85b546 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f995d98 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fc91428 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe53545 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffc9cf0 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa00e3dcd find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa020d301 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa053330e scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xa054e8ed iucv_unregister +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa066d89f xa_store_range +EXPORT_SYMBOL vmlinux 0xa06e587a release_firmware +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b9f80 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa08f7b47 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xa090905c cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa099ddee vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c67eef pci_scan_bus +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dba993 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xa0e669b3 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa0ea4fc4 flow_block_cb_decref +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 0xa0fd354f netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa102f8d8 generic_file_open +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10a0439 kmalloc_order +EXPORT_SYMBOL vmlinux 0xa140695d reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xa148007b __icmp_send +EXPORT_SYMBOL vmlinux 0xa15d28d0 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0xa1856ba6 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xa1a422c8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa1a8cc6c crc_ccitt_false +EXPORT_SYMBOL vmlinux 0xa1b87900 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xa1ba2277 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xa1baaa46 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xa1bbd026 simple_write_begin +EXPORT_SYMBOL vmlinux 0xa1d238b4 ihold +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1d91fc7 debug_register_view +EXPORT_SYMBOL vmlinux 0xa1e1cec9 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa1ea5033 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1fbfa25 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xa1fee353 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0xa20437a2 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xa2046e63 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa2288805 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa2478de8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xa24bc665 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa267480e alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa28caf08 seq_release_private +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28e1b49 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa2920693 param_array_ops +EXPORT_SYMBOL vmlinux 0xa29b7ccb bio_free_pages +EXPORT_SYMBOL vmlinux 0xa2b4f2e3 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2f58912 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xa2f95a20 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xa2fc75e7 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xa2fe4844 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xa309c1bf pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa31098a5 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa31d1dea __xa_erase +EXPORT_SYMBOL vmlinux 0xa3509ddc dev_base_lock +EXPORT_SYMBOL vmlinux 0xa35ab857 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa37c3355 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xa38d33a6 simple_open +EXPORT_SYMBOL vmlinux 0xa38e7abf input_unregister_handler +EXPORT_SYMBOL vmlinux 0xa39358ea phy_read_paged +EXPORT_SYMBOL vmlinux 0xa39ae677 nobh_writepage +EXPORT_SYMBOL vmlinux 0xa39ae7fd datagram_poll +EXPORT_SYMBOL vmlinux 0xa3a0cc12 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3b06dde percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xa3baa601 empty_aops +EXPORT_SYMBOL vmlinux 0xa3bcd2b8 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3decb66 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xa3e3f906 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xa3e45c43 generic_write_checks +EXPORT_SYMBOL vmlinux 0xa3e8cfa7 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa3f7aa51 __tracepoint_s390_cio_rsch +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa401aa37 current_in_userns +EXPORT_SYMBOL vmlinux 0xa4051bf6 LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0xa431c701 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xa432f041 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa444e69e pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa45c59bd __SCK__tp_func_s390_cio_chsc +EXPORT_SYMBOL vmlinux 0xa463ffd6 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xa4b0bf88 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa4b99901 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa4cbe0f1 tso_count_descs +EXPORT_SYMBOL vmlinux 0xa4ce2fcb ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xa4e07209 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4ed8f91 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xa50350d4 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xa503dd04 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa50483fe __ksize +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50e0768 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xa510fb2c fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xa514bd50 tty_check_change +EXPORT_SYMBOL vmlinux 0xa52e597b __bread_gfp +EXPORT_SYMBOL vmlinux 0xa5304150 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xa533fc04 put_ipc_ns +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5621b66 tty_port_close +EXPORT_SYMBOL vmlinux 0xa568ee81 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xa569fe17 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xa58b31da __wait_on_bit +EXPORT_SYMBOL vmlinux 0xa5a3b051 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa5a45301 devm_free_irq +EXPORT_SYMBOL vmlinux 0xa5e859e4 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0xa60c0b31 arp_tbl +EXPORT_SYMBOL vmlinux 0xa618b54e fiemap_prep +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa62959fa skb_push +EXPORT_SYMBOL vmlinux 0xa6386481 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa644172a __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6495772 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6710969 igrab +EXPORT_SYMBOL vmlinux 0xa67d5921 dma_fence_free +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa69b41f9 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa6a6733a dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xa6ba09c5 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa6bd176c ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0xa6c74b4a dquot_transfer +EXPORT_SYMBOL vmlinux 0xa6d267f7 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xa6e9c670 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0xa6f88cf5 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xa6fbe5f4 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa6fc2d30 phy_get_pause +EXPORT_SYMBOL vmlinux 0xa7200ade key_reject_and_link +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa74f5c99 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xa75c4b0c vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0xa7711e50 from_kprojid +EXPORT_SYMBOL vmlinux 0xa77a4efa jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7a9cfe0 iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xa7e8f115 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa801855c kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa8036982 file_remove_privs +EXPORT_SYMBOL vmlinux 0xa83c8a3c phy_print_status +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa856ac6a mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xa85945b0 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xa85bdf8e blk_sync_queue +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa893982f scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xa8977589 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xa8b0f4db scsi_host_busy +EXPORT_SYMBOL vmlinux 0xa8b3d8cd mdio_device_remove +EXPORT_SYMBOL vmlinux 0xa8c39416 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xa8e3fe19 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0xa8e69f03 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f94ac6 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xa9007509 sock_pfree +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90d613a pci_request_region +EXPORT_SYMBOL vmlinux 0xa92239d4 get_phy_device +EXPORT_SYMBOL vmlinux 0xa92c9f8d __traceiter_s390_cio_tsch +EXPORT_SYMBOL vmlinux 0xa9392430 xa_clear_mark +EXPORT_SYMBOL vmlinux 0xa93bc955 genl_register_family +EXPORT_SYMBOL vmlinux 0xa944bb84 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xa95c4dc1 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa970351b dquot_commit +EXPORT_SYMBOL vmlinux 0xa9704e7c netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98adb8c nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xa9ce9585 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xa9de5c6c scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xa9f618cd dev_uc_init +EXPORT_SYMBOL vmlinux 0xaa14ff53 vfs_symlink +EXPORT_SYMBOL vmlinux 0xaa1911ea nf_hook_slow +EXPORT_SYMBOL vmlinux 0xaa195d37 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1c6624 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xaa1e246a xxh32_update +EXPORT_SYMBOL vmlinux 0xaa498678 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xaa4c28ba netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xaa53b33c gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0xaa5c9395 dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xaa7a1f77 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0xaa8a0b93 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xaa8f74f6 pci_get_class +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa66739 ap_wait_init_apqn_bindings_complete +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad8c7d6 default_wake_function +EXPORT_SYMBOL vmlinux 0xaafc1033 vfs_get_tree +EXPORT_SYMBOL vmlinux 0xaafc9361 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab40c4d6 register_netdev +EXPORT_SYMBOL vmlinux 0xab46c289 __SCK__tp_func_s390_cio_hsch +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 0xab8d7f16 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xabe1431b trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xabe3fb91 proc_set_user +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1f9454 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xac202836 pudp_xchg_direct +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac52c9fa vc_cons +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6f2765 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xac6f7b32 netdev_change_features +EXPORT_SYMBOL vmlinux 0xac75ffd7 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xac8a98ae mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xac8db488 netdev_alert +EXPORT_SYMBOL vmlinux 0xac9a048c find_vma +EXPORT_SYMBOL vmlinux 0xaca0aef0 complete +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb647c6 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xacb64ee3 phy_loopback +EXPORT_SYMBOL vmlinux 0xacb7d845 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xacba03de xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace7be4f phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xacea318c zstd_get_error_code +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad064b53 ip_options_compile +EXPORT_SYMBOL vmlinux 0xad0ca00f vfs_rename +EXPORT_SYMBOL vmlinux 0xad0fe363 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad1441f0 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xad299b78 ioremap_wc +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad6ac065 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xad6c3f78 dqstats +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad85369a netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xada09ad2 dfltcc_can_inflate +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadc6a077 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xade23f80 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xade2e4c3 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xadf7b1d9 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0221ca napi_complete_done +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae06002a kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xae0cf20a tcp_seq_next +EXPORT_SYMBOL vmlinux 0xae207ed8 input_release_device +EXPORT_SYMBOL vmlinux 0xae2e7c54 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae350df6 simple_rename +EXPORT_SYMBOL vmlinux 0xae3e1659 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xae5019cd netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xae54ad18 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xae5ed22c security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xae607233 filemap_fault +EXPORT_SYMBOL vmlinux 0xae691af6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xae6d97c2 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xae6e7f6f ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xae7559b1 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xae78fb20 __break_lease +EXPORT_SYMBOL vmlinux 0xae98bfa3 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xae9f6f45 nf_log_trace +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaebdf85f refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaeda4ff2 migrate_page_states +EXPORT_SYMBOL vmlinux 0xaf023c19 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xaf0dbfdb ether_setup +EXPORT_SYMBOL vmlinux 0xaf1b31c4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xaf256772 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xaf30dc19 param_ops_byte +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5bf018 sock_no_linger +EXPORT_SYMBOL vmlinux 0xaf7b2825 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xaf808fb3 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xafbdbf40 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xafcf7596 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xafd08e47 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0xafdec906 notify_change +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafe830ea dev_remove_pack +EXPORT_SYMBOL vmlinux 0xafee25a6 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xafef7139 __napi_schedule +EXPORT_SYMBOL vmlinux 0xb0040208 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb03fbb68 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xb045fe64 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06598dc register_sysctl +EXPORT_SYMBOL vmlinux 0xb073e118 kernel_listen +EXPORT_SYMBOL vmlinux 0xb07656f4 __find_get_block +EXPORT_SYMBOL vmlinux 0xb078859f skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xb07b632e jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb08eea7f d_set_fallthru +EXPORT_SYMBOL vmlinux 0xb09f51d1 tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0xb0aad410 noop_qdisc +EXPORT_SYMBOL vmlinux 0xb0b39d20 mdio_device_register +EXPORT_SYMBOL vmlinux 0xb0d7a305 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eda7e7 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb0f587ee sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb0fce292 vmemmap +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb1176e59 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xb117a76d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xb11e062e posix_lock_file +EXPORT_SYMBOL vmlinux 0xb11e65fe pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xb122d19d crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xb128c7ea pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13878d6 kernel_accept +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14be9fb skb_pull +EXPORT_SYMBOL vmlinux 0xb14c6177 input_open_device +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb168ac94 write_inode_now +EXPORT_SYMBOL vmlinux 0xb17a819a jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb19b3580 km_policy_expired +EXPORT_SYMBOL vmlinux 0xb19c483e inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0xb1a3afd8 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xb1a72024 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xb1ae8833 skb_trim +EXPORT_SYMBOL vmlinux 0xb1b67f00 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1d0c090 d_delete +EXPORT_SYMBOL vmlinux 0xb1d30feb __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e63e5f create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb1e8126c down_timeout +EXPORT_SYMBOL vmlinux 0xb1eb8907 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0xb21c992d __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xb227c1e4 udp_poll +EXPORT_SYMBOL vmlinux 0xb22c9522 sock_no_listen +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb2402d44 lock_rename +EXPORT_SYMBOL vmlinux 0xb257bcfc netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xb26fedd5 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c5c5b2 genphy_suspend +EXPORT_SYMBOL vmlinux 0xb2eca1bc mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xb2f31d57 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30bc7ae scsi_device_put +EXPORT_SYMBOL vmlinux 0xb30f1af7 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xb315cef4 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb31847f8 phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xb31a5652 param_get_ullong +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb328f121 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0xb3447ace netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xb35a44a9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb375303d phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xb381ff9e ida_destroy +EXPORT_SYMBOL vmlinux 0xb38beebf sync_file_get_fence +EXPORT_SYMBOL vmlinux 0xb3a7ff68 kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0xb3c139ae vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xb3d21f79 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb4159dce mark_info_dirty +EXPORT_SYMBOL vmlinux 0xb422ff88 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4461532 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xb4613282 dquot_disable +EXPORT_SYMBOL vmlinux 0xb4664df2 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0xb47c11e1 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xb487210c __nla_reserve +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb49c4652 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xb49c699d dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0xb4a3e439 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xb4c7a2a7 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xb4de3d80 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb506fad3 sock_wake_async +EXPORT_SYMBOL vmlinux 0xb50b8bdb md_write_inc +EXPORT_SYMBOL vmlinux 0xb52351b3 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb5257f49 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xb534f61f __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xb5688c5f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb5814175 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5931895 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a9c6d2 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b07a2d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5b9abfa tcp_conn_request +EXPORT_SYMBOL vmlinux 0xb5d3119d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xb5d74870 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xb5dfadee udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb602e44a pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xb60a0697 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xb6308446 __load_fpu_regs +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63ce383 page_readlink +EXPORT_SYMBOL vmlinux 0xb64dd10b wake_up_process +EXPORT_SYMBOL vmlinux 0xb6501948 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xb65ae8c7 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b7b3e blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb681e2fd param_get_ulong +EXPORT_SYMBOL vmlinux 0xb686f03b napi_gro_flush +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a78da3 passthru_features_check +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6bb7a1f jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6dfe9b1 tcf_classify +EXPORT_SYMBOL vmlinux 0xb6e3394d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f42579 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xb6f4dbfc ___ratelimit +EXPORT_SYMBOL vmlinux 0xb6fbe1cc locks_init_lock +EXPORT_SYMBOL vmlinux 0xb6fbeefe xxh64 +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70371c8 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xb7083cc2 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb7258aad seg6_push_hmac +EXPORT_SYMBOL vmlinux 0xb73bfa97 debug_register +EXPORT_SYMBOL vmlinux 0xb7574f41 input_set_capability +EXPORT_SYMBOL vmlinux 0xb76c2b34 import_iovec +EXPORT_SYMBOL vmlinux 0xb78700c3 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7b503f5 km_report +EXPORT_SYMBOL vmlinux 0xb7bad31e sock_i_ino +EXPORT_SYMBOL vmlinux 0xb7c0adca kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c88e61 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb7d47183 genphy_update_link +EXPORT_SYMBOL vmlinux 0xb7e23280 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xb7e4537e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb7ee2a2c diag26c +EXPORT_SYMBOL vmlinux 0xb7ef6ff4 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xb8165152 stop_tty +EXPORT_SYMBOL vmlinux 0xb8184a80 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xb81d2bfb init_special_inode +EXPORT_SYMBOL vmlinux 0xb827d331 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0xb828fdeb kobject_get +EXPORT_SYMBOL vmlinux 0xb82f732b neigh_app_ns +EXPORT_SYMBOL vmlinux 0xb84c8987 d_obtain_root +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86a6bdc genlmsg_put +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8bfed5d inet_put_port +EXPORT_SYMBOL vmlinux 0xb8c4df6a filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xb8e97783 proc_douintvec +EXPORT_SYMBOL vmlinux 0xb8ebce14 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb8efc9a0 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xb8f12e05 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb9167093 tty_port_open +EXPORT_SYMBOL vmlinux 0xb91e0573 release_sock +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb93ed2b1 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xb93f2112 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94f16ab nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xb94f4d5d __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb99328d5 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xb9b3cc6a vfs_fsync +EXPORT_SYMBOL vmlinux 0xb9b5b224 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb9c16818 dentry_create +EXPORT_SYMBOL vmlinux 0xb9cf8940 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f378d3 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xba001f54 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xba02e923 register_service_level +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba087bd6 nla_reserve +EXPORT_SYMBOL vmlinux 0xba0d0425 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xba1e6d8b ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0xba248b6a kern_unmount_array +EXPORT_SYMBOL vmlinux 0xba24b6c3 kthread_stop +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba51ef50 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba58caca sock_sendmsg +EXPORT_SYMBOL vmlinux 0xba6932ec debug_unregister_view +EXPORT_SYMBOL vmlinux 0xba6c7b4f jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xba811d82 page_get_link +EXPORT_SYMBOL vmlinux 0xba8414b9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xba857fcb tso_build_hdr +EXPORT_SYMBOL vmlinux 0xba8917dd pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xba9b3ffc vfs_mkdir +EXPORT_SYMBOL vmlinux 0xbac0f31a vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xbacd9862 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xbafb3072 napi_disable +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb150e95 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xbb24a44c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb3e7461 ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0xbb42daba pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xbb5934be __wake_up_bit +EXPORT_SYMBOL vmlinux 0xbb7a013b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xbb7ac05f from_kgid_munged +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbba0a6ca tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xbbb228c8 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xbbb9a657 netdev_update_features +EXPORT_SYMBOL vmlinux 0xbbcf45d6 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbbdccfbe tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xbbdfea70 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xbbe0987b fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xbc1e7461 fc_mount +EXPORT_SYMBOL vmlinux 0xbc29d91f jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xbc3499ef gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xbc3e414b dev_get_iflink +EXPORT_SYMBOL vmlinux 0xbc53087c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xbc5e01f4 phy_validate_pause +EXPORT_SYMBOL vmlinux 0xbc76641a __SCK__tp_func_s390_cio_ssch +EXPORT_SYMBOL vmlinux 0xbc7b6ad3 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xbc88c9d5 noop_llseek +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcbb6a30 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xbcdadc5b __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xbd13d9b5 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0xbd183f61 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xbd2c97e4 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xbd348d1b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xbd418e30 param_ops_bint +EXPORT_SYMBOL vmlinux 0xbd5601bf md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbd5602cb folio_end_writeback +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd71ec08 inode_init_always +EXPORT_SYMBOL vmlinux 0xbd802c05 __neigh_create +EXPORT_SYMBOL vmlinux 0xbdc655c8 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xbdd56ea0 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xbde74c28 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xbe0b0cfc file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe12c301 dquot_operations +EXPORT_SYMBOL vmlinux 0xbe13b036 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xbe25fc23 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xbe26703d filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe5a2284 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe5e44a8 tty_devnum +EXPORT_SYMBOL vmlinux 0xbe7c391b md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xbeb3a7b3 ip_frag_init +EXPORT_SYMBOL vmlinux 0xbeb48340 timestamp_truncate +EXPORT_SYMBOL vmlinux 0xbece3719 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef53f33 scnprintf +EXPORT_SYMBOL vmlinux 0xbeffaf9a phy_device_remove +EXPORT_SYMBOL vmlinux 0xbf30cceb scsi_host_put +EXPORT_SYMBOL vmlinux 0xbf3639e2 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0xbf3b6571 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xbf49aafa percpu_counter_set +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5a5d2f netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0xbf77d18a scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbf8cd61b md_bitmap_free +EXPORT_SYMBOL vmlinux 0xbf9a5a1e __init_rwsem +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9ce5e4 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xbfaf55e8 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xbfb05716 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfcc3d24 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xbfcd2e65 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xbfd9f046 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xbfdee9e7 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbff403b7 inet_bind +EXPORT_SYMBOL vmlinux 0xc03bb1db tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xc05338e8 sk_wait_data +EXPORT_SYMBOL vmlinux 0xc0584049 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xc06fa7e0 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0937095 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xc0954478 nla_put +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b4d02b tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xc0bfb9d4 VMALLOC_END +EXPORT_SYMBOL vmlinux 0xc0cc8d9a rt_dst_clone +EXPORT_SYMBOL vmlinux 0xc0da454b submit_bio_wait +EXPORT_SYMBOL vmlinux 0xc0e5e4e6 itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xc0fd237c xxh32 +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc100c64e pcie_set_mps +EXPORT_SYMBOL vmlinux 0xc1041093 param_get_string +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc120caa6 diag_stat_inc +EXPORT_SYMBOL vmlinux 0xc1299a89 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xc1394dbd mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1603bdd iget5_locked +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc174dab5 set_page_dirty +EXPORT_SYMBOL vmlinux 0xc1848a02 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xc1c8f8be raw3270_activate_view +EXPORT_SYMBOL vmlinux 0xc1d58333 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d95c35 udp_seq_start +EXPORT_SYMBOL vmlinux 0xc1e3a931 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xc1e70aae phy_find_first +EXPORT_SYMBOL vmlinux 0xc1f4319a sock_alloc_file +EXPORT_SYMBOL vmlinux 0xc1f5d97b xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xc2055eaa pmdp_xchg_lazy +EXPORT_SYMBOL vmlinux 0xc211916f seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0xc241d419 is_subdir +EXPORT_SYMBOL vmlinux 0xc250590f strnlen_user +EXPORT_SYMBOL vmlinux 0xc2586109 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xc27ee138 __SCK__tp_func_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xc28a21a7 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xc29a1878 abort_creds +EXPORT_SYMBOL vmlinux 0xc2c1080d hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xc2c5a5ee nf_log_unset +EXPORT_SYMBOL vmlinux 0xc2d222d2 block_dirty_folio +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f16bb3 PageMovable +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30a5201 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xc31111eb pci_find_capability +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3566c36 netdev_printk +EXPORT_SYMBOL vmlinux 0xc369c775 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc38d8809 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc39e0090 vm_map_ram +EXPORT_SYMBOL vmlinux 0xc3a90f31 vfs_setpos +EXPORT_SYMBOL vmlinux 0xc3ad6613 set_create_files_as +EXPORT_SYMBOL vmlinux 0xc3ba245e phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xc3c69c1b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc3e45457 down_killable +EXPORT_SYMBOL vmlinux 0xc3f3c3b4 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xc420a7fe key_move +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc433a088 __read_overflow2_field +EXPORT_SYMBOL vmlinux 0xc441e54d seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xc45efd85 inet_release +EXPORT_SYMBOL vmlinux 0xc4651a70 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next +EXPORT_SYMBOL vmlinux 0xc46bf411 request_key_rcu +EXPORT_SYMBOL vmlinux 0xc475471a raw3270_del_view +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4797a54 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc488ae04 dentry_open +EXPORT_SYMBOL vmlinux 0xc48a05e9 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xc49bc16b phy_aneg_done +EXPORT_SYMBOL vmlinux 0xc4a83cc3 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xc4ab6b9b xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xc4e85594 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc4ee3383 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xc4f49afa d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xc5138b96 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xc52814eb tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xc5490f1a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xc54e04f9 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xc5554fa5 fb_class +EXPORT_SYMBOL vmlinux 0xc5579fc7 iterate_fd +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57b8611 diag210 +EXPORT_SYMBOL vmlinux 0xc585fe78 free_netdev +EXPORT_SYMBOL vmlinux 0xc586d03b dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5b0d06f lockref_put_return +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5b98a63 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc5bcfa88 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc5c8b56c raw_copy_to_user +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fcda45 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61996f9 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc622ea97 stsi +EXPORT_SYMBOL vmlinux 0xc62ab2bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc64f83f0 dst_init +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc6623fec mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc68ddbeb inode_insert5 +EXPORT_SYMBOL vmlinux 0xc68e1ffa scsi_remove_target +EXPORT_SYMBOL vmlinux 0xc69c4e46 input_match_device_id +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cefc72 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f8989b airq_iv_release +EXPORT_SYMBOL vmlinux 0xc6fb460f __bio_advance +EXPORT_SYMBOL vmlinux 0xc702ac76 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc70f2623 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xc71816f2 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xc72f7279 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xc768c5c9 dquot_initialize +EXPORT_SYMBOL vmlinux 0xc774a491 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc77cffbc pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7907778 phy_error +EXPORT_SYMBOL vmlinux 0xc79f207e revert_creds +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a268fc irq_domain_set_info +EXPORT_SYMBOL vmlinux 0xc7a443c1 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c82acf ccw_driver_unregister +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d2cf1a kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xc7d6aace inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc7e19b0a inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xc7f78b47 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xc802ddd3 finish_swait +EXPORT_SYMBOL vmlinux 0xc807e20d skb_copy_expand +EXPORT_SYMBOL vmlinux 0xc80c4623 dm_io +EXPORT_SYMBOL vmlinux 0xc8106878 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0xc814bb32 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xc81deeec tty_register_device +EXPORT_SYMBOL vmlinux 0xc8254c32 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc82edad3 skb_clone +EXPORT_SYMBOL vmlinux 0xc836cb48 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc840d1c9 inet_getname +EXPORT_SYMBOL vmlinux 0xc8463bae xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84fddf6 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87913d1 proc_remove +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a8eddc folio_mapped +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8d01679 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xc8dfcf90 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xc8e8062c scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc8f8ab83 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xc8fd1ca0 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xc915a0a8 km_query +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc925e0c2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc94fdebf __genradix_ptr +EXPORT_SYMBOL vmlinux 0xc95084f7 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xc9590b68 input_copy_abs +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97d1648 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xc97f0a42 zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0xc9a63f40 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xc9aac458 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9eabc27 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xc9eb796f __ip_options_compile +EXPORT_SYMBOL vmlinux 0xc9ffd9e8 bio_endio +EXPORT_SYMBOL vmlinux 0xca0fcac0 skb_eth_push +EXPORT_SYMBOL vmlinux 0xca207921 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca46d93c user_path_at_empty +EXPORT_SYMBOL vmlinux 0xca5fd3de tty_kref_put +EXPORT_SYMBOL vmlinux 0xca827edf skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca94fd75 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xca96bec6 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xca994233 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xcaa324f4 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xcaa4a66a configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xcaaa9c18 netif_skb_features +EXPORT_SYMBOL vmlinux 0xcab324bd neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xcab3584b seq_path +EXPORT_SYMBOL vmlinux 0xcad3e9eb simple_get_link +EXPORT_SYMBOL vmlinux 0xcae3a07a sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xcae58700 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xcae9b425 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xcaf54d94 iptun_encaps +EXPORT_SYMBOL vmlinux 0xcb00e353 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xcb046add tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xcb16c352 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xcb194b82 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xcb196b9d __vcalloc +EXPORT_SYMBOL vmlinux 0xcb1c4820 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xcb2b41ea security_sb_remount +EXPORT_SYMBOL vmlinux 0xcb34a6e7 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3c24dd kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xcb4b5fde tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xcb5dd401 kbd_alloc +EXPORT_SYMBOL vmlinux 0xcb65c4c4 md_reload_sb +EXPORT_SYMBOL vmlinux 0xcb75d267 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xcb9ec58e page_symlink +EXPORT_SYMBOL vmlinux 0xcb9fd535 param_get_bool +EXPORT_SYMBOL vmlinux 0xcba6550b __SCK__tp_func_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd5f4e1 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xcbdcfd91 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xcbdd28f7 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xcbdd85a3 sk_free +EXPORT_SYMBOL vmlinux 0xcbe4689e kern_path +EXPORT_SYMBOL vmlinux 0xcc0de7e6 __register_chrdev +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc35fb05 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc499cdb skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xcc4f31e8 vfs_link +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc5ecef3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcc66ef01 _dev_notice +EXPORT_SYMBOL vmlinux 0xcc6dd67e generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xcc87a5ee blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xcc89946c generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xcc8c2438 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xcc9feab8 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xccb06124 bio_split +EXPORT_SYMBOL vmlinux 0xccb491e8 bsearch +EXPORT_SYMBOL vmlinux 0xccce79fb tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccdff4f2 tty_name +EXPORT_SYMBOL vmlinux 0xcce603d6 path_get +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 0xcd1eca4c pci_get_subsys +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3c86fc ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0xcd5d0878 dm_put_device +EXPORT_SYMBOL vmlinux 0xcd5f5231 d_path +EXPORT_SYMBOL vmlinux 0xcd683f9a __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xcd6d0281 lookup_one +EXPORT_SYMBOL vmlinux 0xcd810b30 ilookup5 +EXPORT_SYMBOL vmlinux 0xcd9d7a3d release_pages +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc44b43 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xcdce3ca4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xcddcdbf5 __f_setown +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce05e61b ap_cancel_message +EXPORT_SYMBOL vmlinux 0xce0c1f34 dfltcc_deflate +EXPORT_SYMBOL vmlinux 0xce22bca9 dev_deactivate +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2f8b65 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xce340806 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xce371e14 iput +EXPORT_SYMBOL vmlinux 0xce42f1ce hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xce45063b has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xce491449 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xce4a091b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce595ea2 pci_enable_device +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f5e23 blk_get_queue +EXPORT_SYMBOL vmlinux 0xce5fe0e0 mount_subtree +EXPORT_SYMBOL vmlinux 0xce6d9116 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xce8b41eb mem_section +EXPORT_SYMBOL vmlinux 0xce8f4cde __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0xcea0ac31 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcebe3bd9 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xcec321ea dqput +EXPORT_SYMBOL vmlinux 0xcece984c debug_register_mode +EXPORT_SYMBOL vmlinux 0xced1bc7c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xcf06a434 genphy_read_status +EXPORT_SYMBOL vmlinux 0xcf1370c1 end_page_writeback +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf3cbeb0 kernel_connect +EXPORT_SYMBOL vmlinux 0xcf4d66a9 ap_get_qdev +EXPORT_SYMBOL vmlinux 0xcf64b0d5 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xcf6a576c dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xcf8cd6b3 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0xcf8f3b49 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfba080c __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0xcfbc755a ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xcfcd0fb2 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xcfdba002 mdio_device_create +EXPORT_SYMBOL vmlinux 0xcfe432b7 skb_tx_error +EXPORT_SYMBOL vmlinux 0xcff047f9 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xd013e15e _dev_info +EXPORT_SYMBOL vmlinux 0xd01da124 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xd0212ea1 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xd03d7920 dst_dev_put +EXPORT_SYMBOL vmlinux 0xd048536d sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd053c405 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06e2399 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0780be1 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd081b3bf tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xd0913425 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd0a0c56a d_set_d_op +EXPORT_SYMBOL vmlinux 0xd0cc8306 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd0f42e81 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xd0fe572a generic_write_end +EXPORT_SYMBOL vmlinux 0xd10a5d58 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xd10c0f60 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xd10e8f6d blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xd11bac17 check_zeroed_user +EXPORT_SYMBOL vmlinux 0xd133136a ns_capable +EXPORT_SYMBOL vmlinux 0xd14d5e65 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xd1558ba7 sock_no_bind +EXPORT_SYMBOL vmlinux 0xd16fdf9b tcp_prot +EXPORT_SYMBOL vmlinux 0xd17d2071 d_find_alias +EXPORT_SYMBOL vmlinux 0xd17de455 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0xd187b791 security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0xd18e6c35 sock_alloc +EXPORT_SYMBOL vmlinux 0xd192612e unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd19ed1bf napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd1b4b419 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0xd1be6a0c __netif_napi_del +EXPORT_SYMBOL vmlinux 0xd1c4b41a _dev_crit +EXPORT_SYMBOL vmlinux 0xd1d59bd5 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xd1d612c5 fb_get_mode +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dcda0b set_security_override +EXPORT_SYMBOL vmlinux 0xd1f6bdc9 padata_free +EXPORT_SYMBOL vmlinux 0xd209e848 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0xd20b9556 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xd213b488 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xd21b1b17 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xd21e0693 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0xd2260096 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0xd2504a8c arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xd2510a63 up_write +EXPORT_SYMBOL vmlinux 0xd256d335 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd2b3d9a2 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xd2c6ccdc phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xd2d17314 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e38339 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd2e589c8 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xd2ec3f87 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xd31e2c3b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xd31e91a4 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xd325654f bio_kmalloc +EXPORT_SYMBOL vmlinux 0xd32c0059 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xd33ba3ec register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xd350d142 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xd353b020 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd372e5cb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xd3751daa kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd385cb7c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xd385e903 dquot_release +EXPORT_SYMBOL vmlinux 0xd39fc2ec skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3cf1c01 down_write +EXPORT_SYMBOL vmlinux 0xd3d089e2 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xd3d7600e ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd3e26a9d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xd3f7b2f7 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xd405a725 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd411ff79 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd419d2d6 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xd44fb4ea blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xd4807b15 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xd4850cae xfrm_state_update +EXPORT_SYMBOL vmlinux 0xd48f69c8 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd496c918 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd4bac8c5 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c4d400 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xd4d756da skb_queue_head +EXPORT_SYMBOL vmlinux 0xd4d7e77f security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xd4db06dd scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xd4e6665f __mdiobus_register +EXPORT_SYMBOL vmlinux 0xd4ede57d pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd5074e6f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xd50eac87 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd524f8a9 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5268973 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd52ceb93 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xd5401417 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd566933c up +EXPORT_SYMBOL vmlinux 0xd573d021 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xd588480a bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xd591bc07 sk_net_capable +EXPORT_SYMBOL vmlinux 0xd5ac76f8 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5bfa457 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd5db6f3a vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd5e90454 ap_domain_index +EXPORT_SYMBOL vmlinux 0xd5fd3aa8 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xd5fdbe58 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd60c6f4d page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xd6139243 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xd62a1b46 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd63bd6f9 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xd63dff2f textsearch_register +EXPORT_SYMBOL vmlinux 0xd64426b5 __traceiter_s390_cio_hsch +EXPORT_SYMBOL vmlinux 0xd6572be1 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6a53c42 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xd6b1e29c do_SAK +EXPORT_SYMBOL vmlinux 0xd6bf3f5d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0xd6c49c94 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd704bdc6 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd7170780 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xd72c4b74 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd73d34e0 unregister_external_irq +EXPORT_SYMBOL vmlinux 0xd74167d4 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd74478f1 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd7489b05 ap_send_config_uevent +EXPORT_SYMBOL vmlinux 0xd74d6864 raw3270_request_add_data +EXPORT_SYMBOL vmlinux 0xd77dc2f4 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd79de900 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xd7a71201 dev_get_flags +EXPORT_SYMBOL vmlinux 0xd7bb0cce tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xd7bf8f11 build_skb +EXPORT_SYMBOL vmlinux 0xd7d03d02 module_layout +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 0xd7ee2742 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xd8199303 __d_drop +EXPORT_SYMBOL vmlinux 0xd81bb5c7 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xd827fff3 memremap +EXPORT_SYMBOL vmlinux 0xd82d3f28 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xd84f8e4a genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xd853dc7b d_lookup +EXPORT_SYMBOL vmlinux 0xd863e661 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xd880d158 rtnl_notify +EXPORT_SYMBOL vmlinux 0xd8882a68 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xd88dbbf4 refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89fb084 block_write_end +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b2c4a3 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8d33d18 param_set_ulong +EXPORT_SYMBOL vmlinux 0xd8d7ce88 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd8e41cc6 utf8_strncmp +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd8fea321 __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd91f861f kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd924470a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xd92c2afb zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xd93cf9fe phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xd93dd3c3 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd9454bbc raw3270_reset +EXPORT_SYMBOL vmlinux 0xd96de8cb __sysfs_match_string +EXPORT_SYMBOL vmlinux 0xd978d7e7 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd991353d md_check_recovery +EXPORT_SYMBOL vmlinux 0xd994e3c1 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xd999f881 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd9b3075a from_kuid_munged +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9b7274b inet6_bind +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 0xd9f355f4 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xda22a9a7 skb_copy +EXPORT_SYMBOL vmlinux 0xda297343 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xda2bec4e skb_store_bits +EXPORT_SYMBOL vmlinux 0xda3218b4 folio_alloc +EXPORT_SYMBOL vmlinux 0xda3c0ac3 inet6_release +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda41878f simple_unlink +EXPORT_SYMBOL vmlinux 0xda6fa05c _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xda704a11 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xda7ab042 class3270 +EXPORT_SYMBOL vmlinux 0xda88c7eb xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xda8eb740 kbd_free +EXPORT_SYMBOL vmlinux 0xda990b0e insert_inode_locked +EXPORT_SYMBOL vmlinux 0xdaa8ad1a param_set_invbool +EXPORT_SYMBOL vmlinux 0xdaadf55d inet_listen +EXPORT_SYMBOL vmlinux 0xdab00e4e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdae79268 sock_i_uid +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdb001965 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb2ba08d __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xdb395dcd __pagevec_release +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb91c605 unlock_buffer +EXPORT_SYMBOL vmlinux 0xdb95d231 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xdb981063 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xdbbae951 request_firmware +EXPORT_SYMBOL vmlinux 0xdbcfcf57 input_setup_polling +EXPORT_SYMBOL vmlinux 0xdbdd0696 seq_file_path +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe0d07e invalidate_disk +EXPORT_SYMBOL vmlinux 0xdbe6ae85 dst_alloc +EXPORT_SYMBOL vmlinux 0xdbf29fef simple_transaction_read +EXPORT_SYMBOL vmlinux 0xdc02dfc3 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc74a47c mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xdc79940e mntput +EXPORT_SYMBOL vmlinux 0xdc884b7e starget_for_each_device +EXPORT_SYMBOL vmlinux 0xdc88d7cf ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xdc8dec3d security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0xdc96f398 __SCK__tp_func_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xdca4b433 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xdca6ff93 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xdcacad7b jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xdcae5d25 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xdcb0a839 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xdcc9b1b8 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xdcd0315a key_payload_reserve +EXPORT_SYMBOL vmlinux 0xdcd5ca19 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xdcea201e sock_bind_add +EXPORT_SYMBOL vmlinux 0xdcee6131 __next_node_in +EXPORT_SYMBOL vmlinux 0xdcf70e48 seq_write +EXPORT_SYMBOL vmlinux 0xdcf84646 sort_r +EXPORT_SYMBOL vmlinux 0xdd03f23c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xdd20efdd xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xdd276d50 scsi_add_device +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3318fa inode_permission +EXPORT_SYMBOL vmlinux 0xdd3b6eb5 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdd40b871 may_umount_tree +EXPORT_SYMBOL vmlinux 0xdd53565f seq_dentry +EXPORT_SYMBOL vmlinux 0xdd73d507 vma_set_file +EXPORT_SYMBOL vmlinux 0xdd7d6bb7 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdda1492e __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xdda8244d tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0xddbfcd19 param_set_hexint +EXPORT_SYMBOL vmlinux 0xddc1159d nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xddf73920 mpage_read_folio +EXPORT_SYMBOL vmlinux 0xddf78a13 vfs_mknod +EXPORT_SYMBOL vmlinux 0xddfe2f86 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde0d1e31 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xde1371ce radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde5153f1 pcim_enable_device +EXPORT_SYMBOL vmlinux 0xde6e6a38 udp_pre_connect +EXPORT_SYMBOL vmlinux 0xde8ae6cb nf_log_packet +EXPORT_SYMBOL vmlinux 0xde8b246b netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xde9a358c filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xdea34eec __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xdeb0c044 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xdeb70a96 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xdebb8a67 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xdecb4b72 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdeda1c74 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xdeda2ae2 tcw_get_data +EXPORT_SYMBOL vmlinux 0xdef0d558 logfc +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef84f9f radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xdf0b6149 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xdf179d03 vfs_llseek +EXPORT_SYMBOL vmlinux 0xdf1a09df md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xdf1ad5cd security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xdf1bacae vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xdf28318b scm_fp_dup +EXPORT_SYMBOL vmlinux 0xdf2abf1e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf552ff6 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xdf5c3053 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xdf6175c2 param_ops_charp +EXPORT_SYMBOL vmlinux 0xdf6691d1 dev_close +EXPORT_SYMBOL vmlinux 0xdf6d476e __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xdf6eedfb unregister_cdrom +EXPORT_SYMBOL vmlinux 0xdf84a749 dma_map_sg_attrs +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 0xdfbad7ba bpf_link_put +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcf65d8 fs_bio_set +EXPORT_SYMBOL vmlinux 0xdfd1e06c finish_open +EXPORT_SYMBOL vmlinux 0xdfe3f247 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xdfeb913b sk_common_release +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0120a3c clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xe01ae6d4 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0xe03e39be blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe043a2b5 inet_add_offload +EXPORT_SYMBOL vmlinux 0xe056e375 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe0678f1c pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xe068a91c gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe076df39 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xe07eeea4 init_net +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0a84431 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0e9bd75 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xe0f11d08 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xe1017ab9 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xe10595c9 __tracepoint_s390_cio_tpi +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe124a899 tccb_add_dcw +EXPORT_SYMBOL vmlinux 0xe13af26f sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0xe1580129 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0xe1643e7f simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe16e119e scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xe17263e2 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe196b6ef fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xe1cee888 devm_iounmap +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1df0b8d bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xe1e764ae __check_sticky +EXPORT_SYMBOL vmlinux 0xe20aead3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe215ea29 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe21ce541 follow_down +EXPORT_SYMBOL vmlinux 0xe21ea39f rt6_lookup +EXPORT_SYMBOL vmlinux 0xe227fdef nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xe22ff281 filemap_flush +EXPORT_SYMBOL vmlinux 0xe2314c09 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe242ecfe mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xe25024a4 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe254f4f8 xa_get_mark +EXPORT_SYMBOL vmlinux 0xe257cd6e dquot_acquire +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27d87a4 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0xe2806211 proc_create_single_data +EXPORT_SYMBOL vmlinux 0xe28ca281 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xe29d2d02 __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0xe2b36545 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xe2b52182 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe2c24f3d generic_update_time +EXPORT_SYMBOL vmlinux 0xe2ce9eaa sget_fc +EXPORT_SYMBOL vmlinux 0xe2cf2862 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2daca76 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xe2e391ad nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xe2f565dc blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xe30be315 hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe30f871e xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xe323ced7 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xe328acd6 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe3357e2a blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe3423b36 ap_queue_init_state +EXPORT_SYMBOL vmlinux 0xe35fb609 kmemdup +EXPORT_SYMBOL vmlinux 0xe3601b4e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe364ca0d ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xe375ee1a netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xe3763ac7 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe3816fa4 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe386feff __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f72dac kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe3feba56 tasklet_unlock_spin_wait +EXPORT_SYMBOL vmlinux 0xe3febed5 is_bad_inode +EXPORT_SYMBOL vmlinux 0xe3ff2c41 get_random_u64 +EXPORT_SYMBOL vmlinux 0xe400cb76 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe417d456 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0xe41d0d79 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe43d9ab2 slash_name +EXPORT_SYMBOL vmlinux 0xe486a466 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xe49a7083 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xe49c5da0 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xe49e680a __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xe4df9aec hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xe4e596dc pcim_iomap +EXPORT_SYMBOL vmlinux 0xe5032177 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe5085718 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xe5094832 page_table_allocate_pgste +EXPORT_SYMBOL vmlinux 0xe5225e7d proto_register +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe524e3e2 bcmp +EXPORT_SYMBOL vmlinux 0xe5257a7a napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe555c7ab radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xe56412d4 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xe5652e83 sie64a +EXPORT_SYMBOL vmlinux 0xe56b0d0f stsch +EXPORT_SYMBOL vmlinux 0xe574004f pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58b8263 unregister_service_level +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5a56ecd idr_get_next +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6224f00 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xe66ac127 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xe67356e3 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xe67efc82 dst_release +EXPORT_SYMBOL vmlinux 0xe68180fa netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xe690fac3 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xe69c3b94 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d55e27 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xe6e3f9a1 configfs_register_group +EXPORT_SYMBOL vmlinux 0xe6eb60e3 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6fd09bd xattr_full_name +EXPORT_SYMBOL vmlinux 0xe7077fa2 dump_align +EXPORT_SYMBOL vmlinux 0xe7097721 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe70a2ae7 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe70e184a xa_store +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe71a1bd3 inode_init_owner +EXPORT_SYMBOL vmlinux 0xe71e0442 dump_emit +EXPORT_SYMBOL vmlinux 0xe71e7861 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xe720a84f devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xe726687e page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xe73c29ea d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe73f0ce3 skb_dump +EXPORT_SYMBOL vmlinux 0xe74a036a mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe752e8e1 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe755ced4 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xe766b2ed init_pseudo +EXPORT_SYMBOL vmlinux 0xe76e486f nf_log_set +EXPORT_SYMBOL vmlinux 0xe777e808 sclp_ap_configure +EXPORT_SYMBOL vmlinux 0xe796ecac __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe796f19a hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe798236d jiffies +EXPORT_SYMBOL vmlinux 0xe7c18ecf sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe7cd0be7 thread_group_exited +EXPORT_SYMBOL vmlinux 0xe7d0036d forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e17ce0 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xe7f42a7c pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xe816f089 brioctl_set +EXPORT_SYMBOL vmlinux 0xe8332b4b __tracepoint_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xe8397ce6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xe8485e2c sock_wmalloc +EXPORT_SYMBOL vmlinux 0xe84c243f scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xe85c84ef xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xe873f1fd dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe87bb254 register_md_personality +EXPORT_SYMBOL vmlinux 0xe8a0a36f remove_proc_entry +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8ba125d kmemdup_nul +EXPORT_SYMBOL vmlinux 0xe8c50496 should_remove_suid +EXPORT_SYMBOL vmlinux 0xe8dba658 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xe8f72488 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xe9020709 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe947b2f0 __tracepoint_s390_cio_xsch +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe963570b take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xe96a2d85 neigh_xmit +EXPORT_SYMBOL vmlinux 0xe97fd85a crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xe994130a __xa_store +EXPORT_SYMBOL vmlinux 0xe995eee3 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xe9c58a09 tcw_finalize +EXPORT_SYMBOL vmlinux 0xe9d9c173 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe9dc1181 drop_nlink +EXPORT_SYMBOL vmlinux 0xe9f6b683 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fcb616 mempool_alloc +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea544bef inode_io_list_del +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea80371d fifo_set_limit +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xea8ce2ce pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xeaa2070e ptep_xchg_lazy +EXPORT_SYMBOL vmlinux 0xeaa44602 cad_pid +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xead910fe xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xeada100a unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0xeae3dfc3 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xeaeaf386 submit_bh +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb19be65 sync_file_create +EXPORT_SYMBOL vmlinux 0xeb1b1e55 vmap +EXPORT_SYMBOL vmlinux 0xeb1d05a9 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xeb2d469c d_instantiate_new +EXPORT_SYMBOL vmlinux 0xeb3318d2 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb65573b ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0xeb9dc55b ap_owned_by_def_drv +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebb29f02 simple_link +EXPORT_SYMBOL vmlinux 0xebb3345f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xebb9be2a icmp6_send +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebcb8bdc kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xebd01f76 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xebd96d7a tty_lock +EXPORT_SYMBOL vmlinux 0xebdf0a55 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xebf4384e sock_kmalloc +EXPORT_SYMBOL vmlinux 0xebf9dc95 kill_litter_super +EXPORT_SYMBOL vmlinux 0xec1c635b sock_no_mmap +EXPORT_SYMBOL vmlinux 0xec2c78de zpool_register_driver +EXPORT_SYMBOL vmlinux 0xec48278f ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0xec739745 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xec9d7c8a __traceiter_s390_diagnose +EXPORT_SYMBOL vmlinux 0xec9ea737 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xeca8156b single_release +EXPORT_SYMBOL vmlinux 0xeca8a562 proc_create_data +EXPORT_SYMBOL vmlinux 0xece34cce phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8c1a4 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xed1ec9ec mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xed361b90 dup_iter +EXPORT_SYMBOL vmlinux 0xed3f5cf8 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xed4a19d5 ethtool_notify +EXPORT_SYMBOL vmlinux 0xed511df6 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xed5483db __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed765bc3 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xed937111 nf_log_register +EXPORT_SYMBOL vmlinux 0xed9af2db flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedfc1dae node_data +EXPORT_SYMBOL vmlinux 0xedfc98fc pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xee08cada iucv_message_purge +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3f9f6b user_path_create +EXPORT_SYMBOL vmlinux 0xee3ff4a8 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xee4de4fb __traceiter_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xee5011f6 get_tree_single +EXPORT_SYMBOL vmlinux 0xee52ab94 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xee6653ec dquot_quota_on +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 0xeeb62568 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xeece81c5 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0xeed578a7 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xeed9bdc7 peernet2id +EXPORT_SYMBOL vmlinux 0xeedff578 __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xeee58ab2 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xeeff71b2 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xef26fec9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef70cc51 consume_skb +EXPORT_SYMBOL vmlinux 0xef8014bc devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xef8fe388 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xef90b20e netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0xef9ed63a nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb2c93e blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefd9531d alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xefe6e5cb mmput_async +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff7ce12 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01eca9e pci_assign_resource +EXPORT_SYMBOL vmlinux 0xf023a2d9 ap_flush_queue +EXPORT_SYMBOL vmlinux 0xf025fa05 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf05c64f8 iucv_path_connect +EXPORT_SYMBOL vmlinux 0xf0629215 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf06482e0 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xf076a53a pci_select_bars +EXPORT_SYMBOL vmlinux 0xf0887fec ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0xf08b681c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0b1ee90 ccw_device_dma_free +EXPORT_SYMBOL vmlinux 0xf0dc7503 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xf0ea2318 __mutex_init +EXPORT_SYMBOL vmlinux 0xf0fbd2b7 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xf0fc9aa8 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0xf114415a tty_register_driver +EXPORT_SYMBOL vmlinux 0xf1173ba7 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf130ee84 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf14e8993 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf1690224 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0xf16d0e67 param_set_charp +EXPORT_SYMBOL vmlinux 0xf16e691b __scm_send +EXPORT_SYMBOL vmlinux 0xf1808e2b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf1924634 mntget +EXPORT_SYMBOL vmlinux 0xf19565ea __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1adc6d2 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xf1af4346 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xf1b6f631 dump_skip_to +EXPORT_SYMBOL vmlinux 0xf1b79e7a shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xf1b96974 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf1c39720 sk_error_report +EXPORT_SYMBOL vmlinux 0xf1d3380d __post_watch_notification +EXPORT_SYMBOL vmlinux 0xf1d992eb radix_tree_delete +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e60989 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0xf1e78a37 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf225f82e dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2436778 register_fib_notifier +EXPORT_SYMBOL vmlinux 0xf244558c send_sig_info +EXPORT_SYMBOL vmlinux 0xf24d4fb7 page_pool_create +EXPORT_SYMBOL vmlinux 0xf258142c radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xf25ed853 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf2821efb blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xf2897a1d __folio_lock +EXPORT_SYMBOL vmlinux 0xf28cc424 arp_create +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf298f3b2 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xf2a364ca ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xf2ac47ef _copy_to_iter +EXPORT_SYMBOL vmlinux 0xf2ac839b phy_read_mmd +EXPORT_SYMBOL vmlinux 0xf2b25be7 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xf2be901c iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d7f434 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xf2e078a6 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f97ca1 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf312383d kernel_bind +EXPORT_SYMBOL vmlinux 0xf31c0d52 ioremap +EXPORT_SYMBOL vmlinux 0xf33621a5 __fput_sync +EXPORT_SYMBOL vmlinux 0xf33a9435 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0xf33ada6f dec_node_page_state +EXPORT_SYMBOL vmlinux 0xf34490b1 radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35829a2 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf35962ff fqdir_init +EXPORT_SYMBOL vmlinux 0xf364f822 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xf36a55ae proc_create +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3a27322 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xf3ac9bef pci_iomap_wc_range +EXPORT_SYMBOL vmlinux 0xf3b74f79 __iucv_message_send +EXPORT_SYMBOL vmlinux 0xf3ca733b hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xf3cd924d xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3f558a4 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xf40dde1d skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xf41e7b3f netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xf4234e39 fqdir_exit +EXPORT_SYMBOL vmlinux 0xf43725fb s390_arch_random_counter +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4543e9b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47d18dc ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf48ab693 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf4a66c9d user_revoke +EXPORT_SYMBOL vmlinux 0xf4bb992f inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf504eba1 dcache_readdir +EXPORT_SYMBOL vmlinux 0xf510832a poll_freewait +EXPORT_SYMBOL vmlinux 0xf536dad1 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5470009 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf55f2a40 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xf573e78d __vmalloc_array +EXPORT_SYMBOL vmlinux 0xf5c48efe vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xf5d8adf8 pci_set_master +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f4c1b4 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xf6006112 kbd_keycode +EXPORT_SYMBOL vmlinux 0xf60b05b3 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf617efad __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xf61f0929 ilookup +EXPORT_SYMBOL vmlinux 0xf62046de misc_register +EXPORT_SYMBOL vmlinux 0xf62941b7 dev_get_stats +EXPORT_SYMBOL vmlinux 0xf6409bd0 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf649885b tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xf651491e netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xf6584cdb single_open +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66ba91e dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6989f01 file_update_time +EXPORT_SYMBOL vmlinux 0xf6a43167 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xf6ab2e8e bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xf6c0b19a blk_queue_split +EXPORT_SYMBOL vmlinux 0xf6c3e4aa wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf6ce3c24 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xf6d0a4d9 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed9ce1 pci_release_region +EXPORT_SYMBOL vmlinux 0xf6ee0046 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xf6f48a49 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70a93b9 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0xf722ccf0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xf734668f get_tree_bdev +EXPORT_SYMBOL vmlinux 0xf7359186 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73dd271 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xf74300d7 arch_vcpu_is_preempted +EXPORT_SYMBOL vmlinux 0xf75d0e90 pps_register_source +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf778aced inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf78e6284 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xf79faab3 ip_send_check +EXPORT_SYMBOL vmlinux 0xf7a92ba8 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xf7a9a415 del_gendisk +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7dbdcc2 zstd_end_stream +EXPORT_SYMBOL vmlinux 0xf7dfcbde register_quota_format +EXPORT_SYMBOL vmlinux 0xf811149b inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf815ad54 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf819309a d_make_root +EXPORT_SYMBOL vmlinux 0xf81fd636 arch_spin_relax +EXPORT_SYMBOL vmlinux 0xf828f479 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xf82a0bf8 fput +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 0xf858b677 dquot_drop +EXPORT_SYMBOL vmlinux 0xf86ca0b5 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xf87cf874 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88ee513 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf8a2b380 make_kuid +EXPORT_SYMBOL vmlinux 0xf8ce4f61 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d87021 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf8dae2eb request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf8ec0080 put_fs_context +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8fd0e5e get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xf90268df dev_add_offload +EXPORT_SYMBOL vmlinux 0xf909bf68 seq_putc +EXPORT_SYMBOL vmlinux 0xf90c8784 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf934d3f0 napi_build_skb +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf947013a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf9656da9 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xf96a60d7 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0xf9899e7f unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf98d27ee remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf98ddbe5 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xf9918667 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xf9a06e0e ida_free +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9d447f9 ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0xf9d81b32 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf9d8e78b scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xf9deb4b7 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xf9fd4ce2 phy_resume +EXPORT_SYMBOL vmlinux 0xf9ff10a4 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa0d98ba jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xfa1c059a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xfa2d6246 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xfa35aba8 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xfa45db71 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xfa545a5c inet_del_protocol +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfb1fc22f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xfb2bc287 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb46c42a iov_iter_zero +EXPORT_SYMBOL vmlinux 0xfb482dd1 __traceiter_s390_cio_stsch +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb77dda7 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xfb7e0827 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfb8b6a5c simple_empty +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb94fb4 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc839c7 __block_write_begin +EXPORT_SYMBOL vmlinux 0xfbe399b6 dev_change_flags +EXPORT_SYMBOL vmlinux 0xfbe7dd34 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc46ce1a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xfc792624 dns_query +EXPORT_SYMBOL vmlinux 0xfc79f011 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xfc7e97a1 md_flush_request +EXPORT_SYMBOL vmlinux 0xfc943dcd inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xfcb11521 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xfcb4d28b __alloc_pages +EXPORT_SYMBOL vmlinux 0xfcbb2c1e mr_table_alloc +EXPORT_SYMBOL vmlinux 0xfcbc55f6 set_disk_ro +EXPORT_SYMBOL vmlinux 0xfcbf89c7 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfcc119bc sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xfcd0581c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcdb0455 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd40d809 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xfd53f4be kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xfd5a83cd __devm_release_region +EXPORT_SYMBOL vmlinux 0xfd619147 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xfd6df36e md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xfd70c07c dma_map_resource +EXPORT_SYMBOL vmlinux 0xfd73a244 param_ops_int +EXPORT_SYMBOL vmlinux 0xfd76f166 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xfd92ae58 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xfd9a9866 stfle_fac_list +EXPORT_SYMBOL vmlinux 0xfda63635 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xfdaf6b4f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xfdb1aa5d folio_mark_accessed +EXPORT_SYMBOL vmlinux 0xfdb7f6a9 finish_wait +EXPORT_SYMBOL vmlinux 0xfdbf3a6e key_invalidate +EXPORT_SYMBOL vmlinux 0xfdc0638f __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfdd8dec8 udp_set_csum +EXPORT_SYMBOL vmlinux 0xfddcd2c7 __kfree_skb +EXPORT_SYMBOL vmlinux 0xfdde363b lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0d3027 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xfe0febe6 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xfe29be4f ram_aops +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5a08f2 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xfe5bb91e skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe771463 __tracepoint_s390_cio_csch +EXPORT_SYMBOL vmlinux 0xfe7e69e5 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xfe8aef1a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xfe8bca3b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xfe9b7b9b generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xfe9d54a0 dquot_get_state +EXPORT_SYMBOL vmlinux 0xfea30a1a seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xfead0ae5 current_time +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfec6ee78 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xfecb6efb dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee759d8 clear_nlink +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1f0ae2 add_virt_timer +EXPORT_SYMBOL vmlinux 0xff287eba blk_put_queue +EXPORT_SYMBOL vmlinux 0xff461269 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xff5ef2db dev_load +EXPORT_SYMBOL vmlinux 0xff5f4ec9 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7ad1b5 krealloc +EXPORT_SYMBOL vmlinux 0xff7ec0ff dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0xff82bb50 get_watch_queue +EXPORT_SYMBOL vmlinux 0xff890e41 pci_irq_vector +EXPORT_SYMBOL vmlinux 0xff8b56a9 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xffa402ca fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xffa6005f devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xffaba0c3 framebuffer_release +EXPORT_SYMBOL vmlinux 0xffbf5a41 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xffc0237b skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xffc914ac __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffe30309 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xffe33617 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xffe4fe0f pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff0973a crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0x6ddce546 s390_sha_update +EXPORT_SYMBOL_GPL arch/s390/crypto/sha_common 0xfc1e0216 s390_sha_final +EXPORT_SYMBOL_GPL arch/s390/net/pnet 0x1d321d60 pnet_id_by_dev_port +EXPORT_SYMBOL_GPL crypto/af_alg 0x067f4a76 af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x071f7ebd af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x18c121fe af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x19f7e2db af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x30dc6798 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x31345759 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x45409e25 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f32d0b9 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x5828e8c6 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b216a99 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7de320ee af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x84b78091 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x9454598c af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xaf5c6543 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xc1c33f59 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc6523824 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf88b2ce af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xfc13ea75 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb2d7ef20 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1a0b3c4f async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x925f291f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe6bfb9e2 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xfa2d3c22 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00ef7802 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x02abcf5e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x25748dac async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7f36ad3c async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x99da69df async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcfeedea5 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe54dbdae async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x1aa21949 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe4e3ff33 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x20189fca cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x093c6054 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x2c489184 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3bbdb569 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x645d5e4a cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x66aa1d6f cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9e2dfa32 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x9fa2a83c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xbeb2bca4 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc2df2c13 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc6e3deca cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf8e42818 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xfbba5cef cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfc8e40bf cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x06ed00c3 crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0a48e038 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0b5a6cac crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x4f5af041 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x7c35fa18 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8193fbc6 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x91f3e25b crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x962d268d crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb0da01f8 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbc8a5b04 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc23a0511 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc5f8fbe2 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xce0277b6 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe1c0edbd crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xeab5dae2 crypto_finalize_kpp_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 0x12244644 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 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/twofish_common 0xce4624d9 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0x8a35b01e __regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i2c 0xcd7b69fe __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x63d36ef2 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x7684f443 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x37b317a6 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x47a9342f devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x498f8946 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5530f781 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57722c2e fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x65708337 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7b5442ef fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xba00ea2e fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc5334442 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc7f76a8e fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcb6d482b fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xda9c1675 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe92ad107 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x28cfdcc6 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x027b8f5f drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ce46c21 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4d20ef5a drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ece3cf0 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x75ef297d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d956b12 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa0f9db3b drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa3688da9 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd01b5097 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1dd56ad drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6a4f656 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf77f9f4e drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff790a8c drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x06835967 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x209bf2ba drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2e82cf49 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x44677b4a drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4515c5f5 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x452f7a76 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4f87750d drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x545b2704 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xe9d2aba3 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf94a70c5 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x03498da3 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x068e4784 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x161f7b19 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2faee4a8 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x37e35350 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x80050c42 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x84c0b415 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb53bf6c1 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5690f962 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x72eea047 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa55b4139 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xac4fe4ee intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb5cdb3fe intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xba905e4b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdffd7057 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe2d7c9b8 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf52b93c1 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x0685ac74 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x80a4f0dc intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x9e741cc3 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01951b16 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c9f31a9 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x543427dd stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x83be29c5 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x87aa2f69 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9caf95c5 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa96378e9 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb3ae956e stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe256fd78 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x16d233fc devm_i2c_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x1c4f3cef i2c_new_ancillary_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x21988580 i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x2e9d1a3f i2c_new_client_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x32891268 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x41d138b3 i2c_adapter_depth +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x61d2b0c2 i2c_new_scanned_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x6253511c i2c_get_device_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x7dd0dc76 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x87b30801 i2c_adapter_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0x9786e73b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xaa10ce6e i2c_match_id +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xab1fde7d devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc0ba8ba9 i2c_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc2266c41 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xc6c87dbc i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xcafedfcf i2c_recover_bus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe0f4258a i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xe3ab438f i2c_for_each_dev +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xf58935a5 i2c_bus_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-core 0xfaf099ba i2c_client_type +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0120df74 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x54d33331 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8e18d687 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xad731e9d i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1b8f88c6 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3646974f rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x457b26b7 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x662049a6 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x97621f9e rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xaa8b6023 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb36c09fa rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbe4d7b6d rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc3d30a4d rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd92f5431 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe74f4dc0 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf7bba35d rtrs_iu_post_send +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 0x13a3b690 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x15f3de09 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x16ea7222 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 0x2b485846 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3257d343 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3ab91973 __traceiter_bcache_btree_node_alloc_fail +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 0x473f8f74 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4822e462 __traceiter_bcache_btree_cache_cannibalize +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 0x5c226ebf __traceiter_bcache_read_retry +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 0x5ee2c33e __traceiter_bcache_gc_end +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 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 0x82b501e7 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8551e79f __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ab432b7 __traceiter_bcache_request_start +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 0x929d245c __traceiter_bcache_btree_node_compact +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 0xa5bb6589 __traceiter_bcache_bypass_congested +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 0xaca77196 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb021f607 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb0e885a1 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb3c47ef9 __traceiter_bcache_write +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 0xba559b90 __traceiter_bcache_request_end +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 0xc6996276 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4506261 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xe90231d1 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xea9d560c __traceiter_bcache_invalidate +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 0xfb422435 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfebea334 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xff0bb609 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c3b3e8d dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x188e99f1 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x31c4e51e dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x41a2e89c dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x4792646c dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x55a10eeb dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x595309a1 dm_bio_prison_alloc_cell_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 0x777c928c dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8c314476 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x96e81de6 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 0xb0591dca dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbfd4e40d dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc8325cb3 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf0945076 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf9a6d406 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcac46ef dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcfa08e2 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x260cf323 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +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 0x22455295 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3d5a4381 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 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 0xbe2f8f16 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf095d885 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 0x087e9f62 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x12ee2d02 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 0x54f1fab1 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 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa5ea02e0 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbf63805d dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe410a13b 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 0x00f5a3c8 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0c2cb7f7 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 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 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 0x91401317 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc3503d7f st_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x013ce7e8 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02a2d210 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04f1cad0 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05412fe8 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x078ec53f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0820a607 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a92511 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cefc247 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ed55454 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fceee8d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1283c2b9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13869058 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b39494 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17d081b8 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1e0427 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c640c82 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c805bbc mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2178e0c9 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23ee6472 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x244235d9 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29eaddfe mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ab7d6e3 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b8f4f58 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e89ea4f __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30412265 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32c0f8e8 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34dd0ccb mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3591cf33 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35dec247 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38388b15 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38d93dbd mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae897aa mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4212c94f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x483cb284 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x487feb3a mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x491e88c1 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49bebe5b mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49f2647e mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c66945c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc0dd5d mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e199818 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x545bb61b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b99d4f8 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c86c645 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5db49cb9 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5deaab9d mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x624bb3af mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65357be9 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67b1a7ae mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bb1bf72 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f399afa mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70fd88f0 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x741f8e36 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x751a8e0a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7659c7b6 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a1b1ebc mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b5d5fe7 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ef36c6c mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x814bdd67 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83f20c54 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8518dce6 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8598f67a mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e46ef3 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a3204f6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d3cb9aa mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x934dab25 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96089ad2 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99f16055 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b6bfae3 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bd833f7 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d358b66 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d7bcdfd mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e398f24 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f0aa09e mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa13ad853 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4b4489d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70c4599 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7cac970 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab864639 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac12d632 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb03f7d11 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d3c888 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46e642b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb671b6c1 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf237ded mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc157d5f0 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2fd0f79 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc487ab5a mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd06d787c mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd400296e mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4d5124f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb8845ed mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdce2a25d mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddb832af mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde5a9c54 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde797835 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfbeef19 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe065f34a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13e913d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39a1b5c mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39cc2e1 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3b4afad mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5109b0d mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86b2386 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9d62508 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaee646a mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7f35e mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf04aec3a mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11a7d8b mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf29c9aee mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4b1191f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf770d496 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7a855e4 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8c2806b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8d29714 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa723d3b mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa7e5e9b mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfadba4a7 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb4692ac mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd011b13 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe6463ea mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c3ae1b mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01b07a59 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0372c540 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d2ed92 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x052a7d99 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06f88188 mlx5_modify_nic_vport_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 0x0840f8eb mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f08fe86 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x117f5c1e mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1bccc1f1 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dbb019f mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21f322b7 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x279c4b68 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bd4070c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x353c0a77 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x353cbd73 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e0be2e6 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x469a5b3e mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x488a375f mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ab95d32 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd94ebe mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4da1c44e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e24d767 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x552bb795 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5be6bdd0 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5dbdbe06 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e30eb85 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62cb586e mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68c72d59 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6950c57a mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ae07adc mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6be2859c mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7096c43c mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x717a0a49 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7635b6b4 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7932480d mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x796751ca mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79b5ab8a mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x816e9247 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86b63952 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86ea72a1 mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89042573 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c6527dc mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d5e0f0a mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x913938ab mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9393ecac mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97851b26 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ee5460c mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6168dea mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9c356f6 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad3f028c mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeb46393 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafdb9961 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb30b00b3 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e6c102 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9dcfbd1 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4329c9f mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7e475eb mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca41ef70 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea078e71 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec87c55c mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed57dfb0 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed85fa27 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf022abed mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf27bd37a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3a97c4d mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff2adbbe mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/geneve 0x4ff4017c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x456fa3dd ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x526f5339 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8055b305 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe3e94f76 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf4e12ae3 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/macsec 0xab0f5352 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x00f16c81 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb080a94e macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc750704e macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf553b218 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xaa0bb504 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x161f03ef net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa51a1cf8 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x07241cc4 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0903031b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0bbd650d bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12cc4abb bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x15f9042c bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1731ba6a bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x26b928e3 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x331a20c8 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x340cd66a __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c7ec3ff bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x551906d7 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63a337c4 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6532005d bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x686433f4 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x74ea90ab bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x838d02cf __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x86877fba bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8c074249 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d9b613f __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa04e118b bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa691ee89 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6f68899 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xafe06cd7 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb48f7446 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc92d6c00 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xce3b9aa2 bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd507169e __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdd521763 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe072f28f bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe2056017 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xec2f2e80 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf3260713 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfb2c0e43 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe602342 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x03e1bce5 phylink_mii_c22_pcs_config +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 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x1a848d6e phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x20e679da phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x24d29a5d phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +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 0x62b3b36b phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8107cbaf phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8c85ddb6 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xb384c13e phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb898d586 phylink_generic_validate +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcb01e6c4 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 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 0x15575a8a tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x2ab326a1 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x73047d05 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x79d42e5c tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x834e3cde tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xc1282359 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xdcd2c6b0 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xe542ded6 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xf0e69787 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x11d1f072 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x150c7f46 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb61fa83f vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xbaf01724 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ac24265 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1371a92e nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x16bc4e1e nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x18949e10 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1bba09c4 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f9be575 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2fa55ced nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x394938ff nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bc331a3 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3e3bf851 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x407436ee nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x45f27f30 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4e552d24 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x513bd31d nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5410c2b7 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5755c728 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x629fc6d5 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x62f04c8c nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6369085e nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x69b29e8a nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6e11a7cb nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7896b1fa nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79fce3db nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7db22995 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fddba4c nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x87c709ea nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x903d4569 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x904b86dc nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x91c709f4 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x970e680e nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa4ab15d4 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5cf4398 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa5d067c4 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa88e0e3 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xabec18ba nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb82b20cf nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbf015857 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbfe6b2af nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc12ea150 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc26edb57 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc5fea4da nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcf38a3ef __traceiter_nvme_sq +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 0xd6ca2eff nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xecc8b95e nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfc59aa22 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x01628c39 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x2abcb9fe nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x37e15190 nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4450f211 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x856a6c6a nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa23e8f4a nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xafa5affb nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbfda16ea nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd11439ef nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xdee7b587 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xf8655476 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 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x7764fa61 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 0x24241b02 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x2eb77afc nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x70b32667 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x88d97fe2 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x992ad764 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc7189517 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd263cd1f nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5a32601 nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe668bb8b nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xea680b87 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf3b033ab 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 0x78a146f7 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 0xb6c8842b switchtec_class +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0c35138d dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x14f3688c dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1522f055 dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x15e100b8 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x21c7102e dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2854f2e5 dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x29c04244 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x32c1be7d dasd_biodasdinfo +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x38d1d609 dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5087904d dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5a95fab2 dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x5d354421 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x62764119 dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x6e5fd9d7 dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x75f043d6 dasd_generic_free_discipline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7c481293 dasd_generic_space_avail +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7ff1c1f4 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xadb43d87 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb74b45a2 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb8cf4bfa dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xba4ffee9 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc3316d34 dasd_dev_groups +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xc52ba0ff dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xddd02e02 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeab9d03c dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xeea15ffb dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf3ca8f7f dasd_generic_space_exhaust +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x85d9d140 eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x17da9146 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x1d4cf954 qdio_inspect_output_queue +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 0x40200cd5 qdio_add_bufs_to_output_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x41257c60 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x47f87d5a qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x75f975ab qdio_establish +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x9149a583 qdio_add_bufs_to_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xa04bb255 qdio_free_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xc650b1e2 qdio_inspect_input_queue +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xcf41f4ce qdio_allocate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xe0471413 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x02a36289 qeth_fix_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1310bd93 qeth_get_stats64 +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x1fb00bbe qeth_siocdevprivate +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x25c72130 qeth_stop +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x28273dba qeth_get_setassparms_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x32ae4b48 qeth_ipa_alloc_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x36812194 qeth_features_check +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3b4b20c2 qeth_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3be08213 qeth_setassparms_cb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x505d6ef8 qeth_send_simple_setassparms_prot +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x634fe766 qeth_resize_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x665bba2d qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6aaf71d5 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6d0fd3df qeth_set_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x788569e4 qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7bdd05cb qeth_xmit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x87c06d27 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8893d350 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8a98f458 qeth_set_real_num_tx_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x97cf4a8b qeth_set_offline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa226a18d qeth_do_ioctl +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa4693849 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa6537bae qeth_enable_hw_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb19ce8eb qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb32c5436 qeth_get_diag_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb80dc9bd qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc07ba9c0 qeth_vm_request_mac +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd397e9e3 qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd9714a2b qeth_osa_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xdc98fed4 qeth_open +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfd5df8bd qeth_iqd_select_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x1e06738b qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x6c8427d1 qeth_l3_discipline +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13409098 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17c03798 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x240873d6 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e05f07f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x34cf54a5 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4c5ab85b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x57643b03 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5ea38dd4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x64849ea1 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x668e3199 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x676cd881 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x76ae6fdb fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7817ea4b fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8338fe63 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 0xc6c0ff2c fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xec73977c fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x09774471 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x16390eae iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3f566baf iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4b5af25f iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4e64f29f iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6d639997 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x748919e8 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x09279ed6 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x095bc503 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ead99b2 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b7f001 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x185e06c2 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22b653fd iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25892547 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b6d57d9 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e442471 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3057b032 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32dfd61c iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bbc2004 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x420f1db4 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x422c720f iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51a3efd4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5dadf3ac iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x702464d1 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d182491 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80ba8301 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8396f069 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d0ec737 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x932613a0 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99f309dd iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f98ff38 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa371385d iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa618dfe iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbdef164f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbed58c45 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2722c80 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2bf9949 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc35dd965 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4367bef iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5747eab iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca107e61 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca6cd832 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb999742 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc8eb457 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcf65c0e4 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1f241ab iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd29978a4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5148b3d iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd56f5fa8 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6023228 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda3ddf79 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe085844e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeda87f11 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0b4a8cf iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa3b003e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfed59b9a iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x002b2b05 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x086d7587 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d88e7a6 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1a12f936 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1bbd706b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27d2b34c iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2df30479 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x30a3fe26 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3ea75179 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43ad6e1d iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x492077b1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5bd5ec75 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6499a82a iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x68199a48 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9522f345 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9c26022a iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1c95c9e iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05f73965 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cd9c4f8 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x13baa698 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16313f32 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c589202 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1cd379d5 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1d466c87 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x266e29a9 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ebcd5ea sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x458323b9 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a17c450 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d09364b sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55d29aed sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x57512421 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x84f1770b dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x88934d02 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9168e078 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e1a3ae8 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9fcc65ce sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4852de3 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb0b86a4b sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb80d81ba sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd507713e sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb202be1 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc90a720 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdedacb54 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0f84d09 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2a4d48a sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8f234df sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xec06eba8 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed944819 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2b289cb sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2bd3950 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf364c805 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xd6808831 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x013d4e94 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06091864 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13a61606 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19c43286 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a270eb5 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1add77fc __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x216315de iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x264d878e iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29d6404c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d910bce iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e8b8f2f iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d741559 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e1c3d7c iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4242bba8 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4f150a2d iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d698d22 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ea6e498 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x716a4420 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78da5f88 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7f453c75 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81c42de5 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x870ff833 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87bd3fc0 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87f1b853 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88768c48 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88cea783 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91d490b8 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92b31512 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9aa95118 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9c0e6bb iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab25b0f1 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xafcc2974 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1f2077d iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2920307 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3958c73 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf6342f1 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2c3e591 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc5bff7c6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7b32fe0 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcffdd994 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1418f1d iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd7f3daf4 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe31e03a4 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea441a93 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf394bd75 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7bca7ab iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8c2aec6 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfd104070 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff63076c iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8cf2963d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb2f204ec sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcad4fe31 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xee0e49f9 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3d3fd0dd 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 0x23b35187 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c714a57 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x52a666dc srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x95c9136b srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb7fb1a4d srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfeaf5127 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x3a157d11 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7bc600ee siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xaa44440e __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb21476c9 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb8222f7b siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd7f529e7 siox_master_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x00be6dd4 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a91041a slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1831d7d7 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1a5756c2 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2213b5b7 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3cebc7af slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3d4cded3 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3da534bd slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4bf8db82 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5d80fd86 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x60edb2ec slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6c9db8cd slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x723195cd slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x80b69c50 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8d942ef2 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x93cd9068 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99d6176c __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa509b300 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa61ce739 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb09c9e08 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb2d087a2 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc88b6720 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd81316dc slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe61c6c14 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf3298840 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf59a80cd slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0b8d2378 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x98ab11f9 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd723cc0f target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xec3fe00a target_init_cmd +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x0040b08d uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x4d0fd325 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x847e1ebe uart_console_device +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x9db3c99b uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xb72fb213 uart_get_rs485_mode +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xdc1a2902 uart_xchar_out +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xe6bfbbe2 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/uio/uio 0x234b546a __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3e2d462e __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8a26ad17 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdb4d2642 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xd1ad18e6 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0d9aae43 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2504d750 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2ba230c0 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2c9b5050 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x31fdbe07 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x35e0ddaf vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x375edc46 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3e1cf8e8 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x3ff5b036 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5a273e57 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x60a53b90 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x766e26c9 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xaab0313b vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xccacf3bb vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd141c72e vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd22dfed6 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd3737f7d vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd6e49ae2 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf02022e0 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0861524b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x15e37782 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1a8236a1 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x306ab1a9 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x37142408 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3c8e54ac vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x438dd846 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x44216eb7 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x529db99e vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x61138e6c vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x86ac204c vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x881d90c0 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa8d82da7 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe327d18b vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x035dfb97 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x4cb3027e vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0643bb97 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0aafcba9 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10dfcaa1 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f35295a vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25eaa87c vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x473c1d85 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52b69a75 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x56e5a3cc vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5da04830 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63ff22f7 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6531dfdb vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67abb12a vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a3ea5c0 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7576ccad vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83cc7373 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d4af10d vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8daec8a2 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9c06fdaf vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa15acdbc vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa54ffc9c vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf3d4f4f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb004b063 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3b949ec vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb42234a1 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4543287 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7ffec56 vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9e0950a vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbc5d7902 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc0e22f75 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1c0811f vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1da04b4 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc87652b8 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcad2caf9 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda53659c vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdf20ccdf vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe738c4f2 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe999feac vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf533ec35 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfee77bd0 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffb9bcce vhost_poll_stop +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 0x8a7d8ee9 vhost_iotlb_init +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 0x15d26585 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x1f009e01 fb_sys_read +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3d701393 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9e51cecf 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 0xf4c4191a dlm_posix_get +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x267e1431 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6ac79bd9 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x86959202 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x874672d0 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x910577a6 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd4dbe5fe nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe6befa89 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02e4480e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04153021 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07ce4933 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x094fc1d4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0967e715 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0995f758 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0be634ec nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10c84ce5 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x137426a4 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13c60732 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ff23c5 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14de5bad nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15da6362 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1818bc17 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ac35429 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b2f60f1 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c8a7d72 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ffb0c25 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21b8e22d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2279fb05 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x252c1b3d nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2744741e put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27750c1b nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2833b4f2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ae724ac nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b0fe5e8 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d4086ca nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3008e3bc nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35bcb6f9 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c4b6b44 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e540915 nfs_filemap_write_and_wait_range +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 0x40f59c8c nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f01810 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43fdcdd4 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x447118e4 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x499c2c67 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49a5bb0c nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ba57f77 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bbf6beb nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c27a9f1 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c84e173 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d0509d2 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51d1f52f nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52ca4fab nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x530e99a8 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x554ad9e2 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580cbd04 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x583d0eda nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a520f5 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5930e49c nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59923eb3 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59ad397e nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a126069 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e1b9d3b nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e45180f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x609f615b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x633614f2 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65047f1e nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x669ba9da nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x676191da nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a325d9a nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d64aea3 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dfa3e91 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f711f6d nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f89fb96 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x706689d8 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77062ee3 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78777de7 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e9ffb0f nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f42aba nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81835235 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x821139af nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8600734d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88738ec5 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x888eaf0c nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e50c3f1 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e9d25a5 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x906e25db nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9160e59e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x916c8e13 nfs_check_cache_invalid +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 0x956aa994 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96f7aa7a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9907b5dc nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c01bda4 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c9a59ba nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ddf93c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1e3f11b nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa29d3af3 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa33fadcf nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa424a3ee nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa67c8f00 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9d4a971 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacd5af2c nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacdfb308 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad114c0a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb322f5a2 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3c42a3b nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb42edab9 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4d74f85 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5c1f0eb nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb7e1ec54 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86f3461 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a22a70 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8ae4f09 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf01d7e6 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc05842f8 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1df390e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc51aa612 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7b2ad9a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc87f5867 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb0e6313 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd98bf32 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce722836 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f8bd66 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4ddc49c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd69801f1 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7538dd9 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8e558ab nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd917e216 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9d9512e nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd49f7a2 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdea7fb6b nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1e177c0 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe505eed1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe507074e nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe73ee846 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe91fb7ad nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea31480b nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeadca11d nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee6ccf40 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2e6fabf nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf318bc44 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5938d49 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5bcaea1 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7336e7e nfs_create_rpc_client +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 0xfddff492 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xf24539c5 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 0x0e5239a1 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11ddf32a pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x123e0ba7 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x125be9db pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x177b9407 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19ca1ffc pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e3c7915 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2357d972 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x276fd448 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c1759fe pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d0d14f8 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f222ea4 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f5d0812 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2fdefb6f __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 0x319e667e __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32613670 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3311bf58 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3560e39e nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35d2a183 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3668abf5 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38da9559 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b722cb2 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bc4c8e6 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4359d573 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cac26d2 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x504bd292 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x535a59e9 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5460f217 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5608e472 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5af4f7c8 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e30f4b5 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6208e415 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62ce6de3 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6532a5ce nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68fa9c37 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71560916 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x770065ed nfs4_setup_sequence +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 0x82012185 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82780f4a nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82d451a9 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88bde11f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a2ad953 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a7b297d pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fa81dfc __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fe3577c __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x903cc7e5 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9531a0e6 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97d60f81 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9db7e35a __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe34627 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa15d9a81 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabbaed08 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad744d32 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf64c57d __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2018c6c pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2d23918 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb89f64fe pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe2bf3b5 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbef41ecc __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0f8b366 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc13c4515 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5ed9c3c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccfa0e4a pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xccfe1574 nfs4_init_deviceid_node +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 0xd4392523 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd81ee982 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd98cc893 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda4d9616 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda7b8beb pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7b2fd0 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdee3cf13 pnfs_read_done_resend_to_mds +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 0xe5e800fa nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe77d5895 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +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 0xee66ba9a pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf04be4fc pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf14a70da pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf24d81c3 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7579517 nfs4_schedule_session_recovery +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 0xfbd56c15 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x0f8398db locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x41f460fd opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x9f95fb86 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x33800efb nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x37ce2141 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xaa039120 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc4ea0e4a nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x849a7b1f nfsd4_ssc_init_umount_work +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0feae4c8 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x365650f8 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7a52e592 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7ec7aa15 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9608a6b3 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb43ff17e o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd06538e6 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x2c1a3f8b dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2d214b7a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x30f7d9d3 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 0xcfe62833 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 0xed80dc79 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf5e457e4 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x23501bdd ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2cb33f04 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 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 0xd2b1c89a ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd561d184 ocfs2_stack_glue_register +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/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/notifier-error-inject 0x17a4ad6b notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x9ecc6b70 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x18efd32f raid6_datap_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x3e193101 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xa51bfd9f raid6_2data_recov +EXPORT_SYMBOL_GPL net/802/garp 0x06d6fff1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x5b9f88aa garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x75c95776 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x8eab3952 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x93ee4ed7 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc4480759 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x2763f225 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x4b609d0d mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5feba740 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7524941a mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xafd27f01 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf4909295 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x8a4525ac stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xe9f1bb4e stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc14eb66d p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf84ba253 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0a32f11b br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0e6126ca br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2139485e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x246dc10d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2b5d46a3 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3f2d7926 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x42fda0bf br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x45c020d9 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x54c148a5 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a03f6a9 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5ba9174c br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7382f600 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x83827c94 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x87088d01 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8a969180 br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8eb01a98 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xada1bdf3 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb2714bba br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb9b708d9 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc424447a br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc63426c7 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccf3581d br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd726a475 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe89d47ea br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xead6d01a br_port_get_stp_state +EXPORT_SYMBOL_GPL net/core/failover 0x54d3e5b8 failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x8e6a695c failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xd44ec930 failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09e3971c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e825905 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1595e7a7 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17cee864 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e6b6190 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x224bfb61 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2942459a dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29a59632 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x33128c46 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35ef0fbf dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3823b18f dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3889d1e2 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d476bc8 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59190413 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61ba803c dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x78e1e15f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79f7de94 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7a10eb29 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80140b74 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x916d45e1 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x93d30afe dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9e285dcb dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9fc85548 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa1003d8c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa647f296 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaccc0f55 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1ff8e81 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8c08834 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda640c78 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe12c10fd inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea536b7c dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf733f9ec dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfec6e099 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x16a4a0bc dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x637cad7f dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9a9ed685 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcb814471 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xee8bf0a8 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfeb19801 dccp_v4_send_check +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 0xa29e56cd ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe818a25e ife_decode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x23d3b193 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xd0e5e4a2 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xdef39f68 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x1e99a834 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb7ba6974 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0e5424ff inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1da576a2 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x410e0c59 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54274f7e inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x572111c9 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c4e13ca inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7bcf278b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd6c80373 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf8f76fe7 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x1170f014 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x117e0254 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1187231c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1734fbf5 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x21bf9ad0 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2e24cc0a ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3274e5d1 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5730c84c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x72164d62 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x82a5a8a1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x985331dd ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xac6a8a09 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb2e80f15 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc399c6d2 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0542930 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0769c04 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfab4cfc9 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfd4f85bb ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xfee78b84 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xa6bf4c07 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x7e188668 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb63768d5 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xba2dbb4a nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x320b02b0 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4ee68fe7 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6aeb691f nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2333191 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc0549684 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd063b863 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd373b4b5 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x072c67bb nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0e02e284 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0e4b01de nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xb15a2070 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xac2aeb13 nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbd370dbb nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x19406579 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5c81cbfe tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a0aaec2 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa1bfb1c6 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc1dd17b0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x231313de setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x34e5efb1 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8920f990 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8aeecebe udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa32b1960 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbac21a55 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd3fb12d8 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd8cc0ab7 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x3a255ba3 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x50f83433 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb4f93305 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaf52c8d3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd9961b0d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe8bd8229 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x06f665b3 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xab16afbb udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0ea20832 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x88c632bf nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbf9f3c99 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xcf1bfde6 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xe29342c5 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2e131dff nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x63dc1488 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x676cf5b8 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x7f644486 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa5a603a7 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd0621ffc nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe267589e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x804bc6d2 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4117691d nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd08d67a6 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xd3aaa2fc nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x05442dfa nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe558cef8 nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0104ada4 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0b0467ce l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28f90368 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a149677 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x374588ac l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x43ddd09b l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e23908c l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57cd1b18 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x594d02ec l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x697549f3 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7012d4df l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x845c4273 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b8d2467 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa1ec6a49 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcfa2e83f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd126663f l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1470fc9 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe21d3810 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe5764626 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5839bfd l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffcfd047 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x08d51779 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x2f851c9a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3551c2e0 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4a818fbc nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x80f45883 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9fb67840 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xeb3aa870 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x077be71b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b902862 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1f8d90dd ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22ca4d90 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 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x658d5503 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x67fef8d6 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x68a212ac ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6bba926d ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73680bde ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x748a13e6 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7d46bee6 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x856f0f28 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c6fc80c ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8fe377d5 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x917edd6b 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 0xac870bac ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd97dbdf ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd5fb092 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6550d22 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x382fe4f7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xcf686279 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xde3f4d40 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfc32b6c7 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x0bc50bda nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x419ab422 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x5ebc5baa nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9226f59b nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xb27e819e nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe0081c0d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf808bf82 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x009b0ba8 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03f4081f nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07533fc4 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d0ab264 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10df75ec nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x121f39c4 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x187c5234 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c328230 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c9b791e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f8085c5 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2163b8c4 __nf_ct_try_assign_helper +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 0x29185707 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35a3e323 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3856c6f1 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x406587a6 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41d57cf9 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44b56ca7 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47b1caaf nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d5023b0 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f77183f nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5001fe9f nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x517f7b79 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53ec0466 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x543e8d1b __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5724c8dd nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a2a34be nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63238b91 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6395f596 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ad2844b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ba3e52a nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f7fb637 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70692311 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x712e5de2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x720aafd1 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x736fc1ec nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7464ea02 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x753018b2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c558948 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd5de6e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7f5efd95 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81f8a58b nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82e2533e nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82eb3043 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bbac2e1 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8cf75202 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e878af4 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x955d3420 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9727aac4 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d289c5f nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1ef7638 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3af66cf nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa92edc97 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae6f48e4 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5b5ec31 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb85ab854 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbac4e149 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbd9ffa6 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7af3e9 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 0xc57b5213 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc991475 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6002ad nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce4655bc nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceaaac37 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd146c2bf nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd263b463 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a3e3db __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd43c40c8 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8be3074 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9cc99d7 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc2f62d nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe17c4e15 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7304601 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe75e99ae nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7b3081e nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8850102 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1b078aa nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf24e79d8 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5b5df5e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf63d234f nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf890c2df nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd3bcf7a nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe693ec5 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xdb368ec0 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x2aba7025 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x094715b7 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x287da606 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3a718b08 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4e04821a nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7766a68f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82627c8f nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8b8b009f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x90b83307 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb5a9a050 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc25609c0 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdbdefd08 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x8aa11a42 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdb367eca nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x321df461 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4ea9e9da ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4f0c70f6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7576986d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaf4a9e16 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb01f77a8 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xea0597fe ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa6f00082 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xc0d7f98e nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x1183ddec nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x428074f9 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa8caa24b nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1854a625 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1c1de6f7 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1fe1db19 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x28572f3d flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2dbe365b flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x338eda62 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x34fbfe07 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ff8a06a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x67a5e900 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x6892d65a flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8be6b968 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8c1de402 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9f0a2732 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb9e94530 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc2e4f6c3 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce7cf5ed nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe432e9b4 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x028c9aaa nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x0310b249 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x049bdca1 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1d531d3b nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x21fe2f0b nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34cb46f0 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 0x5923f61e nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68d4bc2b nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x96e83a6f nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa48fd832 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbb96a102 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc46297f1 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc8fcf9b7 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 0xe687a635 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3f083a1 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf9286568 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3e8690c9 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x4a3d869a synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5da9d4e5 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x642b9613 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x959acdb7 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9f67d74c ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa097fe78 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb54d3e5e nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xce69f78d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd6627a72 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf9c6e5ce ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x08082752 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a19d464 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a85691b nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x106a2a35 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x113ae551 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2084ee76 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2246a628 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x246b59ce nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2aec4316 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2c8dfa01 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34cf1702 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38191dfe nf_tables_activate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x39829324 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x439db33d nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x491d4eaa nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4d661e2e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5612ba9e nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fcd4f06 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x71e67cbf nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x743f2714 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74d839aa nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8411dc76 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x851392e1 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8826a319 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8bbb5a07 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8fae04ce nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91b025c6 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9313d396 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9365ba40 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9fa276b6 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9163db5 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9c58b5a nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae530522 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae9f2c35 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb8d8021c nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbea5534 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0687ebf nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd207504a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda4b786c nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda575e37 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe43f56e1 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf664bf7b nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf98edc76 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfa824f95 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0ca7eaa7 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x50259bfe nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x622ca72a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa7dd03b5 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc0cb5ba8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc6d2cb26 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe91cc5f2 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6bd81b60 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb233e6bb nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc16fe720 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0fd8e223 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x148a0792 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2267e9e0 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3b06fe22 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x62764971 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x6478e1b7 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf1c52510 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x03bc4458 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 0xbaf4d484 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe55cf611 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x076f8dd9 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x137058f7 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1cacf04b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25abbea7 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36f203de xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39745cbd xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d6c3919 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52391c10 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5561e10b xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5e85b4e9 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6600ba26 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6d68b2f0 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x86b5d0df xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8c697118 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d6d17b9 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb846a827 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd3dd5cb xt_request_find_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 0xc9ffa2c3 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 0xec5e2ad9 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf0ca49b0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf79e0a7f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8261fec xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc078fce xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x8de17cd4 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd931774c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nsh/nsh 0x2f4933df nsh_pop +EXPORT_SYMBOL_GPL net/nsh/nsh 0xf3bf6fce nsh_push +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6e99d25a ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7407ea06 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7cbb294a ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x84118531 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbebf9b22 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf42a0105 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x32e5a7d6 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x59a4eee5 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0x5e595bb2 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xa702b5e3 psample_group_put +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0a098516 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x183a81ca rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x29b41617 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2faf00af rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3c73d17b rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x3daad63e rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x469e651f rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x4ba4914e rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x5129c454 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x5f220eb2 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x67c7cdac rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x68fc68a5 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x6e832a31 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc92bcc rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8dbcdb85 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x8debe465 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x8f7559e8 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x90621300 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x937a7916 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9777b9fa rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xab6c7e53 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xaf14477a rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xbba1ef62 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xbd7e952b rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xc1afd5c8 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xce2fd170 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xcf6406b5 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xdcbbaa85 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe71d9b6b rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf1bbab74 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xbde49020 pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xd403b948 pie_process_dequeue +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 0x40828f10 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x58ab41a9 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xa42e5a8d sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xfe401807 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x1ace6f2a smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x2e557d2b smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x560c16bc smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x58e053dd smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x6d45d91d smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x97640d1d smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb3a831c4 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xdb5c7084 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xde7aa530 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xe6852272 smcd_free_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x17f5dc95 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 0x7dfb3517 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 0xdfd643f7 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf1f748c0 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a32d8d rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03091d90 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x033e2b2e svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03457d75 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03de555d svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x043756cb sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05046715 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0512b0f6 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0544e4a2 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0553412b csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0556c689 rpc_task_release_transport +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 0x0688fad3 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08815124 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ccb0ec rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0caea99a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cfcdf44 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d23386a svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e89fd37 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f3f6094 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fed4700 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103944c1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x108b467d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e6e204 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134c12d3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138e9d54 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15889ae1 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x174a3446 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1763d91f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1803892c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18265cfe sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x189bb24e rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x189f31dd rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b239d7f xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c1c83d9 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c2a5660 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e617675 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1eb1eaa1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x209600e6 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b543e5 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22800ebd rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x238b18e1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24d93355 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2545efb7 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25a39558 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b8eac6 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26ec89cc xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b93e7a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27d1e5db xprt_update_rtt +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 0x2928bd8d rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b42693f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6e4073 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ff22497 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3068df5f xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3136992e svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326d49fe rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3315fa80 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a0a105 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c7a532 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36f8c12a rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x380e6dab rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39ef1a70 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a01d96a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b1192ca rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4322dc50 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x439eb20c rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45b5c498 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x489c2113 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b9319bf rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c8e2a6f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d0add9a xprt_put +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 0x504de011 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x522d594a cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55d263a1 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x568f7b4a rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x573e26a5 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5923db58 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bdca5e6 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c52c7db rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b6569f xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62b2a0ca write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6327debc xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64386673 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x652c0c1e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67547fe8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a19fb08 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a614780 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a88bff5 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6acdbde8 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cce4ebd xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ceb44b8 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf221fc rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e5dc23c xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e8c5b0b xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9516ec rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eeed8e5 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f356271 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f6e962f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72a68eb7 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72f98eec rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x737e70b7 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7450195e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x761d9e32 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77163265 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x773274e0 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7923a64c rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79fbe5d8 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c75aa83 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf4f9ce svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5bb6e6 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d7541bf rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d79319f rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dd83a2c xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e2687dd svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e7e82dc rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800a6e53 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x851a254e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85cc37ad rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85dbc25f svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86133709 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867c401c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87483160 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x877088c9 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88420c38 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894c2b1c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a95ae22 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba545da xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4ecf49 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca27beb svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ca70513 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e0b25e4 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8eb8077e svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f8219d7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fab1b96 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9231d331 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x944db1a5 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9459b7ba rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ff9306 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x984a5c52 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c68cf81 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d451cdb xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dda1a92 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ebb2eac svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee5d441 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2690941 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4cbe416 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa53087af auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa657af63 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8002835 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa822fd8b rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa935a71d rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa44cf43 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaafeefc5 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab54329a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaef37bb8 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b9b84c svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ce8e34 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7adf6c1 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b4a22f svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaa3389d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbadf287e rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4c5672 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbccf1335 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcf0e7fb rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdaecc48 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf1f5d1c svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0e9ceae rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0fb8631 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11bfdc0 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc26a8f71 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc455b321 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5b6674e auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5e81c38 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6e24414 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6eafabc rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98c8611 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbfe7076 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc33b60b sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd8e418b xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xceca590e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd00c48fe xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd02e525a cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c9a82e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10247be xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1d0d471 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1feb290 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2648389 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3079e3a rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd41d9991 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd742e06c rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b9a2ca svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda177d39 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdadbe549 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb8fc857 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc95e6d9 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd607614 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf026468 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfa636d4 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1768935 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1c4c2c3 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2161c26 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe385db71 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3f3c8a8 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe456b24a xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6491beb svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe64beb62 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe717a60a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe82737b9 svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8c0411d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9d55be7 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea2e91f7 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea9e6ce8 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebbd7cf0 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9f108e sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed6831c4 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee8b6063 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef805146 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf16a3577 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2cfb327 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf45c0b6e rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf58400f3 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66d6b2d svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf73af269 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf75507a8 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7a26f79 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ae5b62 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ed09b8 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fca26f rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf89e182b xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb4809f0 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb8d86b6 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0eef56 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd20ae8f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff8f86de xdr_reserve_space +EXPORT_SYMBOL_GPL net/tls/tls 0x237ed155 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xad9a23e3 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xae5d9234 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xefc45e88 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 0x15148fde virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1889585a virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1e59706d virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2747d8c7 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27895295 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2c6e087c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2f82130f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x343bc260 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x35b17a60 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37495166 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3e3b06ac virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4ce967b1 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x50238389 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x54dfb0bd virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6423e82a virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7fc66f09 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x917f7467 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9719a7c2 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9dcc64f0 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0c24af5 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb0dfa689 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb874dce1 virtio_transport_put_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 0xc0de7ebf virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc1b77494 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc31b7325 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd062e686 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd7edbf66 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd825a0b4 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xea7b4e41 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0a08296 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf60d1613 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfc52869f virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd7b30e3 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff0046df virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0284a52e vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0502908f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1e47917a vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22c04872 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3999d2d9 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x484fc1f0 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5477a7ee vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67bb8f12 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8afd1169 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8b708a1a vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a0b29f0 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9f20f6ef vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb017dc62 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb66d6f9b vsock_assign_transport +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 0xc81fa801 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd6de87cd vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc7a9730 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe58f01cc vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xede9aa67 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf2d4a378 vsock_find_bound_socket +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 0x49bb62c7 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5dcfd4da ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf2f56113 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xff148adb 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 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 0x00079bff irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x00291373 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x002bc694 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0054c542 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0074def1 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x0099b8f0 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00b3df19 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x00be5a41 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x00c7c0aa kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00dac9a9 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x010b0a54 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x014f004f serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x015ddd09 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x01603049 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x0161ad90 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x016c9894 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x0173ade9 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x017c2641 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x0190e95d gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0x01ab76da tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x01bced16 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x01c0e204 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x01c31f3a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x01d7b8ed dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02334a6d iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023c562d balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x024da603 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x026473e9 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x02760dbc crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x02a46feb blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x02b2896e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x02caf7c2 s390_reset_acc +EXPORT_SYMBOL_GPL vmlinux 0x02ccfb33 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x02d80c00 zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x02eb45c3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x031c82b0 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x03293dc8 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x032cfa98 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x0332c746 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x0336cce1 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034e3bde crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x035db564 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x036650e8 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x0369e819 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x037a5375 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039ee78c __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x03a5eb58 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03cd6f84 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d08afc sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x03f800c7 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x03fdb126 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04428278 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x0444e8bf gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x0447bc79 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x044c2928 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x046431e0 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0475626d scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x048c96af badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x049cb42a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x04a6fee6 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0x04a8f122 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x04a99ca7 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x04b0c0ab unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7c45a misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04d21916 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x050c0023 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x05144fe6 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052843c3 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x0528be12 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055847cc ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x055d363e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x0570667e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x05744aff inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x057e36e3 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058c20f0 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x0597e8d7 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061826c3 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x061a6a17 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06270036 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x063f47e8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065a7a23 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d38135 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x06d7037c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x070708c7 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x070a76d6 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x07147824 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x0721e649 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x07231935 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07389731 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x0757eede stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x0771534a __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x07728fa5 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x0778f0e8 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x07816679 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x07835152 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x07922121 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x07a5e89f genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x07a85473 ccw_device_get_iid +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07c82d21 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x07cb7afb sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0x07d93d79 fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x07df3aa8 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081dba29 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x08436119 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x086deb30 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x0880fc05 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x08aa3963 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x08b11cab fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x08b2e9aa hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x08c315a6 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x09027f03 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x09110cd1 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092f6af0 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x09506c6f device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x09562b1c cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0960ea04 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x096e9b08 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x0976f832 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x098cef74 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x09b34dba ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09e6db94 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x09fd62d8 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x0a16989c gmap_pmdp_idte_global +EXPORT_SYMBOL_GPL vmlinux 0x0a191e29 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x0a22bc4c gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a61e0f6 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0ab7e27a class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0ac29984 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x0ac2f229 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x0acac120 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0f8966 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x0b11a171 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b17932c gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b2f6666 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0b3b2474 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x0b6c8cf6 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x0b78fb55 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x0ba215e1 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc5481b clock_comparator_max +EXPORT_SYMBOL_GPL vmlinux 0x0bdaa13a trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x0be6c5f0 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x0bed5cde ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c038250 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x0c1886e7 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c18ad4d __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x0c26bdd5 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x0c2719e4 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c428a62 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0c6ef581 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x0c6f2b02 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x0c795850 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8bcc89 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cfcbb75 devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x0d21ca90 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x0d258d4f tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x0d2b5ffb screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x0d3ce049 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d42fd70 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d611edd s390_unlist_old_asce +EXPORT_SYMBOL_GPL vmlinux 0x0d6962c6 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x0d9f35ff debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x0da16b00 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x0da22e40 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0dc50f1b crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x0dcbb599 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dfbfa0a synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e10866c ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x0e3b73c4 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0e541f71 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x0e55fb32 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0e5731b5 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e608a2d blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6e7169 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0ead55f4 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0eb7f3de iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x0ec53112 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0edfdaf0 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x0ef22d32 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0efd27df regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x0f02ba07 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1cb750 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0f3b8882 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0x0f5ab5c9 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0f7432fa xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f916c2a crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x0f9d95a5 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x0f9e15f2 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0x0fa27bd7 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0faa6551 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0fd3da09 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0feb4a57 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101ad0e1 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x102c21e0 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x10580bc2 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x106cde98 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x10739cc5 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x108c9e79 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x108e77f5 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0x10abee93 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x10b78188 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x1102709e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1108fdbb klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x11152866 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0x111f2c25 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x112fadf1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x113f2d08 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x114c1409 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x11539009 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x11a4d4a1 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e09bb9 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x11fc2039 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1203e3ac gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x120b56a0 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1220343f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x1226ee1d balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x124128aa inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x124b6581 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x12660f60 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x12673e3e dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x12801941 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x12972876 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x129ff1be sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x12a1df90 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x12b9c41f lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x12cdbd51 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x12d3ad36 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12ee4d90 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x12efd859 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x12f11249 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x131904fa sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1320ad6d md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x13354bee __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x1339f28f screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x133e44f6 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x1351f4c2 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x1387ed38 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x139b4462 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x13be701c tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x13e7fd83 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x145c0848 gmap_register_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x148bcda0 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x148ebfcb mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x14bc1b83 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x14d5bdc7 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x152bdd65 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x15534ee4 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x1580b2c0 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x159c52c4 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a89a1e enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b08902 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x15bab538 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15cd162d gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x15d63831 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x15d7c6f2 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x15e3f01d gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x15e8abc2 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x15eeac0d blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x1605b794 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x160823c4 device_move +EXPORT_SYMBOL_GPL vmlinux 0x1616edfc dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x161fb829 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x163c20d6 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1644d1ed crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x165140c7 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x16645618 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x166c290e crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x1676a2f5 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0x1678f30c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16867178 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x1688d721 devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x168f86e6 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x16a0dcd8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x16b69bc8 zpci_store +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dad302 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16fbeb41 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17149987 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x171710c4 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1737575e irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x1738dd92 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x173a0e8a unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x17443a69 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x175b7e2a __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17793d65 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x17809a16 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x17ab377b io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x17bf56f4 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x17fe080c kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1825e941 md_start +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x1834e691 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x1841144c blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x18440224 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x185c6a73 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x1883c7bd kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x189a682a pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x18cdfbb1 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x18d100a5 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18f42c32 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x18fb93eb root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x192fe543 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1941396c dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x19455dd6 fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x19518f3e __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x1969f2e8 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x19808dda unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x198d58b5 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x19dd087c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1a055815 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x1a0a8a5d kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a112d72 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1a14f27c switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0x1a68ba75 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a7c7a6a get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1aac6df6 blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x1ab400a1 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1abd9971 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x1ac52d3d nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ae066ff iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b0f70f3 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0x1b1dd600 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b2a1678 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x1b332e46 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1b45499e __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x1b622fb7 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x1b6828c6 housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b77b050 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b94f711 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1bc7b8bd software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x1bd71c37 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0x1bda3f58 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x1be7e28f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bfad06e mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x1c283a0b gmap_pmdp_csp +EXPORT_SYMBOL_GPL vmlinux 0x1c2c085d devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1c2dfcbf acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x1c3fb207 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1c4cc0b9 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x1c4d95e0 ccw_device_get_util_str +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5e52a1 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x1c613a41 dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x1c6e8b9c unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7c5e10 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8be6da bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1c8ccee7 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1c9eec38 ccw_device_get_chid +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cd11bf8 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x1cd86423 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x1cea3fab __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1d0758a7 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1d0a2352 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1d10e356 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d266a96 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d277657 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x1d36fd18 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x1d5d875f __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d95eb3d find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x1db39c3e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x1dbc0a77 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1dca8012 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e050e96 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1e20f13f freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e397ee2 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e3e3dbd put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x1e529fc6 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5b1c9e request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x1e6d3f0f __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e71499b cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e81cf54 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x1e8eb30c serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x1eb10062 blk_mq_sched_mark_restart_hctx +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 0x1ee39a74 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1eec1238 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1ef1418c pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efb6574 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1f0671e7 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x1f24f54f skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1f2d801a alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x1f2e02fd blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f436eaf hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x1f5571c5 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f57e941 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x1f6679f5 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x1f688449 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x1f6a999d disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8dbedd perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f9b9dbe switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x1f9d8fc3 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fc2be44 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x1fc576b1 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe7d730 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x1feca050 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20288e32 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x202fc674 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x204a48e1 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x2058cc47 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x206109ec fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x206635a5 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20a33396 input_class +EXPORT_SYMBOL_GPL vmlinux 0x20e29948 kernel_kobj +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 0x20fc5466 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x2130b07d cio_tm_intrg +EXPORT_SYMBOL_GPL vmlinux 0x2143e220 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x216c1a4d tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176ba5e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x21845802 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x219225a8 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e5c880 xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x22062e4d bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x2228b2d9 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x222af7a2 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x222d9932 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x222faba7 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x22799cec tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x227d2c79 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x22881f1a serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x229d7c03 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x22a50f5e zpci_mod_fc +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b8146b __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e11208 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2307e921 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x230bca5e key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x23188386 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x231d17c0 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x2341caa0 irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x236b6dae __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x2373434f irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23a157b3 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x23cab657 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x23cb578b set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x2405e414 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x242050b4 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x245a999e netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x245be40a nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x246e03bd debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x246fd45b sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x249b5024 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x24ac3a93 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x24b559b9 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x24b5f647 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x24c42b57 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24c4a6f0 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x24c80e08 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x24cacd89 kvm_arch_crypto_set_masks +EXPORT_SYMBOL_GPL vmlinux 0x24d5a526 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24f4ac18 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x250deb42 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x25116708 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x25284add list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x2532dd51 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x25430f67 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2549ad92 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x25501e72 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2556f240 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x2588898f devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25c537dc zpci_register_ioat +EXPORT_SYMBOL_GPL vmlinux 0x25cbaeac device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x25f9202b iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2606a92c kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x261cfcec create_signature +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 0x2694bf7b cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x26a6f03e ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26bc706c vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x26c1db8a fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26eb4049 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f46302 cio_resume +EXPORT_SYMBOL_GPL vmlinux 0x26ff7e4d serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27295d7d security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x272a7e44 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x272b2d93 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x2741fe7d handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2745db5e verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x274d568e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x274fc5f0 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x276211e6 kvm_arch_crypto_clear_masks +EXPORT_SYMBOL_GPL vmlinux 0x2765dc42 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x276d0ef7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x2772d4ee pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2797635a scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x27a0ce62 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x27a9a7bd dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x27b137f0 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x27c1e6fc fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x27c33acf unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x27d421a3 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2849c663 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2867a24d dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28ab8bf7 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x28cb4374 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x28d0285c rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x28d8b49a chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0x28f02a73 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x28f413ad iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x290fec2e ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x291646c1 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2921074c hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x2929a7b8 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x292df164 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x292e03ed blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2943d950 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x2948fccc generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x295845e6 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x296b26d5 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x298697f7 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x2989b695 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x29946de3 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x29deb0ac add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x29e253cf cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a36af95 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2a3f009a kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x2a46c052 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6c813f watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x2a6da9e9 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a8da9d4 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x2a926f7d ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2abccb50 crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0x2abf51e7 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x2ac20045 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0x2adceab6 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2b159cb4 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2ba6b0b5 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2bad20f6 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x2bc12142 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x2bcb8e12 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2bce85f3 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2bd15a7e xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x2bd2915e kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x2bd643d6 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2be7a54a proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x2c08a47c xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x2c0a59b2 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c139202 udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x2c1741b2 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c365651 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c407f81 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x2c5d250c vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c7256dc synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x2c7680d3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2c779e50 relay_file_operations +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 0x2c7f2327 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ca09058 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x2ccc6a79 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x2cdfe770 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d10246e dma_map_sgtable +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 0x2d499aee crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x2d550231 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x2d55bef2 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x2d5f69b3 rcu_read_unlock_strict +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d71bc81 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2d996bab cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x2db11bd9 cio_halt +EXPORT_SYMBOL_GPL vmlinux 0x2dbab62a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2dc64043 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x2dd3f3b7 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de66ffa dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e21a43d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e676ab8 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x2e75adf5 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e7f0499 seq_buf_printf +EXPORT_SYMBOL_GPL vmlinux 0x2e817a6b md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x2e9757b4 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec04e74 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2edffa28 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x2f093f8d bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x2f0b8bfe transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2f0ede09 get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x2f0ef902 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f24a601 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3b31bb register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f56890e bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x2f64be23 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x2f89d540 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fd6b2a4 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x2fdca4ca crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x2fe1c4f8 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2ff006f7 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x2ffa8df6 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x302f8fc5 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x304eaf63 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x30696079 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x306bfe19 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0x30a2a6ca gmap_pmdp_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x30c63fa0 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x30d04a35 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x30d5d5cb xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x30df910c of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x30e94191 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3138d73e sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x315775c9 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x31726ab7 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x317924fa set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x3187490a __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x319fe496 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31abf042 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x31bc2485 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x31d3199b rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x31e8f517 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x31ea3b6d folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x3207d498 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x32096d4d virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x32153dcd fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x321b5a8f fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32274d49 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32804ca8 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x329ccf8c __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32ab9b02 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32f8ecca tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3325205c exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x33307f6f device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3370411d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x337176bf component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x33e76575 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x33e863d9 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x33efc8c8 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x33f90753 is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0x3400e3d1 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x34054baf regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x3407cb0e fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345607e6 gmap_shadow_r3t +EXPORT_SYMBOL_GPL vmlinux 0x346ac93b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x349843d1 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0x34985037 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34fc9e14 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x34ff1022 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x34ff7ac1 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3504a5ca vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353b496c devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x353f10e6 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x354aeb16 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x354ba678 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x355ee271 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35721bdc input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x3575a142 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3584114e alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x3586f653 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x358897d3 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x359e5c71 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x359f5926 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x359fa704 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x35a3fce6 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x35c378fa sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x35ddfdf5 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x35e941a6 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x35fe7899 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x35fe9873 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x3607c5d7 sthyi_fill +EXPORT_SYMBOL_GPL vmlinux 0x36091103 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x360f7240 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x3614cfdc pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x361f297b sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3629938c kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x3638f3d6 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x364354ba rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x366f4f4e rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x36765b56 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x367b5f12 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x36896897 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36c80c36 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x36d339e7 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x36e41a27 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x36e5f104 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x36f6a9a1 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x371484f8 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3761d215 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x37647241 gmap_unregister_pte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3786ad9d phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x37915bcc pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x379a2474 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37d114ac subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x37e68130 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x37faa694 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x380a45d8 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x380b8cca phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x380ffa25 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x3824b14b restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x38280e7f rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x38493a8b idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0x386d6eff crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x38846835 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38ad1926 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x38b91860 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x38c8d84e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x38dc89f9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x38e0a29f __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x38e12d3b transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38eba61f iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x38eba883 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x38fbc25c tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x390cfd8c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x39106fe7 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3914795a ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x3915a411 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x395774c9 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x39579087 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x397f7803 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x397fc12e page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x398bc1fc sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39bc5d83 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39cf0ef6 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39e47926 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a51cf87 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a54c272 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a609f52 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x3a68b9a4 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x3a705954 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a792fc8 disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x3a8c3770 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x3a8c9f4c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x3a9247c3 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aac566c misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x3ab4baa3 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3acb2775 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x3ae03d40 xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x3ae6618e blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3aec5c99 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x3b3651d1 cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b3c01b2 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3b403ed0 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b65ac54 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3b8cfbd4 zpci_aipb +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bc067f4 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x3bcb8552 virtqueue_enable_cb_delayed +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 0x3bf848af inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x3bfacf14 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x3c07d8bb __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c23ede3 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x3c268bb5 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x3c351e49 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c41c3b6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x3c4b73c2 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c6a82e7 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cabb078 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x3cc0f0d4 fwnode_property_read_string_array +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 0x3cf1e72a call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x3d14b183 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d439b1f md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d4b3387 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dc9dc9f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x3dcc244e inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df7a01b kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x3dff3957 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3e0dcfd4 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3e15abc2 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x3e17de6e xas_find +EXPORT_SYMBOL_GPL vmlinux 0x3e18c3e4 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x3e1ca507 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x3e1e1fdd pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x3e344dcf fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x3e697c9c fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3ec2a732 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x3ed73a44 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f041b8f device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x3f04d121 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x3f26762e crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x3f270ab7 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x3f46abfd __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3f69b6a6 css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x3f71636e scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x3f7aa393 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f7e33c2 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8d3ecc do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x3fc6e514 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3fd44ddf subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4002b44a scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x40244390 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x40335514 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4071b517 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407e8086 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x40957b1e console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4099d2a2 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a13568 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a602c2 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x40ac9788 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x40acca5b show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x40ed65e6 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x40f3643f watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x40f5a05a irq_set_chip_and_handler_name +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 0x41142533 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x411fc5c0 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4120d5ea synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x412779cc pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x416ab200 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x417d8076 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418bb531 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x418eb6e1 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x418f6abd fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x41905c23 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x41989110 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x419cad8e percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x41b1a4df bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41d2948d property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x41e62934 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41fa8ffc perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x41fb68cb copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x4204f03b bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x420d8814 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x42269fe9 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x423b04f8 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x423cec19 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x42448746 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x424926e0 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x425a2b37 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x426d9818 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429609d8 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429d4952 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x42b9ab38 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x42c00d62 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430fa18b cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x4321b949 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4323b3e3 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x432a066b ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x432adbfb md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x433ce290 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x433de01c device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x435c0b15 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x435ec5a0 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4388497f xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c33665 isc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43e2e1a0 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x43e9f773 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fb8a0f pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44084b03 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x440be4b9 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x441308e0 task_active_pid_ns +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 0x443ac1fa debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x443bb01e relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44869676 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4487511c devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x449623ec get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x44987827 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e0ccaa zpci_set_irq_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x450164fe ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x4526ff65 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4527ad48 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x453c9fec crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x4541bb6d genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576df51 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x459e944d pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x45b535ef __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45c04efa user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x45d261c1 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45f35d92 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x45f53716 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4629597e devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x46343ebb sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x463858ad iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x4653ccc2 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x4688d367 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46ae3d88 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x46e21106 tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x46f5e1dd fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x46f95b79 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x4705aee5 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x4714ac80 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723dcc3 device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x47441feb devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x474b0f92 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477c023f watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478ab9eb handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479469c6 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x479c5dbb fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x47a21145 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x47a6fed0 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x47ae45f9 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x47b11cae fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x47b6a4ac genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x47b89a5f tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x47ba90f6 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x47d389fd lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x47dac43b devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x47fd8a9c sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x4859364c device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48692590 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48908735 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4898e79d cio_start +EXPORT_SYMBOL_GPL vmlinux 0x48a09202 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x48c0fdea devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48e15b61 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x48e5eb7b blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x48e7c802 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x48ed1f69 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48ed8ef7 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x48f57b53 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x490b0432 driver_attach +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 0x495327f4 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x4969afe8 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49878e87 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499bb94f relay_open +EXPORT_SYMBOL_GPL vmlinux 0x49ae09d8 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49cfeb82 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x49d70fdb device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x49db1581 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea931c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x49f154ab dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x49f5f08a __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4a152be7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a24f10a irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4a2bb41d crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x4a30ec52 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x4a51a3d6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x4a51ae3b relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x4a65cf93 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x4a7f853c crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x4a8c5c65 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4ac67619 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4acf259f ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x4ae0dbe0 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4afcbf16 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x4b05d078 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4b2c1382 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x4b32b1ce fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x4b38443f elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x4b40cab9 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x4b62c83e mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x4b647f78 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x4b9fc158 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x4ba88dcb chsc_sgib +EXPORT_SYMBOL_GPL vmlinux 0x4bc14365 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd89c5a css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be60158 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4c08bd98 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4c152e52 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x4c3d5f66 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x4c516943 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4c56bd15 stack_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4c732d74 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c7ff1ac fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4c896e72 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x4c903cd0 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x4c9d260a crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4ce91483 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d09c3f0 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4d13e4f0 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x4d263dcc debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x4d3511d2 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d688be0 __blkg_prfill_u64 +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 0x4d80cba4 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4da5bdb3 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x4db0ea53 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x4dd0da9c sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de5bc53 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4df3b560 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x4e0c515c pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4e108497 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x4e290090 gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e432e0b gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4e481d34 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e8ee685 ccw_device_get_chpid +EXPORT_SYMBOL_GPL vmlinux 0x4e9f46b9 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb4f31b raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4eedd6f3 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef8b262 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f24fa49 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4f321058 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x4f542fd2 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x4f5e02a0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4f65cf22 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6fb30f devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f91fd51 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x4fa1b57b gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4fa5344b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4faae098 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4fc6ab15 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x4fcc5614 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff61fb3 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5006d60f pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x50191582 ptep_notify +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5080ca5d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509f59c7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x50a1763f component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x50a7218d fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x50aa1ee9 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x50b20e2d dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x50be0b54 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50eabfdf debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x511e189a zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x513090b4 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x513ee8d0 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x514acb51 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x515a4b2e crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x515b93ef devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x5160a242 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x516960bd klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x517a7975 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x5182c8e5 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x51842732 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x51bc139b icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x51c83555 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x51ebb33c scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x51f13794 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x520838d4 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x520f556a cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x5216fc61 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x522a5c9a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x5236497d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x5239b3bb fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x525b8ddd addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x528670d6 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x52870b28 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x52b17c1f genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52c19214 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52d1b9d5 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x53297dec dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x53462491 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x534d8d13 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53826118 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538f1625 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x539355dd fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x53bf3f8f xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53d9d951 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x54062bc9 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x544de702 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5473902f blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x5490f4b2 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549ab46c raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x54aac082 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x54bd83cd irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x54fc17c1 device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x551fc216 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5546f795 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x554d2398 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x556a9ead xas_split +EXPORT_SYMBOL_GPL vmlinux 0x55b05756 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x55b990eb platform_unregister_drivers +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 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x563185b5 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56427660 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x5649d15b fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x565db03d dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x56661849 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x566f1d3d __class_register +EXPORT_SYMBOL_GPL vmlinux 0x567c69fb irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x5698429f pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x569e688b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x56a3bc65 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x56b3d66f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x56d0dc8a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56dc44e0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x56de3603 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x56eee29d pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x56f2607c __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57496113 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x5786e65d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5788f105 sk_msg_return +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 0x57b27781 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x57ba6857 of_css +EXPORT_SYMBOL_GPL vmlinux 0x57bdf4db kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x57c59187 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x57e6e3f2 kvm_s390_gisc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57fe05b9 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x5802d37d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5803bc5a sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x5824ede9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x584599d3 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x585af3cd gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x585e1c69 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x589b4a9b trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x589eb9d5 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x58a9af2d __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x58cd4f1c tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x58dab4ef perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58f31f10 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x58f53f27 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5914eac6 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5916ed71 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x59498fd2 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x594a34c3 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x594af362 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x594cdc5b device_create +EXPORT_SYMBOL_GPL vmlinux 0x594d7fab dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x594fe160 tod_clock_base +EXPORT_SYMBOL_GPL vmlinux 0x59771e68 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x597bb5c4 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x598b077b __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x59aacd2a pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x59b7c718 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f27070 crypto_type_has_alg +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 0x5a3626c1 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x5a37220b cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a54e9ef device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5a593802 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7beb47 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a88b92d device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x5a92a0f0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x5aa0afcf debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5aa5dd7f fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x5aed94fb pci_proc_domain +EXPORT_SYMBOL_GPL vmlinux 0x5aeeab86 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5af59ac2 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5b08a77a dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b4b3974 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x5b674736 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b788576 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x5b99a8ec ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x5b9a589b find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b9db3b4 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x5ba3ca02 iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x5ba63bef property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bcdf815 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd674f4 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf7a3e1 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5bfb2209 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x5c0dec8b __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5c16b252 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x5c1b0a50 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c721914 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c95d189 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x5c9fefdd mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x5cb45b04 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x5cb588c5 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x5cb85b4f debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x5cce7921 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5ce3c4bb gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf94cbd cio_cancel_halt_clear +EXPORT_SYMBOL_GPL vmlinux 0x5d02198d sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x5d0a6968 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x5d1ce338 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5d32eaf0 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d376561 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5d53bbe4 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x5d553f63 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x5d644983 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5d665e2e blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x5d6737f5 irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x5d757271 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dd20c0e serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5dd2739d crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x5dd76e44 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x5ddc19bf acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5e0cd045 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2ee4bf anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e346421 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5e39b993 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x5e436c28 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e591433 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5e5e8c97 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e9d4734 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x5eb417e0 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ed08d76 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f37d9ad do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f478973 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x5f597e6d dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x5f6bce81 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f94bb53 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5f9c9b70 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x5f9f6347 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x5fa4ce72 xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbe9dea gmap_get +EXPORT_SYMBOL_GPL vmlinux 0x5fd09a72 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe14f6c kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x5ff9da03 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x6029efd5 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x60716bd2 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x607a90cb dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608386e9 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x60889f78 dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x608d6569 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x608f30ec mdiobus_modify_changed +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 0x60aec4d3 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x60cd15fa dm_put +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60feb465 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x610e3031 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61458cae sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x61477fa6 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x6177373f rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x618967fa device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x6198dfea __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6199ad5d crypto_has_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x619fd268 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x61aa4d92 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x61ad8659 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x61bd4e87 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61ccd94f phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x61e5f4f6 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61facc22 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x61fc6400 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x61fdac33 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x62251d5a cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0x62266cdb pcie_aspm_enabled +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 0x626dbc65 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x627945ad ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x62864572 gmap_put +EXPORT_SYMBOL_GPL vmlinux 0x6286dcb7 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x62882cd8 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62daa57e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x62e3bd07 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x62e83d12 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x62f1545b get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x62f600df simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x62f92490 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x62fe6b57 ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x6303bbd4 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x631ba529 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x634c6082 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6376b498 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x638a69aa devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6393e79e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x63965481 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x639f1623 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x63b2b35e seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x63c010bf bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x63d3863d sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ee5886 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x640b9d88 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x64322c8c pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x6457e00a gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x645ce727 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x64770384 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x64786375 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x64953be4 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x64ac83b2 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64b3a0dd blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x64bad735 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x64c236cb sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x64c3ad06 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x64c9d85f gmap_read_table +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ea9fdd blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64ff5302 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x65086607 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x651949ce sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x651a000d kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x65218d4a rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x653075fa inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653b79cf gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x65535a8a pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x65888092 __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x65974ecf umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x65a5f6a6 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x65b8461d crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x65c708a8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d5ae41 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x65de3021 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0x660cabdb pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6616d9db devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x662a8c9f fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x665e9b14 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x666093a4 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x6665ae2d blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6695cde5 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x669813c2 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x66ae79a3 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bf0d30 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x66c343e7 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x66d5678c devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66df0d36 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x66e0f656 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x66f06c28 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x67119687 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x6760f209 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x677856a5 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x67886d1f fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x678a6525 smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x67936403 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679fd8dd nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x67c01aec inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67e676aa l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6817bfe0 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6823d995 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x6829c249 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6846c10b scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x685d09ac __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x6868d441 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x68692717 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x686a5baa hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x6881e5ca fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x68834377 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689c67c4 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x68a0c9c1 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68bf2923 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x68c659f8 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x68c6cbc7 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68debf26 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x68e9a2a0 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x68f30a3e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6913865a trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6914da57 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x6917354c ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x692b7f00 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x69305104 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x693a35ba skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x693d2e0f kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x69430629 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x694e22e5 gmap_pmdp_idte_local +EXPORT_SYMBOL_GPL vmlinux 0x69611ee6 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x6977c540 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a2654 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6997dbbb xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x6999ce26 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x69a48579 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x69a73984 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ef18af dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x69f4cacc firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6a0d7bda dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x6a2dd8bc __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a531042 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x6a7369b8 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9b3b3d gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6aaf5c46 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x6abfccfb __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x6ac47487 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6acee083 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6af5b455 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6afe1d5a ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x6aff9474 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6b26b490 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3dac5d devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b69dea8 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x6b703e74 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x6b967292 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb1d997 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd24cd2 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x6be2bb72 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6be6e40d lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x6be9e525 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6bf02ac2 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x6c01f8b7 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c428d6d gmap_shadow_sgt +EXPORT_SYMBOL_GPL vmlinux 0x6c47b6ee io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6c4b39c4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x6c4c1a3b lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x6c4f83a2 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5fcd65 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x6c7cfdb4 user_update +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca9ae46 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6cb546ba bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x6cc7b413 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x6cf8dc4f platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d34fb73 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x6d3d93c0 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6d47699c gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x6d5ce483 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x6d6b6178 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d82c5a9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6db94619 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de3622c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x6dec91f8 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e27550c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5c5f03 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e85a7fb gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6e870f10 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x6e9759f4 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x6eaefcd5 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec7b94c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x6ed446b9 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6ee0f3a7 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x6ee3ca78 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eeeb46a aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6ef3b95c call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6ef4259e fscrypt_set_test_dummy_encryption +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 0x6f1e2e6a gmap_shadow_r2t +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f271615 gmap_shadow_pgt_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f35cc1a crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6f3f24ba debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6f683a71 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6cc524 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6f7857a6 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x6f7ada92 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8b9889 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6faa2027 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x6fc6a016 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd7a7e4 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6fde950a gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x6ff46830 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70102315 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x701922f3 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x70254356 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x703f8c8e fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x70492741 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x706cb56c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7077928c blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x708204e6 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x708c70df clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x70a3c80b __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x70b2119a tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x70c1e8cd vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c3a5b9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70d134cc devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x70de8400 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70f89d53 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7114e45a pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x712ee398 ccw_device_siosl +EXPORT_SYMBOL_GPL vmlinux 0x71457e2e gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7172c5e8 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x7179c31c zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x718b8a4a dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x719c63e4 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a64223 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71cda4ce dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x71db9f1c devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x71f69a66 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x720392e5 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7213e51a bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7222e48c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7223aa50 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x722c169a inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x7236d746 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7259a120 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x7270d289 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x7274f083 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7280a891 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72a28671 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x72bcfb05 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7302eece ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7315ff92 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7355d3f0 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x738ebd1a component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x738ed724 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x73927330 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x73a8aca4 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x73a9e7a3 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x73c93090 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e88499 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x7406b4c9 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x74070b79 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x74155626 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x744606ce tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x745dcf50 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x74680384 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x7471447b class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x748af83e debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x74ac2304 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74e22b47 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x75186fd5 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7524e362 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x7534d2bb devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x7554b896 zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x75632ab9 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x7578c58a devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x75811867 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7585b478 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x75b922a4 zpci_kvm_hook +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 0x76178496 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x76339ae7 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x764060da sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x764fa122 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x76506b5f __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x76780279 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x768750f0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x769471f8 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76b218ba init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x76be10f3 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x76cf8b55 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x76db5b28 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x76e3ed61 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76f9eeb5 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x770f8682 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x77189bb9 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77601d0a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7763e4f9 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x7764b6f3 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x776f6d8f call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x777d74d2 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77c462be pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x77cbcd00 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x77cddbdc crypto_aead_setauthsize +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 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x781a2471 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x7823d2ea __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7823eaa5 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x784bfd91 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cc965 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x785f4d38 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x787e66eb devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78993581 gmap_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a75227 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x78ac4e0b bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x78b0d872 devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x78b1cb59 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x78f334f3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x791adab6 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7926740c devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x792add82 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x79323767 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79470a2c TSS_authhmac +EXPORT_SYMBOL_GPL vmlinux 0x794738ba dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x79910e93 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x79ae80d4 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x79b360f4 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x79b5a328 ccw_device_get_cssid +EXPORT_SYMBOL_GPL vmlinux 0x79c7bb9f dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x79cf8162 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x79d963f2 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x79de26c7 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e1cddc cio_tm_start_key +EXPORT_SYMBOL_GPL vmlinux 0x79e76808 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x79ec24eb kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7a05cd77 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7a10d0ad fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7a124031 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7a278dbd gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x7a5c7c41 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x7a668938 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7a671c19 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x7a767dba access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9b0f72 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x7aa2be70 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x7ab03446 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7ac0ff99 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad30a82 smp_yield_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ae338b1 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x7af40ee0 strp_done +EXPORT_SYMBOL_GPL vmlinux 0x7af6cffb gmap_convert_to_secure +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7b2ee5ac udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b306b20 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b37482a crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7b4785a8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x7b524c91 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x7b5372f7 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b74c829 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x7b82968c switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb30b7b akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7bbc4161 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x7bd6a595 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7be224da blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x7beeb6fd bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x7befe1fa virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x7bfe7e9b badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x7c2736d5 __alloc_pages_bulk +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 0x7c5f7d06 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x7c6f5569 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x7c760ee7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7c85edad fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceeab78 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x7d01160b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0x7d1dc8cc pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x7d293c45 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7d296505 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x7d29d540 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7da21d9c pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7dab896b gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dca4e2e pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7dccbaab devres_find +EXPORT_SYMBOL_GPL vmlinux 0x7dcfe0cd gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb46ac sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x7ddd031d gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7df02783 __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x7df31162 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x7e1ceb85 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x7e1e3623 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7e282e0a pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x7e3240a3 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3f805b sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0x7e46f298 find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7e52cab0 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0x7e5b3b71 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x7e698dda __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb6991b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7eccb72d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ef49e92 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x7ef8eb8d sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f291183 xas_store +EXPORT_SYMBOL_GPL vmlinux 0x7f3cf8da get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x7f5260b4 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x7f557586 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x7f5fdd95 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f7a648c device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7e47ee virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f9e4497 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x7fa03d34 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x7fb0de37 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7fbb2291 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x7fcc791d gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x7fdee4c4 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x7ff26b53 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x80097a17 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x8015fa90 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x8031cbf1 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x80440a31 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x804a5e3a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x804cee0c ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x806807b1 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809b612f fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80be4104 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c964b8 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e7ad76 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x80ec05d8 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x80fb44b1 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x81276b43 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x812ea476 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x815f2309 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816aade8 vtime_account_kernel +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81927a4a dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81dc3a23 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x822f8101 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x8239c618 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8247917a __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8260d06d filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x82800630 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x82813536 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8281f3fe dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0x82903f3d mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x829940bb kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d02309 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x82d467fd __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x83168909 ccw_device_pnso +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8356419c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x835e8e93 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x83675aec regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x83857b16 hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x83aa84da ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x83b8dd85 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x83be7a0a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x83d991d4 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x8406a5ae __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8408c03a dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x842541e4 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842d3b95 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x848482d9 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x84886b3d md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x84978194 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x84a98082 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x84ba4455 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x84badd37 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x84c1c7d8 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x84ce22d0 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x84e566be serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x850e3d31 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x851fe124 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x856487ef ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8566906c bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x85a2d4c2 sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x85cbbeb3 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x85ecac78 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x85f9ec76 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861f67a1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86263563 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x863555f0 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x864011ba tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x864c4f19 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x86755738 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x867b1dd5 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x867ca053 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x867ef109 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8693dcb0 kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x86948426 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x86a442c1 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x86b0b6ba zpci_barrier +EXPORT_SYMBOL_GPL vmlinux 0x86b666d7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x86c5baf7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f3ecbf register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x8703fada l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x873e52c6 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x875efca6 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x876a03a1 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x8772b95b cio_commit_config +EXPORT_SYMBOL_GPL vmlinux 0x877b5b51 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x87a6566e devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0x87d5a8bf dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x87f8ec62 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x881344ca sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x881ce2f5 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x8830d3f4 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8881615c skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x8881b9d5 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x888fb8f7 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x88a84404 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x88ab0f3d fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88dc3a08 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x8904cf00 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x890c2c35 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x8917cf15 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893273d0 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894912e7 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8954dc8e __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x8960e189 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x89a0dfb9 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x89b5d629 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89ea5521 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x8a26cf4b regmap_reinit_cache +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 0x8a66cd97 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a98fe22 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x8a9a9cf0 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x8a9fc810 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac87913 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x8ad3942a scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x8b1531c8 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x8b3792aa srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x8b5df394 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b7d7df1 gmap_make_secure +EXPORT_SYMBOL_GPL vmlinux 0x8b9eefcd crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x8bad4ff4 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x8bc2c840 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8bcaa1a3 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x8bceabde pci_debug_msg_id +EXPORT_SYMBOL_GPL vmlinux 0x8bdc6849 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x8bded20f zpci_load +EXPORT_SYMBOL_GPL vmlinux 0x8bfa4eeb nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x8bfd18e6 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x8bfdc177 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8bfdda3b xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1cea33 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x8c47afca idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8c645590 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x8c668b45 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x8c77e321 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8cb26b6e tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x8cc94d28 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2e726d bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d4d6630 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x8d78f762 gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db68133 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8de1346a phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x8de610bb fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x8dffde40 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x8e257566 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e2c2c2f msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x8e2dfb04 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e473843 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e55e26d nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e904a50 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e999a6e kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x8e9da092 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8eba960f dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x8ec11d01 kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x8ed03d1d fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8ee654a0 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef1c326 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1998ab ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8f26638f bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x8f3443af raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8f51be1b sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8f545bd1 ext_pi_type1_crc64 +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 0x8f857bb7 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8f9ee971 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8fac6007 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8fbbb122 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x8fcaffd2 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8fce7aea yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8fcec47e balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8feed292 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90412ada bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x90437955 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x907a962b vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x9087a3c4 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x908c30db dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x90912a40 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x909a8abf nr_running +EXPORT_SYMBOL_GPL vmlinux 0x909fda42 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x90c24c5d rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90dcfd53 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x90defd85 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x90ef04db kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x9168c83f tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x91703da3 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x92074e3d irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x920b2aa0 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x921f51a0 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x922c4874 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x923efa1a ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9261d1cb gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x92a8d97d gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x92ab908a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x92c1e1a1 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x92cf5cc6 bpf_prog_get_type_dev +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 0x92ec1357 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x93185dfb fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932bcafb bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x933c5254 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x935464eb register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x936395dc fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x936c7caf perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x937a92af securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9381e9e7 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x938de1a6 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x93925b2a ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x93bad9c3 cio_cancel +EXPORT_SYMBOL_GPL vmlinux 0x93bb9846 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x93bcfe69 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x93cee9a9 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x93d4e0aa iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x93d8b1d3 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f85010 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x93fbe86f get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x94111646 fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x9417ff94 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x941e03fa cio_clear +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942945c0 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x9436e93e blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x947009fa pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x94746335 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949bc32c get_state_synchronize_srcu +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 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x95801fa1 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x9582e64d net_selftest +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 0x959b46b9 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x95a49194 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x95a81fd2 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x95a87c01 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x95ac75df device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x95b9c3eb crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95fbf777 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x96031776 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x962926eb pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x962b5435 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x96344459 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x9649d21e clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965811e0 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x967788f3 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x96dcc695 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x96e1fe6f platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x96e67c2b badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x96f622cc device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9723d4ea crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x97286546 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x97295fc6 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x973d9070 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9747fca4 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977480ca net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x97a43a4c skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x97a69e3a devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x97ae16bf subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97b6f364 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x97ba23ba synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x97d1314d dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e4026a fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x980275e1 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9806e497 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98190c32 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983c3ff3 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9858382e devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c2bdd8 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x98c2fa16 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x98d553fa regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x98dbd7f6 component_add +EXPORT_SYMBOL_GPL vmlinux 0x98e40fcc lwtunnel_get_encap_size +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 0x993ebac7 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x993fc577 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x998e174e chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x99c310a3 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x99c4ae5b iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e9ec0f device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f4591c key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9a01c103 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2627ac ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x9a26eb05 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x9a27bc1e screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x9a5237ff ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x9a74d817 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9aa33b9f inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9aa5c938 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x9ab9f014 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x9ac14a96 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9ac63600 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x9ac8e21a iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x9ad3de36 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b887b18 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b88c932 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x9b8ce461 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9bb0f16c unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0x9bcd024a gmap_shadow_pgt +EXPORT_SYMBOL_GPL vmlinux 0x9bd6ef86 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be7a8df fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c088c11 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9c2c9056 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x9c5274fb gmap_remove +EXPORT_SYMBOL_GPL vmlinux 0x9c550fca peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c582f4a mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c71eeec pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9c8ea938 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x9caf4a41 device_register +EXPORT_SYMBOL_GPL vmlinux 0x9cc1a160 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x9cd28c0f ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cfb46d0 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d3508da crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9d69ac91 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x9d83a250 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9dab3d70 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x9dc63153 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9df4a2a8 idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x9df620c9 sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x9e018752 pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0x9e197f84 chsc_scud +EXPORT_SYMBOL_GPL vmlinux 0x9e281055 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x9e28a028 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x9e3611de crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e567f2e fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9e5ff2b6 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x9e7a9a4f bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9e853c2e tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ea58b56 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x9eab9836 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x9eb1f2d2 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x9ec054d5 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee5ef4c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x9eea6f62 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef0a0ec pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x9f01e03a nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f05573b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x9f177ac3 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x9f23eb39 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f46b65c fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x9f499f97 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x9f4da1a6 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x9f56c4b9 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9f65d827 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9f9e9f2f __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9fae6ad2 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9faf48fd dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe43097 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9fe7032d vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0xa01a8af6 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xa0370b5e elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0743a29 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d4376c virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0xa0dd7e0d fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0xa0e02b62 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0e6087b genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa111e665 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xa16740e6 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa179a866 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xa1891205 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa1b465f0 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xa1b52a09 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa1c3bbaa platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1c87495 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xa1ce249f device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa1f40104 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa1f60014 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa231f2a3 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa234dc9e regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa259b66a nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xa26bed8e bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2873dea split_page +EXPORT_SYMBOL_GPL vmlinux 0xa28ab2c9 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xa2b0820d __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2d1d173 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xa2d9495a uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa2dec81c component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e9028f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xa32d207b pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xa3425c35 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xa351dc2d blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xa35a0aa5 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa35d1fdc anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa3687f21 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0xa3702939 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xa3757177 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3865b1f dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa39ddf75 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa39e70a4 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xa3b0d5d6 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xa3b417c3 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c80cf7 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xa3cc1e8a __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f0c760 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa419cbc6 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa4212b89 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xa42389e9 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0xa42af350 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44eed0c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa47ff45b is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xa4a05a01 devlink_dpipe_entry_ctx_append +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 0xa4ef6b49 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa4f82370 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xa53d075b devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xa5476436 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa54a899a devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0xa54bd2cd regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa55314ab security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xa5745f0c gmap_mark_unmergeable +EXPORT_SYMBOL_GPL vmlinux 0xa58b18ca pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xa5b23a03 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa5c00a0a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa5cf6280 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa61e4de7 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xa61f1d20 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0xa651de67 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa69bbe8e register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xa6a7a071 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6aff672 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6b957ee blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0xa6c8bf88 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa6d6d6a6 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa6d7ecd8 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6edcf90 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa7226f25 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa74311f7 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xa75fd3ab freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa77cec0f crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xa7901745 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xa796d51c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa7a4de20 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xa7ac1568 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa7c3b559 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xa7c7db34 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xa7f642d0 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa8153543 kvm_s390_gisc_register +EXPORT_SYMBOL_GPL vmlinux 0xa8383b37 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86cf25d pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa88cb0c2 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa89a237f sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa8af38b9 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0xa8c6e050 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0xa8d2a1a4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xa931d8c3 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94e40f5 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xa9545df3 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9657147 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa9790aa6 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa97c05dd xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa98b9c7f blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa98d1f76 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xa9948d8a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99db9f2 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9b0c818 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa9d0ab1f trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xa9d9822c user_read +EXPORT_SYMBOL_GPL vmlinux 0xa9da2420 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa9f25176 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa353e9b regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xaa357d0e strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xaa3de3c3 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xaa46a075 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xaa61de11 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xaa676d1a exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7d5e8c sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaade8223 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xaaeabdde decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xaaf600f2 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xaafa5482 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xab0a268b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xab15ee30 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xab209c45 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xab20c64b espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xab2d75c8 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xab3d5068 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xab472c90 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xab5e2d4e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xab89a6b8 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xaba626bb gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xaba84d19 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xabb6b6b8 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xabc52292 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd2b46c sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xabe23aee devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xabf7e33a crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xac014d5c pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xac0c4788 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xac22fc8e crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xac4f6f0a blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xac5a789c trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xac5c82e1 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xac6a7486 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xac6addf4 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xac8913dc free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xac9b3f7b tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xaca025d6 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xacad6586 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaccf41fb phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xacde3cf9 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xace5a539 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xaceccc17 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xacffe3a0 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xad212c04 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad3012a0 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad401a24 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xad428aca irq_chip_get_parent_state +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 0xad70b12c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad896cbd css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad8dff18 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad961199 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xae0c29e4 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae496125 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xae55d2db cio_start_key +EXPORT_SYMBOL_GPL vmlinux 0xae5c6c3b devm_init_badblocks +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 0xae80739e sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaebfaeea metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xaf06f2ef fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xaf0e0871 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xaf170a62 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xaf2cdd49 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaf34daf6 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xaf353ca8 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf5aaceb platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xaf85dff3 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf962ea9 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xaf97df8d attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xafc7a41d hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xafeb7eda gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb000d0d4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb011e55d shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb0248553 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb04402e9 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb047af05 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb05be0dc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xb06741c2 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb068cb3e nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb083398e fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb085d21e msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0ca3f84 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xb0dd94c5 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xb0deb0cb __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb0e938c4 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xb1022ee1 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xb10240da crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12aac7a fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xb1334cd6 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xb1478c15 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0xb15b552a sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb171fb42 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xb1753a56 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xb186ddd0 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xb1b1c93e atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1b4c373 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb1b6bc49 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ebb75b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xb1f184bc __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2087383 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xb20d92e4 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb2338ec6 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb239b95f xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0xb23db1e2 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2671fec pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb267ec2e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27f62cc ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xb29a0126 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb2a1d33a register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xb2b5367d iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c3a00e fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xb2e368fa driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb2f39d96 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xb2fd253c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb32378cb inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xb352f400 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xb356137b ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb3977097 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb3b66fdd udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xb3bb796e fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xb3bf3773 gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0xb3dbfed4 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xb3faa89d bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb40290f3 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb408ad0c scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb4339edb iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0xb43893fd user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4431356 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb447935f driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb46fbe0b klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb4a899a0 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd2a88 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xb4dd94bd set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb4e6d9b6 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4edb989 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb4f43647 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xb4fa8c18 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xb505b30d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xb535ccdb gmap_shadow_page +EXPORT_SYMBOL_GPL vmlinux 0xb545519c crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb574d391 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xb57bfee1 skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb5bce0f8 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xb5dd1398 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xb6088146 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xb6096629 device_add +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb638d818 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb654cd93 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0xb65976a9 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xb65f7d37 pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb68dc8d5 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6ac0ec8 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb6b41fb5 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xb6de0347 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xb72b3040 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb730ef83 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7874378 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7a7195e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb7b03eea crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xb7b350ed klist_init +EXPORT_SYMBOL_GPL vmlinux 0xb7b81a0b tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7ea07df umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xb813dd36 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xb82f1a91 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xb85482ae iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xb856b040 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb86a4df5 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xb879f4d4 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xb87f6451 irq_domain_get_irq_data +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 0xb8a456b7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d8fb79 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb9092000 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb93a6a2e zpci_write_block +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96a81c6 gmap_shadow_valid +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9b95590 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb9bcfadd gmap_sync_dirty_log_pmd +EXPORT_SYMBOL_GPL vmlinux 0xb9c0cd94 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f8de49 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0xba29c824 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xba6b73f9 zpci_aif_sbv +EXPORT_SYMBOL_GPL vmlinux 0xba79e75b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xba96530f crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xbab211b8 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xbabbfbbd __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbafc3ee4 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1da5fa skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xbb1f14af devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb328966 mmput +EXPORT_SYMBOL_GPL vmlinux 0xbb32e49b css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0xbb4442ec crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbb46039e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb64fa86 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7b3f80 chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb812723 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xbb82b09a iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0xbbac5557 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xbbc3e62d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbd08681 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbbe8521e uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xbbe8a248 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbbff1ee6 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbbff81f8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbc0e23b0 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xbc298889 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xbc34c345 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc488b57 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xbc4c4bcc trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xbc524b26 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7071de iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xbc75cbdb crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xbc7ae0f6 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0xbc94fc9a ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0xbc959ec1 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xbcab16db raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xbcba083d component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc1b70c ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcf53c33 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xbd368131 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd60e623 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xbd63d128 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xbd6da0ab kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8bc288 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0xbdad913e __put_net +EXPORT_SYMBOL_GPL vmlinux 0xbdb0cca9 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbdb1888e xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc96ac2 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbdec0cf8 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xbdf15423 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xbe17f47f vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xbe64fa57 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7e5dd4 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xbe93269c tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebaea78 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xbebedeba event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xbec59cbc fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xbecee6f3 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xbee0803e _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0aaf51 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xbf122850 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xbf158f2a fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xbf2987e3 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf36aa33 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf55ff2f pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xbf66b201 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf6eeff2 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xbfcb3815 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff42628 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbffa1bfe fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0xbffb3a8c anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0xc002c88f __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc00383b7 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xc00df838 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xc022093b irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xc03173bb dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xc045988c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc04b6fe0 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xc04b9ecd free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc04fb4d6 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xc087101b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc0975fef sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc09d3e8c devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xc0a12880 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0a5c3b7 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc0a5ecea fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c2b49c gmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc0d880a5 dma_resv_test_signaled +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 0xc132c453 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc1360411 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xc13d75a9 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xc14eb3a7 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc15565b7 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc16e7f59 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xc1a41fcf virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xc1db6f92 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xc1edf1ac freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc1efb218 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2369a10 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xc23ac9bf inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc23eb589 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc240c5c4 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xc241a09f inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xc24adb6f serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xc264e50e pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc27f0333 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc2904d85 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xc2a3eb61 device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2b9773a __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c4a37b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xc32d4dd5 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc32e3bdf debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xc33e9fe2 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc36812ee validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc36eccbf devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3756c82 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3bcf05b fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0xc3c3a2b1 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc3c3dcb0 unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d1c770 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc3dddf01 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3eb36c9 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xc3f99379 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc405fcd3 badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xc41a0c51 chsc_ssqd +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc43a86e8 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xc440fa27 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc480eb84 appldata_diag +EXPORT_SYMBOL_GPL vmlinux 0xc4810203 nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0xc48f7eb5 is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a7b88e fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xc4c9c75a synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xc4d7cd01 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc4da04a2 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xc4e94f9a cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f11349 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xc4f65e12 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc506ee4c nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xc51535fa tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xc51ba197 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xc53ba24f atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc53cd7e4 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0xc55f7841 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5653b47 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc5721ce9 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xc57252b8 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58537d6 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xc5865f4b fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xc594f1a7 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xc5a05ebf ping_close +EXPORT_SYMBOL_GPL vmlinux 0xc5a76604 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc5d23547 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc618d89a crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xc61b9839 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xc64d82f1 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc650835f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc662d101 n_tty_inherit_ops +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 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a1c079 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xc6f6d4c9 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xc70218ab encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xc702a59b regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xc7048038 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xc71176f3 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xc73c3f09 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xc744643f regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xc74a9160 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc755c93f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0xc75faeb0 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0xc76364f8 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc78c9ecd input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a4730b fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7febd15 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xc80acfca chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc824f9d8 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc8a70150 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xc8aaf1c0 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xc8b6a2d0 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e08d88 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xc90207dc bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xc90dda47 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9363eb8 ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xc94572ed task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xc9483f2e gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc94f07f3 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9593570 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc97113c4 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xc97b8fc8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc996fcd2 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc99c2583 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9b09253 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xc9b206bb gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xc9db9202 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xc9e80c8a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca163f67 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xca2211c7 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xca398e2b tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca5227ba fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xca541308 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xca5aeb95 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca867d0a netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9bfa9e dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xcaa6a33c pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0xcaaffd1a debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xcad29180 pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xcaf5fd3f devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xcb1804dd msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xcb41a54a l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcb45abbb put_device +EXPORT_SYMBOL_GPL vmlinux 0xcb4cf56b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xcb5090e8 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb56481e devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xcb6b0ab2 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0xcb90dac8 get_device +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc3f54e5 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcc3fe181 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xcc581e0f noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xcc5ab50b scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xcc5da3b9 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc7bea7e key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xcc8e0d88 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xccba524f pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xccc68a72 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xccc7c935 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xcccdf26b gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xccce5883 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd0d999d crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd279dcc kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcd2b4819 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd2c1012 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd715cac ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xcd77b526 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcd87df6e msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd991602 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb34b05 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbe89be synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0xcdc74edd dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce040861 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xce09b710 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce939a70 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xce941f58 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xce974d24 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xcea41753 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xcedf5c45 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xceeb39f0 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xcf0afbfb copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xcf28f55e trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xcf2b2394 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xcf4aa8d2 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xcf4b1427 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xcf675ef3 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xcf8354cf iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xcf842893 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xcfaeadaf klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xcfb7e605 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xcfbad1d6 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xcfc2486b device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xd02c43e6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd0301f07 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd04949c0 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd04abd67 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd0644e05 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06e89fe virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd07ce816 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xd08d0a9a gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd091ad74 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xd0a4da16 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd0b7c11d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c07ec3 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd0cafbab udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xd0cb3ff4 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0f01dbd wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xd0f22001 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd0f98001 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xd1165dee regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd1343e72 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xd13fac44 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd162232a tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd177d04a tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xd17a5dd2 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd1897b18 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1cac238 s390_replace_asce +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cb96be __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd207646e file_is_kvm +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 0xd220908b blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xd220f880 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xd23b471f css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26e4c50 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd278e154 __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd29fc900 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd3034428 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xd303c7c9 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd30e695f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xd3176952 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd3376148 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xd34150a0 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xd372350f pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd37af18f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xd399869e phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xd39bb312 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b55106 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd3b950e1 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd3bb2b2a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd3d544fd perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xd3d80c51 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xd3ddea85 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xd3e3289a fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3f18783 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd42bbbc6 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd43aafb5 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd44c850f mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xd45916ad badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xd4596f10 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xd462b338 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0xd4692149 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xd47db3c6 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4a4108e fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd4b357b4 iomap_writepages +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 0xd4d68a5f __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xd4f18b3f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xd4fb3639 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xd4fe23f1 sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0xd509e5e6 dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xd526c739 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd562a13c fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd56aceda gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xd57ae76e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xd591fac2 s390_pci_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5964f38 ptep_test_and_clear_uc +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59aaa41 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xd5be476b tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xd5be4b47 proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xd5e1a9e1 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xd5fdfd1f pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xd60d9660 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xd61adc51 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd63b5069 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd653b126 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xd65ecbb2 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xd66fd78a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6799e05 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xd679a444 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd68609a7 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xd6d65b7f security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd71d99fe serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0xd728c358 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72ee47c kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xd7343efc scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd73e2603 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd7493a47 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xd76430db fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd79f0aaf dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd7a5a4a9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xd7ada496 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd7adfd2a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd7c27636 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xd7d23b43 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7dc7515 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd7ee577b fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0xd7fa3079 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0xd7ff85ad iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xd7ffb4d9 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xd811d6a2 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd8229088 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0xd824d3df crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85ab0b9 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xd8935c8a __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xd896ad31 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd8b0a137 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xd8bc2b70 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd8c7a17e __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xd8f10c72 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd8fa8472 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd9060876 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xd906d15b __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd916b4ed blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xd9181bdb wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd91ecf0a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd926f732 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xd9287b2c gmap_mprotect_notify +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd93132f4 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xd933439e irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xd9633828 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97c9c6d __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0xd9920393 arch_make_page_accessible +EXPORT_SYMBOL_GPL vmlinux 0xd99e6078 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd9b8cfda alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xd9c3f8ec fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d7a7ce regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9f56676 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd9ffb8b4 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda12d543 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda4cf18f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xda6f01a5 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xda8afbf6 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdaa7e154 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdadc9280 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0xdadf734b sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaffae38 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdb08ac64 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xdb0e51ac fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xdb7d2eee pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb9b1a69 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdba32fd3 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xdba57a87 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xdbc8ce3c fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xdbcbfb40 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0688d5 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0xdc135d84 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc1d0907 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xdc28053f pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc69193b synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0xdc6bac0d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xdc841b74 misc_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdc951d6e device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcaa68b4 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xdcb2188b ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xdcb738da __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xdcba6151 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xdcc0a6b6 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdcd31577 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdcde984d finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xdcf68ef1 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xdcfa7643 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd286d41 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xdd2c540a __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xdd2e18fa driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd5957a9 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd88df09 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdd8f8527 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcf85e1 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xddd93577 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde052e95 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde43791a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xde4d67a7 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xde63abcf kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xde676640 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde8295cf pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xde9380da fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xdee946eb fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xdee9f4dd fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xdeeeb509 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xdefd3581 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdf0d4df4 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf102946 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2f3a09 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xdf4ac293 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xdf4bc67b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf4c2ffe scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xdf50e243 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdf53eb90 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xdf53ef52 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xdf636506 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xdf67de22 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xdf801fe2 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf882e90 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0xdf9bc82b sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xdfa79328 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfc0246e iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdfc43ba9 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfe4eaf4 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xdff192e2 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xdff99e9b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xdffd3161 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xe007f4a9 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe00becbf xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe0420867 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06ad0bc iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xe0833863 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xe0839bdd perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0952475 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe0ad0e07 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe0af4abc nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xe0cea8a3 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xe0f93464 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe11e7555 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xe149c4a3 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe177997c pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe186c9fe mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe1961650 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1e2184e virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0xe1f37437 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe24e2773 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xe258d4da mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xe260adef pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xe2700c12 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xe2793c73 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe2997ce5 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe29ec5f0 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2bb0fc5 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xe2f21bc1 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe307205a bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe3074ef9 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3176fae sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xe31d93a3 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0xe325380a blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xe3488a48 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xe3698718 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe37f5757 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3d67d72 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xe3d724c3 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41fbf5d query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe41fce97 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe451d2f3 xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xe4529cd3 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xe45f2fe2 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49b7dd1 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xe4a95266 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b4bd8f pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c7af1a raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0xe4c9dfd5 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe50c5cf1 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xe519954b iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0xe53a6a05 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xe54e31a4 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xe5510e82 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe557b6b1 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe56cc888 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe59ca0fe bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe5ab96ed irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5afdc9a blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0xe5cfdbfa fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xe5ea741c fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0xe5f2d2bb get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe618db05 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe64dc1f4 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe6564f72 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xe67344d9 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xe674c573 gmap_shadow +EXPORT_SYMBOL_GPL vmlinux 0xe688edca io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0xe6b014e8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xe6e20c70 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e8bef5 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xe719b935 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xe72e844b __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7553ba5 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe7849a53 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xe7906796 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7aa9865 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xe7b718df chsc_determine_channel_path_desc +EXPORT_SYMBOL_GPL vmlinux 0xe7bd7d83 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7c9d18d pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e977d2 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe7f2bc62 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xe7fb8539 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xe7fc47f4 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xe8300fde iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xe83a0ffe lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0xe856106d bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xe8715bd0 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe88115a9 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xe88168d4 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xe8889761 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe89e6585 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe8ab5923 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8d60a80 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xe8e7f5be thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xe8f77567 sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0xe9073dc7 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe920731c platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xe92ad011 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe92b7630 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe942ccd2 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xe96a0441 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe999dda7 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe99bec62 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe9b84f5a dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0xe9c8a9d1 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xe9d247be rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe9eebe1f __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea066330 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xea0c0fa8 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea29eb1a blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0xea327021 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea7aede1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xea937b9a __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xea9ac050 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeaa45e0b crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xeab4bfe9 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xeac4bdf1 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xeac524fc fuse_do_ioctl +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 0xeb317ee6 __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xeb41becf driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xeb496f37 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb6325b9 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xeb69e625 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xeb6c670c bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xeb6f82ac ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0xeb78a360 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xeb81098c sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xeb9a96e1 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xebdf4491 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xec0246e5 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec18300e perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0xec371532 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xec3732e8 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0xec98b620 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xeccd5eb1 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xed08cabd __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0xed1108a4 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xed188358 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xed2d9bee xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xed48a163 __zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0xed64191b class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xed679bb5 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xed77928c crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xed7c39e5 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed9051e3 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xed90d898 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xed97b156 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xedae9ee9 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xedb9db16 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xedf55abb zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xee06c587 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee284d73 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xee3451c1 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee61b493 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xee6c633a devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xee8198c2 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xeea834c0 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0xeec4029b sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xef050d9f device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef131cb9 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xef274c46 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xef442724 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef549679 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef70eb7e ring_buffer_iter_advance +EXPORT_SYMBOL_GPL vmlinux 0xef7d6224 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefab9f3b ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xefb6a1a5 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xefc62b6a trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0xefdc97d5 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xefef182b bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf00f77fd noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xf026ec40 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xf036dc4a debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xf0486277 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xf04f291d dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf080db15 xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0xf0898d7f kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xf089b612 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0ac38e5 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf0ad1283 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf0d8cce1 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf0f2d8f1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0xf0fc66b4 device_del +EXPORT_SYMBOL_GPL vmlinux 0xf101c303 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf102c0de tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf10e5b15 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xf1139217 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xf126b288 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf144d2be rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf14ecc3d crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf167aa0c crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf198d634 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xf19e202f devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf1b918d3 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xf1e4c4ba device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xf1f2f6cb tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf1fd5267 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xf21b4e2a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf227860e pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xf23ac2a0 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xf2501d50 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xf2662931 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0xf27809d2 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2b2e360 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b393ea __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xf2ce740c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf2ce862e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2d00767 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xf2d8b6b2 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xf2e8dae5 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xf2f68aa7 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2fc9248 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf321cffe ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf37b583c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3cb7676 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf3cf86f4 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf3d28ac7 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xf3ed98e9 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xf42ab557 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xf4374122 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xf466d537 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf473b3a7 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4ed648b unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf50261a3 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xf505bbf0 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xf50e192e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf513aa50 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf5223683 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xf536954b anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xf546212b kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553db56 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf5792e17 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a1669c simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c3174f bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xf5e3fee9 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5fff299 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf61f3c12 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xf62c5ae7 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xf64e8d39 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf657be8f __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xf6632a7e __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf6721978 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xf685fd60 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xf68c9498 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf698f34e tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xf6ab5fe2 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c296b2 crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d272c7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf6d768c3 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xf6f2c6f3 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf70e0f2f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf70fd8b2 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf74f210b __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xf77af2be kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7875392 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xf7a09fdd regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7bd60e3 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf7d23694 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xf7de8124 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf7f021cf class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xf7ff825d regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf81994a2 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83d66e1 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xf83e946e pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0xf8461f67 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf84d6b4c bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xf84fdf36 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf855ccce __zpci_store +EXPORT_SYMBOL_GPL vmlinux 0xf85fb5e3 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xf8620649 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xf8638fb6 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0xf871a532 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf886084c vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xf89d2b93 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf8b0b08f firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xf8c3dc85 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xf8c7cd7b __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf8e90fc2 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xf8f598b3 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xf9012551 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf9516b7a iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96ecc78 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xf9718867 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b49e68 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xfa102628 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xfa1588c5 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xfa16fcf9 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2872f2 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xfa3282e9 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xfa5c30f4 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xfa5f2bbb vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa890dfa devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xfaa3201d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfaabc444 __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xfaaf82de iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfabc9dc9 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xfad37ea4 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfb073628 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xfb0d78b7 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb43d644 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfb5cb000 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xfb8c43c1 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xfbaa10ef device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfbb37783 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfbbcf6ce rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd0eec3 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfbd5be9f sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xfbf9953c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0a7376 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc1ebe60 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xfc2b1bfe css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfc2bcf93 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc4c2352 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfc587008 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xfc5aa797 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xfc6837e1 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfc771215 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xfc7b56fd appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc997e3a bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xfca60ebc xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcaa1133 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xfcbfccdb pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfce4ce8d nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xfcf3a9b0 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xfcf9187a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa622f msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xfd2a481e lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd39848a fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xfd4bb4f3 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xfd57aea6 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd5cecf1 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfd5f0fc8 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xfd71cbcf xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfd8ac79c blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xfd921da7 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfda7e164 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbeddb2 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xfdda2dce ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xfdfefb5e __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xfe01e7e2 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe2c5d8a simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfe2d7aac pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0xfe36b9bd find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xfe433284 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5ce0f1 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe992f5a pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xfea8f006 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xfed7d8d2 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee3d75b crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfee6add7 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xfef0c886 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff0340d0 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff11ea7a fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xff403774 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xff793177 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xff7a2f70 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xff7ce883 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff81a705 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff8cbf4b rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffd3f66c scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xffd9e5e4 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xffe80b6b mptcp_token_get_sock +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x2af376d4 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b131549 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4a0d3577 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa32213b2 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa65b98cc nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb99b425c nvme_execute_passthru_rq drivers/nvme/host/nvme-core +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x46ed53c1 firmware_request_builtin vmlinux diff --git a/debian.hwe-5.19/abi/s390x/generic.compiler b/debian.hwe-5.19/abi/s390x/generic.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.hwe-5.19/abi/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.hwe-5.19/abi/s390x/generic.modules b/debian.hwe-5.19/abi/s390x/generic.modules new file mode 100644 index 000000000000..f506ef41d9ae --- /dev/null +++ b/debian.hwe-5.19/abi/s390x/generic.modules @@ -0,0 +1,974 @@ +8021q +842 +842_compress +842_decompress +9p +9pnet +9pnet_fd +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 +amt +ansi_cprng +appldata_mem +appldata_net_sum +appldata_os +aquantia +arp_tables +arpt_mangle +arptable_filter +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_rsvp +cls_rsvp6 +cls_u32 +cmac +coda +cordic +cortina +crc-itu-t +crc32-vx_s390 +crc32_generic +crc4 +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 +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 +drbd +drm +drm_kms_helper +drm_panel_orientation_quirks +drm_shmem_helper +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 +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 +gpio-sim +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 +libpoly1305 +libsas +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 +memory-notifier-error-inject +mena21_wdt +mfd-core +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_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_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 +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 +regmap-i2c +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 +serial_core +serpent_generic +sfp +sha1_s390 +sha256_s390 +sha3_256_s390 +sha3_512_s390 +sha3_generic +sha512_s390 +sha_common +shiftfs +simple-mfd-i2c +siox-bus-gpio +siox-core +sit +siw +slicoss +slim-qcom-ctrl +slimbus +sm2_generic +sm3 +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_vtpm_proxy +trace-printk +ts_bm +ts_fsm +ts_kmp +tsnep +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 +zunicode +zzstd diff --git a/debian.hwe-5.19/abi/s390x/generic.retpoline b/debian.hwe-5.19/abi/s390x/generic.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.hwe-5.19/abi/s390x/generic.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.hwe-5.19/abi/version b/debian.hwe-5.19/abi/version new file mode 100644 index 000000000000..935947dcd0ea --- /dev/null +++ b/debian.hwe-5.19/abi/version @@ -0,0 +1 @@ +5.19.0-43.44~22.04.1 diff --git a/debian.hwe-5.19/changelog b/debian.hwe-5.19/changelog new file mode 100644 index 000000000000..c52b0c82fbe8 --- /dev/null +++ b/debian.hwe-5.19/changelog @@ -0,0 +1,27831 @@ +linux-hwe-5.19 (5.19.0-44.45~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-44.45~22.04.1 -proposed tracker (LP: #2019826) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + + [ Ubuntu: 5.19.0-44.45 ] + + * kinetic/linux: 5.19.0-44.45 -proposed tracker (LP: #2019827) + * Linux 5.19 amdgpu: NULL pointer on GCN2 and invalid load on GCN1 + (LP: #2018470) + - drm/amdgpu: Fix for BO move issue + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * conntrack mark is not advertised via netlink (LP: #2016269) + - netfilter: ctnetlink: revert to dumping mark regardless of event type + * 5.19 not reporting cgroups v1 blkio.throttle.io_serviced (LP: #2016186) + - SAUCE: blk-throttle: Fix io statistics for cgroup v1 + * [SRU] Backport request for hpwdt from upstream 6.1 to Jammy (LP: #2008751) + - watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems. + - watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING + - [Config] Add arm64 option to CONFIG_HP_WATCHDOG + * vmwgfx fails to reserve graphics buffer on aarch64 leading to blank display + (LP: #2007001) + - SAUCE: Revert "video/aperture: Disable and unregister sysfb devices via + aperture helpers" + * Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores (256) + (LP: #2012335) + - ice: Allow operation with reduced device MSI-X + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + * [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup time is + taking longer than expected (LP: #2008527) + - cpufreq: ACPI: Defer setting boost MSRs + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + * Kinetic update: upstream stable patchset 2023-05-08 (LP: #2018948) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ARM: OMAP2+: Fix memory leak in realtime_counter_init() + - arm64: dts: qcom: qcs404: use symbol names for PCIe resets + - arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: meson-gx: Fix Ethernet MAC address unit name + - arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name + - arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address + - arm64: dts: msm8992-bullhead: add memory hole region + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY + - arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe node + - arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names + - arm64: dts: meson: remove CPU opps below 1GHz for G12A boards + - ARM: OMAP1: call platform_device_put() in error case in + omap1_dm_timer_init() + - ARM: bcm2835_defconfig: Enable the framebuffer + - ARM: s3c: fix s3c64xx_set_timer_source prototype + - arm64: dts: ti: k3-j7200: Fix wakeup pinmux range + - ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato + - ARM: imx: Call ida_simple_remove() for ida_simple_get + - arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible + - arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names + property + - arm64: dts: amlogic: meson-gx: add missing unit address to rng node name + - arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node + name + - arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name + - arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names + - arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name + - arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name + - arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip + - locking/rwsem: Disable preemption in all down_read*() and up_read() code + paths + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - sched/rt: pick_next_rt_entity(): check list_entry + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - arm64: dts: qcom: pmk8350: Specify PBS register for PON + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - wifi: rsi: Fix memory leak in rsi_coex_attach() + - wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave() + - wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: libertas: fix memory leak in lbs_init_adapter() + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix btf__align_of() by taking into account field offsets + - wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: ipw2200: fix memory leak in ipw_wdev_init() + - wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() + - wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() + - wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() + - wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave() + - wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave() + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - ACPICA: Drop port I/O validation for some regions + - genirq: Fix the return type of kstat_cpu_irqs_sum() + - rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose + - rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls + - rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() + - lib/mpi: Fix buffer overrun when SG is too long + - crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 + - ACPICA: nsrepair: handle cases without a return value correctly + - thermal/drivers/tsens: Drop msm8976-specific defines + - thermal/drivers/tsens: Sort out msm8976 vs msm8956 data + - thermal/drivers/tsens: fix slope values for msm8939 + - thermal/drivers/tsens: limit num_sensors to 9 for msm8939 + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - ath9k: htc: clean up statistics macros + - wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails + - wifi: ath9k: Fix potential stack-out-of-bounds write in + ath9k_wmi_rsp_callback() + - wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup + - wifi: cfg80211: Fix extended KCK key length check in + nl80211_set_rekey_data() + - ACPI: battery: Fix missing NUL-termination with large strings + - crypto: ccp - Failure on re-initialization due to duplicate sysfs filename + - crypto: essiv - Handle EBUSY correctly + - crypto: seqiv - Handle EBUSY correctly + - powercap: fix possible name leak in powercap_register_zone() + - x86/microcode: Print previous version of microcode after reload + - x86/microcode: Add a parameter to microcode_check() to store CPU + capabilities + - x86/microcode: Check CPU capabilities after late microcode update correctly + - x86/microcode: Adjust late loading result reporting message + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - net/mlx5: Enhance debug print in page allocation failure + - irqchip: Fix refcount leak in platform_irqchip_probe + - irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains + - irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe + - irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe + - s390/mem_detect: fix detect_memory() error handling + - s390/vmem: fix empty page tables cleanup under KASAN + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - OPP: fix error checking in opp_migrate_dentry() + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - s390/ap: fix status returned by ap_aqic() + - s390/ap: fix status returned by ap_qact() + - libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() + - rds: rds_rm_zerocopy_callback() correct order for list_add_tail() + - crypto: rsa-pkcs1pad - Use akcipher_request_complete + - m68k: /proc/hardware should depend on PROC_FS + - RISC-V: time: initialize hrtimer based broadcast clock event device + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - selftests/bpf: Fix out-of-srctree build + - ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models + - ACPI: resource: Do IRQ override on all TongFang GMxRGxx + - crypto: crypto4xx - Call dma_unmap_page when done + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - thermal/drivers/hisi: Drop second sensor hi3660 + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - bpf: Fix global subprog context argument resolution logic + - irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts + - irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts + - selftests/net: Interpret UDP_GRO cmsg data as an int value + - l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() + - net: bcmgenet: fix MoCA LED control + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - [Config] updateconfigs for DRM_MXSFB + - drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC + - drm/bridge: megachips: Fix error handling in i2c_register_driver() + - drm/vkms: Fix memory leak in vkms_init() + - drm/vkms: Fix null-ptr-deref in vkms_release() + - drm/vc4: dpi: Add option for inverting pixel clock and output enable + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/hdmi: Add missing check for alloc_ordered_workqueue + - pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins + - pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain + - pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 + - drm/vc4: hdmi: Correct interlaced timings again + - drm/msm: clean event_thread->worker in case of an error + - scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/msm/gem: Add check for kmalloc + - drm/msm/dpu: Disallow unallocated resources to be returned + - drm/bridge: lt9611: fix sleep mode setup + - drm/bridge: lt9611: fix HPD reenablement + - drm/bridge: lt9611: fix polarity programming + - drm/bridge: lt9611: fix programming of video modes + - drm/bridge: lt9611: fix clock calculation + - drm/bridge: lt9611: pass a pointer to the of node + - drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness + - drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags + - drm/msm/dsi: Allow 2 CTRLs on v2.5.0 + - drm/msm: use strscpy instead of strncpy + - drm/msm/dpu: Add check for cstate + - drm/msm/dpu: Add check for pstates + - drm/msm/mdp5: Add check for kzalloc + - pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() + - pinctrl: mediatek: Initialize variable pullen and pullup to zero + - pinctrl: mediatek: Initialize variable *buf to zero + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() + - drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd + - drm/mediatek: Use NULL instead of 0 for NULL pointer + - drm/mediatek: Drop unbalanced obj unref + - drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc + - drm/mediatek: Clean dangling pointer on bind error path + - ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() + - gpio: vf610: connect GPIO label to dev name + - spi: dw_bt1: fix MUX_MMIO dependencies + - ASoC: mchp-spdifrx: fix controls which rely on rsr register + - ASoC: mchp-spdifrx: fix return value in case completion times out + - ASoC: mchp-spdifrx: fix controls that works with completion mechanism + - ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() + - ASoC: rsnd: fixup #endif position + - ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() + - ASoC: dt-bindings: meson: fix gx-card codec node regex + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - drm/amdgpu: fix enum odm_combine_mode mismatch + - scsi: mpt3sas: Fix a memory leak + - scsi: aic94xx: Add missing check for dma_map_single() + - HID: multitouch: Add quirks for flipped axes + - HID: retain initial quirks set up when creating HID devices + - ASoC: codecs: lpass: fix incorrect mclk rate + - spi: bcm63xx-hsspi: Fix multi-bit mode setting + - hwmon: (mlxreg-fan) Return zero speed for broken fan + - ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init + - dm: remove flush_scheduled_work() during local_exit() + - nfs4trace: fix state manager flag printing + - NFS: fix disabling of swap + - spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() + - ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared + - HID: bigben: use spinlock to protect concurrent accesses + - HID: bigben_worker() remove unneeded check on report_field + - HID: bigben: use spinlock to safely schedule workers + - hid: bigben_probe(): validate report count + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - nfsd: fix race to check ls_layouts + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf tools: Fix auto-complete on aarch64 + - sparc: allow PM configs for sparc32 COMPILE_TEST + - printf: fix errname.c list + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - mfd: cs5535: Don't build on UML + - mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() + - dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 + - [Config] updateconfigs for HISI_DMA + - dmaengine: HISI_DMA should depend on ARCH_HISI + - iio: light: tsl2563: Do not hardcode interrupt trigger type + - usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() + - i2c: designware: fix i2c_dw_clk_rate() return size to be u32 + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - kobject: modify kobject_get_path() to take a const * + - kobject: Fix slab-out-of-bounds in fill_kobj_path() + - alpha/boot/tools/objstrip: fix the check for ELF header + - media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() + - coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR + - coresight: cti: Prevent negative values of enable count + - coresight: cti: Add PM runtime call in enable_store + - ACPI: resource: Add helper function acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count + - PCI/IOV: Enlarge virtfn sysfs name buffer + - PCI: switchtec: Return -EFAULT for copy_to_user() errors + - tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() + - tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown() + - serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() + - Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in + set_protocol" + - eeprom: idt_89hpesx: Fix error handling in idt_init() + - applicom: Fix PCI device refcount leak in applicom_init() + - firmware: stratix10-svc: add missing gen_pool_destroy() in + stratix10_svc_drv_probe() + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - driver core: fix resource leak in device_add() + - drivers: base: transport_class: fix possible memory leak + - drivers: base: transport_class: fix resource leak when + transport_add_device() fails + - firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - usb: early: xhci-dbc: Fix a potential out-of-bound memory access + - tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case + - RDMA/cxgb4: add null-ptr-check after ip_dev_find() + - usb: musb: mediatek: don't unregister something that wasn't registered + - usb: gadget: configfs: Restrict symlink creation is UDC already binded + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() + - usb: max-3421: Fix setting of I/O pins + - RDMA/irdma: Cap MSIX used to online CPUs + 1 + - serial: fsl_lpuart: fix RS485 RTS polariy inverse issue + - tty: serial: imx: Handle RS485 DE signal active high + - tty: serial: imx: disable Ageing Timer interrupt request irq + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - phy: rockchip-typec: fix tcphy_get_mode error case + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Allow to use flush-queue when first level is default + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers + - media: ti: cal: fix possible memory leak in cal_ctx_create() + - media: platform: ti: Add missing check for devm_regulator_get + - powerpc: Remove linker flag from KBUILD_AFLAGS + - s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64 + - builddeb: clean generated package content + - media: max9286: Fix memleak in max9286_v4l2_register() + - media: ov2740: Fix memleak in ov2740_init_controls() + - media: ov5675: Fix memleak in ov5675_init_controls() + - media: i2c: ov772x: Fix memleak in ov772x_probe() + - media: i2c: imx219: Split common registers from mode tables + - media: i2c: imx219: Fix binning for RAW8 capture + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: i2c: ov7670: 0 instead of -EINVAL was returned + - media: usb: siano: Fix use after free bugs caused by do_submit_urb + - media: saa7134: Use video_unregister_device for radio_dev + - rpmsg: glink: Avoid infinite loop on intent for missing channel + - udf: Define EFSCORRUPTED error code + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() + - rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks + - rcu: Suppress smp_processor_id() complaint in + synchronize_rcu_expedited_wait() + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - wifi: ath11k: debugfs: fix to work with multiple PCI devices + - thermal: intel: Fix unsigned comparison with less than zero + - timers: Prevent union confusion from unexpected restart_syscall() + - x86/bugs: Reset speculation control settings on init + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: mt7601u: fix an integer underflow + - inet: fix fast path in __inet_hash_connect() + - ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB + - ice: add missing checks for PF vsi type + - ACPI: Don't build ACPICA with '-Os' + - thermal: intel: intel_pch: Add support for Wellsburg PCH + - clocksource: Suspend the watchdog temporarily when high read latency + detected + - crypto: hisilicon: Wipe entire pool on error + - net: bcmgenet: Add a check for oversized packets + - m68k: Check syscall_trace_enter() return code + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup + - ACPI: video: Fix Lenovo Ideapad Z570 DMI match + - net/mlx5: fw_tracer: Fix debug print + - coda: Avoid partial allocation of sig_inputArgs + - uaccess: Add minimum bounds check on kernel buffer size + - s390/idle: mark arch_cpu_idle() noinstr + - time/debug: Fix memory leak with using debugfs_lookup() + - PM: domains: fix memory leak with using debugfs_lookup() + - PM: EM: fix memory leak with using debugfs_lookup() + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - scm: add user copy checks to put_cmsg() + - drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h + write + - drm/amd/display: Fix potential null-deref in dm_resume + - drm/omap: dsi: Fix excessive stack usage + - HID: Add Mapping for System Microphone Mute + - drm/tiny: ili9486: Do not assume 8-bit only SPI controllers + - drm/radeon: free iio for atombios when driver shutdown + - scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write + - Revert "fbcon: don't lose the console font across generic->chip driver + switch" + - drm: amd: display: Fix memory leakage + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - docs/scripts/gdb: add necessary make scripts_gdb step + - ASoC: soc-compress: Reposition and add pcm_mutex + - ASoC: kirkwood: Iterate over array indexes instead of using pointer math + - regulator: max77802: Bounds check regulator id against opmode + - regulator: s5m8767: Bounds check id indexing into arrays + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - scsi: snic: Fix memory leak with using debugfs_lookup() + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - dm thin: add cond_resched() to various workqueue loops + - dm cache: add cond_resched() to various workqueue loops + - nfsd: zero out pointers after putting nfsd_files on COPY setup error + - drm/shmem-helper: Revert accidental non-GPL export + - wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu + - firmware: coreboot: framebuffer: Ignore reserved pixel color bits + - block: don't allow multiple bios for IOCB_NOWAIT issue + - rtc: pm8xxx: fix set-alarm race + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - s390/extmem: return correct segment type in __segment_load() + - s390: discard .interp section + - s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler + - s390/kprobes: fix current_kprobe never cleared after kprobes reenter + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - btrfs: hold block group refcount during async discard + - locking/rwsem: Prevent non-first waiter from spinning in down_write() + slowpath + - ksmbd: fix wrong data area length for smb2 lock request + - ksmbd: do not allow the actual frame length to be smaller than the rfc1002 + length + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - hfs: fix missing hfs_bnode_get() in __hfs_bnode_create + - fs: hfsplus: fix UAF issue in hfsplus_put_super + - exfat: fix reporting fs error when reading dir beyond EOF + - exfat: fix unexpected EOF while reading dir + - exfat: redefine DIR_DELETED as the bad cluster number + - exfat: fix inode->i_blocks for non-512 byte sector size device + - fs: dlm: don't set stop rx flag after node reset + - fs: dlm: move sending fin message into state change handling + - fs: dlm: send FIN ack back in right cases + - f2fs: fix information leak in f2fs_move_inline_dirents() + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - selftests/landlock: Skip overlayfs tests when not supported + - selftests/landlock: Test ptrace as much as possible with Yama + - udf: Truncate added extents on failed expansion + - udf: Do not bother merging very long extents + - udf: Do not update file length for failed writes to inline files + - udf: Preserve link count of system files + - udf: Detect system inodes linked into directory hierarchy + - udf: Fix file corruption when appending just after end of preallocated + extent + - RDMA/siw: Fix user page pinning accounting + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - KVM: s390: disable migration mode when dirty tracking is disabled + - x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) + - x86/crash: Disable virt in core NMI crash handler to avoid double shootdown + - x86/reboot: Disable virtualization in an emergency if SVM is supported + - x86/reboot: Disable SVM, not just VMX, when stopping CPUs + - x86/kprobes: Fix __recover_optprobed_insn check optimizing logic + - x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe + range + - x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter + - x86/microcode/AMD: Add a @cpu parameter to the reloading functions + - x86/microcode/AMD: Fix mixed steppings support + - x86/speculation: Allow enabling STIBP with legacy IBRS + - Documentation/hw-vuln: Document the interaction between IBRS and STIBP + - brd: return 0/-error from brd_insert_page() + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: mark task TASK_RUNNING before handling resume/task work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring/rsrc: disallow multi-source reg buffers + - io_uring: remove MSG_NOSIGNAL from recvmsg + - io_uring/poll: allow some retries for poll triggering spuriously + - ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() + - ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC + - jbd2: fix data missing when reusing bh which is ready to be checkpointed + - ext4: optimize ea_inode block expansion + - ext4: refuse to create ea block when umounted + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - wifi: rtl8xxxu: Use a longer retry limit of 48 + - wifi: ath11k: allow system suspend to survive ath11k + - wifi: cfg80211: Fix use after free for wext + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node + - ARM: dts: exynos: correct TMU phandle in Exynos4210 + - ARM: dts: exynos: correct TMU phandle in Exynos4 + - ARM: dts: exynos: correct TMU phandle in Odroid XU3 family + - ARM: dts: exynos: correct TMU phandle in Exynos5250 + - ARM: dts: exynos: correct TMU phandle in Odroid XU + - ARM: dts: exynos: correct TMU phandle in Odroid HC1 + - fuse: add inode/permission checks to fileattr_get/fileattr_set + - rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails + - ceph: update the time stamps and try to drop the suid/sgid + - alpha: fix FEN fault handling + - dax/kmem: Fix leak of memory-hotplug resources + - mips: fix syscall_get_nr + - media: ipu3-cio2: Fix PM runtime usage_count in driver unbind + - remoteproc/mtk_scp: Move clk ops outside send_lock + - docs: gdbmacros: print newest record + - mm: memcontrol: deprecate charge moving + - mm/thp: check and bail out if page in deferred queue already + - ktest.pl: Give back console on Ctrt^C on monitor + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - scsi: qla2xxx: Fix link failure in NPIV environment + - scsi: qla2xxx: Check if port is online before sending ELS + - scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests + - scsi: qla2xxx: Remove unintended flag clearing + - scsi: qla2xxx: Fix erroneous link down + - scsi: qla2xxx: Remove increment of interface err cnt + - scsi: ses: Don't attach if enclosure has no components + - scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() + - scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses + - scsi: ses: Fix possible desc_ptr out-of-bounds accesses + - scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() + - RISC-V: add a spin_shadow_stack declaration + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv, mm: Perform BPF exhandler fixup on page fault + - riscv: ftrace: Remove wasted nops for !RISCV_ISA_C + - riscv: ftrace: Reduce the detour code size to half + - MIPS: DTS: CI20: fix otg power gpio + - PCI/PM: Observe reset delay irrespective of bridge_d3 + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/edid: fix AVI infoframe aspect ratio handling + - qede: avoid uninitialized entries in coal_entry array + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - wifi: ath9k: use proper statements in conditionals + - kbuild: Port silent mode detection to future gnu make. + - arm64: dts: qcom: sm6350: Fix up the ramoops node + - arm64: dts: mediatek: mt8192: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8195: Fix systimer 13 MHz clock description + - x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC + - arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node + - arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name + - arm64: tegra: Fix duplicate regulator on Jetson TX1 + - arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken + - arm64: dts: meson: radxa-zero: allow usb otg mode + - arm64: dts: mt8195: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7986: Fix watchdog compatible + - ARM: dts: stm32: Update part number NVMEM description on stm32mp131 + - blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait + - blk-mq: Fix potential io hung for shared sbitmap per tagset + - arm64: dts: qcom: sm8350: drop incorrect cells from serial + - arm64: dts: qcom: msm8953: correct TLMM gpio-ranges + - block: Fix io statistics for cgroup in throttle path + - wifi: mt76: mt7915: add missing of_node_put() + - wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host + - wifi: mt76: mt7915: check return value before accessing free_block_num + - wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() + - wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() + - wifi: rtw89: 8852c: rfk: correct DACK setting + - wifi: rtw89: 8852c: rfk: correct DPK settings + - wifi: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() + - libbpf: Fix invalid return address register in s390 + - kselftest/arm64: Fix syscall-abi for systems without 128 bit SME + - workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex + - s390/early: fix sclp_early_sccb variable lifetime + - s390/vfio-ap: fix an error handling path in vfio_ap_mdev_probe_queue() + - x86/signal: Fix the value returned by strict_sas_size() + - wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie() + - wifi: rtw89: Add missing check for alloc_workqueue + - s390/bpf: Add expoline to tail calls + - wifi: iwlwifi: mei: fix compilation errors in rfkill() + - kselftest/arm64: Fix enumeration of systems without 128 bit SME + - can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses + - wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after + init_work + - wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit + - wifi: mt76: add memory barrier to SDIO queue kick + - cpufreq: davinci: Fix clk use after free + - net: ipa: generic command param fix + - crypto: octeontx2 - Fix objects shared between several modules + - tools/lib/thermal: Fix thermal_sampling_exit() + - selftests/bpf: Fix map_kptr test. + - net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() + - net: lan966x: Fix possible deadlock inside PTP + - net/mlx4_en: Introduce flexible array to silence overflow warning + - drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() + - drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 + - scsi: qla2xxx: edif: Fix clang warning + - scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 + - habanalabs: bugs fixes in timestamps buff alloc + - dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp- + ccorr + - ASoC: topology: Properly access value coming from topology file + - regmap: apply reg_base and reg_downshift for single register ops + - hwmon: (asus-ec-sensors) add missing mutex path + - [Config] updateconfigs for SND_HDA_CTL_DEV_ID + - ALSA: hda: Fix the control element identification for multiple codecs + - ASoC: qcom: q6apm-lpass-dai: unprepare stream if its already prepared + - ASoC: qcom: q6apm-dai: fix race condition while updating the position + pointer + - ASoC: qcom: q6apm-dai: Add SNDRV_PCM_INFO_BATCH flag + - nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open + - NFSD: copy the whole verifier in nfsd_copy_write_verifier + - cifs: use tcon allocation functions even for dummy tcon + - tools/tracing/rtla: osnoise_hist: use total duration for average calculation + - perf test bpf: Skip test if kernel-debuginfo is not present + - perf record: Fix segfault with --overwrite and --max-size + - RDMA/hns: Fix refcount leak in hns_roce_mmap + - mei: pxp: Use correct macros to initialize uuid_le + - misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() + - driver core: location: Free struct acpi_pld_info *pld before return false + - PCI: mt7621: Delay phy ports initialization + - driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links + - mtd: mtdpart: Don't create platform device that'll never probe + - usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev + - PCI: Fix dropping valid root bus resources with .end = zero + - dmaengine: ptdma: check for null desc before calling pt_cmd_callback + - RDMA/rxe: Fix missing memory barriers in rxe_queue.h + - media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in + imx7_csi_init() + - media: camss: csiphy-3ph: avoid undefined behavior + - media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers + - rpmsg: glink: Release driver_override + - block: clear bio->bi_bdev when putting a bio back in the cache + - block: be a bit more careful in checking for NULL bdev while polling + - ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms' + - io_uring: Replace 0-length array with flexible array + - io_uring: fix fget leak when fs don't support nowait buffered read + - scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization + - scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info() + - scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi + - ksmbd: fix possible memory leak in smb2_lock() + - f2fs: fix kernel crash due to null io->bio + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - KVM: x86: Don't inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled + - KVM: x86: Don't inhibit APICv/AVIC if xAPIC ID mismatch is due to 32-bit ID + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - virt/sev-guest: Return -EIO if certificate buffer is not large enough + - ima: fix error handling logic when file measurement failed + - irqdomain: Refactor __irq_domain_alloc_irqs() + - irqdomain: Fix mapping-creation race + - mm/damon/paddr: fix missing folio_put() + - cxl/pmem: Fix nvdimm registration races + - cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies + - hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation + - hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() + - ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node + - [Config] updateconfigs for HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON + - arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP + - panic: fix the panic_print NMI backtrace setting + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - scsi: aacraid: Allocate cmd_priv with scsicmd + - riscv: Avoid enabling interrupts in die() + - PCI: Unify delay handling for reset and resume + - bus: mhi: ep: Only send -ENOTCONN status if client driver is available + - bus: mhi: ep: Move chan->lock to the start of processing queued ch ring + - bus: mhi: ep: Save channel state locally during suspend and resume + - iommu/vt-d: Fix PASID directory pointer coherency + - vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915: Don't use BAR mappings for ring buffers with LLC + * CVE-2022-4269 + - act_mirred: use the backlog for nested calls to mirred ingress + - net/sched: act_mirred: better wording on protection against excessive stack + growth + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * CVE-2023-1859 + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + * CVE-2023-1670 + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Luke Nowakowski-Krijger Tue, 30 May 2023 12:47:26 -0700 + +linux-hwe-5.19 (5.19.0-43.44~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-43.44~22.04.1 -proposed tracker (LP: #2019605) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + [ Ubuntu: 5.19.0-43.44 ] + + * kinetic/linux: 5.19.0-43.44 -proposed tracker (LP: #2019606) + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Roxana Nicolescu Fri, 19 May 2023 16:45:36 +0200 + +linux-hwe-5.19 (5.19.0-42.43~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-42.43~22.04.1 -proposed tracker (LP: #2016502) + + [ Ubuntu: 5.19.0-42.43 ] + + * kinetic/linux: 5.19.0-42.43 -proposed tracker (LP: #2016503) + * selftest: fib_tests: Always cleanup before exit (LP: #2015956) + - selftest: fib_tests: Always cleanup before exit + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + * Kinetic update: upstream stable patchset 2023-04-10 (LP: #2015812) + - drm/etnaviv: don't truncate physical page address + - wifi: rtl8xxxu: gen2: Turn on the rate control + - drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink + - clk: mxl: Switch from direct readl/writel based IO to regmap based IO + - clk: mxl: Remove redundant spinlocks + - clk: mxl: Add option to override gate clks + - clk: mxl: Fix a clk entry by adding relevant flags + - powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G + - clk: mxl: syscon_node_to_regmap() returns error pointers + - random: always mix cycle counter in add_latent_entropy() + - KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception + - KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid + - can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len + - powerpc: dts: t208x: Disable 10G on MAC1 and MAC2 + - powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned + - powerpc/64s/radix: Fix RWX mapping with relocated kernel + - uaccess: Add speculation barrier to copy_from_user() + - wifi: mwifiex: Add missing compatible string for SD8787 + - audit: update the mailing list in MAINTAINERS + - ext4: Fix function prototype mismatch for ext4_feat_ktype + - Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" + - bpf: add missing header file include + - wifi: ath11k: fix warning in dma_free_coherent() of memory chunks while + recovery + - sched/psi: Stop relying on timer_pending() for poll_work rescheduling + - docs: perf: Fix PMU instance name of hisi-pcie-pmu + - randstruct: disable Clang 15 support + - ionic: refactor use of ionic_rx_fill() + - Fix XFRM-I support for nested ESP tunnels + - arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc + - ARM: dts: rockchip: add power-domains property to dp node on rk3288 + - HID: elecom: add support for TrackBall 056E:011C + - ACPI: NFIT: fix a potential deadlock during NFIT teardown + - btrfs: send: limit number of clones and allocated memory size + - ASoC: rt715-sdca: fix clock stop prepare timeout issue + - IB/hfi1: Assign npages earlier + - neigh: make sure used and confirmed times are valid + - HID: core: Fix deadloop in hid_apply_multiplier. + - x86/cpu: Add Lunar Lake M + - bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state + - net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues(). + - vc_screen: don't clobber return value in vcs_read + - scripts/tags.sh: fix incompatibility with PCRE2 + - usb: dwc3: pci: add support for the Intel Meteor Lake-M + - USB: serial: option: add support for VW/Skoda "Carstick LTE" + - usb: gadget: u_serial: Add null pointer check in gserial_resume + - USB: core: Don't hold device lock while reading the "descriptors" sysfs file + * Kinetic update: upstream stable patchset 2023-04-06 (LP: #2015511) + - ARM: dts: imx: Fix pca9547 i2c-mux node name + - ARM: dts: vf610: Fix pca9548 i2c-mux node names + - arm64: dts: freescale: Fix pca954x i2c-mux node names + - arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI + - firmware: arm_scmi: Clear stale xfer->hdr.status + - bpf: Skip task with pid=1 in send_signal_common() + - erofs/zmap.c: Fix incorrect offset calculation + - blk-cgroup: fix missing pd_online_fn() while activating policy + - HID: playstation: sanity check DualSense calibration data. + - dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - extcon: usbc-tusb320: fix kernel-doc warning + - net: fix NULL pointer in skb_segment_list + - net: mctp: purge receive queues on sk destruction + - firewire: fix memory leak for payload of request subaction to IEC 61883-1 + FCP region + - bus: sunxi-rsb: Fix error handling in sunxi_rsb_init() + - ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use + - bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers + - ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path() + - bpf: Fix to preserve reg parent/live fields when copying range info + - bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener + - arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX + - drm/vc4: hdmi: make CEC adapter name unique + - scsi: Revert "scsi: core: map PQ=1, PDT=other values to + SCSI_SCAN_TARGET_PRESENT" + - vhost/net: Clear the pending messages when the backend is removed + - WRITE is "data source", not destination... + - READ is "data destination", not source... + - fix iov_iter_bvec() "direction" argument + - fix "direction" argument of iov_iter_kvec() + - ice: Prevent set_channel from changing queues while RDMA active + - qede: execute xdp_do_flush() before napi_complete_done() + - virtio-net: execute xdp_do_flush() before napi_complete_done() + - dpaa_eth: execute xdp_do_flush() before napi_complete_done() + - dpaa2-eth: execute xdp_do_flush() before napi_complete_done() + - sfc: correctly advertise tunneled IPv6 segmentation + - net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices + - block, bfq: replace 0/1 with false/true in bic apis + - block, bfq: fix uaf for bfqq in bic_set_bfqq() + - netrom: Fix use-after-free caused by accept on already connected socket + - drm/i915/guc: Fix locking when searching for a hung request + - drm/i915/adlp: Fix typo for reference clock + - netfilter: br_netfilter: disable sabotage_in hook after first suppression + - squashfs: harden sanity check in squashfs_read_xattr_id_table + - net: phy: meson-gxl: Add generic dummy stubs for MMD register access + - ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local + address + - ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local + address + - riscv: kprobe: Fixup kernel panic when probing an illegal position + - igc: return an error if the mac type is unknown in + igc_ptp_systim_to_hwtstamp() + - can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate + - ata: libata: Fix sata_down_spd_limit() when no link speed is reported + - selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning + - selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided + - selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy + benchmarking + - virtio-net: Keep stop() to follow mirror sequence of open() + - net: openvswitch: fix flow memory leak in ovs_flow_cmd_new + - efi: fix potential NULL deref in efi_mem_reserve_persistent + - i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU + - i2c: mxs: suppress probe-deferral error message + - scsi: target: core: Fix warning on RT kernels + - perf/x86/intel: Add Emerald Rapids + - scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress + - scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress + - i2c: rk3x: fix a bunch of kernel-doc warnings + - platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF + - net/x25: Fix to not accept on connected socket + - drm/amd/display: Fix timing not changning when freesync video is enabled + - iio: adc: stm32-dfsdm: fill module aliases + - usb: dwc3: qcom: enable vbus override when in OTG dr-mode + - usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait + - vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF + - fbcon: Check font dimension limits + - net: qrtr: free memory on error path in radix_tree_insert() + - watchdog: diag288_wdt: do not use stack buffers for hardware data + - watchdog: diag288_wdt: fix __diag288() inline assembly + - ALSA: hda/realtek: Add Acer Predator PH315-54 + - efi: Accept version 2 of memory attributes table + - iio: hid: fix the retval in accel_3d_capture_sample + - iio: hid: fix the retval in gyro_3d_capture_sample + - iio: adc: berlin2-adc: Add missing of_node_put() in error path + - iio:adc:twl6030: Enable measurements of VUSB, VBAT and others + - iio: imu: fxos8700: fix ACCEL measurement range selection + - iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix IMU data bits returned to user space + - iio: imu: fxos8700: fix map label of channel type to MAGN sensor + - iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix incorrect ODR mode readback + - iio: imu: fxos8700: fix failed initialization ODR mode assignment + - iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN + - iio: imu: fxos8700: fix MAGN sensor scale and unit + - nvmem: qcom-spmi-sdam: fix module autoloading + - parisc: Fix return code of pdc_iodc_print() + - parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case + - riscv: disable generation of unwind tables + - mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps + - usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints + - kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup() + - x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses + - fpga: stratix10-soc: Fix return value check in s10_ops_write_init() + - mm/swapfile: add cond_resched() in get_swap_pages() + - highmem: round down the address passed to kunmap_flush_on_unmap() + - Squashfs: fix handling and sanity checking of xattr_ids count + - drm/i915: Fix potential bit_17 double-free + - nvmem: core: initialise nvmem->id early + - nvmem: core: remove nvmem_config wp_gpio + - nvmem: core: fix cell removal on error + - serial: 8250_dma: Fix DMA Rx completion race + - serial: 8250_dma: Fix DMA Rx rearm race + - phy: qcom-qmp-combo: fix memleak on probe deferral + - phy: qcom-qmp-usb: fix memleak on probe deferral + - phy: qcom-qmp-combo: fix broken power on + - phy: qcom-qmp-combo: fix runtime suspend + - iio:adc:twl6030: Enable measurement of VAC + - powerpc/imc-pmu: Revert nest_init_lock to being a mutex + - fs/ntfs3: Validate attribute data and valid sizes + - ovl: Use "buf" flexible array for memcpy() destination + - fbdev: smscufx: fix error handling code in ufx_usb_probe + - f2fs: fix to do sanity check on i_extra_isize in is_alive() + - wifi: brcmfmac: Check the count value of channel spec to prevent out-of- + bounds reads + - gfs2: Cosmetic gfs2_dinode_{in,out} cleanup + - gfs2: Always check inode size of inline inodes + - bpf: Skip invalid kfunc call in backtrack_insn + - ASoC: Intel: sof_es8336: Drop reference count of ACPI device after use + - ASoC: Intel: avs: Implement PCI shutdown + - bpf: Add missing btf_put to register_btf_id_dtor_kfuncs + - arm64: dts: imx8mm-verdin: Do not power down eth-phy + - vhost-scsi: unbreak any layout for response + - skb: Do mix page pool and page referenced frags in GRO + - net: wwan: t7xx: Fix Runtime PM initialization + - fscache: Use wait_on_bit() to wait for the freeing of relinquished volume + - drm/i915: Fix request ref counting during error capture & debugfs dump + - drm/i915: Fix up locking around dumping requests lists + - ALSA: firewire-motu: fix unreleased lock warning in hwdep device + - sctp: do not check hb_timer.expires when resetting hb_timer + - can: mcp251xfd: mcp251xfd_ring_set_ringparam(): assign missing + tx_obj_num_coalesce_irq + - rtc: sunplus: fix format string for printing resource + - certs: Fix build error when PKCS#11 URI contains semicolon + - hv_netvsc: Fix missed pagebuf entries in netvsc_dma_map/unmap() + - ARM: dts: imx7d-smegw01: Fix USB host over-current polarity + - can: isotp: split tx timer into transmission and timeout + - can: isotp: handle wait_event_interruptible() return values + - iio: adc: xilinx-ams: fix devm_krealloc() return value check + - iio: imx8qxp-adc: fix irq flood when call imx8qxp_adc_read_raw() + - nvmem: brcm_nvram: Add check for kzalloc + - nvmem: sunxi_sid: Always use 32-bit MMIO reads + - Revert "mm: kmemleak: alloc gray object for reserved region with direct map" + - mm: memcg: fix NULL pointer in mem_cgroup_track_foreign_dirty_slowpath() + - usb: typec: ucsi: Don't attempt to resume the ports before they exist + - usb: gadget: udc: do not clear gadget driver.bus + - mm/uffd: fix pte marker when fork() without fork event + - migrate: hugetlb: check for hugetlb shared PMD in node migration + - drm/i915: Avoid potential vm use-after-free + - nvmem: core: fix device node refcounting + - powerpc/64s/radix: Fix crash with unaligned relocated kernel + - powerpc/64s: Fix local irq disable when PMIs are disabled + - btrfs: limit device extents to the device size + - btrfs: zlib: zero-initialize zlib workspace + - ALSA: hda/realtek: Add Positivo N14KP6-TG + - ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9 + - tracing: Fix poll() and select() do not work on per_cpu trace_pipe and + trace_pipe_raw + - of/address: Return an error when no valid dma-ranges are found + - can: j1939: do not wait 250 ms if the same addr was already claimed + - xfrm: compat: change expression for switch in xfrm_xlate64 + - IB/hfi1: Restore allocated resources on failed copyout + - xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr() + - IB/IPoIB: Fix legacy IPoIB due to wrong number of queues + - RDMA/irdma: Fix potential NULL-ptr-dereference + - RDMA/usnic: use iommu_map_atomic() under spin_lock() + - xfrm: fix bug with DSCP copy to v6 from v4 tunnel + - net: phylink: move phy_device_free() to correctly release phy device + - bonding: fix error checking in bond_debug_reregister() + - net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY + - ionic: clean interrupt before enabling queue to avoid credit race + - uapi: add missing ip/ipv6 header dependencies for linux/stddef.h + - ice: Do not use WQ_MEM_RECLAIM flag for workqueue + - net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware + - net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol + 802.1Q" + - net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change + - net/mlx5: Bridge, fix ageing of peer FDB entries + - net/mlx5e: IPoIB, Show unknown speed instead of error + - net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers + - net/mlx5: fw_tracer, Zero consumer index when reloading the tracer + - net/mlx5: Serialize module cleanup with reload and remove + - igc: Add ndo_tx_timeout support + - rds: rds_rm_zerocopy_callback() use list_first_entry() + - selftests: forwarding: lib: quote the sysctl values + - ALSA: pci: lx6464es: fix a debug loop + - riscv: stacktrace: Fix missing the first frame + - ASoC: topology: Return -ENOMEM on memory allocation failure + - pinctrl: mediatek: Fix the drive register definition of some Pins + - pinctrl: aspeed: Fix confusing types in return value + - pinctrl: single: fix potential NULL dereference + - spi: dw: Fix wrong FIFO level setting for long xfers + - pinctrl: intel: Restore the pins that used to be in Direct IRQ mode + - cifs: Fix use-after-free in rdata->read_into_pages() + - net: USB: Fix wrong-direction WARNING in plusb.c + - mptcp: be careful on subflow status propagation on errors + - btrfs: free device in btrfs_close_devices for a single device filesystem + - usb: core: add quirk for Alcor Link AK9563 smartcard reader + - usb: typec: altmodes/displayport: Fix probe pin assign check + - clk: ingenic: jz4760: Update M/N/OD calculation algorithm + - ceph: flush cap releases when the session is flushed + - riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte + - powerpc/64s/interrupt: Fix interrupt exit race with security mitigation + switch + - rtmutex: Ensure that the top waiter is always woken up + - arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive + - arm64: dts: meson-g12-common: Make mmc host controller interrupts level- + sensitive + - arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive + - Fix page corruption caused by racy check in __free_pages + - drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini + - drm/i915: Initialize the obj flags for shmem objects + - drm/i915: Fix VBT DSI DVO port handling + - x86/speculation: Identify processors vulnerable to SMT RSB predictions + - KVM: x86: Mitigate the cross-thread return address predictions bug + - Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions + - hv_netvsc: Allocate memory in netvsc_dma_map() with GFP_ATOMIC + - xfrm: annotate data-race around use_time + - of: Make OF framebuffer device names unique + - cpufreq: qcom-hw: Fix cpufreq_driver->get() for non-LMH systems + - net: microchip: sparx5: fix PTP init/deinit not checking all ports + - drm/virtio: exbuf->fence_fd unmodified on interrupted wait + - ice: Fix disabling Rx VLAN filtering with port VLAN enabled + - ice: switch: fix potential memleak in ice_add_adv_recipe() + - net/mlx5e: Fix crash unsetting rx-vlan-filter in switchdev mode + - txhash: fix sk->sk_txrehash default + - selftests: Fix failing VXLAN VNI filtering test + - arm64: dts: rockchip: fix input enable pinconf on rk3399 + - arm64: dts: rockchip: set sdmmc0 speed to sd-uhs-sdr50 on rock-3a + - ASoC: tas5805m: rework to avoid scheduling while atomic. + - ASoC: tas5805m: add missing page switch. + - ASoC: fsl_sai: fix getting version from VERID + - mptcp: do not wait for bare sockets' timeout + - selftests: mptcp: allow more slack for slow test-case + - selftests: mptcp: stop tests earlier + - riscv: kprobe: Fixup misaligned load text + - tracing: Fix TASK_COMM_LEN in trace event format file + - drm/i915: Move fd_install after last use of fence + - mptcp: fix locking for in-kernel listener creation + - ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers + - ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers + - selftests/bpf: Verify copy_register_state() preserves parent/live fields + - ALSA: hda: Do not unset preset when cleaning up codec + - bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself + - ASoC: cs42l56: fix DT probe + - tools/virtio: fix the vringh test for virtio ring changes + - net/rose: Fix to not accept on connected socket + - net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC + - drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED + - net: sched: sch: Bounds check priority + - s390/decompressor: specify __decompress() buf len to avoid overflow + - nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association + - drm/amd/display: Properly handle additional cases where DCN is not supported + - platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match + - nvmem: core: add error handling for dev_set_name + - nvmem: core: fix cleanup after dev_set_name() + - nvmem: core: fix registration vs use race + - nvmem: core: fix return value + - aio: fix mremap after fork null-deref + - drm/amd/display: Fail atomic_check early on normalize_zpos error + - tcp: Fix listen() regression in 5.15.88. + - mmc: jz4740: Work around bug on JZ4760(B) + - mmc: sdio: fix possible resource leaks in some error paths + - mmc: mmc_spi: fix error handling in mmc_spi_probe() + - ALSA: hda/conexant: add a new hda codec SN6180 + - ALSA: hda/realtek - fixed wrong gpio assigned + - sched/psi: Fix use-after-free in ep_remove_wait_queue() + - hugetlb: check for undefined shift on 32 bit architectures + - of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem + - net: Fix unwanted sign extension in netdev_stats_to_stats64() + - revert "squashfs: harden sanity check in squashfs_read_xattr_id_table" + - ixgbe: allow to increase MTU to 3K with XDP enabled + - i40e: add double of VLAN header when computing the max MTU + - net: bgmac: fix BCM5358 support by setting correct flags + - net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk + - sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list + - dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions. + - net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path + - net: openvswitch: fix possible memory leak in ovs_meter_cmd_set() + - net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence + - bnxt_en: Fix mqprio and XDP ring checking logic + - net: stmmac: Restrict warning on disabling DMA store and fwd mode + - ixgbe: add double of VLAN header when computing the max MTU + - ipv6: Fix datagram socket connection with DSCP. + - ipv6: Fix tcp socket connection with DSCP. + - nilfs2: fix underflow in second superblock position calculations + - mm/filemap: fix page end in filemap_get_read_batch + - drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list + - net/sched: act_ctinfo: use percpu stats + - i40e: Add checking for null for nlmsg_find_attr() + - kvm: initialize all of the kvm_debugregs structure before sending it to + userspace + - alarmtimer: Prevent starvation by small intervals and SIG_IGN + - ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak + - net: sched: sch: Fix off by one in htb_activate_prios() + - platform/x86/amd: pmc: add CONFIG_SERIO dependency + - kasan: fix Oops due to missing calls to kasan_arch_is_ready() + - fbdev: Fix invalid page access after closing deferred I/O devices + - drm/vmwgfx: Stop accessing buffer objects which failed init + - drm/vmwgfx: Do not drop the reference to the handle too soon + - gpio: sim: fix a memory leak + - coredump: Move dump_emit_page() to kill unused warning + - drm/vc4: crtc: Increase setup cost in core clock calculation to handle + extreme reduced blanking + - ice: fix lost multicast packets in promisc mode + - ice: xsk: Fix cleaning of XDP_TX frames + - tracing: Make trace_define_field_ext() static + - net: use a bounce buffer for copying skb->mark + - igb: conditionalize I2C bit banging on external thermal sensor support + - igb: Fix PPS input and output using 3rd and 4th SDP + * cm32181 module error blocking suspend (LP: #1988346) // Kinetic update: + upstream stable patchset 2023-04-06 (LP: #2015511) + - iio: light: cm32181: Fix PM support on system with 2 I2C resources + * kernel: fix __clear_user() inline assembly constraints (LP: #2013088) + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + * Fix selftests/ftracetests/Meta-selftests (LP: #2006453) + - selftests/ftrace: Fix bash specific "==" operator + * No HDMI audio under 5.19.0-35 & -37 (regression from -32) (LP: #2009136) + - ALSA: memalloc: Try dma_alloc_noncontiguous() at first + - ALSA: memalloc: Drop special handling of GFP for CONTINUOUS allocation + - ALSA: vx: Drop superfluous GFP setup + - ALSA: pdaudiocf: Drop superfluous GFP setup + - ASoC: Intel: sst: Switch to standard device pages + - ALSA: memalloc: Workaround for Xen PV + * Intel E810 NICs driver in causing hangs when booting and bonds configured + (LP: #2004262) + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + * Kinetic update: upstream stable patchset 2023-04-04 (LP: #2015288) + - memory: tegra: Remove clients SID override programming + - memory: atmel-sdramc: Fix missing clk_disable_unprepare in + atmel_ramc_probe() + - memory: mvebu-devbus: Fix missing clk_disable_unprepare in + mvebu_devbus_probe() + - dmaengine: ti: k3-udma: Do conditional decrement of + UDMA_CHAN_RT_PEER_BCNT_REG + - arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property + - ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency' + - ARM: dts: imx7d-pico: Use 'clock-frequency' + - ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts' + - arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux + - ARM: imx: add missing of_node_put() + - HID: intel_ish-hid: Add check for ishtp_dma_tx_map + - arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity + - soc: imx8m: Fix incorrect check for of_clk_get_by_name() + - reset: uniphier-glue: Fix possible null-ptr-deref + - EDAC/highbank: Fix memory leak in highbank_mc_probe() + - firmware: arm_scmi: Harden shared memory access in fetch_response + - firmware: arm_scmi: Harden shared memory access in fetch_notification + - tomoyo: fix broken dependency on *.conf.default + - RDMA/core: Fix ib block iterator counter overflow + - IB/hfi1: Reject a zero-length user expected buffer + - IB/hfi1: Reserve user expected TIDs + - IB/hfi1: Fix expected receive setup error exit issues + - IB/hfi1: Immediately remove invalid memory from hardware + - IB/hfi1: Remove user expected buffer invalidate race + - affs: initialize fsdata in affs_truncate() + - PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() + - arm64: dts: qcom: msm8992: Don't use sfpb mutex + - arm64: dts: qcom: msm8992-libra: Fix the memory map + - phy: ti: fix Kconfig warning and operator precedence + - NFSD: fix use-after-free in nfsd4_ssc_setup_dul() + - ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 + - amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent + - amd-xgbe: Delay AN timeout during KR training + - bpf: Fix pointer-leak due to insufficient speculative store bypass + mitigation + - phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in + rockchip_usb2phy_power_on() + - net: nfc: Fix use-after-free in local_cleanup() + - net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs + - net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() + - sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb + - gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock + - gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode + - pinctrl: rockchip: fix reading pull type on rk3568 + - net: stmmac: Fix queue statistics reading + - net/sched: sch_taprio: fix possible use-after-free + - l2tp: Serialize access to sk_user_data with sk_callback_lock + - l2tp: Don't sleep and disable BH under writer-side sk_callback_lock + - l2tp: convert l2tp_tunnel_list to idr + - l2tp: close all race conditions in l2tp_tunnel_register() + - net: usb: sr9700: Handle negative len + - net: mdio: validate parameter addr in mdiobus_get_phy() + - HID: check empty report_list in hid_validate_values() + - HID: check empty report_list in bigben_probe() + - net: stmmac: fix invalid call to mdiobus_get_phy() + - pinctrl: rockchip: fix mux route data for rk3568 + - HID: revert CHERRY_MOUSE_000C quirk + - usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait + - usb: gadget: f_fs: Ensure ep0req is dequeued before free_request + - Bluetooth: Fix possible deadlock in rfcomm_sk_state_change + - net: ipa: disable ipa interrupt during suspend + - net/mlx5: E-switch, Fix setting of reserved fields on + MODIFY_SCHEDULING_ELEMENT + - net: mlx5: eliminate anonymous module_init & module_exit + - drm/panfrost: fix GENERIC_ATOMIC64 dependency + - dmaengine: Fix double increment of client_count in dma_chan_get() + - net: macb: fix PTP TX timestamp failure due to packet padding + - virtio-net: correctly enable callback during start_xmit + - l2tp: prevent lockdep issue in l2tp_tunnel_register() + - HID: betop: check shape of output reports + - cifs: fix potential deadlock in cache_refresh_path() + - dmaengine: xilinx_dma: call of_node_put() when breaking out of + for_each_child_of_node() + - phy: phy-can-transceiver: Skip warning if no "max-bitrate" + - drm/amd/display: fix issues with driver unload + - nvme-pci: fix timeout request state check + - tcp: avoid the lookup process failing to get sk in ehash table + - ptdma: pt_core_execute_cmd() should use spinlock + - device property: fix of node refcount leak in + fwnode_graph_get_next_endpoint() + - w1: fix deadloop in __w1_remove_master_device() + - w1: fix WARNING after calling w1_process() + - driver core: Fix test_async_probe_init saves device in wrong array + - selftests/net: toeplitz: fix race on tpacket_v3 block close + - net: dsa: microchip: ksz9477: port map correction in ALU table entry + register + - thermal/core: Remove duplicate information when an error occurs + - thermal/core: Rename 'trips' to 'num_trips' + - thermal: Validate new state in cur_state_store() + - thermal/core: fix error code in __thermal_cooling_device_register() + - thermal: core: call put_device() only after device_register() fails + - net: stmmac: enable all safety features by default + - tcp: fix rate_app_limited to default to 1 + - scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace + - cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist + - kcsan: test: don't put the expect array on the stack + - cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist + - ASoC: fsl_micfil: Correct the number of steps on SX controls + - net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem + - drm: Add orientation quirk for Lenovo ideapad D330-10IGL + - s390/debug: add _ASM_S390_ prefix to header guard + - s390: expicitly align _edata and _end symbols on page boundary + - perf/x86/msr: Add Emerald Rapids + - perf/x86/intel/uncore: Add Emerald Rapids + - cpufreq: armada-37xx: stop using 0 as NULL pointer + - ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC + - ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets + - spi: spidev: remove debug messages that access spidev->spi without locking + - KVM: s390: interrupt: use READ_ONCE() before cmpxchg() + - scsi: hisi_sas: Set a port invalid only if there are no devices attached + when refreshing port id + - r8152: add vendor/device ID pair for Microsoft Devkit + - platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD + - platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK + - lockref: stop doing cpu_relax in the cmpxchg loop + - firmware: coreboot: Check size of table entry and use flex-array + - drm/i915: Remove unused variable + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + - panic: Separate sysctl logic from CONFIG_SMP + - exit: Put an upper limit on how often we can oops + - exit: Expose "oops_count" to sysfs + - exit: Allow oops_limit to be disabled + - panic: Consolidate open-coded panic_on_warn checks + - panic: Introduce warn_limit + - panic: Expose "warn_count" to sysfs + - docs: Fix path paste-o for /sys/kernel/warn_count + - exit: Use READ_ONCE() for all oops/warn limit reads + - Bluetooth: hci_sync: cancel cmd_timer if hci_open failed + - drm/amdgpu: complete gfxoff allow signal during suspend without delay + - scsi: hpsa: Fix allocation size for scsi_host_alloc() + - module: Don't wait for GOING modules + - tracing: Make sure trace_printk() can output as soon as it can be used + - trace_events_hist: add check for return value of 'create_hist_field' + - ftrace/scripts: Update the instructions for ftrace-bisect.sh + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - i2c: mv64xxx: Remove shutdown method from driver + - i2c: mv64xxx: Add atomic_xfer method to driver + - ksmbd: add max connections parameter + - ksmbd: do not sign response to session request for guest login + - ksmbd: downgrade ndr version error message to debug + - ksmbd: limit pdu length size according to connection status + - KVM: x86/vmx: Do not skip segment attributes if unusable bit is set + - KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation + - thermal: intel: int340x: Protect trip temperature from concurrent updates + - ipv6: fix reachability confirmation with proxy_ndp + - ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment + - EDAC/device: Respect any driver-supplied workqueue polling value + - EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info + - net: mana: Fix IRQ name - add PCI and queue number + - scsi: ufs: core: Fix devfreq deadlocks + - i2c: designware: use casting of u64 in clock multiplication to avoid + overflow + - netlink: prevent potential spectre v1 gadgets + - net: fix UaF in netns ops registration error path + - drm/i915/selftest: fix intel_selftest_modify_policy argument types + - netfilter: nft_set_rbtree: Switch to node list walk for overlap detection + - netfilter: nft_set_rbtree: skip elements in transaction from garbage + collection + - netlink: annotate data races around nlk->portid + - netlink: annotate data races around dst_portid and dst_group + - netlink: annotate data races around sk_state + - ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() + - ipv4: prevent potential spectre v1 gadget in fib_metrics_match() + - netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE + - netrom: Fix use-after-free of a listening socket. + - net/sched: sch_taprio: do not schedule in taprio_reset() + - sctp: fail if no bound addresses can be used for a given scope + - riscv/kprobe: Fix instruction simulation of JALR + - nvme: fix passthrough csi check + - gpio: mxc: Unlock on error path in mxc_flip_edge() + - net: ravb: Fix lack of register setting after system resumed for Gen3 + - net: ravb: Fix possible hang if RIS2_QFF1 happen + - net: mctp: mark socks as dead on unhash, prevent re-add + - thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() + - net/tg3: resolve deadlock in tg3_reset_task() during EEH + - net: mdio-mux-meson-g12a: force internal PHY off on mux switch + - treewide: fix up files incorrectly marked executable + - tools: gpio: fix -c option of gpio-event-mon + - Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI + mode" + - x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL + - netfilter: conntrack: unify established states for SCTP paths + - perf/x86/amd: fix potential integer overflow on shift of a int + - dmaengine: qcom: gpi: Set link_rx bit on GO TRE for rx operation + - soc: imx: imx8mp-blk-ctrl: enable global pixclk with HDMI_TX_PHY PD + - arm64: dts: verdin-imx8mm: fix dahlia audio playback + - arm64: dts: verdin-imx8mm: fix dev board audio playback + - soc: imx: imx8mp-blk-ctrl: don't set power device name + - arm64: dts: imx8mp: Fix missing GPC Interrupt + - arm64: dts: imx8mp: Fix power-domain typo + - reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST + - firmware: arm_scmi: Fix virtio channels cleanup on shutdown + - interconnect: qcom: msm8996: Provide UFS clocks to A2NoC + - interconnect: qcom: msm8996: Fix regmap max_register values + - RDMA/rxe: Fix inaccurate constants in rxe_type_info + - RDMA/rxe: Prevent faulty rkey generation + - drm/msm/gpu: Fix potential double-free + - bpf: hash map, avoid deadlock with suitable hash mask + - net: lan966x: add missing fwnode_handle_put() for ports node + - block/rnbd-clt: fix wrong max ID in ida_alloc_max + - usb: ucsi: Ensure connector delayed work items are flushed + - netfilter: conntrack: handle tcp challenge acks during connection reuse + - net/mlx5e: Avoid false lock dependency warning on tc_ht even more + - net/mlx5e: Set decap action based on attr for sample + - dmaengine: tegra: Fix memory leak in terminate_all() + - net: sched: gred: prevent races when adding offloads to stats + - usb: dwc3: fix extcon dependency + - bnxt: Do not read past the end of test names + - btrfs: zoned: enable metadata over-commit for non-ZNS setup + - vfio/type1: Respect IOMMU reserved regions in vfio_test_domain_fgsp() + - kvm/vfio: Fix potential deadlock on vfio group_lock + - ftrace: Export ftrace_free_filter() to modules + - riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT + - regulator: dt-bindings: samsung,s2mps14: add lost samsung,ext-control-gpios + - i2c: designware: Fix unbalanced suspended flag + - iavf: schedule watchdog immediately when changing primary MAC + - tracing/osnoise: Use built-in RCU list checking + - gpio: ep93xx: Fix port F hwirq numbers in handler + - net: mctp: add an explicit reference from a mctp_sk_key to sock + - net: mctp: move expiry timer delete to unhash + - net: mctp: hold key reference when looking up a general key + - riscv: Move call to init_cpu_topology() to later initialization stage + - Partially revert "perf/arm-cmn: Optimise DTC counter accesses" + - x86/sev: Add SEV-SNP guest feature negotiation support + - acpi: Fix suspend with Xen PV + * CVE-2023-1075 + - net/tls: tls_is_tx_ready() checked list_entry + * devlink_port_split from ubuntu_kernel_selftests.net fails on hirsute + (KeyError: 'flavour') (LP: #1937133) + - selftests: net: devlink_port_split.py: skip test if no suitable device + available + * Connection timeout due to conntrack limits (LP: #2011616) + - netfilter: conntrack: adopt safer max chain length + * Kinetic update: upstream stable patchset 2023-03-27 (LP: #2012977) + - btrfs: fix trace event name typo for FLUSH_DELAYED_REFS + - pNFS/filelayout: Fix coalescing test for single DS + - tools/virtio: initialize spinlocks in vring_test.c + - virtio_pci: modify ENOENT to EINVAL + - vduse: Validate vq_num in vduse_validate_config() + - net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats + - r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down() + - RDMA/srp: Move large values to a new enum for gcc13 + - btrfs: always report error in run_one_delayed_ref() + - x86/asm: Fix an assembler warning with current binutils + - f2fs: let's avoid panic if extent_tree is not created + - perf/x86/rapl: Treat Tigerlake like Icelake + - fbdev: omapfb: avoid stack overflow warning + - Bluetooth: hci_qca: Fix driver shutdown on closed serdev + - wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices + - wifi: mac80211: sdata can be NULL during AMPDU start + - Add exception protection processing for vd in axi_chan_handle_err function + - zonefs: Detect append writes at invalid locations + - nilfs2: fix general protection fault in nilfs_btree_insert() + - efi: fix userspace infinite retry read efivars after EFI runtime services + page fault + - ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform + - hugetlb: unshare some PMDs when splitting VMAs + - io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL + - eventpoll: add EPOLL_URING_WAKE poll wakeup flag + - eventfd: provide a eventfd_signal_mask() helper + - xhci-pci: set the dma max_seg_size + - usb: xhci: Check endpoint is valid before dereferencing it + - xhci: Fix null pointer dereference when host dies + - xhci: Add update_hub_device override for PCI xHCI hosts + - xhci: Add a flag to disable USB3 lpm on a xhci root port level. + - usb: acpi: add helper to check port lpm capability using acpi _DSM + - xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables + - prlimit: do_prlimit needs to have a speculation check + - USB: serial: option: add Quectel EM05-G (GR) modem + - USB: serial: option: add Quectel EM05-G (CS) modem + - USB: serial: option: add Quectel EM05-G (RS) modem + - USB: serial: option: add Quectel EC200U modem + - USB: serial: option: add Quectel EM05CN (SG) modem + - USB: serial: option: add Quectel EM05CN modem + - staging: vchiq_arm: fix enum vchiq_status return types + - USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100 + - misc: fastrpc: Don't remove map on creater_process and device_release + - misc: fastrpc: Fix use-after-free race condition for maps + - usb: core: hub: disable autosuspend for TI TUSB8041 + - comedi: adv_pci1760: Fix PWM instruction handling + - ACPI: PRM: Check whether EFI runtime is available + - mmc: sunxi-mmc: Fix clock refcount imbalance during unbind + - mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting + - btrfs: do not abort transaction on failure to write log tree when syncing + log + - btrfs: fix race between quota rescan and disable leading to NULL pointer + deref + - cifs: do not include page data when checking signature + - thunderbolt: Use correct function to calculate maximum USB3 link rate + - riscv: dts: sifive: fu740: fix size of pcie 32bit memory + - bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and + PERF_BPF_EVENT_PROG_UNLOAD + - tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer + - tty: fix possible null-ptr-defer in spk_ttyio_release + - USB: serial: cp210x: add SCALANCE LPE-9000 device id + - usb: cdns3: remove fetched trb from cache before dequeuing + - usb: host: ehci-fsl: Fix module alias + - usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail + - usb: typec: altmodes/displayport: Add pin assignment helper + - usb: typec: altmodes/displayport: Fix pin assignment calculation + - usb: gadget: g_webcam: Send color matching descriptor per frame + - usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate() + - usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210 + - dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation + - dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation + - serial: pch_uart: Pass correct sg to dma_unmap_sg() + - dmaengine: lgm: Move DT parsing after initialization + - dmaengine: tegra210-adma: fix global intr clear + - dmaengine: idxd: Let probe fail when workqueue cannot be enabled + - serial: amba-pl011: fix high priority character transmission in rs486 mode + - serial: atmel: fix incorrect baudrate setup + - gsmi: fix null-deref in gsmi_get_variable + - mei: me: add meteor lake point M DID + - drm/i915: re-disable RC6p on Sandy Bridge + - drm/i915/display: Check source height is > 0 + - drm/amd/display: Fix set scaling doesn's work + - drm/amd/display: Calculate output_color_space after pixel encoding + adjustment + - drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix + - fs/ntfs3: Fix attr_punch_hole() null pointer derenference + - arm64: efi: Execute runtime services from a dedicated stack + - efi: rt-wrapper: Add missing include + - x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN + - net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work() + - block: mq-deadline: Rename deadline_is_seq_writes() + - Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()" + - soc: qcom: apr: Make qcom,protection-domain optional again + - mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma + - serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ + handler + - misc: fastrpc: Fix use-after-free and race in fastrpc_map_find + - btrfs: fix missing error handling when logging directory items + - thunderbolt: Disable XDomain lane 1 only in software connection manager + - thunderbolt: Do not report errors if on-board retimers are found + - thunderbolt: Do not call PM runtime functions in tb_retimer_scan() + - mptcp: explicitly specify sock family at subflow creation time + - mptcp: netlink: respect v4/v6-only sockets + - usb: musb: fix error return code in omap2430_probe() + - USB: gadget: Add ID numbers to configfs-gadget driver names + - arm64: dts: imx8mp: correct usb clocks + - dmaengine: idxd: Prevent use after free on completion memory + - dmaengine: idxd: Do not call DMX TX callbacks during workqueue disable + - mei: bus: fix unlink on bus in error path + - VMCI: Use threaded irqs instead of tasklets + - ARM: omap1: fix !ARCH_OMAP1_ANY link failures + - drm/amdgpu: Correct the power calcultion for Renior/Cezanne. + - drm/i915: Allow switching away via vga-switcheroo if uninitialized + - octeontx2-pf: Avoid use of GFP_KERNEL in atomic context + - octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt + * Kinetic update: upstream stable patchset 2023-03-21 (LP: #2012438) + - ALSA: control-led: use strscpy in set_led_id() + - ALSA: hda/realtek - Turn on power early + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx + - KVM: arm64: Fix S1PTW handling on RO memslots + - KVM: arm64: nvhe: Fix build with profile optimization + - selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c + - efi: tpm: Avoid READ_ONCE() for accessing the event log + - docs: Fix the docs build with Sphinx 6.0 + - net: stmmac: add aux timestamps fifo clearance wait + - perf auxtrace: Fix address filter duplicate symbol selection + - s390/kexec: fix ipl report address for kdump + - ASoC: qcom: lpass-cpu: Fix fallback SD line index handling + - s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops + - s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple() + - drm/virtio: Fix GEM handle creation UAF + - drm/i915/gt: Reset twice + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present + - platform/surface: aggregator: Ignore command messages not intended for us + - platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting + - dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint + - drm/msm/adreno: Make adreno quirks not overwrite each other + - dt-bindings: msm: dsi-controller-main: Fix power-domain constraint + - dt-bindings: msm: dsi-controller-main: Fix description of core clock + - dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode + - platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to + set_fn_lock_led_list[] + - drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux + transfer + - dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY + - dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY + - platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during + probe + - ixgbe: fix pci device refcount leak + - ipv6: raw: Deduct extension header length in rawv6_push_pending_frames + - usb: ulpi: defer ulpi_register on ulpi_read_id timeout + - iommu/iova: Fix alloc iova overflows issue + - iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe() + - sched/core: Fix use-after-free bug in dup_user_cpus_ptr() + - netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() + function. + - powerpc/imc-pmu: Fix use of mutex in IRQs disabled section + - x86/boot: Avoid using Intel mnemonics in AT&T syntax asm + - EDAC/device: Fix period calculation in edac_device_reset_delay_period() + - x86/resctrl: Fix task CLOSID/RMID update race + - regulator: da9211: Use irq handler when ready + - scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile + - scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery + - ASoC: wm8904: fix wrong outputs volume after power reactivation + - ALSA: usb-audio: Make sure to stop endpoints before closing EPs + - ALSA: usb-audio: Relax hw constraints for implicit fb sync + - tipc: fix unexpected link reset due to discovery messages + - octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable + - hvc/xen: lock console list traversal + - nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame() + - af_unix: selftest: Fix the size of the parameter to connect() + - tools/nolibc: restore mips branch ordering in the _start block + - tools/nolibc: fix the O_* fcntl/open macro definitions for riscv + - net/sched: act_mpls: Fix warning during failed attribute validation + - net/mlx5: Fix ptp max frequency adjustment range + - net/mlx5e: Don't support encap rules with gbp option + - perf build: Properly guard libbpf includes + - igc: Fix PPS delta between two synchronized end-points + - platform/surface: aggregator: Add missing call to ssam_request_sync_free() + - KVM: x86: Do not return host topology information from + KVM_GET_SUPPORTED_CPUID + - arm64: atomics: remove LL/SC trampolines + - arm64: cmpxchg_double*: hazard against entire exchange variable + - efi: fix NULL-deref in init error path + - io_uring/io-wq: free worker if task_work creation is canceled + - io_uring/io-wq: only free worker if it was allocated for creation + - Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" + - pinctrl: amd: Add dynamic debugging for active GPIOs + - arm64: mte: Fix double-freeing of the temporary tag storage during coredump + - elfcore: Add a cprm parameter to elf_core_extra_{phdrs,data_size} + - cpufreq: amd-pstate: fix kernel hang issue while amd-pstate unregistering + - drm/i915: Reserve enough fence slot for i915_vma_unbind_async + - drm/i915: Fix potential context UAFs + - cifs: do not query ifaces on smb1 mounts + - ASoC: rt9120: Make dev PM runtime bind AsoC component PM + - platform/x86: int3472/discrete: Ensure the clk/power enable pins are in + output mode + - platform/x86: asus-wmi: Don't load fan curves without fan + - drm/msm: another fix for the headless Adreno GPU + - arm64/signal: Always allocate SVE signal frames on SME only systems + - arm64/signal: Always accept SVE signal frames on SME only systems + - arm64/mm: add pud_user_exec() check in pud_user_accessible_page() + - arm64: ptrace: Use ARM64_SME to guard the SME register enumerations + - arm64/mm: fix incorrect file_map_count for invalid pmd + - iavf/iavf_main: actually log ->src mask when talking about it + - x86/pat: Fix pat_x_mtrr_type() for MTRR disabled case + - scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + - ASoC: Intel: fix sof-nau8825 link failure + - drm/msm/dpu: Fix some kernel-doc comments + - drm/msm/dpu: Fix memory leak in msm_mdss_parse_data_bus_icc_path + - mtd: cfi: allow building spi-intel standalone + - stmmac: dwmac-mediatek: remove the dwmac_fix_mac_speed + - sched/core: Fix arch_scale_freq_tick() on tickless systems + - net/mlx5: check attr pointer validity before dereferencing it + - net/mlx5e: TC, Keep mod hdr actions after mod hdr alloc + - net/mlx5: Fix command stats access after free + - net/mlx5e: Verify dev is present for fix features ndo + - net/mlx5e: IPoIB, Block queue count configuration when sub interfaces are + present + - net/mlx5e: IPoIB, Block PKEY interfaces with less rx queues than parent + - net/mlx5e: IPoIB, Fix child PKEY interface stats on rx path + - octeontx2-pf: Fix resource leakage in VF driver unbind + - net: lan966x: check for ptp to be enabled in lan966x_ptp_deinit() + - net: hns3: fix wrong use of rss size during VF rss config + - bnxt: make sure we return pages to the pool + - platform/x86/amd: Fix refcount leak in amd_pmc_probe + * Kinetic update: upstream stable patchset 2023-03-20 (LP: #2012307) + - parisc: Align parisc MADV_XXX constants with all other architectures + - x86/fpu: Take task_struct* in copy_sigframe_from_user_to_xstate() + - x86/fpu: Add a pkru argument to copy_uabi_from_kernel_to_xstate(). + - x86/fpu: Add a pkru argument to copy_uabi_to_xstate() + - x86/fpu: Allow PKRU to be (once again) written by ptrace. + - x86/fpu: Emulate XRSTOR's behavior if the xfeatures PKRU bit is not set + - selftests/vm/pkeys: Add a regression test for setting PKRU through ptrace + - serial: fixup backport of "serial: Deassert Transmit Enable on probe in + driver-specific way" + - ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list + - ALSA: hda - Enable headset mic on another Dell laptop with ALC3254 + - Revert "SUNRPC: Use RMW bitops in single-threaded hot paths" + - ALSA: hda: cs35l41: Check runtime suspend capability at runtime_idle + * Kinetic update: upstream stable patchset 2023-03-06 (LP: #2009546) + - usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init + - cifs: fix oops during encryption + - nvme-pci: fix doorbell buffer value endianness + - nvme-pci: fix mempool alloc size + - nvme-pci: fix page size checks + - ACPI: resource: do IRQ override on LENOVO IdeaPad + - ACPI: resource: do IRQ override on XMG Core 15 + - ACPI: resource: do IRQ override on Lenovo 14ALC7 + - block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq + - ata: ahci: Fix PCS quirk application for suspend + - nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition + - nvmet: don't defer passthrough commands with trivial effects to the + workqueue + - fs/ntfs3: Validate BOOT record_size + - fs/ntfs3: Add overflow check for attribute size + - fs/ntfs3: Validate data run offset + - fs/ntfs3: Add null pointer check to attr_load_runs_vcn + - fs/ntfs3: Fix memory leak on ntfs_fill_super() error path + - fs/ntfs3: Add null pointer check for inode operations + - fs/ntfs3: Validate attribute name offset + - fs/ntfs3: Validate buffer length while parsing index + - fs/ntfs3: Validate resident attribute name + - fs/ntfs3: Fix slab-out-of-bounds read in run_unpack + - soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 + - fs/ntfs3: Validate index root when initialize NTFS security + - fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init() + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super() + - fs/ntfs3: Delete duplicate condition in ntfs_read_mft() + - fs/ntfs3: Fix slab-out-of-bounds in r_page + - objtool: Fix SEGFAULT + - powerpc/rtas: avoid device tree lookups in rtas_os_term() + - powerpc/rtas: avoid scheduling in rtas_os_term() + - HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint + - HID: plantronics: Additional PIDs for double volume key presses quirk + - pstore: Properly assign mem_type property + - pstore/zone: Use GFP_ATOMIC to allocate zone buffer + - hfsplus: fix bug causing custom uid and gid being unable to be assigned with + mount + - binfmt: Fix error return code in load_elf_fdpic_binary() + - ovl: Use ovl mounter's fsuid and fsgid in ovl_link() + - ALSA: line6: correct midi status byte when receiving data from podxt + - ALSA: line6: fix stack overflow in line6_midi_transmit + - pnode: terminate at peers of source + - mfd: mt6360: Add bounds checking in Regmap read/write call-backs + - md: fix a crash in mempool_free + - mm, compaction: fix fast_isolate_around() to stay within boundaries + - f2fs: should put a page when checking the summary info + - f2fs: allow to read node block after shutdown + - mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING + - tpm: acpi: Call acpi_put_table() to fix memory leak + - tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak + - tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak + - SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails + - kcsan: Instrument memcpy/memset/memmove with newer Clang + - media: stv0288: use explicitly signed char + - soc: qcom: Select REMAP_MMIO for LLCC driver + - kest.pl: Fix grub2 menu handling for rebooting + - ktest.pl minconfig: Unset configs instead of just removing them + - jbd2: use the correct print format + - perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D + - perf/x86/intel/uncore: Clear attr_update properly + - arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength + - mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K + - btrfs: fix resolving backrefs for inline extent followed by prealloc + - ARM: ux500: do not directly dereference __iomem + - arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength + - selftests: Use optional USERCFLAGS and USERLDFLAGS + - PM/devfreq: governor: Add a private governor_data for governor + - cpufreq: Init completion before kobject_init_and_add() + - ALSA: patch_realtek: Fix Dell Inspiron Plus 16 + - ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops + - fs: dlm: fix sock release if listen fails + - fs: dlm: retry accept() until -EAGAIN or error returns + - mptcp: remove MPTCP 'ifdef' in TCP SYN cookies + - dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort + - dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata + - dm thin: Use last transaction's pmd->root when commit failed + - dm thin: resume even if in FAIL mode + - dm thin: Fix UAF in run_timer_softirq() + - dm integrity: Fix UAF in dm_integrity_dtr() + - dm clone: Fix UAF in clone_dtr() + - dm cache: Fix UAF in destroy() + - dm cache: set needs_check flag after aborting metadata + - tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx' + - perf/core: Call LSM hook after copying perf_event_attr + - of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values + - KVM: VMX: Resume guest immediately when injecting #GP on ECREATE + - KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails + - KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 + - x86/microcode/intel: Do not retry microcode reloading on the APs + - ftrace/x86: Add back ftrace_expected for ftrace bug reports + - x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK + - x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK + - tracing: Fix race where eprobes can be called before the event + - tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE + - tracing/hist: Fix wrong return value in parse_action_params() + - tracing/probes: Handle system names with hyphens + - tracing: Fix infinite loop in tracing_read_pipe on overflowed + print_trace_line + - staging: media: tegra-video: fix chan->mipi value on error + - staging: media: tegra-video: fix device_node use after free + - ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod + - media: dvb-core: Fix double free in dvb_register_device() + - cifs: fix confusing debug message + - cifs: fix missing display of three mount options + - rtc: ds1347: fix value written to century register + - block: mq-deadline: Do not break sequential write streams to zoned HDDs + - md/bitmap: Fix bitmap chunk size overflow issues + - efi: Add iMac Pro 2017 to uefi skip cert quirk + - wifi: wilc1000: sdio: fix module autoloading + - ASoC: jz4740-i2s: Handle independent FIFO flush bits + - ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() + - ipmi: fix long wait in unload when IPMI disconnect + - mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() + - ima: Fix a potential NULL pointer access in ima_restore_measurement_list + - ipmi: fix use after free in _ipmi_destroy_user() + - PCI: Fix pci_device_is_present() for VFs by checking PF + - PCI/sysfs: Fix double free in error path + - riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument + - riscv: mm: notify remote harts about mmu cache updates + - crypto: n2 - add missing hash statesize + - driver core: Fix bus_type.match() error handling in __driver_attach() + - phy: qcom-qmp-combo: fix sc8180x reset + - iommu/amd: Fix ivrs_acpihid cmdline parsing code + - remoteproc: core: Do pm_relax when in RPROC_OFFLINE state + - parisc: led: Fix potential null-ptr-deref in start_task() + - device_cgroup: Roll back to original exceptions after copy failure + - drm/connector: send hotplug uevent on connector cleanup + - drm/i915/dsi: fix VBT send packet port selection for dual link DSI + - drm/ingenic: Fix missing platform_driver_unregister() call in + ingenic_drm_init() + - ext4: silence the warning when evicting inode with dioread_nolock + - ext4: add inode table check in __ext4_get_inode_loc to aovid possible + infinite loop + - ext4: remove trailing newline from ext4_msg() message + - fs: ext4: initialize fsdata in pagecache_write() + - ext4: fix use-after-free in ext4_orphan_cleanup + - ext4: fix undefined behavior in bit shift for ext4_check_flag_values + - ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode + - ext4: add helper to check quota inums + - ext4: fix bug_on in __es_tree_search caused by bad quota inode + - ext4: fix reserved cluster accounting in __es_remove_extent() + - ext4: check and assert if marking an no_delete evicting inode dirty + - ext4: fix bug_on in __es_tree_search caused by bad boot loader inode + - ext4: fix leaking uninitialized memory in fast-commit journal + - ext4: fix uninititialized value in 'ext4_evict_inode' + - ext4: init quota for 'old.inode' in 'ext4_rename' + - ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline + - ext4: fix error code return to user-space in ext4_get_branch() + - ext4: avoid BUG_ON when creating xattrs + - ext4: fix kernel BUG in 'ext4_write_inline_data_end()' + - ext4: fix inode leak in ext4_xattr_inode_create() on an error path + - ext4: initialize quota before expanding inode in setproject ioctl + - ext4: avoid unaccounted block allocation when expanding inode + - ext4: allocate extended attribute value in vmalloc area + - drm/amdgpu: handle polaris10/11 overlap asics (v2) + - block: mq-deadline: Fix dd_finish_request() for zoned devices + - tracing: Fix issue of missing one synthetic field + - ext4: use ext4_debug() instead of jbd_debug() + - ext4: introduce EXT4_FC_TAG_BASE_LEN helper + - ext4: factor out ext4_fc_get_tl() + - ext4: fix potential out of bound read in ext4_fc_replay_scan() + - ext4: disable fast-commit of encrypted dir operations + - ext4: don't set up encryption key during jbd2 transaction + - ext4: add missing validation of fast-commit record lengths + - ext4: fix unaligned memory access in ext4_fc_reserve_space() + - ext4: fix off-by-one errors in fast-commit block filling + - ARM: renumber bits related to _TIF_WORK_MASK + - phy: qcom-qmp-combo: fix out-of-bounds clock access + - btrfs: replace strncpy() with strscpy() + - btrfs: fix extent map use-after-free when handling missing device in + read_one_chunk + - x86/MCE/AMD: Clear DFR errors found in THR handler + - media: s5p-mfc: Fix to handle reference queue during finishing + - media: s5p-mfc: Clear workbit to handle error condition + - media: s5p-mfc: Fix in register read and write for H264 + - perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor + - perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged + data + - ravb: Fix "failed to switch device to config mode" message during unbind + - ext4: goto right label 'failed_mount3a' + - ext4: correct inconsistent error msg in nojournal mode + - mbcache: automatically delete entries from cache on freeing + - ext4: fix deadlock due to mbcache entry corruption + - SUNRPC: ensure the matching upcall is in-flight upon downcall + - btrfs: fix an error handling path in btrfs_defrag_leaves() + - bpf: pull before calling skb_postpull_rcsum() + - drm/panfrost: Fix GEM handle creation ref-counting + - netfilter: nf_tables: consolidate set description + - netfilter: nf_tables: add function to create set stateful expressions + - netfilter: nf_tables: perform type checking for existing sets + - vmxnet3: correctly report csum_level for encapsulated packet + - netfilter: nf_tables: honor set timeout and garbage collection updates + - veth: Fix race with AF_XDP exposing old or uninitialized descriptors + - nfsd: shut down the NFSv4 state objects before the filecache + - net: hns3: add interrupts re-initialization while doing VF FLR + - net: hns3: fix miss L3E checking for rx packet + - net: hns3: fix VF promisc mode not update when mac table full + - qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure + - net: dsa: mv88e6xxx: depend on PTP conditionally + - nfc: Fix potential resource leaks + - vdpa_sim: fix possible memory leak in vdpasim_net_init() and + vdpasim_blk_init() + - vhost/vsock: Fix error handling in vhost_vsock_init() + - vringh: fix range used in iotlb_translate() + - vhost: fix range used in translate_desc() + - vdpa_sim: fix vringh initialization in vdpasim_queue_ready() + - net/mlx5: E-Switch, properly handle ingress tagged packets on VST + - net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path + - net/mlx5: Avoid recovery in probe flows + - net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default + - net/mlx5e: Always clear dest encap in neigh-update-del + - net/mlx5e: Fix hw mtu initializing at XDP SQ allocation + - net: amd-xgbe: add missed tasklet_kill + - net: ena: Fix toeplitz initial hash value + - net: ena: Don't register memory info on XDP exchange + - net: ena: Account for the number of processed bytes in XDP + - net: ena: Use bitmask to indicate packet redirection + - net: ena: Fix rx_copybreak value update + - net: ena: Set default value for RX interrupt moderation + - net: ena: Update NUMA TPH hint register upon NUMA node update + - net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe + - RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device + - RDMA/mlx5: Fix validation of max_rd_atomic caps for DC + - drm/meson: Reduce the FIFO lines held when AFBC is not used + - filelock: new helper: vfs_inode_has_locks + - ceph: switch to vfs_inode_has_locks() to fix file lock bug + - gpio: sifive: Fix refcount leak in sifive_gpio_probe + - net: sched: atm: dont intepret cls results when asked to drop + - net: sched: cbq: dont intepret cls results when asked to drop + - net: sparx5: Fix reading of the MAC address + - netfilter: ipset: fix hash:net,port,net hang with /0 subnet + - netfilter: ipset: Rework long task execution when adding/deleting entries + - perf tools: Fix resources leak in perf_data__open_dir() + - drm/imx: ipuv3-plane: Fix overlay plane width + - fs/ntfs3: don't hold ni_lock when calling truncate_setsize() + - drivers/net/bonding/bond_3ad: return when there's no aggregator + - octeontx2-pf: Fix lmtst ID used in aura free + - usb: rndis_host: Secure rndis_query check against int overflow + - perf stat: Fix handling of --for-each-cgroup with --bpf-counters to match + non BPF mode + - drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() + - caif: fix memory leak in cfctrl_linkup_request() + - udf: Fix extension of the last extent in the file + - ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet + - nvme: fix multipath crash caused by flush request when blktrace is enabled + - io_uring: check for valid register opcode earlier + - nvmet: use NVME_CMD_EFFECTS_CSUPP instead of open coding it + - nvme: also return I/O command effects from nvme_command_effects + - btrfs: check superblock to ensure the fs was not modified at thaw time + - x86/kexec: Fix double-free of elf header buffer + - nfsd: fix handling of readdir in v4root vs. mount upcall timeout + - fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB + - block: don't allow splitting of a REQ_NOWAIT bio + - io_uring: fix CQ waiting timeout handling + - thermal: int340x: Add missing attribute for data rate base + - riscv: uaccess: fix type of 0 variable on error in get_user() + - riscv, kprobes: Stricter c.jr/c.jalr decoding + - drm/i915/gvt: fix gvt debugfs destroy + - drm/i915/gvt: fix vgpu debugfs clean in remove + - hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling + - ksmbd: fix infinite loop in ksmbd_conn_handler_loop() + - ksmbd: check nt_len to be at least CIFS_ENCPWD_SIZE in + ksmbd_decode_ntlmssp_auth_blob + - Revert "ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007" + - mptcp: dedicated request sock for subflow in v6 + - mptcp: use proper req destructor for IPv6 + - ext4: don't allow journal inode to have encrypt flag + - btrfs: make thaw time super block check to also verify checksum + - mbcache: Avoid nesting of cache->c_list_lock under bit locks + - efi: random: combine bootloader provided RNG seed with RNG protocol output + - drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 + - futex: Fix futex_waitv() hrtimer debug object leak on kcalloc error + - rtmutex: Add acquire semantics for rtmutex lock acquisition slow path + - mm/mempolicy: fix memory leak in set_mempolicy_home_node system call + - block: Do not reread partition table on exclusively open device + - arm64: dts: qcom: sdm850-samsung-w737: correct I2C12 pins drive strength + - EDAC/mc_sysfs: Increase legacy channel support to 12 + - ext2: unbugger ext2_empty_dir() + - bpf: Resolve fext program type when checking map compatibility + - mptcp: netlink: fix some error return code + - ima: Fix hash dependency to correct algorithm + - KVM: x86: fix APICv/x2AVIC disabled when vm reboot by itself + - powerpc/ftrace: fix syscall tracing on PPC64_ELF_ABI_V1 + - arm64: dts: mediatek: mt8195-demo: fix the memory size of node secmon + - drm/amdgpu: fix mmhub register base coding error + - mtd: spi-nor: gigadevice: gd25q256: replace gd25q256_default_init with + gd25q256_post_bfpt + - ima: Fix memory leak in __ima_inode_hash() + - crypto: ccree,hisilicon - Fix dependencies to correct algorithm + - RISC-V: kexec: Fix memory leak of fdt buffer + - riscv: Fixup compile error with !MMU + - RISC-V: kexec: Fix memory leak of elf header buffer + - bus: mhi: host: Fix race between channel preparation and M0 event + - test_kprobes: Fix implicit declaration error of test_kprobes + - remoteproc: imx_dsp_rproc: Add mutex protection for workqueue + - remoteproc: imx_rproc: Correct i.MX93 DRAM mapping + - parisc: Add missing FORCE prerequisites in Makefile + - ext4: journal_path mount options should follow links + - drm/i915: improve the catch-all evict to handle lock contention + - drm/i915/migrate: Account for the reserved_space + - cifs: fix interface count calculation during refresh + - cifs: refcount only the selected iface during interface update + - usb: dwc3: gadget: Ignore End Transfer delay on teardown + - ice: xsk: do not use xdp_return_frame() on tx_buf->raw_buf + - net: vrf: determine the dst using the original ifindex for multicast + - mptcp: fix lockdep false positive + - net: lan966x: Fix configuration of the PCS + - bnxt_en: Simplify bnxt_xdp_buff_init() + - bnxt_en: Fix XDP RX path + - bnxt_en: Fix first buffer size calculations for XDP multi-buffer + - bnxt_en: Fix HDS and jumbo thresholds for RX packets + - vdpa/mlx5: Fix rule forwarding VLAN to TIR + - vdpa/mlx5: Fix wrong mac address deletion + - vhost-vdpa: fix an iotlb memory leak + - virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session() + - vdpa/vp_vdpa: fix kfree a wrong pointer in vp_vdpa_remove + - vdpasim: fix memory leak when freeing IOTLBs + - net/mlx5: Fix io_eq_size and event_eq_size params validation + - net/mlx5: Fix RoCE setting at HCA level + - net/mlx5e: CT: Fix ct debugfs folder name + - net/mlx5e: Set geneve_tlv_option_0_exist when matching on geneve option + - net/mlx5: Lag, fix failure to cancel delayed bond work + - vxlan: Fix memory leaks in error path + - drm/i915/gvt: fix double free bug in split_2MB_gtt_entry + - qed: allow sleep in qed_mcp_trace_dump() + - usb: dwc3: xilinx: include linux/gpio/consumer.h + - net: dsa: tag_qca: fix wrong MGMT_DATA2 size + - vhost_vdpa: fix the crash in unmap a large memory + - of/fdt: run soc memory setup when early_init_dt_scan_memory fails + * CVE-2022-36280 + - drm/vmwgfx: Validate the box size for the snooped cursor + * CVE-2023-1118 + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + + -- Roxana Nicolescu Fri, 21 Apr 2023 16:56:45 +0200 + +linux-hwe-5.19 (5.19.0-41.42~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-41.42~22.04.1 -proposed tracker (LP: #2016650) + + * CVE-2023-1829 + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + + [ Ubuntu: 5.19.0-41.42 ] + + * kinetic/linux: 5.19.0-41.42 -proposed tracker (LP: #2016651) + * CVE-2023-1829 + - net/sched: Retire tcindex classifier + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + * CVE-2023-0386 + - ovl: fail on invalid uid/gid mapping at copy up + + -- Thadeu Lima de Souza Cascardo Tue, 18 Apr 2023 12:38:41 -0300 + +linux-hwe-5.19 (5.19.0-40.41~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-40.41~22.04.1 -proposed tracker (LP: #2011875) + + [ Ubuntu: 5.19.0-40.41 ] + + * kinetic/linux: 5.19.0-40.41 -proposed tracker (LP: #2012668) + * CVE-2023-0468 + - io_uring: fix tw losing poll events + - io_uring: make poll refs more robust + * Regression in ext4 during online resize (LP: #2003816) + - ext4: fix bad checksum after online resize + - ext4: fix corruption when online resizing a 1K bigalloc fs + - ext4: fix corrupt backup group descriptors after online resize + + [ Ubuntu: 5.19.0-39.40 ] + + * kinetic/linux: 5.19.0-39.40 -proposed tracker (LP: #2011876) + * CVE-2023-26545 + - net: mpls: fix stale pointer if allocation fails during device rename + * CVE-2023-1032 + - net: avoid double iput when sock_alloc_file fails + * CVE-2022-41218 // CVE-2022-41218 is assigned to those bugs above. + - media: dvb-core: Fix UAF due to refcount races at releasing + * CVE-2023-1281 + - net/sched: tcindex: update imperfect hash filters respecting rcu + * linux: CONFIG_SERIAL_8250_MID=y (LP: #2009283) + - [Config] enable CONFIG_SERIAL_8250_MID=y + * apply the latest TDX attestation driver from Intel (LP: #2009437) + - Revert "UBUNTU: SAUCE: selftests: tdx: Test GetReport TDX attestation + feature" + - Revert "UBUNTU: SAUCE: x86/tdx: Add TDX Guest attestation interface driver" + - x86/tdx: Add a wrapper to get TDREPORT0 from the TDX Module + - virt: Add TDX guest driver + - selftests/tdx: Test TDX attestation GetReport support + - [Config] enable TDX attestation driver as module by default + * cpufreq: intel_pstate: Update Balance performance EPP for Sapphire Rapids + (LP: #2008519) + - cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids + * Fail to output sound to external monitor which connects via docking station + (LP: #2009024) + - [Config] Enable CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM + * Fix mediatek wifi driver crash when loading wrong SAR table (LP: #2009118) + - wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read + * CVE-2022-47929 + - net: sched: disallow noqueue for qdisc classes + * Intel graphic driver is not probing[8086:468b] (LP: #1990242) + - drm/i915: Add new ADL-S pci id + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - drm/i915/psr: Use full update In case of area calculation fails + - drm/i915: Ensure damage clip area is within pipe area + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + * overlayfs mounts as R/O over idmapped mount (LP: #2009065) + - SAUCE: overlayfs: handle idmapped mounts in ovl_do_(set|remove)xattr + * Kinetic update: upstream stable patchset 2023-02-28 (LP: #2008832) + - usb: musb: remove extra check in musb_gadget_vbus_draw + - arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins + - arm64: dts: qcom: sm8250-sony-xperia-edo: fix touchscreen bias-disable + - arm64: dts: qcom: msm8996: Add MSM8996 Pro support + - arm64: dts: qcom: msm8996: fix supported-hw in cpufreq OPP tables + - arm64: dts: qcom: msm8996: fix GPU OPP table + - ARM: dts: qcom: apq8064: fix coresight compatible + - arm64: dts: qcom: sdm630: fix UART1 pin bias + - arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias + - arm64: dts: qcom: msm8916: Drop MSS fallback compatible + - objtool, kcsan: Add volatile read/write instrumentation to whitelist + - ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96 + - ARM: dts: stm32: Fix AV96 WLAN regulator gpio property + - drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static + - arm64: dts: qcom: pm660: Use unique ADC5_VCOIN address in node name + - arm64: dts: qcom: sm8250: correct LPASS pin pull down + - soc: qcom: llcc: make irq truly optional + - arm64: dts: qcom: sm8150: fix UFS PHY registers + - arm64: dts: qcom: sm8250: fix UFS PHY registers + - arm64: dts: qcom: sm8350: fix UFS PHY registers + - arm64: dts: qcom: sm8250: drop bogus DP PHY clock + - soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index + - arm64: dts: qcom: sm6125: fix SDHCI CQE reg names + - arm: dts: spear600: Fix clcd interrupt + - soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe + - soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe + - arm64: mm: kfence: only handle translation faults + - perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() + - perf/arm_dmc620: Fix hotplug callback leak in dmc620_pmu_init() + - perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() + - arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node + - arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node + - ARM: dts: nuvoton: Remove bogus unit addresses from fixed-partition nodes + - arm64: dts: mt6779: Fix devicetree build warnings + - arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators + - arm64: dts: mt2712e: Fix unit address for pinctrl node + - arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names + - arm64: dts: mt2712-evb: Fix usb vbus regulators unit names + - arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings + - arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name + - ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: turris-omnia: Add ethernet aliases + - ARM: dts: turris-omnia: Add switch port 6 node + - arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC + - seccomp: Move copy_seccomp() to no failure path. + - pstore/ram: Fix error return code in ramoops_probe() + - ARM: mmp: fix timer_read delay + - pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP + - tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init() + - tpm/tpm_crb: Fix error message in __crb_relinquish_locality() + - ovl: remove privs in ovl_copyfile() + - ovl: remove privs in ovl_fallocate() + - sched/uclamp: Fix relationship between uclamp and migration margin + - sched/uclamp: Make task_fits_capacity() use util_fits_cpu() + - sched/uclamp: Make select_idle_capacity() use util_fits_cpu() + - sched/core: Introduce sched_asym_cpucap_active() + - sched/uclamp: Make asym_fits_capacity() use util_fits_cpu() + - cpuidle: dt: Return the correct numbers of parsed idle states + - alpha: fix TIF_NOTIFY_SIGNAL handling + - alpha: fix syscall entry in !AUDUT_SYSCALL case + - x86/sgx: Reduce delay and interference of enclave release + - PM: hibernate: Fix mistake in kerneldoc comment + - fs: don't audit the capability check in simple_xattr_list() + - cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut() + - selftests/ftrace: event_triggers: wait longer for test_event_enable + - perf: Fix possible memleak in pmu_dev_alloc() + - lib/debugobjects: fix stat count and optimize debug_objects_mem_init + - platform/x86: huawei-wmi: fix return value calculation + - timerqueue: Use rb_entry_safe() in timerqueue_getnext() + - proc: fixup uptime selftest + - lib/fonts: fix undefined behavior in bit shift for get_default_font + - ocfs2: fix memory leak in ocfs2_stack_glue_init() + - MIPS: vpe-mt: fix possible memory leak while module exiting + - MIPS: vpe-cmp: fix possible memory leak while module exiting + - selftests/efivarfs: Add checking of the test return value + - PNP: fix name memory leak in pnp_alloc_dev() + - perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology() + - perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() + - perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() + - perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() + - platform/chrome: cros_usbpd_notify: Fix error handling in + cros_usbpd_notify_init() + - thermal: core: fix some possible name leaks in error paths + - irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() + - irqchip/wpcm450: Fix memory leak in wpcm450_aic_of_init() + - EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() + - NFSD: Finish converting the NFSv2 GETACL result encoder + - nfsd: don't call nfsd_file_put from client states seqfile display + - genirq/irqdesc: Don't try to remove non-existing sysfs files + - cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() + - libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value + - lib/notifier-error-inject: fix error when writing -errno to debugfs file + - debugfs: fix error when writing negative value to atomic_t debugfs file + - rapidio: fix possible name leaks when rio_add_device() fails + - rapidio: rio: fix possible name leak in rio_register_mport() + - clocksource/drivers/sh_cmt: Access registers according to spec + - mips: ralink: mt7621: define MT7621_SYSC_BASE with __iomem + - mips: ralink: mt7621: soc queries and tests as functions + - mips: ralink: mt7621: do not use kzalloc too early + - futex: Resend potentially swallowed owner death notification + - cpu/hotplug: Make target_store() a nop when target == state + - cpu/hotplug: Do not bail-out in DYING/STARTING sections + - clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in + dmtimer_systimer_init_clock() + - ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() + - uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix + - x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() + - x86/xen: Fix memory leak in xen_init_lock_cpu() + - xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() + - PM: runtime: Do not call __rpm_callback() from rpm_idle() + - platform/chrome: cros_ec_typec: Cleanup switch handle return paths + - platform/chrome: cros_ec_typec: zero out stale pointers + - platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() + - platform/x86: intel_scu_ipc: fix possible name leak in + __intel_scu_ipc_register() + - MIPS: BCM63xx: Add check for NULL for clk in clk_enable + - MIPS: OCTEON: warn only once if deprecated link status is being used + - lockd: set other missing fields when unlocking files + - fs: sysv: Fix sysv_nblocks() returns wrong value + - rapidio: fix possible UAF when kfifo_alloc() fails + - eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD + - relay: fix type mismatch when allocating memory in relay_create_buf() + - hfs: Fix OOB Write in hfs_asc2mac + - rapidio: devices: fix missing put_device in mport_cdev_open + - platform/mellanox: mlxbf-pmc: Fix event typo + - wifi: ath9k: hif_usb: fix memory leak of urbs in + ath9k_hif_usb_dealloc_tx_urbs() + - wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() + - wifi: rtl8xxxu: Fix reading the vendor of combo chips + - drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge + - libbpf: Fix use-after-free in btf_dump_name_dups + - libbpf: Fix null-pointer dereference in find_prog_by_sec_insn() + - ata: libata: fix NCQ autosense logic + - ipmi: kcs: Poll OBF briefly to reduce OBE latency + - drm/amdgpu/powerplay/psm: Fix memory leak in power state init + - media: v4l2-ctrls: Fix off-by-one error in integer menu control check + - media: coda: jpeg: Add check for kmalloc + - media: adv748x: afe: Select input port when initializing AFE + - media: i2c: ad5820: Fix error path + - venus: pm_helpers: Fix error check in vcodec_domains_get() + - soreuseport: Fix socket selection for SO_INCOMING_CPU. + - media: exynos4-is: don't rely on the v4l2_async_subdev internals + - libbpf: Btf dedup identical struct test needs check for nested + structs/arrays + - can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device + - can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to + {leaf,usbcan}_cmd_can_error_event + - can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT + - can: kvaser_usb_leaf: Set Warning state even without bus errors + - can: kvaser_usb_leaf: Fix improved state not being reported + - can: kvaser_usb_leaf: Fix wrong CAN state after stopping + - can: kvaser_usb_leaf: Fix bogus restart events + - can: kvaser_usb: Add struct kvaser_usb_busparams + - can: kvaser_usb: Compare requested bittiming parameters with actual + parameters in do_set_{,data}_bittiming + - drm/rockchip: lvds: fix PM usage counter unbalance in poweron + - clk: renesas: r9a06g032: Repair grave increment error + - spi: Update reference to struct spi_controller + - drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure + - drm/msm/hdmi: drop unused GPIO support + - drm/msm/hdmi: use devres helper for runtime PM management + - bpf: Fix slot type check in check_stack_write_var_off + - media: vivid: fix compose size exceed boundary + - media: platform: exynos4-is: fix return value check in fimc_md_probe() + - bpf: propagate precision in ALU/ALU64 operations + - bpf: propagate precision across all frames, not just the last one + - clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs + - mtd: Fix device name leak when register device failed in add_mtd_device() + - Input: joystick - fix Kconfig warning for JOYSTICK_ADC + - wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port + - media: camss: Clean up received buffers on failed start of streaming + - net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() + - rxrpc: Fix ack.bufferSize to be 0 when generating an ack + - bfq: fix waker_bfqq inconsistency crash + - drm/radeon: Add the missed acpi_put_table() to fix memory leak + - drm/mediatek: Modify dpi power on/off sequence. + - ASoC: pxa: fix null-pointer dereference in filter() + - nvmet: only allocate a single slab for bvecs + - regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() + - amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() + - nvme: return err on nvme_init_non_mdts_limits fail + - regulator: qcom-rpmh: Fix PMR735a S3 regulator spec + - drm/fourcc: Fix vsub/hsub for Q410 and Q401 + - integrity: Fix memory leakage in keyring allocation error path + - ima: Fix misuse of dereference of pointer in template_desc_init_fields() + - block: clear ->slave_dir when dropping the main slave_dir reference + - wifi: ath10k: Fix return value in ath10k_pci_init() + - drm/msm/a6xx: Fix speed-bin detection vs probe-defer + - mtd: lpddr2_nvm: Fix possible null-ptr-deref + - Input: elants_i2c - properly handle the reset GPIO when power is off + - media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() + - media: solo6x10: fix possible memory leak in solo_sysfs_init() + - media: platform: exynos4-is: Fix error handling in fimc_md_init() + - media: videobuf-dma-contig: use dma_mmap_coherent + - mtd: spi-nor: hide jedec_id sysfs attribute if not present + - mtd: spi-nor: Fix the number of bytes for the dummy cycles + - bpf: Move skb->len == 0 checks into __bpf_redirect + - HID: hid-sensor-custom: set fixed size for custom attributes + - pinctrl: k210: call of_node_put() + - ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT + - ALSA: seq: fix undefined behavior in bit shift for + SNDRV_SEQ_FILTER_USE_EVENT + - regulator: core: use kfree_const() to free space conditionally + - clk: rockchip: Fix memory leak in rockchip_clk_register_pll() + - drm/amdgpu: fix pci device refcount leak + - bonding: fix link recovery in mode 2 when updelay is nonzero + - mtd: maps: pxa2xx-flash: fix memory leak in probe + - drbd: remove call to memset before free device/resource/connection + - drbd: destroy workqueue when drbd device was freed + - ASoC: qcom: Add checks for devm_kcalloc + - media: vimc: Fix wrong function called when vimc_init() fails + - media: imon: fix a race condition in send_packet() + - clk: imx8mn: rename vpu_pll to m7_alt_pll + - clk: imx: replace osc_hdmi with dummy + - clk: imx8mn: fix imx8mn_sai2_sels clocks list + - clk: imx8mn: fix imx8mn_enet_phy_sels clocks list + - pinctrl: pinconf-generic: add missing of_node_put() + - media: dvb-core: Fix ignored return value in dvb_register_frontend() + - media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() + - media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC + - drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() + - ASoC: dt-bindings: wcd9335: fix reset line polarity in example + - ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd + - NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding + - NFSv4.2: Fix a memory stomp in decode_attr_security_label + - NFSv4.2: Fix initialisation of struct nfs4_label + - NFSv4: Fix a credential leak in _nfs4_discover_trunking() + - NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn + - NFS: Fix an Oops in nfs_d_automount() + - ALSA: asihpi: fix missing pci_disable_device() + - wifi: iwlwifi: mvm: fix double free on tx path. + - ASoC: mediatek: mt8173: Enable IRQ when pdata is ready + - drm/amd/pm/smu11: BACO is supported when it's in BACO state + - drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() + - drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() + - drm/amdkfd: Fix memory leakage + - ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe + - netfilter: conntrack: set icmpv6 redirects as RELATED + - Input: wistron_btns - disable on UML + - bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data + - bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytes + - bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect + - bonding: uninitialized variable in bond_miimon_inspect() + - spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE + - wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() + fails + - wifi: mt76: mt7921: fix reporting of TX AGGR histogram + - wifi: mt76: fix coverity overrun-call in mt76_get_txpower() + - regulator: core: fix module refcount leak in set_supply() + - clk: qcom: lpass-sc7180: Fix pm_runtime usage + - clk: qcom: clk-krait: fix wrong div2 functions + - hsr: Add a rcu-read lock to hsr_forward_skb(). + - hsr: Avoid double remove of a node. + - hsr: Disable netpoll. + - hsr: Synchronize sending frames to have always incremented outgoing seq nr. + - hsr: Synchronize sequence number updates. + - configfs: fix possible memory leak in configfs_create_dir() + - regulator: core: fix resource leak in regulator_register() + - hwmon: (jc42) Convert register access and caching to regmap/regcache + - hwmon: (jc42) Restore the min/max/critical temperatures on resume + - bpf, sockmap: fix race in sock_map_free() + - ALSA: pcm: Set missing stop_operating flag at undoing trigger start + - media: saa7164: fix missing pci_disable_device() + - ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt + - xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() + - SUNRPC: Fix missing release socket in rpc_sockname() + - NFSv4.x: Fail client initialisation if state manager thread can't run + - riscv, bpf: Emit fixed-length instructions for BPF_PSEUDO_FUNC + - mmc: alcor: fix return value check of mmc_add_host() + - mmc: moxart: fix return value check of mmc_add_host() + - mmc: mxcmmc: fix return value check of mmc_add_host() + - mmc: pxamci: fix return value check of mmc_add_host() + - mmc: rtsx_pci: fix return value check of mmc_add_host() + - mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host() + - mmc: toshsd: fix return value check of mmc_add_host() + - mmc: vub300: fix return value check of mmc_add_host() + - mmc: wmt-sdmmc: fix return value check of mmc_add_host() + - mmc: atmel-mci: fix return value check of mmc_add_host() + - mmc: omap_hsmmc: fix return value check of mmc_add_host() + - mmc: meson-gx: fix return value check of mmc_add_host() + - mmc: via-sdmmc: fix return value check of mmc_add_host() + - mmc: wbsd: fix return value check of mmc_add_host() + - mmc: mmci: fix return value check of mmc_add_host() + - mmc: renesas_sdhi: alway populate SCC pointer + - memstick/ms_block: Add check for alloc_ordered_workqueue + - mmc: core: Normalize the error handling branch in sd_read_ext_regs() + - regulator: qcom-labibb: Fix missing of_node_put() in + qcom_labibb_regulator_probe() + - media: c8sectpfe: Add of_node_put() when breaking out of loop + - media: coda: Add check for dcoda_iram_alloc + - media: coda: Add check for kmalloc + - clk: samsung: Fix memory leak in _samsung_clk_register_pll() + - spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode + - wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h + - wifi: rtl8xxxu: Fix the channel width reporting + - wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() + - blktrace: Fix output non-blktrace event when blk_classic option enabled + - bpf: Do not zero-extend kfunc return values + - clk: socfpga: Fix memory leak in socfpga_gate_init() + - net: vmw_vsock: vmci: Check memcpy_from_msg() + - net: defxx: Fix missing err handling in dfx_init() + - net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() + - net: stmmac: fix possible memory leak in stmmac_dvr_probe() + - drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() + - of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() + and find_dup_cset_prop() + - ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: farsync: Fix kmemleak when rmmods farsync + - net/tunnel: wait until all sk_user_data reader finish before releasing the + sock + - net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave() + - hamradio: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave() + - af_unix: call proto_unregister() in the error path in af_unix_init() + - net: amd-xgbe: Fix logic around active and passive cables + - net: amd-xgbe: Check only the minimum speed for active/passive cables + - can: tcan4x5x: Remove invalid write in clear_interrupts + - can: m_can: Call the RAM init directly from m_can_chip_config + - can: tcan4x5x: Fix use of register error status mask + - net: lan9303: Fix read error execution path + - ntb_netdev: Use dev_kfree_skb_any() in interrupt context + - sctp: sysctl: make extra pointers netns aware + - Bluetooth: MGMT: Fix error report for ADD_EXT_ADV_PARAMS + - Bluetooth: btintel: Fix missing free skb in btintel_setup_combined() + - Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave() + - stmmac: fix potential division by 0 + - i40e: Fix the inability to attach XDP program on downed interface + - net: dsa: tag_8021q: avoid leaking ctx on dsa_tag_8021q_register() error + path + - crypto: hisilicon/qm - fix missing destroy qp_idr + - crypto: sun8i-ss - use dma_addr instead u32 + - crypto: nitrox - avoid double free on error path in nitrox_sriov_init() + - scsi: core: Fix a race between scsi_done() and scsi_timeout() + - apparmor: Use pointer to struct aa_label for lbs_cred + - PCI: dwc: Fix n_fts[] array overrun + - RDMA/core: Fix order of nldev_exit call + - PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled + - f2fs: Fix the race condition of resize flag between resizefs + - crypto: rockchip - do not do custom power management + - crypto: rockchip - do not store mode globally + - crypto: rockchip - add fallback for cipher + - crypto: rockchip - add fallback for ahash + - crypto: rockchip - better handle cipher key + - crypto: rockchip - remove non-aligned handling + - crypto: rockchip - rework by using crypto_engine + - apparmor: Fix memleak in alloc_ns() + - f2fs: fix to invalidate dcc->f2fs_issue_discard in error path + - f2fs: fix normal discard process + - f2fs: fix to destroy sbi->post_read_wq in error path of f2fs_fill_super() + - RDMA/irdma: Report the correct link speed + - scsi: qla2xxx: Fix set-but-not-used variable warnings + - RDMA/siw: Fix immediate work request flush to completion queue + - IB/mad: Don't call to function that might sleep while in atomic context + - RDMA/restrack: Release MR restrack when delete + - RDMA/core: Make sure "ib_port" is valid when access sysfs node + - RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port + - RDMA/siw: Set defined status for work completion with undefined status + - scsi: scsi_debug: Fix a warning in resp_write_scat() + - crypto: ccree - Remove debugfs when platform_driver_register failed + - crypto: cryptd - Use request context instead of stack for sub-request + - crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set() + - RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data() + - RDMA/hns: Fix ext_sge num error when post send + - PCI: Check for alloc failure in pci_request_irq() + - RDMA/hfi: Decrease PCI device reference count in error path + - crypto: ccree - Make cc_debugfs_global_fini() available for module init + function + - RDMA/hns: fix memory leak in hns_roce_alloc_mr() + - RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create + failed + - dt-bindings: imx6q-pcie: Fix clock names for imx6sx and imx8mq + - dt-bindings: visconti-pcie: Fix interrupts array max constraints + - scsi: hpsa: Fix possible memory leak in hpsa_init_one() + - crypto: tcrypt - Fix multibuffer skcipher speed test mem leak + - padata: Always leave BHs disabled when running ->parallel() + - padata: Fix list iterator in padata_do_serial() + - scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() + - scsi: hpsa: Fix error handling in hpsa_add_sas_host() + - scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() + - scsi: efct: Fix possible memleak in efct_device_init() + - scsi: scsi_debug: Fix a warning in resp_verify() + - scsi: scsi_debug: Fix a warning in resp_report_zones() + - scsi: fcoe: Fix possible name leak when device_register() fails + - scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper() + - scsi: ipr: Fix WARNING in ipr_init() + - scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails + - scsi: snic: Fix possible UAF in snic_tgt_create() + - RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() + - f2fs: avoid victim selection from previous victim section + - RDMA/nldev: Fix failure to send large messages + - crypto: amlogic - Remove kcalloc without check + - crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() + - riscv/mm: add arch hook arch_clear_hugepage_flags + - RDMA/hfi1: Fix error return code in parse_platform_config() + - RDMA/srp: Fix error return code in srp_parse_options() + - orangefs: Fix sysfs not cleanup when dev init failed + - RDMA/hns: Fix AH attr queried by query_qp + - RDMA/hns: Fix PBL page MTR find + - RDMA/hns: Fix page size cap from firmware + - RDMA/hns: Fix error code of CMD + - crypto: img-hash - Fix variable dereferenced before check 'hdev->req' + - hwrng: amd - Fix PCI device refcount leak + - hwrng: geode - Fix PCI device refcount leak + - IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces + - RISC-V: Align the shadow stack + - drivers: dio: fix possible memory leak in dio_init() + - serial: tegra: Read DMA status before terminating + - serial: 8250_bcm7271: Fix error handling in brcmuart_init() + - class: fix possible memory leak in __class_register() + - vfio: platform: Do not pass return buffer to ACPI _RST method + - uio: uio_dmem_genirq: Fix missing unlock in irq configuration + - uio: uio_dmem_genirq: Fix deadlock between irq config and handling + - usb: fotg210-udc: Fix ages old endianness issues + - staging: vme_user: Fix possible UAF in tsi148_dma_list_add + - usb: typec: Check for ops->exit instead of ops->enter in altmode_exit + - usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() + - usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails + - usb: typec: tipd: Fix spurious fwnode_handle_put in error path + - extcon: usbc-tusb320: Factor out extcon into dedicated functions + - extcon: usbc-tusb320: Add USB TYPE-C support + - extcon: usbc-tusb320: Update state on probe even if no IRQ pending + - serial: amba-pl011: avoid SBSA UART accessing DMACR register + - serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle. + - serial: stm32: move dma_request_chan() before clk_prepare_enable() + - serial: pch: Fix PCI device refcount leak in pch_request_dma() + - tty: serial: clean up stop-tx part in altera_uart_tx_chars() + - tty: serial: altera_uart_{r,t}x_chars() need only uart_port + - serial: altera_uart: fix locking in polling mode + - serial: sunsab: Fix error handling in sunsab_init() + - test_firmware: fix memory leak in test_firmware_init() + - misc: ocxl: fix possible name leak in ocxl_file_register_afu() + - ocxl: fix pci device refcount leak when calling get_function_0() + - misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() + - misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault + and gru_handle_user_call_os + - firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() + - cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() + - cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() + - iio: temperature: ltc2983: make bulk write buffer DMA-safe + - iio: adis: add '__adis_enable_irq()' implementation + - counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update + - coresight: trbe: remove cpuhp instance node before remove cpuhp state + - usb: roles: fix of node refcount leak in usb_role_switch_is_parent() + - usb: gadget: f_hid: fix f_hidg lifetime vs cdev + - usb: gadget: f_hid: fix refcount leak on error path + - drivers: mcb: fix resource leak in mcb_probe() + - mcb: mcb-parse: fix error handing in chameleon_parse_gdd() + - chardev: fix error handling in cdev_device_add() + - i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe + - staging: rtl8192u: Fix use after free in ieee80211_rx() + - staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() + - vme: Fix error not catched in fake_init() + - gpiolib: cdev: fix NULL-pointer dereferences + - gpiolib: protect the GPIO device against being dropped while in use by user- + space + - i2c: mux: reg: check return value after calling platform_get_resource() + - i2c: ismt: Fix an out-of-bounds bug in ismt_access() + - usb: storage: Add check for kcalloc + - tracing/hist: Fix issue of losting command info in error_log + - ksmbd: Fix resource leak in ksmbd_session_rpc_open() + - samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() + - thermal/drivers/imx8mm_thermal: Validate temperature range + - thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2 + - thermal/drivers/qcom/lmh: Fix irq handler return value + - fbdev: ssd1307fb: Drop optional dependency + - fbdev: pm2fb: fix missing pci_disable_device() + - fbdev: via: Fix error in via_core_init() + - fbdev: vermilion: decrease reference count in error path + - fbdev: ep93xx-fb: Add missing clk_disable_unprepare in ep93xxfb_probe() + - fbdev: geode: don't build on UML + - fbdev: uvesafb: don't build on UML + - fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() + - HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() + - HSI: omap_ssi_core: fix possible memory leak in ssi_probe() + - power: supply: fix residue sysfs file in error handle route of + __power_supply_register() + - perf trace: Return error if a system call doesn't exist + - perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number + - perf trace: Handle failure when trace point folder is missed + - perf symbol: correction while adjusting symbol + - power: supply: z2_battery: Fix possible memleak in z2_batt_probe() + - HSI: omap_ssi_core: Fix error handling in ssi_init() + - power: supply: ab8500: Fix error handling in ab8500_charger_init() + - power: supply: fix null pointer dereferencing in + power_supply_get_battery_info + - perf stat: Refactor __run_perf_stat() common code + - perf stat: Do not delay the workload with --delay + - RDMA/siw: Fix pointer cast warning + - fs/ntfs3: Avoid UBSAN error on true_sectors_per_clst() + - fs/ntfs3: Harden against integer overflows + - iommu/sun50i: Fix reset release + - iommu/sun50i: Consider all fault sources for reset + - iommu/sun50i: Fix R/W permission check + - iommu/sun50i: Fix flush size + - iommu/rockchip: fix permission bits in page table entries v2 + - phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices + - include/uapi/linux/swab: Fix potentially missing __always_inline + - pwm: tegra: Improve required rate calculation + - fs/ntfs3: Fix slab-out-of-bounds read in ntfs_trim_fs + - dmaengine: idxd: Fix crc_val field for completion record + - rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 + - rtc: cmos: Fix event handler registration ordering issue + - rtc: cmos: Fix wake alarm breakage + - rtc: cmos: fix build on non-ACPI platforms + - rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() + - rtc: cmos: Call rtc_wake_setup() from cmos_do_probe() + - rtc: cmos: Eliminate forward declarations of some functions + - rtc: cmos: Rename ACPI-related functions + - rtc: cmos: Disable ACPI RTC event on removal + - rtc: snvs: Allow a time difference on clock register read + - rtc: pcf85063: Fix reading alarm + - iommu/amd: Fix pci device refcount leak in ppr_notifier() + - iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() + - macintosh: fix possible memory leak in macio_add_one_device() + - macintosh/macio-adb: check the return value of ioremap() + - powerpc/52xx: Fix a resource leak in an error handling path + - cxl: Fix refcount leak in cxl_calc_capp_routing + - powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds + - powerpc/xive: add missing iounmap() in error path in + xive_spapr_populate_irq_data() + - powerpc/perf: callchain validate kernel stack pointer bounds + - powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in + of_fsl_spi_probe() + - powerpc/hv-gpci: Fix hv_gpci event list + - selftests/powerpc: Fix resource leaks + - iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY + - pwm: sifive: Call pwm_sifive_update_clock() while mutex is held + - pwm: mtk-disp: Fix the parameters calculated by the enabled flag of disp_pwm + - pwm: mediatek: always use bus clock for PWM on MT7622 + - remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() + - remoteproc: qcom: q6v5: Fix potential null-ptr-deref in + q6v5_wcss_init_mmio() + - remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove + - remoteproc: qcom_q6v5_pas: detach power domains on remove + - remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in + adsp_alloc_memory_region() + - remoteproc: qcom: q6v5: Fix missing clk_disable_unprepare() in + q6v5_wcss_qcs404_power_on() + - powerpc/pseries/eeh: use correct API for error log size + - mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ + - mfd: qcom_rpm: Fix an error handling path in qcom_rpm_probe() + - mfd: pm8008: Remove driver data structure pm8008_data + - mfd: pm8008: Fix return value check in pm8008_probe() + - netfilter: flowtable: really fix NAT IPv6 offload + - rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() + - rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() + - rtc: pcf85063: fix pcf85063_clkout_control + - nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure + - net: macsec: fix net device access prior to holding a lock + - mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - block, bfq: fix possible uaf for 'bfqq->bic' + - net: enetc: avoid buffer leaks on xdp_do_redirect() failure + - nfc: pn533: Clear nfc_target before being used + - unix: Fix race in SOCK_SEQPACKET's unix_dgram_sendmsg() + - r6040: Fix kmemleak in probe and remove + - igc: Enhance Qbv scheduling by using first flag bit + - igc: Use strict cycles for Qbv scheduling + - igc: Add checking for basetime less than zero + - igc: allow BaseTime 0 enrollment for Qbv + - igc: recalculate Qbv end_time by considering cycle time + - igc: Lift TAPRIO schedule restriction + - igc: Set Qbv start_time and end_time to end_time if not being configured in + GCL + - rtc: mxc_v2: Add missing clk_disable_unprepare() + - selftests: devlink: fix the fd redirect in dummy_reporter_test + - openvswitch: Fix flow lookup to use unmasked key + - soc: mediatek: pm-domains: Fix the power glitch issue + - arm64: dts: mt8183: Fix Mali GPU clock + - skbuff: Account for tail adjustment during pull operations + - mailbox: mpfs: read the system controller's status + - mailbox: arm_mhuv2: Fix return value check in mhuv2_probe() + - mailbox: zynq-ipi: fix error handling while device_register() fails + - net_sched: reject TCF_EM_SIMPLE case for complex ematch module + - rxrpc: Fix missing unlock in rxrpc_do_sendmsg() + - myri10ge: Fix an error handling path in myri10ge_probe() + - net: stream: purge sk_error_queue in sk_stream_kill_queues() + - HID: amd_sfh: Add missing check for dma_alloc_coherent + - rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() + - arm64: make is_ttbrX_addr() noinstr-safe + - video: hyperv_fb: Avoid taking busy spinlock on panic path + - x86/hyperv: Remove unregister syscore call from Hyper-V cleanup + - binfmt_misc: fix shift-out-of-bounds in check_special_flags + - fs: jfs: fix shift-out-of-bounds in dbAllocAG + - udf: Avoid double brelse() in udf_rename() + - jfs: Fix fortify moan in symlink + - fs: jfs: fix shift-out-of-bounds in dbDiscardAG + - ACPICA: Fix error code path in acpi_ds_call_control_method() + - nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() + - nilfs2: fix shift-out-of-bounds due to too large exponent of block size + - acct: fix potential integer overflow in encode_comp_t() + - hfs: fix OOB Read in __hfs_brec_find + - drm/etnaviv: add missing quirks for GC300 + - media: imx-jpeg: Disable useless interrupt to avoid kernel panic + - brcmfmac: return error when getting invalid max_flowrings from dongle + - wifi: ath9k: verify the expected usb_endpoints are present + - wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out + - ASoC: codecs: rt298: Add quirk for KBL-R RVP platform + - ipmi: fix memleak when unload ipmi driver + - drm/amd/display: prevent memory leak + - Revert "drm/amd/display: Limit max DSC target bpp for specific monitors" + - qed (gcc13): use u16 for fid to be big enough + - bpf: make sure skb->len != 0 when redirecting to a tunneling device + - net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() + - hamradio: baycom_epp: Fix return type of baycom_send_packet() + - wifi: brcmfmac: Fix potential shift-out-of-bounds in + brcmf_fw_alloc_request() + - igb: Do not free q_vector unless new one was allocated + - drm/amdgpu: Fix type of second parameter in trans_msg() callback + - drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback + - s390/ctcm: Fix return type of ctc{mp,}m_tx() + - s390/netiucv: Fix return type of netiucv_tx() + - s390/lcs: Fix return type of lcs_start_xmit() + - drm/msm: Use drm_mode_copy() + - drm/rockchip: Use drm_mode_copy() + - drm/sti: Use drm_mode_copy() + - drm/mediatek: Fix return type of mtk_hdmi_bridge_mode_valid() + - drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() + - md/raid1: stop mdx_raid1 thread when raid1 array run failed + - drm/amd/display: fix array index out of bound error in bios parser + - net: add atomic_long_t to net_device_stats fields + - ipv6/sit: use DEV_STATS_INC() to avoid data-races + - mrp: introduce active flags to prevent UAF when applicant uninit + - ppp: associate skb with a device at tx + - bpf: Prevent decl_tag from being referenced in func_proto arg + - ethtool: avoiding integer overflow in ethtool_phys_id() + - media: dvb-frontends: fix leak of memory fw + - media: dvbdev: adopts refcnt to avoid UAF + - media: dvb-usb: fix memory leak in dvb_usb_adapter_init() + - blk-mq: fix possible memleak when register 'hctx' failed + - drm/amd/display: Use the largest vready_offset in pipe group + - libbpf: Avoid enum forward-declarations in public API in C++ mode + - regulator: core: fix use_count leakage when handling boot-on + - wifi: mt76: do not run mt76u_status_worker if the device is not running + - mmc: f-sdh30: Add quirks for broken timeout clock capability + - mmc: renesas_sdhi: better reset from HS400 mode + - media: si470x: Fix use-after-free in si470x_int_in_callback() + - clk: st: Fix memory leak in st_of_quadfs_setup() + - crypto: hisilicon/hpre - fix resource leak in remove process + - scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs + - scsi: ufs: Reduce the START STOP UNIT timeout + - scsi: elx: libefc: Fix second parameter type in state callbacks + - hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() + - drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() + - drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() + - orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() + - orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() + - KVM: selftests: Fix build regression by using accessor function + - hwmon: (jc42) Fix missing unlock on error in jc42_write() + - ALSA: hda: add snd_hdac_stop_streams() helper + - ASoC: Intel: Skylake: Fix driver hang during shutdown + - ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in + mt8173_rt5650_rt5514_dev_probe() + - ASoC: audio-graph-card: fix refcount leak of cpu_ep in + __graph_for_each_link() + - ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in + rockchip_pdm_runtime_resume() + - ASoC: mediatek: mt8183: fix refcount leak in + mt8183_mt6358_ts3a227_max98357_dev_probe() + - ASoC: wm8994: Fix potential deadlock + - ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in + rk_spdif_runtime_resume() + - ASoC: rt5670: Remove unbalanced pm_runtime_put() + - drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern + - LoadPin: Ignore the "contents" argument of the LSM hooks + - pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion + - perf debug: Set debug_peo_args and redirect_to_stderr variable to correct + values in perf_quiet_option() + - afs: Fix lost servers_outstanding count + - pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES + - ALSA: usb-audio: add the quirk for KT0206 device + - ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB + - ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list + - usb: cdnsp: fix lack of ZLP for ep0 + - usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq + - arm64: dts: qcom: sm8250: fix USB-DP PHY registers + - usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode + - usb: dwc3: core: defer probe on ulpi_read_id timeout + - xhci: Prevent infinite loop in transaction errors recovery for streams + - HID: wacom: Ensure bootloader PID is usable in hidraw mode + - HID: mcp2221: don't connect hidraw + - loop: Fix the max_loop commandline argument treatment when it is set to 0 + - 9p: set req refcount to zero to avoid uninitialized usage + - security: Restrict CONFIG_ZERO_CALL_USED_REGS to gcc or clang > 15.0.6 + - reiserfs: Add missing calls to reiserfs_security_free() + - iio: fix memory leak in iio_device_register_eventset() + - iio: adc: ad_sigma_delta: do not use internal iio_dev lock + - iio: adc128s052: add proper .data members in adc128_of_match table + - regulator: core: fix deadlock on regulator enable + - floppy: Fix memory leak in do_floppy_init() + - gcov: add support for checksum field + - fbdev: fbcon: release buffer when fbcon_do_set_font() failed + - ovl: fix use inode directly in rcu-walk mode + - btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range + - scsi: qla2xxx: Fix crash when I/O abort times out + - net: stmmac: fix errno when create_singlethread_workqueue() fails + - media: dvbdev: fix build warning due to comments + - media: dvbdev: fix refcnt bug + - extcon: usbc-tusb320: Call the Type-C IRQ handler only if a port is + registered + - mfd: qcom_rpm: Use devm_of_platform_populate() to simplify code + - pwm: tegra: Fix 32 bit build + - staging: r8188eu: fix led register settings + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 "brg_int" clock + - memory: renesas-rpc-if: Clear HS bit during hardware initialization + - firmware: ti_sci: Fix polled mode during system suspend + - arm64: dts: qcom: sc7180-trogdor-homestar: fully configure secondary I2S + pins + - arm64: dts: qcom: sm8450: fix UFS PHY registers + - arm64: dts: qcom: sm6350: drop bogus DP PHY clock + - arm64: dts: qcom: pm6350: Include header for KEY_POWER + - arm64: dts: renesas: r9a09g011: Fix unit address format error + - dt-bindings: pwm: fix microchip corePWM's pwm-cells + - arm64: dts: mt7986: fix trng node name + - drivers: perf: marvell_cn10k: Fix hotplug callback leak in tad_pmu_init() + - arm64: dts: ti: k3-j721s2: Fix the interrupt ranges property for main & wkup + gpio intr + - arm64: dts: mediatek: mt8195: Fix CPUs capacity-dmips-mhz + - arm64: dts: mt7896a: Fix unit_address_vs_reg warning for oscillator + - soc: apple: sart: Stop casting function pointer signatures + - soc: apple: rtkit: Stop casting function pointer signatures + - drivers/perf: hisi: Fix some event id for hisi-pcie-pmu + - arch: arm64: apple: t8103: Use standard "iommu" node name + - sched/uclamp: Fix fits_capacity() check in feec() + - sched/uclamp: Make cpu_overutilized() use util_fits_cpu() + - sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit + condition + - sched/psi: Fix possible missing or delayed pending event + - x86/split_lock: Add sysctl to control the misery mode + - selftests: cgroup: fix unsigned comparison with less than zero + - cpufreq: qcom-hw: Fix the frequency returned by cpufreq_driver->get() + - mailbox: pcc: Reset pcc_chan_count to zero in case of PCC probe failure + - ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object + - ACPI: pfr_update: use ACPI_FREE() to free acpi_object + - NFSD: Finish converting the NFSv3 GETACL result encoder + - ocfs2: fix memory leak in ocfs2_mount_volume() + - erofs: Fix pcluster memleak when its block address is zero + - erofs: fix missing unmap if z_erofs_get_extent_compressedlen() fails + - NFSD: pass range end to vfs_fsync_range() instead of count + - ipc: fix memory leak in init_mqueue_fs() + - wifi: ath11k: fix firmware assert during bandwidth change for peer sta + - libbpf: Fix memory leak in parse_usdt_arg() + - selftest/bpf: Fix memory leak in kprobe_multi_test + - selftests/bpf: Fix error failure of case test_xdp_adjust_tail_grow + - selftest/bpf: Fix error usage of ASSERT_OK in xdp_adjust_tail.c + - libbpf: Use elf_getshdrnum() instead of e_shnum + - libbpf: Deal with section with no data gracefully + - ASoC: Intel: avs: Fix potential RX buffer overflow + - drm/bridge: it6505: Initialize AUX channel in it6505_i2c_probe + - Input: iqs7222 - set all ULP entry masks by default + - Input: iqs7222 - drop unused device node references + - Input: iqs7222 - report malformed properties + - Input: iqs7222 - protect against undefined slider size + - media: amphion: reset instance if it's aborted before codec header parsed + - media: mediatek: vcodec: fix h264 cavlc bitstream fail + - drm/i915: Fix compute pre-emption w/a to apply to compute engines + - media: i2c: hi846: Fix memory leak in hi846_parse_dt() + - media: i2c: ov5648: Free V4L2 fwnode data on unbind + - clk: renesas: r8a779a0: Fix SD0H clock name + - ASoC: dt-bindings: rt5682: Set sound-dai-cells to 1 + - dw9768: Enable low-power probe on ACPI + - drm/ttm: fix undefined behavior in bit shift for TTM_TT_FLAG_PRIV_POPULATED + - drm/msm/mdp5: stop overriding drvdata + - bpf: Clobber stack slot when writing over spilled PTR_TO_BTF_ID + - drm/msm/dpu1: Account for DSC's bits_per_pixel having 4 fractional bits + - drm/msm/dsi: Remove useless math in DSC calculations + - drm/msm/dsi: Remove repeated calculation of slice_per_intf + - drm/msm/dsi: Use DIV_ROUND_UP instead of conditional increment on modulo + - drm/msm/dsi: Reuse earlier computed dsc->slice_chunk_size + - drm/msm/dsi: Appropriately set dsc->mux_word_size based on bpc + - media: rkvdec: Add required padding + - clk: qcom: gcc-ipq806x: use parent_data for the last remaining entry + - clk: qcom: dispcc-sm6350: Add CLK_OPS_PARENT_ENABLE to pixel&byte src + - mtd: core: fix possible resource leak in init_mtd() + - clk: renesas: r8a779f0: Fix SCIF parent clocks + - virt/sev-guest: Add a MODULE_ALIAS + - wifi: rtw89: use u32_encode_bits() to fill MAC quota value + - drm: rcar-du: Drop leftovers dependencies from Kconfig + - drbd: use blk_queue_max_discard_sectors helper + - dt-bindings: pinctrl: update uart/mmc bindings for MT7986 SoC + - pinctrl: mediatek: fix the pinconf register offset of some pins + - wifi: iwlwifi: mei: make sure ownership confirmed message is sent + - wifi: iwlwifi: mei: don't send SAP commands if AMT is disabled + - wifi: iwlwifi: mei: fix tx DHCP packet for devices with new Tx API + - wifi: iwlwifi: mei: avoid blocking sap messages handling due to rtnl lock + - wifi: iwlwifi: mei: fix potential NULL-ptr deref after clone + - module: Fix NULL vs IS_ERR checking for module_get_next_page + - wifi: rtw89: Fix some error handling path in rtw89_core_sta_assoc() + - net: ethernet: mtk_eth_soc: do not overwrite mtu configuration running reset + routine + - media: amphion: add lock around vdec_g_fmt + - media: amphion: apply vb2_queue_error instead of setting manually + - media: amphion: Fix error handling in vpu_driver_init() + - net: ethernet: mtk_eth_soc: fix RSTCTRL_PPE{0,1} definitions + - clk: imx93: correct the flexspi1 clock setting + - HID: i2c: let RMI devices decide what constitutes wakeup event + - clk: imx93: unmap anatop base in error handling path + - clk: imx93: correct enet clock + - clk: imx: imxrt1050: fix IMXRT1050_CLK_LCDIF_APB offsets + - wifi: rtw89: fix physts IE page check + - ASoC: Intel: avs: Lock substream before snd_pcm_stop() + - drm/i915/guc: make default_lists const data + - mtd: core: Fix refcount error in del_mtd_device() + - media: imx: imx7-media-csi: Clear BIT_MIPI_DOUBLE_CMPNT for <16b formats + - x86/boot: Skip realmode init code when running as Xen PV guest + - media: amphion: try to wakeup vpu core to avoid failure + - media: amphion: cancel vpu before release instance + - media: amphion: lock and check m2m_ctx in event handler + - media: mediatek: vcodec: Fix getting NULL pointer for dst buffer + - media: mediatek: vcodec: Fix h264 set lat buffer error + - media: mediatek: vcodec: Setting lat buf to lat_list when lat decode error + - media: mediatek: vcodec: Core thread depends on core_list + - NFSv4.2: Always decode the security label + - wifi: plfxlc: fix potential memory leak in __lf_x_usb_enable_rx() + - wifi: rtl8xxxu: Fix use after rcu_read_unlock in rtl8xxxu_bss_info_changed + - clk: mediatek: fix dependency of MT7986 ADC clocks + - amdgpu/nv.c: Corrected typo in the video capabilities resolution + - drm/i915/bios: fix a memory leak in generate_lfp_data_ptrs + - clk: visconti: Fix memory leak in visconti_register_pll() + - wifi: mac80211: fix memory leak in ieee80211_if_add() + - wifi: mt76: mt7915: fix mt7915_mac_set_timing() + - wifi: mt76: mt7915: fix reporting of TX AGGR histogram + - mt76: mt7915: Fix PCI device refcount leak in mt7915_pci_init_hif2() + - dt-bindings: clock: Add resets for LPASS audio clock controller for SC7280 + - dt-bindings: clock: Add support for external MCLKs for LPASS on SC7280 + - clk: qcom: lpass: Add support for resets & external mclk for SC7280 + - pinctrl: thunderbay: fix possible memory leak in + thunderbay_build_functions() + - bpftool: Fix memory leak in do_build_table_cb + - mmc: litex_mmc: ensure `host->irq == 0` if polling + - ipvs: use u64_stats_t for the per-cpu counters + - net: setsockopt: fix IPV6_UNICAST_IF option for connected sockets + - net: ethernet: ti: am65-cpsw: Fix PM runtime leakage in + am65_cpsw_nuss_ndo_slave_open() + - crypto: hisilicon/qm - re-enable communicate interrupt before notifying PF + - fortify: Do not cast to "unsigned char" + - f2fs: allow to set compression for inlined file + - f2fs: fix the assign logic of iocb + - RDMA/irdma: Fix inline for multiple SGE's + - RDMA/irdma: Fix RQ completion opcode + - RDMA/irdma: Do not request 2-level PBLEs for CQ alloc + - RDMA/rxe: Fix mr->map double free + - RDMA/hns: Fix incorrect sge nums calculation + - RDMA/irdma: Initialize net_type before checking it + - scsi: ufs: core: Fix the polling implementation + - f2fs: set zstd compress level correctly + - f2fs: fix to enable compress for newly created file if extension matches + - crypto: qat - fix error return code in adf_probe + - RDMA: Disable IB HW for UML + - PCI: vmd: Fix secondary bus reset for Intel bridges + - RDMA/hns: Fix the gid problem caused by free mr + - RDMA/hns: Fix XRC caps on HIP08 + - RISC-V: Fix unannoted hardirqs-on in return to userspace slow-path + - RISC-V: Fix MEMREMAP_WB for systems with Svpbmt + - riscv: Fix crash during early errata patching + - f2fs: fix iostat parameter for discard + - riscv: Fix P4D_SHIFT definition for 3-level page table mode + - interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm + - usb: typec: tipd: Fix typec_unregister_port error paths + - usb: musb: omap2430: Fix probe regression for missing resources + - USB: gadget: Fix use-after-free during usb config switch + - tracing/user_events: Fix call print_fmt leak + - usb: typec: wusb3801: fix fwnode refcount leak in wusb3801_probe() + - thermal/drivers/k3_j72xx_bandgap: Fix the debug print message + - led: qcom-lpg: Fix sleeping in atomic + - watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running + - power: supply: cw2015: Fix potential null-ptr-deref in cw_bat_probe() + - perf off_cpu: Fix a typo in BTF tracepoint name, it should be + 'btf_trace_sched_switch' + - ftrace: Allow WITH_ARGS flavour of graph tracer with shadow call stack + - phy: marvell: phy-mvebu-a3700-comphy: Reset COMPHY registers before USB 3.0 + power on + - iommu/s390: Fix duplicate domain attachments + - iommu/sun50i: Implement .iotlb_sync_map + - phy: usb: Use slow clock for wake enabled suspend + - phy: usb: Fix clock imbalance for suspend/resume + - pwm: tegra: Ensure the clock rate is not less than needed + - rtc: rzn1: Check return value in rzn1_rtc_probe + - rtc: class: Fix potential memleak in devm_rtc_allocate_device() + - iommu/mediatek: Check return value after calling platform_get_resource() + - kprobes: Fix check for probe enabled in kill_kprobe() + - iommu/mediatek: Add platform_device_put for recovering the device refcnt + - iommu/mediatek: Use component_match_add + - iommu/mediatek: Add error path for loop of mm_dts_parse + - iommu/mediatek: Validate number of phandles associated with "mediatek,larbs" + - mfd: axp20x: Do not sleep in the power off handler + - selftests/bpf: Select CONFIG_FUNCTION_ERROR_INJECTION + - mctp: serial: Fix starting value for frame check sequence + - mctp: Remove device type check at unregister + - ASoC: sof_es8336: fix possible use-after-free in sof_es8336_remove() + - ALSA: hda/hdmi: fix i915 silent stream programming flow + - ALSA: hda/hdmi: set default audio parameters for KAE silent-stream + - ALSA: hda/hdmi: fix stream-id config keep-alive for rt suspend + - lkdtm: cfi: Make PAC test work with GCC 7 and 8 + - drm/amd/pm: avoid large variable on kernel stack + - MIPS: ralink: mt7621: avoid to init common ralink reset controller + - perf test: Fix "all PMU test" to skip parametrized events + - Input: iqs7222 - avoid sending empty SYN_REPORT events + - dt-bindings: input: iqs7222: Reduce 'linux,code' to optional + - dt-bindings: input: iqs7222: Correct minimum slider size + - dt-bindings: input: iqs7222: Add support for IQS7222A v1.13+ + - Input: iqs7222 - trim force communication command + - Input: iqs7222 - add support for IQS7222A v1.13+ + - arm64: dts: qcom: sm6350: fix USB-DP PHY registers + - dt-bindings: clocks: imx8mp: Add ID for usb suspend clock + - clk: imx: imx8mp: add shared clk gate for usb suspend clk + - iio: addac: ad74413r: fix integer promotion bug in + ad74413_get_input_current_offset() + - mm/gup: disallow FOLL_FORCE|FOLL_WRITE on hugetlb mappings + + -- Kleber Sacilotto de Souza Fri, 31 Mar 2023 17:02:21 +0200 + +linux-hwe-5.19 (5.19.0-38.39~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-38.39~22.04.1 -proposed tracker (LP: #2012087) + + [ Ubuntu: 5.19.0-38.39 ] + + * kinetic/linux: 5.19.0-38.39 -proposed tracker (LP: #2012088) + * NFS deathlock with last Kernel 5.4.0-144.161 and 5.15.0-67.74 (LP: #2009325) + - NFS: Correct timing for assigning access cache timestamp + + -- Luke Nowakowski-Krijger Fri, 17 Mar 2023 13:56:32 -0700 + +linux-hwe-5.19 (5.19.0-37.38~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-37.38~22.04.1 -proposed tracker (LP: #2008304) + + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - drm/i915/psr: Use full update In case of area calculation fails + - drm/i915: Ensure damage clip area is within pipe area + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + + [ Ubuntu: 5.19.0-37.38 ] + + * kinetic/linux: 5.19.0-37.38 -proposed tracker (LP: #2008305) + * XPS 9320 screen flicker on UHD panel 3840x2400 (LP: #2007516) + - SAUCE: drm/i915/display/psr: Disable PSR2 sel fetch on panel SHP 5457 + * Fix speaker mute hotkey doesn't work on Dell G16 series (LP: #2003161) + - platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table + * net:cmsg_ipv6.sh from ubuntu_kernel_selftests failed with K-5.19 + (LP: #2000709) + - selftest: net: Improve IPV6_TCLASS/IPV6_HOPLIMIT tests apparmor + compatibility + * rtcpie in timers from ubuntu_kernel_selftests randomly failing + (LP: #1814234) + - SAUCE: selftest: rtcpie: Force passing unreliable subtest + * CVE-2023-0469 + - io_uring/filetable: fix file reference underflow + * Improve arp_ndisc_evict_nocarrier.sh test result processing (LP: #2006546) + - selftests: net: return non-zero for failures reported in + arp_ndisc_evict_nocarrier + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + * Fix Thunderbolt device hotplug fail when connect via thunderbolt dock + (LP: #1991366) + - PCI: Fix used_buses calculation in pci_scan_child_bus_extend() + - PCI: Pass available buses even if the bridge is already configured + - PCI: Move pci_assign_unassigned_root_bus_resources() + - PCI: Fix whitespace and indentation + - PCI: Fix typo in pci_scan_child_bus_extend() + * arp_ndisc_evict_nocarrier.sh in net from ubuntu_kernel_selftests failed on + J-oem-5.17 / K (LP: #1968310) + - selftests: net: fix cleanup_v6() for arp_ndisc_evict_nocarrier + * Screen freeze after resuming from suspend (nvme0: I/O timeout) + (LP: #1996048) + - PCI: vmd: Disable MSI remapping after suspend + * RaptorLake: Fix the Screen is shaking by onboard HDMI port in mirror mode + (LP: #1993561) + - drm/i915/display: Drop check for doublescan mode in modevalid + - drm/i915/display: Prune Interlace modes for Display >=12 + * udpgro_frglist.sh in net from ubuntu_kernel_selftests failed with K-5.19 + (Missing nat6to4 helper) (LP: #2000708) + - selftests/net: mv bpf/nat6to4.c to net folder + * selftests/.../nat6to4 breaks the selftests build (LP: #1996536) + - selftests: net: Add cross-compilation support for BPF programs + - selftests: net: Fix O=dir builds + * CVE-2023-0266 // CVE-2023-0266 was assigned for this issue. + - ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF + * CVE-2022-4382 + - USB: gadgetfs: Fix race between mounting and unmounting + * CVE-2022-2196 + - KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS + * ubuntu_kernel_selftests: net:udpgso_bench.sh failed (LP: #1951447) + - selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs + * Kinetic update: upstream stable patchset 2023-02-02 (LP: #2004602) + - clk: generalize devm_clk_get() a bit + - clk: Provide new devm_clk helpers for prepared and enabled clocks + - mmc: mtk-sd: Fix missing clk_disable_unprepare in msdc_of_clock_parse() + - arm64: dts: rockchip: keep I2S1 disabled for GPIO function on ROCK Pi 4 + series + - arm: dts: rockchip: fix node name for hym8563 rtc + - arm: dts: rockchip: remove clock-frequency from rtc + - ARM: dts: rockchip: fix ir-receiver node names + - arm64: dts: rockchip: fix ir-receiver node names + - ARM: dts: rockchip: rk3188: fix lcdc1-rgb24 node name + - fs: use acquire ordering in __fget_light() + - ARM: 9251/1: perf: Fix stacktraces for tracepoint events in THUMB2 kernels + - ARM: 9266/1: mm: fix no-MMU ZERO_PAGE() implementation + - ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register + - spi: mediatek: Fix DEVAPC Violation at KO Remove + - ARM: dts: rockchip: disable arm_global_timer on rk3066 and rk3188 + - ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine + transitions + - 9p/fd: Use P9_HDRSZ for header size + - regulator: slg51000: Wait after asserting CS pin + - ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event + - btrfs: send: avoid unaligned encoded writes when attempting to clone range + - ASoC: soc-pcm: Add NULL check in BE reparenting + - regulator: twl6030: fix get status of twl6032 regulators + - fbcon: Use kzalloc() in fbcon_prepare_logo() + - usb: dwc3: gadget: Disable GUSB2PHYCFG.SUSPHY for End Transfer + - 9p/xen: check logical size for buffer size + - net: usb: qmi_wwan: add u-blox 0x1342 composition + - mm/khugepaged: take the right locks for page table retraction + - mm/khugepaged: fix GUP-fast interaction by sending IPI + - mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths + - cifs: fix use-after-free caused by invalid pointer `hostname` + - xen/netback: do some code cleanup + - xen/netback: don't call kfree_skb() with interrupts disabled + - media: videobuf2-core: take mmap_lock in vb2_get_unmapped_area() + - soundwire: intel: Initialize clock stop timeout + - media: v4l2-dv-timings.c: fix too strict blanking sanity checks + - memcg: fix possible use-after-free in memcg_write_event_control() + - mm/gup: fix gup_pud_range() for dax + - Bluetooth: btusb: Add debug message for CSR controllers + - Bluetooth: Fix crash when replugging CSR fake controllers + - net: mana: Fix race on per-CQ variable napi work_done + - KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field + - drm/vmwgfx: Don't use screen objects when SEV is active + - drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend + - drm/shmem-helper: Remove errant put in error path + - drm/shmem-helper: Avoid vm_open error paths + - net: dsa: sja1105: avoid out of bounds access in sja1105_init_l2_policing() + - HID: usbhid: Add ALWAYS_POLL quirk for some mice + - HID: hid-lg4ff: Add check for empty lbuf + - HID: core: fix shift-out-of-bounds in hid_report_raw_event + - HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10 + - can: af_can: fix NULL pointer dereference in can_rcv_filter + - clk: Fix pointer casting to prevent oops in devm_clk_release() + - gpiolib: fix memory leak in gpiochip_setup_dev() + - netfilter: nft_set_pipapo: Actually validate intervals in fields after the + first one + - drm/vmwgfx: Fix race issue calling pin_user_pages + - ieee802154: cc2520: Fix error return code in cc2520_hw_init() + - ca8210: Fix crash by zero initializing data + - netfilter: ctnetlink: fix compilation warning after data race fixes in ct + mark + - drm/bridge: ti-sn65dsi86: Fix output polarity setting bug + - gpio: amd8111: Fix PCI device reference count leak + - e1000e: Fix TX dispatch condition + - igb: Allocate MSI-X vector when testing + - net: broadcom: Add PTP_1588_CLOCK_OPTIONAL dependency for BCMGENET under + ARCH_BCM2835 + - drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420 + - af_unix: Get user_ns from in_skb in unix_diag_get_exact(). + - vmxnet3: correctly report encapsulated LRO packet + - vmxnet3: use correct intrConf reference when using extended queues + - Bluetooth: 6LoWPAN: add missing hci_dev_put() in get_l2cap_conn() + - Bluetooth: Fix not cleanup led when bt_init fails + - net: dsa: ksz: Check return value + - net: dsa: hellcreek: Check return value + - net: dsa: sja1105: Check return value + - selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload + - mac802154: fix missing INIT_LIST_HEAD in ieee802154_if_add() + - net: encx24j600: Add parentheses to fix precedence + - net: encx24j600: Fix invalid logic in reading of MISTAT register + - net: mdiobus: fwnode_mdiobus_register_phy() rework error handling + - net: mdiobus: fix double put fwnode in the error path + - octeontx2-pf: Fix potential memory leak in otx2_init_tc() + - xen-netfront: Fix NULL sring after live migration + - net: mvneta: Prevent out of bounds read in mvneta_config_rss() + - i40e: Fix not setting default xps_cpus after reset + - i40e: Fix for VF MAC address 0 + - i40e: Disallow ip4 and ip6 l4_4_bytes + - NFC: nci: Bounds check struct nfc_target arrays + - nvme initialize core quirks before calling nvme_init_subsystem + - gpio/rockchip: fix refcount leak in rockchip_gpiolib_register() + - net: stmmac: fix "snps,axi-config" node property parsing + - ip_gre: do not report erspan version on GRE interface + - net: microchip: sparx5: Fix missing destroy_workqueue of mact_queue + - net: thunderx: Fix missing destroy_workqueue of nicvf_rx_mode_wq + - net: hisilicon: Fix potential use-after-free in hisi_femac_rx() + - net: mdio: fix unbalanced fwnode reference count in mdio_device_release() + - net: hisilicon: Fix potential use-after-free in hix5hd2_rx() + - tipc: Fix potential OOB in tipc_link_proto_rcv() + - ipv4: Fix incorrect route flushing when source address is deleted + - ipv4: Fix incorrect route flushing when table ID 0 is used + - net: dsa: sja1105: fix memory leak in sja1105_setup_devlink_regions() + - tipc: call tipc_lxc_xmit without holding node_read_lock + - ethernet: aeroflex: fix potential skb leak in greth_init_rings() + - dpaa2-switch: Fix memory leak in dpaa2_switch_acl_entry_add() and + dpaa2_switch_acl_entry_remove() + - net: phy: mxl-gpy: fix version reporting + - net: plip: don't call kfree_skb/dev_kfree_skb() under spin_lock_irq() + - ipv6: avoid use-after-free in ip6_fragment() + - net: thunderbolt: fix memory leak in tbnet_open() + - net: mvneta: Fix an out of bounds check + - macsec: add missing attribute validation for offload + - s390/qeth: fix use-after-free in hsci + - can: esd_usb: Allow REC and TEC to return to zero + - io_uring: Fix a null-ptr-deref in io_tctx_exit_cb() + - madvise: use zap_page_range_single for madvise dontneed + - drm/i915: Remove non-existent pipes from bigjoiner pipe mask + - arm64: dts: rockchip: Fix gmac failure of rgmii-id from rk3566-roc-pc + - arm64: dts: rockchip: Fix i2c3 pinctrl on rk3566-roc-pc + - arm64: dts: rockchip: remove i2c5 from rk3566-roc-pc + - arm64: dts: rockchip: fix node name for hym8563 rtc + - ARM: dts: rockchip: fix adc-keys sub node names + - arm64: dts: rockchip: fix adc-keys sub node names + - LoongArch: Makefile: Use "grep -E" instead of "egrep" + - LoongArch: Combine acpi_boot_table_init() and acpi_boot_init() + - LoongArch: Set _PAGE_DIRTY only if _PAGE_MODIFIED is set in + {pmd,pte}_mkwrite() + - net/mlx5: Lag, avoid lockdep warnings + - hugetlb: don't delete vma_lock in hugetlb MADV_DONTNEED processing + - crypto: ccp - Add a quirk to firmware update + - soundwire: dmi-quirks: add remapping for HP Omen 16-k0005TX + - platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum + - platform/x86: asus-wmi: Add support for ROG X13 tablet mode + - fscache: Fix oops due to race with cookie_lru and use_cookie + - tmpfs: fix data loss from failed fallocate + - selftests/tls: Fix tls selftests dependency to correct algorithm + - drm/amd/display: fix array index out of bound error in DCN32 DML + - HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk + - ARM: 9278/1: kfence: only handle translation faults + - netfilter: conntrack: fix using __this_cpu_add in preemptible + - net: ethernet: ti: am65-cpsw: Fix RGMII configuration at SPEED_10 + - inet: ping: use hlist_nulls rcu iterator during lookup + - Bluetooth: Remove codec id field in vendor codec definition + - Bluetooth: Fix support for Read Local Supported Codecs V2 + - nfp: correct desc type when header dma len is 4096 + - net: microchip: sparx5: correctly free skb in xmit + - net: wwan: iosm: fix memory leak in ipc_mux_init() + - ravb: Fix potential use-after-free in ravb_rx_gbeth() + - bonding: get correct NA dest address + - net: dsa: mv88e6xxx: accept phy-mode = "internal" for internal PHY ports + - drm/amdgpu/vcn: update vcn4 fw shared data structure + - x86/vdso: Conditionally export __vdso_sgx_enter_enclave() + - ASoC: fsl_micfil: explicitly clear software reset bit + - ASoC: fsl_micfil: explicitly clear CHnF flags + - ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() + - libbpf: Use page size as max_entries when probing ring buffer map + - pinctrl: meditatek: Startup with the IRQs disabled + - can: sja1000: fix size of OCR_MODE_MASK define + - can: mcba_usb: Fix termination command argument + - net: fec: don't reset irq coalesce settings to defaults on "ip link up" + - ASoC: cs42l51: Correct PGA Volume minimum value + - perf: Fix perf_pending_task() UaF + - nvme-pci: clear the prp2 field when not used + - ASoC: ops: Correct bounds check for second channel on SX controls + - net: fec: properly guard irq coalesce setup + - libbpf: Fix uninitialized warning in btf_dump_dump_type_data + - udf: Discard preallocation before extending file with a hole + - udf: Fix preallocation discarding at indirect extent boundary + - udf: Do not bother looking for prealloc extents if i_lenExtents matches + i_size + - udf: Fix extending file within last block + - usb: gadget: uvc: Prevent buffer overflow in setup handler + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: cp210x: add Kamstrup RF sniffer PIDs + - USB: serial: f81232: fix division by zero on line-speed change + - USB: serial: f81534: fix division by zero on line-speed change + - xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N + - igb: Initialize mailbox message for VF reset + - usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system + for Raptor Lake + - selftests: net: Use "grep -E" instead of "egrep" + - net: loopback: use NET_NAME_PREDICTABLE for name_assign_type + - PCI: mt7621: Add sentinel to quirks table + - kallsyms: Make module_kallsyms_on_each_symbol generally available + - ftrace: Add support to resolve module symbols in ftrace_lookup_symbols + - bpf: Rename __bpf_kprobe_multi_cookie_cmp to bpf_kprobe_multi_addrs_cmp + - bpf: Take module reference on kprobe_multi link + - selftests/bpf: Add load_kallsyms_refresh function + - selftests/bpf: Add bpf_testmod_fentry_* functions + - selftests/bpf: Add kprobe_multi check to module attach test + - selftests/bpf: Add kprobe_multi kmod attach api tests + - usb: typec: ucsi: Resume in separate work + - KEYS: encrypted: fix key instantiation with user-provided data + * Kinetic update: upstream stable patchset 2023-02-02 (LP: #2004602) // + net:fcnal-test.sh 'nettest' command not found on F/K (LP: #2006391) + - selftests/net: Find nettest in current directory + * CVE-2023-23559 + - wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid + * CVE-2023-0045 + - x86/bugs: Flush IBP in ib_prctl_set() + + -- Stefan Bader Wed, 08 Mar 2023 12:06:23 +0100 + +linux-hwe-5.19 (5.19.0-35.36~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-35.36~22.04.1 -proposed tracker (LP: #2004298) + + [ Ubuntu: 5.19.0-35.36 ] + + * kinetic/linux: 5.19.0-35.36 -proposed tracker (LP: #2004652) + * CVE-2023-0461 + - SAUCE: Fix inet_csk_listen_start after CVE-2023-0461 + + [ Ubuntu: 5.19.0-34.35 ] + + * kinetic/linux: 5.19.0-34.35 -proposed tracker (LP: #2004299) + * LXD containers using shiftfs on ZFS or TMPFS broken on 5.15.0-48.54 + (LP: #1990849) + - [SAUCE] shiftfs: fix -EOVERFLOW inside the container + * Kinetic update: upstream stable patchset 2023-01-27 (LP: #2004051) + - ASoC: fsl_sai: use local device pointer + - serial: Add rs485_supported to uart_port + - serial: fsl_lpuart: Fill in rs485_supported + - x86/sgx: Create utility to validate user provided offset and length + - x86/sgx: Add overflow check in sgx_validate_offset_length() + - binder: validate alloc->mm in ->mmap() handler + - ceph: Use kcalloc for allocating multiple elements + - ceph: fix NULL pointer dereference for req->r_session + - wifi: mac80211: fix memory free error when registering wiphy fail + - wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support + - riscv: dts: sifive unleashed: Add PWM controlled LEDs + - audit: fix undefined behavior in bit shift for AUDIT_BIT + - wifi: airo: do not assign -1 to unsigned char + - wifi: mac80211: Fix ack frame idr leak when mesh has no route + - wifi: ath11k: Fix QCN9074 firmware boot on x86 + - spi: stm32: fix stm32_spi_prepare_mbr() that halves spi clk for every run + - selftests/bpf: Add verifier test for release_reference() + - Revert "net: macsec: report real_dev features when HW offloading is enabled" + - platform/x86: ideapad-laptop: Disable touchpad_switch + - platform/x86: touchscreen_dmi: Add info for the RCA Cambio W101 v2 2-in-1 + - platform/x86/intel/pmt: Sapphire Rapids PMT errata fix + - scsi: ibmvfc: Avoid path failures during live migration + - scsi: scsi_debug: Make the READ CAPACITY response compliant with ZBC + - drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017) + - block, bfq: fix null pointer dereference in bfq_bio_bfqg() + - arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. + - nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked + - Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 + properly"" + - ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue + - RISC-V: vdso: Do not add missing symbols to version section in linker script + - MIPS: pic32: treat port as signed integer + - xfrm: fix "disable_policy" on ipv4 early demux + - xfrm: replay: Fix ESN wrap around for GSO + - af_key: Fix send_acquire race with pfkey_register + - ARM: dts: am335x-pcm-953: Define fixed regulators in root node + - ASoC: hdac_hda: fix hda pcm buffer overflow issue + - ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove + - ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open() + - x86/hyperv: Restore VP assist page after cpu offlining/onlining + - scsi: storvsc: Fix handling of srb_status and capacity change events + - ASoC: max98373: Add checks for devm_kcalloc + - regulator: core: fix kobject release warning and memory leak in + regulator_register() + - spi: dw-dma: decrease reference count in dw_spi_dma_init_mfld() + - regulator: core: fix UAF in destroy_regulator() + - bus: sunxi-rsb: Remove the shutdown callback + - bus: sunxi-rsb: Support atomic transfers + - tee: optee: fix possible memory leak in optee_register_device() + - ARM: dts: at91: sam9g20ek: enable udc vbus gpio pinctrl + - selftests: mptcp: fix mibit vs mbit mix up + - net: liquidio: simplify if expression + - rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI- + CAN-15975] + - net: dsa: sja1105: disallow C45 transactions on the BASE-TX MDIO bus + - nfc/nci: fix race with opening and closing + - net: pch_gbe: fix potential memleak in pch_gbe_tx_queue() + - 9p/fd: fix issue of list_del corruption in p9_fd_cancel() + - netfilter: conntrack: Fix data-races around ct mark + - netfilter: nf_tables: do not set up extensions for end interval + - iavf: Fix a crash during reset task + - iavf: Do not restart Tx queues after reset task failure + - iavf: Fix race condition between iavf_shutdown and iavf_remove + - ARM: mxs: fix memory leak in mxs_machine_init() + - ARM: dts: imx6q-prti6q: Fix ref/tcxo-clock-frequency properties + - net: ethernet: mtk_eth_soc: fix error handling in mtk_open() + - net/mlx4: Check retval of mlx4_bitmap_init + - net: mvpp2: fix possible invalid pointer dereference + - net/qla3xxx: fix potential memleak in ql3xxx_send() + - octeontx2-af: debugsfs: fix pci device refcount leak + - net: pch_gbe: fix pci device refcount leak while module exiting + - nfp: fill splittable of devlink_port_attrs correctly + - nfp: add port from netdev validation for EEPROM access + - macsec: Fix invalid error code set + - Drivers: hv: vmbus: fix double free in the error path of + vmbus_add_channel_work() + - Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register() + - netfilter: ipset: regression in ip_set_hash_ip.c + - net/mlx5: Do not query pci info while pci disabled + - net/mlx5: Fix FW tracer timestamp calculation + - net/mlx5: Fix handling of entry refcount when command is not issued to FW + - tipc: set con sock in tipc_conn_alloc + - tipc: add an extra conn_get in tipc_conn_alloc + - tipc: check skb_linearize() return value in tipc_disc_rcv() + - xfrm: Fix oops in __xfrm_state_delete() + - xfrm: Fix ignored return value in xfrm6_init() + - net: wwan: iosm: use ACPI_FREE() but not kfree() in ipc_pcie_read_bios_cfg() + - sfc: fix potential memleak in __ef100_hard_start_xmit() + - net: sparx5: fix error handling in sparx5_port_open() + - net: sched: allow act_ct to be built without NF_NAT + - NFC: nci: fix memory leak in nci_rx_data_packet() + - regulator: twl6030: re-add TWL6032_SUBCLASS + - bnx2x: fix pci device refcount leak in bnx2x_vf_is_pcie_pending() + - dma-buf: fix racing conflict of dma_heap_add() + - netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface + - netfilter: flowtable_offload: add missing locking + - fs: do not update freeing inode i_io_list + - dccp/tcp: Reset saddr on failure after inet6?_hash_connect(). + - ipv4: Fix error return code in fib_table_insert() + - arcnet: fix potential memory leak in com20020_probe() + - s390/dasd: fix no record found for raw_track_access + - nfc: st-nci: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st-nci: fix memory leaks in EVT_TRANSACTION + - nfc: st-nci: fix incorrect sizing calculations in EVT_TRANSACTION + - net: enetc: cache accesses to &priv->si->hw + - net: enetc: preserve TX ring priority across reconfiguration + - octeontx2-pf: Add check for devm_kcalloc + - octeontx2-af: Fix reference count issue in rvu_sdp_init() + - net: thunderx: Fix the ACPI memory leak + - s390/crashdump: fix TOD programmable field size + - lib/vdso: use "grep -E" instead of "egrep" + - [Config] updateconfigs for CC_HAS_ASM_GOTO_TIED_OUTPUT + - init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash + - nios2: add FORCE for vmlinuz.gz + - KVM: arm64: pkvm: Fixup boot mode to reflect that the kernel resumes from + EL1 + - usb: dwc3: exynos: Fix remove() function + - usb: cdnsp: Fix issue with Clear Feature Halt Endpoint + - usb: cdnsp: fix issue with ZLP - added TD_SIZE = 1 + - ext4: fix use-after-free in ext4_ext_shift_extents + - arm64: dts: rockchip: lower rk3399-puma-haikou SD controller clock frequency + - iio: light: apds9960: fix wrong register for gesture gain + - iio: core: Fix entry not deleted when iio_register_sw_trigger_type() fails + - bus: ixp4xx: Don't touch bit 7 on IXP42x + - usb: dwc3: gadget: conditionally remove requests + - usb: dwc3: gadget: Return -ESHUTDOWN on ep disable + - usb: dwc3: gadget: Clear ep descriptor last + - nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirty + - gcov: clang: fix the buffer overflow issue + - mm: vmscan: fix extreme overreclaim and swap floods + - KVM: x86: nSVM: leave nested mode on vCPU free + - KVM: x86: forcibly leave nested mode on vCPU reset + - KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in + use + - KVM: x86: add kvm_leave_nested + - KVM: x86: remove exit_int_info warning in svm_handle_exit + - x86/tsx: Add a feature bit for TSX control MSR support + - x86/pm: Add enumeration check before spec MSRs save/restore setup + - x86/ioremap: Fix page aligned size calculation in __ioremap_caller() + - Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode + - ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01 + - tools: iio: iio_generic_buffer: Fix read size + - serial: 8250: 8250_omap: Avoid RS485 RTS glitch on ->set_termios() + - Input: goodix - try resetting the controller when no config is set + - Input: soc_button_array - add use_low_level_irq module parameter + - Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[] + - Input: i8042 - apply probe defer to more ASUS ZenBook models + - ASoC: stm32: dfsdm: manage cb buffers cleanup + - xen-pciback: Allow setting PCI_MSIX_FLAGS_MASKALL too + - xen/platform-pci: add missing free_irq() in error path + - platform/x86: asus-wmi: add missing pci_dev_put() in asus_wmi_set_xusb2pr() + - platform/x86: acer-wmi: Enable SW_TABLET_MODE on Switch V 10 (SW5-017) + - drm/amdgpu: disable BACO support on more cards + - zonefs: fix zone report size in __zonefs_io_error() + - platform/x86: hp-wmi: Ignore Smart Experience App event + - platform/x86: ideapad-laptop: Fix interrupt storm on fn-lock toggle on some + Yoga laptops + - [Config] updateconfigs for INET_TABLE_PERTURB_ORDER + - tcp: configurable source port perturb table size + - net: usb: qmi_wwan: add Telit 0x103a composition + - scsi: iscsi: Fix possible memory leak when device_register() failed + - gpu: host1x: Avoid trying to use GART on Tegra20 + - dm integrity: flush the journal on suspend + - dm integrity: clear the journal on suspend + - fuse: lock inode unconditionally in fuse_fallocate() + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_OPER_CHANNEL attribute + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_CHANNEL_LIST attribute + - wifi: wilc1000: validate number of channels + - btrfs: free btrfs_path before copying root refs to userspace + - btrfs: free btrfs_path before copying fspath to userspace + - btrfs: free btrfs_path before copying subvol info to userspace + - btrfs: zoned: fix missing endianness conversion in sb_write_pointer + - btrfs: use kvcalloc in btrfs_get_dev_zone_info + - btrfs: sysfs: normalize the error handling branch in btrfs_init_sysfs() + - drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN + - drm/amdgpu: Enable Aldebaran devices to report CU Occupancy + - drm/amdgpu: always register an MMU notifier for userptr + - drm/i915: fix TLB invalidation for Gen12 video and compute engines + - wifi: cfg80211: Fix bitrates overflow issue + - spi: tegra210-quad: Don't initialise DMA if not supported + - s390/zcrypt: fix warning about field-spanning write + - selftests/net: give more time to udpgro bg processes to complete startup + - ACPI: video: Add backlight=native DMI quirk for Dell G15 5515 + - drm: panel-orientation-quirks: Add quirk for Nanote UMPC-01 + - s390: always build relocatable kernel + - nvme: quiet user passthrough command errors + - net: wwan: iosm: fix kernel test robot reported errors + - drm/amdgpu: Drop eviction lock when allocating PT BO + - arm64: dts: rockchip: fix quartz64-a bluetooth configuration + - power: supply: ip5xxx: Fix integer overflow in current_now calculation + - power: supply: ab8500: Defer thermal zone probe + - arm64: dts: rockchip: Fix Pine64 Quartz4-B PMIC interrupt + - regulator: rt5759: fix OOB in validate_desc() + - spi: tegra210-quad: Fix duplicate resource error + - selftests: mptcp: gives slow test-case more time + - selftests: mptcp: run mptcp_sockopt from a new netns + - bonding: fix ICMPv6 header handling when receiving IPv6 messages + - drm/i915: Fix warn in intel_display_power_*_domain() functions + - net/mlx5: SF: Fix probing active SFs during driver probe phase + - net/mlx5: cmdif, Print info on any firmware cmd failure to tracepoint + - net/mlx5: E-Switch, Set correctly vport destination + - net/mlx5e: Offload rule only when all encaps are valid + - net: phy: at803x: fix error return code in at803x_probe() + - zonefs: Fix race between modprobe and mount + - tsnep: Fix rotten packets + - blk-mq: fix queue reference leak on blk_mq_alloc_disk_for_queue failure + - test_kprobes: fix implicit declaration error of test_kprobes + - net: ethernet: mtk_eth_soc: fix resource leak in error path + - net: dm9051: Fix missing dev_kfree_skb() in dm9051_loop_rx() + - s390/ap: fix memory leak in ap_init_qci_info() + - fscache: fix OOB Read in __fscache_acquire_volume + - net: wwan: t7xx: Fix the ACPI memory leak + - virtio_net: Fix probe failed when modprobe virtio_net + - can: gs_usb: remove dma allocations + - cifs: fix missing unlock in cifs_file_copychunk_range() + - cifs: Use after free in debug code + - iio: adc: aspeed: Remove the trim valid dts property. + - dt-bindings: iio: adc: Remove the property "aspeed,trim-data-valid" + - mm/damon/sysfs-schemes: skip stats update if the scheme directory is removed + - virt/sev-guest: Prevent IV reuse in the SNP guest driver + - zonefs: Fix active zone accounting + - spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock + - spi: spi-imx: spi_imx_transfer_one(): check for DMA transfer first + - mm/cgroup/reclaim: fix dirty pages throttling on cgroup v1 + - KVM: x86/mmu: Fix race condition in direct_page_fault + - KVM: x86/xen: Only do in-kernel acceleration of hypercalls for guest CPL0 + - KVM: x86/xen: Validate port number in SCHEDOP_poll + - drm/i915/gvt: Get reference to KVM iff attachment to VM is successful + - KVM: Update gfn_to_pfn_cache khva when it moves within the same page + - mm: fix unexpected changes to {failslab|fail_page_alloc}.attr + - mm: correctly charge compressed memory to its memcg + - LoongArch: Clear FPU/SIMD thread info flags for kernel thread + - LoongArch: Set _PAGE_DIRTY only if _PAGE_WRITE is set in {pmd,pte}_mkdirty() + - ASoC: amd: yc: Add Alienware m17 R5 AMD into DMI table + - ASoC: Intel: soc-acpi: add ES83x6 support to IceLake + - ASoC: hda: intel-dsp-config: add ES83x6 quirk for IceLake + - ASoC: SOF: ipc3-topology: use old pipeline teardown flow with SOF2.1 and + older + - Revert "tty: n_gsm: avoid call of sleeping functions from atomic context" + - Revert "tty: n_gsm: replace kicktimer with delayed_work" + - ASoC: sof_es8336: reduce pop noise on speaker + - pinctrl: qcom: sc8280xp: Rectify UFS reset pins + - platform/x86: thinkpad_acpi: Enable s2idle quirk for 21A1 machine type + - platform/x86: ideapad-laptop: Add module parameters to match DMI quirk + tables + - block: make blk_set_default_limits() private + - scsi: mpi3mr: Suppress command reply debug prints + - btrfs: free btrfs_path before copying inodes to userspace + - btrfs: do not modify log tree while holding a leaf from fs tree locked + - drm/i915/ttm: never purge busy objects + - drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code + - drm/amdgpu/psp: don't free PSP buffers on suspend + - drm/amd/amdgpu: reserve vm invalidation engine for firmware + - drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly + when the edid is read" + - btrfs: sink iterator parameter to btrfs_ioctl_logical_to_ino + - btrfs: qgroup: fix sleep from invalid context bug in btrfs_qgroup_inherit() + - iio: health: afe4403: Fix oob read in afe4403_read_raw + - iio: health: afe4404: Fix oob read in afe4404_[read|write]_raw + - iio: light: rpr0521: add missing Kconfig dependencies + - bpf, perf: Use subprog name when reporting subprog ksymbol + - scripts/faddr2line: Fix regression in name resolution on ppc64le + - ARM: at91: rm9200: fix usb device clock id + - libbpf: Handle size overflow for ringbuf mmap + - hwmon: (ltc2947) fix temperature scaling + - hwmon: (ina3221) Fix shunt sum critical calculation + - hwmon: (i5500_temp) fix missing pci_disable_device() + - hwmon: (ibmpex) Fix possible UAF when ibmpex_register_bmc() fails + - bpf: Do not copy spin lock field from user in bpf_selem_alloc + - nvmem: rmem: Fix return value check in rmem_read() + - of: property: decrement node refcount in of_fwnode_get_reference_args() + - ixgbevf: Fix resource leak in ixgbevf_init_module() + - i40e: Fix error handling in i40e_init_module() + - fm10k: Fix error handling in fm10k_init_module() + - iavf: Fix error handling in iavf_init_module() + - e100: Fix possible use after free in e100_xmit_prepare + - net/mlx5: DR, Fix uninitialized var warning + - net/mlx5: Fix uninitialized variable bug in outlen_write() + - net/mlx5e: Fix use-after-free when reverting termination table + - can: sja1000_isa: sja1000_isa_probe(): add missing free_sja1000dev() + - can: cc770: cc770_isa_probe(): add missing free_cc770dev() + - can: etas_es58x: es58x_init_netdev(): free netdev when register_candev() + - can: m_can: pci: add missing m_can_class_free_dev() in probe/remove methods + - can: m_can: Add check for devm_clk_get + - qlcnic: fix sleep-in-atomic-context bugs caused by msleep + - aquantia: Do not purge addresses when setting the number of rings + - wifi: cfg80211: fix buffer overflow in elem comparison + - wifi: cfg80211: don't allow multi-BSSID in S1G + - wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration + - net: phy: fix null-ptr-deref while probe() failed + - net: ethernet: ti: am65-cpsw: fix error handling in am65_cpsw_nuss_probe() + - net: net_netdev: Fix error handling in ntb_netdev_init_module() + - net/9p: Fix a potential socket leak in p9_socket_open + - net: ethernet: nixge: fix NULL dereference + - net: wwan: iosm: fix kernel test robot reported error + - net: wwan: iosm: fix dma_alloc_coherent incompatible pointer type + - dsa: lan9303: Correct stat name + - tipc: re-fetch skb cb after tipc_msg_validate + - net: hsr: Fix potential use-after-free + - net: mdiobus: fix unbalanced node reference count + - afs: Fix fileserver probe RTT handling + - net: tun: Fix use-after-free in tun_detach() + - packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE + - sctp: fix memory leak in sctp_stream_outq_migrate() + - net: ethernet: renesas: ravb: Fix promiscuous mode after system resumed + - hwmon: (coretemp) Check for null before removing sysfs attrs + - hwmon: (coretemp) fix pci device refcount leak in nv1a_ram_new() + - riscv: vdso: fix section overlapping under some conditions + - riscv: mm: Proper page permissions after initmem free + - ALSA: dice: fix regression for Lexicon I-ONIX FW810S + - error-injection: Add prompt for function error injection + - tools/vm/slabinfo-gnuplot: use "grep -E" instead of "egrep" + - nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry() + - x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3 + - pinctrl: intel: Save and restore pins in "direct IRQ" mode + - v4l2: don't fall back to follow_pfn() if pin_user_pages_fast() fails + - net: stmmac: Set MAC's flow control register to reflect current settings + - mmc: mmc_test: Fix removal of debugfs file + - mmc: core: Fix ambiguous TRIM and DISCARD arg + - mmc: sdhci-esdhc-imx: correct CQHCI exit halt state check + - mmc: sdhci-sprd: Fix no reset data and command after voltage switch + - mmc: sdhci: Fix voltage switch delay + - drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame + - drm/amdgpu: enable Vangogh VCN indirect sram mode + - drm/i915: Fix negative value passed as remaining time + - drm/i915: Never return 0 if not all requests retired + - tracing/osnoise: Fix duration type + - tracing: Fix race where histograms can be called before the event + - tracing: Free buffers when a used dynamic event is removed + - io_uring: cmpxchg for poll arm refs release + - io_uring/poll: fix poll_refs race with cancelation + - ASoC: ops: Fix bounds check for _sx controls + - pinctrl: single: Fix potential division by zero + - riscv: Sync efi page table's kernel mappings before switching + - riscv: fix race when vmap stack overflow + - riscv: kexec: Fixup irq controller broken in kexec crash path + - nvme: fix SRCU protection of nvme_ns_head list + - iommu/vt-d: Fix PCI device refcount leak in has_external_pci() + - iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init() + - mm: migrate: fix THP's mapcount on isolation + - Kconfig.debug: provide a little extra FRAME_WARN leeway when KASAN is + enabled + - ipv4: Handle attempt to delete multipath route when fib_info contains an nh + reference + - ipv4: Fix route deletion when nexthop info is not specified + - i2c: npcm7xx: Fix error handling in npcm_i2c_init() + - i2c: imx: Only DMA messages with I2C_M_DMA_SAFE flag set + - ACPI: HMAT: remove unnecessary variable initialization + - ACPI: HMAT: Fix initiator registration for single-initiator systems + - Revert "clocksource/drivers/riscv: Events are stopped during CPU suspend" + - char: tpm: Protect tpm_pm_suspend with locks + - Input: raydium_ts_i2c - fix memory leak in raydium_i2c_send() + - ipc/sem: Fix dangling sem_array access in semtimedop race + - clk: samsung: exynos7885: Correct "div4" clock parents + - libbpf: Use correct return pointer in attach_raw_tp + - clocksource/drivers/arm_arch_timer: Fix XGene-1 TVAL register math error + - clk: qcom: gcc-sc8280xp: add cxo as parent for three ufs ref clks + - vfs: fix copy_file_range() averts filesystem freeze protection + - net: wwan: iosm: fix crash in peek throughput test + - net: wwan: iosm: fix incorrect skb length + - mptcp: don't orphan ssk in mptcp_close() + - mptcp: fix sleep in atomic at close time + - hwmon: (asus-ec-sensors) Add checks for devm_kcalloc + - ASoC: tlv320adc3xxx: Fix build error for implicit function declaration + - mm/damon/sysfs: fix wrong empty schemes assumption under online tuning in + damon_sysfs_set_schemes() + - i2c: Restore initial power state if probe fails + - i2c: qcom-geni: fix error return code in geni_i2c_gpi_xfer + - powerpc/bpf/32: Fix Oops on tail call tests + * 5.15.0-58.64 breaks xen bridge networking (pvh domU) (LP: #2002889) + - xen/netback: fix build warning + * NFS: client permission error after adding user to permissible group + (LP: #2003053) + - NFS: Clear the file access cache upon login + - NFS: Judge the file access cache's timestamp in rcu path + - NFS: Fix up a sparse warning + * cmsg_so_mark.sh / cmsg_time.sh / cmsg_ipv6.sh in net from + ubuntu_kernel_selftests hang with non-amd64 (LP: #2000667) + - selftests: net: fix cmsg_so_mark.sh test hang + * Set explicit CC in the headers package (LP: #1999750) + - [Packaging] Set explicit CC in the headers package + * powerpc-build in ubuntu_kernel_selftests failed on P9 with K-5.19 + (LP: #2000772) + - selftests/powerpc: Avoid GCC 12 uninitialised variable warning + * [SRU] SoF for RPL platform support (LP: #1992714) + - ASoC: SOC: Intel: introduce cl_init callback + - ASoC: SOF: Intel: add MeteorLake machines + - ASoC: SOF: Intel: Add support for MeteorLake (MTL) + - ASoC: Intel: common: add ACPI matching tables for Raptor Lake + - ASoC: SOF: Intel: pci-tgl: use RPL specific firmware definitions + - [Config] Enable SND_SOC_SOF_METEORLAKE as module + * Rear Audio port sometimes has no audio output after reboot(Cirrus Logic) + (LP: #1998905) + - ALSA: hda/cirrus: Add extra 10 ms delay to allow PLL settle and lock. + * Fix SUT can't displayed after resume from WB/CB with dGFX + installed(FR:6/10)[RX6300][RX6500] (LP: #1999836) + - drm/amd/display: No display after resume from WB/CB + * commit cf58599cded35cf4affed1e659c0e2c742d3fda7 seems to be missing in + kinetic master to remove "hio" reference from Makefile (LP: #1999556) + - Ubuntu: remove leftover reference to ubuntu/hio driver + * Add additional Mediatek MT7922 BT device ID (LP: #1998885) + - Bluetooth: btusb: Add a new VID/PID 0489/e0f2 for MT7922 + * Mute/mic LEDs no function on a HP platfrom (LP: #1998882) + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + * CVE-2023-0461 + - net/ulp: prevent ULP without clone op from entering the LISTEN status + - net/ulp: use consistent error code when blocking ULP + * CVE-2023-0179 + - netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits + * CVE-2022-20369 + - NFSD: fix use-after-free in __nfs42_ssc_open() + * Kinetic update: upstream stable patchset 2023-01-23 (LP: #2003753) + - ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in + wm5102_probe" + - ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in + wm5110_probe" + - ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in + wm8997_probe" + - ASoC: mt6660: Keep the pm_runtime enables before component stuff in + mt6660_i2c_probe + - ASoC: rt1019: Fix the TDM settings + - ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK + - spi: intel: Fix the offset to get the 64K erase opcode + - ASoC: codecs: jz4725b: add missed Line In power control bit + - ASoC: codecs: jz4725b: fix reported volume for Master ctl + - ASoC: codecs: jz4725b: use right control for Capture Volume + - ASoC: codecs: jz4725b: fix capture selector naming + - ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 + - selftests/futex: fix build for clang + - selftests/intel_pstate: fix build for ARCH=x86_64 + - ASoC: rt1308-sdw: add the default value of some registers + - drm/amd/display: Remove wrong pipe control lock + - ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[] + - RDMA/efa: Add EFA 0xefa2 PCI ID + - btrfs: raid56: properly handle the error when unable to find the missing + stripe + - NFSv4: Retry LOCK on OLD_STATEID during delegation return + - ACPI: x86: Add another system to quirk list for forcing StorageD3Enable + - firmware: arm_scmi: Cleanup the core driver removal callback + - i2c: tegra: Allocate DMA memory for DMA engine + - i2c: i801: add lis3lv02d's I2C address for Vostro 5568 + - drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid + - btrfs: remove pointless and double ulist frees in error paths of qgroup + tests + - x86/cpu: Add several Intel server CPU model numbers + - ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> + "Route" + - KVM: x86/pmu: Do not speculatively query Intel GP PMCs that don't exist yet + - hugetlbfs: don't delete error page from pagecache + - arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8150-xperia-kumano: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8250-xperia-edo: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8350-hdk: Specify which LDO modes are allowed + - spi: stm32: Print summary 'callbacks suppressed' message + - ARM: dts: at91: sama7g5: fix signal name of pin PB2 + - ASoC: core: Fix use-after-free in snd_soc_exit() + - ASoC: tas2770: Fix set_tdm_slot in case of single slot + - ASoC: tas2764: Fix set_tdm_slot in case of single slot + - ARM: at91: pm: avoid soft resetting AC DLL + - serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() + - serial: 8250_omap: remove wait loop from Errata i202 workaround + - serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() + - serial: 8250: omap: Flush PM QOS work on remove + - serial: imx: Add missing .thaw_noirq hook + - tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send + - bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() + - ASoC: soc-utils: Remove __exit for snd_soc_util_exit() + - pinctrl: rockchip: list all pins in a possible mux route for PX30 + - scsi: scsi_transport_sas: Fix error handling in sas_phy_add() + - block: sed-opal: kmalloc the cmd/resp buffers + - bpf: Fix memory leaks in __check_func_call + - arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro + - siox: fix possible memory leak in siox_device_add() + - parport_pc: Avoid FIFO port location truncation + - pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map + - drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms + - drm/panel: simple: set bpc field for logic technologies displays + - drm/drv: Fix potential memory leak in drm_dev_init() + - drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() + - arm64: dts: imx8mm: Fix NAND controller size-cells + - arm64: dts: imx8mn: Fix NAND controller size-cells + - ata: libata-transport: fix double ata_host_put() in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tlink_add() + - ata: libata-transport: fix error handling in ata_tdev_add() + - nfp: change eeprom length to max length enumerators + - MIPS: fix duplicate definitions for exported symbols + - MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed + - bpf: Initialize same number of free nodes for each pcpu_freelist + - net: bgmac: Drop free_netdev() from bgmac_enet_remove() + - mISDN: fix possible memory leak in mISDN_dsp_element_register() + - net: hinic: Fix error handling in hinic_module_init() + - net: stmmac: ensure tx function is not running in stmmac_xdp_release() + - soc: imx8m: Enable OCOTP clock before reading the register + - net: liquidio: release resources when liquidio driver open failed + - mISDN: fix misuse of put_device() in mISDN_register_device() + - net: macvlan: Use built-in RCU list checking + - net: caif: fix double disconnect client in chnl_net_open() + - bnxt_en: Remove debugfs when pci_register_driver failed + - net: mhi: Fix memory leak in mhi_net_dellink() + - net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims + - xen/pcpu: fix possible memory leak in register_pcpu() + - net: ionic: Fix error handling in ionic_init_module() + - net: ena: Fix error handling in ena_init() + - net: hns3: fix setting incorrect phy link ksettings for firmware in + resetting process + - bridge: switchdev: Fix memory leaks when changing VLAN protocol + - drbd: use after free in drbd_create_device() + - platform/x86/intel: pmc: Don't unconditionally attach Intel PMC when + virtualized + - platform/surface: aggregator: Do not check for repeated unsequenced packets + - cifs: add check for returning value of SMB2_close_init + - net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in + ag71xx_open() + - net/x25: Fix skb leak in x25_lapb_receive_frame() + - cifs: Fix wrong return value checking when GETFLAGS + - net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() + and sparx5_start() + - net: thunderbolt: Fix error handling in tbnet_init() + - cifs: add check for returning value of SMB2_set_info_init + - ftrace: Fix the possible incorrect kernel message + - ftrace: Optimize the allocation for mcount entries + - ftrace: Fix null pointer dereference in ftrace_add_mod() + - ring_buffer: Do not deactivate non-existant pages + - tracing: Fix memory leak in tracing_read_pipe() + - tracing/ring-buffer: Have polling block on watermark + - tracing: Fix memory leak in test_gen_synth_cmd() and + test_empty_synth_event() + - tracing: Fix wild-memory-access in register_synth_event() + - tracing: Fix race where eprobes can be called before the event + - tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in + kprobe_event_gen_test_exit() + - tracing: kprobe: Fix potential null-ptr-deref on trace_array in + kprobe_event_gen_test_exit() + - drm/amd/display: Add HUBP surface flip interrupt handler + - ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() + - ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 + - Revert "usb: dwc3: disable USB core PHY management" + - slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && + CONFIG_QCOM_RPROC_COMMON=m + - slimbus: stream: correct presence rate frequencies + - speakup: fix a segfault caused by switching consoles + - USB: bcma: Make GPIO explicitly optional + - USB: serial: option: add Sierra Wireless EM9191 + - USB: serial: option: remove old LARA-R6 PID + - USB: serial: option: add u-blox LARA-R6 00B modem + - USB: serial: option: add u-blox LARA-L6 modem + - USB: serial: option: add Fibocom FM160 0x0111 composition + - usb: add NO_LPM quirk for Realforce 87U Keyboard + - usb: chipidea: fix deadlock in ci_otg_del_timer + - usb: cdns3: host: fix endless superspeed hub port reset + - usb: typec: mux: Enter safe mode only when pins need to be reconfigured + - iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() + - iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() + - iio: adc: mp2629: fix wrong comparison of channel + - iio: adc: mp2629: fix potential array out of bound access + - iio: pressure: ms5611: changed hardcoded SPI speed to value limited + - dm ioctl: fix misbehavior if list_versions races with module loading + - serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs + - serial: 8250: Flush DMA Rx on RLSI + - serial: 8250_lpss: Configure DMA also w/o DMA filter + - Input: iforce - invert valid length check when fetching device IDs + - maccess: Fix writing offset in case of fault in + strncpy_from_kernel_nofault() + - net: phy: marvell: add sleep time after enabling the loopback bit + - scsi: zfcp: Fix double free of FSF request when qdio send fails + - iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries + - iommu/vt-d: Set SRE bit only when hardware has SRS cap + - firmware: coreboot: Register bus in module init + - mmc: core: properly select voltage range without power cycle + - mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce + timeout + - mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() + - docs: update mediator contact information in CoC doc + - misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() + - perf/x86/intel/pt: Fix sampling using single range output + - nvme: restrict management ioctls to admin + - nvme: ensure subsystem reset is single threaded + - serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake + - perf: Improve missing SIGTRAP checking + - ring-buffer: Include dropped pages in counting dirty patches + - tracing: Fix warning on variable 'struct trace_array' + - net: use struct_group to copy ip/ipv6 header addresses + - scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() + - scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() + - kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case + - Input: i8042 - fix leaking of platform device on module removal + - macvlan: enforce a consistent minimal mtu + - tcp: cdg: allow tcp_cdg_release() to be called multiple times + - kcm: avoid potential race in kcm_tx_work + - kcm: close race conditions on sk_receive_queue + - 9p: trans_fd/p9_conn_cancel: drop client lock earlier + - gfs2: Check sb_bsize_shift after reading superblock + - gfs2: Switch from strlcpy to strscpy + - 9p/trans_fd: always use O_NONBLOCK read/write + - wifi: wext: use flex array destination for memcpy() + - mm: fs: initialize fsdata passed to write_begin/write_end interface + - net/9p: use a dedicated spinlock for trans_fd + - ntfs: fix use-after-free in ntfs_attr_find() + - ntfs: fix out-of-bounds read in ntfs_attr_find() + - ntfs: check overflow when iterating ATTR_RECORDs + - drm/msm/gpu: Fix crash during system suspend after unbind + - spi: tegra210-quad: Fix combined sequence + - ASoC: rt5682s: Fix the TDM Tx settings + - selftests/kexec: fix build for ARCH=x86_64 + - ASoC: Intel: sof_rt5682: Add quirk for Rex board + - ASoC: amd: yc: Adding Lenovo ThinkBook 14 Gen 4+ ARA and Lenovo ThinkBook 16 + Gen 4+ ARA to the Quirks List + - ASoC: amd: yc: Add Lenovo Thinkbook 14+ 2022 21D0 to quirks table + - drm/amdgpu: Adjust MES polling timeout for sriov + - platform/x86: thinkpad_acpi: Fix reporting a non present second fan on some + models + - drm/scheduler: fix fence ref counting + - cxl/mbox: Add a check on input payload size + - SUNRPC: Fix crasher in gss_unwrap_resp_integ() + - drm/rockchip: vop2: fix null pointer in plane_atomic_disable + - drm/rockchip: vop2: disable planes when disabling the crtc + - ksefltests: pidfd: Fix wait_states: Test terminated by timeout + - powerpc/64e: Fix amdgpu build on Book3E w/o AltiVec + - block: blk_add_rq_to_plug(): clear stale 'last' after flush + - firmware: arm_scmi: Make tx_prepare time out eventually + - drm/amd/display: Ignore Cable ID Feature + - drm/amdgpu: set fb_modifiers_not_supported in vkms + - drm/amd: Fail the suspend if resources can't be evicted + - cxl/pmem: Use size_add() against integer overflow + - tools/testing/cxl: Fix some error exits + - arm64/mm: fold check for KFENCE into can_set_direct_map() + - arm64: fix rodata=full again + - KVM: SVM: remove dead field from struct svm_cpu_data + - KVM: SVM: do not allocate struct svm_cpu_data dynamically + - KVM: SVM: restore host save area from assembly + - KVM: SVM: move MSR_IA32_SPEC_CTRL save/restore to assembly + - arm64: dts: qcom: sc7280: Add the reset reg for lpass audiocc on SC7280 + - ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N + - arm64: dts: qcom: sm8250: Disable the not yet supported cluster idle state + - tty: serial: fsl_lpuart: don't break the on-going transfer when global reset + - bnxt_en: refactor bnxt_cancel_reservations() + - bnxt_en: fix the handling of PCIE-AER + - mtd: onenand: omap2: add dependency on GPMC + - sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent + - sctp: clear out_curr if all frag chunks of current msg are pruned + - erofs: clean up .read_folio() and .readahead() in fscache mode + - io_uring: calculate CQEs from the user visible value + - pinctrl: mediatek: common-v2: Fix bias-disable for PULL_PU_PD_RSEL_TYPE + - selftests/bpf: Fix test_progs compilation failure in 32-bit arch + - arm64: dts: imx8mm-tqma8mqml-mba8mx: Fix USB DR + - cifs: Fix connections leak when tlink setup failed + - ata: libata-core: do not issue non-internal commands once EH is pending + - net: phy: dp83867: Fix SGMII FIFO depth for non OF devices + - mctp i2c: don't count unused / invalid keys for flow release + - octeon_ep: delete unnecessary napi rollback under set_queues_err in + octep_open() + - octeon_ep: ensure octep_get_link_status() successfully before + octep_link_up() + - octeon_ep: fix potential memory leak in octep_device_setup() + - octeon_ep: ensure get mac address successfully before eth_hw_addr_set() + - erofs: fix missing xas_retry() in fscache mode + - mlxsw: Avoid warnings when not offloaded FDB entry with IPv6 is removed + - net: hns3: fix incorrect hw rss hash type of rx packet + - net: hns3: fix return value check bug of rx copybreak + - netfs: Fix missing xas_retry() calls in xarray iteration + - netfs: Fix dodgy maths + - net: dsa: don't leak tagger-owned storage on switch driver unbind + - net: lan966x: Fix potential null-ptr-deref in lan966x_stats_init() + - s390: avoid using global register for current_stack_pointer + - netdevsim: Fix memory leak of nsim_dev->fa_cookie + - rethook: fix a potential memleak in rethook_alloc() + - drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround + - drm/display: Don't assume dual mode adaptors support i2c sub-addressing + - drm/amd/display: Fix invalid DPIA AUX reply causing system hang + - drm/amd/display: Fix access timeout to DPIA AUX at boot time + - drm/amd/display: Support parsing VRAM info v3.0 from VBIOS + - usb: dwc3: Do not get extcon device when usb-role-switch is used + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000 + - usb: typec: tipd: Prevent uninitialized event{1,2} in IRQ handler + - iio: accel: bma400: Ensure VDDIO is enable defore reading the chip ID. + - iio: pressure: ms5611: fixed value compensation bug + - ceph: avoid putting the realm twice when decoding snaps fails + - s390/dcssblk: fix deadlock when adding a DCSS + - blk-cgroup: properly pin the parent in blkcg_css_online + - x86/fpu: Drop fpregs lock before inheriting FPU permissions + - ASoC: SOF: topology: No need to assign core ID if token parsing failed + - perf/x86/amd: Fix crash due to race between amd_pmu_enable_all, perf NMI and + throttling + - net: usb: smsc95xx: fix external PHY reset + - tracing: Fix potential null-pointer-access of entry in list 'tr->err_log' + - arm64/mm: fix incorrect file_map_count for non-leaf pmd/pud + - KVM: x86/xen: Fix eventfd error handling in kvm_xen_eventfd_assign() + - netlink: Bounds-check struct nlmsgerr creation + - bpf: Prevent bpf program recursion for raw tracepoint probes + * Fix RPL-S support on powercap/intel_rapl (LP: #1990161) + - powercap: intel_rapl: Add support for RAPTORLAKE_P + - powercap: intel_rapl: Add support for RAPTORLAKE_S + * Kinetic update: upstream stable patchset 2023-01-04 (LP: #2001726) + - drm/amdkfd: handle CPU fault on COW mapping + - drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram() + - hwspinlock: qcom: correct MMIO max register for newer SoCs + - phy: stm32: fix an error code in probe + - wifi: cfg80211: silence a sparse RCU warning + - wifi: cfg80211: fix memory leak in query_regdb_file() + - soundwire: qcom: reinit broadcast completion + - soundwire: qcom: check for outanding writes before doing a read + - bpf, verifier: Fix memory leak in array reallocation for stack state + - bpf, sockmap: Fix the sk->sk_forward_alloc warning of sk_stream_kill_queues + - wifi: mac80211: Set TWT Information Frame Disabled bit as 1 + - bpftool: Fix NULL pointer dereference when pin {PROG, MAP, LINK} without + FILE + - HID: hyperv: fix possible memory leak in mousevsc_probe() + - bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues + - bpf: Fix sockmap calling sleepable function in teardown path + - bpf, sock_map: Move cancel_work_sync() out of sock lock + - bpf: Add helper macro bpf_for_each_reg_in_vstate + - bpf: Fix wrong reg type conversion in release_reference() + - net: gso: fix panic on frag_list with mixed head alloc types + - macsec: delete new rxsc when offload fails + - macsec: fix secy->n_rx_sc accounting + - macsec: fix detection of RXSCs when toggling offloading + - macsec: clear encryption keys from the stack after setting up offload + - octeontx2-pf: NIX TX overwrites SQ_CTX_HW_S[SQ_INT] + - net: tun: Fix memory leaks of napi_get_frags + - bnxt_en: Fix possible crash in bnxt_hwrm_set_coal() + - bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer + - net: fman: Unregister ethernet device on removal + - capabilities: fix undefined behavior in bit shift for CAP_TO_MASK + - phy: ralink: mt7621-pci: add sentinel to quirks table + - KVM: s390: pv: don't allow userspace to set the clock under PV + - net: lapbether: fix issue of dev reference count leakage in + lapbeth_device_event() + - hamradio: fix issue of dev reference count leakage in bpq_device_event() + - net: wwan: iosm: fix memory leak in ipc_wwan_dellink + - net: wwan: mhi: fix memory leak in mhi_mbim_dellink + - drm/vc4: Fix missing platform_unregister_drivers() call in + vc4_drm_register() + - tcp: prohibit TCP_REPAIR_OPTIONS if data was already sent + - ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network + - can: af_can: fix NULL pointer dereference in can_rx_register() + - net: stmmac: dwmac-meson8b: fix meson8b_devm_clk_prepare_enable() + - net: broadcom: Fix BCMGENET Kconfig + - tipc: fix the msg->req tlv len check in + tipc_nl_compat_name_table_dump_header + - dmaengine: pxa_dma: use platform_get_irq_optional + - dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove() + - dmaengine: ti: k3-udma-glue: fix memory leak when register device fail + - net: lapbether: fix issue of invalid opcode in lapbeth_open() + - drivers: net: xgene: disable napi when register irq failed in + xgene_enet_open() + - perf stat: Fix printing os->prefix in CSV metrics output + - perf tools: Add the include/perf/ directory to .gitignore + - netfilter: nfnetlink: fix potential dead lock in nfnetlink_rcv_msg() + - netfilter: Cleanup nft_net->module_list from nf_tables_exit_net() + - net: marvell: prestera: fix memory leak in prestera_rxtx_switch_init() + - net: nixge: disable napi when enable interrupts failed in nixge_open() + - net: wwan: iosm: fix memory leak in ipc_pcie_read_bios_cfg + - net/mlx5: Bridge, verify LAG state when adding bond to bridge + - net/mlx5: Allow async trigger completion execution on single CPU systems + - net/mlx5e: E-Switch, Fix comparing termination table instance + - net: cpsw: disable napi in cpsw_ndo_open() + - net: cxgb3_main: disable napi when bind qsets failed in cxgb_up() + - stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz + - mctp: Fix an error handling path in mctp_init() + - cxgb4vf: shut down the adapter when t4vf_update_port_info() failed in + cxgb4vf_open() + - stmmac: dwmac-loongson: fix missing pci_disable_msi() while module exiting + - stmmac: dwmac-loongson: fix missing pci_disable_device() in + loongson_dwmac_probe() + - stmmac: dwmac-loongson: fix missing of_node_put() while module exiting + - net: phy: mscc: macsec: clear encryption keys when freeing a flow + - net: atlantic: macsec: clear encryption keys from the stack + - ethernet: s2io: disable napi when start nic failed in s2io_card_up() + - net: mv643xx_eth: disable napi when init rxq or txq failed in + mv643xx_eth_open() + - ethernet: tundra: free irq when alloc ring failed in tsi108_open() + - net: macvlan: fix memory leaks of macvlan_common_newlink + - riscv: process: fix kernel info leakage + - riscv: vdso: fix build with llvm + - riscv: fix reserved memory setup + - arm64: efi: Fix handling of misaligned runtime regions and drop warning + - MIPS: jump_label: Fix compat branch range check + - mmc: cqhci: Provide helper for resetting both SDHCI and CQHCI + - mmc: sdhci-of-arasan: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci_am654: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-tegra: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA + - ALSA: hda/hdmi - enable runtime pm for more AMD display audio + - ALSA: hda/ca0132: add quirk for EVGA Z390 DARK + - ALSA: hda: fix potential memleak in 'add_widget_node' + - ALSA: hda/realtek: Add Positivo C6300 model quirk + - ALSA: usb-audio: Yet more regression for for the delayed card registration + - ALSA: usb-audio: Add quirk entry for M-Audio Micro + - ALSA: usb-audio: Add DSD support for Accuphase DAC-60 + - vmlinux.lds.h: Fix placement of '.data..decrypted' section + - ata: libata-scsi: fix SYNCHRONIZE CACHE (16) command failure + - nilfs2: fix deadlock in nilfs_count_free_blocks() + - nilfs2: fix use-after-free bug of ns_writer on remount + - drm/i915/dmabuf: fix sg_table handling in map_dma_buf + - drm/amdgpu: disable BACO on special BEIGE_GOBY card + - btrfs: fix match incorrectly in dev_args_match_device + - btrfs: selftests: fix wrong error check in btrfs_free_dummy_root() + - btrfs: zoned: initialize device's zone info for seeding + - mms: sdhci-esdhc-imx: Fix SDHCI_RESET_ALL for CQHCI + - udf: Fix a slab-out-of-bounds write bug in udf_find_entry() + - mm/damon/dbgfs: check if rm_contexts input is for a real context + - mm/memremap.c: map FS_DAX device memory as decrypted + - mm/shmem: use page_mapping() to detect page cache for uffd continue + - can: j1939: j1939_send_one(): fix missing CAN header initialization + - dmaengine: at_hdmac: Fix at_lli struct definition + - dmaengine: at_hdmac: Don't start transactions at tx_submit level + - dmaengine: at_hdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_hdmac: Fix premature completion of desc in issue_pending + - dmaengine: at_hdmac: Do not call the complete callback on + device_terminate_all + - dmaengine: at_hdmac: Protect atchan->status with the channel lock + - dmaengine: at_hdmac: Fix concurrency problems by removing atc_complete_all() + - dmaengine: at_hdmac: Fix concurrency over descriptor + - dmaengine: at_hdmac: Free the memset buf without holding the chan lock + - dmaengine: at_hdmac: Fix concurrency over the active list + - dmaengine: at_hdmac: Fix descriptor handling when issuing it to hardware + - dmaengine: at_hdmac: Fix completion of unissued descriptor in case of errors + - dmaengine: at_hdmac: Don't allow CPU to reorder channel enable + - dmaengine: at_hdmac: Fix impossible condition + - dmaengine: at_hdmac: Check return code of dma_async_device_register + - drm/amdkfd: Migrate in CPU page fault use current mm + - net: tun: call napi_schedule_prep() to ensure we own a napi + - x86/cpu: Restore AMD's DE_CFG MSR after resume + - drm/i915/gvt: Add missing vfio_unregister_group_dev() call + - KVM: debugfs: Return retval of simple_attr_open() if it fails + - HID: wacom: Fix logic used for 3rd barrel switch emulation + - ALSA: arm: pxa: pxa2xx-ac97-lib: fix return value check of + platform_get_irq() + - spi: mediatek: Fix package division error + - drm/vc4: hdmi: Fix HSM clock too low on Pi4 + - PCI: hv: Fix the definition of vector in hv_compose_msi_msg() + - KVM: s390: pci: Fix allocation size of aift kzdev elements + - drm/i915/psr: Send update also on invalidate + - drm/i915: Do not set cache_dirty for DGFX + - dt-bindings: net: tsnep: Fix typo on generic nvmem property + - dmanegine: idxd: reformat opcap output to match bitmap_parse() input + - dmaengine: idxd: Fix max batch size for Intel IAA + - dmaengine: idxd: fix RO device state error after been disabled/reset + - dmaengine: stm32-dma: fix potential race between pause and resume + - net: ethernet: mtk-star-emac: disable napi when connect and start PHY failed + in mtk_star_enable() + - octeontx2-pf: Fix SQE threshold checking + - perf stat: Fix crash with --per-node --metric-only in CSV mode + - net: wwan: iosm: fix invalid mux header type + - net/mlx5e: Add missing sanity checks for max TX WQE size + - ice: Fix spurious interrupt during removal of trusted VF + - iavf: Fix VF driver counting VLAN 0 filters + - ALSA: memalloc: Don't fall back for SG-buffer with IOMMU + - eth: sp7021: drop free_netdev() from spl2sw_init_netdev() + - mmc: sdhci-brcmstb: Fix SDHCI_RESET_ALL for CQHCI + - ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 + - drm/amdgpu: workaround for TLB seq race + - drm/amdkfd: Fix error handling in criu_checkpoint + - drm/amdkfd: Fix error handling in kfd_criu_restore_events + - btrfs: zoned: clone zoned device info when cloning a device + - net: ethernet: ti: am65-cpsw: Fix segmentation fault at module unload + - spi: intel: Use correct mask for flash and protected regions + - dmaengine: idxd: Do not enable user type Work Queue without Shared Virtual + Addressing + - can: isotp: fix tx state handling for echo tx processing + - can: rcar_canfd: Add missing ECC error checks for channels 2-7 + - KVM: x86: use a separate asm-offsets.c file + - KVM: SVM: replace regs argument of __svm_vcpu_run() with vcpu_svm + - KVM: SVM: adjust register allocation for __svm_vcpu_run() + - KVM: SVM: retrieve VMCB from assembly + - KVM: SVM: move guest vmsave/vmload back to assembly + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors + (LP: #1983143) // Kinetic update: upstream stable patchset 2023-01-04 + (LP: #2001726) + - thunderbolt: Add DP OUT resource when DP tunnel is discovered + * CVE-2022-47520 + - wifi: wilc1000: validate pairwise and authentication suite offsets + * CVE-2022-3545 + - nfp: fix use-after-free in area_cache_get() + + -- Kleber Sacilotto de Souza Fri, 17 Feb 2023 15:31:39 +0100 + +linux-hwe-5.19 (5.19.0-32.33~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-32.33~22.04.1 -proposed tracker (LP: #2004157) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + + -- Kleber Sacilotto de Souza Mon, 30 Jan 2023 16:44:34 +0100 + +linux-hwe-5.19 (5.19.0-31.32~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-31.32~22.04.1 -proposed tracker (LP: #2003422) + + [ Ubuntu: 5.19.0-31.32 ] + + * kinetic/linux: 5.19.0-31.32 -proposed tracker (LP: #2003423) + * amdgpu: framebuffer is destroyed and the screen freezes with unsupported IP + blocks (LP: #2003524) + - drm/amd: Delay removal of the firmware framebuffer + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Stefan Bader Mon, 23 Jan 2023 17:59:30 +0100 + +linux-hwe-5.19 (5.19.0-30.31~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-30.31~22.04.1 -proposed tracker (LP: #2001755) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + + * Unset versioned gcc-12 for hwe-5.19 build (LP: #2002679) + - Revert "UBUNTU: [Packaging] use versioned gcc-12" + - [Packaging] update annotations for gcc version downgrade + + [ Ubuntu: 5.19.0-30.31 ] + + * kinetic/linux: 5.19.0-30.31 -proposed tracker (LP: #2001756) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + * Add some ACPI device IDs for Intel HID device (LP: #1995453) + - platform/x86/intel/hid: Add some ACPI device IDs + * Fix iosm: WWAN cannot build the connection (DW5823e) (LP: #1998115) + - net: wwan: iosm: fix driver not working with INTEL_IOMMU disabled + - [Config] CONFIG_IOSM update annotations on arm64 armhf ppc64el s390x riscv64 + * BPF_[AND|OR|XOR|FETCH|XCHG|CMPXCHG] in net:test_bpf.sh from + ubuntu_kernel_selftests failed on K-5.19 P9 (LP: #2001618) + - powerpc/bpf/64: add support for BPF_ATOMIC bitwise operations + - powerpc/bpf/64: add support for atomic fetch operations + - powerpc/bpf/64: Add instructions for atomic_[cmp]xchg + * [DEP-8] Run ADT regression suite for lowlatency kernels Jammy and later + (LP: #1999528) + - [DEP-8] Fix regression suite to run on lowlatency + * Kinetic update: upstream stable patchset 2022-12-15 (LP: #1999828) + - serial: ar933x: Deassert Transmit Enable on ->rs485_config() + - KVM: x86: Trace re-injected exceptions + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - RDMA/hns: Disable local invalidate operation + - NFSv4: Fix a potential state reclaim deadlock + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - SUNRPC: Fix null-ptr-deref when xps sysfs alloc failed + - NFSv4.2: Fixup CLONE dest file size for zero-length count + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - net: dsa: fall back to default tagger if we can't load the one from DT + - nfc: fdp: Fix potential memory leak in fdp_nci_send() + - nfc: nxp-nci: Fix potential memory leak in nxp_nci_send() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: netlink notifier might race to release objects + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - netfilter: ipset: enforce documented limit to prevent allocating huge memory + - Bluetooth: virtio_bt: Use skb_put to set length + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - Bluetooth: L2CAP: Fix memory leak in vhci_write + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - ibmvnic: Free rwi on reset success + - stmmac: dwmac-loongson: fix invalid mdio_node + - net/smc: Fix possible leaked pernet namespace in smc_init() + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - vsock: fix possible infinite sleep in vsock_connectible_wait_data() + - media: rkisp1: Don't pass the quantization to rkisp1_csm_config() + - media: rkisp1: Initialize color space on resizer sink and source pads + - media: rkisp1: Use correct macro for gradient registers + - media: rkisp1: Zero v4l2_subdev_format fields in when validating links + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - media: v4l: subdev: Fail graciously when getting try data for NULL state + - ACPI: APEI: Fix integer overflow in ghes_estatus_pool_init() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - drm/amdgpu: set vm_update_mode=0 as default for Sienna Cichlid in SRIOV case + - i2c: xiic: Add platform module alias + - efi/tpm: Pass correct address to memblock_reserve + - clk: qcom: Update the force mem core bit for GPU clocks + - ARM: dts: imx6qdl-gw59{10,13}: fix user pushbutton GPIO offset + - arm64: dts: imx8: correct clock order + - arm64: dts: lx2160a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls1088a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls208xa: specify clock frequencies for the MDIO controllers + - block: Fix possible memory leak for rq_wb on add_disk failure + - firmware: arm_scmi: Suppress the driver's bind attributes + - firmware: arm_scmi: Make Rx chan_setup fail on memory errors + - firmware: arm_scmi: Fix devres allocation device in virtio transport + - arm64: dts: juno: Add thermal critical trip points + - i2c: piix4: Fix adapter not be removed in piix4_remove() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - fscrypt: stop using keyrings subsystem for fscrypt_master_key + - fscrypt: fix keyring memory leak on mount failure + - btrfs: fix lost file sync on direct IO write with nowait and dsync iocb + - btrfs: fix tree mod log mishandling of reallocated nodes + - btrfs: fix type of parameter generation in btrfs_get_dentry + - ftrace: Fix use-after-free for dynamic ftrace_ops + - tracing: kprobe: Fix memory leak in test_gen_kprobe/kretprobe_cmd() + - kprobe: reverse kp->flags when arm_kprobe failed + - ring-buffer: Check for NULL cpu_buffer in ring_buffer_wake_waiters() + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - efi: random: Use 'ACPI reclaim' memory for random seed + - arm64: entry: avoid kprobe recursion + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - perf/x86/intel: Fix pebs event constraints for SPR + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - x86/syscall: Include asm/ptrace.h in syscall_wrapper header + - KVM: x86: Mask off reserved bits in CPUID.80000006H + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: Mask off reserved bits in CPUID.80000001H + - KVM: x86: Mask off reserved bits in CPUID.8000001FH + - KVM: VMX: fully disable SGX if SECONDARY_EXEC_ENCLS_EXITING unavailable + - KVM: arm64: Fix bad dereference on MTE-enabled systems + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after rsm + - KVM: x86: emulator: update the emulation mode after CR0 write + - tee: Fix tee_shm_register() for kernel TEE drivers + - ext4,f2fs: fix readahead of verity data + - cifs: fix regression in very old smb1 mounts + - drm/rockchip: dsi: Clean up 'usage_mode' when failing to attach + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - usb: dwc3: gadget: Don't delay End Transfer on delayed_status + - RDMA/hns: Fix NULL pointer problem in free_mr_init() + - docs/process/howto: Replace C89 with C11 + - RDMA/rxe: Fix mr leak in RESPST_ERR_RNR + - tools/nolibc: Fix missing strlen() definition and infinite loop with gcc-12 + - ata: palmld: fix return value check in palmld_pata_probe() + - net: lan966x: Fix the MTU calculation + - net: lan966x: Adjust maximum frame size when vlan is enabled/disabled + - net: lan966x: Fix FDMA when MTU is changed + - net: lan966x: Fix unmapping of received frames using FDMA + - bridge: Fix flushing of dynamic FDB entries + - iio: adc: stm32-adc: fix channel sampling time init + - drm/vc4: hdmi: Check the HSM rate at runtime_resume + - hwrng: bcm2835 - use hwrng_msleep() instead of cpu_relax() + - drm/amdkfd: Fix type of reset_type parameter in hqd_destroy() callback + - drm/amdgpu: Program GC registers through RLCG interface in gfx_v11/gmc_v11 + - nvme-pci: disable write zeroes on various Kingston SSD + - bio: safeguard REQ_ALLOC_CACHE bio put + - clk: rs9: Fix I2C accessors + - arm64: dts: imx8mm: Enable CPLD_Dn pull down resistor on MX8Menlo + - clk: renesas: r8a779g0: Fix HSCIF parent clocks + - arm64: dts: verdin-imx8mp: fix ctrl_sleep_moci + - arm64: dts: imx8mm: remove otg1/2 power domain dependency on hsio + - arm64: dts: imx8mm: correct usb power domains + - arm64: dts: imx8mn: remove otg1 power domain dependency on hsio + - arm64: dts: imx8mn: Correct the usb power domain + - drm/rockchip: dw_hdmi: filter regulator -EPROBE_DEFER error messages + - drm/rockchip: fix fbdev on non-IOMMU devices + - drm/i915: stop abusing swiotlb_max_segment + - blk-mq: Fix kmemleak in blk_mq_init_allocated_queue + - firmware: arm_scmi: Fix deferred_tx_wq release on error paths + - clk: renesas: r8a779g0: Add SASYNCPER clocks + - btrfs: fix a memory allocation failure test in btrfs_submit_direct + - ACPI: NUMA: Add CXL CFMWS 'nodes' to the possible nodes set + - tracing/fprobe: Fix to check whether fprobe is registered correctly + - fprobe: Check rethook_alloc() return in rethook initialization + - fuse: fix readdir cache race + - net/ulp: remove SOCK_SUPPORT_ZC from tls sockets + - ARM: dts: imx6dl-yapp4: Do not allow PM to switch PU regulator off on Q/QP + - net: remove SOCK_SUPPORT_ZC from sockmap + - net: also flag accepted sockets supporting msghdr originated zerocopy + - ext4: update the backup superblock's at the end of the online resize + - x86/tdx: Prepare for using "INFO" call for a second purpose + - x86/tdx: Panic on bad configs that #VE on "private" memory access + - KVM: VMX: Fold vmx_supported_debugctl() into vcpu_supported_debugctl() + - KVM: VMX: Ignore guest CPUID for host userspace writes to DEBUGCTL + - KVM: Initialize gfn_to_pfn_cache locks in dedicated helper + - KVM: Reject attempts to consume or refresh inactive gfn_to_pfn_cache + - KVM: arm64: Fix SMPRI_EL1/TPIDR2_EL0 trapping on VHE + - drm/amdgpu: disable GFXOFF during compute for GFX11 + * Kinetic update: upstream stable patchset 2022-12-07 (LP: #1999079) + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: usb-audio: Add quirks for M-Audio Fast Track C400/600 + - ALSA: au88x0: use explicitly signed char + - ALSA: rme9652: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: gadget: uvc: fix sg handling in error case + - usb: gadget: uvc: fix sg handling during video encode + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Add quirk to reset host back to default state at shutdown + - xhci-pci: Set runtime PM as default policy on all xHC 1.2 or later devices + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - iio: temperature: ltc2983: allocate iio channels once + - iio: adxl372: Fix unsafe buffer attributes + - fbdev: smscufx: Fix several use-after-free bugs + - cpufreq: intel_pstate: Read all MSRs on the target CPU + - cpufreq: intel_pstate: hybrid: Use known scaling factor for P-cores + - fs/binfmt_elf: Fix memory leak in load_elf_binary() + - exec: Copy oldsighand->action under spin-lock + - mac802154: Fix LQI recording + - scsi: qla2xxx: Use transport-defined speed mask for supported_speeds + - drm/amdgpu: disallow gfxoff until GC IP blocks complete s2idle resume + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - drm/msm/dp: fix IRQ lifetime + - coresight: cti: Fix hang in cti_disable_hw() + - mmc: sdhci_am654: 'select', not 'depends' REGMAP_MMIO + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - mmc: sdhci-pci-core: Disable ES for ASUS BIOS on Jasper Lake + - mmc: sdhci-esdhc-imx: Propagate ESDHC_FLAG_HS400* only on 8bit bus + - counter: microchip-tcb-capture: Handle Signal1 read and Synapse + - kernfs: fix use-after-free in __kernfs_remove + - pinctrl: Ingenic: JZ4755 bug fixes + - ARC: mm: fix leakage of memory allocated for PTE + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - mmc: block: Remove error check of hw_reset on reset + - ethtool: eeprom: fix null-deref on genl_info in dump + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - media: atomisp: prevent integer overflow in sh_css_set_black_frame() + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - KVM: selftests: Fix number of pages for memory slot in + memslot_modification_stress_test + - ASoC: qcom: lpass-cpu: mark HDMI TX registers as volatile + - perf: Fix missing SIGTRAPs + - sched/core: Fix comparison in sched_group_cookie_match() + - arc: iounmap() arg is volatile + - mtd: rawnand: intel: Add missing of_node_put() in ebu_nand_probe() + - ASoC: qcom: lpass-cpu: Mark HDMI TX parity register as volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - perf/x86/intel/lbr: Use setup_clear_cpu_cap() instead of clear_cpu_cap() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - net: hinic: fix incorrect assignment issue in hinic_set_interrupt_cfg() + - net: hinic: fix memory leak when reading function table + - net: hinic: fix the issue of CMDQ memory leaks + - net: hinic: fix the issue of double release MBOX callback of VF + - net: macb: Specify PHY PM management done by MAC + - nfc: virtual_ncidev: Fix memory leak in virtual_nci_send() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - drm/i915/dp: Reset frl trained flag before restarting FRL training + - atlantic: fix deadlock at aq_nic_stop + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: fix a signed-integer-overflow bug in tcp_add_backlog() + - tcp: fix indefinite deferral of RTO with SACK reneging + - net-memcg: avoid stalls when under memory pressure + - drm/amdkfd: Fix memory leak in kfd_mem_dmamap_userptr() + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - can: mcp251x: mcp251x_can_probe(): add missing unregister_candev() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - media: vivid: set num_in/outputs to 0 if not supported + - perf vendor events power10: Fix hv-24x7 metric events + - ipv6: ensure sane device mtu in tunnels + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - perf vendor events arm64: Fix incorrect Hisi hip08 L3 metrics + - net: fec: limit register access on i.MX6UL + - net: ethernet: ave: Fix MAC to be in charge of PHY PM + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - net: bcmsysport: Indicate MAC is in charge of PHY PM + - nh: fix scope used to find saddr when adding non gw nh + - net: broadcom: bcm4908_enet: update TX stats after actual transmission + - netdevsim: remove dir in nsim_dev_debugfs_init() when creating ports dir + failed + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5e: Extend SKB room check to include PTP-SQ + - net/mlx5: Fix possible use-after-free in async command interface + - net/mlx5: Update fw fatal reporter state on PCI handlers successful recover + - net/mlx5: Fix crash during sync firmware reset + - net: do not sense pfmemalloc status in skb_append_pagefrags() + - kcm: do not sense pfmemalloc status in kcm_sendpage() + - net: enetc: survive memory pressure without crashing + - arm64: Add AMPERE1 to the Spectre-BHB affected list + - can: rcar_canfd: fix channel specific IRQ handling for RZ/G2L + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 + - ALSA: hda/realtek: Add another HP ZBook G9 model quirks + - usb: gadget: uvc: limit isoc_sg to super speed gadgets + - usb: gadget: uvc: fix dropped frame after missed isoc + - usb: gadget: aspeed: Fix probe regression + - usb: dwc3: gadget: Force sending delayed status during soft disconnect + - usb: typec: ucsi: Check the connection on resume + - usb: typec: ucsi: acpi: Implement resume callback + - usb: dwc3: Don't switch OTG -> peripheral if extcon is present + - mtd: rawnand: tegra: Fix PM disable depth imbalance in probe + - mtd: parsers: bcm47xxpart: Fix halfblock reads + - iio: adxl367: Fix unsafe buffer attributes + - fbdev: stifb: Fall back to cfb_fillrect() on 32-bit HCRX cards + - drm/amdgpu: Fix VRAM BO swap issue + - drm/i915: Extend Wa_1607297627 to Alderlake-P + - drm/amdgpu: Remove ATC L2 access for MMHUB 2.1.x + - drm/amdgpu: fix pstate setting issue + - drm/amdkfd: update gfx1037 Lx cache setting + - drm/amdkfd: correct the cache info for gfx1036 + - drm/msm: fix use-after-free on probe deferral + - drm/msm/hdmi: fix IRQ lifetime + - drm/msm/dp: fix memory corruption with too many bridges + - drm/msm/dp: fix bridge lifetime + - mmc: queue: Cancel recovery work on cleanup + - mmc: core: Fix WRITE_ZEROES CQE handling + - counter: 104-quad-8: Fix race getting function mode and direction + - mm/uffd: fix vma check on userfault for wp + - mm: migrate: fix return value if all subpages of THPs are migrated + successfully + - mm,madvise,hugetlb: fix unexpected data loss with MADV_DONTNEED on hugetlbfs + - mm/huge_memory: do not clobber swp_entry_t during THP split + - s390/cio: fix out-of-bounds access on cio_ignore free + - s390/uaccess: add missing EX_TABLE entries to __clear_user() + - ACPI: PCC: Fix unintentional integer overflow + - powerpc/64s/interrupt: Fix clear of PACA_IRQS_HARD_DIS when returning to + soft-masked context + - media: amphion: release m2m ctx when releasing vpu instance + - media: ov8865: Fix an error handling path in ov8865_probe() + - media: sun6i-csi: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun4i-csi: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun8i-di: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun8i-rotate: Add a Kconfig dependency on RESET_CONTROLLER + - media: cedrus: Add a Kconfig dependency on RESET_CONTROLLER + - drm/msm/a6xx: Replace kcalloc() with kvzalloc() + - drm/msm/dp: add atomic_check to bridge ops + - drm/msm/dp: cleared DP_DOWNSPREAD_CTRL register before start link training + - ASoC: codec: tlv320adc3xxx: add GPIOLIB dependency + - pinctrl: qcom: Avoid glitching lines when we first mux to output + - spi: qup: support using GPIO as chip select line + - x86/fpu: Configure init_fpstate attributes orderly + - x86/fpu: Fix the init_fpstate size check with the actual size + - x86/fpu: Exclude dynamic states from init_fpstate + - bpf: prevent decl_tag from being referenced in func_proto + - mtd: rawnand: intel: Remove unused nand_pa member from ebu_nand_cs + - mtd: rawnand: intel: Use devm_platform_ioremap_resource_byname() + - ASoC: codecs: tlv320adc3xxx: Wrap adc3xxx_i2c_remove() in __exit_p() + - spi: aspeed: Fix window offset of CE1 + - net: lan966x: Fix the rx drop counter + - x86/fpu: Fix copy_xstate_to_uabi() to copy init states correctly + - amd-xgbe: Yellow carp devices do not need rrc + - drm/i915/dgfx: Keep PCI autosuspend control 'on' by default on all dGPU + - net: lan966x: Stop replacing tx dcbs and dcbs_buf when changing MTU + - mptcp: set msk local address earlier + - netdevsim: fix memory leak in nsim_bus_dev_new() + - net/mlx5: Wait for firmware to enable CRS before pci_restore_state + - net/mlx5: DR, Fix matcher disconnect error flow + - net/mlx5e: Update restore chain id for slow path packets + - net/mlx5e: TC, Reject forwarding from internal port to internal port + - riscv: mm: add missing memcpy in kasan_init + * Virtual GPU driver packaging regression (LP: #1996112) + - [Packaging] Reintroduce VM DRM drivers into modules + * Fix AMD-PState driver for Genoa CPU (LP: #1998106) + - Documentation: amd-pstate: Add unit test introduction + - cpufreq: amd-pstate: cpufreq: amd-pstate: reset MSR_AMD_PERF_CTL register at + init + - cpufreq: amd-pstate: change amd-pstate driver to be built-in type + - cpufreq: amd-pstate: add amd-pstate driver parameter for mode selection + - Documentation: amd-pstate: add driver working mode introduction + - Documentation: add amd-pstate kernel command line options + * Kinetic update: upstream stable patchset 2022-11-30 (LP: #1998398) + - clk: tegra: Fix Tegra PWM parent clock + - Revert "btrfs: call __btrfs_remove_free_space_cache_locked on cache load + failure" + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - selinux: enable use of both GFP_KERNEL and GFP_ATOMIC in convert_context() + - cpufreq: qcom: fix writes in read-only memory region + - i2c: qcom-cci: Fix ordering of pm_runtime_xx and i2c_add_adapter + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + - x86/resctrl: Fix min_cbm_bits for AMD + - cpufreq: qcom: fix memory leak in error path + - drm/amdgpu: fix sdma doorbell init ordering on APUs + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - kvm: Add support for arch compat vm ioctls + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: ipu3-imgu: Fix NULL pointer dereference in active selection access + - media: mceusb: set timeout to at least timeout provided + - media: venus: dec: Handle the case where find_format fails + - x86/topology: Fix multiple packages shown on a single-package system + - x86/topology: Fix duplicated core ID within a package + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - drm/vc4: Add module dependency on hdmi-codec + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - i40e: Fix DMA mappings leak + - HID: magicmouse: Do not set BTN_MOUSE on double report + - sfc: Change VF mac via PF as first preference if available. + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: phylink: add mac_managed_pm in phylink_config structure + - scsi: lpfc: Fix memory leak in lpfc_create_port() + - udp: Update reuse->has_conns under reuseport_lock. + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - dm: remove unnecessary assignment statement in alloc_dev() + - net: hsr: avoid possible NULL deref in skb_clone() + - ionic: catch NULL pointer issue on reconfig + - netfilter: nf_tables: relax NFTA_SET_ELEM_KEY_END set flags requirements + - nvme-hwmon: consistently ignore errors from nvme_hwmon_init + - nvme-hwmon: kmalloc the NVME SMART log buffer + - nvmet: fix workqueue MEM_RECLAIM flushing dependency + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: sched: delete duplicate cleanup of backlog and qlen + - net: sched: sfb: fix null pointer access issue when sfb_init() fails + - sfc: include vport_id in filter spec hash and equal() + - wwan_hwsim: fix possible memory leak in wwan_hwsim_dev_new() + - net: hns: fix possible memory leak in hnae_ae_register() + - net: sched: fix race condition in qdisc_graft() + - net: phy: dp83822: disable MDI crossover status change interrupt + - iommu/vt-d: Allow NVS regions in arch_rmrr_sanity_check() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - ACPI: video: Force backlight native for more TongFang devices + - x86/Kconfig: Drop check for -mabi=ms for CONFIG_EFI_STUB + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - smb3: interface count displayed incorrectly + - cpufreq: tegra194: Fix module loading + - KVM: x86: Copy filter arg outside kvm_vm_ioctl_set_msr_filter() + - KVM: x86: Add compat handler for KVM_X86_SET_MSR_FILTER + - media: venus: Fix NV12 decoder buffer discovery on HFI_VERSION_1XX + - drm/vc4: hdmi: Enforce the minimum rate at runtime_resume + - net/smc: Fix an error code in smc_lgr_create() + - net: stmmac: Enable mac_managed_pm phylink config + - blk-mq: fix null pointer dereference in blk_mq_clear_rq_mapping() + - net: ethernet: mtk_eth_soc: fix possible memory leak in mtk_probe() + - net: ethernet: mtk_eth_wed: add missing put_device() in mtk_wed_add_hw() + - net: ethernet: mtk_eth_wed: add missing of_node_put() + - ip6mr: fix UAF issue in ip6mr_sk_done() when addrconf_init_net() failed + - cifs: Fix memory leak when build ntlmssp negotiate blob failed + - netfilter: rpfilter/fib: Populate flowic_l3mdev field + - netfilter: rpfilter/fib: Set ->flowic_uid correctly for user namespaces. + - net: Fix return value of qdisc ingress handling on success + - drbd: only clone bio if we have a backing device + - wifi: mt76: mt7921e: fix random fw download fail + * Mediatek WLAN RZ616(MT7922) SAR table control (LP: #1997200) + - mt76: add 6 GHz band support in mt76_sar_freq_ranges + - mt76: mt7921: introduce ACPI SAR support + - mt76: mt7921: introduce ACPI SAR config in tx power + - wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() + * Kinetic update: upstream stable patchset 2022-11-14 (LP: #1996540) + - scsi: qla2xxx: Fix response queue handler reading stale packets + - Upstream stable to v5.15.74, v6.0.2 + - rcu-tasks: Convert RCU_LOCKDEP_WARN() to WARN_ONCE() + - mmc: sdhci-msm: add compatible string check for sdm670 + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - gcov: support GCC 12.1 and newer compilers + - io-wq: Fix memory leak in worker creation + - arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored + - serial: Deassert Transmit Enable on probe in driver-specific way + - KVM: x86: Treat #DBs from the emulator as fault-like (code and DR7.GD=1) + - drm/amd/display: Enable dpia support for dcn314 + - drm/amdgpu: Enable F32_WPTR_POLL_ENABLE in mqd + - libbpf: Initialize err in probe_map_create + - libbpf: Fix crash if SEC("freplace") programs don't have attach_prog_fd set + - libbpf: Fix NULL pointer exception in API btf_dump__dump_type_data + - drm/vc4: drv: Call component_unbind_all() + - video/aperture: Disable and unregister sysfb devices via aperture helpers + - drm/bridge: anx7625: Fix refcount bug in anx7625_parse_dt() + - drm/i915/dg2: Bump up CDCLK for DG2 + - drm/panel: use 'select' for Ili9341 panel driver helpers + - drm: fix drm_mipi_dbi build errors + - ALSA: hda/hdmi: change type for the 'assigned' variable + - ALSA: hda/hdmi: Fix the converter allocation for the silent stream + - arm64: dts: qcom: sc7280: Cleanup the lpasscc node + - arm64: dts: qcom: sc7280: Update lpasscore node + - arm64: dts: qcom: pm8350c: Drop PWM reg declaration + - arm64: dts: qcom: sc7180-trogdor: Keep pm6150_adc enabled for TZ + - arm64: dts: qcom: sm8350-sagami: correct TS pin property + - soc/tegra: fuse: Add missing of_node_put() in tegra_init_fuse() + - arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size + - arm64: dts: qcom: sm8450: fix UFS PHY serdes size + - arm64: dts: exynos: fix polarity of "enable" line of NFC chip in TM2 + - selftests/cpu-hotplug: Use return instead of exit + - selftests/cpu-hotplug: Delete fault injection related code + - selftests/cpu-hotplug: Reserve one cpu online at least + - usb: common: usb-conn-gpio: Simplify some error message + - HID: uclogic: Fix warning in uclogic_rdesc_template_apply + - tty: xilinx_uartps: Check clk_enable return value + - fpga: dfl-pci: Add IDs for Intel N6000, N6001 and C6100 cards + - iio: Use per-device lockdep class for mlock + - scsi: lpfc: Fix various issues reported by tools + - phy: qcom-qmp-usb: disable runtime PM on unbind + - block: Fix the enum blk_eh_timer_return documentation + - RDMA/rxe: Set pd early in mr alloc routines + - clk: imx8mp: tune the order of enet_qos_root_clk + - libbpf: Ensure functions with always_inline attribute are inline + - libbpf: Do not require executable permission for shared libraries + - micrel: ksz8851: fixes struct pointer issue + - net: ftmac100: fix endianness-related issues from 'sparse' + - net: sched: cls_u32: Avoid memcpy() false-positive warning + - libbpf: Fix overrun in netlink attribute iteration + - ALSA: usb-audio: Add quirk to enable Avid Mbox 3 support + - ASoC: sunxi: sun4i-codec: set debugfs_prefix for CPU DAI component + - ASoC: amd: yc: Add ASUS UM5302TA into DMI table + - ASoC: amd: yc: Add Lenovo Yoga Slim 7 Pro X to quirks table + - arm64: dts: qcom: sc7280-idp: correct ADC channel node name and unit address + - ARM: orion: fix include path + - hid: topre: Add driver fixing report descriptor + - [Config] updateconfigs for HID_TOPRE + - fsi: master-ast-cf: Fix missing of_node_put in fsi_master_acf_probe + - dmaengine: dw-edma: Remove runtime PM support + - HID: playstation: stop DualSense output work on remove. + - HID: playstation: add initial DualSense Edge controller support + - net: flag sockets supporting msghdr originated zerocopy + - drm/amd/pm: disable cstate feature for gpu reset scenario + - dm clone: Fix typo in block_device format specifier + + [ Ubuntu: 5.19.0-29.30 ] + + * kinetic/linux: 5.19.0-29.30 -proposed tracker (LP: #1999799) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-4378 + - proc: proc_skip_spaces() shouldn't think it is working on C strings + - proc: avoid integer type confusion in get_proc_long + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Kleber Sacilotto de Souza Fri, 13 Jan 2023 16:49:34 +0100 + +linux-hwe-5.19 (5.19.0-28.29~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-28.29~22.04.1 -proposed tracker (LP: #1999745) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Set explicit CC in the headers package (LP: #1999750) + - [Packaging] Set explicit CC in the headers package + + [ Ubuntu: 5.19.0-28.29 ] + + * kinetic/linux: 5.19.0-28.29 -proposed tracker (LP: #1999746) + * mm:vma05 in ubuntu_ltp fails with '[vdso] bug not patched' on kinetic/linux + 5.19.0-27.28 (LP: #1999094) + - fix coredump breakage + + -- Kleber Sacilotto de Souza Thu, 15 Dec 2022 11:50:58 +0100 + +linux-hwe-5.19 (5.19.0-27.28~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-27.28~22.04.1 -proposed tracker (LP: #1998795) + + [ Ubuntu: 5.19.0-27.28 ] + + * kinetic/linux: 5.19.0-27.28 -proposed tracker (LP: #1997794) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * selftests/.../nat6to4 breaks the selftests build (LP: #1996536) + - [Config] Disable selftests/net/bpf/nat6to4 + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * Add cs35l41 firmware loading support (LP: #1995957) + - ASoC: cs35l41: Move cs35l41 exit hibernate function into shared code + - ASoC: cs35l41: Add common cs35l41 enter hibernate function + - ASoC: cs35l41: Do not print error when waking from hibernation + - ALSA: hda: cs35l41: Don't dereference fwnode handle + - ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations + - ALSA: hda: cs35l41: Drop wrong use of ACPI_PTR() + - ALSA: hda: cs35l41: Consolidate selections under SND_HDA_SCODEC_CS35L41 + - ALSA: hda: hda_cs_dsp_ctl: Add Library to support CS_DSP ALSA controls + - ALSA: hda: hda_cs_dsp_ctl: Add apis to write the controls directly + - ALSA: hda: cs35l41: Save codec object inside component struct + - ALSA: hda: cs35l41: Add initial DSP support and firmware loading + - ALSA: hda: cs35l41: Save Subsystem ID inside CS35L41 Driver + - ALSA: hda: cs35l41: Support reading subsystem id from ACPI + - ALSA: hda: cs35l41: Support multiple load paths for firmware + - ALSA: hda: cs35l41: Support Speaker ID for laptops + - ALSA: hda: cs35l41: Support Hibernation during Suspend + - ALSA: hda: cs35l41: Read Speaker Calibration data from UEFI variables + - ALSA: hda: hda_cs_dsp_ctl: Add fw id strings + - ALSA: hda: cs35l41: Add defaulted values into dsp bypass config sequence + - ALSA: hda: cs35l41: Support Firmware switching and reloading + - ALSA: hda: cs35l41: Add module parameter to control firmware load + - Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI + configurations" + - ALSA: hda/realtek: More robust component matching for CS35L41 + - [Config] updateconfigs for SND_HDA_CS_DSP_CONTROLS + * Fibocom WWAN FM350-GL suspend error (notebook not suspend) (LP: #1990700) + - net: wwan: t7xx: Add AP CLDMA + * Screen cannot turn on after screen off with Matrox G200eW3 [102b:0536] + (LP: #1995573) + - drm/mgag200: Optimize damage clips + - drm/mgag200: Add FB_DAMAGE_CLIPS support + - drm/mgag200: Enable atomic gamma lut update + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * AMD Cezanne takes 5 minutes to wake up from suspend (LP: #1993715) + - platform/x86/amd: pmc: Read SMU version during suspend on Cezanne systems + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * intel_pmc_core not load on Raptor Lake (LP: #1988461) + - x86/cpu: Add new Raptor Lake CPU model number + - platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Support Icicle Kit reference design v2022.10 (LP: #1993148) + - riscv: dts: microchip: icicle: re-jig fabric peripheral addresses + - riscv: dts: microchip: reduce the fic3 clock rate + - riscv: dts: microchip: update memory configuration for v2022.10 + - riscv: dts: microchip: fix fabric i2c reg size + - SAUCE: riscv: dts: microchip: Disable PCIe on the Icicle Kit + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * armhf kernel compiled with gcc-12 fails to boot on pi 3/2 (LP: #1993120) + - [Packaging] Support arch-specific compilers in updateconfigs + * Kinetic update: v5.19.17 upstream stable release (LP: #1994179) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/rw: fix unexpected link breakage + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - io_uring/net: don't update msg_name if not provided + - io_uring: correct pinned_vm accounting + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() + - usb: add quirks for Lenovo OneLink+ Dock + - mmc: core: Add SD card quirk for broken discard + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: renesas_sdhi: Fix rounding errors + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - fs: dlm: fix invalid derefence of sb_lvbptr + - btf: Export bpf_dynptr definition + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - arm64: dts: qcom: sdm845-mtp: correct ADC settle time + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Re-enable counter access from userspace + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - parisc: Fix userspace graphics card breakage due to pgtable special bit + - riscv: vdso: fix NULL deference in vdso_join_timens() when vfork + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - dmaengine: mxs: use platform_driver_register + - dmaengine: qcom-adm: fix wrong sizeof config in slave_config + - dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Unlock reservations on dma_resv_reserve_fences() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - arm64: mte: move register initialization to C + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - clocksource/drivers/arm_arch_timer: Fix CNTPCT_LO and CNTVCT_LO value + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - mm/damon: validate if the pmd entry is present before accessing + - mm/uffd: fix warning without PTE_MARKER_UFFD_WP compiled in + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: cpm_uart: Don't request IRQ too early for console port + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - cpufreq: qcom-cpufreq-hw: Fix uninitialized throttled_freq warning + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/Kconfig: Fix non existing CONFIG_PPC_FSL_BOOKE + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - hwrng: core - let sleep be interrupted when unregistering hwrng + - smb3: do not log confusing message when server returns no network interfaces + - ksmbd: fix incorrect handling of iterate_dir + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix alignment of VMA for memory mapped files on THP + - btrfs: enhance unsupported compat RO flags handling + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: fix missed extent on fsync after dropping extent maps + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: fix wrong continue condition in GC + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext2: Add sanity checks for group and filesystem size + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: unconditionally enable the i_version counter + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix i_version handling in ext4 + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ftrace: Still disable enabled records marked as disabled + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Do not free snapshot if tracer is on cmdline + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - rpmsg: char: Avoid double destroy of default endpoint + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-throttle: fix that io throttle can only work for single bio + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/i915: Fix watermark calculations for DG2 CCS modifiers + - drm/i915: Fix watermark calculations for DG2 CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - cpufreq: amd-pstate: Fix initial highest_perf value + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP30: Fix platform-device leak in bridge_platform_create() + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - erofs: use kill_anon_super() to kill super in fscache mode + - ARM: 9243/1: riscpc: Unbreak the build + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - ACPI: PCC: Release resources on address space setup failure path + - ACPI: PCC: replace wait_for_completion() + - ACPI: PCC: Fix Tx acknowledge in the PCC address space handler + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - x86/paravirt: add extra clobbers with ZERO_CALL_USED_REGS enabled + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - bpf: Fix non-static bpf_func_proto struct definitions + - bpf: convert cgroup_bpf.progs to hlist + - bpf: Cleanup check_refcount_ok + - leds: lm3601x: Don't use mutex after it was destroyed + - tsnep: Fix TSNEP_INFO_TX_TIME register define + - bpf: Fix reference state management for synchronous callbacks + - wifi: cfg80211: get correct AP link chandef + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - audit: explicitly check audit_context->context enum value + - audit: free audit_proctitle only on task exit + - esp: choose the correct inner protocol for GSO on inter address family + tunnels + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - selftests/xsk: Add missing close() on netns fd + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - wifi: ath11k: Fix incorrect QMI message ID mappings + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - bpf: Use this_cpu_{inc_return|dec} for prog->active + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtw89: pci: fix interrupt stuck after leaving low power mode + - wifi: rtw89: pci: correct TX resource checking in low power mode + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: wfx: prevent underflow in wfx_send_pds() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: mt7921e: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921s: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921u: fix race issue between reset and suspend/resume + - wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work + - wifi: mt76: sdio: poll sta stat when device transmits data + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: fix possible unaligned access in + mt7915_mac_add_twt_setup + - wifi: mt76: connac: fix possible unaligned access in + mt76_connac_mcu_add_nested_tlv + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload + - wifi: mt76: mt7915: fix mcs value in ht mode + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - wifi: mt76: mt7921e: fix rmmod crash in driver reload test + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - flow_dissector: Do not count vlan tags inside tunnel payload + - wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected + - wifi: ath11k: fix number of VHT beamformee spatial streams + - mips: dts: ralink: mt7621: fix external phy on GB-PC2 + - x86/microcode/AMD: Track patch allocation size explicitly + - wifi: ath11k: fix peer addition/deletion error on sta band migration + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: cadence-quadspi: Fix PM disable depth imbalance in cqspi_probe + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - cw1200: fix incorrect check to determine if no element is found in list + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: gen2: Enable 40 MHz channel width + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - Bluetooth: hci_sync: Fix not indicating power state + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - net: prestera: acl: Add check for kmemdup + - eth: lan743x: reject extts for non-pci11x1x devices + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - eth: sp7021: fix use after free bug in spl2sw_nvmem_get_mac_address + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/bridge: it6505: Power on downstream device in .atomic_enable + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: tc358767: Add of_node_put() when breaking out of loop + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - drm/msm: Make .remove and .shutdown HW shutdown consistent + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - drm/virtio: Fix same-context optimization + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - drm/bridge: it6505: Fix the order of DP_SET_POWER commands + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ASoC: wm_adsp: Handle optional legacy support + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/virtio: set fb_modifiers_not_supported + - drm/bochs: fix blanking + - ASoC: SOF: mediatek: mt8195: Import namespace SND_SOC_SOF_MTK_COMMON + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm: lookup the ICC paths in both mdp5/dpu and mdss devices + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - ALSA: usb-audio: Properly refcounting clock rate + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe + - ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe + - ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - arm64: dts: renesas: r9a07g044: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g054: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g043: Fix SCI{Rx,Tx} interrupt types + - dt-bindings: clock: exynosautov9: correct clock numbering of peric0/c1 + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iomap: iomap: fix memory corruption when recording errors during writeback + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: st: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - clk: samsung: exynosautov9: correct register offsets of peric0/c1 + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - clk: qcom: gcc-sdm660: Use floor ops for SDCC1 clock + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: amphion: insert picture startcode after seek for vc1g format + - media: amphion: adjust the encoder's value range of gop size + - media: amphion: don't change the colorspace reported by decoder. + - media: amphion: fix a bug that vpu core may not resume after suspend + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - clk: mediatek: clk-mt8195-vdo0: Set rate on vdo0_dp_intf0_dp_intf's parent + - clk: mediatek: clk-mt8195-vdo1: Reparent and set rate on vdo1_dpintf's + parent + - clk: mediatek: mt8195-infra_ao: Set pwrmcu clocks as critical + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - phy: rockchip-inno-usb2: Return zero after otg sync + - dmaengine: idxd: avoid deadlock in process_misc_interrupts() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - usb: gadget: f_fs: stricter integer overflow checks + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - remoteproc: Harden rproc_handle_vdev() against integer overflow + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/irdma: Validate udata inlen and outlen + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - usb: dwc3: core: fix some leaks in probe + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: pm8001: Fix running_req for internal abort commands + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - mfd: da9061: Fix Failed to set Two-Wire Bus Mode. + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes + - clk: mediatek: fix unregister function in mtk_clk_register_dividers cleanup + - clk: mediatek: Migrate remaining clk_unregister_*() to clk_hw_unregister_*() + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: Balance of_node_get() calls for of_find_node_by_name() + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - ipc: mqueue: fix possible memory leak in init_mqueue_fs() + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc/64: mark irqs hard disabled in boot paca + - powerpc/64/interrupt: Fix return to masked context after hard-mask irq + becomes pending + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - crypto: ccp - Fail the PSP initialization when writing psp data file failed + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 + - clocksource/drivers/timer-gxp: Add missing error handling in gxp_timer_probe + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - linux/export: use inline assembler to populate symbol CRCs + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - random: schedule jitter credit for next jiffy, not in two jiffies + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - module: tracking: Keep a record of tainted unloaded modules only + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - cpufreq: amd_pstate: fix wrong lowest perf fetch + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - x86/apic: Don't disable x2APIC if locked + - net: axienet: Switch to 64-bit RX/TX statistics + - net-next: Fix IP_UNICAST_IF option behavior for connected sockets + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: ath11k: Register shutdown handler for WCN6750 + - rtw89: ser: leave lps with mutex + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - wifi: rtw89: free unused skb to prevent memory leak + - wifi: rtw89: fix rx filter after scan + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - bnxt_en: replace reset with config timestamps + - selftests/bpf: Free the allocated resources after test case succeeds + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - bpf: Adjust kprobe_multi entry_ip for CONFIG_X86_KERNEL_IBT + - bpf: use bpf_prog_pack for bpf_dispatcher + - Bluetooth: L2CAP: Fix user-after-free + - i2c: designware-pci: Group AMD NAVI quirk parts together + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - platform/x86: pmc_atom: Improve quirk message to be less cryptic + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 + - drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - drm: panel-orientation-quirks: Add quirk for Aya Neo Air + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: hp-wmi: Setting thermal profile fails with 0x06 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - ASoC: SOF: add quirk to override topology mclk_id + - drm/amdgpu: SDMA update use unlocked iterator + - drm/amd/display: correct hostvm flag + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - drm/meson: remove drm bridges at aggregate driver unbind time + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - drm/amd/display: polling vid stream status in hpo dp blank + - drm/amdkfd: Fix UBSAN shift-out-of-bounds warning + - ARM: dts: imx6: delete interrupts property if interrupts-extended is set + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - ARM: dts: imx6sl: use tabs for code indent + - ARM: dts: imx6sx-udoo-neo: don't use multiple blank lines + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO + voltage + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: properly report super block errors in system log + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure + - ARM: 9233/1: stacktrace: Skip frame pointer boundary check for + call_with_stack() + - ARM: 9234/1: stacktrace: Avoid duplicate saving of exception PC value + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - RDMA/rxe: Delete error messages triggered by incoming Read requests + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - usb: gadget: uvc: increase worker prio to WQ_HIGHPRI + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - HSI: ssi_protocol: fix potential resource leak in ssip_pn_open() + - HID: nintendo: check analog user calibration for plausibility + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - usb: dwc3: core: add gfladj_refclk_lpm_sel quirk + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: handle effects after freeing the request + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - blk-mq: use quiesced elevator switch when reinitializing queues + - hwmon (occ): Retry for checksum failure + - fsi: occ: Prevent use after free + - usb: typec: ucsi: Don't warn on probe deferral + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf: Skip and warn on unknown format 'configN' attrs + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - perf intel-pt: Fix system_wide dummy event for hybrid + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "drm/amd/display: correct hostvm flag" + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - powerpc/64s/interrupt: Fix lost interrupts when returning to soft-masked + context + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - HID: uclogic: Add missing suffix for digitalizers + - ext4: continue to expand file system when the target size doesn't reach + - drm/i915: Rename block_size()/block_offset() + - drm/i915/bios: Validate fp_timing terminator presence + - drm/i915/bios: Use hardcoded fp_timing size for generating LFP data pointers + - Linux 5.19.17 + * Kinetic update: v5.19.16 upstream stable release (LP: #1994164) + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - ALSA: hda/realtek: Add quirk for HP Zbook Firefly 14 G9 model + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "USB: fixup for merge issue with "usb: dwc3: Don't switch OTG -> + peripheral if extcon is present"" + - Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present" + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - mctp: prevent double key removal and unref + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.19.16 + * Kinetic update: v5.19.15 upstream stable release (LP: #1994078) + - sparc: Unbreak the build + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - [Config] updateconfigs for CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - arm64: dts: rockchip: fix upper usb port on BPI-R2-Pro + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - wifi: iwlwifi: don't spam logs with NSS>2 messages + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - drm/amdgpu/mes: zero the sdma_hqd_mask of 2nd SDMA engine for SDMA 6.0.1 + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - gpio: ftgpio010: Make irqchip immutable + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - KVM: s390: Pass initialized arg even if unused + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - drm/amd/display: Fix DP MST timeslot issue when fallback happened + - drm/amd/display: increase dcn315 pstate change latency + - perf/x86/intel: Fix unchecked MSR access error for Alder Lake N + - don't use __kernel_write() on kmap_local_page() + - i2c: davinci: fix PM disable depth imbalance in davinci_i2c_probe + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - gpiolib: acpi: Add support to ignore programming an interrupt + - gpiolib: acpi: Add a quirk for Asus UM325UAZ + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - bpf: Gate dynptr API behind CAP_BPF + - net: ethernet: mtk_eth_soc: fix state in __mtk_foe_entry_clear + - bpf: Fix resetting logic for unreferenced kptrs + - Bluetooth: use hdev->workqueue when queuing hdev->{cmd,ncmd}_timer works + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.19.15 + * Kinetic update: v5.19.14 upstream stable release (LP: #1994076) + - riscv: make t-head erratas depend on MMU + - tools/perf: Fix out of bound access to cpu mask array + - perf record: Fix cpu mask bit setting for mixed mmaps + - counter: 104-quad-8: Utilize iomap interface + - counter: 104-quad-8: Implement and utilize register structures + - counter: 104-quad-8: Fix skipped IRQ lines during events configuration + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - wifi: mac80211: ensure vif queues are operational after start + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - frontswap: don't call ->init if no ops are registered + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - x86/uaccess: avoid check_object_size() in copy_from_user_nmi() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mm: fix BUG splat with kvmalloc + GFP_ATOMIC + - mptcp: factor out __mptcp_close() without socket lock + - mptcp: fix unreleased socket in accept queue + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm: gup: fix the fast GUP race against THP collapse + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/page_isolation: fix isolate_single_pageblock() isolation behavior + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm/migrate_device.c: add missing flush_cache_page() + - mm/migrate_device.c: copy pte dirty bit to page + - mm: fix madivse_pageout mishandling on non-LRU page + - mm: bring back update_mmu_cache() to finish_fault() + - mm/hugetlb: correct demote page offset logic + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: mediatek: vcodec: Drop platform_get_resource(IORESOURCE_IRQ) + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - clk: microchip: mpfs: fix clk_cfg array bounds violation + - clk: microchip: mpfs: make the rtc's ahb clock critical + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - net: macb: Fix ZynqMP SGMII non-wakeup source resume failure + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - perf parse-events: Break out tracepoint and printing + - perf print-events: Fix "perf list" can not display the PMU prefix for some + hybrid cache events + - perf parse-events: Remove "not supported" hybrid cache events + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: cfg80211: fix MCS divisor value + - wifi: mac80211: fix regression with non-QoS drivers + - wifi: mac80211: fix memory corruption in minstrel_ht_update_rates() + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - ice: xsk: change batched Tx descriptor cleaning + - ice: xsk: drop power of 2 ring size restriction for AF_XDP + - vdpa/ifcvf: fix the calculation of queuepair + - virtio-blk: Fix WARN_ON_ONCE in virtio_queue_rq() + - vdpa/mlx5: Fix MQ to support non power of two num queues + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - drm/i915/gt: Perf_limit_reasons are only available for Gen11+ + - clk: iproc: Do not rely on node name for correct PLL setup + - clk: imx93: drop of_match_ptr + - net: mscc: ocelot: fix tagged VLAN refusal while under a VLAN-unaware bridge + - net: ethernet: mtk_eth_soc: fix mask of RX_DMA_GET_SPORT{,_V2} + - perf test: Fix test case 87 ("perf record tests") for hybrid systems + - perf tests record: Fail the test if the 'errs' counter is not zero + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/cacheinfo: Add a cpu_llc_shared_mask() UP variant + - x86/alternative: Fix race in try_get_desc() + - damon/sysfs: fix possible memleak on damon_sysfs_add_target + - Linux 5.19.14 + * Kinetic update: v5.19.13 upstream stable release (LP: #1994075) + - Linux 5.19.13 + * Kinetic update: v5.19.12 upstream stable release (LP: #1994074) + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - xfrm: fix XFRMA_LASTUSED comment + - block: remove QUEUE_FLAG_DEAD + - block: stop setting the nomerges flags in blk_cleanup_queue + - block: simplify disk shutdown + - scsi: core: Fix a use-after-free + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - ALSA: hda/realtek: Add a quirk for HP OMEN 16 (8902) mute LED + - iommu/vt-d: Check correct capability for sagaw determination + - exfat: fix overflow for large capacity partition + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - btrfs: zoned: wait for extent buffer IOs before finishing a zone + - libperf evlist: Fix polling of system-wide events + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - thunderbolt: Add support for Intel Maple Ridge single port controller + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - riscv: fix RISCV_ISA_SVPBMT kconfig dependency warning + - drm/i915/gem: Flush contexts on driver release + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - xen/xenbus: fix xenbus_setup_ring() + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Reinstate kvm_vcpu_arch.guest_supported_xcr0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - perf/arm-cmn: Add more bits to child node address offset field + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - batman-adv: Fix hang up with small MTU hard-interface + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Lower sd speed on quartz64-b + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: imx8mm: Reverse CPLD_Dn GPIO label mapping on MX8Menlo + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: imx8mn: remove GPU power domain reset + - arm64: dts: imx8ulp: add #reset-cells for pcc + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: fix property for usb2 phy supply on rock-3a + - arm64: dts: rockchip: fix property for usb2 phy supply on rk3568-evb1-v10 + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3566-quartz64-a + - arm64: dts: imx8mm-verdin: extend pmic voltages + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - ice: Fix crash by keep old cfg when update TCs more than queues + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - wifi: iwlwifi: Mark IWLMEI as broken + - [Config] updateconfigs for IWLMEI + - arm64: dts: tqma8mqml: Include phy-imx8-pcie.h header + - drm/mediatek: Fix wrong dither settings + - arm64: dts: imx8mp-venice-gw74xx: fix CAN STBY polarity + - arm64: dts: imx8mp-venice-gw74xx: fix ksz9477 cpu port + - ARM: dts: lan966x: Fix the interrupt number for internal PHYs + - net: phy: aquantia: wait for the suspend/resume operations to finish + - arm64: dts: imx8mp-venice-gw74xx: fix port/phy validation + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - mm/slab_common: fix possible double free of kmem_cache + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - netdevsim: Fix hwstats debugfs file permissions + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - bnxt_en: fix flags to check for supported fw version + - gve: Fix GFP flags when allocing pages + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - sfc/siena: fix TX channel offset when using legacy interrupts + - sfc/siena: fix null pointer dereference in efx_hard_start_xmit + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - ipv6: Fix crash when IPv6 is administratively disabled + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - ice: config netdev tc before setting queues number + - ice: Fix interface being down after reset with link-down-on-close flag on + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - netfilter: nf_ct_ftp: fix deadlock when nat rewrite is needed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - gpio: tqmx86: fix uninitialized variable girq + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf stat: Fix cpu map index in bperf cgroup code + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - ice: Fix ice_xdp_xmit() when XDP TX queue number is not sufficient + - net/smc: Stop the CLC flow if no link to map buffers on + - net: phy: micrel: fix shared interrupt on LAN8814 + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - io_uring: ensure that cached task references are always put on exit + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - phy: marvell: phy-mvebu-a3700-comphy: Remove broken reset support + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - blk-mq: fix error handling in __blk_mq_alloc_disk + - block: call blk_mq_exit_queue from disk_release for never added disks + - block: Do not call blk_put_queue() if gendisk allocation fails + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/gma500: Fix WARN_ON(lock->magic != lock) error + - drm/gma500: Fix (vblank) IRQs not working after suspend/resume + - gpio: ixp4xx: Make irqchip immutable + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: change the alignment size of TMR BO to 1M + - drm/amdgpu: add HDP remap functionality to nbio 7.7 + - drm/amdgpu: Skip reset error status for psp v13_0_0 + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - gpio: mt7621: Make the irqchip immutable + - pmem: fix a name collision + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - i2c: mux: harden i2c_mux_alloc() against integer overflows + - drm/amdgpu: don't register a dirty callback for non-atomic + - certs: make system keyring depend on built-in x509 parser + - Makefile.debug: set -g unconditional on CONFIG_DEBUG_INFO_SPLIT + - Makefile.debug: re-enable debug info for .S files + - devdax: Fix soft-reservation memory description + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - ext4: use buckets for cr 1 block scan instead of rbtree + - Revert "block: freeze the queue earlier in del_gendisk" + - ext4: fixup possible uninitialized variable access in + ext4_mb_choose_next_group_cr1() + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.19.12 + * Kinetic update: v5.19.11 upstream stable release (LP: #1994070) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - SUNRPC: Fix call completion races with call_decode() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - NFSv4.2: Update mode bits after ALLOCATE and DEALLOCATE + - Revert "SUNRPC: Remove unreachable error condition" + - drm/panel-edp: Fix delays for Innolux N116BCA-EA1 + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - drm/rockchip: vop2: Fix eDP/HDMI sync polarities + - drm/i915/vdsc: Set VDSC PIC_HEIGHT before using for DP DSC + - drm/i915/guc: Don't update engine busyness stats too frequently + - drm/i915/guc: Cancel GuC engine busyness worker synchronously + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - io_uring/msg_ring: check file type before putting + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - blk-lib: fix blkdev_issue_secure_erase + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/i915/gt: Fix perf limit reasons bit positions + - drm/i915: Set correct domains values at _i915_vma_move_to_active + - drm/amdgpu: make sure to init common IP before gmc + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - net: Find dst with sk's xfrm policy not ctl_sk + - dt-bindings: apple,aic: Fix required item "apple,fiq-index" in affinity + description + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.19.11 + * Kinetic update: v5.19.10 upstream stable release (LP: #1994069) + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - net/mlx5: Introduce ifc bits for using software vhca id + - net/mlx5: Use software VHCA id when it's supported + - RDMA/mlx5: Rely on RoCE fw cap instead of devlink when setting profile + - RDMA/mlx5: Add a umr recovery flow + - RDMA/mlx5: Fix UMR cleanup on error flow of driver init + - ACPI: resource: skip IRQ override on AMD Zen platforms + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - peci: cpu: Fix use-after-free in adev_release() + - kvm: x86: mmu: Always flush TLBs when enabling dirty logging + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - Bluetooth: MGMT: Fix Get Device Flags + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - r8152: add PID for the Lenovo OneLink+ Dock + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - drm/amdgpu: disable FRU access on special SIENNA CICHLID card + - drm/amd/pm: use vbios carried pptable for all SMU13.0.7 SKUs + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - platform/x86: asus-wmi: Increase FAN_CURVE_BUF_LEN to 32 + - LoongArch: Fix section mismatch due to acpi_os_ioremap() + - LoongArch: Fix arch_remove_memory() undefined build error + - gpio: 104-dio-48e: Make irq_chip immutable + - gpio: 104-idio-16: Make irq_chip immutable + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.19.10 + * Kinetic update: v5.19.9 upstream stable release (LP: #1994068) + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: mt76: mt7921e: fix crash in chip reset fail + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - soc: fsl: select FSL_GUTS driver for DPIO + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: core: Allow the ALUA transitioning state enough time + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: fix hive reference leak when adding xgmi device + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/amdgpu: Remove the additional kfd pre reset call for sriov + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - netfilter: conntrack: work around exceeded receive window + - thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: omapfb: Fix tests for platform_get_irq() failure + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - x86/sev: Mark snp_abort() noreturn + - drm/amdgpu: add sdma instance check for gfx11 CGCG + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: hda: Once again fix regression of page allocations with IOMMU + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Clear fixed clock rate at closing EP + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracefs: Only clobber mode/uid/gid on remount if asked + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - btrfs: zoned: fix API misuse of zone finish waiting + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - perf: RISC-V: fix access beyond allocated array + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - driver core: fix driver_set_override() issue with empty strings + - nvmet: fix a use-after-free + - drm/i915/bios: Copy the whole MIPI sequence block + - drm/i915/slpc: Let's fix the PCODE min freq table setup for SLPC + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - smb3: missing inode locks in zero range + - spi: bitbang: Fix lsb-first Rx + - ASoC: cs42l42: Only report button state if there was a button interrupt + - Revert "soc: imx: imx8m-blk-ctrl: set power device name" + - arm64: dts: imx8mm-verdin: update CAN clock to 40MHz + - arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd + - ASoC: qcom: sm8250: add missing module owner + - regmap: spi: Reserve space for register address/padding + - arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings + - arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - arm64: dts: ls1028a-qds-65bb: don't use in-band autoneg for 2500base-x + - soc: imx: gpcv2: Assert reset before ungating clock + - arm64: dts: verdin-imx8mm: add otg2 pd to usbphy + - arm64: dts: imx8mm-venice-gw7901: fix port/phy validation + - arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity + - arm64: dts: freescale: verdin-imx8mp: fix atmel_mxt_ts reset polarity + - regulator: core: Clean up on enable failure + - ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF + - ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR depend on SND_SOC_SOF + - tee: fix compiler warning in tee_shm_register() + - RDMA/irdma: Fix drain SQ hang with no completion + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - RDMA/hns: Remove the num_qpc_timer variable + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - riscv: dts: microchip: use an mpfs specific l2 compatible + - netfilter: nf_conntrack_irc: Fix forged IP logic + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - kunit: fix assert_type for comparison macros + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: Fix DMA mappings leak + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - block: don't add partitions if GD_SUPPRESS_PART_SCAN is set + - RDMA/siw: Pass a pointer to virt_to_page() + - bonding: use unspecified address if no available link local address + - bonding: add all node mcast address when slave up + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - btrfs: zoned: fix mounting with conventional zones + - erofs: fix error return code in erofs_fscache_{meta_,}read_folio + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - btrfs: fix the max chunk size and stripe length calculation + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return error on MR deregister CQP failure + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - net: dsa: felix: disable cut-through forwarding for frames oversized for tc- + taprio + - net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in + vsc9959_sched_speed_set + - net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear + - net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb + - net/smc: Fix possible access to freed memory in link clear + - io_uring: recycle kbuf recycle on tw requeue + - net: phy: lan87xx: change interrupt src of link_up to comm_ready + - sch_sfb: Also store skb len before calling child enqueue + - libperf evlist: Fix per-thread mmaps for multi-threaded targets + - perf dlfilter dlfilter-show-cycles: Fix types for print format + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - perf record: Fix synthesis failure warnings + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS + - bonding: accept unsolicited NA message + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - time64.h: consolidate uses of PSEC_PER_NSEC + - net: dsa: felix: tc-taprio intervals smaller than MTU should send at least + one packet + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - perf evlist: Always use arch_evlist__add_default_attrs() + - perf stat: Fix L2 Topdown metrics disappear for raw events + - Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in + page->flags"" + - hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 + - hwmon: (asus-ec-sensors) add support for Maximus XI Hero + - hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING + - hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME + - hwmon: (asus-ec-sensors) autoload module via DMI data + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - iommu/virtio: Fix interaction with VFIO + - iommu: Fix false ownership failure on AMD systems with PASID activated + - drm/amd/display: Add SMU logging code + - drm/amd/display: Removing assert statements for Linux + - Linux 5.19.9 + * Kinetic update: v5.19.8 upstream stable release (LP: #1994061) + - drm/msm/dp: make eDP panel as the first connected connector + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dpu: populate wb or intf before reset_intf_cfg + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - platform/x86: x86-android-tablets: Fix broken touchscreen on Chuwi Hi8 with + Windows BIOS + - xsk: Fix corrupted packets for XDP_SHARED_UMEM + - drm/msm/gpu: Drop qos request if devm_devfreq_add_device() fails + - peci: aspeed: fix error check return value of platform_get_irq() + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnels + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - drm/i915/gvt: Fix Comet Lake + - ieee802154/adf7242: defer destroy_workqueue call + - bpf: Fix a data-race around bpf_jit_limit. + - drm/i915/ttm: fix CCS handling + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - xhci: Fix null pointer dereference in remove if xHC has only one roothub + - Revert "xhci: turn off port power in shutdown" + - bpf: Allow helpers to accept pointers with a fixed size + - bpf: Tidy up verifier check_func_arg() + - bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZERO + - Bluetooth: hci_event: Fix vendor (unknown) opcode status handling + - Bluetooth: hci_sync: Fix suspend performance regression + - Bluetooth: hci_event: Fix checking conn for le_conn_complete_evt + - Bluetooth: hci_sync: hold hdev->lock when cleanup hci_conn + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - nfp: flower: fix ingress police using matchall filter + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - net: phy: micrel: Make the GPIO to be non-exclusive + - net: lan966x: improve error handle in lan966x_fdma_rx_get_frame() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - cachefiles: fix error return code in cachefiles_ondemand_copen() + - cachefiles: make on-demand request distribution fairer + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - mm/slab_common: Deleting kobject in kmem_cache_destroy() without holding + slab_mutex/cpu_hotplug_lock + - platform/mellanox: mlxreg-lc: Fix coverity warning + - platform/mellanox: mlxreg-lc: Fix locking issue + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - staging: r8188eu: add firmware dependency + - Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" + - powerpc: align syscall table for ppc32 + - powerpc/rtas: Fix RTAS MSR[HV] handling for Cell + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: light: cm3605: Fix an error handling path in cm3605_probe() + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: correct "microchip,device-addr" property + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - firmware_loader: Fix use-after-free during unregister + - firmware_loader: Fix memory leak in firmware upload + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - landlock: Fix file reparenting without explicit LANDLOCK_ACCESS_FS_REFER + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - riscv: kvm: move extern sbi_ext declarations to a header + - clk: ti: Fix missing of_node_get() ti_find_clock_provider() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - powerpc/papr_scm: Fix nvdimm event mappings + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - gpio: realtek-otto: switch to 32-bit I/O + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - powerpc/papr_scm: Ensure rc is always initialized in papr_scm_pmu_register() + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - thunderbolt: Check router generation before connecting xHCI + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - usb: dwc3: disable USB core PHY management + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: dwc3: fix PHY disable sequence + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - Revert "usb: typec: ucsi: add a common function + ucsi_unregister_connectors()" + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: f_uac2: fix superspeed transfer + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - USB: gadget: Fix obscure lockdep violation for udc_mutex + - dma-buf/dma-resv: check if the new fence is really later + - arm64/kexec: Fix missing extra range for crashkres_low. + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - ip: fix triggering of 'icmp redirect' + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: memalloc: Revive x86-specific WC page allocations again + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/backlight: Disable pps power hook for aux based backlight + - drm/i915/guc: clear stalled request after a reset + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - tty: n_gsm: initialize more members at gsm_alloc_mux() + - tty: n_gsm: replace kicktimer with delayed_work + - tty: n_gsm: avoid call of sleeping functions from atomic context + - Linux 5.19.8 + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - drm: New function to get luminance range based on static hdr metadata + - drm/amdgpu_dm: Rely on split out luminance calculation function + - drm/i915: Use luminance range calculated during edid parsing + * Update Broadcom Emulex FC HBA lpfc driver to 14.2.0.5 for Ubuntu 22.04 + (LP: #1988711) + - scsi: lpfc: Fix uninitialized cqe field in lpfc_nvme_cancel_iocb() + - scsi: lpfc: Set PU field when providing D_ID in XMIT_ELS_RSP64_CX iocb + - scsi: lpfc: Fix lost NVMe paths during LIF bounce stress test + - scsi: lpfc: Refactor lpfc_nvmet_prep_abort_wqe() into + lpfc_sli_prep_abort_xri() + - scsi: lpfc: Update lpfc version to 14.2.0.5 + - scsi: lpfc: Copyright updates for 14.2.0.5 patches + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + + [ Ubuntu: 5.19.0-26.27 ] + + * kinetic/linux: 5.19.0-26.27 -proposed tracker (LP: #1997434) + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-43945 + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - NFSD: Remove "inline" directives on op_rsize_bop helpers + - NFSD: Cap rsize_bop result based on send buffer size + + -- Kleber Sacilotto de Souza Mon, 12 Dec 2022 16:15:38 +0100 + +linux-hwe-5.19 (5.19.0-24.25~22.04.1) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-24.25~22.04.1 -proposed tracker (LP: #1996300) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + + [ Ubuntu: 5.19.0-24.25 ] + + * kinetic/linux: 5.19.0-24.25 -proposed tracker (LP: #1996301) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * Add cs35l41 firmware loading support (LP: #1995957) + - ASoC: cs35l41: Move cs35l41 exit hibernate function into shared code + - ASoC: cs35l41: Add common cs35l41 enter hibernate function + - ASoC: cs35l41: Do not print error when waking from hibernation + - ALSA: hda: cs35l41: Don't dereference fwnode handle + - ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations + - ALSA: hda: cs35l41: Drop wrong use of ACPI_PTR() + - ALSA: hda: cs35l41: Consolidate selections under SND_HDA_SCODEC_CS35L41 + - ALSA: hda: hda_cs_dsp_ctl: Add Library to support CS_DSP ALSA controls + - ALSA: hda: hda_cs_dsp_ctl: Add apis to write the controls directly + - ALSA: hda: cs35l41: Save codec object inside component struct + - ALSA: hda: cs35l41: Add initial DSP support and firmware loading + - ALSA: hda: cs35l41: Save Subsystem ID inside CS35L41 Driver + - ALSA: hda: cs35l41: Support reading subsystem id from ACPI + - ALSA: hda: cs35l41: Support multiple load paths for firmware + - ALSA: hda: cs35l41: Support Speaker ID for laptops + - ALSA: hda: cs35l41: Support Hibernation during Suspend + - ALSA: hda: cs35l41: Read Speaker Calibration data from UEFI variables + - ALSA: hda: hda_cs_dsp_ctl: Add fw id strings + - ALSA: hda: cs35l41: Add defaulted values into dsp bypass config sequence + - ALSA: hda: cs35l41: Support Firmware switching and reloading + - ALSA: hda: cs35l41: Add module parameter to control firmware load + - Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI + configurations" + - ALSA: hda/realtek: More robust component matching for CS35L41 + - [Config] updateconfigs for SND_HDA_CS_DSP_CONTROLS + * Fibocom WWAN FM350-GL suspend error (notebook not suspend) (LP: #1990700) + - net: wwan: t7xx: Add AP CLDMA + * Screen cannot turn on after screen off with Matrox G200eW3 [102b:0536] + (LP: #1995573) + - drm/mgag200: Optimize damage clips + - drm/mgag200: Add FB_DAMAGE_CLIPS support + - drm/mgag200: Enable atomic gamma lut update + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * AMD Cezanne takes 5 minutes to wake up from suspend (LP: #1993715) + - platform/x86/amd: pmc: Read SMU version during suspend on Cezanne systems + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * intel_pmc_core not load on Raptor Lake (LP: #1988461) + - x86/cpu: Add new Raptor Lake CPU model number + - platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Support Icicle Kit reference design v2022.10 (LP: #1993148) + - riscv: dts: microchip: icicle: re-jig fabric peripheral addresses + - riscv: dts: microchip: reduce the fic3 clock rate + - riscv: dts: microchip: update memory configuration for v2022.10 + - riscv: dts: microchip: fix fabric i2c reg size + - SAUCE: riscv: dts: microchip: Disable PCIe on the Icicle Kit + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * armhf kernel compiled with gcc-12 fails to boot on pi 3/2 (LP: #1993120) + - [Packaging] Support arch-specific compilers in updateconfigs + * Kinetic update: v5.19.17 upstream stable release (LP: #1994179) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/rw: fix unexpected link breakage + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - io_uring/net: don't update msg_name if not provided + - io_uring: correct pinned_vm accounting + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() + - usb: add quirks for Lenovo OneLink+ Dock + - mmc: core: Add SD card quirk for broken discard + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: renesas_sdhi: Fix rounding errors + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - fs: dlm: fix invalid derefence of sb_lvbptr + - btf: Export bpf_dynptr definition + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - arm64: dts: qcom: sdm845-mtp: correct ADC settle time + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Re-enable counter access from userspace + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - parisc: Fix userspace graphics card breakage due to pgtable special bit + - riscv: vdso: fix NULL deference in vdso_join_timens() when vfork + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - dmaengine: mxs: use platform_driver_register + - dmaengine: qcom-adm: fix wrong sizeof config in slave_config + - dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Unlock reservations on dma_resv_reserve_fences() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - arm64: mte: move register initialization to C + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - clocksource/drivers/arm_arch_timer: Fix CNTPCT_LO and CNTVCT_LO value + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - mm/damon: validate if the pmd entry is present before accessing + - mm/uffd: fix warning without PTE_MARKER_UFFD_WP compiled in + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: cpm_uart: Don't request IRQ too early for console port + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - cpufreq: qcom-cpufreq-hw: Fix uninitialized throttled_freq warning + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/Kconfig: Fix non existing CONFIG_PPC_FSL_BOOKE + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - hwrng: core - let sleep be interrupted when unregistering hwrng + - smb3: do not log confusing message when server returns no network interfaces + - ksmbd: fix incorrect handling of iterate_dir + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix alignment of VMA for memory mapped files on THP + - btrfs: enhance unsupported compat RO flags handling + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: fix missed extent on fsync after dropping extent maps + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: fix wrong continue condition in GC + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext2: Add sanity checks for group and filesystem size + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: unconditionally enable the i_version counter + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix i_version handling in ext4 + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ftrace: Still disable enabled records marked as disabled + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Do not free snapshot if tracer is on cmdline + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - rpmsg: char: Avoid double destroy of default endpoint + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-throttle: fix that io throttle can only work for single bio + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/i915: Fix watermark calculations for DG2 CCS modifiers + - drm/i915: Fix watermark calculations for DG2 CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - cpufreq: amd-pstate: Fix initial highest_perf value + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP30: Fix platform-device leak in bridge_platform_create() + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - erofs: use kill_anon_super() to kill super in fscache mode + - ARM: 9243/1: riscpc: Unbreak the build + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - ACPI: PCC: Release resources on address space setup failure path + - ACPI: PCC: replace wait_for_completion() + - ACPI: PCC: Fix Tx acknowledge in the PCC address space handler + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - x86/paravirt: add extra clobbers with ZERO_CALL_USED_REGS enabled + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - bpf: Fix non-static bpf_func_proto struct definitions + - bpf: convert cgroup_bpf.progs to hlist + - bpf: Cleanup check_refcount_ok + - leds: lm3601x: Don't use mutex after it was destroyed + - tsnep: Fix TSNEP_INFO_TX_TIME register define + - bpf: Fix reference state management for synchronous callbacks + - wifi: cfg80211: get correct AP link chandef + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - audit: explicitly check audit_context->context enum value + - audit: free audit_proctitle only on task exit + - esp: choose the correct inner protocol for GSO on inter address family + tunnels + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - selftests/xsk: Add missing close() on netns fd + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - wifi: ath11k: Fix incorrect QMI message ID mappings + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - bpf: Use this_cpu_{inc_return|dec} for prog->active + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtw89: pci: fix interrupt stuck after leaving low power mode + - wifi: rtw89: pci: correct TX resource checking in low power mode + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: wfx: prevent underflow in wfx_send_pds() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: mt7921e: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921s: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921u: fix race issue between reset and suspend/resume + - wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work + - wifi: mt76: sdio: poll sta stat when device transmits data + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: fix possible unaligned access in + mt7915_mac_add_twt_setup + - wifi: mt76: connac: fix possible unaligned access in + mt76_connac_mcu_add_nested_tlv + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload + - wifi: mt76: mt7915: fix mcs value in ht mode + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - wifi: mt76: mt7921e: fix rmmod crash in driver reload test + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - flow_dissector: Do not count vlan tags inside tunnel payload + - wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected + - wifi: ath11k: fix number of VHT beamformee spatial streams + - mips: dts: ralink: mt7621: fix external phy on GB-PC2 + - x86/microcode/AMD: Track patch allocation size explicitly + - wifi: ath11k: fix peer addition/deletion error on sta band migration + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: cadence-quadspi: Fix PM disable depth imbalance in cqspi_probe + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - cw1200: fix incorrect check to determine if no element is found in list + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: gen2: Enable 40 MHz channel width + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - mISDN: fix use-after-free bugs in l1oip timer handlers + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - Bluetooth: hci_sync: Fix not indicating power state + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - net: prestera: acl: Add check for kmemdup + - eth: lan743x: reject extts for non-pci11x1x devices + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - eth: sp7021: fix use after free bug in spl2sw_nvmem_get_mac_address + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/bridge: it6505: Power on downstream device in .atomic_enable + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: tc358767: Add of_node_put() when breaking out of loop + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - drm/msm: Make .remove and .shutdown HW shutdown consistent + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - drm/virtio: Fix same-context optimization + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - drm/bridge: it6505: Fix the order of DP_SET_POWER commands + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ASoC: wm_adsp: Handle optional legacy support + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/virtio: set fb_modifiers_not_supported + - drm/bochs: fix blanking + - ASoC: SOF: mediatek: mt8195: Import namespace SND_SOC_SOF_MTK_COMMON + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm: lookup the ICC paths in both mdp5/dpu and mdss devices + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - ALSA: usb-audio: Properly refcounting clock rate + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe + - ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe + - ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - arm64: dts: renesas: r9a07g044: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g054: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g043: Fix SCI{Rx,Tx} interrupt types + - dt-bindings: clock: exynosautov9: correct clock numbering of peric0/c1 + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iomap: iomap: fix memory corruption when recording errors during writeback + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: st: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - clk: samsung: exynosautov9: correct register offsets of peric0/c1 + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - clk: qcom: gcc-sdm660: Use floor ops for SDCC1 clock + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: amphion: insert picture startcode after seek for vc1g format + - media: amphion: adjust the encoder's value range of gop size + - media: amphion: don't change the colorspace reported by decoder. + - media: amphion: fix a bug that vpu core may not resume after suspend + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - clk: mediatek: clk-mt8195-vdo0: Set rate on vdo0_dp_intf0_dp_intf's parent + - clk: mediatek: clk-mt8195-vdo1: Reparent and set rate on vdo1_dpintf's + parent + - clk: mediatek: mt8195-infra_ao: Set pwrmcu clocks as critical + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - phy: rockchip-inno-usb2: Return zero after otg sync + - dmaengine: idxd: avoid deadlock in process_misc_interrupts() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - usb: gadget: f_fs: stricter integer overflow checks + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - remoteproc: Harden rproc_handle_vdev() against integer overflow + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/irdma: Validate udata inlen and outlen + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - usb: dwc3: core: fix some leaks in probe + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: pm8001: Fix running_req for internal abort commands + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - mfd: da9061: Fix Failed to set Two-Wire Bus Mode. + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes + - clk: mediatek: fix unregister function in mtk_clk_register_dividers cleanup + - clk: mediatek: Migrate remaining clk_unregister_*() to clk_hw_unregister_*() + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: Balance of_node_get() calls for of_find_node_by_name() + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - ipc: mqueue: fix possible memory leak in init_mqueue_fs() + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc/64: mark irqs hard disabled in boot paca + - powerpc/64/interrupt: Fix return to masked context after hard-mask irq + becomes pending + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - crypto: ccp - Fail the PSP initialization when writing psp data file failed + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 + - clocksource/drivers/timer-gxp: Add missing error handling in gxp_timer_probe + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - linux/export: use inline assembler to populate symbol CRCs + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - random: schedule jitter credit for next jiffy, not in two jiffies + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - module: tracking: Keep a record of tainted unloaded modules only + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - cpufreq: amd_pstate: fix wrong lowest perf fetch + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - x86/apic: Don't disable x2APIC if locked + - net: axienet: Switch to 64-bit RX/TX statistics + - net-next: Fix IP_UNICAST_IF option behavior for connected sockets + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: ath11k: Register shutdown handler for WCN6750 + - rtw89: ser: leave lps with mutex + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - wifi: rtw89: free unused skb to prevent memory leak + - wifi: rtw89: fix rx filter after scan + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - bnxt_en: replace reset with config timestamps + - selftests/bpf: Free the allocated resources after test case succeeds + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - bpf: Adjust kprobe_multi entry_ip for CONFIG_X86_KERNEL_IBT + - bpf: use bpf_prog_pack for bpf_dispatcher + - Bluetooth: L2CAP: Fix user-after-free + - i2c: designware-pci: Group AMD NAVI quirk parts together + - r8152: Rate limit overflow messages + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - platform/x86: pmc_atom: Improve quirk message to be less cryptic + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 + - drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - drm: panel-orientation-quirks: Add quirk for Aya Neo Air + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: hp-wmi: Setting thermal profile fails with 0x06 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - ASoC: SOF: add quirk to override topology mclk_id + - drm/amdgpu: SDMA update use unlocked iterator + - drm/amd/display: correct hostvm flag + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - drm/meson: remove drm bridges at aggregate driver unbind time + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - drm/amd/display: polling vid stream status in hpo dp blank + - drm/amdkfd: Fix UBSAN shift-out-of-bounds warning + - ARM: dts: imx6: delete interrupts property if interrupts-extended is set + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - ARM: dts: imx6sl: use tabs for code indent + - ARM: dts: imx6sx-udoo-neo: don't use multiple blank lines + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO + voltage + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: properly report super block errors in system log + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure + - ARM: 9233/1: stacktrace: Skip frame pointer boundary check for + call_with_stack() + - ARM: 9234/1: stacktrace: Avoid duplicate saving of exception PC value + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - RDMA/rxe: Delete error messages triggered by incoming Read requests + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - usb: gadget: uvc: increase worker prio to WQ_HIGHPRI + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - HSI: ssi_protocol: fix potential resource leak in ssip_pn_open() + - HID: nintendo: check analog user calibration for plausibility + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - usb: dwc3: core: add gfladj_refclk_lpm_sel quirk + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: handle effects after freeing the request + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - blk-mq: use quiesced elevator switch when reinitializing queues + - hwmon (occ): Retry for checksum failure + - fsi: occ: Prevent use after free + - usb: typec: ucsi: Don't warn on probe deferral + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf: Skip and warn on unknown format 'configN' attrs + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - perf intel-pt: Fix system_wide dummy event for hybrid + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "drm/amd/display: correct hostvm flag" + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - powerpc/64s/interrupt: Fix lost interrupts when returning to soft-masked + context + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - HID: uclogic: Add missing suffix for digitalizers + - ext4: continue to expand file system when the target size doesn't reach + - drm/i915: Rename block_size()/block_offset() + - drm/i915/bios: Validate fp_timing terminator presence + - drm/i915/bios: Use hardcoded fp_timing size for generating LFP data pointers + - Linux 5.19.17 + * Kinetic update: v5.19.16 upstream stable release (LP: #1994164) + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - ALSA: hda/realtek: Add quirk for HP Zbook Firefly 14 G9 model + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "USB: fixup for merge issue with "usb: dwc3: Don't switch OTG -> + peripheral if extcon is present"" + - Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present" + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - mctp: prevent double key removal and unref + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.19.16 + * Kinetic update: v5.19.15 upstream stable release (LP: #1994078) + - sparc: Unbreak the build + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - [Config] updateconfigs for CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - arm64: dts: rockchip: fix upper usb port on BPI-R2-Pro + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - wifi: iwlwifi: don't spam logs with NSS>2 messages + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - drm/amdgpu/mes: zero the sdma_hqd_mask of 2nd SDMA engine for SDMA 6.0.1 + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - gpio: ftgpio010: Make irqchip immutable + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - KVM: s390: Pass initialized arg even if unused + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - drm/amd/display: Fix DP MST timeslot issue when fallback happened + - drm/amd/display: increase dcn315 pstate change latency + - perf/x86/intel: Fix unchecked MSR access error for Alder Lake N + - don't use __kernel_write() on kmap_local_page() + - i2c: davinci: fix PM disable depth imbalance in davinci_i2c_probe + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - gpiolib: acpi: Add support to ignore programming an interrupt + - gpiolib: acpi: Add a quirk for Asus UM325UAZ + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - bpf: Gate dynptr API behind CAP_BPF + - net: ethernet: mtk_eth_soc: fix state in __mtk_foe_entry_clear + - bpf: Fix resetting logic for unreferenced kptrs + - Bluetooth: use hdev->workqueue when queuing hdev->{cmd,ncmd}_timer works + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.19.15 + * Kinetic update: v5.19.14 upstream stable release (LP: #1994076) + - riscv: make t-head erratas depend on MMU + - tools/perf: Fix out of bound access to cpu mask array + - perf record: Fix cpu mask bit setting for mixed mmaps + - counter: 104-quad-8: Utilize iomap interface + - counter: 104-quad-8: Implement and utilize register structures + - counter: 104-quad-8: Fix skipped IRQ lines during events configuration + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - wifi: mac80211: ensure vif queues are operational after start + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - frontswap: don't call ->init if no ops are registered + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - x86/uaccess: avoid check_object_size() in copy_from_user_nmi() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mm: fix BUG splat with kvmalloc + GFP_ATOMIC + - mptcp: factor out __mptcp_close() without socket lock + - mptcp: fix unreleased socket in accept queue + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm: gup: fix the fast GUP race against THP collapse + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/page_isolation: fix isolate_single_pageblock() isolation behavior + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm/migrate_device.c: add missing flush_cache_page() + - mm/migrate_device.c: copy pte dirty bit to page + - mm: fix madivse_pageout mishandling on non-LRU page + - mm: bring back update_mmu_cache() to finish_fault() + - mm/hugetlb: correct demote page offset logic + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: mediatek: vcodec: Drop platform_get_resource(IORESOURCE_IRQ) + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - clk: microchip: mpfs: fix clk_cfg array bounds violation + - clk: microchip: mpfs: make the rtc's ahb clock critical + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - net: macb: Fix ZynqMP SGMII non-wakeup source resume failure + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - perf parse-events: Break out tracepoint and printing + - perf print-events: Fix "perf list" can not display the PMU prefix for some + hybrid cache events + - perf parse-events: Remove "not supported" hybrid cache events + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: cfg80211: fix MCS divisor value + - wifi: mac80211: fix regression with non-QoS drivers + - wifi: mac80211: fix memory corruption in minstrel_ht_update_rates() + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - ice: xsk: change batched Tx descriptor cleaning + - ice: xsk: drop power of 2 ring size restriction for AF_XDP + - vdpa/ifcvf: fix the calculation of queuepair + - virtio-blk: Fix WARN_ON_ONCE in virtio_queue_rq() + - vdpa/mlx5: Fix MQ to support non power of two num queues + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - drm/i915/gt: Perf_limit_reasons are only available for Gen11+ + - clk: iproc: Do not rely on node name for correct PLL setup + - clk: imx93: drop of_match_ptr + - net: mscc: ocelot: fix tagged VLAN refusal while under a VLAN-unaware bridge + - net: ethernet: mtk_eth_soc: fix mask of RX_DMA_GET_SPORT{,_V2} + - perf test: Fix test case 87 ("perf record tests") for hybrid systems + - perf tests record: Fail the test if the 'errs' counter is not zero + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/cacheinfo: Add a cpu_llc_shared_mask() UP variant + - x86/alternative: Fix race in try_get_desc() + - damon/sysfs: fix possible memleak on damon_sysfs_add_target + - Linux 5.19.14 + * Kinetic update: v5.19.13 upstream stable release (LP: #1994075) + - Linux 5.19.13 + * Kinetic update: v5.19.12 upstream stable release (LP: #1994074) + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - xfrm: fix XFRMA_LASTUSED comment + - block: remove QUEUE_FLAG_DEAD + - block: stop setting the nomerges flags in blk_cleanup_queue + - block: simplify disk shutdown + - scsi: core: Fix a use-after-free + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - ALSA: hda/realtek: Add a quirk for HP OMEN 16 (8902) mute LED + - iommu/vt-d: Check correct capability for sagaw determination + - exfat: fix overflow for large capacity partition + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - btrfs: zoned: wait for extent buffer IOs before finishing a zone + - libperf evlist: Fix polling of system-wide events + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - thunderbolt: Add support for Intel Maple Ridge single port controller + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - riscv: fix RISCV_ISA_SVPBMT kconfig dependency warning + - drm/i915/gem: Flush contexts on driver release + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - xen/xenbus: fix xenbus_setup_ring() + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Reinstate kvm_vcpu_arch.guest_supported_xcr0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - perf/arm-cmn: Add more bits to child node address offset field + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - batman-adv: Fix hang up with small MTU hard-interface + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Lower sd speed on quartz64-b + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: imx8mm: Reverse CPLD_Dn GPIO label mapping on MX8Menlo + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: imx8mn: remove GPU power domain reset + - arm64: dts: imx8ulp: add #reset-cells for pcc + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: fix property for usb2 phy supply on rock-3a + - arm64: dts: rockchip: fix property for usb2 phy supply on rk3568-evb1-v10 + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3566-quartz64-a + - arm64: dts: imx8mm-verdin: extend pmic voltages + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - ice: Fix crash by keep old cfg when update TCs more than queues + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - wifi: iwlwifi: Mark IWLMEI as broken + - [Config] updateconfigs for IWLMEI + - arm64: dts: tqma8mqml: Include phy-imx8-pcie.h header + - drm/mediatek: Fix wrong dither settings + - arm64: dts: imx8mp-venice-gw74xx: fix CAN STBY polarity + - arm64: dts: imx8mp-venice-gw74xx: fix ksz9477 cpu port + - ARM: dts: lan966x: Fix the interrupt number for internal PHYs + - net: phy: aquantia: wait for the suspend/resume operations to finish + - arm64: dts: imx8mp-venice-gw74xx: fix port/phy validation + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - mm/slab_common: fix possible double free of kmem_cache + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - netdevsim: Fix hwstats debugfs file permissions + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - bnxt_en: fix flags to check for supported fw version + - gve: Fix GFP flags when allocing pages + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - sfc/siena: fix TX channel offset when using legacy interrupts + - sfc/siena: fix null pointer dereference in efx_hard_start_xmit + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - ipv6: Fix crash when IPv6 is administratively disabled + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - ice: config netdev tc before setting queues number + - ice: Fix interface being down after reset with link-down-on-close flag on + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - netfilter: nf_ct_ftp: fix deadlock when nat rewrite is needed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - gpio: tqmx86: fix uninitialized variable girq + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf stat: Fix cpu map index in bperf cgroup code + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - ice: Fix ice_xdp_xmit() when XDP TX queue number is not sufficient + - net/smc: Stop the CLC flow if no link to map buffers on + - net: phy: micrel: fix shared interrupt on LAN8814 + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - io_uring: ensure that cached task references are always put on exit + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - phy: marvell: phy-mvebu-a3700-comphy: Remove broken reset support + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - blk-mq: fix error handling in __blk_mq_alloc_disk + - block: call blk_mq_exit_queue from disk_release for never added disks + - block: Do not call blk_put_queue() if gendisk allocation fails + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/gma500: Fix WARN_ON(lock->magic != lock) error + - drm/gma500: Fix (vblank) IRQs not working after suspend/resume + - gpio: ixp4xx: Make irqchip immutable + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: change the alignment size of TMR BO to 1M + - drm/amdgpu: add HDP remap functionality to nbio 7.7 + - drm/amdgpu: Skip reset error status for psp v13_0_0 + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - gpio: mt7621: Make the irqchip immutable + - pmem: fix a name collision + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - i2c: mux: harden i2c_mux_alloc() against integer overflows + - drm/amdgpu: don't register a dirty callback for non-atomic + - certs: make system keyring depend on built-in x509 parser + - Makefile.debug: set -g unconditional on CONFIG_DEBUG_INFO_SPLIT + - Makefile.debug: re-enable debug info for .S files + - devdax: Fix soft-reservation memory description + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - ext4: use buckets for cr 1 block scan instead of rbtree + - Revert "block: freeze the queue earlier in del_gendisk" + - ext4: fixup possible uninitialized variable access in + ext4_mb_choose_next_group_cr1() + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.19.12 + * Kinetic update: v5.19.11 upstream stable release (LP: #1994070) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - SUNRPC: Fix call completion races with call_decode() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - NFSv4.2: Update mode bits after ALLOCATE and DEALLOCATE + - Revert "SUNRPC: Remove unreachable error condition" + - drm/panel-edp: Fix delays for Innolux N116BCA-EA1 + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - drm/rockchip: vop2: Fix eDP/HDMI sync polarities + - drm/i915/vdsc: Set VDSC PIC_HEIGHT before using for DP DSC + - drm/i915/guc: Don't update engine busyness stats too frequently + - drm/i915/guc: Cancel GuC engine busyness worker synchronously + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - io_uring/msg_ring: check file type before putting + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - blk-lib: fix blkdev_issue_secure_erase + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/i915/gt: Fix perf limit reasons bit positions + - drm/i915: Set correct domains values at _i915_vma_move_to_active + - drm/amdgpu: make sure to init common IP before gmc + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - net: Find dst with sk's xfrm policy not ctl_sk + - dt-bindings: apple,aic: Fix required item "apple,fiq-index" in affinity + description + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.19.11 + * Kinetic update: v5.19.10 upstream stable release (LP: #1994069) + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - net/mlx5: Introduce ifc bits for using software vhca id + - net/mlx5: Use software VHCA id when it's supported + - RDMA/mlx5: Rely on RoCE fw cap instead of devlink when setting profile + - RDMA/mlx5: Add a umr recovery flow + - RDMA/mlx5: Fix UMR cleanup on error flow of driver init + - ACPI: resource: skip IRQ override on AMD Zen platforms + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - peci: cpu: Fix use-after-free in adev_release() + - kvm: x86: mmu: Always flush TLBs when enabling dirty logging + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - Bluetooth: MGMT: Fix Get Device Flags + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - r8152: add PID for the Lenovo OneLink+ Dock + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - drm/amdgpu: disable FRU access on special SIENNA CICHLID card + - drm/amd/pm: use vbios carried pptable for all SMU13.0.7 SKUs + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - platform/x86: asus-wmi: Increase FAN_CURVE_BUF_LEN to 32 + - LoongArch: Fix section mismatch due to acpi_os_ioremap() + - LoongArch: Fix arch_remove_memory() undefined build error + - gpio: 104-dio-48e: Make irq_chip immutable + - gpio: 104-idio-16: Make irq_chip immutable + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.19.10 + * Kinetic update: v5.19.9 upstream stable release (LP: #1994068) + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: mt76: mt7921e: fix crash in chip reset fail + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - soc: fsl: select FSL_GUTS driver for DPIO + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: core: Allow the ALUA transitioning state enough time + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: fix hive reference leak when adding xgmi device + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/amdgpu: Remove the additional kfd pre reset call for sriov + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - netfilter: conntrack: work around exceeded receive window + - thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: omapfb: Fix tests for platform_get_irq() failure + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - x86/sev: Mark snp_abort() noreturn + - drm/amdgpu: add sdma instance check for gfx11 CGCG + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: hda: Once again fix regression of page allocations with IOMMU + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Clear fixed clock rate at closing EP + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracefs: Only clobber mode/uid/gid on remount if asked + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - btrfs: zoned: fix API misuse of zone finish waiting + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - perf: RISC-V: fix access beyond allocated array + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - driver core: fix driver_set_override() issue with empty strings + - nvmet: fix a use-after-free + - drm/i915/bios: Copy the whole MIPI sequence block + - drm/i915/slpc: Let's fix the PCODE min freq table setup for SLPC + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - smb3: missing inode locks in zero range + - spi: bitbang: Fix lsb-first Rx + - ASoC: cs42l42: Only report button state if there was a button interrupt + - Revert "soc: imx: imx8m-blk-ctrl: set power device name" + - arm64: dts: imx8mm-verdin: update CAN clock to 40MHz + - arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd + - ASoC: qcom: sm8250: add missing module owner + - regmap: spi: Reserve space for register address/padding + - arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings + - arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - arm64: dts: ls1028a-qds-65bb: don't use in-band autoneg for 2500base-x + - soc: imx: gpcv2: Assert reset before ungating clock + - arm64: dts: verdin-imx8mm: add otg2 pd to usbphy + - arm64: dts: imx8mm-venice-gw7901: fix port/phy validation + - arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity + - arm64: dts: freescale: verdin-imx8mp: fix atmel_mxt_ts reset polarity + - regulator: core: Clean up on enable failure + - ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF + - ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR depend on SND_SOC_SOF + - tee: fix compiler warning in tee_shm_register() + - RDMA/irdma: Fix drain SQ hang with no completion + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - RDMA/hns: Remove the num_qpc_timer variable + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - riscv: dts: microchip: use an mpfs specific l2 compatible + - netfilter: nf_conntrack_irc: Fix forged IP logic + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - kunit: fix assert_type for comparison macros + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: Fix DMA mappings leak + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - block: don't add partitions if GD_SUPPRESS_PART_SCAN is set + - RDMA/siw: Pass a pointer to virt_to_page() + - bonding: use unspecified address if no available link local address + - bonding: add all node mcast address when slave up + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - btrfs: zoned: fix mounting with conventional zones + - erofs: fix error return code in erofs_fscache_{meta_,}read_folio + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - btrfs: fix the max chunk size and stripe length calculation + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return error on MR deregister CQP failure + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - net: dsa: felix: disable cut-through forwarding for frames oversized for tc- + taprio + - net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in + vsc9959_sched_speed_set + - net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear + - net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb + - net/smc: Fix possible access to freed memory in link clear + - io_uring: recycle kbuf recycle on tw requeue + - net: phy: lan87xx: change interrupt src of link_up to comm_ready + - sch_sfb: Also store skb len before calling child enqueue + - libperf evlist: Fix per-thread mmaps for multi-threaded targets + - perf dlfilter dlfilter-show-cycles: Fix types for print format + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - perf record: Fix synthesis failure warnings + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS + - bonding: accept unsolicited NA message + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - time64.h: consolidate uses of PSEC_PER_NSEC + - net: dsa: felix: tc-taprio intervals smaller than MTU should send at least + one packet + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - perf evlist: Always use arch_evlist__add_default_attrs() + - perf stat: Fix L2 Topdown metrics disappear for raw events + - Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in + page->flags"" + - hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 + - hwmon: (asus-ec-sensors) add support for Maximus XI Hero + - hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING + - hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME + - hwmon: (asus-ec-sensors) autoload module via DMI data + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - iommu/virtio: Fix interaction with VFIO + - iommu: Fix false ownership failure on AMD systems with PASID activated + - drm/amd/display: Add SMU logging code + - drm/amd/display: Removing assert statements for Linux + - Linux 5.19.9 + * Kinetic update: v5.19.8 upstream stable release (LP: #1994061) + - drm/msm/dp: make eDP panel as the first connected connector + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dpu: populate wb or intf before reset_intf_cfg + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - platform/x86: x86-android-tablets: Fix broken touchscreen on Chuwi Hi8 with + Windows BIOS + - xsk: Fix corrupted packets for XDP_SHARED_UMEM + - drm/msm/gpu: Drop qos request if devm_devfreq_add_device() fails + - peci: aspeed: fix error check return value of platform_get_irq() + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnels + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - drm/i915/gvt: Fix Comet Lake + - ieee802154/adf7242: defer destroy_workqueue call + - bpf: Fix a data-race around bpf_jit_limit. + - drm/i915/ttm: fix CCS handling + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - xhci: Fix null pointer dereference in remove if xHC has only one roothub + - Revert "xhci: turn off port power in shutdown" + - bpf: Allow helpers to accept pointers with a fixed size + - bpf: Tidy up verifier check_func_arg() + - bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZERO + - Bluetooth: hci_event: Fix vendor (unknown) opcode status handling + - Bluetooth: hci_sync: Fix suspend performance regression + - Bluetooth: hci_event: Fix checking conn for le_conn_complete_evt + - Bluetooth: hci_sync: hold hdev->lock when cleanup hci_conn + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - nfp: flower: fix ingress police using matchall filter + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - net: phy: micrel: Make the GPIO to be non-exclusive + - net: lan966x: improve error handle in lan966x_fdma_rx_get_frame() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - cachefiles: fix error return code in cachefiles_ondemand_copen() + - cachefiles: make on-demand request distribution fairer + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - mm/slab_common: Deleting kobject in kmem_cache_destroy() without holding + slab_mutex/cpu_hotplug_lock + - platform/mellanox: mlxreg-lc: Fix coverity warning + - platform/mellanox: mlxreg-lc: Fix locking issue + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - staging: r8188eu: add firmware dependency + - Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" + - powerpc: align syscall table for ppc32 + - powerpc/rtas: Fix RTAS MSR[HV] handling for Cell + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: light: cm3605: Fix an error handling path in cm3605_probe() + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: correct "microchip,device-addr" property + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - firmware_loader: Fix use-after-free during unregister + - firmware_loader: Fix memory leak in firmware upload + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - landlock: Fix file reparenting without explicit LANDLOCK_ACCESS_FS_REFER + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - riscv: kvm: move extern sbi_ext declarations to a header + - clk: ti: Fix missing of_node_get() ti_find_clock_provider() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - powerpc/papr_scm: Fix nvdimm event mappings + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - gpio: realtek-otto: switch to 32-bit I/O + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - powerpc/papr_scm: Ensure rc is always initialized in papr_scm_pmu_register() + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - thunderbolt: Check router generation before connecting xHCI + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - usb: dwc3: disable USB core PHY management + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: dwc3: fix PHY disable sequence + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - Revert "usb: typec: ucsi: add a common function + ucsi_unregister_connectors()" + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: f_uac2: fix superspeed transfer + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - USB: gadget: Fix obscure lockdep violation for udc_mutex + - dma-buf/dma-resv: check if the new fence is really later + - arm64/kexec: Fix missing extra range for crashkres_low. + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - ip: fix triggering of 'icmp redirect' + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: memalloc: Revive x86-specific WC page allocations again + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/backlight: Disable pps power hook for aux based backlight + - drm/i915/guc: clear stalled request after a reset + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - tty: n_gsm: initialize more members at gsm_alloc_mux() + - tty: n_gsm: replace kicktimer with delayed_work + - tty: n_gsm: avoid call of sleeping functions from atomic context + - Linux 5.19.8 + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - drm: New function to get luminance range based on static hdr metadata + - drm/amdgpu_dm: Rely on split out luminance calculation function + - drm/i915: Use luminance range calculated during edid parsing + * Update Broadcom Emulex FC HBA lpfc driver to 14.2.0.5 for Ubuntu 22.04 + (LP: #1988711) + - scsi: lpfc: Fix uninitialized cqe field in lpfc_nvme_cancel_iocb() + - scsi: lpfc: Set PU field when providing D_ID in XMIT_ELS_RSP64_CX iocb + - scsi: lpfc: Fix lost NVMe paths during LIF bounce stress test + - scsi: lpfc: Refactor lpfc_nvmet_prep_abort_wqe() into + lpfc_sli_prep_abort_xri() + - scsi: lpfc: Update lpfc version to 14.2.0.5 + - scsi: lpfc: Copyright updates for 14.2.0.5 patches + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + + [ Ubuntu: 5.19.0-23.24 ] + + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42722 + - SAUCE: wifi: mac80211: fix crash in beacon protection for P2P-device + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + * CVE-2022-42719 + - SAUCE: wifi: mac80211: fix MBSSID parsing use-after-free + + [ Ubuntu: 5.19.0-21.21 ] + + * kinetic/linux: 5.19.0-21.21 -proposed tracker (LP: #1992639) + * cannot change mount namespace (LP: #1991691) + - SAUCE: apparmor: Fix getaatr mediation causing snap failures + * Kernel regresses openjdk on riscv64 (LP: #1992484) + - SAUCE: Revert "riscv: mmap with PROT_WRITE but no PROT_READ is invalid" + + [ Ubuntu: 5.19.0-20.20 ] + + * kinetic/linux: 5.19.0-20.20 -proposed tracker (LP: #1992408) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * Kinetic kernels 5.19.0-18/19-generic won't boot on Intel 11th/12th gen + (LP: #1991704) + - drm/i915: fix null pointer dereference + * rcu_sched detected stalls on CPUs/tasks (LP: #1967130) + - [Config] Disable VMAP_STACK on riscv64 + * Disable sv57 as the userspace is not ready (LP: #1991790) + - SAUCE: riscv: mm: Force disable sv57 + * earlyconsole prints question marks on 5.19.0-1002-generic (LP: #1988984) + - [Config] Set CONFIG_PWM_SIFIVE=m for riscv64 + * RCU stalls (LP: #1991951) + - [Config] Harmonize RCU_CPU_STALL_TIMEOUT + * backport dkms fixes to build modules correctly for hwe-5.19+ kernels with + custom compiler (LP: #1991664) + - [Packaging] use versioned gcc-12 + - [Packaging] Update configs with versioned compiler version + * FTBFS on kinetic (LP: #1990964) + - SAUCE: uapi: Fixup strace compile error + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + * [22.10 FEAT] zKVM: Crypto Passthrough Hotplug - kernel part (LP: #1852741) + - s390/vfio-ap: use new AP bus interface to search for queue devices + - s390/vfio-ap: move probe and remove callbacks to vfio_ap_ops.c + - s390/vfio-ap: manage link between queue struct and matrix mdev + - s390/vfio-ap: introduce shadow APCB + - s390/vfio-ap: refresh guest's APCB by filtering AP resources assigned to + mdev + - s390/vfio-ap: allow assignment of unavailable AP queues to mdev device + - s390/vfio-ap: rename matrix_dev->lock mutex to matrix_dev->mdevs_lock + - s390/vfio-ap: introduce new mutex to control access to the KVM pointer + - s390/vfio-ap: use proper locking order when setting/clearing KVM pointer + - s390/vfio-ap: prepare for dynamic update of guest's APCB on assign/unassign + - s390/vfio-ap: prepare for dynamic update of guest's APCB on queue + probe/remove + - s390/vfio-ap: allow hot plug/unplug of AP devices when assigned/unassigned + - s390/vfio-ap: hot plug/unplug of AP devices when probed/removed + - s390/vfio-ap: reset queues after adapter/domain unassignment + - s390/vfio-ap: implement in-use callback for vfio_ap driver + - s390/vfio-ap: sysfs attribute to display the guest's matrix + - s390/vfio-ap: handle config changed and scan complete notification + - s390/vfio-ap: update docs to include dynamic config support + - s390/Docs: new doc describing lock usage by the vfio_ap device driver + - MAINTAINERS: pick up all vfio_ap docs for VFIO AP maintainers + + [ Ubuntu: 5.19.0-19.19 ] + + * kinetic/linux: 5.19.0-19.19 -proposed tracker (LP: #1990960) + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display + (using struct cred as input)""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk + parameter const""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + smk_netlbl_mls()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use + lsmblob""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to + kfree_sensitive()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check""" + - Revert "Revert "Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive + flag""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full + LSM context""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple + object LSM attributes""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline + function declration.""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Add new record for multiple + process LSM attributes""" + - Revert "Revert "Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a + lsmblob""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in + netlink netfilter""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_inode_getsecctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_secid_to_secctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context + releaser""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display""" + - Revert "Revert "Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to + use lsmblobs""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_cred_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_inode_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_task_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_ipc_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secid_to_secctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secctx_to_secid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: net: Prepare UDS for security module + stacking""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_kernel_act_as""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_audit_rule_match""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob + data structure.""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the + sock security""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from + SK_CTX() to aa_sock()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to + aa_unix_sk()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as + part of a secid to secctx""" + - Revert "Revert "Revert "apparmor: fix absroot causing audited secids to + begin with =""" + - Revert "Revert "Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating + locking non-fs, unix sockets""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: fix use after free in + sk_peer_label""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: af_unix mediation""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: patch to provide + compatibility with v2.x net rules""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash + string hex value""" + - SAUCE: upstream v6.0: apparmor: fix absroot causing audited secids to begin + with = + - SAUCE: upstream v6.0: apparmor: Fix kernel-doc + - SAUCE: upstream v6.0: lsm: Fix kernel-doc + - SAUCE: upstream v6.0: apparmor: Update help description of policy hash for + introspection + - SAUCE: upstream v6.0: apparmor: make export of raw binary profile to + userspace optional + - SAUCE: upstream v6.0: apparmor: Enable tuning of policy paranoid load for + embedded systems + - SAUCE: upstream v6.0: apparmor: don't create raw_sha1 symlink if sha1 + hashing is disabled + - SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol warnings in + policy_unpack_test.c + - SAUCE: upstream v6.0: security/apparmor: remove redundant ret variable + - SAUCE: upstream v6.0: apparmor: Use struct_size() helper in kmalloc() + - SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and match_mnt() + kernel-doc comment + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize' + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: test: Remove some casts which are no-longer + required + - SAUCE: upstream v6.0: apparmor: add a kernel label to use on kernel objects + - SAUCE: upstream v6.0: apparmor: Convert secid mapping to XArrays instead of + IDR + - SAUCE: upstream v6.0: apparmor: disable showing the mode as part of a secid + to secctx + - SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as static + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: allow label to carry debug flags + - SAUCE: upstream v6.0: apparmor: extend policydb permission set by making use + of the xbits + - SAUCE: upstream v6.0: apparmor: move ptrace mediation to more logical + task.{h,c} + - SAUCE: upstream v6.0: apparmor: correct config reference to intended one + - SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the new uring_cmd file + op + - SAUCE: upstream v6.0: selinux: implement the security_uring_cmd() LSM hook + - SAUCE: upstream v6.0: Smack: Provide read control for io_uring_cmd + - SAUCE: apparmor-next 6.1: apparmor: fix a memleak in multi_transaction_new() + - SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when removing a + namespace + - SAUCE: apparmor-next 6.1: apparmor: reserve mediation classes + - SAUCE: apparmor-next 6.1: apparmor: use zstd compression for profile data + - SAUCE: apparmor-next 6.1: apparmor: expose compression level limits in sysfs + - SAUCE: apparmor-next 6.1: apparmor: compute file permissions on profile load + - SAUCE: apparmor-next 6.1: apparmor: compute xmatch permissions on profile + load + - SAUCE: apparmor-next 6.1: apparmor: move fperm computation into + policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm computation + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use aa_perms structure + - SAUCE: apparmor-next 6.1: apparmor: compute policydb permission on profile + load + - SAUCE: apparmor-next 6.1: apparmor: combine file_rules and aa_policydb into + a single shared struct + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using the new shared + policydb struct + - SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to use accept as an + index + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: cleanup shared permission struct + - SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: preparse for state being more than just + an integer + - SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include v8 abi + - SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating locking non-fs + unix sockets + - SAUCE: apparmor-next 6.1: apparmor: extend policydb permission set by making + use of the xbits + - SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros into policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: extend xindex size + - SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards compatibility + to its own file + - SAUCE: apparmor-next 6.1: apparmor: extend permissions to support a label + and tag string + - SAUCE: apparmor-next 6.1: apparmor: add mediation class information to + auditing + - SAUCE: apparmor-next 6.1: apparmor: add user mode flag + - SAUCE: apparmor-next 6.1: apparmor: make transition table unpack generic so + it can be reused + - SAUCE: apparmor-next 6.1: apparmor: group dfa policydb unpacking + - SAUCE: apparmor-next 6.1: apparmor: make unpack_array return a trianary + value + - SAUCE: apparmor-next 6.1: apparmor: add the ability for policy to specify a + permission table + - SAUCE: apparmor-next 6.1: apparmor: verify permission table indexes + - SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes are accumulated + - SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm accumulation into + perms.h + - SAUCE: apparmor-next 6.1: apparmor: verify loaded permission bits masks + don't overlap + - SAUCE: apparmor-next 6.1: apparmor: refactor profile rules and attachments + - SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to be a list + - SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to match reserved + classes + - SAUCE: apparmor-next 6.1: apparmor: Fix regression in stacking due to label + flags + - SAUCE: apparmor-next 6.1: apparmor: Simplify obtain the newest label on a + cred + - SAUCE: apparmor-next 6.1: apparmor: make __aa_path_perm() static + - SAUCE: apparmor-next 6.1: apparmor: Fix doc comment for compute_fperms + - SAUCE: apparmor-next 6.1: apparmor: Remove unnecessary size check when + unpacking trans_table + - SAUCE: apparmor-next 6.1: apparmor: make sure the decompression ctx is + promperly initialized + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make + __aa_path_perm() static" + - SAUCE: apparmor: af_unix mediation + - SAUCE: fix shutdown unix socket owner conditional check + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: lsm stacking v37: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: lsm stacking v37: LSM: Infrastructure management of the sock security + - SAUCE: lsm stacking v37: LSM: Add the lsmblob data structure. + - SAUCE: lsm stacking v37: LSM: provide lsm name and id slot mappings + - SAUCE: lsm stacking v37: IMA: avoid label collisions with stacked LSMs + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_current_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context releaser + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a lsmblob + - SAUCE: lsm stacking v37: binder: Pass LSM identifier for confirmation + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx module selection + - SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in audit_names + - SAUCE: lsm stacking v37: Audit: Create audit_stamp structure + - SAUCE: lsm stacking v37: LSM: Add a function to report multiple LSMs + - SAUCE: lsm stacking v37: Audit: Allow multiple records in an audit_buffer + - SAUCE: lsm stacking v37: Audit: Add record for multiple task security + contexts + - SAUCE: lsm stacking v37: audit: multiple subject lsm values for netlabel + - SAUCE: lsm stacking v37: Audit: Add record for multiple object contexts + - SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in audit data + - SAUCE: lsm stacking v37: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full LSM context + - SAUCE: lsm stacking v37: AppArmor: Remove the exclusive flag + - SAUCE: security, lsm: Introduce security_create_user_ns() + - SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable + - SAUCE: selinux: Implement userns_create hook + - SAUCE: apparmor: add user namespace creation mediation + - [Config] update configs after apply new apparmor patch set + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) // + 5.19.0-17.17: kernel NULL pointer dereference, address: 0000000000000084 + (LP: #1990236) + - SAUCE: apparmor: fix oops in unix owner conditional setup + * Miscellaneous Ubuntu changes + - [Config] make sure CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is enforced + + -- Kleber Sacilotto de Souza Thu, 17 Nov 2022 18:16:23 +0100 + +linux-hwe-5.19 (5.19.0-18.18~22.04.3) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-18.18~22.04.3 -proposed tracker (LP: #1992162) + + * backport dkms fixes to build modules correctly for hwe-5.19+ kernels with + custom compiler (LP: #1991664) + - [Packaging] use versioned gcc-12 + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + - [Packaging] update update.conf + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Disable DKMS modules for jammy:hwe-5.19" + + -- Dimitri John Ledkov Fri, 07 Oct 2022 13:54:30 +0100 + +linux-hwe-5.19 (5.19.0-18.18~22.04.2) jammy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] initialize linux-hwe-5.19 + - [Packaging] specify gcc-12 for jammy:hwe-5.19 + - [Config] Update versions for GCC and PAHOLE + - [Packaging] Update DKMS module versions for Jammy:hwe-5.19 + - [Packaging] Disable DKMS modules for jammy:hwe-5.19 + + -- Ian May Tue, 27 Sep 2022 23:37:19 -0500 + +linux-hwe-5.19 (5.19.0-18.18~22.04.1) jammy; urgency=medium + + * Empty entry + + -- Ian May Mon, 26 Sep 2022 23:15:47 -0500 + +linux (5.19.0-18.18) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-18.18 -proposed tracker (LP: #1990366) + + * 5.19.0-17.17: kernel NULL pointer dereference, address: 0000000000000084 + (LP: #1990236) + - Revert "UBUNTU: SAUCE: apparmor: Fix regression in stacking due to label + flags" + - Revert "UBUNTU: [Config] disable SECURITY_APPARMOR_RESTRICT_USERNS" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - add an internal buffer"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - don't wait on cleanup"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - don't waste entropy"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - always add a pending + request"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - unregister device before + reset"" + - Revert "UBUNTU: SAUCE: Revert "virtio-rng: make device ready before making + request"" + - Revert "UBUNTU: [Config] update configs after apply new apparmor patch set" + - Revert "UBUNTU: SAUCE: apparmor: add user namespace creation mediation" + - Revert "UBUNTU: SAUCE: selinux: Implement userns_create hook" + - Revert "UBUNTU: SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable" + - Revert "UBUNTU: SAUCE: security, lsm: Introduce security_create_user_ns()" + - Revert "UBUNTU: SAUCE: lsm stacking v37: AppArmor: Remove the exclusive + flag" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full + LSM context" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Removed scaffolding function + lsmcontext_init" + - Revert "UBUNTU: SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in + audit data" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Add record for multiple + object contexts" + - Revert "UBUNTU: SAUCE: lsm stacking v37: audit: multiple subject lsm values + for netlabel" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Add record for multiple task + security contexts" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Allow multiple records in an + audit_buffer" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add a function to report + multiple LSMs" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Create audit_stamp + structure" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in + audit_names" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: security_secid_to_secctx + module selection" + - Revert "UBUNTU: SAUCE: lsm stacking v37: binder: Pass LSM identifier for + confirmation" + - Revert "UBUNTU: SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a + lsmblob" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in + netlink netfilter" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_inode_getsecctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context + releaser" + - Revert "UBUNTU: SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to + display" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Specify which LSM to display" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_cred_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_inode_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_current_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_ipc_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_secctx_to_secid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_kernel_act_as" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_audit_rule_match" + - Revert "UBUNTU: SAUCE: lsm stacking v37: IMA: avoid label collisions with + stacked LSMs" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: provide lsm name and id slot + mappings" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add the lsmblob data + structure." + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Infrastructure management of + the sock security" + - Revert "UBUNTU: SAUCE: lsm stacking v37: integrity: disassociate + ima_filter_rule from security_audit_rule" + - Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() to + aa_sock()" + - Revert "UBUNTU: SAUCE: apparmor: Add fine grained mediation of posix + mqueues" + - Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()" + - Revert "UBUNTU: SAUCE: fix shutdown unix socket owner conditional check" + - Revert "UBUNTU: SAUCE: apparmor: af_unix mediation" + - Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with v2.x + net rules" + - Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string hex value" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to + match reserved classes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to + be a list" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: refactor profile rules + and attachments" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: verify loaded permission + bits masks don't overlap" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm + accumulation into perms.h" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes + are accumulated" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: verify permission table + indexes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add the ability for + policy to specify a permission table" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make unpack_array return + a trianary value" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: group dfa policydb + unpacking" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make transition table + unpack generic so it can be reused" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add user mode flag" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add mediation class + information to auditing" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend permissions to + support a label and tag string" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards + compatibility to its own file" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend xindex size" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros + into policy_unpack" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend policydb + permission set by making use of the xbits" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating + locking non-fs unix sockets" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include + v8 abi" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: preparse for state being + more than just an integer" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: cleanup shared + permission struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using + the new shared policydb struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: combine file_rules and + aa_policydb into a single shared struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute policydb + permission on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use + aa_perms structure" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm + computation" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: move fperm computation + into policy_unpack" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute xmatch + permissions on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute file permissions + on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: expose compression level + limits in sysfs" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: use zstd compression for + profile data" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: reserve mediation + classes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when + removing a namespace" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix a memleak in + multi_transaction_new()" + - Revert "UBUNTU: SAUCE: upstream v6.0: Smack: Provide read control for + io_uring_cmd" + - Revert "UBUNTU: SAUCE: upstream v6.0: selinux: implement the + security_uring_cmd() LSM hook" + - Revert "UBUNTU: SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the + new uring_cmd file op" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: correct config reference to + intended one" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: move ptrace mediation to + more logical task.{h,c}" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: extend policydb permission + set by making use of the xbits" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: allow label to carry debug + flags" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as + static" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: disable showing the mode as + part of a secid to secctx" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Convert secid mapping to + XArrays instead of IDR" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: add a kernel label to use on + kernel objects" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: test: Remove some casts + which are no-longer required" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize'" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and + match_mnt() kernel-doc comment" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Use struct_size() helper in + kmalloc()" + - Revert "UBUNTU: SAUCE: upstream v6.0: security/apparmor: remove redundant + ret variable" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol + warnings in policy_unpack_test.c" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: don't create raw_sha1 + symlink if sha1 hashing is disabled" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Enable tuning of policy + paranoid load for embedded systems" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: make export of raw binary + profile to userspace optional" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Update help description of + policy hash for introspection" + - Revert "UBUNTU: SAUCE: upstream v6.0: lsm: Fix kernel-doc" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix kernel-doc" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: fix absroot causing audited + secids to begin with =" + - Revert "Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string + hex value"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with + v2.x net rules"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: af_unix mediation"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: fix use after free in + sk_peer_label"" + - Revert "Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating locking non- + fs, unix sockets"" + - Revert "Revert "apparmor: fix absroot causing audited secids to begin with + ="" + - Revert "Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as part of + a secid to secctx"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() + to aa_sock()"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the sock + security"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob data + structure."" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_audit_rule_match"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_kernel_act_as"" + - Revert "Revert "UBUNTU: SAUCE: net: Prepare UDS for security module + stacking"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secctx_to_secid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secid_to_secctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_ipc_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_task_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_inode_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_cred_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to use + lsmblobs"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context + releaser"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_secid_to_secctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_inode_getsecctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in netlink + netfilter"" + - Revert "Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a lsmblob"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Add new record for multiple process + LSM attributes"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration."" + - Revert "Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object + LSM attributes"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM + context"" + - Revert "Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive flag"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to + kfree_sensitive()"" + - Revert "Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use lsmblob"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in smk_netlbl_mls()"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk parameter + const"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display (using + struct cred as input)"" + + * [22.04 FEAT] Enhanced Interpretation for PCI Functions on s390x - kernel + part (LP: #1853306) + - s390/sclp: detect the zPCI load/store interpretation facility + - s390/sclp: detect the AISII facility + - s390/sclp: detect the AENI facility + - s390/sclp: detect the AISI facility + - s390/airq: pass more TPI info to airq handlers + - s390/airq: allow for airq structure that uses an input vector + - s390/pci: externalize the SIC operation controls and routine + - s390/pci: stash associated GISA designation + - s390/pci: stash dtsm and maxstbl + - vfio/pci: introduce CONFIG_VFIO_PCI_ZDEV_KVM + - KVM: s390: pci: add basic kvm_zdev structure + - KVM: s390: pci: do initial setup for AEN interpretation + - KVM: s390: pci: enable host forwarding of Adapter Event Notifications + - KVM: s390: mechanism to enable guest zPCI Interpretation + - KVM: s390: pci: provide routines for enabling/disabling interrupt forwarding + - KVM: s390: pci: add routines to start/stop interpretive execution + - vfio-pci/zdev: add open/close device hooks + - vfio-pci/zdev: add function handle to clp base capability + - vfio-pci/zdev: different maxstbl for interpreted devices + - KVM: s390: add KVM_S390_ZPCI_OP to manage guest zPCI devices + - MAINTAINERS: additional files related kvm s390 pci passthrough + - Documentation: kvm: extend KVM_S390_ZPCI_OP subheading underline + - KVM: s390: pci: Hook to access KVM lowlevel from VFIO + + * [22.10 FEAT] [IO2201] Independent Usage of Secondary Physical Function + (LP: #1959542) + - PCI: Clean up pci_scan_slot() + - PCI: Split out next_ari_fn() from next_fn() + - PCI: Move jailhouse's isolated function handling to pci_scan_slot() + - PCI: Extend isolated function probing to s390 + - s390/pci: allow zPCI zbus without a function zero + + * AMD ACP 6.2 DMIC support (LP: #1989518) + - ASoC: amd: add Pink Sardine platform ACP IP register header + - ASoC: amd: add Pink Sardine ACP PCI driver + - ASoC: amd: add acp6.2 init/de-init functions + - ASoC: amd: add platform devices for acp6.2 pdm driver and dmic driver + - ASoC: amd: add acp6.2 pdm platform driver + - ASoC: amd: add acp6.2 irq handler + - ASoC: amd: add acp6.2 pdm driver dma ops + - ASoC: amd: add acp6.2 pci driver pm ops + - ASoC: amd: add acp6.2 pdm driver pm ops + - ASoC: amd: enable Pink Sardine acp6.2 drivers build + - ASoC: amd: create platform device for acp6.2 machine driver + - ASoC: amd: add Pink Sardine machine driver using dmic + - ASoC: amd: enable Pink sardine platform machine driver build. + - [Config] Enable audio for AMD PinkSardine + + * support independent clock and LED GPIOs for Intel IPU6 platforms + (LP: #1989046) + - SAUCE: platform/x86: int3472: support independent clock and LED GPIOs + + * CVE-2022-2978 + - SAUCE: fs: fix UAF/GPF bug in nilfs_mdt_destroy + + * Miscellaneous Ubuntu changes + - [Config] disable SECURITY_APPARMOR_RESTRICT_USERNS + - SAUCE: Add mdev_set_iommu_device() kABI. + - SAUCE: apparmor: Fix regression in stacking due to label flags + - [Config] update toolchain version + + * Miscellaneous upstream changes + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + + -- Andrea Righi Wed, 21 Sep 2022 16:28:46 +0200 + +linux (5.19.0-17.17) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-17.17 -proposed tracker (LP: #1989987) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * multiple kernel oops regarding hung tasks delaying boot (LP: #1989258) + - SAUCE: Revert "virtio-rng: make device ready before making request" + - SAUCE: Revert "hwrng: virtio - unregister device before reset" + - SAUCE: Revert "hwrng: virtio - always add a pending request" + - SAUCE: Revert "hwrng: virtio - don't waste entropy" + - SAUCE: Revert "hwrng: virtio - don't wait on cleanup" + - SAUCE: Revert "hwrng: virtio - add an internal buffer" + + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) + - Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display (using struct cred + as input)" + - Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk parameter const" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in smk_netlbl_mls()" + - Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use lsmblob" + - Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to kfree_sensitive()" + - Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check" + - Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive flag" + - Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM context" + - Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object LSM + attributes" + - Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration." + - Revert "UBUNTU: SAUCE: Audit: Add new record for multiple process LSM + attributes" + - Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a lsmblob" + - Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in netlink netfilter" + - Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in security_inode_getsecctx" + - Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context releaser" + - Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display" + - Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to use lsmblobs" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_cred_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_inode_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_task_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_ipc_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_secctx_to_secid" + - Revert "UBUNTU: SAUCE: net: Prepare UDS for security module stacking" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_kernel_act_as" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_audit_rule_match" + - Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob data structure." + - Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the sock security" + - Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() to + aa_sock()" + - Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()" + - Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as part of a secid + to secctx" + - Revert "apparmor: fix absroot causing audited secids to begin with =" + - Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix + sockets" + - Revert "UBUNTU: SAUCE: apparmor: fix use after free in sk_peer_label" + - Revert "UBUNTU: SAUCE: apparmor: af_unix mediation" + - Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with v2.x + net rules" + - Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string hex value" + - SAUCE: upstream v6.0: apparmor: fix absroot causing audited secids to begin + with = + - SAUCE: upstream v6.0: apparmor: Fix kernel-doc + - SAUCE: upstream v6.0: lsm: Fix kernel-doc + - SAUCE: upstream v6.0: apparmor: Update help description of policy hash for + introspection + - SAUCE: upstream v6.0: apparmor: make export of raw binary profile to + userspace optional + - SAUCE: upstream v6.0: apparmor: Enable tuning of policy paranoid load for + embedded systems + - SAUCE: upstream v6.0: apparmor: don't create raw_sha1 symlink if sha1 + hashing is disabled + - SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol warnings in + policy_unpack_test.c + - SAUCE: upstream v6.0: security/apparmor: remove redundant ret variable + - SAUCE: upstream v6.0: apparmor: Use struct_size() helper in kmalloc() + - SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and match_mnt() + kernel-doc comment + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize' + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: test: Remove some casts which are no-longer + required + - SAUCE: upstream v6.0: apparmor: add a kernel label to use on kernel objects + - SAUCE: upstream v6.0: apparmor: Convert secid mapping to XArrays instead of + IDR + - SAUCE: upstream v6.0: apparmor: disable showing the mode as part of a secid + to secctx + - SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as static + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: allow label to carry debug flags + - SAUCE: upstream v6.0: apparmor: extend policydb permission set by making use + of the xbits + - SAUCE: upstream v6.0: apparmor: move ptrace mediation to more logical + task.{h,c} + - SAUCE: upstream v6.0: apparmor: correct config reference to intended one + - SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the new uring_cmd file + op + - SAUCE: upstream v6.0: selinux: implement the security_uring_cmd() LSM hook + - SAUCE: upstream v6.0: Smack: Provide read control for io_uring_cmd + - SAUCE: apparmor-next 6.1: apparmor: fix a memleak in multi_transaction_new() + - SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when removing a + namespace + - SAUCE: apparmor-next 6.1: apparmor: reserve mediation classes + - SAUCE: apparmor-next 6.1: apparmor: use zstd compression for profile data + - SAUCE: apparmor-next 6.1: apparmor: expose compression level limits in sysfs + - SAUCE: apparmor-next 6.1: apparmor: compute file permissions on profile load + - SAUCE: apparmor-next 6.1: apparmor: compute xmatch permissions on profile + load + - SAUCE: apparmor-next 6.1: apparmor: move fperm computation into + policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm computation + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use aa_perms structure + - SAUCE: apparmor-next 6.1: apparmor: compute policydb permission on profile + load + - SAUCE: apparmor-next 6.1: apparmor: combine file_rules and aa_policydb into + a single shared struct + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using the new shared + policydb struct + - SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to use accept as an + index + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: cleanup shared permission struct + - SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: preparse for state being more than just + an integer + - SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include v8 abi + - SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating locking non-fs + unix sockets + - SAUCE: apparmor-next 6.1: apparmor: extend policydb permission set by making + use of the xbits + - SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros into policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: extend xindex size + - SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards compatibility + to its own file + - SAUCE: apparmor-next 6.1: apparmor: extend permissions to support a label + and tag string + - SAUCE: apparmor-next 6.1: apparmor: add mediation class information to + auditing + - SAUCE: apparmor-next 6.1: apparmor: add user mode flag + - SAUCE: apparmor-next 6.1: apparmor: make transition table unpack generic so + it can be reused + - SAUCE: apparmor-next 6.1: apparmor: group dfa policydb unpacking + - SAUCE: apparmor-next 6.1: apparmor: make unpack_array return a trianary + value + - SAUCE: apparmor-next 6.1: apparmor: add the ability for policy to specify a + permission table + - SAUCE: apparmor-next 6.1: apparmor: verify permission table indexes + - SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes are accumulated + - SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm accumulation into + perms.h + - SAUCE: apparmor-next 6.1: apparmor: verify loaded permission bits masks + don't overlap + - SAUCE: apparmor-next 6.1: apparmor: refactor profile rules and attachments + - SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to be a list + - SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to match reserved + classes + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: af_unix mediation + - SAUCE: fix shutdown unix socket owner conditional check + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: lsm stacking v37: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: lsm stacking v37: LSM: Infrastructure management of the sock security + - SAUCE: lsm stacking v37: LSM: Add the lsmblob data structure. + - SAUCE: lsm stacking v37: LSM: provide lsm name and id slot mappings + - SAUCE: lsm stacking v37: IMA: avoid label collisions with stacked LSMs + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_current_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context releaser + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a lsmblob + - SAUCE: lsm stacking v37: binder: Pass LSM identifier for confirmation + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx module selection + - SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in audit_names + - SAUCE: lsm stacking v37: Audit: Create audit_stamp structure + - SAUCE: lsm stacking v37: LSM: Add a function to report multiple LSMs + - SAUCE: lsm stacking v37: Audit: Allow multiple records in an audit_buffer + - SAUCE: lsm stacking v37: Audit: Add record for multiple task security + contexts + - SAUCE: lsm stacking v37: audit: multiple subject lsm values for netlabel + - SAUCE: lsm stacking v37: Audit: Add record for multiple object contexts + - SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in audit data + - SAUCE: lsm stacking v37: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full LSM context + - SAUCE: lsm stacking v37: AppArmor: Remove the exclusive flag + - SAUCE: security, lsm: Introduce security_create_user_ns() + - SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable + - SAUCE: selinux: Implement userns_create hook + - SAUCE: apparmor: add user namespace creation mediation + - [Config] update configs after apply new apparmor patch set + + * [22.10 FEAT] KVM: Secure Execution guest dump encryption with customer keys + - kernel part (LP: #1959940) + - s390/uv: Add SE hdr query information + - s390/uv: Add dump fields to query + - KVM: s390: pv: Add query interface + - KVM: s390: pv: Add dump support definitions + - KVM: s390: pv: Add query dump information + - KVM: s390: Add configuration dump functionality + - KVM: s390: Add CPU dump functionality + - KVM: s390: Add KVM_CAP_S390_PROTECTED_DUMP + - Documentation: virt: Protected virtual machine dumps + - Documentation/virt/kvm/api.rst: Add protvirt dump/info api descriptions + - Documentation/virt/kvm/api.rst: Explain rc/rrc delivery + + * [SRU][OEM-5.14/Jammy/OEM-5.17][PATCH 0/1] Fix blank screen on Thinkpad ADL + 4K+ panel (LP: #1980621) + - SAUCE: drm/i915: Implement WaEdpLinkRateDataReload + - SAUCE: Revert "drm/i915/display: Re-add check for low voltage sku for max dp + source rate" + + * [UBUNTU 22.04] s390/qeth: cache link_info for ethtool (LP: #1984103) + - s390/qeth: cache link_info for ethtool + + * Kernel livepatch support for for s390x (LP: #1639924) + - [Config] Enable EXPOLINE_EXTERN on s390x + + * IWLMEI may cause device down at resuming from s2idle (LP: #1987312) + - [Config] Disable IWLMEI + + * Raise CONFIG_NR_CPUS (LP: #1967889) + - [Config] Raise riscv64 CONFIG_NR_CPUS to 32 + + * PolarFire Icicle Kit: missing USB support (LP: #1986970) + - usb: musb: Add support for PolarFire SoC's musb controller + - usb: musb: mpfs: Fix error codes in probe() + - usb: musb: mpfs: add missing clk_disable_unprepare() in mpfs_remove() + - [Config] Enable CONFIG_USB_MUSB_POLARFIRE_SOC on riscv64 + + * System freeze after resuming from suspend due to PCI ASPM settings + (LP: #1980829) + - SAUCE: PCI/ASPM: Save/restore L1SS Capability for suspend/resume + - SAUCE: whitelist platforms that needs save/restore ASPM L1SS for + suspend/resume + + * Please enable CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU (LP: #1980861) + - [Config] Switch from DECOMP_SINGLE to DECOMP_MULTI_PERCPU + + * Miscellaneous Ubuntu changes + - [Config] enable security-related configs + - [Packaging] Make stamp-install- target reentrant + - [Packaging] Pass kernel build_arch to dkms + - [Packaging] Enable building zfs during cross-compile + - [Packaging] temporarily disable signing for ppc64el + + -- Andrea Righi Fri, 16 Sep 2022 18:03:10 +0200 + +linux (5.19.0-16.16) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-16.16 -proposed tracker (LP: #1988707) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Kinetic update: v5.19.7 upstream stable release (LP: #1988733) + - drm/vc4: hdmi: Rework power up + - drm/vc4: hdmi: Depends on CONFIG_PM + - firmware: tegra: bpmp: Do only aligned access to IPC memory area + - crypto: lib - remove unneeded selection of XOR_BLOCKS + - docs: kerneldoc-preamble: Test xeCJK.sty before loading + - arm64: errata: Add Cortex-A510 to the repeat tlbi list + - Bluetooth: L2CAP: Fix build errors in some archs + - Revert "PCI/portdrv: Don't disable AER reporting in + get_port_device_capability()" + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - USB: gadget: Fix use-after-free Read in usb_udc_uevent() + - HID: hidraw: fix memory leak in hidraw_release() + - net: fix refcount bug in sk_psock_get (2) + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + - ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 + - HID: input: fix uclogic tablets + - HID: add Lenovo Yoga C630 battery quirk + - HID: AMD_SFH: Add a DMI quirk entry for Chromebooks + - HID: Add Apple Touchbar on T2 Macs in hid_have_special_driver list + - HID: asus: ROG NKey: Ignore portion of 0x5a report + - HID: nintendo: fix rumble worker null pointer deref + - HID: thrustmaster: Add sparco wheel and fix array length + - HID: intel-ish-hid: ipc: Add Meteor Lake PCI device ID + - mmc: mtk-sd: Clear interrupts when cqe off/disable + - mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs + - mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx + - mmc: sdhci-of-dwcmshc: Re-enable support for the BlueField-3 SoC + - fs/ntfs3: Fix work with fragmented xattr + - ASoC: sh: rz-ssi: Improve error handling in rz_ssi_probe() error path + - ASoC: rt5640: Fix the JD voltage dropping issue + - rtla: Fix tracer name + - drm/amd/display: Add a missing register field for HPO DP stream encoder + - drm/amd/display: Device flash garbage before get in OS + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: Fix HDMI VSIF V3 incorrect issue + - drm/amd/display: For stereo keep "FLIP_ANY_FRAME" + - drm/amd/display: clear optc underflow before turn off odm clock + - drm/amd/display: Fix TDR eDP and USB4 display light up issue + - drm/amd/pm: skip pptable override for smu_v13_0_7 + - drm/amdkfd: Handle restart of kfd_ioctl_wait_events + - drm/amd/pm: Fix a potential gpu_metrics_table memory leak + - ksmbd: return STATUS_BAD_NETWORK_NAME error status if share is not + configured + - net: lan966x: fix checking for return value of platform_get_irq_byname() + - neigh: fix possible DoS due to net iface start/stop loop + - ALSA: hda/realtek: Add quirks for ASUS Zenbooks using CS35L41 + - s390/hypfs: avoid error message under KVM + - ksmbd: don't remove dos attribute xattr on O_TRUNC open + - drm/amdgpu: disable 3DCGCG/CGLS temporarily due to stability issue + - drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid + - drm/amd/pm: add missing ->fini_xxxx interfaces for some SMU13 asics + - drm/amd/display: Fix pixel clock programming + - drm/amdgpu: Increase tlb flush timeout for sriov + - drm/amd/display: Fix plug/unplug external monitor will hang while playback + MPO video + - drm/amd/display: avoid doing vm_init multiple time + - drm/amdgpu: Add decode_iv_ts helper for ih_v6 block + - drm/amdgpu: Add secure display TA load for Renoir + - drm/amdgpu: Fix interrupt handling on ih_soft ring + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - testing: selftests: nft_flowtable.sh: use random netns names + - platform/x86: serial-multi-instantiate: Add CLSA0101 Laptop + - ALSA: hda/cs8409: Support new Dolphin Variants + - btrfs: move lockdep class helpers to locking.c + - btrfs: fix lockdep splat with reloc root extent buffers + - btrfs: tree-checker: check for overlapping extent items + - android: binder: fix lockdep check on clearing vma + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - Linux 5.19.7 + + * Kinetic update: v5.19.6 upstream stable release (LP: #1988732) + - mm/gup: fix FOLL_FORCE COW security issue and remove FOLL_COW + - NFS: Fix another fsync() issue after a server reboot + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - cgroup: Fix race condition at rebind_subsystems() + - parisc: Make CONFIG_64BIT available for ARCH=parisc64 only + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - kprobes: don't call disarm_kprobe() for disabled kprobes + - mm/uffd: reset write protection when unregister with wp-mode + - mm/hugetlb: support write-faults in shared mappings + - mt76: mt7921: fix command timeout in AP stop period + - xfrm: fix refcount leak in __xfrm_policy_check() + - Revert "xfrm: update SA curlft.use_time" + - xfrm: clone missing x->lastused in xfrm_do_migrate + - af_key: Do not call xfrm_probe_algs in parallel + - xfrm: policy: fix metadata dst->dev xmit null pointer dereference + - fs: require CAP_SYS_ADMIN in target namespace for idmapped mounts + - Revert "net: macsec: update SCI upon MAC address change." + - NFSv4.2 fix problems with __nfs42_ssc_open + - SUNRPC: RPC level errors should set task->tk_rpc_status + - mm/smaps: don't access young/dirty bit if pte unpresent + - ntfs: fix acl handling + - rose: check NULL rose_loopback_neigh->loopback + - r8152: fix the units of some registers for RTL8156A + - r8152: fix the RX FIFO settings when suspending + - nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout + - ice: xsk: prohibit usage of non-balanced queue id + - ice: xsk: use Rx ring's XDP ring when picking NAPI context + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net/mlx5: LAG, fix logic over MLX5_LAG_FLAG_NDEVS_READY + - net/mlx5: Eswitch, Fix forwarding decision to uplink + - net/mlx5: Disable irq when locking lag_lock + - net/mlx5: Fix cmd error logging for manage pages cmd + - net/mlx5: Avoid false positive lockdep warning by adding lock_class_key + - net/mlx5e: Fix wrong application of the LRO state + - net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off + - net: dsa: microchip: ksz9477: cleanup the ksz9477_switch_detect + - net: dsa: microchip: move switch chip_id detection to ksz_common + - net: dsa: microchip: move tag_protocol to ksz_common + - net: dsa: microchip: move vlan functionality to ksz_common + - net: dsa: microchip: move the port mirror to ksz_common + - net: dsa: microchip: update the ksz_phylink_get_caps + - net: dsa: microchip: keep compatibility with device tree blobs with no phy- + mode + - net: ipa: don't assume SMEM is page-aligned + - net: phy: Don't WARN for PHY_READY state in mdio_bus_phy_resume() + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - netfilter: nft_tproxy: restrict to prerouting hook + - bnxt_en: Use PAGE_SIZE to init buffer when multi buffer XDP is not in use + - bnxt_en: set missing reload flag in devlink features + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - bnxt_en: fix LRO/GRO_HW features in ndo_fix_features callback + - netfilter: nf_tables: disallow updates of implicit chain + - netfilter: nf_tables: make table handle allocation per-netns friendly + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nf_tables: do not leave chain stats enabled on error + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - netfilter: nf_tables: disallow binding to already bound chain + - netfilter: flowtable: add function to invoke garbage collection immediately + - netfilter: flowtable: fix stuck flows on cleanup due to pending work + - net: Fix data-races around sysctl_[rw]mem_(max|default). + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_max_backlog. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix data-races around sysctl_optmem_max. + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - net: Fix data-races around sysctl_max_skb_frags. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. + - net: Fix data-races around sysctl_devconf_inherit_init_net. + - net: Fix a data-race around gro_normal_batch. + - net: Fix a data-race around netdev_unregister_timeout_secs. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - i40e: Fix incorrect address type for IPv6 flow rules + - net: ethernet: mtk_eth_soc: enable rx cksum offload for MTK_NETSYS_V2 + - net: ethernet: mtk_eth_soc: fix hw hash reporting for MTK_NETSYS_V2 + - rxrpc: Fix locking in rxrpc's sendmsg + - ionic: clear broken state on generation change + - ionic: fix up issues with handling EAGAIN on FW cmds + - ionic: VF initial random MAC address if no assigned mac + - net: stmmac: work around sporadic tx issue on link-up + - net: lantiq_xrx200: confirm skb is allocated before using + - net: lantiq_xrx200: fix lock under memory pressure + - net: lantiq_xrx200: restore buffer if memory allocation failed + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: fix space cache corruption and potential double allocations + - btrfs: check if root is readonly while setting security xattr + - btrfs: fix possible memory leak in btrfs_get_dev_args_from_path() + - btrfs: update generation of hole file extent item when merging holes + - x86/boot: Don't propagate uninitialized boot_params->cc_blob_address + - perf/x86/intel: Fix pebs event constraints for ADL + - perf/x86/lbr: Enable the branch type for the Arch LBR by default + - x86/entry: Fix entry_INT80_compat for Xen PV guests + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - x86/sev: Don't use cc_platform_has() for early SEV-SNP calls + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - x86/nospec: Unwreck the RSB stuffing + - x86/PAT: Have pat_enabled() properly reflect state when running on Xen + - loop: Check for overflow while configuring loop + - writeback: avoid use-after-free after removing device + - audit: move audit_return_fixup before the filters + - asm-generic: sections: refactor memory_intersects + - mm/damon/dbgfs: avoid duplicate context directory creation + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - bootmem: remove the vmemmap pages from kmemleak in put_page_bootmem + - mm/hugetlb: avoid corrupting page->mapping in hugetlb_mcopy_atomic_pte + - mm/mprotect: only reference swap pfn page if type match + - cifs: skip extra NULL byte in filenames + - s390: fix double free of GS and RI CBs on fork() failure + - fbdev: fbcon: Properly revert changes when vc_resize() failed + - Revert "memcg: cleanup racy sum avoidance code" + - shmem: update folio if shmem_replace_page() updates the page + - ACPI: processor: Remove freq Qos request for all CPUs + - nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf + - smb3: missing inode locks in punch hole + - ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown + - xen/privcmd: fix error exit of privcmd_ioctl_dm_op() + - riscv: signal: fix missing prototype warning + - riscv: traps: add missing prototype + - riscv: dts: microchip: correct L2 cache interrupts + - Revert "zram: remove double compression logic" + - io_uring: fix issue with io_write() not always undoing sb_start_write() + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - Revert "md-raid: destroy the bitmap after destroying the thread" + - md: call __md_stop_writes in md_stop + - arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 + - binder_alloc: add missing mmap_lock calls when using the VMA + - x86/nospec: Fix i386 RSB stuffing + - drm/amdkfd: Fix isa version for the GC 10.3.7 + - Documentation/ABI: Mention retbleed vulnerability info file for sysfs + - blk-mq: fix io hung due to missing commit_rqs + - perf python: Fix build when PYTHON_CONFIG is user supplied + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - perf/x86/intel/ds: Fix precise store latency handling + - perf stat: Clear evsel->reset_group for each stat run + - arm64: fix rodata=full + - arm64/signal: Flush FPSIMD register state when disabling streaming mode + - arm64/sme: Don't flush SVE register state when allocating SME storage + - arm64/sme: Don't flush SVE register state when handling SME traps + - scsi: ufs: core: Enable link lost interrupt + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - scsi: core: Fix passthrough retry counter handling + - riscv: dts: microchip: mpfs: fix incorrect pcie child node name + - riscv: dts: microchip: mpfs: remove ti,fifo-depth property + - riscv: dts: microchip: mpfs: remove bogus card-detect-delay + - riscv: dts: microchip: mpfs: remove pci axi address translation property + - bpf: Don't use tnum_range on array range checking for poke descriptors + - Linux 5.19.6 + + * Kinetic update: v5.19.5 upstream stable release (LP: #1988207) + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - Linux 5.19.5 + + * Support Intel TDX guest attestation driver (LP: #1988120) + - SAUCE: x86/tdx: Add TDX Guest attestation interface driver + - SAUCE: selftests: tdx: Test GetReport TDX attestation feature + + * Kinetic update: v5.19.4 upstream stable release (LP: #1987923) + - ALSA: info: Fix llseek return value when using callback + - ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU + - RDMA: Handle the return code from dma_resv_wait_timeout() properly + - KVM: Unconditionally get a ref to /dev/kvm module when creating a VM + - x86/mm: Use proper mask when setting PUD mapping + - rds: add missing barrier to release_refill + - drm/i915/gem: Remove shared locking on freeing objects + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/nouveau: recognise GA103 + - drm/ttm: Fix dummy res NULL ptr deref bug + - drm/amdgpu: Only disable prefer_shadow on hawaii + - drm/amd/display: Check correct bounds for stream encoder instances for + DCN303 + - s390/ap: fix crash on older machines based on QCI info missing + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - mmc: meson-gx: Fix an error handling path in meson_mmc_probe() + - btrfs: unset reloc control if transaction commit fails in + prepare_to_relocate() + - btrfs: reset RO counter on block group if we fail to relocate + - btrfs: fix lost error handling when looking up extended ref on log replay + - btrfs: fix warning during log replay when bumping inode link count + - drm/amdgpu: change vram width algorithm for vram_info v3_0 + - drm/i915/gt: Ignore TLB invalidations on idle engines + - drm/i915/gt: Invalidate TLB of the OA unit at TLB invalidations + - drm/i915/gt: Skip TLB invalidations once wedged + - drm/i915/gt: Batch TLB invalidations + - drm/i915: pass a pointer for tlb seqno at vma_invalidate_tlb() + - cifs: Fix memory leak on the deferred close + - x86/kprobes: Fix JNG/JNLE emulation + - tracing/perf: Fix double put of trace event when init fails + - tracing/eprobes: Do not allow eprobes to use $stack, or % for regs + - tracing/eprobes: Do not hardcode $comm as a string + - tracing/eprobes: Fix reading of string fields + - tracing/eprobes: Have event probes be consistent with kprobes and uprobes + - tracing/probes: Have kprobes and uprobes use $COMM too + - tracing: Have filter accept "common_cpu" to be consistent + - ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II + - ALSA: hda: Fix crash due to jack poll in suspend + - dt-bindings: usb: mtk-xhci: Allow wakeup interrupt-names to be optional + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - Revert "UBUNTU: SAUCE: apparmor: drop prefixing abs root labels with '='" + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix setting unconfined mode on a loaded profile + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - netfilter: nf_tables: fix crash when nf_trace is enabled + - net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev + is null + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - mptcp, btf: Add struct mptcp_sock definition when CONFIG_MPTCP is disabled + - mptcp: move subflow cleanup in mptcp_destroy_common() + - mptcp: do not queue data on closed subflows + - selftests: mptcp: make sendfile selftest work + - BPF: Fix potential bad pointer dereference in bpf_sys_bpf() + - bpf: Disallow bpf programs call prog_run command. + - bpf: Don't reinit map value in prealloc_lru_pop + - bpf: Acquire map uref in .init_seq_private for array map iterator + - bpf: Acquire map uref in .init_seq_private for hash map iterator + - bpf: Acquire map uref in .init_seq_private for sock local storage map + iterator + - bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator + - bpf: Check the validity of max_rdwr_access for sock local storage map + iterator + - can: mcp251x: Fix race condition on receive interrupt + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - net: atlantic: fix aq_vec index out of range error + - m68k: coldfire/device.c: protect FLEXCAN blocks + - sunrpc: fix expiry of auth creds + - SUNRPC: Fix xdr_encode_bool() + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - SUNRPC: Don't reuse bvec on retransmission of the request + - ASoC: qdsp6: q6apm-dai: unprepare stream if its already prepared + - virtio: VIRTIO_HARDEN_NOTIFICATION is broken + - [Config] updateconfigs for VIRTIO_HARDEN_NOTIFICATION + - virtio_net: fix memory leak inside XPD_TX with mergeable + - virtio-blk: Avoid use-after-free on suspend/resume + - devlink: Fix use-after-free after a failed reload + - net: phy: Warn about incorrect mdio_bus_phy_resume() state + - net: bcmgenet: Indicate MAC is in charge of PHY PM + - net: phy: c45 baset1: do not skip aneg configuration if clock role is not + specified + - net: dsa: felix: suppress non-changes to the tagging protocol + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - net: atm: bring back zatm uAPI + - selftests: forwarding: Fix failing tests with old libnet + - dt-bindings: arm: qcom: fix Alcatel OneTouch Idol 3 compatibles + - pinctrl: renesas: rzg2l: Return -EINVAL for pins which have input disabled + - dt-bindings: pinctrl: mt8192: Add drive-strength-microamp + - dt-bindings: pinctrl: mt8192: Use generic bias instead of pull-*-adv + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - dt-bindings: pinctrl: mt8195: Fix name for mediatek,rsel-resistance-in-si- + unit + - dt-bindings: pinctrl: mt8195: Add and use drive-strength-microamp + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - dt-bindings: pinctrl: mt8186: Add and use drive-strength-microamp + - pinctrl: qcom: sm8250: Fix PDC map + - rtc: spear: set range max + - Input: exc3000 - fix return value check of wait_for_completion_timeout + - Input: mt6779-keypad - match hardware matrix organization + - Input: iqs7222 - correct slider event disable logic + - Input: iqs7222 - fortify slider event reporting + - Input: iqs7222 - protect volatile registers + - Input: iqs7222 - acknowledge reset before writing registers + - Input: iqs7222 - handle reset during ATI + - Input: iqs7222 - remove support for RF filter + - dt-bindings: input: iqs7222: Remove support for RF filter + - dt-bindings: input: iqs7222: Correct bottom speed step size + - dt-bindings: input: iqs7222: Extend slider-mapped GPIO to IQS7222C + - octeontx2-pf: Fix NIX_AF_TL3_TL2X_LINKX_CFG register configuration + - octeontx2-af: Apply tx nibble fixup always + - octeontx2-af: suppress external profile loading warning + - octeontx2-af: Fix mcam entry resource leak + - octeontx2-af: Fix key checking for source mac + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - vxlan: do not use RT_TOS for IPv6 flowlabel + - mlx5: do not use RT_TOS for IPv6 flowlabel + - ipv6: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: gpio: zynq: Add missing compatible strings + - dt-bindings: arm: qcom: fix Longcheer L8150 compatibles + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - dt-bindings: arm: qcom: fix MSM8994 boards compatibles + - dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources + - dt-bindings: PCI: qcom: Fix reset conditional + - spi: dt-bindings: cadence: add missing 'required' + - spi: dt-bindings: zynqmp-qspi: add missing 'required' + - dt-bindings: opp: opp-v2-kryo-cpu: Fix example binding checks + - spi: dt-bindings: qcom,spi-geni-qcom: allow three interconnects + - ceph: use correct index when encoding client supported features + - tools/testing/cxl: Fix decoder default state + - tools/vm/slabinfo: use alphabetic order when two values are equal + - ceph: don't leak snap_rwsem in handle_cap_grant + - clk: imx93: Correct the edma1's parent clock + - vdpa_sim: use max_iotlb_entries as a limit in vhost_iotlb_init + - vdpa_sim_blk: set number of address spaces and virtqueue groups + - tools/testing/cxl: Fix cxl_hdm_decode_init() calling convention + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - tsnep: Fix tsnep_tx_unmap() error path usage + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - fscache: don't leak cookie access refs if invalidation is in progress or + failed + - geneve: fix TOS inheriting for ipv4 + - nvme-fc: fix the fc_appid_store return value + - perf probe: Fix an error handling path in 'parse_perf_probe_command()' + - i2c: qcom-geni: Fix GPI DMA buffer sync-back + - perf parse-events: Fix segfault when event parser gets an error + - perf tests: Fix Track with sched_switch test for hybrid case + - dpaa2-eth: trace the allocated address instead of page struct + - fs/ntfs3: Fix using uninitialized value n when calling indx_read + - fs/ntfs3: Fix NULL deref in ntfs_update_mftmirr + - fs/ntfs3: Don't clear upper bits accidentally in log_replay() + - fs/ntfs3: Fix double free on remount + - fs/ntfs3: Do not change mode if ntfs_set_ea failed + - fs/ntfs3: Fix missing i_op in ntfs_read_mft + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - iavf: Fix NULL pointer dereference in iavf_get_link_ksettings + - iavf: Fix reset error handling + - iavf: Fix deadlock in initialization + - ASoC: Intel: avs: Fix potential buffer overflow by snprintf() + - ASoC: SOF: debug: Fix potential buffer overflow by snprintf() + - ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() + - ASoC: DPCM: Don't pick up BE without substream + - ASoC: tas2770: Set correct FSYNC polarity + - ASoC: tas2770: Allow mono streams + - ASoC: tas2770: Drop conflicting set_bias_level power setting + - ASoC: tas2770: Fix handling of mute/unmute + - ASoC: codec: tlv320aic32x4: fix mono playback via I2S + - IB/iser: Fix login with authentication + - RDMA/mlx5: Use the proper number of ports + - RDMA/cxgb4: fix accept failure due to increased cpl_t5_pass_accept_rpl size + - netfilter: nfnetlink: re-enable conntrack expectation events + - netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id + access + - fs/ntfs3: uninitialized variable in ntfs_set_acl_ex() + - netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with + NFT_SET_ELEM_INTERVAL_END flag + - netfilter: nf_ct_sane: remove pseudo skb linearization + - netfilter: nf_ct_h323: cap packet size at 64k + - netfilter: nf_ct_ftp: prefer skb_linearize + - netfilter: nf_ct_irc: cap packet search space to 4k + - netfilter: nf_tables: possible module reference underflow in error path + - netfilter: nf_tables: really skip inactive sets when allocating name + - netfilter: nf_tables: fix scheduling-while-atomic splat + - netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT + flag + - netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval + flags + - netfilter: nf_tables: disallow NFT_SET_ELEM_CATCHALL and + NFT_SET_ELEM_INTERVAL_END + - netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified + - powerpc/pci: Fix get_phb_number() locking + - spi: meson-spicc: add local pow2 clock ops to preserve rate between messages + - net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() + - net: dsa: mv88e6060: prevent crash on an unused port + - net: qrtr: start MHI channel after endpoit creation + - virtio_net: fix endian-ness for RSS + - mlxsw: spectrum: Clear PTP configuration after unregistering the netdevice + - net: moxa: pass pdev instead of ndev to DMA functions + - net: fix potential refcount leak in ndisc_router_discovery() + - net: rtnetlink: fix module reference count leak issue in rtnetlink_rcv_msg + - net: sched: fix misuse of qcpu->backlog in gnet_stats_add_queue_cpu + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters + - net: mscc: ocelot: fix incorrect ndo_get_stats64 packet counters + - net: mscc: ocelot: fix address of SYS_COUNT_TX_AGING counter + - net: genl: fix error path memory leak in policy dumping + - net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support + it + - net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() + - ice: Fix VSI rebuild WARN_ON check for VF + - ice: Fix call trace with null VSI during VF reset + - ice: Fix VF not able to send tagged traffic with no VLAN filters + - ice: Fix double VLAN error when entering promisc mode + - ice: Ignore EEXIST when setting promisc mode + - ice: Fix clearing of promisc mode with bridge over bond + - ice: Ignore error message when setting same promiscuous mode + - modpost: fix module versioning when a symbol lacks valid CRC + - i2c: imx: Make sure to unregister adapter on remove() + - i40e: Fix tunnel checksum offload with fragmented traffic + - regulator: pca9450: Remove restrictions for regulator-name + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - blk-mq: run queue no matter whether the request is the last request + - tools/rtla: Fix command symlinks + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - dt-bindings: display: sun4i: Add D1 TCONs to conditionals + - stmmac: intel: Add a missing clk_disable_unprepare() call in + intel_eth_pci_remove() + - igb: Add lock to avoid data race + - kbuild: fix the modules order between drivers and libs + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - drm/imx/dcss: get rid of HPD warning message + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - drm/i915/ttm: don't leak the ccs state + - drm/amdgpu: Avoid another list of reset devices + - drm/bridge: lvds-codec: Fix error checking of drm_of_lvds_get_data_mapping() + - drm/sun4i: dsi: Prevent underflow when computing packet sizes + - drm/amdgpu: Fix use-after-free on amdgpu_bo_list mutex + - KVM: arm64: Treat PMCR_EL1.LC as RES1 on asymmetric systems + - KVM: arm64: Reject 32bit user PSTATE on asymmetric systems + - net: mscc: ocelot: turn stats_lock into a spinlock + - net: mscc: ocelot: fix race between ndo_get_stats64 and + ocelot_check_stats_work + - net: mscc: ocelot: make struct ocelot_stat_layout array indexable + - net: mscc: ocelot: report ndo_get_stats64 from the wraparound-resistant + ocelot->stats + - x86/ibt, objtool: Add IBT_NOSEAL() + - x86/kvm: Fix "missing ENDBR" BUG for fastop functions + - thunderbolt: Change downstream router's TMU rate in both TMU uni/bidir mode + - HID: multitouch: new device class fix Lenovo X12 trackpad sticky + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - platform/chrome: cros_ec_proto: don't show MKBP version if unsupported + - staging: r8188eu: add error handling of rtw_read8 + - staging: r8188eu: add error handling of rtw_read16 + - staging: r8188eu: add error handling of rtw_read32 + - usb: cdns3 fix use-after-free at workaround 2 + - usb: gadget: uvc: calculate the number of request depending on framesize + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - PCI: aardvark: Fix reporting Slot capabilities on emulated bridge + - scsi: ufs: core: Add UFSHCD_QUIRK_BROKEN_64BIT_ADDRESS + - scsi: ufs: core: Add UFSHCD_QUIRK_HIBERN_FASTAUTO + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - clk: ti: Stop using legacy clkctrl names for omap4 and 5 + - scsi: ufs: ufs-mediatek: Fix the timing of configuring device regulators + - usb: typec: mux: Add CONFIG guards for functions + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - scsi: iscsi: Fix HW conn removal use after free + - usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - uacce: Handle parent device removal or parent driver module rmmod + - zram: do not lookup algorithm in backends table + - clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE + - gadgetfs: ep_io - wait until IRQ finishes + - coresight: etm4x: avoid build failure with unrolled loops + - habanalabs: add terminating NULL to attrs arrays + - habanalabs/gaudi: invoke device reset from one code block + - habanalabs/gaudi: fix shift out of bounds + - habanalabs/gaudi: mask constant value before cast + - mmc: tmio: avoid glitches when resetting + - scsi: ufs: ufs-exynos: Change ufs phy control sequence + - pinctrl: intel: Check against matching data instead of ACPI companion + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - of: overlay: Move devicetree_corrupt() check up + - dmaengine: dw-axi-dmac: do not print NULL LLI during error + - dmaengine: dw-axi-dmac: ignore interrupt if no descriptor + - mmc: renesas_sdhi: newer SoCs don't need manual tap correction + - ACPI: PPTT: Leave the table mapped for the runtime usage + - RDMA/rxe: Limit the number of calls to each tasklet + - csky/kprobe: reclaim insn_slot on kprobe unregistration + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: tegra: Add terminate() for Tegra234 + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - Revert "RDMA/rxe: Create duplicate mapping tables for FMRs" + - openrisc: io: Define iounmap argument as volatile + - phy: samsung: phy-exynos-pcie: sanitize init/power_on callbacks + - md: Notify sysfs sync_completed in md_reap_sync_thread() + - md/raid5: Make logic blocking check consistent with logic that blocks + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: block range must be validated before use in ext4_mb_clear_bb() + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - KVM: PPC: Book3S HV: Fix "rm_exit" entry in debugfs timings + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - iommu/io-pgtable-arm-v7s: Add a quirk to allow pgtable PA up to 35bit + - ASoC: Intel: avs: Set max DMA segment size + - ALSA: hda: Fix page fault in snd_hda_codec_shutdown() + - modules: Ensure natural alignment for .altinstructions and __bug_table + sections + - ASoC: SOF: Intel: cnl: Do not process IPC reply before firmware boot + - ASoC: SOF: Intel: hda-ipc: Do not process IPC reply before firmware boot + - ASoC: SOF: sof-client-probes: Only load the driver if IPC3 is used + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_irq_ctrl() + - riscv: dts: sifive: Add fu740 topology information + - riscv: dts: canaan: Add k210 topology information + - ASoC: nau8821: Don't unconditionally free interrupt + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - ALSA: hda/realtek: Enable speaker and mute LEDs for HP laptops + - ASoC: SOF: Intel: hda: add sanity check on SSP index reported by NHLT + - ASoC: Intel: sof_es8336: Fix GPIO quirks set via module option + - ASoC: Intel: sof_es8336: ignore GpioInt when looking for speaker/headset + GPIO lines + - ASoC: Intel: sof_nau8825: Move quirk check to the front in late probe + - watchdog: export lockup_detector_reconfigure + - powerpc/watchdog: introduce a NMI watchdog's factor + - powerpc/pseries/mobility: set NMI watchdog factor during an LPM + - powerpc/32: Set an IBAT covering up to _einittext during init + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ASoC: codecs: va-macro: use fsgen as clock + - ovl: warn if trusted xattr creation fails + - powerpc/ioda/iommu/debugfs: Generate unique debugfs entries + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - ALSA: pcm: Use deferred fasync helper + - ALSA: control: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - f2fs: fix to do sanity check on segment type in build_sit_entries() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - venus: pm_helpers: Fix warning in OPP during probe + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - f2fs: revive F2FS_IOC_ABORT_VOLATILE_WRITE + - f2fs: fix null-ptr-deref in f2fs_get_dnode_of_data + - scsi: ufs: ufs-mediatek: Fix build error and type mismatch + - Revert "ALSA: hda: Fix page fault in snd_hda_codec_shutdown()" + - Linux 5.19.4 + + * RISC-V kernel config is out of sync with other archs (LP: #1981437) + - [Config] Align riscv64 CONFIG_LSM with other architectures + - [Config] Enable CONFIG_DRM_RCAR_USE_LVDS for riscv64 + - [Config] Enable CONFIG_DTPM for riscv64 + - [Config] Set CONFIG_MTD_RAW_NAND=m for riscv64 + + * Use upstream LED description on Unmatched (LP: #1987513) + - dt-bindings: leds: pwm-multicolor: Add active-low property + - leds: pwm-multicolor: Support active-low LEDs + - riscv: dts: sifive unmatched: Add PWM controlled LEDs + + * Fix invalid MAC address after hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + + * Kinetic update: v5.19.3 upstream stable release (LP: #1987345) + - Revert "mm: kfence: apply kmemleak_ignore_phys on early allocated pool" + - tee: add overflow check in register_shm_helper() + - net_sched: cls_route: disallow handle of 0 + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - kexec, KEYS: make the code in bzImage64_verify_sig generic + - arm64: kexec_file: use more system keyrings to verify kernel image signature + - Linux 5.19.3 + + * [22.04 FEAT] Deactivitate CONFIG_QETH_OSX kernel config option + (LP: #1959890) + - [Config] disable CONFIG_QETH_OSX on s390x + + * Kinetic update: v5.19.2 upstream stable release (LP: #1986865) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - Revert "pNFS: nfs3_set_ds_client should set NFS_CS_NOPING" + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - pNFS/flexfiles: Report RDMA connection errors to the server + - nfsd: eliminate the NFSD_FILE_BREAK_* flags + - ALSA: usb-audio: Add quirk for Behringer UMC202HD + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - ALSA: hda/realtek: Add quirk for Clevo NV45PZ + - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-eb0xxx + - ALSA: hda/realtek: Add quirk for Lenovo Yoga9 14IAP7 + - ASoC: amd: yc: Update DMI table entries + - hwmon: (nct6775) Fix platform driver suspend regression + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - lockd: detect and reject lock arguments that overflow + - HID: hid-input: add Surface Go battery quirk + - HID: nintendo: Add missing array termination + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: s390: pv: don't present the ecall interrupt twice + - KVM: Drop unused @gpa param from gfn=>pfn cache's __release_gpc() helper + - KVM: Put the extra pfn reference when reusing a pfn in the gpc cache + - KVM: Fully serialize gfn=>pfn cache refresh via mutex + - KVM: Fix multiple races in gfn=>pfn cache refresh + - KVM: Do not incorporate page offset into gfn=>pfn cache user address + - KVM: x86: Split kvm_is_valid_cr4() and export only the non-vendor bits + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: nVMX: Account for KVM reserved CR4 bits in consistency checks + - KVM: nVMX: Inject #UD if VMXON is attempted with incompatible CR0/CR4 + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - KVM: x86/mmu: Treat NX as a valid SPTE bit for NPT + - KVM: SVM: Disable SEV-ES support if MMIO caching is disable + - KVM: x86: Tag kvm_mmu_x86_module_init() with __init + - KVM: x86/mmu: Fully re-evaluate MMIO caching when SPTE masks change + - KVM: x86: do not report preemption if the steal time cache is stale + - KVM: x86: revalidate steal time cache if MSR value changes + - KVM: x86/xen: Initialize Xen timer only once + - KVM: x86/xen: Stop Xen timer before changing IRQ + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 (8786) mute LED + - LoongArch: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - tty: 8250: Add support for Brainboxes PX cards. + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - fbcon: Fix accelerated fbdev scrolling while logo is still shown + - usbnet: Fix linkwatch use-after-free on disconnect + - usbnet: smsc95xx: Fix deadlock on runtime resume + - fix short copy handling in copy_mc_pipe_to_iter() + - crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory + leak + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: Drop pa_swapper_pg_lock spinlock + - parisc: Check the return value of ioremap() in lba_driver_probe() + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - riscv:uprobe fix SR_SPIE set/clear handling + - riscv: lib: uaccess: fix CSR_STATUS SR_SUM bit + - dt-bindings: riscv: fix SiFive l2-cache's cache-sets + - riscv: dts: starfive: correct number of external interrupts + - RISC-V: cpu_ops_spinwait.c should include head.h + - RISC-V: Declare cpu_ops_spinwait in + - RISC-V: kexec: Fixup use of smp_processor_id() in preemptible context + - RISC-V: Fixup get incorrect user mode PC for kernel mode regs + - RISC-V: Fixup schedule out issue in machine_crash_shutdown() + - RISC-V: Add modules to virtual kernel memory layout dump + - RISC-V: Fix counter restart during overflow for RV32 + - RISC-V: Fix SBI PMU calls for RV32 + - RISC-V: Update user page mapping only once during start + - wireguard: selftests: set CONFIG_NONPORTABLE on riscv32 + - rtc: rx8025: fix 12/24 hour mode detection on RX-8035 + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/shmem-helper: Add missing vunmap on error + - drm/vc4: hdmi: Disable audio if dmas property is present but empty + - drm/ingenic: Use the highest possible DMA burst size + - drm/fb-helper: Fix out-of-bounds access + - drm/hyperv-drm: Include framebuffer and EDID headers + - drm/dp/mst: Read the extended DPCD capabilities during system resume + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/nouveau: Don't pm_runtime_put_sync(), only pm_runtime_put_autosuspend() + - drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime + - drm/nouveau/kms: Fix failure path for creating DP connectors + - drm/tegra: Fix vmapping of prime buffers + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - bpf: Fix KASAN use-after-free Read in compute_effective_progs + - btrfs: reject log replay if there is unsupported RO compat flag + - mtd: rawnand: arasan: Fix clock rate in NV-DDR + - mtd: rawnand: arasan: Update NAND bus clock instead of system clock + - um: Remove straying parenthesis + - um: seed rng using host OS rng + - iio: fix iio_format_avail_range() printing for none IIO_VAL_INT + - iio: light: isl29028: Fix the warning in isl29028_remove() + - scsi: lpfc: Remove extra atomic_inc on cmd_pending in queuecommand after + VMID + - scsi: sg: Allow waiting for commands to complete on removed device + - scsi: qla2xxx: Fix incorrect display of max frame size + - scsi: qla2xxx: Zero undefined mailbox IN registers + - soundwire: qcom: Check device status before reading devid + - ksmbd: fix memory leak in smb2_handle_negotiate + - ksmbd: prevent out of bound read for SMB2_TREE_CONNNECT + - ksmbd: prevent out of bound read for SMB2_WRITE + - ksmbd: fix use-after-free bug in smb2_tree_disconect + - ksmbd: fix heap-based overflow in set_ntacl_dacl() + - fuse: limit nsec + - fuse: ioctl: translate ENOSYS + - fuse: write inode in fuse_release() + - fuse: fix deadlock between atomic O_TRUNC and page invalidation + - serial: mvebu-uart: uart2 error bits clearing + - md-raid: destroy the bitmap after destroying the thread + - md-raid10: fix KASAN warning + - mbcache: don't reclaim used entries + - mbcache: add functions to delete entry if unused + - media: isl7998x: select V4L2_FWNODE to fix build error + - media: [PATCH] pci: atomisp_cmd: fix three missing checks on list iterator + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - powerpc: Restore CONFIG_DEBUG_INFO in defconfigs + - powerpc/64e: Fix early TLB miss with KUAP + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - usb: typec: ucsi: Acknowledge the GET_ERROR_STATUS command completion + - USB: HCD: Fix URB giveback issue in tasklet function + - Revert "net: usb: ax88179_178a needs FLAG_SEND_ZLP" + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - usb: dwc3: gadget: refactor dwc3_repare_one_trb + - usb: dwc3: gadget: fix high speed multiplier setting + - netfilter: nf_tables: do not allow SET_ID to refer to another table + - netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - netfilter: nf_tables: do not allow RULE_ID to refer to another chain + - netfilter: nf_tables: upfront validation of data via nft_data_init() + - netfilter: nf_tables: disallow jump to implicit chain from set element + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arch: make TRACE_IRQFLAGS_NMI_SUPPORT generic + - arm64: kasan: do not instrument stacktrace.c + - arm64: stacktrace: use non-atomic __set_bit + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - arm64: kasan: Revert "arm64: mte: reset the page tag in page->flags" + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - ext2: Add more validity checks for inode counts + - sched/fair: Introduce SIS_UTIL to search idle CPU based on sum of util_avg + - genirq: Don't return error on missing optional irq_request_resources() + - irqchip/mips-gic: Only register IPI domain when SMP is enabled + - genirq: GENERIC_IRQ_IPI depends on SMP + - sched/fair: fix case with reduced capacity CPU + - sched/core: Always flush pending blk_plug + - irqchip/mips-gic: Check the return value of ioremap() in gic_of_init() + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix keypad compatible + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - ARM: dts: BCM5301X: Add DT for Meraki MR26 + - ARM: dts: ux500: Fix Janice accelerometer mounting matrix + - ARM: dts: ux500: Fix Codina accelerometer mounting matrix + - ARM: dts: ux500: Fix Gavini accelerometer mounting matrix + - arm64: dts: qcom: timer should use only 32-bit size + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ARM: OMAP2+: pdata-quirks: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: EC: Drop the EC_FLAGS_IGNORE_DSDT_GPE quirk + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - ARM: dts: qcom: sdx55: Fix the IRQ trigger type for UART + - arm64: dts: qcom: sc7280: Rename sar sensor labels + - arm64: dts: qcom: add missing AOSS QMP compatible fallback + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - firmware: tegra: Fix error check return value of debugfs_create_file() + - hwmon: (dell-smm) Add Dell XPS 13 7390 to fan control whitelist + - PM: EM: convert power field to micro-Watts precision and align drivers + - ACPI: video: Use native backlight on Dell Inspiron N4010 + - hwmon: (sht15) Fix wrong assumptions in device remove callback + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: fix memleak in security_read_state_kernel() + - selinux: Add boundary check in put_entry() + - io_uring: fix io_uring_cqe_overflow trace format + - kasan: test: Silence GCC 12 warnings + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - arm64: dts: renesas: beacon: Fix regulator node names + - spi: spi-altera-dfl: Fix an error handling path + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - ACPI: processor/idle: Annotate more functions to live in cpuidle section + - ARM: dts: imx7d-colibri-emmc: add cpu1 supply + - ARM: dts: imx7-colibri: overhaul display/touch functionality + - ARM: dts: imx7-colibri: add usb dual-role switching using extcon + - ARM: dts: imx7-colibri: improve wake-up with gpio key + - ARM: dts: imx7-colibri: move aliases, chosen, extcon and gpio-keys + - ARM: dts: imx7-colibri-eval-v3: correct can controller comment + - soc: renesas: r8a779a0-sysc: Fix A2DP1 and A2CV[2357] PDR values + - soc: amlogic: Fix refcount leak in meson-secure-pwrc.c + - arm64: dts: renesas: Fix thermal-sensors on single-zone sensors + - Revert "ARM: dts: imx6qdl-apalis: Avoid underscore in node name" + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - ARM: dts: ast2600-evb-a1: fix board compatible + - arm64: dts: mt8192: Fix idle-states nodes naming scheme + - arm64: dts: mt8192: Fix idle-states entry-method + - arm64: select TRACE_IRQFLAGS_NMI_SUPPORT + - arm64: cpufeature: Allow different PMU versions in ID_DFR0_EL1 + - locking/lockdep: Fix lockdep_init_map_*() confusion + - arm64: dts: qcom: sc7180: Remove ipa_fw_mem node on trogdor + - soc: fsl: guts: machine variable might be unset + - spi: s3c64xx: constify fsd_spi_port_config + - block: fix infinite loop for invalid zone append + - arm64: dts: qcom: sdm845-akatsuki: Round down l22a regulator voltage + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - arm64: dts: qcom: sdm630: disable GPU by default + - arm64: dts: qcom: sdm630: fix the qusb2phy ref clock + - arm64: dts: qcom: sdm630: fix gpu's interconnect path + - arm64: dts: qcom: sdm636-sony-xperia-ganges-mermaid: correct sdc2 pinconf + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - arm64: dts: renesas: r8a779m8: Drop operating points above 1.5 GHz + - arm64: dts: renesas: r9a07g054l2-smarc: Correct SoC name in comment + - regulator: qcom_smd: Fix pm8916_pldo range + - ACPI: APEI: Fix _EINJ vs EFI_MEMORY_SP + - ARM: dts: qcom: replace gcc PXO with pxo_board fixed clock + - ARM: dts: qcom-msm8974: fix irq type on blsp2_uart1 + - soc: qcom: ocmem: Fix refcount leak in of_get_ocmem + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: msm8974: add required ranges to OCMEM + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - lib: overflow: Do not define 64-bit tests on 32-bit + - stack: Declare {randomize_,}kstack_offset to fix Sparse warnings + - arm64: dts: qcom: msm8916: Fix typo in pronto remoteproc node + - arm64: dts: qcom: msm8994: add required ranges to OCMEM + - perf/x86/intel: Fix PEBS memory access info encoding for ADL + - perf/x86/intel: Fix PEBS data source encoding for ADL + - arm64: dts: exynosautov9: correct spi11 pin names + - ACPI: VIOT: Fix ACS setup + - m68k: virt: Fix missing platform_device_unregister() on error in + virt_platform_init() + - arm64: dts: qcom: sm6125: Move sdc2 pinctrl from seine-pdx201 to sm6125 + - arm64: dts: qcom: sm6125: Append -state suffix to pinctrl nodes + - arm64: dts: qcom: msm8996: correct #clock-cells for QMP PHY nodes + - arm64: dts: qcom: sc7280: drop PCIe PHY clock index + - arm64: dts: qcom: sm8250: add missing PCIe PHY clock-cells + - arm64: dts: mt7622: fix BPI-R64 WPS button + - arm64: tegra: Mark BPMP channels as no-memory-wc + - arm64: tegra: Fix SDMMC1 CD on P2888 + - arm64: dts: qcom: sc7280: fix PCIe clock reference + - erofs: wake up all waiters after z_erofs_lzma_head ready + - erofs: avoid consecutive detection for Highmem memory + - spi: Return deferred probe error when controller isn't yet available + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - spi: dw: Fix IP-core versions macro + - spi: Fix simplification of devm_spi_register_controller + - spi: tegra20-slink: fix UAF in tegra_slink_remove() + - hwmon: (sch56xx-common) Add DMI override table + - hwmon: (drivetemp) Add module alias + - blktrace: Trace remapped requests correctly + - PM: domains: Ensure genpd_debugfs_dir exists before remove + - dm writecache: return void from functions + - dm writecache: count number of blocks read, not number of read bios + - dm writecache: count number of blocks written, not number of write bios + - dm writecache: count number of blocks discarded, not number of discard bios + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - soc: qcom: Make QCOM_RPMPD depend on PM + - soc: qcom: socinfo: Fix the id of SA8540P SoC + - arm64: dts: qcom: msm8998: Make regulator voltages multiple of step-size + - arm64: dts: qcom: qcs404: Fix incorrect USB2 PHYs assignment + - ARM: dts: qcom: msm8974: Disable remoteprocs by default + - irqdomain: Report irq number for NOMAP domains + - perf: RISC-V: Add of_node_put() when breaking out of for_each_of_cpu_node() + - drivers/perf: arm_spe: Fix consistency of SYS_PMSCR_EL1.CX + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - sched: only perform capability check on privileged operation + - sched/numa: Initialise numa_migrate_retry + - x86/extable: Fix ex_handler_msr() print condition + - io_uring: move to separate directory + - io_uring: define a 'prep' and 'issue' handler for each opcode + - io_uring: Don't require reinitable percpu_ref + - selftests/seccomp: Fix compile warning when CC=clang + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - tools/power turbostat: Fix file pointer leak + - dm: return early from dm_pr_call() if DM device is suspended + - pwm: sifive: Simplify offset calculation for PWMCMP registers + - pwm: sifive: Ensure the clk is enabled exactly once per running PWM + - pwm: sifive: Shut down hardware only after pwmchip_remove() completed + - pwm: lpc18xx: Fix period handling + - erofs: update ctx->pos for every emitted dirent + - dt-bindings: display: bridge: ldb: Fill in reg property + - drm/i915: remove unused GEM_DEBUG_DECL() and GEM_DEBUG_BUG_ON() + - drm/rockchip: vop2: unlock on error path in vop2_crtc_atomic_enable() + - [Config] updateconfigs for DRM_FSL_LDB + - drm: bridge: DRM_FSL_LDB should depend on ARCH_MXC + - drm/bridge: anx7625: Use DPI bus type + - drm/mgag200: Acquire I/O lock while reading EDID + - drm/meson: Fix refcount leak in meson_encoder_hdmi_init + - drm/dp: Export symbol / kerneldoc fixes for DP AUX bus + - drm/bridge: tc358767: Handle dsi_lanes == 0 as invalid + - drm/bridge: tc358767: Make sure Refclk clock are enabled + - ath10k: do not enforce interrupt trigger type + - ath11k: Fix warning on variable 'sar' dereference before check + - ath11k: Init hw_params before setting up AHB resources + - drm/edid: reset display info in drm_add_edid_modes() for NULL edid + - drm/bridge: lt9611: Use both bits for HDMI sensing + - drm/st7735r: Fix module autoloading for Okaya RH128128T + - drm/panel: Fix build error when CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=y && + CONFIG_DRM_DISPLAY_HELPER=m + - drm: bridge: adv7511: Move CEC definitions to adv7511_cec.c + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - wifi: wilc1000: use correct sequence of RESET for chip Power-UP/Down + - ath11k: fix netdev open race + - ath11k: fix IRQ affinity warning on shutdown + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - drm/ssd130x: Only define a SPI device ID table when built as a module + - selftests/bpf: Fix test_run logic in fexit_stress.c + - sample: bpf: xdp_router_ipv4: Allow the kernel to send arp requests + - selftests/bpf: Fix tc_redirect_dtime + - libbpf: Fix is_pow_of_2 + - ath11k: fix missing skb drop on htc_tx_completion error + - ath11k: Fix incorrect debug_mask mappings + - ath11k: Avoid REO CMD failed prints during firmware recovery + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Modify dsi funcs to atomic operations + - drm/mediatek: Separate poweron/poweroff from enable/disable and define new + funcs + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm/meson: encoder_cvbs: Fix refcount leak in meson_encoder_cvbs_init + - drm/meson: encoder_hdmi: Fix refcount leak in meson_encoder_hdmi_init + - drm/bridge: lt9611uxc: Cancel only driver's work + - drm/amdgpu: fix scratch register access method in SRIOV + - drm/amdgpu/display: Prepare for new interfaces + - i2c: npcm: Remove own slave addresses 2:10 + - i2c: npcm: Correct slave role behavior + - i2c: mxs: Silence a clang warning + - virtio-gpu: fix a missing check to avoid NULL dereference + - drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init + - libbpf: Fix uprobe symbol file offset calculation logic + - drm: adv7511: override i2c address of cec before accessing it + - crypto: sun8i-ss - fix error codes in allocate_flows() + - crypto: sun8i-ss - Fix error codes for dma_mapping_error() + - crypto: sun8i-ss - fix a NULL vs IS_ERR() check in sun8i_ss_hashkey + - net: fix sk_wmem_schedule() and sk_rmem_schedule() errors + - can: netlink: allow configuring of fixed bit rates without need for + do_set_bittiming callback + - drm/vkms: check plane_composer->map[0] before using it + - can: netlink: allow configuring of fixed data bit rates without need for + do_set_data_bittiming callback + - drm/bridge: anx7625: Zero error variable when panel bridge not present + - drm/bridge: it6505: Add missing CRYPTO_HASH dependency + - i2c: Fix a potential use after free + - libbpf: Fix internal USDT address translation logic for shared libraries + - selftests/bpf: Don't force lld on non-x86 architectures + - tcp: fix possible freeze in tx path under memory pressure + - crypto: sun8i-ss - fix infinite loop in sun8i_ss_setup_ivs() + - net: ag71xx: fix discards 'const' qualifier warning + - ping: convert to RCU lookups, get rid of rwlock + - raw: use more conventional iterators + - raw: convert raw sockets to RCU + - raw: Fix mixed declarations error in raw_icmp_error(). + - media: atmel: atmel-sama7g5-isc: fix warning in configs without OF + - media: camss: csid: fix wrong size passed to devm_kmalloc_array() + - media: tw686x: Register the irq at the end of probe + - media: amphion: return error if format is unsupported by vpu + - media: Hantro: Correct G2 init qp field + - media: imx-jpeg: Correct some definition according specification + - media: imx-jpeg: Leave a blank space before the configuration data + - media: imx-jpeg: Align upwards buffer size + - media: imx-jpeg: Implement drain using v4l2-mem2mem helpers + - media: rcar-vin: Fix channel routing for Ebisu + - ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + - wifi: mac80211: set STA deflink addresses + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - wifi: rtw89: 8852a: rfk: fix div 0 exception + - drm/radeon: fix incorrrect SPDX-License-Identifiers + - drm/amd: Don't show warning on reading vbios values for SMU13 3.1 + - drm/amdkfd: correct sdma queue number of sdma 6.0.1 + - torture: Adjust to again produce debugging information + - rcutorture: Fix ksoftirqd boosting timing and iteration + - test_bpf: fix incorrect netdev features + - drm/display: Fix build error without CONFIG_OF + - selftests/bpf: Fix rare segfault in sock_fields prog test + - crypto: ccp - During shutdown, check SEV data pointer before using + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - media: imx-jpeg: Disable slot interrupt when frame done + - media: amphion: output firmware error message + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - media: v4l2-mem2mem: prevent pollerr when last_buffer_dequeued is set + - media: sta2x11: remove VIRT_TO_BUS dependency + - media: mediatek: vcodec: Initialize decoder parameters after getting + dec_capability + - media: mediatek: vcodec: Skip SOURCE_CHANGE & EOS events for stateless + - media: driver/nxp/imx-jpeg: fix a unexpected return value problem + - media: tw686x: Fix memory leak in tw686x_video_init + - media: mediatek: vcodec: Fix non subdev architecture open power fail + - drm/vc4: kms: Use maximum FIFO load for the HVS clock rate + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/vc4: dsi: Release workaround buffer and DMA + - drm/vc4: dsi: Correct DSI divider calculations + - drm/vc4: dsi: Correct pixel order for DSI0 + - drm/vc4: dsi: Register dsi0 as the correct vc4 encoder type + - drm/vc4: dsi: Fix dsi0 interrupt support + - drm/vc4: dsi: Add correct stop condition to vc4_dsi_encoder_disable + iteration + - drm/vc4: hdmi: Add all the vc5 HDMI registers into the debugfs dumps + - drm/vc4: hdmi: Clear unused infoframe packet RAM registers + - drm/vc4: hdmi: Avoid full hdmi audio fifo writes + - drm/vc4: hdmi: Reset HDMI MISC_CONTROL register + - drm/vc4: hdmi: Switch to pm_runtime_status_suspended + - drm/vc4: hdmi: Move HDMI reset to pm_resume + - drm/vc4: hdmi: Fix timings for interlaced modes + - drm/vc4: hdmi: Force modeset when bpc or format changes + - drm/vc4: hdmi: Correct HDMI timing registers for interlaced modes + - drm/vc4: hdmi: Move pixel doubling from Pixelvalve to HDMI block + - mm: Account dirty folios properly during splits + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - selftests/xsk: Destroy BPF resources only when ctx refcount drops to 0 + - net: dsa: felix: update base time of time-aware shaper when adjusting PTP + time + - net: dsa: felix: keep reference on entire tc-taprio config + - net: dsa: felix: drop oversized frames with tc-taprio instead of hanging the + port + - selftests: net: fib_rule_tests: fix support for running individual tests + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm/msm/dpu: move intf and wb assignment to dpu_encoder_setup_display() + - drm/msm/dpu: fix maxlinewidth for writeback block + - drm/msm/dpu: remove hard-coded linewidth limit for writeback + - drm/msm/hdmi: fill the pwr_regs bulk regulators + - drm: bridge: sii8620: fix possible off-by-one + - drm/msm: Fix fence rollover issue + - net: sched: provide shim definitions for taprio_offload_{get,free} + - net: dsa: felix: build as module when tc-taprio is module + - hinic: Use the bitmap API when applicable + - net: hinic: fix bug that ethtool get wrong stats + - net: hinic: avoid kernel hung in hinic_get_stats64() + - drm/bridge: anx7625: Fix NULL pointer crash when using edp-panel + - drm/msm: Avoid unclocked GMU register access in 6xx gpu_busy + - libbpf, riscv: Use a0 for RC register + - drm/msm/mdp5: Fix global state lock backoff + - drm/radeon: avoid bogus "vram limit (0) must be a power of 2" warning + - crypto: hisilicon/sec - don't sleep when in softirq + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - media: amphion: release core lock before reset vpu core + - drm/msm/dpu: Fix for non-visible planes + - media: atomisp: revert "don't pass a pointer to a local variable" + - media: mediatek: vcodec: decoder: Fix 4K frame size enumeration + - media: mediatek: vcodec: decoder: Fix resolution clamping in TRY_FMT + - media: mediatek: vcodec: decoder: Skip alignment for default resolution + - media: mediatek: vcodec: decoder: Drop max_{width,height} from + mtk_vcodec_ctx + - media: mediatek: vcodec: Initialize decoder parameters for each instance + - media: amphion: defer setting last_buffer_dequeued until resolution changes + are processed + - media: hantro: Be more accurate on pixel formats step_width constraints + - media: hantro: Fix RK3399 H.264 format advertising + - media: amphion: sync buffer status with firmware during abort + - media: amphion: only insert the first sequence startcode for vc1l format + - mt76: mt7915: fix endianness in mt7915_rf_regval_get + - mt76: mt76x02u: fix possible memory leak in __mt76x02u_mcu_send_msg + - mt76: mt7915: fix endian bug in mt7915_rf_regval_set() + - mt76: mt7921s: fix firmware download random fail + - mt76: mt7921: not support beacon offload disable command + - wifi: mac80211: reject WEP or pairwise keys with key ID > 3 + - wifi: cfg80211: do some rework towards MLO link APIs + - wifi: mac80211: move some future per-link data to bss_conf + - mt76: mt7615: do not update pm stats in case of error + - mt76: mt7921: do not update pm states in case of error + - mt76: mt7921s: fix possible sdio deadlock in command fail + - mt76: mt7921: fix aggregation subframes setting to HE max + - mt76: mt7921: enlarge maximum VHT MPDU length to 11454 + - mt76: mt7921: rely on mt76_dev in mt7921_mac_write_txwi signature + - mt76: mt7915: rely on mt76_dev in mt7915_mac_write_txwi signature + - mt76: connac: move mac connac2 defs in mt76_connac2_mac.h + - mt76: connac: move connac2_mac_write_txwi in mt76_connac module + - mt76: mt7915: fix incorrect testmode ipg on band 1 caused by wmm_idx + - mt76: mt7615: fix throughput regression on DFS channels + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - mediatek: mt76: eeprom: fix missing of_node_put() in + mt76_find_power_limits_node() + - skmsg: Fix invalid last sg check in sk_msg_recvmsg() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - bpf, x64: Add predicate for bpf2bpf with tailcalls support in JIT + - bpf, x86: fix freeing of not-finalized bpf_prog_pack + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - kunit: executor: Fix a memory leak on failure in kunit_filter_tests + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - bpf: Fix subprog names in stack traces. + - wifi: nl80211: acquire wdev mutex for dump_survey + - media: v4l: async: Also match secondary fwnode endpoints + - media: ov7251: add missing disable functions on error in + ov7251_set_power_on() + - fs: check FMODE_LSEEK to control internal pipe splicing + - media: cedrus: h265: Fix flag name + - media: uapi: HEVC: Change pic_order_cnt definition in v4l2_hevc_dpb_entry + - media: cedrus: h265: Fix logic for not low delay flag + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - drm/amdgpu: use the same HDP flush registers for all nbio 7.4.x + - drm/amdgpu: use the same HDP flush registers for all nbio 2.3.x + - drm/amdgpu: restore original stable pstate on ctx fini + - bpf: fix potential 32-bit overflow when accessing ARRAY map element + - libbpf: make RINGBUF map size adjustments more eagerly + - selftests/bpf: fix a test for snprintf() overflow + - libbpf: fix an snprintf() overflow check + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - libbpf: Fix str_has_sfx()'s return value + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - Bluetooth: When HCI work queue is drained, only queue chained work + - Bluetooth: mgmt: Fix refresh cached connection info + - Bluetooth: hci_sync: Fix resuming scan after suspend resume + - Bluetooth: hci_sync: Fix not updating privacy_mode + - Bluetooth: Add default wakeup callback for HCI UART driver + - i2c: cadence: Support PEC for SMBus block read + - i2c: qcom-geni: Use the correct return value + - btrfs: update stripe_sectors::uptodate in steal_rbio + - ip_tunnels: Add new flow flags field to ip_tunnel_key + - bpf: Set flow flag to allow any source IP in bpf_tunnel_key + - bpf: Fix bpf_xdp_pointer return pointer + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: ath11k: Fix register write failure on QCN9074 + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - media: cedrus: hevc: Add check for invalid timestamp + - hantro: Remove incorrect HEVC SPS validation + - drm/amd/display: fix signedness bug in execute_synaptics_rc_command() + - net/mlx5e: Remove WARN_ON when trying to offload an unsupported TLS + cipher/version + - net/mlx5e: TC, Fix post_act to not match on in_port metadata + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - net/mlx5e: xsk: Account for XSK RQ UMRs when calculating ICOSQ size + - net/mlx5e: Fix calculations related to max MPWQE size + - net/mlx5e: Modify slow path rules to go to slow fdb + - net/mlx5: Adjust log_max_qp to be 18 at most + - net/mlx5: DR, Fix SMFS steering info dump format + - net/mlx5: Fix driver use of uninitialized timeout + - ax25: fix incorrect dev_tracker usage + - crypto: hisilicon/hpre - don't use GFP_KERNEL to alloc mem during softirq + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - crypto: hisilicon/sec - fix auth key size error + - net: allow unbound socket for packets in VRF when tcp_l3mdev_accept set + - netdevsim: fib: Fix reference count leak on route deletion failure + - wifi: rtw88: check the return value of alloc_workqueue() + - iavf: Fix max_rate limiting + - iavf: Fix 'tc qdisc show' listing too many queues + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - net: ice: fix error NETIF_F_HW_VLAN_CTAG_FILTER check in ice_vsi_sync_fltr() + - net: ionic: fix error check for vlan flags in ionic_set_nic_features() + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - net: usb: make USB_RTL8153_ECM non user configurable + - net/mlx5e: xsk: Discard unaligned XSK frames on striding RQ + - wireguard: ratelimiter: use hrtimer in selftest + - wireguard: allowedips: don't corrupt stack when detecting overflow + - HID: amd_sfh: Don't show client init failed as error when discovery fails + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - clk: renesas: rzg2l: Fix reset status function + - of: check previous kernel's ima-kexec-buffer against memory bounds + - scsi: qla2xxx: edif: Reduce Initiator-Initiator thrashing + - scsi: qla2xxx: edif: bsg refactor + - scsi: qla2xxx: edif: Wait for app to ack on sess down + - scsi: qla2xxx: edif: Add bsg interface to read doorbell events + - scsi: qla2xxx: edif: Fix potential stuck session in sa update + - scsi: qla2xxx: edif: Synchronize NPIV deletion with authentication + application + - scsi: qla2xxx: edif: Add retry for ELS passthrough + - scsi: qla2xxx: edif: Fix n2n discovery issue with secure target + - scsi: qla2xxx: edif: Fix n2n login retry for secure device + - KVM: SVM: Unwind "speculative" RIP advancement if INTn injection "fails" + - KVM: SVM: Stuff next_rip on emulated INT3 injection if NRIPS is supported + - KVM: x86/mmu: Drop RWX=0 SPTEs during ept_sync_page() + - phy: samsung: exynosautov9-ufs: correct TSRV register configurations + - PCI: microchip: Fix refcount leak in mc_pcie_init_irq_domains() + - PCI: tegra194: Fix PM error handling in tegra_pcie_config_ep() + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: parsers: ofpart: Fix refcount leak in bcm4908_partitions_fw_offset + - mtd: spear_smi: Don't skip cleanup after mtd_device_unregister() failed + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - mtd: spear_smi: Drop if with an always false condition + - mtd: st_spi_fsm: Warn about failure to unregister mtd device + - mtd: st_spi_fsm: Disable clock only after device was unregistered + - PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains() + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: cdns3: fix random warning message when driver load + - usb: gadget: uvc: Fix comment blocks style + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init() + - usbip: vudc: Don't enable IRQs prematurely + - usb: host: ohci-at91: add support to enter suspend using SMC + - usb: xhci: tegra: Fix error check + - dmaengine: dw: dmamux: Export the module device table + - dmaengine: dw: dmamux: Fix build without CONFIG_OF + - netfilter: xtables: Bring SPDX identifier back + - scsi: qla2xxx: edif: Send LOGO for unexpected IKE message + - scsi: qla2xxx: edif: Reduce disruption due to multiple app start + - scsi: qla2xxx: edif: Fix no login after app start + - scsi: qla2xxx: edif: Tear down session if keys have been removed + - scsi: qla2xxx: edif: Fix session thrash + - scsi: qla2xxx: edif: Fix no logout on delete for N2N + - scsi: qla2xxx: edif: Reduce N2N thrashing at app_start time + - iio: accel: bma400: Fix the scale min and max macro values + - platform/chrome: cros_ec: Always expose last resume result + - iio: sx9324: Fix register field spelling + - iio: accel: bma400: Reordering of header files + - iio: accel: bma400: conversion to device-managed function + - iio: accel: bma400: Add triggered buffer support + - iio: core: Fix IIO_ALIGN and rename as it was not sufficiently large + - iio: accel: adxl313: Fix alignment for DMA safety + - iio: accel: adxl355: Fix alignment for DMA safety + - iio: accel: adxl367: Fix alignment for DMA safety + - iio: accel: bma220: Fix alignment for DMA safety + - iio: accel: sca3000: Fix alignment for DMA safety + - iio: accel: sca3300: Fix alignment for DMA safety + - iio: adc: ad7266: Fix alignment for DMA safety + - iio: adc: ad7280a: Fix alignment for DMA safety + - iio: adc: ad7292: Fix alignment for DMA safety + - iio: adc: ad7298: Fix alignment for DMA safety + - iio: adc: ad7476: Fix alignment for DMA safety + - iio: adc: ad7606: Fix alignment for DMA safety + - iio: adc: ad7766: Fix alignment for DMA safety + - iio: adc: ad7768-1: Fix alignment for DMA safety + - iio: adc: ad7887: Fix alignment for DMA safety + - iio: adc: ad7923: Fix alignment for DMA safety + - iio: adc: ad7949: Fix alignment for DMA safety + - iio: adc: hi8435: Fix alignment for DMA safety + - iio: adc: ltc2496: Fix alignment for DMA safety + - iio: adc: ltc2497: Fix alignment for DMA safety + - iio: adc: max1027: Fix alignment for DMA safety + - iio: adc: max11100: Fix alignment for DMA safety + - iio: adc: max1118: Fix alignment for DMA safety + - iio: adc: max1241: Fix alignment for DMA safety + - iio: adc: mcp320x: Fix alignment for DMA safety + - iio: adc: ti-adc0832: Fix alignment for DMA safety + - iio: adc: ti-adc084s021: Fix alignment for DMA safety + - iio: adc: ti-adc108s102: Fix alignment for DMA safety + - iio: adc: ti-adc12138: Fix alignment for DMA safety + - iio: adc: ti-adc128s052: Fix alignment for DMA safety + - iio: adc: ti-adc161s626: Fix alignment for DMA safety + - iio: adc: ti-ads124s08: Fix alignment for DMA safety + - iio: adc: ti-ads131e08: Fix alignment for DMA safety + - iio: adc: ti-ads7950: Fix alignment for DMA safety + - iio: adc: ti-ads8344: Fix alignment for DMA safety + - iio: adc: ti-ads8688: Fix alignment for DMA safety + - iio: adc: ti-tlc4541: Fix alignment for DMA safety + - iio: addac: ad74413r: Fix alignment for DMA safety + - iio: amplifiers: ad8366: Fix alignment for DMA safety + - iio: common: ssp: Fix alignment for DMA safety + - iio: dac: ad5064: Fix alignment for DMA safety + - iio: dac: ad5360: Fix alignment for DMA safety + - iio: dac: ad5421: Fix alignment for DMA safety + - iio: dac: ad5449: Fix alignment for DMA safety + - iio: dac: ad5504: Fix alignment for DMA safety + - iio: dac: ad5592r: Fix alignment for DMA safety + - iio: dac: ad5686: Fix alignment for DMA safety + - iio: dac: ad5755: Fix alignment for DMA safety + - iio: dac: ad5761: Fix alignment for DMA safety + - iio: dac: ad5764: Fix alignment for DMA safety + - iio: dac: ad5766: Fix alignment for DMA safety + - iio: dac: ad5770r: Fix alignment for DMA safety + - iio: dac: ad5791: Fix alignment for DMA saftey + - iio: dac: ad7293: Fix alignment for DMA safety + - iio: dac: ad7303: Fix alignment for DMA safety + - iio: dac: ad8801: Fix alignment for DMA safety + - iio: dac: ltc2688: Fix alignment for DMA safety + - iio: dac: mcp4922: Fix alignment for DMA safety + - iio: dac: ti-dac082s085: Fix alignment for DMA safety + - iio: dac: ti-dac5571: Fix alignment for DMA safety + - iio: dac: ti-dac7311: Fix alignment for DMA safety + - iio: dac: ti-dac7612: Fix alignment for DMA safety + - iio: frequency: ad9523: Fix alignment for DMA safety + - iio: frequency: adf4350: Fix alignment for DMA safety + - iio: frequency: adf4371: Fix alignment for DMA safety + - iio: frequency: admv1013: Fix alignment for DMA safety + - iio: frequency: admv1014: Fix alignment for DMA safety + - iio: frequency: admv4420: Fix alignment for DMA safety + - iio: frequency: adrf6780: Fix alignment for DMA safety + - iio: gyro: adis16080: Fix alignment for DMA safety + - iio: gyro: adis16130: Fix alignment for DMA safety + - iio: gyro: adxrs450: Fix alignment for DMA safety + - iio: gyro: fxas210002c: Fix alignment for DMA safety + - iio: imu: fxos8700: Fix alignment for DMA safety + - iio: imu: inv_icm42600: Fix alignment for DMA safety + - iio: imu: inv_icm42600: Fix alignment for DMA safety in buffer code. + - iio: imu: mpu6050: Fix alignment for DMA safety + - iio: potentiometer: ad5110: Fix alignment for DMA safety + - iio: potentiometer: ad5272: Fix alignment for DMA safety + - iio: potentiometer: max5481: Fix alignment for DMA safety + - iio: potentiometer: mcp41010: Fix alignment for DMA safety + - iio: potentiometer: mcp4131: Fix alignment for DMA safety + - iio: proximity: as3935: Fix alignment for DMA safety + - iio: resolver: ad2s1200: Fix alignment for DMA safety + - iio: resolver: ad2s90: Fix alignment for DMA safety + - iio: temp: ltc2983: Fix alignment for DMA safety + - iio: temp: max31865: Fix alignment for DMA safety + - iio: temp: maxim_thermocouple: Fix alignment for DMA safety + - clk: mediatek: reset: Fix written reset bit offset + - clk: imx93: use adc_root as the parent clock of adc1 + - clk: imx93: correct nic_media parent + - clk: imx: clk-fracn-gppll: fix mfd value + - clk: imx: clk-fracn-gppll: Return rate in rate table properly in + ->recalc_rate() + - clk: imx: clk-fracn-gppll: correct rdiv + - RDMA/rxe: fix xa_alloc_cycle() error return value check again + - lib/test_hmm: avoid accessing uninitialized pages + - mm/memremap: fix memunmap_pages() race with get_dev_pagemap() + - KVM: Don't set Accessed/Dirty bits for ZERO_PAGE + - KVM: selftests: Convert s390x/diag318_test_handler away from VCPU_ID + - KVM: selftests: Use vm_create_with_vcpus() in max_guest_memory_test + - devcoredump: remove the useless gfp_t parameter in dev_coredumpv and + dev_coredumpm + - mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv + - scsi: iscsi: Allow iscsi_if_stop_conn() to be called from kernel + - scsi: iscsi: Add helper to remove a session from the kernel + - scsi: iscsi: Fix session removal on shutdown + - dmaengine: dw-edma: Fix eDMA Rd/Wr-channels and DMA-direction semantics + - KVM: x86: Fix errant brace in KVM capability handling + - mtd: hyperbus: rpc-if: Fix RPM imbalance in probe error path + - mtd: dataflash: Add SPI ID table + - clk: qcom: camcc-sm8250: Fix halt on boot by reducing driver's init level + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - coresight: configfs: Fix unload of configurations on module exit + - coresight: syscfg: Update load and unload operations + - usb: gadget: f_mass_storage: Make CD-ROM emulation works with Windows OS + - clk: qcom: gcc-msm8939: Add missing SYSTEM_MM_NOC_BFDCD_CLK_SRC + - clk: qcom: gcc-msm8939: Fix bimc_ddr_clk_src rcgr base address + - clk: qcom: gcc-msm8939: Add missing system_mm_noc_bfdcd_clk_src + - clk: qcom: gcc-msm8939: Point MM peripherals to system_mm_noc clock + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - RDMA/rxe: Add a responder state for atomic reply + - RDMA/rxe: Fix deadlock in rxe_do_local_ops() + - clk: qcom: ipq8074: fix NSS core PLL-s + - clk: qcom: ipq8074: SW workaround for UBI32 PLL lock + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - clk: qcom: camcc-sm8250: Fix topology around titan_top power domain + - clk: qcom: clk-rcg2: Fail Duty-Cycle configuration if MND divider is not + enabled. + - clk: qcom: clk-rcg2: Make sure to not write d=0 to the NMD register + - kernfs: fix potential NULL dereference in __kernfs_remove + - mm: rmap: use the correct parameter name for DEFINE_PAGE_VMA_WALK + - mm/migration: return errno when isolate_huge_page failed + - mm/migration: fix potential pte_unmap on an not mapped pte + - mm: introduce clear_highpage_kasan_tagged + - kasan: fix zeroing vmalloc memory with HW_TAGS + - mm/mempolicy: fix get_nodes out of bound access + - phy: ti: tusb1210: Don't check for write errors when powering on + - phy: rockchip-inno-usb2: Sync initial otg state + - PCI: dwc: Stop link on host_init errors and de-initialization + - PCI: dwc: Add unroll iATU space support to dw_pcie_disable_atu() + - PCI: dwc: Disable outbound windows only for controllers using iATU + - PCI: dwc: Set INCREASE_REGION_SIZE flag based on limit address + - PCI: dwc: Deallocate EPC memory on dw_pcie_ep_init() errors + - PCI: dwc: Always enable CDM check if "snps,enable-cdm-check" exists + - soundwire: bus_type: fix remove and shutdown support + - soundwire: revisit driver bind/unbind and callbacks + - KVM: arm64: Don't return from void function + - dmaengine: sf-pdma: Add multithread support for a DMA channel + - PCI: endpoint: Don't stop controller when unbinding endpoint function + - phy: qcom-qmp: fix the QSERDES_V5_COM_CMN_MODE register + - scsi: qla2xxx: Check correct variable in qla24xx_async_gffid() + - scsi: lpfc: Revert RSCN_MEMENTO workaround for misbehaved configuration + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - binder: fix redefinition of seq_file attributes + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - rtla/utils: Use calloc and check the potential memory allocation failure + - habanalabs: fix double unlock on error in map_device_va() + - dt-bindings: mmc: sdhci-msm: Fix issues in yaml bindings + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - mmc: mxcmmc: Silence a clang warning + - mmc: renesas_sdhi: Get the reset handle early in the probe + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - of: device: Fix missing of_node_put() in of_dma_set_restricted_buffer + - mmc: block: Add single read for 4k sector cards + - KVM: s390: pv: leak the topmost page table when destroy fails + - PCI/portdrv: Don't disable AER reporting in get_port_device_capability() + - PCI: qcom: Set up rev 2.1.0 PARF_PHY before enabling clocks + - scsi: smartpqi: Fix DMA direction for RAID requests + - xtensa: iss/network: provide release() callback + - xtensa: iss: fix handling error cases in iss_net_configure() + - usb: gadget: udc: amd5536 depends on HAS_DMA + - usb: aspeed-vhub: Fix refcount leak bug in ast_vhub_init_desc() + - usb: dwc3: core: Deprecate GCTL.CORESOFTRESET + - usb: dwc3: core: Do not perform GCTL_CORE_SOFTRESET during bootup + - usb: dwc3: qcom: fix missing optional irq warnings + - eeprom: idt_89hpesx: uninitialized data in idt_dbgfs_csr_write() + - phy: stm32: fix error return in stm32_usbphyc_phy_init + - phy: rockchip-inno-usb2: Ignore OTG IRQs in host mode + - interconnect: imx: fix max_node_id + - KVM: arm64: Fix hypervisor address symbolization + - um: random: Don't initialise hwrng struct with zero + - mm: percpu: use kmemleak_ignore_phys() instead of kmemleak_free() + - RDMA/irdma: Fix a window for use-after-free + - RDMA/irdma: Fix VLAN connection with wildcard address + - RDMA/irdma: Fix setting of QP context err_rq_idx_valid field + - RDMA/rtrs-srv: Fix modinfo output for stringify + - RDMA/rtrs-clt: Replace list_next_or_null_rr_rcu with an inline function + - RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - RDMA/rxe: Fix BUG: KASAN: null-ptr-deref in rxe_qp_do_cleanup + - iio: cros: Register FIFO callback after sensor is registered + - clk: qcom: Drop mmcx gdsc supply for dispcc and videocc + - clk: qcom: gdsc: Bump parent usage count when GDSC is found enabled + - clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - iio: adc: max1027: unlock on error path in max1027_read_single_value() + - HID: mcp2221: prevent a buffer overflow in mcp_smbus_write() + - HID: amd_sfh: Add NULL check for hid device + - dmaengine: imx-dma: Cast of_device_get_match_data() with (uintptr_t) + - scripts/gdb: fix 'lx-dmesg' on 32 bits arch + - RDMA/rxe: Fix mw bind to allow any consumer key portion + - mmc: core: quirks: Add of_node_put() when breaking out of loop + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - RDMA/rxe: For invalidate compare according to set keys in mr + - RDMA/rxe: Fix rnr retry behavior + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - HID: amd_sfh: Handle condition of "no sensors" + - USB: serial: fix tty-port initialized comments + - usb: xhci_plat_remove: avoid NULL dereference + - usb: cdns3: change place of 'priv_ep' assignment in + cdns3_gadget_ep_dequeue(), cdns3_gadget_ep_enable() + - mtd: spi-nor: fix spi_nor_spimem_setup_op() call in + spi_nor_erase_{sector,chip}() + - staging: fbtft: core: set smem_len before fb_deferred_io_init call + - KVM: nVMX: Set UMIP bit CR4_FIXED1 MSR when emulating UMIP + - tools/power/x86/intel-speed-select: Fix off by one check + - platform/x86: pmc_atom: Match all Lex BayTrail boards with critclk_systems + DMI table + - platform/mellanox: mlxreg-lc: Fix error flow and extend verbosity + - platform/olpc: Fix uninitialized data in debugfs write + - RDMA/srpt: Duplicate port name members + - RDMA/srpt: Introduce a reference count in struct srpt_device + - RDMA/srpt: Fix a use-after-free + - android: binder: stop saving a pointer to the VMA + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - selftests/vm: fix errno handling in mrelease_test + - tools/testing/selftests/vm/hugetlb-madvise.c: silence uninitialized variable + warning + - selftest/vm: uninitialized variable in main() + - rtla: Fix Makefile when called from -C tools/ + - rtla: Fix double free + - [Config] updateconfigs for VIRTIO_ANCHOR + - virtio: replace restricted mem access flag with callback + - [Config] updateconfigs for XEN_VIRTIO_FORCE_GRANT + - xen: don't require virtio with grants for non-PV guests + - selftests: kvm: set rax before vmcall + - of/fdt: declared return type does not match actual return type + - RDMA/mlx5: Add missing check for return value in get namespace flow + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - block/rnbd-srv: Set keep_id to true after mutex_trylock + - null_blk: fix ida error handling in null_add_dev() + - nbd: add missing definition of pr_fmt + - mtip32xx: fix device removal + - nvme: use command_id instead of req->tag in trace_nvme_complete_rq() + - nvme: define compat_ioctl again to unbreak 32-bit userspace. + - nvme: catch -ENODEV from nvme_revalidate_zones again + - block/bio: remove duplicate append pages code + - block: ensure iov_iter advances for added pages + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - usb: cdns3: Don't use priv_dev uninitialized in cdns3_gadget_ep_enable() + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: cros_ec_codec: Fix refcount leak in cros_ec_codec_platform_probe + - ASoC: samsung: Fix error handling in aries_audio_probe + - ASoC: imx-audmux: Silence a clang warning + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: max98390: use linux/gpio/consumer.h to fix build + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: pic32: fix missing clk_disable_unprepare() on error in + pic32_uart_startup() + - serial: 8250: Create serial_lsr_in() + - serial: 8250: Get preserved flags using serial_lsr_in() + - serial: 8250_dw: Use serial_lsr_in() in dw8250_handle_irq() + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: SOF: make ctx_store and ctx_restore as optional + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - ASoC: cs35l45: Add endianness flag in snd_soc_component_driver + - rpmsg: char: Add mutex protection for rpmsg_eptdev_open() + - rpmsg: mtk_rpmsg: Fix circular locking dependency + - remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init + - selftests/livepatch: better synchronize test_klp_callbacks_busy + - profiling: fix shift too large makes kernel panic + - remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init + - KVM: PPC: Book3s: Fix warning about xics_rm_h_xirr_x + - rpmsg: Fix possible refcount leak in rpmsg_register_device_override() + - selftests/powerpc: Skip energy_scale_info test on older firmware + - ASoC: samsung: h1940_uda1380: include proepr GPIO consumer header + - powerpc/perf: Optimize clearing the pending PMI and remove WARN_ON for PMI + check in power_pmu_disable + - ASoC: soc-core.c: fixup snd_soc_of_get_dai_link_cpus() + - ASoC: samsung: change gpiod_speaker_power and rx1950_audio from global to + static variables + - serial: 8250_dw: Take port lock while accessing LSR + - ASoC: codecs: wsa881x: handle timeouts in resume path + - vfio/mlx5: Protect mlx5vf_disable_fds() upon close device + - vfio: Split migration ops from main device ops + - net/ice: fix initializing the bitmap in the switch code + - tty: n_gsm: fix user open not possible at responder until initiator open + - tty: n_gsm: fix tty registration before control channel open + - tty: n_gsm: fix wrong queuing behavior in gsm_dlci_data_output() + - tty: n_gsm: fix missing timer to handle stalled links + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - tty: n_gsm: fix deadlock and link starvation in outgoing data path + - tty: n_gsm: fix resource allocation order in gsm_activate_mux() + - ASoC: qcom: Fix missing of_node_put() in + asoc_qcom_lpass_cpu_platform_probe() + - MIPS: Loongson64: Fix section mismatch warning + - ASoC: imx-card: Fix DSD/PDM mclk frequency + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Remove UUID from s390 debug log + - vfio/ccw: Fix FSM state if mdev probe fails + - vfio/ccw: Do not change FSM state in subchannel event + - ASoC: audio-graph-card2.c: use of_property_read_u32() for rate + - serial: 8250_fsl: Don't report FE, PE and OE twice + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix flow control handling in tx path + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - MIPS: vdso: Utilize __pa() for gic_pfn + - ASoC: SOF: mediatek: fix mt8195 StatvectorSel wrong setting + - swiotlb: fail map correctly with failed io_tlb_default_mem + - lib/bitmap: fix off-by-one in bitmap_to_arr64() + - ASoC: SOF: ipc3-topology: Prevent double freeing of ipc_control_data via + load_bytes + - cpufreq: mediatek: fix error return code in mtk_cpu_dvfs_info_init() + - ASoc: audio-graph-card2: Fix refcount leak bug in __graph_get_type() + - ASoC: mt6359: Fix refcount leak bug + - ASoC: SOF: ipc-msg-injector: fix copy in sof_msg_inject_ipc4_dfs_write() + - serial: 8250_bcm7271: Save/restore RTS in suspend/resume + - iommu/exynos: Handle failed IOMMU device registration properly + - 9p: Drop kref usage + - 9p: Add client parameter to p9_req_put() + - net: 9p: fix refcount leak in p9_read_work() error handling + - MIPS: Fixed __debug_virt_addr_valid() + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - leds: pwm-multicolor: Don't show -EPROBE_DEFER as errors + - kfifo: fix kfifo_to_user() return type + - lib/smp_processor_id: fix imbalanced instrumentation_end() call + - proc: fix a dentry lock race between release_task and lookup + - remoteproc: qcom: pas: Check if coredump is enabled + - remoteproc: sysmon: Wait for SSCTL service to come up + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - ASoC: amd: yc: Decrease level of error message + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - perf tools: Fix dso_id inode generation comparison + - riscv: spinwait: Fix hartid variable type + - s390/crash: fix incorrect number of bytes to copy to user space + - s390/zcore: fix race when reading from hardware system area + - perf test: Fix test case 83 ('perf stat CSV output linter') on s390 + - ASoC: fsl_asrc: force cast the asrc_format type + - ASoC: fsl-asoc-card: force cast the asrc_format type + - ASoC: fsl_easrc: use snd_pcm_format_t type for sample_format + - ASoC: imx-card: use snd_pcm_format_t type for asrc_format + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - ASoC: audio-graph-card2: Add of_node_put() in fail path + - watchdog: f71808e_wdt: Add check for platform_driver_register + - watchdog: sp5100_tco: Fix a memory leak of EFCH MMIO resource + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - ASoC: Intel: sof_rt5682: Perform quirk check first in card late probe + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - ASoC: mchp-spdifrx: disable end of block interrupt on failures + - powerpc/32: Call mmu_mark_initmem_nx() regardless of data block mapping. + - powerpc/32s: Fix boot failure with KASAN + SMP + + JUMP_LABEL_FEATURE_CHECK_DEBUG + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - video: fbdev: offb: Include missing linux/platform_device.h + - pseries/iommu/ddw: Fix kdump to work in absence of ibm,dma-window + - powerpc/iommu: Fix iommu_table_in_use for a small default DMA window case + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - selftests/powerpc: Fix matrix multiply assist test + - serial: 8250_bcm2835aux: Add missing clk_disable_unprepare() + - tty: serial: qcom-geni-serial: Fix get_clk_div_rate() which otherwise could + return a sub-optimal clock rate. + - tty: serial: fsl_lpuart: correct the count of break characters + - s390/smp: enforce lowcore protection on CPU restart + - perf stat: Revert "perf stat: Add default hybrid events" + - f2fs: fix to invalidate META_MAPPING before DIO write + - f2fs: fix to check inline_data during compressed inode conversion + - f2fs: fix to remove F2FS_COMPR_FL and tag F2FS_NOCOMP_FL at the same time + - cifs: Fix memory leak when using fscache + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - x86/bus_lock: Don't assume the init value of DEBUGCTLMSR.BUS_LOCK_DETECT to + be zero + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - tty: serial: qcom-geni-serial: Fix %lu -> %u in print statements + - powerpc/64e: Fix kexec build error + - sched, cpuset: Fix dl_cpu_busy() panic due to empty cs->cpus_allowed + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - sched: Fix the check of nr_running at queue wakelist + - sched: Remove the limitation of WF_ON_CPU on wakelist if wakee cpu is idle + - sched/core: Do not requeue task on CPU excluded from cpus_mask + - f2fs: do not allow to decompress files have FI_COMPRESS_RELEASED + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: ufs: core: Correct ufshcd_shutdown() flow + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix imbalance vha->vref_count + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts + - scsi: qla2xxx: Fix excessive I/O error messages by default + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - scsi: qla2xxx: Wind down adapter after PCIe error + - scsi: qla2xxx: Fix losing FCP-2 targets on long port disable with I/Os + - scsi: qla2xxx: Fix losing target when it reappears during delete + - scsi: qla2xxx: Fix losing FCP-2 targets during port perturbation tests + - cifs: fix lock length calculation + - x86/bugs: Enable STIBP for IBPB mitigated RETBleed + - ftrace/x86: Add back ftrace_expected assignment + - x86/kprobes: Update kcb status flag after singlestepping + - x86/olpc: fix 'logical not is only applied to the left hand side' + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - posix-cpu-timers: Cleanup CPU timers before freeing them during exec + - Input: gscps2 - check return value of ioremap() in gscps2_probe() + - __follow_mount_rcu(): verify that mount_lock remains unchanged + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - csky: abiv1: Fixup compile error + - drivers/base: fix userspace break from using bin_attributes for cpumap and + cpulist + - drm/mediatek: Keep dsi as LP00 before dcs cmds transfer + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - crypto: blake2s - remove shash module + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - intel_th: pci: Add Meteor Lake-P support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Raptor Lake-S CPU support + - KVM: set_msr_mce: Permit guests to ignore single-bit ECC errors + - KVM: x86: Signal #GP, not -EPERM, on bad WRMSR(MCi_CTL/STATUS) + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - PCI/AER: Iterate over error counters instead of error strings + - PCI: qcom: Power on PHY before IPQ8074 DBI register accesses + - dm writecache: set a default MAX_WRITEBACK_JOBS + - kexec_file: drop weak attribute from functions + - kexec: clean up arch_kexec_kernel_verify_sig + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - tracing/events: Add __vstring() and __assign_vstr() helper macros + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - net/9p: Initialize the iounit field during fid creation + - ARM: Marvell: Update PCIe fixup + - timekeeping: contribute wall clock to rng on time change + - locking/csd_lock: Change csdlock_debug from early_param to __setup + - block: don't allow the same type rq_qos add more than once + - btrfs: tree-log: make the return value for log syncing consistent + - btrfs: ensure pages are unlocked on cow_file_range() failure + - btrfs: fix error handling of fallback uncompress write + - btrfs: reset block group chunk force if we have to wait + - btrfs: properly flag filesystem with BTRFS_FEATURE_INCOMPAT_BIG_METADATA + - block: add bdev_max_segments() helper + - btrfs: zoned: revive max_zone_append_bytes + - btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_size + - btrfs: convert count_max_extents() to use fs_info->max_extent_size + - btrfs: let can_allocate_chunk return error + - btrfs: zoned: finish least available block group on data bg allocation + - btrfs: zoned: disable metadata overcommit for zoned + - btrfs: store chunk size in space-info struct + - btrfs: zoned: introduce space_info->active_total_bytes + - btrfs: zoned: activate metadata block group on flush_space + - btrfs: zoned: activate necessary block group + - btrfs: zoned: write out partially allocated region + - btrfs: zoned: wait until zone is finished when allocation didn't progress + - btrfs: join running log transaction when logging new name + - intel_idle: make SPR C1 and C1E be independent + - ACPI: CPPC: Do not prevent CPPC from working in the future + - powerpc/powernv/kvm: Use darn for H_RANDOM on Power9 + - s390/unwind: fix fgraph return address recovery + - KVM: x86/pmu: Introduce the ctrl_mask value for fixed counter + - KVM: VMX: Mark all PERF_GLOBAL_(OVF)_CTRL bits reserved if there's no vPMU + - KVM: x86/pmu: Ignore pmu->global_ctrl check if vPMU doesn't support + global_ctrl + - KVM: x86/pmu: Accept 0 for absent PMU MSRs when host-initiated if + !enable_pmu + - Revert "KVM: x86/pmu: Accept 0 for absent PMU MSRs when host-initiated if + !enable_pmu" + - KVM: VMX: Add helper to check if the guest PMU has PERF_GLOBAL_CTRL + - KVM: nVMX: Attempt to load PERF_GLOBAL_CTRL on nVMX xfer iff it exists + - dm raid: fix address sanitizer warning in raid_status + - dm raid: fix address sanitizer warning in raid_resume + - dm: fix dm-raid crash if md_handle_request() splits bio + - mm/damon/reclaim: fix potential memory leak in damon_reclaim_init() + - hugetlb_cgroup: fix wrong hugetlb cgroup numa stat + - batman-adv: tracing: Use the new __vstring() helper + - tracing: Use a struct alignof to determine trace event field alignment + - ext4: fix reading leftover inlined symlinks + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - ext4: fix warning in ext4_iomap_begin as race between bmap and write + - Documentation: ext4: fix cell spacing of table heading on blockmap table + - ext4: check if directory block is within i_size + - ext4: make sure ext4_append() always allocates new block + - ext4: remove EA inode entry from mbcache on inode eviction + - ext4: unindent codeblock in ext4_xattr_block_set() + - ext4: fix race when reusing xattr blocks + - KEYS: asymmetric: enforce SM2 signature use pkey algo + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - tpm: Add check for Failure mode for TPM2 modules + - xen-blkback: fix persistent grants negotiation + - xen-blkback: Apply 'feature_persistent' parameter when connect + - xen-blkfront: Apply 'feature_persistent' parameter when connect + - powerpc: Fix eh field when calling lwarx on PPC32 + - powerpc64/ftrace: Fix ftrace for clang builds + - net_sched: cls_route: remove from list when handle is 0 + - Revert "drm/bridge: anx7625: Use DPI bus type" + - tcp: fix over estimation in sk_forced_mem_schedule() + - crypto: lib/blake2s - reduce stack frame usage in self test + - raw: remove unused variables from raw6_icmp_error() + - raw: fix a typo in raw_icmp_error() + - Revert "mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv" + - Revert "devcoredump: remove the useless gfp_t parameter in dev_coredumpv and + dev_coredumpm" + - mptcp: refine memory scheduling + - wifi: cfg80211: handle IBSS in channel switch + - wifi: nl80211: hold wdev mutex for tid config + - wifi: nl80211: relax wdev mutex check in wdev_chandef() + - wifi: nl80211: acquire wdev mutex earlier in start_ap + - wifi: cfg80211: remove chandef check in cfg80211_cac_event() + - tracing: Use a copy of the va_list for __assign_vstr() + - net: dsa: felix: fix min gate len calculation for tc when its first gate is + closed + - Revert "s390/smp: enforce lowcore protection on CPU restart" + - powerpc/kexec: Fix build failure from uninitialised variable + - io_uring: mem-account pbuf buckets + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - ASoC: Intel: avs: Use lookup table to create modules + - geneve: Use ip_tunnel_key flow flags in route lookups + - vxlan: Use ip_tunnel_key flow flags in route lookups + - Linux 5.19.2 + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) // Kinetic update: v5.19.2 upstream stable release + (LP: #1986865) + - x86/entry: Build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + * Kinetic update: v5.19.1 upstream stable release (LP: #1986848) + - block: fix default IO priority handling again + - tools/vm/slabinfo: Handle files in debugfs + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - crypto: arm64/poly1305 - fix a read out-of-bound + - ata: sata_mv: Fixes expected number of resources now IRQs are gone + - arm64: set UXN on swapper page tables + - Bluetooth: hci_qca: Return wakeup for qca_wakeup + - Bluetooth: hci_bcm: Add BCM4349B1 variant + - Bluetooth: hci_bcm: Add DT compatible for CYW55572 + - dt-bindings: bluetooth: broadcom: Add BCM4349B1 DT binding + - Bluetooth: btusb: Add support of IMC Networks PID 0x3568 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04CA:0x4007 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04C5:0x1675 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0CB8:0xC558 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3587 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3586 + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.19.1 + + * refactoring of overlayfs fix to properly support shiftfs (LP: #1983640) + - SAUCE: for aufs mmap: print the virtual file path + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + + * Miscellaneous Ubuntu changes + - [Packaging]: always use fully qualified -gcc-VER toolchain + - [Config] update toolchain versions + - [Packaging] use unversioned default gcc + - [Packaging] Remove circular dependency between image & modules + - [Packaging] kernelconfig: drop stray 'set -x' + - SAUCE: Revert "perf tools: Use Python devtools for version autodetection + rather than runtime" + - [Config] update configs after applying stable updates + + -- Andrea Righi Mon, 05 Sep 2022 11:44:01 +0200 + +linux (5.19.0-15.15) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-15.15 -proposed tracker (LP: #1983335) + + * Miscellaneous Ubuntu changes + - [Config] update annotations to support both gcc-11 and gcc-12 + + -- Andrea Righi Tue, 02 Aug 2022 09:23:01 +0200 + +linux (5.19.0-14.14) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-14.14 -proposed tracker (LP: #1983273) + + * Miscellaneous Ubuntu changes + - [Packaging] module-signature-check: Check debian./signature-inclusion + - [Packaging] Introduce debian/scripts/sign-module + - SAUCE: Switch to using debian/scripts/sign-module + - [Config] update configs/annotations after rebase to 5.19 + - [Config] update configs after moving to gcc-12 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging]: always use fully qualified -gcc-VER + toolchain" + + [ Upstream Kernel Changes ] + + * Rebase to v5.19 + + -- Andrea Righi Mon, 01 Aug 2022 17:19:01 +0200 + +linux (5.19.0-13.13) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-13.13 -proposed tracker (LP: #1983033) + + * network-manager/1.36.4-2ubuntu1 ADT test failure with linux/5.15.0-28.29 + (LP: #1971418) + - Revert "rfkill: make new event layout opt-in" + + * Miscellaneous Ubuntu changes + - [Config] Tighten up LP bug links in annotations + - [Config] Use mark for CONFIG_DEVTMPFS + - [Config] Use flag for CONFIG_HIPPI + - [Config] Use note<> for CONFIG_XEN_ACPI_PROCESSOR + - [Config] Fix DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING annotation + - [Config] Fix CONFIG_CPU_LITTLE_ENDIAN annotation + - SAUCE: x86/bugs: Do not enable IBPB at firmware entry when IBPB is not + available + + -- Andrea Righi Thu, 28 Jul 2022 17:04:33 +0200 + +linux (5.19.0-12.12) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-12.12 -proposed tracker (LP: #1982741) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging]: always use fully qualified -gcc-VER toolchain + + -- Andrea Righi Tue, 26 Jul 2022 15:07:13 +0200 + +linux (5.19.0-11.11) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-11.11 -proposed tracker (LP: #1982726) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/master) + + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + + * Support AMD P-State cpufreq control mechanism (LP: #1956509) + - [Config] enable X86_AMD_PSTATE as built-in on amd64 + + * PCIE LnkCtl ASPM not enabled under VMD mode for Alder Lake platforms + (LP: #1942160) + - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain + - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD + - SAUCE: vmd: fixup bridge ASPM by driver name instead + + * Miscellaneous Ubuntu changes + - [Packaging] Double the speed of updateconfigs + - Remove ubuntu/hio driver + - [Config] update config after rebase to 5.19-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc8 + + -- Andrea Righi Mon, 25 Jul 2022 08:54:21 +0200 + +linux (5.19.0-10.10) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-10.10 -proposed tracker (LP: #1982013) + + * enable config for fixing 5.17 kernel won't load mok (LP: #1972802) + - [Config] enable configs for fixing kernel won't load mok + + * RISC-V kernel config is out of sync with other archs (LP: #1981437) + - [Config] Disable CONFIG_CXL_MEM_RAW_COMMANDS on riscv64 + - [Config] Disable CONFIG_EROFS_FS_ZIP_LZMA on riscv64 + - [Config] Disable CONFIG_FONT_6x8 on riscv64 + - [Config] Disable CONFIG_NTFS3_64BIT_CLUSTER on riscv64 + - [Config] Disable CONFIG_SCSI_IZIP_EPP16 on riscv64 + - [Config] Disable CONFIG_SCSI_UFS_HWMON on riscv64 + - [Config] Disable CONFIG_SPI_AX88796C_COMPRESSION on riscv64 + - [Config] Disable CONFIG_VIDEO_ZORAN on riscv64 + - [Config] Enable CONFIG_BPF_KPROBE_OVERRIDE on riscv64 + - [Config] Enable CONFIG_CACHEFILES_ERROR_INJECTION on riscv64 + - [Config] Enable CONFIG_DRM_AMD_DC_SI on riscv64 + - [Config] Enable CONFIG_NUMA_BALANCING on riscv64 + - [Config] Enable CONFIG_PROC_VMCORE_DEVICE_DUMP on riscv64 + - [Config] Enable CONFIG_WLAN_VENDOR_MICROCHIP on riscv64 + - [Config] Set CONFIG_MHI_WWAN_CTRL=m on riscv64 + - [Config] Set CONFIG_NFC_S3FWRN82_UART=m on riscv64 + - [Config] Enable CONFIG_EFIVAR_FS on riscv64 + - [Config] Enable CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES on riscv64 + - [Config] Enable CONFIG_STRICT_DEVMEM on riscv64 + - [Config] Enable CONFIG_VMAP_STACK on riscv64 + - [Config] Enable CONFIG_KEXEC_FILE on riscv64 + - [Config] Set CONFIG_MTD_PSTORE=m on riscv64 + - [Config] Set CONFIG_KFENCE_SAMPLE_INTERVAL=0 on riscv64 + - [Config] Enable CONFIG_KEXEC_FILE on s390x + + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - Enable config option CONFIG_PCIE_EDR + - Correct CONFIG_PCIE_EDR annotation on arm64 + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] CONFIG_HISI_PMU=m + + * Skip setting ethernet LED on Dell EMC board (LP: #1971667) + - SAUCE: net: phy: marvell: Skip setting LED on Dell EMC board + + * Miscellaneous Ubuntu changes + - [Packaging] ignore warnings from the output of ld.bfd + - [Packaging] Fix bashism in dkms-build script + - [Packaging] Always catch errors in dkms-build scripts + - [Packaging] Fix dkms builds with linker @module.mod files + - [Packaging] mark dkms-build-configure--zfs executable + - [Config] update configs and annotations after rebase to 5.19-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc7 + + -- Andrea Righi Mon, 18 Jul 2022 23:45:28 +0200 + +linux (5.19.0-9.9) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-9.9 -proposed tracker (LP: #1980622) + + * Miscellaneous Ubuntu changes + - [Config] update config after rebase to 5.19-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc5 + + -- Andrea Righi Mon, 04 Jul 2022 12:05:04 +0200 + +linux (5.19.0-8.8) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-8.8 -proposed tracker (LP: #1980482) + + * temporarily disable CONFIG_X86_KERNEL_IBT (LP: #1980484) + - [Config] temporarily disable CONFIG_X86_KERNEL_IBT + + -- Andrea Righi Fri, 01 Jul 2022 11:58:56 +0200 + +linux (5.19.0-7.7) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-7.7 -proposed tracker (LP: #1980056) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * RISC-V enables CONFIG_COMPAT in the unstable branch (LP: #1980061) + - [Config] Disable CONFIG_COMPAT on RISC-V + + * No RISC-V configuration in the unstable tree (LP: #1979647) + - [Config] Merge riscv64 config and annotations + + -- Andrea Righi Tue, 28 Jun 2022 12:25:48 +0200 + +linux (5.19.0-6.6) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 28 Jun 2022 07:50:17 +0200 + +linux-unstable (5.19.0-6.6) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-6.6 -proposed tracker (LP: #1979948) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging] Remove 'family=ubuntu' concept + - [Packaging] final-checks: Remove useless sourcing of kernelconfig + - [Config] update config after rebase to 5.19-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc4 + + -- Andrea Righi Mon, 27 Jun 2022 09:16:40 +0200 + +linux-unstable (5.19.0-5.5) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-5.5 -proposed tracker (LP: #1979611) + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable signing for ppc64el and + s390x" + + -- Andrea Righi Thu, 23 Jun 2022 11:13:32 +0200 + +linux-unstable (5.19.0-4.4) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-4.4 -proposed tracker (LP: #1979177) + + * Miscellaneous Ubuntu changes + - [Config] update configs after rebase to 5.19-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc3 + + -- Andrea Righi Mon, 20 Jun 2022 09:02:58 +0200 + +linux-unstable (5.19.0-3.3) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-3.3 -proposed tracker (LP: #1978439) + + * Miscellaneous Ubuntu changes + - [Config] update annotations for 5.19 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc2 + + -- Andrea Righi Mon, 13 Jun 2022 07:16:32 +0200 + +linux-unstable (5.19.0-2.2) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-2.2 -proposed tracker (LP: #1978313) + + -- Andrea Righi Fri, 10 Jun 2022 15:17:20 +0200 + +linux-unstable (5.19.0-1.1) kinetic; urgency=medium + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * linux: Staging modules should be unsigned (LP: #1642368) + - [Packaging] Move and update signature inclusion list + - [Packaging] Strip signatures from untrusted staging modules + - [Packaging] Add module-signature-check + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.19-rc1 + - [Packaging] move to kernel 5.19 + - [Packaging] workaround missing python3-dev dependency + - SAUCE: Revert "perf tools: Use Python devtools for version autodetection + rather than runtime" + - SAUCE: watchdog: gxp: Add missing MODULE_LICENSE + - [Packaging] add python3-dev as build dependency + + -- Andrea Righi Fri, 10 Jun 2022 14:43:46 +0200 + +linux-unstable (5.19.0-0.0) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Thu, 09 Jun 2022 12:13:06 +0200 + +linux (5.18.0-6.6) kinetic; urgency=medium + + * kinetic/linux: 5.18.0-6.6 -proposed tracker (LP: #1976327) + + * Miscellaneous Ubuntu changes + - [Packaging] temporarily disable signing for ppc64el and s390x + - [Config] update toolchain versions + - [Config] enable CONFIG_X86_KERNEL_IBT + + -- Andrea Righi Tue, 31 May 2022 11:05:51 +0200 + +linux (5.18.0-5.5) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 23 May 2022 16:59:47 +0200 + +linux-unstable (5.18.0-5.5) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-5.5 -proposed tracker (LP: #1975458) + + * enable CONFIG_DEVTMPFS_SAFE (LP: #1974442) + - [Config] enable CONFIG_DEVTMPFS_SAFE + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] drop do_ arch specific configs + + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) // re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + + [ Upstream Kernel Changes ] + + * Rebase to v5.18 + + -- Andrea Righi Mon, 23 May 2022 11:21:38 +0200 + +linux-unstable (5.18.0-4.4) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-4.4 -proposed tracker (LP: #1973587) + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + + * Enable speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] CONFIG_SPEAKUP=m for all but s390x + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable v4l2loopback" + - Revert "UBUNTU: [Packaging] temporarily disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc7 + + -- Andrea Righi Mon, 16 May 2022 14:15:35 +0200 + +linux-unstable (5.18.0-3.3) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-3.3 -proposed tracker (LP: #1972162) + + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc6 + + -- Andrea Righi Mon, 09 May 2022 12:15:39 +0200 + +linux-unstable (5.18.0-2.2) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-2.2 -proposed tracker (LP: #1971340) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] update configs after rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc5 + + -- Andrea Righi Tue, 03 May 2022 12:24:49 +0200 + +linux-unstable (5.18.0-1.1) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 03 May 2022 09:38:06 +0200 + +linux-unstable (5.18.0-1.1) jammy; urgency=medium + + * kinetic/linux-unstable: 5.18.0-1.1 -proposed tracker (LP: #1969476) + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.18 + - [Packaging] temporarily disable zfs + - [Packaging] temporarily disable v4l2loopback + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc3 + + -- Andrea Righi Wed, 27 Apr 2022 20:26:42 +0200 + +linux-unstable (5.18.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 19 Apr 2022 16:20:00 +0200 + +linux-unstable (5.17.0-8.8) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-8.8 -proposed tracker (LP: #1969016) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + -- Andrea Righi Thu, 14 Apr 2022 10:30:39 +0200 + +linux-unstable (5.17.0-7.7) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-7.7 -proposed tracker (LP: #1968988) + + * zfcpdump-kernel update to v5.15 (LP: #1965766) + - SAUCE: Audit: Fix incorrect static inline function declration. + + * intel_iommu breaks Intel IPU6 camera: isys port open ready failed -16 + (LP: #1958004) + - SAUCE: iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs + + * Jammy update: v5.17.3 upstream stable release (LP: #1968986) + - lib/logic_iomem: correct fallback config references + - um: fix and optimize xor select template for CONFIG64 and timetravel mode + - rtc: wm8350: Handle error for wm8350_register_irq + - net: dsa: felix: fix possible NULL pointer dereference + - mm: kfence: fix objcgs vector allocation + - KVM: x86/pmu: Use different raw event masks for AMD and Intel + - KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - KVM: x86/pmu: Fix and isolate TSX-specific performance event logic + - KVM: x86/emulator: Emulate RDPID only if it is enabled in guest + - drm: Add orientation quirk for GPD Win Max + - Bluetooth: hci_sync: Fix compilation warning + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt + - drm/amd/display: Add signal type check when verify stream backends same + - drm/amdkfd: enable heavy-weight TLB flush on Arcturus + - drm/edid: remove non_desktop quirk for HPN-3515 and LEN-B800. + - drm/edid: improve non-desktop quirk logging + - Bluetooth: hci_event: Ignore multiple conn complete events + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - drm/amd/display: Fix memory leak + - drm/amd/display: Use PSR version selected during set_psr_caps + - usb: gadget: tegra-xudc: Do not program SPARAM + - usb: gadget: tegra-xudc: Fix control endpoint's definitions + - usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value + - ptp: replace snprintf with sysfs_emit + - Bluetooth: hci_sync: Fix queuing commands when HCI_UNREGISTER is set + - selftests, xsk: Fix bpf_res cleanup test + - net/mlx5e: TC, Hold sample_attr on stack instead of pointer + - drm/amdkfd: Don't take process mutex for svm ioctls + - drm/amdkfd: Ensure mm remain valid in svm deferred_list work + - drm/amdkfd: svm range restore work deadlock when process exit + - drm/amdgpu: Fix an error message in rmmod + - mlxsw: spectrum: Guard against invalid local ports + - RDMA/rtrs-clt: Do stop and failover outside reconnect work. + - powerpc/xive: Export XIVE IPI information for online-only processors. + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - ath11k: fix kernel panic during unload/load ath11k modules + - ath11k: pci: fix crash on suspend if board file is not found + - ath11k: mhi: use mhi_sync_power_up() + - net/smc: Send directly when TCP_CORK is cleared + - drm/bridge: Add missing pm_runtime_put_sync + - bpf: Make dst_port field in struct bpf_sock 16-bit wide + - scsi: mvsas: Replace snprintf() with sysfs_emit() + - scsi: bfa: Replace snprintf() with sysfs_emit() + - drm/v3d: fix missing unlock + - power: supply: axp20x_battery: properly report current when discharging + - mt76: mt7921: fix crash when startup fails. + - mt76: dma: initialize skip_unmap in mt76_dma_rx_fill + - i40e: Add sending commands in atomic context + - cfg80211: don't add non transmitted BSS to 6GHz scanned channels + - libbpf: Fix build issue with llvm-readelf + - ipv6: make mc_forwarding atomic + - ref_tracker: implement use-after-free detection + - net: initialize init_net earlier + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - scsi: smartpqi: Fix rmmod stack trace + - scsi: smartpqi: Fix kdump issue when controller is locked up + - PCI: aardvark: Fix support for MSI interrupts + - kvm: selftests: aarch64: fix assert in gicv3_access_reg + - kvm: selftests: aarch64: pass vgic_irq guest args as a pointer + - kvm: selftests: aarch64: fix the failure check in + kvm_set_gsi_routing_irqchip_check + - kvm: selftests: aarch64: fix some vgic related comments + - kvm: selftests: aarch64: use a tighter assert in vgic_poke_irq() + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - KVM: arm64: Do not change the PMU event filter after a VCPU has run + - libbpf: Fix accessing syscall arguments on powerpc + - libbpf: Fix accessing the first syscall argument on arm64 + - libbpf: Fix accessing the first syscall argument on s390 + - PCI: endpoint: Fix alignment fault error in copy tests + - tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH. + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - scsi: mpi3mr: Fix deadlock while canceling the fw event + - scsi: mpi3mr: Fix reporting of actual data transfer size + - scsi: mpi3mr: Fix memory leaks + - powerpc/set_memory: Avoid spinlock recursion in change_page_attr() + - power: supply: axp288-charger: Set Vhold to 4.4V + - drm/sprd: fix potential NULL dereference + - drm/sprd: check the platform_get_resource() return value + - drm/amd/display: reset lane settings after each PHY repeater LT + - net/mlx5e: Disable TX queues before registering the netdev + - HID: apple: Report Magic Keyboard 2021 battery over USB + - HID: apple: Report Magic Keyboard 2021 with fingerprint reader battery over + USB + - usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() + - iwlwifi: mvm: Correctly set fragmented EBS + - iwlwifi: fix small doc mistake for iwl_fw_ini_addr_val + - iwlwifi: mvm: move only to an enabled channel + - ipv6: annotate some data-races around sk->sk_prot + - drm/msm/dsi: Remove spurious IRQF_ONESHOT flag + - x86/mce: Work around an erratum on fast string copy instructions + - rtw89: fix RCU usage in rtw89_core_txq_push() + - ath11k: Fix frames flush failure caused by deadlock + - ipv4: Invalidate neighbour for broadcast address upon address addition + - rtw88: change rtw_info() to proper message level + - dm ioctl: prevent potential spectre v1 gadget + - dm: requeue IO if mapping table not yet available + - drm/amdkfd: make CRAT table missing message informational only + - vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA + - scsi: pm8001: Fix pm80xx_pci_mem_copy() interface + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: pm8001: Fix tag values handling + - scsi: pm8001: Fix task leak in pm8001_send_abort_all() + - scsi: pm8001: Fix tag leaks on error + - scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() + - mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU + - mctp: make __mctp_dev_get() take a refcount hold + - powerpc/64s/hash: Make hash faults work in NMI context + - mt76: mt7615: Fix assigning negative values to unsigned variable + - power: supply: axp288_charger: Use acpi_quirk_skip_acpi_ac_and_battery() + - power: supply: axp288_fuel_gauge: Use acpi_quirk_skip_acpi_ac_and_battery() + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - scsi: hisi_sas: Free irq vectors in order for v3 HW + - scsi: hisi_sas: Limit users changing debugfs BIST count value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - iavf: stop leaking iavf_status as "errno" values + - macvtap: advertise link netns via netlink + - platform/x86: thinkpad_acpi: Add dual fan probe + - tuntap: add sanity checks about msg_controllen in sendmsg + - Bluetooth: mediatek: fix the conflict between mtk and msft vendor event + - Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} + - Bluetooth: use memset avoid memory leaks + - bnxt_en: Eliminate unintended link toggle during FW reset + - PCI: endpoint: Fix misused goto label + - MIPS: fix fortify panic when copying asm exception handlers + - powerpc/code-patching: Pre-map patch area + - powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E + - powerpc/secvar: fix refcount leak in format_show() + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - platform/x86: x86-android-tablets: Depend on EFI and SPI + - can: isotp: set default value for N_As to 50 micro seconds + - can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before + calling es58x_check_msg_len() + - riscv: Fixed misaligned memory access. Fixed pointer comparison. + - net: account alternate interface name memory + - net: limit altnames to 64k total + - net/mlx5e: Remove overzealous validations in netlink EEPROM query + - platform/x86: hp-wmi: Fix SW_TABLET_MODE detection method + - platform/x86: hp-wmi: Fix 0x05 error code reported by several WMI calls + - net: sfp: add 2500base-X quirk for Lantech SFP module + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - xen/usb: harden xen_hcd against malicious backends + - mt76: fix monitor mode crash with sdio driver + - xtensa: fix DTC warning unit_address_format + - iwlwifi: mei: fix building iwlmei + - MIPS: ingenic: correct unit node address + - Bluetooth: Fix use after free in hci_send_acl + - netfilter: conntrack: revisit gc autotuning + - netlabel: fix out-of-bounds memory accesses + - ceph: fix inode reference leakage in ceph_get_snapdir() + - ceph: fix memory leak in ceph_readdir when note_last_dentry returns error + - lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option + - init/main.c: return 1 from handled __setup() functions + - minix: fix bug when opening a file with O_DIRECT + - clk: si5341: fix reported clk_rate when output divider is 2 + - clk: mediatek: Fix memory leaks on probe + - staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances + - staging: vchiq_core: handle NULL result of find_service_by_handle + - phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use + - phy: amlogic: meson8b-usb2: Use dev_err_probe() + - phy: amlogic: meson8b-usb2: fix shared reset control use + - clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 + - cpufreq: CPPC: Fix performance/frequency conversion + - opp: Expose of-node's name in debugfs + - staging: wfx: apply the necessary SDIO quirks for the Silabs WF200 + - staging: wfx: fix an error handling in wfx_init_common() + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() + - NFSv4: Protect the state recovery thread against direct reclaim + - habanalabs: fix possible memory leak in MMU DR fini + - habanalabs: reject host map with mmu disabled + - habanalabs/gaudi: handle axi errors from NIC engines + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: ti: Preserve node in ti_dt_clocks_register() + - clk: Enforce that disjoints limits are invalid + - SUNRPC/xprt: async tasks mustn't block waiting for memory + - SUNRPC: remove scheduling boost for "SWAPPER" tasks. + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - x86: Annotate call_on_stack() + - x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy + - serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() + - virtio_console: eliminate anonymous module_init & module_exit + - jfs: prevent NULL deref in diFree + - SUNRPC: Fix socket waits for write buffer space + - NFS: nfsiod should not block forever in mempool_alloc() + - NFS: Avoid writeback threads getting stuck in mempool_alloc() + - selftests: net: Add tls config dependency for tls selftests + - parisc: Fix CPU affinity for Lasi, WAX and Dino chips + - parisc: Fix patch code locking and flushing + - mm: fix race between MADV_FREE reclaim and blkdev direct IO read + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix initialization of device object in + vmbus_device_register() + - Drivers: hv: vmbus: Fix potential crash on module unload + - netfilter: bitwise: fix reduce comparisons + - Revert "NFSv4: Handle the special Linux file open access mode" + - NFSv4: fix open failure with O_ACCMODE flag + - scsi: core: scsi_logging: Fix a BUG + - scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling + - scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - vdpa: mlx5: prevent cvq work from hogging CPU + - net: sfc: add missing xdp queue reinitialization + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - vrf: fix packet sniffing for traffic originating from ip tunnels + - skbuff: fix coalescing for page_pool fragment recycling + - Revert "net: dsa: stop updating master MTU from master.c" + - ice: Clear default forwarding VSI during VSI release + - ice: Fix MAC address setting + - mctp: Fix check for dev_hard_header() result + - mctp: Use output netdev to allocate skb headroom + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: imx-ldb: Check for null pointer after calling kmemdup + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe + - regulator: rtq2134: Fix missing active_discharge_on setting + - spi: rpc-if: Fix RPM imbalance in probe error path + - regulator: atc260x: Fix missing active_discharge_on setting + - arch/arm64: Fix topology initialization for core scheduling + - bnxt_en: Synchronize tx when xdp redirects happen on same ring + - bnxt_en: reserve space inside receive page for skb_shared_info + - bnxt_en: Prevent XDP redirect from running when stopping TX queue + - sfc: Do not free an empty page_ring + - RDMA/mlx5: Don't remove cache MRs when a delay is needed + - RDMA/mlx5: Add a missing update of cache->last_add + - IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD + - cifs: fix potential race with cifsd thread + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - sctp: count singleton chunks in assoc user stats + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ice: Set txq_teid to ICE_INVAL_TEID on ring creation + - ice: Do not skip not enabled queues in ice_vc_dis_qs_msg + - ipv6: Fix stats accounting in ip6_pkt_drop + - ice: synchronize_rcu() when terminating rings + - ice: xsk: fix VSI state check in ice_xsk_wakeup() + - ice: clear cmd_type_offset_bsz for TX rings + - net: openvswitch: don't send internal clone attribute to the userspace. + - net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() + - net: openvswitch: fix leak of nested actions + - rxrpc: fix a race in rxrpc_exit_net() + - net: sfc: fix using uninitialized xdp tx_queue + - net: phy: mscc-miim: reject clause 45 register accesses + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - drm/amd/display: Fix for dmub outbox notification enable + - drm/amd/display: Remove redundant dsc power gating from init_hw + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - scsi: sd: sd_read_cpr() requires VPD pages + - scsi: ufs: ufshpb: Fix a NULL check on list iterator + - io_uring: nospec index for tags on files update + - io_uring: don't touch scm_fp_list after queueing skb + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() + - iommu/omap: Fix regression in probe for NULL pointer dereference + - perf unwind: Don't show unwind error messages when augmenting frame pointer + stack + - perf: arm-spe: Fix perf report --mem-mode + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - arm64: Add part number for Arm Cortex-A78AE + - scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() + - scsi: ufs: ufs-pci: Add support for Intel MTL + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: block: Check for errors after write on SPI + - mmc: mmci: stm32: correctly check all elements of sg list + - mmc: renesas_sdhi: special 4tap settings only apply to HS400 + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - mmc: core: Fixup support for writeback-cache for eMMC and SD + - lz4: fix LZ4_decompress_safe_partial read out of bound + - highmem: fix checks in __kmap_local_sched_{in,out} + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - io_uring: don't check req->file in io_fsync_prep() + - io_uring: defer splice/tee file validity check until command issue + - io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF + - io_uring: fix race between timeout flush and removal + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids + - btrfs: fix qgroup reserve overflow the qgroup limit + - btrfs: zoned: traverse devices under chunk_mutex in btrfs_can_activate_zone + - btrfs: remove device item and update super block in the same transaction + - btrfs: avoid defragging extents whose next extents are not targets + - btrfs: prevent subvol with swapfile from being deleted + - spi: core: add dma_map_dev for __spi_unmap_msg() + - cifs: force new session setup and tcon for dfs + - qed: fix ethtool register dump + - arm64: patch_text: Fixup last cpu should be master + - RDMA/hfi1: Fix use-after-free bug for mm struct + - drbd: fix an invalid memory access caused by incorrect use of list iterator + - gpio: Restrict usage of GPIO chip irq members before initialization + - x86/msi: Fix msi message data shadow struct + - x86/mm/tlb: Revert retpoline avoidance approach + - perf/x86/intel: Don't extend the pseudo-encoding to GP counters + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - perf/core: Inherit event_caps + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - fbdev: Fix unregistering of framebuffers without device + - amd/display: set backlight only if required + - drm/panel: ili9341: fix optional regulator handling + - drm/amd/display: Fix by adding FPU protection for dcn30_internal_validate_bw + - drm/amdgpu/display: change pipe policy for DCN 2.1 + - drm/amdgpu/smu10: fix SoC/fclk units in auto mode + - drm/amdgpu/vcn: Fix the register setting for vcn1 + - drm/nouveau/pmu: Add missing callbacks for Tegra devices + - drm/amdkfd: Create file descriptor after client is added to smi_clients list + - drm/amdgpu: don't use BACO for reset in S3 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - Revert "ACPI: processor: idle: Only flush cache on entering C3" + - drm/amdkfd: Fix variable set but not used warning + - net/smc: send directly on setting TCP_NODELAY + - Revert "selftests: net: Add tls config dependency for tls selftests" + - bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide + - selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port + - bpf: Treat bpf_sk_lookup remote_port as a 2-byte field + - perf build: Don't use -ffat-lto-objects in the python feature test when + building with clang-13 + - perf python: Fix probing for some clang command line options + - tools build: Filter out options and warnings not supported by clang + - tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts + - dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" + - KVM: avoid NULL pointer dereference in kvm_dirty_ring_push + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - Revert "powerpc: Set max_mapnr correctly" + - x86/bug: Prevent shadowing in __WARN_FLAGS + - objtool: Fix SLS validation for kcov tail-call replacement + - sched/core: Fix forceidle balancing + - sched: Teach the forced-newidle balancer about CPU affinity limitation. + - x86,static_call: Fix __static_call_return0 for i386 + - x86/extable: Prefer local labels in .set directives + - irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling + - powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S + - irqchip/gic, gic-v3: Prevent GSI to SGI translations + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - static_call: Don't make __static_call_return0 static + - io_uring: move read/write file prep state into actual opcode handler + - io_uring: propagate issue_flags state down to file assignment + - io_uring: defer file assignment + - io_uring: drop the old style inflight file tracking + - Linux 5.17.3 + + * Jammy update: v5.17.2 upstream stable release Edit (LP: #1968984) + - Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - USB: serial: pl2303: add IBM device IDs + - dt-bindings: usb: hcd: correct usb-device path + - USB: serial: pl2303: fix GS type detection + - USB: serial: simple: add Nokia phone driver + - mm: kfence: fix missing objcg housekeeping for SLAB + - locking/lockdep: Avoid potential access of invalid memory in lock_class + - drm/amdgpu: move PX checking into amdgpu_device_ip_early_init + - drm/amdgpu: only check for _PR3 on dGPUs + - iommu/iova: Improve 32-bit free space estimate + - block: flush plug based on hardware and software queue order + - block: ensure plug merging checks the correct queue at least once + - usb: typec: tipd: Forward plug orientation to typec subsystem + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - xhci: fix garbage USBSTS being logged in some cases + - xhci: fix runtime PM imbalance in USB2 resume + - xhci: make xhci_handshake timeout for xhci_reset() adjustable + - xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() + - mei: me: disable driver on the ign firmware + - mei: me: add Alder Lake N device id. + - mei: avoid iterator usage outside of list_for_each_entry + - bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series + - bus: mhi: Fix pm_state conversion to string + - bus: mhi: Fix MHI DMA structure endianness + - docs: sphinx/requirements: Limit jinja2<3.1 + - coresight: Fix TRCCONFIGR.QE sysfs interface + - coresight: syscfg: Fix memleak on registration failure in + cscfg_create_device + - dt-bindings: iio: adc: zynqmp_ams: Add clock entry + - iio: adc: xilinx-ams: Fix single channel switching sequence + - iio: accel: mma8452: use the correct logic to get mma8452_data + - iio: adc: aspeed: Add divider flag to fix incorrect voltage reading. + - iio: imu: st_lsm6dsx: use dev_to_iio_dev() to get iio_dev struct + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: adc: xilinx-ams: Fixed missing PS channels + - iio: adc: xilinx-ams: Fixed wrong sequencer register settings + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: rockchip: re-add rational best approximation algorithm to the + fractional divider + - clk: uniphier: Fix fixed-rate initialization + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + - cifs: truncate the inode and mapping when we simulate fcollapse + - cifs: fix handlecache and multiuser + - cifs: we do not need a spinlock around the tree access during umount + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - KEYS: asymmetric: enforce that sig algo matches key algo + - KEYS: asymmetric: properly validate hash_algo and encoding + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - firmware: stratix10-svc: add missing callback parameter on RSU + - firmware: sysfb: fix platform-device leak in error path + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - SUNRPC: Do not dereference non-socket transports in sysfs + - NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR + - NFSD: prevent underflow in nfssvc_decode_writeargs() + - NFSD: prevent integer overflow on 32 bit systems + - f2fs: fix to unlock page correctly in error path of is_alive() + - f2fs: quota: fix loop condition at f2fs_quota_sync() + - f2fs: fix to do sanity check on .cp_pack_total_block_count + - remoteproc: Fix count check in rproc_coredump_write() + - mm/mlock: fix two bugs in user_shm_lock() + - pinctrl: ingenic: Fix regmap on X series SoCs + - pinctrl: samsung: drop pin banks references on error paths + - net: bnxt_ptp: fix compilation error + - spi: mxic: Fix the transmit path + - mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set + - mtd: rawnand: protect access to rawnand devices while in suspend + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + - can: m_can: m_can_tx_handler(): fix use after free of skb + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + - jffs2: fix use-after-free in jffs2_clear_xattr_subsystem + - jffs2: fix memory leak in jffs2_do_mount_fs + - jffs2: fix memory leak in jffs2_scan_medium + - mm: fs: fix lru_cache_disabled race in bh_lru + - mm: don't skip swap entry even if zap_details specified + - mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node + - mm: invalidate hwpoison page cache page in fault path + - mempolicy: mbind_range() set_policy() after vma_merge() + - scsi: core: sd: Add silence_suspend flag to suppress some PM messages + - scsi: ufs: Fix runtime PM messages never-ending cycle + - scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters + - scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands + - qed: display VF trust config + - qed: validate and restrict untrusted VFs vlan promisc mode + - riscv: dts: canaan: Fix SPI3 bus width + - riscv: Fix fill_callchain return value + - riscv: Increase stack size under KASAN + - RISC-V: Declare per cpu boot data as static + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - cifs: do not skip link targets when an I/O fails + - cifs: fix incorrect use of list iterator after the loop + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda: Avoid unsol event during RPM suspending + - ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - rtc: mc146818-lib: fix locking in mc146818_set_time + - rtc: pl031: fix rtc features null pointer dereference + - io_uring: ensure that fsnotify is always called + - ocfs2: fix crash when mount with quota enabled + - drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD + panels + - mm: madvise: skip unmapped vma holes passed to process_madvise + - mm: madvise: return correct bytes advised with process_madvise + - Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" + - mm,hwpoison: unmap poisoned page before invalidation + - mm: only re-generate demotion targets when a numa node changes its N_CPU + state + - mm/kmemleak: reset tag when compare object pointer + - dm stats: fix too short end duration_ns when using precise_timestamps + - dm: fix use-after-free in dm_cleanup_zoned_dev() + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - dm: fix double accounting of flush with data + - dm integrity: set journal entry unused when shrinking device + - tracing: Have trace event string test handle zero length strings + - drbd: fix potential silent data corruption + - can: isotp: sanitize CAN ID checks in isotp_bind() + - PCI: fu740: Force 2.5GT/s for initial device probe + - arm64: signal: nofpsimd: Do not allocate fp/simd context when not available + - arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory + zones + - arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 + - arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721s2: Fix gic-v3 compatible regs + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - mmc: core: use sysfs_emit() instead of sprintf() + - Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query + flag" + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - coredump: Also dump first pages of non-executable ELF libraries + - ext4: fix ext4_fc_stats trace point + - ext4: fix fs corruption when tring to remove a non-empty directory with IO + error + - ext4: make mb_optimize_scan option work with set/unset mount cmd + - ext4: make mb_optimize_scan performance mount option work with extents + - samples/landlock: Fix path_list memory leak + - landlock: Use square brackets around "landlock-ruleset" + - mailbox: tegra-hsp: Flush whole channel + - btrfs: zoned: put block group after final usage + - block: fix rq-qos breakage from skipping rq_qos_done_bio() + - block: limit request dispatch loop duration + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - fbdev: Hot-unplug firmware fb devices on forced removal + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - rfkill: make new event layout opt-in + - ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes + - ARM: dts: at91: sama5d2: Fix PMERRLOC resource size + - ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5420 + - mgag200 fix memmapsl configuration in GCTL6 register + - carl9170: fix missing bit-wise or operator for tx_params + - pstore: Don't use semaphores in always-atomic-context code + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - exec: Force single empty string when argv is empty + - crypto: rsa-pkcs1pad - only allow with rsa + - crypto: rsa-pkcs1pad - correctly get hash from source scatterlist + - crypto: rsa-pkcs1pad - restore signature length check + - crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() + - bcache: fixup multiple threads crash + - PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() + - DEC: Limit PMAX memory probing to R3k systems + - media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC + - media: omap3isp: Use struct_group() for memcpy() region + - media: venus: vdec: fixed possible memory leak issue + - media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 + - media: venus: venc: Fix h264 8x8 transform control + - media: davinci: vpif: fix unbalanced runtime PM get + - media: davinci: vpif: fix unbalanced runtime PM enable + - media: davinci: vpif: fix use-after-free on driver unbind + - mips: Always permit to build u-boot images + - btrfs: zoned: mark relocation as writing + - btrfs: extend locking to all space_info members accesses + - btrfs: verify the tranisd of the to-be-written dirty extent buffer + - xtensa: define update_mmu_tlb function + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - KVM: s390x: fix SCK locking + - drm/syncobj: flatten dma_fence_chains on transfer + - drm/nouveau/backlight: Fix LVDS backlight detection on some laptops + - drm/nouveau/backlight: Just set all backlight types as RAW + - drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Declare missing firmware files in pcie.c + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915/gem: add missing boundary check in vm_access + - PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails + - PCI: pciehp: Clear cmd_busy bit in polling mode + - PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup" + - PCI: xgene: Revert "PCI: xgene: Fix IB window setup" + - regulator: qcom_smd: fix for_each_child.cocci warnings + - selinux: access superblock_security_struct in LSM blob way + - selinux: check return value of sel_make_avc_files + - crypto: ccp - Ensure psp_ret is always init'd in + __sev_platform_init_locked() + - crypto: qat - fix a signedness bug in get_service_enabled() + - hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER + - crypto: sun8i-ss - really disable hash on A80 + - crypto: kdf - Select hmac in addition to sha256 + - crypto: qat - fix access to PFVF interrupt registers for GEN4 + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: octeontx2 - select CONFIG_NET_DEVLINK + - crypto: mxs-dcp - Fix scatterlist processing + - selinux: Fix selinux_sb_mnt_opts_compat() + - thermal: int340x: Check for NULL after calling kmemdup() + - crypto: octeontx2 - remove CONFIG_DM_CRYPT check + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe + - perf: MARVELL_CN10K_TAD_PMU should depend on ARCH_THUNDER + - selftests/sgx: Fix NULL-pointer-dereference upon early test failure + - selftests/sgx: Do not attempt enclave build without valid enclave + - selftests/sgx: Ensure enclave data available during debug print + - stack: Constrain and fix stack offset randomization with Clang builds + - arm64/mm: avoid fixmap race condition when create pud mapping + - security: add sctp_assoc_established hook + - blk-cgroup: set blkg iostat after percpu stat aggregation + - selftests/x86: Add validity check and allow field splitting + - selftests/sgx: Treat CC as one argument + - crypto: rockchip - ECB does not need IV + - block: update io_ticks when io hang + - audit: log AUDIT_TIME_* records only from rules + - EVM: fix the evm= __setup handler return value + - crypto: ccree - don't attempt 0 len DMA mappings + - crypto: hisilicon/sec - fix the aead software fallback for engine + - spi: pxa2xx-pci: Balance reference count for PCI DMA device + - hwmon: (pmbus) Add mutex to regulator ops + - hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING + - nvme: cleanup __nvme_check_ids + - nvme: fix the check for duplicate unique identifiers + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - spi: spi-zynqmp-gqspi: Handle error for dma_set_mask + - hwrng: atmel - disable trng on failure path + - crypto: sun8i-ss - call finalize with bh disabled + - crypto: sun8i-ce - call finalize with bh disabled + - crypto: amlogic - call finalize with bh disabled + - crypto: gemini - call finalize with bh disabled + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix + - clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts + - clocksource/drivers/timer-microchip-pit64b: Use notrace + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - arm64: prevent instrumentation of bp hardening callbacks + - perf/arm-cmn: Hide XP PUB events for CMN-600 + - perf/arm-cmn: Update watchpoint format + - KEYS: trusted: Fix trusted key backends when building as module + - KEYS: trusted: Avoid calling null function trusted_key_exit + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - crypto: ccree - Fix use after free in cc_cipher_exit() + - crypto: qat - fix initialization of pfvf cap_msg structures + - crypto: qat - fix initialization of pfvf rts_map_msg structures + - hwrng: nomadik - Change clk_disable to clk_disable_unprepare + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - io_uring: don't check unrelated req->open.how in accept request + - io_uring: terminate manual loop iterator loop correctly for non-vecs + - watch_queue: Fix NULL dereference in error cleanup + - watch_queue: Actually free the watch + - f2fs: fix to enable ATGC correctly via gc_idle sysfs interface + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - sched/core: Export pelt_thermal_tp + - sched/sugov: Ignore 'busy' filter when rq is capped by uclamp_max + - sched/uclamp: Fix iowait boost escaping uclamp restriction + - rseq: Remove broken uapi field layout on 32-bit little endian + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - sched/fair: Improve consistency of allowed NUMA balance calculations + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - ext4: fix remount with 'abort' option + - nfsd: more robust allocation failure handling in nfsd_file_cache_init + - sched/cpuacct: Fix charge percpu cpuusage + - sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race + - f2fs: fix to avoid potential deadlock + - btrfs: fix unexpected error path when reflinking an inline extent + - iomap: Fix iomap_invalidatepage tracepoint + - fs: erofs: add sanity check for kobject in erofs_unregister_sysfs + - f2fs: fix compressed file start atomic write may cause data corruption + - cifs: use a different reconnect helper for non-cifsd threads + - selftests, x86: fix how check_cc.sh is being invoked + - drivers/base/memory: add memory block to memory group after registration + succeeded + - kunit: make kunit_test_timeout compatible with comment + - pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios + - media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size + - media: camss: csid-170: fix non-10bit formats + - media: camss: csid-170: don't enable unused irqs + - media: camss: csid-170: set the right HALT_CMD when disabled + - media: camss: vfe-170: fix "VFE halt timeout" error + - media: staging: media: imx: imx7-mipi-csis: Make subdev name unique + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - media: mtk-vcodec: potential dereference of null pointer + - media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation + - media: imx: imx8mq-mipi_csi2: fix system resume + - media: bttv: fix WARNING regression on tunerless devices + - media: atmel: atmel-sama7g5-isc: fix ispck leftover + - ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively + - ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio + - ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting + - ASoC: simple-card-utils: Set sysclk on all components + - memory: tegra20-emc: Correct memory device mask + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: meson: vdec: potential dereference of null pointer + - media: hantro: Fix overfill bottom register field name + - media: ov6650: Fix set format try processing path + - media: v4l: Avoid unaligned access warnings when printing 4cc modifiers + - media: ov5648: Don't pack controls struct + - media: ov2740: identify module after subdev initialisation + - media: aspeed: Correct value for h-total-pixels + - video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to + avoid black screen + - video: fbdev: controlfb: Fix COMPILE_TEST build + - video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() + - video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() + - video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() + - ARM: dts: Fix OpenBMC flash layout label addresses + - ASoC: max98927: add missing header file + - arm64: dts: qcom: sc7280: Fix gmu unit address + - firmware: qcom: scm: Remove reassignment to desc following initializer + - ARM: dts: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem + - soc: qcom: aoss: Fix missing put_device call in qmp_get + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sdm845: fix microphone bias properties and values + - arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema + - arm64: dts: qcom: msm8916-j5: Fix typo + - arm64: dts: broadcom: bcm4908: use proper TWD binding + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8450: Update cpuidle states parameters + - arm64: dts: qcom: msm8994: Provide missing "xo_board" and "sleep_clk" to GCC + - arm64: dts: qcom: ipq6018: fix usb reference period + - firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not + defined + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - cpuidle: qcom-spm: Check if any CPU is managed by SPM + - ARM: dts: sun8i: v3s: Move the csi1 block to follow address order + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - vsprintf: Fix potential unaligned access + - ARM: dts: qcom: sdx55: Fix the address used for PCIe EP local addr space + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: mexon-ge2d: fixup frames size in registers + - media: video/hdmi: handle short reads of hdmi info frame. + - media: ti-vpe: cal: Fix a NULL pointer dereference in + cal_ctx_v4l2_init_formats() + - media: em28xx: initialize refcount before kref_get + - media: uapi: Init VP9 stateless decode params + - media: usb: go7007: s2250-board: fix leak in probe() + - media: cedrus: H265: Fix neighbour info buffer size + - media: cedrus: h264: Fix neighbour info buffer size + - arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for + wkup_gpioX instances + - ASoC: codecs: rx-macro: fix accessing compander for aux + - ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: va-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: wc938x: fix accessing array out of bounds for enum type + - ASoC: codecs: wcd938x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put + - media: v4l2-core: Initialize h264 scaling matrix + - media: hantro: sunxi: Fix VP9 steps + - media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated + - selftests: vm: remove dependecy from internal kernel macros + - selftests/lkdtm: Add UBSAN config + - vsprintf: Fix %pK with kptr_restrict == 0 + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - ASoC: acp: check the return value of devm_kzalloc() in + acp_legacy_dai_links_create() + - soc: mediatek: pm-domains: Add wakeup capacity support in power domain + - mmc: sdhci_am654: Fix the driver data of AM64 SoC + - ASoC: ti: davinci-i2s: Add check for clk_enable() + - ALSA: spi: Add check for clk_enable() + - arm64: dts: ns2: Fix spi-cpol and spi-cpha property + - arm64: dts: broadcom: Fix sata nodename + - printk: fix return value of printk.devkmsg __setup handler + - ASoC: mxs-saif: Handle errors for clk_enable + - ASoC: atmel_ssc_dai: Handle errors for clk_enable + - ASoC: dwc-i2s: Handle errors for clk_enable + - ASoC: soc-compress: prevent the potentially use of null pointer + - media: i2c: Fix pixel array positions in ov8865 + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - media: vidtv: Check for null return of vzalloc + - ASoC: cs35l41: Fix GPIO2 configuration + - ASoC: cs35l41: Fix max number of TX channels + - ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe + - ASoC: wm8350: Handle error for wm8350_register_irq + - ASoC: fsi: Add check for clk_enable + - video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of + - media: saa7134: fix incorrect use to determine if list is empty + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: atmel: Fix error handling in snd_proto_probe + - ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in + rockchip_i2s_probe + - ASoC: SOF: Add missing of_node_put() in imx8m_probe + - ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe + - ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: fsl_spdif: Disable TX clock when stop + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: SOF: Intel: enable DMI L1 for playback streams + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - rtla/osnoise: Fix osnoise hist stop tracing message + - ASoC: rockchip: Fix PM usage reference of rockchip_i2s_tdm_resume + - ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - ASoC: mediatek: mt8195: Fix error handling in + mt8195_mt6359_rt1019_rt5682_dev_probe + - ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data + - ASoC: amd: Fix reference to PCM buffer address + - ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS + - ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx + - drm/bridge: sn65dsi83: Fix an error handling path in sn65dsi83_probe() + - drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops + - drm/meson: Fix error handling when afbcd.ops->init fails + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe + - drm: bridge: adv7511: Fix ADV7535 HPD enablement + - ath11k: add missing of_node_put() to avoid leak + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - drm/v3d/v3d_drv: Check for error num after setting mask + - Bluetooth: hci_sync: unlock on error in hci_inquiry_result_with_rssi_evt() + - ath11k: free peer for station when disconnect from AP for QCA6390/WCN6855 + - drm/panfrost: Check for error num after setting mask + - bpftool: Fix error check when calling hashmap__new() + - libbpf: Fix possible NULL pointer dereference when destroying skeleton + - bpftool: Only set obj->skeleton on complete success + - ath11k: fix error code in ath11k_qmi_assign_target_mem_chunk() + - udmabuf: validate ubuf->pagecount + - bpf: Fix UAF due to race between btf_try_get_module and load_module + - drm/selftests/test-drm_dp_mst_helper: Fix memory leak in + sideband_msg_req_encode_decode + - drm/locking: fix drm_modeset_acquire_ctx kernel-doc + - selftests: bpf: Fix bind on used port + - Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - Bluetooth: mt7921s: fix firmware coredump retrieve + - Bluetooth: mt7921s: fix bus hang with wrong privilege + - Bluetooth: btmtksdio: refactor btmtksdio_runtime_[suspend|resume]() + - Bluetooth: mt7921s: fix btmtksdio_[drv|fw]_pmctrl() + - Bluetooth: btmtksdio: mask out interrupt status + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - selftests, xsk: Fix rx_full stats test + - drm/edid: Don't clear formats if using deep color + - drm/edid: Split deep color modes between RGB and YUV444 + - ionic: fix type complaint in ionic_dev_cmd_clean() + - ionic: start watchdog after all is setup + - ionic: Don't send reset commands if FW isn't running + - ionic: fix up printing of timeout error + - ionic: Correctly print AQ errors if completions aren't received + - net: dsa: Move VLAN filtering syncing out of dsa_switch_bridge_leave + - net: dsa: Avoid cross-chip syncing of VLAN filtering + - Bluetooth: hci_event: Fix HCI_EV_VENDOR max_len + - drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() + - drm/amd/display: Call dc_stream_release for remove link enc assignment + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function + - net: phy: at803x: move page selection fix to config_init + - selftests/bpf/test_xdp_redirect_multi: use temp netns for testing + - ath9k_htc: fix uninit value bugs + - ath11k: set WMI_PEER_40MHZ while peer assoc for 6 GHz + - RDMA/core: Set MR type in ib_reg_user_mr + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - selftests/net: timestamping: Fix bind_phc check + - rtw88: check for validity before using a pointer + - rtw88: fix idle mode flow for hw scan + - rtw88: fix memory overrun and memory leak during hw_scan + - drm/bridge: lt9611: Fix an error handling path in lt9611_probe() + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - i40e: respect metadata on XSK Rx to skb + - ice: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ice: respect metadata on XSK Rx to skb + - igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly + - ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: respect metadata on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch + - KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: connac: fix sta_rec_wtbl tag len + - mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta + mode + - mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv + - mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error + - mt76: mt7921: set EDCA parameters with the MCU CE command + - mt76: mt7921: do not always disable fw runtime-pm + - mt76: mt7921: fix a leftover race in runtime-pm + - mt76: mt7615: fix a leftover race in runtime-pm + - mt76: mt7915: fix ht mcs in mt7915_mac_add_txs_skb() + - mt76: mt7921: fix ht mcs in mt7921_mac_add_txs_skb() + - mt76: mt7921s: fix mt7921s_mcu_[fw|drv]_pmctrl + - mt76: mt7921e: fix possible probe failure after reboot + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - mt76: mt7915: fix possible memory leak in mt7915_mcu_add_sta + - mt76: mt7921s: fix a possible memory leak in mt7921_load_patch + - mt76: mt7915: fix mcs_map in mt7915_mcu_set_sta_he_mcs() + - mt76: mt7915: fix the nss setting in bitrates + - ptp: unregister virtual clocks when unregistering physical clock. + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - bpf: Fix a btf decl_tag bug when tagging a function + - mac80211: limit bandwidth in HE capabilities + - scripts/dtc: Call pkg-config POSIXly correct + - livepatch: Fix build failure on 32 bits processors + - net: asix: add proper error handling of usb read errors + - i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()' + - mtd: mchp23k256: Add SPI ID table + - mtd: mchp48l640: Add SPI ID table + - selftests/bpf: Extract syscall wrapper + - selftests/bpf: Use "__se_" prefix on architectures without syscall wrapper + - igc: avoid kernel warning when changing RX ring parameters + - igb: refactor XDP registration + - drm/amdgpu: Don't offset by 2 in FRU EEPROM + - PCI: aardvark: Fix reading MSI interrupt number + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - RDMA/rxe: Check the last packet by RXE_END_MASK + - libbpf: Fix signedness bug in btf_dump_array_data() + - libbpf: Fix riscv register names + - cxl/core: Fix cxl_probe_component_regs() error message + - tools/testing/cxl: Fix root port to host bridge assignment + - cxl/regs: Fix size of CXL Capability Header Register + - Netvsc: Call hv_unmap_memory() in the netvsc_device_remove() + - net:enetc: allocate CBD ring data memory using DMA coherent methods + - libbpf: Fix compilation warning due to mismatched printf format + - rtw88: fix use after free in rtw_hw_scan_update_probe_req() + - drm/bridge: dw-hdmi: use safe format when first in bridge chain + - power: supply: ab8500: Swap max and overvoltage + - libbpf: Fix libbpf.map inheritance chain for LIBBPF_0.7.0 + - libbpf: Use dynamically allocated buffer when receiving netlink messages + - power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init + - HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports + - iommu/ipmmu-vmsa: Check for error num after setting mask + - drm/bridge: anx7625: Fix overflow issue on reading EDID + - ath11k: fix uninitialized rate_idx in ath11k_dp_tx_update_txcompl() + - i2c: pasemi: Drop I2C classes from platform driver variant + - bpftool: Fix the error when lookup in no-btf maps + - drm/amd/pm: enable pm sysfs write for one VF mode + - drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - bpftool: Fix pretty print dump for maps without BTF loaded + - libbpf: Fix memleak in libbpf_netlink_recv() + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - cxl/core/port: Rename bus.c to port.c + - cxl/port: Hold port reference until decoder release + - dax: make sure inodes are flushed before destroy cache + - selftests: mptcp: add csum mib check for mptcp_connect + - iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta + - iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req + - iwlwifi: mvm: align locking in D3 test debugfs + - iwlwifi: yoyo: remove DBGI_SRAM address reset writing + - iwlwifi: yoyo: Avoid using dram data if allocation failed + - iwlwifi: mvm: fix off by one in iwl_mvm_stat_iterator_all_macs() + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - mtd: rawnand: pl353: Set the nand chip node as the flash node + - drm/msm/dp: do not initialize phy until plugin interrupt received + - drm/msm/dp: populate connector of struct dp_panel + - drm/msm/dp: stop link training after link training 2 failed + - drm/msm/dp: always add fail-safe mode into connector mode list + - drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent + - drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode + - drm/msm/dpu: add DSPP blocks teardown + - drm/msm/dpu: fix dp audio condition + - drm/msm/dpu: remove msm_dp cached in dpu_encoder_virt + - drm/msm/dp: fix panel bridge attachment + - i40e: remove dead stores on XSK hotpath + - ath11k: Invalidate cached reo ring entry before accessing it + - mips: Enable KCSAN + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - vfio/pci: fix memory leak during D3hot to D0 transition + - vfio/pci: wake-up devices around reset functions + - scsi: fnic: Fix a tracing statement + - scsi: pm8001: Fix command initialization in pm80XX_send_read_log() + - scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() + - scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() + - scsi: pm8001: Fix le32 values handling in + pm80xx_set_sas_protocol_timer_config() + - scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() + - scsi: pm8001: Fix NCQ NON DATA command task initialization + - scsi: pm8001: Fix NCQ NON DATA command completion handling + - scsi: pm8001: Fix abort all task initialization + - mt76: do not always copy ethhdr in reverse_frag0_hdr_trans + - mt76: fix endianness errors in reverse_frag0_hdr_trans + - mt76: mt7921s: fix missing fc type/sub-type for 802.11 pkts + - net: dsa: realtek-smi: fix kdoc warnings + - net: dsa: realtek-smi: move to subdirectory + - RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - power: supply: sbs-charger: Don't cancel work that is not initialized + - mt76: mt7915: enlarge wcid size to 544 + - mt76: mt7915: fix the muru tlv issue + - drm/dp: Fix OOB read when handling Post Cursor2 register + - ext2: correct max file size computing + - drm/tegra: Fix reference leak in tegra_dsi_ganged_probe + - power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false + return + - scsi: hisi_sas: Change permission of parameter prot_mask + - drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt + - bpf, arm64: Call build_prologue() first in first JIT pass + - bpf, arm64: Feed byte-offset into bpf line info + - xsk: Fix race at socket teardown + - RDMA/irdma: Fix netdev notifications for vlan's + - RDMA/irdma: Fix Passthrough mode in VM + - RDMA/irdma: Remove incorrect masking of PD + - libbpf: Fix BPF_MAP_TYPE_PERF_EVENT_ARRAY auto-pinning + - gpu: host1x: Fix an error handling path in 'host1x_probe()' + - gpu: host1x: Fix a memory leak in 'host1x_remove()' + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors + - hv_balloon: rate-limit "Unhandled message" warning + - KVM: arm64: Enable Cortex-A510 erratum 2077057 by default + - i2c: xiic: Make bus names unique + - net: phy: micrel: Fix concurrent register access + - Bluetooth: hci_sync: fix undefined return of hci_disconnect_all_sync() + - Bluetooth: Fix skb allocation in mgmt_remote_name() & + mgmt_device_connected() + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - IB/hfi1: Allow larger MTU without AIP + - RDMA/core: Fix ib_qp_usecnt_dec() called when error + - PCI: Reduce warnings on possible RW1C corruption + - net: axienet: fix RX ring refill allocation failure handling + - drm/msm/a6xx: Fix missing ARRAY_SIZE() check + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - MIPS: Sanitise Cavium switch cases in TLB handler synthesizers + - powerpc/sysdev: fix incorrect use to determine if list is empty + - powerpc/64s: Don't use DSISR for SLB faults + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - libbpf: Unmap rings when umem deleted + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - platform/x86: huawei-wmi: check the return value of device_create_file() + - scsi: mpt3sas: Fix incorrect 4GB boundary check + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - xtensa: add missing XCHAL_HAVE_WINDOWED check + - iwlwifi: pcie: fix SW error MSI-X mapping + - vxcan: enable local echo for sent CAN frames + - ath10k: Fix error handling in ath10k_setup_msa_resources + - mips: cdmm: Fix refcount leak in mips_cdmm_phys_base + - MIPS: RB532: fix return value of __setup handler + - MIPS: pgalloc: fix memory leak caused by pgd_free() + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - power: ab8500_chargalg: Use CLOCK_MONOTONIC + - RDMA/irdma: Prevent some integer underflows + - Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - bpf, sockmap: Fix memleak in sk_psock_queue_msg + - bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full + - bpf, sockmap: Fix more uncharged while msg has more_data + - bpf, sockmap: Fix double uncharge the mem of sk_msg + - samples/bpf, xdpsock: Fix race when running for fix duration of time + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - drm/amd/display: Fix double free during GPU reset on DC streams + - RDMA/rxe: Change variable and function argument to proper type + - RDMA/rxe: Fix ref error in rxe_av.c + - powerpc/xive: fix return value of __setup handler + - powerpc/time: Fix KVM host re-arming a timer beyond decrementer range + - drm/i915/display: Fix HPD short pulse handling for eDP + - drm/i915/display: Do not re-enable PSR after it was marked as not reliable + - netfilter: flowtable: Fix QinQ and pppoe support for inet table + - mt76: mt7921: fix mt7921_queues_acq implementation + - can: isotp: return -EADDRNOTAVAIL when reading from unbound socket + - can: isotp: support MSG_TRUNC flag when reading from socket + - bareudp: use ipv6_mod_enabled to check if IPv6 enabled + - PCI: imx6: Invoke the PHY exit function after PHY power off + - PCI: imx6: Assert i.MX8MM CLKREQ# even if no device present + - ibmvnic: fix race between xmit and reset + - af_unix: Fix some data-races around unix_sk(sk)->oob_skb. + - selftests/bpf: Fix error reporting from sock_fields programs + - Bluetooth: hci_uart: add missing NULL check in h5_enqueue + - Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - RDMA/nldev: Prevent underflow in nldev_stat_set_counter_dynamic_doit() + - ipv4: Fix route lookups when handling ICMP redirects and PMTU updates + - mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release + skb + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: meson: Fix wrong speed use from probe + - netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - powerpc/pseries: Fix use after free in remove_phb_dynamic() + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: Fix NULL pointer dereferences in ax25 timers + - drm/i915: Fix renamed struct field + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - bpftool: Fix print error when show bpf map + - PCI: Avoid broken MSI on SB600 USB devices + - net: bcmgenet: Use stronger register read/writes to assure ordering + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - net: dsa: fix panic on shutdown if multi-chip tree failed to probe + - net: wwan: qcom_bam_dmux: fix wrong pointer passed to IS_ERR() + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - ice: fix 'scheduling while atomic' on aux critical err interrupt + - ice: don't allow to run ice_send_event_to_aux() in atomic ctx + - drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via + ethtool + - kernel/resource: fix kfree() of bootmem memory again + - clk: renesas: r9a07g044: Update multiplier and divider values for PLL2/3 + - staging: r8188eu: release_firmware is not called if allocation fails + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - fsi: scom: Fix error handling + - fsi: scom: Remove retries in indirect scoms + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - pps: clients: gpio: Propagate return value from pps_gpio_probe + - fsi: Aspeed: Fix a potential double free + - misc: alcor_pci: Fix an error handling path + - cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse + - soundwire: intel: fix wrong register name in intel_shim_wake + - clk: qcom: ipq8074: fix PCI-E clock oops + - dmaengine: idxd: restore traffic class defaults after wq reset + - iio: mma8452: Fix probe failing when an i2c_device_id is used + - staging: qlge: add unregister_netdev in qlge_probe + - serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - clk: renesas: r8a779f0: Fix RSW2 clock divider + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - pinctrl: renesas: checker: Fix miscalculation of number of states + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - phy: phy-brcm-usb: fixup BCM4908 support + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250_lpss: Balance reference count for PCI DMA device + - NFS: Use of mapping_set_error() results in spurious errors + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - habanalabs: Add check for pci_enable_device + - NFS: Return valid errors from nfs2/3_decode_dirent() + - staging: r8188eu: fix endless loop in recv_func + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: imx: off by one in imx_lpcg_parse_clks_from_dt() + - clk: at91: sama7g5: fix parents of PDMCs' GCLK + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - clk: starfive: jh7100: Don't round divisor up twice + - clk: starfive: jh7100: Handle audio_div clock properly + - dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma + - remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region + - remoteproc: qcom_wcnss: Add missing of_node_put() in + wcnss_alloc_memory_region + - remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region + - nvdimm/region: Fix default alignment for small regions + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: hisilicon: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: Fix clk_hw_get_clk() when dev is NULL + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - mailbox: imx: fix crash in resume on i.mx8ulp + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - staging: mt7621-dts: fix formatting + - staging: mt7621-dts: fix pinctrl properties for ethernet + - staging: mt7621-dts: fix GB-PC2 devicetree + - pinctrl: ocelot: fix confops resource index + - pinctrl: ocelot: fix duplicate debugfs entry + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual + GPIOs + - pinctrl: ocelot: Fix interrupt parsing + - pinctrl: microchip-sgpio: lock RMW access + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - clk: visconti: prevent array overflow in visconti_clk_register_gates() + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - serial: 8250: fix XOFF/XON sending when DMA is used + - virt: acrn: obtain pa from VMA with PFNMAP flag + - virt: acrn: fix a memory leak in acrn_dev_ioctl() + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - perf test arm64: Test unwinding using fame-pointer (fp) mode + - jfs: fix divide error in dbNextAG + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - SUNRPC: improve 'swap' handling: scheduling and PF_MEMALLOC + - SUNRPC: Don't call connect() more than once on a TCP socket + - perf parse-events: Move slots only with topdown + - netfilter: egress: Report interface as outgoing + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - SUNRPC don't resend a task on an offlined transport + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - kdb: Fix the putarea helper function + - perf stat: Fix forked applications enablement of counters + - net: stmmac: dwmac-qcom-ethqos: Enable RGMII functional clock on resume + - clk: qcom: gcc-msm8994: Fix gpll4 width + - vsock/virtio: initialize vdev->priv before using VQs + - vsock/virtio: read the negotiated features before using VQs + - vsock/virtio: enable VQs early on probe + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: enetc: report software timestamping via SO_TIMESTAMPING + - net: hns3: fix bug when PF set the duplicate MAC address for VFs + - net: hns3: fix port base vlan add fail when concurrent with reset + - net: hns3: add vlan list lock to protect vlan list + - net: hns3: refine the process when PF set VF VLAN + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - NFS: Don't loop forever in nfs_do_recoalesce() + - libperf tests: Fix typo in perf_evlist__open() failure error messages + - net: hns3: fix ethtool tx copybreak buf size indicating not aligned issue + - net: hns3: add max order judgement for tx spare buffer + - net: hns3: clean residual vf config after disable sriov + - net: hns3: add netdev reset check for hns3_set_tunable() + - net: hns3: add NULL pointer check for hns3_set/get_ringparam() + - net: hns3: fix phy can not link up when autoneg off and reset + - net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - net: sparx5: switchdev: fix possible NULL pointer dereference + - octeontx2-af: initialize action variable + - selftests: tls: skip cmsg_to_pipe tests with TLS=n + - net/sched: act_ct: fix ref leak when switching zones + - NFSv4/pNFS: Fix another issue with a list iterator pointing to the head + - net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator + - fs: fd tables have to be multiples of BITS_PER_LONG + - lib/test: use after free in register_test_dev_kmod() + - fs: fix fd table size alignment properly + - LSM: general protection fault in legacy_parse_param + - regulator: rpi-panel: Handle I2C errors/timing to the Atmel + - crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos + - crypto: octeontx2 - CN10K CPT to RNM workaround + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - rcu: Kill rnp->ofl_seq and use only rcu_state.ofl_lock for exclusion + - pinctrl: npcm: Fix broken references to chip->parent_device + - rcu: Mark writes to the rcu_segcblist structure's ->flags field + - block: throttle split bio in case of iops limit + - memstick/mspro_block: fix handling of read-only devices + - block/bfq_wf2q: correct weight to ioprio + - crypto: xts - Add softdep on ecb + - crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - powercap/dtpm_cpu: Reset per_cpu variable in the release function + - arm64: module: remove (NOLOAD) from linker script + - selinux: allow FIOCLEX and FIONCLEX with policy capability + - loop: use sysfs_emit() in the sysfs xxx show() + - Fix incorrect type in assignment of ipv6 port for audit + - irqchip/qcom-pdc: Fix broken locking + - irqchip/nvic: Release nvic_base upon failure + - fs/binfmt_elf: Fix AT_PHDR for unusual ELF files + - hwrng: cavium - fix NULL but dereferenced coccicheck error + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - ACPI / x86: Add skip i2c clients quirk for Nextbook Ares 8 + - ACPI / x86: Add skip i2c clients quirk for Lenovo Yoga Tablet 1050F/L + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - parisc: Fix non-access data TLB cache flush faults + - parisc: Fix handling off probe non-access faults + - nvme-tcp: lockdep: annotate in-kernel sockets + - spi: tegra20: Use of_device_get_match_data() + - spi: fsi: Implement a timeout for polling status + - atomics: Fix atomic64_{read_acquire,set_release} fallbacks + - locking/lockdep: Iterate lock_classes directly when reading lockdep files + - ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb + - ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit + - sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE + - ext4: don't BUG if someone dirty pages without asking ext4 first + - f2fs: fix to do sanity check on curseg->alloc_type + - NFSD: Fix nfsd_breaker_owns_lease() return values + - f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs + - btrfs: harden identification of a stale device + - btrfs: make search_csum_tree return 0 if we get -EFBIG + - btrfs: handle csum lookup errors properly on reads + - btrfs: do not double complete bio on errors during compressed reads + - btrfs: do not clean up repair bio if submit fails + - f2fs: use spin_lock to avoid hang + - f2fs: compress: fix to print raw data size in error path of lz4 + decompression + - Adjust cifssb maximum read size + - ntfs: add sanity check on allocation size + - media: staging: media: zoran: move videodev alloc + - media: staging: media: zoran: calculate the right buffer number for + zoran_reap_stat_com + - media: staging: media: zoran: fix various V4L2 compliance errors + - media: atmel: atmel-isc-base: report frame sizes as full supported range + - media: ir_toy: free before error exiting + - ASoC: sh: rz-ssi: Make the data structures available before registering the + handlers + - ASoC: cs42l42: Report full jack status when plug is detected + - ASoC: SOF: Intel: match sdw version on link_slaves_found + - media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers + - ASoC: SOF: Intel: hda: Remove link assignment limitation + - media: iommu/mediatek-v1: Free the existed fwspec if the master dev already + has + - media: iommu/mediatek: Return ENODEV if the device is NULL + - media: iommu/mediatek: Add device_link between the consumer and the larb + devices + - video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow + - video: fbdev: w100fb: Reset global state + - video: fbdev: cirrusfb: check pixclock to avoid divide by zero + - video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit + - ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 + - ARM: dts: bcm2837: Add the missing L1/L2 cache information + - ASoC: madera: Add dependencies on MFD + - media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator + off on some boards + - media: atomisp: fix dummy_ptr check to avoid duplicate active_bo + - ARM: ftrace: avoid redundant loads or clobbering IP + - ALSA: hda: Fix driver index handling at re-binding + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - arm64: defconfig: build imx-sdma as a module + - video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() + - video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of + snprintf() + - video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit + - ARM: dts: bcm2711: Add the missing L1/L2 cache information + - ASoC: soc-core: skip zero num_dai component in searching dai name + - ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021 + - media: imx-jpeg: fix a bug of accessing array out of bounds + - media: cx88-mpeg: clear interrupt status register before streaming video + - ASoC: rt5682s: Fix the wrong jack type detected + - ARM: tegra: transformer: Drop reg-shift for Tegra HS UART + - uaccess: fix type mismatch warnings from access_ok() + - lib/test_lockup: fix kernel pointer check for separate address spaces + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - ASoC: amd: vg: fix for pm resume callback sequence + - ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: i2c: ov5648: Fix lockdep error + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - ASoC: SOF: debug: clarify operator precedence + - ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" + - ASoC: SOF: Intel: hda: retrieve DMIC number for I2S boards + - ALSA: intel-nhlt: add helper to detect SSP link mask + - ALSA: intel-dsp-config: add more ACPI HIDs for ES83x6 devices + - ASoC: Intel: soc-acpi: add more ACPI HIDs for ES83x6 devices + - ALSA: intel-dspconfig: add ES8336 support for CNL + - ASoC: Intel: Revert "ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021" + - ASoC: Intel: sof_es8336: log all quirks + - tracing: Have TRACE_DEFINE_ENUM affect trace event types as well + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - ASoC: mediatek: Fix error handling in mt8183_da7219_max98357_dev_probe + - media: atomisp: fix bad usage at error handling logic + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 + - KVM: x86: Reinitialize context if host userspace toggles EFER.LME + - KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook + - KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() + - KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU + - KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() + - KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB + flush hypercalls + - KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall + - powerpc/kasan: Fix early region not updated correctly + - powerpc/tm: Fix more userspace r13 corruption + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Add set_memory_{p/np}() and remove set_memory_attr() + - powerpc: Fix build errors with newer binutils + - drm/dp: Fix off-by-one in register cache size + - drm/i915: Treat SAGV block time 0 as SAGV disabled + - drm/i915: Fix PSF GV point mask when SAGV is not possible + - drm/i915: Reject unsupported TMDS rates on ICL+ + - scsi: qla2xxx: Refactor asynchronous command initialization + - scsi: qla2xxx: Implement ref count for SRB + - scsi: qla2xxx: Fix stuck session in gpdb + - scsi: qla2xxx: Fix warning message due to adisc being flushed + - scsi: qla2xxx: Fix scheduling while atomic + - scsi: qla2xxx: Fix premature hw access after PCI error + - scsi: qla2xxx: Fix wrong FDMI data for 64G adapter + - scsi: qla2xxx: Fix warning for missing error code + - scsi: qla2xxx: Fix device reconnect in loop topology + - scsi: qla2xxx: edif: Fix clang warning + - scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters + - scsi: qla2xxx: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix laggy FC remote port session recovery + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix crash during module load unload test + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Fix stuck session of PRLI reject + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - platform: chrome: Split trace include file + - MIPS: crypto: Fix CRC32 code + - KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq + - KVM: x86: Avoid theoretical NULL pointer dereference in + kvm_irq_delivery_to_apic_fast() + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - KVM: SVM: fix panic on out-of-bounds guest IRQ + - KVM: avoid double put_page with gfn-to-pfn cache + - ubifs: rename_whiteout: Fix double free for whiteout_ui->data + - ubifs: Fix deadlock in concurrent rename whiteout and inode writeback + - ubifs: Add missing iput if do_tmpfile() failed in rename whiteout + - ubifs: Rename whiteout atomically + - ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - ubifs: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: Fix to add refcount once page is set private + - ubifs: rename_whiteout: correct old_dir size computing + - nvme: allow duplicate NSIDs for private namespaces + - nvme: fix the read-only state for zoned namespaces with unsupposed features + - wireguard: queueing: use CFI-safe ptr_ring cleanup function + - wireguard: socket: free skb in send6 when ipv6 is disabled + - wireguard: socket: ignore v6 endpoints when ipv6 is disabled + - XArray: Fix xas_create_range() when multi-order entry present + - can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path + - can: mcba_usb: properly check endpoint type + - can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value + - XArray: Include bitmap.h from xarray.h + - XArray: Update the LRU list in xas_split() + - modpost: restore the warning message for missing symbol versions + - rtc: gamecube: Fix refcount leak in gamecube_rtc_read_offset_from_sram + - rtc: check if __rtc_read_time was successful + - loop: fix ioctl calls using compat_loop_info + - gfs2: gfs2_setattr_size error path fix + - gfs2: Fix gfs2_file_buffered_write endless loop workaround + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix the concurrency between functions reading debugfs + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - rxrpc: fix some null-ptr-deref bugs in server_key.c + - rxrpc: Fix call timer start racing with call destruction + - mailbox: imx: fix wakeup failure from freeze mode + - crypto: x86/poly1305 - Fixup SLS + - crypto: arm/aes-neonbs-cbc - Select generic cbc and aes + - watch_queue: Free the page array when watch_queue is dismantled + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function + - net: sparx5: uses, depends on BRIDGE or !BRIDGE + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: rockchip: i2s_tdm: Fixup config for SND_SOC_DAIFMT_DSP_A/B + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - block: Fix the maximum minor value is blk_alloc_ext_minor() + - block: restore the old set_task_ioprio() behaviour wrt PF_EXITING + - Revert "virtio-pci: harden INTX interrupts" + - Revert "virtio_pci: harden MSI-X interrupts" + - virtio: use virtio_device_ready() in virtio_device_restore() + - io_uring: remove poll entry from list when canceling all + - io_uring: bump poll refs to full 31-bits + - io_uring: fix memory leak of uid in files registration + - riscv module: remove (NOLOAD) + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - vhost: handle error while adding split ranges to iotlb + - spi: Fix Tegra QSPI example + - platform/chrome: cros_ec_typec: Check for EC device + - platform/x86: asus-wmi: Fix regression when probing for fan curve control + - can: isotp: restore accidentally removed MSG_PEEK feature + - proc: bootconfig: Add null pointer check + - x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation + - x86/sev: Unroll string mmio with CC_ATTR_GUEST_UNROLL_STRING_IO + - drm/connector: Fix typo in documentation + - scsi: qla2xxx: Add qla2x00_async_done() for async routines + - staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet + - docs: fix 'make htmldocs' warning in SCTP.rst + - arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition + - ASoC: soc-compress: Change the check for codec_dai + - KVM: x86: SVM: fix avic spec based definitions again + - ax25: fix UAF bug in ax25_send_control() + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - tracing: Have type enum modifications copy the strings + - mips: Enable KCSAN - take 2 + - net: add skb_set_end_offset() helper + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - ARM: 9187/1: JIVE: fix return value of __setup handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - af_unix: Support POLLPRI for OOB. + - libbpf: Define BTF_KIND_* constants in btf.h to avoid compilation errors + - bpf: Adjust BPF stack helper functions to accommodate skip > 0 + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM + - dt-bindings: mtd: nand-controller: Fix the reg property description + - dt-bindings: mtd: nand-controller: Fix a comment in the examples + - dt-bindings: spi: mxic: The interrupt property is not mandatory + - media: dt-binding: media: hynix,hi846: use $defs/port-base port description + - media: dt-bindings: media: hynix,hi846: add link-frequencies description + - dt-bindings: memory: mtk-smi: Rename clock to clocks + - dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 + - dt-bindings: memory: mtk-smi: Correct minItems to 2 for the gals clocks + - dt-bindings: pinctrl: mt8195: fix bias-pull-{up,down} checks + - dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - net: preserve skb_end_offset() in skb_unclone_keeptruesize() + - ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV + - ASoC: topology: Allow TLV control to be either read or write + - perf vendor events: Update metrics for SkyLake Server + - media: ov6650: Add try support to selection API operations + - media: ov6650: Fix crop rectangle affected by set format + - pinctrl: canonical rsel resistance selection property + - spi: mediatek: support tick_delay without enhance_timing + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - arm64: dts: ls1043a: Update i2c dma properties + - arm64: dts: ls1046a: Update i2c node dma properties + - um: Fix uml_mconsole stop/go + - docs: sysctl/kernel: add missing bit to panic_print + - xsk: Do not write NULL in SW ring at allocation failure + - ice: xsk: Fix indexing in ice_tx_xsk_pool() + - vdpa/mlx5: Avoid processing works if workqueue was destroyed + - openvswitch: Fixed nd target mask field in the flow dump. + - torture: Make torture.sh help message match reality + - n64cart: convert bi_disk to bi_bdev->bd_disk fix build + - Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()" + - mmc: rtsx: Let MMC core handle runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - coredump: Snapshot the vmas in do_coredump + - coredump: Remove the WARN_ON in dump_vma_snapshot + - coredump/elf: Pass coredump_params into fill_note_info + - coredump: Use the vma snapshot in fill_files_note + - Linux 5.17.2 + + * Jammy update: v5.17.1 upstream stable release (LP: #1968982) + - tpm: Fix error handling in async work + - Bluetooth: btusb: Add another Realtek 8761BU + - llc: fix netdevice reference leaks in llc_ui_bind() + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: usb-audio: add mapping for new Corsair Virtuoso SE + - ALSA: hda/realtek: Add quirk for Clevo NP70PNJ + - ALSA: hda/realtek: Add quirk for Clevo NP50PNJ + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - ALSA: pcm: Fix races among concurrent hw_params and hw_free calls + - ALSA: pcm: Fix races among concurrent read/write and buffer changes + - ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls + - ALSA: pcm: Fix races among concurrent prealloc proc writes + - ALSA: pcm: Add stream lock during PCM reset ioctl operations + - ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB + - ALSA: cmipci: Restore aux vol on suspend/resume + - ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec + - drivers: net: xgene: Fix regression in CRC stripping + - netfilter: nf_tables: initialize registers in nft_do_chain() + - netfilter: nf_tables: validate registers coming from userspace. + - ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board + - ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 + - ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU + - crypto: qat - disable registration of algorithms + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - Bluetooth: hci_sync: Add a new quirk to skip HCI_FLT_CLEAR_ALL + - Bluetooth: btusb: Use quirk to skip HCI_FLT_CLEAR_ALL on fake CSR + controllers + - Revert "ath: add support for special 0x0 regulatory domain" + - drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free() + - jbd2: fix use-after-free of transaction_t race + - rcu: Don't deboost before reporting expedited quiescent state + - uaccess: fix integer overflow on access_ok() + - mac80211: fix potential double free on mesh join + - tpm: fix reference counting for struct tpm_chip + - tpm: use try_get_ops() in tpm-space.c + - wcn36xx: Differentiate wcn3660 from wcn3620 + - m68k: fix access_ok for coldfire + - nds32: fix access_ok() checks in get/put_user + - drm/msm/gpu: Fix crash on devices without devfreq support (v2) + - llc: only change llc->dev when bind() succeeds + - Linux 5.17.1 + + * Miscellaneous Ubuntu changes + - SAUCE: shiftfs: always rely on init_user_ns + - [Config] update configs and annotations after stable updates + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + - [Packaging] remove references to lowlatency flavor + + -- Andrea Righi Thu, 14 Apr 2022 08:45:40 +0200 + +linux-unstable (5.17.0-6.6) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-6.6 -proposed tracker (LP: #1965731) + + * dependency on crda obsolete according to Debian (LP: #1958918) + - [Packaging] switch dependency from crda to wireless-regdb + + * Miscellaneous Ubuntu changes + - [Config] disable CONFIG_SYSFB_SIMPLEFB on amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v5.17 + + -- Andrea Righi Mon, 21 Mar 2022 09:46:03 +0100 + +linux-unstable (5.17.0-5.5) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-5.5 -proposed tracker (LP: #1964766) + + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to v5.17-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc8 + + -- Andrea Righi Mon, 14 Mar 2022 13:15:50 +0100 + +linux-unstable (5.17.0-4.4) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-4.4 -proposed tracker (LP: #1963880) + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc7 + + -- Andrea Righi Mon, 07 Mar 2022 10:20:48 +0100 + +linux-unstable (5.17.0-3.3) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-3.3 -proposed tracker (LP: #1962450) + + * 5.15 stuck at boot on c4.large (LP: #1956780) + - Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * [22.04 FEAT] KVM: Enable storage key checking for intercepted instruction + handled by userspace (LP: #1933179) + - s390/uaccess: Add copy_from/to_user_key functions + - KVM: s390: Honor storage keys when accessing guest memory + - KVM: s390: handle_tprot: Honor storage keys + - KVM: s390: Add optional storage key checking to MEMOP IOCTL + - KVM: s390: Add vm IOCTL for key checked guest absolute memory access + - KVM: s390: Rename existing vcpu memop functions + - KVM: s390: Update api documentation for memop ioctl + - KVM: s390: Clarify key argument for MEM_OP in api docs + - KVM: s390: Add missing vm MEM_OP size check + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc6 + + -- Andrea Righi Mon, 28 Feb 2022 09:42:32 +0100 + +linux-unstable (5.17.0-2.2) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-2.2 -proposed tracker (LP: #1962137) + + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.22 upstream stable release (LP: #1960516) + - Revert "ASoC: mediatek: Check for error clk pointer" + - [Config] disable FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION + + * Jammy update: v5.15.20 upstream stable release (LP: #1960509) + - Revert "UBUNTU: SAUCE: Revert "e1000e: Additional PHY power saving in S0ix"" + + * Jammy update: v5.15.19 upstream stable release (LP: #1959879) + - drm/etnaviv: relax submit size limits + + * Jammy update: v5.15.17 upstream stable release (LP: #1959376) + - net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports + - rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC + - ASoC: mediatek: Check for error clk pointer + - regulator: da9121: Prevent current limit change when enabled + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - drm/etnaviv: limit submit sizes + - Bluetooth: hci_sync: Fix not setting adv set duration + - net: axienet: Wait for PhyRstCmplt after core reset + + * rtw88_8821ce causes freeze (LP: #1927808) // Jammy update: v5.15.17 upstream + stable release (LP: #1959376) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + + * Jammy update: v5.15.15 upstream stable release (LP: #1958418) + - Bluetooth: btusb: Add support for Foxconn MT7922A + - Bluetooth: btbcm: disable read tx power for MacBook Air 8,1 and 8,2 + - platform/x86/intel: hid: add quirk to support Surface Go 3 + + * Support USB4 DP alt mode for AMD Yellow Carp graphics card (LP: #1953008) + - SAUCE: drm/amd/display: Fixup previous PSR policy commit + + * alsa/sdw: add sdw audio machine driver for several ADL machines + (LP: #1951563) + - ASoC: Intel: sof_sdw: Add support for SKU 0B11 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B13 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B29 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B12 product + + * Improve performance and idle power consumption (LP: #1941893) + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + + * Fix spurious wakeup caused by Intel 7560 WWAN (LP: #1956443) + - net: wwan: iosm: Keep device at D0 for s2idle case + + * Jammy update: v5.15.13 upstream stable release (LP: #1956926) + - scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() + - net/mlx5: Fix tc max supported prio for nic mode + + * Miscellaneous Ubuntu changes + - [Packaging] Update dependency of pahole / dwarves + - [packaging] unhook lowlatency flavours from the build + - [Packaging] use default zstd compression + - [Packaging] do not use compression for image packages + - [Packaging] use xz compression for ddebs + - SAUCE: Makefile: Remove inclusion of lbm header files + - SAUCE: Makefile: Fix compiler warnings + - [Config] drop unused lowlatency configs + - [Config] update configs and annotations after rebase to v5.17-rc5 + + * Miscellaneous upstream changes + - Revert "rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE" + - MAINTAINERS: Add scripts/pahole-flags.sh to BPF section + - kbuild: Add CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+ + - Revert "UBUNTU: [Packaging] temporarily disable zfs" + + -- Andrea Righi Thu, 24 Feb 2022 09:41:40 +0100 + +linux-unstable (5.17.0-1.1) jammy; urgency=medium + + * Rebase to 5.17-rc1 + + -- Andrea Righi Mon, 21 Feb 2022 08:22:18 +0100 + +linux-unstable (5.17.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Fri, 28 Jan 2022 17:14:13 +0100 + +linux (5.15.0-18.18) jammy; urgency=medium + + * jammy/linux: 5.15.0-18.18 -proposed tracker (LP: #1958638) + + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + + * CVE-2022-0185 + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - KVM: s390: add debug statement for diag 318 CPNC data + + * OOB write on BPF_RINGBUF (LP: #1956585) + - SAUCE: bpf: prevent helper argument PTR_TO_ALLOC_MEM to have offset other + than 0 + + * Miscellaneous Ubuntu changes + - [Config] re-enable shiftfs + - [SAUCE] shiftfs: support kernel 5.15 + - [Config] update toolchain versions + + * Miscellaneous upstream changes + - vfs: fs_context: fix up param length parsing in legacy_parse_param + + -- Andrea Righi Fri, 21 Jan 2022 13:32:27 +0100 + +linux (5.15.0-17.17) jammy; urgency=medium + + * jammy/linux: 5.15.0-17.17 -proposed tracker (LP: #1957809) + + -- Andrea Righi Thu, 13 Jan 2022 17:11:21 +0100 + +linux (5.15.0-16.16) jammy; urgency=medium + + * jammy/linux: 5.15.0-16.16 -proposed tracker (LP: #1956820) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * 5.15 stuck at boot on c4.large (LP: #1956780) + - Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable signed v4l2loopback" + + -- Andrea Righi Sat, 08 Jan 2022 10:57:58 +0100 + +linux (5.15.0-15.15) jammy; urgency=medium + + * jammy/linux: 5.15.0-15.15 -proposed tracker (LP: #1956314) + + * Packaging resync (LP: #1786013) + - update dkms package versions + - debian/dkms-versions -- update from kernel-versions (main/master) + + * rtw88_8821ce causes freeze (LP: #1927808) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + + * alsa/sdw: fix the audio sdw codec parsing logic in the acpi table + (LP: #1955686) + - ALSA: hda: intel-sdw-acpi: go through HDAS ACPI at max depth of 2 + - ALSA: hda: intel-sdw-acpi: harden detection of controller + + * Got black screen when resume from s2idle with AMD dGPU (LP: #1955790) + - SAUCE: drm/amdgpu: put SMU into proper state on runpm suspending for BOCO + capable platform + - SAUCE: drm/amdgpu: always reset the asic in suspend (v2) + + * Fix USB3 detection on HP dock (LP: #1955443) + - usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 + + * support signed v4l2loopback dkms build (LP: #1938531) + - enable v4l2loopback builds on amd64 kernels + - support v4l2loopback dkms build + + * Jammy update: v5.15.12 upstream stable release (LP: #1956305) + - arm64: vdso32: require CROSS_COMPILE_COMPAT for gcc+bfd + - net: usb: lan78xx: add Allied Telesis AT29M2-AF + - ext4: prevent partial update of the extent blocks + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: check for inconsistent extents between index and leaf block + - selftests: KVM: Fix non-x86 compiling + - HID: holtek: fix mouse probing + - HID: potential dereference of null pointer + - NFSD: Fix READDIR buffer overflow + - PM: sleep: Fix error handling in dpm_prepare() + - arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode + - bus: sunxi-rsb: Fix shutdown + - spi: change clk_disable_unprepare to clk_unprepare + - ucounts: Fix rlimit max values check + - drm/mediatek: hdmi: Perform NULL pointer check for mtk_hdmi_conf + - ASoC: meson: aiu: fifo: Add missing dma_coerce_mask_and_coherent() + - RDMA/hns: Fix RNR retransmission issue for HIP08 + - IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() + - RDMA/hns: Replace kfree() with kvfree() + - netfilter: nf_tables: fix use-after-free in nft_set_catchall_destroy() + - netfilter: fix regression in looped (broad|multi)cast's MAC handling + - ARM: dts: imx6qdl-wandboard: Fix Ethernet support + - ice: Use xdp_buf instead of rx_buf for xsk zero-copy + - ice: xsk: return xsk buffers back to pool when cleaning the ring + - net: marvell: prestera: fix incorrect return of port_find + - net: marvell: prestera: fix incorrect structure access + - qlcnic: potential dereference null pointer of rx_queue->page_ring + - tcp: move inet->rx_dst_ifindex to sk->sk_rx_dst_ifindex + - ipv6: move inet6_sk(sk)->rx_dst_cookie to sk->sk_rx_dst_cookie + - inet: fully convert sk->sk_rx_dst to RCU rules + - net: accept UFOv6 packages in virtio_net_hdr_to_skb + - net: skip virtio_net_hdr_set_proto if protocol already set + - igb: fix deadlock caused by taking RTNL in RPM resume path + - ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module + - gpio: virtio: remove timeout + - bonding: fix ad_actor_system option setting to default + - fjes: Check for error irq + - drivers: net: smc911x: Check for error irq + - net: ks8851: Check for error irq + - sfc: Check null pointer of rx_queue->page_ring + - sfc: falcon: Check null pointer of rx_queue->page_ring + - asix: fix uninit-value in asix_mdio_read() + - asix: fix wrong return value in asix_check_host_enable() + - io_uring: zero iocb->ki_pos for stream file types + - veth: ensure skb entering GRO are not cloned. + - net: stmmac: ptp: fix potentially overflowing expression + - net: bridge: Use array_size() helper in copy_to_user() + - net: bridge: fix ioctl old_deviceless bridge argument + - r8152: fix the force speed doesn't work for RTL8156 + - net: stmmac: dwmac-visconti: Fix value of ETHER_CLK_SEL_FREQ_SEL_2P5M + - pinctrl: bcm2835: Change init order for gpio hogs + - hwmon: (lm90) Fix usage of CONFIG2 register in detect function + - hwmon: (lm90) Prevent integer overflow/underflow in hysteresis calculations + - hwmon: (lm90) Introduce flag indicating extended temperature support + - hwmon: (lm90) Add basic support for TI TMP461 + - hwmon: (lm90) Drop critical attribute support for MAX6654 + - ARM: 9160/1: NOMMU: Reload __secondary_data after PROCINFO_INITFUNC + - uapi: Fix undefined __always_inline on non-glibc systems + - compiler.h: Fix annotation macro misplacement with Clang + - platform/x86/intel: Remove X86_PLATFORM_DRIVERS_INTEL + - kernel/crash_core: suppress unknown crashkernel parameter warning + - Revert "x86/boot: Pull up cmdline preparation and early param parsing" + - x86/boot: Move EFI range reservation after cmdline parsing + - ALSA: jack: Check the return value of kstrdup() + - ALSA: drivers: opl3: Fix incorrect use of vp->state + - ALSA: rawmidi - fix the uninitalized user_pversion + - ALSA: hda/hdmi: Disable silent stream on GLK + - ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 + - ALSA: hda/realtek: Add new alc285-hp-amp-init model + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - ALSA: hda/realtek: Fix quirk for Clevo NJ51CU + - ASoC: meson: aiu: Move AIU_I2S_MISC hold setting to aiu-fifo-i2s + - ASoC: tegra: Add DAPM switches for headphones and mic jack + - ASoC: tegra: Restore headphones jack name on Nyan Big + - Input: atmel_mxt_ts - fix double free in mxt_read_info_block + - ipmi: bail out if init_srcu_struct fails + - ipmi: ssif: initialize ssif_info->client early + - ipmi: fix initialization when workqueue allocation fails + - parisc: Correct completer in lws start + - parisc: Fix mask used to select futex spinlock + - tee: handle lookup of shm with reference count 0 + - x86/pkey: Fix undefined behaviour with PKRU_WD_BIT + - platform/x86: amd-pmc: only use callbacks for suspend + - platform/x86: intel_pmc_core: fix memleak on registration failure + - KVM: x86: Always set kvm_run->if_flag + - KVM: x86/mmu: Don't advance iterator after restart due to yielding + - KVM: nVMX: Synthesize TRIPLE_FAULT for L2 if emulation is required + - KVM: VMX: Always clear vmx->fail on emulation_required + - KVM: VMX: Wake vCPU when delivering posted IRQ even if vCPU == this vCPU + - pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines + - gpio: dln2: Fix interrupts when replugging the device + - mmc: sdhci-tegra: Fix switch to HS400ES mode + - mmc: meson-mx-sdhc: Set MANUAL_STOP for multi-block SDIO commands + - mmc: core: Disable card detect during shutdown + - mmc: mmci: stm32: clear DLYB_CR after sending tuning command + - ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling + - ksmbd: fix error code in ndr_read_int32() + - ksmbd: fix uninitialized symbol 'pntsd_size' + - ksmbd: disable SMB2_GLOBAL_CAP_ENCRYPTION for SMB 3.1.1 + - mac80211: fix locking in ieee80211_start_ap error path + - mm: mempolicy: fix THP allocations escaping mempolicy restrictions + - mm, hwpoison: fix condition in free hugetlb page path + - mm/hwpoison: clear MF_COUNT_INCREASED before retrying get_any_page() + - mm/damon/dbgfs: protect targets destructions with kdamond_lock + - tee: optee: Fix incorrect page free bug + - f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() + - netfs: fix parameter of cleanup() + - KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state + - arm64: dts: lx2160a: fix scl-gpios property name + - kfence: fix memory leak when cat kfence objects + - Input: iqs626a - prohibit inlining of channel parsing functions + - Input: elants_i2c - do not check Remark ID on eKTH3900/eKTH5312 + - Input: goodix - add id->model mapping for the "9111" model + - ASoC: tas2770: Fix setting of high sample rates + - ASoC: SOF: Intel: pci-tgl: add new ADL-P variant + - ASoC: SOF: Intel: pci-tgl: add ADL-N support + - ASoC: rt5682: fix the wrong jack type detected + - pinctrl: mediatek: fix global-out-of-bounds issue + - hwmom: (lm90) Fix citical alarm status for MAX6680/MAX6681 + - hwmon: (lm90) Do not report 'busy' status bit as alarm + - r8152: sync ocp base + - ax25: NPD bug when detaching AX25 device + - hamradio: defer ax25 kfree after unregister_netdev + - hamradio: improve the incomplete fix to avoid NPD + - tun: avoid double free in tun_free_netdev + - phonet/pep: refuse to enable an unbound pipe + - Linux 5.15.12 + + * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled + (LP: #1945590) // Jammy update: v5.15.12 upstream stable release + (LP: #1956305) + - Input: elantech - fix stack out of bound access in + elantech_change_report_id() + + * Jammy update: v5.15.11 upstream stable release (LP: #1956302) + - reset: tegra-bpmp: Revert Handle errors in BPMP response + - KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled + - KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE + - KVM: downgrade two BUG_ONs to WARN_ON_ONCE + - x86/kvm: remove unused ack_notifier callbacks + - KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid() + - mac80211: fix rate control for retransmitted frames + - mac80211: fix regression in SSN handling of addba tx + - mac80211: mark TX-during-stop for TX in in_reconfig + - mac80211: send ADDBA requests using the tid/queue of the aggregation session + - mac80211: validate extended element ID is present + - firmware: arm_scpi: Fix string overflow in SCPI genpd driver + - bpf: Fix kernel address leakage in atomic fetch + - bpf, selftests: Add test case for atomic fetch on spilled pointer + - bpf: Fix signed bounds propagation after mov32 + - bpf: Make 32->64 bounds propagation slightly more robust + - bpf, selftests: Add test case trying to taint map value pointer + - bpf: Fix kernel address leakage in atomic cmpxchg's r0 aux reg + - bpf, selftests: Update test case for atomic cmpxchg on r0 with pointer + - vduse: fix memory corruption in vduse_dev_ioctl() + - vduse: check that offset is within bounds in get_config() + - virtio_ring: Fix querying of maximum DMA mapping size for virtio device + - vdpa: check that offsets are within bounds + - s390/entry: fix duplicate tracking of irq nesting level + - recordmcount.pl: look for jgnop instruction as well as bcrl on s390 + - arm64: dts: ten64: remove redundant interrupt declaration for gpio-keys + - ceph: fix up non-directory creation in SGID directories + - dm btree remove: fix use after free in rebalance_children() + - audit: improve robustness of the audit queue handling + - btrfs: convert latest_bdev type to btrfs_device and rename + - btrfs: use latest_dev in btrfs_show_devname + - btrfs: update latest_dev when we create a sprout device + - btrfs: remove stale comment about the btrfs_show_devname + - scsi: ufs: core: Retry START_STOP on UNIT_ATTENTION + - arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas- + edge + - arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply + - arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply + - arm64: dts: rockchip: fix audio-supply for Rock Pi 4 + - arm64: dts: rockchip: fix poweroff on helios64 + - dmaengine: idxd: add halt interrupt support + - dmaengine: idxd: fix calling wq quiesce inside spinlock + - mac80211: track only QoS data frames for admission control + - tee: amdtee: fix an IS_ERR() vs NULL bug + - ceph: fix duplicate increment of opened_inodes metric + - ceph: initialize pathlen variable in reconnect_caps_cb + - ARM: socfpga: dts: fix qspi node compatible + - arm64: dts: imx8mq: remove interconnect property from lcdif + - clk: Don't parent clks until the parent is fully registered + - soc: imx: Register SoC device only on i.MX boards + - iwlwifi: mvm: don't crash on invalid rate w/o STA + - virtio: always enter drivers/virtio/ + - virtio/vsock: fix the transport to work with VMADDR_CID_ANY + - vdpa: Consider device id larger than 31 + - Revert "drm/fb-helper: improve DRM fbdev emulation device names" + - selftests: net: Correct ping6 expected rc from 2 to 1 + - s390/kexec_file: fix error handling when applying relocations + - sch_cake: do not call cake_destroy() from cake_init() + - inet_diag: fix kernel-infoleak for UDP sockets + - netdevsim: don't overwrite read only ethtool parms + - selftests: icmp_redirect: pass xfail=0 to log_test() + - net: hns3: fix use-after-free bug in hclgevf_send_mbx_msg + - net: hns3: fix race condition in debugfs + - selftests: Add duplicate config only for MD5 VRF tests + - selftests: Fix raw socket bind tests with VRF + - selftests: Fix IPv6 address bind tests + - dmaengine: idxd: fix missed completion on abort path + - dmaengine: st_fdma: fix MODULE_ALIAS + - drm: simpledrm: fix wrong unit with pixel clock + - net/sched: sch_ets: don't remove idle classes from the round-robin list + - selftests/net: toeplitz: fix udp option + - net: dsa: mv88e6xxx: Unforce speed & duplex in mac_link_down() + - selftest/net/forwarding: declare NETIFS p9 p10 + - mptcp: never allow the PM to close a listener subflow + - drm/ast: potential dereference of null pointer + - drm/i915/display: Fix an unsigned subtraction which can never be negative. + - mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock + - cfg80211: Acquire wiphy mutex on regulatory work + - mac80211: fix lookup when adding AddBA extension element + - net: stmmac: fix tc flower deletion for VLAN priority Rx steering + - flow_offload: return EOPNOTSUPP for the unsupported mpls action type + - rds: memory leak in __rds_conn_create() + - ice: Use div64_u64 instead of div_u64 in adjfine + - ice: Don't put stale timestamps in the skb + - drm/amd/display: Set exit_optimized_pwr_state for DCN31 + - drm/amd/pm: fix a potential gpu_metrics_table memory leak + - mptcp: remove tcp ulp setsockopt support + - mptcp: clear 'kern' flag from fallback sockets + - mptcp: fix deadlock in __mptcp_push_pending() + - soc/tegra: fuse: Fix bitwise vs. logical OR warning + - igb: Fix removal of unicast MAC filters of VFs + - igbvf: fix double free in `igbvf_probe` + - igc: Fix typo in i225 LTR functions + - ixgbe: Document how to enable NBASE-T support + - ixgbe: set X550 MDIO speed before talking to PHY + - netdevsim: Zero-initialize memory for new map's value in function + nsim_bpf_map_alloc + - net/packet: rx_owner_map depends on pg_vec + - net: stmmac: dwmac-rk: fix oob read in rk_gmac_setup + - sfc_ef100: potential dereference of null pointer + - dsa: mv88e6xxx: fix debug print for SPEED_UNFORCED + - net: Fix double 0x prefix print in SKB dump + - net/smc: Prevent smc_release() from long blocking + - net: systemport: Add global locking for descriptor lifecycle + - sit: do not call ipip6_dev_free() from sit_init_net() + - afs: Fix mmap + - arm64: kexec: Fix missing error code 'ret' warning in load_other_segments() + - bpf: Fix extable fixup offset. + - bpf, selftests: Fix racing issue in btf_skc_cls_ingress test + - powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n + - USB: gadget: bRequestType is a bitfield, not a enum + - Revert "usb: early: convert to readl_poll_timeout_atomic()" + - KVM: x86: Drop guest CPUID check for host initiated writes to + MSR_IA32_PERF_CAPABILITIES + - tty: n_hdlc: make n_hdlc_tty_wakeup() asynchronous + - USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) + - usb: dwc2: fix STM ID/VBUS detection startup delay in dwc2_driver_probe + - PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error + - PCI/MSI: Mask MSI-X vectors only on success + - usb: xhci-mtk: fix list_del warning when enable list debug + - usb: xhci: Extend support for runtime power management for AMD's Yellow + carp. + - usb: cdnsp: Fix incorrect status for control request + - usb: cdnsp: Fix incorrect calling of cdnsp_died function + - usb: cdnsp: Fix issue in cdnsp_log_ep trace event + - usb: cdnsp: Fix lack of spin_lock_irqsave/spin_lock_restore + - usb: typec: tcpm: fix tcpm unregister port but leave a pending timer + - usb: gadget: u_ether: fix race in setting MAC address in setup phase + - USB: serial: cp210x: fix CP2105 GPIO registration + - USB: serial: option: add Telit FN990 compositions + - selinux: fix sleeping function called from invalid context + - btrfs: fix memory leak in __add_inode_ref() + - btrfs: fix double free of anon_dev after failure to create subvolume + - btrfs: check WRITE_ERR when trying to read an extent buffer + - btrfs: fix missing blkdev_put() call in btrfs_scan_one_device() + - zonefs: add MODULE_ALIAS_FS + - iocost: Fix divide-by-zero on donation from low hweight cgroup + - serial: 8250_fintek: Fix garbled text for console + - timekeeping: Really make sure wall_to_monotonic isn't positive + - cifs: sanitize multiple delimiters in prepath + - locking/rtmutex: Fix incorrect condition in rtmutex_spin_on_owner() + - riscv: dts: unleashed: Add gpio card detect to mmc-spi-slot + - riscv: dts: unmatched: Add gpio card detect to mmc-spi-slot + - perf inject: Fix segfault due to close without open + - perf inject: Fix segfault due to perf_data__fd() without open + - libata: if T_LENGTH is zero, dma direction should be DMA_NONE + - powerpc/module_64: Fix livepatching for RO modules + - drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE + - drm/amdgpu: don't override default ECO_BITs setting + - drm/amd/pm: fix reading SMU FW version from amdgpu_firmware_info on YC + - Revert "can: m_can: remove support for custom bit timing" + - can: m_can: make custom bittiming fields const + - can: m_can: pci: use custom bit timings for Elkhart Lake + - ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name + - xsk: Do not sleep in poll() when need_wakeup set + - mptcp: add missing documented NL params + - bpf, x64: Factor out emission of REX byte in more cases + - bpf: Fix extable address check. + - USB: core: Make do_proc_control() and do_proc_bulk() killable + - media: mxl111sf: change mutex_init() location + - fuse: annotate lock in fuse_reverse_inval_entry() + - ovl: fix warning in ovl_create_real() + - scsi: scsi_debug: Don't call kcalloc() if size arg is zero + - scsi: scsi_debug: Fix type in min_t to avoid stack OOB + - scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() + - io-wq: remove spurious bit clear on task_work addition + - io-wq: check for wq exit after adding new worker task_work + - rcu: Mark accesses to rcu_state.n_force_qs + - io-wq: drop wqe lock before creating new worker + - bus: ti-sysc: Fix variable set but not used warning for reinit_modules + - selftests/damon: test debugfs file reads/writes with huge count + - Revert "xsk: Do not sleep in poll() when need_wakeup set" + - xen/blkfront: harden blkfront against event channel storms + - xen/netfront: harden netfront against event channel storms + - xen/console: harden hvc_xen against event channel storms + - xen/netback: fix rx queue stall detection + - xen/netback: don't queue unlimited number of packages + - Linux 5.15.11 + + * Jammy update: v5.15.10 upstream stable release (LP: #1956301) + - nfc: fix segfault in nfc_genl_dump_devices_done + - hwmon: (corsair-psu) fix plain integer used as NULL pointer + - RDMA: Fix use-after-free in rxe_queue_cleanup + - RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow + - mtd: rawnand: Fix nand_erase_op delay + - mtd: rawnand: Fix nand_choose_best_timings() on unsupported interface + - inet: use #ifdef CONFIG_SOCK_RX_QUEUE_MAPPING consistently + - dt-bindings: media: nxp,imx7-mipi-csi2: Drop bad if/then schema + - clk: qcom: sm6125-gcc: Swap ops of ice and apps on sdcc1 + - perf bpf_skel: Do not use typedef to avoid error on old clang + - netfs: Fix lockdep warning from taking sb_writers whilst holding mmap_lock + - RDMA/irdma: Fix a user-after-free in add_pble_prm + - RDMA/irdma: Fix a potential memory allocation issue in + 'irdma_prm_add_pble_mem()' + - RDMA/irdma: Report correct WC errors + - RDMA/irdma: Don't arm the CQ more than two times if no CE for this CQ + - ice: fix FDIR init missing when reset VF + - vmxnet3: fix minimum vectors alloc issue + - i2c: virtio: fix completion handling + - drm/msm: Fix null ptr access msm_ioctl_gem_submit() + - drm/msm/a6xx: Fix uinitialized use of gpu_scid + - drm/msm/dsi: set default num_data_lanes + - drm/msm/dp: Avoid unpowered AUX xfers that caused crashes + - KVM: arm64: Save PSTATE early on exit + - s390/test_unwind: use raw opcode instead of invalid instruction + - Revert "tty: serial: fsl_lpuart: drop earlycon entry for i.MX8QXP" + - net/mlx4_en: Update reported link modes for 1/10G + - loop: Use pr_warn_once() for loop_control_remove() warning + - ALSA: hda: Add Intel DG2 PCI ID and HDMI codec vid + - ALSA: hda/hdmi: fix HDA codec entry table order for ADL-P + - parisc/agp: Annotate parisc agp init functions with __init + - i2c: rk3x: Handle a spurious start completion interrupt flag + - net: netlink: af_netlink: Prevent empty skb by adding a check on len. + - drm/amdgpu: cancel the correct hrtimer on exit + - drm/amdgpu: check atomic flag to differeniate with legacy path + - drm/amd/display: Fix for the no Audio bug with Tiled Displays + - drm/amdkfd: fix double free mem structure + - drm/amd/display: add connector type check for CRC source set + - drm/amdkfd: process_info lock not needed for svm + - tracing: Fix a kmemleak false positive in tracing_map + - staging: most: dim2: use device release method + - fuse: make sure reclaim doesn't write the inode + - perf inject: Fix itrace space allowed for new attributes + - Linux 5.15.10 + + * Jammy update: v5.15.9 upstream stable release (LP: #1955161) + - netfilter: selftest: conntrack_vrf.sh: fix file permission + - Linux 5.15.9 + + * [SRU][I/J/OEM-5.13/OEM-5.14] Fix pci port lost when hotplug dock + (LP: #1954646) + - PCI: Re-enable Downstream Port LTR after reset or hotplug + + * Add support for NVIDIA EC backlight (LP: #1953286) + - platform/x86: Add driver for ACPI WMAA EC-based backlight control + - platform/x86: Remove "WMAA" from identifier names in wmaa-backlight-wmi.c + - platform/x86: Rename wmaa-backlight-wmi to nvidia-wmi-ec-backlight + - [Config] NVIDIA_WMI_EC_BACKLIGHT=m + + * Improve USB Type-C support (LP: #1950974) + - usb: typec: ucsi: Always cancel the command if PPM reports BUSY condition + - usb: typec: ucsi: Don't stop alt mode registration on busy condition + - usb: typec: ucsi: Add polling mechanism for partner tasks like alt mode + checking + - usb: typec: ucsi: acpi: Reduce the command completion timeout + - usb: typec: ucsi: Check the partner alt modes always if there is PD contract + - usb: typec: ucsi: Read the PDOs in separate work + - usb: typec: ucsi: Better fix for missing unplug events issue + + * Fix power button wakeup with shared IRQs on AMD platforms (LP: #1953540) + - pinctrl: amd: Fix wakeups when IRQ is shared with SCI + + * AMD: Suspend not working when some cores are disabled through cpufreq + (LP: #1954930) + - ACPI: processor idle: Allow playing dead in C3 state + + * Jammy update: v5.15.8 upstream stable release (LP: #1954931) + - Revert "UBUNTU: SAUCE: selftests: fib_tests: assign address to dummy1 for + rp_filter tests" + - usb: gadget: uvc: fix multiple opens + - HID: quirks: Add quirk for the Microsoft Surface 3 type-cover + - HID: google: add eel USB id + - HID: intel-ish-hid: ipc: only enable IRQ wakeup when requested + - HID: add hid_is_usb() function to make it simpler for USB detection + - HID: add USB_HID dependancy to hid-prodikeys + - HID: add USB_HID dependancy to hid-chicony + - HID: add USB_HID dependancy on some USB HID drivers + - HID: bigbenff: prevent null pointer dereference + - HID: wacom: fix problems when device is not a valid USB device + - HID: check for valid USB device for many HID drivers + - mtd: dataflash: Add device-tree SPI IDs + - mmc: spi: Add device-tree SPI IDs + - HID: sony: fix error path in probe + - HID: Ignore battery for Elan touchscreen on Asus UX550VE + - platform/x86/intel: hid: add quirk to support Surface Go 3 + - nft_set_pipapo: Fix bucket load in AVX2 lookup routine for six 8-bit groups + - IB/hfi1: Insure use of smp_processor_id() is preempt disabled + - IB/hfi1: Fix early init panic + - IB/hfi1: Fix leak of rcvhdrtail_dummy_kvaddr + - can: kvaser_usb: get CAN clock frequency from device + - can: kvaser_pciefd: kvaser_pciefd_rx_error_frame(): increase correct + stats->{rx,tx}_errors counter + - can: sja1000: fix use after free in ems_pcmcia_add_card() + - can: pch_can: pch_can_rx_normal: fix use after free + - can: m_can: m_can_read_fifo: fix memory leak in error branch + - can: m_can: pci: fix incorrect reference clock rate + - can: m_can: pci: fix iomap_read_fifo() and iomap_write_fifo() + - can: m_can: Disable and ignore ELO interrupt + - net: dsa: mv88e6xxx: fix "don't use PHY_DETECT on internal PHY's" + - net: dsa: mv88e6xxx: allow use of PHYs on CPU and DSA ports + - x86/sme: Explicitly map new EFI memmap table as encrypted + - platform/x86: amd-pmc: Fix s2idle failures on certain AMD laptops + - nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done + - selftests: netfilter: add a vrf+conntrack testcase + - vrf: don't run conntrack on vrf with !dflt qdisc + - bpf, x86: Fix "no previous prototype" warning + - bpf, sockmap: Attach map progs to psock early for feature probes + - bpf: Make sure bpf_disable_instrumentation() is safe vs preemption. + - bpf: Fix the off-by-two error in range markings + - ice: ignore dropped packets during init + - ethtool: do not perform operations on net devices being unregistered + - bonding: make tx_rebalance_counter an atomic + - nfp: Fix memory leak in nfp_cpp_area_cache_add() + - udp: using datalen to cap max gso segments + - netfilter: nft_exthdr: break evaluation if setting TCP option fails + - netfilter: conntrack: annotate data-races around ct->timeout + - iavf: restore MSI state on reset + - iavf: Fix reporting when setting descriptor count + - IB/hfi1: Correct guard on eager buffer deallocation + - devlink: fix netns refcount leak in devlink_nl_cmd_reload() + - net: bcm4908: Handle dma_set_coherent_mask error codes + - net: dsa: mv88e6xxx: error handling for serdes_power functions + - net: dsa: felix: Fix memory leak in felix_setup_mmio_filtering + - net/sched: fq_pie: prevent dismantle issue + - net: mvpp2: fix XDP rx queues registering + - KVM: x86: Don't WARN if userspace mucks with RCX during string I/O exit + - KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req + - KVM: x86: Wait for IPIs to be delivered when handling Hyper-V TLB flush + hypercall + - timers: implement usleep_idle_range() + - mm/damon/core: fix fake load reports due to uninterruptible sleeps + - mm/slub: fix endianness bug for alloc/free_traces attributes + - mm: bdi: initialize bdi_min_ratio when bdi is unregistered + - ALSA: ctl: Fix copy of updated id with element read/write + - ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform + - ALSA: hda/realtek: Fix quirk for TongFang PHxTxX1 + - ALSA: pcm: oss: Fix negative period/buffer sizes + - ALSA: pcm: oss: Limit the period size to 16MB + - ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() + - cifs: Fix crash on unload of cifs_arc4.ko + - scsi: qla2xxx: Format log strings only if needed + - btrfs: clear extent buffer uptodate when we fail to write it + - btrfs: fix re-dirty process of tree-log nodes + - btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling + - btrfs: free exchange changeset on failures + - perf intel-pt: Fix some PGE (packet generation enable/control flow packets) + usage + - perf intel-pt: Fix sync state when a PSB (synchronization) packet is found + - perf intel-pt: Fix intel_pt_fup_event() assumptions about setting state type + - perf intel-pt: Fix state setting when receiving overflow (OVF) packet + - perf intel-pt: Fix next 'err' value, walking trace + - perf intel-pt: Fix missing 'instruction' events with 'q' option + - perf intel-pt: Fix error timestamp setting on the decoder error path + - md: fix update super 1.0 on rdev size change + - nfsd: fix use-after-free due to delegation race + - nfsd: Fix nsfd startup race (again) + - tracefs: Have new files inherit the ownership of their parent + - selftests: KVM: avoid failures due to reserved HyperTransport region + - hwmon: (pwm-fan) Ensure the fan going on in .probe() + - mmc: renesas_sdhi: initialize variable properly when tuning + - clk: qcom: regmap-mux: fix parent clock lookup + - thermal: int340x: Fix VCoRefLow MMIO bit offset for TGL + - drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. + - libata: add horkage for ASMedia 1092 + - io_uring: ensure task_work gets run as part of cancelations + - wait: add wake_up_pollfree() + - binder: use wake_up_pollfree() + - signalfd: use wake_up_pollfree() + - aio: keep poll requests on waitqueue until completed + - aio: fix use-after-free due to missing POLLFREE handling + - tracefs: Set all files to the same group ownership as the mount option + - i2c: mpc: Use atomic read and fix break condition + - block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) + - scsi: pm80xx: Do not call scsi_remove_host() in pm8001_alloc() + - scsi: scsi_debug: Fix buffer size of REPORT ZONES command + - ALSA: usb-audio: Reorder snd_djm_devices[] entries + - qede: validate non LSO skb length + - PM: runtime: Fix pm_runtime_active() kerneldoc comment + - ASoC: rt5682: Fix crash due to out of scope stack vars + - ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer + - ASoC: codecs: wsa881x: fix return values from kcontrol put + - ASoC: codecs: wcd934x: handle channel mappping list correctly + - ASoC: codecs: wcd934x: return correct value from mixer put + - RDMA/hns: Do not halt commands during reset until later + - RDMA/hns: Do not destroy QP resources in the hw resetting phase + - hwmon: (dell-smm) Fix warning on /proc/i8k creation error + - clk: imx: use module_platform_driver + - clk: qcom: clk-alpha-pll: Don't reconfigure running Trion + - i40e: Fix failed opcode appearing if handling messages from VF + - i40e: Fix pre-set max number of queues for VF + - mtd: rawnand: fsmc: Take instruction delay into account + - mtd: rawnand: fsmc: Fix timing computation + - bpf, sockmap: Re-evaluate proto ops when psock is removed from sockmap + - i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc + - Revert "PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge" + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - perf tools: Fix SMT detection fast read path + - Documentation/locking/locktypes: Update migrate_disable() bits. + - dt-bindings: net: Reintroduce PHY no lane swap binding + - tools build: Remove needless libpython-version feature check that breaks + test-all fast path + - net: cdc_ncm: Allow for dwNtbOutMaxSize to be unset or zero + - net: altera: set a couple error code in probe() + - net: fec: only clear interrupt of handling queue in fec_enet_rx_queue() + - net, neigh: clear whole pneigh_entry at alloc time + - net/qla3xxx: fix an error code in ql_adapter_up() + - selftests/fib_tests: Rework fib_rp_filter_test() + - USB: gadget: detect too-big endpoint 0 requests + - USB: gadget: zero allocate endpoint 0 buffers + - Revert "usb: dwc3: dwc3-qcom: Enable tx-fifo-resize property by default" + - usb: core: config: fix validation of wMaxPacketValue entries + - usb: core: config: using bit mask instead of individual bits + - xhci: avoid race between disable slot command and host runtime suspend + - iio: gyro: adxrs290: fix data signedness + - iio: trigger: Fix reference counting + - iio: trigger: stm32-timer: fix MODULE_ALIAS + - iio: stk3310: Don't return error code in interrupt handler + - iio: mma8452: Fix trigger reference couting + - iio: ltr501: Don't return error code in trigger handler + - iio: kxsd9: Don't return error code in trigger handler + - iio: itg3200: Call iio_trigger_notify_done() on error + - iio: dln2-adc: Fix lockdep complaint + - iio: dln2: Check return value of devm_iio_trigger_register() + - iio: at91-sama5d2: Fix incorrect sign extension + - iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda + - iio: adc: axp20x_adc: fix charging current reporting on AXP22x + - iio: ad7768-1: Call iio_trigger_notify_done() on error + - iio: accel: kxcjk-1013: Fix possible memory leak in probe and remove + - nvmem: eeprom: at25: fix FRAM byte_len + - bus: mhi: pci_generic: Fix device recovery failed issue + - bus: mhi: core: Add support for forced PM resume + - csky: fix typo of fpu config macro + - irqchip/aspeed-scu: Replace update_bits with write_bits. + - irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() + - irqchip/armada-370-xp: Fix support for Multi-MSI interrupts + - aio: Fix incorrect usage of eventfd_signal_allowed() + - irqchip/irq-gic-v3-its.c: Force synchronisation when issuing INVALL + - irqchip: nvic: Fix offset for Interrupt Priority Offsets + - misc: fastrpc: fix improper packet size calculation + - clocksource/drivers/dw_apb_timer_of: Fix probe failure + - bpf: Add selftests to cover packet access corner cases + - Linux 5.15.8 + + * Can't read/write SD card after running CPU offline test in 5.11.0 and 5.13.0 + (LP: #1951784) // Jammy update: v5.15.8 upstream stable release + (LP: #1954931) + - misc: rtsx: Avoid mangling IRQ during runtime PM + + * Enable Landlock by default (LP: #1953192) + - [Config] Enable Landlock by default + + * Add s0i3 RTC wake up for AMD systems (LP: #1950013) + - platform/x86: amd-pmc: Export Idlemask values based on the APU + - platform/x86: amd-pmc: adjust arguments for `amd_pmc_send_cmd` + - platform/x86: amd-pmc: Add special handling for timer based S0i3 wakeup + + * Fix runtime power management on USB controller with XHCI_RESET_ON_RESUME + flag (LP: #1954369) + - SAUCE: xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime + suspending + + * Fix System hangs on black screen when reboot (LP: #1949321) + - drm/i915/hdmi: convert intel_hdmi_to_dev to intel_hdmi_to_i915 + - drm/i915: Don't request GMBUS to generate irqs when called while irqs are + off + - drm/i915/hdmi: Turn DP++ TMDS output buffers back on in encoder->shutdown() + + * require CAP_NET_ADMIN to attach N_HCI ldisc (LP: #1949516) + - Bluetooth: hci_ldisc: require CAP_NET_ADMIN to attach N_HCI ldisc + + * mt7921e: Failed to start WM firmware (LP: #1954300) + - SAUCE: Bluetooth: btusb: Handle download_firmware failure cases + - SAUCE: Bluetooth: btusb: Return error code when getting patch status failed + + * Miscellaneous Ubuntu changes + - [Packaging] Add list of built-in modules to the ABI + - [Packaging] abi-check: Process modules.builtin + - SAUCE: allow to use __wake_up_pollfree() from GPL modules + - [Packaging] enforce xz compression for debs + - [Config] update config after v5.15.12 + - [Packaging] temporarily disable signed v4l2loopback + + -- Andrea Righi Tue, 04 Jan 2022 11:22:10 +0100 + +linux (5.15.0-14.14) jammy; urgency=medium + + * jammy/linux: 5.15.0-14.14 -proposed tracker (LP: #1954627) + + * Jammy update: v5.15.7 upstream stable release (LP: #1953731) + - ALSA: usb-audio: Restrict rates for the shared clocks + - ALSA: usb-audio: Rename early_playback_start flag with lowlatency_playback + - ALSA: usb-audio: Disable low-latency playback for free-wheel mode + - ALSA: usb-audio: Disable low-latency mode for implicit feedback sync + - ALSA: usb-audio: Check available frames for the next packet size + - ALSA: usb-audio: Add spinlock to stop_urbs() + - ALSA: usb-audio: Improved lowlatency playback support + - ALSA: usb-audio: Avoid killing in-flight URBs during draining + - ALSA: usb-audio: Fix packet size calculation regression + - ALSA: usb-audio: Less restriction for low-latency playback mode + - ALSA: usb-audio: Switch back to non-latency mode at a later point + - ALSA: usb-audio: Don't start stream for capture at prepare + - gfs2: release iopen glock early in evict + - gfs2: Fix length of holes reported at end-of-file + - powerpc/pseries/ddw: Revert "Extend upper limit for huge DMA window for + persistent memory" + - powerpc/pseries/ddw: Do not try direct mapping with persistent memory and + one window + - drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY + - mac80211: do not access the IV when it was stripped + - mac80211: fix throughput LED trigger + - x86/hyperv: Move required MSRs check to initial platform probing + - net/smc: Transfer remaining wait queue entries during fallback + - atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait + - net: return correct error code + - pinctrl: qcom: fix unmet dependencies on GPIOLIB for GPIOLIB_IRQCHIP + - platform/x86: dell-wmi-descriptor: disable by default + - platform/x86: thinkpad_acpi: Add support for dual fan control + - platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep + - s390/setup: avoid using memblock_enforce_memory_limit + - btrfs: silence lockdep when reading chunk tree during mount + - btrfs: check-integrity: fix a warning on write caching disabled disk + - thermal: core: Reset previous low and high trip during thermal zone init + - scsi: iscsi: Unblock session then wake up error handler + - drm/amd/pm: Remove artificial freq level on Navi1x + - drm/amd/amdkfd: Fix kernel panic when reset failed and been triggered again + - drm/amd/amdgpu: fix potential memleak + - ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile + - ata: libahci: Adjust behavior when StorageD3Enable _DSD is set + - ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in + hns_dsaf_ge_srst_by_port() + - ipv6: check return value of ipv6_skip_exthdr + - net: tulip: de4x5: fix the problem that the array 'lp->phy[8]' may be out of + bound + - net: ethernet: dec: tulip: de4x5: fix possible array overflows in + type3_infoblock() + - perf sort: Fix the 'weight' sort key behavior + - perf sort: Fix the 'ins_lat' sort key behavior + - perf sort: Fix the 'p_stage_cyc' sort key behavior + - perf inject: Fix ARM SPE handling + - perf hist: Fix memory leak of a perf_hpp_fmt + - perf report: Fix memory leaks around perf_tip() + - tracing: Don't use out-of-sync va_list in event printing + - net/smc: Avoid warning of possible recursive locking + - ACPI: Add stubs for wakeup handler functions + - net/tls: Fix authentication failure in CCM mode + - vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit + - kprobes: Limit max data_size of the kretprobe instances + - ALSA: hda/cs8409: Set PMSG_ON earlier inside cs8409 driver + - rt2x00: do not mark device gone on EPROTO errors during start + - ipmi: Move remove_work to dedicated workqueue + - cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() + - iwlwifi: mvm: retry init flow if failed + - dma-buf: system_heap: Use 'for_each_sgtable_sg' in pages free flow + - s390/pci: move pseudo-MMIO to prevent MIO overlap + - fget: check that the fd still exists after getting a ref to it + - sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl + - sata_fsl: fix warning in remove_proc_entry when rmmod sata_fsl + - scsi: lpfc: Fix non-recovery of remote ports following an unsolicited LOGO + - scsi: ufs: ufs-pci: Add support for Intel ADL + - ipv6: fix memory leak in fib6_rule_suppress + - drm/amd/display: Allow DSC on supported MST branch devices + - drm/i915/dp: Perform 30ms delay after source OUI write + - KVM: fix avic_set_running for preemptable kernels + - KVM: Disallow user memslot with size that exceeds "unsigned long" + - KVM: x86/mmu: Fix TLB flush range when handling disconnected pt + - KVM: Ensure local memslot copies operate on up-to-date arch-specific data + - KVM: x86: ignore APICv if LAPIC is not enabled + - KVM: nVMX: Emulate guest TLB flush on nested VM-Enter with new vpid12 + - KVM: nVMX: Flush current VPID (L1 vs. L2) for KVM_REQ_TLB_FLUSH_GUEST + - KVM: nVMX: Abide to KVM_REQ_TLB_FLUSH_GUEST request on nested vmentry/vmexit + - KVM: VMX: prepare sync_pir_to_irr for running with APICv disabled + - KVM: x86: Use a stable condition around all VT-d PI paths + - KVM: MMU: shadow nested paging does not have PKU + - KVM: arm64: Avoid setting the upper 32 bits of TCR_EL2 and CPTR_EL2 to 1 + - KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg() + - KVM: x86: check PIR even for vCPUs with disabled APICv + - tracing/histograms: String compares should not care about signed values + - net: dsa: mv88e6xxx: Fix application of erratum 4.8 for 88E6393X + - net: dsa: mv88e6xxx: Drop unnecessary check in + mv88e6393x_serdes_erratum_4_6() + - net: dsa: mv88e6xxx: Save power by disabling SerDes trasmitter and receiver + - net: dsa: mv88e6xxx: Add fix for erratum 5.2 of 88E6393X family + - net: dsa: mv88e6xxx: Fix inband AN for 2500base-x on 88E6393X family + - net: dsa: mv88e6xxx: Link in pcs_get_state() if AN is bypassed + - wireguard: selftests: increase default dmesg log size + - wireguard: allowedips: add missing __rcu annotation to satisfy sparse + - wireguard: selftests: actually test for routing loops + - wireguard: selftests: rename DEBUG_PI_LIST to DEBUG_PLIST + - wireguard: device: reset peer src endpoint when netns exits + - wireguard: receive: use ring buffer for incoming handshakes + - wireguard: receive: drop handshakes if queue lock is contended + - wireguard: ratelimiter: use kvcalloc() instead of kvzalloc() + - i2c: stm32f7: flush TX FIFO upon transfer errors + - i2c: stm32f7: recover the bus on access timeout + - i2c: stm32f7: stop dma transfer in case of NACK + - i2c: cbus-gpio: set atomic transfer callback + - natsemi: xtensa: fix section mismatch warnings + - tcp: fix page frag corruption on page fault + - net: qlogic: qlcnic: Fix a NULL pointer dereference in + qlcnic_83xx_add_rings() + - net: mpls: Fix notifications when deleting a device + - siphash: use _unaligned version by default + - arm64: ftrace: add missing BTIs + - iwlwifi: fix warnings produced by kernel debug options + - net/mlx5e: IPsec: Fix Software parser inner l3 type setting in case of + encapsulation + - net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() + - selftests: net: Correct case name + - net: dsa: b53: Add SPI ID table + - mt76: mt7915: fix NULL pointer dereference in mt7915_get_phy_mode + - ASoC: tegra: Fix wrong value type in ADMAIF + - ASoC: tegra: Fix wrong value type in I2S + - ASoC: tegra: Fix wrong value type in DMIC + - ASoC: tegra: Fix wrong value type in DSPK + - ASoC: tegra: Fix kcontrol put callback in ADMAIF + - ASoC: tegra: Fix kcontrol put callback in I2S + - ASoC: tegra: Fix kcontrol put callback in DMIC + - ASoC: tegra: Fix kcontrol put callback in DSPK + - ASoC: tegra: Fix kcontrol put callback in AHUB + - rxrpc: Fix rxrpc_peer leak in rxrpc_look_up_bundle() + - rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() + - ALSA: intel-dsp-config: add quirk for CML devices based on ES8336 codec + - net: stmmac: Avoid DMA_CHAN_CONTROL write if no Split Header support + - net: usb: lan78xx: lan78xx_phy_init(): use PHY_POLL instead of "0" if no IRQ + is available + - net: marvell: mvpp2: Fix the computation of shared CPUs + - dpaa2-eth: destroy workqueue at the end of remove function + - octeontx2-af: Fix a memleak bug in rvu_mbox_init() + - net: annotate data-races on txq->xmit_lock_owner + - ipv4: convert fib_num_tclassid_users to atomic_t + - net/smc: fix wrong list_del in smc_lgr_cleanup_early + - net/rds: correct socket tunable error in rds_tcp_tune() + - net/smc: Keep smc_close_final rc during active close + - drm/msm/a6xx: Allocate enough space for GMU registers + - drm/msm: Do hw_init() before capturing GPU state + - drm/vc4: kms: Wait for the commit before increasing our clock rate + - drm/vc4: kms: Fix return code check + - drm/vc4: kms: Add missing drm_crtc_commit_put + - drm/vc4: kms: Clear the HVS FIFO commit pointer once done + - drm/vc4: kms: Don't duplicate pending commit + - drm/vc4: kms: Fix previous HVS commit wait + - atlantic: Increase delay for fw transactions + - atlatnic: enable Nbase-t speeds with base-t + - atlantic: Fix to display FW bundle version instead of FW mac version. + - atlantic: Add missing DIDs and fix 115c. + - Remove Half duplex mode speed capabilities. + - atlantic: Fix statistics logic for production hardware + - atlantic: Remove warn trace message. + - KVM: x86/mmu: Skip tlb flush if it has been done in zap_gfn_range() + - KVM: x86/mmu: Pass parameter flush as false in + kvm_tdp_mmu_zap_collapsible_sptes() + - drm/msm/devfreq: Fix OPP refcnt leak + - drm/msm: Fix mmap to include VM_IO and VM_DONTDUMP + - drm/msm: Fix wait_fence submitqueue leak + - drm/msm: Restore error return on invalid fence + - ASoC: rk817: Add module alias for rk817-codec + - iwlwifi: Fix memory leaks in error handling path + - KVM: X86: Fix when shadow_root_level=5 && guest root_level<4 + - KVM: SEV: initialize regions_list of a mirror VM + - net/mlx5e: Fix missing IPsec statistics on uplink representor + - net/mlx5: Move MODIFY_RQT command to ignore list in internal error state + - net/mlx5: E-switch, Respect BW share of the new group + - net/mlx5: E-Switch, fix single FDB creation on BlueField + - net/mlx5: E-Switch, Check group pointer before reading bw_share value + - KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register + - KVM: VMX: Set failure code in prepare_vmcs02() + - mctp: Don't let RTM_DELROUTE delete local routes + - Revert "drm/i915: Implement Wa_1508744258" + - io-wq: don't retry task_work creation failure on fatal conditions + - x86/sev: Fix SEV-ES INS/OUTS instructions for word, dword, and qword + - x86/entry: Add a fence for kernel entry SWAPGS in paranoid_entry() + - x86/entry: Use the correct fence macro after swapgs in kernel CR3 + - x86/xen: Add xenpv_restore_regs_and_return_to_usermode() + - preempt/dynamic: Fix setup_preempt_mode() return value + - sched/uclamp: Fix rq->uclamp_max not set on first enqueue + - KVM: SEV: Return appropriate error codes if SEV-ES scratch setup fails + - KVM: x86/mmu: Rename slot_handle_leaf to slot_handle_level_4k + - KVM: x86/mmu: Remove spurious TLB flushes in TDP MMU zap collapsible path + - net/mlx5e: Rename lro_timeout to packet_merge_timeout + - net/mlx5e: Rename TIR lro functions to TIR packet merge functions + - net/mlx5e: Sync TIR params updates against concurrent create/modify + - serial: 8250_bcm7271: UART errors after resuming from S2 + - parisc: Fix KBUILD_IMAGE for self-extracting kernel + - parisc: Fix "make install" on newer debian releases + - parisc: Mark cr16 CPU clocksource unstable on all SMP machines + - vgacon: Propagate console boot parameters before calling `vc_resize' + - xhci: Fix commad ring abort, write all 64 bits to CRCR register. + - USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub + - usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect + - usb: cdns3: gadget: fix new urb never complete if ep cancel previous + requests + - usb: cdnsp: Fix a NULL pointer dereference in cdnsp_endpoint_init() + - x86/tsc: Add a timer to make sure TSC_adjust is always checked + - x86/tsc: Disable clocksource watchdog for TSC on qualified platorms + - x86/64/mm: Map all kernel memory into trampoline_pgd + - tty: serial: msm_serial: Deactivate RX DMA for polling support + - serial: pl011: Add ACPI SBSA UART match id + - serial: tegra: Change lower tolerance baud rate limit for tegra20 and + tegra30 + - serial: core: fix transmit-buffer reset and memleak + - serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array + - serial: 8250_pci: rewrite pericom_do_set_divisor() + - serial: 8250: Fix RTS modem control while in rs485 mode + - serial: liteuart: Fix NULL pointer dereference in ->remove() + - serial: liteuart: fix use-after-free and memleak on unbind + - serial: liteuart: fix minor-number leak on probe errors + - ipmi: msghandler: Make symbol 'remove_work_wq' static + - Linux 5.15.7 + + * Updates to ib_peer_memory requested by Nvidia (LP: #1947206) + - SAUCE: RDMA/core: Updated ib_peer_memory + - SAUCE: RDMA/core: ib_peer_memory fix build errors + + * Jammy update: v5.15.6 upstream stable release (LP: #1953370) + - scsi: sd: Fix sd_do_mode_sense() buffer length handling + - ACPI: Get acpi_device's parent from the parent field + - ACPI: CPPC: Add NULL pointer check to cppc_get_perf() + - USB: serial: pl2303: fix GC type detection + - USB: serial: option: add Telit LE910S1 0x9200 composition + - USB: serial: option: add Fibocom FM101-GL variants + - usb: dwc2: gadget: Fix ISOC flow for elapsed frames + - usb: dwc2: hcd_queue: Fix use of floating point literal + - usb: dwc3: leave default DMA for PCI devices + - usb: dwc3: core: Revise GHWPARAMS9 offset + - usb: dwc3: gadget: Ignore NoStream after End Transfer + - usb: dwc3: gadget: Check for L1/L2/U3 for Start Transfer + - usb: dwc3: gadget: Fix null pointer exception + - net: usb: Correct PHY handling of smsc95xx + - net: nexthop: fix null pointer dereference when IPv6 is not enabled + - usb: chipidea: ci_hdrc_imx: fix potential error pointer dereference in probe + - usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts + - usb: xhci: tegra: Check padctrl interrupt presence in device tree + - usb: hub: Fix usb enumeration issue due to address0 race + - usb: hub: Fix locking issues with address0_mutex + - binder: fix test regression due to sender_euid change + - ALSA: ctxfi: Fix out-of-range access + - ALSA: hda/realtek: Add quirk for ASRock NUC Box 1100 + - ALSA: hda/realtek: Fix LED on HP ProBook 435 G7 + - media: cec: copy sequence field for the reply + - Revert "parisc: Fix backtrace to always include init funtion names" + - HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts + - staging/fbtft: Fix backlight + - staging: greybus: Add missing rwsem around snd_ctl_remove() calls + - staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() + - staging: r8188eu: Use kzalloc() with GFP_ATOMIC in atomic context + - staging: r8188eu: Fix breakage introduced when 5G code was removed + - staging: r8188eu: use GFP_ATOMIC under spinlock + - staging: r8188eu: fix a memory leak in rtw_wx_read32() + - fuse: release pipe buf after last use + - xen: don't continue xenstore initialization in case of errors + - xen: detect uninitialized xenbus in xenbus_init + - io_uring: correct link-list traversal locking + - io_uring: fail cancellation for EXITING tasks + - io_uring: fix link traversal locking + - drm/amdgpu: IH process reset count when restart + - drm/amdgpu/pm: fix powerplay OD interface + - drm/nouveau: recognise GA106 + - ksmbd: downgrade addition info error msg to debug in smb2_get_info_sec() + - ksmbd: contain default data stream even if xattr is empty + - ksmbd: fix memleak in get_file_stream_info() + - KVM: PPC: Book3S HV: Prevent POWER7/8 TLB flush flushing SLB + - tracing/uprobe: Fix uprobe_perf_open probes iteration + - tracing: Fix pid filtering when triggers are attached + - mmc: sdhci-esdhc-imx: disable CMDQ support + - mmc: sdhci: Fix ADMA for PAGE_SIZE >= 64KiB + - mdio: aspeed: Fix "Link is Down" issue + - arm64: mm: Fix VM_BUG_ON(mm != &init_mm) for trans_pgd + - cpufreq: intel_pstate: Fix active mode offline/online EPP handling + - powerpc/32: Fix hardlockup on vmap stack overflow + - iomap: Fix inline extent handling in iomap_readpage + - NFSv42: Fix pagecache invalidation after COPY/CLONE + - PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() + - PCI: aardvark: Implement re-issuing config requests on CRS response + - PCI: aardvark: Simplify initialization of rootcap on virtual bridge + - PCI: aardvark: Fix link training + - drm/amd/display: Fix OLED brightness control on eDP + - proc/vmcore: fix clearing user buffer by properly using clear_user() + - ASoC: SOF: Intel: hda: fix hotplug when only codec is suspended + - netfilter: ctnetlink: fix filtering with CTA_TUPLE_REPLY + - netfilter: ctnetlink: do not erase error code with EINVAL + - netfilter: ipvs: Fix reuse connection if RS weight is 0 + - netfilter: flowtable: fix IPv6 tunnel addr match + - media: v4l2-core: fix VIDIOC_DQEVENT handling on non-x86 + - firmware: arm_scmi: Fix null de-reference on error path + - ARM: dts: BCM5301X: Fix I2C controller interrupt + - ARM: dts: BCM5301X: Add interrupt properties to GPIO node + - ARM: dts: bcm2711: Fix PCIe interrupts + - ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer + - ASoC: qdsp6: q6asm: fix q6asm_dai_prepare error handling + - ASoC: topology: Add missing rwsem around snd_ctl_remove() calls + - ASoC: codecs: wcd938x: fix volatile register range + - ASoC: codecs: wcd934x: return error code correctly from hw_params + - ASoC: codecs: lpass-rx-macro: fix HPHR setting CLSH mask + - net: ieee802154: handle iftypes as u32 + - firmware: arm_scmi: Fix base agent discover response + - firmware: arm_scmi: pm: Propagate return value to caller + - ASoC: stm32: i2s: fix 32 bits channel length without mclk + - NFSv42: Don't fail clone() unless the OP_CLONE operation failed + - ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE + - drm/nouveau/acr: fix a couple NULL vs IS_ERR() checks + - scsi: qla2xxx: edif: Fix off by one bug in qla_edif_app_getfcinfo() + - scsi: mpt3sas: Fix kernel panic during drive powercycle test + - scsi: mpt3sas: Fix system going into read-only mode + - scsi: mpt3sas: Fix incorrect system timestamp + - drm/vc4: fix error code in vc4_create_object() + - drm/aspeed: Fix vga_pw sysfs output + - net: marvell: prestera: fix brige port operation + - net: marvell: prestera: fix double free issue on err path + - HID: input: Fix parsing of HID_CP_CONSUMER_CONTROL fields + - HID: input: set usage type to key on keycode remap + - HID: magicmouse: prevent division by 0 on scroll + - iavf: Prevent changing static ITR values if adaptive moderation is on + - iavf: Fix refreshing iavf adapter stats on ethtool request + - iavf: Fix VLAN feature flags after VFR + - x86/pvh: add prototype for xen_pvh_init() + - xen/pvh: add missing prototype to header + - ALSA: intel-dsp-config: add quirk for JSL devices based on ES8336 codec + - mptcp: fix delack timer + - mptcp: use delegate action to schedule 3rd ack retrans + - af_unix: fix regression in read after shutdown + - firmware: smccc: Fix check for ARCH_SOC_ID not implemented + - ipv6: fix typos in __ip6_finish_output() + - nfp: checking parameter process for rx-usecs/tx-usecs is invalid + - net: stmmac: retain PTP clock time during SIOCSHWTSTAMP ioctls + - net: ipv6: add fib6_nh_release_dsts stub + - net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group + - ice: fix vsi->txq_map sizing + - ice: avoid bpf_prog refcount underflow + - scsi: core: sysfs: Fix setting device state to SDEV_RUNNING + - scsi: scsi_debug: Zero clear zones at reset write pointer + - erofs: fix deadlock when shrink erofs slab + - i2c: virtio: disable timeout handling + - net/smc: Ensure the active closing peer first closes clcsock + - mlxsw: spectrum: Protect driver from buggy firmware + - net: ipa: directly disable ipa-setup-ready interrupt + - net: ipa: separate disabling setup from modem stop + - net: ipa: kill ipa_cmd_pipeline_clear() + - net: marvell: mvpp2: increase MTU limit when XDP enabled + - cpufreq: intel_pstate: Add Ice Lake server to out-of-band IDs + - nvmet-tcp: fix incomplete data digest send + - drm/hyperv: Fix device removal on Gen1 VMs + - arm64: uaccess: avoid blocking within critical sections + - net/ncsi : Add payload to be 32-bit aligned to fix dropped packets + - PM: hibernate: use correct mode for swsusp_close() + - drm/amd/display: Fix DPIA outbox timeout after GPU reset + - drm/amd/display: Set plane update flags for all planes in reset + - tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited + flows + - lan743x: fix deadlock in lan743x_phy_link_status_change() + - net: phylink: Force link down and retrigger resolve on interface change + - net: phylink: Force retrigger in case of latched link-fail indicator + - net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() + - net/smc: Fix loop in smc_listen + - nvmet: use IOCB_NOWAIT only if the filesystem supports it + - igb: fix netpoll exit with traffic + - MIPS: loongson64: fix FTLB configuration + - MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 + - tls: splice_read: fix record type check + - tls: splice_read: fix accessing pre-processed records + - tls: fix replacing proto_ops + - net: stmmac: Disable Tx queues when reconfiguring the interface + - net/sched: sch_ets: don't peek at classes beyond 'nbands' + - ethtool: ioctl: fix potential NULL deref in ethtool_set_coalesce() + - net: vlan: fix underflow for the real_dev refcnt + - net/smc: Don't call clcsock shutdown twice when smc shutdown + - net: hns3: fix VF RSS failed problem after PF enable multi-TCs + - net: hns3: fix incorrect components info of ethtool --reset command + - net: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP + - net: mscc: ocelot: correctly report the timestamping RX filters in ethtool + - locking/rwsem: Make handoff bit handling more consistent + - perf: Ignore sigtrap for tracepoints destined for other tasks + - sched/scs: Reset task stack state in bringup_cpu() + - iommu/rockchip: Fix PAGE_DESC_HI_MASKs for RK3568 + - iommu/vt-d: Fix unmap_pages support + - f2fs: quota: fix potential deadlock + - f2fs: set SBI_NEED_FSCK flag when inconsistent node block found + - riscv: dts: microchip: fix board compatible + - riscv: dts: microchip: drop duplicated MMC/SDHC node + - cifs: nosharesock should not share socket with future sessions + - ceph: properly handle statfs on multifs setups + - iommu/amd: Clarify AMD IOMMUv2 initialization messages + - vdpa_sim: avoid putting an uninitialized iova_domain + - vhost/vsock: fix incorrect used length reported to the guest + - ksmbd: Fix an error handling path in 'smb2_sess_setup()' + - tracing: Check pid filtering when creating events + - cifs: nosharesock should be set on new server + - io_uring: fix soft lockup when call __io_remove_buffers + - firmware: arm_scmi: Fix type error assignment in voltage protocol + - firmware: arm_scmi: Fix type error in sensor protocol + - docs: accounting: update delay-accounting.rst reference + - blk-mq: cancel blk-mq dispatch work in both blk_cleanup_queue and + disk_release() + - block: avoid to quiesce queue in elevator_init_mq + - drm/amdgpu/gfx10: add wraparound gpu counter check for APUs as well + - drm/amdgpu/gfx9: switch to golden tsc registers for renoir+ + - Linux 5.15.6 + + * Fix bogus HDMI audio interface (LP: #1953208) + - ALSA: hda/hdmi: Consider ELD is invalid when no SAD is present + + * Miscellaneous Ubuntu changes + - [Config] re-enabled UBSAN without TRAP + - SAUCE: ipv6: fix NULL pointer dereference in ip6_output() + - SAUCE: RDMA/core: Introduce peer memory interface + - [Config] toolchain version update + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] Temporarily disable signing for ppc64el and s390x" + - Revert "UBUNTU: SAUCE: vt -- maintain bootloader screen mode and content + until vt switch" + + -- Paolo Pisati Mon, 13 Dec 2021 12:13:17 +0100 + +linux (5.15.0-13.13) jammy; urgency=medium + + * jammy/linux: 5.15.0-13.13 -proposed tracker (LP: #1952583) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.5 upstream stable release (LP: #1952579) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - clk: sunxi-ng: Unregister clocks/resets when unbinding + - ARM: dts: sunxi: Fix OPPs node name + - arm64: dts: allwinner: h5: Fix GPU thermal zone node name + - arm64: dts: allwinner: a100: Fix thermal zone node name + - staging: wfx: ensure IRQ is ready before enabling it + - ARM: dts: BCM5301X: Fix nodes names + - ARM: dts: BCM5301X: Fix MDIO mux binding + - ARM: dts: NSP: Fix mpcore, mmc node names + - arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus + - scsi: pm80xx: Fix memory leak during rmmod + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - ASoC: mediatek: mt8195: Add missing of_node_put() + - arm64: dts: rockchip: Disable CDN DP on Pinebook Pro + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - bus: ti-sysc: Add quirk handling for reinit on context lost + - bus: ti-sysc: Use context lost quirk for otg + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - ARM: dts: ux500: Skomer regulator fixes + - staging: rtl8723bs: remove possible deadlock when disconnect (v2) + - staging: rtl8723bs: remove a second possible deadlock + - staging: rtl8723bs: remove a third possible deadlock + - ARM: BCM53016: Specify switch ports for Meraki MR32 + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: qcom: ipq6018: Fix qcom,controlled-remotely property + - arm64: dts: qcom: ipq8074: Fix qcom,controlled-remotely property + - arm64: dts: qcom: sdm845: Fix qcom,controlled-remotely property + - arm64: dts: freescale: fix arm,sp805 compatible string + - arm64: dts: ls1012a: Add serial alias for ls1012a-rdb + - RDMA/rxe: Separate HW and SW l/rkeys + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - scsi: core: Fix scsi_mode_sense() buffer length handling + - ALSA: usb-audio: disable implicit feedback sync for Behringer UFX1204 and + UFX1604 + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: rt5651: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - scsi: smartpqi: Add controller handshake during kdump + - arm64: dts: imx8mm-kontron: Fix reset delays for ethernet PHY + - ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 + codec + - ASoC: Intel: soc-acpi: add missing quirk for TGL SDCA single amp + - ASoC: Intel: sof_sdw: add missing quirk for Dell SKU 0A45 + - firmware_loader: fix pre-allocated buf built-in firmware use + - HID: multitouch: disable sticky fingers for UPERFECT Y + - ALSA: usb-audio: Add support for the Pioneer DJM 750MK2 Mixer/Soundcard + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - ASoC: rt5682: fix a little pop while playback + - ARM: dts: ls1021a: move thermal-zones node out of soc/ + - ARM: dts: ls1021a-tsn: use generic "jedec,spi-nor" compatible for flash + - ALSA: ISA: not for M68K + - iommu/vt-d: Do not falsely log intel_iommu is unsupported kernel option + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - scsi: scsi_debug: Fix out-of-bound read in resp_readcap16() + - scsi: scsi_debug: Fix out-of-bound read in resp_report_tgtpgs() + - scsi: target: Fix ordered tag handling + - scsi: target: Fix alua_tg_pt_gps_count tracking + - iio: imu: st_lsm6dsx: Avoid potential array overflow in st_lsm6dsx_set_odr() + - RDMA/core: Use kvzalloc when allocating the struct ib_port + - scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine + - scsi: lpfc: Fix link down processing to address NULL pointer dereference + - scsi: lpfc: Allow fabric node recovery if recovery is in progress before + devloss + - memory: tegra20-emc: Add runtime dependency on devfreq governor module + - powerpc/5200: dts: fix memory node unit name + - ARM: dts: qcom: fix memory and mdio nodes naming for RB3011 + - arm64: dts: qcom: Fix node name of rpm-msg-ram device nodes + - ALSA: gus: fix null pointer dereference on pointer block + - ALSA: usb-audio: fix null pointer dereference on pointer cs_desc + - clk: at91: sama7g5: remove prescaler part of master clock + - iommu/dart: Initialize DART_STREAMS_ENABLE + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - powerpc/8xx: Fix Oops with STRICT_KERNEL_RWX without DEBUG_RODATA_TEST + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - f2fs: fix to use WHINT_MODE + - f2fs: fix wrong condition to trigger background checkpoint correctly + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - f2fs: compress: disallow disabling compress on non-empty compressed file + - f2fs: fix incorrect return value in f2fs_sanity_check_ckpt() + - clk: ingenic: Fix bugs with divided dividers + - clk/ast2600: Fix soc revision for AHB + - clk: qcom: gcc-msm8996: Drop (again) gcc_aggre1_pnoc_ahb_clk + - KVM: arm64: Fix host stage-2 finalization + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - MIPS: boot/compressed/: add __bswapdi2() to target for ZSTD decompression + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - sched/fair: Prevent dead task groups from regaining cfs_rq's + - perf/x86/vlbr: Add c->flags to vlbr event constraints + - blkcg: Remove extra blkcg_bio_issue_init + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - perf bpf: Avoid memory leak from perf_env__insert_btf() + - perf bench futex: Fix memory leak of perf_cpu_map__new() + - perf tests: Remove bash construct from record+zstd_comp_decomp.sh + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - bpf: Fix inner map state pruning regression. + - samples/bpf: Fix summary per-sec stats in xdp_sample_user + - samples/bpf: Fix incorrect use of strlen in xdp_redirect_cpu + - selftests: net: switch to socat in the GSO GRE test + - net/ipa: ipa_resource: Fix wrong for loop range + - tcp: Fix uninitialized access in skb frags array for Rx 0cp. + - tracing: Add length protection to histogram string copies + - nl80211: fix radio statistics in survey dump + - mac80211: fix monitor_sdata RCU/locking assertions + - net: ipa: HOLB register sometimes must be written twice + - net: ipa: disable HOLB drop when updating timer + - selftests: gpio: fix gpio compiling error + - net: bnx2x: fix variable dereferenced before check + - bnxt_en: reject indirect blk offload when hw-tc-offload is off + - tipc: only accept encrypted MSG_CRYPTO msgs + - sock: fix /proc/net/sockstat underflow in sk_clone_lock() + - net/smc: Make sure the link_id is unique + - NFSD: Fix exposure in nfsd4_decode_bitmap() + - iavf: Fix return of set the new channel count + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - iavf: don't clear a lock we don't hold + - iavf: Fix failure to exit out from last all-multicast mode + - iavf: prevent accidental free of filter structure + - iavf: validate pointers + - iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset + - iavf: Fix for setting queues to 0 + - iavf: Restore VLAN filters after link down + - bpf: Fix toctou on read-only map's constant scalar tracking + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - gpio: rockchip: needs GENERIC_IRQ_CHIP to fix build errors + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - platform/x86: think-lmi: Abort probe on analyze failure + - udp: Validate checksum in udp_read_sock() + - btrfs: make 1-bit bit-fields of scrub_page unsigned int + - RDMA/core: Set send and receive CQ before forwarding to the driver + - net/mlx5e: kTLS, Fix crash in RX resync flow + - net/mlx5e: Wait for concurrent flow deletion during neigh/fib events + - net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev + - net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() + - net/mlx5: Update error handler for UCTX and UMEM + - net/mlx5: E-Switch, rebuild lag only when needed + - net/mlx5e: CT, Fix multiple allocations and memleak of mod acts + - net/mlx5: Lag, update tracker when state change event received + - net/mlx5: E-Switch, return error if encap isn't supported + - scsi: ufs: core: Improve SCSI abort handling + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - scsi: ufs: core: Fix task management completion timeout race + - scsi: ufs: core: Fix another task management completion race + - net: mvmdio: fix compilation warning + - net: sched: act_mirred: drop dst for the direction from egress to ingress + - net: dpaa2-eth: fix use-after-free in dpaa2_eth_remove + - net: virtio_net_hdr_to_skb: count transport header in UFO + - i40e: Fix correct max_pkt_size on VF RX queue + - i40e: Fix NULL ptr dereference on VSI filter sync + - i40e: Fix changing previously set num_queue_pairs for PFs + - i40e: Fix ping is lost after configuring ADq on VF + - RDMA/mlx4: Do not fail the registration on port stats + - i40e: Fix warning message and call stack during rmmod i40e driver + - i40e: Fix creation of first queue by omitting it if is not power of two + - i40e: Fix display error code in dmesg + - NFC: reorganize the functions in nci_request + - NFC: reorder the logic in nfc_{un,}register_device + - NFC: add NCI_UNREG flag to eliminate the race + - e100: fix device suspend/resume + - ptp: ocp: Fix a couple NULL vs IS_ERR() checks + - tools build: Fix removal of feature-sync-compare-and-swap feature detection + - riscv: fix building external modules + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - powerpc: clean vdso32 and vdso64 directories + - powerpc/pseries: rename numa_dist_table to form2_distances + - powerpc/pseries: Fix numa FORM2 parsing fallback code + - pinctrl: qcom: sdm845: Enable dual edge errata + - pinctrl: qcom: sm8350: Correct UFS and SDC offsets + - perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Snowridge + - s390/kexec: fix return code handling + - blk-cgroup: fix missing put device in error path from blkg_conf_pref() + - dmaengine: remove debugfs #ifdef + - tun: fix bonding active backup with arp monitoring + - Revert "mark pstore-blk as broken" + - pstore/blk: Use "%lu" to format unsigned long + - hexagon: export raw I/O routines for modules + - hexagon: clean up timer-regs.h + - tipc: check for null after calling kmemdup + - ipc: WARN if trying to remove ipc object which is absent + - shm: extend forced shm destroy to support objects from several IPC nses + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - hugetlb, userfaultfd: fix reservation restore on userfaultfd error + - kmap_local: don't assume kmap PTEs are linear arrays in memory + - mm/damon/dbgfs: use '__GFP_NOWARN' for user-specified size buffer allocation + - mm/damon/dbgfs: fix missed use of damon_dbgfs_lock + - x86/boot: Pull up cmdline preparation and early param parsing + - x86/sgx: Fix free page accounting + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - KVM: x86: Assume a 64-bit hypercall for guests with protected state + - KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap() + - KVM: x86/mmu: include EFER.LMA in extended mmu role + - KVM: x86/xen: Fix get_attr of KVM_XEN_ATTR_TYPE_SHARED_INFO + - powerpc/signal32: Fix sigset_t copy + - powerpc/xive: Change IRQ domain to a tree domain + - powerpc/8xx: Fix pinned TLBs with CONFIG_STRICT_KERNEL_RWX + - Revert "drm/i915/tgl/dsi: Gate the ddi clocks after pll mapping" + - Revert "parisc: Reduce sigreturn trampoline to 3 instructions" + - ata: libata: improve ata_read_log_page() error message + - ata: libata: add missing ata_identify_page_supported() calls + - scsi: qla2xxx: Fix mailbox direction flags in qla2xxx_get_adapter_id() + - pinctrl: ralink: include 'ralink_regs.h' in 'pinctrl-mt7620.c' + - s390/setup: avoid reserving memory above identity mapping + - s390/boot: simplify and fix kernel memory layout setup + - s390/vdso: filter out -mstack-guard and -mstack-size + - s390/kexec: fix memory leak of ipl report buffer + - s390/dump: fix copying to user-space of swapped kdump oldmem + - block: Check ADMIN before NICE for IOPRIO_CLASS_RT + - fbdev: Prevent probing generic drivers if a FB is already registered + - KVM: SEV: Disallow COPY_ENC_CONTEXT_FROM if target has created vCPUs + - KVM: nVMX: don't use vcpu->arch.efer when checking host state on nested + state load + - drm/cma-helper: Release non-coherent memory with dma_free_noncoherent() + - printk: restore flushing of NMI buffers on remote CPUs after NMI backtraces + - udf: Fix crash after seekdir + - spi: fix use-after-free of the add_lock mutex + - net: stmmac: socfpga: add runtime suspend/resume callback for stratix10 + platform + - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size + - btrfs: fix memory ordering between normal and ordered work functions + - fs: handle circular mappings correctly + - net: stmmac: Fix signed/unsigned wreckage + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - mac80211: fix radiotap header generation + - mac80211: drop check for DONT_REORDER in __ieee80211_select_queue + - drm/amd/display: Update swizzle mode enums + - drm/amd/display: Limit max DSC target bpp for specific monitors + - drm/i915/guc: Fix outstanding G2H accounting + - drm/i915/guc: Don't enable scheduling on a banned context, guc_id invalid, + not registered + - drm/i915/guc: Workaround reset G2H is received after schedule done G2H + - drm/i915/guc: Don't drop ce->guc_active.lock when unwinding context + - drm/i915/guc: Unwind context requests in reverse order + - drm/udl: fix control-message timeout + - drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/nouveau: clean up all clients on device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/i915/dp: Ensure max link params are always valid + - drm/i915: Fix type1 DVI DP dual mode adapter heuristic for modern platforms + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - drm/amd/pm: avoid duplicate powergate/ungate setting + - signal: Implement force_fatal_sig + - exit/syscall_user_dispatch: Send ordinary signals on failure + - signal/powerpc: On swapcontext failure force SIGSEGV + - signal/s390: Use force_sigsegv in default_trap_handler + - signal/sparc32: Exit with a fatal signal when try_to_clear_window_buffer + fails + - signal/sparc32: In setup_rt_frame and setup_fram use force_fatal_sig + - signal/vm86_32: Properly send SIGSEGV when the vm86 state cannot be saved. + - signal/x86: In emulate_vsyscall force a signal instead of calling do_exit + - signal: Replace force_sigsegv(SIGSEGV) with force_fatal_sig(SIGSEGV) + - signal: Don't always set SA_IMMUTABLE for forced signals + - signal: Replace force_fatal_sig with force_exit_sig when in doubt + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + - RDMA/netlink: Add __maybe_unused to static inline in C file + - bpf: Forbid bpf_ktime_get_coarse_ns and bpf_timer_* in tracing progs + - selinux: fix NULL-pointer dereference when hashtab allocation fails + - ASoC: DAPM: Cover regression by kctl change notification fix + - ASoC: rsnd: fixup DMAEngine API + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Fix VF true promiscuous mode + - ice: Delete always true check of PF pointer + - fs: export an inode_update_time helper + - btrfs: update device path inode time instead of bd_inode + - net: add and use skb_unclone_keeptruesize() helper + - x86/Kconfig: Fix an unused variable error in dell-smm-hwmon + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.15.5 + + * Fix non-working e1000e device after resume (LP: #1951861) + - SAUCE: Revert "e1000e: Additional PHY power saving in S0ix" + - SAUCE: Revert "e1000e: Add polling mechanism to indicate CSME DPG exit" + - SAUCE: Revert "e1000e: Add handshake with the CSME to support S0ix" + + * [SRU][I/OEM-5.13/OEM-5.14] Add MAC passthrough support for more Lenovo docks + (LP: #1951767) + - net: usb: r8152: Add MAC passthrough support for more Lenovo Docks + + * [amdgpu] USB4 support for DP tunneling (LP: #1951868) + - drm/amd/display: Support for DMUB HPD interrupt handling + - drm/amd/display: Update link encoder object creation. + - drm/amd/display: USB4 DPIA enumeration and AUX Tunneling + - drm/amd/display: Support for DMUB HPD and HPD RX interrupt handling + - drm/amd/display: Set DPIA link endpoint type + - drm/amd/display: Stub out DPIA link training call + - drm/amd/display: Add stub to get DPIA tunneling device data + - drm/amd/display: Skip DPCD read for DPTX-to-DPIA hop + - drm/amd/display: Train DPIA links with fallback + - drm/amd/display: Implement DPIA training loop + - drm/amd/display: Implement DPIA link configuration + - drm/amd/display: Implement DPIA clock recovery phase + - drm/amd/display: Implement DPIA equalisation phase + - drm/amd/display: Implement end of training for hop in DPIA display path + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: isolate link training setting override to its own function + - drm/amd/display: Read USB4 DP tunneling data from DPCD. + - drm/amd/display: Add dpia debug options + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: Add DPCD writes at key points + - drm/amd/display: Fix DIG_HPD_SELECT for USB4 display endpoints. + - drm/amd/display: Add helper for blanking all dp displays + - drm/amd/display: Fix link training fallback logic + - drm/amd/display: Add debug flags for USB4 DP link training. + - drm/amd/display: Fix dynamic link encoder access. + - drm/amd/display: Fix concurrent dynamic encoder assignment + - drm/amd/display: Fix dynamic encoder reassignment + - drm/amd/display: Fix for access for ddc pin and aux engine. + - drm/amd/display: Deadlock/HPD Status/Crash Bug Fix + - drm/amd/display: Fix USB4 Aux via DMUB terminate unexpectedly + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/module-check in Python + - [Config] update config and annotations after applying v5.15.5 + + -- Andrea Righi Mon, 29 Nov 2021 09:25:37 +0100 + +linux (5.15.0-12.12) jammy; urgency=medium + + * jammy/linux: 5.15.0-12.12 -proposed tracker (LP: #1951810) + + * Jammy update: v5.15.4 upstream stable release (LP: #1951820) + - string: uninline memcpy_and_pad + - Revert "drm: fb_helper: improve CONFIG_FB dependency" + - Revert "drm: fb_helper: fix CONFIG_FB dependency" + - KVM: Fix steal time asm constraints + - btrfs: introduce btrfs_is_data_reloc_root + - btrfs: zoned: add a dedicated data relocation block group + - btrfs: zoned: only allow one process to add pages to a relocation inode + - btrfs: zoned: use regular writes for relocation + - btrfs: check for relocation inodes on zoned btrfs in should_nocow + - btrfs: zoned: allow preallocation for relocation inodes + - fortify: Explicitly disable Clang support + - block: Add a helper to validate the block size + - loop: Use blk_validate_block_size() to validate block size + - Bluetooth: btusb: Add support for TP-Link UB500 Adapter + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - perf/core: Avoid put_page() when GUP fails + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - Revert "ACPI: scan: Release PM resources blocked by unused objects" + - Linux 5.15.4 + + * Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good + delay + - usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform + - Input: iforce - fix control-message timeout + - Input: elantench - fix misreporting trackpoint coordinates + - Input: i8042 - Add quirk for Fujitsu Lifebook T725 + - libata: fix read log timeout value + - ocfs2: fix data corruption on truncate + - scsi: scsi_ioctl: Validate command size + - scsi: core: Avoid leaving shost->last_reset with stale value if EH does not + run + - scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() + - scsi: lpfc: Don't release final kref on Fport node while ABTS outstanding + - scsi: lpfc: Fix FCP I/O flush functionality for TMF routines + - scsi: qla2xxx: Fix crash in NVMe abort path + - scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - ce/gf100: fix incorrect CE0 address calculation on some GPUs + - char: xillybus: fix msg_ep UAF in xillyusb_probe() + - mmc: mtk-sd: Add wait dma stop done flow + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - exfat: fix incorrect loading of i_blocks for large files + - io-wq: remove worker to owner tw dependency + - parisc: Fix set_fixmap() on PA1.x CPUs + - parisc: Fix ptrace check on syscall return + - tpm: Check for integer overflow in tpm2_map_response_body() + - firmware/psci: fix application of sizeof to pointer + - crypto: s5p-sss - Add error handling in s5p_aes_probe() + - media: rkvdec: Do not override sizeimage for output format + - media: ite-cir: IR receiver stop working after receive overflow + - media: rkvdec: Support dynamic resolution changes + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ + - ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N + - ALSA: hda/realtek: Add quirk for ASUS UX550VE + - ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED + - ALSA: ua101: fix division by zero at probe + - ALSA: 6fire: fix control and bulk message timeouts + - ALSA: line6: fix control and interrupt message timeouts + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk + - ALSA: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: hda: Free card instance properly at probe errors + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: pci: rme: Fix unaligned buffer addresses + - ALSA: PCM: Fix NULL dereference at mmap checks + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - Revert "ext4: enforce buffer head state assertion in ext4_da_map_blocks" + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - ext4: ensure enough credits in ext4_ext_shift_path_extents + - ext4: refresh the ext4_ext_path struct after dropping i_data_sem. + - fuse: fix page stealing + - x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c + - x86/cpu: Fix migration safety with X86_BUG_NULL_SEL + - x86/irq: Ensure PI wakeup handler is unregistered before module unload + - x86/iopl: Fake iopl(3) CLI/STI usage + - btrfs: clear MISSING device status bit in btrfs_close_one_device + - btrfs: fix lost error handling when replaying directory deletes + - btrfs: call btrfs_check_rw_degradable only if there is a missing device + - KVM: x86/mmu: Drop a redundant, broken remote TLB flush + - KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup + - KVM: PPC: Tick accounting should defer vtime accounting 'til after IRQ + handling + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - selinux: fix race condition when computing ocontext SIDs + - ipmi:watchdog: Set panic count to proper value on a panic + - md/raid1: only allocate write behind bio for WriteMostly device + - hwmon: (pmbus/lm25066) Add offset coefficients + - regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is + disabled + - regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default- + dvs-idx property + - EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell + - mwifiex: fix division by zero in fw download path + - ath6kl: fix division by zero in send path + - ath6kl: fix control-message timeout + - ath10k: fix control-message timeout + - ath10k: fix division by zero in send path + - PCI: Mark Atheros QCA6174 to avoid bus reset + - rtl8187: fix control-message timeouts + - evm: mark evm_fixmode as __ro_after_init + - ifb: Depend on netfilter alternatively to tc + - platform/surface: aggregator_registry: Add support for Surface Laptop Studio + - mt76: mt7615: fix skb use-after-free on mac reset + - HID: surface-hid: Use correct event registry for managing HID events + - HID: surface-hid: Allow driver matching for target ID 1 devices + - wcn36xx: Fix HT40 capability for 2Ghz band + - wcn36xx: Fix tx_status mechanism + - wcn36xx: Fix (QoS) null data frame bitrate/modulation + - PM: sleep: Do not let "syscore" devices runtime-suspend during system + transitions + - mwifiex: Read a PCI register after writing the TX ring write pointer + - mwifiex: Try waking the firmware until we get an interrupt + - libata: fix checking of DMA state + - dma-buf: fix and rework dma_buf_poll v7 + - wcn36xx: handle connection loss indication + - rsi: fix occasional initialisation failure with BT coex + - rsi: fix key enabled check causing unwanted encryption for vap_id > 0 + - rsi: fix rate mask set leading to P2P failure + - rsi: Fix module dev_oper_mode parameter description + - perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server + - perf/x86/intel/uncore: Fix invalid unit check + - perf/x86/intel/uncore: Fix Intel ICX IIO event constraints + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - ASoC: tegra: Set default card name for Trimslice + - ASoC: tegra: Restore AC97 support + - signal: Remove the bogus sigkill_pending in ptrace_stop + - memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - soc: samsung: exynos-pmu: Fix compilation when nothing selects + CONFIG_MFD_CORE + - soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id + - soc: fsl: dpio: use the combined functions to protect critical zone + - mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines + - mctp: handle the struct sockaddr_mctp padding fields + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - iio: core: fix double free in iio_device_unregister_sysfs() + - iio: core: check return value when calling dev_set_name() + - KVM: arm64: Extract ESR_ELx.EC only + - KVM: x86: Fix recording of guest steal time / preempted status + - KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - KVM: nVMX: Handle dynamic MSR intercept toggling + - can: peak_usb: always ask for BERR reporting for PCAN-USB devices + - can: mcp251xfd: mcp251xfd_irq(): add missing + can_rx_offload_threaded_irq_finish() in case of bus off + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - iio: adc: tsc2046: fix scan interval warning + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - io_uring: honour zeroes as io-wq worker limits + - ring-buffer: Protect ring_buffer_reset() from reentrancy + - serial: core: Fix initializing and restoring termios speed + - ifb: fix building without CONFIG_NET_CLS_ACT + - xen/balloon: add late_initcall_sync() for initial ballooning done + - ovl: fix use after free in struct ovl_aio_req + - ovl: fix filattr copy-up failure + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - PCI: cadence: Add cdns_plat_pcie_probe() missing return + - cxl/pci: Fix NULL vs ERR_PTR confusion + - PCI: aardvark: Do not clear status bits of masked interrupts + - PCI: aardvark: Fix checking for link up via LTSSM state + - PCI: aardvark: Do not unmask unused interrupts + - PCI: aardvark: Fix reporting Data Link Layer Link Active + - PCI: aardvark: Fix configuring Reference clock + - PCI: aardvark: Fix return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - cifs: To match file servers, make sure the server hostname matches + - cifs: set a minimum of 120s for next dns resolution + - mfd: simple-mfd-i2c: Select MFD_CORE to fix build error + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - coresight: cti: Correct the parameter for pm_runtime_put + - coresight: trbe: Fix incorrect access of the sink specific data + - coresight: trbe: Defer the probe on offline CPUs + - iio: buffer: check return value of kstrdup_const() + - iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() + - drivers: iio: dac: ad5766: Fix dt property name + - iio: dac: ad5446: Fix ad5622_write() return value + - iio: ad5770r: make devicetree property reading consistent + - Documentation:devicetree:bindings:iio:dac: Fix val + - USB: serial: keyspan: fix memleak on probe errors + - serial: 8250: fix racy uartclk update + - ksmbd: set unique value to volume serial field in FS_VOLUME_INFORMATION + - io-wq: serialize hash clear with wakeup + - serial: 8250: Fix reporting real baudrate value in c_ospeed field + - Revert "serial: 8250: Fix reporting real baudrate value in c_ospeed field" + - most: fix control-message timeouts + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - power: supply: max17042_battery: Clear status bits in interrupt handler + - component: do not leave master devres group open after bind + - dma-buf: WARN on dmabuf release with pending attachments + - drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) + - drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 + - drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 + - Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() + - Bluetooth: fix use-after-free error in lock_sock_nested() + - Bluetooth: call sock_hold earlier in sco_conn_del + - drm/panel-orientation-quirks: add Valve Steam Deck + - rcutorture: Avoid problematic critical section nesting on PREEMPT_RT + - platform/x86: wmi: do not fail if disabling fails + - drm/amdgpu: move iommu_resume before ip init/resume + - MIPS: lantiq: dma: add small delay after reset + - MIPS: lantiq: dma: reset correct number of channel + - locking/lockdep: Avoid RCU-induced noinstr fail + - net: sched: update default qdisc visibility after Tx queue cnt changes + - rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - ath11k: Align bss_chan_info structure with firmware + - crypto: aesni - check walk.nbytes instead of err + - x86/mm/64: Improve stack overflow warnings + - x86: Increase exception stack sizes + - mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type + - mwifiex: Properly initialize private structure on interface type changes + - spi: Check we have a spi_device_id for each DT compatible + - fscrypt: allow 256-bit master keys with AES-256-XTS + - drm/amdgpu: Fix MMIO access page fault + - drm/amd/display: Fix null pointer dereference for encoders + - selftests: net: fib_nexthops: Wait before checking reported idle time + - ath11k: Avoid reg rules update during firmware recovery + - ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED + - ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets + - ath10k: high latency fixes for beacon buffer + - octeontx2-pf: Enable promisc/allmulti match MCAM entries. + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - media: atomisp: Fix error handling in probe + - media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() + - media: uvcvideo: Set capability in s_param + - media: uvcvideo: Return -EIO for control errors + - media: uvcvideo: Set unique vdev name based in type + - media: vidtv: Fix memory leak in remove + - media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: videobuf2: rework vb2_mem_ops API + - media: imx: set a media_device bus_info string + - media: rcar-vin: Use user provided buffers when starting + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - rtw88: fix RX clock gate setting while fifo dump + - brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet + - media: rcar-csi2: Add checking to rcsi2_start_receiver() + - ipmi: Disable some operations during a panic + - fs/proc/uptime.c: Fix idle time reporting in /proc/uptime + - kselftests/sched: cleanup the child processes + - ACPICA: Avoid evaluating methods too early during system resume + - cpufreq: Make policy min/max hard requirements + - ice: Move devlink port to PF/VF struct + - media: imx-jpeg: Fix possible null pointer dereference + - media: ipu3-imgu: imgu_fmt: Handle properly try + - media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info + - media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() + - net-sysfs: try not to restart the syscall if it will fail eventually + - drm/amdkfd: rm BO resv on validation to avoid deadlock + - tracefs: Have tracefs directories not set OTH permission bits by default + - tracing: Disable "other" permission bits in the tracefs files + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - KVM: arm64: Propagate errors from __pkvm_prot_finalize hypercall + - mmc: moxart: Fix reference count leaks in moxart_probe + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - ACPI: scan: Release PM resources blocked by unused objects + - drm/amd/display: fix null pointer deref when plugging in display + - drm/amdkfd: fix resume error when iommu disabled in Picasso + - net: phy: micrel: make *-skew-ps check more lenient + - leaking_addresses: Always print a trailing newline + - thermal/core: Fix null pointer dereference in thermal_release() + - drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() + - thermal/drivers/tsens: Add timeout to get_temp_tsens_valid + - block: bump max plugged deferred size from 16 to 32 + - floppy: fix calling platform_device_unregister() on invalid drives + - md: update superblock after changing rdev flags in state_store + - memstick: r592: Fix a UAF bug when removing the driver + - locking/rwsem: Disable preemption for spinning region + - lib/xz: Avoid overlapping memcpy() with invalid input with in-place + decompression + - lib/xz: Validate the value before assigning it to an enum variable + - workqueue: make sysfs of unbound kworker cpumask more clever + - tracing/cfi: Fix cmp_entries_* functions signature mismatch + - mt76: mt7915: fix an off-by-one bound check + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - iwlwifi: change all JnP to NO-160 configuration + - block: remove inaccurate requeue check + - media: allegro: ignore interrupt if mailbox is not initialized + - drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh + - nvmet: fix use-after-free when a port is removed + - nvmet-rdma: fix use-after-free when a port is removed + - nvmet-tcp: fix use-after-free when a port is removed + - nvme: drop scan_lock and always kick requeue list when removing namespaces + - samples/bpf: Fix application of sizeof to pointer + - arm64: vdso32: suppress error message for 'make mrproper' + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - selftests/bpf: Fix perf_buffer test on system with offline cpus + - iwlwifi: mvm: disable RX-diversity in powersave + - smackfs: use __GFP_NOFAIL for smk_cipso_doi() + - ARM: clang: Do not rely on lr register for stacktrace + - gre/sit: Don't generate link-local addr if addr_gen_mode is + IN6_ADDR_GEN_MODE_NONE + - can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to + unsigned int + - gfs2: Cancel remote delete work asynchronously + - gfs2: Fix glock_hash_walk bugs + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - tools/latency-collector: Use correct size when writing queue_full_warning + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - ACPI: AC: Quirk GK45 to skip reading _PSR + - ACPI: resources: Add one more Medion model in IRQ override quirk + - btrfs: reflink: initialize return value to 0 in btrfs_extent_same() + - btrfs: do not take the uuid_mutex in btrfs_rm_device + - spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in + bcm_qspi_probe() + - wcn36xx: Correct band/freq reporting on RX + - wcn36xx: Fix packet drop on resume + - Revert "wcn36xx: Enable firmware link monitoring" + - ftrace: do CPU checking after preemption disabled + - inet: remove races in inet{6}_getname() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled + - perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - erofs: don't trigger WARN() when decompression fails + - parisc/unwind: fix unwinder when CONFIG_64BIT is enabled + - parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling + - netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream + state + - selftests/bpf: Fix strobemeta selftest regression + - fbdev/efifb: Release PCI device's runtime PM ref during FB destroy + - drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() + - perf/x86/intel/uncore: Fix Intel SPR CHA event constraints + - perf/x86/intel/uncore: Fix Intel SPR IIO event constraints + - perf/x86/intel/uncore: Fix Intel SPR M2PCIE event constraints + - perf/x86/intel/uncore: Fix Intel SPR M3UPI event constraints + - drm/bridge: it66121: Initialize {device,vendor}_ids + - drm/bridge: it66121: Wait for next bridge to be probed + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - libbpf: Don't crash on object files with no symbol tables + - Bluetooth: hci_uart: fix GPF in h5_recv + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - MIPS: lantiq: dma: fix burst length for DEU + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - objtool: Handle __sanitize_cov*() tail calls + - net/mlx5: Publish and unpublish all devlink parameters at once + - drm/v3d: fix wait for TMU write combiner flush + - crypto: sm4 - Do not change section of ck and sbox + - virtio-gpu: fix possible memory allocation failure + - lockdep: Let lock_is_held_type() detect recursive read as read + - net: net_namespace: Fix undefined member in key_remove_domain() + - net: phylink: don't call netif_carrier_off() with NULL netdev + - drm: bridge: it66121: Fix return value it66121_probe + - spi: Fixed division by zero warning + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wcn36xx: Fix Antenna Diversity Switching + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - drm/amdgpu: Fix crash on device remove/driver unload + - drm/amd/display: Pass display_pipe_params_st as const in DML + - drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage + - crypto: caam - disable pkc for non-E SoCs + - crypto: qat - power up 4xxx device + - Bluetooth: hci_h5: Fix (runtime)suspend issues on RTL8723BS HCIs + - bnxt_en: Check devlink allocation and registration status + - qed: Don't ignore devlink allocation failures + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - mptcp: do not shrink snd_nxt when recovering + - fortify: Fix dropped strcpy() compile-time write overflow check + - mac80211: twt: don't use potentially unaligned pointer + - cfg80211: always free wiphy specific regdomain + - net/mlx5: Accept devlink user input after driver initialization complete + - net: dsa: rtl8366rb: Fix off-by-one bug + - net: dsa: rtl8366: Fix a bug in deleting VLANs + - bpf/tests: Fix error in tail call limit tests + - ath11k: fix some sleeping in atomic bugs + - ath11k: Avoid race during regd updates + - ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status + - ath11k: Fix memory leak in ath11k_qmi_driver_event_work + - gve: DQO: avoid unused variable warnings + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - ath10k: sdio: Add missing BH locking around napi_schdule() + - drm/ttm: stop calling tt_swapin in vm_access + - arm64: mm: update max_pfn after memory hotplug + - drm/amdgpu: fix warning for overflow check + - libbpf: Fix skel_internal.h to set errno on loader retval < 0 + - media: em28xx: add missing em28xx_close_extension + - media: meson-ge2d: Fix rotation parameter changes detection in + 'ge2d_s_ctrl()' + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: ttusb-dec: avoid release of non-acquired mutex + - media: dvb-usb: fix ununit-value in az6027_rc_query + - media: imx258: Fix getting clock frequency + - media: v4l2-ioctl: S_CTRL output the right value + - media: mtk-vcodec: venc: fix return value when start_streaming fails + - media: TDA1997x: handle short reads of hdmi info frame. + - media: mtk-vpu: Fix a resource leak in the error handling path of + 'mtk_vpu_probe()' + - media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' + - media: i2c: ths8200 needs V4L2_ASYNC + - media: sun6i-csi: Allow the video device to be open multiple times + - media: radio-wl1273: Avoid card name truncation + - media: si470x: Avoid card name truncation + - media: tm6000: Avoid card name truncation + - media: cx23885: Fix snd_card_free call on null card pointer + - media: atmel: fix the ispck initialization + - scs: Release kasan vmalloc poison in scs_free process + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - drm: fb_helper: fix CONFIG_FB dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath10k: Don't always treat modem stop events as crashes + - ath9k: Fix potential interrupt storm on queue reset + - PM: EM: Fix inefficient states detection + - x86/insn: Use get_unaligned() instead of memcpy() + - EDAC/amd64: Handle three rank interleaving mode + - rcu: Always inline rcu_dynticks_task*_{enter,exit}() + - rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr + - netfilter: nft_dynset: relax superfluous check on set updates + - media: venus: fix vpp frequency calculation for decoder + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: ccree - avoid out-of-range warnings from clang + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - ima: fix deadlock when traversing "ima_default_rules". + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - gve: Recover from queue stall due to missed IRQ + - gve: Track RX buffer allocation failures + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - mmc: sdhci-omap: Fix context restore + - memstick: avoid out-of-range warning + - memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() + - net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE + - hwmon: Fix possible memleak in __hwmon_device_register() + - hwmon: (pmbus/lm25066) Let compiler determine outer dimension of + lm25066_coeff + - ath10k: fix max antenna gain unit + - kernel/sched: Fix sched_fork() access an invalid sched_task_group + - net: fealnx: fix build for UML + - net: intel: igc_ptp: fix build for UML + - net: tulip: winbond-840: fix build for UML + - tcp: switch orphan_count to bare per-cpu counters + - crypto: octeontx2 - set assoclen in aead_do_fallback() + - thermal/core: fix a UAF bug in __thermal_cooling_device_register() + - drm/msm/dsi: do not enable irq handler before powering up the host + - drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() + - drm/msm: potential error pointer dereference in init() + - drm/msm: unlock on error in get_sched_entity() + - drm/msm: fix potential NULL dereference in cleanup + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM + - mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done + - media: ivtv: fix build for UML + - media: ir_toy: assignment to be16 should be of correct type + - mmc: mxs-mmc: disable regulator on error and in the remove function + - io-wq: Remove duplicate code in io_workqueue_create() + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mailbox: mtk-cmdq: Validate alias_id on probe + - mailbox: mtk-cmdq: Fix local clock ID usage + - ACPI: PM: Turn off unused wakeup power resources + - ACPI: PM: Fix sharing of wakeup power resources + - drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu + - mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event + - mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb + - mt76: mt7921: fix endianness warning in mt7921_update_txs + - mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi + - mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() + - mt76: connac: fix mt76_connac_gtk_rekey_tlv usage + - mt76: fix build error implicit enumeration conversion + - mt76: mt7921: fix survey-dump reporting + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - mt76: mt7921: Fix out of order process by invalid event pkt + - mt76: mt7915: fix potential overflow of eeprom page index + - mt76: mt7915: fix bit fields for HT rate idx + - mt76: mt7921: fix dma hang in rmmod + - mt76: connac: fix GTK rekey offload failure on WPA mixed mode + - mt76: overwrite default reg_ops if necessary + - mt76: mt7921: report HE MU radiotap + - mt76: mt7921: fix firmware usage of RA info using legacy rates + - mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate + - mt76: mt7921: always wake device if necessary in debugfs + - mt76: mt7915: fix hwmon temp sensor mem use-after-free + - mt76: mt7615: fix hwmon temp sensor mem use-after-free + - mt76: mt7915: fix possible infinite loop release semaphore + - mt76: mt7921: fix retrying release semaphore without end + - mt76: mt7615: fix monitor mode tear down crash + - mt76: connac: fix possible NULL pointer dereference in + mt76_connac_get_phy_mode_v2 + - mt76: mt7915: fix sta_rec_wtbl tag len + - mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - iwlwifi: mvm: reset PM state on unsuccessful resume + - iwlwifi: pnvm: don't kmemdup() more than we have + - iwlwifi: pnvm: read EFI data only if long enough + - net: enetc: unmap DMA in enetc_send_cmd() + - phy: micrel: ksz8041nl: do not use power down mode + - nbd: Fix use-after-free in pid_show + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - x86/sev: Fix stack type check in vc_switch_off_ist() + - drm/msm: Fix potential NULL dereference in DPU SSPP + - drm/msm/dsi: fix wrong type in msm_dsi_host + - crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - KVM: selftests: Fix nested SVM tests when built with clang + - libbpf: Fix memory leak in btf__dedup() + - bpftool: Avoid leaking the JSON writer prepared for program metadata + - libbpf: Fix overflow in BTF sanity checks + - libbpf: Fix BTF header parsing checks + - mt76: mt7615: mt7622: fix ibss and meshpoint + - s390/gmap: validate VMA in __gmap_zap() + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - s390/mm: validate VMA in PGSTE manipulation functions + - s390/mm: fix VMA and page table handling code in storage key handling + functions + - s390/uv: fully validate the VMA before calling follow_page() + - KVM: s390: pv: avoid double free of sida page + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + - irq: mips: avoid nested irq_enter() + - net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error + - ARM: 9142/1: kasan: work around LPAE build warning + - ath10k: fix module load regression with iram-recovery feature + - block: ataflop: more blk-mq refactoring fixes + - blk-cgroup: synchronize blkg creation against policy deactivation + - libbpf: Fix off-by-one bug in bpf_core_apply_relo() + - tpm: fix Atmel TPM crash caused by too frequent queries + - tpm_tis_spi: Add missing SPI ID + - libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - tracing: Fix missing trace_boot_init_histograms kstrdup NULL checks + - cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization + - spi: spi-rpc-if: Check return value of rpcif_sw_init() + - samples/kretprobes: Fix return value if register_kretprobe() failed + - KVM: s390: Fix handle_sske page fault handling + - libertas_tf: Fix possible memory leak in probe and disconnect + - libertas: Fix possible memory leak in probe and disconnect + - wcn36xx: add proper DMA memory barriers in rx path + - wcn36xx: Fix discarded frames due to wrong sequence number + - bpf: Avoid races in __bpf_prog_run() for 32bit arches + - bpf: Fixes possible race in update_prog_stats() for 32bit arches + - wcn36xx: Channel list update before hardware scan + - drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - selftests/bpf: Fix fd cleanup in sk_lookup test + - selftests/bpf: Fix memory leak in test_ima + - sctp: allow IP fragmentation when PLPMTUD enters Error state + - sctp: reset probe_timer in sctp_transport_pl_update + - sctp: subtract sctphdr len in sctp_transport_pl_hlen + - sctp: return true only for pathmtu update in sctp_transport_pl_toobig + - net: amd-xgbe: Toggle PLL settings during rate change + - ipmi: kcs_bmc: Fix a memory leak in the error handling path of + 'kcs_bmc_serio_add_device()' + - nfp: fix NULL pointer access when scheduling dim work + - nfp: fix potential deadlock when canceling dim work + - net: phylink: avoid mvneta warning when setting pause parameters + - net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled + - selftests: net: bridge: update IGMP/MLD membership interval value + - crypto: pcrypt - Delay write to padata->info + - selftests/bpf: Fix fclose/pclose mismatch in test_progs + - udp6: allow SO_MARK ctrl msg to affect routing + - ibmvnic: don't stop queue in xmit + - ibmvnic: Process crqs after enabling interrupts + - ibmvnic: delay complete() + - selftests: mptcp: fix proto type in link_failure tests + - skmsg: Lose offset info in sk_psock_skb_ingress + - cgroup: Fix rootcg cpu.stat guest double counting + - bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off. + - bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit. + - of: unittest: fix EXPECT text for gpio hog errors + - cpufreq: Fix parameter in parse_perf_domain() + - staging: r8188eu: fix memory leak in rtw_set_key + - arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 + - iio: st_sensors: disable regulators after device unregistration + - RDMA/rxe: Fix wrong port_cap_flags + - ARM: dts: BCM5301X: Fix memory nodes names + - arm64: dts: broadcom: bcm4908: Fix UART clock name + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - scsi: pm80xx: Fix lockup in outbound queue management + - scsi: qla2xxx: edif: Use link event to wake up app + - scsi: lpfc: Fix NVMe I/O failover to non-optimized path + - ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() + - arm64: dts: rockchip: Fix GPU register width for RK3328 + - ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY + - RDMA/bnxt_re: Fix query SRQ failure + - arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes + - arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie + node + - arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: meson-g12a: Fix the pwm regulator supply properties + - arm64: dts: meson-g12b: Fix the pwm regulator supply properties + - arm64: dts: meson-sm1: Fix the pwm regulator supply properties + - bus: ti-sysc: Fix timekeeping_suspended warning on resume + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality + - soc: qcom: llcc: Disable MMUHWT retention + - arm64: dts: qcom: sc7280: fix display port phy reg property + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - pinctrl: renesas: rzg2l: Fix missing port register 21h + - ASoC: wcd9335: Use correct version to initialize Class H + - arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock + - arm64: dts: renesas: beacon: Fix Ethernet PHY mode + - iommu/mediatek: Fix out-of-range warning with clang + - arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 + - iommu/dma: Fix sync_sg with swiotlb + - iommu/dma: Fix arch_sync_dma for map + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - ALSA: hda: Use position buffer for SKL+ again + - ALSA: usb-audio: Fix possible race at sync of urb completions + - soundwire: debugfs: use controller id and link_id for debugfs + - power: reset: at91-reset: check properly the return value of devm_of_iomap + - scsi: ufs: core: Fix ufshcd_probe_hba() prototype to match the definition + - scsi: ufs: core: Stop clearing UNIT ATTENTIONS + - scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and + real interrupt + - scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() + - driver core: Fix possible memory leak in device_link_add() + - arm: dts: omap3-gta04a4: accelerometer irq fix + - ASoC: SOF: topology: do not power down primary core during topology removal + - iio: st_pressure_spi: Add missing entries SPI to device ID table + - soc/tegra: Fix an error handling path in tegra_powergate_power_up() + - memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe + - clk: at91: check pmc node status before registering syscore ops + - powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype + for 'create_section_mapping' + - video: fbdev: chipsfb: use memset_io() instead of memset() + - powerpc: fix unbalanced node refcount in check_kvm_guest() + - powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() + - serial: 8250_dw: Drop wrong use of ACPI_PTR() + - usb: gadget: hid: fix error code in do_config() + - power: supply: rt5033_battery: Change voltage values to µV + - power: supply: max17040: fix null-ptr-deref in max17040_probe() + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - usb: musb: select GENERIC_PHY instead of depending on it + - staging: most: dim2: do not double-register the same device + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() + - dyndbg: make dyndbg a known cli param + - powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 + - pinctrl: renesas: checker: Fix off-by-one bug in drive register check + - ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz + - ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx + - ARM: dts: stm32: fix SAI sub nodes register range + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - ASoC: cs42l42: Always configure both ASP TX channels + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - soc: qcom: rpmhpd: Make power_on actually enable the domain + - soc: qcom: socinfo: add two missing PMIC IDs + - iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() + - usb: typec: STUSB160X should select REGMAP_I2C + - iio: adis: do not disabe IRQs in 'adis_init()' + - soundwire: bus: stop dereferencing invalid slave pointer + - scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer + - scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset + - serial: imx: fix detach/attach of serial console + - usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init + - usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled + - usb: dwc2: drd: reset current session before setting the new one + - powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE + - usb: dwc3: gadget: Skip resizing EP's TX FIFO if already resized + - firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() + - soc: qcom: rpmhpd: fix sm8350_mxc's peer domain + - soc: qcom: apr: Add of_node_put() before return + - arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node + - arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly + - arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock + - pinctrl: equilibrium: Fix function addition in multiple groups + - ASoC: topology: Fix stub for snd_soc_tplg_component_remove() + - phy: qcom-qusb2: Fix a memory leak on probe + - phy: ti: gmii-sel: check of_get_address() for failure + - phy: qcom-qmp: another fix for the sc8180x PCIe definition + - phy: qcom-snps: Correct the FSEL_MASK + - phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() + - serial: xilinx_uartps: Fix race condition causing stuck TX + - clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL + - clk: at91: clk-master: check if div or pres is zero + - clk: at91: clk-master: fix prescaler logic + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() + - powerpc/book3e: Fix set_memory_x() and set_memory_nx() + - powerpc/44x/fsp2: add missing of_node_put + - powerpc/xmon: fix task state output + - ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or + later + - iommu/dma: Fix incorrect error return on iommu deferred attach + - powerpc: Don't provide __kernel_map_pages() without + ARCH_SUPPORTS_DEBUG_PAGEALLOC + - ASoC: cs42l42: Correct configuring of switch inversion from ts-inv + - RDMA/hns: Fix initial arm_st of CQ + - RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility + - ASoC: rsnd: Fix an error handling path in 'rsnd_node_count()' + - serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE + - virtio_ring: check desc == NULL when using indirect with packed + - vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - RDMA/core: Require the driver to set the IOVA correctly during rereg_mr + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - mtd: rawnand: intel: Fix potential buffer overflow in probe + - nfsd: don't alloc under spinlock in rpc_parse_scope_id + - rtc: ds1302: Add SPI ID table + - rtc: ds1390: Add SPI ID table + - rtc: pcf2123: Add SPI ID table + - remoteproc: imx_rproc: Fix TCM io memory type + - i2c: i801: Use PCI bus rescan mutex to protect P2SB access + - dmaengine: idxd: move out percpu_ref_exit() to ensure it's outside + submission + - rtc: mcp795: Add SPI ID table + - Input: ariel-pwrbutton - add SPI device ID table + - i2c: mediatek: fixing the incorrect register offset + - NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED + - NFS: Don't set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA + - NFS: Ignore the directory size when marking for revalidation + - NFS: Fix dentry verifier races + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - drm/bridge/lontium-lt9611uxc: fix provided connector suport + - drm/plane-helper: fix uninitialized variable reference + - PCI: aardvark: Don't spam about PIO Response Status + - PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge + - opp: Fix return in _opp_add_static_v2() + - NFS: Fix deadlocks in nfs_scan_commit_list() + - sparc: Add missing "FORCE" target when using if_changed + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - Input: st1232 - increase "wait ready" timeout + - drm/bridge: nwl-dsi: Add atomic_get_input_bus_fmts + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation + - mtd: rawnand: arasan: Prevent an unsupported configuration + - mtd: core: don't remove debugfs directory if device is in use + - remoteproc: Fix a memory leak in an error handling path in + 'rproc_handle_vdev()' + - rtc: rv3032: fix error handling in rv3032_clkout_set_rate() + - dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - dmaengine: stm32-dma: fix stm32_dma_get_max_width + - NFS: Fix up commit deadlocks + - NFS: Fix an Oops in pnfs_mark_request_commit() + - Fix user namespace leak + - auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string + - auxdisplay: ht16k33: Connect backlight to fbdev + - auxdisplay: ht16k33: Fix frame buffer device blanking + - soc: fsl: dpaa2-console: free buffer before returning from + dpaa2_console_read + - netfilter: nfnetlink_queue: fix OOB when mac header was cleared + - dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` + - dmaengine: tegra210-adma: fix pm runtime unbalance + - dmanegine: idxd: fix resource free ordering on driver removal + - dmaengine: idxd: reconfig device after device reset command + - signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) + - m68k: set a default value for MEMORY_RESERVE + - watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT + - ar7: fix kernel builds for compiler test + - scsi: target: core: Remove from tmr_list during LUN unlink + - scsi: qla2xxx: Relogin during fabric disturbance + - scsi: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - scsi: qla2xxx: edif: Fix app start fail + - scsi: qla2xxx: edif: Fix app start delay + - scsi: qla2xxx: edif: Flush stale events and msgs on session down + - scsi: qla2xxx: edif: Increase ELS payload + - scsi: qla2xxx: edif: Fix EDIF bsg + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - dmaengine: idxd: fix resource leak on dmaengine driver disable + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - gpio: realtek-otto: fix GPIO line IRQ offset + - xen-pciback: Fix return in pm_ctrl_init() + - nbd: fix max value for 'first_minor' + - nbd: fix possible overflow for 'first_minor' in nbd_dev_add() + - io-wq: fix max-workers not correctly set on multi-node system + - net: davinci_emac: Fix interrupt pacing disable + - kselftests/net: add missed icmp.sh test to Makefile + - kselftests/net: add missed setup_loopback.sh/setup_veth.sh to Makefile + - kselftests/net: add missed SRv6 tests + - kselftests/net: add missed vrf_strict_mode_test.sh test to Makefile + - kselftests/net: add missed toeplitz.sh/toeplitz_client.sh to Makefile + - ethtool: fix ethtool msg len calculation for pause stats + - openrisc: fix SMP tlb flush NULL pointer dereference + - net: vlan: fix a UAF in vlan_dev_real_dev() + - net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge + - ice: Fix replacing VF hardware MAC to existing MAC filter + - ice: Fix not stopping Tx queues for VFs + - kdb: Adopt scheduler's task classification + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - PCI: j721e: Fix j721e_pcie_probe() error path + - nvdimm/btt: do not call del_gendisk() if not needed + - scsi: bsg: Fix errno when scsi_bsg_register_queue() fails + - scsi: ufs: ufshpb: Use proper power management API + - scsi: ufs: core: Fix NULL pointer dereference + - scsi: ufs: ufshpb: Properly handle max-single-cmd + - drm/nouveau/svm: Fix refcount leak bug and missing check against null bug + - nvdimm/pmem: cleanup the disk if pmem_release_disk() is yet assigned + - block/ataflop: use the blk_cleanup_disk() helper + - block/ataflop: add registration bool before calling del_gendisk() + - block/ataflop: provide a helper for cleanup up an atari disk + - ataflop: remove ataflop_probe_lock mutex + - PCI: Do not enable AtomicOps on VFs + - cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline + - net: phy: fix duplex out of sync problem while changing settings + - block: fix device_add_disk() kobject_create_and_add() error handling + - drm/ttm: remove ttm_bo_vm_insert_huge() + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - octeontx2-pf: select CONFIG_NET_DEVLINK + - ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer + - mfd: core: Add missing of_node_put for loop iteration + - mfd: cpcap: Add SPI device ID table + - mfd: sprd: Add SPI device ID table + - mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion + - ACPI: PM: Fix device wakeup power reference counting error + - libbpf: Fix lookup_and_delete_elem_flags error reporting + - selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder + - selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number + - selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly + - selftests/bpf/xdp_redirect_multi: Limit the tests in netns + - drm: fb_helper: improve CONFIG_FB dependency + - Revert "drm/imx: Annotate dma-fence critical section in commit path" + - drm/amdgpu/powerplay: fix sysfs_emit/sysfs_emit_at handling + - can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path + - can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for + mcp251xfd_chip_rx_int_enable() + - mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and + zs_unregister_migration() + - zram: off by one in read_block_state() + - perf bpf: Add missing free to bpf_event__print_bpf_prog_info() + - llc: fix out-of-bound array index in llc_sk_dev_hash() + - nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails + - litex_liteeth: Fix a double free in the remove function + - arm64: arm64_ftr_reg->name may not be a human-readable string + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf, sockmap: Remove unhash handler for BPF sockmap usage + - bpf, sockmap: Fix race in ingress receive verdict with redirect to self + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg + - dmaengine: stm32-dma: fix burst in case of unaligned memory address + - dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width + - gve: Fix off by one in gve_tx_timeout() + - drm/i915/fb: Fix rounding error in subsampled plane size calculation + - init: make unknown command line param message clearer + - seq_file: fix passing wrong private data + - drm/amdgpu: fix uvd crash on Polaris12 during driver unloading + - net: dsa: mv88e6xxx: Don't support >1G speeds on 6191X on ports other than + 10 + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: fix ROCE base interrupt vector initialization bug + - net: hns3: fix pfc packet number incorrect after querying pfc parameters + - net: hns3: fix kernel crash when unload VF while it is being reset + - net: hns3: allow configure ETS bandwidth of all TCs + - net: stmmac: allow a tc-taprio base-time of zero + - net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory + - net: marvell: mvpp2: Fix wrong SerDes reconfiguration order + - vsock: prevent unnecessary refcnt inc for nonblocking connect + - net/smc: fix sk_refcnt underflow on linkdown and fallback + - cxgb4: fix eeprom len when diagnostics not implemented + - selftests/net: udpgso_bench_rx: fix port argument + - thermal: int340x: fix build on 32-bit targets + - smb3: do not error on fsync when readonly + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix backtrace to always include init funtion names + - parisc: Flush kernel data mapping in set_pte_at() when installing pte for + user page + - MIPS: fix duplicated slashes for Platform file path + - MIPS: fix *-pkg builds for loongson2ef platform + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - x86/mce: Add errata workaround for Skylake SKX37 + - PCI/MSI: Move non-mask check back into low level accessors + - PCI/MSI: Destroy sysfs before freeing entries + - KVM: x86: move guest_pv_has out of user_access section + - posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - f2fs: include non-compressed blocks in compr_written_block + - f2fs: fix UAF in f2fs_available_free_memory + - ceph: fix mdsmap decode when there are MDS's beyond max_mds + - erofs: fix unsafe pagevec reuse of hooked pclusters + - drm/i915/guc: Fix blocked context accounting + - block: Hold invalidate_lock in BLKDISCARD ioctl + - block: Hold invalidate_lock in BLKZEROOUT ioctl + - block: Hold invalidate_lock in BLKRESETZONE ioctl + - ksmbd: Fix buffer length check in fsctl_validate_negotiate_info() + - ksmbd: don't need 8byte alignment for request length in ksmbd_check_message + - dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail + - dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if request fail + - dmaengine: bestcomm: fix system boot lockups + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - mm/filemap.c: remove bogus VM_BUG_ON + - memcg: prohibit unconditional exceeding the limit of dying tasks + - mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks + - mm, oom: do not trigger out_of_memory from the #PF + - mm, thp: lock filemap when truncating page cache + - mm, thp: fix incorrect unmap behavior for private pages + - mfd: dln2: Add cell for initializing DLN2 ADC + - video: backlight: Drop maximum brightness override for brightness zero + - bcache: fix use-after-free problem in bcache_device_free() + - bcache: Revert "bcache: use bvec_virt" + - PM: sleep: Avoid calling put_device() under dpm_list_mtx + - s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/ap: Fix hanging ioctl caused by orphaned replies + - s390/cio: make ccw_device_dma_* more robust + - remoteproc: elf_loader: Fix loading segment when is_iomem true + - remoteproc: Fix the wrong default value of is_iomem + - remoteproc: imx_rproc: Fix ignoring mapping vdev regions + - remoteproc: imx_rproc: Fix rsc-table name + - mtd: rawnand: fsmc: Fix use of SM ORDER + - mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: xway: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: mpc5121: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: gpio: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: pasemi: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: orion: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: plat_nand: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: au1550nd: Keep the driver compatible with on-die ECC engines + - powerpc/vas: Fix potential NULL pointer dereference + - powerpc/bpf: Fix write protecting JIT code + - powerpc/32e: Ignore ESR in instruction storage interrupt handler + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - powerpc/security: Use a mutex for interrupt exit code patching + - powerpc/64s/interrupt: Fix check_return_regs_valid() false positive + - powerpc/pseries/mobility: ignore ibm, platform-facilities updates + - powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n + - drm/sun4i: Fix macros in sun8i_csc.h + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - PCI: aardvark: Fix PCIe Max Payload Size setting + - SUNRPC: Partial revert of commit 6f9f17287e78 + - drm/amd/display: Look at firmware version to determine using dmub on dcn21 + - media: vidtv: move kfree(dvb) to vidtv_bridge_dev_release() + - cifs: fix memory leak of smb3_fs_context_dup::server_hostname + - ath10k: fix invalid dma_addr_t token assignment + - mmc: moxart: Fix null pointer dereference on pointer host + - selftests/x86/iopl: Adjust to the faked iopl CLI/STI usage + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - arch/cc: Introduce a function to check for confidential computing features + - x86/sev: Add an x86 version of cc_platform_has() + - x86/sev: Make the #VC exception stacks part of the default stacks storage + - media: videobuf2: always set buffer vb2 pointer + - media: videobuf2-dma-sg: Fix buf->vb NULL pointer dereference + - Linux 5.15.3 + + * kernel panic: NULL pointer dereference in wb_timer_f() (LP: #1947557) // + Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - blk-wbt: prevent NULL pointer dereference in wb_timer_fn + + * Medion Notebook Keyboard not working (LP: #1909814) // Jammy update: v5.15.3 + upstream stable release (LP: #1951822) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + + * Enable CONFIG_INTEL_IOMMU_DEFAULT_ON and + CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON on jammy 5.15 (LP: #1951440) + - [Config] enable Intel DMA remapping options by default + + * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled + (LP: #1945590) + - SAUCE: Input: elantech - Fix stack out of bound access in + elantech_change_report_id() + + * Miscellaneous Ubuntu changes + - SAUCE: LSM: Specify which LSM to display (using struct cred as input) + - SAUCE: selftests/seccomp: fix check of fds being assigned + - [Config] enable SUNRPC_DISABLE_INSECURE_ENCTYPES + - [Config] updateconfigs following v5.15.3, v5.15.4 import + + * Miscellaneous upstream changes + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - Revert "UBUNTU: SAUCE: storvsc: use small sg_tablesize on x86" + + -- Paolo Pisati Mon, 22 Nov 2021 13:14:15 +0100 + +linux (5.15.0-11.11) jammy; urgency=medium + + * jammy/linux: 5.15.0-11.11 -proposed tracker (LP: #1950948) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * OOPs on boot: invalid opcode: 0000 [#1] SMP NOPTI (LP: #1942215) + - SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT + - [Config] disable UBSAN + - SAUCE: ACPICA: avoid accessing operands out-of-bounds + + * Jammy update: v5.15.2 upstream stable release (LP: #1950949) + - KVM: x86: avoid warning with -Wbitwise-instead-of-logical + - Revert "x86/kvm: fix vcpu-id indexed array sizes" + - usb: ehci: handshake CMD_RUN instead of STS_HALT + - usb: gadget: Mark USB_FSL_QE broken on 64-bit + - usb: musb: Balance list entry in musb_gadget_queue + - usb-storage: Add compatibility quirk flags for iODD 2531/2541 + - Revert "proc/wchan: use printk format instead of lookup_symbol_name()" + - binder: use euid from cred instead of using task + - binder: don't detect sender/target during buffer cleanup + - kfence: always use static branches to guard kfence_alloc() + - kfence: default to dynamic branch instead of static keys mode + - btrfs: fix lzo_decompress_bio() kmap leakage + - staging: rtl8712: fix use-after-free in rtl8712_dl_fw + - isofs: Fix out of bound access for corrupted isofs image + - comedi: dt9812: fix DMA buffers on stack + - comedi: ni_usb6501: fix NULL-deref in command paths + - comedi: vmk80xx: fix transfer-buffer overflows + - comedi: vmk80xx: fix bulk-buffer overflow + - comedi: vmk80xx: fix bulk and interrupt message timeouts + - staging: r8712u: fix control-message timeout + - staging: rtl8192u: fix control-message timeouts + - staging: r8188eu: fix memleak in rtw_wx_set_enc_ext + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.15.2 + + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + + * Miscellaneous Ubuntu changes + - packaging: switch getabis to the linux package name + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (no-up) rename the adv7511 drm driver to adv7511_drm" + - Revert "UBUNTU: SAUCE: drm/i915/dp: Use max params for older panels" + - Revert "UBUNTU: SAUCE: i915: Fix build error due to missing struct + definition" + - selftests/core: fix conflicting types compile error for close_range() + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + - Revert "UBUNTU: SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT" + + -- Paolo Pisati Mon, 15 Nov 2021 10:12:47 +0100 + +linux (5.15.0-10.10) jammy; urgency=medium + + * jammy/linux: 5.15.0-10.10 -proposed tracker (LP: #1950133) + + * Jammy update: v5.15.1 upstream stable release (LP: #1950131) + - sfc: Fix reading non-legacy supported link modes + - media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() + - Revert "xhci: Set HCD flag to defer primary roothub registration" + - Revert "usb: core: hcd: Add support for deferring roothub registration" + - drm/amdkfd: fix boot failure when iommu is disabled in Picasso. + - Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Revert "wcn36xx: Disable bmps when encryption is disabled" + - drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" + - drm/amd/display: Revert "Directly retrain link from debugfs" + - Revert "drm/i915/gt: Propagate change in error status to children on unhold" + - ALSA: usb-audio: Add quirk for Audient iD14 + - Linux 5.15.1 + + * Miscellaneous Ubuntu changes + - packaging: fixup previous ABI/spin to -9.9 + - [Packaging] Drop unused d-i build-deps and packaging + - [Packaging] Drop now unsupported d-i/ input files + + * Miscellaneous upstream changes + - selftests: net: properly support IPv6 in GSO GRE test + - signal: Add SA_IMMUTABLE to ensure forced siganls do not get changed + + -- Paolo Pisati Mon, 08 Nov 2021 14:43:24 +0100 + +linux (5.15.0-9.9) jammy; urgency=medium + + * jammy/linux: 5.15.0-1.1 -proposed tracker (LP: #1949876) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + + * Add F81966 watchdog support (LP: #1949063) + - SAUCE: ODM: watchdog: f71808e_wdt: Add F81966 support + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/misc/insert-changes.pl in Python + - [Packaging] change source package name to linux + + -- Andrea Righi Thu, 04 Nov 2021 18:47:19 +0100 + +linux (5.15.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Thu, 04 Nov 2021 16:47:16 +0100 + +linux-unstable (5.15.0-8.8) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-8.8 -proposed tracker (LP: #1949436) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Drop "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" (LP: #1947709) + - Revert "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" + + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add fips-checks as part of finalchecks + + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + + * Can only reach PC3 when ethernet is plugged r8169 (LP: #1946433) + - r8169: Enable chip-specific ASPM regardless of PCIe ASPM status + - PCI/ASPM: Introduce a new helper to report ASPM capability + - r8169: Implement dynamic ASPM mechanism + + * rtw89 kernel module for Realtek 8852 wifi is missing (LP: #1945967) + - rtw89: add Realtek 802.11ax driver + - rtw89: Remove redundant check of ret after call to rtw89_mac_enable_bb_rf + - rtw89: fix return value check in rtw89_cam_send_sec_key_cmd() + - rtw89: remove unneeded semicolon + - [Config] RTW89=m + + * Fix A yellow screen pops up in an instant (< 1 second) and then disappears + before loading the system (LP: #1945932) + - drm/i915: Stop force enabling pipe bottom color gammma/csc + + * disable CONFIG_KFENCE_STATIC_KEYS in linux 5.15 (LP: #1948038) + - [Config] disable CONFIG_KFENCE_STATIC_KEYS + + * Miscellaneous Ubuntu changes + - [Debian] Remove old and unused firmware helper scripts + - [Packaging] Replace Perl oneliner with Bash statements + - rebase to v5.15 + + [ Upstream Kernel Changes ] + + * Rebase to v5.15 + + -- Paolo Pisati Tue, 02 Nov 2021 08:29:45 +0100 + +linux-unstable (5.15.0-7.7) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-7.7 -proposed tracker (LP: #1948770) + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - packaging: switch release to Jammy + - rebase to v5.15-rc7 + - [Config] GCC version update + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc7 + + -- Paolo Pisati Tue, 26 Oct 2021 11:38:14 +0200 + +linux-unstable (5.15.0-6.6) jammy; urgency=medium + + * impish/linux-unstable: 5.15.0-6.6 -proposed tracker (LP: #1947565) + + * [impish] Remove the downstream xr-usb-uart driver (LP: #1945938) + - SAUCE: xr-usb-serial: remove driver + - [Config] update modules list + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc6 + - [Config] update config & annotations following v5.15-rc6 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: xr-usb-serial: switch to tty_alloc_driver() and + tty_driver_kref_put()" + - Revert "UBUNTU: SAUCE: xr-usb-serial: update return code for + xr_usb_serial_tty_write_room() and xr_usb_serial_tty_chars_in_buffer()" + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc6 + + -- Paolo Pisati Mon, 18 Oct 2021 12:24:45 +0200 + +linux-unstable (5.15.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-5.5 -proposed tracker (LP: #1946338) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc5 + - [Config] FB_SIMPLE=m + - [Config] update annotations + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc5 + + -- Paolo Pisati Mon, 11 Oct 2021 12:14:02 +0200 + +linux-unstable (5.15.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-4.4 -proposed tracker (LP: #1945953) + + * Fix missing HDMI audio on Intel RKL (LP: #1945556) + - drm/i915/audio: Use BIOS provided value for RKL HDA link + + * Miscellaneous Ubuntu changes + - SAUCE: media: atomisp: add missing return type (fix -Werror=return-type) + - SAUCE: xr-usb-serial: switch to tty_alloc_driver() and tty_driver_kref_put() + - rebase to v5.15-rc4 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable INTEL_ATOMISP" + - Revert "UBUNTU: [Config] FTBFS: disable xr-usb-serial" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc4 + + -- Paolo Pisati Mon, 04 Oct 2021 10:52:41 +0200 + +linux-unstable (5.15.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-3.3 -proposed tracker (LP: #1944944) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc3 + - [Config] updateconfigs following v5.15-rc3 rebase + - [Packaging] correctly evaluate release in update-dkms-versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc3 + + -- Paolo Pisati Mon, 27 Sep 2021 16:48:03 +0200 + +linux-unstable (5.15.0-2.2) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-2.2 -proposed tracker (LP: #1944423) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc2 + - [Config] updateconfigs following v5.15-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc2 + + -- Paolo Pisati Tue, 21 Sep 2021 11:46:59 +0200 + +linux-unstable (5.15.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + + * Miscellaneous Ubuntu changes + - [Packaging] remove remaining references to ports + - [Packaging] drop x32 architecture configs + - [Config] mark CONFIG_BPF_UNPRIV_DEFAULT_OFF enforced + - [Packaging] bump kernel version to 5.15 + - rebase to v5.15-rc1 + - [Config] updateconfigs following v5.15-rc1 rebase + - [Config] FTBFS: disable INTEL_ATOMISP + - [Config] FTBFS: disable xr-usb-serial + - [Packaging] FTBFS: disable zfs + + * Miscellaneous upstream changes + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - Revert "UBUNTU: SAUCE: RDMA/core: Introduce peer memory interface" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc1 + + -- Paolo Pisati Fri, 17 Sep 2021 11:42:25 +0200 + +linux-unstable (5.15.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Wed, 15 Sep 2021 11:54:10 +0200 + +linux-unstable (5.14.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-9.9 -proposed tracker (LP: #1943022) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] NVIDIA -- Add the NVIDIA 470 driver + - [Packaging] NVIDIA: transition -460 and -465 to -470, transition -460-server + to -470-server + + * Miscellaneous upstream changes + - vt_kdsetmode: extend console locking + - Bluetooth: btusb: check conditions before enabling USB ALT 3 for WBS + - net: dsa: mt7530: fix VLAN traffic leaks again + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - fscrypt: add fscrypt_symlink_getattr() for computing st_size + - ext4: report correct st_size for encrypted symlinks + - f2fs: report correct st_size for encrypted symlinks + - ubifs: report correct st_size for encrypted symlinks + - net: don't unconditionally copy_from_user a struct ifreq for socket ioctls + - audit: move put_tree() to avoid trim_trees refcount underflow and UAF + - Linux 5.14.1 + + -- Paolo Pisati Wed, 08 Sep 2021 12:20:18 +0200 + +linux-unstable (5.14.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-8.8 -proposed tracker (LP: #1941887) + + * Fix Intel AC9560 BT function cannot turn on if BT turn off before S3 entry + (LP: #1941696) + - SAUCE: Bluetooth: btusb: add a reject table to disable msft + + * Add USB4 support for AMD SoC (LP: #1941036) + - thunderbolt: Add vendor specific NHI quirk for auto-clearing interrupt + status + - thunderbolt: Handle ring interrupt by reading interrupt status register + - thunderbolt: Do not read control adapter config space + - thunderbolt: Fix port linking by checking all adapters + + * Support builtin revoked certificates (LP: #1932029) + - [Config] Enforce SYSTEM_TRUSTED_KEYS and SYSTEM_REVOCATION_KEYS + + * GPIO error logs in start and dmesg after update of kernel (LP: #1937897) + - ODM: mfd: Check AAEON BFPI version before adding device + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] enforce ZSTD compression + + * Miscellaneous Ubuntu changes + - rebase to v5.14 + - [Config] RESET_MCHP_SPARX5 depends on ARCH_SPARX5 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14 + + -- Paolo Pisati Mon, 30 Aug 2021 12:57:19 +0200 + +linux-unstable (5.14.0-7.7) impish; urgency=medium + + * Please enable CONFIG_UBSAN_BOUNDS (LP: #1914685) + - [Config] Enable CONFIG_UBSAN_BOUNDS + + * CONFIG_HARDENED_USERCOPY_FALLBACK should be disabled (LP: #1855340) + - [Config] Disable CONFIG_HARDENED_USERCOPY_FALLBACK + + * fs: removing mandatory locks (LP: #1940392) + - [Config] Disable CONFIG_MANDATORY_FILE_LOCKING + + * Fix kernel panic caused by legacy devices on AMD platforms (LP: #1936682) + - SAUCE: iommu/amd: Keep swiotlb enabled to ensure devices with 32bit DMA + still work + + * ALSA: hda/cs8409: Add support for dolphin (LP: #1939541) + - ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module + - ALSA: hda/cs8409: Move arrays of configuration to a new file + - ALSA: hda/cs8409: Use enums for register names and coefficients + - ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization + - ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg + - ALSA: hda/cs8409: Disable unnecessary Ring Sense for Cyborg/Warlock/Bullseye + - ALSA: hda/cs8409: Disable unsolicited responses during suspend + - ALSA: hda/cs8409: Disable unsolicited response for the first boot + - ALSA: hda/cs8409: Mask CS42L42 wake events + - ALSA: hda/cs8409: Simplify CS42L42 jack detect. + - ALSA: hda/cs8409: Prevent I2C access during suspend time + - ALSA: hda/cs8409: Generalize volume controls + - ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses + - ALSA: hda/cs8409: Avoid setting the same I2C address for every access + - ALSA: hda/cs8409: Avoid re-setting the same page as the last access + - ALSA: hda/cs8409: Support i2c bulk read/write functions + - ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions + - ALSA: hda/cs8409: Move codec properties to its own struct + - ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol + events + - ALSA: hda/cs8409: Add Support to disable jack type detection for CS42L42 + - ALSA: hda/cs8409: Add support for dolphin + - ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on Dolphin + - ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 + - ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction waits + - ALSA: hda/cs8409: Remove unnecessary delays + - ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for suspend + - ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops + - ALSA: hda/cs8409: Prevent pops and clicks during suspend + - SAUCE: ALSA: hda/cs8409: Prevent pops and clicks during reboot + - [Config] Enable Cirrus Logic HDA bridge support + + * e1000e: add handshake with the Intel CSME to support S0ix (LP: #1937252) + - SAUCE: e1000e: Add handshake with the CSME to support S0ix + - SAUCE: e1000e: Add polling mechanism to indicate CSME DPG exit + - SAUCE: e1000e: Additional PHY power saving in S0ix + + * AMDGPU: Fix System hang after resume from suspend (LP: #1940204) + - SAUCE: drm/amdgpu: disable BACO support for 699F:C7 polaris12 SKU + temporarily + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc7 + - [Config] updateconfigs following 5.14-rc7 rebase + - [Config] Enable CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT + - [Config] annotations: set CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT to y + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] annotations: set + CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y" + - Revert "UBUNTU: [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to + y" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc7 + + -- Paolo Pisati Tue, 24 Aug 2021 10:32:31 +0200 + +linux-unstable (5.14.0-6.6) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - no changes upload (to avoid picking up libc6 from -proposed) + + * No changes upload (to avoid picking up libc6 from -proposed) + + -- Paolo Pisati Wed, 18 Aug 2021 13:41:16 +0200 + +linux-unstable (5.14.0-5.5) impish; urgency=medium + + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - [Config] Disable CONFIG_HISI_DMA + + * Dell XPS 17 (9710) PCI/internal sound card not detected (LP: #1935850) + - ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode + - ASoC: Intel: sof_sdw: add quirk for Dell XPS 9710 + + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + + * armhf build failure (LP: #1939308) + - SAUCE: arm: Fix instruction set selection for GCC 11 + + * REGRESSION: shiftfs lets sendfile fail with EINVAL (LP: #1939301) + - SAUCE: shiftfs: fix sendfile() invocations + + * Wobbly graphics on built-in display since linux-image-5.11.0-22-generic + (LP: #1936708) + - SAUCE: drm/i915/dp: Use max params for older panels + + * [SRU][H/OEM-5.10/OEM-5.13/U] Fix system hang after unplug tbt dock + (LP: #1938689) + - SAUCE: igc: fix page fault when thunderbolt is unplugged + + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - SAUCE: e1000e: Do not take care about recovery NVM checksum + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + - [Config] annotations: set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following 5.14-rc6 rebase + - rebase to v5.14-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc6 + + -- Paolo Pisati Tue, 17 Aug 2021 17:49:15 +0200 + +linux-unstable (5.14.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-4.4 -proposed tracker (LP: #1938566) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous upstream changes + - Revert "riscv: Get CPU manufacturer information" + + -- Paolo Pisati Tue, 03 Aug 2021 14:50:27 +0200 + +linux-unstable (5.14.0-3.3) impish; urgency=medium + + * Add additional Mediatek MT7921 WiFi/BT device IDs (LP: #1937004) + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for Foxconn + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for IMC Network + - SAUCE: Bluetooth: btusb: Add support for Foxconn Mediatek Chip + + * Fix display output on HP hybrid GFX laptops (LP: #1936296) + - drm/i915: Invoke another _DSM to enable MUX on HP Workstation laptops + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc3 + - [Config] updateconfigs following 5.14-rc3 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc3 + + -- Paolo Pisati Mon, 26 Jul 2021 12:52:38 +0200 + +linux-unstable (5.14.0-2.2) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: xr-usb-serial: update return code for xr_usb_serial_tty_write_room() + and xr_usb_serial_tty_chars_in_buffer() + - SAUCE: platform/x86: dell-uart-backlight: update return code for + uart_chars_in_buffer(() + - [Config] updateconfigs following 5.14-rc2 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable ubuntu/xr-usb-serial" + - Revert "UBUNTU: [Config] FTBFS: disable DELL_UART_BACKLIGHT" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc2 + + -- Paolo Pisati Thu, 22 Jul 2021 11:03:28 +0200 + +linux-unstable (5.14.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] bump kernel version to 5.14 + - [Config] updateconfigs following 5.14-rc1 rebase + - [Config] update annotations + - [Packaging] FTBFS: disable zfs + - [Config] FTBFS: disable DELL_UART_BACKLIGHT + - [Config] FTBFS: disable ubuntu/xr-usb-serial + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] update variants" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc1 + + -- Paolo Pisati Fri, 16 Jul 2021 15:20:04 +0200 + +linux-unstable (5.14.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Tue, 13 Jul 2021 12:15:35 +0200 + +linux (5.13.0-11.11) impish; urgency=medium + + * impish/linux: 5.13.0-11.11 -proposed tracker (LP: #1933854) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support builtin revoked certificates (LP: #1932029) + - [Packaging] build canonical-revoked-certs.pem from branch/arch certs + - [Packaging] Revoke 2012 UEFI signing certificate as built-in + - [Config] Configure CONFIG_SYSTEM_REVOCATION_KEYS with revoked keys + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package name to linux + + * Miscellaneous upstream changes + - mm/page_alloc: Correct return value of populated elements if bulk array is + populated + + -- Andrea Righi Tue, 29 Jun 2021 07:50:25 +0200 + +linux (5.13.0-10.10) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-10.10) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-10.10 -proposed tracker (LP: #1933795) + + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - s390/decompressor: correct BOOT_HEAP_SIZE condition + - s390/boot: add zstd support + - [Packaging] use ZSTD to compress s390 kernels + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: tls: fix chacha+bidir tests + - SAUCE: selftests: icmp_redirect: support expected failures + - [Config] update configs and annotations after rebase to 5.13 + + * Miscellaneous upstream changes + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + + [ Upstream Kernel Changes ] + + * Rebase to v5.13 + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-9.9 -proposed tracker (LP: #1933070) + + * Add support for selective build of special drivers (LP: #1912789) + - [Packaging] Add support for ODM drivers + - [Packaging] Turn on ODM support for amd64 + - [Packaging] Fix ODM support in actual build + - [Packaging] Fix ODM DRIVERS Kconfig + + * Add support for IO functions of AAEON devices (LP: #1929504) + - ODM: [Config] update config for AAEON devices + - ODM: hwmon: add driver for AAEON devices + - ODM: leds: add driver for AAEON devices + - ODM: watchdog: add driver for AAEON devices + - ODM: gpio: add driver for AAEON devices + - ODM: mfd: Add support for IO functions of AAEON devices + + * Disable hv-kvp-daemon.service on certain instance types (LP: #1932081) + - [Packaging]: Add kernel command line condition to hv-kvp-daemon service + + * Fix non-working GPU on Some HP desktops (LP: #1931147) + - PCI: Coalesce host bridge contiguous apertures + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: seccomp: bump up timeout to 5min + - SAUCE: Revert "net/tls(TLS_SW): Add selftest for 'chunked' sendfile test" + - [Config] update annotations after rebase to 5.13-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc7 + + -- Andrea Righi Mon, 21 Jun 2021 10:55:36 +0200 + +linux-unstable (5.13.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-8.8 -proposed tracker (LP: #1932018) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] use ZSTD to compress amd64 kernels + + * Miscellaneous Ubuntu changes + - [Config] enable signing for ppc64el + - SAUCE: powerpc: Fix initrd corruption with relative jump labels + + -- Andrea Righi Tue, 15 Jun 2021 15:07:34 +0200 + +linux-unstable (5.13.0-7.7) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-7.7 -proposed tracker (LP: #1931840) + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] resync getabis + - [Packaging] update helper scripts + - update dkms package versions + + * Intel ADL-S graphics feature enabling (LP: #1931240) + - SAUCE: drm/i915/adl_s: ADL-S platform Update PCI ids for Mobile BGA + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + + * Miscellaneous Ubuntu changes + - [Debian] remove nvidia dkms build support + - [Config] remove now unsued do_dkms_nvidia* build variables + - [Config] enable signing for s390x + - [Config] update annotations after configs review + - [Config] update toolchain versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc6 + + -- Andrea Righi Mon, 14 Jun 2021 11:53:08 +0200 + +linux-unstable (5.13.0-6.6) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-6.6 -proposed tracker (LP: #1931071) + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Debian] use stamps for flavour install targets + - [Debian] run install-$(flavour) targets during build phase + - [Debian] remove dh_testroot from install targets + - [Debian] dkms-build -- use fakeroot if not running as root + - [Debian] exclude $(DEBIAN)/__abi.current from linux-source + + * [UBUNTU 21.04] tools/kvm_stat: Add restart delay (LP: #1921870) + - [Debian] install kvm_stat systemd service + + * Debugging symbols (dbgsym) packages are missing GDB kernel scripts + (LP: #1928715) + - [Packaging] Build and include GDB Python scripts into debug packages + + * Can't detect intel wifi 6235 (LP: #1920180) + - SAUCE: iwlwifi: add new pci id for 6235 + + * Select correct boot VGA when BIOS doesn't do it properly (LP: #1929217) + - vgaarb: Use ACPI HID name to find integrated GPU + + * Fix kernel panic on Intel Bluetooth (LP: #1928838) + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + + * build module CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m for 5.11, 5.13-rc2 + and later (LP: #1921632) + - [Config] enable soundwire audio mach driver + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SND_SOC_RT1308 can only be enabled on amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc5 + + -- Andrea Righi Mon, 07 Jun 2021 10:45:13 +0200 + +linux-unstable (5.13.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-5.5 -proposed tracker (LP: #1930205) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Andrea Righi Mon, 31 May 2021 12:32:38 +0200 + +linux-unstable (5.13.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-4.4 -proposed tracker (LP: #1929404) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - SAUCE: integrity: add informational messages when revoking certs + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) // CVE-2020-26541 when certificates are revoked via + MokListXRT. + - SAUCE: integrity: Load mokx certs from the EFI MOK config table + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Be more careful about copying up + sxid files" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Propogate nosuid from lower and + upper mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Enable user namespace mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: ensure mounter privileges when + reading directories" + - SAUCE: Revert "UBUNTU: SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags" + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc3 + + -- Andrea Righi Mon, 24 May 2021 13:06:17 +0200 + +linux-unstable (5.13.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-3.3 -proposed tracker (LP: #1928655) + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc2 + + -- Andrea Righi Mon, 17 May 2021 11:55:02 +0200 + +linux-unstable (5.13.0-2.2) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] enable CONFIG_DEBUG_INFO_COMPRESSED + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] temporarily disable BPF JIT" + + -- Andrea Righi Fri, 14 May 2021 09:19:02 +0200 + +linux-unstable (5.13.0-1.1) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc1 + + -- Andrea Righi Wed, 12 May 2021 11:35:23 +0200 + +linux-unstable (5.13.0-0.0) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 11 May 2021 08:40:09 +0200 + +linux-unstable (5.12.0-11.11) impish; urgency=medium + + * Impish update: v5.12.1 upstream stable release (LP: #1927094) + - net: hso: fix NULL-deref on disconnect regression + - USB: CDC-ACM: fix poison/unpoison imbalance + - iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() + - cfg80211: fix locking in netlink owner interface destruction + - mei: me: add Alder Lake P device id. + - Linux 5.12.1 + + * Packaging resync (LP: #1786013) // Impish update: v5.12.1 upstream stable + release (LP: #1927094) + - update dkms package versions + + * Gigabyte R120-T33 (ARM ThunderX SoC) fails to boot in ACPI mode + (LP: #1925075) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ACPI: GTDT: Don't corrupt interrupt mappings on watchdow probe failure + + * Fix kernel panic at boot on dual GFX systems (LP: #1926792) // Impish + update: v5.12.1 upstream stable release (LP: #1927094) + - drm/amdgpu: Register VGA clients after init can no longer fail + + * On TGL platforms screen shows garbage when browsing website by scrolling + mouse (LP: #1926579) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: drm/i915/display: Disable PSR2 if TGL Display stepping is B1 from A0 + + * CirrusLogic: Cracking noises appears in built-in speaker when output volume + is set >80% (LP: #1924997) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: ALSA: hda/cirrus: Use CS8409 Equalizer to fix abnormal sounds on + Bullseye + + * Enable mute/micmute LEDs and limit mic boost on EliteBook 845 G8 + (LP: #1925415) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845 G8 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: PCI: Disable broken RTIT_BAR of Intel TH" + - Revert "UBUNTU: [Config] temporarily disable ZFS" + + -- Paolo Pisati Tue, 04 May 2021 18:35:54 +0200 + +linux-unstable (5.12.0-10.10) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] Drop versioned ABI directory names + - [Packaging] getabis: Download ABIs into an unversioned directory + - [Packaging] final-checks: Handle unversioned ABI directories + - bump to impish + - [Config] GCC version update + + -- Paolo Pisati Thu, 29 Apr 2021 12:27:20 +0200 + +linux-unstable (5.12.0-9.9) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Seth Forshee Mon, 26 Apr 2021 11:14:16 -0500 + +linux-unstable (5.12.0-8.8) hirsute; urgency=medium + + * CVE-2021-3492 + - SAUCE: shiftfs: free allocated memory in shiftfs_btrfs_ioctl_fd_replace() + error paths + - SAUCE: shiftfs: handle copy_to_user() return values correctly + + * Fix no picture from HDMI when it's plugged after boot (LP: #1924238) + - drm/i915/display: Handle lane polarity for DDI port + + * hirsute beta desktop AMD64 ISO kernel panic on boot when booting using UEFI + (LP: #1922403) + - SAUCE: efifb: Check efifb_pci_dev before using it + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc8 + - [Config] updateconfigs following 5.12-rc8 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Paolo Pisati Mon, 19 Apr 2021 11:37:27 +0200 + +linux-unstable (5.12.0-7.7) hirsute; urgency=medium + + * drm/i915: Drop force_probe requirement for Rocket Lake (LP: #1905466) + - drm/i915/rkl: Remove require_force_probe protection + + * HP m400 cartridges fail to find NIC when deploying hirsute (LP: #1918793) + - PCI: xgene: Fix cfg resource mapping + + * Update - Fix no screen show on display after S3 on CML-R (LP: #1922768) + - drm/i915/gen9bc: Handle TGP PCH during suspend/resume + + * Miscellaneous Ubuntu changes + - SAUCE: RDMA/core: Introduce peer memory interface + - Rebase to v5.12-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc7 + + -- Paolo Pisati Mon, 12 Apr 2021 11:48:07 +0200 + +linux-unstable (5.12.0-6.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * i915 doesn't support some high pixel clock 4k * 60Hz monitors (LP: #1922372) + - drm/i915/vbt: update DP max link rate table + + * Tegra "mmc0: Timeout waiting for hardware interrupt" (LP: #1921140) + - SAUCE: mmc: host: Add required callbacks to set/clear CQE_EN bit + + * Enable ath11k debugfs/tracing (LP: #1922033) + - [Config] enable ath11k debugfs/tracing + + * Fix mic on P620 after S3 resume (LP: #1921757) + - ALSA: usb-audio: Carve out connector value checking into a helper + - ALSA: usb-audio: Check connector value on resume + + * Miscellaneous Ubuntu changes + - [Config] amd64,arm64: build KFENCE support but disable it by default + (KFENCE_SAMPLE_INTERVAL=0) + - Rebase to v5.12-rc6 + + * Miscellaneous upstream changes + - drm/dp: add MSO related DPCD registers + - drm/i915/edp: reject modes with dimensions other than fixed mode + - drm/i915/edp: always add fixed mode to probed modes in ->get_modes() + - drm/i915/edp: read sink MSO configuration for eDP 1.4+ + - drm/i915/reg: add stream splitter configuration definitions + - drm/i915/mso: add splitter state readout for platforms that support it + - drm/i915/mso: add splitter state check + - drm/i915/edp: modify fixed and downclock modes for MSO + - drm/i915/edp: enable eDP MSO during link training + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc6 + + -- Paolo Pisati Wed, 07 Apr 2021 11:42:55 +0200 + +linux-unstable (5.12.0-5.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * alsa/realtek: extend the delay time in the determine_headset_type for a + Dell AIO (LP: #1920747) + - SAUCE: ALSA: hda/realtek: fix a determine_headset_type issue for a Dell AIO + + * power off stress test will hang on the TGL machines (LP: #1919930) + - SAUCE: ASoC: SOF: Intel: TGL: set shutdown callback to hda_dsp_shutdown + - [Config] set SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 to n + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Miscellaneous Ubuntu changes + - [Config] arm64 -- unify build_image and kernel_file values + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: xr-usb-serial: clean up indentation + - SAUCE: xr-usb-serial: clean up build warnings + - SAUCE: apparmor: Fix build error, make sk parameter const + - Rebase to v5.12-rc5 + - [Config] updateconfigs following v5.12-rc5 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390: Lock down the kernel when the IPL + secure flag is set" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) powerpc: lock down kernel in secure boot + mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic" + - Revert "UBUNTU: SAUCE: (lockdown) arm64: Allow locking down the kernel under + EFI secure boot" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc5 + + -- Paolo Pisati Mon, 29 Mar 2021 12:59:38 +0200 + +linux-unstable (5.12.0-4.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix broken efifb on graphics device without driver (LP: #1914411) + - SAUCE: efifb: Ensure graphics device for efifb stays at PCI D0 + + * Fix system sleep on TGL systems with Intel ME (LP: #1919321) + - SAUCE: PCI: Serialize TGL e1000e PM ops + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc4 + - [Config] updateconfigs following v5.12-rc4 rebase + + * Miscellaneous upstream changes + - riscv: dts: fu740: fix cache-controller interrupts + - riscv: sifive: fu740: cpu{1, 2, 3, 4} set compatible to sifive, u74-mc + - riscv: sifive: unmatched: update for 16GB rev3 + - riscv: Add 3 SBI wrapper functions to get cpu manufacturer information + - riscv: Get CPU manufacturer information + - riscv: Introduce alternative mechanism to apply errata solution + - riscv: sifive: apply errata "cip-453" patch + - clk: sifive: Add pcie_aux clock in prci driver for PCIe driver + - clk: sifive: Use reset-simple in prci driver for PCIe driver + - MAINTAINERS: Add maintainers for SiFive FU740 PCIe driver + - dt-bindings: PCI: Add SiFive FU740 PCIe host controller + - PCI: designware: Add SiFive FU740 PCIe host controller driver + - riscv: dts: Add PCIe support for the SiFive FU740-C000 SoC + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc4 + + -- Paolo Pisati Mon, 22 Mar 2021 12:43:14 +0100 + +linux-unstable (5.12.0-3.3) hirsute; urgency=medium + + * riscv: revert SiFive Unleashed CPUFreq (LP: #1917433) + - SAUCE: Revert "SiFive Unleashed CPUFreq" + + * Dell Precision 5550 takes up to 10 seconds to respond when coming out of + sleep (LP: #1919123) + - SAUCE: Input: i8042 - add dmi quirk + + * LRMv4: switch to signing nvidia modules via the Ubuntu Modules signing key + (LP: #1918134) + - [Packaging] sync dkms-build et al from LRMv4 + + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enable Tegra support in arm64 for NVIDIA Jetson (LP: #1918471) + - [Config] enable ARCH_TEGRA and all Tegra SOC's + - [Packaging] include modern Tegra modules + + * Cirrus Audio Codec CS8409/CS42L42: Input Device does not switch to headset + Mic when a headset is inserted (LP: #1918378) + - SAUCE: ALSA: hda/cirrus: Fix Headset Mic volume control name + + * Cirrus Audio Codec CS8409/CS42L42 support (LP: #1916554) + - ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18 + - ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion + codec. + - ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion + codec. + - ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control + + * drm/i915: Drop force_probe requirement for JSL (LP: #1917843) + - SAUCE: drm/i915: Drop require_force_probe from JSL + + * Miscellaneous Ubuntu changes + - [Packaging] Skip d-i code if udebs are disabled + - [Packaging] Disable udebs if $DEBIAN/d-i doesn't exist + - [Packaging] remove dh-systemd build dependency + - [Config] fix several annotaions with enforcement typos + - [Config] refresh annotations + - [Config] updateconfigs following v5.12-rc3 rebase + - annotations: fixup after v5.12-rc3 rebase + - Rebase to v5.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc3 + + -- Paolo Pisati Tue, 16 Mar 2021 18:43:03 +0100 + +linux-unstable (5.12.0-2.2) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc2 + - [Config] updateconfigs following v5.12-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc2 + + -- Paolo Pisati Mon, 08 Mar 2021 11:22:04 +0100 + +linux-unstable (5.12.0-1.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support no udeb profile (LP: #1916095) + - [Packaging] replace custom filter script with dctrl-tools + - [Packaging] correctly implement noudeb build profiles. + + * Miscellaneous Ubuntu changes + - [Packaging] dkms-versions -- remove nvidia-graphics-drivers-440-server + - [Debian] run ubuntu-regression-suite for linux-unstable + - [Packaging] remove Provides: aufs-dkms + - [Config] update config and annotations following v5.12-rc1 rebase + - [Config] disable nvidia and nvidia_server builds + - [Config] temporarily disable ZFS + - temporarily disable modules check + - annotations: s390: temporarily remove CONFIG_KMSG_IDS + - [Config] amd64: FTBFS: disable HIO + - [Config] FTBFS: disable SHIFT_FS + - [Config] s390: temporarily remove CONFIG_KMSG_IDS + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable nvidia and nvidia_server builds" + - Revert "UBUNTU: SAUCE: s390: kernel message catalog" + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc1 + + -- Paolo Pisati Thu, 04 Mar 2021 18:26:12 +0100 + +linux-unstable (5.12.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Paolo Pisati Thu, 04 Mar 2021 18:17:32 +0100 + +linux-unstable (5.11.0-10.11) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support CML-S CPU + TGP PCH (LP: #1909457) + - drm/i915/rkl: new rkl ddc map for different PCH + - SAUCE: drm/i915/gen9_bc : Add TGP PCH support + + * Use DCPD to control HP DreamColor panel (LP: #1911001) + - SAUCE: drm/dp: Another HP DreamColor panel brigntness fix + + * Update nvidia dkms build for module linker script changes + - [Packaging] build-dkms--nvidia-N -- Update for preprocessed module linker + script + + * Please trust Canonical Livepatch Service kmod signing key (LP: #1898716) + - [Config] enable CONFIG_MODVERSIONS=y + - [Packaging] build canonical-certs.pem from branch/arch certs + - [Config] add Canonical Livepatch Service key to SYSTEM_TRUSTED_KEYS + - [Config] add ubuntu-drivers key to SYSTEM_TRUSTED_KEYS + + * Miscellaneous Ubuntu changes + - [Config] re-enable nvidia dkms + - SAUCE: selftests: memory-hotplug: bump timeout to 10min + - [Debian] update-aufs.sh -- Don't apply tmpfs-idr.patch + - [Config] Update configs + - [Config] disable nvidia and nvidia_server builds + - SAUCE: Import aufs driver + - [Config] CONFIG_AUFS_FS=n + - [Config] refresh annotations file + - [Config] set CONFIG_MIPI_I3C_HCI=m consistently + - [Config] set CONFIG_PINCTRL_MSM8953=m on armhf generic-lpae + - [Packaging] Change source package name to linux-unstable + - [Config] update LD_VERSION in config due to toolchain update + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit + ino_t" + + -- Andrea Righi Mon, 22 Feb 2021 07:18:07 +0100 + +linux-unstable (5.11.0-9.10) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 22 Feb 2021 07:02:45 +0100 + +linux (5.11.0-9.10) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update configs/annotations after rebase to 5.11 + - zfs-modules.ignore: add zzstd + + [ Upstream Kernel Changes ] + + * Rebase to v5.11 + + -- Andrea Righi Mon, 15 Feb 2021 16:29:36 +0100 + +linux (5.11.0-8.9) hirsute; urgency=medium + + * Missing device id for Intel TGL-H ISH [8086:43fc] in intel-ish-hid driver + (LP: #1914543) + - SAUCE: HID: intel-ish-hid: ipc: Add Tiger Lake H PCI device ID + + * Add support for new Realtek ethernet NIC (LP: #1914604) + - r8169: Add support for another RTL8168FP + + * Miscellaneous Ubuntu changes + - SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit ino_t + - [Config] Set CONFIG_TMPFS_INODE64=n for s390x + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc7 + + -- Andrea Righi Mon, 08 Feb 2021 11:56:23 +0100 + +linux (5.11.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + * Remove scary stack trace from Realtek WiFi driver (LP: #1913263) + - rtw88: reduce the log level for failure of tx report + + * Fix unexpected AER/DPC on PCH400 and PCH500 (LP: #1913691) + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on all CML root ports" + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on CML root port" + - SAUCE: PCI/AER: Disable AER interrupt during suspend + - SAUCE: PCI/DPC: Disable DPC interrupt during suspend + + * switch to an autogenerated nvidia series based core via dkms-versions + (LP: #1912803) + - [Packaging] nvidia -- use dkms-versions to define versions built + - [Packaging] update-version-dkms -- maintain flags fields + + * Introduce the new NVIDIA 460-server series and update the 460 series + (LP: #1913200) + - [Config] dkms-versions -- add the 460-server nvidia driver + + * Fix the video can't output through WD19TB connected with TGL platform during + cold-boot (LP: #1910211) + - SAUCE: drm/i915/dp: Prevent setting LTTPR mode if no LTTPR is detected + + * Stop using get_scalar_status command in Dell AIO uart backlight driver + (LP: #1865402) + - SAUCE: platform/x86: dell-uart-backlight: add get_display_mode command + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Accept any valid fd in user_notification_addfd + - [Packaging] Don't disable CONFIG_DEBUG_INFO in headers packages + - [Config] update configs/annotations after rebase to 5.11-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc6 + + -- Andrea Righi Mon, 01 Feb 2021 10:27:52 +0100 + +linux (5.11.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Prevent thermal shutdown during boot process (LP: #1906168) + - thermal/drivers/acpi: Use hot and critical ops + - thermal/core: Remove notify ops + - thermal: int340x: Fix unexpected shutdown at critical temperature + - thermal: intel: pch: Fix unexpected shutdown at critical temperature + + * riscv: backport support for SiFive Unmatched (LP: #1910965) + - RISC-V: Update l2 cache DT documentation to add support for SiFive FU740 + - RISC-V: sifive_l2_cache: Update L2 cache driver to support SiFive FU740 + - dt-bindings: riscv: Update DT binding docs to support SiFive FU740 SoC + - riscv: dts: add initial support for the SiFive FU740-C000 SoC + - dt-bindings: riscv: Update YAML doc to support SiFive HiFive Unmatched board + - riscv: dts: add initial board data for the SiFive HiFive Unmatched + - PCI: microsemi: Add host driver for Microsemi PCIe controller + - Microsemi PCIe expansion board DT entry. + - SiFive Unleashed CPUFreq + - SiFive HiFive Unleashed: Add PWM LEDs (D1, D2, D3, D4) + + * initramfs unpacking failed (LP: #1835660) + - lib/decompress_unlz4.c: correctly handle zero-padding around initrds. + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.11-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc5 + + -- Andrea Righi Mon, 25 Jan 2021 09:31:31 +0100 + +linux (5.11.0-5.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update config and annotations after rebase to 5.11-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc4 + + -- Andrea Righi Mon, 18 Jan 2021 10:46:10 +0100 + +linux (5.11.0-4.5) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + -- Andrea Righi Thu, 14 Jan 2021 12:53:26 +0100 + +linux (5.11.0-3.4) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - bpf: Allow empty module BTFs + - libbpf: Allow loading empty BTFs + + -- Andrea Righi Thu, 14 Jan 2021 07:43:45 +0100 + +linux (5.11.0-2.3) hirsute; urgency=medium + + * DMI entry syntax fix for Pegatron / ByteSpeed C15B (LP: #1910639) + - Input: i8042 - unbreak Pegatron C15B + + * SYNA30B4:00 06CB:CE09 Mouse on HP EliteBook 850 G7 not working at all + (LP: #1908992) + - HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device + + * debian/scripts/file-downloader does not handle positive failures correctly + (LP: #1878897) + - [Packaging] file-downloader not handling positive failures correctly + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * CVE-2021-1052 // CVE-2021-1053 + - [Packaging] NVIDIA -- Add the NVIDIA 460 driver + + * Miscellaneous Ubuntu changes + - [Packaging] Remove nvidia-455 dkms build + - SAUCE: ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP + machines + - [Config] update configs and annotations after rebase to 5.11-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc3 + + -- Andrea Righi Mon, 11 Jan 2021 09:52:27 +0100 + +linux (5.11.0-1.2) hirsute; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc2 + + -- Andrea Righi Thu, 07 Jan 2021 16:57:01 +0100 + +linux (5.11.0-0.1) hirsute; urgency=medium + + * dep-8 ubuntu-regression-suite tests are not run for all linux-hwe-* kernels + (LP: #1908529) + - [dep-8] Allow all hwe kernels + + * Fix reading speed and duplex sysfs on igc device (LP: #1906851) + - igc: Report speed and duplex as unknown when device is runtime suspended + + * rtwpci driver blocks the system to enter PC10, stuck at PC3 (LP: #1907200) + - SAUCE: rtw88: 8723de: let cpu enter c10 + + * [21.04 FEAT] Deactivate CONFIG_QETH_OSN kernel config option (LP: #1906370) + - [Config] Deactivate CONFIG_QETH_OSN kernel config option + + * Add dpcd backlight control for 0x4c83 0x4f41 (LP: #1905663) + - SAUCE: drm/dp: Add dpcd backlight control for 0x4c83 0x4f41 + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: Clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF selftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - [Config] update configs and annotations after rebase to v5.11-rc1 + - hio: fix build error with kernel 5.11 + - SAUCE: shiftfs: fix build error with 5.11 + - [Config] temporarily disable ZFS + - check-aliases: do not error if modules.alias does not exist + - ppc64el: don't build stripped vdso + + * Miscellaneous upstream changes + - irq: export irq_check_status_bit + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc1 + + -- Andrea Righi Mon, 04 Jan 2021 09:17:48 +0100 + +linux (5.11.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Wed, 30 Dec 2020 09:04:41 +0100 + +linux (5.10.0-9.10) hirsute; urgency=medium + + * Use INTx for Pericom USB controllers (LP: #1906839) + - PCI: Disable MSI for Pericom PCIe-USB adapter + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF seftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - [Config] Enable CONFIG_BPF_LSM + + * Miscellaneous upstream changes + - Revert "md: change mddev 'chunk_sectors' from int to unsigned" + - Revert "dm raid: fix discard limits for raid1 and raid10" + + -- Andrea Righi Tue, 15 Dec 2020 10:16:14 +0100 + +linux (5.10.0-8.9) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Fix bpf selftest compilation with clang 11 + - bpf: Fix selftest compilation on clang 11 + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to v5.10 + + [ Upstream Kernel Changes ] + + * Rebase to v5.10 + + -- Andrea Righi Mon, 14 Dec 2020 08:57:57 +0100 + +linux (5.10.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix linux-libc-dev build for hirsute forward port kernels (LP: #1904067) + - [Debian] Build linux-libc-dev for debian.master* branches + + * Update kernel packaging to support forward porting kernels (LP: #1902957) + - [Debian] Update for leader included in BACKPORT_SUFFIX + + * Introduce the new NVIDIA 455 series (LP: #1897751) + - [Packaging] NVIDIA -- Add signed modules for the 455 driver + + * 5.10 kernel fails to boot with secure boot disabled (LP: #1904906) + - [Config] CONFIG_RCU_SCALE_TEST=n + + * Miscellaneous Ubuntu changes + - [Config] s390x: disable GPIO_CDEV + - [Config] ARM_CMN=m + - [Config] disable GPIO_CDEV_V1 + - [Config] Reorder annotations after 5.10-rc6 rebase + - [Packaging] Remove nvidia-435 dkms build + - [Packaging] Change source package name to linux + - [Config] Update configs and annotations after rebase to v5.10-rc7 + - SAUCE: Revert "mm/filemap: add static for function + __add_to_page_cache_locked" + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc7 + + -- Seth Forshee Mon, 07 Dec 2020 00:15:20 -0600 + +linux (5.10.0-6.7) hirsute; urgency=medium + + * Empty entry. + + -- Seth Forshee Sun, 06 Dec 2020 22:13:46 -0600 + +linux-5.10 (5.10.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Avoid double newline when running insertchanges (LP: #1903293) + - [Packaging] insertchanges: avoid double newline + + * Miscellaneous Ubuntu changes + - [Packaging]: linux-modules should depend on linux-image + - [Packaging]: linux-image should suggest linux-modules-extra + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc6 + + -- Andrea Righi Mon, 30 Nov 2020 07:47:34 +0100 + +linux-5.10 (5.10.0-5.6) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] add CONFIG_INFINIBAND_VIRT_DMA + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc5 + + -- Andrea Righi Mon, 23 Nov 2020 13:17:44 +0100 + +linux-5.10 (5.10.0-4.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] reduce the size required to build packages + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc4 + + -- Andrea Righi Mon, 16 Nov 2020 08:33:54 +0100 + +linux-5.10 (5.10.0-3.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * e1000e: fix issues with S0ix (LP: #1902687) + - SAUCE: e1000e: fix S0ix flow to allow S0i3.2 subset entry + - SAUCE: e1000e: allow turning s0ix flows on for systems with ME + - SAUCE: e1000e: Add Dell's Comet Lake systems into s0ix heuristics + - SAUCE: e1000e: Add more Dell CML systems into s0ix heuristics + - [Config] Update CONFIG_E1000E for ppc64el in annotations + + * perf: Add support for Rocket Lake (LP: #1902004) + - SAUCE: perf/x86/intel: Add Rocket Lake CPU support + - SAUCE: perf/x86/cstate: Add Rocket Lake CPU support + - SAUCE: perf/x86/msr: Add Rocket Lake CPU support + - SAUCE: perf/x86/intel/uncore: Add Rocket Lake support + + * Miscellaneous Ubuntu changes + - [Config] Disable CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE + - [Config] update CONFIG_MST_IRQ after rebase to 5.10-rc3 + - [Config] drop obsolete SND_SST_IPC options + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc3 + + -- Andrea Righi Mon, 09 Nov 2020 09:37:08 +0100 + +linux-5.10 (5.10.0-2.3) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Switch arm64 default cpufreq governor to ondemand + - [Debian] Include scripts/module.lds from builddir in headers package + + -- Seth Forshee Tue, 03 Nov 2020 21:01:52 -0600 + +linux-5.10 (5.10.0-1.2) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix non-working Intel NVMe after S3 (LP: #1900847) + - SAUCE: PCI: Enable ACS quirk on all CML root ports + + * Miscellaneous Ubuntu changes + - [Packaging] move to hirsute + - [Config] Update configs and annotations after rebase to 5.10-rc2 + - [Config] Update numerous configs to conform with policy + - [Config] Switch default CPUFreq governer for arm64/armhf to schedultil + - [Config] Temporarily disable DEBUG_INFO_BTF for armhf + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc2 + + -- Seth Forshee Mon, 02 Nov 2020 13:18:27 -0600 + +linux-5.10 (5.10.0-0.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.10-rc1 + - SAUCE: platform/x86: dell-uart-backlight: rename kzfree() to + kfree_sensitive() + - SAUCE: apparmor: rename kzfree() to kfree_sensitive() + - SAUCE: LSM: change ima_read_file() to use lsmblob + - SAUCE: LSM: Use lsmblob in smk_netlbl_mls() + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Change source package name to linux-5.10" + - s390: correct __bootdata / __bootdata_preserved macros + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc1 + + -- Paolo Pisati Tue, 27 Oct 2020 16:57:07 +0100 + +linux-5.10 (5.10.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Paolo Pisati Mon, 26 Oct 2020 14:55:48 +0100 + +linux-5.9 (5.9.0-2.3) groovy; urgency=medium + + * Fix system reboot when disconnecting WiFi (LP: #1899726) + - iwlwifi: msix: limit max RX queues for 9000 family + + * booting linux-generic-lpae armhf kernel under qemu results in relocation out + of range, and thus no modules can be loaded (LP: #1899519) + - [Config] armhf: ARM_MODULE_PLTS=y + + * Fix broken MSI interrupt after HDA controller was suspended (LP: #1899586) + - ALSA: hda: fix jack detection with Realtek codecs when in D3 + + * CVE-2020-16119 + - SAUCE: dccp: avoid double free of ccid on child socket + + * python3-venv is gone (LP: #1896801) + - SAUCE: doc: remove python3-venv dependency + + * *-tools-common packages descriptions have typo "PGKVER" (LP: #1898903) + - [Packaging] Fix typo in -tools template s/PGKVER/PKGVER/ + + * Enable brightness control on HP DreamColor panel (LP: #1898865) + - SAUCE: drm/i915/dpcd_bl: Skip testing control capability with force DPCD + quirk + - SAUCE: drm/dp: HP DreamColor panel brigntness fix + + * HP Zbook Studio G7 boots into corrupted screen with PSR featured panel + (LP: #1897501) + - SAUCE: drm/i915/psr: allow overriding PSR disable param by quirk + - SAUCE: drm/dp: add DP_QUIRK_FORCE_PSR_CHIP_DEFAULT quirk to CMN prod-ID + 19-15 + + * Fix broken e1000e device after S3 (LP: #1897755) + - SAUCE: e1000e: Increase polling timeout on MDIC ready bit + + * Wakeup the system by touching the touchpad (LP: #1888331) + - HID: i2c-hid: Enable wakeup capability from Suspend-to-Idle + + * Enable LTR for endpoints behind VMD (LP: #1896598) + - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD + + * [SRU] [Focal/OEM-5.6/Groovy]Fix AMD usb host controller lost after stress S3 + (LP: #1893914) + - SAUCE: xhci: workaround for S3 issue on AMD SNPS 3.0 xHC + + * debian/rules editconfigs does not work on s390x to change s390x only configs + (LP: #1863116) + - [Packaging] kernelconfig -- only update/edit configurations on architectures + we have compiler support + + * Fix non-working NVMe after S3 (LP: #1895718) + - SAUCE: PCI: Enable ACS quirk on CML root port + + * Miscellaneous Ubuntu changes + - SAUCE: bpf: Check CONFIG_BPF option for resolve_btfids + - SAUCE: tools resolve_btfids: Always force HOSTARCH + - packaging: arm64: add a 64KB mem pages flavour called 'generic-64k' + - packaging: arm64: generic-64k: skip ABI, modules and retpoline checks + - SAUCE: drm/i915/display: Fix null deref in intel_psr_atomic_check() + - [Config] Update toolchain versions + - [Config] Refresh annotations + - Add ubuntu-host module + - CONFIG_UBUNTU_HOST=m + - SAUCE: apparmor: drop prefixing abs root labels with '=' + - SAUCE: apparmor: disable showing the mode as part of a secid to secctx + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Create and manage the lsmblob data structure. + - SAUCE: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: net: Prepare UDS for security module stacking + - SAUCE: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: LSM: Use lsmblob in security_task_getsecid + - SAUCE: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: IMA: Change internal interfaces to use lsmblobs + - SAUCE: LSM: Specify which LSM to display + - SAUCE: LSM: Ensure the correct LSM context releaser + - SAUCE: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: NET: Store LSM netlabel data in a lsmblob + - SAUCE: LSM: Verify LSM display sanity in binder + - SAUCE: Audit: Add new record for multiple process LSM attributes + - SAUCE: Audit: Add a new record for multiple object LSM + - SAUCE: LSM: Add /proc attr entry for full LSM context + - SAUCE: AppArmor: Remove the exclusive flag + - SAUCE: Audit: Fix for missing NULL check + + * Miscellaneous upstream changes + - tty: hvcs: Don't NULL tty->driver_data until hvcs_cleanup() + + [ Upstream Kernel Changes ] + + * Rebase to v5.9 + + -- Seth Forshee Wed, 14 Oct 2020 13:31:18 -0500 + +linux-5.9 (5.9.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs after rebase to 5.9-rc6 + - SAUCE: dax: Fix compilation for CONFIG_DAX && !CONFIG_FS_DAX + - SAUCE: bpf: Use --no-fail option if CONFIG_BPF is not enabled + - SAUCE: tools resolve_btfids: Always force HOSTARCH + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc6 + + -- Seth Forshee Mon, 21 Sep 2020 14:39:34 -0500 + +linux-5.9 (5.9.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.9-rc1 + - SAUCE: i915: Fix build error due to missing struct definition + - hio -- Update blk_queue_split() calls for changes in 5.9-rc1 + - hio -- Updates for move of make_request_fn to struct block_device_operations + - [Config] Disable zfs dkms build + - [Config] Disable nvidia dkms build + - [Config] Disable nvidia server dkms builds + - SAUCE: remoteproc: qcom: Use div_u64() for 64-bit division + - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain + - [Packaging] Bind hv_vss_daemon startup to hv_vss device + - [Packaging] bind hv_fcopy_daemon startup to hv_fcopy device + - [Config] Re-enable UEFI signing for arm64 + - SAUCE: Revert "UBUNTU: SAUCE: export __get_vm_area_caller() and map_kernel_range()" + - [Config] Set the default CPU governor to ONDEMAND + - [Packaging] update variants + - [Packaging] update helper scripts + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc5 + + -- Seth Forshee Thu, 17 Sep 2020 15:01:21 -0500 + +linux-5.9 (5.9.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Tue, 18 Aug 2020 16:48:03 -0500 + +linux (5.8.0-16.17) groovy; urgency=medium + + * groovy/linux: 5.8.0-16.17 -proposed tracker (LP: #1891233) + + * Miscellaneous Ubuntu changes + - hio -- Update to use bio_{start,end}_io_acct with 5.8+ + - Enable hio driver + - [Packaging] Temporarily disable building doc package contents + + -- Seth Forshee Tue, 11 Aug 2020 15:32:58 -0500 + +linux (5.8.0-15.16) groovy; urgency=medium + + * groovy/linux: 5.8.0-15.16 -proposed tracker (LP: #1891177) + + * Miscellaneous Ubuntu changes + - SAUCE: Documentation: import error c_funcptr_sig_re, c_sig_re (sphinx- + doc/sphinx@0f49e30c) + + -- Seth Forshee Tue, 11 Aug 2020 09:29:58 -0500 + +linux (5.8.0-14.15) groovy; urgency=medium + + * groovy/linux: 5.8.0-14.15 -proposed tracker (LP: #1891085) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * msg_zerocopy.sh in net from ubuntu_kernel_selftests failed (LP: #1812620) + - selftests/net: relax cpu affinity requirement in msg_zerocopy test + + * Fix missing HDMI/DP Audio on an HP Desktop (LP: #1890441) + - ALSA: hda/hdmi: Add quirk to force connectivity + + * Add initial audio support for Lenovo ThinkStation P620 (LP: #1890317) + - ALSA: usb-audio: Add support for Lenovo ThinkStation P620 + + * Fix IOMMU error on AMD Radeon Pro W5700 (LP: #1890306) + - PCI: Mark AMD Navi10 GPU rev 0x00 ATS as broken + + * Enlarge hisi_sec2 capability (LP: #1890222) + - crypto: hisilicon - update SEC driver module parameter + + * Miscellaneous Ubuntu changes + - [Config] Re-enable signing for ppc64el + + -- Seth Forshee Mon, 10 Aug 2020 15:26:46 -0500 + +linux (5.8.0-13.14) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Remove i386 configs + - SAUCE: apply a workaround to re-enable CONFIG_CRYPTO_AEGIS128_SIMD + - SAUCE: export __get_vm_area_caller() and map_kernel_range() + - [Config] drop CONFIG_BINFMT_AOUT enforcement + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD" + + [ Upstream Kernel Changes ] + + * Rebase to v5.8 + + -- Andrea Righi Tue, 04 Aug 2020 09:51:50 +0200 + +linux (5.8.0-12.13) groovy; urgency=medium + + * groovy/linux: 5.8.0-12.13 -proposed tracker (LP: #1889481) + + * Fix right speaker of HP laptop (LP: #1889375) + - SAUCE: hda/realtek: Fix right speaker of HP laptop + + * blk_update_request error when mount nvme partition (LP: #1872383) + - SAUCE: nvme-pci: prevent SK hynix PC400 from using Write Zeroes command + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - Revert "UBUNTU: SAUCE: net: atlantic: Add support for firmware v4" + - net: atlantic: align return value of ver_match function with function name + - net: atlantic: add support for FW 4.x + + * Miscellaneous Ubuntu changes + - [Debian] Fix debian/tests for linux-5.8 -> linux rename + - SAUCE: selftests/powerpc: return skip code for spectre_v2 + + -- Seth Forshee Wed, 29 Jul 2020 16:58:47 -0500 + +linux (5.8.0-11.12) groovy; urgency=medium + + * groovy/linux: 5.8.0-11.12 -proposed tracker (LP: #1889336) + + * Miscellaneous Ubuntu changes + - [Packaging] dwarves is not required for linux-libc-dev or stage1 + + -- Seth Forshee Tue, 28 Jul 2020 22:33:24 -0500 + +linux (5.8.0-10.11) groovy; urgency=medium + + * groovy/linux: 5.8.0-10.11 -proposed tracker (LP: #1889316) + + * Miscellaneous Ubuntu changes + - [Packaging] Add more packages to Build-Depends-Indep for docs + - [Debian] Specify python executable in kmake + - [Debian] Don't treat warnings as errors during perf builds + - [Config] Disable signing for ppc64el + + -- Seth Forshee Tue, 28 Jul 2020 17:09:52 -0500 + +linux (5.8.0-9.10) groovy; urgency=medium + + * groovy/linux: 5.8.0-9.10 -proposed tracker (LP: #1889140) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: Fix s390x compile error on F32 utils/stat-display.c + - [Packaging] Add python3-venv to Build-Depends-Indep + + -- Seth Forshee Mon, 27 Jul 2020 21:01:46 -0500 + +linux (5.8.0-8.9) groovy; urgency=medium + + * groovy/linux: 5.8.0-8.9 -proposed tracker (LP: #1889104) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update variants + + * Introduce the new NVIDIA 450-server and the 450 UDA series (LP: #1887674) + - [Packaging] NVIDIA -- Add signed modules for 450 450-server + + * Introduce the new NVIDIA 418-server and 440-server series, and update the + current NVIDIA drivers (LP: #1881137) + - [packaging] add signed modules for the 418-server and the 440-server + flavours + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "radix-tree: Use local_lock for protection" + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + - [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD + - [Config] Enable nvidia dkms build + + * Miscellaneous upstream changes + - usbip: tools: fix build error for multiple definition + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc7 + + -- Seth Forshee Mon, 27 Jul 2020 11:18:12 -0500 + +linux (5.8.0-7.8) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Mon, 27 Jul 2020 09:22:19 +0200 + +linux-5.8 (5.8.0-7.8) groovy; urgency=medium + + * soc/amd/renoir: detect dmic from acpi table (LP: #1887734) + - ASoC: amd: add logic to check dmic hardware runtime + - ASoC: amd: add ACPI dependency check + - ASoC: amd: fixed kernel warnings + + * linux 4.15.0-109-generic network DoS regression vs -108 (LP: #1886668) + - SAUCE: Revert "netprio_cgroup: Fix unlimited memory leak of v2 cgroups" + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - SAUCE: net: atlantic: Add support for firmware v4 + + * MGA G200e doesn't work under GDM Wayland (LP: #1886140) + - drm/mgag200: Remove HW cursor + - drm/mgag200: Clean up mga_set_start_address() + - drm/mgag200: Clean up mga_crtc_do_set_base() + - drm/mgag200: Move mode-setting code into separate helper function + - drm/mgag200: Split MISC register update into PLL selection, SYNC and I/O + - drm/mgag200: Update mode registers after plane registers + - drm/mgag200: Set pitch in a separate helper function + - drm/mgag200: Set primary plane's format in separate helper function + - drm/mgag200: Move TAGFIFO reset into separate function + - drm/mgag200: Move hiprilvl setting into separate functions + - drm/mgag200: Move register initialization into separate function + - drm/mgag200: Remove out-commented suspend/resume helpers + - drm/mgag200: Use simple-display data structures + - drm/mgag200: Convert to simple KMS helper + - drm/mgag200: Replace VRAM helpers with SHMEM helpers + + * Miscellaneous Ubuntu changes + - SAUCE: s390/bpf: fix sign extension in branch_ku + - SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support + - SAUCE: selftests: fib_nexthop_multiprefix: fix cleanup() netns deletion + - [packaging] debhelper-compat (= 10) (and retire debian/compat) + - [Config] Update configs after rebase to 5.8-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc6 + + -- Andrea Righi Mon, 20 Jul 2020 09:55:47 +0200 + +linux-5.8 (5.8.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * perf build broken after updating to bintuils 2.34.90.20200706-1ubuntu1 + (LP: #1887397) + - SAUCE: libtraceevent: Strip symbol version from nm output + + -- Seth Forshee Mon, 13 Jul 2020 14:07:53 -0500 + +linux-5.8 (5.8.0-5.6) groovy; urgency=medium + + * linux-libc-dev broken for crossbuilding, Multi-Arch:same violation + (LP: #1886188) + - [Packaging] Produce linux-libc-deb package for riscv64 + - [Debian] Disallow building linux-libc-dev from linux-riscv + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: test_bpf: remove expected fail for Ctx heavy + transformations test on s390" + - SAUCE: Revert "test_bpf: flag tests that cannot be jited on s390" + - [Config] Update configs (gcc update) + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc5 + + -- Andrea Righi Mon, 13 Jul 2020 08:42:14 +0200 + +linux-5.8 (5.8.0-4.5) groovy; urgency=medium + + * Add generic LED class support for audio LED (LP: #1885896) + - ALSA: hda: generic: Always call led-trigger for mic mute LED + - ALSA: hda: generic: Add a helper for mic-mute LED with LED classdev + - ALSA: hda/realtek: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/conexant: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/sigmatel: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda: generic: Drop unused snd_hda_gen_fixup_micmute_led() + - ALSA: hda: generic: Drop the old mic-mute LED hook + - ALSA: hda: generic: Add vmaster mute LED helper + - ALSA: hda/realtek: Use the new vmaster mute LED helper + - ALSA: hda/conexant: Use the new vmaster mute LED helper + - ALSA: hda/sigmatel: Use the new vmaster mute LED helper + - ALSA: hda/realtek: Unify LED helper code + - ALSA: hda: Let LED cdev handling suspend/resume + + * seccomp_bpf fails on powerpc (LP: #1885757) + - SAUCE: selftests/seccomp: fix ptrace tests on powerpc + + * CVE-2020-11935 + - SAUCE: aufs: do not call i_readcount_inc() + + * Miscellaneous Ubuntu changes + - SAUCE: Update aufs to 5.x-rcN 20200622 + - [Config] Update configs to set CONFIG_SND_HDA_GENERIC_LEDS value + - [Config] CONFIG_SECURITY_DMESG_RESTRICT=y + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc4 + + -- Seth Forshee Mon, 06 Jul 2020 08:14:28 -0500 + +linux-5.8 (5.8.0-3.4) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * lxc 1:4.0.2-0ubuntu1 ADT test failure with linux-5.8 5.8.0-1.2 + (LP: #1884635) + - SAUCE: overlayfs: fix faulty rebase + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: prevent ESTALE for LOOKUP_JUMP lookups + + * shiftfs: fix btrfs regression (LP: #1884767) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: fix dentry revalidation" + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=y + - SAUCE: regulator: rename da903x to da903x-regulator + - [Config] Add da903x to modules.ignore + - [Config] Update configs for rebase to 5.8-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc3 + + -- Seth Forshee Mon, 29 Jun 2020 08:48:25 -0500 + +linux-5.8 (5.8.0-2.3) groovy; urgency=medium + + * Support Audio Mute LED for two new HP laptops (LP: #1884251) + - ALSA: hda/realtek: Add mute LED and micmute LED support for HP systems + + * CVE-2019-16089 + - SAUCE: nbd_genl_status: null check for nla_nest_start + + * tpm: fix TIS locality timeout problems (LP: #1881710) + - SAUCE: tpm: fix TIS locality timeout problems + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: security,perf: Allow further restriction of perf_event_open + - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y + - [Config] Update configs and annotations for 5.8-rc2 + - [Config] Enable zfs + - [Config] Enable CONFIG_DEBUG_INFO_BTF + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc2 + + -- Seth Forshee Mon, 22 Jun 2020 15:05:54 -0500 + +linux-5.8 (5.8.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Debian] Support linux-x.y in udeb package names + - [Packaging] Use SRCPKGNAME for udeb packages + + -- Seth Forshee Wed, 17 Jun 2020 19:34:32 -0500 + +linux-5.8 (5.8.0-0.1) groovy; urgency=medium + + * Docker registry doesn't stay up and keeps restarting (LP: #1879690) + - Revert "UBUNTU: SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay" + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Update source package name to linux-5.8 + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + - SAUCE: Import aufs driver + - [Config] Update configs for v5.8-rc1 + - [Config] Update annotations for v5.8-rc1 config changes + - SAUCE: shiftfs -- Fix build errors from missing fiemap definitions + - Disable hio driver + + * Miscellaneous upstream changes + - acpi: disallow loading configfs acpi tables when locked down + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc1 + + -- Seth Forshee Wed, 17 Jun 2020 11:54:24 -0500 + +linux-5.8 (5.8.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Sun, 14 Jun 2020 22:40:35 -0500 + +linux-5.7 (5.7.0-8.9) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enforce all config annotations (LP: #1879327) + - [Config]: do not enforce CONFIG_VERSION_SIGNATURE + - [Config]: prepare to enforce all + - [Config]: enforce all config options + + * Miscellaneous Ubuntu changes + - [Config]: annotations review after 5.7 rebase + - [Config] annotations: IXP4XX* depends on ARCH_IXP4XX + - [Config] THERMAL_GOV_POWER_ALLOCATOR=y + - [Config] annotations: SOC_CAMERA is marked as BROKEN + - [Config] annotations: NFSD_V4_2_INTER_SSC depends on NFS_FS=y + - [Config] annotations: CRYPTO_DEV_CHELSIO_TLS depends on legacy (and largely + unmantained) TLS_TOE + - [Config] annotations: SERIO_OLPC_APSP depends on ARCH_MMP + - [Config] RTW88_DEBUG=y + - [Config] annotations: ISDN_CAPI is a bool, and BT_CMTP depends on it + - [Config] annotations SND_SOC_SOF_DEVELOPER_SUPPORT depends on + SND_SOC_SOF_DEVELOPER_SUPPORT + - [Config] annotations: SND_SOC_SOF_BAYTRAIL_SUPPORT is mutually exclusive + with SND_SST_ATOM_HIFI2_PLATFORM_ACPI + - [Config] annotations: DEBUG_IMX_UART_PORT is defined only any + DEBUG_IMX*_UART is enabled + - [Config] annotations: HW_RANDOM_IMX_RNGC depends on SOC_IMX25 + - [Config] annotations: armhf: VIRTUALIZATION support was removed for arm32 + - [Config] annotations: arm64: remove DEBUG_ALIGN_RODATA + - [Config] annotations: ppc64: DATA_SHIFT defaults to PPC_PAGE_SHIFT + - [Config] arm64: enforce ARM64_USE_LSE_ATOMICS + - [Config] s390x: MOST is not set + - [Config] s390x: BCM84881_PHY is not set + - [Config] s390x: XILINX_LL_TEMAC is not set + - [Config] s390x: PHY_INTEL_EMMC requires GENERIC_PHY (off by default on + s390x) + - [Config] s390x: CHECK_STACK conflicts with VMAP_STACK + - [Config] annotations: s390x: NODES_SHIFT=1 + - [Config] annotations: import new symbols + - [Config] annotations: remove unmatched menu and options + + -- Paolo Pisati Fri, 12 Jun 2020 12:03:01 +0200 + +linux-5.7 (5.7.0-7.8) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] update helper scripts + + * [UBUNTU 20.04] s390x/pci: fix linking between PF and VF for multifunction + devices (LP: #1879704) + - PCI/IOV: Introduce pci_iov_sysfs_link() function + - s390/pci: create links between PFs and VFs + + * Miscellaneous Ubuntu changes + - [Config] Disable UEFI signing for arm64 + - Rebase to v5.7.1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7.1 + + -- Paolo Pisati Mon, 08 Jun 2020 11:16:58 +0200 + +linux-5.7 (5.7.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * shiftfs: fix btrfs snapshot deletion (LP: #1879688) + - SAUCE: shiftfs: let userns root destroy subvolumes from other users + + * seccomp_benchmark times out on eoan (LP: #1881576) + - SAUCE: selftests/seccomp: use 90s as timeout + + * Realtek 8723DE [10ec:d723] subsystem [10ec:d738] disconnects unsolicitedly + when Bluetooth is paired: Reason: 23=IEEE8021X_FAILED (LP: #1878147) + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: Move driver IQK to set channel before + association for 11N chip" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: fix rate for a while after being + connected" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: No retry and report for auth and assoc" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: 8723d: Add coex support" + - rtw88: 8723d: Add coex support + - SAUCE: rtw88: coex: 8723d: set antanna control owner + - SAUCE: rtw88: coex: 8723d: handle BT inquiry cases + - SAUCE: rtw88: fix EAPOL 4-way failure by finish IQK earlier + + * ASoC/amd: add audio driver for amd renoir (LP: #1881046) + - ASoC: amd: add Renoir ACP3x IP register header + - ASoC: amd: add Renoir ACP PCI driver + - ASoC: amd: add acp init/de-init functions + - ASoC: amd: create acp3x pdm platform device + - ASoC: amd: add ACP3x PDM platform driver + - ASoC: amd: irq handler changes for ACP3x PDM dma driver + - ASoC: amd: add acp3x pdm driver dma ops + - ASoC: amd: add ACP PDM DMA driver dai ops + - ASoC: amd: add Renoir ACP PCI driver PM ops + - ASoC: amd: add ACP PDM DMA driver pm ops + - ASoC: amd: enable Renoir acp3x drivers build + - ASoC: amd: create platform devices for Renoir + - ASoC: amd: RN machine driver using dmic + - ASoC: amd: enable build for RN machine driver + - ASoC: amd: fix kernel warning + - ASoC: amd: refactoring dai_hw_params() callback + - ASoC: amd: return error when acp de-init fails + - [Config]: enable amd renoir ASoC audio + + * Slow send speed with Intel I219-V on Ubuntu 18.04.1 (LP: #1802691) + - e1000e: Disable TSO for buffer overrun workaround + + * Fix incorrect speed/duplex when I210 device is runtime suspended + (LP: #1880656) + - igb: Report speed and duplex as unknown when device is runtime suspended + + * Fix Pericom USB controller OHCI/EHCI PME# defect (LP: #1879321) + - serial: 8250_pci: Move Pericom IDs to pci_ids.h + - PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect + + * [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter + (LP: #1874056) + - s390/pci: Expose new port attribute for PCIe functions + - s390/pci: adaptation of iommu to multifunction + - s390/pci: define kernel parameters for PCI multifunction + - s390/pci: define RID and RID available + - s390/pci: create zPCI bus + - s390/pci: adapt events for zbus + - s390/pci: Handling multifunctions + - s390/pci: Do not disable PF when VFs exist + - s390/pci: Documentation for zPCI + - s390/pci: removes wrong PCI multifunction assignment + + * add 16-bit width registers support for EEPROM at24 device (LP: #1876699) + - regmap-i2c: add 16-bit width registers support + + * Miscellaneous Ubuntu changes + - [Config] Enable virtualbox guest and shared-folder modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.7 + + -- Seth Forshee Mon, 01 Jun 2020 16:11:24 -0500 + +linux-5.7 (5.7.0-5.6) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * [UBUNTU 20.04] PSI generates overhead on s390x (LP: #1876044) + - Ubuntu: [Config] CONFIG_PSI is enabled by default, but creates additional + overhead on s390x, hence should be disabled by default on s390x only. + + * Miscellaneous Ubuntu changes + - Rebase to v5.7-rc7 + - [Config] ppc64el: disable STRICT_KERNEL_RWX + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc7 + + -- Paolo Pisati Mon, 25 May 2020 11:44:09 +0200 + +linux-5.7 (5.7.0-4.5) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * update-initramfs complains of missing amdgpu firmware files (LP: #1873325) + - SAUCE: drm/amdgpu: Remove unreleased arcturus and navi12 firmware from + modinfo + + * Support DMIC micmute LED on HP platforms (LP: #1876859) + - ALSA: hda/realtek - Introduce polarity for micmute LED GPIO + - ALSA: hda/realtek - Enable micmute LED on and HP system + - ALSA: hda/realtek - Add LED class support for micmute LED + - ALSA: hda/realtek - Fix unused variable warning w/o + CONFIG_LEDS_TRIGGER_AUDIO + - ASoC: SOF: Update correct LED status at the first time usage of + update_mute_led() + + * Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW), + REV=0x354 [8086:a0f0] subsystem id [1a56:1651] wireless adapter not found + due to firmware crash (LP: #1874685) + - SAUCE: iwlwifi: pcie: handle QuZ configs with killer NICs as well + + * rtkit-daemon[*]: Failed to make ourselves RT: Operation not permitted after + upgrade to 20.04 (LP: #1875665) + - [Config] Turn off CONFIG_RT_GROUP_SCHED everywhere + + * Unable to handle kernel pointer dereference in virtual kernel address space + on Eoan (LP: #1876645) + - SAUCE: overlayfs: fix shitfs special-casing + + * Miscellaneous Ubuntu changes + - SAUCE: skip building selftest 'runqslower' if kernel not built + - Rebase to v5.7-rc6 + - [Config] updateconfigs after 5.7-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc6 + + -- Paolo Pisati Mon, 18 May 2020 11:27:25 +0200 + +linux-5.7 (5.7.0-3.4) groovy; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc5 + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * getitimer returns it_value=0 erroneously (LP: #1349028) + - [Config] CONTEXT_TRACKING_FORCE policy should be unset + + * lockdown on power (LP: #1855668) // Ubuntu Kernel Support for OpenPOWER NV + Secure & Trusted Boot (LP: #1866909) + - [Config] Enable configs for OpenPOWER NV Secure & Trusted Boot + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] annotations: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC + - [Config] Remove CONFIG_SND_HDA_INTEL_DETECT_DMIC from annotations + - [Debian] final-checks -- Do not remove ~* from abi + - [Config] Enable 5-level page table support for x86 + - [Config] updateconfigs after 5.7-rc5 rebase + + -- Paolo Pisati Mon, 11 May 2020 10:25:42 +0200 + +linux-5.7 (5.7.0-2.3) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update helper scripts + + * ASUS T100HAN boots to a blank screen with a cursor [i965: Failed to submit + batchbuffer: Input/output error] (LP: #1860754) + - [Config] CONFIG_PMIC_OPREGION=y and CONFIG_GPIO_CRYSTAL_COVE=y for amd64 + + * ubuntu/focal64 fails to mount Vagrant shared folders (LP: #1873506) + - [Packaging] Move virtualbox modules to linux-modules + - [Packaging] Remove vbox and zfs modules from generic.inclusion-list + + * built-using constraints preventing uploads (LP: #1875601) + - temporarily drop Built-Using data + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] autoreconstruct -- manage executable debian files + - [packaging] handle downloads from the librarian better + + * Add signed modules for the 435 NVIDIA driver (LP: #1875888) + - [Packaging] NVIDIA -- add signed modules for the 435 NVIDIA driver + + * [Selftests] Apply various fixes and improvements (LP: #1870543) + - SAUCE: selftests/seccomp -- Disable timeout for seccomp tests + + * [17.04 FEAT] Integrate kernel message catalogue for s390x into Ubuntu + distribution (LP: #1628889) + - SAUCE: s390: kernel message catalog + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * [ICL] TC port in legacy/static mode can't be detected due TCCOLD + (LP: #1868936) + - drm/i915/display: Move out code to return the digital_port of the aux ch + - drm/i915/display: Add intel_legacy_aux_to_power_domain() + - drm/i915/display: Split hsw_power_well_enable() into two + - drm/i915/tc/icl: Implement TC cold sequences + - drm/i915/tc: Skip ref held check for TC legacy aux power wells + - drm/i915/tc/tgl: Implement TC cold sequences + - drm/i915/tc: Catch TC users accessing FIA registers without enable aux + - drm/i915/tc: Do not warn when aux power well of static TC ports timeout + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + + * 'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL' (LP: #1861610) + - SAUCE: Input: elan_i2c - add more hardware ID for Lenovo laptop + + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) + - SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay + + * alsa/sof: kernel oops on the machine without Intel hdmi audio codec (a + regression in the asoc machine driver) (LP: #1874359) + - ASoC: intel/skl/hda - fix oops on systems without i915 audio codec + + * Add debian/rules targets to compile/run kernel selftests (LP: #1874286) + - [Packaging] add support to compile/run selftests + + * 5.4.0-24.28 does not seem to apply rtprio, whereas -21 does. (LP: #1873315) + - [Config] lowlatency: turn off RT_GROUP_SCHED + + * alsa/sof: external mic can't be deteced on Lenovo and HP laptops + (LP: #1872569) + - SAUCE: ASoC: intel/skl/hda - set autosuspend timeout for hda codecs + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: fix dentry revalidation + + * shiftfs: broken shiftfs nesting (LP: #1872094) + - SAUCE: shiftfs: record correct creator credentials + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + + * Fix authentication fail on Realtek WiFi 8723de (LP: #1871300) + - SAUCE: rtw88: No retry and report for auth and assoc + - SAUCE: rtw88: fix rate for a while after being connected + - SAUCE: rtw88: Move driver IQK to set channel before association for 11N chip + + * Miscellaneous Ubuntu changes + - SAUCE: rtw88: fix 'const' mismatch in power suequence hooks + - SAUCE: rtw88: fix 'const' mismatch in + __priority_queue_cfg_legacy()/__priority_queue_cfg() + - [Config] RTW88=m + - SAUCE: (lockdown) Revert carried-forward lockdown patches + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] Add back CONFIG_LOCK_DOWN_IN_SECURE_BOOT annotation for ppc64el + - [Config] CONFIG_RT_GROUP_SCHED=y + - [Packaging] Include modules.builtin.modinfo in linux-modules + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - Update dropped.txt for restored apparmor patches + - Remove lockdown patches from dropped.txt + - SAUCE: powerpc/ima: require IMA module signatures only if MODULE_SIG is not + enabled + - SAUCE: selftests/ftrace: Use printf instead of echo in kprobe syntax error + tests + - SAUCE: selftests/net -- disable l2tp.sh test + - SAUCE: selftests/net -- disable timeout + - SAUCE: tools: hv: Update shebang to use python3 instead of python + - Remove dropped.txt + - [Packaging] move linux-doc and linux-libc-dev stubs to debian.master + - [Debian] Support generating configs for riscv64 + - [Config] CONFIG_KMSG_IDS=y for s390x + - [Packaging] add libcap-dev dependency + - [Config] CONFIG_AD5770R=m + - [Config] CONFIG_AL3010=m + - [Config] CONFIG_APPLE_MFI_FASTCHARGE=m + - [Config] CONFIG_BAREUDP=m + - [Config] CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m + - [Config] CONFIG_CRYPTO_DEV_ZYNQMP_AES=m + - [Config] CONFIG_DRM_DISPLAY_CONNECTOR=m + - [Config] CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m + - [Config] CONFIG_DRM_PANEL_ELIDA_KD35T133=m + - [Config] CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m + - [Config] CONFIG_DRM_PANEL_NOVATEK_NT35510=m + - [Config] CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m + - [Config] CONFIG_DRM_PARADE_PS8640=m + - [Config] CONFIG_DRM_SIMPLE_BRIDGE=m + - [Config] CONFIG_DRM_TIDSS=m + - [Config] CONFIG_DRM_TI_TPD12S015=m + - [Config] CONFIG_DRM_TOSHIBA_TC358768=m + - [Config] CONFIG_EDAC_DMC520=m + - [Config] CONFIG_EXFAT_FS=m + - [Config] CONFIG_GP2AP002=m + - [Config] CONFIG_GPIO_MLXBF2=m + - [Config] CONFIG_HID_GLORIOUS=m + - [Config] CONFIG_HID_MCP2221=m + - [Config] CONFIG_HMC425=m + - [Config] CONFIG_ICP10100=m + - [Config] CONFIG_IMX8MM_THERMAL=m + - [Config] CONFIG_IMX_SC_THERMAL=m + - [Config] CONFIG_INTERCONNECT_QCOM_OSM_L3=m + - [Config] CONFIG_INTERCONNECT_QCOM_SC7180=m + - [Config] CONFIG_K3_RTI_WATCHDOG=m + - [Config] CONFIG_MDIO_IPQ8064=m + - [Config] CONFIG_MDIO_MVUSB=m + - [Config] CONFIG_MHI_BUS=m + - [Config] CONFIG_OCTEONTX2_VF=m + - [Config] CONFIG_PHY_CADENCE_TORRENT=m + - [Config] CONFIG_PHY_QCOM_USB_HS_28NM=m + - [Config] CONFIG_PHY_QCOM_USB_SS=m + - [Config] CONFIG_PINCTRL_DA9062=m + - [Config] CONFIG_PINCTRL_IPQ6018=m + - [Config] CONFIG_PTP_1588_CLOCK_IDT82P33=m + - [Config] CONFIG_PTP_1588_CLOCK_VMW=m + - [Config] CONFIG_QCOM_IPA=m + - [Config] CONFIG_REGULATOR_MP5416=m + - [Config] CONFIG_REGULATOR_MP886X=m + - [Config] CONFIG_RN5T618_ADC=m + - [Config] CONFIG_RTC_DRV_MT2712=m + - [Config] CONFIG_RTC_DRV_RC5T619=m + - [Config] CONFIG_SC_MSS_7180=m + - [Config] CONFIG_SENSORS_AXI_FAN_CONTROL=m + - [Config] CONFIG_SM_GCC_8250=m + - [Config] CONFIG_SND_BCM63XX_I2S_WHISTLER=m + - [Config] CONFIG_SND_MESON_AIU=m + - [Config] CONFIG_SND_MESON_G12A_TOACODEC=m + - [Config] CONFIG_SND_MESON_GX_SOUND_CARD=m + - [Config] CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m + - [Config] CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m + - [Config] CONFIG_SND_SOC_MESON_T9015=m + - [Config] CONFIG_SND_SOC_RT5682_SDW=m + - [Config] CONFIG_SND_SOC_TLV320ADCX140=m + - [Config] CONFIG_SPI_FSI=m + - [Config] CONFIG_SPI_MTK_NOR=m + - [Config] CONFIG_SPI_MUX=m + - [Config] CONFIG_SPRD_THERMAL=m + - [Config] CONFIG_SURFACE_3_POWER_OPREGION=m + - [Config] CONFIG_TINYDRM_ILI9486=m + - [Config] CONFIG_TI_K3_AM65_CPSW_NUSS=m + - [Config] CONFIG_TYPEC_MUX_INTEL_PMC=m + - [Config] CONFIG_UACCE=m + - [Config] CONFIG_UNIPHIER_XDMAC=m + - [Config] CONFIG_USB_MAX3420_UDC=m + - [Config] CONFIG_USB_RAW_GADGET=m + - [Config] CONFIG_VHOST_VDPA=m + - [Config] CONFIG_VIDEO_IMX219=m + - [Config] CONFIG_VIDEO_SUN8I_ROTATE=m + - [Config] CONFIG_VIRTIO_VDPA=m + - [Config] CONFIG_MOST_COMPONENTS=m + - [Config] CONFIG_MFD_IQS62X=m + - packaging: getabis: switch to ckt-ppa:bootstrap/linux-5.7 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask" + - Revert "UBUNTU: SAUCE: drm/i915/fbc: disable framebuffer compression on + IceLake" + - Revert "UBUNTU: SAUCE: platform/x86: dell-uart-backlight: move retry block" + + -- Paolo Pisati Mon, 04 May 2020 10:48:48 +0200 + +linux-5.7 (5.7.0-1.2) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: hio: pass make_request ptr directly to blk_alloc_queue() + - SAUCE: hio: locally define disk_map_sector_rcu() + - SAUCE: hio: Revert "block: unexport disk_map_sector_rcu" + - SAUCE: hio: include + - [Config] amd64: i386: HIO=m + - [Config] updateconfigs after 5.7-rc3 rebase + + -- Paolo Pisati Mon, 27 Apr 2020 11:31:38 +0200 + +linux-5.7 (5.7.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.7-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc1 + * Rebase to v5.7-rc2 + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.7 (5.7.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.6 (5.6.0-7.7) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Kernel Oops - general protection fault: 0000 [#1] SMP PTI after + disconnecting thunderbolt docking station (LP: #1864754) + - SAUCE: ptp: free ptp clock properly + + * swap storms kills interactive use (LP: #1861359) + - SAUCE: mm/page_alloc.c: disable memory reclaim watermark boosting by default + + * sysfs: incorrect network device permissions on network namespace change + (LP: #1865359) + - sysfs: add sysfs_file_change_owner() + - sysfs: add sysfs_link_change_owner() + - sysfs: add sysfs_group{s}_change_owner() + - sysfs: add sysfs_change_owner() + - device: add device_change_owner() + - drivers/base/power: add dpm_sysfs_change_owner() + - net-sysfs: add netdev_change_owner() + - net-sysfs: add queue_change_owner() + - net: fix sysfs permssions when device changes network namespace + - sysfs: fix static inline declaration of sysfs_groups_change_owner() + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6 + + -- Andrea Righi Tue, 31 Mar 2020 10:45:09 +0200 + +linux-5.6 (5.6.0-6.6) focal; urgency=medium + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * Make Dell WD19 dock more reliable after suspend (LP: #1868217) + - xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3 + - xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 + - xhci: Finetune host initiated USB3 rootport link suspend and resume + + * update-version-dkms doesn't add a BugLink (LP: #1867790) + - [Packaging] Add BugLink to update-version-dkms commit + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add regulatory process strategy for different chipset + - SAUCE: rtw88: support dynamic user regulatory setting + - SAUCE: rtw88: Use secondary channel offset enumeration + - SAUCE: rtw88: 8822c: modify rf protection setting + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: Revert "rtw88: disable TX-AMSDU on 2.4G band" + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: rtw88: remove unused parameter vif in rtw_lps_pg_info_get() + - SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask + - SAUCE: rtw88: pci: 8822c should set clock delay to zero + - SAUCE: rtw88: move rtw_enter_ips() to the last when config + - SAUCE: rtw88: avoid holding mutex for cancel_delayed_work_sync() + - SAUCE: rtw88: add ciphers to suppress error message + - SAUCE: rtw88: 8822c: update power sequence to v16 + - SAUCE: rtw88: Fix incorrect beamformee role setting + - SAUCE: rtw88: don't hold all IRQs disabled for PS operations + - SAUCE: rtw88: extract alloc rsvd_page and h2c skb routines + - SAUCE: rtw88: associate reserved pages with each vif + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: 8723d: Add basic chip capabilities + - SAUCE: rtw88: 8723d: add beamform wrapper functions + - SAUCE: rtw88: 8723d: Add power sequence + - SAUCE: rtw88: 8723d: Add RF read/write ops + - SAUCE: rtw88: 8723d: Add mac/bb/rf/agc/power_limit tables + - SAUCE: rtw88: 8723d: Add cfg_ldo25 to control LDO25 + - SAUCE: rtw88: 8723d: Add new chip op efuse_grant() to control efuse access + - SAUCE: rtw88: 8723d: Add read_efuse to recognize efuse info from map + - SAUCE: rtw88: add legacy firmware download for 8723D devices + - SAUCE: rtw88: no need to send additional information to legacy firmware + - SAUCE: rtw88: 8723d: Add mac power-on/-off function + - SAUCE: rtw88: decompose while(1) loop of power sequence polling command + - SAUCE: rtw88: 8723d: 11N chips don't support H2C queue + - SAUCE: rtw88: 8723d: implement set_tx_power_index ops + - SAUCE: rtw88: 8723d: Organize chip TX/RX FIFO + - SAUCE: rtw88: 8723d: initialize mac/bb/rf basic functions + - SAUCE: rtw88: 8723d: Add DIG parameter + - SAUCE: rtw88: 8723d: Add query_rx_desc + - SAUCE: rtw88: 8723d: Add set_channel + - SAUCE: rtw88: handle C2H_CCX_TX_RPT to know if packet TX'ed successfully + - SAUCE: rtw88: 8723d: 11N chips don't support LDPC + - SAUCE: rtw88: set default port to firmware + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: add SAR of TX power limit + - SAUCE: rtw88: sar: Load static SAR table from ACPI WRDS method + - SAUCE: rtw88: sar: Load dynamic SAR table from ACPI methods + - SAUCE: rtw88: sar: apply dynamic SAR table to tx power limit + - SAUCE: rtw88: sar: add sar_work to poll if dynamic SAR table is changed + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: Add chip_ops::false_alarm_statistics + - SAUCE: rtw88: 8723d: Set IG register for CCK rate + - SAUCE: rtw88: 8723d: add interface configurations table + - SAUCE: rtw88: 8723d: Add LC calibration + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: fill zeros to words 0x06 and 0x07 of security cam entry + - SAUCE: rtw88: 8723d: Add 8723DE to Kconfig and Makefile + - [Config] CONFIG_RTW88_8723DE=y + + * [Ubuntu 20.04] Unset HIBERNATION and PM kernel config options for focal + (LP: #1867753) + - [Config] CONFIG_HIBERNATION=n and CONFIG_PM=n for s390x + + * [20.04 FEAT] Base KVM setup for secure guests - kernel part (LP: #1835531) + - s390/protvirt: introduce host side setup + - s390/protvirt: add ultravisor initialization + - s390/mm: provide memory management functions for protected KVM guests + - s390/mm: add (non)secure page access exceptions handlers + - s390/protvirt: Add sysfs firmware interface for Ultravisor information + - KVM: s390/interrupt: do not pin adapter interrupt pages + - KVM: s390: protvirt: Add UV debug trace + - KVM: s390: add new variants of UV CALL + - KVM: s390: protvirt: Add initial vm and cpu lifecycle handling + - KVM: s390: protvirt: Secure memory is not mergeable + - KVM: s390/mm: Make pages accessible before destroying the guest + - KVM: s390: protvirt: Handle SE notification interceptions + - KVM: s390: protvirt: Instruction emulation + - KVM: s390: protvirt: Implement interrupt injection + - KVM: s390: protvirt: Add SCLP interrupt handling + - KVM: s390: protvirt: Handle spec exception loops + - KVM: s390: protvirt: Add new gprs location handling + - KVM: S390: protvirt: Introduce instruction data area bounce buffer + - KVM: s390: protvirt: handle secure guest prefix pages + - KVM: s390/mm: handle guest unpin events + - KVM: s390: protvirt: Write sthyi data to instruction data area + - KVM: s390: protvirt: STSI handling + - KVM: s390: protvirt: disallow one_reg + - KVM: s390: protvirt: Do only reset registers that are accessible + - KVM: s390: protvirt: Only sync fmt4 registers + - KVM: s390: protvirt: Add program exception injection + - KVM: s390: protvirt: UV calls in support of diag308 0, 1 + - KVM: s390: protvirt: Report CPU state to Ultravisor + - KVM: s390: protvirt: Support cmd 5 operation state + - KVM: s390: protvirt: Mask PSW interrupt bits for interception 104 and 112 + - KVM: s390: protvirt: do not inject interrupts after start + - KVM: s390: protvirt: Add UV cpu reset calls + - DOCUMENTATION: Protected virtual machine introduction and IPL + - KVM: s390: protvirt: introduce and enable KVM_CAP_S390_PROTECTED + - KVM: s390: protvirt: Add KVM api documentation + - mm/gup/writeback: add callbacks for inaccessible pages + + * All PS/2 ports on PS/2 Serial add-in bracket are not working after S3 + (LP: #1866734) + - SAUCE: Input: i8042 - fix the selftest retry logic + + * Sys oopsed with sysfs test in ubuntu_stress_smoke_test on X-hwe ARM64 + (LP: #1866772) + - ACPI: sysfs: copy ACPI data using io memory copying + + * Miscellaneous Ubuntu changes + - hio -- remove duplicated MODULE_DEVICE_TABLE declaration + - SAUCE: r8169: disable ASPM L1.1 + - [Config] update annotations from configs + - [Config] update configs after annotation file review + - SAUCE: Revert "tools/power turbostat: Fix 32-bit capabilities warning" + + * Miscellaneous upstream changes + - drm/i915: Fix eDP DPCD aux max backlight calculations + - drm/dp: Introduce EDID-based quirks + - drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel + - drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc7 + + -- Andrea Righi Wed, 25 Mar 2020 18:09:13 +0100 + +linux-5.6 (5.6.0-5.5) focal; urgency=medium + + * please help enable CONFIG_EROFS_FS_ZIP (LP: #1867099) + - [Config] CONFIG_EROFS_FS_ZIP=y + - [Config] CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT=1 + + * Miscellaneous Ubuntu changes + - Config: Fix SND_HDA_PREALLOC_SIZE annotations + - Config: Fix DATA_SHIFT annotations + - Config: remove ANDROID_VSOC from annotations + - Config: remove arm arch from annotations + - Config: Update SOC_R8A7796X annotations + - Config: Update CLK_R8A7796X annotations + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc6 + + -- Andrea Righi Wed, 18 Mar 2020 17:25:30 +0100 + +linux-5.6 (5.6.0-4.4) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * Add sysfs attribute to show remapped NVMe (LP: #1863621) + - SAUCE: ata: ahci: Add sysfs attribute to show remapped NVMe device count + + * [20.04 FEAT] Compression improvements in Linux kernel (LP: #1830208) + - [Config] Introducing s390x specific kernel config option CONFIG_ZLIB_DFLTCC + + * [UBUNTU 20.04] s390x/pci: increase CONFIG_PCI_NR_FUNCTIONS to 512 in kernel + config (LP: #1866056) + - [Config] Increase CONFIG_PCI_NR_FUNCTIONS from 64 to 512 starting with focal + on s390x + + * CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set (LP: #1865332) + - [Config] CONFIG_IP_MROUTE_MULTIPLE_TABLES=y + + * [UBUNTU 20.04] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x + starting with focal (LP: #1865452) + - [Config] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x starting + with focal + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: blk/core: Gracefully handle unset + make_request_fn" + - [Packaging] prevent duplicated entries in modules.ignore + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc5 + + -- Andrea Righi Mon, 09 Mar 2020 09:42:06 +0100 + +linux-5.6 (5.6.0-3.3) focal; urgency=medium + + * nsleep-lat / set-timer-lat / inconsistency-check / raw_skew from timer in + ubuntu_kernel_selftests timeout on 5.3 / 5.4 (LP: #1864626) + - selftests/timers: Turn off timeout setting + + * Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU for focal + (LP: #1864198) + - Ubuntu: [Config] Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU + + * alsa/hda/realtek: fix a mute led regression on Lenovo X1 Carbon + (LP: #1864576) + - SAUCE: ALSA: hda/realtek - Fix a regression for mute led on Lenovo Carbon X1 + + * r8152 init may take up to 40 seconds at initialization with Dell WD19/WD19DC + during hotplug (LP: #1864284) + - UBUNTU SAUCE: r8151: check disconnect status after long sleep + + * Another Dell AIO backlight issue (LP: #1863880) + - SAUCE: platform/x86: dell-uart-backlight: move retry block + + * Backport GetFB2 ioctl (LP: #1863874) + - SAUCE: drm: Add getfb2 ioctl + + * Focal Fossa (20.04) feature request - Enable CONFIG_X86_UV (LP: #1863810) + - [Config] CONFIG_X86_UV=y + + * Miscellaneous Ubuntu changes + - debian: remove snapdragon config, rules and flavour + - remove snapdragon abi files + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc4 + + * Miscellaneous upstream changes + - updateconfigs following snapdragon removal + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc4 + + -- Andrea Righi Wed, 04 Mar 2020 08:21:10 +0100 + +linux-5.6 (5.6.0-2.2) focal; urgency=medium + + * Sometimes can't adjust brightness on Dell AIO (LP: #1862885) + - SAUCE: platform/x86: dell-uart-backlight: increase retry times + + * Dell XPS 13 (7390) Display Flickering - 19.10 (LP: #1849947) + - SAUCE: drm/i915: Disable PSR by default on all platforms + + * Miscellaneous Ubuntu changes + - [debian] ignore missing wireguard module + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390/ipl: lockdown kernel when booted + secure" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + -- Andrea Righi Mon, 24 Feb 2020 18:57:22 +0100 + +linux-5.6 (5.6.0-1.1) focal; urgency=medium + + * Integrate Intel SGX driver into linux-azure (LP: #1844245) + - [Packaging] Add systemd service to load intel_sgx + + * QAT drivers for C3XXX and C62X not included as modules (LP: #1845959) + - [Config] CRYPTO_DEV_QAT_C3XXX=m, CRYPTO_DEV_QAT_C62X=m and + CRYPTO_DEV_QAT_DH895xCC=m + + * 5.4.0-11 crash on cryptsetup open (LP: #1860231) + - SAUCE: blk/core: Gracefully handle unset make_request_fn + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Use kernel specific layout + + * Miscellaneous Ubuntu changes + - update dkms package versions + - update dropped.txt after rebase to v5.6-rc1 + - [Config] updateconfigs after rebase to 5.6-rc1 + - hio -- proc_create() requires a "struct proc_ops" in 5.6 + - SAUCE: arm: fix build error in kvm tracepoint + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] Disable the uselib system call" + - Revert "UBUNTU: [Config] Disable legacy PTY naming" + - Revert "UBUNTU: [Config] Enforce filtered access to iomem" + - Revert "UBUNTU: [Config] Enable notifier call chain validations" + - Revert "UBUNTU: [Config] Enable scatterlist validation" + - Revert "UBUNTU: [Config] Enable cred sanity checks" + - Revert "UBUNTU: [Config] Enable linked list manipulation checks" + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc1 + + -- Andrea Righi Thu, 13 Feb 2020 17:20:27 +0100 + +linux-5.6 (5.6.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Andrea Righi Mon, 10 Feb 2020 11:06:18 +0100 + +linux-5.5 (5.5.0-7.8) focal; urgency=medium + + * CONFIG_USELIB should be disabled (LP: #1855341) + - [Config] Disable the uselib system call + + * CONFIG_LEGACY_PTYS should be disabled (LP: #1855339) + - [Config] Disable legacy PTY naming + + * CONFIG_IO_STRICT_DEVMEM should be enabled (LP: #1855338) + - [Config] Enforce filtered access to iomem + + * CONFIG_DEBUG_NOTIFIERS should be enabled (LP: #1855337) + - [Config] Enable notifier call chain validations + + * CONFIG_DEBUG_SG should be enabled (LP: #1855336) + - [Config] Enable scatterlist validation + + * CONFIG_DEBUG_CREDENTIALS should be enabled (LP: #1855335) + - [Config] Enable cred sanity checks + + * CONFIG_DEBUG_LIST should be enabled (LP: #1855334) + - [Config] Enable linked list manipulation checks + + * shiftfs: prevent lower dentries from going negative during unlink + (LP: #1860041) + - SAUCE: shiftfs: prevent lower dentries from going negative during unlink + + * [SRU][B/OEM-B/OEM-OSP1/D/E/Unstable] UBUNTU: SAUCE: Use native backlight on + Lenovo E41-25/45 (LP: #1859561) + - SAUCE: ACPI: video: Use native backlight on Lenovo E41-25/45 + + * USB key cannot be detected by hotplug on Sunix USB Type-A 3.1 Gen 2 card + [1b21:2142] (LP: #1858988) + - SAUCE: PCI: Avoid ASMedia XHCI USB PME# from D0 defect + + * Dell AIO can't adjust brightness (LP: #1858761) + - SAUCE: platform/x86: dell-uart-backlight: add retry for get scalar status + + * Miscellaneous Ubuntu changes + - [Config] Fix typo in annotations file + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5 + + -- Andrea Righi Mon, 27 Jan 2020 11:39:38 +0100 + +linux-5.5 (5.5.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] Update ubuntu-regression-suite dependency to python2 + - [Packaging] Fix ubuntu-regression-suite python dependency for hwe kernel + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc7 + + -- Andrea Righi Mon, 20 Jan 2020 10:16:01 +0100 + +linux-5.5 (5.5.0-5.6) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc6 + + -- Andrea Righi Mon, 13 Jan 2020 15:50:12 +0100 + +linux-5.5 (5.5.0-4.5) focal; urgency=medium + + * linux build and autopkg tests need to use python2 instead of python + (LP: #1858487) + - [Packaging] Remove python-dev build dependency + + -- Andrea Righi Wed, 08 Jan 2020 16:00:26 +0100 + +linux-5.5 (5.5.0-3.4) focal; urgency=medium + + * [SRU][B/OEM-B/OEM-OSP1/D/E/F] Add LG I2C touchscreen multitouch support + (LP: #1857541) + - SAUCE: HID: multitouch: Add LG MELF0410 I2C touchscreen support + + * Make vfio-pci built-in or xhci_hcd optional (LP: #1770845) + - [Config]: built-in VFIO_PCI for amd64 + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Link to wiki with guidance on multi-zone RAID0 layout + migration + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package to linux-5.5 + - [Packaging] Don't use SRCPKGNAME for linux-libc-dev + - [Packaging] Remove linux-source-3 Provides: from linux-source + - [Packaging] Fix linux-doc in linux-image Suggests: + - [Debian] Read variants list into a variable + - [Packaging] Generate linux-libc-dev package only for primary variant + - [Packaging] Generate linux-doc for only the primary variant + - [Debian] Update linux source package name in debian/tests/* + - update dkms package versions + - [Config] updateconfigs after rebase to 5.5-rc3 + - [Config] disable PCI_MESON + - [Config] Add pinctrl-equilibrium to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc5 + + -- Andrea Righi Wed, 08 Jan 2020 11:28:43 +0100 + +linux-5.5 (5.5.0-2.3) focal; urgency=medium + + * Empty entry. + + -- Seth Forshee Tue, 17 Dec 2019 22:33:59 -0600 + +linux (5.5.0-2.3) focal; urgency=medium + + * Support DPCD aux brightness control (LP: #1856134) + - SAUCE: drm/i915: Fix eDP DPCD aux max backlight calculations + - SAUCE: drm/i915: Assume 100% brightness when not in DPCD control mode + - SAUCE: drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() + - SAUCE: drm/i915: Auto detect DPCD backlight support by default + - SAUCE: drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED + panel + - USUNTU: SAUCE: drm/i915: Force DPCD backlight mode on Dell Precision 4K sku + + * change kconfig of the soundwire bus driver from y to m (LP: #1855685) + - [Config]: SOUNDWIRE=m + + * Fix unusable USB hub on Dell TB16 after S3 (LP: #1855312) + - SAUCE: USB: core: Make port power cycle a seperate helper function + - SAUCE: USB: core: Attempt power cycle port when it's in eSS.Disabled state + + * Miscellaneous Ubuntu changes + - [Debian] add python depends to ubuntu-regression-suite + - SAUCE: selftests: net: tls: remove recv_rcvbuf test + - update dkms package versions + + * Miscellaneous upstream changes + - [Config] updateconfigs after rebase to 5.5-rc2 + + -- Andrea Righi Tue, 17 Dec 2019 16:02:43 +0100 + +linux (5.5.0-1.2) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Config] disable zfs dkms build + - update dropped.txt after rebase to v5.5-rc1 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - update dkms package versions + + -- Andrea Righi Thu, 12 Dec 2019 16:54:41 +0100 + +linux (5.5.0-0.1) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.5-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc1 + + -- Andrea Righi Mon, 09 Dec 2019 19:03:35 +0100 + +linux (5.5.0-0.0) focal; urgency=medium + + * Dummy entry. + + -- Andrea Righi Mon, 09 Dec 2019 15:14:37 +0100 + +linux (5.4.0-8.11) focal; urgency=medium + + * focal/linux: 5.4.0-8.9 -proposed tracker (LP: #1855448) + + * update ENA driver for DIMLIB dynamic interrupt moderation (LP: #1853180) + - SAUCE: net: ena: fix issues in setting interrupt moderation params in + ethtool + - SAUCE: net: ena: fix too long default tx interrupt moderation interval + + * Kernel build log filled with "/bin/bash: line 5: warning: command + substitution: ignored null byte in input" (LP: #1853843) + - [Debian] Fix warnings when checking for modules signatures + + * hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO + (LP: #1852581) + - [Packaging] Fix module signing with older modinfo + + * Fix MST support on Ice Lake (LP: #1854432) + - drm/i915: fix port checks for MST support on gen >= 11 + + * headphone has noise as not mute on dell machines with alc236/256 + (LP: #1854401) + - SAUCE: ALSA: hda/realtek - Dell headphone has noise on unmute for ALC236 + + * [CML-S62] Need enable intel_pmc_core driver patch for Comet lake- S 6+2 + (LP: #1847450) + - SAUCE: platform/x86: intel_pmc_core: Add Comet Lake (CML) platform support + to intel_pmc_core driver + + * CVE-2019-14901 + - SAUCE: mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() + + * CVE-2019-14896 // CVE-2019-14897 + - SAUCE: libertas: Fix two buffer overflows at parsing bss descriptor + + * CVE-2019-14895 + - SAUCE: mwifiex: fix possible heap overflow in mwifiex_process_country_ie() + + * [CML-S62] Need enable intel_rapl patch support for Comet lake- S 6+2 + (LP: #1847454) + - powercap/intel_rapl: add support for CometLake Mobile + - powercap/intel_rapl: add support for Cometlake desktop + + * External microphone can't work on some dell machines with the codec alc256 + or alc236 (LP: #1853791) + - SAUCE: ALSA: hda/realtek - Move some alc256 pintbls to fallback table + - SAUCE: ALSA: hda/realtek - Move some alc236 pintbls to fallback table + + * remount of multilower moved pivoted-root overlayfs root, results in I/O + errors on some modified files (LP: #1824407) + - SAUCE: ovl: fix lookup failure on multi lower squashfs + + * [CML-S62] Need enable turbostat patch support for Comet lake- S 6+2 + (LP: #1847451) + - SAUCE: tools/power turbostat: Add Cometlake support + + * CONFIG_ARCH_ROCKCHIP is not set in ubuntu 18.04 aarch64,arm64 (LP: #1825222) + - [Config] Enable ROCKCHIP support for arm64 + + * [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no longer + works on Dell Venue 11 Pro 7140 (LP: #1846539) + - SAUCE: ASoC: SOF: Intel: Broadwell: clarify mutual exclusion with legacy + driver + + * i40e: general protection fault in i40e_config_vf_promiscuous_mode + (LP: #1852663) + - SAUCE: i40e Fix GPF when deleting VMs + + * libbpf check_abi fails on ppc64el (LP: #1854974) + - libbpf: Fix readelf output parsing on powerpc with recent binutils + + * CVE-2019-19050 + - crypto: user - fix memory leak in crypto_reportstat + + * Make hotplugging docking station to Thunderbolt port more reliable + (LP: #1853991) + - PCI/PM: Add pcie_wait_for_link_delay() + - PCI/PM: Add missing link delays required by the PCIe spec + + * i915: Display flickers (monitor loses signal briefly) during "flickerfree" + boot, while showing the BIOS logo on a black background (LP: #1836858) + - [Config] FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y + + * [CML] New device id's for CMP-H (LP: #1846335) + - i2c: i801: Add support for Intel Comet Lake PCH-H + - mtd: spi-nor: intel-spi: Add support for Intel Comet Lake-H SPI serial flash + - mfd: intel-lpss: Add Intel Comet Lake PCH-H PCI IDs + + * Focal update: v5.4.2 upstream stable release (LP: #1855326) + - io_uring: async workers should inherit the user creds + - net: separate out the msghdr copy from ___sys_{send,recv}msg() + - net: disallow ancillary data for __sys_{send,recv}msg_file() + - crypto: inside-secure - Fix stability issue with Macchiatobin + - driver core: platform: use the correct callback type for bus_find_device + - usb: dwc2: use a longer core rest timeout in dwc2_core_reset() + - staging: wilc1000: fix illegal memory access in wilc_parse_join_bss_param() + - staging: rtl8192e: fix potential use after free + - staging: rtl8723bs: Drop ACPI device ids + - staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids + - USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P + - mei: bus: prefix device names on bus with the bus name + - mei: me: add comet point V device id + - thunderbolt: Power cycle the router if NVM authentication fails + - x86/fpu: Don't cache access to fpu_fpregs_owner_ctx + - gve: Fix the queue page list allocated pages count + - macvlan: schedule bc_work even if error + - mdio_bus: don't use managed reset-controller + - net: dsa: sja1105: fix sja1105_parse_rgmii_delays() + - net: macb: add missed tasklet_kill + - net: psample: fix skb_over_panic + - net: sched: fix `tc -s class show` no bstats on class with nolock subqueues + - openvswitch: fix flow command message size + - sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook + - slip: Fix use-after-free Read in slip_open + - sctp: cache netns in sctp_ep_common + - openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() + - openvswitch: remove another BUG_ON() + - net/tls: take into account that bpf_exec_tx_verdict() may free the record + - net/tls: free the record on encryption error + - net: skmsg: fix TLS 1.3 crash with full sk_msg + - selftests/tls: add a test for fragmented messages + - net/tls: remove the dead inplace_crypto code + - net/tls: use sg_next() to walk sg entries + - selftests: bpf: test_sockmap: handle file creation failures gracefully + - selftests: bpf: correct perror strings + - tipc: fix link name length check + - selftests: pmtu: use -oneline for ip route list cache + - r8169: fix jumbo configuration for RTL8168evl + - r8169: fix resume on cable plug-in + - ext4: add more paranoia checking in ext4_expand_extra_isize handling + - Revert "jffs2: Fix possible null-pointer dereferences in + jffs2_add_frag_to_fragtree()" + - crypto: talitos - Fix build error by selecting LIB_DES + - HID: core: check whether Usage Page item is after Usage ID items + - platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer + - platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size + - Linux 5.4.2 + + * no HDMI video output since GDM greeter after linux-oem-osp1 version + 5.0.0-1026 (LP: #1852386) + - drm/i915: Add new CNL PCH ID seen on a CML platform + - SAUCE: drm/i915: Fix detection for a CMP-V PCH + + * Please add patch fixing RK818 ID detection (LP: #1853192) + - SAUCE: mfd: rk808: Fix RK818 ID template + + * Raydium Touchscreen on ThinkPad L390 does not work (LP: #1849721) + - HID: i2c-hid: fix no irq after reset on raydium 3118 + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + - lib: devres: add a helper function for ioremap_uc + - mfd: intel-lpss: Use devm_ioremap_uc for MMIO + + * Lenovo dock MAC Address pass through doesn't work in Ubuntu (LP: #1827961) + - r8152: Add macpassthru support for ThinkPad Thunderbolt 3 Dock Gen 2 + + * Disable unreliable HPET on CFL-H system (LP: #1852216) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake H platforms + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] Enable virtualbox dkms build + - [Config] update annotations to match current configs + - SAUCE: Add exfat module to signature inclusion list + + * Miscellaneous upstream changes + - Bluetooth: Fix invalid-free in bcsp_close() + - ath9k_hw: fix uninitialized variable data + - ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe + - ath10k: Fix HOST capability QMI incompatibility + - ath10k: restore QCA9880-AR1A (v1) detection + - Revert "Bluetooth: hci_ll: set operational frequency earlier" + - Revert "dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues" + - md/raid10: prevent access of uninitialized resync_pages offset + - x86/insn: Fix awk regexp warnings + - x86/speculation: Fix incorrect MDS/TAA mitigation status + - x86/speculation: Fix redundant MDS mitigation message + - nbd: prevent memory leak + - x86/stackframe/32: Repair 32-bit Xen PV + - x86/xen/32: Make xen_iret_crit_fixup() independent of frame layout + - x86/xen/32: Simplify ring check in xen_iret_crit_fixup() + - x86/doublefault/32: Fix stack canaries in the double fault handler + - x86/pti/32: Size initial_page_table correctly + - x86/cpu_entry_area: Add guard page for entry stack on 32bit + - x86/entry/32: Fix IRET exception + - x86/entry/32: Use %ss segment where required + - x86/entry/32: Move FIXUP_FRAME after pushing %fs in SAVE_ALL + - x86/entry/32: Unwind the ESPFIX stack earlier on exception entry + - x86/entry/32: Fix NMI vs ESPFIX + - selftests/x86/mov_ss_trap: Fix the SYSENTER test + - selftests/x86/sigreturn/32: Invalidate DS and ES when abusing the kernel + - x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make + the CPU_ENTRY_AREA_PAGES assert precise + - x86/entry/32: Fix FIXUP_ESPFIX_STACK with user CR3 + - futex: Prevent robust futex exit race + - ALSA: usb-audio: Fix NULL dereference at parsing BADD + - ALSA: usb-audio: Fix Scarlett 6i6 Gen 2 port data + - media: vivid: Set vid_cap_streaming and vid_out_streaming to true + - media: vivid: Fix wrong locking that causes race conditions on streaming + stop + - media: usbvision: Fix invalid accesses after device disconnect + - media: usbvision: Fix races among open, close, and disconnect + - cpufreq: Add NULL checks to show() and store() methods of cpufreq + - futex: Move futex exit handling into futex code + - futex: Replace PF_EXITPIDONE with a state + - exit/exec: Seperate mm_release() + - futex: Split futex_mm_release() for exit/exec + - futex: Set task::futex_state to DEAD right after handling futex exit + - futex: Mark the begin of futex exit explicitly + - futex: Sanitize exit state handling + - futex: Provide state handling for exec() as well + - futex: Add mutex around futex exit + - futex: Provide distinct return value when owner is exiting + - futex: Prevent exit livelock + - media: uvcvideo: Fix error path in control parsing failure + - media: b2c2-flexcop-usb: add sanity checking + - media: cxusb: detect cxusb_ctrl_msg error in query + - media: imon: invalid dereference in imon_touch_event + - media: mceusb: fix out of bounds read in MCE receiver buffer + - ALSA: hda - Disable audio component for legacy Nvidia HDMI codecs + - USBIP: add config dependency for SGL_ALLOC + - usbip: tools: fix fd leakage in the function of read_attr_usbip_status + - usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() + - usb-serial: cp201x: support Mark-10 digital force gauge + - USB: chaoskey: fix error case of a timeout + - appledisplay: fix error handling in the scheduled work + - USB: serial: mos7840: add USB ID to support Moxa UPort 2210 + - USB: serial: mos7720: fix remote wakeup + - USB: serial: mos7840: fix remote wakeup + - USB: serial: option: add support for DW5821e with eSIM support + - USB: serial: option: add support for Foxconn T77W968 LTE modules + - staging: comedi: usbduxfast: usbduxfast_ai_cmdtest rounding error + - powerpc/book3s64: Fix link stack flush on context switch + - KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel + - Linux 5.4.1 + + -- Seth Forshee Fri, 06 Dec 2019 15:53:53 -0600 + +linux (5.4.0-7.8) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: Comment out BPF_CORE_READ's which cause clang to + segfault + - Update nvidia-430 to nvidia-440 + - [Config] Enable nvidia dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4 + + -- Andrea Righi Mon, 25 Nov 2019 15:02:30 +0100 + +linux (5.4.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Andrea Righi Mon, 18 Nov 2019 12:08:01 +0100 + +linux (5.4.0-5.6) focal; urgency=medium + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15793 + - SAUCE: shiftfs: Correct id translation for lower fs operations + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15792 + - SAUCE: shiftfs: prevent type confusion + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15791 + - SAUCE: shiftfs: Fix refcount underflow in btrfs ioctl handling + + * Some EFI systems fail to boot in efi_init() when booted via maas + (LP: #1851810) + - SAUCE: efi: efi_get_memory_map -- increase map headroom + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: rework define for SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: avoid overflow in implicit constant conversion + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] dkms -- try launchpad librarian for pool downloads + - [Packaging] dkms -- dkms-build quieten wget verbiage + + * tsc marked unstable after entered PC10 on Intel CoffeeLake (LP: #1840239) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake platforms + - SAUCE: x86/intel: Disable HPET on Intel Ice Lake platforms + + * shiftfs: prevent exceeding project quotas (LP: #1849483) + - SAUCE: shiftfs: drop CAP_SYS_RESOURCE from effective capabilities + + * shiftfs: fix fallocate() (LP: #1849482) + - SAUCE: shiftfs: setup correct s_maxbytes limit + + * The alsa hda driver is not loaded due to the missing of PCIID for Comet + Lake-S [8086:a3f0] (LP: #1852070) + - SAUCE: ALSA: hda: Add Cometlake-S PCI ID + + * Can't adjust brightness on DELL UHD dGPU AIO (LP: #1813877) + - SAUCE: platform/x86: dell-uart-backlight: add missing status command + - SAUCE: platform/x86: dell-uart-backlight: load driver by scalar status + - SAUCE: platform/x86: dell-uart-backlight: add force parameter + - SAUCE: platform/x86: dell-uart-backlight: add quirk for old platforms + + * s_iflags overlap prevents unprivileged overlayfs mounts (LP: #1851677) + - SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags + + * ubuntu-aufs-modified mmap_region() breaks refcounting in overlayfs/shiftfs + error path (LP: #1850994) // CVE-2019-15794 + - SAUCE: shiftfs: Restore vm_file value when lower fs mmap fails + - SAUCE: ovl: Restore vm_file value when lower fs mmap fails + + * Miscellaneous Ubuntu changes + - [Debian] Convert update-aufs.sh to use aufs5 + - SAUCE: import aufs driver + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Seth Forshee Wed, 13 Nov 2019 11:56:35 -0800 + +linux (5.4.0-4.5) focal; urgency=medium + + * High power consumption using 5.0.0-25-generic (LP: #1840835) + - PCI: Add a helper to check Power Resource Requirements _PR3 existence + - ALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a + driver + - PCI: Fix missing inline for pci_pr3_present() + + * Fix signing of staging modules in eoan (LP: #1850234) + - [Packaging] Leave unsigned modules unsigned after adding .gnu_debuglink + + * [20.04 FEAT] Set Architecture Level (ALS) to z13 (LP: #1837525) + - [Config] s390x bump march to z13, with tune to z15 + + * Miscellaneous Ubuntu changes + - [Debian]: do not skip tests for linux-hwe-edge + - update dkms package versions + - [Config] re-enable zfs + - [Config] rename module virtio_fs to virtiofs + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc6 + + -- Andrea Righi Mon, 04 Nov 2019 15:12:02 +0100 + +linux (5.4.0-3.4) focal; urgency=medium + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test + + * cloudimg: no iavf/i40evf module so no network available with SR-IOV enabled + cloud (LP: #1848481) + - [Packaging] include iavf/i40evf in generic + + * CVE-2019-17666 + - SAUCE: rtlwifi: Fix potential overflow on P2P code + + * Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x from yes + to no (LP: #1848492) + - [Config] Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x + from yes to no + + * Add Intel Comet Lake ethernet support (LP: #1848555) + - SAUCE: e1000e: Add support for Comet Lake + + * seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE (LP: #1847744) + - SAUCE: seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: test SECCOMP_USER_NOTIF_FLAG_CONTINUE + + * drm/i915: Fix the issue of "azx_get_response timeout" for hdmi audio on ICL + platforms (LP: #1847192) + - SAUCE: drm/i915: Fix audio power up sequence for gen10+ display + - SAUCE: drm/i915: extend audio CDCLK>=2*BCLK constraint to more platforms + + * PM / hibernate: fix potential memory corruption (LP: #1847118) + - SAUCE: PM / hibernate: memory_bm_find_bit -- tighten node optimisation + + * [regression] NoNewPrivileges incompatible with Apparmor (LP: #1844186) + - SAUCE: apparmor: fix nnp subset test for unconfined + + * overlayfs: allow with shiftfs as underlay (LP: #1846272) + - SAUCE: overlayfs: allow with shiftfs as underlay + + * eoan: alsa/sof: Enable SOF_HDA link and codec (LP: #1848490) + - [Config] Fix SOF Kconfig options + + * linux won't build when new virtualbox version is present on the archive + (LP: #1848788) + - [Packaging]: download virtualbox from sources + + * Miscellaneous Ubuntu changes + - [Config] update annotations from configs + - [Config] updateconfigs after rebase to 5.4-rc5 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc5 + + -- Seth Forshee Tue, 29 Oct 2019 12:01:27 -0500 + +linux (5.4.0-2.3) eoan; urgency=medium + + * Add installer support for iwlmvm adapters (LP: #1848236) + - d-i: Add iwlmvm to nic-modules + + * shiftfs: rework how shiftfs opens files (LP: #1846265) + - SAUCE: shiftfs: rework how shiftfs opens files + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc4 + + -- Andrea Righi Mon, 21 Oct 2019 17:31:26 +0200 + +linux (5.4.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc3 + - [Config] add flexfb, fbtft_device and rio500 to modules.ignore + - [Config] amd64: ignore fbtft and all dependent modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc3 + + -- Andrea Righi Mon, 14 Oct 2019 19:48:52 +0200 + +linux (5.4.0-0.1) eoan; urgency=medium + + * Enable the Dragonboards out of Eoan/master arm64 kernel (LP: #1846704) + - [Packaging] arm64: snapdragon: introduce a snapdragon flavour + - [Packaging] arm64: snapdragon: switch kernel format to Image + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8994=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8996=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8998=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_RPMH=y + - [Config] arm64: snapdragon: CONFIG_QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA=y + - [Config] arm64: snapdragon: CONFIG_COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_RPMH=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8916=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8994=y + - [Config] arm64: snapdragon: CONFIG_MSM_MMCC_8996=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8998=y + - [Config] arm64: snapdragon: CONFIG_HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_GLINK_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_GENI_SE=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMEM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMP2P=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMSM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_QFPROM=y + - [Config] arm64: snapdragon: CONFIG_SERIAL_QCOM_GENI=y + - [Config] arm64: snapdragon: CONFIG_QCOM_TSENS=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: CONFIG_MFD_QCOM_RPM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFS_HISI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_PLTFM=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_MSM=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_QMP=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_UFS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HSIC=y + - [Config] arm64: snapdragon: CONFIG_USB_CHIPIDEA_OF=y + - [Config] arm64: snapdragon: CONFIG_USB_EHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_EXTCON_USB_GPIO=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: CONFIG_LEDS_GPIO=y + - [Config] arm64: snapdragon: CONFIG_USB_HSIC_USB3503=y + - [Config] arm64: snapdragon: CONFIG_USB_NET_DRIVERS=y + - [Config] arm64: snapdragon: CONFIG_USB_OTG=y + - [Config] arm64: snapdragon: CONFIG_USB_XHCI_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_OHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_MUSB_HDRC=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_PCI=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_OF_SIMPLE=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_QCOM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_PWM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_HEARTBEAT=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_DEFAULT_ON=y + - [Config] arm64: snapdragon: CONFIG_QCOM_A53PLL=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_APCS_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_NLS_ISO8859_1=y + - [Config] arm64: snapdragon: CONFIG_USB_USBNET=y + - [Config] arm64: snapdragon: CONFIG_CRYPTO_DEV_QCOM_RNG=y + - [Config] arm64: snapdragon: CONFIG_POWER_RESET_QCOM_PON=y + - [Config] arm64: snapdragon: CONFIG_INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: CONFIG_KEYBOARD_GPIO=y + - [Config] arm64: snapdragon: CONFIG_RTC_DRV_PM8XXX=y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.4-rc2 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] enable aufs + - update dkms package versions + - [Config] disable zfs + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Debian] Generate stub reconstruct for -rc kernels + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Forbid unprivileged mounting + when device is opened for writing" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add module parameter to enable user + namespace mounts" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add support for unprivileged mounts + from user namespaces" + - Revert "UBUNTU: SAUCE: (namespace) mtd: Check permissions towards mtd block + device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Check permissions towards + block device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Support checking inode + permissions in lookup_bdev()" + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc2 + + -- Seth Forshee Fri, 11 Oct 2019 16:42:41 -0500 + +linux (5.4.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 08 Oct 2019 09:59:00 -0500 + +linux (5.3.0-17.18) eoan; urgency=medium + + * eoan/linux: 5.3.0-17.18 -proposed tracker (LP: #1846641) + + * CVE-2019-17056 + - nfc: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17055 + - mISDN: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17054 + - appletalk: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17053 + - ieee802154: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17052 + - ax25: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-15098 + - ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() + + * xHCI on AMD Stoney Ridge cannot detect USB 2.0 or 1.1 devices. + (LP: #1846470) + - x86/PCI: Avoid AMD FCH XHCI USB PME# from D0 defect + + * Re-enable linux-libc-dev build on i386 (LP: #1846508) + - [Packaging] Build only linux-libc-dev for i386 + - [Debian] final-checks -- ignore archtictures with no binaries + + * arm64: loop on boot after installing linux-generic-hwe-18.04-edge/bionic- + proposed (LP: #1845820) + - [Config] Disable CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT + + * Revert ESE DASD discard support (LP: #1846219) + - SAUCE: Revert "s390/dasd: Add discard support for ESE volumes" + + * Miscellaneous Ubuntu changes + - update dkms package versions + + -- Seth Forshee Thu, 03 Oct 2019 16:57:05 -0500 + +linux (5.3.0-16.17) eoan; urgency=medium + + * eoan/linux: 5.3.0-16.17 -proposed tracker (LP: #1846204) + + * zfs fails to build on s390x with debug symbols enabled (LP: #1846143) + - SAUCE: s390: Mark atomic const ops always inline + + -- Seth Forshee Tue, 01 Oct 2019 07:46:43 -0500 + +linux (5.3.0-15.16) eoan; urgency=medium + + * eoan/linux: 5.3.0-15.16 -proposed tracker (LP: #1845987) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Packaging] Remove x32 arch references from control files + - [Debian] final-checks -- Get arch list from debian/control + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian] Fix conditional for setting zfs debug package path + + * Use pyhon3-sphinx instead of python-sphinx for building html docs + (LP: #1845808) + - [Packaging] Update sphinx build dependencies to python3 packages + + * Kernel panic with 19.10 beta image (LP: #1845454) + - efi/tpm: Don't access event->count when it isn't mapped. + - efi/tpm: don't traverse an event log with no events + - efi/tpm: only set efi_tpm_final_log_size after successful event log parsing + + -- Seth Forshee Mon, 30 Sep 2019 11:57:20 -0500 + +linux (5.3.0-14.15) eoan; urgency=medium + + * eoan/linux: 5.3.0-14.15 -proposed tracker (LP: #1845728) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Debian] Remove support for producing i386 kernels + - [Debian] Don't use CROSS_COMPILE for i386 configs + + * udevadm trigger will fail when trying to add /sys/devices/vio/ + (LP: #1845572) + - SAUCE: powerpc/vio: drop bus_type from parent device + + * Trying to online dasd drive results in invalid input/output from the kernel + on z/VM (LP: #1845323) + - SAUCE: s390/dasd: Fix error handling during online processing + + * intel-lpss driver conflicts with write-combining MTRR region (LP: #1845584) + - SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 2-in-1 + + * Support Hi1620 zip hw accelerator (LP: #1845355) + - [Config] Enable HiSilicon QM/ZIP as modules + - crypto: hisilicon - add queue management driver for HiSilicon QM module + - crypto: hisilicon - add hardware SGL support + - crypto: hisilicon - add HiSilicon ZIP accelerator support + - crypto: hisilicon - add SRIOV support for ZIP + - Documentation: Add debugfs doc for hisi_zip + - crypto: hisilicon - add debugfs for ZIP and QM + - MAINTAINERS: add maintainer for HiSilicon QM and ZIP controller driver + - crypto: hisilicon - fix kbuild warnings + - crypto: hisilicon - add dependency for CRYPTO_DEV_HISI_ZIP + - crypto: hisilicon - init curr_sgl_dma to fix compile warning + - crypto: hisilicon - add missing single_release + - crypto: hisilicon - fix error handle in hisi_zip_create_req_q + - crypto: hisilicon - Fix warning on printing %p with dma_addr_t + - crypto: hisilicon - Fix return value check in hisi_zip_acompress() + - crypto: hisilicon - avoid unused function warning + + * SafeSetID LSM should be built but disabled by default (LP: #1845391) + - LSM: SafeSetID: Stop releasing uninitialized ruleset + - [Config] Build SafeSetID LSM but don't enable it by default + + * CONFIG_LSM should not specify loadpin since it is not built (LP: #1845383) + - [Config] loadpin shouldn't be in CONFIG_LSM + + * Add new pci-id's for CML-S, ICL (LP: #1845317) + - drm/i915/icl: Add missing device ID + - drm/i915/cml: Add Missing PCI IDs + + * Thunderbolt support for ICL (LP: #1844680) + - thunderbolt: Correct path indices for PCIe tunnel + - thunderbolt: Move NVM upgrade support flag to struct icm + - thunderbolt: Use 32-bit writes when writing ring producer/consumer + - thunderbolt: Do not fail adding switch if some port is not implemented + - thunderbolt: Hide switch attributes that are not set + - thunderbolt: Expose active parts of NVM even if upgrade is not supported + - thunderbolt: Add support for Intel Ice Lake + - ACPI / property: Add two new Thunderbolt property GUIDs to the list + + * Ubuntu 19.10 - Additional PCI patch and fix (LP: #1844668) + - s390/pci: fix MSI message data + + * Enhanced Hardware Support - Finalize Naming (LP: #1842774) + - s390: add support for IBM z15 machines + - [Config] CONFIG_MARCH_Z15=n, CONFIG_TUNE_Z15=n + + * Eoan update: v5.3.1 upstream stable release (LP: #1845642) + - USB: usbcore: Fix slab-out-of-bounds bug during device reset + - media: tm6000: double free if usb disconnect while streaming + - phy: renesas: rcar-gen3-usb2: Disable clearing VBUS in over-current + - ip6_gre: fix a dst leak in ip6erspan_tunnel_xmit + - net/sched: fix race between deactivation and dequeue for NOLOCK qdisc + - net_sched: let qdisc_put() accept NULL pointer + - udp: correct reuseport selection with connected sockets + - xen-netfront: do not assume sk_buff_head list is empty in error handling + - net: dsa: Fix load order between DSA drivers and taggers + - net: stmmac: Hold rtnl lock in suspend/resume callbacks + - KVM: coalesced_mmio: add bounds checking + - Documentation: sphinx: Add missing comma to list of strings + - firmware: google: check if size is valid when decoding VPD data + - serial: sprd: correct the wrong sequence of arguments + - tty/serial: atmel: reschedule TX after RX was started + - nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds + - Revert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" + - ovl: fix regression caused by overlapping layers detection + - phy: qcom-qmp: Correct ready status, again + - floppy: fix usercopy direction + - media: technisat-usb2: break out of loop at end of buffer + - Linux 5.3.1 + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian]: Remove hardcoded $(pkgdir) in debug symbols handling + - [Debian]: Handle debug symbols for modules in extras too + - [Debian]: Check/link modules with debug symbols after DKMS modules + - [Debian]: Warn about modules without debug symbols + - [Debian]: dkms-build: new parameter for debug package directory + - [Debian]: dkms-build: zfs: support for debug symbols + - [Debian]: dkms-build: Avoid executing post-processor scripts twice + - [Debian]: dkms-build: Move zfs special-casing into configure script + + * /proc/self/maps paths missing on live session (was vlc won't start; eoan + 19.10 & bionic 18.04 ubuntu/lubuntu/kubuntu/xubuntu/ubuntu-mate dailies) + (LP: #1842382) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: enable overlayfs on shiftfs" + + -- Seth Forshee Fri, 27 Sep 2019 16:08:06 -0500 + +linux (5.3.0-13.14) eoan; urgency=medium + + * eoan/linux: 5.3.0-13.14 -proposed tracker (LP: #1845105) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - [Debian] Remove binutils-dev build dependency + + -- Seth Forshee Mon, 23 Sep 2019 19:26:43 -0500 + +linux (5.3.0-12.13) eoan; urgency=medium + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Packaging] Add lz4 build dependency for s390x + + * Miscellaneous Ubuntu changes + - SAUCE: Remove spl and zfs source + + -- Seth Forshee Tue, 17 Sep 2019 13:36:26 +0200 + +linux (5.3.0-11.12) eoan; urgency=medium + + * eoan/linux: 5.3.0-11.12 -proposed tracker (LP: #1844144) + + * Suspend to RAM(S3) does not wake up for latest megaraid and mpt3sas + adapters(SAS3.5 onwards) (LP: #1838751) + - PCI: Restore Resizable BAR size bits correctly for 1MB BARs + + * s390/setup: Actually init kernel lock down (LP: #1843961) + - SAUCE: (lockdown) s390/setup: Actually init kernel lock down + + * cherrypick has_sipl fix (LP: #1843960) + - SAUCE: s390/sclp: Fix bit checked for has_sipl + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config]: Switch kernel compression from LZO to LZ4 on s390x + + * Installation fails on eoan/PowerVM : missing /dev/nvram (LP: #1837726) + - [Config] CONFIG_NVRAM=y for ppc64el + + * Miscellaneous Ubuntu changes + - [Config]: remove nvram from ppc64el modules ABI + - [Config] Update annotations for recent config changes + - SAUCE: sched: Add __ASSEMBLY__ guards around struct clone_args + - SAUCE: i2c: qcom-geni: Disable DMA processing on the Lenovo Yoga C630 + - SAUCE: arm64: dts: qcom: Add Lenovo Yoga C630 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3 + + -- Paolo Pisati Mon, 16 Sep 2019 16:18:27 +0200 + +linux (5.3.0-10.11) eoan; urgency=medium + + * eoan/linux: 5.3.0-10.11 -proposed tracker (LP: #1843232) + + * No sound inputs from the external microphone and headset on a Dell machine + (LP: #1842265) + - SAUCE: ALSA: hda - Expand pin_match function to match upcoming new tbls + - SAUCE: ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family + + * Horizontal corrupted line at top of screen caused by framebuffer compression + (LP: #1840236) + - SAUCE: drm/i915/fbc: disable framebuffer compression on IceLake + + * Add bpftool to linux-tools-common (LP: #1774815) + - [Debian] package bpftool in linux-tools-common + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc8 + + -- Paolo Pisati Mon, 09 Sep 2019 10:00:41 +0200 + +linux (5.3.0-9.10) eoan; urgency=medium + + * eoan/linux: 5.3.0-9.10 -proposed tracker (LP: #1842393) + + * shiftfs: mark kmem_cache as reclaimable (LP: #1842059) + - SAUCE: shiftfs: mark slab objects SLAB_RECLAIM_ACCOUNT + + * shiftfs: drop entries from cache on unlink (LP: #1841977) + - SAUCE: shiftfs: fix buggy unlink logic + + * Fix touchpad IRQ storm after S3 (LP: #1841396) + - pinctrl: intel: remap the pin number to gpio offset for irq enabled pin + + * Please include DTBs for arm64 laptops (LP: #1842050) + - arm64: dts: qcom: Add Lenovo Miix 630 + - arm64: dts: qcom: Add HP Envy x2 + - arm64: dts: qcom: Add Asus NovaGo TP370QL + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging]: ignore vbox modules when vbox is disabled + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc7 + + -- Paolo Pisati Tue, 03 Sep 2019 10:27:33 +0200 + +linux (5.3.0-8.9) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config] change kernel compression method to improve boot speed + - [Packaging] add build dependencies for compression algorithms + + * realtek r8822be kernel module fails after update to linux kernel-headers + 5.0.0-21 (LP: #1838133) + - rtw88: Fix misuse of GENMASK macro + - rtw88: pci: Rearrange the memory usage for skb in RX ISR + - rtw88: pci: Use DMA sync instead of remapping in RX ISR + - rtw88: debug: dump tx power indexes in use + - rtw88: use txpwr_lmt_cfg_pair struct, not arrays + - rtw88: pci: remove set but not used variable 'ip_sel' + - rtw88: allow c2h operation in irq context + - rtw88: enclose c2h cmd handle with mutex + - rtw88: add BT co-existence support + - SAUCE: rtw88: pci: enable MSI interrupt + + * VIMC module not available (CONFIG_VIDEO_VIMC not set) (LP: #1831482) + - [Config] Enable VIMC module + + * Goodix touchpad may drop first input event (LP: #1840075) + - Revert "UBUNTU: SAUCE: i2c: designware: add G3 3590 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c + quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: Add disable runtime pm quirk" + - mfd: intel-lpss: Remove D3cold delay + + * Include Sunix serial/parallel driver (LP: #1826716) + - serial: 8250_pci: Add support for Sunix serial boards + - parport: parport_serial: Add support for Sunix Multi I/O boards + + * enable lockdown on s390x when Secure IPL is performed (LP: #1839622) + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - Ubuntu: [Config] Enable CONFIG_LOCK_DOWN_KERNEL on s390x. + + * UBUNTU: SAUCE: shiftfs: pass correct point down (LP: #1837231) + - SAUCE: shiftfs: pass correct point down + + * shiftfs: add O_DIRECT support (LP: #1837223) + - SAUCE: shiftfs: add O_DIRECT support + + * Miscellaneous Ubuntu changes + - [Config] enable secureboot signing on s390x + - [Config] CONFIG_TEST_BLACKHOLE_DEV=m + - SAUCE: selftests: fib_tests: assign address to dummy1 for rp_filter tests + - [Debian] disable dkms builds for autopktest rebuilds + - update dkms package versions + - [Config] updateconfigs after v5.3-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 26 Aug 2019 10:09:42 +0200 + +linux (5.3.0-7.8) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after v5.3-rc5 rebase + - remove missing module after updateconfigs + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 19 Aug 2019 15:31:24 +0200 + +linux (5.3.0-6.7) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: prevent headers to be compiled as C code + + -- Seth Forshee Wed, 14 Aug 2019 13:25:01 -0500 + +linux (5.3.0-5.6) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] enable zfs build + + -- Seth Forshee Tue, 13 Aug 2019 09:16:06 -0500 + +linux (5.3.0-4.5) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * bcache: bch_allocator_thread(): hung task timeout (LP: #1784665) // Tight + timeout for bcache removal causes spurious failures (LP: #1796292) + - SAUCE: bcache: fix deadlock in bcache_allocator + + * shiftfs: allow overlayfs (LP: #1838677) + - SAUCE: shiftfs: enable overlayfs on shiftfs + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "kbuild: modpost: do not parse unnecessary rules for vmlinux + modpost" + - update dkms package versions + - enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc4 + + -- Seth Forshee Mon, 12 Aug 2019 10:41:27 -0500 + +linux (5.3.0-3.4) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] add mux-* to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc3 + + -- Paolo Pisati Mon, 05 Aug 2019 18:17:09 +0200 + +linux (5.3.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] add build dependincy on fontconfig + + -- Seth Forshee Mon, 29 Jul 2019 12:18:46 -0400 + +linux (5.3.0-1.2) eoan; urgency=medium + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * Please enable CONFIG_SCSI_UFS_QCOM as a module on arm64 (LP: #1837332) + - [Config] Enable CONFIG_SCSI_UFS_QCOM as a module on arm64. + + * Add arm64 CONFIG_ARCH_MESON=y and related configs Edit (LP: #1820530) + - [Config] enable ARCH_MESON + - remove missing module + - [Config] update annotations after enabling ARCH_MESON for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: KVM: PPC: comment implicit fallthrough + - update dkms package versions + - [Config] enable vbox dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc2 + + -- Seth Forshee Sun, 28 Jul 2019 23:10:16 -0400 + +linux (5.3.0-0.1) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - [Config] disable zfs dkms build + - [Config] disable nvidia dkms build + - [Config] disable vbox dkms build + - SAUCE: perf diff: use llabs for s64 vaules + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc1 + + -- Seth Forshee Tue, 23 Jul 2019 21:45:44 -0500 + +linux (5.3.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Mon, 22 Jul 2019 10:19:04 -0500 + +linux (5.2.0-9.10) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * input/mouse: alps trackpoint-only device doesn't work (LP: #1836752) + - SAUCE: Input: alps - don't handle ALPS cs19 trackpoint-only device + - SAUCE: Input: alps - fix a mismatch between a condition check and its + comment + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * alsa/hdmi: add icelake hdmi audio support for a Dell machine (LP: #1836916) + - SAUCE: ALSA: hda/hdmi - Remove duplicated define + - SAUCE: ALSA: hda/hdmi - Fix i915 reverse port/pin mapping + + * First click on Goodix touchpad doesn't be recognized after runtime suspended + (LP: #1836836) + - SAUCE: i2c: designware: add G3 3590 into i2c quirk + + * ixgbe{vf} - Physical Function gets IRQ when VF checks link state + (LP: #1836760) + - ixgbevf: Use cached link state instead of re-reading the value for ethtool + + * Doing multiple squashfs (and other loop?) mounts in parallel breaks + (LP: #1836914) + - SAUCE: Revert "loop: Don't change loop device under exclusive opener" + + * hibmc-drm Causes Unreadable Display for Huawei amd64 Servers (LP: #1762940) + - SAUCE: Make CONFIG_DRM_HISI_HIBMC depend on ARM64 + - [Config] Set CONFIG_DRM_HISI_HIBMC to arm64 only + - [Config] add hibmc-drm to modules.ignore + + * hda/realtek: can't detect external mic on a Dell machine (LP: #1836755) + - ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine + + * Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + (LP: #1835054) + - [Config] Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + + * Unhide Nvidia HDA audio controller (LP: #1836308) + - PCI: Enable NVIDIA HDA controllers + + * Intel ethernet I219 may wrongly detect connection speed as 10Mbps + (LP: #1836177) + - e1000e: Make watchdog use delayed work + + * Sometimes touchpad(goodix) can't use tap function (LP: #1836020) + - SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c quirk + - SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk + + * Intel ethernet I219 has slow RX speed (LP: #1836152) + - e1000e: add workaround for possible stalled packet + - e1000e: disable force K1-off feature + + * bcache: risk of data loss on I/O errors in backing or caching devices + (LP: #1829563) + - Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" + + * bnx2x driver causes 100% CPU load (LP: #1832082) + - bnx2x: Prevent ptp_task to be rescheduled indefinitely + + * fcf-protection=none patch with new version + - Revert "UBUNTU: SAUCE: kbuild: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none when using retpoline flags + + * CVE-2019-12614 + - powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() + + * Eoan update: v5.2.1 upstream stable release (LP: #1836622) + - crypto: lrw - use correct alignmask + - crypto: talitos - rename alternative AEAD algos. + - fscrypt: don't set policy for a dead directory + - udf: Fix incorrect final NOT_ALLOCATED (hole) extent length + - media: stv0297: fix frequency range limit + - ALSA: usb-audio: Fix parse of UAC2 Extension Units + - ALSA: hda/realtek - Headphone Mic can't record after S3 + - tpm: Actually fail on TPM errors during "get random" + - tpm: Fix TPM 1.2 Shutdown sequence to prevent future TPM operations + - block: fix .bi_size overflow + - block, bfq: NULL out the bic when it's no longer valid + - perf intel-pt: Fix itrace defaults for perf script + - perf auxtrace: Fix itrace defaults for perf script + - perf intel-pt: Fix itrace defaults for perf script intel-pt documentation + - perf pmu: Fix uncore PMU alias list for ARM64 + - perf thread-stack: Fix thread stack return from kernel for kernel-only case + - perf header: Assign proper ff->ph in perf_event__synthesize_features() + - x86/ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() + - x86/tls: Fix possible spectre-v1 in do_get_thread_area() + - Documentation: Add section about CPU vulnerabilities for Spectre + - Documentation/admin: Remove the vsyscall=native documentation + - mwifiex: Don't abort on small, spec-compliant vendor IEs + - USB: serial: ftdi_sio: add ID for isodebug v1 + - USB: serial: option: add support for GosunCn ME3630 RNDIS mode + - Revert "serial: 8250: Don't service RX FIFO if interrupts are disabled" + - p54usb: Fix race between disconnect and firmware loading + - usb: gadget: f_fs: data_len used before properly set + - usb: gadget: ether: Fix race between gether_disconnect and rx_submit + - usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() + - usb: renesas_usbhs: add a workaround for a race condition of workqueue + - drivers/usb/typec/tps6598x.c: fix portinfo width + - drivers/usb/typec/tps6598x.c: fix 4CC cmd write + - p54: fix crash during initialization + - staging: comedi: dt282x: fix a null pointer deref on interrupt + - staging: wilc1000: fix error path cleanup in wilc_wlan_initialize() + - staging: bcm2835-camera: Restore return behavior of ctrl_set_bitrate() + - staging: comedi: amplc_pci230: fix null pointer deref on interrupt + - staging: mt7621-pci: fix PCIE_FTS_NUM_LO macro + - HID: Add another Primax PIXART OEM mouse quirk + - lkdtm: support llvm-objcopy + - binder: fix memory leak in error path + - binder: return errors from buffer copy functions + - iio: adc: stm32-adc: add missing vdda-supply + - coresight: Potential uninitialized variable in probe() + - coresight: etb10: Do not call smp_processor_id from preemptible + - coresight: tmc-etr: Do not call smp_processor_id() from preemptible + - coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from + preemptible + - coresight: tmc-etf: Do not call smp_processor_id from preemptible + - carl9170: fix misuse of device driver API + - Revert "x86/build: Move _etext to actual end of .text" + - VMCI: Fix integer overflow in VMCI handle arrays + - staging: vchiq_2835_arm: revert "quit using custom down_interruptible()" + - staging: vchiq: make wait events interruptible + - staging: vchiq: revert "switch to wait_for_completion_killable" + - staging: fsl-dpaa2/ethsw: fix memory leak of switchdev_work + - staging: bcm2835-camera: Replace spinlock protecting context_map with mutex + - staging: bcm2835-camera: Ensure all buffers are returned on disable + - staging: bcm2835-camera: Remove check of the number of buffers supplied + - staging: bcm2835-camera: Handle empty EOS buffers whilst streaming + - staging: rtl8712: reduce stack usage, again + - Linux 5.2.1 + - [Config] updateconfigs after v5.2.1 stable update + + * fcf-protection=none patch with upstream version + - Revert "UBUNTU: SAUCE: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none to retpoline flags + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/ftrace: avoid failure when trying to probe a notrace + function + - SAUCE: selftests/powerpc/ptrace: fix build failure + - update dkms package versions + - [Packaging] add zlua to zfs-modules.ignore + - update dkms package versions + + -- Seth Forshee Fri, 19 Jul 2019 15:04:45 -0500 + +linux (5.2.0-8.9) eoan; urgency=medium + + * linux: 5.2.0-8.9 -proposed tracker (LP: #1835700) + + * Miscellaneous Ubuntu changes + - [Packaging] replace zfs and spl build with zfs 0.8.1-1ubuntu1 + - SAUCE: test_bpf: remove expected fail for Ctx heavy transformations test on + s390 + - SAUCE: add -fcf-protection=none to retpoline flags + - SAUCE: usbip: ensure strings copied using strncpy are null-terminated + - SAUCE: usbip: add -Wno-address-of-packed-member to EXTRA_CFLAGS + - SAUCE: perf jvmti: ensure strncpy result is null-terminated + - update dkms package versions + - add removed zfs modules to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.2 + + -- Seth Forshee Mon, 08 Jul 2019 07:13:41 -0500 + +linux (5.2.0-7.8) eoan; urgency=medium + + * Kernel panic upon resetting ixgbe SR-IOV VFIO virtual function using 5.0 + kernel (LP: #1829652) + - SAUCE: ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw + + * Hi1620 driver updates from upstream 5.2 merge window (LP: #1830815) + - net: hns3: initialize CPU reverse mapping + - net: hns3: refine the flow director handle + - net: hns3: add aRFS support for PF + - net: hns3: fix for FEC configuration + - RDMA/hns: Remove unnecessary print message in aeq + - RDMA/hns: Update CQE specifications + - RDMA/hns: Move spin_lock_irqsave to the correct place + - RDMA/hns: Remove jiffies operation in disable interrupt context + - RDMA/hns: Replace magic numbers with #defines + - net: hns3: fix compile warning without CONFIG_RFS_ACCEL + - net: hns3: fix for HNS3_RXD_GRO_SIZE_M macro + - net: hns3: add support for dump firmware statistics by debugfs + - net: hns3: use HCLGE_STATE_NIC_REGISTERED to indicate PF NIC client has + registered + - net: hns3: use HCLGE_STATE_ROCE_REGISTERED to indicate PF ROCE client has + registered + - net: hns3: use HCLGEVF_STATE_NIC_REGISTERED to indicate VF NIC client has + registered + - net: hns3: modify hclge_init_client_instance() + - net: hns3: modify hclgevf_init_client_instance() + - net: hns3: add handshake with hardware while doing reset + - net: hns3: stop schedule reset service while unloading driver + - net: hns3: adjust hns3_uninit_phy()'s location in the hns3_client_uninit() + - net: hns3: fix a memory leak issue for hclge_map_unmap_ring_to_vf_vector + - RDMA/hns: Bugfix for posting multiple srq work request + - net: hns3: remove redundant core reset + - net: hns3: don't configure new VLAN ID into VF VLAN table when it's full + - net: hns3: fix VLAN filter restore issue after reset + - net: hns3: set the port shaper according to MAC speed + - net: hns3: add a check to pointer in error_detected and slot_reset + - net: hns3: set ops to null when unregister ad_dev + - net: hns3: add handling of two bits in MAC tunnel interrupts + - net: hns3: remove setting bit of reset_requests when handling mac tunnel + interrupts + - net: hns3: add opcode about query and clear RAS & MSI-X to special opcode + - net: hns3: delay and separate enabling of NIC and ROCE HW errors + - RDMA/hns: fix inverted logic of readl read and shift + - RDMA/hns: Bugfix for filling the sge of srq + - net: hns3: log detail error info of ROCEE ECC and AXI errors + - net: hns3: fix wrong size of mailbox responding data + - net: hns3: make HW GRO handling compliant with SW GRO + - net: hns3: replace numa_node_id with numa_mem_id for buffer reusing + - net: hns3: refactor hns3_get_new_int_gl function + - net: hns3: trigger VF reset if a VF has an over_8bd_nfe_err + - net: hns3: delete the redundant user NIC codes + - net: hns3: small changes for magic numbers + - net: hns3: use macros instead of magic numbers + - net: hns3: refactor PF/VF RSS hash key configuration + - net: hns3: some modifications to simplify and optimize code + - net: hns3: fix some coding style issues + - net: hns3: delay setting of reset level for hw errors until slot_reset is + called + - net: hns3: fix avoid unnecessary resetting for the H/W errors which do not + require reset + - net: hns3: process H/W errors occurred before HNS dev initialization + - net: hns3: add recovery for the H/W errors occurred before the HNS dev + initialization + - net: hns3: some changes of MSI-X bits in PPU(RCB) + - net: hns3: extract handling of mpf/pf msi-x errors into functions + - net: hns3: clear restting state when initializing HW device + - net: hns3: free irq when exit from abnormal branch + - net: hns3: fix for dereferencing before null checking + - net: hns3: fix for skb leak when doing selftest + - net: hns3: delay ring buffer clearing during reset + - net: hns3: some variable modification + - net: hns3: fix dereference of ae_dev before it is null checked + - scsi: hisi_sas: Delete PHY timers when rmmod or probe failed + - scsi: hisi_sas: Fix the issue of argument mismatch of printing ecc errors + - scsi: hisi_sas: Reduce HISI_SAS_SGE_PAGE_CNT in size + - scsi: hisi_sas: Change the type of some numbers to unsigned + - scsi: hisi_sas: Ignore the error code between phy down to phy up + - scsi: hisi_sas: Disable stash for v3 hw + - net: hns3: Add missing newline at end of file + - RDMa/hns: Don't stuck in endless timeout loop + + * Sometimes touchpad automatically trigger double click (LP: #1833484) + - SAUCE: i2c: designware: Add disable runtime pm quirk + + * Add pointstick support on HP ZBook 17 G5 (LP: #1833387) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + + * depmod may prefer unsigned l-r-m nvidia modules to signed modules + (LP: #1834479) + - [Packaging] dkms-build--nvidia-N -- clean up unsigned ko files + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/powerpc: disable signal_fuzzer test + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc7 + + -- Seth Forshee Mon, 01 Jul 2019 07:22:18 -0500 + +linux (5.2.0-6.7) eoan; urgency=medium + + * hinic: fix oops due to race in set_rx_mode (LP: #1832048) + - hinic: fix a bug in set rx mode + + * Miscellaneous Ubuntu changes + - rebase to v5.2-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc6 + + -- Seth Forshee Sun, 23 Jun 2019 23:36:11 -0500 + +linux (5.2.0-5.6) eoan; urgency=medium + + * QCA9377 isn't being recognized sometimes (LP: #1757218) + - SAUCE: USB: Disable USB2 LPM at shutdown + + * shiftfs: allow changing ro/rw for subvolumes (LP: #1832316) + - SAUCE: shiftfs: allow changing ro/rw for subvolumes + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Packaging] replace nvidia-418 dkms build with nvidia-430 + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc5 + + -- Seth Forshee Mon, 17 Jun 2019 15:04:12 -0500 + +linux (5.2.0-4.5) eoan; urgency=medium + + * arm64: cma_alloc errors at boot (LP: #1823753) + - [Config] Bump CMA_SIZE_MBYTES to 32 on arm64 + - dma-contiguous: add dma_{alloc,free}_contiguous() helpers + - dma-contiguous: use fallback alloc_pages for single pages + - dma-contiguous: fix !CONFIG_DMA_CMA version of dma_{alloc, + free}_contiguous() + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_MFD_TQMX86=n for s390x + - [Config] CONFIG_GPIO_AMD_FCH=n for s390x + - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x + - [Config] CONFIG_LCD_CLASS_DEVICE=n for s390x + - [Config] CONFIG_DRM_ETNAVIV=m for armhf generic-lpae + - [Config] CONFIG_DRM_NOUVEAU_SVM=n + - [Config] CONFIG_HWMON=n for s390x + - [Config] CONFIG_NEW_LEDS=n for s390x + - [Config] CONFIG_MTD_NAND_OMAP2=y for armhf + - [Config] CONFIG_VOP_BUS=n for non-amd64 arches + - [Config] CONFIG_TI_CPSW_PHY_SEL=n + - [Config] CONFIG_INTERCONNECT=n for s390x + - [Config] CONFIG_SCSI_GDTH=n for s390x + - [Config] CONFIG_PACKING=n for s390x + - [Config] CONFIG_ARCH_MILBEAUT=y for armhf + - [Config] update annotations following config review + - update dkms package versions + - [Config] enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc4 + + -- Seth Forshee Mon, 10 Jun 2019 07:00:11 -0500 + +linux (5.2.0-3.4) eoan; urgency=medium + + * [18.04/18.10] File libperf-jvmti.so is missing in linux-tools-common deb on + Ubuntu (LP: #1761379) + - [Packaging] Support building libperf-jvmti.so + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "bpf, selftest: test global data/bss/rodata sections" + - update dkms package versions + - [Config] enable zfs + - rebase to v5.2-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc3 + + -- Seth Forshee Sun, 02 Jun 2019 21:48:50 -0500 + +linux (5.2.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: perf arm64: Fix mksyscalltbl when system kernel headers are ahead of + the kernel + + -- Seth Forshee Tue, 28 May 2019 07:12:39 -0500 + +linux (5.2.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_INTEGRITY_PLATFORM_KEYRING=y + - update dkms package versions + - [Config] enable vbox dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc2 + + -- Seth Forshee Mon, 27 May 2019 21:11:27 -0500 + +linux (5.2.0-0.1) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - update dkms package versions + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - update dkms package versions + - [Config] disable vbox build + - SAUCE: s390: mark __cpacf_check_opcode() and cpacf_query_func() as + __always_inline + - SAUCE: IB/mlx5: use size_t instead of u64 when dividing + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc1 + + -- Seth Forshee Tue, 21 May 2019 11:18:43 -0500 + +linux (5.2.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 21 May 2019 07:34:43 -0500 + +linux (5.1.0-2.2) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Eoan update: v5.1.2 upstream stable release (LP: #1829050) + - x86/msr-index: Cleanup bit defines + - x86/speculation: Consolidate CPU whitelists + - x86/speculation/mds: Add basic bug infrastructure for MDS + - x86/speculation/mds: Add BUG_MSBDS_ONLY + - x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests + - x86/speculation/mds: Add mds_clear_cpu_buffers() + - x86/speculation/mds: Clear CPU buffers on exit to user + - x86/kvm/vmx: Add MDS protection when L1D Flush is not active + - x86/speculation/mds: Conditionally clear CPU buffers on idle entry + - x86/speculation/mds: Add mitigation control for MDS + - x86/speculation/mds: Add sysfs reporting for MDS + - x86/speculation/mds: Add mitigation mode VMWERV + - Documentation: Move L1TF to separate directory + - Documentation: Add MDS vulnerability documentation + - x86/speculation/mds: Add mds=full,nosmt cmdline option + - x86/speculation: Move arch_smt_update() call to after mitigation decisions + - x86/speculation/mds: Add SMT warning message + - x86/speculation/mds: Fix comment + - x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off + - cpu/speculation: Add 'mitigations=' cmdline option + - x86/speculation: Support 'mitigations=' cmdline option + - powerpc/speculation: Support 'mitigations=' cmdline option + - s390/speculation: Support 'mitigations=' cmdline option + - x86/speculation/mds: Add 'mitigations=' support for MDS + - x86/mds: Add MDSUM variant to the MDS documentation + - Documentation: Correct the possible MDS sysfs values + - x86/speculation/mds: Fix documentation typo + - Linux 5.1.2 + + * Eoan update: v5.1.1 upstream stable release (LP: #1829046) + - Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() + - ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings + - staging: greybus: power_supply: fix prop-descriptor request size + - staging: wilc1000: Avoid GFP_KERNEL allocation from atomic context. + - staging: most: cdev: fix chrdev_region leak in mod_exit + - staging: most: sound: pass correct device when creating a sound card + - usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON + - usb: dwc3: Fix default lpm_nyet_threshold value + - USB: serial: f81232: fix interrupt worker not stop + - USB: cdc-acm: fix unthrottle races + - usb-storage: Set virt_boundary_mask to avoid SG overflows + - genirq: Prevent use-after-free and work list corruption + - intel_th: pci: Add Comet Lake support + - iio: adc: qcom-spmi-adc5: Fix of-based module autoloading + - cpufreq: armada-37xx: fix frequency calculation for opp + - ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for + hibernate + - soc: sunxi: Fix missing dependency on REGMAP_MMIO + - scsi: lpfc: change snprintf to scnprintf for possible overflow + - scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines + - scsi: qla2xxx: Set remote port devloss timeout to 0 + - scsi: qla2xxx: Fix device staying in blocked state + - Bluetooth: hidp: fix buffer overflow + - Bluetooth: Align minimum encryption key size for LE and BR/EDR connections + - Bluetooth: Fix not initializing L2CAP tx_credits + - Bluetooth: hci_bcm: Fix empty regulator supplies for Intel Macs + - UAS: fix alignment of scatter/gather segments + - ASoC: Intel: avoid Oops if DMA setup fails + - i3c: Fix a shift wrap bug in i3c_bus_set_addr_slot_status() + - locking/futex: Allow low-level atomic operations to return -EAGAIN + - arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP + - Linux 5.1.1 + + * shiftfs: lock security sensitive superblock flags (LP: #1827122) + - SAUCE: shiftfs: lock down certain superblock flags + + * Please package libbpf (which is done out of the kernel src) in Debian [for + 19.10] (LP: #1826410) + - SAUCE: tools -- fix add ability to disable libbfd + + * ratelimit cma_alloc messages (LP: #1828092) + - SAUCE: cma: ratelimit cma_alloc error messages + + * Headphone jack switch sense is inverted: plugging in headphones disables + headphone output (LP: #1824259) + - ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board + + * There are 4 HDMI/Displayport audio output listed in sound setting without + attach any HDMI/DP monitor (LP: #1827967) + - ALSA: hda/hdmi - Read the pin sense from register when repolling + - ALSA: hda/hdmi - Consider eld_valid when reporting jack event + + * CONFIG_LOG_BUF_SHIFT set to 14 is too low on arm64 (LP: #1824864) + - [Config] CONFIG_LOG_BUF_SHIFT=18 on all 64bit arches + + * CTAUTO:DevOps:860.50:devops4fp1:Error occurred during LINUX Dmesg error + Checking for all LINUX clients for devops4p10 (LP: #1766201) + - SAUCE: integrity: downgrade error to warning + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [SRU] Please sync vbox modules from virtualbox 6.0.6 on next kernel update + (LP: #1825210) + - vbox-update: updates for renamed makefiles + - ubuntu: vbox -- update to 6.0.6-dfsg-1 + + * autofs kernel module missing (LP: #1824333) + - [Config] Update autofs4 path in inclusion list + + * The Realtek card reader does not enter PCIe 1.1/1.2 (LP: #1825487) + - SAUCE: misc: rtsx: Fixed rts5260 power saving parameter and sd glitch + + * CVE-2019-3874 + - sctp: implement memory accounting on tx path + - sctp: implement memory accounting on rx path + + * apparmor does not start in Disco LXD containers (LP: #1824812) + - SAUCE: shiftfs: use separate llseek method for directories + + * Miscellaneous Ubuntu changes + - [Packaging] autoreconstruct -- remove for -rc kernels + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - [Config] (efi-lockdown): update configs after efi lockdown patch refresh + - [Packaging] don't delete efi_parser.c + - vbox-update -- do not fix up KERN_DIR or KBUILD_EXTMOD + - ubuntu: vbox -- update to 6.0.6-dfsg-2 + - add nvidia-418 dkms build + - remove virtualbox guest drivers + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - [Config] update configs for v5.1(-rc7)? rebase + - update dkms package versions + - Add the ability to lock down access to the running kernel image + - Enforce module signatures if the kernel is locked down + - Restrict /dev/{mem,kmem,port} when the kernel is locked down + - kexec_load: Disable at runtime if the kernel is locked down + - Copy secure_boot flag in boot params across kexec reboot + - kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE + - kexec_file: Restrict at runtime if the kernel is locked down + - hibernate: Disable when the kernel is locked down + - uswsusp: Disable when the kernel is locked down + - PCI: Lock down BAR access when the kernel is locked down + - x86: Lock down IO port access when the kernel is locked down + - x86/msr: Restrict MSR access when the kernel is locked down + - ACPI: Limit access to custom_method when the kernel is locked down + - acpi: Ignore acpi_rsdp kernel param when the kernel has been locked down + - acpi: Disable ACPI table override if the kernel is locked down + - acpi: Disable APEI error injection if the kernel is locked down + - Prohibit PCMCIA CIS storage when the kernel is locked down + - Lock down TIOCSSERIAL + - Lock down module params that specify hardware parameters (eg. ioport) + - x86/mmiotrace: Lock down the testmmiotrace module + - Lock down /proc/kcore + - Lock down kprobes + - bpf: Restrict kernel image access functions when the kernel is locked down + - Lock down perf + - debugfs: Restrict debugfs when the kernel is locked down + - lockdown: Print current->comm in restriction messages + - kexec: Allow kexec_file() with appropriate IMA policy when locked down + - Make get_cert_list() not complain about cert lists that aren't present. + - Add efi_status_to_str() and rework efi_status_to_err(). + - Make get_cert_list() use efi_status_to_str() to print error messages. + - efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - efi: Lock down the kernel if booted in secure boot mode + - KEYS: Make use of platform keyring for module signature verify + + * Miscellaneous upstream changes + - ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) + + -- Seth Forshee Tue, 14 May 2019 12:32:56 -0500 + +linux (5.1.0-1.1) eoan; urgency=medium + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging]: really drop snapdragon + + * Miscellaneous Ubuntu changes + - SAUCE: fix vbox use of MAP_SHARED + - SAUCE: fix vbox use of vm_fault_t + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - SAUCE: perf annotate: Fix build on 32 bit for BPF annotation + - [Config]: updateconfig after rebase to v5.1-rc + - [Config]: build ETNAVIV only on arm platforms + - [Config]: Disable CMA on non-arm platforms + - [Config]: MMC_CQHCI is needed by some built-in drivers + - [Config]: a.out support has been deprecated + - [Config]: R3964 was marked as BROKEN + - [Config]: Add SENSIRION_SGP30 module + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tools: lib/bpf -- add generated headers to search + path" + - Revert "UBUNTU: SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK" + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 10:03:25 -0300 + +linux (5.1.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 09:49:47 -0300 + +linux (5.0.0-13.14) disco; urgency=medium + + * linux: 5.0.0-13.14 -proposed tracker (LP: #1824819) + + * Display only has 640x480 (LP: #1824677) + - Revert "UBUNTU: SAUCE: drm/nouveau: Disable nouveau driver by default" + + * shiftfs: use after free when checking mount options (LP: #1824735) + - SAUCE: shiftfs: prevent use-after-free when verifying mount options + + -- Seth Forshee Mon, 15 Apr 2019 09:11:23 -0500 + +linux (5.0.0-12.13) disco; urgency=medium + + * linux: 5.0.0-12.13 -proposed tracker (LP: #1824726) + + * Linux 5.0 black screen on boot, display flickers (i915 regression with + certain laptop panels) (LP: #1824216) + - drm/i915/dp: revert back to max link rate and lane count on eDP + + * kernel BUG at fs/attr.c:287 when using shiftfs (LP: #1824717) + - SAUCE: shiftfs: fix passing of attrs to underaly for setattr + + -- Seth Forshee Sun, 14 Apr 2019 13:38:05 -0500 + +linux (5.0.0-11.12) disco; urgency=medium + + * linux: 5.0.0-11.12 -proposed tracker (LP: #1824383) + + * hns3: PPU_PF_ABNORMAL_INT_ST over_8bd_no_fe found [error status=0x1] + (LP: #1824194) + - net: hns3: fix for not calculating tx bd num correctly + + * disco: unable to use iptables/enable ufw under -virtual kernel + (LP: #1823862) + - [Packaging] add bpfilter to linux-modules + + * Make shiftfs a module rather than built-in (LP: #1824354) + - [Config] CONFIG_SHIFT_FS=m + + * shiftfs: chown sets untranslated ids in lower fs (LP: #1824350) + - SAUCE: shiftfs: use translated ids when chaning lower fs attrs + + * [Hyper-V] KVP daemon fails to start on first boot of disco VM (LP: #1820063) + - [Packaging] bind hv_kvp_daemon startup to hv_kvp device + + -- Seth Forshee Thu, 11 Apr 2019 10:17:19 -0500 + +linux (5.0.0-10.11) disco; urgency=medium + + * linux: 5.0.0-10.11 -proposed tracker (LP: #1823936) + + * Apparmor enforcement failure in lxc selftests (LP: #1823379) + - SAUCE: apparmor: Restore Y/N in /sys for apparmor's "enabled" + + * systemd cause kernel trace "BUG: unable to handle kernel paging request at + 6db23a14" on Cosmic i386 (LP: #1813244) + - openvswitch: fix flow actions reallocation + + -- Seth Forshee Tue, 09 Apr 2019 08:30:38 -0500 + +linux (5.0.0-9.10) disco; urgency=medium + + * linux: 5.0.0-9.10 -proposed tracker (LP: #1823228) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] update helper scripts + - [Packaging] resync retpoline extraction + + * Huawei Hi1822 NIC has poor performance (LP: #1820187) + - net-next/hinic: replace disable_irq_nosync/enable_irq + + * Add uid shifting overlay filesystem (shiftfs) (LP: #1823186) + - shiftfs: uid/gid shifting bind mount + - shiftfs: rework and extend + - shiftfs: support some btrfs ioctls + - [Config] enable shiftfs + + * Cannot boot or install - have to use nomodeset (LP: #1821820) + - Revert "drm/i915/fbdev: Actually configure untiled displays" + + * Disco update: v5.0.6 upstream stable release (LP: #1823060) + - netfilter: nf_tables: fix set double-free in abort path + - dccp: do not use ipv6 header for ipv4 flow + - genetlink: Fix a memory leak on error path + - gtp: change NET_UDP_TUNNEL dependency to select + - ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL + - mac8390: Fix mmio access size probe + - mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S + - net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 + - net: datagram: fix unbounded loop in __skb_try_recv_datagram() + - net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec + - net: phy: meson-gxl: fix interrupt support + - net: rose: fix a possible stack overflow + - net: stmmac: fix memory corruption with large MTUs + - net-sysfs: call dev_hold if kobject_init_and_add success + - net: usb: aqc111: Extend HWID table by QNAP device + - packets: Always register packet sk in the same order + - rhashtable: Still do rehash when we get EEXIST + - sctp: get sctphdr by offset in sctp_compute_cksum + - sctp: use memdup_user instead of vmemdup_user + - tcp: do not use ipv6 header for ipv4 flow + - tipc: allow service ranges to be connect()'ed on RDM/DGRAM + - tipc: change to check tipc_own_id to return in tipc_net_stop + - tipc: fix cancellation of topology subscriptions + - tun: properly test for IFF_UP + - vrf: prevent adding upper devices + - vxlan: Don't call gro_cells_destroy() before device is unregistered + - thunderx: enable page recycling for non-XDP case + - thunderx: eliminate extra calls to put_page() for pages held for recycling + - net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode + - net: mii: Fix PAUSE cap advertisement from linkmode_adv_to_lcl_adv_t() + helper + - net: phy: don't clear BMCR in genphy_soft_reset + - r8169: fix cable re-plugging issue + - ila: Fix rhashtable walker list corruption + - tun: add a missing rcu_read_unlock() in error path + - powerpc/fsl: Fix the flush of branch predictor. + - Btrfs: fix incorrect file size after shrinking truncate and fsync + - btrfs: remove WARN_ON in log_dir_items + - btrfs: don't report readahead errors and don't update statistics + - btrfs: Fix bound checking in qgroup_trace_new_subtree_blocks + - btrfs: Avoid possible qgroup_rsv_size overflow in + btrfs_calculate_inode_block_rsv_size + - Btrfs: fix assertion failure on fsync with NO_HOLES enabled + - locks: wake any locks blocked on request before deadlock check + - tracing: initialize variable in create_dyn_event() + - ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time + - powerpc: bpf: Fix generation of load/store DW instructions + - vfio: ccw: only free cp on final interrupt + - NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock,unlock}data() + - NFS: fix mount/umount race in nlmclnt. + - NFSv4.1 don't free interrupted slot on open + - net: dsa: qca8k: remove leftover phy accessors + - ALSA: rawmidi: Fix potential Spectre v1 vulnerability + - ALSA: seq: oss: Fix Spectre v1 vulnerability + - ALSA: pcm: Fix possible OOB access in PCM oss plugins + - ALSA: pcm: Don't suspend stream in unrecoverable PCM state + - ALSA: hda/realtek - Fixed Headset Mic JD not stable + - ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook + - ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO + - ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB + - ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 + - ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 + - ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic + - ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 + - ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 + - ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 + - ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops + - kbuild: modversions: Fix relative CRC byte order interpretation + - fs/open.c: allow opening only regular files during execve() + - ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock + - scsi: sd: Fix a race between closing an sd device and sd I/O + - scsi: sd: Quiesce warning if device does not report optimal I/O size + - scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host + - scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP + devices + - drm/rockchip: vop: reset scale mode when win is disabled + - tty/serial: atmel: Add is_half_duplex helper + - tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped + - tty: mxs-auart: fix a potential NULL pointer dereference + - tty: atmel_serial: fix a potential NULL pointer dereference + - tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup + - staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest + - staging: olpc_dcon_xo_1: add missing 'const' qualifier + - staging: speakup_soft: Fix alternate speech with other synths + - staging: vt6655: Remove vif check from vnt_interrupt + - staging: vt6655: Fix interrupt race condition on device start up. + - staging: erofs: fix to handle error path of erofs_vmap() + - staging: erofs: fix error handling when failed to read compresssed data + - staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() + - serial: max310x: Fix to avoid potential NULL pointer dereference + - serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference + - serial: sh-sci: Fix setting SCSCR_TIE while transferring data + - USB: serial: cp210x: add new device id + - USB: serial: ftdi_sio: add additional NovaTech products + - USB: serial: mos7720: fix mos_parport refcount imbalance on error path + - USB: serial: option: set driver_info for SIM5218 and compatibles + - USB: serial: option: add support for Quectel EM12 + - USB: serial: option: add Olicard 600 + - ACPI / CPPC: Fix guaranteed performance handling + - Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc + - fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links + - drivers/block/zram/zram_drv.c: fix idle/writeback string compare + - blk-mq: fix sbitmap ws_active for shared tags + - cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency + - cpufreq: scpi: Fix use after free + - drm/vgem: fix use-after-free when drm_gem_handle_create() fails + - drm/vkms: fix use-after-free when drm_gem_handle_create() fails + - drm/i915: Mark AML 0x87CA as ULX + - drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check + - drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro + - gpio: exar: add a check for the return value of ida_simple_get fails + - gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input + - phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs + - usb: mtu3: fix EXTCON dependency + - USB: gadget: f_hid: fix deadlock in f_hidg_write() + - usb: common: Consider only available nodes for dr_mode + - mm/memory.c: fix modifying of page protection by insert_pfn() + - usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk + - xhci: Fix port resume done detection for SS ports with LPM enabled + - usb: xhci: dbc: Don't free all memory with spinlock held + - xhci: Don't let USB3 ports stuck in polling state prevent suspend + - usb: cdc-acm: fix race during wakeup blocking TX traffic + - usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps + - usb: typec: Fix unchecked return value + - mm/hotplug: fix offline undo_isolate_page_range() + - mm: add support for kmem caches in DMA32 zone + - iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging + - mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified + - mm/debug.c: fix __dump_page when mapping->host is not set + - mm/memory_hotplug.c: fix notification in offline error path + - mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() + - mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate + - perf pmu: Fix parser error for uncore event alias + - perf intel-pt: Fix TSC slip + - objtool: Query pkg-config for libelf location + - powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes + - powerpc/64: Fix memcmp reading past the end of src/dest + - powerpc/pseries/mce: Fix misleading print for TLB mutlihit + - watchdog: Respect watchdog cpumask on CPU hotplug + - cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n + - x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y + - KVM: Reject device ioctls from processes other than the VM's creator + - KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts + - KVM: x86: update %rip after emulating IO + - bpf: do not restore dst_reg when cur_state is freed + - mt76x02u: use usb_bulk_msg to upload firmware + - Linux 5.0.6 + + * RDMA/hns updates for disco (LP: #1822897) + - RDMA/hns: Fix the bug with updating rq head pointer when flush cqe + - RDMA/hns: Bugfix for the scene without receiver queue + - RDMA/hns: Add constraint on the setting of local ACK timeout + - RDMA/hns: Modify the pbl ba page size for hip08 + - RDMA/hns: RDMA/hns: Assign rq head pointer when enable rq record db + - RDMA/hns: Add the process of AEQ overflow for hip08 + - RDMA/hns: Add SCC context allocation support for hip08 + - RDMA/hns: Add SCC context clr support for hip08 + - RDMA/hns: Add timer allocation support for hip08 + - RDMA/hns: Remove set but not used variable 'rst' + - RDMA/hns: Make some function static + - RDMA/hns: Fix the Oops during rmmod or insmod ko when reset occurs + - RDMA/hns: Fix the chip hanging caused by sending mailbox&CMQ during reset + - RDMA/hns: Fix the chip hanging caused by sending doorbell during reset + - RDMA/hns: Limit minimum ROCE CQ depth to 64 + - RDMA/hns: Fix the state of rereg mr + - RDMA/hns: Set allocated memory to zero for wrid + - RDMA/hns: Delete useful prints for aeq subtype event + - RDMA/hns: Configure capacity of hns device + - RDMA/hns: Modify qp&cq&pd specification according to UM + - RDMA/hns: Bugfix for set hem of SCC + - RDMA/hns: Use GFP_ATOMIC in hns_roce_v2_modify_qp + + * autopkgtests run too often, too much and don't skip enough (LP: #1823056) + - Set +x on rebuild testcase. + - Skip rebuild test, for regression-suite deps. + - Make ubuntu-regression-suite skippable on unbootable kernels. + - make rebuild use skippable error codes when skipping. + - Only run regression-suite, if requested to. + + * touchpad not working on lenovo yoga 530 (LP: #1787775) + - Revert "UBUNTU: SAUCE: i2c:amd Depends on ACPI" + - Revert "UBUNTU: SAUCE: i2c:amd move out pointer in union i2c_event_base" + - i2c: add extra check to safe DMA buffer helper + - i2c: Add drivers for the AMD PCIe MP2 I2C controller + - [Config] Update config for AMD MP2 I2C driver + + * Detect SMP PHY control command errors (LP: #1822680) + - scsi: libsas: Check SMP PHY control function result + + * disable a.out support (LP: #1818552) + - [Config] Disable a.out support + - [Config] remove binfmt_aout from abi for i386 lowlatency + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging] remove snapdragon flavour support + - Revert "UBUNTU: SAUCE: (snapdragon) drm/msm/adv7511: wrap hacks under + CONFIG_ADV7511_SNAPDRAGON_HACKS #ifdefs" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: skip address change if dt + addr == default addr" + - Revert "UBUNTU: SAUCE: (snapdragon) DT: leds: Add Qualcomm Light Pulse + Generator binding" + - Revert "UBUNTU: SAUCE: (snapdragon) MAINTAINERS: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) dt-bindings: media: Binding document for + Qualcomm Camera Control Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) leds: Add driver for Qualcomm LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/adv7511: Don't rely on + interrupts for EDID parsing" + - Revert "UBUNTU: SAUCE: (snapdragon) drm/bridge/adv7511: Delay clearing of + HPD interrupt status" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: Fix I2C address" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix I2C address bug" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix run queue completion + timeout" + - Revert "UBUNTU: SAUCE: (snapdragon) camss: Do not register if no cameras are + present" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) ov5645: I2C address change" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Allow + REGULATOR_QCOM_SMD_RPM=m" + - Revert "UBUNTU: SAUCE: (snapdragon) cpufreq: Add apq8016 to cpufreq-dt- + platdev blacklist" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Add a helper to get an opp + regulator for device" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: HACK: Allow to set regulator + without opp_list" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Drop RCU usage in + dev_pm_opp_adjust_voltage()" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Support adjusting OPP voltages + at runtime" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Add floor and corner + operations" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Register with cpufreq- + dt" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: fix with new + reg_sequence structures" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Use raw mem access for + qfprom" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: Add support for CPR (Core + Power Reduction)" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/iommu: Remove runtime_put + calls in map/unmap" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable LEDS_QCOM_LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'BBR' TCP + congestion algorithm" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'fq' and + 'fq_codel' qdiscs" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable + 'schedutil' CPUfreq governor" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: set USB_CONFIG_F_FS in + distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CONFIG_USB_CONFIGFS_F_FS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add freq stat to sysfs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: Enable camera drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: disable ANALOG_TV and + DIGITAL_TV" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add more USB net + drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable BT_QCOMSMD" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CFG80211_DEFAULT_PS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) Force the SMD regulator driver to be + compiled-in" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: enable dm_mod and + dm_crypt" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: Enable a53/apcs and + avs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable QCOM Venus" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable debug + friendly USB network adpater" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable WCN36xx" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs; add distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable QCOM audio + drivers for APQ8016 and DB410c" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable REMOTEPROC" + - [Config] fix abi for remove i2c-qcom-cci module + - [Config] update annotations + - [Config] update configs following snapdragon removal + + * Disco update: v5.0.5 upstream stable release (LP: #1822671) + - Revert "ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec" + - ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist + - ALSA: firewire-motu: use 'version' field of unit directory to identify model + - mmc: pxamci: fix enum type confusion + - mmc: alcor: fix DMA reads + - mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" + - mmc: renesas_sdhi: limit block count to 16 bit for old revisions + - drm/amdgpu: fix invalid use of change_bit + - drm/vmwgfx: Don't double-free the mode stored in par->set_mode + - drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's + - iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE + - iommu/iova: Fix tracking of recently failed iova address + - libceph: wait for latest osdmap in ceph_monc_blacklist_add() + - udf: Fix crash on IO error during truncate + - mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. + - MIPS: Ensure ELF appended dtb is relocated + - MIPS: Fix kernel crash for R6 in jump label branch function + - powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 + - powerpc/security: Fix spectre_v2 reporting + - net/mlx5: Fix DCT creation bad flow + - scsi: core: Avoid that a kernel warning appears during system resume + - scsi: qla2xxx: Fix FC-AL connection target discovery + - scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton + - scsi: ibmvscsi: Fix empty event pool access during host removal + - futex: Ensure that futex address is aligned in handle_futex_death() + - perf probe: Fix getting the kernel map + - objtool: Move objtool_file struct off the stack + - irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp + - clocksource/drivers/riscv: Fix clocksource mask + - ALSA: ac97: Fix of-node refcount unbalance + - ext4: fix NULL pointer dereference while journal is aborted + - ext4: fix data corruption caused by unaligned direct AIO + - ext4: brelse all indirect buffer in ext4_ind_remove_space() + - media: v4l2-ctrls.c/uvc: zero v4l2_event + - Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() + - Bluetooth: Fix decrementing reference count twice in releasing socket + - Bluetooth: hci_ldisc: Initialize hci_dev before open() + - Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in + hci_uart_set_proto() + - drm/vkms: Fix flush_work() without INIT_WORK(). + - RDMA/cma: Rollback source IP address if failing to acquire device + - f2fs: fix to avoid deadlock of atomic file operations + - aio: simplify - and fix - fget/fput for io_submit() + - netfilter: ebtables: remove BUGPRINT messages + - loop: access lo_backing_file only when the loop device is Lo_bound + - x86/unwind: Handle NULL pointer calls better in frame unwinder + - x86/unwind: Add hardcoded ORC entry for NULL + - locking/lockdep: Add debug_locks check in __lock_downgrade() + - ALSA: hda - Record the current power state before suspend/resume calls + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - Linux 5.0.5 + + * hisi_sas updates for disco (LP: #1822385) + - scsi: hisi_sas: send primitive NOTIFY to SSP situation only + - scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned + - scsi: hisi_sas: remove the check of sas_dev status in + hisi_sas_I_T_nexus_reset() + - scsi: hisi_sas: Remove unused parameter of function hisi_sas_alloc() + - scsi: hisi_sas: Reject setting programmed minimum linkrate > 1.5G + - scsi: hisi_sas: Fix losing directly attached disk when hot-plug + - scsi: hisi_sas: Correct memory allocation size for DQ debugfs + - scsi: hisi_sas: Some misc tidy-up + - scsi: hisi_sas: Fix to only call scsi_get_prot_op() for non-NULL scsi_cmnd + - scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32() + - scsi: hisi_sas: Add support for DIX feature for v3 hw + - scsi: hisi_sas: Add manual trigger for debugfs dump + - scsi: hisi_sas: change queue depth from 512 to 4096 + - scsi: hisi_sas: Issue internal abort on all relevant queues + - scsi: hisi_sas: Use pci_irq_get_affinity() for v3 hw as experimental + - scsi: hisi_sas: Do some more tidy-up + - scsi: hisi_sas: Change return variable type in phy_up_v3_hw() + - scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO + - scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw + - scsi: hisi_sas: Set PHY linkrate when disconnected + - scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP + target port + - scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of + HiLink + - scsi: hisi_sas: Add softreset in hisi_sas_I_T_nexus_reset() + + * [Patch][Raven 2] kernel 5.0.0 cannot boot because of psp response + (LP: #1822267) + - drm/amdgpu/psp: Fix can't detect psp INVOKE command failed + - drm/amdgpu/psp: ignore psp response status + + * 3b080b2564287be91605bfd1d5ee985696e61d3c in ubuntu_btrfs_kernel_fixes + triggers system hang on i386 (LP: #1812845) + - btrfs: raid56: properly unmap parity page in finish_parity_scrub() + + * enable CONFIG_DRM_BOCHS (LP: #1795857) + - [Config] Reenable DRM_BOCHS as module + + * [Dell Precision 7530/5530 with Nvidia Quadro P1000] Live USB freezes or + cannot complete install when nouveau driver is loaded (crashing in GP100 + code) (LP: #1822026) + - SAUCE: drm/nouveau: Disable nouveau driver by default + + * Need to add Intel CML related pci-id's (LP: #1821863) + - drm/i915/cml: Add CML PCI IDS + - drm/i915/cml: Introduce Comet Lake PCH + + * ARM: Add support for the SDEI interface (LP: #1822005) + - ACPI / APEI: Don't wait to serialise with oops messages when panic()ing + - ACPI / APEI: Remove silent flag from ghes_read_estatus() + - ACPI / APEI: Switch estatus pool to use vmalloc memory + - ACPI / APEI: Make hest.c manage the estatus memory pool + - ACPI / APEI: Make estatus pool allocation a static size + - ACPI / APEI: Don't store CPER records physical address in struct ghes + - ACPI / APEI: Remove spurious GHES_TO_CLEAR check + - ACPI / APEI: Don't update struct ghes' flags in read/clear estatus + - ACPI / APEI: Generalise the estatus queue's notify code + - ACPI / APEI: Don't allow ghes_ack_error() to mask earlier errors + - ACPI / APEI: Move NOTIFY_SEA between the estatus-queue and NOTIFY_NMI + - ACPI / APEI: Switch NOTIFY_SEA to use the estatus queue + - KVM: arm/arm64: Add kvm_ras.h to collect kvm specific RAS plumbing + - arm64: KVM/mm: Move SEA handling behind a single 'claim' interface + - ACPI / APEI: Move locking to the notification helper + - ACPI / APEI: Let the notification helper specify the fixmap slot + - ACPI / APEI: Pass ghes and estatus separately to avoid a later copy + - ACPI / APEI: Make GHES estatus header validation more user friendly + - ACPI / APEI: Split ghes_read_estatus() to allow a peek at the CPER length + - ACPI / APEI: Only use queued estatus entry during in_nmi_queue_one_entry() + - ACPI / APEI: Use separate fixmap pages for arm64 NMI-like notifications + - firmware: arm_sdei: Add ACPI GHES registration helper + - ACPI / APEI: Add support for the SDEI GHES Notification type + + * CVE-2019-9857 + - inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() + + * scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery (LP: #1821408) + - scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery + + * Qualcomm Atheros QCA9377 wireless does not work (LP: #1818204) + - platform/x86: ideapad-laptop: Add Ideapad 530S-14ARR to no_hw_rfkill list + + * Lenovo ideapad 330-15ICH Wifi rfkill hard blocked (LP: #1811815) + - platform/x86: ideapad: Add ideapad 330-15ICH to no_hw_rfkill + + * hid-sensor-hub spamming dmesg in 4.20 (LP: #1818547) + - HID: Increase maximum report size allowed by hid_field_extract() + + * [disco] [5.0.0-7.8] can't mount guest cifs share (LP: #1821053) + - cifs: allow guest mounts to work for smb3.11 + - SMB3: Fix SMB3.1.1 guest mounts to Samba + + * Add HiSilicon SoC quirk for cpufreq (LP: #1821620) + - ACPI / CPPC: Add a helper to get desired performance + - cpufreq / cppc: Work around for Hisilicon CPPC cpufreq + + * Disco update: v5.0.4 upstream stable release (LP: #1821607) + - 9p: use inode->i_lock to protect i_size_write() under 32-bit + - 9p/net: fix memory leak in p9_client_create + - ASoC: fsl_esai: fix register setting issue in RIGHT_J mode + - ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() + - ASoC: codecs: pcm186x: Fix energysense SLEEP bit + - iio: adc: exynos-adc: Fix NULL pointer exception on unbind + - iio: adc: exynos-adc: Use proper number of channels for Exynos4x12 + - mei: hbm: clean the feature flags on link reset + - mei: bus: move hw module get/put to probe/release + - stm class: Prevent division by zero + - stm class: Fix an endless loop in channel allocation + - crypto: caam - fix hash context DMA unmap size + - crypto: ccree - fix missing break in switch statement + - crypto: caam - fixed handling of sg list + - crypto: caam - fix DMA mapping of stack memory + - crypto: ccree - fix free of unallocated mlli buffer + - crypto: ccree - unmap buffer before copying IV + - crypto: ccree - don't copy zero size ciphertext + - crypto: cfb - add missing 'chunksize' property + - crypto: cfb - remove bogus memcpy() with src == dest + - crypto: ofb - fix handling partial blocks and make thread-safe + - crypto: ahash - fix another early termination in hash walk + - crypto: rockchip - fix scatterlist nents error + - crypto: rockchip - update new iv to device in multiple operations + - dax: Flush partial PMDs correctly + - nfit: Fix nfit_intel_shutdown_status() command submission + - nfit: acpi_nfit_ctl(): Check out_obj->type in the right place + - acpi/nfit: Fix bus command validation + - nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot + - nfit/ars: Attempt short-ARS even in the no_init_ars case + - libnvdimm/label: Clear 'updating' flag after label-set update + - libnvdimm, pfn: Fix over-trim in trim_pfn_device() + - libnvdimm/pmem: Honor force_raw for legacy pmem regions + - libnvdimm: Fix altmap reservation size calculation + - fix cgroup_do_mount() handling of failure exits + - crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: aegis - fix handling chunked inputs + - crypto: arm/crct10dif - revert to C code for short inputs + - crypto: arm64/aes-neonbs - fix returning final keystream block + - crypto: arm64/crct10dif - revert to C code for short inputs + - crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: morus - fix handling chunked inputs + - crypto: pcbc - remove bogus memcpy()s with src == dest + - crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: testmgr - skip crc32c context test for ahash algorithms + - crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP + - crypto: x86/aesni-gcm - fix crash on empty plaintext + - crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP + - crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling + - crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine + - CIFS: Fix leaking locked VFS cache pages in writeback retry + - CIFS: Do not reset lease state to NONE on lease break + - CIFS: Do not skip SMB2 message IDs on send failures + - CIFS: Fix read after write for files with read caching + - smb3: make default i/o size for smb3 mounts larger + - tracing: Use strncpy instead of memcpy for string keys in hist triggers + - tracing: Do not free iter->trace in fail path of tracing_open_pipe() + - tracing/perf: Use strndup_user() instead of buggy open-coded version + - vmw_balloon: release lock on error in vmballoon_reset() + - xen: fix dom0 boot on huge systems + - ACPI / device_sysfs: Avoid OF modalias creation for removed device + - mmc: sdhci-esdhc-imx: fix HS400 timing issue + - mmc: renesas_sdhi: Fix card initialization failure in high speed mode + - mmc:fix a bug when max_discard is 0 + - spi: ti-qspi: Fix mmap read when more than one CS in use + - spi: pxa2xx: Setup maximum supported DMA transfer length + - spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch + - spi: spi-gpio: fix SPI_CS_HIGH capability + - regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 + - regulator: max77620: Initialize values for DT properties + - regulator: s2mpa01: Fix step values for some LDOs + - mt76: fix corrupted software generated tx CCMP PN + - clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR + - clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown + - clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer + instability + - s390: vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem + - s390/setup: fix early warning messages + - s390/virtio: handle find on invalid queue gracefully + - scsi: virtio_scsi: don't send sc payload with tmfs + - scsi: aacraid: Fix performance issue on logical drives + - scsi: sd: Optimal I/O size should be a multiple of physical block size + - scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock + - scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware + - scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not + supported + - scsi: qla2xxx: Use complete switch scan for RSCN events + - fs/devpts: always delete dcache dentry-s in dput() + - splice: don't merge into linked buffers + - ovl: During copy up, first copy up data and then xattrs + - ovl: Do not lose security.capability xattr over metadata file copy-up + - m68k: Add -ffreestanding to CFLAGS + - Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() + - Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl + - btrfs: scrub: fix circular locking dependency warning + - btrfs: drop the lock on error in btrfs_dev_replace_cancel + - btrfs: ensure that a DUP or RAID1 block group has exactly two stripes + - btrfs: init csum_list before possible free + - Btrfs: fix corruption reading shared and compressed extents after hole + punching + - Btrfs: fix deadlock between clone/dedupe and rename + - soc: qcom: rpmh: Avoid accessing freed memory from batch API + - libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer + - irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table + - irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code + - x86/kprobes: Prohibit probing on optprobe template code + - cpufreq: kryo: Release OPP tables on module removal + - cpufreq: tegra124: add missing of_node_put() + - cpufreq: pxa2xx: remove incorrect __init annotation + - ext4: fix check of inode in swap_inode_boot_loader + - ext4: cleanup pagecache before swap i_data + - mm: hwpoison: fix thp split handing in soft_offline_in_use_page() + - mm/vmalloc: fix size check for remap_vmalloc_range_partial() + - mm/memory.c: do_fault: avoid usage of stale vm_area_struct + - kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv + - nvmem: core: don't check the return value of notifier chain call + - device property: Fix the length used in PROPERTY_ENTRY_STRING() + - intel_th: Don't reference unassigned outputs + - parport_pc: fix find_superio io compare code, should use equal test. + - i2c: tegra: fix maximum transfer size + - i2c: tegra: update maximum transfer size + - media: i2c: ov5640: Fix post-reset delay + - gpio: pca953x: Fix dereference of irq data in shutdown + - ext4: update quota information while swapping boot loader inode + - ext4: add mask of ext4 flags to swap + - ext4: fix crash during online resizing + - dma: Introduce dma_max_mapping_size() + - swiotlb: Introduce swiotlb_max_mapping_size() + - swiotlb: Add is_swiotlb_active() function + - PCI/ASPM: Use LTR if already enabled by platform + - PCI/DPC: Fix print AER status in DPC event handling + - PCI: qcom: Don't deassert reset GPIO during probe + - PCI: dwc: skip MSI init if MSIs have been explicitly disabled + - PCI: pci-bridge-emul: Create per-bridge copy of register behavior + - PCI: pci-bridge-emul: Extend pci_bridge_emul_init() with flags + - IB/hfi1: Close race condition on user context disable and close + - IB/rdmavt: Fix loopback send with invalidate ordering + - IB/rdmavt: Fix concurrency panics in QP post_send and modify to error + - cxl: Wrap iterations over afu slices inside 'afu_list_lock' + - ext2: Fix underflow in ext2_max_size() + - clk: uniphier: Fix update register for CPU-gear + - clk: clk-twl6040: Fix imprecise external abort for pdmclk + - clk: samsung: exynos5: Fix possible NULL pointer exception on + platform_device_alloc() failure + - clk: samsung: exynos5: Fix kfree() of const memory on setting + driver_override + - clk: ingenic: Fix round_rate misbehaving with non-integer dividers + - clk: ingenic: Fix doc of ingenic_cgu_div_info + - usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() + - usb: typec: tps6598x: handle block writes separately with plain-I2C adapters + - dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit + - serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO + - serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart + - serial: 8250_pci: Fix number of ports for ACCES serial cards + - serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 + chip use the pci_pericom_setup() + - jbd2: clear dirty flag when revoking a buffer from an older transaction + - jbd2: fix compile warning when using JBUFFER_TRACE + - selinux: add the missing walk_size + len check in selinux_sctp_bind_connect + - security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock + - powerpc/32: Clear on-stack exception marker upon exception return + - powerpc/wii: properly disable use of BATs when requested. + - powerpc/powernv: Make opal log only readable by root + - powerpc/83xx: Also save/restore SPRG4-7 during suspend + - powerpc/kvm: Save and restore host AMR/IAMR/UAMOR + - powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit + - powerpc/64s/hash: Fix assert_slb_presence() use of the slbfee. instruction + - powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest + - powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning + - powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR + configuration + - powerpc/smp: Fix NMI IPI timeout + - powerpc/smp: Fix NMI IPI xmon timeout + - powerpc/traps: fix recoverability of machine check handling on book3s/32 + - powerpc/traps: Fix the message printed when stack overflows + - ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify + - arm64: Fix HCR.TGE status for NMI contexts + - arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals + - arm64: debug: Ensure debug handlers check triggering exception level + - arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 + - Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" + - ipmi_si: Fix crash when using hard-coded device + - ipmi_si: fix use-after-free of resource->name + - dm: fix to_sector() for 32bit + - dm integrity: limit the rate of error messages + - media: cx25840: mark pad sig_types to fix cx231xx init + - mfd: sm501: Fix potential NULL pointer dereference + - cpcap-charger: generate events for userspace + - cpuidle: governor: Add new governors to cpuidle_governors again + - NFS: Fix I/O request leakages + - NFS: Fix an I/O request leakage in nfs_do_recoalesce + - NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() + - nfsd: fix performance-limiting session calculation + - nfsd: fix memory corruption caused by readdir + - nfsd: fix wrong check in write_v4_end_grace() + - NFSv4.1: Reinitialise sequence results before retransmitting a request + - svcrpc: fix UDP on servers with lots of threads + - PM / wakeup: Rework wakeup source timer cancellation + - PM / OPP: Update performance state when freq == old_freq + - bcache: treat stale && dirty keys as bad keys + - bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata + - stable-kernel-rules.rst: add link to networking patch queue + - vt: perform safe console erase in the right order + - x86/unwind/orc: Fix ORC unwind table alignment + - perf intel-pt: Fix CYC timestamp calculation after OVF + - perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols + - perf auxtrace: Define auxtrace record alignment + - perf intel-pt: Fix overlap calculation for padding + - perf/x86/intel/uncore: Fix client IMC events return huge result + - perf intel-pt: Fix divide by zero when TSC is not available + - md: Fix failed allocation of md_register_thread + - x86/kvmclock: set offset for kvm unstable clock + - x86/ftrace: Fix warning and considate ftrace_jmp_replace() and + ftrace_call_replace() + - tpm/tpm_crb: Avoid unaligned reads in crb_recv() + - tpm: Unify the send callback behaviour + - rcu: Do RCU GP kthread self-wakeup from softirq and interrupt + - media: imx: prpencvf: Stop upstream before disabling IDMA channel + - media: lgdt330x: fix lock status reporting + - media: sun6i: Fix CSI regmap's max_register + - media: uvcvideo: Avoid NULL pointer dereference at the end of streaming + - media: vimc: Add vimc-streamer for stream control + - media: imx-csi: Input connections to CSI should be optional + - media: imx: csi: Disable CSI immediately after last EOF + - media: imx: csi: Stop upstream before disabling IDMA channel + - drm/fb-helper: generic: Fix drm_fbdev_client_restore() + - drm/radeon/evergreen_cs: fix missing break in switch statement + - drm/amd/powerplay: correct power reading on fiji + - drm/amd/display: don't call dm_pp_ function from an fpu block + - KVM: Call kvm_arch_memslots_updated() before updating memslots + - KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run + - KVM: VMX: Zero out *all* general purpose registers after VM-Exit + - KVM: x86/mmu: Detect MMIO generation wrap in any address space + - KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux + - KVM: nVMX: Sign extend displacements of VMX instr's mem operands + - KVM: nVMX: Apply addr size mask to effective address for VMX instructions + - KVM: nVMX: Ignore limit checks on VMX instructions using flat segments + - KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks + - net: dsa: lantiq_gswip: fix use-after-free on failed probe + - net: dsa: lantiq_gswip: fix OF child-node lookups + - s390/setup: fix boot crash for machine without EDAT-1 + - SUNRPC: Prevent thundering herd when the socket is not connected + - SUNRPC: Fix up RPC back channel transmission + - SUNRPC: Respect RPC call timeouts when retrying transmission + - Linux 5.0.4 + - [Config] update configs for 5.0.4 stable update + + * New Intel Wireless-AC 9260 [8086:2526] card not correctly probed in Ubuntu + system (LP: #1821271) + - iwlwifi: add new card for 9260 series + + * [CONFIG] please enable highdpi font FONT_TER16x32 (LP: #1819881) + - [Config]: enable highdpi Terminus 16x32 font support + + * [SRU][B/B-OEM/C/D] Fix AMD IOMMU NULL dereference (LP: #1820990) + - iommu/amd: Fix NULL dereference bug in match_hid_uid + + * some codecs stop working after S3 (LP: #1820930) + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - ALSA: hda - Don't trigger jackpoll_work in azx_resume + + * tcm_loop.ko: move from modules-extra into main modules package + (LP: #1817786) + - [Packaging] move tcm_loop.lo to main linux-modules package + + * C++ demangling support missing from perf (LP: #1396654) + - [Packaging] fix a mistype + + * r8169 doesn't get woken up by ethernet cable plugging, no PME generated + (LP: #1817676) + - PCI: pciehp: Disable Data Link Layer State Changed event on suspend + + * Disco update: v5.0.3 upstream stable release (LP: #1821074) + - connector: fix unsafe usage of ->real_parent + - fou, fou6: avoid uninit-value in gue_err() and gue6_err() + - gro_cells: make sure device is up in gro_cells_receive() + - ipv4/route: fail early when inet dev is missing + - l2tp: fix infoleak in l2tp_ip6_recvmsg() + - lan743x: Fix RX Kernel Panic + - lan743x: Fix TX Stall Issue + - net: hsr: fix memory leak in hsr_dev_finalize() + - net/hsr: fix possible crash in add_timer() + - net: sit: fix UBSAN Undefined behaviour in check_6rd + - net/x25: fix use-after-free in x25_device_event() + - net/x25: reset state in x25_connect() + - pptp: dst_release sk_dst_cache in pptp_sock_destruct + - ravb: Decrease TxFIFO depth of Q3 and Q2 to one + - route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race + - rxrpc: Fix client call queueing, waiting for channel + - sctp: remove sched init from sctp_stream_init + - tcp: do not report TCP_CM_INQ of 0 for closed connections + - tcp: Don't access TCP_SKB_CB before initializing it + - tcp: handle inet_csk_reqsk_queue_add() failures + - vxlan: Fix GRO cells race condition between receive and link delete + - vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() + - net/mlx4_core: Fix reset flow when in command polling mode + - net/mlx4_core: Fix locking in SRIOV mode when switching between events and + polling + - net/mlx4_core: Fix qp mtt size calculation + - net: dsa: mv88e6xxx: Set correct interface mode for CPU/DSA ports + - vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock + - net: sched: flower: insert new filter to idr after setting its mask + - f2fs: wait on atomic writes to count F2FS_CP_WB_DATA + - perf/x86: Fixup typo in stub functions + - ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against + Liquid Saffire 56 + - ALSA: firewire-motu: fix construction of PCM frame for capture direction + - ALSA: hda: Extend i915 component bind timeout + - ALSA: hda - add more quirks for HP Z2 G4 and HP Z240 + - ALSA: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 + - ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone + - ALSA: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with + ALC255 + - perf/x86/intel: Fix memory corruption + - perf/x86/intel: Make dev_attr_allow_tsx_force_abort static + - It's wrong to add len to sector_nr in raid10 reshape twice + - drm: Block fb changes for async plane updates + - Linux 5.0.3 + + * Disco update: v5.0.2 upstream stable release (LP: #1820318) + - media: uvcvideo: Fix 'type' check leading to overflow + - Input: wacom_serial4 - add support for Wacom ArtPad II tablet + - Input: elan_i2c - add id for touchpad found in Lenovo s21e-20 + - iscsi_ibft: Fix missing break in switch statement + - scsi: aacraid: Fix missing break in switch statement + - x86/PCI: Fixup RTIT_BAR of Intel Denverton Trace Hub + - arm64: dts: zcu100-revC: Give wifi some time after power-on + - arm64: dts: hikey: Give wifi some time after power-on + - arm64: dts: hikey: Revert "Enable HS200 mode on eMMC" + - ARM: dts: exynos: Fix pinctrl definition for eMMC RTSN line on Odroid X2/U3 + - ARM: dts: exynos: Add minimal clkout parameters to Exynos3250 PMU + - ARM: dts: exynos: Fix max voltage for buck8 regulator on Odroid XU3/XU4 + - drm: disable uncached DMA optimization for ARM and arm64 + - media: Revert "media: rc: some events are dropped by userspace" + - Revert "PCI/PME: Implement runtime PM callbacks" + - bpf: Stop the psock parser before canceling its work + - gfs2: Fix missed wakeups in find_insert_glock + - staging: erofs: keep corrupted fs from crashing kernel in erofs_namei() + - staging: erofs: compressed_pages should not be accessed again after freed + - scripts/gdb: replace flags (MS_xyz -> SB_xyz) + - ath9k: Avoid OF no-EEPROM quirks without qca,no-eeprom + - perf/x86/intel: Make cpuc allocations consistent + - perf/x86/intel: Generalize dynamic constraint creation + - x86: Add TSX Force Abort CPUID/MSR + - perf/x86/intel: Implement support for TSX Force Abort + - Linux 5.0.2 + + * Linux security module stacking support + - LSM: Introduce LSM_FLAG_LEGACY_MAJOR + - LSM: Provide separate ordered initialization + - LSM: Plumb visibility into optional "enabled" state + - LSM: Lift LSM selection out of individual LSMs + - LSM: Build ordered list of LSMs to initialize + - LSM: Introduce CONFIG_LSM + - LSM: Introduce "lsm=" for boottime LSM selection + - LSM: Tie enabling logic to presence in ordered list + - LSM: Prepare for reorganizing "security=" logic + - LSM: Refactor "security=" in terms of enable/disable + - LSM: Separate idea of "major" LSM from "exclusive" LSM + - apparmor: Remove SECURITY_APPARMOR_BOOTPARAM_VALUE + - selinux: Remove SECURITY_SELINUX_BOOTPARAM_VALUE + - LSM: Add all exclusive LSMs to ordered initialization + - LSM: Split LSM preparation from initialization + - LoadPin: Initialize as ordered LSM + - Yama: Initialize as ordered LSM + - LSM: Introduce enum lsm_order + - capability: Initialize as LSM_ORDER_FIRST + - procfs: add smack subdir to attrs + - Smack: Abstract use of cred security blob + - SELinux: Abstract use of cred security blob + - SELinux: Remove cred security blob poisoning + - SELinux: Remove unused selinux_is_enabled + - AppArmor: Abstract use of cred security blob + - TOMOYO: Abstract use of cred security blob + - Infrastructure management of the cred security blob + - SELinux: Abstract use of file security blob + - Smack: Abstract use of file security blob + - LSM: Infrastructure management of the file security + - SELinux: Abstract use of inode security blob + - Smack: Abstract use of inode security blob + - LSM: Infrastructure management of the inode security + - LSM: Infrastructure management of the task security + - SELinux: Abstract use of ipc security blobs + - Smack: Abstract use of ipc security blobs + - LSM: Infrastructure management of the ipc security blob + - TOMOYO: Update LSM flags to no longer be exclusive + - LSM: generalize flag passing to security_capable + - LSM: Make lsm_early_cred() and lsm_early_task() local functions. + - LSM: Make some functions static + - apparmor: Adjust offset when accessing task blob. + - LSM: Ignore "security=" when "lsm=" is specified + - LSM: Update list of SECURITYFS users in Kconfig + - apparmor: delete the dentry in aafs_remove() to avoid a leak + - apparmor: fix double free when unpack of secmark rules fails + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Limit calls to certain module hooks + - SAUCE: LSM: Special handling for secctx lsm hooks + - SAUCE: LSM: Specify which LSM to display with /proc/self/attr/display + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Fix warning about unused function + apparmor_ipv6_postroute" + - SAUCE: Revert "apparmor: fix checkpatch error in Parse secmark policy" + - SAUCE: Revert "apparmor: add #ifdef checks for secmark filtering" + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fix bad debug check in apparmor_secid_to_secctx()" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: Fix memory leak of rule on error exit path" + - SAUCE: Revert "apparmor: modify audit rule support to support profile + stacks" + - SAUCE: Revert "apparmor: Add support for audit rule filtering" + - SAUCE: Revert "apparmor: add the ability to get a task's secid" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - SAUCE: apparmor: add proc subdir to attrs + - SAUCE: apparmor: add an apparmorfs entry to access current attrs + - SAUCE: apparmor: update flags to no longer be exclusive + - SAUCE: update configs and annotations for LSM stacking + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_EARLY_PRINTK_USB_XDBC=y + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - [Config] CONFIG_RANDOM_TRUST_CPU=y + - [Config] refresh annotations for recent config changes + - ubuntu: vbox -- update to 6.0.4-dfsg-7 + - Revert "UBUNTU: SAUCE: i2c:amd I2C Driver based on PCI Interface for + upcoming platform" + + -- Seth Forshee Thu, 04 Apr 2019 14:49:59 -0500 + +linux (5.0.0-8.9) disco; urgency=medium + + * linux: 5.0.0-8.9 -proposed tracker (LP: #1819759) + + * hisi_sas: add debugfs support (LP: #1819500) + - scsi: hisi_sas: Create root and device debugfs directories + - scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers + - scsi: hisi_sas: Take debugfs snapshot for all regs + - scsi: hisi_sas: Debugfs global register create file and add file operations + - scsi: hisi_sas: Add debugfs for port registers + - scsi: hisi_sas: Add debugfs CQ file and add file operations + - scsi: hisi_sas: Add debugfs DQ file and add file operations + - scsi: hisi_sas: Add debugfs IOST file and add file operations + - scsi: hisi_sas: No need to check return value of debugfs_create functions + - scsi: hisi_sas: Fix type casting and missing static qualifier in debugfs + code + - scsi: hisi_sas: Add debugfs ITCT file and add file operations + + * [disco] hns driver updates from 5.1 merge window (LP: #1819535) + - net: hns: Use struct_size() in devm_kzalloc() + - net: hns3: modify enet reinitialization interface + - net: hns3: remove unused member in struct hns3_enet_ring + - net: hns3: remove unnecessary hns3_adjust_tqps_num + - net: hns3: reuse reinitialization interface in the hns3_set_channels + - net: hns3: add interface hclge_tm_bp_setup + - net: hns3: modify parameter checks in the hns3_set_channels + - net: hns3: remove redundant codes in hclge_knic_setup + - net: hns3: fix user configuration loss for ethtool -L + - net: hns3: adjust the use of alloc_tqps and num_tqps + - net: hns3: fix wrong combined count returned by ethtool -l + - net: hns3: do reinitialization while ETS configuration changed + - net: hns3: add HNAE3_RESTORE_CLIENT interface in enet module + - net: hns3: add calling roce callback function when link status change + - net: hns3: add rx multicast packets statistic + - net: hns3: refactor the statistics updating for netdev + - net: hns3: fix rss configuration lost problem when setting channel + - net: hns3: fix for shaper not setting when TC num changes + - net: hns3: fix bug of ethtool_ops.get_channels for VF + - net: hns3: clear param in ring when free ring + - net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED + - net: hns3: do not return GE PFC setting err when initializing + - net: hns3: add ETS TC weight setting in SSU module + - net: hns3: add statistics for PFC frames and MAC control frames + - net: hns3: fix PFC not setting problem for DCB module + - net: hns3: don't update packet statistics for packets dropped by hardware + - net: hns3: clear pci private data when unload hns3 driver + - net: hns3: add error handling in hclge_ieee_setets + - net: hns3: fix return value handle issue for hclge_set_loopback() + - net: hns3: fix broadcast promisc issue for revision 0x20 + - net: hns3: After setting the loopback, add the status of getting MAC + - net: hns3: do reinitialization while mqprio configuration changed + - net: hns3: remove dcb_ops->map_update in hclge_dcb + - net: hns3: call hns3_nic_set_real_num_queue with netdev down + - net: hns3: add 8 BD limit for tx flow + - net: hns3: add initialization for nic state + - net: hns3: don't allow vf to enable promisc mode + - net: hns3: reuse the definition of l3 and l4 header info union + - net: hns3: fix VF dump register issue + - net: hns3: use the correct interface to stop|open port + - net: hns3: change hnae3_register_ae_dev() to int + - net: hns3: only support tc 0 for VF + - net: hns3: Fix NULL deref when unloading driver + - net: hns3: fix netif_napi_del() not do problem when unloading + - net: hns3: fix for rss result nonuniform + - net: hns3: fix improper error handling in the hclge_init_ae_dev() + - net: hns3: fix an issue for hclgevf_ae_get_hdev + - net: hns3: stop sending keep alive msg to PF when VF is resetting + - net: hns3: keep flow director state unchanged when reset + - net: hns3: Check for allocation failure + - net: hns3: fix a code style issue for hns3_update_new_int_gl() + - net: hns3: fix an issue for hns3_update_new_int_gl + - net: hns3: Modify parameter type from int to bool in set_gro_en + - net: hns3: code optimization for hclge_rx_buffer_calc + - net: hns3: add hclge_cmd_check_retval() to parse comman's return value + - net: hns3: move some set_bit statement into hclge_prepare_mac_addr + - net: hns3: fix a wrong checking in the hclge_tx_buffer_calc() + - net: hns3: fix the problem that the supported port is empty + - net: hns3: optimize the maximum TC macro + - net: hns3: don't allow user to change vlan filter state + - net: hns3: modify the upper limit judgment condition + - net: hns3: MAC table entry count function increases operation 0 value + protection measures + - net: hns3: make function hclge_set_all_vf_rst() static + - net: hns3: add pointer checking at the beginning of the exported functions. + - net: hns3: Check variable is valid before assigning it to another + - net: hns3: convert mac advertize and supported from u32 to link mode + - net: hns3: fix port info query issue for copper port + - net: hns3: modify print message of ssu common ecc errors + - net: hns3: some bugfix of ppu(rcb) ras errors + - net: hns3: enable 8~11th bit of mac common msi-x error + - net: hns3: fix 6th bit of ppp mpf abnormal errors + - net: hns3: Record VF unicast and multicast tables + - net: hns3: Record VF vlan tables + - net: hns3: uninitialize command queue while unloading PF driver + - net: hns3: clear command queue's registers when unloading VF driver + - net: hns3: add xps setting support for hns3 driver + - net: hns3: avoid mult + div op in critical data path + - net: hns3: limit some variable scope in critical data path + - net: hns3: remove some ops in struct hns3_nic_ops + - net: hns3: add unlikely for error handling in data path + - net: hns3: replace hnae3_set_bit and hnae3_set_field in data path + - net: hns3: remove hnae3_get_bit in data path + - net: hns3: add support to config depth for tx|rx ring separately + - net: hns3: enable VF VLAN filter for each VF when initializing + - net: hns3: fix get VF RSS issue + - net: hns3: fix setting of the hns reset_type for rdma hw errors + - net: hns3: fix improper error handling for hns3_client_start + - net: hns: use struct_size() in devm_kzalloc() + - net: hns3: Fix a logical vs bitwise typo + - net: hns3: add dma_rmb() for rx description + - net: hns3: fix to stop multiple HNS reset due to the AER changes + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms-build -- support building against packages in PPAs + - [Packaging] dkms-build: do not redownload files on subsequent passes + - [Packaging] dkms-build -- elide partial Built-Using information + - [Packaging] dkms-build -- remove retpoline data from final binary packages + - [Packaging] dkms-build--nvidia* -- check gcc version against primary build + - [Packaging] dkms-build -- add support for unversioned overrides + - [Packaging] dkms-build--nvidia-* -- convert to generic -N form + - [Packaging] fix-filenames -- handle exact string removal + - [Packaging] dkms-build--nvidia-N -- remove GCC versions + + * Disco update: v5.0.1 upstream stable release (LP: #1819515) + - cpufreq: Use struct kobj_attribute instead of struct global_attr + - staging: erofs: fix mis-acted TAIL merging behavior + - binder: create node flag to request sender's security context + - USB: serial: option: add Telit ME910 ECM composition + - USB: serial: cp210x: add ID for Ingenico 3070 + - USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485 + - driver core: Postpone DMA tear-down until after devres release + - staging: erofs: fix fast symlink w/o xattr when fs xattr is on + - staging: erofs: fix memleak of inode's shared xattr array + - staging: erofs: fix race of initializing xattrs of a inode at the same time + - staging: erofs: fix illegal address access under memory pressure + - staging: comedi: ni_660x: fix missing break in switch statement + - staging: wilc1000: fix to set correct value for 'vif_num' + - staging: android: ion: fix sys heap pool's gfp_flags + - staging: android: ashmem: Don't call fallocate() with ashmem_mutex held. + - staging: android: ashmem: Avoid range_alloc() allocation with ashmem_mutex + held. + - ip6mr: Do not call __IP6_INC_STATS() from preemptible context + - net: dsa: mv88e6xxx: add call to mv88e6xxx_ports_cmode_init to probe for new + DSA framework + - net: dsa: mv88e6xxx: handle unknown duplex modes gracefully in + mv88e6xxx_port_set_duplex + - net: dsa: mv8e6xxx: fix number of internal PHYs for 88E6x90 family + - net: mscc: Enable all ports in QSGMII + - net: sched: put back q.qlen into a single location + - net-sysfs: Fix mem leak in netdev_register_kobject + - qmi_wwan: Add support for Quectel EG12/EM12 + - sctp: call iov_iter_revert() after sending ABORT + - team: Free BPF filter when unregistering netdev + - tipc: fix RDM/DGRAM connect() regression + - x86/CPU/AMD: Set the CPB bit unconditionally on F17h + - x86/boot/compressed/64: Do not read legacy ROM on EFI system + - tracing: Fix event filters and triggers to handle negative numbers + - xhci: tegra: Prevent error pointer dereference + - usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on + INTEL_SUNRISEPOINT_LP_XHCI + - applicom: Fix potential Spectre v1 vulnerabilities + - alpha: wire up io_pgetevents system call + - MIPS: irq: Allocate accurate order pages for irq stack + - aio: Fix locking in aio_poll() + - xtensa: fix get_wchan + - gnss: sirf: fix premature wakeup interrupt enable + - USB: serial: cp210x: fix GPIO in autosuspend + - Revert "selftests: firmware: add CONFIG_FW_LOADER_USER_HELPER_FALLBACK to + config" + - Revert "selftests: firmware: remove use of non-standard diff -Z option" + - selftests: firmware: fix verify_reqs() return value + - Bluetooth: btrtl: Restore old logic to assume firmware is already loaded + - Bluetooth: Fix locking in bt_accept_enqueue() for BH context + - Linux 5.0.1 + + * sky2 ethernet card doesn't work after returning from suspend + (LP: #1807259) // sky2 ethernet card link not up after suspend + (LP: #1809843) // Disco update: v5.0.1 upstream stable release + (LP: #1819515) + - sky2: Disable MSI on Dell Inspiron 1545 and Gateway P-79 + + * tls selftest failures/hangs on i386 (LP: #1813607) + - [Config] CONFIG_TLS=n for i386 + + * CVE-2019-8980 + - exec: Fix mem leak in kernel_read_file + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Use 'ipproto ipv6-icmp' to match ICMPv6 headers + - [Config] enable nvidia build + - [Config] update gcc version to 8.3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: selftests: pmtu: disable accept_dad for tests" + + -- Thadeu Lima de Souza Cascardo Tue, 12 Mar 2019 16:15:44 -0300 + +linux (5.0.0-7.8) disco; urgency=medium + + * linux: 5.0.0-7.8 -proposed tracker (LP: #1818519) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * unnecessary request_queue freeze (LP: #1815733) + - block: avoid setting nr_requests to current value + - block: avoid setting none scheduler if it's already none + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on xfail + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0 + + -- Seth Forshee Mon, 04 Mar 2019 08:46:10 -0600 + +linux (5.0.0-6.7) disco; urgency=medium + + * linux: 5.0.0-6.7 -proposed tracker (LP: #1817585) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - [Packaging] resync getabis + + * installer does not support iSCSI iBFT (LP: #1817321) + - d-i: add iscsi_ibft to scsi-modules + + * Silent "Unknown key" message when pressing keyboard backlight hotkey + (LP: #1817063) + - platform/x86: dell-wmi: Ignore new keyboard backlight change event + + * Fix I219 doesn't get woken up after plugging ethernet cable (LP: #1817058) + - e1000e: Disable runtime PM on CNP+ + + * efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted (LP: #1814982) + - efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted + + * CVE-2019-3460 + - Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt + + * CVE-2019-3459 + - Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer + + * kernel net tls selftest fails on 5.0 (LP: #1816716) + - SAUCE: Revert "selftests/tls: Add test for recv(PEEK) spanning across + multiple records" + + * Please enable CONFIG_DMA_CMA=y on arm64 (LP: #1803206) + - [Config] annotations -- enforce CONFIG_DMA_CMA and update notes + + * [19.04 FEAT] [LS1801] PCI Virtual function enablement (LP: #1814684) + - s390/pci: map IOV resources + - s390/pci: improve bar check + + * glibc 2.28-0ubuntu1 ADT test failure with linux 5.0.0-1.2 (LP: #1813060) + - SAUCE: prevent a glibc test failure when looking for obsolete types on + headers + + * Miscellaneous Ubuntu changes + - [Config] Enforce CONFIG_ZCRYPT_MULTIDEVNODES in annotations + - SAUCE: selftests: pmtu: disable accept_dad for tests + - SAUCE: arm64: add kernel config option to lock down when in Secure Boot mode + - SAUCE: selftests: net: Make test for VXLAN underlay in non-default VRF an + expected failure + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc8 + + -- Seth Forshee Mon, 25 Feb 2019 09:37:36 -0600 + +linux (5.0.0-5.6) disco; urgency=medium + + * [ALSA] [PATCH] System76 darp5 and oryp5 fixups (LP: #1815831) + - ALSA: hda/realtek - Headset microphone and internal speaker support for + System76 oryp5 + + * Miscellaneous Ubuntu changes + - [Config] Fix aufs menus in annotations file + - [Config] CONFIG_SAMPLE_TRACE_PRINTK=m + - [Config] Update annotations based on configs + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc7 + + -- Seth Forshee Mon, 18 Feb 2019 10:04:11 +0100 + +linux (5.0.0-4.5) disco; urgency=medium + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [Packaging] Allow overlay of config annotations (LP: #1752072) + - [Packaging] config-check: Add an include directive + + * Miscellaneous Ubuntu changes + - hio -- stub out BIOVEC_PHYS_MERGEABLE for 4.20+ + - hio -- replace use of do_gettimeofday() + - hio -- part_round_stats() removed in 5.0 + - hio -- device_add_disk() grew a 'groups' argument in 4.20 + - enable hio build + - Revert "UBUNTU: [Packaging] autoreconstruct -- base tag is always primary + mainline version" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc6 + + -- Seth Forshee Tue, 12 Feb 2019 08:15:32 -0600 + +linux (5.0.0-3.4) disco; urgency=medium + + * CONFIG_TEST_BPF is disabled (LP: #1813955) + - [Config]: Reenable TEST_BPF + + * Ignore "incomplete report" from Elan touchpanels (LP: #1813733) + - HID: i2c-hid: Ignore input report if there's no data present on Elan + touchpanels + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: fix "from" match test in fib_rule_tests.sh + - [Config] CONFIG_PCMCIA=n for arm64 and s390x + - [Config] CONFIG_SERIAL_SC16IS7XX=n for s390x + - [Config] disable I2C TPM drivers for s390x + - [Config] CONFIG_RAPIDIO=n for s390x + - [Config] CONFIG_DMADEVICES=n for s390x + - [Config] disable gpio drivers for s390x + - [Config] CONFIG_SENSORS_OCC_P8_I2C=m for ppc64el + - [Config] disable I2C hardware drivers for s390x + - [Config] CONFIG_I3C=n for s390x + - [Config] CONFIG_SERIO=n for s390x + - [Config] disable misc drivers for s390x + - [Config] disable EEPROM drivers for s390x + - [Config] disable MFD drivers for s390x + - [Config] CONFIG_NVMEM=n for s390x + - [Config] CONFIG_MLXSW_I2C=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROCHIP=n for s390x + - [Config] CONFIG_PPP=n for s390x + - [Config] CONFIG_PCCARD=n for s390x + - [Config] CONFIG_PCI_MESON=y + - [Config] CONFIG_SCSI_MYRB=n for s390x + - [Config] CONFIG_REGULATOR=n for s390x + - [Config] CONFIG_ZIIRAVE_WATCHDOG=n for s390x + - [Config] CONFIG_NCSI_OEM_CMD_GET_MAC=y + - [Config] update annotations following config review + - [Packaging] remove handoff check for uefi signing + - [Packaging] decompress gzipped efi images in signing tarball + - vbox-update: allow leading whitespace when fixing up KERN_DIR + - ubuntu: vbox -- update to 6.0.4-dfsg-3 + - vbox: remove remount check in sf_read_super_aux() + - enable vbox build + - [Config] CONFIG_ANDROID_BINDER_DEVICES="" + - SAUCE: import aufs driver + - [Config]: Enable aufs + - [Config] relocate aufs annotations to menu + - [Config] remove unmatched configs from annotations + - [Config] fix up abi for removed modules + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - SAUCE: (efi-lockdown) Move EFI signature blob parser to shared location + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - [Config] (efi-lockdown) enable importing of efi certificates for module sig + verification + + * Miscellaneous upstream changes + - binder: fix CONFIG_ANDROID_BINDER_DEVICES + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc5 + + -- Seth Forshee Tue, 05 Feb 2019 14:26:12 -0600 + +linux (5.0.0-2.3) disco; urgency=medium + + * kernel oops in bcache module (LP: #1793901) + - SAUCE: bcache: never writeback a discard operation + + * Enable sound card power saving by default (LP: #1804265) + - [Config] CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: selftests: disable some failing networking tests" + - SAUCE: ashmem: turn into module + - SAUCE: binder: turn into module + - SAUCE: binder: give binder_alloc its own debug mask file + - [Config] enable binder and ashmem as modules + - SAUCE: selftests: net: replace AF_MAX with INT_MAX in socket.c + - SAUCE: selftests/ftrace: Fix tab expansion in trace_marker snapshot trigger + test + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc4 + + -- Seth Forshee Tue, 29 Jan 2019 06:57:32 -0600 + +linux (5.0.0-1.2) disco; urgency=medium + + * Fix non-working QCA Rome Bluetooth after S3 (LP: #1812812) + - USB: Add new USB LPM helpers + - USB: Consolidate LPM checks to avoid enabling LPM twice + + * bluetooth controller not detected with 4.15 kernel (LP: #1810797) + - SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK + - [Config] arm64: snapdragon: BT_QCOMSMD_HACK=y + + * [19.04 FEAT| Enable virtio-gpu for s390x (LP: #1799467) + - [Config] enable virtio-gpu for s390x + + * Crash on "ip link add foo type ipip" (LP: #1811803) + - SAUCE: fan: Fix NULL pointer dereference + + * Fix not working Goodix touchpad (LP: #1811929) + - HID: i2c-hid: Disable runtime PM on Goodix touchpad + + * Miscellaneous Ubuntu changes + - update dkms package versions + - enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc3 + + -- Seth Forshee Tue, 22 Jan 2019 13:56:17 -0600 + +linux (5.0.0-0.1) disco; urgency=medium + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms -- add per package post-process step + - [Packaging] dkms -- switch to a consistent build prefix length and strip + - [Packaging] nvidia -- build and sign nvidia packages and ship signatures + - [Packaging] nvidia -- make nvidia package version explicit + + * Add support for ALC3277 codec on new Dell edge gateways (LP: #1807334) + - [Config] CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m + + * RTL8822BE WiFi Disabled in Kernel 4.18.0-12 (LP: #1806472) + - [Config] CONFIG_RTLWIFI_DEBUG_ST=n + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + - SAUCE: import aufs driver + - update dkms package versions + - [Config] disable aufs config options + - [Config] disable nvidia build + - update dropped.txt + - [Packaging] disable nvidia dkms builds for mainline + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - [Config] set config options for efi lockdown + - Revert "UBUNTU: SAUCE: import aufs driver" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc2 + + -- Seth Forshee Thu, 17 Jan 2019 12:31:29 -0600 + +linux (5.0.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Wed, 16 Jan 2019 14:48:05 -0600 + +linux (4.20.0-2.3) disco; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.20 + + -- Seth Forshee Thu, 03 Jan 2019 12:11:43 -0600 + +linux (4.20.0-1.2) disco; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Power leakage at S5 with Qualcomm Atheros QCA9377 802.11ac Wireless Network + Adapter (LP: #1805607) + - SAUCE: ath10k: provide reset function for QCA9377 chip + + * zfs/spl build in conjunction with the kernel from DKMS source (LP: #1807378) + - [Packaging] dkms -- dkms package build packaging support + - [Packaging] dkms -- save build objects artifacts for validation + - [Packaging] dkms -- add general Built-Using: support + - [Packaging] simplify Provides comma handling + - [Packaging] zfs/spl -- remove packaging support for incorporated source + - [Packaging] zfs/spl -- remove incorporated source + - [Packaging] zfs/spl -- build via dkms + - [Packaging] zfs/spl -- make zfs package version explicit + - [Packaging] update-version-dkms -- sync archive versions to package + + * Miscellaneous Ubuntu changes + - [Packaging] update-version-dkms -- fix getting distrbution from changelog + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc6 + + -- Seth Forshee Tue, 11 Dec 2018 11:33:08 -0600 + +linux (4.20.0-0.1) disco; urgency=medium + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - Revert "ovl: relax permission checking on underlying layers" + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.22-dfsg-2 + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc5 + + -- Seth Forshee Fri, 07 Dec 2018 07:13:42 -0600 + +linux (4.20.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 06 Dec 2018 10:20:19 -0600 + +linux (4.19.0-8.9) disco; urgency=medium + + * linux: 4.19.0-8.9 -proposed tracker (LP: #1806952) + + * Workaround CSS timeout on AMD SNPS 3.0 xHC (LP: #1806838) + - xhci: workaround CSS timeout on AMD SNPS 3.0 xHC + + * Fix Intel I210 doesn't work when ethernet cable gets plugged (LP: #1806818) + - igb: Fix an issue that PME is not enabled during runtime suspend + + * The line-out on the Dell Dock station can't work (LP: #1806532) + - ALSA: usb-audio: Add vendor and product name for Dell WD19 Dock + + * CVE-2018-19407 + - KVM: X86: Fix scan ioapic use-before-initialization + + * PC SN720 NVMe WDC 256GB consumes more power in S2Idle than during long idle + (LP: #1805775) + - SAUCE: pci/nvme: prevent WDC PC SN720 NVMe from entering D3 and being + disabled + + * Disco update: 4.19.6 upstream stable release (LP: #1806909) + - HID: steam: remove input device when a hid client is running. + - efi/libstub: arm: support building with clang + - usb: core: Fix hub port connection events lost + - usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers + - usb: dwc3: gadget: Properly check last unaligned/zero chain TRB + - usb: dwc3: core: Clean up ULPI device + - usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() + - xhci: Fix leaking USB3 shared_hcd at xhci removal + - xhci: handle port status events for removed USB3 hcd + - xhci: Add check for invalid byte size error when UAS devices are connected. + - usb: xhci: fix uninitialized completion when USB3 port got wrong status + - usb: xhci: fix timeout for transition from RExit to U0 + - xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc + - usb: xhci: Prevent bus suspend if a port connect change or polling state is + detected + - ALSA: oss: Use kvzalloc() for local buffer allocations + - MAINTAINERS: Add Sasha as a stable branch maintainer + - Documentation/security-bugs: Clarify treatment of embargoed information + - Documentation/security-bugs: Postpone fix publication in exceptional cases + - mmc: sdhci-pci: Try "cd" for card-detect lookup before using NULL + - mmc: sdhci-pci: Workaround GLK firmware failing to restore the tuning value + - gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path + - iwlwifi: fix wrong WGDS_WIFI_DATA_SIZE + - iwlwifi: mvm: support sta_statistics() even on older firmware + - iwlwifi: mvm: fix regulatory domain update when the firmware starts + - iwlwifi: mvm: don't use SAR Geo if basic SAR is not used + - brcmfmac: fix reporting support for 160 MHz channels + - opp: ti-opp-supply: Dynamically update u_volt_min + - opp: ti-opp-supply: Correct the supply in _get_optimal_vdd_voltage call + - tools/power/cpupower: fix compilation with STATIC=true + - v9fs_dir_readdir: fix double-free on p9stat_read error + - selinux: Add __GFP_NOWARN to allocation at str_read() + - Input: synaptics - avoid using uninitialized variable when probing + - bfs: add sanity check at bfs_fill_super() + - sctp: clear the transport of some out_chunk_list chunks in + sctp_assoc_rm_peer + - gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd + - llc: do not use sk_eat_skb() + - mm: don't warn about large allocations for slab + - mm/memory.c: recheck page table entry with page table lock held + - tcp: do not release socket ownership in tcp_close() + - drm/fb-helper: Blacklist writeback when adding connectors to fbdev + - drm/amdgpu: Add missing firmware entry for HAINAN + - drm/vc4: Set ->legacy_cursor_update to false when doing non-async updates + - drm/amdgpu: Fix oops when pp_funcs->switch_power_profile is unset + - drm/i915: Disable LP3 watermarks on all SNB machines + - drm/ast: change resolution may cause screen blurred + - drm/ast: fixed cursor may disappear sometimes + - drm/ast: Remove existing framebuffers before loading driver + - can: flexcan: Unlock the MB unconditionally + - can: dev: can_get_echo_skb(): factor out non sending code to + __can_get_echo_skb() + - can: dev: __can_get_echo_skb(): replace struct can_frame by canfd_frame to + access frame length + - can: dev: __can_get_echo_skb(): Don't crash the kernel if can_priv::echo_skb + is accessed out of bounds + - can: dev: __can_get_echo_skb(): print error message, if trying to echo non + existing skb + - can: rx-offload: introduce can_rx_offload_get_echo_skb() and + can_rx_offload_queue_sorted() functions + - can: rx-offload: rename can_rx_offload_irq_queue_err_skb() to + can_rx_offload_queue_tail() + - can: flexcan: use can_rx_offload_queue_sorted() for flexcan_irq_bus_*() + - can: flexcan: handle tx-complete CAN frames via rx-offload infrastructure + - can: raw: check for CAN FD capable netdev in raw_sendmsg() + - can: hi311x: Use level-triggered interrupt + - can: flexcan: Always use last mailbox for TX + - can: flexcan: remove not needed struct flexcan_priv::tx_mb and struct + flexcan_priv::tx_mb_idx + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - IB/hfi1: Eliminate races in the SDMA send error path + - fsnotify: generalize handling of extra event flags + - fanotify: fix handling of events on child sub-directory + - pinctrl: meson: fix pinconf bias disable + - pinctrl: meson: fix gxbb ao pull register bits + - pinctrl: meson: fix gxl ao pull register bits + - pinctrl: meson: fix meson8 ao pull register bits + - pinctrl: meson: fix meson8b ao pull register bits + - tools/testing/nvdimm: Fix the array size for dimm devices. + - scsi: lpfc: fix remoteport access + - scsi: hisi_sas: Remove set but not used variable 'dq_list' + - KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE + - cpufreq: imx6q: add return value check for voltage scale + - rtc: cmos: Do not export alarm rtc_ops when we do not support alarms + - rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write + - crypto: simd - correctly take reqsize of wrapped skcipher into account + - floppy: fix race condition in __floppy_read_block_0() + - powerpc/io: Fix the IO workarounds code to work with Radix + - sched/fair: Fix cpu_util_wake() for 'execl' type workloads + - perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs + - block: copy ioprio in __bio_clone_fast() and bounce + - SUNRPC: Fix a bogus get/put in generic_key_to_expire() + - riscv: add missing vdso_install target + - RISC-V: Silence some module warnings on 32-bit + - drm/amdgpu: fix bug with IH ring setup + - kdb: Use strscpy with destination buffer size + - NFSv4: Fix an Oops during delegation callbacks + - powerpc/numa: Suppress "VPHN is not supported" messages + - efi/arm: Revert deferred unmap of early memmap mapping + - z3fold: fix possible reclaim races + - mm, memory_hotplug: check zone_movable in has_unmovable_pages + - tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset + - mm, page_alloc: check for max order in hot path + - dax: Avoid losing wakeup in dax_lock_mapping_entry + - include/linux/pfn_t.h: force '~' to be parsed as an unary operator + - tty: wipe buffer. + - tty: wipe buffer if not echoing data + - gfs2: Fix iomap buffer head reference counting bug + - rcu: Make need_resched() respond to urgent RCU-QS needs + - media: ov5640: Re-work MIPI startup sequence + - media: ov5640: Fix timings setup code + - media: ov5640: fix exposure regression + - media: ov5640: fix auto gain & exposure when changing mode + - media: ov5640: fix wrong binning value in exposure calculation + - media: ov5640: fix auto controls values when switching to manual mode + - Linux 4.19.6 + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] limit preparation to linux-libc-dev in headers + - [Packaging] commonise debhelper invocation + - [Packaging] ABI -- accumulate abi information at the end of the build + - [Packaging] buildinfo -- add basic build information + - [Packaging] buildinfo -- add firmware information to the flavour ABI + - [Packaging] buildinfo -- add compiler information to the flavour ABI + - [Packaging] buildinfo -- add buildinfo support to getabis + - [Packaging] getabis -- handle all known package combinations + - [Packaging] getabis -- support parsing a simple version + + * linux packages should own /usr/lib/linux/triggers (LP: #1770256) + - [Packaging] own /usr/lib/linux/triggers + + * Miscellaneous upstream changes + - blk-mq: fix corruption with direct issue + + -- Seth Forshee Wed, 05 Dec 2018 09:18:30 -0600 + +linux (4.19.0-7.8) disco; urgency=medium + + * linux: 4.19.0-7.8 -proposed tracker (LP: #1805465) + + * Fix and issue that LG I2C touchscreen stops working after reboot + (LP: #1805085) + - HID: i2c-hid: Disable runtime PM for LG touchscreen + + * click/pop noise in the headphone on several lenovo laptops (LP: #1805079) // + click/pop noise in the headphone on several lenovo laptops (LP: #1805079) + - ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops + + * Regression: hinic performance degrades over time (LP: #1805248) + - Revert "net-next/hinic: add checksum offload and TSO support" + + * Disco update: 4.19.5 upstream stable release (LP: #1805461) + - drm/i915: Replace some PAGE_SIZE with I915_GTT_PAGE_SIZE + - cifs: don't dereference smb_file_target before null check + - cifs: fix return value for cifs_listxattr + - arm64: kprobe: make page to RO mode when allocate it + - block: brd: associate with queue until adding disk + - net: hns3: bugfix for rtnl_lock's range in the hclgevf_reset() + - net: hns3: bugfix for rtnl_lock's range in the hclge_reset() + - net: hns3: bugfix for handling mailbox while the command queue reinitialized + - net: hns3: bugfix for the initialization of command queue's spin lock + - ixgbe: fix MAC anti-spoofing filter after VFLR + - reiserfs: propagate errors from fill_with_dentries() properly + - hfs: prevent btree data loss on root split + - hfsplus: prevent btree data loss on root split + - perf unwind: Take pgoff into account when reporting elf to libdwfl + - um: Give start_idle_thread() a return code + - drm/edid: Add 6 bpc quirk for BOE panel. + - afs: Handle EIO from delivery function + - platform/x86: intel_telemetry: report debugfs failure + - clk: fixed-rate: fix of_node_get-put imbalance + - perf symbols: Set PLT entry/header sizes properly on Sparc + - fs/exofs: fix potential memory leak in mount option parsing + - clk: samsung: exynos5420: Enable PERIS clocks for suspend + - apparmor: Fix uninitialized value in aa_split_fqname + - x86/earlyprintk: Add a force option for pciserial device + - platform/x86: acerhdf: Add BIOS entry for Gateway LT31 v1.3307 + - clk: meson-axg: pcie: drop the mpll3 clock parent + - arm64: percpu: Initialize ret in the default case + - clk: meson: clk-pll: drop CLK_GET_RATE_NOCACHE where unnecessary + - clk: renesas: r9a06g032: Fix UART34567 clock rate + - clk: ti: fix OF child-node lookup + - serial: sh-sci: Fix receive on SCIFA/SCIFB variants with DMA + - netfilter: ipv6: fix oops when defragmenting locally generated fragments + - netfilter: bridge: define INT_MIN & INT_MAX in userspace + - s390/decompressor: add missing FORCE to build targets + - s390/vdso: add missing FORCE to build targets + - HID: i2c-hid: Add a small delay after sleep command for Raydium touchpanel + - Revert "HID: add NOGET quirk for Eaton Ellipse MAX UPS" + - HID: alps: allow incoming reports when only the trackstick is opened + - Revert "netfilter: nft_numgen: add map lookups for numgen random operations" + - netfilter: ipset: list:set: Decrease refcount synchronously on deletion and + replace + - netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net + - netfilter: ipset: fix ip_set_list allocation failure + - s390/mm: fix mis-accounting of pgtable_bytes + - s390/mm: Fix ERROR: "__node_distance" undefined! + - bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv + - netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() + - netfilter: xt_IDLETIMER: add sysfs filename checking routine + - netfilter: ipset: Fix calling ip_set() macro at dumping + - netfilter: nft_compat: ebtables 'nat' table is normal chain type + - s390/qeth: fix HiperSockets sniffer + - s390/qeth: unregister netdevice only when registered + - net: hns3: Fix for out-of-bounds access when setting pfc back pressure + - hwmon: (ibmpowernv) Remove bogus __init annotations + - ARM: dts: imx6sll: fix typo for fsl,imx6sll-i2c node + - ARM: dts: fsl: Fix improperly quoted stdout-path values + - Revert "drm/exynos/decon5433: implement frame counter" + - arm64: dts: renesas: r8a7795: add missing dma-names on hscif2 + - arm64: dts: renesas: condor: switch from EtherAVB to GEther + - xen/grant-table: Fix incorrect gnttab_dma_free_pages() pr_debug message + - clk: fixed-factor: fix of_node_get-put imbalance + - mtd: nand: Fix nanddev_pos_next_page() kernel-doc header + - lib/raid6: Fix arm64 test build + - drm/amd/display: Stop leaking planes + - block: Clear kernel memory before copying to user + - drm/amd/display: Drop reusing drm connector for MST + - drm/amd/amdgpu/dm: Fix dm_dp_create_fake_mst_encoder() + - s390/perf: Change CPUM_CF return code in event init function + - ceph: quota: fix null pointer dereference in quota check + - of/device: Really only set bus DMA mask when appropriate + - nvme: make sure ns head inherits underlying device limits + - i2c: omap: Enable for ARCH_K3 + - i2c: qcom-geni: Fix runtime PM mismatch with child devices + - sched/core: Take the hotplug lock in sched_init_smp() + - perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so + - perf tools: Do not zero sample_id_all for group members + - ice: Fix dead device link issue with flow control + - ice: Fix the bytecount sent to netdev_tx_sent_queue + - ice: Change req_speeds to be u16 + - i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features + - qed: Fix memory/entry leak in qed_init_sp_request() + - qed: Fix blocking/unlimited SPQ entries leak + - qed: Fix SPQ entries not returned to pool in error flows + - qed: Fix potential memory corruption + - net: stmmac: Fix RX packet size > 8191 + - net: aquantia: fix potential IOMMU fault after driver unbind + - net: aquantia: fixed enable unicast on 32 macvlan + - net: aquantia: invalid checksumm offload implementation + - kbuild: deb-pkg: fix too low build version number + - Revert "scripts/setlocalversion: git: Make -dirty check more robust" + - SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() + - x86/mm: Move LDT remap out of KASLR region on 5-level paging + - x86/ldt: Unmap PTEs for the slot before freeing LDT pages + - x86/ldt: Remove unused variable in map_ldt_struct() + - media: v4l: event: Add subscription to list before calling "add" operation + - MIPS: OCTEON: cavium_octeon_defconfig: re-enable OCTEON USB driver + - RISC-V: Fix raw_copy_{to,from}_user() + - uio: Fix an Oops on load + - ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 + - ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() + - can: kvaser_usb: Fix accessing freed memory in kvaser_usb_start_xmit() + - can: kvaser_usb: Fix potential uninitialized variable use + - usb: cdc-acm: add entry for Hiro (Conexant) modem + - USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub + - usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB + - misc: atmel-ssc: Fix section annotation on atmel_ssc_get_driver_data + - USB: misc: appledisplay: add 20" Apple Cinema Display + - gnss: serial: fix synchronous write timeout + - gnss: sirf: fix synchronous write timeout + - mtd: rawnand: atmel: fix OF child-node lookup + - drivers/misc/sgi-gru: fix Spectre v1 vulnerability + - ACPI / platform: Add SMB0001 HID to forbidden_id_list + - HID: uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges + - HID: Add quirk for Primax PIXART OEM mice + - HID: Add quirk for Microsoft PIXART OEM mouse + - libceph: fall back to sendmsg for slab pages + - mt76x0: run vco calibration for each channel configuration + - Linux 4.19.5 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: Build signed kernels for arm64" + + -- Seth Forshee Tue, 27 Nov 2018 10:38:34 -0600 + +linux (4.19.0-6.7) disco; urgency=medium + + * linux: 4.19.0-6.7 -proposed tracker (LP: #1805195) + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Add pointstick support for Cirque Touchpad (LP: #1805081) + - HID: multitouch: Add pointstick support for Cirque Touchpad + + * Power consumption during s2idle is higher than long idle (Intel SSDPEKKF) + (LP: #1804588) + - SAUCE: pci: prevent Intel NVMe SSDPEKKF from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: 4.19.4 upstream stable release (LP: #1805159) + - flow_dissector: do not dissect l4 ports for fragments + - ibmvnic: fix accelerated VLAN handling + - ip_tunnel: don't force DF when MTU is locked + - ipv6: fix a dst leak when removing its exception + - ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF + - net: bcmgenet: protect stop from timeout + - net-gro: reset skb->pkt_type in napi_reuse_skb() + - sctp: not allow to set asoc prsctp_enable by sockopt + - tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP + coalescing + - tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths + - tipc: don't assume linear buffer when reading ancillary data + - tipc: fix lockdep warning when reinitilaizing sockets + - tuntap: fix multiqueue rx + - net: systemport: Protect stop from timeout + - net/sched: act_pedit: fix memory leak when IDR allocation fails + - net: sched: cls_flower: validate nested enc_opts_policy to avoid warning + - tipc: fix link re-establish failure + - net/mlx5e: Don't match on vlan non-existence if ethertype is wildcarded + - net/mlx5e: Claim TC hw offloads support only under a proper build config + - net/mlx5e: Adjust to max number of channles when re-attaching + - net/mlx5e: RX, verify received packet size in Linear Striding RQ + - Revert "sctp: remove sctp_transport_pmtu_check" + - net/mlx5e: Always use the match level enum when parsing TC rule match + - net/mlx5e: Fix selftest for small MTUs + - net/mlx5e: Removed unnecessary warnings in FEC caps query + - inet: frags: better deal with smp races + - l2tp: fix a sock refcnt leak in l2tp_tunnel_register + - net/mlx5: IPSec, Fix the SA context hash key + - net/mlx5e: IPoIB, Reset QP after channels are closed + - net: dsa: mv88e6xxx: Fix clearing of stats counters + - net: phy: realtek: fix RTL8201F sysfs name + - sctp: define SCTP_SS_DEFAULT for Stream schedulers + - net: qualcomm: rmnet: Fix incorrect assignment of real_dev + - net: dsa: microchip: initialize mutex before use + - sctp: fix strchange_flags name for Stream Change Event + - net: phy: mdio-gpio: Fix working over slow can_sleep GPIOs + - sctp: not increase stream's incnt before sending addstrm_in request + - mlxsw: spectrum: Fix IP2ME CPU policer configuration + - net: smsc95xx: Fix MTU range + - rxrpc: Fix lockup due to no error backoff after ack transmit error + - usbnet: smsc95xx: disable carrier check while suspending + - Revert "x86/speculation: Enable cross-hyperthread spectre v2 STIBP + mitigation" + - Linux 4.19.4 + + * Disco update: 4.19.3 upstream stable release (LP: #1805158) + - powerpc/traps: restore recoverability of machine_check interrupts + - powerpc/64/module: REL32 relocation range check + - powerpc/mm: Fix page table dump to work on Radix + - powerpc/mm: fix always true/false warning in slice.c + - drm/amd/display: fix bug of accessing invalid memory + - Input: wm97xx-ts - fix exit path + - powerpc/Makefile: Fix PPC_BOOK3S_64 ASFLAGS + - powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() + - tty: check name length in tty_find_polling_driver() + - tracing/kprobes: Check the probe on unloaded module correctly + - drm/nouveau/secboot/acr: fix memory leak + - drm/amdgpu/powerplay: fix missing break in switch statements + - ARM: imx_v6_v7_defconfig: Select CONFIG_TMPFS_POSIX_ACL + - powerpc/nohash: fix undefined behaviour when testing page size support + - drm/msm/gpu: fix parameters in function msm_gpu_crashstate_capture + - drm/msm/disp/dpu: Use proper define for drm_encoder_init() 'encoder_type' + - drm/msm: dpu: Allow planes to extend past active display + - powerpc/mm: Don't report hugepage tables as memory leaks when using kmemleak + - drm/omap: fix memory barrier bug in DMM driver + - drm/amd/display: Raise dispclk value for dce120 by 15% + - drm/amd/display: fix gamma not being applied + - drm/hisilicon: hibmc: Do not carry error code in HiBMC framebuffer pointer + - media: pci: cx23885: handle adding to list failure + - media: coda: don't overwrite h.264 profile_idc on decoder instance + - MIPS: kexec: Mark CPU offline before disabling local IRQ + - powerpc/boot: Ensure _zimage_start is a weak symbol + - powerpc/memtrace: Remove memory in chunks + - MIPS/PCI: Call pcie_bus_configure_settings() to set MPS/MRRS + - staging: erofs: fix a missing endian conversion + - serial: 8250_of: Fix for lack of interrupt support + - sc16is7xx: Fix for multi-channel stall + - media: tvp5150: fix width alignment during set_selection() + - powerpc/selftests: Wait all threads to join + - staging:iio:ad7606: fix voltage scales + - drm: rcar-du: Update Gen3 output limitations + - drm/amdgpu: Fix SDMA TO after GPU reset v3 + - staging: most: video: fix registration of an empty comp core_component + - 9p locks: fix glock.client_id leak in do_lock + - udf: Prevent write-unsupported filesystem to be remounted read-write + - ARM: dts: imx6ull: keep IMX6UL_ prefix for signals on both i.MX6UL and + i.MX6ULL + - media: ov5640: fix mode change regression + - 9p: clear dangling pointers in p9stat_free + - drm/amdgpu: fix integer overflow test in amdgpu_bo_list_create() + - media: ov5640: fix restore of last mode set + - cdrom: fix improper type cast, which can leat to information leak. + - ovl: fix error handling in ovl_verify_set_fh() + - ovl: fix recursive oi->lock in ovl_link() + - ovl: check whiteout in ovl_create_over_whiteout() + - ovl: automatically enable redirect_dir on metacopy=on + - serial: sh-sci: Fix could not remove dev_attr_rx_fifo_timeout + - scsi: qla2xxx: Fix incorrect port speed being set for FC adapters + - scsi: qla2xxx: Fix process response queue for ISP26XX and above + - scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx + - scsi: qla2xxx: Fix early srb free on abort + - scsi: qla2xxx: shutdown chip if reset fail + - scsi: qla2xxx: Reject bsg request if chip is down. + - scsi: qla2xxx: Fix re-using LoopID when handle is in use + - scsi: qla2xxx: Fix for double free of SRB structure + - scsi: qla2xxx: Fix NVMe session hang on unload + - scsi: qla2xxx: Fix NVMe Target discovery + - scsi: qla2xxx: Fix duplicate switch database entries + - scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured + - vfs: fix FIGETBSZ ioctl on an overlayfs file + - fuse: Fix use-after-free in fuse_dev_do_read() + - fuse: Fix use-after-free in fuse_dev_do_write() + - fuse: fix blocked_waitq wakeup + - fuse: set FR_SENT while locked + - drm/msm: fix OF child-node lookup + - arm64: dts: stratix10: Support Ethernet Jumbo frame + - arm64: dts: stratix10: fix multicast filtering + - clk: meson-gxbb: set fclk_div3 as CLK_IS_CRITICAL + - clk: meson: axg: mark fdiv2 and fdiv3 as critical + - zram: close udev startup race condition as default groups + - MIPS: Loongson-3: Fix CPU UART irq delivery problem + - MIPS: Loongson-3: Fix BRIDGE irq delivery problem + - xtensa: add NOTES section to the linker script + - xtensa: make sure bFLT stack is 16 byte aligned + - xtensa: fix boot parameters address translation + - um: Drop own definition of PTRACE_SYSEMU/_SINGLESTEP + - clk: s2mps11: Fix matching when built as module and DT node contains + compatible + - clk: at91: Fix division by zero in PLL recalc_rate() + - clk: sunxi-ng: h6: fix bus clocks' divider position + - clk: rockchip: fix wrong mmc sample phase shift for rk3328 + - clk: rockchip: Fix static checker warning in rockchip_ddrclk_get_parent call + - libceph: bump CEPH_MSG_MAX_DATA_LEN + - Revert "ceph: fix dentry leak in splice_dentry()" + - thermal: core: Fix use-after-free in thermal_cooling_device_destroy_sysfs + - mach64: fix display corruption on big endian machines + - mach64: fix image corruption due to reading accelerator registers + - acpi/nfit, x86/mce: Handle only uncorrectable machine checks + - acpi/nfit, x86/mce: Validate a MCE's address before using it + - acpi, nfit: Fix ARS overflow continuation + - reset: hisilicon: fix potential NULL pointer dereference + - crypto: hisilicon - Fix NULL dereference for same dst and src + - crypto: hisilicon - Fix reference after free of memories on error path + - vhost/scsi: truncate T10 PI iov_iter to prot_bytes + - scsi: qla2xxx: Initialize port speed to avoid setting lower speed + - SCSI: fix queue cleanup race before queue initialization is done + - Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for + CONFIG_SWAP" + - soc: ti: QMSS: Fix usage of irq_set_affinity_hint + - ocfs2: fix a misuse a of brelse after failing ocfs2_check_dir_entry + - ocfs2: free up write context when direct IO failed + - mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings + - memory_hotplug: cond_resched in __remove_pages + - netfilter: conntrack: fix calculation of next bucket number in early_drop + - ARM: 8809/1: proc-v7: fix Thumb annotation of cpu_v7_hvc_switch_mm + - bonding/802.3ad: fix link_failure_count tracking + - mtd: spi-nor: cadence-quadspi: Return error code in + cqspi_direct_read_execute() + - mtd: nand: Fix nanddev_neraseblocks() + - mtd: docg3: don't set conflicting BCH_CONST_PARAMS option + - hwmon: (core) Fix double-free in __hwmon_device_register() + - perf cs-etm: Correct CPU mode for samples + - perf stat: Handle different PMU names with common prefix + - perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc} + - perf intel-pt/bts: Calculate cpumode for synthesized samples + - perf intel-pt: Insert callchain context into synthesized callchains + - of, numa: Validate some distance map rules + - x86/cpu/vmware: Do not trace vmware_sched_clock() + - x86/hyper-v: Enable PIT shutdown quirk + - termios, tty/tty_baudrate.c: fix buffer overrun + - arch/alpha, termios: implement BOTHER, IBSHIFT and termios2 + - watchdog/core: Add missing prototypes for weak functions + - btrfs: fix pinned underflow after transaction aborted + - Btrfs: fix missing data checksums after a ranged fsync (msync) + - Btrfs: fix cur_offset in the error case for nocow + - Btrfs: fix infinite loop on inode eviction after deduplication of eof block + - Btrfs: fix data corruption due to cloning of eof block + - btrfs: tree-checker: Fix misleading group system information + - clockevents/drivers/i8253: Add support for PIT shutdown quirk + - ext4: add missing brelse() update_backups()'s error path + - ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path + - ext4: add missing brelse() add_new_gdb_meta_bg()'s error path + - ext4: avoid potential extra brelse in setup_new_flex_group_blocks() + - ext4: missing !bh check in ext4_xattr_inode_write() + - ext4: fix possible inode leak in the retry loop of ext4_resize_fs() + - ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() + - ext4: avoid buffer leak in ext4_orphan_add() after prior errors + - ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing + - ext4: avoid possible double brelse() in add_new_gdb() on error path + - ext4: fix possible leak of sbi->s_group_desc_leak in error path + - ext4: fix possible leak of s_journal_flag_rwsem in error path + - ext4: fix buffer leak in ext4_xattr_get_block() on error path + - ext4: release bs.bh before re-using in ext4_xattr_block_find() + - ext4: fix buffer leak in ext4_xattr_move_to_block() on error path + - ext4: fix buffer leak in ext4_expand_extra_isize_ea() on error path + - ext4: fix buffer leak in __ext4_read_dirblock() on error path + - mount: Prevent MNT_DETACH from disconnecting locked mounts + - mnt: fix __detach_mounts infinite loop + - uapi: fix linux/kfd_ioctl.h userspace compilation errors + - ARM: cpuidle: Don't register the driver when back-end init returns -ENXIO + - kdb: use correct pointer when 'btc' calls 'btt' + - kdb: print real address of pointers instead of hashed addresses + - sunrpc: correct the computation for page_ptr when truncating + - NFSv4: Don't exit the state manager without clearing + NFS4CLNT_MANAGER_RUNNING + - nfsd: COPY and CLONE operations require the saved filehandle to be set + - rtc: hctosys: Add missing range error reporting + - fuse: fix use-after-free in fuse_direct_IO() + - fuse: fix leaked notify reply + - fuse: fix possibly missed wake-up after abort + - selinux: check length properly in SCTP bind hook + - gfs2: Put bitmap buffers in put_super + - gfs2: Fix metadata read-ahead during truncate (2) + - libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD + - crypto: user - fix leaking uninitialized memory to userspace + - lib/ubsan.c: don't mark __ubsan_handle_builtin_unreachable as noreturn + - hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! + - mm/swapfile.c: use kvzalloc for swap_info_struct allocation + - efi/arm/libstub: Pack FDT after populating it + - mm: don't reclaim inodes with many attached pages + - scripts/spdxcheck.py: make python3 compliant + - drm/rockchip: Allow driver to be shutdown on reboot/kexec + - drm/amdgpu: Fix typo in amdgpu_vmid_mgr_init + - drm/amdgpu: add missing CHIP_HAINAN in amdgpu_ucode_get_load_type + - drm/amdgpu: Suppress keypresses from ACPI_VIDEO events + - drm/nouveau: Check backlight IDs are >= 0, not > 0 + - drm/nouveau: Fix nv50_mstc->best_encoder() + - drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD + - drm/etnaviv: fix bogus fence complete check in timeout handler + - drm/dp_mst: Check if primary mstb is null + - drm: panel-orientation-quirks: Add quirk for Acer One 10 (S1003) + - drm/i915/dp: Link train Fallback on eDP only if fallback link BW can fit + panel's native mode + - drm/i915: Use the correct crtc when sanitizing plane mapping + - drm/i915: Restore vblank interrupts earlier + - drm/i915: Don't unset intel_connector->mst_port + - drm/i915: Skip vcpi allocation for MSTB ports that are gone + - drm/i915: Large page offsets for pread/pwrite + - drm/i915/dp: Fix link retraining comment in intel_dp_long_pulse() + - drm/i915/dp: Restrict link retrain workaround to external monitors + - drm/i915/icl: Fix the macros for DFLEXDPMLE register bits + - drm/i915/hdmi: Add HDMI 2.0 audio clock recovery N values + - drm/i915: Mark up GTT sizes as u64 + - drm/i915: Fix error handling for the NV12 fb dimensions check + - drm/i915: Fix ilk+ watermarks when disabling pipes + - drm/i915: Compare user's 64b GTT offset even on 32b + - drm/i915: Don't oops during modeset shutdown after lpe audio deinit + - drm/i915: Mark pin flags as u64 + - drm/i915/ringbuffer: Delay after EMIT_INVALIDATE for gen4/gen5 + - drm/i915/execlists: Force write serialisation into context image vs + execution + - drm/i915: Fix possible race in intel_dp_add_mst_connector() + - drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST + - drm/i915: Fix hpd handling for pins with two encoders + - CONFIG_XEN_PV breaks xen_create_contiguous_region on ARM + - Revert "ACPICA: AML interpreter: add region addresses in global list during + initialization" + - Linux 4.19.3 + + * glibc 2.28-0ubuntu1 ADT test failure with linux 4.19.0-5.6 (LP: #1805154) + - SAUCE: Revert "x86: vdso: Use $LD instead of $CC to link" + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.12-1ubuntu1, zfs to 0.7.12-1ubuntu1 + + -- Seth Forshee Mon, 26 Nov 2018 11:44:00 -0600 + +linux (4.19.0-5.6) disco; urgency=medium + + * crash in ENA driver on removing an interface (LP: #1802341) + - SAUCE: net: ena: fix crash during ena_remove() + + * Ubuntu 18.04.1 - [s390x] Kernel panic while stressing network bonding + (LP: #1797367) + - s390/qeth: sanitize strings in debug messages + + * Disco update: 4.19.2 upstream stable release (LP: #1803410) + - bpf: fix partial copy of map_ptr when dst is scalar + - MIPS: VDSO: Reduce VDSO_RANDOMIZE_SIZE to 64MB for 64bit + - gpio: mxs: Get rid of external API call + - mtd: rawnand: marvell: fix the IRQ handler complete() condition + - mtd: maps: gpio-addr-flash: Fix ioremapped size + - mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB + - mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash + - mtd: spi-nor: fsl-quadspi: Don't let -EINVAL on the bus + - spi: spi-mem: Adjust op len based on message/transfer size limitations + - spi: bcm-qspi: switch back to reading flash using smaller chunks + - spi: bcm-qspi: fix calculation of address length + - bcache: trace missed reading by cache_missed + - bcache: fix ioctl in flash device + - bcache: correct dirty data statistics + - bcache: fix miss key refill->end in writeback + - hwmon: (pmbus) Fix page count auto-detection. + - jffs2: free jffs2_sb_info through jffs2_kill_sb() + - block: setup bounce bio_sets properly + - block: make sure discard bio is aligned with logical block size + - block: make sure writesame bio is aligned with logical block size + - cpufreq: conservative: Take limits changes into account properly + - dma-mapping: fix panic caused by passing empty cma command line argument + - pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges + - ACPI / OSL: Use 'jiffies' as the time bassis for acpi_os_get_timer() + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended + opcodes + - acpi, nfit: Fix Address Range Scrub completion tracking + - kprobes/x86: Use preempt_enable() in optimized_callback() + - mailbox: PCC: handle parse error + - parisc: Fix address in HPMC IVA + - parisc: Fix map_pages() to not overwrite existing pte entries + - parisc: Fix exported address of os_hpmc handler + - ALSA: hda - Add quirk for ASUS G751 laptop + - ALSA: hda - Fix headphone pin config for ASUS G751 + - ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) + - ALSA: hda: Add 2 more models to the power_save blacklist + - ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops + - ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks + - x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation + - x86/xen: Fix boot loader version reported for PVH guests + - x86/corruption-check: Fix panic in memory_corruption_check() when boot + option without value is provided + - x86/kvm/nVMX: allow bare VMXON state migration + - x86/mm/pat: Disable preemption around __flush_tlb_all() + - x86/numa_emulation: Fix uniform-split numa emulation + - ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen + - net: socionext: Reset tx queue in ndo_stop + - net: loopback: clear skb->tstamp before netif_rx() + - locking/lockdep: Fix debug_locks off performance problem + - netfilter: xt_nat: fix DNAT target for shifted portmap ranges + - ataflop: fix error handling during setup + - swim: fix cleanup on setup error + - arm64: cpufeature: ctr: Fix cpu capability check for late CPUs + - hv_netvsc: fix vf serial matching with pci slot info + - nfp: devlink port split support for 1x100G CXP NIC + - tun: Consistently configure generic netdev params via rtnetlink + - s390/sthyi: Fix machine name validity indication + - hwmon: (pwm-fan) Set fan speed to 0 on suspend + - lightnvm: pblk: fix race on sysfs line state + - lightnvm: pblk: fix two sleep-in-atomic-context bugs + - lightnvm: pblk: fix race condition on metadata I/O + - spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} + - perf tools: Free temporary 'sys' string in read_event_files() + - perf tools: Cleanup trace-event-info 'tdata' leak + - perf tools: Free 'printk' string in parse_ftrace_printk() + - perf strbuf: Match va_{add,copy} with va_end + - cpupower: Fix coredump on VMWare + - bcache: Populate writeback_rate_minimum attribute + - mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 + - sdhci: acpi: add free_slot callback + - mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset + - iwlwifi: pcie: avoid empty free RB queue + - iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface + - iwlwifi: mvm: check for n_profiles validity in EWRD ACPI + - x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC + - wlcore: Fix BUG with clear completion on timeout + - ACPI/PPTT: Handle architecturally unknown cache types + - ACPI / PM: LPIT: Register sysfs attributes based on FADT + - ACPI / processor: Fix the return value of acpi_processor_ids_walk() + - cpufreq: dt: Try freeing static OPPs only if we have added them + - x86/intel_rdt: Show missing resctrl mount options + - mtd: rawnand: atmel: Fix potential NULL pointer dereference + - nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O + - ath10k: fix tx status flag setting for management frames + - signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack + - ice: fix changing of ring descriptor size (ethtool -G) + - ice: update fw version check logic + - net: hns3: Fix for packet buffer setting bug + - Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth + - Bluetooth: hci_qca: Remove hdev dereference in qca_close(). + - x86: boot: Fix EFI stub alignment + - net: hns3: Add nic state check before calling netif_tx_wake_queue + - net: hns3: Fix ets validate issue + - pinctrl: sunxi: fix 'pctrl->functions' allocation in + sunxi_pinctrl_build_state + - pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux + - brcmfmac: fix for proper support of 160MHz bandwidth + - net: hns3: Check hdev state when getting link status + - net: hns3: Set STATE_DOWN bit of hdev state when stopping net + - net: phy: phylink: ensure the carrier is off when starting phylink + - block, bfq: correctly charge and reset entity service in all cases + - arm64: entry: Allow handling of undefined instructions from EL1 + - kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() + - spi: gpio: No MISO does not imply no RX + - ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers + - pinctrl: qcom: spmi-mpp: Fix drive strength setting + - bpf/verifier: fix verifier instability + - failover: Add missing check to validate 'slave_dev' in + net_failover_slave_unregister + - perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo + - pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant + - pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() to be compliant + - net: hns3: Preserve vlan 0 in hardware table + - net: hns3: Fix ping exited problem when doing lp selftest + - net: hns3: Fix for vf vlan delete failed problem + - net: dsa: mv88e6xxx: Fix writing to a PHY page. + - mt76x2u: run device cleanup routine if resume fails + - rsi: fix memory alignment issue in ARM32 platforms + - libertas_tf: prevent underflow in process_cmdrequest() + - iwlwifi: mvm: fix BAR seq ctrl reporting + - gpio: brcmstb: allow 0 width GPIO banks + - ixgbe: disallow IPsec Tx offload when in SR-IOV mode + - ixgbevf: VF2VF TCP RSS + - wil6210: fix RX buffers release and unmap + - ath10k: schedule hardware restart if WMI command times out + - libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 + - thermal: rcar_thermal: Prevent doing work after unbind + - thermal: da9062/61: Prevent hardware access during system suspend + - cifs: fix a credits leak for compund commands + - cgroup, netclassid: add a preemption point to write_classid + - net: stmmac: dwmac-sun8i: fix OF child-node lookup + - f2fs: fix to account IO correctly for cgroup writeback + - MD: Memory leak when flush bio size is zero + - md: fix memleak for mempool + - of: Add missing exports of node name compare functions + - scsi: esp_scsi: Track residual for PIO transfers + - scsi: ufs: Schedule clk gating work on correct queue + - UAPI: ndctl: Fix g++-unsupported initialisation in headers + - KVM: nVMX: Clear reserved bits of #DB exit qualification + - scsi: megaraid_sas: fix a missing-check bug + - RDMA/core: Do not expose unsupported counters + - RDMA/cm: Respect returned status of cm_init_av_by_path + - IB/ipoib: Clear IPCB before icmp_send + - RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case + - RDMA/bnxt_re: Fix recursive lock warning in debug kernel + - usb: host: ohci-at91: fix request of irq for optional gpio + - PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic + - PCI: cadence: Use AXI region 0 to signal interrupts from EP + - usb: typec: tcpm: Report back negotiated PPS voltage and current + - tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated + - f2fs: clear PageError on the read path + - Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask + - VMCI: Resource wildcard match fixed + - PCI / ACPI: Enable wake automatically for power managed bridges + - xprtrdma: Reset credit grant properly after a disconnect + - irqchip/pdc: Setup all edge interrupts as rising edge at GIC + - usb: dwc2: fix call to vbus supply exit routine, call it unlocked + - usb: dwc2: fix a race with external vbus supply + - usb: gadget: udc: atmel: handle at91sam9rl PMC + - ext4: fix argument checking in EXT4_IOC_MOVE_EXT + - MD: fix invalid stored role for a disk + - PCI: cadence: Correct probe behaviour when failing to get PHY + - nvmem: check the return value of nvmem_add_cells() + - xhci: Avoid USB autosuspend when resuming USB2 ports. + - scsi: qla2xxx: Fix recursive mailbox timeout + - f2fs: fix to recover inode's crtime during POR + - f2fs: fix to recover inode's i_flags during POR + - PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice + - coresight: etb10: Fix handling of perf mode + - PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode + - crypto: caam - fix implicit casts in endianness helpers + - usb: chipidea: Prevent unbalanced IRQ disable + - Smack: ptrace capability use fixes + - driver/dma/ioat: Call del_timer_sync() without holding prep_lock + - ASoC: AMD: Fix capture unstable in beginning for some runs + - firmware: coreboot: Unmap ioregion after device population + - IB/ipoib: Use dev_port to expose network interface port numbers + - IB/mlx5: Allow transition of DCI QP to reset + - uio: ensure class is registered before devices + - scsi: lpfc: Correct soft lockup when running mds diagnostics + - scsi: lpfc: Correct race with abort on completion path + - f2fs: avoid sleeping under spin_lock + - f2fs: report error if quota off error during umount + - signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace + init + - f2fs: fix to flush all dirty inodes recovered in readonly fs + - mfd: menelaus: Fix possible race condition and leak + - dmaengine: dma-jz4780: Return error if not probed from DT + - IB/rxe: fix for duplicate request processing and ack psns + - ALSA: hda: Check the non-cached stream buffers more explicitly + - cpupower: Fix AMD Family 0x17 msr_pstate size + - Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" + - f2fs: fix missing up_read + - f2fs: fix to recover cold bit of inode block during POR + - f2fs: fix to account IO correctly + - OPP: Free OPP table properly on performance state irregularities + - ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings + - ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 + - xen-swiotlb: use actually allocated size on check physical continuous + - tpm: Restore functionality to xen vtpm driver. + - xen/blkfront: avoid NULL blkfront_info dereference on device removal + - xen/balloon: Support xend-based toolstack + - xen: fix race in xen_qlock_wait() + - xen: make xen_qlock_wait() nestable + - xen/pvh: increase early stack size + - xen/pvh: don't try to unplug emulated devices + - libertas: don't set URB_ZERO_PACKET on IN USB transfer + - usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten + - usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage + - usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" + - mt76: mt76x2: fix multi-interface beacon configuration + - iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() + - net/ipv4: defensive cipso option parsing + - dmaengine: ppc4xx: fix off-by-one build failure + - scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE + usage + - scsi: target: Fix target_wait_for_sess_cmds breakage with active signals + - libnvdimm: Hold reference on parent while scheduling async init + - libnvdimm, region: Fail badblocks listing for inactive regions + - libnvdimm, pmem: Fix badblocks population for 'raw' namespaces + - ASoC: intel: skylake: Add missing break in skl_tplg_get_token() + - ASoC: sta32x: set ->component pointer in private struct + - IB/mlx5: Fix MR cache initialization + - IB/rxe: Revise the ib_wr_opcode enum + - jbd2: fix use after free in jbd2_log_do_checkpoint() + - gfs2_meta: ->mount() can get NULL dev_name + - ext4: fix EXT4_IOC_SWAP_BOOT + - ext4: initialize retries variable in ext4_da_write_inline_data_begin() + - ext4: fix setattr project check in fssetxattr ioctl + - ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR + - ext4: fix use-after-free race in ext4_remount()'s error path + - selinux: fix mounting of cgroup2 under older policies + - HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 + - HID: hiddev: fix potential Spectre v1 + - EDAC, amd64: Add Family 17h, models 10h-2fh support + - EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting + - EDAC, skx_edac: Fix logical channel intermediate decoding + - ARM: dts: dra7: Fix up unaligned access setting for PCIe EP + - PCI/ASPM: Fix link_state teardown on device removal + - PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk + - signal/GenWQE: Fix sending of SIGKILL + - signal: Guard against negative signal numbers in copy_siginfo_from_user32 + - crypto: lrw - Fix out-of bounds access on counter overflow + - crypto: tcrypt - fix ghash-generic speed test + - crypto: aesni - don't use GFP_ATOMIC allocation if the request doesn't cross + a page in gcm + - crypto: morus/generic - fix for big endian systems + - crypto: aegis/generic - fix for big endian systems + - crypto: speck - remove Speck + - mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() + - userfaultfd: disable irqs when taking the waitqueue lock + - ima: fix showing large 'violations' or 'runtime_measurements_count' + - ima: open a new file instance if no read permissions + - hugetlbfs: dirty pages as they are added to pagecache + - mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly + - mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback + - KVM: arm/arm64: Ensure only THP is candidate for adjustment + - KVM: arm64: Fix caching of host MDCR_EL2 value + - kbuild: fix kernel/bounds.c 'W=1' warning + - iio: ad5064: Fix regulator handling + - iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() + - iio: adc: at91: fix acking DRDY irq on simple conversions + - iio: adc: at91: fix wrong channel number in triggered buffer mode + - w1: omap-hdq: fix missing bus unregister at removal + - smb3: allow stats which track session and share reconnects to be reset + - smb3: do not attempt cifs operation in smb3 query info error path + - smb3: on kerberos mount if server doesn't specify auth type use krb5 + - printk: Fix panic caused by passing log_buf_len to command line + - genirq: Fix race on spurious interrupt detection + - tpm: fix response size validation in tpm_get_random() + - NFC: nfcmrvl_uart: fix OF child-node lookup + - NFSv4.1: Fix the r/wsize checking + - nfs: Fix a missed page unlock after pg_doio() + - nfsd: correctly decrement odstate refcount in error path + - nfsd: Fix an Oops in free_session() + - lockd: fix access beyond unterminated strings in prints + - dm ioctl: harden copy_params()'s copy_from_user() from malicious users + - dm zoned: fix metadata block ref counting + - dm zoned: fix various dmz_get_mblock() issues + - media: ov7670: make "xclk" clock optional + - fsnotify: Fix busy inodes during unmount + - powerpc64/module elfv1: Set opd addresses after module relocation + - powerpc/msi: Fix compile error on mpc83xx + - powerpc/tm: Fix HFSCR bit for no suspend case + - powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 + - MIPS: OCTEON: fix out of bounds array access on CN68XX + - rtc: ds1307: fix ds1339 wakealarm support + - rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt' + - rtc: cmos: Remove the `use_acpi_alarm' module parameter for !ACPI + - power: supply: twl4030-charger: fix OF sibling-node lookup + - ocxl: Fix access to the AFU Descriptor Data + - iommu/arm-smmu: Ensure that page-table updates are visible before TLBI + - TC: Set DMA masks for devices + - net: bcmgenet: fix OF child-node lookup + - media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD + - Revert "media: dvbsky: use just one mutex for serializing device R/W ops" + - kgdboc: Passing ekgdboc to command line causes panic + - remoteproc: qcom: q6v5: Propagate EPROBE_DEFER + - media: cec: make cec_get_edid_spa_location() an inline function + - media: cec: integrate cec_validate_phys_addr() in cec-api.c + - xen: fix xen_qlock_wait() + - xen: remove size limit of privcmd-buf mapping interface + - xen-blkfront: fix kernel panic with negotiate_mq error path + - media: cec: add new tx/rx status bits to detect aborts/timeouts + - media: cec: fix the Signal Free Time calculation + - media: cec: forgot to cancel delayed work + - media: em28xx: use a default format if TRY_FMT fails + - media: tvp5150: avoid going past array on v4l2_querymenu() + - media: em28xx: fix input name for Terratec AV 350 + - media: em28xx: make v4l2-compliance happier by starting sequence on zero + - media: em28xx: fix handler for vidioc_s_input() + - media: adv7604: when the EDID is cleared, unconfigure CEC as well + - media: adv7842: when the EDID is cleared, unconfigure CEC as well + - drm/mediatek: fix OF sibling-node lookup + - media: media colorspaces*.rst: rename AdobeRGB to opRGB + - media: replace ADOBERGB by OPRGB + - media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC + - arm64: lse: remove -fcall-used-x0 flag + - rpmsg: smd: fix memory leak on channel create + - Cramfs: fix abad comparison when wrap-arounds occur + - ARM: dts: socfpga: Fix SDRAM node address for Arria10 + - arm64: dts: stratix10: Correct System Manager register size + - soc: qcom: rmtfs-mem: Validate that scm is available + - soc/tegra: pmc: Fix child-node lookup + - selftests/ftrace: Fix synthetic event test to delete event correctly + - selftests/powerpc: Fix ptrace tm failure + - tracing: Return -ENOENT if there is no target synthetic event + - btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled + - btrfs: Handle owner mismatch gracefully when walking up tree + - btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock + - btrfs: fix error handling in free_log_tree + - btrfs: fix error handling in btrfs_dev_replace_start + - btrfs: Enhance btrfs_trim_fs function to handle error better + - btrfs: Ensure btrfs_trim_fs can trim the whole filesystem + - btrfs: iterate all devices during trim, instead of fs_devices::alloc_list + - btrfs: don't attempt to trim devices that don't support it + - btrfs: keep trim from interfering with transaction commits + - btrfs: wait on caching when putting the bg cache + - Btrfs: don't clean dirty pages during buffered writes + - btrfs: release metadata before running delayed refs + - btrfs: protect space cache inode alloc with GFP_NOFS + - btrfs: reset max_extent_size on clear in a bitmap + - btrfs: make sure we create all new block groups + - Btrfs: fix warning when replaying log after fsync of a tmpfile + - Btrfs: fix wrong dentries after fsync of file that got its parent replaced + - btrfs: qgroup: Dirty all qgroups before rescan + - Btrfs: fix null pointer dereference on compressed write path error + - Btrfs: fix assertion on fsync of regular file when using no-holes feature + - Btrfs: fix deadlock when writing out free space caches + - btrfs: reset max_extent_size properly + - btrfs: set max_extent_size properly + - btrfs: don't use ctl->free_space for max_extent_size + - btrfs: only free reserved extent if we didn't insert it + - btrfs: fix insert_reserved error handling + - btrfs: don't run delayed_iputs in commit + - btrfs: move the dio_sem higher up the callchain + - Btrfs: fix use-after-free during inode eviction + - Btrfs: fix use-after-free when dumping free space + - net: sched: Remove TCA_OPTIONS from policy + - vt: fix broken display when running aptitude + - bpf: wait for running BPF programs when updating map-in-map + - vga_switcheroo: Fix missing gpu_bound call at audio client registration + - MD: fix invalid stored role for a disk - try2 + - Linux 4.19.2 + + * [FEAT] Guest-dedicated Crypto Adapters (LP: #1787405) + - KVM: s390: vsie: simulate VCPU SIE entry/exit + - KVM: s390: introduce and use KVM_REQ_VSIE_RESTART + - KVM: s390: refactor crypto initialization + - s390: vfio-ap: base implementation of VFIO AP device driver + - s390: vfio-ap: register matrix device with VFIO mdev framework + - s390: vfio-ap: sysfs interfaces to configure adapters + - s390: vfio-ap: sysfs interfaces to configure domains + - s390: vfio-ap: sysfs interfaces to configure control domains + - s390: vfio-ap: sysfs interface to view matrix mdev matrix + - KVM: s390: interface to clear CRYCB masks + - s390: vfio-ap: implement mediated device open callback + - s390: vfio-ap: implement VFIO_DEVICE_GET_INFO ioctl + - s390: vfio-ap: zeroize the AP queues + - s390: vfio-ap: implement VFIO_DEVICE_RESET ioctl + - KVM: s390: Clear Crypto Control Block when using vSIE + - KVM: s390: vsie: Do the CRYCB validation first + - KVM: s390: vsie: Make use of CRYCB FORMAT2 clear + - KVM: s390: vsie: Allow CRYCB FORMAT-2 + - KVM: s390: vsie: allow CRYCB FORMAT-1 + - KVM: s390: vsie: allow CRYCB FORMAT-0 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-1 + - KVM: s390: vsie: allow guest FORMAT-1 CRYCB on host FORMAT-2 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-2 + - KVM: s390: device attrs to enable/disable AP interpretation + - KVM: s390: CPU model support for AP virtualization + - s390: doc: detailed specifications for AP virtualization + - KVM: s390: fix locking for crypto setting error path + - KVM: s390: Tracing APCB changes + - s390: vfio-ap: setup APCB mask using KVM dedicated function + - [Config:] Enable CONFIG_S390_AP_IOMMU and set CONFIG_VFIO_AP to module. + + * Bypass of mount visibility through userns + mount propagation (LP: #1789161) + - mount: Retest MNT_LOCKED in do_umount + - mount: Don't allow copying MNT_UNBINDABLE|MNT_LOCKED mounts + + * CVE-2018-18955: nested user namespaces with more than five extents + incorrectly grant privileges over inode (LP: #1801924) // CVE-2018-18955 + - userns: also map extents in the reverse map to kernel IDs + + * kdump fail due to an IRQ storm (LP: #1797990) + - SAUCE: x86/PCI: Export find_cap() to be used in early PCI code + - SAUCE: x86/quirks: Add parameter to clear MSIs early on boot + - SAUCE: x86/quirks: Scan all busses for early PCI quirks + + * Disable LPM for Raydium Touchscreens (LP: #1802248) + - USB: quirks: Add no-lpm quirk for Raydium touchscreens + + * Power consumption during s2idle is higher than long idle(sk hynix) + (LP: #1801875) + - SAUCE: pci: prevent sk hynix nvme from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: v4.19.1 upstream stable release (LP: #1801739) + - bridge: do not add port to router list when receives query with source + 0.0.0.0 + - ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are + called + - net/mlx5e: fix csum adjustments caused by RXFCS + - net: sched: gred: pass the right attribute to gred_change_table_def() + - net: stmmac: Fix stmmac_mdio_reset() when building stmmac as modules + - net: udp: fix handling of CHECKSUM_COMPLETE packets + - Revert "net: simplify sock_poll_wait" + - rtnetlink: Disallow FDB configuration for non-Ethernet device + - vhost: Fix Spectre V1 vulnerability + - bonding: fix length of actor system + - openvswitch: Fix push/pop ethernet validation + - net/ipv6: Allow onlink routes to have a device mismatch if it is the default + route + - net/smc: fix smc_buf_unuse to use the lgr pointer + - mlxsw: spectrum_switchdev: Don't ignore deletions of learned MACs + - mlxsw: core: Fix devlink unregister flow + - net: drop skb on failure in ip_check_defrag() + - net: Properly unlink GRO packets on overflow. + - r8169: fix broken Wake-on-LAN from S5 (poweroff) + - Revert "be2net: remove desc field from be_eq_obj" + - sctp: check policy more carefully when getting pr status + - sparc64: Export __node_distance. + - sparc64: Make corrupted user stacks more debuggable. + - sparc64: Wire up compat getpeername and getsockname. + - net: bridge: remove ipv6 zero address check in mcast queries + - Linux 4.19.1 + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.11-1ubuntu1, zfs to 0.7.11-3ubuntu1 + - [Config] updateconfigs after 4.19.2 stable update + - [Config] Disable unneded options for s390 + - [Config] Update annotations for 4.19 + + -- Seth Forshee Thu, 15 Nov 2018 09:55:37 -0800 + +linux (4.19.0-4.5) disco; urgency=medium + + * Add checksum offload and TSO support for HiNIC adapters (LP: #1800664) + - net-next/hinic: add checksum offload and TSO support + + * [Bionic][Cosmic] Fix to ipmi to support vendor specific messages greater + than 255 bytes (LP: #1799794) + - ipmi:ssif: Add support for multi-part transmit messages > 2 parts + + * Packaging resync (LP: #1786013) + - [Package] add support for specifying the primary makefile + + * Update ENA driver to version 2.0.1K (LP: #1798182) + - net: ena: minor performance improvement + - net: ena: complete host info to match latest ENA spec + - net: ena: introduce Low Latency Queues data structures according to ENA spec + - net: ena: add functions for handling Low Latency Queues in ena_com + - net: ena: add functions for handling Low Latency Queues in ena_netdev + - net: ena: use CSUM_CHECKED device indication to report skb's checksum status + - net: ena: explicit casting and initialization, and clearer error handling + - net: ena: limit refill Rx threshold to 256 to avoid latency issues + - net: ena: change rx copybreak default to reduce kernel memory pressure + - net: ena: remove redundant parameter in ena_com_admin_init() + - net: ena: update driver version to 2.0.1 + - net: ena: fix indentations in ena_defs for better readability + - net: ena: Fix Kconfig dependency on X86 + - net: ena: enable Low Latency Queues + - net: ena: fix compilation error in xtensa architecture + + * [Bionic][Cosmic] ipmi: Fix timer race with module unload (LP: #1799281) + - ipmi: Fix timer race with module unload + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * not able to unwind the stack from within __kernel_clock_gettime in the Linux + vDSO (LP: #1797963) + - powerpc/vdso: Correct call frame information + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Don't print secure boot state + from the efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() not complain + about cert lists that aren't present." + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable + to be suppressed" + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI + Secure Boot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add EFI signature data types" + - Revert "UBUNTU: SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time + addition of keys to secondary keyring" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Copy secure_boot flag in boot params + across kexec reboot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down perf" + - Revert "UBUNTU: SAUCE: (efi-lockdown) bpf: Restrict kernel image access + functions when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down kprobes" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down /proc/kcore" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the + testmmiotrace module" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down module params that specify + hardware parameters (eg. ioport)" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down TIOCSSERIAL" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable APEI error injection if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable ACPI table override if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param + when the kernel has been locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) ACPI: Limit access to custom_method + when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86: Lock down IO port access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) PCI: Lock down BAR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) hibernate: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Enforce module signatures if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add the ability to lock down access to + the running kernel image" + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi/x86: Call efi_parse_options() from efi_main() + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - [Packaging] generate Vcs-Git url from changelog + - [Config] CONFIG_SCSI_MQ_DEFAULT=y + + -- Seth Forshee Fri, 02 Nov 2018 14:22:55 -0500 + +linux (4.19.0-3.4) cosmic; urgency=medium + + * Support Edge Gateway's Bluetooth LED (LP: #1798332) + - SAUCE: Bluetooth: Support for LED on Edge Gateways + + * Support Edge Gateway's WIFI LED (LP: #1798330) + - SAUCE: mwifiex: Switch WiFi LED state according to the device status + + [ Upstream Kernel Changes ] + + * Rebase to v4.19 + + -- Seth Forshee Mon, 22 Oct 2018 09:13:39 -0500 + +linux (4.19.0-2.3) cosmic; urgency=medium + + * fscache: bad refcounting in fscache_op_complete leads to OOPS (LP: #1797314) + - SAUCE: fscache: Fix race in decrementing refcount of op->npages + + * Provide mode where all vCPUs on a core must be the same VM (LP: #1792957) + - KVM: PPC: Book3S HV: Provide mode where all vCPUs on a core must be the same + VM + + * The front MIC can't work on the Lenovo M715 (LP: #1797292) + - ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 + + * arm64: snapdragon: WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1016 + gic_irq_domain_translate (LP: #1797143) + - SAUCE: arm64: dts: msm8916: camms: fix gic_irq_domain_translate warnings + + * Dell new AIO requires a new uart backlight driver (LP: #1727235) + - SAUCE: platform/x86: dell-uart-backlight: new backlight driver for DELL AIO + - updateconfigs for Dell UART backlight driver + + * Please make CONFIG_PWM_LPSS_PCI and CONFIG_PWM_LPSS_PLATFORM built in to + make brightness adjustment working on various BayTrail/CherryTrail-based + devices (LP: #1783964) + - [Config]: Make PWM_LPSS_* built-in + + * check and fix zkey required kernel modules locations in debs, udebs, and + initramfs (LP: #1794346) + - [Config] add s390 crypto modules to crypt-modules udeb + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_VBOXGUEST=n + - ubuntu: vbox -- update to 5.2.18-dfsg-2 + - ubuntu: enable vbox build + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc8 + + -- Seth Forshee Mon, 15 Oct 2018 10:52:04 -0500 + +linux (4.19.0-1.2) cosmic; urgency=medium + + * Page leaking in cachefiles_read_backing_file while vmscan is active + (LP: #1793430) + - SAUCE: cachefiles: Page leaking in cachefiles_read_backing_file while vmscan + is active + + * SRU: Enable middle button of touchpad on ThinkPad P72 (LP: #1793463) + - Input: elantech - enable middle button of touchpad on ThinkPad P72 + + * Improvements to the kernel source package preparation (LP: #1793461) + - [Packaging] startnewrelease: add support for backport kernels + + * Fix unusable NVIDIA GPU after S3 (LP: #1793338) + - SAUCE: PCI: Reprogram bridge prefetch registers on resume + + * Error reported when creating ZFS pool with "-t" option, despite successful + pool creation (LP: #1769937) + - SAUCE: (noup) Update zfs to 0.7.9-3ubuntu6 + + * device hotplug of vfio devices can lead to deadlock in vfio_pci_release + (LP: #1792099) + - SAUCE: vfio -- release device lock before userspace requests + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline -- fix temporary filenaming + - CONFIG_BCH_CONST_PARAMS=n + - Packaging: final-checks: remove trailing backport suffix + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc5 + + -- Seth Forshee Tue, 25 Sep 2018 16:32:24 -0500 + +linux (4.19.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: Import aufs driver + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc3 + + -- Seth Forshee Thu, 13 Sep 2018 07:54:47 -0500 + +linux (4.19.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 13 Sep 2018 06:44:09 -0500 + +linux (4.18.0-8.9) cosmic; urgency=medium + + * linux: 4.18.0-8.9 -proposed tracker (LP: #1791663) + + * Cosmic update to v4.18.7 stable release (LP: #1791660) + - rcu: Make expedited GPs handle CPU 0 being offline + - net: 6lowpan: fix reserved space for single frames + - net: mac802154: tx: expand tailroom if necessary + - 9p/net: Fix zero-copy path in the 9p virtio transport + - spi: davinci: fix a NULL pointer dereference + - spi: pxa2xx: Add support for Intel Ice Lake + - spi: spi-fsl-dspi: Fix imprecise abort on VF500 during probe + - spi: cadence: Change usleep_range() to udelay(), for atomic context + - mmc: block: Fix unsupported parallel dispatch of requests + - mmc: renesas_sdhi_internal_dmac: mask DMAC interrupts + - mmc: renesas_sdhi_internal_dmac: fix #define RST_RESERVED_BITS + - readahead: stricter check for bdi io_pages + - block: fix infinite loop if the device loses discard capability + - block: blk_init_allocated_queue() set q->fq as NULL in the fail case + - block: really disable runtime-pm for blk-mq + - blkcg: Introduce blkg_root_lookup() + - block: Introduce blk_exit_queue() + - block: Ensure that a request queue is dissociated from the cgroup controller + - apparmor: fix bad debug check in apparmor_secid_to_secctx() + - dma-buf: Move BUG_ON from _add_shared_fence to _add_shared_inplace + - libertas: fix suspend and resume for SDIO connected cards + - media: Revert "[media] tvp5150: fix pad format frame height" + - mailbox: xgene-slimpro: Fix potential NULL pointer dereference + - Replace magic for trusting the secondary keyring with #define + - Fix kexec forbidding kernels signed with keys in the secondary keyring to + boot + - powerpc/fadump: handle crash memory ranges array index overflow + - powerpc/64s: Fix page table fragment refcount race vs speculative references + - powerpc/pseries: Fix endianness while restoring of r3 in MCE handler. + - powerpc/pkeys: Give all threads control of their key permissions + - powerpc/pkeys: Deny read/write/execute by default + - powerpc/pkeys: key allocation/deallocation must not change pkey registers + - powerpc/pkeys: Save the pkey registers before fork + - powerpc/pkeys: Fix calculation of total pkeys. + - powerpc/pkeys: Preallocate execute-only key + - powerpc/nohash: fix pte_access_permitted() + - powerpc64/ftrace: Include ftrace.h needed for enable/disable calls + - powerpc/powernv/pci: Work around races in PCI bridge enabling + - cxl: Fix wrong comparison in cxl_adapter_context_get() + - IB/mlx5: Honor cnt_set_id_valid flag instead of set_id + - IB/mlx5: Fix leaking stack memory to userspace + - IB/srpt: Fix srpt_cm_req_recv() error path (1/2) + - IB/srpt: Fix srpt_cm_req_recv() error path (2/2) + - IB/srpt: Support HCAs with more than two ports + - overflow.h: Add arithmetic shift helper + - RDMA/mlx5: Fix shift overflow in mlx5_ib_create_wq + - ib_srpt: Fix a use-after-free in srpt_close_ch() + - ib_srpt: Fix a use-after-free in __srpt_close_all_ch() + - RDMA/rxe: Set wqe->status correctly if an unexpected response is received + - 9p: fix multiple NULL-pointer-dereferences + - fs/9p/xattr.c: catch the error of p9_client_clunk when setting xattr failed + - 9p/virtio: fix off-by-one error in sg list bounds check + - net/9p/client.c: version pointer uninitialized + - net/9p/trans_fd.c: fix race-condition by flushing workqueue before the + kfree() + - dm integrity: change 'suspending' variable from bool to int + - dm thin: stop no_space_timeout worker when switching to write-mode + - dm cache metadata: save in-core policy_hint_size to on-disk superblock + - dm cache metadata: set dirty on all cache blocks after a crash + - dm crypt: don't decrease device limits + - dm writecache: fix a crash due to reading past end of dirty_bitmap + - uart: fix race between uart_put_char() and uart_shutdown() + - Drivers: hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() + - Drivers: hv: vmbus: Reset the channel callback in vmbus_onoffer_rescind() + - iio: sca3000: Fix missing return in switch + - iio: ad9523: Fix displayed phase + - iio: ad9523: Fix return value for ad952x_store() + - extcon: Release locking when sending the notification of connector state + - eventpoll.h: wrap casts in () properly + - vmw_balloon: fix inflation of 64-bit GFNs + - vmw_balloon: do not use 2MB without batching + - vmw_balloon: VMCI_DOORBELL_SET does not check status + - vmw_balloon: fix VMCI use when balloon built into kernel + - rtc: omap: fix resource leak in registration error path + - rtc: omap: fix potential crash on power off + - tracing: Do not call start/stop() functions when tracing_on does not change + - tracing/blktrace: Fix to allow setting same value + - printk/tracing: Do not trace printk_nmi_enter() + - livepatch: Validate module/old func name length + - uprobes: Use synchronize_rcu() not synchronize_sched() + - mfd: hi655x: Fix regmap area declared size for hi655x + - ovl: fix wrong use of impure dir cache in ovl_iterate() + - ACPICA: AML Parser: skip opcodes that open a scope upon parse failure + - ACPICA: Clear status of all events when entering sleep states + - drivers/block/zram/zram_drv.c: fix bug storing backing_dev + - sched: idle: Avoid retaining the tick when it has been stopped + - cpuidle: menu: Handle stopped tick more aggressively + - cpufreq: governor: Avoid accessing invalid governor_data + - PM / sleep: wakeup: Fix build error caused by missing SRCU support + - ALSA: ac97: fix device initialization in the compat layer + - ALSA: ac97: fix check of pm_runtime_get_sync failure + - ALSA: ac97: fix unbalanced pm_runtime_enable + - i2c: designware: Re-init controllers with pm_disabled set on resume + - KVM: VMX: fixes for vmentry_l1d_flush module parameter + - KVM: PPC: Book3S: Fix guest DMA when guest partially backed by THP pages + - xtensa: limit offsets in __loop_cache_{all,page} + - xtensa: increase ranges in ___invalidate_{i,d}cache_all + - block, bfq: return nbytes and not zero from struct cftype .write() method + - pnfs/blocklayout: off by one in bl_map_stripe() + - nfsd: fix leaked file lock with nfs exported overlayfs + - NFSv4 client live hangs after live data migration recovery + - NFSv4: Fix locking in pnfs_generic_recover_commit_reqs + - NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() + - ARM: tegra: Fix Tegra30 Cardhu PCA954x reset + - ARM: dts: am57xx-idk: Enable dual role for USB2 port + - pwm: omap-dmtimer: Return -EPROBE_DEFER if no dmtimer platform data + - mm/tlb: Remove tlb_remove_table() non-concurrent condition + - iommu/ipmmu-vmsa: Don't register as BUS IOMMU if machine doesn't have IPMMU- + VMSA + - iommu/vt-d: Add definitions for PFSID + - iommu/vt-d: Fix dev iotlb pfsid use + - sys: don't hold uts_sem while accessing userspace memory + - userns: move user access out of the mutex + - ubifs: Fix memory leak in lprobs self-check + - Revert "UBIFS: Fix potential integer overflow in allocation" + - ubifs: Check data node size before truncate + - ubifs: xattr: Don't operate on deleted inodes + - ubifs: Fix directory size calculation for symlinks + - ubifs: Fix synced_i_size calculation for xattr inodes + - pwm: tiehrpwm: Don't use emulation mode bits to control PWM output + - pwm: tiehrpwm: Fix disabling of output of PWMs + - fb: fix lost console when the user unplugs a USB adapter + - udlfb: fix semaphore value leak + - udlfb: fix display corruption of the last line + - udlfb: don't switch if we are switching to the same videomode + - udlfb: set optimal write delay + - udlfb: make a local copy of fb_ops + - udlfb: handle allocation failure + - udlfb: set line_length in dlfb_ops_set_par + - getxattr: use correct xattr length + - libnvdimm: Use max contiguous area for namespace size + - libnvdimm: fix ars_status output length calculation + - bcache: release dc->writeback_lock properly in bch_writeback_thread() + - kconfig: fix "Can't open ..." in parallel build + - perf auxtrace: Fix queue resize + - crypto: vmx - Fix sleep-in-atomic bugs + - crypto: aesni - Use unaligned loads from gcm_context_data + - crypto: arm64/sm4-ce - check for the right CPU feature bit + - crypto: caam - fix DMA mapping direction for RSA forms 2 & 3 + - crypto: caam/jr - fix descriptor DMA unmapping + - crypto: caam/qi - fix error path in xts setkey + - fs/quota: Fix spectre gadget in do_quotactl + - udf: Fix mounting of Win7 created UDF filesystems + - cpuidle: menu: Retain tick when shallow state is selected + - arm64: mm: always enable CONFIG_HOLES_IN_ZONE + - Linux 4.18.7 + + * CVE-2017-5715 + - s390: detect etoken facility + - KVM: s390: add etoken support for guests + + * Missing Intel GPU pci-id's (LP: #1789924) + - drm/i915/whl: Introducing Whiskey Lake platform + - drm/i915/aml: Introducing Amber Lake platform + - drm/i915/cfl: Add a new CFL PCI ID. + + * [18.10 FEAT] Add kernel config options for SMC-R/D (LP: #1789934) + - s390/ism: add device driver for internal shared memory + - CONFIG_ISM=y for s390 + + * Cosmic update to v4.18.6 stable release (LP: #1791105) + - PATCH scripts/kernel-doc + - scripts/kernel-doc: Escape all literal braces in regexes + - scsi: libsas: dynamically allocate and free ata host + - xprtrdma: Fix disconnect regression + - mei: don't update offset in write + - cifs: add missing support for ACLs in SMB 3.11 + - CIFS: fix uninitialized ptr deref in smb2 signing + - cifs: add missing debug entries for kconfig options + - cifs: use a refcount to protect open/closing the cached file handle + - cifs: check kmalloc before use + - smb3: enumerating snapshots was leaving part of the data off end + - smb3: Do not send SMB3 SET_INFO if nothing changed + - smb3: don't request leases in symlink creation and query + - smb3: fill in statfs fsid and correct namelen + - btrfs: use correct compare function of dirty_metadata_bytes + - btrfs: don't leak ret from do_chunk_alloc + - Btrfs: fix mount failure after fsync due to hard link recreation + - Btrfs: fix btrfs_write_inode vs delayed iput deadlock + - Btrfs: fix send failure when root has deleted files still open + - Btrfs: send, fix incorrect file layout after hole punching beyond eof + - hwmon: (k10temp) 27C Offset needed for Threadripper2 + - bpf, arm32: fix stack var offset in jit + - regulator: arizona-ldo1: Use correct device to get enable GPIO + - iommu/arm-smmu: Error out only if not enough context interrupts + - printk: Split the code for storing a message into the log buffer + - printk: Create helper function to queue deferred console handling + - printk/nmi: Prevent deadlock when accessing the main log buffer in NMI + - kprobes/arm64: Fix %p uses in error messages + - arm64: Fix mismatched cache line size detection + - arm64: Handle mismatched cache type + - arm64: mm: check for upper PAGE_SHIFT bits in pfn_valid() + - arm64: dts: rockchip: corrected uart1 clock-names for rk3328 + - KVM: arm/arm64: Fix potential loss of ptimer interrupts + - KVM: arm/arm64: Fix lost IRQs from emulated physcial timer when blocked + - KVM: arm/arm64: Skip updating PMD entry if no change + - KVM: arm/arm64: Skip updating PTE entry if no change + - s390/kvm: fix deadlock when killed by oom + - perf kvm: Fix subcommands on s390 + - stop_machine: Reflow cpu_stop_queue_two_works() + - stop_machine: Atomically queue and wake stopper threads + - ext4: check for NUL characters in extended attribute's name + - ext4: use ext4_warning() for sb_getblk failure + - ext4: sysfs: print ext4_super_block fields as little-endian + - ext4: reset error code in ext4_find_entry in fallback + - ext4: fix race when setting the bitmap corrupted flag + - x86/gpu: reserve ICL's graphics stolen memory + - platform/x86: wmi: Do not mix pages and kmalloc + - platform/x86: ideapad-laptop: Apply no_hw_rfkill to Y20-15IKBM, too + - mm: move tlb_table_flush to tlb_flush_mmu_free + - mm/tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE + - x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit + - x86/speculation/l1tf: Fix off-by-one error when warning that system has too + much RAM + - x86/speculation/l1tf: Suggest what to do on systems with too much RAM + - x86/vdso: Fix vDSO build if a retpoline is emitted + - x86/process: Re-export start_thread() + - KVM: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd + - KVM: x86: SVM: Call x86_spec_ctrl_set_guest/host() with interrupts disabled + - fuse: Don't access pipe->buffers without pipe_lock() + - fuse: fix initial parallel dirops + - fuse: fix double request_end() + - fuse: fix unlocked access to processing queue + - fuse: umount should wait for all requests + - fuse: Fix oops at process_init_reply() + - fuse: Add missed unlock_page() to fuse_readpages_fill() + - lib/vsprintf: Do not handle %pO[^F] as %px + - udl-kms: change down_interruptible to down + - udl-kms: handle allocation failure + - udl-kms: fix crash due to uninitialized memory + - udl-kms: avoid division + - b43legacy/leds: Ensure NUL-termination of LED name string + - b43/leds: Ensure NUL-termination of LED name string + - ASoC: dpcm: don't merge format from invalid codec dai + - ASoC: zte: Fix incorrect PCM format bit usages + - ASoC: sirf: Fix potential NULL pointer dereference + - ASoC: wm_adsp: Correct DSP pointer for preloader control + - soc: qcom: rmtfs-mem: fix memleak in probe error paths + - pinctrl: freescale: off by one in imx1_pinconf_group_dbg_show() + - scsi: qla2xxx: Fix stalled relogin + - x86/vdso: Fix lsl operand order + - x86/nmi: Fix NMI uaccess race against CR3 switching + - x86/irqflags: Mark native_restore_fl extern inline + - x86/spectre: Add missing family 6 check to microcode check + - x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ + - hwmon: (nct6775) Fix potential Spectre v1 + - x86/entry/64: Wipe KASAN stack shadow before rewind_stack_do_exit() + - x86: Allow generating user-space headers without a compiler + - s390/mm: fix addressing exception after suspend/resume + - s390/lib: use expoline for all bcr instructions + - s390: fix br_r1_trampoline for machines without exrl + - s390/qdio: reset old sbal_state flags + - s390/numa: move initial setup of node_to_cpumask_map + - s390/purgatory: Fix crash with expoline enabled + - s390/purgatory: Add missing FORCE to Makefile targets + - kprobes: Show blacklist addresses as same as kallsyms does + - kprobes: Replace %p with other pointer types + - kprobes/arm: Fix %p uses in error messages + - kprobes: Make list and blacklist root user read only + - MIPS: Correct the 64-bit DSP accumulator register size + - MIPS: memset.S: Fix byte_fixup for MIPSr6 + - MIPS: Always use -march=, not - shortcuts + - MIPS: Change definition of cpu_relax() for Loongson-3 + - MIPS: lib: Provide MIPS64r6 __multi3() for GCC < 7 + - tpm: Return the actual size when receiving an unsupported command + - tpm: separate cmd_ready/go_idle from runtime_pm + - scsi: mpt3sas: Fix calltrace observed while running IO & reset + - scsi: mpt3sas: Fix _transport_smp_handler() error path + - scsi: sysfs: Introduce sysfs_{un,}break_active_protection() + - scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock + - iscsi target: fix session creation failure handling + - mtd: rawnand: hynix: Use ->exec_op() in hynix_nand_reg_write_op() + - mtd: rawnand: fsmc: Stop using chip->read_buf() + - mtd: rawnand: marvell: add suspend and resume hooks + - mtd: rawnand: qcom: wait for desc completion in all BAM channels + - clk: rockchip: fix clk_i2sout parent selection bits on rk3399 + - clk: npcm7xx: fix memory allocation + - PM / clk: signedness bug in of_pm_clk_add_clks() + - power: generic-adc-battery: fix out-of-bounds write when copying channel + properties + - power: generic-adc-battery: check for duplicate properties copied from iio + channels + - watchdog: Mark watchdog touch functions as notrace + - cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status + - x86/dumpstack: Don't dump kernel memory based on usermode RIP + - Linux 4.18.6 + - updateconfigs after v4.18.6 stable update + + * random oopses on s390 systems using NVMe devices (LP: #1790480) + - s390/pci: fix out of bounds access during irq setup + + * [18.10 FEAT] zcrypt DD: introduce APQN tags to support deterministic driver + binding (LP: #1784331) + - s390/zcrypt: code beautify + - s390/zcrypt: AP bus support for alternate driver(s) + - s390/zcrypt: hex string mask improvements for apmask and aqmask. + + * performance drop with ATS enabled (LP: #1788097) + - powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage + + * Fix MCE handling for user access of poisoned device-dax mapping + (LP: #1774366) + - device-dax: Convert to vmf_insert_mixed and vm_fault_t + - device-dax: Enable page_mapping() + - device-dax: Set page->index + - filesystem-dax: Set page->index + - mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages + - mm, dev_pagemap: Do not clear ->mapping on final put + - mm, madvise_inject_error: Let memory_failure() optionally take a page + reference + - mm, memory_failure: Collect mapping size in collect_procs() + - filesystem-dax: Introduce dax_lock_mapping_entry() + - mm, memory_failure: Teach memory_failure() about dev_pagemap pages + - x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses + - x86/memory_failure: Introduce {set, clear}_mce_nospec() + - libnvdimm, pmem: Restore page attributes when clearing errors + + * Reconcile hns3 SAUCE patches with upstream (LP: #1787477) + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix comments for + hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for using wrong mask and + shift in hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for reset_level default + assignment probelm" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unnecessary ring + configuration operation while resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet" + - Revert "UBUNTU: SAUCE: net: hns3: Fix for phy link issue when using marvell + phy driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: separate roce from nic when + resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: correct reset event status + register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent to request reset + frequently" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: reset net device with rtnl_lock" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify the order of initializeing + command queue register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent sending command during + global or core reset" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Use roce handle when calling roce + callback function" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the warning when clear + reset cause" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix get_vector ops in + hclgevf_main module" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix warning bug when doing lp + selftest" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add configure for mac minimal + frame size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mailbox message truncated + problem" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for l4 checksum offload bug" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for waterline not setting + correctly" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mac pause not disable in + pfc mode" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix tc setup when netdev is first + up" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add calling roce callback + function when link status change" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: optimize the process of notifying + roce client" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused struct member and + definition" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix mislead parameter name" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify inconsistent bit mask + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use decimal for bit offset + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix unreasonable code comments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove extra space and brackets" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: standardize the handle of return + value" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify hnae_ to hnae3_" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead + of kzalloc/dma_map_single" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: give default option while + dependency HNS3 set" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some unused members of + some structures" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove a redundant + hclge_cmd_csq_done" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: using modulo for cyclic counters + in hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove useless code in + hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused + hclge_ring_to_dma_dir" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use lower_32_bits and + upper_32_bits" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove back in struct hclge_hw" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add unlikely for error check" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the Redundant put_vector + in hns3_client_uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: print the ret value in error + information" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: extraction an interface for state + state init|uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused head file in + hnae3.c" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add l4_type check for both ipv4 + and ipv6" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add vector status check before + free vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: rename the interface for + init_client_instance and uninit_client_instance" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove hclge_get_vector_index + from hclge_bind_ring_with_vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: RX BD information valid only in + last BD except VLD bit and buffer size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add support for serdes loopback + selftest" + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: remove hclge_get_vector_index from hclge_bind_ring_with_vector + - net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - net: hns3: add vector status check before free vector + - net: hns3: add l4_type check for both ipv4 and ipv6 + - net: hns3: add unlikely for error check + - net: hns3: remove unused head file in hnae3.c + - net: hns3: extraction an interface for state init|uninit + - net: hns3: print the ret value in error information + - net: hns3: remove the Redundant put_vector in hns3_client_uninit + - net: hns3: remove back in struct hclge_hw + - net: hns3: use lower_32_bits and upper_32_bits + - net: hns3: remove unused hclge_ring_to_dma_dir + - net: hns3: remove useless code in hclge_cmd_send + - net: hns3: remove some redundant assignments + - net: hns3: simplify hclge_cmd_csq_clean + - net: hns3: remove a redundant hclge_cmd_csq_done + - net: hns3: remove some unused members of some structures + - net: hns3: give default option while dependency HNS3 set + - net: hns3: use dma_zalloc_coherent instead of kzalloc/dma_map_single + - net: hns3: modify hnae_ to hnae3_ + - net: hns3: Fix tc setup when netdev is first up + - net: hns3: Fix for mac pause not disable in pfc mode + - net: hns3: Fix for waterline not setting correctly + - net: hns3: Fix for l4 checksum offload bug + - net: hns3: Fix for mailbox message truncated problem + - net: hns3: Add configure for mac minimal frame size + - net: hns3: Fix warning bug when doing lp selftest + - net: hns3: Fix get_vector ops in hclgevf_main module + - net: hns3: Remove the warning when clear reset cause + - net: hns3: Prevent sending command during global or core reset + - net: hns3: Modify the order of initializing command queue register + - net: hns3: Reset net device with rtnl_lock + - net: hns3: Prevent to request reset frequently + - net: hns3: Correct reset event status register + - net: hns3: Fix return value error in hns3_reset_notify_down_enet + - net: hns3: remove unnecessary ring configuration operation while resetting + - net: hns3: Fix for reset_level default assignment probelm + - net: hns3: Fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - net: hns3: Fix comments for hclge_get_ring_chain_from_mbx + - net: hns3: Remove some redundant assignments + - net: hns3: Standardize the handle of return value + - net: hns3: Remove extra space and brackets + - net: hns3: Correct unreasonable code comments + - net: hns3: Use decimal for bit offset macros + - net: hns3: Modify inconsistent bit mask macros + - net: hns3: Fix misleading parameter name + - net: hns3: Remove unused struct member and definition + - net: hns3: Add SPDX tags to HNS3 PF driver + - net: hns3: Add support for serdes loopback selftest + - net: hns3: Fix for phy link issue when using marvell phy driver + + * [Regression] kernel crashdump fails on arm64 (LP: #1786878) + - arm64: export memblock_reserve()d regions via /proc/iomem + - drivers: acpi: add dependency of EFI for arm64 + - efi/arm: preserve early mapping of UEFI memory map longer for BGRT + - efi/arm: map UEFI memory map even w/o runtime services enabled + - arm64: acpi: fix alignment fault in accessing ACPI + - [Config] CONFIG_ARCH_SUPPORTS_ACPI=y + - arm64: fix ACPI dependencies + - ACPI: fix menuconfig presentation of ACPI submenu + + * TB 16 issue on Dell Lattitude 7490 with large amount of data (LP: #1785780) + - r8152: disable RX aggregation on new Dell TB16 dock + + * Support Power Management for Thunderbolt Controller (LP: #1789358) + - thunderbolt: Use 64-bit DMA mask if supported by the platform + - thunderbolt: Do not unnecessarily call ICM get route + - thunderbolt: No need to take tb->lock in domain suspend/complete + - thunderbolt: Use correct ICM commands in system suspend + - thunderbolt: Add support for runtime PM + + * Enable AMD PCIe MP2 for AMDI0011 (LP: #1773940) + - SAUCE: i2c:amd I2C Driver based on PCI Interface for upcoming platform + - SAUCE: i2c:amd move out pointer in union i2c_event_base + - SAUCE: i2c:amd Depends on ACPI + - [Config] i2c: CONFIG_I2C_AMD_MP2=y on x86 + + * Microphone cannot be detected with front panel audio combo jack on HP Z8-G4 + machine (LP: #1789145) + - ALSA: hda/realtek - Fix HP Headset Mic can't record + + * Please enable CONFIG_PAGE_POISONING (LP: #1783651) + - [Config] Enable CONFIG_PAGE_POISONING configs + + * Tango platform uses __initcall without further checks (LP: #1787945) + - [Config] disable ARCH_TANGO + + * [18.10 FEAT] SMC-Direct (LP: #1786902) + - net/smc: determine port attributes independent from pnet table + - net/smc: add pnetid support + - net/smc: add base infrastructure for SMC-D and ISM + - net/smc: add pnetid support for SMC-D and ISM + - net/smc: add SMC-D support in CLC messages + - net/smc: add SMC-D support in data transfer + - net/smc: add SMC-D support in af_smc + - net/smc: add SMC-D diag support + - net/smc: provide smc mode in smc_diag.c + - net/smc: eliminate cursor read and write calls + - net/smc: add function to get link group from link + - net/smc: use DECLARE_BITMAP for rtokens_used_mask + - net/smc: remove local variable page in smc_rx_splice() + - net/smc: Remove a WARN_ON() statement + - net/smc: Simplify ib_post_(send|recv|srq_recv)() calls + - net/smc: fewer parameters for smc_llc_send_confirm_link() + - net/smc: use correct vlan gid of RoCE device + - net/smc: provide fallback reason code + - net/smc: improve delete link processing + - net: simplify sock_poll_wait + - net/smc: send response to test link signal + + * Miscellaneous Ubuntu changes + - [Config] update annotations for CONFIG_CRYPTO_SPECK_NEON + - [Config] fix up annotatios for CONFIG_CRYPTO_SPECK + + -- Seth Forshee Mon, 10 Sep 2018 07:08:38 -0500 + +linux (4.18.0-7.8) cosmic; urgency=medium + + * linux: 4.18.0-7.8 -proposed tracker (LP: #1789459) + + * pmtu.sh fails on 4.18 kernel (LP: #1789436) + - SAUCE: Revert "vti6: fix PMTU caching and reporting on xmit" + + -- Seth Forshee Tue, 28 Aug 2018 11:08:51 -0500 + +linux (4.18.0-6.7) cosmic; urgency=medium + + * linux: 4.18.0-6.7 -proposed tracker (LP: #1788881) + + * systemd 237-3ubuntu10 ADT test failure with linux 4.18.0-5.6 (LP: #1787440) + - Config: Disable BPF_JIT_ALWAYS_ON on i386 + + * execveat03 in ubuntu_ltp_syscalls failed on X/B (LP: #1786729) + - cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias() + + * Cosmic update to v4.18.5 stable release (LP: #1788874) + - EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] + - pty: fix O_CLOEXEC for TIOCGPTPEER + - mm: Allow non-direct-map arguments to free_reserved_area() + - x86/mm/init: Pass unconverted symbol addresses to free_init_pages() + - x86/mm/init: Add helper for freeing kernel image pages + - x86/mm/init: Remove freed kernel image areas from alias mapping + - powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 + - ext4: fix spectre gadget in ext4_mb_regular_allocator() + - drm/i915/kvmgt: Fix potential Spectre v1 + - drm/amdgpu/pm: Fix potential Spectre v1 + - parisc: Remove unnecessary barriers from spinlock.h + - parisc: Remove ordered stores from syscall.S + - PCI: Restore resized BAR state on resume + - PCI / ACPI / PM: Resume all bridges on suspend-to-RAM + - PCI: hotplug: Don't leak pci_slot on registration failure + - PCI: aardvark: Size bridges before resources allocation + - PCI: Skip MPS logic for Virtual Functions (VFs) + - PCI: pciehp: Fix use-after-free on unplug + - PCI: pciehp: Fix unprotected list iteration in IRQ handler + - i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes + - i2c: imx: Fix race condition in dma read + - reiserfs: fix broken xattr handling (heap corruption, bad retval) + - Linux 4.18.5 + + * [18.10 FEAT] Add kernel config option "CONFIG_SCLP_OFB" (LP: #1787898) + - [Config] CONFIG_SCLP_OFB=y for s390x + + * errors when scanning partition table of corrupted AIX disk (LP: #1787281) + - partitions/aix: fix usage of uninitialized lv_info and lvname structures + - partitions/aix: append null character to print data from disk + + * Apply NVMe bugfix from Google that bjf asked for (LP: #1787635) + - nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event + + * ThinkPad systems have no HDMI sound when using the nvidia GPU (LP: #1787058) + - ACPI / OSI: Add OEM _OSI string to enable NVidia HDMI audio + + * Cosmic update to v4.18.4 stable release (LP: #1788454) + - l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache + - net_sched: fix NULL pointer dereference when delete tcindex filter + - net_sched: Fix missing res info when create new tc_index filter + - r8169: don't use MSI-X on RTL8168g + - ALSA: hda - Sleep for 10ms after entering D3 on Conexant codecs + - ALSA: hda - Turn CX8200 into D3 as well upon reboot + - ALSA: vx222: Fix invalid endian conversions + - ALSA: virmidi: Fix too long output trigger loop + - ALSA: cs5535audio: Fix invalid endian conversion + - ALSA: dice: fix wrong copy to rx parameters for Alesis iO26 + - ALSA: hda: Correct Asrock B85M-ITX power_save blacklist entry + - ALSA: memalloc: Don't exceed over the requested size + - ALSA: vxpocket: Fix invalid endian conversions + - ALSA: seq: Fix poll() error return + - media: gl861: fix probe of dvb_usb_gl861 + - USB: serial: sierra: fix potential deadlock at close + - USB: serial: pl2303: add a new device id for ATEN + - USB: option: add support for DW5821e + - ACPI / PM: save NVS memory for ASUS 1025C laptop + - tty: serial: 8250: Revert NXP SC16C2552 workaround + - serial: 8250_exar: Read INT0 from slave device, too + - serial: 8250_dw: always set baud rate in dw8250_set_termios + - serial: 8250_dw: Add ACPI support for uart on Broadcom SoC + - uio: fix wrong return value from uio_mmap() + - misc: sram: fix resource leaks in probe error path + - Revert "uio: use request_threaded_irq instead" + - Bluetooth: avoid killing an already killed socket + - isdn: Disable IIOCDBGVAR + - net: sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() + - hv/netvsc: Fix NULL dereference at single queue mode fallback + - r8169: don't use MSI-X on RTL8106e + - ip_vti: fix a null pointer deferrence when create vti fallback tunnel + - net: ethernet: mvneta: Fix napi structure mixup on armada 3700 + - net: mvneta: fix mvneta_config_rss on armada 3700 + - cls_matchall: fix tcf_unbind_filter missing + - Linux 4.18.4 + + * Cosmic update to v4.18.3 stable release (LP: #1788453) + - x86/speculation/l1tf: Exempt zeroed PTEs from inversion + - Linux 4.18.3 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) + - x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled + - x86: i8259: Add missing include file + - x86/hyper-v: Check for VP_INVAL in hyperv_flush_tlb_others() + - x86/platform/UV: Mark memblock related init code and data correctly + - x86/mm/pti: Clear Global bit more aggressively + - xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits + - x86/mm: Disable ioremap free page handling on x86-PAE + - kbuild: verify that $DEPMOD is installed + - crypto: ccree - fix finup + - crypto: ccree - fix iv handling + - crypto: ccp - Check for NULL PSP pointer at module unload + - crypto: ccp - Fix command completion detection race + - crypto: x86/sha256-mb - fix digest copy in sha256_mb_mgr_get_comp_job_avx2() + - crypto: vmac - require a block cipher with 128-bit block size + - crypto: vmac - separate tfm and request context + - crypto: blkcipher - fix crash flushing dcache in error path + - crypto: ablkcipher - fix crash flushing dcache in error path + - crypto: skcipher - fix aligning block size in skcipher_copy_iv() + - crypto: skcipher - fix crash flushing dcache in error path + - ioremap: Update pgtable free interfaces with addr + - x86/mm: Add TLB purge to free pmd/pte page interfaces + - Linux 4.18.2 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) // CVE-2018-9363 + - Bluetooth: hidp: buffer overflow in hidp_process_report + + * linux-cloud-tools-common: Ensure hv-kvp-daemon.service starts before + walinuxagent.service (LP: #1739107) + - [Debian] hyper-v -- Ensure that hv-kvp-daemon.service starts before + walinuxagent.service + + * Miscellaneous Ubuntu changes + - SAUCE: ipvs: remove nbsp characters from Kconfig + - [Config] CONFIG_MPROFILE_KERNEL=y for ppc64el + - [Config] CONFIG_DRM_RCAR_LVDS=m for snapdragon + - [Config] CONFIG_MDIO_MSCC_MIIM=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROSEMI=n, CONFIG_NET_VENDOR_NI=n for s390x + - [Config] update annotations following config review + - [Debian] set CROSS_COMPILE when generating kernel configs + - [Config] Disable the Speck cipher + + -- Seth Forshee Fri, 24 Aug 2018 14:18:15 -0500 + +linux (4.18.0-5.6) cosmic; urgency=medium + + * Cosmic update to v4.18.1 stable release (LP: #1787264) + - x86/paravirt: Fix spectre-v2 mitigations for paravirt guests + - x86/speculation: Protect against userspace-userspace spectreRSB + - kprobes/x86: Fix %p uses in error messages + - x86/irqflags: Provide a declaration for native_save_fl + - x86/speculation/l1tf: Increase 32bit PAE __PHYSICAL_PAGE_SHIFT + - x86/speculation/l1tf: Change order of offset/type in swap entry + - x86/speculation/l1tf: Protect swap entries against L1TF + - x86/speculation/l1tf: Protect PROT_NONE PTEs against speculation + - x86/speculation/l1tf: Make sure the first page is always reserved + - x86/speculation/l1tf: Add sysfs reporting for l1tf + - x86/speculation/l1tf: Disallow non privileged high MMIO PROT_NONE mappings + - x86/speculation/l1tf: Limit swap file size to MAX_PA/2 + - x86/bugs: Move the l1tf function and define pr_fmt properly + - sched/smt: Update sched_smt_present at runtime + - x86/smp: Provide topology_is_primary_thread() + - x86/topology: Provide topology_smt_supported() + - cpu/hotplug: Make bringup/teardown of smp threads symmetric + - cpu/hotplug: Split do_cpu_down() + - cpu/hotplug: Provide knobs to control SMT + - x86/cpu: Remove the pointless CPU printout + - x86/cpu/AMD: Remove the pointless detect_ht() call + - x86/cpu/common: Provide detect_ht_early() + - x86/cpu/topology: Provide detect_extended_topology_early() + - x86/cpu/intel: Evaluate smp_num_siblings early + - x86/CPU/AMD: Do not check CPUID max ext level before parsing SMP info + - x86/cpu/AMD: Evaluate smp_num_siblings early + - x86/apic: Ignore secondary threads if nosmt=force + - x86/speculation/l1tf: Extend 64bit swap file size limit + - x86/cpufeatures: Add detection of L1D cache flush support. + - x86/CPU/AMD: Move TOPOEXT reenablement before reading smp_num_siblings + - x86/speculation/l1tf: Protect PAE swap entries against L1TF + - x86/speculation/l1tf: Fix up pte->pfn conversion for PAE + - Revert "x86/apic: Ignore secondary threads if nosmt=force" + - cpu/hotplug: Boot HT siblings at least once + - x86/KVM: Warn user if KVM is loaded SMT and L1TF CPU bug being present + - x86/KVM/VMX: Add module argument for L1TF mitigation + - x86/KVM/VMX: Add L1D flush algorithm + - x86/KVM/VMX: Add L1D MSR based flush + - x86/KVM/VMX: Add L1D flush logic + - x86/KVM/VMX: Split the VMX MSR LOAD structures to have an host/guest numbers + - x86/KVM/VMX: Add find_msr() helper function + - x86/KVM/VMX: Separate the VMX AUTOLOAD guest/host number accounting + - x86/KVM/VMX: Extend add_atomic_switch_msr() to allow VMENTER only MSRs + - x86/KVM/VMX: Use MSR save list for IA32_FLUSH_CMD if required + - cpu/hotplug: Online siblings when SMT control is turned on + - x86/litf: Introduce vmx status variable + - x86/kvm: Drop L1TF MSR list approach + - x86/l1tf: Handle EPT disabled state proper + - x86/kvm: Move l1tf setup function + - x86/kvm: Add static key for flush always + - x86/kvm: Serialize L1D flush parameter setter + - x86/kvm: Allow runtime control of L1D flush + - cpu/hotplug: Expose SMT control init function + - cpu/hotplug: Set CPU_SMT_NOT_SUPPORTED early + - x86/bugs, kvm: Introduce boot-time control of L1TF mitigations + - Documentation: Add section about CPU vulnerabilities + - x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures + - x86/KVM/VMX: Initialize the vmx_l1d_flush_pages' content + - Documentation/l1tf: Fix typos + - cpu/hotplug: detect SMT disabled by BIOS + - x86/KVM/VMX: Don't set l1tf_flush_l1d to true from vmx_l1d_flush() + - x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond' + - x86/KVM/VMX: Move the l1tf_flush_l1d test to vmx_l1d_flush() + - x86/irq: Demote irq_cpustat_t::__softirq_pending to u16 + - x86/KVM/VMX: Introduce per-host-cpu analogue of l1tf_flush_l1d + - x86: Don't include linux/irq.h from asm/hardirq.h + - x86/irq: Let interrupt handlers set kvm_cpu_l1tf_flush_l1d + - x86/KVM/VMX: Don't set l1tf_flush_l1d from vmx_handle_external_intr() + - Documentation/l1tf: Remove Yonah processors from not vulnerable list + - x86/speculation: Simplify sysfs report of VMX L1TF vulnerability + - x86/speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry + - KVM: VMX: Tell the nested hypervisor to skip L1D flush on vmentry + - cpu/hotplug: Fix SMT supported evaluation + - x86/speculation/l1tf: Invert all not present mappings + - x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert + - x86/mm/pat: Make set_memory_np() L1TF safe + - x86/mm/kmmio: Make the tracer robust against L1TF + - tools headers: Synchronise x86 cpufeatures.h for L1TF additions + - x86/microcode: Allow late microcode loading with SMT disabled + - x86/smp: fix non-SMP broken build due to redefinition of + apic_id_is_primary_thread + - cpu/hotplug: Non-SMP machines do not make use of booted_once + - x86/init: fix build with CONFIG_SWAP=n + - Linux 4.18.1 + - [Config] updateconfigs after v4.18.1 stable update + + * Consider enabling CONFIG_NETWORK_PHY_TIMESTAMPING (LP: #1785816) + - [Config] Enable timestamping in network PHY devices + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SYSCTL_SYSCALL=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.18 + + -- Seth Forshee Wed, 15 Aug 2018 14:20:59 -0500 + +linux (4.18.0-4.5) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc8 + + -- Seth Forshee Mon, 06 Aug 2018 13:54:02 -0500 + +linux (4.18.0-3.4) cosmic; urgency=medium + + * Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and + Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47) (LP: #1774950) + - ACPI / LPSS: Avoid PM quirks on suspend and resume from hibernation + + * hinic interfaces aren't getting predictable names (LP: #1783138) + - hinic: Link the logical network device to the pci device in sysfs + + * libvirtd is unable to configure bridge devices inside of LXD containers + (LP: #1784501) + - kernfs: allow creating kernfs objects with arbitrary uid/gid + - sysfs, kobject: allow creating kobject belonging to arbitrary users + - kobject: kset_create_and_add() - fetch ownership info from parent + - driver core: set up ownership of class devices in sysfs + - net-sysfs: require net admin in the init ns for setting tx_maxrate + - net-sysfs: make sure objects belong to container's owner + - net: create reusable function for getting ownership info of sysfs inodes + - bridge: make sure objects belong to container's owner + - sysfs: Fix regression when adding a file to an existing group + + * locking sockets broken due to missing AppArmor socket mediation patches + (LP: #1780227) + - UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix sockets + + * Update2 for ocxl driver (LP: #1781436) + - ocxl: Fix page fault handler in case of fault on dying process + + * HDMI/DP audio can't work on the laptop of Dell Latitude 5495 (LP: #1782689) + - ALSA: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA + - vga_switcheroo: set audio client id according to bound GPU id + + * Allow Raven Ridge's audio controller to be runtime suspended (LP: #1782540) + - ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge + + * Invoking obsolete 'firmware_install' target breaks snap build (LP: #1782166) + - snapcraft.yaml: stop invoking the obsolete (and non-existing) + 'firmware_install' target + + * snapcraft.yaml: missing ubuntu-retpoline-extract-one script breaks the build + (LP: #1782116) + - snapcraft.yaml: copy retpoline-extract-one to scripts before build + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc7 + + -- Seth Forshee Wed, 01 Aug 2018 08:49:40 -0500 + +linux (4.18.0-2.3) cosmic; urgency=medium + + * Kernel error "task zfs:pid blocked for more than 120 seconds" (LP: #1781364) + - SAUCE: (noup) zfs to 0.7.9-3ubuntu4 + + * [Regression] EXT4-fs error (device sda1): ext4_validate_inode_bitmap:99: + comm stress-ng: Corrupt inode bitmap (LP: #1780137) + - SAUCE: ext4: fix ext4_validate_inode_bitmap: comm stress-ng: Corrupt inode + bitmap + + * Cloud-init causes potentially huge boot delays with 4.15 kernels + (LP: #1780062) + - random: Make getrandom() ready earlier + + * hisi_sas_v3_hw: internal task abort: timeout and not done. (LP: #1777736) + - scsi: hisi_sas: Update a couple of register settings for v3 hw + + * hisi_sas: Add missing PHY spinlock init (LP: #1777734) + - scsi: hisi_sas: Add missing PHY spinlock init + + * hisi_sas: improve read performance by pre-allocating slot DMA buffers + (LP: #1777727) + - scsi: hisi_sas: Use dmam_alloc_coherent() + - scsi: hisi_sas: Pre-allocate slot DMA buffers + + * hisi_sas: Failures during host reset (LP: #1777696) + - scsi: hisi_sas: Only process broadcast change in phy_bcast_v3_hw() + - scsi: hisi_sas: Fix the conflict between dev gone and host reset + - scsi: hisi_sas: Adjust task reject period during host reset + - scsi: hisi_sas: Add a flag to filter PHY events during reset + - scsi: hisi_sas: Release all remaining resources in clear nexus ha + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu2, zfs to 0.7.9-3ubuntu3 + - SAUCE: mm: Fix exports that inadvertently make put_page() EXPORT_SYMBOL_GPL + - Enable zfs build + - SAUCE: Import aufs driver + - Revert "UBUNTU: [Config]: set CONFIG_EDAC_DEBUG=y for ARM64" + - [Config] retpoline -- review and accept retpoline changes + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc5 + * Rebase to v4.18-rc6 + + -- Seth Forshee Tue, 24 Jul 2018 08:41:22 -0500 + +linux (4.18.0-1.2) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc4 + + -- Seth Forshee Mon, 09 Jul 2018 07:36:31 -0500 + +linux (4.18.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) ima: require secure_boot rules in lockdown mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) lockdown: fix coordination of kernel module signature + verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + - SAUCE: Import aufs driver + - Update dropped.txt + - [Config] updateconfigs after 4.18-rc3 rebase + - SAUCE: (no-up): ASoC: Intel: bytcr-rt5660: Remove snd_soc_codec use for 4.18 + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc3 + + -- Seth Forshee Fri, 06 Jul 2018 10:46:37 -0500 + +linux (4.18.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 03 Jul 2018 11:10:33 -0500 + +linux (4.17.0-4.5) cosmic; urgency=medium + + * linux: 4.17.0-4.5 -proposed tracker (LP: #1779399) + + * Update to ocxl driver for 18.04.1 (LP: #1775786) + - powerpc: Add TIDR CPU feature for POWER9 + - powerpc: Use TIDR CPU feature to control TIDR allocation + - powerpc: use task_pid_nr() for TID allocation + - ocxl: Rename pnv_ocxl_spa_remove_pe to clarify it's action + - ocxl: Expose the thread_id needed for wait on POWER9 + - ocxl: Add an IOCTL so userspace knows what OCXL features are available + - ocxl: Document new OCXL IOCTLs + - ocxl: Fix missing unlock on error in afu_ioctl_enable_p9_wait() + + * Please include ax88179_178a and r8152 modules in d-i udeb (LP: #1771823) + - [Config:] d-i: Add ax88179_178a and r8152 to nic-modules + + * glibc pkeys test fail on powerpc (LP: #1776967) + - [Config] Temporarily disable CONFIG_PPC_MEM_KEYS + + * After update to 4.13-43 Intel Graphics are Laggy (LP: #1773520) + - Revert "drm/i915/edp: Allow alternate fixed mode for eDP if available." + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu1, zfs to 0.7.9-3ubuntu1 + + -- Seth Forshee Fri, 29 Jun 2018 13:37:52 -0500 + +linux (4.17.0-3.4) cosmic; urgency=medium + + * linux: 4.17.0-3.4 -proposed tracker (LP: #1779124) + + * Cosmic update to v4.17.3 stable release (LP: #1778997) + - net: aquantia: fix unsigned numvecs comparison with less than zero + - bonding: re-evaluate force_primary when the primary slave name changes + - cdc_ncm: avoid padding beyond end of skb + - ipv6: allow PMTU exceptions to local routes + - net: dsa: add error handling for pskb_trim_rcsum + - net: phy: dp83822: use BMCR_ANENABLE instead of BMSR_ANEGCAPABLE for DP83620 + - net/sched: act_simple: fix parsing of TCA_DEF_DATA + - tcp: verify the checksum of the first data segment in a new connection + - tls: fix use-after-free in tls_push_record + - tls: fix waitall behavior in tls_sw_recvmsg + - socket: close race condition between sock_close() and sockfs_setattr() + - udp: fix rx queue len reported by diag and proc interface + - net: in virtio_net_hdr only add VLAN_HLEN to csum_start if payload holds + vlan + - hv_netvsc: Fix a network regression after ifdown/ifup + - ACPICA: AML parser: attempt to continue loading table after error + - ext4: fix hole length detection in ext4_ind_map_blocks() + - ext4: update mtime in ext4_punch_hole even if no blocks are released + - ext4: do not allow external inodes for inline data + - ext4: bubble errors from ext4_find_inline_data_nolock() up to ext4_iget() + - ext4: correctly handle a zero-length xattr with a non-zero e_value_offs + - ext4: fix fencepost error in check for inode count overflow during resize + - driver core: Don't ignore class_dir_create_and_add() failure. + - Btrfs: allow empty subvol= again + - Btrfs: fix clone vs chattr NODATASUM race + - Btrfs: fix memory and mount leak in btrfs_ioctl_rm_dev_v2() + - btrfs: return error value if create_io_em failed in cow_file_range + - btrfs: scrub: Don't use inode pages for device replace + - ALSA: usb-audio: Disable the quirk for Nura headset + - ALSA: hda/conexant - Add fixup for HP Z2 G4 workstation + - ALSA: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() + - ALSA: hda: add dock and led support for HP EliteBook 830 G5 + - ALSA: hda: add dock and led support for HP ProBook 640 G4 + - x86/MCE: Fix stack out-of-bounds write in mce-inject.c: Flags_read() + - smb3: fix various xid leaks + - smb3: on reconnect set PreviousSessionId field + - CIFS: 511c54a2f69195b28afb9dd119f03787b1625bb4 adds a check for session + expiry + - cifs: For SMB2 security informaion query, check for minimum sized security + descriptor instead of sizeof FileAllInformation class + - nbd: fix nbd device deletion + - nbd: update size when connected + - nbd: use bd_set_size when updating disk size + - blk-mq: reinit q->tag_set_list entry only after grace period + - bdi: Move cgroup bdi_writeback to a dedicated low concurrency workqueue + - cpufreq: Fix new policy initialization during limits updates via sysfs + - cpufreq: ti-cpufreq: Fix an incorrect error return value + - cpufreq: governors: Fix long idle detection logic in load calculation + - libata: zpodd: small read overflow in eject_tray() + - libata: Drop SanDisk SD7UB3Q*G1001 NOLPM quirk + - nvme/pci: Sync controller reset for AER slot_reset + - w1: mxc_w1: Enable clock before calling clk_get_rate() on it + - x86/vector: Fix the args of vector_alloc tracepoint + - x86/apic/vector: Prevent hlist corruption and leaks + - x86/apic: Provide apic_ack_irq() + - x86/ioapic: Use apic_ack_irq() + - x86/platform/uv: Use apic_ack_irq() + - irq_remapping: Use apic_ack_irq() + - genirq/generic_pending: Do not lose pending affinity update + - genirq/affinity: Defer affinity setting if irq chip is busy + - genirq/migration: Avoid out of line call if pending is not set + - x86/intel_rdt: Enable CMT and MBM on new Skylake stepping + - media: uvcvideo: Prevent setting unavailable flags + - media: rc: ensure input/lirc device can be opened after register + - iwlwifi: fw: harden page loading code + - orangefs: set i_size on new symlink + - orangefs: report attributes_mask and attributes for statx + - HID: intel_ish-hid: ipc: register more pm callbacks to support hibernation + - HID: wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large + - vhost: fix info leak due to uninitialized memory + - mm, page_alloc: do not break __GFP_THISNODE by zonelist reset + - Linux 4.17.3 + + * Use-after-free in sk_peer_label (LP: #1778646) + - SAUCE: apparmor: fix use after free in sk_peer_label + + * kernel: Fix memory leak on CCA and EP11 CPRB processing. (LP: #1775390) + - s390/zcrypt: Fix CCA and EP11 CPRB processing failure memory leak. + + * Various fixes for CXL kernel module (LP: #1774471) + - cxl: Configure PSL to not use APC virtual machines + - cxl: Disable prefault_mode in Radix mode + + * Bluetooth not working (LP: #1764645) + - Bluetooth: btusb: Apply QCA Rome patches for some ATH3012 models + + * Fake SAS addresses for SATA disks on HiSilicon D05 are non-unique + (LP: #1776750) + - scsi: hisi_sas: make SAS address of SATA disks unique + + * linux-snapdragon: wcn36xx: mac address generation on boot (LP: #1776491) + - [Config] arm64: snapdragon: WCN36XX_SNAPDRAGON_HACKS=y + - SAUCE: wcn36xx: read MAC from file or randomly generate one + + * Lenovo V330 needs patch in ideapad_laptop module for rfkill (LP: #1774636) + - SAUCE: Add Lenovo V330 to the ideapad_laptop rfkill blacklist + + * register on binfmt_misc may overflow and crash the system (LP: #1775856) + - fs/binfmt_misc.c: do not allow offset overflow + + * Network installs fail on SocioNext board (LP: #1775884) + - net: socionext: reset hardware in ndo_stop + - net: netsec: enable tx-irq during open callback + + * Fix several bugs in RDMA/hns driver (LP: #1770974) + - RDMA/hns: Drop local zgid in favor of core defined variable + - RDMA/hns: Add 64KB page size support for hip08 + - RDMA/hns: Rename the idx field of db + - RDMA/hns: Modify uar allocation algorithm to avoid bitmap exhaust + - RDMA/hns: Increase checking CMQ status timeout value + - RDMA/hns: Add reset process for RoCE in hip08 + - RDMA/hns: Fix the illegal memory operation when cross page + - RDMA/hns: Implement the disassociate_ucontext API + + * powerpc/livepatch: Implement reliable stack tracing for the consistency + model (LP: #1771844) + - powerpc/livepatch: Implement reliable stack tracing for the consistency + model + + * Adding back alx WoL feature (LP: #1772610) + - SAUCE: Revert "alx: remove WoL support" + - SAUCE: alx: add enable_wol paramenter + + * Lancer A0 Asic HBA's won't boot with 18.04 (LP: #1768103) + - scsi: lpfc: Fix WQ/CQ creation for older asic's. + - scsi: lpfc: Fix 16gb hbas failing cq create. + + * [LTCTest][OPAL][OP920] cpupower idle-info is not listing stop4 and stop5 + idle states when all CORES are guarded (LP: #1771780) + - powerpc/powernv/cpuidle: Init all present cpus for deep states + + * Huawei 25G/100G Network Adapters Unsupported (LP: #1770970) + - net-next/hinic: add pci device ids for 25ge and 100ge card + + * Expose arm64 CPU topology to userspace (LP: #1770231) + - drivers: base: cacheinfo: move cache_setup_of_node() + - drivers: base: cacheinfo: setup DT cache properties early + - cacheinfo: rename of_node to fw_token + - arm64/acpi: Create arch specific cpu to acpi id helper + - ACPI/PPTT: Add Processor Properties Topology Table parsing + - [Config] CONFIG_ACPI_PPTT=y + - ACPI: Enable PPTT support on ARM64 + - drivers: base cacheinfo: Add support for ACPI based firmware tables + - arm64: Add support for ACPI based firmware tables + - arm64: topology: rename cluster_id + - arm64: topology: enable ACPI/PPTT based CPU topology + - ACPI: Add PPTT to injectable table list + - arm64: topology: divorce MC scheduling domain from core_siblings + + * Vcs-Git header on bionic linux source package points to zesty git tree + (LP: #1766055) + - [Packaging]: Update Vcs-Git + + * Request to revert SAUCE patches in the 18.04 SRU and update with upstream + version (LP: #1768431) + - scsi: cxlflash: Handle spurious interrupts + - scsi: cxlflash: Remove commmands from pending list on timeout + - scsi: cxlflash: Synchronize reset and remove ops + - SAUCE: (no-up) cxlflash: OCXL diff between v2 and v3 + + * hisi_sas robustness fixes (LP: #1774466) + - scsi: hisi_sas: delete timer when removing hisi_sas driver + - scsi: hisi_sas: print device id for errors + - scsi: hisi_sas: Add some checks to avoid free'ing a sas_task twice + - scsi: hisi_sas: check host frozen before calling "done" function + - scsi: hisi_sas: check sas_dev gone earlier in hisi_sas_abort_task() + - scsi: hisi_sas: stop controller timer for reset + - scsi: hisi_sas: update PHY linkrate after a controller reset + - scsi: hisi_sas: change slot index allocation mode + - scsi: hisi_sas: Change common allocation mode of device id + - scsi: hisi_sas: Reset disks when discovered + - scsi: hisi_sas: Create a scsi_host_template per HW module + - scsi: hisi_sas: Init disks after controller reset + - scsi: hisi_sas: Try wait commands before before controller reset + - scsi: hisi_sas: Include TMF elements in struct hisi_sas_slot + - scsi: hisi_sas: Add v2 hw force PHY function for internal ATA command + - scsi: hisi_sas: Terminate STP reject quickly for v2 hw + - scsi: hisi_sas: Fix return value when get_free_slot() failed + - scsi: hisi_sas: Mark PHY as in reset for nexus reset + + * hisi_sas: Support newer v3 hardware (LP: #1774467) + - scsi: hisi_sas: update RAS feature for later revision of v3 HW + - scsi: hisi_sas: check IPTT is valid before using it for v3 hw + - scsi: hisi_sas: fix PI memory size + - scsi: hisi_sas: config ATA de-reset as an constrained command for v3 hw + - scsi: hisi_sas: remove redundant handling to event95 for v3 + - scsi: hisi_sas: add readl poll timeout helper wrappers + - scsi: hisi_sas: workaround a v3 hw hilink bug + - scsi: hisi_sas: Add LED feature for v3 hw + + * hisi_sas: improve performance by optimizing DQ locking (LP: #1774472) + - scsi: hisi_sas: optimise the usage of DQ locking + - scsi: hisi_sas: relocate smp sg map + - scsi: hisi_sas: make return type of prep functions void + - scsi: hisi_sas: allocate slot buffer earlier + - scsi: hisi_sas: Don't lock DQ for complete task sending + - scsi: hisi_sas: Use device lock to protect slot alloc/free + - scsi: hisi_sas: add check of device in hisi_sas_task_exec() + - scsi: hisi_sas: fix a typo in hisi_sas_task_prep() + + * FS-Cache: Assertion failed: FS-Cache: 6 == 5 is false (LP: #1774336) + - SAUCE: CacheFiles: fix a read_waiter/read_copier race + + * enable mic-mute hotkey and led on Lenovo M820z and M920z (LP: #1774306) + - ALSA: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs + + * hns3 driver updates (LP: #1768670) + - net: hns3: Remove error log when getting pfc stats fails + - net: hns3: fix to correctly fetch l4 protocol outer header + - net: hns3: Fixes the out of bounds access in hclge_map_tqp + - net: hns3: Fixes the error legs in hclge_init_ae_dev function + - net: hns3: fix for phy_addr error in hclge_mac_mdio_config + - net: hns3: Fix to support autoneg only for port attached with phy + - net: hns3: fix a dead loop in hclge_cmd_csq_clean + - net: hns3: Fix for packet loss due wrong filter config in VLAN tbls + - net: hns3: Remove packet statistics in the range of 8192~12287 + - net: hns3: Add support of hardware rx-vlan-offload to HNS3 VF driver + - net: hns3: Fix for setting mac address when resetting + - net: hns3: remove add/del_tunnel_udp in hns3_enet module + - net: hns3: fix for cleaning ring problem + - net: hns3: refactor the loopback related function + - net: hns3: Fix for deadlock problem occurring when unregistering ae_algo + - net: hns3: Fix for the null pointer problem occurring when initializing + ae_dev failed + - net: hns3: Add a check for client instance init state + - net: hns3: Change return type of hnae3_register_ae_dev + - net: hns3: Change return type of hnae3_register_ae_algo + - net: hns3: Change return value in hnae3_register_client + - net: hns3: Fixes the back pressure setting when sriov is enabled + - net: hns3: Fix for fiber link up problem + - net: hns3: Add support of .sriov_configure in HNS3 driver + - net: hns3: Fixes the missing PCI iounmap for various legs + - net: hns3: Fixes error reported by Kbuild and internal review + - net: hns3: Fixes API to fetch ethernet header length with kernel default + - net: hns3: cleanup of return values in hclge_init_client_instance() + - net: hns3: Fix the missing client list node initialization + - net: hns3: Fix for hns3 module is loaded multiple times problem + - net: hns3: Use enums instead of magic number in hclge_is_special_opcode + - net: hns3: Fix for netdev not running problem after calling net_stop and + net_open + - net: hns3: Fixes kernel panic issue during rmmod hns3 driver + - net: hns3: Fix for CMDQ and Misc. interrupt init order problem + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: Add support for tx_accept_tag2 and tx_accept_untag2 config + - net: hns3: Add STRP_TAGP field support for hardware revision 0x21 + - net: hns3: Add support to enable TX/RX promisc mode for H/W rev(0x21) + - net: hns3: Fix for PF mailbox receving unknown message + - net: hns3: Fixes the state to indicate client-type initialization + - net: hns3: Fixes the init of the VALID BD info in the descriptor + - net: hns3: Removes unnecessary check when clearing TX/RX rings + - net: hns3: Clear TX/RX rings when stopping port & un-initializing client + - net: hns3: Remove unused led control code + - net: hns3: Adds support for led locate command for copper port + - net: hns3: Fixes initalization of RoCE handle and makes it conditional + - net: hns3: Disable vf vlan filter when vf vlan table is full + - net: hns3: Add support for IFF_ALLMULTI flag + - net: hns3: Add repeat address checking for setting mac address + - net: hns3: Fix setting mac address error + - net: hns3: Fix for service_task not running problem after resetting + - net: hns3: Fix for hclge_reset running repeatly problem + - net: hns3: Fix for phy not link up problem after resetting + - net: hns3: Add missing break in misc_irq_handle + - net: hns3: Fix for vxlan tx checksum bug + - net: hns3: Optimize the PF's process of updating multicast MAC + - net: hns3: Optimize the VF's process of updating multicast MAC + - SAUCE: {topost} net: hns3: add support for serdes loopback selftest + - SAUCE: {topost} net: hns3: RX BD information valid only in last BD except + VLD bit and buffer size + - SAUCE: {topost} net: hns3: remove hclge_get_vector_index from + hclge_bind_ring_with_vector + - SAUCE: {topost} net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - SAUCE: {topost} net: hns3: add vector status check before free vector + - SAUCE: {topost} net: hns3: add l4_type check for both ipv4 and ipv6 + - SAUCE: {topost} net: hns3: remove unused head file in hnae3.c + - SAUCE: {topost} net: hns3: extraction an interface for state state + init|uninit + - SAUCE: {topost} net: hns3: print the ret value in error information + - SAUCE: {topost} net: hns3: remove the Redundant put_vector in + hns3_client_uninit + - SAUCE: {topost} net: hns3: add unlikely for error check + - SAUCE: {topost} net: hns3: remove back in struct hclge_hw + - SAUCE: {topost} net: hns3: use lower_32_bits and upper_32_bits + - SAUCE: {topost} net: hns3: remove unused hclge_ring_to_dma_dir + - SAUCE: {topost} net: hns3: remove useless code in hclge_cmd_send + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean + - SAUCE: {topost} net: hns3: using modulo for cyclic counters in + hclge_cmd_send + - SAUCE: {topost} net: hns3: remove a redundant hclge_cmd_csq_done + - SAUCE: {topost} net: hns3: remove some unused members of some structures + - SAUCE: {topost} net: hns3: give default option while dependency HNS3 set + - SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead of + kzalloc/dma_map_single + - SAUCE: {topost} net: hns3: modify hnae_ to hnae3_ + - SAUCE: {topost} net: hns3: fix unused function warning in VF driver + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: standardize the handle of return value + - SAUCE: {topost} net: hns3: remove extra space and brackets + - SAUCE: {topost} net: hns3: fix unreasonable code comments + - SAUCE: {topost} net: hns3: use decimal for bit offset macros + - SAUCE: {topost} net: hns3: modify inconsistent bit mask macros + - SAUCE: {topost} net: hns3: fix mislead parameter name + - SAUCE: {topost} net: hns3: remove unused struct member and definition + - SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver + - SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE + - SAUCE: {topost} net: hns3: optimize the process of notifying roce client + - SAUCE: {topost} net: hns3: Add calling roce callback function when link + status change + - SAUCE: {topost} net: hns3: fix tc setup when netdev is first up + - SAUCE: {topost} net: hns3: fix for mac pause not disable in pfc mode + - SAUCE: {topost} net: hns3: fix for waterline not setting correctly + - SAUCE: {topost} net: hns3: fix for l4 checksum offload bug + - SAUCE: {topost} net: hns3: fix for mailbox message truncated problem + - SAUCE: {topost} net: hns3: Add configure for mac minimal frame size + - SAUCE: {topost} net: hns3: fix warning bug when doing lp selftest + - SAUCE: {topost} net: hns3: fix get_vector ops in hclgevf_main module + - SAUCE: {topost} net: hns3: remove the warning when clear reset cause + - SAUCE: {topost} net: hns3: Use roce handle when calling roce callback + function + - SAUCE: {topost} net: hns3: prevent sending command during global or core + reset + - SAUCE: {topost} net: hns3: modify the order of initializeing command queue + register + - SAUCE: {topost} net: hns3: reset net device with rtnl_lock + - SAUCE: {topost} net: hns3: prevent to request reset frequently + - SAUCE: {topost} net: hns3: correct reset event status register + - SAUCE: {topost} net: hns3: separate roce from nic when resetting + - SAUCE: net: hns3: Fix for phy link issue when using marvell phy driver + - SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet + - SAUCE: {topost} net: hns3: remove unnecessary ring configuration operation + while resetting + - SAUCE: {topost} net: hns3: fix for reset_level default assignment probelm + - SAUCE: {topost} net: hns3: fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - SAUCE: {topost} net: hns3: fix comments for hclge_get_ring_chain_from_mbx + - SAUCE: net: hns3: Fix for VF mailbox cannot receiving PF response + - SAUCE: net: hns3: Fix for VF mailbox receiving unknown message + - SAUCE: net: hns3: Optimize PF CMDQ interrupt switching process + + * CVE-2018-7755 + - SAUCE: floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl + + * Incorrect blacklist of bcm2835_wdt (LP: #1766052) + - [Packaging] Fix missing watchdog for Raspberry Pi + + * kernel: Fix arch random implementation (LP: #1775391) + - s390/archrandom: Rework arch random implementation. + + * [Ubuntu 1804][boston][ixgbe] EEH causes kernel BUG at /build/linux- + jWa1Fv/linux-4.15.0/drivers/pci/msi.c:352 (i2S) (LP: #1776389) + - ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device + + * Cosmic update to v4.17.2 stable release (LP: #1779117) + - crypto: chelsio - request to HW should wrap + - blkdev_report_zones_ioctl(): Use vmalloc() to allocate large buffers + - KVM: X86: Fix reserved bits check for MOV to CR3 + - KVM: x86: introduce linear_{read,write}_system + - kvm: fix typo in flag name + - kvm: nVMX: Enforce cpl=0 for VMX instructions + - KVM: x86: pass kvm_vcpu to kvm_read_guest_virt and + kvm_write_guest_virt_system + - kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access + - staging: android: ion: Switch to pr_warn_once in ion_buffer_destroy + - NFC: pn533: don't send USB data off of the stack + - usbip: vhci_sysfs: fix potential Spectre v1 + - usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver + - usb-storage: Add compatibility quirk flags for G-Technologies G-Drive + - Input: xpad - add GPD Win 2 Controller USB IDs + - phy: qcom-qusb2: Fix crash if nvmem cell not specified + - usb: core: message: remove extra endianness conversion in + usb_set_isoch_delay + - usb: typec: wcove: Remove dependency on HW FSM + - usb: gadget: function: printer: avoid wrong list handling in printer_write() + - usb: gadget: udc: renesas_usb3: fix double phy_put() + - usb: gadget: udc: renesas_usb3: should remove debugfs + - usb: gadget: udc: renesas_usb3: should call pm_runtime_enable() before add + udc + - usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc + - usb: gadget: udc: renesas_usb3: should fail if devm_phy_get() returns error + - usb: gadget: udc: renesas_usb3: disable the controller's irqs for + reconnecting + - serial: sh-sci: Stop using printk format %pCr + - tty/serial: atmel: use port->name as name in request_irq() + - serial: samsung: fix maxburst parameter for DMA transactions + - serial: 8250: omap: Fix idling of clocks for unused uarts + - vmw_balloon: fixing double free when batching mode is off + - doc: fix sysfs ABI documentation + - arm64: defconfig: Enable CONFIG_PINCTRL_MT7622 by default + - tty: pl011: Avoid spuriously stuck-off interrupts + - crypto: ccree - correct host regs offset + - Input: goodix - add new ACPI id for GPD Win 2 touch screen + - Input: elan_i2c - add ELAN0612 (Lenovo v330 14IKB) ACPI ID + - crypto: caam - strip input zeros from RSA input buffer + - crypto: caam - fix DMA mapping dir for generated IV + - crypto: caam - fix IV DMA mapping and updating + - crypto: caam/qi - fix IV DMA mapping and updating + - crypto: caam - fix size of RSA prime factor q + - crypto: cavium - Fix fallout from CONFIG_VMAP_STACK + - crypto: cavium - Limit result reading attempts + - crypto: vmx - Remove overly verbose printk from AES init routines + - crypto: vmx - Remove overly verbose printk from AES XTS init + - crypto: omap-sham - fix memleak + - Linux 4.17.2 + + * Cosmic update to v4.17.1 stable release (LP: #1779116) + - netfilter: nf_flow_table: attach dst to skbs + - bnx2x: use the right constant + - ip6mr: only set ip6mr_table from setsockopt when ip6mr_new_table succeeds + - ipv6: omit traffic class when calculating flow hash + - l2tp: fix refcount leakage on PPPoL2TP sockets + - netdev-FAQ: clarify DaveM's position for stable backports + - net: metrics: add proper netlink validation + - net/packet: refine check for priv area size + - rtnetlink: validate attributes in do_setlink() + - sctp: not allow transport timeout value less than HZ/5 for hb_timer + - team: use netdev_features_t instead of u32 + - vrf: check the original netdevice for generating redirect + - net: dsa: b53: Fix for brcm tag issue in Cygnus SoC + - ipmr: fix error path when ipmr_new_table fails + - PCI: hv: Do not wait forever on a device that has disappeared + - Linux 4.17.1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: crypto: thunderx_zip: Fix fallout from + CONFIG_VMAP_STACK" + - Revert "UBUNTU: SAUCE: cred: Add clone_cred() interface" + - SAUCE: apparmor: userspace queries + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: af_unix mediation + + -- Seth Forshee Thu, 28 Jun 2018 08:03:32 -0500 + +linux (4.17.0-2.3) cosmic; urgency=medium + + * linux: 4.17.0-2.3 -proposed tracker (LP: #1776276) + + * Miscellaneous Ubuntu changes + - Config: remove IrDA from annotations + - Config: remove scsi drivers from annotations + - Config: remove BT_HCIBTUART from annotations + - Config: pstore zlib support was renamed + - Config: disable NVRAM for armhf on annotations + - Config: Disable VT on s390x + - Config: Update SSB and B43/B44 options + - Config: some options not supported on some arches anymore + - Config: renamed and removed options + - Config: TCG_CRB is required for IMA on ACPI systems + - Config: EXTCON_AXP288 depends on X86 + - Config: CONFIG_FSI depends on OF + - Config: DRM_RCAR_LVDS now depends on DRM + - CONFIG: Allow CONFIG_LEDS_MLXCPLD for i386 + - Config: Enable HINIC on arm64 + - Config: Set PPS and PTP_1588_CLOCK as y + - Config: Some NF_TABLES options are built-in now + - Config: GENERIC_CPU for ppc64el + - Config: KEXEC_FILE=n for s390x + - Config: CRYPTO_DEFLATE is needed by PSTORE_DEFLATE_COMPRESS + - Config: Disable STM32 support + - Config: Enable FORTIFY_SOURCE for armhf + - Config: use STRONG instead of AUTO for CC_STACKPROTECTOR + + [ Upstream Kernel Changes ] + + * Rebase to v4.17 + + -- Thadeu Lima de Souza Cascardo Mon, 11 Jun 2018 15:22:10 -0300 + +linux (4.17.0-1.2) cosmic; urgency=medium + + [ Seth Forshee ] + * [Config] enable EDAC_DEBUG on ARM64 (LP: #1772516) + - [Config]: set CONFIG_EDAC_DEBUG=y for ARM64 + + * Ubuntu 18.04 kernel crashed while in degraded mode (LP: #1770849) + - SAUCE: powerpc/perf: Fix memory allocation for core-imc based on + num_possible_cpus() + + * Integrated Webcam Realtek Integrated_Webcam_HD (0bda:58f4) not working in + DELL XPS 13 9370 with firmware 1.50 (LP: #1763748) + - SAUCE: media: uvcvideo: Support realtek's UVC 1.5 device + + * Switch Build-Depends: transfig to fig2dev (LP: #1770770) + - [Config] update Build-Depends: transfig to fig2dev + + * update-initramfs not adding i915 GuC firmware for Kaby Lake, firmware fails + to load (LP: #1728238) + - Revert "UBUNTU: SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for + unreleased firmware" + + * No driver for Huawei network adapters on arm64 (LP: #1769899) + - net-next/hinic: add arm64 support + + * linux-snapdragon: reduce EPROBEDEFER noise during boot (LP: #1768761) + - [Config] snapdragon: DRM_I2C_ADV7511=y + + * Add d-i support for Huawei NICs (LP: #1767490) + - d-i: add hinic to nic-modules udeb + + * Acer Swift sf314-52 power button not managed (LP: #1766054) + - SAUCE: platform/x86: acer-wmi: add another KEY_POWER keycode + + * Include nfp driver in linux-modules (LP: #1768526) + - [Config] Add nfp.ko to generic inclusion list + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - [Config] CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y + - SAUCE: (efi-lockdown) really lock down kernel under EFI secure boot + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu3, zfs to 0.7.5-1ubuntu17 + - enable zfs build + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) ima: require secure_boot rules in + lockdown mode" + - Rebased to v4.17-rc6 + + -- Thadeu Lima de Souza Cascardo Tue, 22 May 2018 14:48:13 -0300 + +linux (4.17.0-0.1) bionic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.17-rc4 + + -- Thadeu Lima de Souza Cascardo Tue, 08 May 2018 16:38:51 -0300 + +linux (4.17.0-0.0) bionic; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Fri, 27 Apr 2018 11:01:13 -0300 + +linux (4.16.0-4.5) bionic; urgency=medium + + * [18.04 FEAT] Add kvm_stat from kernel tree (LP: #1734130) + - tools/kvm_stat: Fix python3 syntax + - tools/kvm_stat: Don't use deprecated file() + - tools/kvm_stat: Remove unused function + - [Packaging] Add linux-tools-host package for VM host tools + - [Config] do_tools_host=true for amd64 + + * [Featire] CNL: Enable RAPL support (LP: #1685712) + - powercap: RAPL: Add support for Cannon Lake + + * Bionic update to v4.16.2 stable release (LP: #1763388) + - sparc64: Oracle DAX driver depends on SPARC64 + - arp: fix arp_filter on l3slave devices + - net: dsa: Discard frames from unused ports + - net/ipv6: Increment OUTxxx counters after netfilter hook + - net/sched: fix NULL dereference in the error path of tcf_bpf_init() + - pptp: remove a buggy dst release in pptp_connect() + - sctp: do not leak kernel memory to user space + - sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 + - vlan: also check phy_driver ts_info for vlan's real device + - net: fool proof dev_valid_name() + - ip_tunnel: better validate user provided tunnel names + - ipv6: sit: better validate user provided tunnel names + - ip6_gre: better validate user provided tunnel names + - ip6_tunnel: better validate user provided tunnel names + - vti6: better validate user provided tunnel names + - net_sched: fix a missing idr_remove() in u32_delete_key() + - nfp: use full 40 bits of the NSP buffer address + - Linux 4.16.2 + + * sky2 gigabit ethernet driver sometimes stops working after lid-open resume + from sleep (88E8055) (LP: #1758507) // Bionic update to v4.16.2 stable + release (LP: #1763388) + - sky2: Increase D3 delay to sky2 stops working after suspend + + * Merge the linux-snapdragon kernel into bionic master/snapdragon + (LP: #1763040) + - arm64: defconfig: enable REMOTEPROC + - arm64: defconfig: enable QCOM audio drivers for APQ8016 and DB410c + - kernel: configs; add distro.config + - arm64: configs: enable WCN36xx + - kernel: distro.config: enable debug friendly USB network adpater + - arm64: configs: enable QCOM Venus + - arm64: defconfig: Enable a53/apcs and avs + - arm64: defconfig: enable ondemand governor as default + - arm64: defconfig: enable QCOM_TSENS + - kernel: configs: enable dm_mod and dm_crypt + - Force the SMD regulator driver to be compiled-in + - arm64: defconfig: enable CFG80211_DEFAULT_PS by default + - arm64: configs: enable BT_QCOMSMD + - kernel: configs: add more USB net drivers + - arm64: defconfig: disable ANALOG_TV and DIGITAL_TV + - arm64: configs: Enable camera drivers + - kernel: configs: add freq stat to sysfs + - arm64: defconfig: enable CONFIG_USB_CONFIGFS_F_FS by default + - arm64: defconfig: Enable QRTR features + - kernel: configs: set USB_CONFIG_F_FS in distro.config + - kernel: distro.config: enable 'schedutil' CPUfreq governor + - kernel: distro.config: enable 'fq' and 'fq_codel' qdiscs + - kernel: distro.config: enable 'BBR' TCP congestion algorithm + - arm64: defconfig: enable LEDS_QCOM_LPG + - HACK: drm/msm/iommu: Remove runtime_put calls in map/unmap + - power: avs: Add support for CPR (Core Power Reduction) + - power: avs: cpr: Use raw mem access for qfprom + - power: avs: cpr: fix with new reg_sequence structures + - power: avs: cpr: Register with cpufreq-dt + - regulator: smd: Add floor and corner operations + - PM / OPP: Support adjusting OPP voltages at runtime + - PM / OPP: Drop RCU usage in dev_pm_opp_adjust_voltage() + - PM / OPP: HACK: Allow to set regulator without opp_list + - PM / OPP: Add a helper to get an opp regulator for device + - cpufreq: Add apq8016 to cpufreq-dt-platdev blacklist + - regulator: smd: Allow REGULATOR_QCOM_SMD_RPM=m + - ov5645: I2C address change + - i2c: Add Qualcomm Camera Control Interface driver + - camss: vfe: Skip first four frames from sensor + - camss: Do not register if no cameras are present + - i2c-qcom-cci: Fix run queue completion timeout + - i2c-qcom-cci: Fix I2C address bug + - media: ov5645: Fix I2C address + - drm/bridge/adv7511: Delay clearing of HPD interrupt status + - HACK: drm/msm/adv7511: Don't rely on interrupts for EDID parsing + - leds: Add driver for Qualcomm LPG + - wcn36xx: Fix warning due to duplicate scan_completed notification + - arm64: dts: Add CPR DT node for msm8916 + - arm64: dts: add spmi-regulator nodes + - arm64: dts: msm8916: Add cpufreq support + - arm64: dts: msm8916: Add a shared CPU opp table + - arm64: dts: msm8916: Add cpu cooling maps + - arm64: dts: pm8916: Mark the s2 regulator as always-on + - arm64: dts: qcom: msm8916: Add msm8916 A53 PLL DT node + - arm64: dts: qcom: msm8916: Use the new APCS mailbox driver + - arm64: dts: qcom: msm8916: Add clock properties to the APCS node + - dt-bindings: media: Binding document for Qualcomm Camera Control Interface + driver + - MAINTAINERS: Add Qualcomm Camera Control Interface driver + - DT: leds: Add Qualcomm Light Pulse Generator binding + - arm64: dts: qcom: msm8996: Add mpp and lpg blocks + - arm64: dts: qcom: Add pwm node for pm8916 + - arm64: dts: qcom: Add user LEDs on db820c + - arm64: dts: qcom: Add WiFI/BT LEDs on db820c + - ARM: dts: qcom: Add LPG node to pm8941 + - ARM: dts: qcom: honami: Add LPG node and RGB LED + - arm64: dts: qcom: Add Camera Control Interface support + - arm64: dts: qcom: Add apps_iommu vfe child node + - arm64: dts: qcom: Add camss device node + - arm64: dts: qcom: Add ov5645 device nodes + - arm64: dts: msm8916: Fix camera sensors I2C addresses + - arm: dts: qcom: db410c: Enable PWM signal on MPP4 + - packaging: arm64: add a uboot flavour - part1 + - packaging: arm64: add a uboot flavour - part2 + - packaging: arm64: add a uboot flavour - part3 + - packaging: arm64: add a uboot flavour - part4 + - packaging: arm64: add a uboot flavour - part5 + - packaging: arm64: rename uboot flavour to snapdragon + - [Config] updateconfigs after qcomlt import + - [Config] arm64: snapdragon: COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: MSM_GCC_8916=y + - [Config] arm64: snapdragon: REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: SPMI=y, SPMI_MSM_PMIC_ARB=y + - [Config] arm64: snapdragon: REGMAP_SPMI=y, PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: MFD_SPMI_PMIC=y + - [Config] arm64: snapdragon: QCOM_SMEM=y + - [Config] arm64: snapdragon: RPMSG=y, RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: QCOM_SMD_RPM=y, REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: QCOM_HIDMA=y, QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: QCOM_CPR=y + - [Config] arm64: snapdragon: QCOM_QFPROM=y, QCOM_TSENS=y + - [Config] arm64: snapdragon: MMC_SDHCI=y, MMC_SDHCI_PLTFM=y, MMC_SDHCI_MSM=y + - [Config] turn off DRM_MSM_REGISTER_LOGGING + - [Config] arm64: snapdragon: I2C_QUP=y + - [Config] arm64: snapdragon: SPI_QUP=y + - [Config] arm64: snapdragon: USB_ULPI_BUS=y, PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_CTRL=y + - [Config] arm64: snapdragon: QCOM_SMSM=y + - [Config] arm64: snapdragon: QCOM_SMP2P=y + - [Config] arm64: snapdragon: DRM_MSM=y + - [Config] arm64: snapdragon: SND_SOC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_PIL=m + - [Config] arm64: snapdragon: INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: MEDIA_SUBDRV_AUTOSELECT=y, VIDEO_OV5645=m + - [Config] arm64: snapdragon: SND_SOC_APQ8016_SBC=y, SND_SOC_LPASS_APQ8016=y + - [Config] arm64: snapdragon: SND_SOC_MSM8916_WCD_ANALOG=y, + SND_SOC_MSM8916_WCD_DIGITAL=y + - SAUCE: media: ov5645: skip address change if dt addr == default addr + - SAUCE: drm/msm/adv7511: wrap hacks under CONFIG_ADV7511_SNAPDRAGON_HACKS + #ifdefs + - [Config] arm64: snapdragon: ADV7511_SNAPDRAGON_HACKS=y + - [Packaging] fix up snapdragon abi paths + + * LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: Manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: Manage task security blobs + - SAUCE: LSM stacking: LSM: Manage remaining security blobs + - SAUCE: LSM stacking: LSM: General stacking + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: add apparmor and selinux proc dirs + - SAUCE: LSM stacking: remove procfs context interface + + * linux 4.13.0-13.14 ADT test failure with linux 4.13.0-13.14 + (LP: #1720779) // LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: check for invalid zero sized writes + + * Support cq/rq record doorbell for RDMA on HSilicon hip08 systems + (LP: #1762755) + - RDMA/hns: Support rq record doorbell for the user space + - RDMA/hns: Support cq record doorbell for the user space + - RDMA/hns: Support rq record doorbell for kernel space + - RDMA/hns: Support cq record doorbell for kernel space + - RDMA/hns: Fix cqn type and init resp + - RDMA/hns: Fix init resp when alloc ucontext + - RDMA/hns: Fix cq record doorbell enable in kernel + + * Replace LPC patchset with upstream version (LP: #1762758) + - Revert "UBUNTU: SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver" + - Revert "UBUNTU: SAUCE: HISI LPC: Add ACPI support" + - Revert "UBUNTU: SAUCE: ACPI / scan: do not enumerate Indirect IO host + children" + - Revert "UBUNTU: SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT + bindings" + - Revert "UBUNTU: SAUCE: OF: Add missing I/O range exception for indirect-IO + devices" + - Revert "UBUNTU: SAUCE: PCI: Apply the new generic I/O management on PCI IO + hosts" + - Revert "UBUNTU: SAUCE: PCI: Add fwnode handler as input param of + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: PCI: Remove unused __weak attribute in + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: LIB: Introduce a generic PIO mapping method" + - lib: Add generic PIO mapping method + - PCI: Remove __weak tag from pci_register_io_range() + - PCI: Add fwnode handler as input param of pci_register_io_range() + - PCI: Apply the new generic I/O management on PCI IO hosts + - of: Add missing I/O range exception for indirect-IO devices + - HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - ACPI / scan: Rename acpi_is_serial_bus_slave() for more general use + - ACPI / scan: Do not enumerate Indirect IO host children + - HISI LPC: Add ACPI support + - MAINTAINERS: Add John Garry as maintainer for HiSilicon LPC driver + + * Enable Tunneled Operations on POWER9 (LP: #1762448) + - powerpc/powernv: Enable tunneled operations + - cxl: read PHB indications from the device tree + + * PSL traces reset after PERST for debug AFU image (LP: #1762462) + - cxl: Enable NORST bit in PSL_DEBUG register for PSL9 + + * NFS + sec=krb5 is broken (LP: #1759791) + - sunrpc: remove incorrect HMAC request initialization + + * Raspberry Pi 3 microSD support missing from the installer (LP: #1729128) + - d-i: add bcm2835 to block-modules + + * Backport USB core quirks (LP: #1762695) + - usb: core: Add "quirks" parameter for usbcore + - usb: core: Copy parameter string correctly and remove superfluous null check + - usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks + + * [Ubuntu 18.04] cryptsetup: 'device-mapper: reload ioctl on failed' when + setting up a second end-to-end encrypted disk (LP: #1762353) + - SAUCE: s390/crypto: Adjust s390 aes and paes cipher + + * System Z {kernel} UBUNTU18.04 wrong kernel config (LP: #1762719) + - s390: move nobp parameter functions to nospec-branch.c + - s390: add automatic detection of the spectre defense + - s390: report spectre mitigation via syslog + - s390: add sysfs attributes for spectre + - [Config] CONFIG_EXPOLINE_AUTO=y, CONFIG_KERNEL_NOBP=n for s390 + - s390: correct nospec auto detection init order + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 + - powerpc/64s: Wire up cpu_show_spectre_v2() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5753 + - powerpc/64s: Wire up cpu_show_spectre_v1() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5754 + - powerpc/rfi-flush: Move the logic to avoid a redo into the debugfs code + - powerpc/rfi-flush: Make it possible to call setup_rfi_flush() again + - powerpc/rfi-flush: Always enable fallback flush on pseries + - powerpc/rfi-flush: Differentiate enabled and patched flush types + - powerpc/rfi-flush: Call setup_rfi_flush() after LPM migration + - powerpc/64s: Move cpu_show_meltdown() + - powerpc/64s: Enhance the information in cpu_show_meltdown() + - powerpc/powernv: Use the security flags in pnv_setup_rfi_flush() + - powerpc/pseries: Use the security flags in pseries_setup_rfi_flush() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 // + CVE-2017-5753 // CVE-2017-5754 + - powerpc/pseries: Add new H_GET_CPU_CHARACTERISTICS flags + - powerpc: Add security feature flags for Spectre/Meltdown + - powerpc/pseries: Set or clear security feature flags + - powerpc/powernv: Set or clear security feature flags + + * Hisilicon network subsystem 3 support (LP: #1761610) + - net: hns3: export pci table of hclge and hclgevf to userspace + - d-i: Add hns3 drivers to nic-modules + + * "ip a" command on a guest VM shows UNKNOWN status (LP: #1761534) + - virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS + + * perf vendor events arm64: Enable JSON events for ThunderX2 B0 (LP: #1760712) + - perf vendor events: Drop incomplete multiple mapfile support + - perf vendor events: Fix error code in json_events() + - perf vendor events: Drop support for unused topic directories + - perf vendor events: Add support for pmu events vendor subdirectory + - perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory + - perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory + - perf vendor events: Add support for arch standard events + - perf vendor events arm64: Add armv8-recommended.json + - perf vendor events arm64: Fixup ThunderX2 to use recommended events + - perf vendor events arm64: fixup A53 to use recommended events + - perf vendor events arm64: add HiSilicon hip08 JSON file + - perf vendor events arm64: Enable JSON events for ThunderX2 B0 + + * Warning "cache flush timed out!" seen when unloading the cxl driver + (LP: #1762367) + - cxl: Check if PSL data-cache is available before issue flush request + + * Bionic update to v4.16.1 stable release (LP: #1763170) + - bitmap: fix memset optimization on big-endian systems + - USB: serial: ftdi_sio: add RT Systems VX-8 cable + - USB: serial: ftdi_sio: add support for Harman FirmwareHubEmulator + - USB: serial: cp210x: add ELDAT Easywave RX09 id + - serial: 8250: Add Nuvoton NPCM UART + - mei: remove dev_err message on an unsupported ioctl + - /dev/mem: Avoid overwriting "err" in read_mem() + - media: usbtv: prevent double free in error case + - parport_pc: Add support for WCH CH382L PCI-E single parallel port card. + - crypto: lrw - Free rctx->ext with kzfree + - crypto: ccp - Fill the result buffer only on digest, finup, and final ops + - crypto: talitos - don't persistently map req_ctx->hw_context and + req_ctx->buf + - crypto: inside-secure - fix clock management + - crypto: testmgr - Fix incorrect values in PKCS#1 test vector + - crypto: talitos - fix IPsec cipher in length + - crypto: ahash - Fix early termination in hash walk + - crypto: caam - Fix null dereference at error path + - crypto: ccp - return an actual key size from RSA max_size callback + - crypto: arm,arm64 - Fix random regeneration of S_shipped + - crypto: x86/cast5-avx - fix ECB encryption when long sg follows short one + - Bluetooth: hci_bcm: Add 6 new ACPI HIDs + - Btrfs: fix unexpected cow in run_delalloc_nocow + - siox: fix possible buffer overflow in device_add_store + - staging: comedi: ni_mio_common: ack ai fifo error interrupts. + - Revert "base: arch_topology: fix section mismatch build warnings" + - Input: ALPS - fix TrackStick detection on Thinkpad L570 and Latitude 7370 + - Input: i8042 - add Lenovo ThinkPad L460 to i8042 reset list + - Input: i8042 - enable MUX on Sony VAIO VGN-CS series to fix touchpad + - vt: change SGR 21 to follow the standards + - Fix slab name "biovec-(1<<(21-12))" + - signal: Correct the offset of si_pkey and si_lower in struct siginfo on m68k + - Linux 4.16.1 + + * [18.04][config] regression: nvme and nvme_core couldn't be built as modules + starting 4.15-rc2 (LP: #1759893) + - SAUCE: Revert "lightnvm: include NVM Express driver if OCSSD is selected for + build" + - [Config] CONFIG_BLK_DEV_NMVE=m + + * FFe: Enable configuring resume offset via sysfs (LP: #1760106) + - PM / hibernate: Make passing hibernate offsets more friendly + + * Ubuntu18.04:POWER9:DD2.2 - Unable to start a KVM guest with default machine + type(pseries-bionic) complaining "KVM implementation does not support + Transactional Memory, try cap-htm=off" (kvm) (LP: #1752026) + - powerpc: Use feature bit for RTC presence rather than timebase presence + - powerpc: Book E: Remove unused CPU_FTR_L2CSR bit + - powerpc: Free up CPU feature bits on 64-bit machines + - powerpc: Add CPU feature bits for TM bug workarounds on POWER9 v2.2 + - powerpc/powernv: Provide a way to force a core into SMT4 mode + - KVM: PPC: Book3S HV: Work around transactional memory bugs in POWER9 + - KVM: PPC: Book3S HV: Work around XER[SO] bug in fake suspend mode + - KVM: PPC: Book3S HV: Work around TEXASR bug in fake suspend state + + * [Feature][CFL][ICL] [CNL]Thunderbolt support (Titan Ridge) (LP: #1730775) + - thunderbolt: Resume control channel after hibernation image is created + - thunderbolt: Serialize PCIe tunnel creation with PCI rescan + - thunderbolt: Handle connecting device in place of host properly + - thunderbolt: Do not overwrite error code when domain adding fails + - thunderbolt: Wait a bit longer for root switch config space + - thunderbolt: Wait a bit longer for ICM to authenticate the active NVM + - thunderbolt: Handle rejected Thunderbolt devices + - thunderbolt: Factor common ICM add and update operations out + - thunderbolt: Correct function name in kernel-doc comment + - thunderbolt: Add tb_switch_get() + - thunderbolt: Add tb_switch_find_by_route() + - thunderbolt: Add tb_xdomain_find_by_route() + - thunderbolt: Add constant for approval timeout + - thunderbolt: Move driver ready handling to struct icm + - thunderbolt: Add 'boot' attribute for devices + - thunderbolt: Add support for preboot ACL + - thunderbolt: Introduce USB only (SL4) security level + - thunderbolt: Add support for Intel Titan Ridge + + * QCA9377 requires more IRAM banks for its new firmware (LP: #1748345) + - ath10k: update the IRAM bank number for QCA9377 + + * Fix an issue that when system in S3, USB keyboard can't wake up the system. + (LP: #1759511) + - ACPI / PM: Allow deeper wakeup power states with no _SxD nor _SxW + + * cxl: Fix timebase synchronization status on POWER9 missing (CAPI) + (LP: #1757228) + - cxl: Fix timebase synchronization status on P9 + + * [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug + fixes (LP: #1752182) + - scsi: lpfc: Fix frequency of Release WQE CQEs + - scsi: lpfc: Increase CQ and WQ sizes for SCSI + - scsi: lpfc: move placement of target destroy on driver detach + - scsi: lpfc: correct debug counters for abort + - scsi: lpfc: Add WQ Full Logic for NVME Target + - scsi: lpfc: Fix PRLI handling when topology type changes + - scsi: lpfc: Fix IO failure during hba reset testing with nvme io. + - scsi: lpfc: Fix RQ empty firmware trap + - scsi: lpfc: Allow set of maximum outstanding SCSI cmd limit for a target + - scsi: lpfc: Fix soft lockup in lpfc worker thread during LIP testing + - scsi: lpfc: Fix issue_lip if link is disabled + - scsi: lpfc: Indicate CONF support in NVMe PRLI + - scsi: lpfc: Fix SCSI io host reset causing kernel crash + - scsi: lpfc: Validate adapter support for SRIU option + - scsi: lpfc: Fix header inclusion in lpfc_nvmet + - scsi: lpfc: Treat SCSI Write operation Underruns as an error + - scsi: lpfc: Fix nonrecovery of NVME controller after cable swap. + - scsi: lpfc: update driver version to 11.4.0.7 + - scsi: lpfc: Update 11.4.0.7 modified files for 2018 Copyright + - scsi: lpfc: Rework lpfc to allow different sli4 cq and eq handlers + - scsi: lpfc: Rework sli4 doorbell infrastructure + - scsi: lpfc: Add SLI-4 if_type=6 support to the code base + - scsi: lpfc: Add push-to-adapter support to sli4 + - scsi: lpfc: Add PCI Ids for if_type=6 hardware + - scsi: lpfc: Add 64G link speed support + - scsi: lpfc: Add if_type=6 support for cycling valid bits + - scsi: lpfc: Enable fw download on if_type=6 devices + - scsi: lpfc: Add embedded data pointers for enhanced performance + - scsi: lpfc: Fix nvme embedded io length on new hardware + - scsi: lpfc: Work around NVME cmd iu SGL type + - scsi: lpfc: update driver version to 12.0.0.0 + - scsi: lpfc: Change Copyright of 12.0.0.0 modified files to 2018 + - scsi: lpfc: use __raw_writeX on DPP copies + - scsi: lpfc: Add missing unlock in WQ full logic + + * /dev/bcache/by-uuid links not created after reboot (LP: #1729145) + - SAUCE: (no-up) bcache: decouple emitting a cached_dev CHANGE uevent + + * DKMS driver builds fail with: Cannot use CONFIG_STACK_VALIDATION=y, please + install libelf-dev, libelf-devel or elfutils-libelf-devel (LP: #1760876) + - [Packaging] include the retpoline extractor in the headers + + * Use med_with_dipm SATA LPM to save more power for mobile platforms + (LP: #1759547) + - [Config] CONFIG_SATA_MOBILE_LPM_POLICY=3 + + * Miscellaneous Ubuntu changes + - [Packaging] Only install cloud init files when do_tools_common=true + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + -- Seth Forshee Thu, 12 Apr 2018 09:30:56 -0500 + +linux (4.16.0-3.4) bionic; urgency=medium + + * Allow multiple mounts of zfs datasets (LP: #1759848) + - SAUCE: Allow mounting datasets more than once (LP: #1759848) + + * zfs system process hung on container stop/delete (LP: #1754584) + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + - Revert "UBUNTU: SAUCE: Fix non-prefaulted page deadlock (LP: #1754584)" + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + + * ubuntu_zram_smoke test will cause soft lockup on Artful ThunderX ARM64 + (LP: #1755073) + - SAUCE: crypto: thunderx_zip: Fix fallout from CONFIG_VMAP_STACK + + * CAPI Flash (cxlflash) update (LP: #1752672) + - SAUCE: cxlflash: Preserve number of interrupts for master contexts + - SAUCE: cxlflash: Avoid clobbering context control register value + - SAUCE: cxlflash: Add argument identifier names + - SAUCE: cxlflash: Introduce OCXL backend + - SAUCE: cxlflash: Hardware AFU for OCXL + - SAUCE: cxlflash: Read host function configuration + - SAUCE: cxlflash: Setup function acTag range + - SAUCE: cxlflash: Read host AFU configuration + - SAUCE: cxlflash: Setup AFU acTag range + - SAUCE: cxlflash: Setup AFU PASID + - SAUCE: cxlflash: Adapter context support for OCXL + - SAUCE: cxlflash: Use IDR to manage adapter contexts + - SAUCE: cxlflash: Support adapter file descriptors for OCXL + - SAUCE: cxlflash: Support adapter context discovery + - SAUCE: cxlflash: Support image reload policy modification + - SAUCE: cxlflash: MMIO map the AFU + - SAUCE: cxlflash: Support starting an adapter context + - SAUCE: cxlflash: Support process specific mappings + - SAUCE: cxlflash: Support AFU state toggling + - SAUCE: cxlflash: Support reading adapter VPD data + - SAUCE: cxlflash: Setup function OCXL link + - SAUCE: cxlflash: Setup OCXL transaction layer + - SAUCE: cxlflash: Support process element lifecycle + - SAUCE: cxlflash: Support AFU interrupt management + - SAUCE: cxlflash: Support AFU interrupt mapping and registration + - SAUCE: cxlflash: Support starting user contexts + - SAUCE: cxlflash: Support adapter context polling + - SAUCE: cxlflash: Support adapter context reading + - SAUCE: cxlflash: Support adapter context mmap and release + - SAUCE: cxlflash: Support file descriptor mapping + - SAUCE: cxlflash: Introduce object handle fop + - SAUCE: cxlflash: Setup LISNs for user contexts + - SAUCE: cxlflash: Setup LISNs for master contexts + - SAUCE: cxlflash: Update synchronous interrupt status bits + - SAUCE: cxlflash: Introduce OCXL context state machine + - SAUCE: cxlflash: Register for translation errors + - SAUCE: cxlflash: Support AFU reset + - SAUCE: cxlflash: Enable OCXL operations + + * [Artful][Wyse 3040] System hang when trying to enable an offlined CPU core + (LP: #1736393) + - SAUCE: drm/i915:Don't set chip specific data + - SAUCE: drm/i915: make previous commit affects Wyse 3040 only + + * zed process consuming 100% cpu (LP: #1751796) + - SAUCE: Fix ioctl loop-spin in zed (LP: #1751796) + + * Ubuntu18.04:PowerPC - Set Transparent Huge Pages (THP) by default to + "always" (LP: #1753708) + - Config: Set TRANSPARENT_HUGEPAGE_ALWAYS=y on ppc64el + + * retpoline hints: primary infrastructure and initial hints (LP: #1758856) + - [Packaging] retpoline -- add safe usage hint support + - [Packaging] retpoline-check -- only report additions + - [Packaging] retpoline -- widen indirect call/jmp detection + - [Packaging] retpoline -- elide %rip relative indirections + - [Packaging] retpoline -- clear hint information from packages + - SAUCE: apm -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: EFI -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: early/late -- annotate indirect calls in early/late initialisation + code + - SAUCE: vga_set_mode -- avoid jump tables + - [Config] retpoine -- switch to new format + + * Miscellaneous Ubuntu changes + - [Packaging] final-checks -- remove check for empty retpoline files + - [Packaging] skip cloud tools packaging when not building package + + [ Upstream Kernel Changes ] + + * Rebase to v4.16 + + -- Seth Forshee Mon, 02 Apr 2018 16:15:36 -0500 + +linux (4.16.0-2.3) bionic; urgency=medium + + * devpts: handle bind-mounts (LP: #1755857) + - SAUCE: devpts: hoist out check for DEVPTS_SUPER_MAGIC + - SAUCE: devpts: resolve devpts bind-mounts + - SAUCE: devpts: comment devpts_mntget() + - SAUCE: selftests: add devpts selftests + + * [bionic][arm64] d-i: add hisi_sas_v3_hw to scsi-modules (LP: #1756103) + - d-i: add hisi_sas_v3_hw to scsi-modules + + * [Bionic][ARM64] PCI and SAS driver patches for hip08 SoCs (LP: #1756094) + - SAUCE: scsi: hisi_sas: config for hip08 ES + - SAUCE: scsi: hisi_sas: export device table of v3 hw to userspace + + * s390/crypto: Fix kernel crash on aes_s390 module remove (LP: #1753424) + - SAUCE: s390/crypto: Fix kernel crash on aes_s390 module remove. + + * Fix ARC hit rate (LP: #1755158) + - SAUCE: Fix ARC hit rate (LP: #1755158) + + * ZFS setgid broken on 0.7 (LP: #1753288) + - SAUCE: Fix ZFS setgid + + * CONFIG_EFI=y on armhf (LP: #1726362) + - [Config] CONFIG_EFI=y on armhf, reconcile secureboot EFI settings + + * [Feature] Add xHCI debug device support in the driver (LP: #1730832) + - [Config] CONFIG_USB_XHCI_DBGCAP=y + + * retpoline: ignore %cs:0xNNN constant indirections (LP: #1752655) + - [Packaging] retpoline -- elide %cs:0xNNNN constants on i386 + - [Config] retpoline -- clean up i386 retpoline files + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline-extract: flag *0xNNN(%reg) branches + - [Config] fix up retpoline abi files + - [Config] fix up retpoline abi files + - d-i: Add netsec to nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc6 + + -- Seth Forshee Mon, 19 Mar 2018 14:09:49 -0500 + +linux (4.16.0-1.2) bionic; urgency=medium + + * Driver not found in Ubuntu kernel does not detect interface (LP: #1745927) + - d-i: add cxgb4 to nic-modules + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_INDIRECT_PIO=y + - SAUCE: LIB: Introduce a generic PIO mapping method + - SAUCE: PCI: Remove unused __weak attribute in pci_register_io_range() + - SAUCE: PCI: Add fwnode handler as input param of pci_register_io_range() + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - SAUCE: ACPI / scan: do not enumerate Indirect IO host children + - SAUCE: HISI LPC: Add ACPI support + - SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver + + * Miscellaneous Ubuntu changes + - SAUCE: tools: use CC for linking acpi tools + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc3 + + -- Seth Forshee Wed, 28 Feb 2018 10:17:23 -0600 + +linux (4.16.0-0.1) bionic; urgency=medium + + * retpoline abi files are empty on i386 (LP: #1751021) + - [Packaging] retpoline-extract -- instantiate retpoline files for i386 + - [Packaging] final-checks -- sanity checking ABI contents + - [Packaging] final-checks -- check for empty retpoline files + + * Miscellaneous upstream changes + - disable vbox build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc2 + + -- Seth Forshee Thu, 22 Feb 2018 08:58:57 -0600 + +linux (4.16.0-0.0) bionic; urgency=medium + + * Dummy entry + + -- Seth Forshee Wed, 21 Feb 2018 14:33:13 -0600 + +linux (4.15.0-10.11) bionic; urgency=medium + + * linux: 4.15.0-10.11 -proposed tracker (LP: #1749250) + + * "swiotlb: coherent allocation failed" dmesg spam with linux 4.15.0-9.10 + (LP: #1749202) + - swiotlb: suppress warning when __GFP_NOWARN is set + - drm/ttm: specify DMA_ATTR_NO_WARN for huge page pools + + * linux-tools: perf incorrectly linking libbfd (LP: #1748922) + - SAUCE: tools -- add ability to disable libbfd + - [Packaging] correct disablement of libbfd + + * [Artful] Realtek ALC225: 2 secs noise when a headset plugged in + (LP: #1744058) + - ALSA: hda/realtek - update ALC225 depop optimize + + * [Artful] Support headset mode for DELL WYSE (LP: #1723913) + - SAUCE: ALSA: hda/realtek - Add support headset mode for DELL WYSE + + * headset mic can't be detected on two Dell machines (LP: #1748807) + - ALSA: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 + - ALSA: hda - Fix headset mic detection problem for two Dell machines + + * Bionic update to v4.15.3 stable release (LP: #1749191) + - ip6mr: fix stale iterator + - net: igmp: add a missing rcu locking section + - qlcnic: fix deadlock bug + - qmi_wwan: Add support for Quectel EP06 + - r8169: fix RTL8168EP take too long to complete driver initialization. + - tcp: release sk_frag.page in tcp_disconnect + - vhost_net: stop device during reset owner + - ipv6: addrconf: break critical section in addrconf_verify_rtnl() + - ipv6: change route cache aging logic + - Revert "defer call to mem_cgroup_sk_alloc()" + - net: ipv6: send unsolicited NA after DAD + - rocker: fix possible null pointer dereference in + rocker_router_fib_event_work + - tcp_bbr: fix pacing_gain to always be unity when using lt_bw + - cls_u32: add missing RCU annotation. + - ipv6: Fix SO_REUSEPORT UDP socket with implicit sk_ipv6only + - soreuseport: fix mem leak in reuseport_add_sock() + - net_sched: get rid of rcu_barrier() in tcf_block_put_ext() + - net: sched: fix use-after-free in tcf_block_put_ext + - media: mtk-vcodec: add missing MODULE_LICENSE/DESCRIPTION + - media: soc_camera: soc_scale_crop: add missing + MODULE_DESCRIPTION/AUTHOR/LICENSE + - media: tegra-cec: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: uniphier: fix mismatch between license text and MODULE_LICENSE + - crypto: tcrypt - fix S/G table for test_aead_speed() + - Linux 4.15.3 + + * bnx2x_attn_int_deasserted3:4323 MC assert! (LP: #1715519) // + CVE-2018-1000026 + - net: create skb_gso_validate_mac_len() + - bnx2x: disable GSO where gso_size is too big for hardware + + * ethtool -p fails to light NIC LED on HiSilicon D05 systems (LP: #1748567) + - net: hns: add ACPI mode support for ethtool -p + + * CVE-2017-5715 (Spectre v2 Intel) + - [Packaging] retpoline files must be sorted + - [Packaging] pull in retpoline files + + * [Feature] PXE boot with Intel Omni-Path (LP: #1712031) + - d-i: Add hfi1 to nic-modules + + * CVE-2017-5715 (Spectre v2 retpoline) + - [Packaging] retpoline -- add call site validation + - [Config] disable retpoline checks for first upload + + * Do not duplicate changelog entries assigned to more than one bug or CVE + (LP: #1743383) + - [Packaging] git-ubuntu-log -- handle multiple bugs/cves better + + -- Seth Forshee Tue, 13 Feb 2018 11:33:58 -0600 + +linux (4.15.0-9.10) bionic; urgency=medium + + * linux: 4.15.0-9.10 -proposed tracker (LP: #1748244) + + * Miscellaneous Ubuntu changes + - [Debian] tests -- remove gcc-multilib dependency for arm64 + + -- Seth Forshee Thu, 08 Feb 2018 11:25:04 -0600 + +linux (4.15.0-8.9) bionic; urgency=medium + + * linux: 4.15.0-8.9 -proposed tracker (LP: #1748075) + + * Bionic update to v4.15.2 stable release (LP: #1748072) + - KVM: x86: Make indirect calls in emulator speculation safe + - KVM: VMX: Make indirect call speculation safe + - module/retpoline: Warn about missing retpoline in module + - x86/cpufeatures: Add CPUID_7_EDX CPUID leaf + - x86/cpufeatures: Add Intel feature bits for Speculation Control + - x86/cpufeatures: Add AMD feature bits for Speculation Control + - x86/msr: Add definitions for new speculation control MSRs + - x86/pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown + - x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 microcodes + - x86/speculation: Add basic IBPB (Indirect Branch Prediction Barrier) support + - x86/alternative: Print unadorned pointers + - x86/nospec: Fix header guards names + - x86/bugs: Drop one "mitigation" from dmesg + - x86/cpu/bugs: Make retpoline module warning conditional + - x86/cpufeatures: Clean up Spectre v2 related CPUID flags + - x86/retpoline: Simplify vmexit_fill_RSB() + - x86/speculation: Simplify indirect_branch_prediction_barrier() + - auxdisplay: img-ascii-lcd: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - iio: adc/accel: Fix up module licenses + - pinctrl: pxa: pxa2xx: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - KVM: nVMX: Eliminate vmcs02 pool + - KVM: VMX: introduce alloc_loaded_vmcs + - objtool: Improve retpoline alternative handling + - objtool: Add support for alternatives at the end of a section + - objtool: Warn on stripped section symbol + - x86/mm: Fix overlap of i386 CPU_ENTRY_AREA with FIX_BTMAP + - x86/spectre: Check CONFIG_RETPOLINE in command line parser + - x86/entry/64: Remove the SYSCALL64 fast path + - x86/entry/64: Push extra regs right away + - x86/asm: Move 'status' from thread_struct to thread_info + - Documentation: Document array_index_nospec + - array_index_nospec: Sanitize speculative array de-references + - x86: Implement array_index_mask_nospec + - x86: Introduce barrier_nospec + - x86: Introduce __uaccess_begin_nospec() and uaccess_try_nospec + - x86/usercopy: Replace open coded stac/clac with __uaccess_{begin, end} + - x86/uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec + - x86/get_user: Use pointer masking to limit speculation + - x86/syscall: Sanitize syscall table de-references under speculation + - vfs, fdtable: Prevent bounds-check bypass via speculative execution + - nl80211: Sanitize array index in parse_txq_params + - x86/spectre: Report get_user mitigation for spectre_v1 + - x86/spectre: Fix spelling mistake: "vunerable"-> "vulnerable" + - x86/cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel + - x86/speculation: Use Indirect Branch Prediction Barrier in context switch + - x86/paravirt: Remove 'noreplace-paravirt' cmdline option + - KVM: VMX: make MSR bitmaps per-VCPU + - x86/kvm: Update spectre-v1 mitigation + - x86/retpoline: Avoid retpolines for built-in __init functions + - x86/spectre: Simplify spectre_v2 command line parsing + - x86/pti: Mark constant arrays as __initconst + - x86/speculation: Fix typo IBRS_ATT, which should be IBRS_ALL + - KVM/x86: Update the reverse_cpuid list to include CPUID_7_EDX + - KVM/x86: Add IBPB support + - KVM/VMX: Emulate MSR_IA32_ARCH_CAPABILITIES + - KVM/VMX: Allow direct access to MSR_IA32_SPEC_CTRL + - KVM/SVM: Allow direct access to MSR_IA32_SPEC_CTRL + - serial: core: mark port as initialized after successful IRQ change + - fpga: region: release of_parse_phandle nodes after use + - Linux 4.15.2 + + * Add support for the NIC on SynQuacer E-Series boards (LP: #1747792) + - net: phy: core: remove now uneeded disabling of interrupts + - [Config] CONFIG_NET_VENDOR_SOCIONEXT=y & CONFIG_SNI_NETSEC=m + - net: socionext: Add Synquacer NetSec driver + - net: socionext: include linux/io.h to fix build + - net: socionext: Fix error return code in netsec_netdev_open() + + * [Artful/Bionic] [Config] enable EDAC_GHES for ARM64 (LP: #1747746) + - [Config] CONFIG_EDAC_GHES=y + + * support thunderx2 vendor pmu events (LP: #1747523) + - perf pmu: Pass pmu as a parameter to get_cpuid_str() + - perf tools arm64: Add support for get_cpuid_str function. + - perf pmu: Add helper function is_pmu_core to detect PMU CORE devices + - perf vendor events arm64: Add ThunderX2 implementation defined pmu core + events + - perf pmu: Add check for valid cpuid in perf_pmu__find_map() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Miscellaneous Ubuntu changes + - [Config] Fix CONFIG_PROFILE_ALL_BRANCHES annotations + + -- Seth Forshee Wed, 07 Feb 2018 21:13:27 -0600 + +linux (4.15.0-7.8) bionic; urgency=medium + + * Bionic update to v4.15.1 stable release (LP: #1747169) + - Bluetooth: hci_serdev: Init hci_uart proto_lock to avoid oops + - tools/gpio: Fix build error with musl libc + - gpio: stmpe: i2c transfer are forbiden in atomic context + - gpio: Fix kernel stack leak to userspace + - ALSA: hda - Reduce the suspend time consumption for ALC256 + - crypto: ecdh - fix typo in KPP dependency of CRYPTO_ECDH + - crypto: aesni - handle zero length dst buffer + - crypto: aesni - fix typo in generic_gcmaes_decrypt + - crypto: aesni - add wrapper for generic gcm(aes) + - crypto: aesni - Fix out-of-bounds access of the data buffer in generic-gcm- + aesni + - crypto: aesni - Fix out-of-bounds access of the AAD buffer in generic-gcm- + aesni + - crypto: inside-secure - fix hash when length is a multiple of a block + - crypto: inside-secure - avoid unmapping DMA memory that was not mapped + - crypto: sha3-generic - fixes for alignment and big endian operation + - crypto: af_alg - whitelist mask and type + - HID: wacom: EKR: ensure devres groups at higher indexes are released + - HID: wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events + - power: reset: zx-reboot: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: iop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: ath79: add missing MODULE_DESCRIPTION/LICENSE + - mtd: nand: denali_pci: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - igb: Free IRQs when device is hotplugged + - ima/policy: fix parsing of fsuuid + - scsi: aacraid: Fix udev inquiry race condition + - scsi: aacraid: Fix hang in kdump + - scsi: storvsc: missing error code in storvsc_probe() + - staging: lustre: separate a connection destroy from free struct kib_conn + - staging: ccree: NULLify backup_info when unused + - staging: ccree: fix fips event irq handling build + - tty: fix data race between tty_init_dev and flush of buf + - usb: option: Add support for FS040U modem + - USB: serial: pl2303: new device id for Chilitag + - USB: cdc-acm: Do not log urb submission errors on disconnect + - CDC-ACM: apply quirk for card reader + - USB: serial: io_edgeport: fix possible sleep-in-atomic + - usbip: prevent bind loops on devices attached to vhci_hcd + - usbip: list: don't list devices attached to vhci_hcd + - USB: serial: simple: add Motorola Tetra driver + - usb: f_fs: Prevent gadget unbind if it is already unbound + - usb: uas: unconditionally bring back host after reset + - usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc() + - ANDROID: binder: remove waitqueue when thread exits. + - android: binder: use VM_ALLOC to get vm area + - mei: me: allow runtime pm for platform with D0i3 + - serial: 8250_of: fix return code when probe function fails to get reset + - serial: 8250_uniphier: fix error return code in uniphier_uart_probe() + - serial: 8250_dw: Revert "Improve clock rate setting" + - serial: imx: Only wakeup via RTSDEN bit if the system has RTS/CTS + - spi: imx: do not access registers while clocks disabled + - iio: adc: stm32: fix scan of multiple channels with DMA + - iio: chemical: ccs811: Fix output of IIO_CONCENTRATION channels + - test_firmware: fix missing unlock on error in config_num_requests_store() + - Input: synaptics-rmi4 - unmask F03 interrupts when port is opened + - Input: synaptics-rmi4 - do not delete interrupt memory too early + - x86/efi: Clarify that reset attack mitigation needs appropriate userspace + - Linux 4.15.1 + + * Dell XPS 13 9360 bluetooth (Atheros) won't connect after resume + (LP: #1744712) + - Revert "Bluetooth: btusb: fix QCA Rome suspend/resume" + - Bluetooth: btusb: Restore QCA Rome suspend/resume fix with a "rewritten" + version + + * apparmor profile load in stacked policy container fails (LP: #1746463) + - SAUCE: apparmor: fix display of .ns_name for containers + + -- Seth Forshee Sun, 04 Feb 2018 11:56:32 +0100 + +linux (4.15.0-6.7) bionic; urgency=low + + * upload urgency should be medium by default (LP: #1745338) + - [Packaging] update urgency to medium by default + + * Shutdown hang on 16.04 with iscsi targets (LP: #1569925) + - scsi: libiscsi: Allow sd_shutdown on bad transport + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu1, zfs to 0.7.5-1ubuntu1 + - Revert "UBUNTU: SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM" + - Revert "UBUNTU: SAUCE: mm: disable vma based swap readahead by default" + + [ Upstream Kernel Changes ] + + * Rebase to v4.15 + + -- Seth Forshee Mon, 29 Jan 2018 08:47:07 -0600 + +linux (4.15.0-5.6) bionic; urgency=low + + * $(LOCAL_ENV_CC) and $(LOCAL_ENV_DISTCC_HOSTS) should be properly quoted + (LP: #1744077) + - [Debian] pass LOCAL_ENV_CC and LOCAL_ENV_DISTCC_HOSTS properly + + * Missing install-time driver for QLogic QED 25/40/100Gb Ethernet NIC + (LP: #1743638) + - [d-i] Add qede to nic-modules udeb + + * boot failure on AMD Raven + WesternXT (LP: #1742759) + - SAUCE: drm/amdgpu: add atpx quirk handling (v2) + + * Unable to handle kernel NULL pointer dereference at isci_task_abort_task + (LP: #1726519) + - SAUCE: Revert "scsi: libsas: allow async aborts" + + * Update Ubuntu-4.15.0 config to support Intel Atom devices (LP: #1739939) + - [Config] CONFIG_SERIAL_DEV_BUS=y, CONFIG_SERIAL_DEV_CTRL_TTYPORT=y + + * Miscellaneous Ubuntu changes + - Rebase to v4.15-rc7 + - [Config] CONFIG_CPU_ISOLATION=y + - [Config] Update annotations following config review + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.6-dfsg-1 + - ubuntu: vbox: build fixes for 4.15 + - ubuntu: vbox -- update to 5.2.6-dfsg-2 + - hio: updates for timer api changes in 4.15 + - enable hio build + - Rebase to v4.15-rc9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc9 + + -- Seth Forshee Mon, 22 Jan 2018 10:16:05 -0600 + +linux (4.15.0-4.5) bionic; urgency=low + + * [0cf3:e010] QCA6174A XR failed to pair with bt 4.0 device (LP: #1741166) + - SAUCE: Bluetooth: btusb: Add support for 0cf3:e010 + + * External HDMI monitor failed to show screen on Lenovo X1 series + (LP: #1738523) + - SAUCE: drm/i915: Disable writing of TMDS_OE on Lenovo ThinkPad X1 series + + * Miscellaneous Ubuntu changes + - [Debian] autoreconstruct - add resoration of execute permissions + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Wed, 10 Jan 2018 10:24:22 -0600 + +linux (4.15.0-3.4) bionic; urgency=low + + * ubuntu/xr-usb-serial didn't get built in zesty and artful (LP: #1733281) + - SAUCE: make sure ubuntu/xr-usb-serial builds for x86 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc6 + + -- Seth Forshee Wed, 03 Jan 2018 20:20:43 -0600 + +linux (4.15.0-2.3) bionic; urgency=low + + * nvidia-graphics-drivers-384 384.90-0ubuntu6 ADT test failure with linux + 4.15.0-1.2 (LP: #1737752) + - x86/mm: Unbreak modules that use the DMA API + + * Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models (LP: #1734147) + - [Config] CONFIG_SPI_INTEL_SPI_*=n + + * power: commonise configs IBMVETH/IBMVSCSI and ensure both are in linux-image + and udebs (LP: #1521712) + - [Config] Include ibmvnic in nic-modules + + * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) + - [Config] Enable support for emulation of deprecated ARMv8 instructions + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl with 4.15 compat fix (LP:#1737761) + - Enable zfs build + - [Debian] add icp to zfs-modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Mon, 18 Dec 2017 09:27:13 -0600 + +linux (4.15.0-1.2) bionic; urgency=low + + * Disabling zfs does not always disable module checks for the zfs modules + (LP: #1737176) + - [Packaging] disable zfs module checks when zfs is disabled + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_UNWINDER_FRAME_POINTER=y for amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc3 + + -- Seth Forshee Sun, 10 Dec 2017 22:07:19 -0600 + +linux (4.15.0-0.1) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.2.2-dfsg-2 + - ubuntu: vbox: build fixes for 4.15 + - disable hio build + - [Config] Update kernel lockdown options to fix build errors + - Disable zfs build + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc2 + + -- Seth Forshee Fri, 08 Dec 2017 13:55:42 -0600 + +linux (4.14.0-11.13) bionic; urgency=low + + * linux: 4.14.0-11.13 -proposed tracker (LP: #1736168) + + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Bionic update to v4.14.3 stable release (LP: #1735843) + - s390: fix transactional execution control register handling + - s390/noexec: execute kexec datamover without DAT + - s390/runtime instrumention: fix possible memory corruption + - s390/guarded storage: fix possible memory corruption + - s390/disassembler: add missing end marker for e7 table + - s390/disassembler: increase show_code buffer size + - ACPI / PM: Fix acpi_pm_notifier_lock vs flush_workqueue() deadlock + - ACPI / EC: Fix regression related to triggering source of EC event handling + - cpufreq: schedutil: Reset cached_raw_freq when not in sync with next_freq + - serdev: fix registration of second slave + - sched: Make resched_cpu() unconditional + - lib/mpi: call cond_resched() from mpi_powm() loop + - x86/boot: Fix boot failure when SMP MP-table is based at 0 + - x86/decoder: Add new TEST instruction pattern + - x86/entry/64: Fix entry_SYSCALL_64_after_hwframe() IRQ tracing + - x86/entry/64: Add missing irqflags tracing to native_load_gs_index() + - perf/x86/intel: Hide TSX events when RTM is not supported + - arm64: Implement arch-specific pte_access_permitted() + - ARM: 8722/1: mm: make STRICT_KERNEL_RWX effective for LPAE + - ARM: 8721/1: mm: dump: check hardware RO bit for LPAE + - uapi: fix linux/tls.h userspace compilation error + - uapi: fix linux/rxrpc.h userspace compilation errors + - MIPS: cmpxchg64() and HAVE_VIRT_CPU_ACCOUNTING_GEN don't work for 32-bit SMP + - MIPS: ralink: Fix MT7628 pinmux + - MIPS: ralink: Fix typo in mt7628 pinmux function + - net: mvneta: fix handling of the Tx descriptor counter + - nbd: wait uninterruptible for the dead timeout + - nbd: don't start req until after the dead connection logic + - PM / OPP: Add missing of_node_put(np) + - PCI/ASPM: Account for downstream device's Port Common_Mode_Restore_Time + - PCI/ASPM: Use correct capability pointer to program LTR_L1.2_THRESHOLD + - PCI: hv: Use effective affinity mask + - PCI: Set Cavium ACS capability quirk flags to assert RR/CR/SV/UF + - PCI: Apply Cavium ThunderX ACS quirk to more Root Ports + - ALSA: hda: Add Raven PCI ID + - dm integrity: allow unaligned bv_offset + - dm cache: fix race condition in the writeback mode overwrite_bio + optimisation + - dm crypt: allow unaligned bv_offset + - dm zoned: ignore last smaller runt zone + - dm mpath: remove annoying message of 'blk_get_request() returned -11' + - dm bufio: fix integer overflow when limiting maximum cache size + - ovl: Put upperdentry if ovl_check_origin() fails + - dm: allocate struct mapped_device with kvzalloc + - sched/rt: Simplify the IPI based RT balancing logic + - MIPS: pci: Remove KERN_WARN instance inside the mt7620 driver + - dm: fix race between dm_get_from_kobject() and __dm_destroy() + - dm: discard support requires all targets in a table support discards + - MIPS: Fix odd fp register warnings with MIPS64r2 + - MIPS: Fix MIPS64 FP save/restore on 32-bit kernels + - MIPS: dts: remove bogus bcm96358nb4ser.dtb from dtb-y entry + - MIPS: Fix an n32 core file generation regset support regression + - MIPS: BCM47XX: Fix LED inversion for WRT54GSv1 + - MIPS: math-emu: Fix final emulation phase for certain instructions + - rt2x00usb: mark device removed when get ENOENT usb error + - mm/z3fold.c: use kref to prevent page free/compact race + - autofs: don't fail mount for transient error + - nilfs2: fix race condition that causes file system corruption + - fscrypt: lock mutex before checking for bounce page pool + - eCryptfs: use after free in ecryptfs_release_messaging() + - libceph: don't WARN() if user tries to add invalid key + - bcache: check ca->alloc_thread initialized before wake up it + - fs: guard_bio_eod() needs to consider partitions + - fanotify: fix fsnotify_prepare_user_wait() failure + - isofs: fix timestamps beyond 2027 + - btrfs: change how we decide to commit transactions during flushing + - f2fs: expose some sectors to user in inline data or dentry case + - NFS: Fix typo in nomigration mount option + - NFS: Revert "NFS: Move the flock open mode check into nfs_flock()" + - nfs: Fix ugly referral attributes + - NFS: Avoid RCU usage in tracepoints + - NFS: revalidate "." etc correctly on "open". + - nfsd: deal with revoked delegations appropriately + - rtlwifi: rtl8192ee: Fix memory leak when loading firmware + - rtlwifi: fix uninitialized rtlhal->last_suspend_sec time + - iwlwifi: fix firmware names for 9000 and A000 series hw + - md: fix deadlock error in recent patch. + - md: don't check MD_SB_CHANGE_CLEAN in md_allow_write + - Bluetooth: btqcomsmd: Add support for BD address setup + - md/bitmap: revert a patch + - fsnotify: clean up fsnotify_prepare/finish_user_wait() + - fsnotify: pin both inode and vfsmount mark + - fsnotify: fix pinning group in fsnotify_prepare_user_wait() + - ata: fixes kernel crash while tracing ata_eh_link_autopsy event + - ext4: fix interaction between i_size, fallocate, and delalloc after a crash + - ext4: prevent data corruption with inline data + DAX + - ext4: prevent data corruption with journaling + DAX + - ALSA: pcm: update tstamp only if audio_tstamp changed + - ALSA: usb-audio: Add sanity checks to FE parser + - ALSA: usb-audio: Fix potential out-of-bound access at parsing SU + - ALSA: usb-audio: Add sanity checks in v2 clock parsers + - ALSA: timer: Remove kernel warning at compat ioctl error paths + - ALSA: hda/realtek - Fix ALC275 no sound issue + - ALSA: hda: Fix too short HDMI/DP chmap reporting + - ALSA: hda - Fix yet remaining issue with vmaster 0dB initialization + - ALSA: hda/realtek - Fix ALC700 family no sound issue + - ASoC: sun8i-codec: Invert Master / Slave condition + - ASoC: sun8i-codec: Fix left and right channels inversion + - ASoC: sun8i-codec: Set the BCLK divider + - mfd: lpc_ich: Avoton/Rangeley uses SPI_BYT method + - fix a page leak in vhost_scsi_iov_to_sgl() error recovery + - 9p: Fix missing commas in mount options + - fs/9p: Compare qid.path in v9fs_test_inode + - net/9p: Switch to wait_event_killable() + - scsi: qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() + - scsi: sd_zbc: Fix sd_zbc_read_zoned_characteristics() + - scsi: lpfc: fix pci hot plug crash in timer management routines + - scsi: lpfc: fix pci hot plug crash in list_add call + - scsi: lpfc: Fix crash receiving ELS while detaching driver + - scsi: lpfc: Fix FCP hba_wqidx assignment + - scsi: lpfc: Fix oops if nvmet_fc_register_targetport fails + - iscsi-target: Make TASK_REASSIGN use proper se_cmd->cmd_kref + - iscsi-target: Fix non-immediate TMR reference leak + - target: fix null pointer regression in core_tmr_drain_tmr_list + - target: fix buffer offset in core_scsi3_pri_read_full_status + - target: Fix QUEUE_FULL + SCSI task attribute handling + - target: Fix caw_sem leak in transport_generic_request_failure + - target: Fix quiese during transport_write_pending_qf endless loop + - target: Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK + - mtd: Avoid probe failures when mtd->dbg.dfs_dir is invalid + - mtd: nand: Export nand_reset() symbol + - mtd: nand: atmel: Actually use the PM ops + - mtd: nand: omap2: Fix subpage write + - mtd: nand: Fix writing mtdoops to nand flash. + - mtd: nand: mtk: fix infinite ECC decode IRQ issue + - mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush sequence + - p54: don't unregister leds when they are not initialized + - block: Fix a race between blk_cleanup_queue() and timeout handling + - raid1: prevent freeze_array/wait_all_barriers deadlock + - genirq: Track whether the trigger type has been set + - irqchip/gic-v3: Fix ppi-partitions lookup + - lockd: double unregister of inetaddr notifiers + - KVM: PPC: Book3S HV: Don't call real-mode XICS hypercall handlers if not + enabled + - KVM: nVMX: set IDTR and GDTR limits when loading L1 host state + - KVM: SVM: obey guest PAT + - kvm: vmx: Reinstate support for CPUs without virtual NMI + - dax: fix PMD faults on zero-length files + - dax: fix general protection fault in dax_alloc_inode + - SUNRPC: Fix tracepoint storage issues with svc_recv and svc_rqst_status + - clk: ti: dra7-atl-clock: fix child-node lookups + - libnvdimm, dimm: clear 'locked' status on successful DIMM enable + - libnvdimm, pfn: make 'resource' attribute only readable by root + - libnvdimm, namespace: fix label initialization to use valid seq numbers + - libnvdimm, region : make 'resource' attribute only readable by root + - libnvdimm, namespace: make 'resource' attribute only readable by root + - svcrdma: Preserve CB send buffer across retransmits + - IB/srpt: Do not accept invalid initiator port names + - IB/cm: Fix memory corruption in handling CM request + - IB/hfi1: Fix incorrect available receive user context count + - IB/srp: Avoid that a cable pull can trigger a kernel crash + - IB/core: Avoid crash on pkey enforcement failed in received MADs + - IB/core: Only maintain real QPs in the security lists + - NFC: fix device-allocation error return + - spi-nor: intel-spi: Fix broken software sequencing codes + - i40e: Use smp_rmb rather than read_barrier_depends + - igb: Use smp_rmb rather than read_barrier_depends + - igbvf: Use smp_rmb rather than read_barrier_depends + - ixgbevf: Use smp_rmb rather than read_barrier_depends + - i40evf: Use smp_rmb rather than read_barrier_depends + - fm10k: Use smp_rmb rather than read_barrier_depends + - ixgbe: Fix skb list corruption on Power systems + - parisc: Fix validity check of pointer size argument in new CAS + implementation + - powerpc: Fix boot on BOOK3S_32 with CONFIG_STRICT_KERNEL_RWX + - powerpc/mm/radix: Fix crashes on Power9 DD1 with radix MMU and STRICT_RWX + - powerpc/perf/imc: Use cpu_to_node() not topology_physical_package_id() + - powerpc/signal: Properly handle return value from uprobe_deny_signal() + - powerpc/64s: Fix masking of SRR1 bits on instruction fault + - powerpc/64s/radix: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix 512T hint detection to use >= 128T + - powerpc/64s/hash: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix fork() with 512TB process address space + - powerpc/64s/hash: Allow MAP_FIXED allocations to cross 128TB boundary + - media: Don't do DMA on stack for firmware upload in the AS102 driver + - media: rc: check for integer overflow + - media: rc: nec decoder should not send both repeat and keycode + - cx231xx-cards: fix NULL-deref on missing association descriptor + - media: v4l2-ctrl: Fix flags field on Control events + - media: venus: fix wrong size on dma_free + - media: venus: venc: fix bytesused v4l2_plane field + - media: venus: reimplement decoder stop command + - ARM64: dts: meson-gxl: Add alternate ARM Trusted Firmware reserved memory + zone + - iwlwifi: fix wrong struct for a000 device + - iwlwifi: add a new a000 device + - iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons + - iwlwifi: add new cards for a000 series + - iwlwifi: add new cards for 8265 series + - iwlwifi: add new cards for 8260 series + - iwlwifi: fix PCI IDs and configuration mapping for 9000 series + - iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command + - e1000e: Fix error path in link detection + - e1000e: Fix return value test + - e1000e: Separate signaling for link check/link up + - e1000e: Avoid receiver overrun interrupt bursts + - e1000e: fix buffer overrun while the I219 is processing DMA transactions + - Linux 4.14.3 + + * Miscellaneous Ubuntu changes + - SAUCE: s390/topology: don't inline cpu_to_node + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 04 Dec 2017 09:08:07 -0600 + +linux (4.14.0-10.12) bionic; urgency=low + + * linux: 4.14.0-10.12 -proposed tracker (LP: #1734901) + + * Miscellaneous Ubuntu changes + - SAUCE: Enable the ACPI kernel debugger and acpidbg tool + - [Packaging] Include arch/arm64/kernel/ftrace-mod.o in headers package + + -- Seth Forshee Tue, 28 Nov 2017 08:46:49 -0600 + +linux (4.14.0-9.11) bionic; urgency=low + + * linux: 4.14.0-9.11 -proposed tracker (LP: #1734728) + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to + 0.7.3-1ubuntu1" + + -- Seth Forshee Mon, 27 Nov 2017 12:44:48 -0600 + +linux (4.14.0-8.10) bionic; urgency=low + + * linux: 4.14.0-8.10 -proposed tracker (LP: #1734695) + + * Bionic update to v4.14.2 stable release (LP: #1734694) + - bio: ensure __bio_clone_fast copies bi_partno + - af_netlink: ensure that NLMSG_DONE never fails in dumps + - vxlan: fix the issue that neigh proxy blocks all icmpv6 packets + - net: cdc_ncm: GetNtbFormat endian fix + - fealnx: Fix building error on MIPS + - net/sctp: Always set scope_id in sctp_inet6_skb_msgname + - ima: do not update security.ima if appraisal status is not INTEGRITY_PASS + - serial: omap: Fix EFR write on RTS deassertion + - serial: 8250_fintek: Fix finding base_port with activated SuperIO + - tpm-dev-common: Reject too short writes + - rcu: Fix up pending cbs check in rcu_prepare_for_idle + - mm/pagewalk.c: report holes in hugetlb ranges + - ocfs2: fix cluster hang after a node dies + - ocfs2: should wait dio before inode lock in ocfs2_setattr() + - ipmi: fix unsigned long underflow + - mm/page_alloc.c: broken deferred calculation + - mm/page_ext.c: check if page_ext is not prepared + - coda: fix 'kernel memory exposure attempt' in fsync + - ipmi: Prefer ACPI system interfaces over SMBIOS ones + - Linux 4.14.2 + + * Bionic update to v4.14.1 stable release (LP: #1734693) + - EDAC, sb_edac: Don't create a second memory controller if HA1 is not present + - dmaengine: dmatest: warn user when dma test times out + - media: imon: Fix null-ptr-deref in imon_probe + - media: dib0700: fix invalid dvb_detach argument + - crypto: dh - Fix double free of ctx->p + - crypto: dh - Don't permit 'p' to be 0 + - crypto: dh - Don't permit 'key' or 'g' size longer than 'p' + - crypto: brcm - Explicity ACK mailbox message + - USB: early: Use new USB product ID and strings for DbC device + - USB: usbfs: compute urb->actual_length for isochronous + - USB: Add delay-init quirk for Corsair K70 LUX keyboards + - usb: gadget: f_fs: Fix use-after-free in ffs_free_inst + - USB: serial: metro-usb: stop I/O after failed open + - USB: serial: Change DbC debug device binding ID + - USB: serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update + - USB: serial: garmin_gps: fix I/O after failed probe and remove + - USB: serial: garmin_gps: fix memory leak on probe errors + - selftests/x86/protection_keys: Fix syscall NR redefinition warnings + - x86/MCE/AMD: Always give panic severity for UC errors in kernel context + - platform/x86: peaq-wmi: Add DMI check before binding to the WMI interface + - platform/x86: peaq_wmi: Fix missing terminating entry for peaq_dmi_table + - HID: cp2112: add HIDRAW dependency + - HID: wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection + - rpmsg: glink: Add missing MODULE_LICENSE + - staging: wilc1000: Fix bssid buffer offset in Txq + - staging: sm750fb: Fix parameter mistake in poke32 + - staging: ccree: fix 64 bit scatter/gather DMA ops + - staging: greybus: spilib: fix use-after-free after deregistration + - staging: rtl8188eu: Revert 4 commits breaking ARP + - spi: fix use-after-free at controller deregistration + - sparc32: Add cmpxchg64(). + - sparc64: mmu_context: Add missing include files + - sparc64: Fix page table walk for PUD hugepages + - Linux 4.14.1 + + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + + * enable CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH easily confuse users + (LP: #1732627) + - [Config] CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=n + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 27 Nov 2017 07:43:44 -0600 + +linux (4.14.0-7.9) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: add base infastructure for socket mediation + - SAUCE: apparmor: af_unix mediation + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: manage task security blobs + - SAUCE: LSM stacking: LSM: Infrastructure management of the remaining blobs + - SAUCE: LSM stacking: LSM: general but not extreme module stacking + - SAUCE: LSM stacking: LSM: Complete task_alloc hook + - SAUCE: LSM stacking: fixup procsfs: add smack subdir to attrs + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: check for invalid zero sized writes + - [Config] Run updateconfigs after merging LSM stacking + - [Config] CONFIG_AMD_MEM_ENCRYPT=y + + [ Upstream Kernel Changes ] + + * Rebase to v4.14 + + -- Seth Forshee Mon, 13 Nov 2017 08:12:08 -0600 + +linux (4.14.0-6.8) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: add workarounds to enable ZFS for 4.14 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc8 + + -- Seth Forshee Mon, 06 Nov 2017 11:39:00 -0600 + +linux (4.14.0-5.7) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Fix invocation of dh_prep for dbgsym packages + + -- Seth Forshee Tue, 31 Oct 2017 07:07:23 -0500 + +linux (4.14.0-4.5) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Packaging] virtualbox -- reduce in kernel module versions + - vbox-update: Fix up KERN_DIR definitions + - ubuntu: vbox -- update to 5.2.0-dfsg-2 + - [Config] CONFIG_AMD_MEM_ENCRYPT=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc7 + + -- Seth Forshee Mon, 30 Oct 2017 13:29:20 -0500 + +linux (4.14.0-3.4) artful; urgency=low + + * Touchpad and TrackPoint Dose Not Work on Lenovo X1C6 and X280 (LP: #1723986) + - SAUCE: Input: synaptics-rmi4 - RMI4 can also use SMBUS version 3 + - SAUCE: Input: synaptics - Lenovo X1 Carbon 5 should use SMBUS/RMI + - SAUCE: Input: synaptics - add Intertouch support on X1 Carbon 6th and X280 + + * powerpc/64s: Add workaround for P9 vector CI load issuenext (LP: #1721070) + - powerpc/64s: Add workaround for P9 vector CI load issue + + * Miscellaneous Ubuntu changes + - SAUCE: staging: vboxvideo: Fix reporting invalid suggested-offset-properties + - [Config] CONFIG_DRM_VBOXVIDEO=m + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] Reorder annotations file after enabling aufs + - vbox-update: Disable imported vboxvideo module + - ubuntu: vbox -- update to 5.1.30-dfsg-1 + - Enable vbox + - hio: Use correct sizes when initializing ssd_index_bits* arrays + - hio: Update io stat accounting for 4.14 + - Enable hio + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc5 + * Rebase to v4.14-rc6 + + -- Seth Forshee Mon, 23 Oct 2017 13:53:52 -0500 + +linux (4.14.0-2.3) artful; urgency=low + + * [Bug] USB controller failed to respond on Denverton after loading + intel_th_pci module (LP: #1715833) + - SAUCE: PCI: Disable broken RTIT_BAR of Intel TH + + * CONFIG_DEBUG_FS is not enabled by "make zfcpdump_defconfig" with Ubuntu + 17.10 (kernel 4.13) (LP: #1719290) + - SAUCE: s390: update zfcpdump_defconfig + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * Miscellaneous Ubuntu changes + - [Config] Update annotations for 4.14-rc2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc3 + * Rebase to v4.14-rc4 + + -- Seth Forshee Wed, 11 Oct 2017 16:04:27 -0500 + +linux (4.14.0-1.2) artful; urgency=low + + * [Bug] USB 3.1 Gen2 works as 5Gbps (LP: #1720045) + - xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor + + * Please make linux-libc-dev Provide: aufs-dev (LP: #1716091) + - [Packaging] Add aufs-dev to the Provides: for linux-libc-dev + + * Upgrade to 4.13.0-11.12 in artful amd64 VM breaks display on wayland + (LP: #1718679) + - [Config] CONFIG_DRM_VBOXVIDEO=n + + * ipmmu-vmsa driver breaks arm64 boots (LP: #1718734) + - [Config] Disable CONFIG_IPMMU_VMSA on arm64 + + * autopkgtest profile fails to build on armhf (LP: #1717920) + - [Packaging] autopkgtest -- disable d-i when dropping flavours + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_I2C_XLP9XX=m + - [Packaging] Use SRCPKGNAME rather than hard-coding the source package name + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc2 + + -- Seth Forshee Fri, 29 Sep 2017 09:09:11 -0400 + +linux (4.14.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable vbox build + - Disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc1 + + -- Seth Forshee Tue, 19 Sep 2017 20:22:29 -0500 + +linux (4.13.0-11.12) artful; urgency=low + + * linux: 4.13.0-11.12 -proposed tracker (LP: #1716699) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: fix local TLB flushing vs. detach of an mm address space + - s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Seth Forshee Tue, 12 Sep 2017 10:18:38 -0500 + +linux (4.13.0-10.11) artful; urgency=low + + * linux: 4.13.0-10.11 -proposed tracker (LP: #1716287) + + * please add aufs-dkms to the Provides: for the kernel packages (LP: #1716093) + - [Packaging] Add aufs-dkms to the Provides: for kernel packages + + * Artful update to v4.13.1 stable release (LP: #1716284) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: musb: fix external abort on suspend + - ANDROID: binder: add padding to binder_fd_array_object. + - ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES. + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - staging: ccree: save ciphertext for CTS IV + - staging: fsl-dpaa2/eth: fix off-by-one FD ctrl bitmaks + - iio: adc: ti-ads1015: fix incorrect data rate setting update + - iio: adc: ti-ads1015: fix scale information for ADS1115 + - iio: adc: ti-ads1015: enable conversion when CONFIG_PM is not set + - iio: adc: ti-ads1015: avoid getting stale result after runtime resume + - iio: adc: ti-ads1015: don't return invalid value from buffer setup callbacks + - iio: adc: ti-ads1015: add adequate wait time to get correct conversion + - driver core: bus: Fix a potential double free + - HID: wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage + - binder: free memory on error + - crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y + - crypto: caam/qi - fix compilation with DEBUG enabled + - thunderbolt: Fix reset response_type + - fpga: altera-hps2fpga: fix multiple init of l3_remap_lock + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - drm/vgem: Pin our pages for dmabuf exports + - drm/ttm: Fix accounting error when fail to get pages for pool + - drm/dp/mst: Handle errors from drm_atomic_get_private_obj_state() correctly + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - iwlwifi: pci: add new PCI ID for 7265D + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - MCB: add support for SC31 to mcb-lpc + - s390/mm: avoid empty zero pages for KVM guests to avoid postcopy hangs + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - drm/nouveau: Fix error handling in nv50_disp_atomic_commit + - workqueue: Fix flag collision + - ahci: don't use MSI for devices with the silly Intel NVMe remapping scheme + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - of/device: Prevent buffer overflow in of_device_modalias() + - rtlwifi: Fix memory leak when firmware request fails + - rtlwifi: Fix fallback firmware loading + - Linux 4.13.1 + + * Kernel has trouble recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + * SRIOV: warning if unload VFs (LP: #1715073) + - PCI: Disable VF decoding before pcibios_sriov_disable() updates resources + + * [Patch] network-i40e:NVM bug fixes (cherrypick from 4.14) (LP: #1715578) + - i40e: avoid NVM acquire deadlock during NVM update + - i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq + + * [P9,POwer NV] Perf PMU event : pm_br_2path and pm_ld_miss_l1 is counted + twice when perf stat is done (perf:) (LP: #1714571) + - perf vendor events powerpc: Remove duplicate events + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Include vmd in storage-core-modules udeb + + * 17.10 fails to boot on POWER9 DD2.0 with Deep stop states (LP: #1715064) + - powerpc/powernv: Save/Restore additional SPRs for stop4 cpuidle + - powerpc/powernv: Clear PECE1 in LPCR via stop-api only on Hotplug + - SAUCE: powerpc/powernv: Clear LPCR[PECE1] via stop-api only for deep state + offline + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Support glibc 2.26 siginfo_t.h + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + + -- Seth Forshee Sun, 10 Sep 2017 17:48:59 -0500 + +linux (4.13.0-9.10) artful; urgency=low + + * linux: 4.13.0-9.10 -proposed tracker (LP: #1715145) + + * EDAC sbridge: Failed to register device with error -22. (LP: #1714112) + - [Config] CONFIG_EDAC_GHES=n + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13 + + -- Seth Forshee Tue, 05 Sep 2017 07:51:19 -0500 + +linux (4.13.0-8.9) artful; urgency=low + + * snapd 2.27.3+17.10 ADT test failure with linux 4.13.0-6.7 (LP: #1713103) + - SAUCE: apparmor: fix apparmorfs DAC access, permissions + + * enable ARCH_SUNXI (and friends) in arm64 kernel .config (LP: #1701137) + - [Config] Enable CONFIG_ARCH_SUNXI and related options for arm64 + + * [Bug] Harrisonville: pnd2_edac always fail to load on B1 stepping + Harrisonville SDP (LP: #1709257) + - EDAC, pnd2: Build in a minimal sideband driver for Apollo Lake + - EDAC, pnd2: Mask off the lower four bits of a BAR + - EDAC, pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR + - EDAC, pnd2: Properly toggle hidden state for P2SB PCI device + - SAUCE: i2c: i801: Restore the presence state of P2SB PCI device after + reading BAR + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - SAUCE: selftests/powerpc: Disable some ptrace selftests + - [Config] CONFIG_CRYPTO_DEV_NITROX_CNN55XX=n for s390x + - [Config] CONFIG_I2C_SLAVE=n for amd64, i386, ppc64el + - [Config] Disable CONFIG_MDIO_* options for s390x + - [Config] CONFIG_SCSI_MQ_DEFAULT=n for s390x + - [Config] Update annotations for 4.13 + + -- Seth Forshee Thu, 31 Aug 2017 14:27:09 -0500 + +linux (4.13.0-7.8) artful; urgency=low + + * linux 4.12.0-11.12 ADT test failure with linux 4.12.0-11.12 (LP: #1710904) + - SAUCE: selftests/powerpc: Use snprintf to construct DSCR sysfs interface + paths + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: seccomp: log actions even when audit is disabled" + + * Miscellaneous upstream changes + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + - seccomp: Action to log before allowing + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc7 + + -- Seth Forshee Mon, 28 Aug 2017 08:12:24 -0500 + +linux (4.13.0-6.7) artful; urgency=low + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * RPT related fixes missing in Ubuntu 16.04.3 (LP: #1709220) + - powerpc/mm/radix: Improve _tlbiel_pid to be usable for PWC flushes + - powerpc/mm/radix: Improve TLB/PWC flushes + - powerpc/mm/radix: Avoid flushing the PWC on every flush_tlb_range + + * Linux 4.12 refuses to load self-signed modules under Secure Boot with + properly enrolled keys (LP: #1712168) + - SAUCE: (efi-lockdown) MODSIGN: Fix module signature verification + + * [17.10 FEAT] Enable NVMe driver - kernel (LP: #1708432) + - [Config] CONFIG_BLK_DEV_NVME=m for s390 + + * Artful: 4.12.0-11.12: Boot panic in vlv2_plat_configure_clock+0x3b/0xa0 + (LP: #1711298) + - [Config] CONFIG_INTEL_ATOMISP=n + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: af_unix mediation + + * Miscellaneous upstream changes + - apparmor: Fix shadowed local variable in unpack_trans_table() + - apparmor: Fix logical error in verify_header() + - apparmor: Fix an error code in aafs_create() + - apparmor: Redundant condition: prev_ns. in [label.c:1498] + - apparmor: add the ability to mediate signals + - apparmor: add mount mediation + - apparmor: cleanup conditional check for label in label_print + - apparmor: add support for absolute root view based labels + - apparmor: make policy_unpack able to audit different info messages + - apparmor: add more debug asserts to apparmorfs + - apparmor: add base infastructure for socket mediation + - apparmor: move new_null_profile to after profile lookup fns() + - apparmor: fix race condition in null profile creation + - apparmor: ensure unconfined profiles have dfas initialized + - apparmor: fix incorrect type assignment when freeing proxies + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc6 + + -- Seth Forshee Wed, 23 Aug 2017 08:10:38 -0500 + +linux (4.13.0-5.6) artful; urgency=low + + * Ubuntu17.10 - perf: Update Power9 PMU event JSON files (LP: #1708630) + - perf pmu-events: Support additional POWER8+ PVR in mapfile + - perf vendor events: Add POWER9 PMU events + - perf vendor events: Add POWER9 PVRs to mapfile + - SAUCE: perf vendor events powerpc: remove suffix in mapfile + - SAUCE: perf vendor events powerpc: Update POWER9 events + + * Disable CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE (LP: #1709171) + - [Config] CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=n for ppc64el + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - SAUCE: aufs -- Add missing argument to loop_switch() call + - [Config] Enable aufs + - SAUCE: (noup) Update spl to 0.6.5.11-ubuntu1, zfs to 0.6.5.11-1ubuntu3 + - Enable zfs build + - SAUCE: powerpc: Always initialize input array when calling epapr_hypercall() + - [Packaging] switch up to debhelper 9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc5 + + -- Seth Forshee Tue, 15 Aug 2017 09:24:16 -0500 + +linux (4.13.0-4.5) artful; urgency=low + + * Lenovo Yoga 910 Sensors (LP: #1708120) + - SAUCE: (no-up) HID: Add quirk for Lenovo Yoga 910 with ITE Chips + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Add vmd driver to generic inclusion list + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-1 + - SAUCE: hio: Build fixes for 4.13 + - Enable hio build + - SAUCE: (noup) Update spl to 0.6.5.11-1, zfs to 0.6.5.11-1ubuntu1 + - [debian] use all rather than amd64 dkms debs for sync + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc4 + + -- Seth Forshee Tue, 08 Aug 2017 11:31:48 -0500 + +linux (4.13.0-3.4) artful; urgency=low + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + - [Packaging] tests -- reduce rebuild test to one flavour -- use filter + + * snapd 2.26.8+17.10 ADT test failure with linux 4.12.0-6.7 (LP: #1704158) + - SAUCE: virtio_net: Revert mergeable buffer handling rework + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc3 + + -- Seth Forshee Mon, 31 Jul 2017 10:08:16 -0500 + +linux (4.13.0-2.3) artful; urgency=low + + * Change CONFIG_IBMVETH to module (LP: #1704479) + - [Config] CONFIG_IBMVETH=m + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc2 + + -- Seth Forshee Mon, 24 Jul 2017 13:58:08 -0500 + +linux (4.13.0-1.2) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Support sphinx-based kernel documentation + + -- Seth Forshee Thu, 20 Jul 2017 09:18:33 -0500 + +linux (4.13.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable hio + - Disable zfs build + - ubuntu: vbox -- update to 5.1.24-dfsg-1 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc1 + + -- Seth Forshee Wed, 19 Jul 2017 15:09:31 -0500 + +linux (4.12.0-7.8) artful; urgency=low + + * ThunderX: soft lockup on 4.8+ kernels when running qemu-efi with vhost=on + (LP: #1673564) + - arm64: Add a facility to turn an ESR syndrome into a sysreg encoding + - KVM: arm/arm64: vgic-v3: Add accessors for the ICH_APxRn_EL2 registers + - KVM: arm64: Make kvm_condition_valid32() accessible from EL2 + - KVM: arm64: vgic-v3: Add hook to handle guest GICv3 sysreg accesses at EL2 + - KVM: arm64: vgic-v3: Add ICV_BPR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGRPEN1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IAR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_EOIR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_AP1Rn_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_HPPIR1_EL1 handler + - KVM: arm64: vgic-v3: Enable trapping of Group-1 system registers + - KVM: arm64: Enable GICv3 Group-1 sysreg trapping via command-line + - KVM: arm64: vgic-v3: Add ICV_BPR0_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGNREN0_EL1 handler + - KVM: arm64: vgic-v3: Add misc Group-0 handlers + - KVM: arm64: vgic-v3: Enable trapping of Group-0 system registers + - KVM: arm64: Enable GICv3 Group-0 sysreg trapping via command-line + - arm64: Add MIDR values for Cavium cn83XX SoCs + - arm64: Add workaround for Cavium Thunder erratum 30115 + - KVM: arm64: vgic-v3: Add ICV_DIR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_RPR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_CTLR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_PMR_EL1 handler + - KVM: arm64: Enable GICv3 common sysreg trapping via command-line + - KVM: arm64: vgic-v3: Log which GICv3 system registers are trapped + - KVM: arm64: Log an error if trapping a read-from-write-only GICv3 access + - KVM: arm64: Log an error if trapping a write-to-read-only GICv3 access + + * hns: under heavy load, NIC may fail and require reboot (LP: #1704146) + - net: hns: Bugfix for Tx timeout handling in hns driver + + * New ACPI identifiers for ThunderX SMMU (LP: #1703437) + - iommu/arm-smmu: Plumb in new ACPI identifiers + + * Transparent hugepages should default to enabled=madvise (LP: #1703742) + - SAUCE: use CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y as default + + * Artful update to v4.12.1 stable release (LP: #1703858) + - driver core: platform: fix race condition with driver_override + - RDMA/uverbs: Check port number supplied by user verbs cmds + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: usbip: set buffer pointers to NULL after free + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: Fix typo in the definition of Endpoint[out]Request + - USB: core: fix device node leak + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - xhci: Limit USB2 port wake support for AMD Promontory hosts + - gfs2: Fix glock rhashtable rcu bug + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - tpm: fix a kernel memory leak in tpm-sysfs.c + - powerpc/powernv: Fix CPU_HOTPLUG=n idle.c compile error + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - sched/fair, cpumask: Export for_each_cpu_wrap() + - sched/core: Implement new approach to scale select_idle_cpu() + - sched/numa: Use down_read_trylock() for the mmap_sem + - sched/numa: Override part of migrate_degrades_locality() when idle balancing + - sched/fair: Simplify wake_affine() for the single socket case + - sched/numa: Implement NUMA node level wake_affine() + - sched/fair: Remove effective_load() + - sched/numa: Hide numa_wake_affine() from UP build + - xen: avoid deadlock in xenbus driver + - crypto: drbg - Fixes panic in wait_for_completion call + - Linux 4.12.1 + + * cxlflash update request in the Xenial SRU stream (LP: #1702521) + - scsi: cxlflash: Combine the send queue locks + - scsi: cxlflash: Update cxlflash_afu_sync() to return errno + - scsi: cxlflash: Reset hardware queue context via specified register + - scsi: cxlflash: Schedule asynchronous reset of the host + - scsi: cxlflash: Handle AFU sync failures + - scsi: cxlflash: Track pending scsi commands in each hardware queue + - scsi: cxlflash: Flush pending commands in cleanup path + - scsi: cxlflash: Add scsi command abort handler + - scsi: cxlflash: Create character device to provide host management interface + - scsi: cxlflash: Separate AFU internal command handling from AFU sync + specifics + - scsi: cxlflash: Introduce host ioctl support + - scsi: cxlflash: Refactor AFU capability checking + - scsi: cxlflash: Support LUN provisioning + - scsi: cxlflash: Support AFU debug + - scsi: cxlflash: Support WS16 unmap + - scsi: cxlflash: Remove zeroing of private command data + - scsi: cxlflash: Update TMF command processing + - scsi: cxlflash: Avoid double free of character device + - scsi: cxlflash: Update send_tmf() parameters + - scsi: cxlflash: Update debug prints in reset handlers + + * make snap-pkg support (LP: #1700747) + - make snap-pkg support + + * Quirk for non-compliant PCI bridge on HiSilicon D05 board (LP: #1698706) + - SAUCE: PCI: Support hibmc VGA cards behind a misbehaving HiSilicon bridge + + * arm64: fix crash reading /proc/kcore (LP: #1702749) + - fs/proc: kcore: use kcore_list type to check for vmalloc/module address + - arm64: mm: select CONFIG_ARCH_PROC_KCORE_TEXT + + * Opal and POWER9 DD2 (LP: #1702159) + - SAUCE: powerpc/powernv: Tell OPAL about our MMU mode on POWER9 + + * Data corruption with hio driver (LP: #1701316) + - SAUCE: hio: Fix incorrect use of enum req_opf values + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.10-1, zfs to 0.6.5.10-1ubuntu2 + - snapcraft.yaml: Sync with xenial + - [Config] CONFIG_CAVIUM_ERRATUM_30115=y + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and + MokSBState" + + -- Seth Forshee Fri, 14 Jul 2017 15:25:41 -0500 + +linux (4.12.0-6.7) artful; urgency=low + + * update ENA driver to 1.2.0k from net-next (LP: #1701575) + - net: ena: change return value for unsupported features unsupported return + value + - net: ena: add hardware hints capability to the driver + - net: ena: change sizeof() argument to be the type pointer + - net: ena: add reset reason for each device FLR + - net: ena: add support for out of order rx buffers refill + - net: ena: allow the driver to work with small number of msix vectors + - net: ena: use napi_schedule_irqoff when possible + - net: ena: separate skb allocation to dedicated function + - net: ena: use lower_32_bits()/upper_32_bits() to split dma address + - net: ena: update driver's rx drop statistics + - net: ena: update ena driver to version 1.2.0 + + * APST gets enabled against explicit kernel option (LP: #1699004) + - nvme: explicitly disable APST on quirked devices + + * Miscellaneous Ubuntu changes + - SAUCE: hio: Update to Huawei ES3000_V2 (2.1.0.40) + - SAUCE: hio updates for 4.12 + - SAUCE: Enable hio build + + -- Seth Forshee Wed, 05 Jul 2017 14:23:20 -0500 + +linux (4.12.0-5.6) artful; urgency=low + + * ERAT invalidate on context switch removal (LP: #1700819) + - powerpc: Only do ERAT invalidate on radix context switch on P9 DD1 + + * powerpc: Invalidate ERAT on powersave wakeup for POWER9 (LP: #1700521) + - SAUCE: powerpc: Invalidate ERAT on powersave wakeup for POWER9 + + * Miscellaneous Ubuntu changes + - d-i: Move qcom-emac from arm64 to shared nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.12 + + -- Seth Forshee Mon, 03 Jul 2017 07:52:02 -0500 + +linux (4.12.0-4.5) artful; urgency=low + + * aacraid driver may return uninitialized stack data to userspace + (LP: #1700077) + - SAUCE: scsi: aacraid: Don't copy uninitialized stack memory to userspace + + * KILLER1435-S[0489:e0a2] BT cannot search BT 4.0 device (LP: #1699651) + - Bluetooth: btusb: Add support for 0489:e0a2 QCA_ROME device + + * AACRAID for power9 platform (LP: #1689980) + - scsi: aacraid: Remove __GFP_DMA for raw srb memory + - scsi: aacraid: Fix DMAR issues with iommu=pt + - scsi: aacraid: Added 32 and 64 queue depth for arc natives + - scsi: aacraid: Set correct Queue Depth for HBA1000 RAW disks + - scsi: aacraid: Remove reset support from check_health + - scsi: aacraid: Change wait time for fib completion + - scsi: aacraid: Log count info of scsi cmds before reset + - scsi: aacraid: Print ctrl status before eh reset + - scsi: aacraid: Using single reset mask for IOP reset + - scsi: aacraid: Rework IOP reset + - scsi: aacraid: Add periodic checks to see IOP reset status + - scsi: aacraid: Rework SOFT reset code + - scsi: aacraid: Rework aac_src_restart + - scsi: aacraid: Use correct function to get ctrl health + - scsi: aacraid: Make sure ioctl returns on controller reset + - scsi: aacraid: Enable ctrl reset for both hba and arc + - scsi: aacraid: Add reset debugging statements + - scsi: aacraid: Remove reference to Series-9 + - scsi: aacraid: Update driver version to 50834 + + * hibmc driver does not include "pci:" prefix in bus ID (LP: #1698700) + - SAUCE: drm: hibmc: Use set_busid function from drm core + + * HiSilicon D05: installer doesn't appear on VGA (LP: #1698954) + - d-i: Add hibmc-drm to kernel-image udeb + + * Fix /proc/cpuinfo revision for POWER9 DD2 (LP: #1698844) + - SAUCE: powerpc: Fix /proc/cpuinfo revision for POWER9 DD2 + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SATA_MV=n and CONFIG_GENERIC_PHY=n for s390x + - [Config] CONFIG_ATA=n for s390x + - [Config] Update annotations for 4.12 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc7 + + -- Seth Forshee Mon, 26 Jun 2017 11:27:29 -0500 + +linux (4.12.0-3.4) artful; urgency=low + + * Miscellaneous upstream changes + - ufs: fix the logics for tail relocation + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc6 + + -- Seth Forshee Mon, 19 Jun 2017 14:50:39 -0500 + +linux (4.12.0-2.3) artful; urgency=low + + * CVE-2014-9900 + - SAUCE: (no-up) net: Zeroing the structure ethtool_wolinfo in + ethtool_get_wol() + + * System doesn't boot properly on Gigabyte AM4 motherboards (AMD Ryzen) + (LP: #1671360) + - pinctrl/amd: Use regular interrupt instead of chained + + * extend-diff-ignore should use exact matches (LP: #1693504) + - [Packaging] exact extend-diff-ignore matches + + * Miscellaneous Ubuntu changes + - SAUCE: efi: Don't print secure boot state from the efi stub + - ubuntu: vbox -- Update to 5.1.22-dfsg-1 + - SAUCE: vbox fixes for 4.12 + - Re-enable virtualbox build + - [Config] CONFIG_ORANGEFS_FS=m + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu2, zfs to 0.6.5.9-5ubuntu7 + - Enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc4 + * Rebase to v4.12-rc5 + + -- Seth Forshee Sun, 11 Jun 2017 22:25:13 -0500 + +linux (4.12.0-1.2) artful; urgency=low + + * Enable Matrox driver for Ubuntu 16.04.3 (LP: #1693337) + - [Config] Enable CONFIG_DRM_MGAG200 as module + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_LIBIO=y on arm64 only + - SAUCE: LIBIO: Introduce a generic PIO mapping method + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: LPC: Support the device-tree LPC host on Hip06/Hip07 + - SAUCE: LIBIO: Support the dynamically logical PIO registration of ACPI host + I/O + - SAUCE: LPC: Add the ACPI LPC support + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: PCI: Restore codepath for !CONFIG_LIBIO + + * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) + - SAUCE: tty: Fix ldisc crash on reopened tty + + * Miscellaneous Ubuntu changes + - [Debian] Add build-dep on libnuma-dev to enable 'perf bench numa' + - Rebase to v4.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc3 + + -- Seth Forshee Mon, 29 May 2017 20:56:29 -0500 + +linux (4.12.0-0.1) artful; urgency=low + + * please enable CONFIG_ARM64_LSE_ATOMICS (LP: #1691614) + - [Config] CONFIG_ARM64_LSE_ATOMICS=y + + * [Regression] NUMA_BALANCING disabled on arm64 (LP: #1690914) + - [Config] CONFIG_NUMA_BALANCING{,_DEFAULT_ENABLED}=y on arm64 + + * exec'ing a setuid binary from a threaded program sometimes fails to setuid + (LP: #1672819) + - SAUCE: exec: ensure file system accounting in check_unsafe_exec is correct + + * Miscellaneous Ubuntu changes + - Update find-missing-sauce.sh to compare to artful + - Update dropped.txt + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Disable virtualbox build + - Disable hio build + - SAUCE: securityfs: Replace CURRENT_TIME with current_time() + - Disable zfs build + - [Debian] Work out upstream tag for use with gen-auto-reconstruct + - SAUCE: Import aufs driver + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + - [Config] Enable aufs + - SAUCE: perf callchain: Include errno.h on x86 unconditinally + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc2 + + -- Seth Forshee Sun, 21 May 2017 23:44:44 -0500 + +linux (4.11.0-3.8) artful; urgency=low + + [ Seth Forshee ] + + * Release Tracking Bug + - LP: #1690999 + + * apparmor_parser hangs indefinitely when called by multiple threads + (LP: #1645037) + - SAUCE: apparmor: fix lock ordering for mkdir + + * apparmor leaking securityfs pin count (LP: #1660846) + - SAUCE: apparmor: fix leak on securityfs pin count + + * apparmor reference count leak when securityfs_setup_d_inode\ () fails + (LP: #1660845) + - SAUCE: apparmor: fix reference count leak when securityfs_setup_d_inode() + fails + + * apparmor not checking error if security_pin_fs() fails (LP: #1660842) + - SAUCE: apparmor: fix not handling error case when securityfs_pin_fs() fails + + * libvirt profile is blocking global setrlimit despite having no rlimit rule + (LP: #1679704) + - SAUCE: apparmor: fix complain mode failure for rlimit mediation + - apparmor: update auditing of rlimit check to provide capability information + + * apparmor: does not provide a way to detect policy updataes (LP: #1678032) + - SAUCE: apparmor: add policy revision file interface + + * apparmor does not make support of query data visible (LP: #1678023) + - SAUCE: apparmor: add label data availability to the feature set + + * apparmor query interface does not make supported query info available + (LP: #1678030) + - SAUCE: apparmor: add information about the query inteface to the feature set + + * change_profile incorrect when using namespaces with a compound stack + (LP: #1677959) + - SAUCE: apparmor: fix label parse for stacked labels + + * Regression in 4.4.0-65-generic causes very frequent system crashes + (LP: #1669611) + - apparmor: sync of apparmor 3.6+ (17.04) + + * Artful update to 4.11.1 stable release (LP: #1690814) + - dm ioctl: prevent stack leak in dm ioctl call + - drm/sti: fix GDP size to support up to UHD resolution + - power: supply: lp8788: prevent out of bounds array access + - brcmfmac: Ensure pointer correctly set if skb data location changes + - brcmfmac: Make skb header writable before use + - sparc64: fix fault handling in NGbzero.S and GENbzero.S + - refcount: change EXPORT_SYMBOL markings + - net: macb: fix phy interrupt parsing + - tcp: fix access to sk->sk_state in tcp_poll() + - geneve: fix incorrect setting of UDP checksum flag + - bpf: enhance verifier to understand stack pointer arithmetic + - bpf, arm64: fix jit branch offset related to ldimm64 + - tcp: fix wraparound issue in tcp_lp + - net: ipv6: Do not duplicate DAD on link up + - net: usb: qmi_wwan: add Telit ME910 support + - tcp: do not inherit fastopen_req from parent + - ipv4, ipv6: ensure raw socket message is big enough to hold an IP header + - rtnetlink: NUL-terminate IFLA_PHYS_PORT_NAME string + - ipv6: initialize route null entry in addrconf_init() + - ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf + - tcp: randomize timestamps on syncookies + - bnxt_en: allocate enough space for ->ntp_fltr_bmap + - bpf: don't let ldimm64 leak map addresses on unprivileged + - net: mdio-mux: bcm-iproc: call mdiobus_free() in error path + - f2fs: sanity check segment count + - xen/arm,arm64: fix xen_dma_ops after 815dd18 "Consolidate get_dma_ops..." + - xen: Revert commits da72ff5bfcb0 and 72a9b186292d + - block: get rid of blk_integrity_revalidate() + - Linux 4.11.1 + + * Module signing exclusion for staging drivers does not work properly + (LP: #1690908) + - SAUCE: Fix module signing exclusion in package builds + + * perf: qcom: Add L3 cache PMU driver (LP: #1689856) + - [Config] CONFIG_QCOM_L3_PMU=y + - perf: qcom: Add L3 cache PMU driver + + * No PMU support for ACPI-based arm64 systems (LP: #1689661) + - drivers/perf: arm_pmu: rework per-cpu allocation + - drivers/perf: arm_pmu: manage interrupts per-cpu + - drivers/perf: arm_pmu: split irq request from enable + - drivers/perf: arm_pmu: remove pointless PMU disabling + - drivers/perf: arm_pmu: define armpmu_init_fn + - drivers/perf: arm_pmu: fold init into alloc + - drivers/perf: arm_pmu: factor out pmu registration + - drivers/perf: arm_pmu: simplify cpu_pmu_request_irqs() + - drivers/perf: arm_pmu: handle no platform_device + - drivers/perf: arm_pmu: rename irq request/free functions + - drivers/perf: arm_pmu: split cpu-local irq request/free + - drivers/perf: arm_pmu: move irq request/free into probe + - drivers/perf: arm_pmu: split out platform device probe logic + - arm64: add function to get a cpu's MADT GICC table + - [Config] CONFIG_ARM_PMU_ACPI=y + - drivers/perf: arm_pmu: add ACPI framework + - arm64: pmuv3: handle !PMUv3 when probing + - arm64: pmuv3: use arm_pmu ACPI framework + + * Fix NVLINK2 TCE route (LP: #1690155) + - powerpc/powernv: Fix TCE kill on NVLink2 + + * CVE-2017-0605 + - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() + + * Miscellaneous Ubuntu changes + - [Config] Restore powerpc arch to annotations file + - [Config] Disable runtime testing modules + - [Config] Disable drivers not needed on s390x + - [Config] Update annotations for 4.11 + - [Config] updateconfigs after apparmor updates + + * Miscellaneous upstream changes + - apparmor: use SHASH_DESC_ON_STACK + - apparmor: fix invalid reference to index variable of iterator line 836 + - apparmor: fix parameters so that the permission test is bypassed at boot + - apparmor: Make path_max parameter readonly + - apparmorfs: Combine two function calls into one in aa_fs_seq_raw_abi_show() + - apparmorfs: Use seq_putc() in two functions + - apparmor: provide information about path buffer size at boot + - apparmor: add/use fns to print hash string hex value + + -- Seth Forshee Tue, 16 May 2017 00:39:13 -0500 + +linux (4.11.0-2.7) artful; urgency=low + + * kernel-wedge fails in artful due to leftover squashfs-modules d-i files + (LP: #1688259) + - Remove squashfs-modules files from d-i + - [Config] as squashfs-modules is builtin kernel-image must Provides: it + + * [Zesty] d-i: replace msm_emac with qcom_emac (LP: #1677297) + - Revert "UBUNTU: d-i: initrd needs msm_emac on amberwing platform." + - d-i: initrd needs qcom_emac on amberwing platform. + + * update for V3 kernel bits and improved multiple fan slice support + (LP: #1470091) + - SAUCE: fan: tunnel multiple mapping mode (v3) + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu1, zfs to 0.6.5.9-5ubuntu5 + - Enable zfs + - SAUCE: fan: add VXLAN implementation + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Add EFI signature data types + - SAUCE: (efi-lockdown) Add an EFI signature blob parser and key loader. + - SAUCE: (efi-lockdown) KEYS: Add a system blacklist keyring + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Support not importing certs from db + - SAUCE: (efi-lockdown) MODSIGN: Don't try secure boot if EFI runtime is + disabled + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * rebase to v4.11 + + -- Seth Forshee Fri, 05 May 2017 07:43:14 -0500 + +linux (4.11.0-1.6) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Use default compression for all packages + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes + - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID for userns root + - SAUCE: (namespace) fs: Allow superblock owner to access do_remount_sb() + - SAUCE: (namespace) capabilities: Allow privileged user in s_user_ns to set + security.* xattrs + - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw + filesystems + - SAUCE: (namespace) fuse: Add support for pid namespaces + - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: (namespace) fuse: Restrict allow_other to the superblock's namespace + or a descendant + - SAUCE: (namespace) fuse: Allow user namespace mounts + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) evm: Don't update hmacs in user ns mounts + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + + -- Seth Forshee Wed, 26 Apr 2017 10:08:29 -0500 + +linux (4.11.0-0.5) artful; urgency=low + + * [Hyper-V][SAUCE] pci-hyperv: Use only 16 bit integer for PCI domain + (LP: #1684971) + - SAUCE: pci-hyperv: Use only 16 bit integer for PCI domain + + * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups + (LP: #1470250) + - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails + + * Enable virtual scsi server driver for Power (LP: #1615665) + - SAUCE: Return TCMU-generated sense data to fabric module + + * include/linux/security.h header syntax error with !CONFIG_SECURITYFS + (LP: #1630990) + - SAUCE: (no-up) include/linux/security.h -- fix syntax error with + CONFIG_SECURITYFS=n + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Debian] Add script to update virtualbox + - ubuntu: vbox -- Update to 5.1.20-dfsg-2 + - Enable vbox + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc8 + + -- Seth Forshee Tue, 25 Apr 2017 13:42:54 -0500 + +linux (4.11.0-0.4) zesty; urgency=low + + * POWER9: Improve performance on memory management (LP: #1681429) + - SAUCE: powerpc/mm/radix: Don't do page walk cache flush when doing full mm + flush + - SAUCE: powerpc/mm/radix: Remove unnecessary ptesync + + * Miscellaneous Ubuntu changes + - find-missing-sauce.sh + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc7 + + -- Seth Forshee Tue, 18 Apr 2017 08:19:43 -0500 + +linux (4.11.0-0.3) zesty; urgency=low + + * Disable CONFIG_HVC_UDBG on ppc64el (LP: #1680888) + - [Config] Disable CONFIG_HVC_UDBG on ppc64el + + * smartpqi driver needed in initram disk and installer (LP: #1680156) + - [Config] Add smartpqi to d-i + + * Disable CONFIG_SECURITY_SELINUX_DISABLE (LP: #1680315) + - [Config] CONFIG_SECURITY_SELINUX_DISABLE=n + + * Miscellaneous Ubuntu changes + - [Config] flash-kernel should be a Breaks + - [Config] drop the info directory + - [Config] drop NOTES as obsolete + - [Config] drop changelog.historical as obsolete + - rebase to v4.11-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc6 + + -- Tim Gardner Tue, 11 Apr 2017 07:16:52 -0600 + +linux (4.11.0-0.2) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc5 + + -- Tim Gardner Mon, 03 Apr 2017 08:26:07 +0100 + +linux (4.11.0-0.1) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc4 + - LP: #1591053 + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 + +linux (4.11.0-0.0) zesty; urgency=low + + * dummy entry + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 diff --git a/debian.hwe-5.19/config/amd64/config.common.amd64 b/debian.hwe-5.19/config/amd64/config.common.amd64 new file mode 100644 index 000000000000..9e9aaae03f4d --- /dev/null +++ b/debian.hwe-5.19/config/amd64/config.common.amd64 @@ -0,0 +1,699 @@ +# +# Config options for config.common.amd64 automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +CONFIG_ACCESSIBILITY=y +CONFIG_ACPI_DEBUG=y +CONFIG_ACPI_DEBUGGER=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_ADIN1100_PHY=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ARCNET=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=y +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="x86_64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +CONFIG_CDROM_PKTCDVD=m +# CONFIG_CMA is not set +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +CONFIG_COMPAT=y +CONFIG_COUNTER=m +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CRAMFS=m +CONFIG_CRC7=m +CONFIG_CRC8=m +CONFIG_CRC_ITU_T=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DP83TD510_PHY=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +# CONFIG_GOLDFISH is not set +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIBERNATION=y +CONFIG_HID=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HTE=y +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_AMD_MP2=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_IOMMU_IOVA=y +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +# CONFIG_KERNEL_GZIP is not set +CONFIG_KVM=m +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=y +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMSTICK=m +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MHI_BUS_EP=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_CQHCI=m +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SPI=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +# CONFIG_NET_DSA_REALTEK_MDIO is not set +# CONFIG_NET_DSA_REALTEK_SMI is not set +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=10 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=8192 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NVRAM=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +# CONFIG_OF is not set +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=y +CONFIG_PC104=y +CONFIG_PCCARD=m +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_MESON is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCMCIA=m +CONFIG_PCS_XPCS=m +CONFIG_PECI=m +CONFIG_PGTABLE_LEVELS=5 +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PINCTRL=y +CONFIG_PM=y +CONFIG_PMIC_OPREGION=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_S2IO=m +CONFIG_SAMPLE_FTRACE_DIRECT=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_SIENA=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y +CONFIG_SND_HDA_PREALLOC_SIZE=0 +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +# CONFIG_STANDALONE is not set +CONFIG_SUN_PARTITION=y +CONFIG_SURFACE_3_POWER_OPREGION=m +CONFIG_SURFACE_PRO3_BUTTON=m +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=y +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UBSAN=y +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_CORE=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VIRTIO_MMIO=y +CONFIG_VMAP_STACK=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XEN=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.hwe-5.19/config/amd64/config.flavour.generic b/debian.hwe-5.19/config/amd64/config.flavour.generic new file mode 100644 index 000000000000..bb7773a235d2 --- /dev/null +++ b/debian.hwe-5.19/config/amd64/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.hwe-5.19/config/annotations b/debian.hwe-5.19/config/annotations new file mode 100644 index 000000000000..3099e3f459cd --- /dev/null +++ b/debian.hwe-5.19/config/annotations @@ -0,0 +1,14422 @@ +# Menu: HEADER +# FORMAT: 2 +# ARCH: x86 arm arm64 s390 powerpc riscv + +# Mark debugging symbols. +# exceptions +CONFIG_DEBUG_FS note +CONFIG_DEBUG_KERNEL note + +# Menu: ROOT +CONFIG_LIVEPATCH policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_ACPI_PRMT policy<{'amd64': 'y'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support +CONFIG_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUGGER policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_ACPI_DEBUGGER_USER policy<{'amd64': 'y'}> +CONFIG_ACPI_SPCR_TABLE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_FPDT policy<{'amd64': 'y'}> +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE policy<{'amd64': 'y'}> +CONFIG_ACPI_EC_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_AC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_BATTERY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_BUTTON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_VIDEO policy<{'amd64': 'm'}> +CONFIG_ACPI_FAN policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_TAD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_DOCK policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_PROCESSOR policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_IPMI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_PROCESSOR_AGGREGATOR policy<{'amd64': 'm'}> +CONFIG_ACPI_THERMAL policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_TABLE_UPGRADE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_DEBUG policy<{'amd64': 'y', 'arm64': 'n'}> +CONFIG_ACPI_PCI_SLOT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_CONTAINER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_HOTPLUG_MEMORY policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_SBS policy<{'amd64': 'm'}> +CONFIG_ACPI_HED policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_CUSTOM_METHOD policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_BGRT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_REDUCED_HARDWARE_ONLY policy<{'amd64': 'n', 'arm64': 'y'}> +CONFIG_ACPI_NFIT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NFIT_SECURITY_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_ACPI_NUMA policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_HMAT policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_EXTLOG policy<{'amd64': 'm'}> +CONFIG_ACPI_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TPS68470_PMIC_OPREGION policy<{'amd64': 'y'}> +CONFIG_X86_PM_TIMER policy<{'amd64': 'y'}> +# +CONFIG_ACPI_CUSTOM_METHOD mark note + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> ACPI Platform Error Interface (APEI) +CONFIG_ACPI_APEI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_GHES policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_PCIEAER policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_MEMORY_FAILURE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ACPI_APEI_EINJ policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACPI_APEI_ERST_DEBUG policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> Intel DPTF (Dynamic Platform and Thermal Framework) Support +CONFIG_ACPI_DPTF policy<{'amd64': 'y'}> +CONFIG_DPTF_POWER policy<{'amd64': 'm'}> +CONFIG_DPTF_PCH_FIVR policy<{'amd64': 'm'}> + +# Menu: ACPI (Advanced Configuration and Power Interface) Support >> PMIC (Power Management Integrated Circuit) operation region support +CONFIG_PMIC_OPREGION policy<{'amd64': 'y', 'arm64': 'n'}> + +# Menu: ARM Accelerated Cryptographic Algorithms +CONFIG_CRYPTO_CHACHA20_NEON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_NEON policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: ARM Accelerated Cryptographic Algorithms >> Architecture: arm +CONFIG_ARM_CRYPTO policy<{'armhf': 'y'}> +CONFIG_CRYPTO_SHA1_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA1_ARM_NEON policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA1_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA2_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA256_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_SHA512_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_BLAKE2S_ARM policy<{'armhf': 'y'}> +CONFIG_CRYPTO_BLAKE2B_NEON policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM_BS policy<{'armhf': 'm'}> +CONFIG_CRYPTO_AES_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_GHASH_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CRC32_ARM_CE policy<{'armhf': 'm'}> +CONFIG_CRYPTO_POLY1305_ARM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_CURVE25519_NEON policy<{'armhf': 'm'}> + +# Menu: ARM64 Accelerated Cryptographic Algorithms + +# Menu: ARM64 Accelerated Cryptographic Algorithms >> Architecture: arm64 +CONFIG_ARM64_CRYPTO policy<{'arm64': 'y'}> +CONFIG_CRYPTO_SHA256_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA512_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA1_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA2_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA512_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SHA3_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SM3_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_SM4_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_GHASH_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE_CCM policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_CE_BLK policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_NEON_BLK policy<{'arm64': 'm'}> +CONFIG_CRYPTO_POLY1305_NEON policy<{'arm64': 'm'}> +CONFIG_CRYPTO_AES_ARM64_BS policy<{'arm64': 'm'}> + +# Menu: Advanced setup >> Architecture: powerpc + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options +CONFIG_PHYSICAL_START policy<{'amd64': '0x1000000', 'ppc64el': '0x00000000'}> + +# Menu: Advanced setup >> Prompt for advanced kernel configuration options >> Architecture: powerpc +CONFIG_PAGE_OFFSET policy<{'armhf': '0xC0000000', 'ppc64el': '0xc000000000000000', 'riscv64': '0xff60000000000000'}> +CONFIG_KERNEL_START policy<{'ppc64el': '0xc000000000000000'}> + +# Menu: Architecture: arm +CONFIG_ARM_DMA_IOMMU_ALIGNMENT policy<{'armhf': '8'}> +CONFIG_ARM_PATCH_PHYS_VIRT policy<{'armhf': 'y'}> + +# Menu: Architecture: powerpc +CONFIG_PPC64 policy<{'ppc64el': 'y'}> +CONFIG_NR_IRQS policy<{'ppc64el': '512'}> + +# Menu: Architecture: x86 +CONFIG_64BIT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Binary Emulations >> Architecture: x86 +CONFIG_IA32_EMULATION policy<{'amd64': 'y'}> +CONFIG_IA32_AOUT policy<{'amd64': '-'}> +# +CONFIG_IA32_AOUT mark note + +# Menu: Boot options +CONFIG_CMDLINE policy<{'arm64': '"console=ttyAMA0"', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""'}> +CONFIG_EFI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_DMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_KEXEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRASH_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_CRASH_DUMP mark note +CONFIG_EFI flag + +# Menu: Boot options >> Architecture: arm +CONFIG_USE_OF policy<{'armhf': 'y'}> +CONFIG_ATAGS policy<{'armhf': 'y'}> +CONFIG_DEPRECATED_PARAM_STRUCT policy<{'armhf': 'n'}> +CONFIG_ZBOOT_ROM_TEXT policy<{'armhf': '0x0'}> +CONFIG_ZBOOT_ROM_BSS policy<{'armhf': '0x0'}> +CONFIG_ARM_APPENDED_DTB policy<{'armhf': 'y'}> +CONFIG_ARM_ATAG_DTB_COMPAT policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ATAGS_PROC policy<{'armhf': 'y'}> +CONFIG_AUTO_ZRELADDR policy<{'armhf': 'y'}> +# +CONFIG_ARM_ATAG_DTB_COMPAT flag + +# Menu: Boot options >> Architecture: arm64 +CONFIG_ARM64_ACPI_PARKING_PROTOCOL policy<{'arm64': 'y'}> + +# Menu: Boot options >> Kernel command line type +CONFIG_CMDLINE_FROM_BOOTLOADER policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CMDLINE_FORCE policy<{'arm64': 'n', 'armhf': '-'}> + +# Menu: Boot options >> Kernel command line type >> Architecture: arm +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER policy<{'armhf-generic': 'n'}> +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND policy<{'armhf-generic': 'y'}> + +# Menu: Boot options >> Kernel command line type >> Architecture: arm64 + +# Menu: Bus options + +# Menu: Bus options (PCI etc.) + +# Menu: Bus options (PCI etc.) >> Architecture: x86 +CONFIG_ISA_BUS policy<{'amd64': 'y'}> +CONFIG_ISA_DMA_API policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_PCI_MMCONFIG policy<{'amd64': 'y'}> +CONFIG_PCI_CNB20LE_QUIRK policy<{'amd64': 'n'}> + +# Menu: Bus options (PCI etc.) >> PCI access mode >> Architecture: x86 + +# Menu: Bus options >> Architecture: powerpc +CONFIG_FSL_LBC policy<{'ppc64el': 'y'}> + +# Menu: Bus support >> Architecture: arm +CONFIG_ARM_ERRATA_814220 policy<{'armhf': 'y'}> + +# Menu: CPU errata selection +CONFIG_ERRATA_SIFIVE_CIP_453 policy<{'riscv64': 'y'}> + +# Menu: Cryptographic API +CONFIG_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_NULL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_PCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRYPTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AUTHENC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECDH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ECRDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CURVE25519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CURVE25519_X86 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CHACHA20POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AEGIS128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AEGIS128_SIMD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SEQIV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECHAINIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CBC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_ECB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LRW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_OFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_PCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_XTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_KEYWRAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_SSE2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_NHPOLY1305_AVX2 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_ADIANTUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ESSIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_HMAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_XCBC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_VMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRC32C_INTEL policy<{'amd64': 'y'}> +CONFIG_CRYPTO_CRC32C_VPMSUM policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_CRC32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CRC32_PCLMUL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_XXHASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLAKE2B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLAKE2S_X86 policy<{'amd64': 'y'}> +CONFIG_CRYPTO_CRCT10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_CRCT10DIF_PCLMUL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CRCT10DIF_VPMSUM policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_VPMSUM_TESTER policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_GHASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_POLY1305_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_MD4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_MD5_PPC policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_MICHAEL_MIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_RMD160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA1_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA256_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA512_SSSE3 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA1_PPC policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_SHA256 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_SHA3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SM3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_STREEBOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_WP512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_AES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_AES_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_AES_NI_INTEL policy<{'amd64': 'm'}> +CONFIG_CRYPTO_BLOWFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_BLOWFISH_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAMELLIA_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAST5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST5_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_CAST6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CAST6_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DES3_EDE_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_FCRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_CHACHA20_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_SERPENT_SSE2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SERPENT_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SM4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_TWOFISH_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY policy<{'amd64': 'm'}> +CONFIG_CRYPTO_TWOFISH_AVX_X86_64 policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEFLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LZ4HC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ZSTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_ANSI_CPRNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_JITTERENTROPY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_USER_API_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_SKCIPHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_RNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_RNG_CAVP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_USER_API_AEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_LIB_CHACHA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_CURVE25519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_LIB_CHACHA20POLY1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS flag +CONFIG_CRYPTO_TEST flag +CONFIG_CRYPTO_SHA512 note +CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE mark note + +# Menu: Cryptographic API >> Asymmetric (public-key cryptographic) key type +CONFIG_ASYMMETRIC_KEY_TYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_X509_CERTIFICATE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PKCS8_PRIVATE_KEY_PARSER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PKCS7_MESSAGE_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PKCS7_TEST_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SIGNED_PE_FILE_VERIFICATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_ASYMMETRIC_KEY_TYPE note +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE note +CONFIG_X509_CERTIFICATE_PARSER note + +# Menu: Cryptographic API >> Certificates for signature checking +CONFIG_MODULE_SIG_KEY policy<{'amd64': '"certs/signing_key.pem"', 'arm64': '"certs/signing_key.pem"', 'armhf': '"certs/signing_key.pem"', 'ppc64el': '"certs/signing_key.pem"', 'riscv64': '"certs/signing_key.pem"', 's390x': '"certs/signing_key.pem"'}> +CONFIG_SYSTEM_BLACKLIST_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_BLACKLIST_HASH_LIST policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_SYSTEM_REVOCATION_LIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_REVOCATION_KEYS policy<{'amd64': '"debian/canonical-revoked-certs.pem"', 'arm64': '"debian/canonical-revoked-certs.pem"', 'armhf': '"debian/canonical-revoked-certs.pem"', 'ppc64el': '"debian/canonical-revoked-certs.pem"', 'riscv64': '"debian/canonical-revoked-certs.pem"', 's390x': '"debian/canonical-revoked-certs.pem"'}> +# +CONFIG_SYSTEM_BLACKLIST_KEYRING mark +CONFIG_SYSTEM_REVOCATION_KEYS mark + +# Menu: Cryptographic API >> Certificates for signature checking >> Provide system-wide ring of trusted keys +CONFIG_SYSTEM_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_TRUSTED_KEYS policy<{'amd64': '"debian/canonical-certs.pem"', 'arm64': '"debian/canonical-certs.pem"', 'armhf': '"debian/canonical-certs.pem"', 'ppc64el': '"debian/canonical-certs.pem"', 'riscv64': '"debian/canonical-certs.pem"', 'riscv64': '"debian/canonical-certs.pem"', 's390x': '"debian/canonical-certs.pem"'}> +CONFIG_SYSTEM_EXTRA_CERTIFICATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096', 'riscv64': '4096', 's390x': '4096'}> +CONFIG_SECONDARY_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SYSTEM_TRUSTED_KEYS mark + +# Menu: Cryptographic API >> Certificates for signature checking >> Type of module signing key to be generated +CONFIG_MODULE_SIG_KEY_TYPE_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_SIG_KEY_TYPE_ECDSA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Cryptographic API >> Hardware crypto devices +CONFIG_CRYPTO_HW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK policy<{'amd64': 'y'}> +CONFIG_CRYPTO_DEV_PADLOCK_AES policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_PADLOCK_SHA policy<{'amd64': 'm'}> +CONFIG_CRYPTO_SHA1_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA256_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA512_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA3_256_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_SHA3_512_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_DES_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_AES_S390 policy<{'s390x': 'm'}> +CONFIG_S390_PRNG policy<{'s390x': 'm'}> +CONFIG_CRYPTO_GHASH_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_CRC32_S390 policy<{'s390x': 'm'}> +CONFIG_CRYPTO_DEV_HIFN_795X policy<{'armhf-generic': 'm', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_HIFN_795X_RNG policy<{'armhf-generic': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_FSL_CAAM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SAHARA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_EXYNOS_RNG policy<{'armhf': 'n'}> +CONFIG_CRYPTO_DEV_S5P policy<{'armhf': 'n'}> +CONFIG_CRYPTO_DEV_NX policy<{'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_ATMEL_ECC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_ATMEL_SHA204A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_CCP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_DD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SP_CCP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_CRYPTO policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SP_PSP policy<{'amd64': 'y'}> +CONFIG_CRYPTO_DEV_CCP_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_CRYPTO_DEV_MXS_DCP policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCC policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C3XXX policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C62X policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_4XXX policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C3XXXVF policy<{'amd64': 'm'}> +CONFIG_CRYPTO_DEV_QAT_C62XVF policy<{'amd64': 'm'}> +CONFIG_CAVIUM_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_NITROX_CNN55XX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_MARVELL_CESA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OCTEONTX_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_CAVIUM_ZIP policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_QCE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN policy<{'arm64': '512', 'armhf': '512'}> +CONFIG_CRYPTO_DEV_QCOM_RNG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_VMX policy<{'ppc64el': 'y'}> +CONFIG_CRYPTO_DEV_VMX_ENCRYPT policy<{'ppc64el': 'm'}> +CONFIG_CRYPTO_DEV_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_ZYNQMP_AES policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_CHELSIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CRYPTO_DEV_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DEV_BCM_SPU policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_SAFEXCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_ARTPEC6 policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_CCREE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_SEC policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_SEC2 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_ZIP policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_HPRE policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_HISI_TRNG policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_AMLOGIC_GXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRYPTO_DEV_SA2UL policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4 policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_ECB policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_CTS policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU policy<{'arm64': 'm'}> +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU_HMAC_SHA224 policy<{'arm64': 'y'}> +# +CONFIG_CRYPTO_DEV_HISI_ZIP mark + +# Menu: Cryptographic API >> Hardware crypto devices >> Algorithms enabled for QCE acceleration +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Freescale CAAM Job Ring driver backend +CONFIG_CRYPTO_DEV_FSL_CAAM_JR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE policy<{'arm64': '9', 'armhf': '9'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD policy<{'arm64': '255', 'armhf': '255'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD policy<{'arm64': '2048', 'armhf': '2048'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI policy<{'arm64': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader +CONFIG_CRYPTO_DEV_ALLWINNER policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN4I_SS policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG policy<{'arm64': 'n', 'armhf': '-'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader >> Support for Allwinner Crypto Engine cryptographic offloader +CONFIG_CRYPTO_DEV_SUN8I_CE policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG policy<{'arm64': 'y', 'armhf': '-'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for Allwinner cryptographic offloader >> Support for Allwinner Security System cryptographic offloader +CONFIG_CRYPTO_DEV_SUN8I_SS policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH policy<{'arm64': 'y', 'armhf': '-'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for OMAP crypto HW accelerators +CONFIG_CRYPTO_DEV_OMAP policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_SHAM policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_AES policy<{'armhf': 'm'}> +CONFIG_CRYPTO_DEV_OMAP_DES policy<{'armhf': 'm'}> + +# Menu: Cryptographic API >> Hardware crypto devices >> Support for s390 cryptographic adapters +CONFIG_ZCRYPT policy<{'s390x': 'm'}> +CONFIG_ZCRYPT_DEBUG policy<{'s390x': 'n'}> +CONFIG_ZCRYPT_MULTIDEVNODES policy<{'s390x': 'y'}> +CONFIG_PKEY policy<{'s390x': 'm'}> +CONFIG_CRYPTO_PAES_S390 policy<{'s390x': 'm'}> +# +CONFIG_ZCRYPT_MULTIDEVNODES mark note + +# Menu: Cryptographic API >> NIST SP800-90A DRBG +CONFIG_CRYPTO_DRBG_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DRBG_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRYPTO_DRBG_CTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers +CONFIG_MEDIA_CEC_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CEC_PIN_ERROR_INJ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': '-'}> +CONFIG_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Accessibility support +CONFIG_ACCESSIBILITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_ACCESSIBILITY mark note + +# Menu: Device Drivers >> Accessibility support >> Speakup console speech + +# Menu: Device Drivers >> Accessibility support >> Speakup console speech >> Speakup core + +# Menu: Device Drivers >> Android +CONFIG_ANDROID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Android >> Android Binder IPC Driver +CONFIG_ANDROID_BINDER_IPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ANDROID_BINDERFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ANDROID_BINDER_DEVICES policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""'}> +CONFIG_ANDROID_BINDER_IPC_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Auxiliary Display support +CONFIG_CHARLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AUXDISPLAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HD44780_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HD44780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IMG_ASCII_LCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HT16K33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LCD2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ARM_CHARLCD policy<{'armhf': 'y'}> +CONFIG_PANEL_CHANGE_MESSAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Backlight initial state +CONFIG_CHARLCD_BL_OFF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CHARLCD_BL_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CHARLCD_BL_FLASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Auxiliary Display support >> KS0108 LCD Controller +CONFIG_KS0108 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KS0108_PORT policy<{'amd64': '0x378', 'arm64': '0x378', 'armhf': '0x378', 'ppc64el': '0x378', 'riscv64': '0x378'}> +CONFIG_KS0108_DELAY policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2'}> +CONFIG_CFAG12864B policy<{'amd64': 'm'}> +CONFIG_CFAG12864B_RATE policy<{'amd64': '20'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support +CONFIG_PARPORT_PANEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PANEL_PARPORT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_PANEL_PROFILE policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5', 'riscv64': '5'}> + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support >> LCD type (0=none, 1=custom, 2=old //, 3=ks0074, 4=hantronix, 5=Nexcom) + +# Menu: Device Drivers >> Auxiliary Display support >> Parallel port LCD/Keypad Panel support >> LCD type (0=none, 1=custom, 2=old //, 3=ks0074, 4=hantronix, 5=Nexcom) >> LCD communication mode (0=parallel 8 bits, 1=serial) + +# Menu: Device Drivers >> Block devices +CONFIG_BLK_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_NULL_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_FD policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_BLK_DEV_PCIESSD_MTIP32XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_LOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_LOOP_MIN_COUNT policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8', 's390x': '8'}> +CONFIG_BLK_DEV_DRBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DRBD_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BLK_DEV_NBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SX8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BLK_DEV_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RAM_COUNT policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16', 'riscv64': '16', 's390x': '16'}> +CONFIG_BLK_DEV_RAM_SIZE policy<{'amd64': '65536', 'arm64': '65536', 'armhf': '65536', 'ppc64el': '65536', 'riscv64': '65536', 's390x': '65536'}> +CONFIG_CDROM_PKTCDVD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CDROM_PKTCDVD_BUFFERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8'}> +CONFIG_CDROM_PKTCDVD_WCACHE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATA_OVER_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DCSSBLK policy<{'s390x': 'm'}> +CONFIG_SCM_BLOCK policy<{'s390x': 'm'}> +CONFIG_XEN_BLKDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_BLKDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_VIRTIO_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RNBD_CLIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_RNBD_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_CDROM_PKTCDVD_WCACHE mark +CONFIG_XEN_BLKDEV_FRONTEND note +CONFIG_VIRTIO_BLK note +CONFIG_BLK_DEV_RAM note +CONFIG_BLK_DEV_RAM_SIZE mark note flag + +# Menu: Device Drivers >> Block devices >> Compressed RAM block device support +CONFIG_ZRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ZRAM_WRITEBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZRAM_MEMORY_TRACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Block devices >> Compressed RAM block device support >> Default zram compressor +CONFIG_ZRAM_DEF_COMP_LZORLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZRAM_DEF_COMP_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZ4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_LZ4HC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZRAM_DEF_COMP_842 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Block devices >> Parallel port IDE device support +CONFIG_PARIDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_PD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_PCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_PF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_PT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_PG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_ATEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_BPCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_BPCK6 policy<{'armhf': 'm'}> +CONFIG_PARIDE_COMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_DSTR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_FIT2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_FIT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_EPAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_EPATC8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PARIDE_EPIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_FRIQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_FRPW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_KBIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_KTTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_ON20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARIDE_ON26 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Block devices >> Support for DASD devices +CONFIG_DASD policy<{'s390x': 'm'}> +CONFIG_DASD_PROFILE policy<{'s390x': 'y'}> +CONFIG_DASD_ECKD policy<{'s390x': 'm'}> +CONFIG_DASD_FBA policy<{'s390x': 'm'}> +CONFIG_DASD_DIAG policy<{'s390x': 'm'}> +CONFIG_DASD_EER policy<{'s390x': 'y'}> + +# Menu: Device Drivers >> Board level reset or power off +CONFIG_POWER_RESET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_POWER_RESET_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_ATC260X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_POWER_RESET_AXXIA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_POWER_RESET_BRCMKONA policy<{'armhf': 'y'}> +CONFIG_POWER_RESET_BRCMSTB policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_POWER_RESET_GPIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_GPIO_RESTART policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_LINKSTATION policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_POWER_RESET_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_QCOM_PON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_POWER_RESET_OCELOT_RESET policy<{'arm64': 'y'}> +CONFIG_POWER_RESET_LTC2952 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_MT6323 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_QNAP policy<{'armhf': 'n'}> +CONFIG_POWER_RESET_REGULATOR policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_RESTART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_POWER_RESET_TPS65086 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_VERSATILE policy<{'armhf': 'y'}> +CONFIG_POWER_RESET_VEXPRESS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_POWER_RESET_XGENE policy<{'arm64': 'n'}> +CONFIG_POWER_RESET_SYSCON policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_SYSCON_POWEROFF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_POWER_RESET_RMOBILE policy<{'armhf': 'm'}> +CONFIG_SYSCON_REBOOT_MODE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_POWER_RESET_SC27XX policy<{'arm64': 'm'}> +CONFIG_NVMEM_REBOOT_MODE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Broadcom specific AMBA +CONFIG_BCMA_HOST_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BCMA_HOST_SOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA_DRIVER_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA_SFLASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA_DRIVER_GMAC_CMN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BCMA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Bus devices +CONFIG_BRCMSTB_GISB_ARB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MOXTET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HISILICON_LPC policy<{'arm64': 'y'}> +CONFIG_IMX_WEIM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_OMAP_INTERCONNECT policy<{'armhf': 'y'}> +CONFIG_OMAP_OCP2SCP policy<{'armhf': 'm'}> +CONFIG_QCOM_EBI2 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SUN50I_DE2_BUS policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SUNXI_RSB policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_TEGRA_ACONNECT policy<{'arm64': 'm'}> +CONFIG_TEGRA_GMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TI_SYSC policy<{'armhf': 'y'}> +CONFIG_UNIPHIER_SYSTEM_BUS policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_VEXPRESS_CONFIG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FSL_MC_BUS policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_FSL_MC_UAPI_SUPPORT policy<{'arm64': 'y'}> +CONFIG_MHI_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MHI_BUS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MHI_BUS_PCI_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> CXL (Compute Express Link) Devices Support +CONFIG_CXL_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CXL_MEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CXL_MEM_RAW_COMMANDS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CXL_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CXL_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Character devices +CONFIG_RANDOM_TRUST_CPU policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RANDOM_TRUST_BOOTLOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TTY_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_TTY_PRINTK_LEVEL policy<{'amd64': '6', 'arm64': '6', 'armhf': '6', 'ppc64el': '6', 'riscv64': '6'}> +CONFIG_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LP_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PPDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIRTIO_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IBM_BSR policy<{'ppc64el': 'm'}> +CONFIG_POWERNV_OP_PANEL policy<{'ppc64el': 'm'}> +CONFIG_ASPEED_KCS_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_NPCM7XX_KCS_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_IPMI_KCS_BMC_CDEV_IPMI policy<{'armhf': 'm'}> +CONFIG_IPMI_KCS_BMC_SERIO policy<{'armhf': 'm'}> +CONFIG_ASPEED_BT_IPMI_BMC policy<{'armhf': 'm'}> +CONFIG_IPMB_DEVICE_INTERFACE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APPLICOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MWAVE policy<{'amd64': 'm'}> +CONFIG_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NVRAM policy<{'amd64': 'm', 'ppc64el': 'y'}> +CONFIG_DEVPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HPET policy<{'amd64': 'y'}> +CONFIG_HPET_MMAP policy<{'amd64': 'y'}> +CONFIG_HPET_MMAP_DEFAULT policy<{'amd64': 'y'}> +CONFIG_HANGCHECK_TIMER policy<{'amd64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_UV_MMTIMER policy<{'amd64': 'm'}> +CONFIG_TELCLOCK policy<{'amd64': 'm'}> +CONFIG_TN3270 policy<{'s390x': 'y'}> +CONFIG_TN3270_TTY policy<{'s390x': 'y'}> +CONFIG_TN3270_FS policy<{'s390x': 'm'}> +CONFIG_TN3270_CONSOLE policy<{'s390x': 'y'}> +CONFIG_TN3215 policy<{'s390x': 'y'}> +CONFIG_TN3215_CONSOLE policy<{'s390x': 'y'}> +CONFIG_SCLP_TTY policy<{'s390x': 'y'}> +CONFIG_SCLP_CONSOLE policy<{'s390x': 'y'}> +CONFIG_SCLP_VT220_TTY policy<{'s390x': 'y'}> +CONFIG_SCLP_VT220_CONSOLE policy<{'s390x': 'y'}> +CONFIG_HMC_DRV policy<{'s390x': 'm'}> +CONFIG_SCLP_OFB policy<{'s390x': 'y'}> +CONFIG_S390_TAPE policy<{'s390x': 'm'}> +CONFIG_S390_TAPE_34XX policy<{'s390x': 'm'}> +CONFIG_S390_TAPE_3590 policy<{'s390x': 'm'}> +CONFIG_VMLOGRDR policy<{'s390x': 'm'}> +CONFIG_VMCP policy<{'s390x': 'y'}> +CONFIG_VMCP_CMA_SIZE policy<{'s390x': '4'}> +CONFIG_MONREADER policy<{'s390x': 'm'}> +CONFIG_MONWRITER policy<{'s390x': 'm'}> +CONFIG_S390_VMUR policy<{'s390x': 'm'}> +CONFIG_XILLYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_XILLYBUS_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_XILLYBUS_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_XILLYUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_NVRAM mark note +CONFIG_SCLP_OFB mark note + +# Menu: Device Drivers >> Character devices >> Enable TTY +CONFIG_NULL_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HVC_CONSOLE policy<{'ppc64el': 'y'}> +CONFIG_HVC_OLD_HVSI policy<{'ppc64el': 'y'}> +CONFIG_HVC_OPAL policy<{'ppc64el': 'y'}> +CONFIG_HVC_RTAS policy<{'ppc64el': 'y'}> +CONFIG_HVC_IUCV policy<{'s390x': 'y'}> +CONFIG_HVC_XEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_HVC_XEN_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_HVC_UDBG policy<{'ppc64el': 'n'}> +CONFIG_HVC_DCC policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_HVCS policy<{'ppc64el': 'm'}> +CONFIG_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CONSOLE_TRANSLATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VT_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VT_HW_CONSOLE_BINDING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UNIX98_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LEGACY_PTY_COUNT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0', 's390x': '0'}> +CONFIG_GOLDFISH_TTY policy<{'riscv64': 'm'}> +CONFIG_NOZOMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_N_GSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PPC_EPAPR_HV_BYTECHAN policy<{'ppc64el': 'n'}> +CONFIG_LDISC_AUTOLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_HVC_UDBG mark note +CONFIG_N_GSM note + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Non-standard serial port support +CONFIG_SERIAL_NONSTANDARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MOXA_INTELLIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOXA_SMARTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SYNCLINK_GT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_N_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers +CONFIG_SERIAL_AMBA_PL010 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_AMBA_PL011 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_AMBA_PL011_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_KGDB_NMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MESON_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_SAMSUNG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_TEGRA_TCU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_TEGRA_TCU_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MAX3100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIAL_MAX310X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_IMX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_IMX_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_IMX_EARLYCON policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SERIAL_UARTLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SERIAL_UARTLITE_NR_UARTS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1', 's390x': '1'}> +CONFIG_SERIAL_ICOM policy<{'ppc64el': 'm'}> +CONFIG_SERIAL_JSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MSM_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_QCOM_GENI_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OMAP policy<{'armhf': '-'}> +CONFIG_SERIAL_OMAP_CONSOLE policy<{'armhf': '-'}> +CONFIG_SERIAL_SIFIVE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y'}> +CONFIG_SERIAL_SIFIVE_CONSOLE policy<{'riscv64': 'y'}> +CONFIG_SERIAL_LANTIQ policy<{'amd64': 'm'}> +CONFIG_SERIAL_QE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SERIAL_SCCNXP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SERIAL_SCCNXP_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_SC16IS7XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_SC16IS7XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_SC16IS7XX_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_ALTERA_JTAGUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_XILINX_PS_UART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_ARC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ARC_NR_PORTS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1'}> +CONFIG_SERIAL_RP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_RP2_NR_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32'}> +CONFIG_SERIAL_FSL_LPUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_FSL_LINFLEXUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SERIAL_CONEXANT_DIGICOLOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_ST_ASC policy<{'armhf': 'm'}> +CONFIG_SERIAL_MEN_Z135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_SPRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIAL_MVEBU_UART policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_MVEBU_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OWL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_OWL_CONSOLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_RDA policy<{'armhf': 'y'}> +CONFIG_SERIAL_RDA_CONSOLE policy<{'armhf': 'y'}> +CONFIG_SERIAL_MILBEAUT_USIO policy<{'armhf': 'm'}> +CONFIG_SERIAL_MILBEAUT_USIO_PORTS policy<{'armhf': '4'}> +CONFIG_SERIAL_LITEUART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_LITEUART_MAX_PORTS policy<{'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support +CONFIG_SERIAL_8250 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_DEPRECATED_OPTIONS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SERIAL_8250_PNP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SERIAL_8250_16550A_VARIANTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_FINTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_EXAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_8250_CS policy<{'amd64': 'm'}> +CONFIG_SERIAL_8250_MEN_MCB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_8250_NR_UARTS policy<{'amd64': '48', 'arm64': '48', 'armhf': '48', 'ppc64el': '48', 'riscv64': '48'}> +CONFIG_SERIAL_8250_RUNTIME_UARTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32'}> +CONFIG_SERIAL_8250_ASPEED_VUART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_8250_DW policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_8250_RT288X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_OMAP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_MT6577 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_SERIAL_8250_LPSS policy<{'amd64': 'm'}> +CONFIG_SERIAL_8250_MID policy<{'amd64': 'y'}> +CONFIG_SERIAL_8250_MID note<'required to provide console on some Intel SoC platforms (LP: #2009283)'> +CONFIG_HSU_DMA policy<{'amd64': 'y'}> +CONFIG_HSU_DMA note<'required by CONFIG_SERIAL_8250_MID (LP: #2009283)'> +CONFIG_SERIAL_8250_TEGRA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SERIAL_8250_BCM7271 policy<{'arm64': 'm'}> +CONFIG_SERIAL_OF_PLATFORM policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support >> Extended 8250/16550 serial driver options +CONFIG_SERIAL_8250_EXTENDED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_SHARE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_DETECT_IRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SERIAL_8250_RSA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIAL_8250_BCM2835AUX policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> 8250/16550 and compatible serial support >> Extended 8250/16550 serial driver options >> Support more than 4 legacy serial ports +CONFIG_SERIAL_8250_MANY_PORTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> AT91 on-chip serial port support + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> Altera UART support +CONFIG_SERIAL_ALTERA_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SERIAL_ALTERA_UART_MAXPORTS policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4', 'riscv64': '4'}> +CONFIG_SERIAL_ALTERA_UART_BAUDRATE policy<{'amd64': '115200', 'arm64': '115200', 'armhf': '115200', 'ppc64el': '115200', 'riscv64': '115200'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> SuperH SCI(F) serial port support +CONFIG_SERIAL_SH_SCI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIAL_SH_SCI_NR_UARTS policy<{'arm64': '2', 'armhf': '2'}> +CONFIG_SERIAL_SH_SCI_DMA policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Character devices >> Enable TTY >> Serial drivers >> TMPTX39XX/49XX SIO support + +# Menu: Device Drivers >> Character devices >> Hardware Random Number Generator Core support +CONFIG_HW_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HW_RANDOM_TIMERIOMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HW_RANDOM_INTEL policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_AMD policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_BA431 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_IPROC_RNG200 policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_VIA policy<{'amd64': 'm'}> +CONFIG_HW_RANDOM_OMAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_OMAP3_ROM policy<{'armhf-generic': 'm'}> +CONFIG_HW_RANDOM_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_HW_RANDOM_IMX_RNGC policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_PSERIES policy<{'ppc64el': 'm'}> +CONFIG_HW_RANDOM_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_HW_RANDOM_HISI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_XGENE policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_CAVIUM policy<{'arm64': 'm'}> +CONFIG_HW_RANDOM_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_S390 policy<{'s390x': 'm'}> +CONFIG_HW_RANDOM_EXYNOS policy<{'armhf': 'n'}> +CONFIG_HW_RANDOM_OPTEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HW_RANDOM_NPCM policy<{'armhf': 'm'}> +CONFIG_HW_RANDOM_CCTRNG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 'riscv64': 'm'}> +CONFIG_HW_RANDOM_XIPHERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Character devices >> IPMI top-level message handler +CONFIG_IPMI_HANDLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_IPMI_PANIC_EVENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_IPMI_DEVICE_INTERFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPMI_SI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPMI_SSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPMI_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_IPMI_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPMI_POWEROFF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Character devices >> PCMCIA character devices +CONFIG_SYNCLINK_CS policy<{'amd64': 'm'}> +CONFIG_CARDMAN_4000 policy<{'amd64': 'm'}> +CONFIG_CARDMAN_4040 policy<{'amd64': 'm'}> +CONFIG_SCR24X policy<{'amd64': 'm'}> +CONFIG_IPWIRELESS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Character devices >> Serial device bus +CONFIG_SERIAL_DEV_BUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SERIAL_DEV_CTRL_TTYPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SERIAL_DEV_BUS note +CONFIG_SERIAL_DEV_CTRL_TTYPORT note + +# Menu: Device Drivers >> Character devices >> TPM Hardware Support +CONFIG_TCG_TPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HW_RANDOM_TPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TCG_TIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TCG_TIS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TCG_TIS_SPI_CR50 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TCG_TIS_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_TCG_TIS_I2C_CR50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_I2C_NUVOTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCG_NSC policy<{'amd64': 'm'}> +CONFIG_TCG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TCG_INFINEON policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TCG_IBMVTPM policy<{'ppc64el': 'y'}> +CONFIG_TCG_XEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_TCG_CRB policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_TCG_VTPM_PROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCG_FTPM_TEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TCG_TIS_ST33ZP24_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCG_TIS_ST33ZP24_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_TCG_TPM note +CONFIG_TCG_TIS_I2C_ATMEL note +CONFIG_TCG_TIS_I2C_INFINEON note +CONFIG_TCG_TIS_I2C_NUVOTON note + +# Menu: Device Drivers >> Clock Source drivers +CONFIG_DW_APB_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARMADA_370_XP_TIMER policy<{'armhf': 'y'}> +CONFIG_MESON6_TIMER policy<{'armhf': 'y'}> +CONFIG_ORION_TIMER policy<{'armhf': 'y'}> +CONFIG_OWL_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RDA_TIMER policy<{'armhf': 'y'}> +CONFIG_SUN4I_TIMER policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_TEGRA_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_NPCM7XX_TIMER policy<{'armhf': 'y'}> +CONFIG_CLKSRC_TI_32K policy<{'armhf': 'y'}> +CONFIG_ARM_ARCH_TIMER_EVTSTREAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FSL_ERRATUM_A008585 policy<{'arm64': 'y'}> +CONFIG_HISILICON_ERRATUM_161010101 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_858921 policy<{'arm64': 'y'}> +CONFIG_SUN50I_ERRATUM_UNKNOWN1 policy<{'arm64': 'y'}> +CONFIG_ARM_GLOBAL_TIMER policy<{'armhf': 'y'}> +CONFIG_ARM_GT_INITIAL_PRESCALER_VAL policy<{'armhf': '1'}> +CONFIG_ARM_TIMER_SP804 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLKSRC_EXYNOS_MCT policy<{'armhf': 'y'}> +CONFIG_MTK_TIMER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPRD_TIMER policy<{'arm64': 'y'}> +CONFIG_SH_TIMER_CMT policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SH_TIMER_MTU2 policy<{'armhf': 'y'}> +CONFIG_RENESAS_OSTM policy<{'armhf': 'y', 'arm64': 'y'}> +CONFIG_SH_TIMER_TMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EM_TIMER_STI policy<{'armhf': 'y'}> +CONFIG_CLKSRC_QCOM policy<{'armhf': 'y'}> +CONFIG_CLKSRC_VERSATILE policy<{'armhf': 'y'}> +CONFIG_CLKSRC_IMX_GPT policy<{'armhf': 'y'}> +CONFIG_CLKSRC_IMX_TPM policy<{'armhf': 'y'}> +CONFIG_TIMER_IMX_SYS_CTR policy<{'arm64': 'y'}> +CONFIG_RISCV_TIMER policy<{'riscv64': 'y'}> +CONFIG_MILBEAUT_TIMER policy<{'armhf': 'y'}> +CONFIG_MICROCHIP_PIT64B policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +# +CONFIG_ARM64_ERRATUM_858921 mark note + +# Menu: Device Drivers >> Common Clock Framework +CONFIG_COMMON_CLK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_COMMON_CLK_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LMK04832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_MAX9485 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_HI655X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SCPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_SI5341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_SI5351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_SI514 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_SI544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_SI570 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_BM1880 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_CDCE706 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_CDCE925 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_CS2000_CP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_FSL_FLEXSPI policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_FSL_SAI policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_ASPEED policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_S2MPS11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CLK_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_AXI_CLKGEN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CLK_QORIQ policy<{'arm64': 'y'}> +CONFIG_CLK_LS1028A_PLLDIG policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_XGENE policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_VC5 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMMON_CLK_FIXED_MMIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CLK_BCM2711_DVP policy<{'arm64': 'm'}> +CONFIG_CLK_BCM2835 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_NS2 policy<{'arm64': 'y'}> +CONFIG_CLK_BCM_SR policy<{'arm64': 'y'}> +CONFIG_CLK_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_HI3516CV300 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI3519 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI3559A policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3660 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3670 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_HI3798CV200 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_STUB_CLK_HI6220 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_STUB_CLK_HI3660 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MXC_CLK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_IMX8MM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_IMX8MN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_IMX8MP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_IMX8MQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_IMX8QXP policy<{'arm64': 'y'}> +CONFIG_TI_SCI_CLK policy<{'arm64': 'm'}> +CONFIG_TI_SCI_CLK_PROBE_FROM_FW policy<{'arm64': 'n'}> +CONFIG_TI_SYSCON_CLK policy<{'arm64': 'y'}> +CONFIG_MSTAR_MSC313_MPLL policy<{'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA32 policy<{'armhf': 'y'}> +CONFIG_CLK_INTEL_SOCFPGA64 policy<{'arm64': 'y'}> +CONFIG_SPRD_COMMON_CLK policy<{'arm64': 'm'}> +CONFIG_SPRD_SC9860_CLK policy<{'arm64': 'm'}> +CONFIG_SPRD_SC9863A_CLK policy<{'arm64': 'm'}> +CONFIG_COMMON_CLK_TI_ADPLL policy<{'armhf': 'y'}> +CONFIG_CLK_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_XILINX_VCU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_COMMON_CLK_ZYNQMP policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for ARM Reference designs +CONFIG_CLK_SP810 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_CLK_VEXPRESS_OSC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for Actions Semi SoCs +CONFIG_CLK_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_OWL_S500 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_OWL_S700 policy<{'arm64': 'y'}> +CONFIG_CLK_OWL_S900 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC +CONFIG_COMMON_CLK_MT7629 policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7629_ETHSYS policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7629_HIFSYS policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8135 policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8173 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8173_MMSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8516 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT8516_AUDSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT2701 +CONFIG_COMMON_CLK_MT2701 policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT2712 +CONFIG_COMMON_CLK_MT2712 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_BDPSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_JPGDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT2712_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6765 +CONFIG_COMMON_CLK_MT6765 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_AUDIOSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_GCESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_VCODECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MFGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI0ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI0BSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI1ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI1BSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI2ASYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6765_MIPI2BSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6779 +CONFIG_COMMON_CLK_MT6779 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_IPESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_VENCSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6779_AUDSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT6797 +CONFIG_COMMON_CLK_MT6797 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT6797_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT7622 +CONFIG_COMMON_CLK_MT7622 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_ETHSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_HIFSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_COMMON_CLK_MT7622_AUDSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8167 +CONFIG_COMMON_CLK_MT8167 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_AUDSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8167_VDECSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8183 +CONFIG_COMMON_CLK_MT8183 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_AUDIOSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CORE0 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CORE1 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_ADL policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_IPU_CONN policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8183_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock driver for MediaTek SoC >> Clock driver for MediaTek MT8192 +CONFIG_COMMON_CLK_MT8192 policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_AUDSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_CAMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IMGSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IMP_IIC_WRAP policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_IPESYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MDPSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MFGCFG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MMSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_MSDC policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_SCP_ADSP policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_VDECSYS policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_MT8192_VENCSYS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock support for Allwinner SoCs +CONFIG_SUNXI_CCU policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SUN50I_A64_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_A100_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_A100_R_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H6_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H616_CCU policy<{'arm64': 'y'}> +CONFIG_SUN50I_H6_R_CCU policy<{'arm64': 'y'}> +CONFIG_SUN8I_H3_CCU policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SUN8I_DE2_CCU policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SUN8I_R_CCU policy<{'arm64': 'y', 'armhf': '-'}> + +# Menu: Device Drivers >> Common Clock Framework >> Clock support for Amlogic platforms +CONFIG_COMMON_CLK_MESON8B policy<{'armhf': 'y'}> +CONFIG_COMMON_CLK_GXBB policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_AXG policy<{'arm64': 'y'}> +CONFIG_COMMON_CLK_AXG_AUDIO policy<{'arm64': 'm', 'armhf': 'n'}> +CONFIG_COMMON_CLK_G12A policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Ingenic SoCs drivers + +# Menu: Device Drivers >> Common Clock Framework >> Legacy clock support for Allwinner SoCs +CONFIG_CLK_SUNXI policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CLK_SUNXI_CLOCKS policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CLK_SUNXI_PRCM_SUN6I policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CLK_SUNXI_PRCM_SUN8I policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_CLK_SUNXI_PRCM_SUN9I policy<{'arm64': 'y', 'armhf': '-'}> + +# Menu: Device Drivers >> Common Clock Framework >> Renesas SoC clock support +CONFIG_CLK_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_EMEV2 policy<{'armhf': 'y'}> +CONFIG_CLK_RZA1 policy<{'armhf': 'y'}> +CONFIG_CLK_R7S9210 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7740 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7742 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7743 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7745 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A77470 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A7778 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7779 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7790 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7791 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7792 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7794 policy<{'armhf': 'y'}> +CONFIG_CLK_R8A7795 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77960 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77961 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77965 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77970 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77980 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77990 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A77995 policy<{'arm64': 'y'}> +CONFIG_CLK_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_CLK_R9A06G032 policy<{'armhf': 'y'}> +CONFIG_CLK_R9A07G044 policy<{'arm64': 'y'}> +CONFIG_CLK_SH73A0 policy<{'armhf': 'y'}> +CONFIG_CLK_RCAR_CPG_LIB policy<{'arm64': 'y'}> +CONFIG_CLK_RCAR_GEN2_CPG policy<{'armhf': 'y'}> +CONFIG_CLK_RCAR_GEN3_CPG policy<{'arm64': 'y'}> +CONFIG_CLK_RCAR_USB2_CLOCK_SEL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_RZG2L policy<{'arm64': 'y'}> +CONFIG_CLK_RENESAS_CPG_MSSR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_RENESAS_CPG_MSTP policy<{'armhf': 'y'}> +CONFIG_CLK_RENESAS_DIV6 policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Rockchip clock controller common support +CONFIG_COMMON_CLK_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_CLK_PX30 policy<{'arm64': 'y'}> +CONFIG_CLK_RV110X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3036 policy<{'armhf': 'y'}> +CONFIG_CLK_RK312X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3188 policy<{'armhf': 'y'}> +CONFIG_CLK_RK322X policy<{'armhf': 'y'}> +CONFIG_CLK_RK3288 policy<{'armhf': 'y'}> +CONFIG_CLK_RK3308 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3328 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3368 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3399 policy<{'arm64': 'y'}> +CONFIG_CLK_RK3568 policy<{'arm64': 'y', 'armhf': '-'}> + +# Menu: Device Drivers >> Common Clock Framework >> Samsung Exynos clock controller support +CONFIG_COMMON_CLK_SAMSUNG policy<{'armhf': 'y'}> +CONFIG_EXYNOS_5250_COMMON_CLK policy<{'armhf': '-'}> +CONFIG_EXYNOS_5260_COMMON_CLK policy<{'armhf': '-'}> +CONFIG_EXYNOS_5410_COMMON_CLK policy<{'armhf': '-'}> +CONFIG_EXYNOS_5420_COMMON_CLK policy<{'armhf': '-'}> +CONFIG_EXYNOS_AUDSS_CLK_CON policy<{'armhf': 'n'}> +CONFIG_EXYNOS_CLKOUT policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Common Clock Framework >> SiFive SoC driver support +CONFIG_CLK_SIFIVE policy<{'riscv64': 'y'}> +CONFIG_CLK_SIFIVE_PRCI policy<{'riscv64': 'y'}> + +# Menu: Device Drivers >> Common Clock Framework >> Support for Qualcomm's clock controllers +CONFIG_COMMON_CLK_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_A53PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_A7PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_APCS_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_APCC_MSM8996 policy<{'arm64': 'm'}> +CONFIG_QCOM_CLK_APCS_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_CLK_RPMH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APQ_GCC_8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_APQ_MMCC_8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_APSS_PLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_APSS_6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_LCC_806X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IPQ_GCC_8074 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8939 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_LCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_GCC_9607 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_GCC_9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDM_LCC_9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8953 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_GPUCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MSM_MMCC_8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_GCC_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_CAMCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_DISPCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_DISPCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GCC_8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_LPASS_CORECC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GPUCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_GPUCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_MSS_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_VIDEOCC_7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SC_VIDEOCC_7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_CAMCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_MMCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GPUCC_660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_TURING_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCS_Q6SSTOP_404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_GPUCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_VIDEOCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_DISPCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDM_LPASSCC_845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SDX_GCC_55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_CAMCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_DISPCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6115 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6125 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_6350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GCC_8350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GPUCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_GPUCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_VIDEOCC_8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SM_VIDEOCC_8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPMI_PMIC_CLKDIV policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_HFPLL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KPSS_XCC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KRAITCC policy<{'armhf': 'm'}> +CONFIG_CLK_GFM_LPASS_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Connector - unified userspace <-> kernelspace linker +CONFIG_CONNECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Counter support +CONFIG_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_104_QUAD_8 policy<{'amd64': 'm'}> +CONFIG_INTERRUPT_CNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_TI_EQEP policy<{'armhf-generic': 'm'}> +CONFIG_FTM_QUADDEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MICROCHIP_TCB_CAPTURE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_INTEL_QEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> DAX: direct access to differentiated memory +CONFIG_DAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEV_DAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DEV_DAX_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_DEV_DAX_HMEM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_DEV_DAX_KMEM policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> DMA Engine support +CONFIG_DMADEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DMADEVICES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ALTERA_MSGDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_AMBA_PL08X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_AXI_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BCM_SBA_RAID policy<{'arm64': 'm'}> +CONFIG_DMA_BCM2835 policy<{'arm64': 'y'}> +CONFIG_DMA_SUN6I policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DW_AXI_DMAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSL_EDMA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSL_QDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_SDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTEL_IDMA64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INTEL_IDXD policy<{'amd64': 'm'}> +CONFIG_INTEL_IDXD_COMPAT policy<{'amd64': 'n'}> +CONFIG_INTEL_IDXD_SVM policy<{'amd64': 'y'}> +CONFIG_INTEL_IDXD_PERFMON policy<{'amd64': 'y'}> +CONFIG_INTEL_IOATDMA policy<{'amd64': 'm'}> +CONFIG_K3_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MILBEAUT_HDMAC policy<{'armhf': 'm'}> +CONFIG_MILBEAUT_XDMAC policy<{'armhf': 'm'}> +CONFIG_MV_XOR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MV_XOR_V2 policy<{'arm64': 'y'}> +CONFIG_MXS_DMA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MX3_IPU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MX3_IPU_IRQS policy<{'arm64': '4', 'armhf': '4'}> +CONFIG_NBPFAXI_DMA policy<{'armhf': 'm'}> +CONFIG_OWL_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PL330_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PLX_DMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPRD_DMA policy<{'arm64': 'm'}> +CONFIG_TEGRA20_APB_DMA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_TEGRA210_ADMA policy<{'arm64': 'm'}> +CONFIG_UNIPHIER_MDMAC policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_UNIPHIER_XDMAC policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_XGENE_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_ZYNQMP_DMA policy<{'arm64': 'm'}> +CONFIG_XILINX_ZYNQMP_DPDMA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTK_HSDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_CQDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_UART_APDMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AMD_PTDMA policy<{'amd64': 'm'}> +CONFIG_QCOM_ADM policy<{'armhf-generic': 'm'}> +CONFIG_QCOM_BAM_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_GPI_DMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_HIDMA_MGMT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_QCOM_HIDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DW_DMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DW_DMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DW_EDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DW_EDMA_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SF_PDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RCAR_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_USB_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RZ_DMAC policy<{'arm64': 'm'}> +CONFIG_TI_CPPI41 policy<{'armhf': 'm'}> +CONFIG_TI_EDMA policy<{'armhf': 'y'}> +CONFIG_DMA_OMAP policy<{'armhf': 'y'}> +CONFIG_TI_K3_UDMA policy<{'arm64': 'y'}> +CONFIG_TI_K3_UDMA_GLUE_LAYER policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA2_QDMA policy<{'arm64': 'm'}> +CONFIG_INTEL_LDMA policy<{'amd64': 'y'}> +CONFIG_ASYNC_TX_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DMATEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_DMATEST flag + +# Menu: Device Drivers >> DMABUF options +CONFIG_SYNC_FILE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SW_SYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UDMABUF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DMABUF_MOVE_NOTIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DMABUF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DMABUF_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DMABUF_SYSFS_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> DMABUF options >> DMA-BUF Userland Memory Heaps +CONFIG_DMABUF_HEAPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DMABUF_HEAPS_SYSTEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DMABUF_HEAPS_CMA policy<{'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Dallas's 1-wire support +CONFIG_W1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_W1_CON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> + +# Menu: Device Drivers >> Dallas's 1-wire support >> 1-wire Bus Masters +CONFIG_W1_MASTER_MATROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_MASTER_DS2490 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_MASTER_DS2482 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_MASTER_MXC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_W1_MASTER_DS1WM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_MASTER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HDQ_MASTER_OMAP policy<{'armhf': 'm'}> +CONFIG_W1_MASTER_SGI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Dallas's 1-wire support >> 1-wire Slaves +CONFIG_W1_SLAVE_THERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_SMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2405 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2408 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2408_READBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_W1_SLAVE_DS2413 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2406 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2430 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2431 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2433 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2433_CRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2438 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS250X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS28E04 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_W1_SLAVE_DS28E17 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) +CONFIG_COMEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_COMEDI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'ppc64el': '2048', 'riscv64': '2048'}> +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB policy<{'amd64': '20480', 'arm64': '20480', 'armhf': '20480', 'ppc64el': '20480', 'riscv64': '20480'}> +CONFIG_COMEDI_8255_SA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_KCOMEDILIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_TESTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_TESTS_EXAMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_TESTS_NI_ROUTES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi ISA and PC/104 drivers +CONFIG_COMEDI_ISA_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_COMEDI_PCL711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL726 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCL818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCM3724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_RTI800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_RTI802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAC02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS16M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS08_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS1800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS6402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2814 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT2817 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT282X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DMM32AT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_FL512 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AIO_AIO12_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AIO_IIRO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_II_PCI20KC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_C6XDIGIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_MPC624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADQ12B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_AT_A2150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_AT_AO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_ATMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_ATMIO16D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_LABPC_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMDA12 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PCMUIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_MULTIQ3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_S526 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi PCI drivers +CONFIG_COMEDI_PCI_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_8255_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1516 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_1564 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_16XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADDI_APCI_3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI6208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI7X3X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI8164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI9111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADL_PCI9118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1723 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ADV_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_DIO200_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC236_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PC263_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PCI224 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_AMPLC_PCI230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CONTEC_PCI_DIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAS08_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DYNA_PCI10XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_GSC_HPDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_MF6X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ICP_MULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DAQBOARD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_JR3_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_KE_COUNTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIDAS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIMDAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_CB_PCIMDDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ME4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_ME_DAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_6527 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_65XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_660X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_670X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_LABPC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_PCIDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_PCIMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_RTD520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi PCMCIA drivers +CONFIG_COMEDI_PCMCIA_DRIVERS policy<{'amd64': 'm'}> +CONFIG_COMEDI_CB_DAS16_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_DAS08_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_DAQ_700_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_DAQ_DIO24_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_LABPC_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_NI_MIO_CS policy<{'amd64': 'm'}> +CONFIG_COMEDI_QUATECH_DAQP_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi USB drivers +CONFIG_COMEDI_USB_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_DT9812 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_NI_USB6501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_USBDUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_USBDUXFAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_USBDUXSIGMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_VMK80XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Data acquisition support (comedi) >> Comedi misc drivers +CONFIG_COMEDI_MISC_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_COMEDI_BOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_COMEDI_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Device Tree and Open Firmware support +CONFIG_OF policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_OF_UNITTEST policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_OF_DYNAMIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_OF_OVERLAY policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +# +CONFIG_OF_UNITTEST flag + +# Menu: Device Drivers >> EDAC (Error Detection And Correction) reporting +CONFIG_EDAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_EDAC_LEGACY_SYSFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_EDAC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_EDAC_DECODE_MCE policy<{'amd64': 'm'}> +CONFIG_EDAC_GHES policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_EDAC_AMD64 policy<{'amd64': 'm'}> +CONFIG_EDAC_AL_MC policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_EDAC_E752X policy<{'amd64': 'm'}> +CONFIG_EDAC_I82975X policy<{'amd64': 'm'}> +CONFIG_EDAC_I3000 policy<{'amd64': 'm'}> +CONFIG_EDAC_I3200 policy<{'amd64': 'm'}> +CONFIG_EDAC_IE31200 policy<{'amd64': 'm'}> +CONFIG_EDAC_X38 policy<{'amd64': 'm'}> +CONFIG_EDAC_I5400 policy<{'amd64': 'm'}> +CONFIG_EDAC_I7CORE policy<{'amd64': 'm'}> +CONFIG_EDAC_I5000 policy<{'amd64': 'm'}> +CONFIG_EDAC_I5100 policy<{'amd64': 'm'}> +CONFIG_EDAC_I7300 policy<{'amd64': 'm'}> +CONFIG_EDAC_SBRIDGE policy<{'amd64': 'm'}> +CONFIG_EDAC_SKX policy<{'amd64': 'm'}> +CONFIG_EDAC_I10NM policy<{'amd64': 'm'}> +CONFIG_EDAC_PND2 policy<{'amd64': 'm'}> +CONFIG_EDAC_IGEN6 policy<{'amd64': 'm'}> +CONFIG_EDAC_LAYERSCAPE policy<{'arm64': 'm'}> +CONFIG_EDAC_CPC925 policy<{'ppc64el': 'm'}> +CONFIG_EDAC_HIGHBANK_MC policy<{'armhf': 'm'}> +CONFIG_EDAC_HIGHBANK_L2 policy<{'armhf': 'm'}> +CONFIG_EDAC_THUNDERX policy<{'arm64': 'm'}> +CONFIG_EDAC_SIFIVE policy<{'riscv64': 'y'}> +CONFIG_EDAC_ARMADA_XP policy<{'armhf': 'y'}> +CONFIG_EDAC_SYNOPSYS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_EDAC_XGENE policy<{'arm64': 'm'}> +CONFIG_EDAC_TI policy<{'armhf': 'm'}> +CONFIG_EDAC_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_EDAC_ASPEED policy<{'armhf': 'm'}> +CONFIG_EDAC_BLUEFIELD policy<{'arm64': 'm'}> +CONFIG_EDAC_DMC520 policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> EDAC (Error Detection And Correction) reporting >> Altera SOCFPGA ECC +CONFIG_EDAC_ALTERA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_SDRAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_L2C policy<{'armhf': 'y'}> +CONFIG_EDAC_ALTERA_OCRAM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_ETHERNET policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_NAND policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_USB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_QSPI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EDAC_ALTERA_SDMMC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> EISA support +CONFIG_EISA policy<{'amd64': 'y'}> +CONFIG_EISA_VLB_PRIMING policy<{'amd64': 'y'}> +CONFIG_EISA_PCI_EISA policy<{'amd64': 'y'}> +CONFIG_EISA_VIRTUAL_ROOT policy<{'amd64': 'y'}> +CONFIG_EISA_NAMES policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Eckelmann SIOX Support +CONFIG_SIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SIOX_BUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> External Connector Class (extcon) support +CONFIG_EXTCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_EXTCON_ADC_JACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_EXTCON_AXP288 policy<{'amd64': 'm'}> +CONFIG_EXTCON_FSA9480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_INTEL_INT3496 policy<{'amd64': 'm'}> +CONFIG_EXTCON_INTEL_CHT_WC policy<{'amd64': 'm'}> +CONFIG_EXTCON_INTEL_MRFLD policy<{'amd64': 'm'}> +CONFIG_EXTCON_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_MAX3355 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_MAX77843 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_PTN5150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_QCOM_SPMI_MISC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_EXTCON_RT8973A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_SM5502 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_USB_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EXTCON_USBC_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_EXTCON_USBC_TUSB320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> FPGA Configuration Framework +CONFIG_FPGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FPGA_MGR_SOCFPGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FPGA_MGR_SOCFPGA_A10 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ALTERA_PR_IP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ALTERA_PR_IP_CORE_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_MGR_ALTERA_PS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FPGA_MGR_ALTERA_CVP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FPGA_MGR_STRATIX10_SOC policy<{'arm64': 'm'}> +CONFIG_FPGA_MGR_XILINX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FPGA_MGR_ICE40_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_MGR_MACHXO2_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FPGA_MGR_ZYNQMP_FPGA policy<{'arm64': 'm'}> +CONFIG_FPGA_MGR_VERSAL_FPGA policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Bridge Framework +CONFIG_FPGA_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SOCFPGA_FPGA_BRIDGE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ALTERA_FREEZE_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_XILINX_PR_DECOUPLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_REGION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_OF_FPGA_REGION policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Device Feature List (DFL) support +CONFIG_FPGA_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FPGA_DFL_AFU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_DFL_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> FPGA Configuration Framework >> FPGA Device Feature List (DFL) support >> FPGA DFL FME Driver +CONFIG_FPGA_DFL_FME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_DFL_FME_MGR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_DFL_FME_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FPGA_DFL_FME_REGION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> FSI support +CONFIG_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_NEW_DEV_NODE policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_FSI_MASTER_GPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_MASTER_HUB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_MASTER_AST_CF policy<{'armhf': 'm'}> +CONFIG_FSI_MASTER_ASPEED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_SCOM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_SBEFIFO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSI_OCC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Fusion MPT device support +CONFIG_FUSION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_FUSION_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FUSION_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FUSION_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FUSION_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128'}> +CONFIG_FUSION_CTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FUSION_LAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FUSION_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> GNSS receiver support +CONFIG_GNSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GNSS_MTK_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GNSS_SIRF_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GNSS_UBX_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> GPIO Support +CONFIG_GPIOLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GPIOLIB_FASTPATH_LIMIT policy<{'amd64': '512', 'arm64': '512', 'armhf': '512', 'ppc64el': '512', 'riscv64': '512', 's390x': '512'}> +CONFIG_DEBUG_GPIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GPIO_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GPIO_CDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GPIO_CDEV_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +CONFIG_GPIO_CDEV_V1 note + +# Menu: Device Drivers >> GPIO Support >> I2C GPIO expanders +CONFIG_GPIO_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_ADNP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_GW_PLD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MAX7300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_MAX732X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCA953X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCA953X_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_PCA9570 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_PCF857X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_TPIC2810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_TS4900 policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> MFD GPIO expanders +CONFIG_GPIO_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_ALTERA_A10SR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_ARIZONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_BD71815 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_CRYSTAL_COVE policy<{'amd64': 'y'}> +CONFIG_GPIO_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HTC_EGPIO policy<{'armhf': 'y'}> +CONFIG_GPIO_JANZ_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MADERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_GPIO_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_TPS68470 policy<{'amd64': 'm'}> +CONFIG_GPIO_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_GPIO_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_TWL6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_WHISKEY_COVE policy<{'amd64': 'm'}> +CONFIG_GPIO_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_GPIO_TWL4030 mark note + +# Menu: Device Drivers >> GPIO Support >> Memory mapped GPIO drivers +CONFIG_GPIO_74XX_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_ALTERA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_AMDPT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_GPIO_ASPEED policy<{'armhf': 'm'}> +CONFIG_GPIO_ASPEED_SGPIO policy<{'armhf': 'y'}> +CONFIG_GPIO_RASPBERRYPI_EXP policy<{'arm64': 'm'}> +CONFIG_GPIO_BCM_XGS_IPROC policy<{'arm64': 'm'}> +CONFIG_GPIO_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_GPIO_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_DAVINCI policy<{'arm64': 'y'}> +CONFIG_GPIO_DWAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_EIC_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_EM policy<{'armhf': 'n'}> +CONFIG_GPIO_EXAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_FTGPIO010 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_GENERIC_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_GPIO_GRGPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_HISI policy<{'arm64': 'm'}> +CONFIG_GPIO_HLWD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_ICH policy<{'amd64': 'm'}> +CONFIG_GPIO_LOGICVC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MB86S7X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_MENZ127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MPC8XXX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_MXC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_OMAP policy<{'armhf': 'y'}> +CONFIG_GPIO_PL061 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_PMIC_EIC_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_RDA policy<{'armhf': 'y'}> +CONFIG_GPIO_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GPIO_SAMA5D2_PIOBU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_SIFIVE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GPIO_SIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GPIO_SPRD policy<{'arm64': 'm'}> +CONFIG_GPIO_SYSCON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_TEGRA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_GPIO_TEGRA186 policy<{'arm64': 'y'}> +CONFIG_GPIO_TS4800 policy<{'armhf': 'm'}> +CONFIG_GPIO_THUNDERX policy<{'arm64': 'm'}> +CONFIG_GPIO_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_GPIO_VISCONTI policy<{'arm64': 'm'}> +CONFIG_GPIO_VX855 policy<{'amd64': 'm'}> +CONFIG_GPIO_WCD934X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_XGENE policy<{'arm64': 'y'}> +CONFIG_GPIO_XGENE_SB policy<{'arm64': 'm'}> +CONFIG_GPIO_XILINX policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n'}> +CONFIG_GPIO_XLP policy<{'arm64': 'm'}> +CONFIG_GPIO_ZEVIO policy<{'armhf': 'y'}> +CONFIG_GPIO_ZYNQ policy<{'arm64': 'm'}> +CONFIG_GPIO_AMD_FCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GPIO_MSC313 policy<{'armhf': 'y'}> +# +CONFIG_GPIO_EM note + +# Menu: Device Drivers >> GPIO Support >> PCI GPIO expanders +CONFIG_GPIO_AMD8111 policy<{'amd64': 'm'}> +CONFIG_GPIO_BT8XX policy<{'s390x': 'm'}> +CONFIG_GPIO_MLXBF policy<{'arm64': 'm'}> +CONFIG_GPIO_MLXBF2 policy<{'arm64': 'm'}> +CONFIG_GPIO_ML_IOH policy<{'amd64': 'm'}> +CONFIG_GPIO_PCI_IDIO_16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GPIO_PCIE_IDIO_24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GPIO_RDC321X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> GPIO Support >> Port-mapped I/O GPIO drivers +CONFIG_GPIO_104_DIO_48E policy<{'amd64': 'm'}> +CONFIG_GPIO_104_IDIO_16 policy<{'amd64': 'm'}> +CONFIG_GPIO_104_IDI_48 policy<{'amd64': 'm'}> +CONFIG_GPIO_F7188X policy<{'amd64': 'm'}> +CONFIG_GPIO_GPIO_MM policy<{'amd64': 'm'}> +CONFIG_GPIO_IT87 policy<{'amd64': 'm'}> +CONFIG_GPIO_SCH policy<{'amd64': 'm'}> +CONFIG_GPIO_SCH311X policy<{'amd64': 'm'}> +CONFIG_GPIO_WINBOND policy<{'amd64': 'm'}> +CONFIG_GPIO_WS16C48 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> SPI GPIO expanders +CONFIG_GPIO_74X164 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_MAX3191X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_MAX7301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_MC33880 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_PISOSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_XRA1403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GPIO_MOXTET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> USB GPIO expanders +CONFIG_GPIO_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> GPIO Support >> Virtual GPIO drivers +CONFIG_GPIO_AGGREGATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GPIO_MOCKUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GPIO_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Generic Driver Options +CONFIG_UEVENT_HELPER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UEVENT_HELPER_PATH policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_DEVTMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEVTMPFS_MOUNT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEVTMPFS_SAFE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_STANDALONE policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PREVENT_FIRMWARE_BUILD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ALLOW_DEV_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_DRIVER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_DEVRES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_TEST_DRIVER_REMOVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_ASYNC_DRIVER_PROBE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DMA_FENCE_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_DEVTMPFS mark note +CONFIG_DEVTMPFS_MOUNT mark note + +# Menu: Device Drivers >> Generic Driver Options >> Firmware loader + +# Menu: Device Drivers >> Generic Driver Options >> Firmware loader >> Firmware loading facility +CONFIG_FW_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXTRA_FIRMWARE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_FW_LOADER_USER_HELPER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FW_LOADER_USER_HELPER_FALLBACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FW_LOADER_COMPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FW_CACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_FW_LOADER_USER_HELPER_FALLBACK mark note + +# Menu: Device Drivers >> Generic Dynamic Voltage and Frequency Scaling (DVFS) support +CONFIG_PM_DEVFREQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEVFREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEVFREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEVFREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEVFREQ_GOV_PASSIVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ARM_EXYNOS_BUS_DEVFREQ policy<{'armhf': 'n'}> +CONFIG_ARM_IMX_BUS_DEVFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_IMX8M_DDRC_DEVFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA_DEVFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_RK3399_DMC_DEVFREQ policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Generic Dynamic Voltage and Frequency Scaling (DVFS) support >> DEVFREQ-Event device Support +CONFIG_PM_DEVFREQ_EVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP policy<{'armhf': 'n'}> +CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU policy<{'armhf': 'n'}> +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Generic Target Core Mod (TCM) and ConfigFS Infrastructure +CONFIG_TARGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCM_IBLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCM_FILEIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCM_PSCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCM_USER2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_LOOPBACK_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCM_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ISCSI_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ISCSI_TARGET_CXGB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SBP_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Generic powercap sysfs driver +CONFIG_POWERCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_INTEL_RAPL policy<{'amd64': 'm'}> +CONFIG_IDLE_INJECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Graphics support +CONFIG_VGA_ARB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VGA_ARB_MAX_GPUS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16', 'riscv64': '16'}> +CONFIG_VGA_SWITCHEROO policy<{'amd64': 'y'}> +CONFIG_TEGRA_HOST1X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TEGRA_HOST1X_FIREWALL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IMX_IPUV3_CORE policy<{'armhf': 'm'}> +CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> /dev/agpgart (AGP Support) +CONFIG_AGP policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_AGP_AMD64 policy<{'amd64': 'y'}> +CONFIG_AGP_INTEL policy<{'amd64': 'y'}> +CONFIG_AGP_SIS policy<{'amd64': 'm'}> +CONFIG_AGP_VIA policy<{'amd64': 'y'}> +# +CONFIG_AGP note flag + +# Menu: Device Drivers >> Graphics support >> ARM devices +CONFIG_DRM_HDLCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_HDLCD_SHOW_UNDERRUN policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MALI_DISPLAY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_KOMEDA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support >> Lowlevel Backlight controls +CONFIG_BACKLIGHT_CLASS_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BACKLIGHT_KTD253 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BACKLIGHT_CARILLO_RANCH policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_APPLE policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_QCOM_WLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BACKLIGHT_SAHARA policy<{'amd64': 'm'}> +CONFIG_BACKLIGHT_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_ADP8860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_ADP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BACKLIGHT_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LM3630A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LM3639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LP855X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_PANDORA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BACKLIGHT_TPS65217 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> +CONFIG_BACKLIGHT_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_LV5207LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_BD6107 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_ARCXCNN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BACKLIGHT_RAVE_SP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BACKLIGHT_LED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Backlight & LCD device support >> Lowlevel LCD controls +CONFIG_LCD_CLASS_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_LCD_L4F00242T03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_LMS283GF05 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_LTV350QV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_ILI922X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_TDO24M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_VGG2432A4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_AMS369FG06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_LMS501KF03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_HX8357 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LCD_OTM3225A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Bootup logo +CONFIG_LOGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Console display driver support +CONFIG_VGA_CONSOLE policy<{'amd64': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DUMMY_CONSOLE_COLUMNS policy<{'amd64': '80', 'arm64': '80', 'ppc64el': '80', 'riscv64': '80', 's390x': '80'}> +CONFIG_DUMMY_CONSOLE_ROWS policy<{'amd64': '25', 'arm64': '25', 'ppc64el': '25', 'riscv64': '25', 's390x': '25'}> + +# Menu: Device Drivers >> Graphics support >> Console display driver support >> Framebuffer Console support +CONFIG_FRAMEBUFFER_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) +CONFIG_DRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DRM_DP_AUX_CHARDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_DEBUG_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DRM_FBDEV_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DRM_FBDEV_OVERALLOC policy<{'amd64': '100', 'arm64': '100', 'armhf': '100', 'ppc64el': '100', 'riscv64': '100', 's390x': '100'}> +CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DRM_LOAD_EDID_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DRM_DP_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_RADEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_RADEON_USERPTR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DRM_KMB_DISPLAY policy<{'arm64': 'm'}> +CONFIG_DRM_VGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_VKMS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_VMWGFX policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_DRM_VMWGFX_FBCON policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_DRM_VMWGFX_MKSSTATS policy<{'amd64': 'n'}> +CONFIG_DRM_GMA500 policy<{'amd64': 'm'}> +CONFIG_DRM_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRM_AST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_MGAG200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_ARMADA policy<{'armhf': 'm'}> +CONFIG_DRM_ATMEL_HLCDC policy<{'armhf': 'm'}> +CONFIG_DRM_RCAR_DU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_RCAR_CMM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_RCAR_DW_HDMI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_RCAR_LVDS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> +CONFIG_DRM_RCAR_VSP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_TILCDC policy<{'armhf': 'm'}> +CONFIG_DRM_QXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_VIRTIO_GPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DRM_FSL_DCU policy<{'armhf': 'm'}> +CONFIG_DRM_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_TEGRA_DEBUG policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_TEGRA_STAGING policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_STM policy<{'armhf': 'm'}> +CONFIG_DRM_STM_DSI policy<{'armhf': 'm'}> +CONFIG_DRM_STI policy<{'armhf': 'n'}> +CONFIG_DRM_IMX_DCSS policy<{'arm64': 'm'}> +CONFIG_DRM_VC4 policy<{'arm64': 'm'}> +CONFIG_DRM_VC4_HDMI_CEC policy<{'arm64': 'y'}> +CONFIG_DRM_ETNAVIV policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DRM_ETNAVIV_THERMAL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_HISI_HIBMC policy<{'arm64': 'm'}> +CONFIG_DRM_HISI_KIRIN policy<{'arm64': 'm'}> +CONFIG_DRM_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MEDIATEK_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MESON_DW_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ARCPGU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_BOCHS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DRM_CIRRUS_QEMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_GM12U320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRM_SIMPLEDRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TINYDRM_HX8357D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_ILI9225 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_ILI9341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_ILI9486 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_MI0283QT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_REPAPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_ST7586 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TINYDRM_ST7735R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRM_PL111 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_TVE200 policy<{'armhf': 'm'}> +CONFIG_DRM_XEN_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_VBOXVIDEO policy<{'amd64': 'm'}> +CONFIG_DRM_LIMA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_PANFROST policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ASPEED_GFX policy<{'armhf': 'm'}> +CONFIG_DRM_MCDE policy<{'armhf': 'm'}> +CONFIG_DRM_TIDSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_ZYNQMP_DPSUB policy<{'arm64': 'm'}> +CONFIG_DRM_GUD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRM_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +# +CONFIG_DRM_MGAG200 note +CONFIG_DRM_STI note +CONFIG_DRM_VBOXVIDEO note flag +CONFIG_DRM_HISI_HIBMC mark note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU +CONFIG_DRM_AMDGPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_AMDGPU_SI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_AMDGPU_CIK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_AMDGPU_USERPTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HSA_AMD policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_HSA_AMD_SVM policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +# +CONFIG_DRM_AMDGPU_CIK note +CONFIG_DRM_AMDGPU_CIK note note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU >> ACP (Audio CoProcessor) Configuration +CONFIG_DRM_AMD_ACP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> AMD GPU >> Display Engine Configuration +CONFIG_DRM_AMD_DC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_AMD_DC_HDCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_AMD_DC_SI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEBUG_KERNEL_DC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Allwinner A10 Display Engine +CONFIG_DRM_SUN4I policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_SUN4I_HDMI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_SUN4I_HDMI_CEC policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_DRM_SUN4I_BACKEND policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_SUN6I_DSI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_SUN8I_DW_HDMI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DRM_SUN8I_MIXER policy<{'arm64': 'm', 'armhf': '-'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Freescale i.MX +CONFIG_DRM_IMX policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_PARALLEL_DISPLAY policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_TVE policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_LDB policy<{'armhf': 'm'}> +CONFIG_DRM_IMX_HDMI policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Rockchip +CONFIG_DRM_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_ANALOGIX_DP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_CDN_DP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_DW_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_DW_MIPI_DSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_INNO_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_LVDS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_RGB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_RK3066_HDMI policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> DRM Support for Samsung SoC Exynos Series +CONFIG_DRM_EXYNOS policy<{'armhf': 'm'}> +CONFIG_DRM_EXYNOS_FIMD policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS5433_DECON policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS7_DECON policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_MIXER policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_VIDI policy<{'armhf': 'n'}> +CONFIG_DRM_EXYNOS_DSI policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_HDMI policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_MIC policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_FIMC policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_ROTATOR policy<{'armhf': 'y'}> +CONFIG_DRM_EXYNOS_SCALER policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Interface Bridges +CONFIG_DRM_CDNS_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_CHIPONE_ICN6211 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_CHRONTEL_CH7033 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_CROS_EC_ANX7688 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_DISPLAY_CONNECTOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_LONTIUM_LT8912B policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_LONTIUM_LT9611 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_LONTIUM_LT9611UXC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_ITE_IT66121 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_LVDS_CODEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_NWL_MIPI_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_NXP_PTN3460 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PARADE_PS8622 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PARADE_PS8640 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_SIL_SII8620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_SII902X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_SII9234 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_SIMPLE_BRIDGE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_THINE_THC63LVD1024 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TOSHIBA_TC358762 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TOSHIBA_TC358764 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TOSHIBA_TC358767 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TOSHIBA_TC358768 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TOSHIBA_TC358775 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TI_TFP410 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TI_SN65DSI83 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TI_SN65DSI86 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_TI_TPD12S015 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_ANALOGIX_ANX6345 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_ANALOGIX_ANX78XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_ANALOGIX_ANX7625 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_I2C_ADV7511 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_I2C_ADV7511_AUDIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_I2C_ADV7511_CEC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_CDNS_MHDP8546 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_CDNS_MHDP8546_J721E policy<{'arm64': 'y'}> +CONFIG_DRM_DW_HDMI_AHB_AUDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_DW_HDMI_I2S_AUDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_DW_HDMI_CEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Display Panels +CONFIG_DRM_PANEL_ABT_Y030XX067A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ARM_VERSATILE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_BOE_HIMAX8279D policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_DSI_CM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_LVDS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_ELIDA_KD35T133 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ILITEK_IL9322 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ILITEK_ILI9341 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ILITEK_ILI9881C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_INNOLUX_EJ030NA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_INNOLUX_P079ZCA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_JDI_LT070ME05000 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_KHADAS_TS050 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_LD9040 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_LG_LB035Q02 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_LG_LG4573 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_NEC_NL8048HL11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT35510 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT36672A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_NOVATEK_NT39016 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_ORISETECH_OTM8009A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_RAYDIUM_RM67191 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_RAYDIUM_RM68200 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_RONBO_RB070D30 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_DB7430 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_DSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SAMSUNG_SOFEF00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SEIKO_43WVF1G policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SHARP_LS037V7DW01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SHARP_LS043T1LE01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7701 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7703 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SITRONIX_ST7789V policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_SONY_ACX565AKM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_TDO_TL070WSH30 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_TPO_TD028TTEC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_TPO_TD043MTEA1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_TPO_TPG110 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_VISIONOX_RM69299 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DRM_PANEL_WIDECHIPS_WS2401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRM_PANEL_XINPENG_XPP055C272 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Enable legacy drivers (DANGEROUS) +CONFIG_DRM_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_DRM_LEGACY flag note + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> I2C encoder or helper chips +CONFIG_DRM_I2C_CH7006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_SIL164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_NXP_TDA998X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DRM_I2C_NXP_TDA9950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics +CONFIG_DRM_I915 policy<{'amd64': 'm'}> +CONFIG_DRM_I915_FORCE_PROBE policy<{'amd64': '""'}> +CONFIG_DRM_I915_CAPTURE_ERROR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_COMPRESS_ERROR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_USERPTR policy<{'amd64': 'y'}> +CONFIG_DRM_I915_GVT policy<{'amd64': 'y'}> +CONFIG_DRM_I915_GVT_KVMGT policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Debugging +CONFIG_DRM_I915_WERROR policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_MMIO policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SW_FENCE_CHECK_DAG policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_GUC policy<{'amd64': 'n'}> +CONFIG_DRM_I915_SELFTEST policy<{'amd64': 'n'}> +CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_VBLANK_EVADE policy<{'amd64': 'n'}> +CONFIG_DRM_I915_DEBUG_RUNTIME_PM policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Debugging >> Insert extra checks into the GEM internals + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Profile Guided Optimisation +CONFIG_DRM_I915_REQUEST_TIMEOUT policy<{'amd64': '20000'}> +CONFIG_DRM_I915_FENCE_TIMEOUT policy<{'amd64': '10000'}> +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND policy<{'amd64': '250'}> +CONFIG_DRM_I915_HEARTBEAT_INTERVAL policy<{'amd64': '2500'}> +CONFIG_DRM_I915_PREEMPT_TIMEOUT policy<{'amd64': '640'}> +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT policy<{'amd64': '8000'}> +CONFIG_DRM_I915_STOP_TIMEOUT policy<{'amd64': '100'}> +CONFIG_DRM_I915_TIMESLICE_DURATION policy<{'amd64': '1'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Intel 8xx/9xx/G3x/G4x/HD Graphics >> drm/i915 Unstable Evolution + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> MSM DRM +CONFIG_DRM_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DRM_MSM_GPU_SUDO policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_DRM_MSM_HDMI_HDCP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DP policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> MSM DRM >> Enable DSI support in MSM DRM driver +CONFIG_DRM_MSM_DSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_28NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_20NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_28NM_8960_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_14NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_10NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DRM_MSM_DSI_7NM_PHY policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> Nouveau (NVIDIA) cards +CONFIG_DRM_NOUVEAU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NOUVEAU_PLATFORM_DRIVER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_NOUVEAU_DEBUG policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5', 'riscv64': '5'}> +CONFIG_NOUVEAU_DEBUG_DEFAULT policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3', 'riscv64': '3'}> +CONFIG_NOUVEAU_DEBUG_MMU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NOUVEAU_DEBUG_PUSH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DRM_NOUVEAU_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DRM_NOUVEAU_SVM policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +# +CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT flag note +CONFIG_DRM_NOUVEAU_SVM flag + +# Menu: Device Drivers >> Graphics support >> Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) >> OMAP DRM +CONFIG_DRM_OMAP policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Marvell MMP Display Subsystem support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices +CONFIG_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FIRMWARE_EDID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FB_MODE_HELPERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FB_TILEBLITTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_FB_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_PM2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_PM2_FIFO_DISCONNECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_ARMCLCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FB_IMX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FB_CYBER2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_CYBER2000_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_ARC policy<{'amd64': 'm'}> +CONFIG_FB_OF policy<{'ppc64el': 'y'}> +CONFIG_FB_ASILIANT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_FB_IMSTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_FB_VGA16 policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_FB_UVESA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_VESA policy<{'amd64': 'y'}> +CONFIG_FB_EFI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_FB_N411 policy<{'amd64': 'm'}> +CONFIG_FB_HGA policy<{'amd64': 'm'}> +CONFIG_FB_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_S1D13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_I740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_LE80578 policy<{'amd64': 'm'}> +CONFIG_FB_CARILLO_RANCH policy<{'amd64': 'm'}> +CONFIG_FB_INTEL policy<{'amd64': 'm'}> +CONFIG_FB_INTEL_DEBUG policy<{'amd64': 'n'}> +CONFIG_FB_INTEL_I2C policy<{'amd64': 'y'}> +CONFIG_FB_ATY128 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_ATY128_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_S3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_S3_DDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_SAVAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_SAVAGE_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_SAVAGE_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_SIS_300 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_SIS_315 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_VIA policy<{'amd64': 'm'}> +CONFIG_FB_VIA_DIRECT_PROCFS policy<{'amd64': 'n'}> +CONFIG_FB_VIA_X_COMPATIBILITY policy<{'amd64': 'y'}> +CONFIG_FB_NEOMAGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_KYRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_3DFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_3DFX_ACCEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_3DFX_I2C policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_VOODOO1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_VT8623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_ARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_PM3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_CARMINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_SH_MOBILE_LCDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_FB_TMIO policy<{'armhf': 'm'}> +CONFIG_FB_TMIO_ACCELL policy<{'armhf': 'y'}> +CONFIG_FB_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_SMSCUFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FB_UDL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FB_IBM_GXT4500 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FB_XILINX policy<{'arm64': 'm'}> +CONFIG_FB_GOLDFISH policy<{'riscv64': 'm'}> +CONFIG_FB_DA8XX policy<{'armhf-generic': 'm'}> +CONFIG_FB_VIRTUAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XEN_FBDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_FB_METRONOME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_MB862XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_MB862XX_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_MX3 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FB_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FB_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_SSD1307 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_SM712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +# +CONFIG_FB_VIRTUAL flag + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> AMD Geode family framebuffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> ATI Mach64 display support +CONFIG_FB_ATY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_ATY_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_ATY_GENERIC_LCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_ATY_GX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_ATY_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> ATI Radeon display support +CONFIG_FB_RADEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_RADEON_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_RADEON_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_RADEON_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Amiga native chipset support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> DRAM timing +CONFIG_FB_CARMINE_DRAM_EVAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CARMINE_DRAM_CUSTOM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Framebuffer foreign endianness support +CONFIG_FB_FOREIGN_ENDIAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Framebuffer foreign endianness support >> Choice endianness support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> GDC variant +CONFIG_FB_MB862XX_PCI_GDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_MB862XX_LIME policy<{'ppc64el': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> Matrox acceleration +CONFIG_FB_MATROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_MATROX_MILLENIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_MATROX_MYSTIQUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_MATROX_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_MATROX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_MATROX_MAVEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP frame buffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP2+ frame buffer support +CONFIG_FB_OMAP2 policy<{'armhf': 'm'}> +CONFIG_FB_OMAP2_DEBUG_SUPPORT policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_NUM_FBS policy<{'armhf': '3'}> +CONFIG_FB_OMAP2_DSS_DEBUG policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DEBUGFS policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DPI policy<{'armhf': 'y'}> +CONFIG_FB_OMAP2_DSS_VENC policy<{'armhf': 'y'}> +CONFIG_FB_OMAP4_DSS_HDMI policy<{'armhf': 'y'}> +CONFIG_FB_OMAP5_DSS_HDMI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_SDI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_DSI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_DSS_MIN_FCK_PER_PCK policy<{'armhf': '0'}> +CONFIG_FB_OMAP2_DSS_SLEEP_AFTER_VENC_RESET policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> OMAP2+ frame buffer support >> OMAPFB Panel and Encoder Drivers +CONFIG_FB_OMAP2_ENCODER_OPA362 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_ENCODER_TFP410 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_ENCODER_TPD12S015 policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_DVI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_HDMI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_CONNECTOR_ANALOG_TV policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_PANEL_DPI policy<{'armhf': 'n'}> +CONFIG_FB_OMAP2_PANEL_LGPHILIPS_LB035Q02 policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> PXA LCD framebuffer support + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> SBUS and UPA framebuffers + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> nVidia Framebuffer Support +CONFIG_FB_NVIDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_NVIDIA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_NVIDIA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_NVIDIA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Graphics support >> Frame buffer Devices >> Support for frame buffer devices >> nVidia Riva support +CONFIG_FB_RIVA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FB_RIVA_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FB_RIVA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_FB_RIVA_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Greybus support +CONFIG_GREYBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GREYBUS_ES2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> HDMI CEC drivers +CONFIG_MEDIA_CEC_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CEC_CH7322 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CEC_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_MESON_AO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_MESON_G12A_AO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_GPIO policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CEC_SAMSUNG_S5P policy<{'armhf': 'n'}> +CONFIG_CEC_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CEC_SECO policy<{'amd64': 'm'}> +CONFIG_CEC_SECO_RC policy<{'amd64': 'y'}> +CONFIG_USB_PULSE8_CEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_RAINSHADOW_CEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> HID support + +# Menu: Device Drivers >> HID support >> HID bus support +CONFIG_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HID_BATTERY_STRENGTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_HIDRAW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_UHID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> AMD SFH HID Support +CONFIG_AMD_SFH_HID policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers +CONFIG_HID_A4TECH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ACCUTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ACRUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ACRUX_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_APPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_APPLEIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_AUREAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_BETOP_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_BIGBEN_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_CHERRY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_CHICONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_CORSAIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_COUGAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MACALLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PRODIKEYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_CMEDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_CP2112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_CREATIVE_SB0540 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_DRAGONRISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DRAGONRISE_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_EMS_FF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ELECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_EZKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_FT260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_GEMBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GFRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GLORIOUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_HOLTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HOLTEK_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_GOOGLE_HAMMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_HID_VIVALDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GT683R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_KEYTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_KYE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_UCLOGIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_WALTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_VIEWSONIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GYRATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ICADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_JABRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_TWINHAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_KENSINGTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_LCPOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_LENOVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MAGICMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MALTRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MAYFLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_REDRAGON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MICROSOFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MONTEREY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MULTITOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_NTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_NTRIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ORTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PANTHERLORD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PANTHERLORD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_PETALYNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PLANTRONICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PLAYSTATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PLAYSTATION_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PRIMAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_RETRODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ROCCAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SAITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SEMITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_SONY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SONY_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_SPEEDLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_STEAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_STEELSERIES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_RMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_GREENASIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GREENASIA_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_HYPERV_MOUSE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HID_SMARTJOYPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SMARTJOYPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_TIVO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_TOPSEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_THINGM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_THRUSTMASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_THRUSTMASTER_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_UDRAW_PS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_U2FZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_WACOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_WIIMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_XINMO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_ZEROPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ZEROPLUS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_ZYDACRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_SENSOR_HUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_SENSOR_CUSTOM_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_ALPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_MCP2221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers >> Logitech devices +CONFIG_HID_LOGITECH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_LOGITECH_DJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_LOGITECH_HIDPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LOGITECH_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LOGIRUMBLEPAD2_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LOGIG940_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LOGIWHEELS_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> HID support >> HID bus support >> Special HID drivers >> PicoLCD (graphic version) +CONFIG_HID_PICOLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PICOLCD_FB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PICOLCD_BACKLIGHT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PICOLCD_LCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PICOLCD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HID_PICOLCD_CIR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> HID support >> I2C HID support +CONFIG_I2C_HID_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_HID_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_HID_OF_GOODIX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> HID support >> Intel ISH HID support +CONFIG_INTEL_ISH_HID policy<{'amd64': 'm'}> +CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> HID support >> Surface System Aggregator Module HID support +CONFIG_SURFACE_HID policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_KBD policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> HID support >> USB HID support +CONFIG_USB_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HID_PID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_HIDDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> HID support >> USB HID support >> USB HID Boot Protocol drivers +CONFIG_USB_KBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> HSI support +CONFIG_HSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_OMAP_SSI policy<{'armhf-generic': 'm'}> +CONFIG_NOKIA_MODEM policy<{'armhf-generic': 'm'}> +CONFIG_CMT_SPEECH policy<{'armhf-generic': 'm'}> +CONFIG_SSI_PROTOCOL policy<{'armhf-generic': 'm'}> +CONFIG_HSI_CHAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> HW tracing support + +# Menu: Device Drivers >> HW tracing support >> Intel(R) Trace Hub controller +CONFIG_INTEL_TH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INTEL_TH_GTH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_STH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_MSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_PTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_TH_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> HW tracing support >> System Trace Module devices +CONFIG_STM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_PROTO_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_PROTO_SYS_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_CONSOLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_HEARTBEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STM_SOURCE_FTRACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support +CONFIG_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HWMON_DEBUG_CHIP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SENSORS_ABITUGURU policy<{'amd64': 'm'}> +CONFIG_SENSORS_ABITUGURU3 policy<{'amd64': 'm'}> +CONFIG_SENSORS_AD7314 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AD7414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AD7418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1026 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1029 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM1177 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADM9240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7462 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7470 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADT7475 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AHT10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_AS370 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ASC7621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AXI_FAN_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_K8TEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_K10TEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_FAM15H_POWER policy<{'amd64': 'm'}> +CONFIG_SENSORS_APPLESMC policy<{'amd64': 'm'}> +CONFIG_SENSORS_ARM_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_ARM_SCPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_ASB100 policy<{'amd64': 'm'}> +CONFIG_SENSORS_ASPEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ATXP1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_CORSAIR_CPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_CORSAIR_PSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DRIVETEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DS620 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DS1621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DELL_SMM policy<{'amd64': 'm'}> +CONFIG_SENSORS_DA9052_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_I5K_AMB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SPARX5 policy<{'arm64': 'm'}> +CONFIG_SENSORS_F71805F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_F71882FG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_F75375S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_GSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MC13783_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_FSCHMD policy<{'amd64': 'm'}> +CONFIG_SENSORS_FTSTEUTATES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_GL518SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_GL520SM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_G760A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_G762 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_GPIO_FAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_HIH6130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_IBMAEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IBMPEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IBMPOWERNV policy<{'ppc64el': 'm'}> +CONFIG_SENSORS_IIO_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_I5500 policy<{'amd64': 'm'}> +CONFIG_SENSORS_CORETEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_IT87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_JC42 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_POWR1220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LINEAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_LTC2945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC2947_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC2947_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC2990 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC2992 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4151 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4215 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LTC4261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX1111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX16065 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX1619 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX1668 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX197 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX31722 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX31730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX6621 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX6639 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX6642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX6697 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MAX31790 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MCP3021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MLXREG_FAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_TC654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TPS23861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_MENF21BMC_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MR75203 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADCXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM70 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM75 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM77 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM78 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM83 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM85 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM87 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM92 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM95234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM95241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LM95245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_PC87360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_PC87427 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NTC_THERMISTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_NCT6683 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NCT6775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NCT7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NCT7904 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NPCM7XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_NZXT_KRAKEN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_OCC_P8_I2C policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SENSORS_OCC_P9_SBE policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SENSORS_PCF8591 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_PWM_FAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_RASPBERRYPI_HWMON policy<{'arm64': 'm'}> +CONFIG_SENSORS_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_SENSORS_SBTSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SBRMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SHT15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SHT21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SHT3x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SHT4x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SHTC1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_DME1737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_EMC1403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_EMC2103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_EMC6W201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SMSC47M1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SMSC47M192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SMSC47B397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SCH5627 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SCH5636 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_STTS751 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_SMM665 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADC128D818 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADS7828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_ADS7871 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_AMC6821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_INA209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_INA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_INA3221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TC74 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_THMC50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP108 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_TMP513 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SENSORS_VIA_CPUTEMP policy<{'amd64': 'm'}> +CONFIG_SENSORS_VIA686A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_VT1211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_VT8231 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83773G policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83781D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83791D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83792D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83795_FANCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SENSORS_W83L785TS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83L786NG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83627HF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_W83627EHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_XGENE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SENSORS_INTEL_M10_BMC_HWMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ACPI_POWER policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SENSORS_ATK0110 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Hardware Monitoring support >> PMBus support +CONFIG_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_PMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ADM1266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ADM1275 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_BEL_PFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_BPA_RS600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_FSP_3Y policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IBM_CFFPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_DPS920AB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_INSPUR_IPSPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IR35221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IR36021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IR38064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_IRPS5401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ISL68137 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_LM25066 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_LTC2978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_LTC2978_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SENSORS_LTC3815 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX15301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX16064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX16601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX20730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX20751 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX31785 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX34440 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MAX8688 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MP2888 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_MP2975 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_PIM4328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_PM6764TR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_PXE1610 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_Q54SJ108A2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_STPDDC60 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_TPS40422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_TPS53679 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_UCD9000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_UCD9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_XDPE122 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ZL6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Hardware Spinlock drivers +CONFIG_HWSPINLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HWSPINLOCK_OMAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HWSPINLOCK_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HWSPINLOCK_SPRD policy<{'arm64': 'm'}> +CONFIG_HWSPINLOCK_SUN6I policy<{'arm64': 'm', 'armhf': '-'}> + +# Menu: Device Drivers >> I2C support + +# Menu: Device Drivers >> I2C support >> I2C support +CONFIG_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_ACPI_I2C_OPREGION policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_I2C_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_I2C_CHARDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_I2C_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_I2C_HELPER_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_I2C_SMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_I2C_SLAVE policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_I2C_SLAVE_EEPROM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_SLAVE_TESTUNIT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_I2C_DEBUG_CORE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_I2C_DEBUG_ALGO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_I2C_DEBUG_BUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_I2C_CHARDEV note + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Algorithms +CONFIG_I2C_ALGOBIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_I2C_ALGOPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> I2C Hardware Bus support +CONFIG_I2C_ALI1535 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_ALI1563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_ALI15X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD756 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD756_S4882 policy<{'amd64': 'm'}> +CONFIG_I2C_AMD8111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_AMD_MP2 policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_I2C_HIX5HD2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_I801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_ISCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_ISMT policy<{'amd64': 'm'}> +CONFIG_I2C_PIIX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_CHT_WC policy<{'amd64': 'm'}> +CONFIG_I2C_NFORCE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_NFORCE2_S4985 policy<{'amd64': 'm'}> +CONFIG_I2C_NVIDIA_GPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS5595 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS630 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_SIS96X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_VIAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_SCMI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_I2C_ALTERA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_ASPEED policy<{'armhf': 'm'}> +CONFIG_I2C_AXXIA policy<{'armhf-generic-lpae': 'm'}> +CONFIG_I2C_BCM2835 policy<{'arm64': 'm'}> +CONFIG_I2C_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_I2C_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_I2C_CADENCE policy<{'arm64': 'n'}> +CONFIG_I2C_CBUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_DESIGNWARE_SLAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_I2C_DESIGNWARE_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_I2C_DESIGNWARE_BAYTRAIL policy<{'amd64': 'y'}> +CONFIG_I2C_DESIGNWARE_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_EMEV2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_I2C_EXYNOS5 policy<{'armhf': 'n'}> +CONFIG_I2C_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_GPIO_FAULT_INJECTOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_I2C_HISI policy<{'arm64': 'm'}> +CONFIG_I2C_IMX policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_I2C_IMX_LPI2C policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MLXBF policy<{'arm64': 'm'}> +CONFIG_I2C_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_MPC policy<{'ppc64el': 'm'}> +CONFIG_I2C_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_MV64XXX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_NOMADIK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_NPCM7XX policy<{'armhf': 'm'}> +CONFIG_I2C_OCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_OMAP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_I2C_OWL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_PCA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_PXA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_PXA_SLAVE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_I2C_QCOM_CCI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_RIIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_RK3X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_S3C2410 policy<{'armhf': 'n'}> +CONFIG_I2C_SH_MOBILE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_SIMTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_SPRD policy<{'arm64': 'y'}> +CONFIG_I2C_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_I2C_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_TEGRA_BPMP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_I2C_UNIPHIER_F policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_I2C_VERSATILE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_THUNDERX policy<{'arm64': 'm'}> +CONFIG_I2C_XILINX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_XLP9XX policy<{'arm64': 'm'}> +CONFIG_I2C_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_DIOLAN_U2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_I2C_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_CP2615 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_I2C_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_ROBOTFUZZ_OSIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_I2C_TAOS_EVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_TINY_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_I2C_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MLXCPLD policy<{'amd64': 'm'}> +CONFIG_I2C_CROS_EC_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_I2C_XGENE_SLIMPRO policy<{'arm64': 'm'}> +CONFIG_I2C_OPAL policy<{'ppc64el': 'y'}> +CONFIG_I2C_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> I2C support >> I2C support >> Multiplexer I2C Chip support +CONFIG_I2C_ARB_GPIO_CHALLENGE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MUX_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_GPMUX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MUX_LTC4306 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PCA9541 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PCA954x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_MUX_PINCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MUX_REG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_I2C_DEMUX_PINCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_MUX_MLXCPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> I3C support +CONFIG_I3C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CDNS_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DW_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SVC_I3C_MASTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MIPI_I3C_HCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support +CONFIG_FIREWIRE_NOSY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> IEEE 1394 (FireWire) support >> FireWire driver stack +CONFIG_FIREWIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FIREWIRE_OHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FIREWIRE_SBP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FIREWIRE_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> IOMMU Hardware Support +CONFIG_IOMMU_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IOMMU_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MSM_IOMMU policy<{'armhf': 'n'}> +CONFIG_AMD_IOMMU policy<{'amd64': 'y'}> +CONFIG_AMD_IOMMU_V2 policy<{'amd64': 'm'}> +CONFIG_IRQ_REMAP policy<{'amd64': 'y'}> +CONFIG_OMAP_IOMMU policy<{'armhf': 'y'}> +CONFIG_OMAP_IOMMU_DEBUG policy<{'armhf': 'n'}> +CONFIG_ROCKCHIP_IOMMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SUN50I_IOMMU policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_TEGRA_IOMMU_GART policy<{'armhf': 'y'}> +CONFIG_TEGRA_IOMMU_SMMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_EXYNOS_IOMMU policy<{'armhf': 'n'}> +CONFIG_EXYNOS_IOMMU_DEBUG policy<{'armhf': '-'}> +CONFIG_IPMMU_VMSA policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SPAPR_TCE_IOMMU policy<{'ppc64el': 'y'}> +CONFIG_APPLE_DART policy<{'arm64': 'm'}> +CONFIG_ARM_SMMU policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_ARM_SMMU_V3 policy<{'arm64': 'y'}> +CONFIG_ARM_SMMU_V3_SVA policy<{'arm64': 'y'}> +CONFIG_S390_CCW_IOMMU policy<{'s390x': 'y'}> +CONFIG_S390_AP_IOMMU policy<{'s390x': 'y'}> +CONFIG_MTK_IOMMU policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_MTK_IOMMU_V1 policy<{'armhf': 'n'}> +CONFIG_QCOM_IOMMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HYPERV_IOMMU policy<{'amd64': 'y'}> +CONFIG_VIRTIO_IOMMU policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SPRD_IOMMU policy<{'arm64': 'm'}> +# +CONFIG_IPMMU_VMSA note +CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT mark note +CONFIG_IOMMU_DEBUGFS mark note note + +# Menu: Device Drivers >> IOMMU Hardware Support >> Generic IOMMU Pagetable Support +CONFIG_IOMMU_IO_PGTABLE_LPAE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_IOMMU_IO_PGTABLE_ARMV7S policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Device Drivers >> IOMMU Hardware Support >> IOMMU default domain type +CONFIG_IOMMU_DEFAULT_DMA_STRICT policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IOMMU_DEFAULT_DMA_LAZY policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IOMMU_DEFAULT_PASSTHROUGH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> IOMMU Hardware Support >> Support for Intel IOMMU using DMA Remapping Devices +CONFIG_INTEL_IOMMU policy<{'amd64': 'y'}> +CONFIG_INTEL_IOMMU_SVM policy<{'amd64': 'y'}> +CONFIG_INTEL_IOMMU_DEFAULT_ON policy<{'amd64': 'n'}> +CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON policy<{'amd64': 'n'}> +# +CONFIG_INTEL_IOMMU_DEFAULT_ON note flag + +# Menu: Device Drivers >> IRQ chip support +CONFIG_AL_FIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RENESAS_INTC_IRQPIN policy<{'armhf': 'y'}> +CONFIG_RENESAS_IRQC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RENESAS_RZA1_IRQC policy<{'armhf': 'y'}> +CONFIG_TS4800_IRQ policy<{'armhf': 'm'}> +CONFIG_QCOM_IRQ_COMBINER policy<{'arm64': 'y'}> +CONFIG_IRQ_UNIPHIER_AIDET policy<{'armhf-generic': 'y', 'armhf-generic-lpae': '-'}> +CONFIG_MESON_IRQ_GPIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_PDC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IMX_IRQSTEER policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IMX_INTMUX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RISCV_INTC policy<{'riscv64': 'y'}> +CONFIG_SIFIVE_PLIC policy<{'riscv64': 'y'}> +CONFIG_EXYNOS_IRQ_COMBINER policy<{'armhf': 'y'}> +CONFIG_MST_IRQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_APPLE_AIC policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> ISDN support +CONFIG_ISDN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> ISDN support >> Modular ISDN driver +CONFIG_MISDN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_DSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_L1OIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_HFCPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_HFCMULTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_HFCUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_AVMFRITZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_SPEEDFAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_INFINEON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_W6692 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MISDN_NETJET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support +CONFIG_IIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_IIO_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_TRIGGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IIO_CONSUMERS_PER_TRIGGER policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2'}> +CONFIG_IIO_SW_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_SW_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_TRIGGERED_EVENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Accelerometers +CONFIG_ADIS16201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16209 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADXL372_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADXL372_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMA220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMA400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMC150_ACCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMI088_ACCEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DA280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DA311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DMARD06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DMARD09 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DMARD10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FXLS8962AF_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FXLS8962AF_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_ACCEL_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_CROS_EC_ACCEL_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_IIO_ST_ACCEL_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KXSD9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KXSD9_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KXSD9_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KXCJK1013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MC3230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA7455_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA7455_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA7660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA8452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA9551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMA9553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MXC4005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MXC6255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCA3300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STK8312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STK8BA50 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Amplifiers +CONFIG_AD8366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HMC425 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Analog Front Ends +CONFIG_IIO_RESCALE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Analog to digital converters +CONFIG_AD7091R5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7124 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7192 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7291 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7292 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7298 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7476 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7606_IFACE_PARALLEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7606_IFACE_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7766 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7768_1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7793 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7923 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7949 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD799X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD9467 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADI_AXI_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ASPEED_ADC policy<{'armhf': 'm'}> +CONFIG_AXP20X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AXP288_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BCM_IPROC_ADC policy<{'arm64': 'm'}> +CONFIG_BERLIN2_ADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CC10001_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CPCAP_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DA9150_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DLN2_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ENVELOPE_DETECTOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_EXYNOS_ADC policy<{'armhf': 'n'}> +CONFIG_HI8435 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HX711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INA2XX_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INTEL_MRFLD_ADC policy<{'amd64': 'm'}> +CONFIG_IMX7D_ADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_LP8788_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2471 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2485 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2496 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2497 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX1027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX11100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX1118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX1241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX1363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX9611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP320X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP3422 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP3911 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIATEK_MT6360_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIATEK_MT6577_AUXADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MEN_Z188_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MESON_SARADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MP2629_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NAU7802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NPCM_ADC policy<{'armhf': 'm'}> +CONFIG_PALMAS_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCOM_PM8XXX_XOADC policy<{'armhf': 'm'}> +CONFIG_QCOM_SPMI_IADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCOM_SPMI_VADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCOM_SPMI_ADC5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RCAR_GYRO_ADC policy<{'armhf': 'm'}> +CONFIG_RN5T618_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ROCKCHIP_SARADC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RZG2L_ADC policy<{'arm64': 'm'}> +CONFIG_SC27XX_ADC policy<{'arm64': 'm'}> +CONFIG_SD_ADC_MODULATOR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STMPE_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STX104 policy<{'amd64': 'm'}> +CONFIG_SUN4I_GPADC policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_TI_ADC081C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC0832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC084S021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC12138 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC108S102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC128S052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADC161S626 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS1015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS7950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS8344 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS8688 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS124S08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_ADS131E08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_AM335X_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_TLC4541 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_TSC2046 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TWL6030_GPADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VF610_ADC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIPERBOARD_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_XILINX_XADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Capacitance to digital converters +CONFIG_AD7150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Chemical Sensors +CONFIG_ATLAS_PH_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATLAS_EZO_SENSOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BME680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CCS811 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IAQCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PMS7003 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCD30_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCD30_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCD30_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSIRION_SGP30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSIRION_SGP40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPS30_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPS30_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VZ89X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital gyroscope sensors +CONFIG_ADIS16080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16136 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16260 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADXRS290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADXRS450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMG160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FXAS21002C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_GYRO_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MPU3050_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_ST_GYRO_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ITG3200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital potentiometers +CONFIG_AD5110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5272 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DS1803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX5432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX5481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX5487 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP4018 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP4131 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP4531 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP41010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TPL0102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital potentiostats +CONFIG_LMP91000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Digital to analog converters +CONFIG_AD5064 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5380 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5446 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5449 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5592R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5593R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5624R_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5686_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5696_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5758 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5766 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5770R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD5791 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD8801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CIO_DAC policy<{'amd64': 'm'}> +CONFIG_DPOT_DAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DS4424 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC1660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_M62332 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX517 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX5821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP4725 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCP4922 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_DAC082S085 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_DAC5571 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_DAC7311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TI_DAC7612 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VF610_DAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Enable buffer support within IIO +CONFIG_IIO_BUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IIO_BUFFER_CB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_BUFFER_DMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_BUFFER_DMAENGINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_BUFFER_HW_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_KFIFO_BUF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_TRIGGERED_BUFFER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL >> Clock Generator/Distribution +CONFIG_AD9523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Frequency Synthesizers DDS/PLL >> Phase-Locked Loop (PLL) frequency synthesizers +CONFIG_ADF4350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADF4371 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Health Sensors + +# Menu: Device Drivers >> Industrial I/O support >> Health Sensors >> Heart Rate Monitors +CONFIG_AFE4403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AFE4404 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX30100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX30102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Hid Sensor IIO Common +CONFIG_HID_SENSOR_IIO_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_IIO_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Humidity sensors +CONFIG_AM2315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DHT11 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDC100X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDC2010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_HUMIDITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HTS221 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HTU21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SI7005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SI7020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> IIO SCMI Sensors +CONFIG_IIO_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> IIO dummy driver +CONFIG_IIO_SIMPLE_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_SIMPLE_DUMMY_EVENTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_IIO_SIMPLE_DUMMY_BUFFER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_IIO_SIMPLE_DUMMY_EVENTS note +CONFIG_IIO_SIMPLE_DUMMY_BUFFER note + +# Menu: Device Drivers >> Industrial I/O support >> Inclinometer sensors +CONFIG_HID_SENSOR_INCLINOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_DEVICE_ROTATION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Inertial measurement units +CONFIG_ADIS16400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16460 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16475 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16480 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMI160_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMI160_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FXOS8700_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FXOS8700_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KMX61 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INV_ICM42600_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INV_ICM42600_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INV_MPU6050_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INV_MPU6050_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_ST_LSM6DSX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_ST_LSM9DS0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Light sensors +CONFIG_ACPI_ALS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ADJD_S311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADUX1020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AL3010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AL3320A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_APDS9300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_APDS9960 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AS73211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BH1750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BH1780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CM32181 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CM3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CM3323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CM3605 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CM36651 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_CROS_EC_LIGHT_PROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_GP2AP002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GP2AP020A00F policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IQS621_ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ISL29018 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_ISL29028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ISL29125 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_PROX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JSA1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RPR0521 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTR501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LV0104CS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX44000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX44009 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NOA1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_OPT3001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PA12203001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SI1133 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SI1145 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STK3310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ST_UVIS25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TCS3414 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TCS3472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_TSL2563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSL2583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSL2591 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSL2772 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSL4531 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_US5182D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VCNL4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VCNL4035 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VEML6030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VEML6070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VL6180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ZOPT2201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Lightning sensors +CONFIG_AS3935 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Linear and angular position sensors +CONFIG_IQS624_POS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Magnetometer sensors +CONFIG_AK8974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AK8975 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AK09911 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMC150_MAGN_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMC150_MAGN_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAG3110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_MAGNETOMETER_3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC35240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_ST_MAGN_3AXIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_HMC5843_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_HMC5843_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_RM3100_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SENSORS_RM3100_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_YAMAHA_YAS530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Multiplexers +CONFIG_IIO_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Pressure sensors +CONFIG_ABP060MG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BMP280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_CROS_EC_BARO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_DLHL60D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DPS310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HP03 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ICP10100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MPL115_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MPL115_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MPL3115 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MS5611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MS5611_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MS5611_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MS5637 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_ST_PRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_T5403 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HP206C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ZPA2326 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Proximity and distance sensors +CONFIG_CROS_EC_MKBP_PROXIMITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_ISL29501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIDAR_LITE_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MB1232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RFD77402 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SRF04 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SX9310 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SX9500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SRF08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VCNL3020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VL53L0X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Resolver to digital converters +CONFIG_AD2S1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD2S90 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> SSP Sensor Common +CONFIG_IIO_SSP_SENSORS_COMMONS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_SSP_SENSORHUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Temperature sensors +CONFIG_IQS620AT_TEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LTC2983 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAXIM_THERMOCOUPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HID_SENSOR_TEMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLX90614 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLX90632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TMP006 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TMP007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TMP117 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSYS01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TSYS02D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX31856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Industrial I/O support >> Triggers - standalone +CONFIG_IIO_HRTIMER_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_INTERRUPT_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_TIGHTLOOP_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IIO_SYSFS_TRIGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> IndustryPack bus support +CONFIG_IPACK_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BOARD_TPCI200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIAL_IPOCTAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> InfiniBand support +CONFIG_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_USER_MAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ON_DEMAND_PAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_IPOIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_IPOIB_CM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_IPOIB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_OPA_VNIC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> InfiniBand support >> InfiniBand userspace access (verbs and CM) +CONFIG_INFINIBAND_USER_ACCESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_MTHCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_MTHCA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_INFINIBAND_QIB policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_QIB_DCA policy<{'amd64': 'y'}> +CONFIG_INFINIBAND_EFA policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INFINIBAND_IRDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLX4_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLX5_INFINIBAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_OCRDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': 'm', 'arm64-generic': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_INFINIBAND_USNIC policy<{'amd64': 'm'}> +CONFIG_INFINIBAND_HNS policy<{'arm64': 'm'}> +CONFIG_INFINIBAND_HNS_HIP08 policy<{'arm64': 'y'}> +CONFIG_INFINIBAND_BNXT_RE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INFINIBAND_HFI1 policy<{'amd64': 'm'}> +CONFIG_HFI1_DEBUG_SDMA_ORDER policy<{'amd64': 'n'}> +CONFIG_SDMA_VERBOSITY policy<{'amd64': 'n'}> +CONFIG_INFINIBAND_QEDR policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INFINIBAND_RDMAVT policy<{'amd64': 'm'}> +CONFIG_RDMA_RXE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RDMA_SIW policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> InfiniBand support >> RDMA/CM +CONFIG_INFINIBAND_ADDR_TRANS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INFINIBAND_CXGB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INFINIBAND_SRP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_SRPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_ISERT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_RTRS_CLIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INFINIBAND_RTRS_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Input device support + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) +CONFIG_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INPUT_LEDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_FF_MEMLESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INPUT_SPARSEKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INPUT_MATRIXKMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INPUT_JOYDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INPUT_EVBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Joysticks/Gamepads +CONFIG_INPUT_JOYSTICK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_JOYSTICK_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_A3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_ADI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_COBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_GF2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_GRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_GRIP_MP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_GUILLEMOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_INTERACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_SIDEWINDER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_TMDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_IFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_IFORCE_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_IFORCE_232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_WARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_MAGELLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_SPACEORB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_SPACEBALL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_STINGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_TWIDJOY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_ZHENHUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_DB9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_GAMECON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_TURBOGRAFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_AS5011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_JOYDUMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_XPAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_XPAD_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JOYSTICK_XPAD_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JOYSTICK_WALKERA0701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JOYSTICK_PSXPAD_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_PSXPAD_SPI_FF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JOYSTICK_PXRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_QWIIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_JOYSTICK_FSIA6B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Keyboards +CONFIG_INPUT_KEYBOARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_KEYBOARD_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_ADP5588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_ADP5589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_APPLESPI policy<{'amd64': 'm'}> +CONFIG_KEYBOARD_ATKBD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KEYBOARD_QT1050 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_QT1070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_QT2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_DLINK_DIR685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_LKKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_GPIO_POLLED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_TCA6416 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_TCA8418 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_MATRIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_LM8323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_LM8333 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_MAX7359 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_MCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_MPR121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_SNVS_PWRKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_IMX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_IMX_SC_KEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_NEWTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_OPENCORES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_PMIC8XXX policy<{'armhf': 'm'}> +CONFIG_KEYBOARD_SAMSUNG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_GOLDFISH_EVENTS policy<{'riscv64': 'm'}> +CONFIG_KEYBOARD_STOWAWAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_SUNKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_SUN4I_LRADC policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_KEYBOARD_IQS62X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_OMAP4 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_TC3589X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_TM2_TOUCHKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_XTKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEYBOARD_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_CAP11XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_BCM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_KEYBOARD_MTK_PMIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice +CONFIG_INPUT_MOUSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MOUSE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_APPLETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_BCM5974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_CYAPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_ELAN_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_ELAN_I2C_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_ELAN_I2C_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_VSXXXAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_SYNAPTICS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_SYNAPTICS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_MOUSE_INPORT note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mice >> PS/2 mouse +CONFIG_MOUSE_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MOUSE_PS2_ALPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_BYD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_LOGIPS2PP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_SYNAPTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_CYPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_LIFEBOOK policy<{'amd64': 'y'}> +CONFIG_MOUSE_PS2_TRACKPOINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_ELANTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_ELANTECH_SMBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_SENTELIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_TOUCHKIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_FOCALTECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MOUSE_PS2_VMMOUSE policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Miscellaneous devices +CONFIG_INPUT_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_INPUT_88PM860X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_88PM80X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_AD714X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_AD714X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_AD714X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_ARIZONA_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_ATC260X_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_ATMEL_CAPTOUCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_BMA150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_E3X0_BUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_PCSPKR policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_PM8941_PWRKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_PM8XXX_VIBRATOR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_PMIC8XXX_PWRKEY policy<{'armhf': 'm'}> +CONFIG_INPUT_MAX77650_ONKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_MAX77693_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_MAX8925_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_MAX8997_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_MC13783_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_MMA8450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_APANEL policy<{'amd64': 'm'}> +CONFIG_INPUT_GPIO_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_GPIO_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_GPIO_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_CPCAP_PWRBUTTON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_ATLAS_BTNS policy<{'amd64': 'm'}> +CONFIG_INPUT_ATI_REMOTE2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_KEYSPAN_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_KXTJ9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_POWERMATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_YEALINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_CM109 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_REGULATOR_HAPTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_RETU_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_TPS65218_PWRBUTTON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_AXP20X_PEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_TWL4030_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_TWL4030_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_TWL6040_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_UINPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_INPUT_PALMAS_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_PCF50633_PMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_PCF8574 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_PWM_BEEPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_PWM_VIBRA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_RK805_PWRKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_GPIO_ROTARY_ENCODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DA7280_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DA9052_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DA9055_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DA9063_ONKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_WM831X_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_ADXL34X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_ADXL34X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_ADXL34X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_IMS_PCU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_IQS269A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_IQS626A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_CMA3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_CMA3000_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_XEN_KBDDEV_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_INPUT_IDEAPAD_SLIDEBAR policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_INPUT_SOC_BUTTON_ARRAY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_INPUT_DRV260X_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DRV2665_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_DRV2667_HAPTICS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_INPUT_HISI_POWERKEY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INPUT_RAVE_SP_PWRBUTTON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_INPUT_SC27XX_VIBRA policy<{'arm64': 'm'}> +CONFIG_INPUT_STPMIC1_ONKEY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_INPUT_UINPUT mark note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Mouse interface +CONFIG_INPUT_MOUSEDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_INPUT_MOUSEDEV_PSAUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_X policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '1024', 'riscv64': '1024'}> +CONFIG_INPUT_MOUSEDEV_SCREEN_Y policy<{'amd64': '768', 'arm64': '768', 'armhf': '768', 'ppc64el': '768', 'riscv64': '768'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Synaptics RMI4 bus support +CONFIG_RMI4_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_RMI4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RMI4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RMI4_SMB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RMI4_F03 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F11 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F12 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F30 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F34 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F3A policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_RMI4_F54 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RMI4_F55 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Tablets +CONFIG_INPUT_TABLET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_TABLET_USB_ACECAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TABLET_USB_AIPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TABLET_USB_HANWANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TABLET_USB_KBTAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TABLET_USB_PEGASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TABLET_SERIAL_WACOM4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens +CONFIG_INPUT_TOUCHSCREEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_TOUCHSCREEN_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ADS7846 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_AD7877 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_AD7879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_AD7879_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_AD7879_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_AR1021_I2C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_AUO_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_BU21013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_BU21029 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TOUCHSCREEN_CY8CTMA140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_CY8CTMG110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_CYTTSP4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_CYTTSP4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_DA9034 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_DYNAPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_HAMPSHIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_EETI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_EGALAX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_EGALAX_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_EXC3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_FUJITSU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_GOODIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_HIDEEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_HYCON_HY46XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ILI210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ILITEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_IPROC policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_S6SY761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_GUNZE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_EKTF2127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ELAN policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ELO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_WACOM_W8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_WACOM_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MAX11801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MCS5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MMS114 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MELFAS_MIP4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MSG2638 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_IMX6UL_TSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_INEXIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MK712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_PENMOUNT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_EDT_FT5X06 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW policy<{'arm64': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHRIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TOUCHWIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TI_AM335X_TSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_UCB1400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_PIXCIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_WDT87XX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_TOUCHIT213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TS4800 policy<{'armhf': 'm'}> +CONFIG_TOUCHSCREEN_TSC_SERIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TSC2004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TSC2005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TSC2007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TSC2007_IIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_RM_TS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_SILEAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_SIS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ST1232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_STMFTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_STMPE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_SUN4I policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_TOUCHSCREEN_SUR40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_SURFACE3_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_SX8654 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ZET6223 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ZFORCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_COLIBRI_VF50 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_ROHM_BU21023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_IQS5XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_ZINITIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_TOUCHSCREEN_ELAN mark note + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens >> Support for WM97xx AC97 touchscreen controllers +CONFIG_TOUCHSCREEN_WM97XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TOUCHSCREEN_WM9705 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_WM9712 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_WM9713 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Input device support >> Generic input layer (needed for keyboard, mouse, ...) >> Touchscreens >> USB Touchscreen Driver +CONFIG_TOUCHSCREEN_USB_COMPOSITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TOUCHSCREEN_USB_EGALAX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_PANJIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_3M policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_ITM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETURBO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_GUNZE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_DMC_TSC10 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_IRTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_IDEALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_GOTOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_JASTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_ELO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_E2I policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_ZYTRONIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_NEXIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TOUCHSCREEN_USB_EASYTOUCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports >> Gameport support +CONFIG_GAMEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GAMEPORT_NS558 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GAMEPORT_L4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GAMEPORT_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_GAMEPORT_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Input device support >> Hardware I/O ports >> Serial I/O support +CONFIG_SERIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SERIO_I8042 policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_SERIO_SERPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_CT82C710 policy<{'amd64': 'm'}> +CONFIG_SERIO_PARKBD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SERIO_AMBAKMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIO_PCIPS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_LIBPS2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SERIO_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_XILINX_XPS_PS2 policy<{'ppc64el': 'm'}> +CONFIG_SERIO_ALTERA_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_PS2MULT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_ARC_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SERIO_APBPS2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HYPERV_KEYBOARD policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SERIO_SUN4I_PS2 policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_SERIO_GPIO_PS2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USERIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> LED Support +CONFIG_NEW_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support +CONFIG_LEDS_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_AN30259A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_APU policy<{'amd64': 'm'}> +CONFIG_LEDS_AW2013 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_BCM6328 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_BCM6358 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_CR0014114 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_EL15203000 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LM3530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LM3532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LM3642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LM3692X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_MT6323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_PCA9532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_PCA9532_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LP3944 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LP3952 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LP8860 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_CLEVO_MAIL policy<{'amd64': 'm'}> +CONFIG_LEDS_PCA955X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_PCA955X_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_PCA963X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_WM831X_STATUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_DAC124S085 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_REGULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_BD2802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_INTEL_SS4200 policy<{'amd64': 'm'}> +CONFIG_LEDS_LT3593 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_ADP5520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_NS2 policy<{'armhf': 'm'}> +CONFIG_LEDS_ASIC3 policy<{'armhf': 'y'}> +CONFIG_LEDS_TCA6507 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TLC591XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LM355x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_IS31FL319X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_IS31FL32XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_SC27XX_BLTC policy<{'arm64': 'm'}> +CONFIG_LEDS_BLINKM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_LEDS_SYSCON policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_PM8058 policy<{'armhf': 'm'}> +CONFIG_LEDS_MLXCPLD policy<{'amd64': 'm'}> +CONFIG_LEDS_MLXREG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_NIC78BX policy<{'amd64': 'm'}> +CONFIG_LEDS_SPI_BYTE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_TI_LMU_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_LM3697 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LM36274 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_ACER_A500 policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Flash Class Support +CONFIG_LEDS_CLASS_FLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_AAT1290 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_AS3645A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LM3601X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_MAX77693 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_KTD2692 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_SGM3140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_RT4505 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_RT8515 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Multicolor Class Support +CONFIG_LEDS_CLASS_MULTICOLOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TURRIS_OMNIA policy<{'armhf': 'm'}> +CONFIG_LEDS_LP50XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Multicolor Class Support >> Common Driver for TI/National LP5521/5523/55231/5562/8501 +CONFIG_LEDS_LP55XX_COMMON policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LP5521 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LP5523 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LP5562 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LEDS_LP8501 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> LED Support >> LED Class Support >> LED Trigger support +CONFIG_LEDS_TRIGGERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_TRIGGER_TIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_ONESHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_DISK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_TRIGGER_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_TRIGGER_HEARTBEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_BACKLIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_TRIGGER_ACTIVITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_DEFAULT_ON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_TRANSIENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_CAMERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_PANIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LEDS_TRIGGER_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_PATTERN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LEDS_TRIGGER_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> MCB support +CONFIG_MCB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MCB_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MCB_LPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> MIPS Platform Specific Device Drivers + +# Menu: Device Drivers >> MMC/SD/SDIO card support +CONFIG_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PWRSEQ_EMMC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWRSEQ_SD8787 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWRSEQ_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_BLOCK policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MMC_BLOCK_MINORS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8'}> +CONFIG_SDIO_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MMC_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MMC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MMC_ARMMMCI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_QCOM_DML policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_STM32_SDMMC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MMC_MESON_GX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_MESON_MX_SDHC policy<{'armhf': 'm'}> +CONFIG_MMC_MESON_MX_SDIO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_OMAP policy<{'armhf': 'm'}> +CONFIG_MMC_OMAP_HS policy<{'armhf': 'y'}> +CONFIG_MMC_WBSD policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_ALCOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_MXC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_TIFM_SD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_MVSDIO policy<{'armhf': 'm'}> +CONFIG_MMC_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MMC_SDRICOH_CS policy<{'amd64': 'm'}> +CONFIG_MMC_TMIO policy<{'armhf': 'm'}> +CONFIG_MMC_SDHI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHI_SYS_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHI_INTERNAL_DMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_MMC_CB710 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_VIA_SDMMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_CAVIUM_THUNDERX policy<{'arm64': 'm'}> +CONFIG_MMC_SH_MMCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_VUB300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_USHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_USDHI6ROL0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SUNXI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_MMC_CQHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_HSQ policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_TOSHIBA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_BCM2835 policy<{'arm64': 'm'}> +CONFIG_MMC_MTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_OWL policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_MMC_BLOCK note +CONFIG_MMC_TEST flag +CONFIG_MMC_OMAP_HS note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Samsung S3C SD/MMC transfer code + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Secure Digital Host Controller Interface support +CONFIG_MMC_SDHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MMC_SDHCI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_RICOH_MMC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MMC_SDHCI_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MMC_SDHCI_S3C policy<{'armhf': 'n'}> +CONFIG_MMC_SDHCI_S3C_DMA policy<{'armhf': '-'}> +# +CONFIG_MMC_SDHCI note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Secure Digital Host Controller Interface support >> SDHCI platform and OF driver helper +CONFIG_MMC_SDHCI_PLTFM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OF_ARASAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OF_ASPEED policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OF_AT91 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OF_ESDHC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_HLWD policy<{'ppc64el': 'm'}> +CONFIG_MMC_SDHCI_OF_DWCMSHC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OF_SPARX5 policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_ESDHC_IMX policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_MMC_SDHCI_DOVE policy<{'armhf': 'm'}> +CONFIG_MMC_SDHCI_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_PXAV3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_F_SDH30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_MILBEAUT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_IPROC policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_MSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MMC_SDHCI_SPRD policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_MMC_SDHCI_XENON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_OMAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MMC_SDHCI_AM654 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_MMC_SDHCI_PLTFM note + +# Menu: Device Drivers >> MMC/SD/SDIO card support >> Synopsys DesignWare Memory Card Interface +CONFIG_MMC_DW policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_PLTFM policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_BLUEFIELD policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_EXYNOS policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_HI3798CV200 policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_K3 policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_PCI policy<{'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_MMC_DW_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> MOST support +CONFIG_MOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MOST_USB_HDM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_CDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_SND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers +CONFIG_MACINTOSH_DRIVERS policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_MAC_EMUMOUSEBTN policy<{'amd64': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> Apple Desktop Bus (ADB) support + +# Menu: Device Drivers >> Macintosh device drivers >> New PowerMac thermal control infrastructure +CONFIG_WINDFARM policy<{'ppc64el': 'm'}> + +# Menu: Device Drivers >> Macintosh device drivers >> Support for PMU based PowerMacs and PowerBooks + +# Menu: Device Drivers >> Mailbox Hardware Support +CONFIG_MAILBOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ARM_MHU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_MHU_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PLATFORM_MHU policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PL320_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARMADA_37XX_RWTM_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP2PLUS_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP_MBOX_KFIFO_SIZE policy<{'arm64': '256', 'armhf': '256'}> +CONFIG_ROCKCHIP_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_ALTERA_MBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BCM2835_MBOX policy<{'arm64': 'y'}> +CONFIG_TI_MESSAGE_MANAGER policy<{'arm64': 'y'}> +CONFIG_HI3660_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HI6220_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MAILBOX_TEST policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCOM_APCS_IPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TEGRA_HSP_MBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_XGENE_SLIMPRO_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_PDC_MBOX policy<{'arm64': 'm'}> +CONFIG_BCM_FLEXRM_MBOX policy<{'arm64': 'm'}> +CONFIG_MTK_CMDQ_MBOX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ZYNQMP_IPI_MBOX policy<{'arm64': 'y'}> +CONFIG_SUN6I_MSGBOX policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SPRD_MBOX policy<{'arm64': 'm'}> +CONFIG_QCOM_IPCC policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Controller drivers +CONFIG_MEMORY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ARM_PL172_MPMC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BRCMSTB_DPFE policy<{'arm64': 'y'}> +CONFIG_TI_EMIF policy<{'armhf': 'm'}> +CONFIG_TI_EMIF_SRAM policy<{'armhf-generic': 'm'}> +CONFIG_FPGA_DFL_EMIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MVEBU_DEVBUS policy<{'armhf': 'y'}> +CONFIG_FSL_IFC policy<{'arm64': 'y'}> +CONFIG_MTK_SMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PL353_SMC policy<{'armhf': 'm'}> +CONFIG_RENESAS_RPCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SAMSUNG_MC policy<{'armhf': 'y'}> +CONFIG_EXYNOS5422_DMC policy<{'armhf': 'n'}> +CONFIG_EXYNOS_SROM policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Controller drivers >> NVIDIA Tegra Memory Controller support +CONFIG_TEGRA_MC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_TEGRA20_EMC policy<{'armhf': 'y'}> +CONFIG_TEGRA30_EMC policy<{'armhf': 'y'}> +CONFIG_TEGRA124_EMC policy<{'armhf': 'y'}> +CONFIG_TEGRA210_EMC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support +CONFIG_MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MTD_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MTD_BLOCK_RO policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'armhf': '-', 'riscv64': 'm'}> +CONFIG_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFTL_RW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_INFTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RFD_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SSFDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SM_FTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_OOPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PSTORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_SWAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PARTITIONED_MASTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_MTD note +CONFIG_MTD_BLOCK note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Enable UBI - Unsorted block images +CONFIG_MTD_UBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_UBI_WL_THRESHOLD policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096', 'riscv64': '4096'}> +CONFIG_MTD_UBI_BEB_LIMIT policy<{'amd64': '20', 'arm64': '20', 'armhf': '20', 'ppc64el': '20', 'riscv64': '20'}> +CONFIG_MTD_UBI_FASTMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_UBI_GLUEBI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_UBI_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> HyperBus support +CONFIG_MTD_HYPERBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HBMC_AM654 policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> LPDDR & LPDDR2 PCM memory drivers +CONFIG_MTD_LPDDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_QINFO_PROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_LPDDR2_NVM policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access +CONFIG_MTD_AMD76XROM policy<{'amd64': 'm'}> +CONFIG_MTD_ICHXROM policy<{'amd64': 'm'}> +CONFIG_MTD_ESB2ROM policy<{'amd64': 'm'}> +CONFIG_MTD_CK804XROM policy<{'amd64': 'm'}> +CONFIG_MTD_SCB2_FLASH policy<{'amd64': 'm'}> +CONFIG_MTD_NETtel policy<{'amd64': 'm'}> +CONFIG_MTD_L440GX policy<{'amd64': 'm'}> +CONFIG_MTD_IMPA7 policy<{'armhf': 'm'}> +CONFIG_MTD_INTEL_VR_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PLATRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map +CONFIG_MTD_PHYSMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PHYSMAP_GPIO_ADDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map >> Memory device in physical memory map based on OF description +CONFIG_MTD_PHYSMAP_OF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_PHYSMAP_VERSATILE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_MTD_PHYSMAP_GEMINI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_MTD_PHYSMAP_IXP4XX policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Flash device in physical memory map >> Physmap compat support +CONFIG_MTD_PHYSMAP_COMPAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Mapping drivers for chip access >> Support non-linear mappings of flash chips +CONFIG_MTD_COMPLEX_MAPPINGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_SBC_GXX policy<{'amd64': 'm'}> +CONFIG_MTD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PCMCIA policy<{'amd64': 'm'}> +CONFIG_MTD_PCMCIA_ANONYMOUS policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND +CONFIG_MTD_SPI_NAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> ECC engine support +CONFIG_MTD_NAND_ECC_SW_HAMMING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_NAND_ECC_SW_BCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> OneNAND Device Support +CONFIG_MTD_ONENAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_ONENAND_VERIFY_WRITE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_ONENAND_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_ONENAND_OMAP2 policy<{'armhf-generic': 'm'}> +CONFIG_MTD_ONENAND_OTP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_ONENAND_2X_PROGRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +# +CONFIG_MTD_ONENAND_VERIFY_WRITE note +CONFIG_MTD_ONENAND_OTP flag + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> Raw/Parallel NAND Device Support +CONFIG_MTD_RAW_NAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MTD_NAND_DENALI_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_DENALI_DT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_CAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_ORION policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_MARVELL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_TMIO policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_BRCMNAND policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_GPMI_NAND policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_FSL_IFC policy<{'arm64': 'm'}> +CONFIG_MTD_NAND_VF610_NFC policy<{'armhf': 'n'}> +CONFIG_MTD_NAND_MXC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_SUNXI policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_MTD_NAND_HISI504 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_MXIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_ARASAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_INTEL_LGM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_NAND_PL35X policy<{'armhf': 'm'}> +CONFIG_MTD_NAND_NANDSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_RICOH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_MTD_RAW_NAND note +CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE note + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> NAND >> Raw/Parallel NAND Device Support >> JZ4780 NAND controller + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Partition parsers +CONFIG_MTD_AR7_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_CMDLINE_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MTD_OF_PARTS policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_OF_PARTS_BCM4908 policy<{'arm64': 'y'}> +CONFIG_MTD_OF_PARTS_LINKSYS_NS policy<{'arm64': 'y'}> +CONFIG_MTD_AFS_PARTS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_PARSER_TRX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTD_SHARPSL_PARTS policy<{'armhf': 'm'}> +CONFIG_MTD_QCOMSMEM_PARTS policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_MTD_CMDLINE_PARTS flag +CONFIG_MTD_OF_PARTS note + + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Partition parsers >> RedBoot partition table parsing +CONFIG_MTD_REDBOOT_PARTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK policy<{'amd64': '-1', 'arm64': '-1', 'armhf': '-1', 'ppc64el': '-1', 'riscv64': '-1'}> +CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_REDBOOT_PARTS_READONLY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers +CONFIG_MTD_CFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_JEDECPROBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_CFI_INTELEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_CFI_AMDSTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_CFI_STAA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_ROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_ABSENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options +CONFIG_MTD_CFI_ADV_OPTIONS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options >> Flash cmd/query data swapping + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> RAM/ROM/Flash chip drivers >> Flash chip driver advanced configuration options >> Specific CFI Flash geometry selection +CONFIG_MTD_MAP_BANK_WIDTH_1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_MAP_BANK_WIDTH_4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_CFI_I1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_CFI_I2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> SPI NOR device support +CONFIG_MTD_SPI_NOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SPI_ASPEED_SMC policy<{'armhf': 'm'}> +CONFIG_SPI_HISI_SFC policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> SPI NOR device support >> Software write protection at boot +CONFIG_MTD_SPI_NOR_SWP_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_SPI_NOR_SWP_KEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Memory Technology Device (MTD) support >> Self-contained MTD device drivers +CONFIG_MTD_PMC551 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PMC551_BUGFIX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_PMC551_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_DATAFLASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_DATAFLASH_WRITE_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MTD_DATAFLASH_OTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MTD_MCHP23K256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_MCHP48L640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_SST25L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_BCM47XXSFLASH policy<{'armhf': 'm'}> +CONFIG_MTD_SLRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_PHRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_MTDRAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTDRAM_TOTAL_SIZE policy<{'amd64': '4096', 'arm64': '4096', 'armhf': '4096', 'ppc64el': '4096', 'riscv64': '4096'}> +CONFIG_MTDRAM_ERASE_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128'}> +CONFIG_MTD_BLOCK2MTD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTD_POWERNV_FLASH policy<{'ppc64el': 'm'}> +CONFIG_MTD_DOCG3 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_MTD_DOCG3 mark note + +# Menu: Device Drivers >> Microsoft Hyper-V guest support +CONFIG_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_UTILS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HYPERV_BALLOON policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> Microsoft Surface Platform-Specific Device Drivers +CONFIG_SURFACE_PLATFORMS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SURFACE3_WMI policy<{'amd64': 'm'}> +CONFIG_SURFACE_3_POWER_OPREGION policy<{'amd64': 'm', 'arm64': 'n'}> +CONFIG_SURFACE_ACPI_NOTIFY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_CDEV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_REGISTRY policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_DTX policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_GPE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_HOTPLUG policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_PLATFORM_PROFILE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_PRO3_BUTTON policy<{'amd64': 'm', 'arm64': 'n'}> + +# Menu: Device Drivers >> Microsoft Surface Platform-Specific Device Drivers >> Microsoft Surface System Aggregator Module Subsystem and Drivers +CONFIG_SURFACE_AGGREGATOR policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SURFACE_AGGREGATOR_BUS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Device Drivers >> Misc devices +CONFIG_AD525X_DPOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_AD525X_DPOT_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD525X_DPOT_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DUMMY_IRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_IBM_ASM policy<{'amd64': 'm'}> +CONFIG_IBMVMC policy<{'ppc64el': 'm'}> +CONFIG_PHANTOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TIFM_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TIFM_7XX1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ICS932S401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ENCLOSURE_SERVICES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SGI_XP policy<{'amd64': 'm'}> +CONFIG_HI6421V600_IRQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HP_ILO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QCOM_COINCELL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_FASTRPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SGI_GRU policy<{'amd64': 'm'}> +CONFIG_SGI_GRU_DEBUG policy<{'amd64': 'n'}> +CONFIG_APDS9802ALS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ISL29003 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ISL29020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SENSORS_TSL2550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SENSORS_BH1770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SENSORS_APDS990X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HMC6352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DS1682 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_VMWARE_BALLOON policy<{'amd64': 'm'}> +CONFIG_LATTICE_ECP3_CONFIG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DW_XDATA_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PCI_ENDPOINT_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XILINX_SDFEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_HISI_HIKEY_USB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n'}> +CONFIG_CB710_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CB710_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SENSORS_LIS3_SPI policy<{'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SENSORS_LIS3_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ALTERA_STAPL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INTEL_MEI policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_ME policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_TXE policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_HDCP policy<{'amd64': 'm'}> +CONFIG_VMWARE_VMCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ECHO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CXL policy<{'ppc64el': 'm'}> +CONFIG_OCXL policy<{'ppc64el': 'm'}> +CONFIG_BCM_VK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BCM_VK_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MISC_ALCOR_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MISC_RTSX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MISC_RTSX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HABANA_AI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_UACCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PVPANIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PVPANIC_MMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PVPANIC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_CS5535_MFGPT note + +# Menu: Device Drivers >> Misc devices >> EEPROM support +CONFIG_EEPROM_AT24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EEPROM_AT25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EEPROM_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EEPROM_MAX6875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EEPROM_93CX6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EEPROM_93XX46 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_EEPROM_IDT_89HPESX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EEPROM_EE1004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Misc devices >> GenWQE PCIe Accelerator +CONFIG_GENWQE policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY policy<{'amd64': '0', 'arm64': '0', 'ppc64el': '0', 'riscv64': '0', 's390x': '0'}> + +# Menu: Device Drivers >> Misc devices >> Silicon Labs C2 port support +CONFIG_C2PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_C2PORT_DURAMAR_2150 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Misc devices >> Texas Instruments shared transport line discipline +CONFIG_TI_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multifunction device drivers +CONFIG_MFD_ALTERA_A10SR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MFD_ALTERA_SYSMGR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MFD_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_SUN4I_GPADC policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_MFD_AS3711 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PMIC_ADP5520 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_AAT2870_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_ATMEL_FLEXCOM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_ATMEL_HLCDC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_AC100 policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_MFD_AXP20X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_AXP20X_RSB policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_MFD_CROS_EC_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_ASIC3 policy<{'armhf': 'y'}> +CONFIG_PMIC_DA903X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_DA9052_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_DA9052_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_DA9055 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_DA9063 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MFD_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MFD_EXYNOS_LPASS policy<{'armhf': 'n'}> +CONFIG_MFD_GATEWORKS_GSC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_MC13XXX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MFD_MC13XXX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_MP2629 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_HI6421_PMIC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_HI6421_SPMI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_HI655X_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HTC_PASIC3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HTC_I2CPLD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_INTEL_QUARK_I2C_GPIO policy<{'amd64': 'm'}> +CONFIG_LPC_ICH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_LPC_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_INTEL_SOC_PMIC policy<{'amd64': 'y'}> +CONFIG_INTEL_SOC_PMIC_BXTWC policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_PMIC_CHTWC policy<{'amd64': 'y'}> +CONFIG_INTEL_SOC_PMIC_CHTDC_TI policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_PMIC_MRFLD policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_LPSS_ACPI policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_LPSS_PCI policy<{'amd64': 'm'}> +CONFIG_MFD_INTEL_PMC_BXT policy<{'amd64': 'm'}> +CONFIG_MFD_IQS62X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_JANZ_CMODIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_KEMPLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_88PM860X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_MAX14577 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MFD_MAX77620 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_MAX77686 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_MAX77693 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MFD_MAX77843 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_MAX8925 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_MAX8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_MAX8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_MENF21BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EZX_PCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_VIPERBOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MFD_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_RETU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PCF50633_ADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCF50633_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_UCB1400_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_PM8XXX policy<{'armhf': 'm'}> +CONFIG_MFD_QCOM_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_SPMI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_RDC321X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_RC5T583 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_RN5T618 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_SEC_CORE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_SI476X_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_MFD_SM501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_SM501_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_SC27XX_PMIC policy<{'arm64': 'm'}> +CONFIG_MFD_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_SUN6I_PRCM policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_MFD_SYSCON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MFD_TI_AM335X_TSCADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_LP8788 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_TI_LMU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_OMAP_USB_HOST policy<{'armhf': 'y'}> +CONFIG_MFD_PALMAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TPS65010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_TPS65090 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_TPS65217 policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_MFD_TI_LP873X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_TI_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_TPS6586X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_TPS65910 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_TPS65912_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MFD_TPS65912_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TWL4030_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_TWL4030_POWER policy<{'armhf': 'y'}> +CONFIG_MFD_TWL4030_AUDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_TWL6040_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_WL1273_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_LM3533 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_TC3589X policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_T7L66XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6387XB policy<{'armhf': 'y'}> +CONFIG_MFD_TC6393XB policy<{'armhf': 'y'}> +CONFIG_MFD_TQMX86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MFD_VX855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_LOCHNAGAR policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_ARIZONA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_ARIZONA_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MFD_CS47L24 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM5102 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM5110 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM8997 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM8998 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM8400 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_WM831X_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_WM831X_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_WM8350_I2C policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_MFD_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_ROHM_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_ROHM_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_ROHM_BD957XMUF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_STPMIC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_STMFX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_WCD934X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_ATC260X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_KHADAS_MCU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MFD_ACER_A500_EC policy<{'armhf': 'm'}> +CONFIG_MFD_QCOM_PM8008 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_VEXPRESS_SYSREG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RAVE_SP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_INTEL_M10_BMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MFD_RSMU_I2C policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_RSMU_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_MFD_SM501 note +CONFIG_MFD_TPS65217 mark note + +# Menu: Device Drivers >> Multifunction device drivers >> Cirrus Logic Madera codecs +CONFIG_MFD_MADERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MFD_MADERA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_MADERA_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MFD_CS47L15 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_CS47L35 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_CS47L85 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_CS47L90 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MFD_CS47L92 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multifunction device drivers >> Multimedia Capabilities Port drivers + +# Menu: Device Drivers >> Multifunction device drivers >> STMicroelectronics STMPE Interface Drivers +CONFIG_STMPE_I2C policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_STMPE_SPI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support +CONFIG_MEDIA_SUPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MEDIA_SUPPORT_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_SUBDRV_AUTOSELECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Digital TV options +CONFIG_DVB_MMAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DVB_MAX_ADAPTERS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8'}> +CONFIG_DVB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DVB_DEMUX_SECTION_LOSS_LOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_ULE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_DVB_ULE_DEBUG flag + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers +CONFIG_DVB_DUMMY_FE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IR_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_DVB_DUMMY_FE note + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Audio decoders, processors and mixers +CONFIG_VIDEO_TVAUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TDA7432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TDA9840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TDA1997X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TEA6415C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TEA6420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MSP3400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CS3308 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CS5345 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CS53L32A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TLV320AIC23B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_UDA1342 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_WM8775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_WM8739 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VP27SMPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SONY_BTF_MPX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Audio/Video compression chips +CONFIG_VIDEO_SAA6752HS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Camera sensor devices +CONFIG_VIDEO_HI556 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX214 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX219 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX258 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX274 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX319 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX334 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX335 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX355 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IMX412 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV02A10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV2640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV2659 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV2680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV2685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV2740 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIDEO_OV5640 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5645 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5647 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5648 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV6650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5675 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV5695 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV7251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV772X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV7640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV7670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV7740 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV8856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV8865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_VIDEO_OV9282 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV9640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV9650 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OV9734 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIDEO_OV13858 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VS6624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9M001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9M032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9M111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9P031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9T001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9T112 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9V011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9V032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MT9V111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SR030PC30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_NOON010PC30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_M5MOLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_RDACM20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_RDACM21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_RJ54N1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_S5K6AA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_S5K6A3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_S5K4ECGX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_S5K5BAF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ET8EK8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_S5C73M3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Customise DVB Frontends +CONFIG_DVB_STB0899 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STB6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV090x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV6110x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV6111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MXL5XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_M88DS3103 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DRXK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA18271C2DD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_SI2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MN88472 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MN88473 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX24110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX24123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MT312 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ZL10036 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ZL10039 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_S5H1420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0288 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STB6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0299 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV6110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA8083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA10086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA8261 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_VES1X93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TUNER_ITD1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TUNER_CX24113 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA826X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TUA6100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX24116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX24117 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX24120 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_SI21XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TS2020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DS3000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MB86A16 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA10071 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_SP887X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX22700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CX22702 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_S5H1432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DRXD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_L64781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA1004X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_NXT6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MT352 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ZL10353 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB3000MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB3000MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB7000M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB7000P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB9000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA10048 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AF9013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_EC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0367 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CXD2820R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CXD2841ER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_RTL2830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_RTL2832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_RTL2832_SDR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_SI2168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ZD1301_DEMOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CXD2880 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_VES1820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA10021 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA10023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_STV0297 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_NXT200X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_OR51211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_OR51132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_BCM3510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LGDT330X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LGDT3305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LGDT3306A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LG2160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_S5H1409 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AU8522_DTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AU8522_V4L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_S5H1411 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MXL692 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_S921 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DIB8000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MB86A20S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TC90522 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MN88443X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_PLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TUNER_DIB0070 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TUNER_DIB0090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DRX39XYJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LNBH25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LNBH29 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LNBP21 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LNBP22 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ISL6405 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ISL6421 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ISL6423 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_A8293 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LGS8GL5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_LGS8GXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ATBM8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TDA665x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_IX2505V policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_M88RS2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AF9033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_HORUS3A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_ASCOT2E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_HELENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_CXD2099 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_SP2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Customize TV tuners +CONFIG_MEDIA_TUNER_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA18250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA8290 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA827X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA18271 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA9887 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TEA5761 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TEA5767 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MSI001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MT20XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MT2060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MT2063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MT2266 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MT2131 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_QT1010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_XC2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_XC5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_XC4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MXL5005S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MXL5007T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MC44S803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MAX2165 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA18218 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_FC0011 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_FC0012 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_FC0013 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TDA18212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_E4000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_FC2580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_M88RS6000T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_TUA9001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_SI2157 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_IT913X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_R820T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_MXL301RF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_QM1D1C0042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_TUNER_QM1D1B0004 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Flash devices +CONFIG_VIDEO_ADP1653 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_LM3560 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_LM3646 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Lens drivers +CONFIG_VIDEO_AD5820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_AK7375 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_DW9714 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_DW9768 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_DW9807_VCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Media SPI Adapters +CONFIG_CXD2880_SPI_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Miscellaneous helper chips +CONFIG_VIDEO_THS7303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_M52790 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ST_MIPID02 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> RDS decoders +CONFIG_VIDEO_SAA6588 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> SDR tuner chips +CONFIG_SDR_MAX2175 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> SPI helper chips +CONFIG_VIDEO_GS1662 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video decoders +CONFIG_VIDEO_ADV7180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7183 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV748X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7604 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7604_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_ADV7842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7842_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_BT819 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_BT856 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_BT866 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_KS0127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ML86V7667 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA711X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TC358743 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TC358743_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_TVP514X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TVP5150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TVP7002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW2804 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW9903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW9906 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW9910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VPX3220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MAX9286 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA717X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX25840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video encoders +CONFIG_VIDEO_SAA7127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7185 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7170 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7175 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7343 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_ADV7393 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_AD9389B policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_AK881X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_THS8200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media ancillary drivers >> Video improvement chips +CONFIG_VIDEO_UPD64031A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_UPD64083 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media controller options +CONFIG_MEDIA_CONTROLLER_DVB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media core support +CONFIG_VIDEO_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media device types +CONFIG_MEDIA_CAMERA_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_ANALOG_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_DIGITAL_TV_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_RADIO_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_SDR_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_PLATFORM_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MEDIA_TEST_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers +CONFIG_SMS_SDIO_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_FIREDTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SMS_SIANO_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SMS_SIANO_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> DVB platform devices +CONFIG_DVB_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DVB_C8SECTPFE policy<{'armhf': 'n'}> +# +CONFIG_DVB_C8SECTPFE flag + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> DVB test drivers +CONFIG_DVB_TEST_DRIVERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters +CONFIG_MEDIA_PCI_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_MEYE policy<{'amd64': 'm'}> +CONFIG_VIDEO_SOLO6X10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW5864 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW68 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TW686X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_HEXIUM_GEMINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_HEXIUM_ORION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_DT3155 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX18 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX18_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX23885 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEDIA_ALTERA_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX25821 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX25821_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_BT848 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_BT8XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7164 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_COBALT policy<{'amd64': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_PLUTO2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DM1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_PT1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_PT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MANTIS_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_MANTIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_HOPPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_NGENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DDBRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_DDBRIDGE_MSIENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_SMIPCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_NETUP_UNIDVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IPU3_CIO2 policy<{'amd64': 'm'}> +CONFIG_CIO2_BRIDGE policy<{'amd64': 'y'}> +CONFIG_VIDEO_PCI_SKELETON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_VIDEO_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_IVTV_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_FB_IVTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_FB_IVTV_FORCE_PAT policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> Conexant 2388x (bt878 successor) support +CONFIG_VIDEO_CX88 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX88_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX88_BLACKBIRD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX88_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX88_ENABLE_VP3054 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> Philips SAA7134 support +CONFIG_VIDEO_SAA7134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7134_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7134_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_SAA7134_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_SAA7134_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media PCI Adapters >> SAA7146 DVB cards (aka Budget, Nova-PCI) +CONFIG_DVB_BUDGET_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_BUDGET_CI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_BUDGET_AV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters +CONFIG_MEDIA_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_VIDEO_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_PWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_PWC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_PWC_INPUT_EVDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_CPIA2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_ZR364XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STKWEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_S2255 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_USBTV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_PVRUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_PVRUSB2_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_PVRUSB2_DVB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_PVRUSB2_DEBUGIFC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_VIDEO_HDPVR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_STK1160_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_GO7007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_GO7007_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_GO7007_LOADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_GO7007_USB_S2250_BOARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_AU0828 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_AU0828_V4L2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_AU0828_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_TM6000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TM6000_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_TM6000_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TTUSB_BUDGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_TTUSB_DEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SMS_USB_DRV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_AS102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_AIRSPY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_HACKRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MSI2500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Conexant cx231xx USB video capture support +CONFIG_VIDEO_CX231XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX231XX_RC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_CX231XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CX231XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Empia EM28xx USB devices support +CONFIG_VIDEO_EM28XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_EM28XX_V4L2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_EM28XX_ALSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_EM28XX_DVB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_EM28XX_RC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> GSPCA based webcams +CONFIG_USB_GSPCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_M5602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STV06XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GL860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_BENQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_CONEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_CPIA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_DTCS033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_ETOMS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_FINEPIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_JEILINJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_JL2005BCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_KINECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_KONICA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_MARS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_MR97310A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_NW80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_OV519 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_OV534 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_OV534_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_PAC207 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_PAC7302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_PAC7311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SE401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SN9C2028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SN9C20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SONIXB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SONIXJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA500 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA501 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA505 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA506 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA508 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA561 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SPCA1528 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SQ905 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SQ905C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SQ930X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_STK014 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_STK1135 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_STV0680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_SUNPLUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_T613 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_TOPRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_TOUPTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_TV8532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_VC032X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_VICAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_XIRLINK_CIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GSPCA_ZC3XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Support for various USB DVB devices +CONFIG_DVB_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_USB_A800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DIBUSB_MB_FAULTY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DVB_USB_DIBUSB_MC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DIB0700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_UMT_010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_CXUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_CXUSB_ANALOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DVB_USB_M920X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DIGITV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_VP7045 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_VP702X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_GP8PSK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_NOVA_T_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_TTUSB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DTT200U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_OPERA1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AF9005 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AF9005_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_PCTV452E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DW2102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_CINERGY_T2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DTV5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AZ6027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_TECHNISAT_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Media USB Adapters >> Support for various USB DVB devices v2 +CONFIG_DVB_USB_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AF9015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AF9035 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_ANYSEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AU6610 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_AZ6007 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_CE6230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_EC168 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_GL861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_LME2510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_MXL111SF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_RTL28XXU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_DVBSKY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_USB_ZD1301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Memory-to-memory multimedia devices +CONFIG_V4L_MEM2MEM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_ALLEGRO_DVT policy<{'arm64': 'm'}> +CONFIG_VIDEO_CODA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_IMX_PXP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_IMX8_JPEG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_MEDIATEK_VPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_MEM2MEM_DEINTERLACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MESON_GE2D policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SAMSUNG_S5P_G2D policy<{'armhf': 'n'}> +CONFIG_VIDEO_SAMSUNG_S5P_JPEG policy<{'armhf': 'n'}> +CONFIG_VIDEO_SAMSUNG_S5P_MFC policy<{'armhf': 'n'}> +CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC policy<{'armhf': 'n'}> +CONFIG_VIDEO_RENESAS_FDP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_JPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_FCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RENESAS_VSP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_ROCKCHIP_RGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE policy<{'armhf': 'm'}> +CONFIG_VIDEO_TI_VPE_DEBUG policy<{'armhf': 'n'}> +CONFIG_VIDEO_QCOM_VENUS policy<{'arm64': 'm'}> +CONFIG_VIDEO_SUN8I_DEINTERLACE policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_VIDEO_SUN8I_ROTATE policy<{'arm64': 'm', 'armhf': '-'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters +CONFIG_RADIO_ADAPTERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_SI470X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_SI476X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MR800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_DSBR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_MAXIRADIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_SHARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_SHARK2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_KEENE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RAREMONO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MA901 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_TEA5764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_SAA7706H policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_TEF6862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_WL1273 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RADIO_WL128X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters >> ISA radio devices + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> Radio Adapters >> Silicon Labs Si4713 FM Radio with RDS Transmitter support +CONFIG_RADIO_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PLATFORM_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_I2C_SI4713 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> SDR platform devices +CONFIG_SDR_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_RCAR_DRIF policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices +CONFIG_V4L_PLATFORM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_CAFE_CCIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VIA_CAMERA policy<{'amd64': 'm'}> +CONFIG_VIDEO_OMAP2_VOUT policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_ASPEED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CADENCE_CSI2RX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_CADENCE_CSI2TX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_MUX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_OMAP3_DEBUG policy<{'armhf-generic': 'n'}> +CONFIG_VIDEO_QCOM_CAMSS policy<{'arm64': 'm'}> +CONFIG_VIDEO_RENESAS_CEU policy<{'armhf': 'm'}> +CONFIG_VIDEO_ROCKCHIP_ISP1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RCAR_CSI2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_RCAR_VIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SUN4I_CSI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_VIDEO_SUN6I_CSI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_VIDEO_TI_CAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_TI_CAL_MC policy<{'arm64': 'y', 'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices >> Samsung S5P/EXYNOS4 SoC series Camera Subsystem driver +CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L platform devices >> Xilinx Video IP (EXPERIMENTAL) +CONFIG_VIDEO_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_XILINX_CSI2RXSS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_XILINX_TPG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_XILINX_VTC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multimedia support >> Media drivers >> V4L test drivers +CONFIG_V4L_TEST_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_VIMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VIVID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VIVID_CEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_VIVID_MAX_DEVS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64', 'riscv64': '64'}> +CONFIG_VIDEO_VIM2M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIDEO_VICODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_VIDEO_VIMC note + +# Menu: Device Drivers >> Multimedia support >> Video4Linux options +CONFIG_VIDEO_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_VIDEO_FIXED_MINOR_RANGES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_VIDEO_V4L2_SUBDEV_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_V4L2_FLASH_LED_CLASS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) +CONFIG_MD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Block device as cache +CONFIG_BCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BCACHE_CLOSURES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BCACHE_ASYNC_REGISTRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support +CONFIG_BLK_DEV_DM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_DM_UNSTRIPED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_CRYPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_SNAPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_THIN_PROVISIONING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_CACHE_SMQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_WRITECACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_EBS policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_ERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_CLONE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_MIRROR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_USERSPACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_DELAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_DUST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DM_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DM_UEVENT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DM_FLAKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_VERITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DM_VERITY_FEC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DM_SWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_LOG_WRITES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_INTEGRITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_ZONED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_BLK_DEV_DM mark note + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> Device mapper support >> Multipath target +CONFIG_DM_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_QL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_HST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DM_MULTIPATH_IOA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multiple devices driver support (RAID and LVM) >> RAID support +CONFIG_BLK_DEV_MD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MD_AUTODETECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MD_LINEAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_RAID0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_RAID1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_RAID10 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_RAID456 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_MULTIPATH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'y'}> +CONFIG_MD_FAULTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MD_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Multiplexer drivers +CONFIG_MUX_ADG792A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MUX_ADGS1408 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MUX_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MUX_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> NVDIMM (Non-Volatile Memory Device) Support +CONFIG_LIBNVDIMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_BLK_DEV_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BTT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NVDIMM_PFN policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_NVDIMM_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_OF_PMEM policy<{'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> NVME Support +CONFIG_BLK_DEV_NVME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_MULTIPATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NVME_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NVME_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_BLK_DEV_NVME mark note + +# Menu: Device Drivers >> NVME Support >> NVMe Target support +CONFIG_NVME_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_PASSTHRU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NVME_TARGET_LOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NVME_TARGET_FCLOOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NVME_TARGET_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> NVMEM Support +CONFIG_NVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NVMEM_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NVMEM_IMX_IIM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_IMX_OCOTP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_IMX_OCOTP_SCU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_EFUSE policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_QCOM_QFPROM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_SPMI_SDAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ROCKCHIP_EFUSE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_OTP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_BCM_OCOTP policy<{'arm64': 'm'}> +CONFIG_NVMEM_SUNXI_SID policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_UNIPHIER_EFUSE policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_NVMEM_VF610_OCOTP policy<{'armhf': 'n'}> +CONFIG_MESON_EFUSE policy<{'arm64-generic': 'm'}> +CONFIG_MESON_MX_EFUSE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVMEM_SNVS_LPGPR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RAVE_SP_EEPROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SC27XX_EFUSE policy<{'arm64': 'm'}> +CONFIG_NVMEM_ZYNQMP policy<{'arm64': 'y'}> +CONFIG_SPRD_EFUSE policy<{'arm64': 'm'}> +CONFIG_NVMEM_RMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_NVMEM flag note note + +# Menu: Device Drivers >> Network device support +CONFIG_NETDEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HIPPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_QCOM_IPA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_SB1000 policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_MICREL_KS8995MA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_XEN_NETDEV_FRONTEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_NETDEV_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_VMXNET3 policy<{'amd64': 'm', 'arm64-generic': 'm', 'armhf': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FUJITSU_ES policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB4_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HYPERV_NET policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NETDEVSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_FAILOVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_HIPPI flag +CONFIG_XEN_NETDEV_FRONTEND note + +# Menu: Device Drivers >> Network device support >> ARCnet support +CONFIG_ARCNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ARCNET_1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_1051 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_CAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_COM90xx policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_COM90xxIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_RIM_I policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> ARCnet support >> ARCnet COM20020 chipset driver +CONFIG_ARCNET_COM20020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_COM20020_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCNET_COM20020_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> ATM drivers +CONFIG_ATM_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATM_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_LANAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_ENI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_ENI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_NICSTAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_NICSTAR_USE_SUNI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_NICSTAR_USE_IDT77105 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_IDT77252 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_IDT77252_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_IDT77252_RCV_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_IA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_IA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_HE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_HE_USE_SUNI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATM_SOLOS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_ATM_NICSTAR_USE_IDT77105 flag + +# Menu: Device Drivers >> Network device support >> ATM drivers >> FORE Systems 200E-series +CONFIG_ATM_FORE200E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_FORE200E_USE_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_FORE200E_TX_RETRY policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16', 'riscv64': '16'}> +CONFIG_ATM_FORE200E_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> + +# Menu: Device Drivers >> Network device support >> ATM drivers >> Fine-tune burst settings +CONFIG_ATM_ENI_TUNE_BURST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> CAIF transport drivers +CONFIG_CAIF_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CAIF_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAIF_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers +CONFIG_NET_DSA_BCM_SF2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_LOOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_LANTIQ_GSWIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MT7530 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MV88E6060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MV88E6XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MV88E6XXX_PTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NET_DSA_MSCC_FELIX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n'}> +CONFIG_NET_DSA_MSCC_SEVILLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_AR9331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_SJA1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_SJA1105_PTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NET_DSA_SJA1105_TAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NET_DSA_SJA1105_VL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NET_DSA_XRS700X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_XRS700X_MDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_QCA8K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_REALTEK_SMI policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_SMSC_LAN9303_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_SMSC_LAN9303_MDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_NET_DSA_LOOP flag + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Broadcom BCM53xx managed switch support +CONFIG_B53 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B53_SPI_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B53_MDIO_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B53_MMAP_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B53_SRAB_DRIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B53_SERDES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Microchip KSZ8795 series switch support +CONFIG_NET_DSA_MICROCHIP_KSZ8795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Distributed Switch Architecture drivers >> Microchip KSZ9477 series switch support +CONFIG_NET_DSA_MICROCHIP_KSZ9477 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support +CONFIG_ETHERNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_OWL_EMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_ADAPTEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ADAPTEC_STARFIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_AGERE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ET131X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_ALACRITECH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLICOSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_VENDOR_ALLWINNER policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_SUN4I_EMAC policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_NET_VENDOR_ALTEON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ACENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ACENIC_OMIT_TIGON_I policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ALTERA_TSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_AMAZON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ENA_ETHERNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_XGENE policy<{'arm64': 'm'}> +CONFIG_NET_XGENE_V2 policy<{'arm64': 'm'}> +CONFIG_NET_VENDOR_AQUANTIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AQTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_ARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_EMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_BROCADE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_BNA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_CADENCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MACB_USE_HWSTAMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MACB_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_CALXEDA_XGMAC policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_CISCO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ENIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_CORTINA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GEMINI_ETHERNET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CX_ECAT policy<{'amd64': 'm'}> +CONFIG_DM9000 policy<{'armhf': 'm'}> +CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL policy<{'armhf': 'n'}> +CONFIG_DNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_DLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DL2K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SUNDANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SUNDANCE_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NET_VENDOR_EMULEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_EZCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_VENDOR_FARADAY policy<{'armhf': 'y'}> +CONFIG_FTMAC100 policy<{'armhf': 'm'}> +CONFIG_FTGMAC100 policy<{'armhf': 'm'}> +CONFIG_NET_VENDOR_FUJITSU policy<{'amd64': 'y'}> +CONFIG_PCMCIA_FMVJ18X policy<{'amd64': 'm'}> +CONFIG_NET_VENDOR_GOOGLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_GVE policy<{'amd64': 'm', 'armhf': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_NET_VENDOR_HUAWEI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HINIC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_NET_VENDOR_MICROSOFT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MICROSOFT_MANA policy<{'amd64': 'm'}> +CONFIG_JME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_LITEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_LITEX_LITEETH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_VENDOR_MEDIATEK policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_NET_VENDOR_MICROSEMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MSCC_OCELOT_SWITCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_VENDOR_MYRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MYRI10GE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MYRI10GE_DCA policy<{'amd64': 'y'}> +CONFIG_FEALNX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_NETERION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_S2IO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_VXGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_VXGE_DEBUG_TRACE_ALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NET_VENDOR_NETRONOME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_VENDOR_NI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NI_XGE_MANAGEMENT_ENET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_NVIDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_FORCEDETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_OKI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ETHOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_PACKET_ENGINES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HAMACHI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_YELLOWFIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_VENDOR_PENSANDO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_IONIC policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_RDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_R6040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_RENESAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SH_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RAVB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NET_VENDOR_ROCKER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ROCKER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_SAMSUNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SXGBE_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_SEEQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SOLARFLARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SFC_FALCON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SFC_FALCON_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NET_VENDOR_SILAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SC92031 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_SIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SIS900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SIS190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_SOCIONEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SNI_NETSEC policy<{'arm64': 'm'}> +CONFIG_NET_VENDOR_STMICRO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NET_VENDOR_SYNOPSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DWC_XLGMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DWC_XLGMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_VENDOR_TEHUTI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_TEHUTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_VIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_VIA_RHINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VIA_RHINE_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIA_VELOCITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NET_VENDOR_WIZNET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_WIZNET_W5100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WIZNET_W5300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WIZNET_W5100_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_VENDOR_XIRCOM policy<{'amd64': 'y'}> +CONFIG_PCMCIA_XIRC2PS policy<{'amd64': 'm'}> +# +CONFIG_NET_VENDOR_EMULEX note + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> 3Com devices +CONFIG_NET_VENDOR_3COM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_EL3 policy<{'amd64': 'm'}> +CONFIG_PCMCIA_3C574 policy<{'amd64': 'm'}> +CONFIG_PCMCIA_3C589 policy<{'amd64': 'm'}> +CONFIG_VORTEX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPHOON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> AMD devices +CONFIG_NET_VENDOR_AMD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_AMD8111_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PCNET32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PCMCIA_NMCLAN policy<{'amd64': 'm'}> +CONFIG_AMD_XGBE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_AMD_XGBE_DCB policy<{'amd64': 'y', 'arm64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Apple devices + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Atheros devices +CONFIG_NET_VENDOR_ATHEROS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ATL2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ATL1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ATL1E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ATL1C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ALX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Broadcom devices +CONFIG_NET_VENDOR_BROADCOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_B44 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BCM4908_ENET policy<{'arm64': 'm'}> +CONFIG_BCMGENET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BNX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TIGON3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TIGON3_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BNX2X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BNX2X_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BGMAC_PLATFORM policy<{'arm64': 'y'}> +CONFIG_SYSTEMPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_TIGON3 flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Broadcom devices >> Broadcom NetXtreme-C/E support +CONFIG_BNXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BNXT_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BNXT_FLOWER_OFFLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BNXT_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BNXT_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cavium ethernet drivers +CONFIG_NET_VENDOR_CAVIUM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_THUNDER_NIC_PF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_THUNDER_NIC_VF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_THUNDER_NIC_BGX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_THUNDER_NIC_RGX policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CAVIUM_PTP policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LIQUIDIO policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LIQUIDIO_VF policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Chelsio devices +CONFIG_NET_VENDOR_CHELSIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CHELSIO_T1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHELSIO_T1_1G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CHELSIO_T3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHELSIO_T4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHELSIO_T4_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CHELSIO_T4_FCOE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CHELSIO_T4VF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Chelsio devices >> Chelsio Inline Crypto support +CONFIG_CHELSIO_INLINE_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CHELSIO_IPSEC_INLINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHELSIO_TLS_DEVICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Cirrus devices +CONFIG_NET_VENDOR_CIRRUS policy<{'amd64': 'y', 'armhf': 'y'}> +CONFIG_CS89x0_PLATFORM policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> DEC - Tulip devices +CONFIG_NET_TULIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DE2104X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DE2104X_DSL policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_WINBOND_840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DM9102 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ULI526X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PCMCIA_XIRCOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> DEC - Tulip devices >> DECchip Tulip (dc2114x) PCI support +CONFIG_TULIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TULIP_MWI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_TULIP_MMIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_TULIP_NAPI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_TULIP_NAPI flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices +CONFIG_NET_VENDOR_FREESCALE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FEC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_FSL_FMAN policy<{'arm64': 'y'}> +CONFIG_FSL_PQ_MDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_XGMAC_MDIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_GIANFAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_DPAA_ETH policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_ETH policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_ETH_DCB policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA2_PTP_CLOCK policy<{'arm64': 'm'}> +CONFIG_FSL_DPAA2_SWITCH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_VF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_IERB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_MDIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_PTP_CLOCK policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_FSL_ENETC_QOS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Freescale devices >> Freescale Ethernet Driver + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Hisilicon devices +CONFIG_NET_VENDOR_HISILICON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HIX5HD2_GMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HISI_FEMAC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HIP04_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HI13X1_GMAC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HNS_DSAF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS_ENET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_HCLGE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_DCB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_HNS3_HCLGEVF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_HNS3_ENET policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> IBM devices +CONFIG_NET_VENDOR_IBM policy<{'ppc64el': 'y'}> +CONFIG_IBMVETH policy<{'ppc64el': 'm'}> +CONFIG_IBMVNIC policy<{'ppc64el': 'm'}> +# +CONFIG_IBMVNIC mark note + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> IBM devices >> IBM EMAC Ethernet support + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel (82586/82593/82596) devices +CONFIG_NET_VENDOR_I825XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel devices +CONFIG_NET_VENDOR_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_E100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_E1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_E1000E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_E1000E_HWTS policy<{'amd64': 'y'}> +CONFIG_IGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IGB_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IGB_DCA policy<{'amd64': 'y'}> +CONFIG_IGBVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IXGB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IXGBEVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IXGBEVF_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_I40E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_I40E_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_I40EVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FM10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IGC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Intel devices >> Intel(R) 10GbE PCI Express adapters support +CONFIG_IXGBE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_IXGBE_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IXGBE_DCA policy<{'amd64': 'y'}> +CONFIG_IXGBE_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IXGBE_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Marvell devices +CONFIG_NET_VENDOR_MARVELL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MV643XX_ETH policy<{'armhf': 'm'}> +CONFIG_MVMDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MVNETA_BM_ENABLE policy<{'armhf': 'n'}> +CONFIG_MVNETA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MVPP2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MVPP2_PTP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PXA168_ETH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SKGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SKGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SKGE_GENESIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SKY2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SKY2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_OCTEONTX2_AF policy<{'arm64': 'm'}> +CONFIG_NDC_DIS_DYNAMIC_CACHING policy<{'arm64': 'y'}> +CONFIG_OCTEONTX2_PF policy<{'arm64': 'm'}> +CONFIG_OCTEONTX2_VF policy<{'arm64': 'm'}> +CONFIG_PRESTERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PRESTERA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices +CONFIG_NET_VENDOR_MELLANOX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX4_EN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLX4_EN_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX4_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX4_CORE_GEN2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLX5_FPGA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLXFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLXBF_GIGE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices >> Mellanox 5th generation network adapters (ConnectX series) Ethernet support +CONFIG_MLX5_CORE_EN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_ARFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_RXNFC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_MPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_ESWITCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_CLS_ACT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_TC_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_TC_SAMPLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE_EN_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_CORE_IPOIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_EN_IPSEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_SW_STEERING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MLX5_SF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Mellanox devices >> Mellanox Technologies Switch ASICs support +CONFIG_MLXSW_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLXSW_CORE_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MLXSW_CORE_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MLXSW_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MLXSW_MINIMAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLXSW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLXSW_SPECTRUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MLXSW_SPECTRUM_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Micrel devices +CONFIG_NET_VENDOR_MICREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_KS8842 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KS8851 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KS8851_MLL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KSZ884X_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Microchip devices +CONFIG_NET_VENDOR_MICROCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ENC28J60 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_ENC28J60_WRITEVERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ENCX24J600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_LAN743X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPARX5_SWITCH policy<{'amd64': '-', 'arm64': 'm', 'armhf': '-', 'ppc64el': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semiconductor 8390 devices +CONFIG_NET_VENDOR_8390 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCMCIA_AXNET policy<{'amd64': 'm'}> +CONFIG_AX88796 policy<{'armhf': 'm'}> +CONFIG_AX88796_93CX6 policy<{'armhf': 'n'}> +CONFIG_NE2K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PCMCIA_PCNET policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> National Semiconductor devices +CONFIG_NET_VENDOR_NATSEMI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_NATSEMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NS83820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Netronome(R) NFP4000/NFP6000 NIC driver +CONFIG_NFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NFP_APP_FLOWER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NFP_APP_ABM_NIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NFP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> QLogic devices +CONFIG_NET_VENDOR_QLOGIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_QLA3XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NETXEN_NIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_QED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_QED_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_QEDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> QLogic devices >> QLOGIC QLCNIC 1/10Gb Converged Ethernet NIC Support +CONFIG_QLCNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_QLCNIC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_QLCNIC_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_QLCNIC_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Qualcomm devices +CONFIG_NET_VENDOR_QUALCOMM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_QCA7000_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCA7000_UART policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QCOM_EMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RMNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Realtek devices +CONFIG_NET_VENDOR_REALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ATP policy<{'amd64': 'm'}> +CONFIG_8139CP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_R8169 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Realtek devices >> RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support +CONFIG_8139TOO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_8139TOO_PIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_8139TOO_TUNE_TWISTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_8139TOO_8129 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_8139_OLD_RX_RESET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_8139TOO_TUNE_TWISTER flag + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> SMC (SMSC)/Western Digital devices +CONFIG_NET_VENDOR_SMSC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SMC91X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCMCIA_SMC91C92 policy<{'amd64': 'm'}> +CONFIG_EPIC100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SMC911X policy<{'armhf': 'm'}> +CONFIG_SMSC911X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SMSC9420 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> STMicroelectronics Multi-Gigabit Ethernet driver +CONFIG_STMMAC_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_STMMAC_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_DWMAC_INTEL policy<{'amd64': 'm'}> +CONFIG_DWMAC_LOONGSON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_STMMAC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> STMicroelectronics Multi-Gigabit Ethernet driver >> STMMAC Platform bus support +CONFIG_STMMAC_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DWMAC_DWC_QOS_ETH policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DWMAC_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DWMAC_IPQ806X policy<{'arm64': 'm', 'armhf': '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'}> +CONFIG_DWMAC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_SOCFPGA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_SUNXI policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_DWMAC_SUN8I policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_DWMAC_IMX8 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DWMAC_INTEL_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n'}> +CONFIG_DWMAC_VISCONTI policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> ServerEngines' 10Gbps NIC - BladeEngine +CONFIG_BE2NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BE2NET_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BE2NET_BE2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BE2NET_BE3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BE2NET_LANCER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BE2NET_SKYHAWK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Solarflare SFC9000/SFC9100/EF100-family support +CONFIG_SFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SFC_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SFC_MCDI_MON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SFC_SRIOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SFC_MCDI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Sun devices +CONFIG_NET_VENDOR_SUN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HAPPYMEAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SUNGEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CASSINI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NIU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Texas Instruments (TI) devices +CONFIG_NET_VENDOR_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_TI_DAVINCI_EMAC policy<{'armhf-generic': 'm'}> +CONFIG_TI_DAVINCI_MDIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_TI_CPSW_PHY_SEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_TI_CPSW policy<{'armhf': 'y'}> +CONFIG_TI_CPSW_SWITCHDEV policy<{'armhf': 'm'}> +CONFIG_TI_CPTS policy<{'armhf': 'y'}> +CONFIG_TI_K3_AM65_CPSW_NUSS policy<{'arm64': 'm'}> +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV policy<{'arm64': 'y'}> +CONFIG_TI_K3_AM65_CPTS policy<{'arm64': 'm'}> +CONFIG_TI_AM65_CPSW_TAS policy<{'arm64': 'y'}> +CONFIG_TLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Toshiba devices + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> WIZnet interface mode +CONFIG_WIZNET_BUS_DIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_WIZNET_BUS_INDIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_WIZNET_BUS_ANY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Ethernet driver support >> Xilinx devices +CONFIG_NET_VENDOR_XILINX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XILINX_EMACLITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_XILINX_AXI_EMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XILINX_LL_TEMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> FDDI driver support +CONFIG_FDDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DEFXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SKFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> IEEE 802.15.4 drivers +CONFIG_IEEE802154_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_FAKELB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_AT86RF230 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_MRF24J40 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_CC2520 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_ATUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_ADF7242 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_CA8210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_CA8210_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IEEE802154_MCR20A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> MDIO bus device drivers +CONFIG_MDIO_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MDIO_ASPEED policy<{'armhf': 'm'}> +CONFIG_MDIO_BCM_IPROC policy<{'arm64': 'n'}> +CONFIG_MDIO_BCM_UNIMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MDIO_BITBANG policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MDIO_BUS_MUX_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_MDIO_BUS_MUX_GPIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_BUS_MUX_MESON_G12A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MDIO_BUS_MUX_MMIOREG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_BUS_MUX_MULTIPLEXER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_HISI_FEMAC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_IPQ8064 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_MSCC_MIIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MDIO_MVUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MDIO_OCTEON policy<{'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MDIO_SUN4I policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_MDIO_THUNDER policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MDIO_XGENE policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Network core driver support +CONFIG_NET_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BONDING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_WIREGUARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_WIREGUARD_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_EQUALIZER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_FC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MACVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MACVTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPVLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPVTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BAREUDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_GTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MACSEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETCONSOLE_DYNAMIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NTB_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RIONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RIONET_TX_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128'}> +CONFIG_RIONET_RX_SIZE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128'}> +CONFIG_TUN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TUN_VNET_CROSS_LE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_VETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_VRF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VSOCKMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MHI_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_VIRTIO_NET note flag + +# Menu: Device Drivers >> Network device support >> Network core driver support >> Ethernet team driver support +CONFIG_NET_TEAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_BROADCAST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ROUNDROBIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_RANDOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TEAM_MODE_LOADBALANCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> PCS device drivers +CONFIG_PCS_XPCS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> Network device support >> PHY Device support and infrastructure +CONFIG_PHYLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LED_TRIGGER_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_FIXED_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SFP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_AMD_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MESON_GXL_PHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ADIN_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_AQUANTIA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_AX88796B_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BROADCOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BCM54140_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BCM7XXX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BCM84881_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BCM87XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CICADA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CORTINA_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DAVICOM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ICPLUS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_LXT_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INTEL_XWAY_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_LSI_ET1011C_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MARVELL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MARVELL_10G_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MARVELL_88X2222_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MAXLINEAR_GPHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MEDIATEK_GE_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MICREL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MICROCHIP_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MICROCHIP_T1_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MICROSEMI_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MOTORCOMM_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NATIONAL_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NXP_C45_TJA11XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NXP_TJA11XX_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_AT803X_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_QSEMI_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_REALTEK_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RENESAS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ROCKCHIP_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SMSC_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_STE10XP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TERANETICS_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DP83822_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DP83TC811_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DP83848_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DP83867_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DP83869_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VITESSE_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XILINX_GMII2RGMII policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Network device support >> PPP (point-to-point protocol) support +CONFIG_PPP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PPP_BSDCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPP_DEFLATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPP_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PPP_MPPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPP_MULTILINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PPPOATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PPPOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPPOL2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPP_ASYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PPP_SYNC_TTY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Network device support >> S/390 network device drivers +CONFIG_LCS policy<{'s390x': 'm'}> +CONFIG_CTCM policy<{'s390x': 'm'}> +CONFIG_NETIUCV policy<{'s390x': 'm'}> +CONFIG_SMSGIUCV policy<{'s390x': 'y'}> +CONFIG_SMSGIUCV_EVENT policy<{'s390x': 'm'}> +CONFIG_ISM policy<{'s390x': 'm'}> +# +CONFIG_ISM mark note + +# Menu: Device Drivers >> Network device support >> S/390 network device drivers >> Gigabit Ethernet device support +CONFIG_QETH policy<{'s390x': 'm'}> +CONFIG_QETH_L2 policy<{'s390x': 'm'}> +CONFIG_QETH_L3 policy<{'s390x': 'm'}> +CONFIG_QETH_OSX policy<{'s390x': 'n'}> +# +CONFIG_QETH_OSX mark note + +# Menu: Device Drivers >> Network device support >> SLIP (serial line) support +CONFIG_SLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SLIP_COMPRESSED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SLIP_SMART policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SLIP_MODE_SLIP6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters +CONFIG_USB_NET_DRIVERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CATC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_KAWETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_PEGASUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RTL8150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RTL8152 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_LAN78XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_HSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_IPHETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters >> Multi-purpose USB Networking Framework +CONFIG_USB_USBNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_AX8817X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_AX88179_178A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CDCETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CDC_EEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_HUAWEI_CDC_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CDC_MBIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_DM9601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_SR9700 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_SR9800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_SMSC75XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_SMSC95XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_GL620A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_NET1080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_PLUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_MCS7830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_RNDIS_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_ZAURUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CX82310_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_KALMIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_QMI_WWAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_INT51X1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CDC_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SIERRA_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_VL600 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_CH9200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_AQC111 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RTL8153_ECM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> USB Network Adapters >> Multi-purpose USB Networking Framework >> Simple USB Network Links (CDC Ethernet subset) +CONFIG_USB_NET_CDC_SUBSET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_ALI_M5632 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_AN2720 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_BELKIN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ARMLINUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_EPSON2888 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_KC2190 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support +CONFIG_WAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SLIC_DS26522 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_LAPBETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wan interfaces support >> Generic HDLC layer +CONFIG_HDLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HDLC_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDLC_RAW_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDLC_CISCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDLC_FR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDLC_PPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HDLC_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCI200SYN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WANXL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PC300TOO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FARSYNC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FSL_UCC_HDLC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN +CONFIG_WLAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WLAN_VENDOR_ADMTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ADM8211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLAN_VENDOR_ATMEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCI_ATMEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCMCIA_ATMEL policy<{'amd64': 'm'}> +CONFIG_AT76C50X_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLAN_VENDOR_CISCO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_AIRO policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_AIRO_CS policy<{'amd64': 'm'}> +CONFIG_WLAN_VENDOR_MICROCHIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WILC1000_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WILC1000_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WILC1000_HW_OOB_INTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WLAN_VENDOR_RALINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WLAN_VENDOR_RSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WLAN_VENDOR_ST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CW1200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CW1200_WLAN_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CW1200_WLAN_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLAN_VENDOR_ZYDAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ZD1201 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ZD1211RW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ZD1211RW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_WLAN_VENDOR_QUANTENNA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_QTNFMAC_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCMCIA_RAYCS policy<{'amd64': 'm'}> +CONFIG_PCMCIA_WL3501 policy<{'amd64': 'm'}> +CONFIG_MAC80211_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET_RNDIS_WLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIRT_WIFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices +CONFIG_WLAN_VENDOR_ATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH5K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_BTCOEX_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_HTC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH9K_HTC_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_COMMON_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_AR5523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WCN36XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WCN36XX_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 5xxx wireless cards support +CONFIG_ATH5K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH5K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH5K_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 802.11ac wireless cards support +CONFIG_ATH10K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH10K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH10K_AHB policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH10K_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH10K_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH10K_SNOC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ATH10K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH10K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH10K_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH10K_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros 802.11n wireless cards support +CONFIG_ATH9K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH9K_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_AHB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_STATION_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_DYNACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH9K_WOW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ATH9K_RFKILL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_CHANNEL_CONTEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_PCOEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH9K_PCI_NO_EEPROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH9K_HWRNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Atheros mobile chipsets support +CONFIG_ATH6KL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH6KL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH6KL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH6KL_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH6KL_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Linux Community AR9170 802.11n USB support +CONFIG_CARL9170 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CARL9170_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CARL9170_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_CARL9170_HWRNG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Qualcomm Technologies 802.11ax chipset support +CONFIG_ATH11K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH11K_AHB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_ATH11K_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATH11K_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_ATH11K_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH11K_SPECTRAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATH11K_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Atheros/Qualcomm devices >> Wilocity 60g WiFi card wil6210 support +CONFIG_WIL6210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WIL6210_ISR_COR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WIL6210_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WIL6210_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices +CONFIG_WLAN_VENDOR_BROADCOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B43LEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_BRCMSMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BRCM_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BRCMDBG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_BRCMDBG flag + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx wireless support (mac80211 stack) +CONFIG_B43 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_B43_SDIO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_B43_PHY_G policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43_PHY_N policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43_PHY_LP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43_PHY_HT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx wireless support (mac80211 stack) >> Supported bus types +CONFIG_B43_BUSES_BCMA_AND_SSB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43_BUSES_BCMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_B43_BUSES_SSB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom 43xx-legacy data transfer mode +CONFIG_B43LEGACY_DMA_AND_PIO_MODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_B43LEGACY_DMA_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_B43LEGACY_PIO_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Broadcom devices >> Broadcom FullMAC WLAN driver +CONFIG_BRCMFMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BRCMFMAC_SDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BRCMFMAC_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BRCMFMAC_PCIE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices +CONFIG_WLAN_VENDOR_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPW2100_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2100_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_LIBIPW_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_IWL4965 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IWL3945 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel PRO/Wireless 2200BG and 2915ABG Network Connection +CONFIG_IPW2200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPW2200_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2200_RADIOTAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2200_PROMISCUOUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2200_QOS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IPW2200_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) +CONFIG_IWLWIFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IWLDVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IWLMVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> Intel Wireless WiFi Next Gen AGN - Wireless-N/Advanced-N/Ultimate-N (iwlwifi) >> Debugging Options +CONFIG_IWLWIFI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_IWLWIFI_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IWLWIFI_DEVICE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intel devices >> iwl3945 / iwl4965 Debugging Options +CONFIG_IWLEGACY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_IWLEGACY_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices +CONFIG_WLAN_VENDOR_INTERSIL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> Hermes chipset 802.11b support (Orinoco/Prism2/Symbol) +CONFIG_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HERMES_PRISM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_HERMES_CACHE_FW_ON_INIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PLX_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TMD_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NORTEL_HERMES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PCMCIA_HERMES policy<{'amd64': 'm'}> +CONFIG_PCMCIA_SPECTRUM policy<{'amd64': 'm'}> +CONFIG_ORINOCO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> IEEE 802.11 for Host AP (Prism2/2.5/3 and WEP/TKIP/CCMP) +CONFIG_HOSTAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HOSTAP_FIRMWARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HOSTAP_FIRMWARE_NVRAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HOSTAP_PLX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HOSTAP_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HOSTAP_CS policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Intersil devices >> Softmac Prism54 support +CONFIG_P54_COMMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_P54_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_P54_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_P54_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_P54_SPI_DEFAULT_EEPROM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices +CONFIG_WLAN_VENDOR_MARVELL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LIBERTAS_THINFIRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIBERTAS_THINFIRM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_LIBERTAS_THINFIRM_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MWL8K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices >> Marvell 8xxx Libertas WLAN driver support +CONFIG_LIBERTAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIBERTAS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIBERTAS_CS policy<{'amd64': 'm'}> +CONFIG_LIBERTAS_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIBERTAS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIBERTAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_LIBERTAS_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Marvell devices >> Marvell WiFi-Ex Driver +CONFIG_MWIFIEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MWIFIEX_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MWIFIEX_PCIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MWIFIEX_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> MediaTek devices +CONFIG_WLAN_VENDOR_MEDIATEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MT7601U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT76x0U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT76x0E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT76x2E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT76x2U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7603E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7615E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7622_WMAC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MT7663U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7663S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7915E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MT7921E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support +CONFIG_RT2X00 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2400PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2500PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT61PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2500USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT73USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2X00_LIB_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RT2X00_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support >> Ralink rt27xx/rt28xx/rt30xx (PCI/PCIe/PCMCIA) support +CONFIG_RT2800PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2800PCI_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800PCI_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800PCI_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800PCI_RT3290 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Ralink driver support >> Ralink rt27xx/rt28xx/rt30xx (USB) support +CONFIG_RT2800USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RT2800USB_RT33XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800USB_RT35XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800USB_RT3573 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800USB_RT53XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800USB_RT55XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RT2800USB_UNKNOWN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices +CONFIG_WLAN_VENDOR_REALTEK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTL8180 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8187 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8XXXU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8XXXU_UNTESTED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek 802.11ac wireless chips support +CONFIG_RTW88 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW88_8822BE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW88_8822CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW88_8723DE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW88_8821CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW88_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTW88_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek 802.11ax wireless chips support +CONFIG_RTW89 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW89_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW89_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW89_8852AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTW89_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTW89_DEBUGMSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTW89_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Realtek devices >> Realtek rtlwifi family of devices +CONFIG_RTL_CARDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192CE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192SE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192DE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8723AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8723BE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8188EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192EE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8821AE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192CU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTLWIFI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Redpine Signals Inc 91x WLAN driver support +CONFIG_RSI_91X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RSI_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RSI_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RSI_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RSI_COEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless LAN >> Texas Instrument devices +CONFIG_WLAN_VENDOR_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_WL1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WL1251_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WL1251_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WL12XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WL18XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLCORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLCORE_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WLCORE_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WILINK_PLATFORM_DATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Network device support >> Wireless WAN + +# Menu: Device Drivers >> Network device support >> Wireless WAN >> WWAN Driver Core +CONFIG_WWAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_WWAN_HWSIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MHI_WWAN_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MHI_WWAN_MBIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RPMSG_WWAN_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IOSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Non-Transparent Bridge support +CONFIG_NTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NTB_MSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NTB_AMD policy<{'amd64': 'n'}> +CONFIG_NTB_IDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_INTEL policy<{'amd64': 'm'}> +CONFIG_NTB_EPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_SWITCHTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_PINGPONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_TOOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_PERF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NTB_MSI_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_NTB_TRANSPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support +CONFIG_INTERCONNECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_INTERCONNECT_QCOM_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SC7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SC8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SM8350 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_SAMSUNG policy<{'armhf': 'n'}> +CONFIG_INTERCONNECT_EXYNOS policy<{'armhf': '-'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support >> Qualcomm Network-on-Chip interconnect drivers +CONFIG_INTERCONNECT_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_INTERCONNECT_QCOM_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_MSM8939 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_MSM8974 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_OSM_L3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_QCS404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_QCOM_SDM660 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> On-Chip Interconnect management support >> i.MX interconnect drivers +CONFIG_INTERCONNECT_IMX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_IMX8MM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_IMX8MN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_INTERCONNECT_IMX8MQ policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support +CONFIG_PCCARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CARDBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support >> 16-bit PCMCIA support +CONFIG_PCMCIA policy<{'amd64': 'm', 'arm64': 'n', 'armhf': 'n', 'ppc64el': '-'}> +CONFIG_PCMCIA_LOAD_CIS policy<{'amd64': 'y'}> +CONFIG_PD6729 policy<{'amd64': 'm'}> +CONFIG_I82092 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> PCCard (PCMCIA/CardBus) support >> CardBus yenta-compatible bridge support +CONFIG_YENTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> +CONFIG_YENTA_O2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_YENTA_RICOH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_YENTA_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_YENTA_ENE_TUNE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_YENTA_TOSHIBA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': '-'}> + +# Menu: Device Drivers >> PCI support +CONFIG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCIE_PTM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_MSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_QUIRKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PCI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCI_REALLOC_ENABLE_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PCI_PF_STUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XEN_PCIDEV_FRONTEND policy<{'amd64': 'm'}> +CONFIG_PCI_IOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_PRI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PCI_PASID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PCI_P2PDMA policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +CONFIG_PCI_HYPERV policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_PCIEPORTBUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_PCIE policy<{'amd64': 'y', 'arm64': 'y', 'riscv64': 'y', 's390x': 'y', 'armhf': '-', 'ppc64el': '-'}> +# +CONFIG_PCI_P2PDMA flag +CONFIG_PCIEPORTBUS mark note +CONFIG_HOTPLUG_PCI_PCIE mark note + +# Menu: Device Drivers >> PCI support >> Default ASPM policy +CONFIG_PCIEASPM_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCIEASPM_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM_POWER_SUPERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIEASPM_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_PCIEASPM_DEFAULT note + +# Menu: Device Drivers >> PCI support >> PCI Endpoint + +# Menu: Device Drivers >> PCI support >> PCI Endpoint >> PCI Endpoint Support +CONFIG_PCI_ENDPOINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_ENDPOINT_CONFIGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_EPF_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCI_EPF_NTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI Express Advanced Error Reporting support +CONFIG_PCIEAER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y', 's390x': 'y', 'ppc64el': '-'}> +CONFIG_PCIEAER_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': 'n', 'ppc64el': '-'}> +CONFIG_PCIE_ECRC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': 'n', 'ppc64el': '-'}> +CONFIG_PCIE_DPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y', 's390x': 'y', 'ppc64el': '-'}> +CONFIG_PCIE_EDR policy<{'amd64': 'y', 'arm64': 'y'}> +# +CONFIG_PCIEAER_INJECT flag + +# Menu: Device Drivers >> PCI support >> PCI Express hierarchy optimization setting +CONFIG_PCIE_BUS_TUNE_OFF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCIE_BUS_SAFE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIE_BUS_PEER2PEER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers +CONFIG_PCI_MVEBU policy<{'armhf': 'y'}> +CONFIG_PCI_AARDVARK policy<{'arm64': 'y'}> +CONFIG_PCIE_XILINX_NWL policy<{'arm64': 'y'}> +CONFIG_PCI_FTPCI100 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCI_IXP4XX policy<{'armhf': '-'}> +CONFIG_PCI_TEGRA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_RCAR_GEN2 policy<{'armhf': 'y'}> +CONFIG_PCIE_RCAR_HOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_RCAR_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HOST_GENERIC policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCIE_XILINX policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCIE_XILINX_CPM policy<{'arm64': 'y'}> +CONFIG_PCI_XGENE policy<{'arm64': 'y'}> +CONFIG_PCI_XGENE_MSI policy<{'arm64': 'y'}> +CONFIG_PCI_V3_SEMI policy<{'armhf': 'y'}> +CONFIG_PCIE_IPROC_PLATFORM policy<{'arm64': 'm'}> +CONFIG_PCIE_IPROC_MSI policy<{'arm64': 'y'}> +CONFIG_PCIE_ALTERA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ALTERA_MSI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HOST_THUNDER_PEM policy<{'arm64': 'y'}> +CONFIG_PCI_HOST_THUNDER_ECAM policy<{'arm64': 'y'}> +CONFIG_PCIE_ROCKCHIP_HOST policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PCIE_ROCKCHIP_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_MEDIATEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_MEDIATEK_GEN3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VMD policy<{'amd64': 'm'}> +CONFIG_PCIE_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PCI_HYPERV_INTERFACE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_PCIE_MICROCHIP_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCIE_HISI_ERR policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> Cadence PCIe controllers support +CONFIG_PCIE_CADENCE_PLAT_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCIE_CADENCE_PLAT_EP policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCI_J721E_HOST policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PCI_J721E_EP policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> DesignWare PCI Core Support +CONFIG_PCI_DRA7XX_HOST policy<{'armhf': 'm'}> +CONFIG_PCI_DRA7XX_EP policy<{'armhf': 'm'}> +CONFIG_PCIE_DW_PLAT_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCIE_DW_PLAT_EP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCI_EXYNOS policy<{'armhf': 'n'}> +CONFIG_PCI_IMX6 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_KEYSTONE_HOST policy<{'arm64': 'y'}> +CONFIG_PCI_KEYSTONE_EP policy<{'arm64': 'y'}> +CONFIG_PCI_LAYERSCAPE policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_PCI_LAYERSCAPE_EP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_HISI policy<{'arm64': 'y'}> +CONFIG_PCIE_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ARMADA_8K policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_ROCKCHIP_DW_HOST policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCIE_KEEMBAY_HOST policy<{'arm64': 'y'}> +CONFIG_PCIE_KEEMBAY_EP policy<{'arm64': 'y'}> +CONFIG_PCIE_KIRIN policy<{'arm64': 'y'}> +CONFIG_PCIE_HISI_STB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PCI_MESON policy<{'amd64': 'n', 'arm64': 'm', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PCIE_TEGRA194_HOST policy<{'arm64': 'm'}> +CONFIG_PCIE_TEGRA194_EP policy<{'arm64': 'm'}> +CONFIG_PCIE_VISCONTI_HOST policy<{'arm64': 'y'}> +CONFIG_PCIE_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PCIE_UNIPHIER_EP policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PCIE_AL policy<{'arm64': 'y'}> +CONFIG_PCIE_FU740 policy<{'riscv64': 'y'}> +# +CONFIG_PCI_MESON note + +# Menu: Device Drivers >> PCI support >> PCI controller drivers >> Mobiveil PCIe Core Support +CONFIG_PCIE_MOBIVEIL_PLAT policy<{'arm64': 'n'}> +CONFIG_PCIE_LAYERSCAPE_GEN4 policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> PCI support >> PCI switch controller drivers +CONFIG_PCI_SW_SWITCHTEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> PCI support >> Support for PCI Hotplug +CONFIG_HOTPLUG_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_PCI_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_HOTPLUG_PCI_ACPI_IBM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y', 'armhf': '-'}> +CONFIG_HOTPLUG_PCI_CPCI_ZT5550 policy<{'amd64': 'm'}> +CONFIG_HOTPLUG_PCI_CPCI_GENERIC policy<{'amd64': 'm'}> +CONFIG_HOTPLUG_PCI_SHPC policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'n', 'armhf': '-'}> +CONFIG_HOTPLUG_PCI_POWERNV policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_RPA policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_RPA_DLPAR policy<{'ppc64el': 'm'}> +CONFIG_HOTPLUG_PCI_S390 policy<{'s390x': 'y'}> +# +CONFIG_HOTPLUG_PCI_SHPC note + +# Menu: Device Drivers >> PHY Subsystem +CONFIG_GENERIC_PHY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PHY_XGENE policy<{'arm64': 'y'}> +CONFIG_USB_LGM_PHY policy<{'amd64': 'm'}> +CONFIG_PHY_CAN_TRANSCEIVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PHY_SUN4I_USB policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_PHY_SUN6I_MIPI_DPHY policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_PHY_SUN9I_USB policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_PHY_SUN50I_USB3 policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_PHY_MESON8B_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_GXL_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_G12A_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_G12A_USB3_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MESON_AXG_PCIE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PHY_MESON_AXG_MIPI_DPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_BCM_SR_USB policy<{'arm64': 'm'}> +CONFIG_BCM_KONA_USB2_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PHY_BCM_NS_USB2 policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_NS_USB3 policy<{'arm64': 'm'}> +CONFIG_PHY_NS2_PCIE policy<{'arm64': 'y'}> +CONFIG_PHY_NS2_USB_DRD policy<{'arm64': 'm'}> +CONFIG_PHY_BRCM_SATA policy<{'arm64': 'y'}> +CONFIG_PHY_BRCM_USB policy<{'arm64': 'm'}> +CONFIG_PHY_BCM_SR_PCIE policy<{'arm64': 'm'}> +CONFIG_PHY_CADENCE_TORRENT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_CADENCE_DPHY policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_CADENCE_SIERRA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_CADENCE_SALVO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_FSL_IMX8MQ_USB policy<{'arm64': 'm'}> +CONFIG_PHY_MIXEL_MIPI_DPHY policy<{'arm64': 'm'}> +CONFIG_PHY_HI6220_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HI3660_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HI3670_USB policy<{'arm64': 'm'}> +CONFIG_PHY_HISTB_COMBPHY policy<{'arm64': 'm'}> +CONFIG_PHY_HISI_INNO_USB2 policy<{'arm64': 'm'}> +CONFIG_PHY_HIX5HD2_SATA policy<{'armhf': 'm'}> +CONFIG_ARMADA375_USBCLUSTER_PHY policy<{'armhf': 'y'}> +CONFIG_PHY_BERLIN_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_BERLIN_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A3700_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A3700_UTMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_A38X_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_CP110_COMPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MVEBU_CP110_UTMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_PXA_28NM_HSIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PHY_PXA_28NM_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PHY_MTK_TPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_UFS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_XSPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_MTK_MIPI_DSI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_SPARX5_SERDES policy<{'amd64': '-', 'arm64': 'm', 'armhf': '-', 'ppc64el': '-'}> +CONFIG_PHY_CPCAP_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_MAPPHONE_MDM6600 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_OCELOT_SERDES policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_QCOM_APQ8064_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ4019_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ806X_SATA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_PCIE2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_QMP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_QUSB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_HS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_HSIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PHY_QCOM_USB_HS_28NM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_USB_SS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_QCOM_IPQ806X_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_RCAR_GEN3_USB3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_DP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_DPHY_RX0 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_EMMC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_PCIE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_TYPEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_ROCKCHIP_USB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_EXYNOS_DP_VIDEO policy<{'armhf': 'n'}> +CONFIG_PHY_EXYNOS_MIPI_VIDEO policy<{'armhf': 'n'}> +CONFIG_PHY_EXYNOS_PCIE policy<{'armhf': 'n'}> +CONFIG_PHY_SAMSUNG_UFS policy<{'armhf': 'n'}> +CONFIG_PHY_SAMSUNG_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PHY_EXYNOS5250_SATA policy<{'armhf': '-'}> +CONFIG_PHY_UNIPHIER_USB2 policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PHY_UNIPHIER_PCIE policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PHY_UNIPHIER_AHCI policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PHY_TEGRA_XUSB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PHY_TEGRA194_P2U policy<{'arm64': 'm'}> +CONFIG_PHY_DM816X_USB policy<{'armhf': 'm'}> +CONFIG_PHY_AM654_SERDES policy<{'arm64': 'm'}> +CONFIG_PHY_J721E_WIZ policy<{'arm64': 'm'}> +CONFIG_OMAP_CONTROL_PHY policy<{'armhf': 'm'}> +CONFIG_OMAP_USB2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TI_PIPE3 policy<{'armhf': 'm'}> +CONFIG_PHY_TUSB1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TWL4030_USB policy<{'armhf': 'm'}> +CONFIG_PHY_INTEL_KEEMBAY_EMMC policy<{'arm64': 'm'}> +CONFIG_PHY_INTEL_KEEMBAY_USB policy<{'arm64': 'm'}> +CONFIG_PHY_INTEL_LGM_EMMC policy<{'amd64': 'm'}> +CONFIG_PHY_XILINX_ZYNQMP policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> PPS support +CONFIG_PPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PPS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_KTIMER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PPS_CLIENT_LDISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PPS_CLIENT_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PPS_CLIENT_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +# +CONFIG_PPS_CLIENT_KTIMER flag +CONFIG_PPS flag + +# Menu: Device Drivers >> PTP clock support + +# Menu: Device Drivers >> PTP clock support >> PTP clock support +CONFIG_PTP_1588_CLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_DTE policy<{'arm64': 'm'}> +CONFIG_PTP_1588_CLOCK_QORIQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_DP83640_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_INES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_KVM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_PTP_1588_CLOCK_IDT82P33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PTP_1588_CLOCK_IDTCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PTP_1588_CLOCK_VMW policy<{'amd64': 'm'}> +CONFIG_PTP_1588_CLOCK_OCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Parallel port support +CONFIG_PARPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PARPORT_AX88796 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARPORT_1284 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Parallel port support >> PC-style hardware +CONFIG_PARPORT_PC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARPORT_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PARPORT_PC_FIFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PARPORT_PC_SUPERIO policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PARPORT_PC_PCMCIA policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Performance monitor support +CONFIG_ARM_CCI_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCI400_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCI5xx_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CCN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_CMN policy<{'arm64': 'm'}> +CONFIG_ARM_PMU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SMMU_V3_PMU policy<{'arm64': 'm'}> +CONFIG_ARM_DSU_PMU policy<{'arm64': 'm'}> +CONFIG_FSL_IMX8_DDR_PMU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_L2_PMU policy<{'arm64': 'y'}> +CONFIG_QCOM_L3_PMU policy<{'arm64': 'y'}> +CONFIG_THUNDERX2_PMU policy<{'arm64': 'm'}> +CONFIG_XGENE_PMU policy<{'arm64': 'y'}> +CONFIG_ARM_SPE_PMU policy<{'arm64': 'm'}> +CONFIG_ARM_DMC620_PMU policy<{'arm64': 'm'}> +CONFIG_HISI_PMU policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Pin controllers +CONFIG_PINCTRL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PINMUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCONF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DEBUG_PINCTRL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PINCTRL_AS3722 policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_AXP209 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_AMD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PINCTRL_BM1880 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_MCP23S08 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PINCTRL_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_SINGLE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_SX150X policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_STMFX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_PALMAS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_ZYNQMP policy<{'arm64': 'm'}> +CONFIG_PINCTRL_RK805 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_OCELOT policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_MICROCHIP_SGPIO policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PINCTRL_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_PINCTRL_ASPEED_G6 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_BCM2835 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IPROC_GPIO policy<{'arm64': 'y'}> +CONFIG_PINCTRL_NS2_MUX policy<{'arm64': 'y'}> +CONFIG_PINCTRL_AS370 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_BERLIN_BG4CT policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX50 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX51 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX6Q policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX6SL policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX6SLL policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX6SX policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX6UL policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX7D policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX7ULP policy<{'armhf': 'y'}> +CONFIG_PINCTRL_IMX8MM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX8MN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX8MP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX8MQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_IMX8QM policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8QXP policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8DXL policy<{'arm64': 'y'}> +CONFIG_PINCTRL_IMX8ULP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_VF610 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_BAYTRAIL policy<{'amd64': 'y'}> +CONFIG_PINCTRL_CHERRYVIEW policy<{'amd64': 'y'}> +CONFIG_PINCTRL_LYNXPOINT policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ALDERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_BROXTON policy<{'amd64': 'm'}> +CONFIG_PINCTRL_CANNONLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_CEDARFORK policy<{'amd64': 'm'}> +CONFIG_PINCTRL_DENVERTON policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ELKHARTLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_EMMITSBURG policy<{'amd64': 'm'}> +CONFIG_PINCTRL_GEMINILAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_ICELAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_JASPERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_LAKEFIELD policy<{'amd64': 'm'}> +CONFIG_PINCTRL_LEWISBURG policy<{'amd64': 'm'}> +CONFIG_PINCTRL_SUNRISEPOINT policy<{'amd64': 'm'}> +CONFIG_PINCTRL_TIGERLAKE policy<{'amd64': 'm'}> +CONFIG_PINCTRL_NPCM7XX policy<{'armhf': 'y'}> +CONFIG_PINCTRL_QCOM_SPMI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QCOM_SSBI_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_LPASS_LPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_EXYNOS policy<{'armhf': 'y'}> +CONFIG_PINCTRL_EXYNOS_ARM policy<{'armhf': 'y'}> +CONFIG_PINCTRL_SPRD_SC9860 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_SUN4I_A10 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN5I policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN6I_A31 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN6I_A31_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_A23 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_A33 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_A83T policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_A83T_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_A23_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_H3 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_H3_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN8I_V3S policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN9I_A80 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN9I_A80_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_A64 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_A64_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_A100 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_A100_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_H5 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_H6 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_H6_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_H616 policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_SUN50I_H616_R policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_PINCTRL_TI_IODELAY policy<{'armhf': 'y'}> +CONFIG_PINCTRL_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PINCTRL_TMPV7700 policy<{'arm64': 'y'}> +# +CONFIG_PINCTRL_CHERRYVIEW mark note + +# Menu: Device Drivers >> Pin controllers >> Actions Semi OWL pinctrl driver +CONFIG_PINCTRL_OWL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_S500 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_S700 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_S900 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> Amlogic SoC pinctrl drivers +CONFIG_PINCTRL_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_MESON8 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MESON8B policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MESON_GXBB policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_GXL policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_AXG policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_G12A policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MESON_A1 policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> MediaTek pinctrl drivers +CONFIG_EINT_MTK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_MT2701 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT7623 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT7629 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT8135 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT8127 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_MT2712 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6765 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6779 policy<{'arm64': 'm'}> +CONFIG_PINCTRL_MT6797 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT7622 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8167 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8173 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8183 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8192 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8195 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8365 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT8516 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_MT6397 policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_PINCTRL_MT8135 flag +CONFIG_PINCTRL_MT8127 flag + +# Menu: Device Drivers >> Pin controllers >> Qualcomm core pin controller driver +CONFIG_PINCTRL_MSM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_APQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_APQ8084 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ8064 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ8074 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_IPQ6018 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8226 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8960 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MDM9607 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MDM9615 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8X74 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8916 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8953 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8976 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8994 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_MSM8998 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QCS404 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_QDF2XXX policy<{'arm64': 'm'}> +CONFIG_PINCTRL_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SC7280 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SC8180X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDM660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SDX55 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM6115 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM6125 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8150 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PINCTRL_SM8350 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Pin controllers >> Ralink pinctrl drivers + +# Menu: Device Drivers >> Pin controllers >> Renesas pinctrl drivers +CONFIG_PINCTRL_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_PINCTRL_PFC_EMEV2 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77995 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7794 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77990 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7779 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7790 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77950 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77951 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7778 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7793 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7791 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77965 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77960 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77961 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7792 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A77980 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77970 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A7740 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZA1 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZA2 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_RZG2L policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A77470 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7745 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7742 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7743 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A7744 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_PFC_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_PINCTRL_RZN1 policy<{'armhf': 'y'}> +CONFIG_PINCTRL_PFC_SH73A0 policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Pin controllers >> UniPhier SoC pinctrl drivers +CONFIG_PINCTRL_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_PINCTRL_UNIPHIER_LD4 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_PRO4 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_SLD8 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_PRO5 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_PXS2 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_LD6B policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_LD11 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_LD20 policy<{'armhf': '-'}> +CONFIG_PINCTRL_UNIPHIER_PXS3 policy<{'armhf': '-'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware +CONFIG_CHROME_PLATFORMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_CHROMEOS_LAPTOP policy<{'amd64': 'm'}> +CONFIG_CHROMEOS_PSTORE policy<{'amd64': 'm'}> +CONFIG_CHROMEOS_TBMC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CROS_KBD_LED_BACKLIGHT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CROS_EC_CHARDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_LIGHTBAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_VBC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_SENSORHUB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_TYPEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_USBPD_LOGGER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_USBPD_NOTIFY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware >> ChromeOS Embedded Controller +CONFIG_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_RPMSG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_ISHTP policy<{'amd64': 'm'}> +CONFIG_CROS_EC_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CROS_EC_LPC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Platform support for Chrome hardware >> ChromeOS Embedded Controller >> ChromeOS Wilco Embedded Controller +CONFIG_WILCO_EC policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_DEBUGFS policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_EVENTS policy<{'amd64': 'm'}> +CONFIG_WILCO_EC_TELEMETRY policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Platform support for Goldfish virtual devices +CONFIG_GOLDFISH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_GOLDFISH_PIPE policy<{'riscv64': 'm'}> + +# Menu: Device Drivers >> Platform support for Mellanox hardware +CONFIG_MELLANOX_PLATFORM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_MLXREG_HOTPLUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MLXREG_IO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_MLXBF_TMFIFO policy<{'arm64': 'm'}> +CONFIG_MLXBF_BOOTCTL policy<{'arm64': 'm'}> +CONFIG_MLXBF_PMC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Platform support for OLPC XO 1.75 hardware + +# Menu: Device Drivers >> Plug and Play support +CONFIG_PNP policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_PNP_DEBUG_MESSAGES policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Device Drivers >> Power supply class support +CONFIG_POWER_SUPPLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_POWER_SUPPLY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_POWER_SUPPLY_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PDA_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GENERIC_ADC_BATTERY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAX8925_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WM831X_BACKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WM831X_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WM8350_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TEST_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_ADP5061 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_CW2015 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_DS2760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_DS2780 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_DS2781 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_DS2782 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MANAGER_SBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_BQ27XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_BQ27XXX_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_BQ27XXX_HDQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_BATTERY_DA9030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_DA9150 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AXP20X_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AXP288_CHARGER policy<{'amd64': 'm'}> +CONFIG_AXP288_FUEL_GAUGE policy<{'amd64': 'm'}> +CONFIG_BATTERY_MAX17040 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_MAX17042 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_MAX1721X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_TWL4030_MADC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_RX51 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_CPCAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_ISP1704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MAX8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_LP8727 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_MANAGER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CHARGER_LT3651 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_LTC4162L policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_DETECTOR_MAX14656 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MP2629 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_QCOM_SMBB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_BQ2415X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ24190 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ24257 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ24735 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ2515X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ25890 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ25980 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_BQ256XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_SMB347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_TPS65217 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': '-'}> +CONFIG_BATTERY_GAUGE_LTC2941 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_GOLDFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BATTERY_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_RT9455 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_CROS_USBPD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_CROS_PCHG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_CHARGER_SC2731 policy<{'arm64': 'm'}> +CONFIG_FUEL_GAUGE_SC27XX policy<{'arm64': 'm'}> +CONFIG_CHARGER_UCS1002 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CHARGER_BD99954 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_CHARGER_WILCO policy<{'amd64': 'm'}> +CONFIG_RN5T618_POWER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BATTERY_ACER_A500 policy<{'armhf': 'm'}> +CONFIG_BATTERY_SURFACE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_CHARGER_SURFACE policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Device Drivers >> Pulse-Width Modulation (PWM) Support +CONFIG_PWM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PWM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PWM_ATMEL_HLCDC_PWM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_ATMEL_TCB policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_BCM_IPROC policy<{'arm64': 'm'}> +CONFIG_PWM_BCM2835 policy<{'arm64': 'm'}> +CONFIG_PWM_BERLIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_PWM_CRC policy<{'amd64': 'y'}> +CONFIG_PWM_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_DWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PWM_FSL_FTM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_HIBVT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_IMX1 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_IMX27 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_IMX_TPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_IQS620A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_PWM_LP3943 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_LPSS_PCI policy<{'amd64': 'y'}> +CONFIG_PWM_LPSS_PLATFORM policy<{'amd64': 'y'}> +CONFIG_PWM_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_MTK_DISP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PWM_OMAP_DMTIMER policy<{'armhf': 'm'}> +CONFIG_PWM_PCA9685 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PWM_RASPBERRYPI_POE policy<{'arm64': 'm'}> +CONFIG_PWM_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_RENESAS_TPU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_SAMSUNG policy<{'armhf': 'n'}> +CONFIG_PWM_SIFIVE policy<{'riscv64': 'm'}> +CONFIG_PWM_SL28CPLD policy<{'arm64': 'm'}> +CONFIG_PWM_SPRD policy<{'arm64': 'm'}> +CONFIG_PWM_STMPE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PWM_SUN4I policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_PWM_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_TIECAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_TIEHRPWM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PWM_TWL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PWM_TWL_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PWM_VISCONTI policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> RapidIO support +CONFIG_RAPIDIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_RAPIDIO_TSI721 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': '-', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RAPIDIO_DISC_TIMEOUT policy<{'amd64': '30', 'arm64': '30', 'armhf': '30', 'ppc64el': '30', 'riscv64': '30'}> +CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_RAPIDIO_DMA_ENGINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RAPIDIO_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_RAPIDIO_CHMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RAPIDIO_MPORT_CDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> RapidIO support >> Enumeration method +CONFIG_RAPIDIO_ENUM_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> RapidIO support >> RapidIO Switch drivers +CONFIG_RAPIDIO_CPS_XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RAPIDIO_CPS_GEN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RAPIDIO_RXS_GEN3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Real Time Clock +CONFIG_RTC_CLASS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_HCTOSYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_HCTOSYS_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'ppc64el': '"rtc0"', 'riscv64': '"rtc0"'}> +CONFIG_RTC_SYSTOHC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_SYSTOHC_DEVICE policy<{'amd64': '"rtc0"', 'arm64': '"rtc0"', 'armhf': '"rtc0"', 'ppc64el': '"rtc0"', 'riscv64': '"rtc0"'}> +CONFIG_RTC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_NVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_INTF_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_INTF_PROC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_INTF_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_INTF_DEV_UIE_EMUL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_DRV_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_DRV_88PM860X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_88PM80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ABB5ZES3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ABEOZ9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ABX80X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1307 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1307_CENTURY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_DS1374 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1374_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_DS1672 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_HYM8563 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX6900 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RS5C372 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ISL1208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ISL12022 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_ISL12026 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_X1205 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF85063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF85363 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF8563 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF8583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M41T80 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M41T80_WDT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_BD70528 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_BQ32K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_TWL4030 policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RC5T619 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_S35390A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_FM3130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RX8010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RX8581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RX8025 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_EM3027 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RV3028 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RV3032 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RV8803 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_S5M policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_SD3078 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M41T93 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M41T94 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1343 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1347 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1390 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX6916 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_R9701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RX4581 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RS5C348 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MAX6902 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCF2123 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MCP795 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS3232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS3232_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_PCF2127 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RV3029C2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RV3029_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_RX6110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_CMOS policy<{'amd64': 'y', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_RTC_DRV_DS1286 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1511 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1553 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1685_FAMILY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS1742 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DS2404 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_DA9063 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_EFI policy<{'arm64': 'y', 'armhf': 'y', 'riscv64': 'm'}> +CONFIG_RTC_DRV_STK17TA8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M48T86 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M48T35 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_M48T59 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MSM6242 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_BQ4802 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RP5C01 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_V3020 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_SC27XX policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_OPAL policy<{'ppc64el': 'y'}> +CONFIG_RTC_DRV_ZYNQMP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_CROS_EC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_NTXEC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_IMXDI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_FSL_FTM_ALARM policy<{'arm64': 'm'}> +CONFIG_RTC_DRV_MESON policy<{'armhf': 'm'}> +CONFIG_RTC_DRV_MESON_VRTC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_OMAP policy<{'armhf': 'y'}> +CONFIG_RTC_DRV_S3C policy<{'armhf': 'n'}> +CONFIG_RTC_DRV_SH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_PL030 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_PL031 policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_RTC_DRV_GENERIC policy<{'ppc64el': 'y'}> +CONFIG_RTC_DRV_SUN6I policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_RTC_DRV_MV policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RTC_DRV_ARMADA38X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_CADENCE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_FTRTC010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MC13XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_PM8XXX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_MXC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_MXC_V2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_SNVS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_IMX_SC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_MT2712 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_MT7622 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RTC_DRV_XGENE policy<{'arm64': 'y'}> +CONFIG_RTC_DRV_R7301 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_RTD119X policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RTC_DRV_ASPEED policy<{'armhf': 'm'}> +CONFIG_RTC_DRV_HID_SENSOR_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTC_DRV_GOLDFISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y'}> +CONFIG_RTC_DRV_WILCO_EC policy<{'amd64': 'm'}> +# +CONFIG_RTC_DRV_TEST flag +CONFIG_RTC_DRV_CMOS note +CONFIG_RTC_DRV_EFI note +CONFIG_RTC_DRV_TWL4030 note + +# Menu: Device Drivers >> Real Time Clock >> Subtype +CONFIG_RTC_DRV_DS1685 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RTC_DRV_DS1689 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_DRV_DS17285 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_DRV_DS17485 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_RTC_DRV_DS17885 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Reliability, Availability and Serviceability (RAS) features +CONFIG_RAS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RAS_CEC policy<{'amd64': 'y'}> +CONFIG_RAS_CEC_DEBUG policy<{'amd64': 'n'}> + +# Menu: Device Drivers >> Remote Controller support +CONFIG_RC_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_RC_MAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_LIRC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Remote Controller support >> Remote Controller devices +CONFIG_RC_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RC_ATI_REMOTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_ENE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_HIX5HD2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_IMON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_IMON_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_MCEUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_ITE_CIR policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_FINTEK policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_MESON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_MESON_TX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IR_NUVOTON policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_IR_REDRAT3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SPI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_STREAMZAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_WINBOND_CIR policy<{'amd64': 'm'}> +CONFIG_IR_IGORPLUGUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_IGUANA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_TTUSBIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_RX51 policy<{'armhf': 'm'}> +CONFIG_RC_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_GPIO_CIR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_GPIO_TX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_PWM_TX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SUNXI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_IR_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SERIAL_TRANSMITTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RC_XBOX_DVD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_TOY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Remote Controller support >> Remote Controller devices >> Hardware decoder + +# Menu: Device Drivers >> Remote Controller support >> Remote controller decoders +CONFIG_RC_DECODERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IR_NEC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_RC5_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_RC6_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_JVC_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SONY_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SANYO_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_SHARP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_MCE_KBD_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_XMP_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_IMON_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IR_RCMM_DECODER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Remoteproc drivers + +# Menu: Device Drivers >> Remoteproc drivers >> Support for Remote Processor subsystem +CONFIG_REMOTEPROC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_REMOTEPROC_CDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_IMX_REMOTEPROC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_SCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_OMAP_REMOTEPROC policy<{'armhf': 'm'}> +CONFIG_OMAP_REMOTEPROC_WATCHDOG policy<{'armhf': 'n'}> +CONFIG_WKUP_M3_RPROC policy<{'armhf-generic': 'm'}> +CONFIG_PRU_REMOTEPROC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_ADSP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_MSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_PAS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_Q6V5_WCSS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SYSMON policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_WCNSS_PIL policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_TI_K3_DSP_REMOTEPROC policy<{'arm64': 'm'}> +CONFIG_TI_K3_R5_REMOTEPROC policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Reset Controller Support +CONFIG_RESET_CONTROLLER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_RESET_A10SR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_BERLIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_RESET_BRCMSTB_RESCAL policy<{'arm64': 'y', 'riscv64': '-'}> +CONFIG_RESET_IMX7 policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_MCHP_SPARX5 policy<{'arm64': 'y'}> +CONFIG_RESET_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_MESON_AUDIO_ARB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_NPCM policy<{'armhf': 'y'}> +CONFIG_RESET_QCOM_AOSS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_RESET_QCOM_PDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_RASPBERRYPI policy<{'arm64': 'm'}> +CONFIG_RESET_RZG2L_USBPHY_CTRL policy<{'arm64': 'm'}> +CONFIG_RESET_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RESET_SIMPLE policy<{'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_RESET_SOCFPGA policy<{'armhf': 'y'}> +CONFIG_RESET_SUNXI policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_RESET_TI_SCI policy<{'arm64': 'm'}> +CONFIG_RESET_TI_SYSCON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RESET_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_RESET_UNIPHIER_GLUE policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_COMMON_RESET_HI3660 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_COMMON_RESET_HI6220 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Rpmsg drivers +CONFIG_RPMSG_CHAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RPMSG_NS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RPMSG_MTK_SCP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_QCOM_GLINK_RPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_RPMSG_QCOM_GLINK_SMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_QCOM_SMD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RPMSG_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> + +# Menu: Device Drivers >> SCSI device support +CONFIG_RAID_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support +CONFIG_SCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCSI_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_SD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_ST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BLK_DEV_SR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_SG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CHR_DEV_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_ENCLOSURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_CONSTANTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCSI_LOGGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCSI_SCAN_ASYNC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_BSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SCSI flag +CONFIG_CHR_DEV_SG note +CONFIG_BLK_DEV_SD mark note +CONFIG_BLK_DEV_SR mark note + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI Device Handlers +CONFIG_SCSI_DH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCSI_DH_RDAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_HP_SW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_EMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_DH_ALUA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI Transports +CONFIG_SCSI_SPI_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_FC_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_ISCSI_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_LIBSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_SAS_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SCSI_SAS_HOST_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCSI_SRP_ATTRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers +CONFIG_SCSI_LOWLEVEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ISCSI_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ISCSI_BOOT_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_CXGB3_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_CXGB4_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_BNX2X_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BE2ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CXLFLASH policy<{'ppc64el': 'm'}> +CONFIG_BLK_DEV_3W_XXXX_RAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_HPSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_9XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_3W_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_ACARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_AHA1740 policy<{'amd64': 'm'}> +CONFIG_SCSI_AACRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_AIC94XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_AIC94XX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SCSI_HISI_SAS policy<{'arm64': 'm'}> +CONFIG_SCSI_HISI_SAS_PCI policy<{'arm64': 'm'}> +CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE policy<{'arm64': 'n'}> +CONFIG_SCSI_MVSAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_MVSAS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SCSI_MVSAS_TASKLET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SCSI_MVUMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_DPT_I2O policy<{'amd64': 'm'}> +CONFIG_SCSI_ADVANSYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_ARCMSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_ESAS2R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_NEWGEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MEGARAID_MM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_MEGARAID_MAILBOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEGARAID_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MEGARAID_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_MPT3SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_MPT2SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128', 's390x': '128'}> +CONFIG_SCSI_MPT3SAS_MAX_SGE policy<{'amd64': '128', 'arm64': '128', 'armhf': '128', 'ppc64el': '128', 'riscv64': '128', 's390x': '128'}> +CONFIG_SCSI_MPT2SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_MPI3MR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_SMARTPQI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_TI_J721E policy<{'arm64': 'm'}> +CONFIG_SCSI_HPTIOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_BUSLOGIC policy<{'amd64': 'm'}> +CONFIG_SCSI_FLASHPOINT policy<{'amd64': 'y'}> +CONFIG_SCSI_MYRB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_MYRS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VMWARE_PVSCSI policy<{'amd64': 'm'}> +CONFIG_XEN_SCSI_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_HYPERV_STORAGE policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_LIBFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_SNIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_SNIC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SCSI_DMX3191D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_FDOMAIN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SCSI_ISCI policy<{'amd64': 'm'}> +CONFIG_SCSI_IPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_IBMVSCSI policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVSCSIS policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC policy<{'ppc64el': 'm'}> +CONFIG_SCSI_IBMVFC_TRACE policy<{'ppc64el': 'y'}> +CONFIG_SCSI_INITIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_INIA100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_PPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_IMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_IZIP_EPP16 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SCSI_IZIP_SLOW_CTR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SCSI_STEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_IPR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SCSI_IPR_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SCSI_IPR_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SCSI_QLOGIC_1280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_QLA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_TCM_QLA2XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TCM_QLA2XXX_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SCSI_QLA_ISCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QEDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_LPFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_SCSI_LPFC_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SCSI_EFCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_SIM710 policy<{'amd64': 'm'}> +CONFIG_SCSI_DC395x policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_AM53C974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_NSP32 policy<{'armhf': 'm'}> +CONFIG_SCSI_WD719X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ZFCP policy<{'s390x': 'm'}> +CONFIG_SCSI_PMCRAID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_PM8001 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_BFA_FC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCSI_CHELSIO_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +# +CONFIG_SCSI_IPR_TRACE note +CONFIG_SCSI_IPR_DUMP note +CONFIG_SCSI_VIRTIO note + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Adaptec AIC79xx U320 support +CONFIG_SCSI_AIC79XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_AIC79XX_CMDS_PER_DEVICE policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32'}> +CONFIG_AIC79XX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'ppc64el': '5000', 'riscv64': '5000'}> +CONFIG_AIC79XX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_AIC79XX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_AIC79XX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Adaptec AIC7xxx Fast -> U160 support +CONFIG_SCSI_AIC7XXX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_AIC7XXX_CMDS_PER_DEVICE policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8'}> +CONFIG_AIC7XXX_RESET_DELAY_MS policy<{'amd64': '5000', 'arm64': '5000', 'armhf': '5000', 'ppc64el': '5000', 'riscv64': '5000'}> +CONFIG_AIC7XXX_DEBUG_ENABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_AIC7XXX_DEBUG_MASK policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_AIC7XXX_REG_PRETTY_PRINT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> LibFCoE module +CONFIG_LIBFCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FCOE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FCOE_FNIC policy<{'amd64': 'm'}> +CONFIG_QEDF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> PCMCIA SCSI adapter support +CONFIG_SCSI_LOWLEVEL_PCMCIA policy<{'amd64': 'y'}> +CONFIG_PCMCIA_AHA152X policy<{'amd64': 'm'}> +CONFIG_PCMCIA_FDOMAIN policy<{'amd64': 'm'}> +CONFIG_PCMCIA_QLOGIC policy<{'amd64': 'm'}> +CONFIG_PCMCIA_SYM53C500 policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> SYM53C8XX Version 2 SCSI support +CONFIG_SCSI_SYM53C8XX_2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1'}> +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS policy<{'amd64': '16', 'arm64': '16', 'armhf': '16', 'ppc64el': '16', 'riscv64': '16'}> +CONFIG_SCSI_SYM53C8XX_MAX_TAGS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64', 'riscv64': '64'}> +CONFIG_SCSI_SYM53C8XX_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Universal Flash Storage Controller Driver Core +CONFIG_SCSI_UFSHCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SCSI_UFSHCD_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_DWC_TC_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_BSG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SCSI_UFS_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SCSI_UFS_HPB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Universal Flash Storage Controller Driver Core >> Platform bus based UFS Controller support +CONFIG_SCSI_UFSHCD_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_CDNS_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_DWC_TC_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SCSI_UFS_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SCSI_UFS_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SCSI_UFS_HISI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SCSI_UFS_EXYNOS policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> SCSI device support >> SCSI device support >> SCSI low-level drivers >> Zalon SCSI support + +# Menu: Device Drivers >> SLIMbus support +CONFIG_SLIMBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SLIM_QCOM_CTRL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SLIM_QCOM_NGD_CTRL policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers +CONFIG_OWL_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_GRF policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ROCKCHIP_IODOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ROCKCHIP_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SIFIVE_L2 policy<{'riscv64': 'y'}> +CONFIG_ARCH_TEGRA_2x_SOC policy<{'armhf': 'y'}> +CONFIG_ARCH_TEGRA_3x_SOC policy<{'armhf': 'y'}> +CONFIG_ARCH_TEGRA_114_SOC policy<{'armhf': 'y'}> +CONFIG_ARCH_TEGRA_124_SOC policy<{'armhf': 'y'}> +CONFIG_ARCH_TEGRA_132_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_210_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_186_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_194_SOC policy<{'arm64': 'y'}> +CONFIG_ARCH_TEGRA_234_SOC policy<{'arm64': 'y'}> +CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER policy<{'armhf': 'y'}> +CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> ASPEED SoC drivers +CONFIG_ASPEED_LPC_CTRL policy<{'armhf': 'm'}> +CONFIG_ASPEED_LPC_SNOOP policy<{'armhf': 'm'}> +CONFIG_ASPEED_P2A_CTRL policy<{'armhf': 'm'}> +CONFIG_ASPEED_SOCINFO policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Amlogic SoC drivers +CONFIG_MESON_CANVAS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_CLK_MEASURE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_GX_SOCINFO policy<{'arm64': 'y'}> +CONFIG_MESON_GX_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_EE_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_SECURE_PM_DOMAINS policy<{'arm64-generic': 'y'}> +CONFIG_MESON_MX_SOCINFO policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Broadcom SoC drivers +CONFIG_BCM2835_POWER policy<{'arm64': 'y'}> +CONFIG_RASPBERRYPI_POWER policy<{'arm64': 'y'}> +CONFIG_SOC_BRCMSTB policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_BCM_PMB policy<{'arm64': 'y'}> +CONFIG_BRCMSTB_PM policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Enable LiteX SoC Builder specific drivers +CONFIG_LITEX_SOC_CONTROLLER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> IXP4xx SoC drivers + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> MediaTek SoC drivers +CONFIG_MTK_CMDQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_DEVAPC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_INFRACFG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_PMIC_WRAP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MTK_SCPSYS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_SCPSYS_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MTK_MMSYS policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> NXP/Freescale QorIQ SoC drivers +CONFIG_QUICC_ENGINE policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_FSL_MC_DPIO policy<{'arm64': 'm'}> +CONFIG_DPAA2_CONSOLE policy<{'arm64': 'm'}> +CONFIG_FSL_RCPM policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> NXP/Freescale QorIQ SoC drivers >> QorIQ DPAA1 framework support +CONFIG_FSL_DPAA policy<{'arm64': 'y'}> +CONFIG_FSL_DPAA_CHECKING policy<{'arm64': 'y'}> +CONFIG_FSL_BMAN_TEST policy<{'arm64': 'm'}> +CONFIG_FSL_BMAN_TEST_API policy<{'arm64': 'n'}> +CONFIG_FSL_QMAN_TEST policy<{'arm64': 'n'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Qualcomm SoC drivers +CONFIG_QCOM_CPR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_AOSS_QMP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_COMMAND_DB policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_GENI_SE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_GSBI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_LLCC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_OCMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_RMTFS_MEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_RPMH policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_RPMHPD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_RPMPD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_WCNSS_CTRL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_APR policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Qualcomm SoC drivers >> Qualcomm Shared Memory Manager (SMEM) +CONFIG_QCOM_SMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMP2P policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SMSM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SOCINFO policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Renesas SoC driver support +CONFIG_SOC_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_EMEV2 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7794 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7779 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7790 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7778 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7793 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7791 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7792 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7740 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A73A4 policy<{'armhf': 'n'}> +CONFIG_ARCH_R7S72100 policy<{'armhf': 'y'}> +CONFIG_ARCH_R7S9210 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A77470 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7745 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7742 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7743 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A7744 policy<{'armhf': 'y'}> +CONFIG_ARCH_R9A06G032 policy<{'armhf': 'y'}> +CONFIG_ARCH_SH73A0 policy<{'armhf': 'y'}> +CONFIG_ARCH_R8A77995 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77990 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77950 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77951 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77965 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77960 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77961 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77980 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A77970 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R8A774B1 policy<{'arm64': 'y'}> +CONFIG_ARCH_R9A07G044 policy<{'arm64': 'y'}> +CONFIG_RST_RCAR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SYSC_RCAR policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SYSC_R8A77995 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7794 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77990 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7779 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7790 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7795 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7791 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77965 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77960 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77961 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A7792 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77980 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A77970 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A779A0 policy<{'arm64': 'y'}> +CONFIG_SYSC_RMOBILE policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A77470 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7745 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7742 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A7743 policy<{'armhf': 'y'}> +CONFIG_SYSC_R8A774C0 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774E1 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774A1 policy<{'arm64': 'y'}> +CONFIG_SYSC_R8A774B1 policy<{'arm64': 'y'}> +# +CONFIG_ARCH_R8A73A4 flag + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Samsung SoC driver support +CONFIG_EXYNOS_ASV_ARM policy<{'armhf': '-'}> +CONFIG_EXYNOS_CHIPID policy<{'armhf': 'n'}> +CONFIG_EXYNOS_PMU policy<{'armhf': 'y'}> +CONFIG_EXYNOS_PMU_ARM_DRIVERS policy<{'armhf': 'y'}> +CONFIG_EXYNOS_PM_DOMAINS policy<{'armhf': 'y'}> +CONFIG_EXYNOS_REGULATOR_COUPLER policy<{'armhf': '-'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> TI SOC drivers support +CONFIG_SOC_TI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_WKUP_M3_IPC policy<{'armhf-generic': 'n'}> +CONFIG_TI_SCI_PM_DOMAINS policy<{'arm64': 'm'}> +CONFIG_TI_K3_RINGACC policy<{'arm64': 'y'}> +CONFIG_TI_PRUSS policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_SOC_TI flag + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> Xilinx SoC drivers +CONFIG_ZYNQMP_POWER policy<{'arm64': 'y'}> +CONFIG_ZYNQMP_PM_DOMAINS policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> SOC (System On Chip) specific Drivers >> i.MX SoC drivers +CONFIG_IMX_GPCV2_PM_DOMAINS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SOC_IMX8M policy<{'arm64': 'y', 'armhf': 'n'}> + +# Menu: Device Drivers >> SPI support +CONFIG_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SPI_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SPI_MEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SPI_ALTERA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_ALTERA_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_ALTERA_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_ARMADA_3700 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_AXI_SPI_ENGINE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_BCM2835 policy<{'arm64': 'm'}> +CONFIG_SPI_BCM2835AUX policy<{'arm64': 'm'}> +CONFIG_SPI_BCM_QSPI policy<{'arm64': 'm'}> +CONFIG_SPI_BITBANG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_BUTTERFLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_CADENCE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_CADENCE_QUADSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_DLN2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_FSI policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_FSL_LPSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_FSL_QUADSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_HISI_KUNPENG policy<{'arm64': 'm'}> +CONFIG_SPI_HISI_SFC_V3XX policy<{'arm64': 'm'}> +CONFIG_SPI_NXP_FLEXSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_IMX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_LM70_LLP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_FSL_SPI policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SPI_FSL_DSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MESON_SPICC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MESON_SPIFC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MT65XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_MTK_NOR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_NPCM_FIU policy<{'armhf': 'm'}> +CONFIG_SPI_NPCM_PSPI policy<{'armhf': 'm'}> +CONFIG_SPI_LANTIQ_SSC policy<{'amd64': 'm'}> +CONFIG_SPI_OC_TINY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_OMAP24XX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPI_TI_QSPI policy<{'armhf': 'm'}> +CONFIG_SPI_ORION policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_PL022 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_PXA2XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_ROCKCHIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SPI_ROCKCHIP_SFC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_RPCIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_RSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QCOM_QSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QUP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_QCOM_GENI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_S3C64XX policy<{'armhf': 'n'}> +CONFIG_SPI_SC18IS602 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_SH_MSIOF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SH_HSPI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SIFIVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y', 's390x': '-'}> +CONFIG_SPI_SLAVE_MT27XX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_SPRD policy<{'arm64': 'm'}> +CONFIG_SPI_SPRD_ADI policy<{'arm64': 'm'}> +CONFIG_SPI_SUN4I policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_SPI_SUN6I policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_SPI_SYNQUACER policy<{'arm64': 'm'}> +CONFIG_SPI_MXIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_TEGRA210_QUAD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_TEGRA114 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_TEGRA20_SFLASH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_TEGRA20_SLINK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPI_THUNDERX policy<{'arm64': 'm'}> +CONFIG_SPI_XCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_XILINX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SPI_XLP policy<{'arm64': 'm'}> +CONFIG_SPI_ZYNQMP_GQSPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_AMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_SPIDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_LOOPBACK_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_TLE62X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_SLAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SPI_SLAVE_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_SLAVE_SYSTEM_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> SPI support >> DesignWare SPI controller core support +CONFIG_SPI_DESIGNWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SPI_DW_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SPI_DW_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPI_DW_MMIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> SPMI support +CONFIG_SPMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SPMI_MSM_PMIC_ARB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SPMI_HISI3670 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) +CONFIG_ATA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ATA_VERBOSE_ERROR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATA_FORCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATA_ACPI policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SATA_ZPODD policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_SATA_PMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SATA_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_MOBILE_LPM_POLICY policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3', 'riscv64': '3'}> +CONFIG_SATA_AHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_AHCI_BRCM policy<{'arm64': 'm'}> +CONFIG_AHCI_DM816 policy<{'armhf': 'm'}> +CONFIG_AHCI_IMX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_AHCI_CEVA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AHCI_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AHCI_MVEBU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AHCI_SUNXI policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_AHCI_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AHCI_XGENE policy<{'arm64': 'm'}> +CONFIG_AHCI_QORIQ policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SATA_AHCI_SEATTLE policy<{'arm64': 'm'}> +CONFIG_SATA_INIC162X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_ACARD_AHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_SIL24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_SATA_AHCI_PLATFORM note + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) +CONFIG_ATA_SFF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PDC_ADMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_QSTOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_SX4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_CMD640_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_MPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_NS87410 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_OPTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_PCMCIA policy<{'amd64': 'm'}> +CONFIG_PATA_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_OF_PLATFORM policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_PATA_RZ1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Serial ATA and Parallel ATA drivers (libata) >> ATA SFF support (for legacy IDE and PATA) >> ATA BMDMA support +CONFIG_ATA_BMDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ATA_PIIX policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_DWC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_DWC_OLD_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SATA_HIGHBANK policy<{'armhf': 'y'}> +CONFIG_SATA_MV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_PROMISE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SATA_SIL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_SIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_SVW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_ULI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_SATA_VITESSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_ALI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_AMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_ARTOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_ATP867X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_CMD64X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_CYPRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_EFAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_HPT366 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_HPT37X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_HPT3X2N policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_HPT3X3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_HPT3X3_DMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PATA_IMX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_PATA_IT8213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_IT821X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_JMICRON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_MARVELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_NETCELL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_NINJA32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_NS87415 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_OLDPIIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_OPTIDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_PDC2027X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_PDC_OLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_RADISYS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_RDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_SCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_SERVERWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_SIL680 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_SIS policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_TOSHIBA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_TRIFLEX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_WINBOND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PATA_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ATA_GENERIC policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_SATA_HIGHBANK mark note +CONFIG_PATA_HPT3X3_DMA note +CONFIG_ATA_PIIX mark note + +# Menu: Device Drivers >> Sonics Silicon Backplane support +CONFIG_SSB_PCIHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> +CONFIG_SSB_PCMCIAHOST policy<{'amd64': 'n'}> +CONFIG_SSB_SDIOHOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SSB_DRIVER_PCICORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SSB_DRIVER_GPIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': '-'}> + +# Menu: Device Drivers >> Sony MemoryStick card support +CONFIG_MEMSTICK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MEMSTICK_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MEMSTICK_UNSAFE_RESUME policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_MSPRO_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MS_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEMSTICK_TIFM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEMSTICK_JMICRON_38X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEMSTICK_R592 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEMSTICK_REALTEK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MEMSTICK_REALTEK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support +CONFIG_SOUND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SOUND_OSS_CORE_PRECLAIM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_SOUND note +CONFIG_SOUND_OSS_CORE_PRECLAIM mark note note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture +CONFIG_SND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_OSSEMUL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_MIXER_OSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_PCM_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SND_PCM_TIMER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HRTIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_MAX_CARDS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32'}> +CONFIG_SND_SUPPORT_OLD_API policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_VERBOSE_PROCFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_VERBOSE_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SND_HDA_PREALLOC_SIZE policy<{'amd64': '0', 'arm64': '64', 'armhf': '64', 'ppc64el': '64', 'riscv64': '64'}> +CONFIG_SND_INTEL_BYT_PREFER_SOF policy<{'amd64': 'y'}> +CONFIG_SND_XEN_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_SND_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_SND note +CONFIG_SND_PCM_OSS note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support +CONFIG_SND_SOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADI_AXI_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADI_AXI_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AMD_ACP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AMD_ACP3x policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RV_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RENOIR policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_RENOIR_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_ACP5x policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_PS policy<{'amd64': 'm'}> +CONFIG_SND_SOC_AMD_PS_MACH policy<{'amd64': 'm'}> +CONFIG_SND_BCM2835_SOC_I2S policy<{'arm64': 'm'}> +CONFIG_SND_BCM63XX_I2S_WHISTLER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_DESIGNWARE_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_DESIGNWARE_PCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_I2S_HI6210_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_KIRKWOOD_SOC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_INTEL_KEEMBAY policy<{'arm64': 'm'}> +CONFIG_SND_SOC_MT2701 policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SND_SOC_MT6797 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6797_MT6351 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MTK_BTCVSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MT8192 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT8195 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SPRD policy<{'arm64': 'm'}> +CONFIG_SND_SOC_SPRD_MCDT policy<{'arm64': 'm'}> +CONFIG_SND_SOC_XILINX_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_XILINX_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_XTFPGA_I2S policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SIMPLE_CARD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AUDIO_GRAPH_CARD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_SND_SOC note +CONFIG_SND_SOC_AMD_RENOIR mark note +CONFIG_SND_SOC_AMD_RENOIR_MACH mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Amlogic platforms +CONFIG_SND_MESON_AIU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_FRDDR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TODDR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TDMIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_TDMOUT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SOUND_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SPDIFOUT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_SPDIFIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_AXG_PDM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_GX_SOUND_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_G12A_TOACODEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_MESON_G12A_TOHDMITX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MESON_T9015 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Mediatek MT8173 chip +CONFIG_SND_SOC_MT8173 policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for QCOM platforms +CONFIG_SND_SOC_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_STORM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_APQ8016_SBC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_QDSP6 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MSM8996 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SDM845 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SM8250 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_SC7180 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Rockchip +CONFIG_SND_SOC_ROCKCHIP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_I2S policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_PDM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_SPDIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_MAX98090 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_ROCKCHIP_RT5645 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RK3288_HDMI_ANALOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RK3399_GRU_SOUND policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for Samsung +CONFIG_SND_SOC_SAMSUNG policy<{'armhf': 'n'}> +CONFIG_SND_SAMSUNG_PCM policy<{'armhf': '-'}> +CONFIG_SND_SAMSUNG_SPDIF policy<{'armhf': '-'}> +CONFIG_SND_SOC_SAMSUNG_SMDK_WM8994 policy<{'armhf': '-'}> +CONFIG_SND_SOC_SAMSUNG_SMDK_SPDIF policy<{'armhf': '-'}> +CONFIG_SND_SOC_SMDK_WM8994_PCM policy<{'armhf': '-'}> +CONFIG_SND_SOC_SNOW policy<{'armhf': '-'}> +CONFIG_SND_SOC_ODROID policy<{'armhf': '-'}> +CONFIG_SND_SOC_ARNDALE policy<{'armhf': '-'}> +CONFIG_SND_SOC_SAMSUNG_TM2_WM5110 policy<{'armhf': '-'}> +CONFIG_SND_SOC_SAMSUNG_ARIES_WM8994 policy<{'armhf': '-'}> +CONFIG_SND_SOC_SAMSUNG_MIDAS_WM1811 policy<{'armhf': '-'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> ASoC support for UniPhier +CONFIG_SND_SOC_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_SND_SOC_UNIPHIER_AIO policy<{'armhf': '-'}> +CONFIG_SND_SOC_UNIPHIER_LD11 policy<{'armhf': '-'}> +CONFIG_SND_SOC_UNIPHIER_PXS2 policy<{'armhf': '-'}> +CONFIG_SND_SOC_UNIPHIER_EVEA_CODEC policy<{'armhf': '-'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Allwinner SoC Audio support +CONFIG_SND_SUN4I_CODEC policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_SND_SUN8I_CODEC policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_SND_SUN8I_CODEC_ANALOG policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_SND_SUN50I_CODEC_ANALOG policy<{'arm64': 'm'}> +CONFIG_SND_SUN4I_I2S policy<{'arm64': 'n', 'armhf': '-'}> +CONFIG_SND_SUN4I_SPDIF policy<{'arm64': 'n', 'armhf': '-'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Imagination Technologies designs +CONFIG_SND_SOC_IMG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_SOC_IMG_I2S_IN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMG_I2S_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMG_PARALLEL_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMG_SPDIF_IN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMG_SPDIF_OUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Texas Instruments SoCs +CONFIG_SND_SOC_DAVINCI_MCASP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_OMAP_DMIC policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP_MCBSP policy<{'armhf': 'm'}> +CONFIG_SND_SOC_OMAP_MCPDM policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_NOKIA_RX51 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP3_PANDORA policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP3_TWL4030 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_OMAP_ABE_TWL6040 policy<{'armhf-generic': 'm'}> +CONFIG_SND_SOC_J721E_EVM policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Audio support for Texas Instruments SoCs >> DM365 codec select + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> CODEC drivers +CONFIG_SND_SOC_AC97_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU1372_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU1372_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU1761_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU1761_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU7002 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU7118_HW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ADAU7118_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4104 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4118 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4458 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4554 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4613 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK4642 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK5386 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_AK5558 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ALC5623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_BD28623 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_BT_SCO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CROS_EC_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_CS35L32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS35L33 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS35L34 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS35L35 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS35L36 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42L42 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42L51_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42L52 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42L56 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42L73 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4234 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4265 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4270 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4271_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4271_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS42XX8_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS43130 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS4349 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CS53L30 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_CX2072X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_DA7213 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_DMIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ES7134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ES7241 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ES8316 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ES8328_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ES8328_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_GTM601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ICS43432 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_INNO_RK3036 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_LOCHNAGAR_SC policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98088 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98357A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98504 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX9867 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98927 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98373_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98373_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX98390 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX9860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MSM8916_WCD_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM1681 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM1789_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM179X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM179X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM186X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM186X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM3060_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM3060_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM3168A_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM3168A_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM5102A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM512x_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_PCM512x_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RK3328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RK817 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT1308_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT1316_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT5616 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT5631 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT5640 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT5659 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT5682_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT700_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT711_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT711_SDCA_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT715_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_RT715_SDCA_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SDW_MOCKUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SGTL5000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SIMPLE_AMPLIFIER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SIMPLE_MUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SSM2305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SSM2518 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SSM2602_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SSM2602_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SSM4567 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_STA32X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_STA350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_STI_SAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS2552 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS2562 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS2764 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS2770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS5086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS571X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS5720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TAS6424 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TDA7419 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TFA9879 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TFA989X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC23_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC31XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC32X4_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC32X4_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC3X_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320AIC3X_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TLV320ADCX140 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TS3A227E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TSCS42XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TSCS454 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_UDA1334 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WCD9335 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WCD934X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WCD938X_SDW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8510 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8523 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8524 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8580 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8728 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8731 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8741 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8753 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8776 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8782 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8804_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8804_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8903 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8904 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8960 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8962 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8974 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8978 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WM8985 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_WSA881X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_ZL38060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MAX9759 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MT6351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MT6358 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MT6359 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6359_ACCDET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_MT6660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_NAU8315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_NAU8540 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_NAU8810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_NAU8822 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_NAU8824 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_TPA6130A2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_LPASS_WSA_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_LPASS_VA_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_LPASS_RX_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_LPASS_TX_MACRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_SND_SOC_SGTL5000 flag + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Intel ASoC SST drivers +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_CATPT policy<{'amd64': 'm'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI policy<{'amd64': 'm'}> +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKYLAKE policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_APL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CNL policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CFL policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CML_H policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_CML_LP policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC policy<{'amd64': 'y'}> +# +CONFIG_SND_SOC_INTEL_SKYLAKE mark note +CONFIG_SND_SOC_INTEL_CNL mark note +CONFIG_SND_SOC_INTEL_CFL mark note +CONFIG_SND_SOC_INTEL_CML_H mark note +CONFIG_SND_SOC_INTEL_CML_LP mark note +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Intel ASoC SST drivers >> Intel Machine drivers +CONFIG_SND_SOC_INTEL_MACH policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES policy<{'amd64': 'y'}> +CONFIG_SND_SOC_INTEL_HASWELL_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BROADWELL_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH policy<{'amd64': 'n'}> +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH policy<{'amd64': 'm'}> +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH policy<{'amd64': 'm'}> +# +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES mark note +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> STMicroelectronics STM32 SOC audio support + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs +CONFIG_SND_SOC_FSL_ASRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_SAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_MQS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_AUDMIX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_SSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_SPDIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_ESAI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_MICFIL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_EASRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_XCVR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_FSL_AUD2HTX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_FSL_RPMSG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_IMX_AUDMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'armhf': 'y', 'riscv64': 'm'}> +# +CONFIG_SND_SOC_FSL_SSI flag +CONFIG_SND_SOC_IMX_AUDMUX flag + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs >> SoC Audio for Freescale PowerPC CPUs + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale CPUs >> SoC Audio for Freescale i.MX CPUs +CONFIG_SND_IMX_SOC policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_SND_SOC_EUKREA_TLV320 policy<{'armhf': 'm'}> +CONFIG_SND_SOC_IMX_ES8328 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_IMX_SGTL5000 policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_SND_SOC_IMX_SPDIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_FSL_ASOC_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_IMX_AUDMIX policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_IMX_HDMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_IMX_RPMSG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_IMX_CARD policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for Freescale MXS CPUs + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Atmel System-on-Chip +CONFIG_SND_ATMEL_SOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_MIKROE_PROTO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Intel PXA2xx chip + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio for the Tegra System-on-Chip +CONFIG_SND_SOC_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA20_AC97 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA20_DAS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA20_I2S policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA20_SPDIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA30_AHUB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA30_I2S policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA210_AHUB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA210_DMIC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA210_I2S policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA186_DSPK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA210_ADMAIF policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5640 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8753 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_WM8903 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_WM9712 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_TRIMSLICE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_ALC5632 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_MAX98090 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_RT5677 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_TEGRA_SGTL5000 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for Renesas SoCs +CONFIG_SND_SOC_SH4_FSI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_SOC_RZ policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for Ux500 platform + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> SoC Audio support for the Cirrus Logic EP93xx series + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support +CONFIG_SND_SOC_SOF_TOPLEVEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_SOC_SOF_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SOF_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SND_SOC_SOF_OF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SOC_SOF_DEBUG_PROBES policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL policy<{'arm64': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF developer options support +CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': '-', 'ppc64el': '-'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF developer options support >> SOF debugging features + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ALSA for SoC audio support >> Sound Open Firmware Support >> SOF support for Intel audio DSPs +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_BAYTRAIL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_BROADWELL policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_MERRIFIELD policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_APOLLOLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_GEMINILAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_CANNONLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_COFFEELAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_COMETLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ICELAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_JASPERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_TIGERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ELKHARTLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_ALDERLAKE policy<{'amd64': 'm'}> +CONFIG_SND_SOC_SOF_HDA_LINK policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC policy<{'amd64': 'y'}> +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE policy<{'amd64': 'm'}> +# +CONFIG_SND_SOC_SOF_HDA_LINK mark note +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC mark note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ARM sound devices +CONFIG_SND_ARM policy<{'armhf': 'y'}> +CONFIG_SND_ARMAACI policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Apple Onboard Audio driver + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Atmel devices (AT91) + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Debug +CONFIG_SND_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> FireWire sound devices +CONFIG_SND_FIREWIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_DICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_OXFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ISIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FIREWORKS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_BEBOB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FIREWIRE_DIGI00X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FIREWIRE_TASCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FIREWIRE_MOTU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FIREFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> GSC sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Generic sound devices +CONFIG_SND_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_PCSP policy<{'amd64': 'm'}> +CONFIG_SND_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ALOOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_VIRMIDI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MTPAV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MTS64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SERIAL_U16550 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MPU401 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_PORTMAN2X4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AC97_POWER_SAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_AC97_POWER_SAVE_DEFAULT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> HD-Audio +CONFIG_SND_HDA_INTEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SND_HDA_HWDEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDA_RECONFIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDA_INPUT_BEEP_MODE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_SND_HDA_PATCH_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDA_CODEC_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_ANALOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_SIGMATEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_VIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_HDMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CIRRUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CS8409 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CONEXANT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CA0110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_CA0132_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDA_CODEC_CMEDIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_CODEC_SI3054 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDA_POWER_SAVE_DEFAULT policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1'}> +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_SND_HDA_RECONFIG note +CONFIG_SND_HDA_POWER_SAVE_DEFAULT note + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> ISA sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> MIPS sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PCI sound devices +CONFIG_SND_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_AD1889 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ALS300 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ALS4000 policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_SND_ALI5451 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ASIHPI policy<{'amd64': 'm'}> +CONFIG_SND_ATIIXP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ATIIXP_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AU8810 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AU8820 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AU8830 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AW2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_AZT3328 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_BT87X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_BT87X_OVERCLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SND_CA0106 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_CMIPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_OXYGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_CS4281 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_CS46XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_CS46XX_NEW_DSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_CTXFI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_DARLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_GINA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_LAYLA20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_DARLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_GINA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_LAYLA24 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MONA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ECHO3G policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INDIGO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INDIGOIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INDIGODJ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INDIGOIOX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INDIGODJX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_EMU10K1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_EMU10K1X policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ENS1370 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ENS1371 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ES1938 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ES1968 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ES1968_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_ES1968_RADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_FM801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_FM801_TEA575X_BOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_HDSP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_HDSPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_ICE1712 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_ICE1724 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INTEL8X0 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_INTEL8X0M policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_KORG1212 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_LOLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_LX6464ES policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_MAESTRO3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_MAESTRO3_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y'}> +CONFIG_SND_MIXART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_NM256 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_PCXHR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_RIPTIDE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_RME32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_RME96 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_RME9652 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SONICVIBES policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_TRIDENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm'}> +CONFIG_SND_VIA82XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_VIA82XX_MODEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_VIRTUOSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_VX222 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_YMFPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PCMCIA sound devices +CONFIG_SND_PCMCIA policy<{'amd64': 'y'}> +CONFIG_SND_VXPOCKET policy<{'amd64': 'm'}> +CONFIG_SND_PDAUDIOCF policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> PowerPC sound devices +CONFIG_SND_PPC policy<{'ppc64el': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> SPI sound devices +CONFIG_SND_SPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> SUPERH sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Sequencer support +CONFIG_SND_SEQUENCER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SEQ_DUMMY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_SEQUENCER_OSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SND_SEQ_HRTIMER_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> Sparc sound devices + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> USB sound devices +CONFIG_SND_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_UA101 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_USX2Y policy<{'amd64': 'm', 'ppc64el': 'm'}> +CONFIG_SND_USB_CAIAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_CAIAQ_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_SND_USB_US122L policy<{'amd64': 'm'}> +CONFIG_SND_USB_6FIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_HIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_BCD2000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_POD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_PODHD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_TONEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SND_USB_VARIAX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Sound card support >> Advanced Linux Sound Architecture >> X86 sound devices +CONFIG_SND_X86 policy<{'amd64': 'y'}> +CONFIG_HDMI_LPE_AUDIO policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> SoundWire support +CONFIG_SOUNDWIRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SOUNDWIRE_INTEL policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_SOUNDWIRE_QCOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_SOUNDWIRE mark note + +# Menu: Device Drivers >> Staging drivers +CONFIG_STAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PRISM2_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8723BS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_R8712U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_R8188EU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTS5208 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VT6655 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VT6656 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_SM750 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_EMXX policy<{'arm64': 'm', 'armhf': 'y'}> +CONFIG_STAGING_BOARD policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_LTE_GDM724X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FIREWIRE_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FWTTY_MAX_TOTAL_PORTS policy<{'amd64': '64', 'arm64': '64', 'armhf': '64', 'ppc64el': '64', 'riscv64': '64'}> +CONFIG_FWTTY_MAX_CARD_PORTS policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32'}> +CONFIG_COMMON_CLK_XLNX_CLKWZRD policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n'}> +CONFIG_KS7010 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GREYBUS_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_AUDIO_APB_CODEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_BOOTROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_FIRMWARE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LIGHT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_POWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_VIBRATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_PI433 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_XIL_AXIS_FIFO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QLGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WFX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_STAGING flag + +# Menu: Device Drivers >> Staging drivers >> Broadcom VideoCore support +CONFIG_BCM_VIDEOCORE policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ policy<{'arm64': 'm'}> +CONFIG_VCHIQ_CDEV policy<{'arm64': 'y'}> +CONFIG_SND_BCM2835 policy<{'arm64': 'm'}> +CONFIG_VIDEO_BCM2835 policy<{'arm64': 'm'}> +CONFIG_BCM2835_VCHIQ_MMAL policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Fieldbus Device Support +CONFIG_FIELDBUS_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_HMS_ANYBUSS_BUS policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ARCX_ANYBUS_CONTROLLER policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HMS_PROFINET policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Greybus Bridged PHY Class drivers +CONFIG_GREYBUS_BRIDGED_PHY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_GREYBUS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Accelerometers +CONFIG_ADIS16203 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADIS16240 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Active energy metering IC +CONFIG_ADE7854 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADE7854_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADE7854_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Analog digital bi-direction converters +CONFIG_ADT7316 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADT7316_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ADT7316_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Analog to digital converters +CONFIG_AD7816 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD7280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Capacitance to digital converters +CONFIG_AD7746 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Direct Digital Synthesis +CONFIG_AD9832 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AD9834 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Network Analyzer, Impedance Converters +CONFIG_AD5933 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> IIO staging drivers >> Resolver to digital converters +CONFIG_AD2S1210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> MOST support +CONFIG_MOST_COMPONENTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_VIDEO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_DIM2 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MOST_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers +CONFIG_STAGING_MEDIA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIDEO_IMX_MEDIA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_MESON_VDEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_OMAP4 policy<{'armhf-generic': 'm'}> +CONFIG_VIDEO_ROCKCHIP_VDEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_SUNXI policy<{'arm64': 'y', 'armhf': '-'}> +CONFIG_VIDEO_SUNXI_CEDRUS policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_VIDEO_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_TEGRA_TPG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_VIDEO_IPU3_IMGU policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> AV7110 cards +CONFIG_DVB_SP8870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AV7110 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DVB_AV7110_OSD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_DVB_BUDGET_PATCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Enable support to Intel Atom ISP camera drivers +CONFIG_INTEL_ATOMISP policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Enable support to Intel Atom ISP camera drivers >> Intel Atom Image Signal Processor Driver + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Hantro VPU driver +CONFIG_VIDEO_HANTRO policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VIDEO_HANTRO_IMX8M policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_VIDEO_HANTRO_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> Zoran ZR36060 + +# Menu: Device Drivers >> Staging drivers >> Media staging drivers >> i.MX5/6/7/8 Media Sub devices +CONFIG_VIDEO_IMX_CSI policy<{'armhf': 'm'}> +CONFIG_VIDEO_IMX7_CSI policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> NV Tegra Embedded Controller SMBus Interface +CONFIG_MFD_NVEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_KEYBOARD_NVEC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_SERIO_NVEC_PS2 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVEC_POWER policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_NVEC_PAZ00 policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Support for rtllib wireless devices +CONFIG_RTLLIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTLLIB_CRYPTO_CCMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTLLIB_CRYPTO_TKIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTLLIB_CRYPTO_WEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_RTL8192E policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Staging drivers >> Support for small TFT LCD display modules +CONFIG_FB_TFT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_FB_TFT_AGM1264K_FL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_BD663474 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_HX8340BN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_HX8347D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_HX8353D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_HX8357D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9163 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9320 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9325 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9340 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9481 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ILI9486 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_PCD8544 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_RA8875 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_S6D02A1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_S6D1121 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SH1106 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SSD1289 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SSD1305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SSD1306 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SSD1331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SSD1351 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ST7735R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_ST7789V policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_TINYLCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_TLS8204 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_UC1611 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_UC1701 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_UPD161704 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_FB_TFT_SEPS525 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> TEE drivers +CONFIG_OPTEE policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AMDTEE policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> TI VLYNQ + +# Menu: Device Drivers >> Thermal drivers +CONFIG_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_THERMAL_NETLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_THERMAL_HWMON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_WRITABLE_TRIPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_GOV_FAIR_SHARE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_GOV_BANG_BANG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_GOV_USER_SPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_GOV_POWER_ALLOCATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_DEVFREQ_THERMAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_EMULATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_MMIO policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_HISI_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_SC_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX8MM_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_K3_THERMAL policy<{'arm64': 'm'}> +CONFIG_MAX77620_THERMAL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SUN8I_THERMAL policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_ROCKCHIP_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RCAR_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RCAR_GEN3_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_DOVE_THERMAL policy<{'armhf': 'm'}> +CONFIG_ARMADA_THERMAL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_DA9062_THERMAL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MTK_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_AMLOGIC_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_GENERIC_ADC_THERMAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SPRD_THERMAL policy<{'arm64': 'm'}> +CONFIG_KHADAS_MCU_FAN_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> APIs to parse thermal data out of device tree +CONFIG_THERMAL_OF policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_FREQ_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_IDLE_THERMAL policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_QORIQ_THERMAL policy<{'arm64': 'm'}> +CONFIG_UNIPHIER_THERMAL policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> + +# Menu: Device Drivers >> Thermal drivers >> Broadcom thermal drivers +CONFIG_BCM2711_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM2835_THERMAL policy<{'arm64': 'm'}> +CONFIG_BRCMSTB_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_NS_THERMAL policy<{'arm64': 'm'}> +CONFIG_BCM_SR_THERMAL policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Default Thermal governor +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> + +# Menu: Device Drivers >> Thermal drivers >> Intel thermal drivers +CONFIG_INTEL_POWERCLAMP policy<{'amd64': 'm'}> +CONFIG_X86_PKG_TEMP_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_SOC_DTS_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_BXT_PMIC_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_PCH_THERMAL policy<{'amd64': 'm'}> +CONFIG_INTEL_TCC_COOLING policy<{'amd64': 'm'}> +CONFIG_INTEL_MENLOW policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Intel thermal drivers >> ACPI INT340X thermal drivers +CONFIG_INT340X_THERMAL policy<{'amd64': 'm'}> +CONFIG_INT3406_THERMAL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> NVIDIA Tegra thermal drivers +CONFIG_TEGRA_SOCTHERM policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_TEGRA_BPMP_THERMAL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_TEGRA30_TSENSOR policy<{'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> Qualcomm thermal drivers +CONFIG_QCOM_TSENS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SPMI_ADC_TM5 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_SPMI_TEMP_ALARM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_LMH policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> Thermal drivers >> STMicroelectronics thermal drivers + +# Menu: Device Drivers >> Thermal drivers >> Samsung thermal drivers +CONFIG_EXYNOS_THERMAL policy<{'armhf': 'y'}> + +# Menu: Device Drivers >> Thermal drivers >> Texas Instruments thermal drivers + +# Menu: Device Drivers >> Thermal drivers >> Texas Instruments thermal drivers >> Texas Instruments SoCs temperature sensor driver +CONFIG_TI_SOC_THERMAL policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_TI_THERMAL policy<{'armhf': '-'}> +CONFIG_OMAP3_THERMAL policy<{'armhf': '-'}> +CONFIG_OMAP4_THERMAL policy<{'armhf': '-'}> +CONFIG_DRA752_THERMAL policy<{'armhf': '-'}> + +# Menu: Device Drivers >> USB support +CONFIG_USB_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_USB_LED_TRIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ULPI_BUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CONN_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_UHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ROLE_SWITCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ROLES_INTEL_XHCI policy<{'amd64': 'm'}> +# +CONFIG_USB_UHCI_HCD mark note flag + +# Menu: Device Drivers >> USB support >> ChipIdea Highspeed Dual Role Controller +CONFIG_USB_CHIPIDEA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CHIPIDEA_UDC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CHIPIDEA_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CHIPIDEA_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CHIPIDEA_MSM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CHIPIDEA_IMX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CHIPIDEA_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CHIPIDEA_TEGRA policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB +CONFIG_USB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ANNOUNCE_NEW_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_DEFAULT_PERSIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_FEW_INIT_RETRIES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_DYNAMIC_MINORS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_OTG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_USB_OTG_PRODUCTLIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_LEDS_TRIGGER_USBPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_AUTOSUSPEND_DELAY policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2'}> +CONFIG_USB_MON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_C67X00_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_BRCMSTB policy<{'arm64': 'm'}> +CONFIG_USB_OXU210HP_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_ISP116X_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_FOTG210_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MAX3421_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_FHCI_HCD policy<{'ppc64el': 'm'}> +CONFIG_FHCI_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_USB_U132_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SL811_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_SL811_HCD_ISO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_SL811_CS policy<{'amd64': 'm'}> +CONFIG_USB_R8A66597_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_RENESAS_USBHS_HCD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_HCD_BCMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_HCD_SSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_HCD_TEST_MODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_RENESAS_USBHS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_ACM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_WDM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_TMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MDC800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MICROTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CDNS_SUPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CDNSP_PCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_CDNSP_GADGET policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_USB_CDNSP_HOST policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_USB_MTU3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_MTU3_DEBUG policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_ISP1760 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_USS720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_EMI62 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_EMI26 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_ADUTUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_SEVSEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_LEGOTOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_LCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CYPRESS_CY7C63 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CYTHERM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_IDMOUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_FTDI_ELAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_APPLEDISPLAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_APPLE_MFI_FASTCHARGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_SISUSBVGA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_LD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_TRANCEVIBRATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_IOWARRIOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_EHSET_TEST_FIXTURE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_ISIGHTFW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_YUREX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_EZUSB_FX2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_HUB_USB251XB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_HSIC_USB3503 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_HSIC_USB4604 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_LINK_LAYER_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_CHAOSKEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_BRCM_USB_PINMAP policy<{'arm64': 'm'}> +# +CONFIG_USB_OTG note note note +CONFIG_USB_HCD_BCMA note +CONFIG_USB_HCD_SSB note + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Cadence USB3 Dual-Role Controller +CONFIG_USB_CDNS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CDNS3_GADGET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CDNS3_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CDNS3_PCI_WRAP policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_CDNS3_TI policy<{'arm64': 'm'}> +CONFIG_USB_CDNS3_IMX policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB2 DRD Core Support +CONFIG_USB_DWC2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_DWC2_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_DWC2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_DWC2_TRACK_MISSED_SOFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB2 DRD Core Support >> DWC2 Mode Selection +CONFIG_USB_DWC2_HOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_DWC2_DUAL_ROLE policy<{'armhf': 'n'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB3 DRD Core Support +CONFIG_USB_DWC3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_DWC3_ULPI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_DWC3_OMAP policy<{'armhf': 'm'}> +CONFIG_USB_DWC3_EXYNOS policy<{'armhf': 'n'}> +CONFIG_USB_DWC3_PCI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_USB_DWC3_HAPS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_DWC3_KEYSTONE policy<{'arm64': 'm'}> +CONFIG_USB_DWC3_MESON_G12A policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_DWC3_OF_SIMPLE policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_DWC3_QCOM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_DWC3_IMX8MP policy<{'arm64': 'm'}> +CONFIG_USB_DWC3_XILINX policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> DesignWare USB3 DRD Core Support >> DWC3 Mode Selection +CONFIG_USB_DWC3_HOST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_DWC3_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_DWC3_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> EHCI HCD (USB 2.0) support +CONFIG_USB_EHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_EHCI_ROOT_HUB_TT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_EHCI_TT_NEWSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_EHCI_FSL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_EHCI_HCD_NPCM7XX policy<{'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_OMAP policy<{'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_ORION policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_USB_EHCI_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_EHCI_HCD_PPC_OF policy<{'ppc64el': 'y'}> +CONFIG_USB_EHCI_EXYNOS policy<{'armhf': 'n'}> +CONFIG_USB_EHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_USB_EHCI_HCD_PLATFORM mark note flag +CONFIG_USB_EHCI_HCD mark note flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> ISP1760 Mode Selection +CONFIG_USB_ISP1760_HOST_ROLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_ISP1760_GADGET_ROLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_ISP1760_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller +CONFIG_USB_MUSB_HDRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MUSB_SUNXI policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_USB_MUSB_TUSB6010 policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_OMAP2PLUS policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_POLARFIRE_SOC policy<{'riscv64': 'm'}> +CONFIG_USB_MUSB_AM35X policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_DSPS policy<{'armhf': 'm'}> +CONFIG_USB_MUSB_MEDIATEK policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_USB_MUSB_HDRC note flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller >> Disable DMA (always use PIO) +CONFIG_MUSB_PIO_ONLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> Inventra Highspeed Dual Role Controller >> MUSB Mode Selection +CONFIG_USB_MUSB_HOST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_MUSB_GADGET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_MUSB_DUAL_ROLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> MTU3 Mode Selection +CONFIG_USB_MTU3_HOST policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_MTU3_GADGET policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_USB_MTU3_DUAL_ROLE policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> OHCI HCD (USB 1.1) support +CONFIG_USB_OHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_OHCI_HCD_OMAP3 policy<{'armhf-generic': 'm'}> +CONFIG_USB_OHCI_HCD_PPC_OF_BE policy<{'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PPC_OF_LE policy<{'ppc64el': 'n'}> +CONFIG_USB_OHCI_HCD_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_OHCI_EXYNOS policy<{'armhf': 'n'}> +CONFIG_USB_OHCI_HCD_PLATFORM policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +# +CONFIG_USB_OHCI_HCD marknote +CONFIG_USB_OHCI_HCD_PPC_OF_LE flag + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB DSL modem support +CONFIG_USB_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SPEEDTOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CXACRU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_UEAGLEATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_XUSBATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB Mass Storage support +CONFIG_USB_STORAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_STORAGE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_STORAGE_REALTEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REALTEK_AUTOPM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_USB_STORAGE_DATAFAB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_FREECOM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_ISD200 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_USBAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_SDDR09 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_SDDR55 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_JUMPSHOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_ALAUDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_ONETOUCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_KARMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_CYPRESS_ATACB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_STORAGE_ENE_UB6250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_UAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB Serial Converter support +CONFIG_USB_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_SERIAL_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_SERIAL_SIMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_AIRCABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_ARK3116 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_BELKIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_CH341 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_WHITEHEAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_DIGI_ACCELEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_CP210X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_CYPRESS_M8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_EMPEG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_FTDI_SIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_VISOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_IPAQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_IR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_EDGEPORT_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_F81232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_F8153X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_GARMIN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_IPW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_IUU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN_PDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_KEYSPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_KLSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_KOBIL_SCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_MCT_U232 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_METRO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_MOS7720 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_MOS7715_PARPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_SERIAL_MOS7840 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_MXUPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_NAVMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_PL2303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_OTI6858 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_QCAUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_QUALCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_SPCP8X5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_SAFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_SAFE_PADDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB_SERIAL_SIERRAWIRELESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_SYMBOL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_TI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_CYBERJACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_OPTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_OMNINET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_OPTICON policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_XSENS_MT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_WISHBONE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_SSU100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_QT2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_UPD78F0730 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_XR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SERIAL_DEBUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_USB_SERIAL_DEBUG note + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> USB/IP support +CONFIG_USBIP_CORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USBIP_VHCI_HCD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USBIP_VHCI_HC_PORTS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8'}> +CONFIG_USBIP_VHCI_NR_HCS policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1'}> +CONFIG_USBIP_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USBIP_VUDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USBIP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> USB support >> Support for Host-side USB >> xHCI HCD (USB 3.0) support +CONFIG_USB_XHCI_HCD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_XHCI_DBGCAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_XHCI_PCI_RENESAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_XHCI_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_XHCI_HISTB policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_MTK policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_MVEBU policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_XHCI_TEGRA policy<{'arm64': 'm', 'armhf': 'm'}> +# +CONFIG_USB_XHCI_HCD mark note flag +CONFIG_USB_XHCI_DBGCAP note + +# Menu: Device Drivers >> USB support >> USB Gadget Support +CONFIG_USB_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_GADGET_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_GADGET_DEBUG_FILES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_GADGET_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_GADGET_VBUS_DRAW policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2'}> +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2'}> +CONFIG_U_SERIAL_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget functions configurable through configfs +CONFIG_USB_CONFIGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CONFIGFS_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_ACM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_OBEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_NCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_ECM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_ECM_SUBSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_PHONET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_MASS_STORAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_LB_SS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_UAC2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_MIDI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_HID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_UVC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_PRINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_CONFIGFS_F_TCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations +CONFIG_USB_ZERO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_AUDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GADGET_UAC1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_GADGET_UAC1_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_ETH_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ETH_EEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_G_NCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GADGETFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MASS_STORAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GADGET_TARGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_SERIAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MIDI_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_PRINTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_CDC_COMPOSITE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_NOKIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_ACM_MS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_G_MULTI_RNDIS policy<{'armhf': '-'}> +CONFIG_USB_G_MULTI_CDC policy<{'armhf': '-'}> +CONFIG_USB_G_HID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_DBGP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_G_WEBCAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RAW_GADGET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations >> EHCI Debug Device mode +CONFIG_USB_G_DBGP_PRINTK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_G_DBGP_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Gadget precomposed configurations >> Function Filesystem +CONFIG_USB_FUNCTIONFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_FUNCTIONFS_ETH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_FUNCTIONFS_RNDIS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_FUNCTIONFS_GENERIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Device Drivers >> USB support >> USB Gadget Support >> USB Peripheral Controller +CONFIG_USB_FUSB300 policy<{'armhf-generic': 'm'}> +CONFIG_USB_FOTG210_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GR_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_R8A66597 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_RENESAS_USBHS_UDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_RENESAS_USB3 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_PXA27X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MV_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MV_U3D policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_SNP_UDC_PLAT policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_M66592 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_USB_BDC_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_AMD5536UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET2272 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_NET2272_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_NET2280 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GOKU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_EG20T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_GADGET_XILINX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_MAX3420_UDC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_USB_TEGRA_XUDC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_ASPEED_VHUB policy<{'armhf': 'm'}> +CONFIG_USB_DUMMY_HCD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_USB_M66592 note +CONFIG_USB_DUMMY_HCD flag + +# Menu: Device Drivers >> USB support >> USB Physical Layer drivers +CONFIG_NOP_USB_XCEIV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_AM335X_PHY_USB policy<{'armhf': 'm'}> +CONFIG_TWL6030_USB policy<{'armhf': 'm'}> +CONFIG_USB_GPIO_VBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TAHVO_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TAHVO_USB_HOST_BY_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_USB_ISP1301 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_USB_MXS_PHY policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_USB_TEGRA_PHY policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_USB_ULPI policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_NOP_USB_XCEIV note + +# Menu: Device Drivers >> USB support >> USB Type-C Support +CONFIG_TYPEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TYPEC_UCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_UCSI_CCG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_UCSI_ACPI policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_TYPEC_HD3SS3220 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_TPS6598X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_STUSB160X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_QCOM_PMIC policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Alternate Mode drivers +CONFIG_TYPEC_DP_ALTMODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_NVIDIA_ALTMODE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Multiplexer/DeMultiplexer Switch support +CONFIG_TYPEC_MUX_PI3USB30532 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_MUX_INTEL_PMC policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Port Controller Manager +CONFIG_TYPEC_TCPM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_FUSB302 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> USB support >> USB Type-C Support >> USB Type-C Port Controller Manager >> Type-C Port Controller Interface driver +CONFIG_TYPEC_TCPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_RT1711H policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TYPEC_TCPCI_MAXIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> Unified support for USB4 and Thunderbolt +CONFIG_USB4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_USB4_DEBUGFS_WRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_USB4_DMA_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Device Drivers >> Userspace I/O drivers +CONFIG_UIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_UIO_CIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_PDRV_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_DMEM_GENIRQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_AEC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_SERCOS3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_PCI_GENERIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_NETX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_FSL_ELBC_GPCM policy<{'ppc64el': 'm'}> +CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 policy<{'ppc64el': 'n'}> +CONFIG_UIO_PRUSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_MF624 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UIO_HV_GENERIC policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_UIO_DFL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Device Drivers >> VFIO Non-Privileged userspace driver framework +CONFIG_VFIO policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VFIO_NOIOMMU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VFIO_MDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VFIO_FSL_MC policy<{'arm64': 'm'}> +CONFIG_VFIO_PCI policy<{'amd64': 'y', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VFIO_PCI_VGA policy<{'amd64': 'y'}> +CONFIG_VFIO_PCI_IGD policy<{'amd64': 'y'}> +# +CONFIG_VFIO mark note +CONFIG_VFIO_PCI mark note + +# Menu: Device Drivers >> VFIO Non-Privileged userspace driver framework >> VFIO support for platform devices +CONFIG_VFIO_PLATFORM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_AMBA policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> VHOST drivers +CONFIG_VHOST_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VHOST_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VHOST_SCSI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VHOST_VSOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VHOST_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VHOST_CROSS_ENDIAN_LEGACY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> VME bridge support +CONFIG_VME_BUS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_VME_CA91CX42 policy<{'amd64': 'm'}> +CONFIG_VME_TSI148 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VME_FAKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VMIVME_7805 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VME_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Device Drivers >> Virtio drivers +CONFIG_VIRTIO_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_PCI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_PCI_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VIRTIO_PMEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf-generic-lpae': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_VIRTIO_BALLOON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VIRTIO_MEM policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIRTIO_INPUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_MMIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +# +CONFIG_VIRTIO_PCI flag +CONFIG_VIRTIO_MMIO note + +# Menu: Device Drivers >> Virtualization drivers +CONFIG_VIRT_DRIVERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VBOXGUEST policy<{'amd64': 'm'}> +CONFIG_NITRO_ENCLAVES policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_ACRN_HSM policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Voltage and Current Regulator Support +CONFIG_REGULATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_REGULATOR_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_REGULATOR_FIXED_VOLTAGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_VIRTUAL_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_USERSPACE_CONSUMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_88PG86X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_88PM800 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_88PM8607 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_ACT8865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_ACT8945A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_AD5398 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_ANATOP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_AAT2870 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_ARIZONA_LDO1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_ARIZONA_MICSUPP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_ARM_SCMI policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_AS3711 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_AS3722 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_ATC260X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_AXP20X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BCM590XX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BD71815 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BD71828 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BD718XX policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BD9571MWV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_BD957XMUF policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_CPCAP policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_CROS_EC policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_DA903X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_DA9052 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_DA9055 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_DA9062 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_DA9063 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_DA9121 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_DA9210 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_DA9211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_FAN53555 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_FAN53880 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_HI6421 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_HI6421V530 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_HI655X policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_HI6421V600 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_ISL9305 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_ISL6271A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LM363X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_LOCHNAGAR policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_LP3971 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LP3972 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LP872X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LP873X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_LP8755 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LP87565 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_LP8788 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LTC3589 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_LTC3676 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX14577 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX1586 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX77620 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX77650 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX8649 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8660 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8893 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8907 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX8925 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8952 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8973 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX8997 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX8998 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX77686 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX77693 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MAX77802 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MAX77826 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MC13783 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MC13892 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MCP16502 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MP5416 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MP8859 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MP886X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MPQ7920 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6311 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_MT6315 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6358 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6359 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_MT6380 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_MT6397 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_PALMAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PBIAS policy<{'armhf': 'm'}> +CONFIG_REGULATOR_PCA9450 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PCAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PCF50633 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_PF8X00 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_PFUZE100 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_PV88060 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PV88080 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PV88090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_PWM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_QCOM_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_RPMH policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_SMD_RPM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_QCOM_SPMI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_QCOM_USB_VBUS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_RC5T583 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RK808 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_RN5T618 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_RT4801 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RT4831 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_RT5033 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_RT6160 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RT6245 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RTQ2134 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RTMV20 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_RTQ6752 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_S2MPA01 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_S2MPS11 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_S5M8767 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_SC2731 policy<{'arm64': 'm'}> +CONFIG_REGULATOR_SKY81452 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_SLG51000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_STPMIC1 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_TI_ABB policy<{'armhf': 'y'}> +CONFIG_REGULATOR_SY8106A policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_SY8824X policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_SY8827N policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_TPS51632 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS6105X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_TPS62360 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65023 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS6507X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65086 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_TPS65090 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65132 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65217 policy<{'arm64': 'm', 'armhf': 'y', 'ppc64el': '-'}> +CONFIG_REGULATOR_TPS65218 policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_TPS6524X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS6586X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65910 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TPS65912 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_TWL4030 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_UNIPHIER policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_REGULATOR_VCTRL policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_VEXPRESS policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_VQMMC_IPQ4019 policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_REGULATOR_WM831X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_WM8350 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_WM8400 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_REGULATOR_WM8994 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_REGULATOR_QCOM_LABIBB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +# +CONFIG_REGULATOR_FIXED_VOLTAGE note +CONFIG_REGULATOR_TWL4030 mark note +CONFIG_REGULATOR_TPS65217 mark note + +# Menu: Device Drivers >> Watchdog Timer Support +CONFIG_WATCHDOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_NOWAYOUT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_OPEN_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0', 's390x': '0'}> +CONFIG_WATCHDOG_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SOFT_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SOFT_WATCHDOG_PRETIMEOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BD957XMUF_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DA9052_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DA9055_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DA9063_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_DA9062_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_GPIO_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MENF21BMC_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MENZ069_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_WDAT_WDT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_WM831X_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_WM8350_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_XILINX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ZIIRAVE_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_RAVE_SP_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLX_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_SL28CPLD_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ARM_SP805_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SBSA_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ARMADA_37XX_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CADENCE_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_FTWDT010_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_S3C2410_WATCHDOG policy<{'armhf': 'n'}> +CONFIG_DW_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_OMAP_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_K3_RTI_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_ORION_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_RN5T618_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SUNXI_WATCHDOG policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_NPCM7XX_WATCHDOG policy<{'armhf': 'y'}> +CONFIG_TWL4030_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_TS4800_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_MAX63XX_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MAX77620_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IMX2_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_SC_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX7ULP_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RETU_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_TEGRA_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_QCOM_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_GXBB_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MESON_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_MEDIATEK_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SMC_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_WDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_RENESAS_RZAWDT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ASPEED_WATCHDOG policy<{'armhf': 'y'}> +CONFIG_STPMIC1_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_UNIPHIER_WATCHDOG policy<{'armhf': 'n', 'armhf-generic-lpae': '-'}> +CONFIG_RTD119X_WATCHDOG policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_SPRD_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_PM8916_WATCHDOG policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_VISCONTI_WATCHDOG policy<{'arm64': 'm'}> +CONFIG_MSC313E_WATCHDOG policy<{'armhf': 'm'}> +CONFIG_ACQUIRE_WDT policy<{'amd64': 'm'}> +CONFIG_ADVANTECH_WDT policy<{'amd64': 'm'}> +CONFIG_ALIM1535_WDT policy<{'amd64': 'm'}> +CONFIG_ALIM7101_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EBC_C384_WDT policy<{'amd64': 'm'}> +CONFIG_F71808E_WDT policy<{'amd64': 'm'}> +CONFIG_SP5100_TCO policy<{'amd64': 'm'}> +CONFIG_SBC_FITPC2_WATCHDOG policy<{'amd64': 'm'}> +CONFIG_EUROTECH_WDT policy<{'amd64': 'm'}> +CONFIG_IB700_WDT policy<{'amd64': 'm'}> +CONFIG_IBMASR policy<{'amd64': 'm'}> +CONFIG_WAFER_WDT policy<{'amd64': 'm'}> +CONFIG_I6300ESB_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_IE6XX_WDT policy<{'amd64': 'm'}> +CONFIG_ITCO_WDT policy<{'amd64': 'm'}> +CONFIG_ITCO_VENDOR_SUPPORT policy<{'amd64': 'y'}> +CONFIG_IT8712F_WDT policy<{'amd64': 'm'}> +CONFIG_IT87_WDT policy<{'amd64': 'm'}> +CONFIG_HP_WATCHDOG policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_HPWDT_NMI_DECODING policy<{'amd64': 'y'}> +CONFIG_KEMPLD_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_SC1200_WDT policy<{'amd64': 'm'}> +CONFIG_PC87413_WDT policy<{'amd64': 'm'}> +CONFIG_NV_TCO policy<{'amd64': 'm'}> +CONFIG_60XX_WDT policy<{'amd64': 'm'}> +CONFIG_CPU5_WDT policy<{'amd64': 'm'}> +CONFIG_SMSC_SCH311X_WDT policy<{'amd64': 'm'}> +CONFIG_SMSC37B787_WDT policy<{'amd64': 'm'}> +CONFIG_TQMX86_WDT policy<{'amd64': 'm'}> +CONFIG_VIA_WDT policy<{'amd64': 'm'}> +CONFIG_W83627HF_WDT policy<{'amd64': 'm'}> +CONFIG_W83877F_WDT policy<{'amd64': 'm'}> +CONFIG_W83977F_WDT policy<{'amd64': 'm'}> +CONFIG_MACHZ_WDT policy<{'amd64': 'm'}> +CONFIG_SBC_EPX_C3_WATCHDOG policy<{'amd64': 'm'}> +CONFIG_INTEL_MEI_WDT policy<{'amd64': 'm'}> +CONFIG_NI903X_WDT policy<{'amd64': 'm'}> +CONFIG_NIC7018_WDT policy<{'amd64': 'm'}> +CONFIG_BCM2835_WDT policy<{'arm64': 'm'}> +CONFIG_BCM7038_WDT policy<{'arm64': 'm'}> +CONFIG_MEN_A21_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_WATCHDOG_RTAS policy<{'ppc64el': 'm'}> +CONFIG_DIAG288_WATCHDOG policy<{'s390x': 'm'}> +CONFIG_XEN_WDT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_PCIPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_WDTPCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_USBPCWATCHDOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_KEEMBAY_WATCHDOG policy<{'arm64': 'm'}> + +# Menu: Device Drivers >> Watchdog Timer Support >> Enable watchdog pretimeout governors +CONFIG_WATCHDOG_PRETIMEOUT_GOV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Device Drivers >> Watchdog Timer Support >> Enable watchdog pretimeout governors >> Default Watchdog Pretimeout Governor +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DEVICES policy<{'amd64': 'y'}> +CONFIG_UV_SYSFS policy<{'amd64': 'm'}> +CONFIG_ACERHDF policy<{'amd64': 'm'}> +CONFIG_ACER_WIRELESS policy<{'amd64': 'm'}> +CONFIG_AMD_PMC policy<{'amd64': 'm'}> +CONFIG_ADV_SWBUTTON policy<{'amd64': 'm'}> +CONFIG_APPLE_GMUX policy<{'amd64': 'm'}> +CONFIG_ASUS_LAPTOP policy<{'amd64': 'm'}> +CONFIG_ASUS_WIRELESS policy<{'amd64': 'm'}> +CONFIG_MERAKI_MX100 policy<{'amd64': 'm'}> +CONFIG_EEEPC_LAPTOP policy<{'amd64': 'm'}> +CONFIG_AMILO_RFKILL policy<{'amd64': 'm'}> +CONFIG_DELL_UART_BACKLIGHT policy<{'amd64': 'm'}> +CONFIG_FUJITSU_LAPTOP policy<{'amd64': 'm'}> +CONFIG_FUJITSU_TABLET policy<{'amd64': 'm'}> +CONFIG_GPD_POCKET_FAN policy<{'amd64': 'm'}> +CONFIG_HP_ACCEL policy<{'amd64': 'm'}> +CONFIG_WIRELESS_HOTKEY policy<{'amd64': 'm'}> +CONFIG_IBM_RTL policy<{'amd64': 'm'}> +CONFIG_SENSORS_HDAPS policy<{'amd64': 'm'}> +CONFIG_MSI_LAPTOP policy<{'amd64': 'm'}> +CONFIG_PCENGINES_APU2 policy<{'amd64': 'm'}> +CONFIG_SAMSUNG_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SAMSUNG_Q10 policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_BT_RFKILL policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_HAPS policy<{'amd64': 'm'}> +CONFIG_ACPI_CMPC policy<{'amd64': 'm'}> +CONFIG_COMPAL_LAPTOP policy<{'amd64': 'm'}> +CONFIG_PANASONIC_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SONY_LAPTOP policy<{'amd64': 'm'}> +CONFIG_SONYPI_COMPAT policy<{'amd64': 'y'}> +CONFIG_SYSTEM76_ACPI policy<{'amd64': 'm'}> +CONFIG_TOPSTAR_LAPTOP policy<{'amd64': 'm'}> +CONFIG_MLX_PLATFORM policy<{'amd64': 'm'}> +CONFIG_TOUCHSCREEN_DMI policy<{'amd64': 'y'}> +CONFIG_INTEL_IPS policy<{'amd64': 'm'}> +CONFIG_INTEL_SCU_PCI policy<{'amd64': 'y'}> +CONFIG_INTEL_SCU_PLATFORM policy<{'amd64': 'm'}> +CONFIG_INTEL_SCU_IPC_UTIL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Dell X86 Platform Specific Device Drivers +CONFIG_X86_PLATFORM_DRIVERS_DELL policy<{'amd64': 'y'}> +CONFIG_ALIENWARE_WMI policy<{'amd64': 'm'}> +CONFIG_DCDBAS policy<{'amd64': 'm'}> +CONFIG_DELL_LAPTOP policy<{'amd64': 'm'}> +CONFIG_DELL_RBU policy<{'amd64': 'm'}> +CONFIG_DELL_RBTN policy<{'amd64': 'm'}> +CONFIG_DELL_SMO8800 policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_AIO policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_LED policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_SYSMAN policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Dell X86 Platform Specific Device Drivers >> Dell SMBIOS driver +CONFIG_DELL_SMBIOS policy<{'amd64': 'm'}> +CONFIG_DELL_SMBIOS_WMI policy<{'amd64': 'y'}> +CONFIG_DELL_SMBIOS_SMM policy<{'amd64': 'y'}> +CONFIG_DELL_WMI policy<{'amd64': 'm'}> +CONFIG_DELL_WMI_PRIVACY policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Intel x86 Platform Specific Device Drivers +CONFIG_INTEL_ATOMISP2_LED policy<{'amd64': 'm'}> +CONFIG_INTEL_SAR_INT1092 policy<{'amd64': 'm'}> +CONFIG_INTEL_SKL_INT3472 policy<{'amd64': 'm'}> +CONFIG_INTEL_PMC_CORE policy<{'amd64': 'y'}> +CONFIG_INTEL_PMT_TELEMETRY policy<{'amd64': 'm'}> +CONFIG_INTEL_PMT_CRASHLOG policy<{'amd64': 'm'}> +CONFIG_INTEL_TELEMETRY policy<{'amd64': 'm'}> +CONFIG_INTEL_WMI_SBL_FW_UPDATE policy<{'amd64': 'm'}> +CONFIG_INTEL_WMI_THUNDERBOLT policy<{'amd64': 'm'}> +CONFIG_INTEL_HID_EVENT policy<{'amd64': 'm'}> +CONFIG_INTEL_VBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_INT0002_VGPIO policy<{'amd64': 'm'}> +CONFIG_INTEL_OAKTRAIL policy<{'amd64': 'm'}> +CONFIG_INTEL_BXTWC_PMIC_TMU policy<{'amd64': 'm'}> +CONFIG_INTEL_CHTDC_TI_PWRBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_MRFLD_PWRBTN policy<{'amd64': 'm'}> +CONFIG_INTEL_PUNIT_IPC policy<{'amd64': 'm'}> +CONFIG_INTEL_RST policy<{'amd64': 'm'}> +CONFIG_INTEL_SMARTCONNECT policy<{'amd64': 'm'}> +CONFIG_INTEL_TURBO_MAX_3 policy<{'amd64': 'y'}> +CONFIG_INTEL_UNCORE_FREQ_CONTROL policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> Intel x86 Platform Specific Device Drivers >> Intel Speed Select Technology interface support +CONFIG_INTEL_SPEED_SELECT_INTERFACE policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> ThinkPad ACPI Laptop Extras +CONFIG_THINKPAD_ACPI policy<{'amd64': 'm'}> +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_DEBUG policy<{'amd64': 'n'}> +CONFIG_THINKPAD_ACPI_UNSAFE_LEDS policy<{'amd64': 'n'}> +CONFIG_THINKPAD_ACPI_VIDEO policy<{'amd64': 'y'}> +CONFIG_THINKPAD_ACPI_HOTKEY_POLL policy<{'amd64': 'y'}> + +# Menu: Device Drivers >> X86 Platform Specific Device Drivers >> WMI +CONFIG_ACPI_WMI policy<{'amd64': 'm'}> +CONFIG_WMI_BMOF policy<{'amd64': 'm'}> +CONFIG_HUAWEI_WMI policy<{'amd64': 'm'}> +CONFIG_MXM_WMI policy<{'amd64': 'm'}> +CONFIG_PEAQ_WMI policy<{'amd64': 'm'}> +CONFIG_NVIDIA_WMI_EC_BACKLIGHT policy<{'amd64': 'm'}> +CONFIG_XIAOMI_WMI policy<{'amd64': 'm'}> +CONFIG_GIGABYTE_WMI policy<{'amd64': 'm'}> +CONFIG_ACER_WMI policy<{'amd64': 'm'}> +CONFIG_ASUS_WMI policy<{'amd64': 'm'}> +CONFIG_ASUS_NB_WMI policy<{'amd64': 'm'}> +CONFIG_EEEPC_WMI policy<{'amd64': 'm'}> +CONFIG_HP_WMI policy<{'amd64': 'm'}> +CONFIG_IDEAPAD_LAPTOP policy<{'amd64': 'm'}> +CONFIG_THINKPAD_LMI policy<{'amd64': 'm'}> +CONFIG_MSI_WMI policy<{'amd64': 'm'}> +CONFIG_ACPI_TOSHIBA policy<{'amd64': 'm'}> +CONFIG_TOSHIBA_WMI policy<{'amd64': 'n'}> +CONFIG_LG_LAPTOP policy<{'amd64': 'm'}> + +# Menu: Device Drivers >> Xen driver support +CONFIG_XEN_BALLOON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT policy<{'amd64': '512'}> +CONFIG_XEN_SCRUB_PAGES_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_DEV_EVTCHN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_XENFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_XEN_COMPAT_XENFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_SYS_HYPERVISOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_GNTDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_XEN_GNTDEV_DMABUF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_GRANT_DEV_ALLOC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_XEN_GRANT_DMA_ALLOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_PVCALLS_FRONTEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_XEN_ACPI_PROCESSOR policy<{'amd64': 'y'}> +CONFIG_XEN_MCE_LOG policy<{'amd64': 'y'}> +CONFIG_XEN_SYMS policy<{'amd64': 'y'}> +CONFIG_XEN_UNPOPULATED_ALLOC policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_XEN_VIRTIO policy<{'amd64': 'y', 'arm64': 'y'}> +# +CONFIG_XEN_ACPI_PROCESSOR mark note + +# Menu: Device Drivers >> Xen driver support >> Backend driver support +CONFIG_XEN_BACKEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_PCIDEV_BACKEND policy<{'amd64': 'm'}> +CONFIG_XEN_PVCALLS_BACKEND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': '-'}> +CONFIG_XEN_SCSI_BACKEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> + +# Menu: Device Drivers >> vDPA drivers +CONFIG_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_VDPA_SIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VDPA_SIM_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VDPA_SIM_BLOCK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VDPA_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IFCVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MLX5_VDPA_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_VP_VDPA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Dump support +# + +# Menu: Dump support >> Architecture: s390 + +# Menu: Enable loadable module support +CONFIG_MODULES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_LOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_UNLOAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_FORCE_UNLOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODVERSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_SRCVERSION_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODPROBE_PATH policy<{'amd64': '"/sbin/modprobe"', 'arm64': '"/sbin/modprobe"', 'armhf': '"/sbin/modprobe"', 'ppc64el': '"/sbin/modprobe"', 'riscv64': '"/sbin/modprobe"', 's390x': '"/sbin/modprobe"'}> +CONFIG_TRIM_UNUSED_KSYMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_MODVERSIONS mark note note + +# Menu: Enable loadable module support >> Module compression mode +CONFIG_MODULE_COMPRESS_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_COMPRESS_GZIP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_COMPRESS_XZ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_COMPRESS_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Enable loadable module support >> Module signature verification +CONFIG_MODULE_SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_SIG_FORCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Enable loadable module support >> Module signature verification >> Which hash algorithm should modules be signed with? +CONFIG_MODULE_SIG_SHA1 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA224 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA384 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_SIG_SHA512 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Enable the block layer +CONFIG_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_BSGLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_ZONED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_THROTTLING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEV_THROTTLING_LOW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BLK_WBT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_WBT_MQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOLATENCY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BLK_CGROUP_FC_APPID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOCOST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP_IOPRIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_DEBUG_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_SED_OPAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_INLINE_ENCRYPTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_BLK_DEV_THROTTLING note + +# Menu: Enable the block layer >> IO Schedulers +CONFIG_MQ_IOSCHED_DEADLINE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MQ_IOSCHED_KYBER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IOSCHED_BFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BFQ_GROUP_IOSCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BFQ_CGROUP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Enable the block layer >> Partition Types + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection +CONFIG_PARTITION_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_OSF_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_AMIGA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ATARI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_IBM_PARTITION policy<{'s390x': 'y'}> +CONFIG_MAC_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_LDM_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_LDM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SGI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_ULTRIX_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SUN_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_KARMA_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_EFI_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSV68_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CMDLINE_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +# +CONFIG_PARTITION_ADVANCED flag + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection >> Acorn partition support +CONFIG_ACORN_PARTITION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Enable the block layer >> Partition Types >> Advanced partition selection >> PC BIOS (MSDOS partition tables) support +CONFIG_MSDOS_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BSD_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_MINIX_SUBPARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SOLARIS_X86_PARTITION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_UNIXWARE_DISKLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> + +# Menu: Endianness selection +CONFIG_CPU_BIG_ENDIAN policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_CPU_LITTLE_ENDIAN policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> + +# Menu: Endianness selection >> Architecture: powerpc + +# Menu: Executable file formats +CONFIG_BINFMT_ELF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BINFMT_ELF_FDPIC policy<{'armhf': 'y'}> +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BINFMT_SCRIPT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BINFMT_MISC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_COREDUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_BINFMT_SCRIPT mark note + +# Menu: Executable file formats >> Kernel support for flat binaries +CONFIG_BINFMT_FLAT policy<{'armhf': 'y', 'riscv64': 'y'}> +CONFIG_BINFMT_FLAT_OLD policy<{'armhf': 'y', 'riscv64': 'y'}> +CONFIG_BINFMT_ZFLAT policy<{'armhf': 'y', 'riscv64': 'y'}> + +# Menu: File systems +CONFIG_VALIDATE_FS_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXT2_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_EXT3_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_JBD2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GFS2_FS_LOCKING_DLM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NILFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ZONEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FS_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_EXPORTFS_BLOCK_OPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FILE_LOCKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FS_ENCRYPTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FS_ENCRYPTION_INLINE_CRYPT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FS_VERITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FS_VERITY_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FS_VERITY_BUILTIN_SIGNATURES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DNOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INOTIFY_USER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FANOTIFY_ACCESS_PERMISSIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_QUOTA_NETLINK_INTERFACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AUTOFS4_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'y'}> +CONFIG_AUTOFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'y'}> +CONFIG_FUSE_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CUSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VIRTIO_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FUSE_DAX policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_SHIFT_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SHIFT_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UNICODE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UNICODE_NORMALIZATION_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_EXT2_FS note +CONFIG_EXT3_FS note +CONFIG_FUSE_FS note flag + +# Menu: File systems >> Btrfs filesystem support +CONFIG_BTRFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BTRFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BTRFS_FS_CHECK_INTEGRITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BTRFS_FS_RUN_SANITY_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BTRFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BTRFS_ASSERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BTRFS_FS_REF_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> CD-ROM/DVD Filesystems +CONFIG_ISO9660_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_JOLIET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZISOFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UDF_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: File systems >> Caches +CONFIG_NETFS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CACHEFILES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CACHEFILES_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FSCACHE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FSCACHE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FSCACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> DOS/FAT/EXFAT/NT Filesystems +CONFIG_MSDOS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_EXFAT_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EXFAT_DEFAULT_IOCHARSET policy<{'amd64': '"utf8"', 'arm64': '"utf8"', 'armhf': '"utf8"', 'ppc64el': '"utf8"', 'riscv64': '"utf8"'}> +CONFIG_NTFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NTFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NTFS_RW policy<{'amd64': 'n', 'arm64-generic': 'n', 'armhf': 'n', 'ppc64el': '-', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_VFAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FAT_DEFAULT_CODEPAGE policy<{'amd64': '437', 'arm64': '437', 'armhf': '437', 'ppc64el': '437', 'riscv64': '437', 's390x': '437'}> +CONFIG_FAT_DEFAULT_IOCHARSET policy<{'amd64': '"iso8859-1"', 'arm64': '"iso8859-1"', 'armhf': '"iso8859-1"', 'ppc64el': '"iso8859-1"', 'riscv64': '"iso8859-1"', 's390x': '"iso8859-1"'}> +CONFIG_FAT_DEFAULT_UTF8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_VFAT_FS mark note + +# Menu: File systems >> DOS/FAT/EXFAT/NT Filesystems >> NTFS Read-Write file system support +CONFIG_NTFS3_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NTFS3_64BIT_CLUSTER policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NTFS3_LZX_XPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NTFS3_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Distributed Lock Manager (DLM) +CONFIG_DLM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_DLM_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> F2FS filesystem support +CONFIG_F2FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_F2FS_STAT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_CHECK_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_F2FS_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_F2FS_IOSTAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: File systems >> F2FS filesystem support >> F2FS compression feature +CONFIG_F2FS_FS_COMPRESSION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_LZ4HC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_F2FS_FS_LZORLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> JFS filesystem support +CONFIG_JFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_JFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFS_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems +CONFIG_MISC_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ORANGEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ADFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ADFS_FS_RW policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_AFFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ECRYPT_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ECRYPT_FS_MESSAGING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HFSPLUS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BEFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BEFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_BFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_EFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CRAMFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CRAMFS_BLOCKDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CRAMFS_MTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VXFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MINIX_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_OMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_HPFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QNX4FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QNX6FS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ROMFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_SYSV_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_UFS_FS_WRITE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_UFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_VBOXSF_FS policy<{'amd64': 'm'}> +# +CONFIG_ECRYPT_FS mark note + +# Menu: File systems >> Miscellaneous filesystems >> Default pstore compression algorithm +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> EROFS filesystem support +CONFIG_EROFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_EROFS_FS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_EROFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EROFS_FS_ZIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support +CONFIG_JFFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_JFFS2_FS_DEBUG policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> +CONFIG_JFFS2_FS_WRITEBUFFER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_FS_WBUF_VERIFY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFFS2_SUMMARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFFS2_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support >> Advanced compression options for JFFS2 +CONFIG_JFFS2_COMPRESSION_OPTIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_RTIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_JFFS2_RUBIN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: File systems >> Miscellaneous filesystems >> Journalling Flash File System v2 (JFFS2) support >> Advanced compression options for JFFS2 >> JFFS2 default compression mode +CONFIG_JFFS2_CMODE_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFFS2_CMODE_PRIORITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFFS2_CMODE_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_JFFS2_CMODE_FAVOURLZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> Persistent store support +CONFIG_PSTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PSTORE_DEFAULT_KMSG_BYTES policy<{'amd64': '10240', 'arm64': '10240', 'armhf': '10240', 'ppc64el': '10240', 'riscv64': '10240'}> +CONFIG_PSTORE_DEFLATE_COMPRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_PSTORE_LZO_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_LZ4_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_LZ4HC_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_842_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_ZSTD_COMPRESS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_CONSOLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_PMSG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_FTRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_PSTORE_RAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PSTORE_BLK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_PSTORE_BLK_BLKDEV policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '-'}> +CONFIG_PSTORE_BLK_MAX_REASON policy<{'amd64': '2', 'arm64': '2', 'armhf': '2', 'ppc64el': '2', 'riscv64': '2', 's390x': '-'}> + +# Menu: File systems >> Miscellaneous filesystems >> Persistent store support >> Log panic/oops to a block device + +# Menu: File systems >> Miscellaneous filesystems >> RomFS backing stores +CONFIG_ROMFS_BACKED_BY_BLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ROMFS_BACKED_BY_MTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ROMFS_BACKED_BY_BOTH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support +CONFIG_SQUASHFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_4K_DEVBLK_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE policy<{'amd64': '3', 'arm64': '3', 'armhf': '3', 'ppc64el': '3', 'riscv64': '3', 's390x': '3'}> +# +CONFIG_SQUASHFS_4K_DEVBLK_SIZE note +CONFIG_SQUASHFS mark note + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support >> Decompressor parallelisation options +CONFIG_SQUASHFS_DECOMP_SINGLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_DECOMP_MULTI policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU mark note + +# Menu: File systems >> Miscellaneous filesystems >> SquashFS 4.0 - Squashed file system support >> File decompression options +CONFIG_SQUASHFS_FILE_CACHE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SQUASHFS_FILE_DIRECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> UBIFS file system support +CONFIG_UBIFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_UBIFS_ATIME_SUPPORT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_UBIFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_UBIFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_UBIFS_FS_AUTHENTICATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Miscellaneous filesystems >> UBIFS file system support >> Advanced compression options +CONFIG_UBIFS_FS_ADVANCED_COMPR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_UBIFS_FS_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_UBIFS_FS_ZLIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_UBIFS_FS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> Native language support +CONFIG_NLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NLS_DEFAULT policy<{'amd64': '"utf8"', 'arm64': '"utf8"', 'armhf': '"utf8"', 'ppc64el': '"utf8"', 'riscv64': '"utf8"', 's390x': '"utf8"'}> +CONFIG_NLS_CODEPAGE_437 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NLS_CODEPAGE_737 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_775 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_850 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_852 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_855 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_857 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_860 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_861 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_862 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_863 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_864 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_865 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_866 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_869 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_936 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_950 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_932 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_949 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_874 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1250 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_CODEPAGE_1251 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ASCII policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_9 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_13 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_14 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_ISO8859_15 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_R policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_KOI8_U policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CELTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CENTEURO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CROATIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_CYRILLIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GAELIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_GREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ICELAND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_INUIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_ROMANIAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_MAC_TURKISH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NLS_UTF8 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_NLS note + +# Menu: File systems >> Network File Systems +CONFIG_NETWORK_FILESYSTEMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFSD_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RPCSEC_GSS_KRB5 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SUNRPC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SUNRPC_XPRT_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CODA_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: File systems >> Network File Systems >> Andrew File System support (AFS) +CONFIG_AFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_AFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_AFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AFS_DEBUG_CURSOR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> Network File Systems >> Ceph distributed file system +CONFIG_CEPH_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CEPH_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CEPH_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CEPH_FS_SECURITY_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS client support +CONFIG_NFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFS_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFS_V3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFS_V3_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_V4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFS_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_USE_LEGACY_DNS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NFS_DISABLE_UDP_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> NFS client support >> NFS client support for NFSv4.1 +CONFIG_NFS_V4_1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN policy<{'amd64': '"kernel.org"', 'arm64': '"kernel.org"', 'armhf': '"kernel.org"', 'ppc64el': '"kernel.org"', 'riscv64': '"kernel.org"', 's390x': '"kernel.org"'}> +CONFIG_NFS_V4_1_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFS_V4_2_READ_PLUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> Network File Systems >> NFS server support for NFS version 4 +CONFIG_NFSD_V4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD_BLOCKLAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD_SCSILAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD_FLEXFILELAYOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD_V4_2_INTER_SSC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFSD_V4_SECURITY_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_9P_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_9P_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_9P_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_9P_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Network File Systems >> SMB3 and CIFS support (advanced network filesystem) +CONFIG_CIFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CIFS_STATS2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CIFS_ALLOW_INSECURE_LEGACY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_POSIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_DEBUG2 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CIFS_DEBUG_DUMP_KEYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CIFS_DFS_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_SWN_UPCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CIFS_SMB_DIRECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CIFS_FSCACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_CIFS_ALLOW_INSECURE_LEGACY flag + +# Menu: File systems >> Network File Systems >> SMB3 server support (EXPERIMENTAL) +CONFIG_SMB_SERVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SMB_SERVER_SMBDIRECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SMB_SERVER_KERBEROS5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> OCFS2 file system support +CONFIG_OCFS2_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_O2CB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_USERSPACE_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OCFS2_FS_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_MASKLOG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_OCFS2_DEBUG_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> Overlay filesystem support +CONFIG_OVERLAY_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OVERLAY_FS_REDIRECT_DIR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_OVERLAY_FS_INDEX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_OVERLAY_FS_XINO_AUTO policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_OVERLAY_FS_METACOPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_OVERLAY_FS_METACOPY flag + +# Menu: File systems >> Pseudo filesystems +CONFIG_PROC_CHILDREN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HUGETLBFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CONFIGFS_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EFIVAR_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +# +CONFIG_CONFIGFS_FS flag +CONFIG_EFIVAR_FS note + +# Menu: File systems >> Pseudo filesystems >> /proc file system support +CONFIG_PROC_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_KCORE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_VMCORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_VMCORE_DEVICE_DUMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_SYSCTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_PAGE_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: File systems >> Pseudo filesystems >> Tmpfs virtual memory file system support (former shm fs) +CONFIG_TMPFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TMPFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TMPFS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TMPFS_INODE64 policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_TMPFS_POSIX_ACL mark note + +# Menu: File systems >> Quota support +CONFIG_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PRINT_QUOTA_WARNING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_QUOTA_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_QFMT_V1 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_QFMT_V2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: File systems >> Reiserfs support +CONFIG_REISERFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_REISERFS_CHECK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_REISERFS_PROC_INFO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_REISERFS_FS_XATTR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_REISERFS_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_REISERFS_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: File systems >> The Extended 4 (ext4) filesystem +CONFIG_EXT4_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXT4_USE_FOR_EXT2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXT4_FS_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EXT4_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: File systems >> XFS filesystem support +CONFIG_XFS_FS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XFS_SUPPORT_V4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XFS_QUOTA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XFS_POSIX_ACL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XFS_RT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XFS_ONLINE_SCRUB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XFS_WARN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XFS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Firmware Drivers +CONFIG_ARM_SCPI_PROTOCOL policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SCPI_POWER_DOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_SDE_INTERFACE policy<{'arm64': 'y'}> +CONFIG_EDD policy<{'amd64': 'y'}> +CONFIG_EDD_OFF policy<{'amd64': 'y'}> +CONFIG_FIRMWARE_MEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DMIID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_DMI_SYSFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm'}> +CONFIG_ISCSI_IBFT_FIND policy<{'amd64': 'y'}> +CONFIG_ISCSI_IBFT policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_RASPBERRYPI_FIRMWARE policy<{'arm64': 'y'}> +CONFIG_FW_CFG_SYSFS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_FW_CFG_SYSFS_CMDLINE policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_INTEL_STRATIX10_SERVICE policy<{'arm64': 'm'}> +CONFIG_INTEL_STRATIX10_RSU policy<{'arm64': 'm'}> +CONFIG_QCOM_SCM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SYSFB_SIMPLEFB policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'n'}> +CONFIG_TI_SCI_PROTOCOL policy<{'arm64': 'y'}> +CONFIG_TRUSTED_FOUNDATIONS policy<{'armhf': 'y'}> +CONFIG_TURRIS_MOX_RWTM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_FFA_TRANSPORT policy<{'arm64': 'm'}> +CONFIG_TEE_BNXT_FW policy<{'arm64': 'm'}> +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_IMX_DSP policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_IMX_SCU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_IMX_SCU_PD policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_MESON_SM policy<{'arm64-generic': 'y'}> +CONFIG_ARM_PSCI_CHECKER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_ARM_SMCCC_SOC_ID policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_SYSFB_SIMPLEFB flag + +# Menu: Firmware Drivers >> ARM System Control and Management Interface Protocol + +# Menu: Firmware Drivers >> ARM System Control and Management Interface Protocol >> ARM System Control and Management Interface (SCMI) Message Protocol +CONFIG_ARM_SCMI_PROTOCOL policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_SMC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_SCMI_POWER_DOMAIN policy<{'arm64': 'm', 'armhf': 'm'}> + +# Menu: Firmware Drivers >> EFI (Extensible Firmware Interface) Support +CONFIG_EFI_VARS policy<{'amd64': 'y'}> +CONFIG_EFI_VARS_PSTORE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n'}> +CONFIG_EFI_RUNTIME_MAP policy<{'amd64': 'y'}> +CONFIG_EFI_FAKE_MEMMAP policy<{'amd64': 'n'}> +CONFIG_EFI_SOFT_RESERVE policy<{'amd64': 'y', 'arm64': 'y'}> +CONFIG_EFI_ARMSTUB_DTB_LOADER policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y'}> +CONFIG_EFI_BOOTLOADER_CONTROL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_EFI_CAPSULE_LOADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_EFI_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'riscv64': 'm'}> +CONFIG_APPLE_PROPERTIES policy<{'amd64': 'y'}> +CONFIG_RESET_ATTACK_MITIGATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_EFI_RCI2_TABLE policy<{'amd64': 'y'}> +CONFIG_EFI_DISABLE_PCI_DMA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n'}> +# +CONFIG_EFI_VARS mark note note + +# Menu: Firmware Drivers >> Google Firmware Drivers +CONFIG_GOOGLE_FIRMWARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Firmware Drivers >> Google Firmware Drivers >> Coreboot Table Access + +# Menu: Firmware Drivers >> Tegra firmware driver +CONFIG_TEGRA_IVC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_TEGRA_BPMP policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: Firmware Drivers >> Zynq MPSoC Firmware Drivers +CONFIG_ZYNQMP_FIRMWARE policy<{'arm64': 'y'}> +CONFIG_ZYNQMP_FIRMWARE_DEBUG policy<{'arm64': 'n'}> + +# Menu: Floating point emulation >> Architecture: arm +CONFIG_VFP policy<{'armhf': 'y'}> +CONFIG_NEON policy<{'armhf': 'y'}> +CONFIG_KERNEL_MODE_NEON policy<{'arm64': 'y', 'armhf': 'y'}> + +# Menu: General architecture-dependent options +CONFIG_KPROBES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_JUMP_LABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_STATIC_KEYS_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n', 'armhf': '-'}> +CONFIG_STATIC_CALL_SELFTEST policy<{'amd64': 'n'}> +CONFIG_SECCOMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECCOMP_CACHE_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_STACKPROTECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_STACKPROTECTOR_STRONG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_ARCH_MMAP_RND_BITS policy<{'amd64': '28', 'arm64': '18', 'armhf': '8', 'ppc64el': '28', 'riscv64': '18'}> +CONFIG_ARCH_MMAP_RND_COMPAT_BITS policy<{'amd64': '8', 'arm64': '11', 'ppc64el': '8'}> +CONFIG_COMPAT_32BIT_TIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VMAP_STACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_RANDOMIZE_KSTACK_OFFSET policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_STRICT_KERNEL_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_STRICT_MODULE_RWX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LOCK_EVENT_COUNTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FPROBE policy<{'amd64': 'y'}> +# +CONFIG_VMAP_STACK mark +CONFIG_SECCOMP mark +CONFIG_JUMP_LABEL flag +CONFIG_STRICT_KERNEL_RWX mark +CONFIG_STRICT_MODULE_RWX mark + +# Menu: General architecture-dependent options >> Architecture: arm + +# Menu: General architecture-dependent options >> Architecture: arm64 +CONFIG_SHADOW_CALL_STACK policy<{'arm64': '-'}> + +# Menu: General architecture-dependent options >> Architecture: powerpc + +# Menu: General architecture-dependent options >> Architecture: s390 + +# Menu: General architecture-dependent options >> Architecture: x86 + +# Menu: General architecture-dependent options >> GCC plugins + +# Menu: General architecture-dependent options >> GCOV-based kernel profiling +CONFIG_GCOV_KERNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) +CONFIG_LTO_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: arm + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: arm64 + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: powerpc + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: s390 + +# Menu: General architecture-dependent options >> Link Time Optimization (LTO) >> Architecture: x86 + +# Menu: General setup +CONFIG_COMPILE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_WERROR policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LOCALVERSION policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_LOCALVERSION_AUTO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BUILD_SALT policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_DEFAULT_INIT policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_DEFAULT_HOSTNAME policy<{'amd64': '"(none)"', 'arm64': '"(none)"', 'armhf': '"(none)"', 'ppc64el': '"(none)"', 'riscv64': '"(none)"', 's390x': '"(none)"'}> +CONFIG_VERSION_SIGNATURE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_SWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSVIPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_POSIX_MQUEUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WATCH_QUEUE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CROSS_MEMORY_ATTACH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_USELIB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCHED_CORE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y', 'armhf': '-'}> +CONFIG_CPU_ISOLATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IKCONFIG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IKHEADERS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_LOG_BUF_SHIFT policy<{'amd64': '18', 'arm64': '18', 'armhf': '17', 'ppc64el': '18', 'riscv64': '18', 's390x': '18'}> +CONFIG_LOG_CPU_MAX_BUF_SHIFT policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 'riscv64': '12', 's390x': '12'}> +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT policy<{'amd64': '13', 'arm64': '13', 'armhf': '13', 'ppc64el': '13', 'riscv64': '13', 's390x': '13'}> +CONFIG_PRINTK_INDEX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NUMA_BALANCING policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CHECKPOINT_RESTORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCHED_AUTOGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSFS_DEPRECATED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BOOT_CONFIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LD_DEAD_CODE_DATA_ELIMINATION policy<{'ppc64el': 'n'}> +CONFIG_USERFAULTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EMBEDDED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_COMPAT_BRK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SLAB_MERGE_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLAB_FREELIST_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLAB_FREELIST_HARDENED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SHUFFLE_PAGE_ALLOCATOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLUB_CPU_PARTIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROFILING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SYSFS_DEPRECATED mark note +CONFIG_COMPAT_BRK mark note +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED note +CONFIG_LOCALVERSION_AUTO mark note + +# Menu: General setup >> BPF subsystem +CONFIG_BPF_LSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPF_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPF_JIT_ALWAYS_ON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPF_UNPRIV_DEFAULT_OFF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPF_JIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_BPF_JIT_ALWAYS_ON flag +CONFIG_BPF_UNPRIV_DEFAULT_OFF mark note + +# Menu: General setup >> BPF subsystem >> Preload BPF file system with kernel specific program and map iterators +CONFIG_BPF_PRELOAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> CPU/Task time and stats accounting +CONFIG_IRQ_TIME_ACCOUNTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_BSD_PROCESS_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BSD_PROCESS_ACCT_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TASKSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TASK_DELAY_ACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TASK_XACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TASK_IO_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PSI_DEFAULT_DISABLED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +# +CONFIG_PSI_DEFAULT_DISABLED note + +# Menu: General setup >> CPU/Task time and stats accounting >> Cputime accounting +CONFIG_TICK_CPU_ACCOUNTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE policy<{'ppc64el': 'n', 's390x': 'y'}> +CONFIG_VIRT_CPU_ACCOUNTING_GEN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: General setup >> Choose SLAB allocator +CONFIG_SLAB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SLUB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLOB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> Compiler optimization level +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CC_OPTIMIZE_FOR_SIZE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> Configure standard kernel features (expert users) +CONFIG_EXPERT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UID16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_MULTIUSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SGETMASK_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYSFS_SYSCALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FHANDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_POSIX_TIMERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PRINTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ELF_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PCSPKR_PLATFORM policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_BASE_FULL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FUTEX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EPOLL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SIGNALFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TIMERFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EVENTFD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SHMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IO_URING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ADVISE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MEMBARRIER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KALLSYMS_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KCMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RSEQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_RSEQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PC104 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_VM_EVENT_COUNTERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SLUB_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_FHANDLE mark note + +# Menu: General setup >> Control Group support +CONFIG_CGROUPS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MEMCG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BLK_CGROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PIDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_RDMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_HUGETLB policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CPUSETS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROC_PID_CPUSET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_CPUACCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_PERF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_BPF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> Control Group support >> CPU controller +CONFIG_CGROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FAIR_GROUP_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CFS_BANDWIDTH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RT_GROUP_SCHED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_UCLAMP_TASK_GROUP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +# +CONFIG_RT_GROUP_SCHED mark note note note + +# Menu: General setup >> IRQ subsystem +CONFIG_SPARSE_IRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_GENERIC_IRQ_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support +CONFIG_BLK_DEV_INITRD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_GZIP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_BZIP2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_LZMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_LZ4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_RD_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support >> Initramfs source file(s) +CONFIG_INITRAMFS_SOURCE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_INITRAMFS_PRESERVE_MTIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: General setup >> Initial RAM filesystem and RAM disk (initramfs/initrd) support >> Initramfs source file(s) >> Built-in initramfs compression mode + +# Menu: General setup >> Kernel Performance Events And Counters +CONFIG_PERF_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PERF_USE_VMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: General setup >> Kernel compression mode +CONFIG_KERNEL_GZIP policy<{'amd64': 'n', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'n'}> +CONFIG_KERNEL_BZIP2 policy<{'amd64': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZMA policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_XZ policy<{'amd64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZO policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_LZ4 policy<{'amd64': 'n', 'armhf': 'n', 's390x': 'n'}> +CONFIG_KERNEL_ZSTD policy<{'amd64': 'y', 's390x': 'y'}> +CONFIG_KERNEL_UNCOMPRESSED policy<{'s390x': 'n'}> +# +CONFIG_KERNEL_ZSTD mark note + +# Menu: General setup >> Namespaces support +CONFIG_NAMESPACES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UTS_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TIME_NS policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPC_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_USER_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PID_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_NS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: General setup >> Preemption Model +CONFIG_PREEMPT_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_PREEMPT_VOLUNTARY policy<{'amd64-generic': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_PREEMPT policy<{'amd64-generic': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_PREEMPT_NONE note + +# Menu: General setup >> RCU Subsystem +# XXX + +# Menu: General setup >> RCU Subsystem >> Make expert-level adjustments to RCU configuration +CONFIG_RCU_EXPERT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_RCU_EXPERT flag + +# Menu: General setup >> Scheduler features +CONFIG_UCLAMP_TASK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_UCLAMP_BUCKETS_COUNT policy<{'amd64': '5', 'arm64': '5', 'armhf': '5', 'ppc64el': '5'}> +# +CONFIG_UCLAMP_TASK flag + +# Menu: General setup >> Timers subsystem +CONFIG_NO_HZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CONTEXT_TRACKING_FORCE policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 'riscv64': '-', 's390x': '-'}> +CONFIG_HIGH_RES_TIMERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_CONTEXT_TRACKING_FORCE note mark + +# Menu: General setup >> Timers subsystem >> Timer tick handling +CONFIG_HZ_PERIODIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NO_HZ_IDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NO_HZ_FULL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +# +CONFIG_NO_HZ_IDLE note + +# Menu: I/O subsystem >> Architecture: s390 +CONFIG_QDIO policy<{'s390x': 'm'}> +CONFIG_CHSC_SCH policy<{'s390x': 'm'}> +CONFIG_SCM_BUS policy<{'s390x': 'y'}> +CONFIG_EADM_SCH policy<{'s390x': 'm'}> +CONFIG_VFIO_CCW policy<{'s390x': 'm'}> +CONFIG_VFIO_AP policy<{'s390x': 'm'}> +CONFIG_PCI_NR_FUNCTIONS policy<{'s390x': '512'}> +# +CONFIG_PCI_NR_FUNCTIONS mark note + +# Menu: Kernel features +CONFIG_RISCV_SBI_V01 policy<{'riscv64': 'n'}> + +# Menu: Kernel hacking +CONFIG_DEBUG_TIMEKEEPING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_IRQFLAGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_STACKTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_WARN_ALL_UNSEEDED_RANDOM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PROVIDE_OHCI1394_DMA_INIT policy<{'amd64': 'n'}> +CONFIG_STRICT_DEVMEM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IO_STRICT_DEVMEM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_STRICT_DEVMEM mark + +# Menu: Kernel hacking >> $(SRCARCH) Debugging +CONFIG_DEBUG_ENTRY policy<{'amd64': 'n', 's390x': 'n'}> +CONFIG_PID_IN_CONTEXTIDR policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_EARLY_PRINTK policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_DEBUG_WX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: arm +CONFIG_DEBUG_USER policy<{'armhf': 'n'}> +CONFIG_DEBUG_VF_UART_PORT policy<{'armhf': '1'}> +CONFIG_ARM_KPROBES_TEST policy<{'armhf': 'm'}> +CONFIG_ARM_PTDUMP_DEBUGFS policy<{'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: arm64 +CONFIG_DEBUG_EFI policy<{'arm64': 'n'}> +CONFIG_ARM64_RELOC_TEST policy<{'arm64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: powerpc +CONFIG_PPC_DISABLE_WERROR policy<{'ppc64el': 'n'}> +CONFIG_PRINT_STACK_DEPTH policy<{'ppc64el': '64'}> +CONFIG_HCALL_STATS policy<{'ppc64el': 'n'}> +CONFIG_PPC_EMULATED_STATS policy<{'ppc64el': 'n'}> +CONFIG_CODE_PATCHING_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_JUMP_LABEL_FEATURE_CHECKS policy<{'ppc64el': 'y'}> +CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_FTR_FIXUP_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_MSI_BITMAP_SELFTEST policy<{'ppc64el': 'n'}> +CONFIG_PPC_IRQ_SOFT_MASK_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PPC_RFI_SRR_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_BOOTX_TEXT policy<{'ppc64el': 'n'}> +CONFIG_PPC_EARLY_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PPC_FAST_ENDIAN_SWITCH policy<{'ppc64el': 'n'}> +# +CONFIG_PPC_DISABLE_WERROR flag + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: s390 +CONFIG_CIO_INJECT policy<{'s390x': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Architecture: x86 +CONFIG_X86_VERBOSE_BOOTUP policy<{'amd64': 'n'}> +CONFIG_EFI_PGT_DUMP policy<{'amd64': 'n'}> +CONFIG_PUNIT_ATOM_DEBUG policy<{'amd64': 'm'}> +CONFIG_EARLY_PRINTK_DBGP policy<{'amd64': 'y'}> +CONFIG_EARLY_PRINTK_USB_XDBC policy<{'amd64': 'y'}> +CONFIG_DEBUG_TLBFLUSH policy<{'amd64': 'n'}> +CONFIG_IOMMU_DEBUG policy<{'amd64': 'n'}> +CONFIG_X86_DECODER_SELFTEST policy<{'amd64': 'n'}> +CONFIG_DEBUG_BOOT_PARAMS policy<{'amd64': 'n'}> +CONFIG_CPA_DEBUG policy<{'amd64': 'n'}> +CONFIG_DEBUG_NMI_SELFTEST policy<{'amd64': 'n'}> +CONFIG_X86_DEBUG_FPU policy<{'amd64': 'y'}> +# +CONFIG_PUNIT_ATOM_DEBUG flag +CONFIG_X86_DECODER_SELFTEST flag +CONFIG_X86_DEBUG_FPU flag + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder +CONFIG_UNWINDER_FRAME_POINTER policy<{'amd64': 'y', 'armhf': 'y'}> +# +CONFIG_UNWINDER_FRAME_POINTER mark note + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder >> Architecture: arm + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Choose kernel unwinder >> Architecture: x86 +CONFIG_UNWINDER_ORC policy<{'amd64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> CoreSight Tracing Support +CONFIG_CORESIGHT policy<{'arm64': 'n', 'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> CoreSight Tracing Support >> CoreSight Link and Sink drivers + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Early debugging console >> Architecture: powerpc + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> IO delay type >> Architecture: x86 +CONFIG_IO_DELAY_0X80 policy<{'amd64': 'n'}> +CONFIG_IO_DELAY_0XED policy<{'amd64': 'y'}> +CONFIG_IO_DELAY_UDELAY policy<{'amd64': 'n'}> +CONFIG_IO_DELAY_NONE policy<{'amd64': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Include xmon kernel debugger >> Architecture: powerpc +CONFIG_XMON policy<{'ppc64el': 'y'}> +CONFIG_XMON_DEFAULT policy<{'ppc64el': 'n'}> +CONFIG_XMON_DISASSEMBLY policy<{'ppc64el': 'y'}> +CONFIG_XMON_DEFAULT_RO_MODE policy<{'ppc64el': 'y'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) >> Architecture: arm +CONFIG_DEBUG_LL policy<{'armhf': 'n'}> + +# Menu: Kernel hacking >> $(SRCARCH) Debugging >> Kernel low-level debugging functions (read help!) >> Kernel low-level debugging port >> Architecture: arm + +# Menu: Kernel hacking >> Compile-time checks and compiler options +CONFIG_FRAME_WARN policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '2048', 'riscv64': '1024', 's390x': '1024'}> +CONFIG_STRIP_ASM_SYMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_READABLE_ASM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_HEADERS_INSTALL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SECTION_MISMATCH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SECTION_MISMATCH_WARN_ONLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FRAME_POINTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_STACK_VALIDATION policy<{'amd64': 'y'}> +CONFIG_VMLINUX_MAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_FORCE_WEAK_PER_CPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_STACK_VALIDATION mark note + +# Menu: Kernel hacking >> Compile-time checks and compiler options >> Compile the kernel with debug info +CONFIG_DEBUG_INFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_INFO_REDUCED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_COMPRESSED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_SPLIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_BTF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MODULE_ALLOW_BTF_MISMATCH policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GDB_SCRIPTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_DEBUG_INFO mark note +CONFIG_DEBUG_INFO_SPLIT note note +CONFIG_DEBUG_INFO_BTF flag note + +# Menu: Kernel hacking >> Compile-time checks and compiler options >> Compile the kernel with debug info >> DWARF version +CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_DWARF4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_INFO_DWARF5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> Debug Oops, Lockups and Hangs +CONFIG_PANIC_ON_OOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PANIC_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '10', 'riscv64': '0', 's390x': '0'}> +CONFIG_SOFTLOCKUP_DETECTOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_HARDLOCKUP_DETECTOR policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC policy<{'amd64': 'n', 'ppc64el': 'n'}> +CONFIG_DETECT_HUNG_TASK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT policy<{'amd64': '120', 'arm64': '120', 'armhf': '120', 'ppc64el': '120', 'riscv64': '120', 's390x': '120'}> +CONFIG_BOOTPARAM_HUNG_TASK_PANIC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_WQ_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_LOCKUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_PANIC_ON_OOPS note + +# Menu: Kernel hacking >> Debug kernel data structures +CONFIG_BUG_ON_DATA_CORRUPTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PLIST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_NOTIFIERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_BUG_ON_DATA_CORRUPTION flag + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments +CONFIG_MAGIC_SYSRQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE policy<{'amd64': '0x01b6', 'arm64': '0x01b6', 'armhf': '0x01b6', 'ppc64el': '0x01b6', 'riscv64': '0x01b6', 's390x': '0x01b6'}> +CONFIG_MAGIC_SYSRQ_SERIAL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE policy<{'amd64': '""', 'arm64': '""', 'armhf': '""', 'ppc64el': '""', 'riscv64': '""', 's390x': '""'}> +CONFIG_DEBUG_FS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> Debugfs default access +CONFIG_DEBUG_FS_ALLOW_ALL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_FS_DISALLOW_MOUNT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_FS_ALLOW_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KCSAN: dynamic data race detector + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KCSAN: dynamic data race detector >> Strict data-race checking + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KGDB: kernel debugger +CONFIG_KGDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KGDB_HONOUR_BLOCKLIST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KGDB_SERIAL_CONSOLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KGDB_TESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_KGDB_LOW_LEVEL_TRAP policy<{'amd64': 'y'}> +# +CONFIG_KGDB flag +CONFIG_KGDB_SERIAL_CONSOLE note + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> KGDB: kernel debugger >> KGDB_KDB: include kdb frontend for kgdb +CONFIG_KGDB_KDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KDB_DEFAULT_ENABLE policy<{'amd64': '0x1', 'arm64': '0x1', 'armhf': '0x1', 'ppc64el': '0x1', 'riscv64': '0x1'}> +CONFIG_KDB_KEYBOARD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_KDB_CONTINUE_CATASTROPHIC policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> + +# Menu: Kernel hacking >> Generic Kernel Debugging Instruments >> Undefined behaviour sanity checker +CONFIG_UBSAN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_UBSAN_TRAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_UBSAN mark note + +# Menu: Kernel hacking >> Kernel Testing and Coverage +CONFIG_MEMTEST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_HYPERV_TESTING policy<{'amd64': 'n', 'arm64': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Code coverage for fuzzing + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Fault-injection framework +CONFIG_FAULT_INJECTION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Fault-injection framework >> Debugfs entries for fault-injection capabilities + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> KUnit - Enable support for unit tests +CONFIG_KUNIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Notifier error injection +CONFIG_NOTIFIER_ERROR_INJECTION policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PM_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_NETDEV_NOTIFIER_ERROR_INJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Kernel Testing and Coverage >> Runtime Testing +CONFIG_RUNTIME_TESTING_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LKDTM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_MIN_HEAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_SORT policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 's390x': '-'}> +CONFIG_TEST_DIV64 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BACKTRACE_SELF_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RBTREE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_REED_SOLOMON_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_INTERVAL_TREE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PERCPU_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ATOMIC64_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ASYNC_RAID6_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_HEXDUMP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_STRING_HELPERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_STRSCPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_KSTRTOX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_PRINTF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_SCANF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_BITMAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_UUID policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_XARRAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_RHASHTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_IDA policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_PARMAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_LKM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_BITOPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_VMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_USER_COPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TEST_BLACKHOLE_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_FIND_BIT_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_FIRMWARE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_SYSCTL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_UDELAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_STATIC_KEYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_KMOD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_MEMCAT_P policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_LIVEPATCH policy<{'amd64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_TEST_OBJAGG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_MEMINIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_HMM policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n'}> +CONFIG_TEST_FREE_PAGES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TEST_FPU policy<{'amd64': 'n'}> +CONFIG_TEST_CLOCKSOURCE_WATCHDOG policy<{'amd64': 'n'}> +CONFIG_STRING_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_RUNTIME_TESTING_MENU flag +CONFIG_LKDTM flag flag +CONFIG_TEST_LIST_SORT flag +CONFIG_TEST_SORT flag +CONFIG_KPROBES_SANITY_TEST flag +CONFIG_BACKTRACE_SELF_TEST flag +CONFIG_RBTREE_TEST flag +CONFIG_INTERVAL_TREE_TEST flag +CONFIG_PERCPU_TEST flag +CONFIG_ATOMIC64_SELFTEST flag +CONFIG_ASYNC_RAID6_TEST flag +CONFIG_TEST_HEXDUMP flag +CONFIG_TEST_STRING_HELPERS flag +CONFIG_TEST_STRSCPY flag +CONFIG_TEST_KSTRTOX flag +CONFIG_TEST_PRINTF flag +CONFIG_TEST_BITMAP flag +CONFIG_TEST_UUID flag +CONFIG_TEST_XARRAY flag +CONFIG_TEST_RHASHTABLE flag +CONFIG_TEST_HASH flag +CONFIG_TEST_IDA flag +CONFIG_TEST_PARMAN flag +CONFIG_TEST_LKM flag +CONFIG_TEST_BITOPS flag +CONFIG_TEST_VMALLOC flag +CONFIG_TEST_USER_COPY flag +CONFIG_TEST_BPF flag +CONFIG_TEST_BLACKHOLE_DEV flag note +CONFIG_FIND_BIT_BENCHMARK flag +CONFIG_TEST_FIRMWARE flag +CONFIG_TEST_SYSCTL flag +CONFIG_TEST_UDELAY flag +CONFIG_TEST_STATIC_KEYS flag +CONFIG_TEST_KMOD flag +CONFIG_TEST_MEMCAT_P flag +CONFIG_TEST_LIVEPATCH flag +CONFIG_TEST_OBJAGG flag +CONFIG_TEST_STACKINIT flag +CONFIG_TEST_MEMINIT flag +CONFIG_TEST_HMM flag +CONFIG_TEST_FPU flag + +# Menu: Kernel hacking >> Kernel debugging +CONFIG_DEBUG_KERNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_MISC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_SHIRQ policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PREEMPT policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_DEBUG_KOBJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_CREDENTIALS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_WQ_FORCE_RR_CPU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CPU_HOTPLUG_STATE_CONTROL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LATENCYTOP policy<{'amd64-generic': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CPU_IBPB_ENTRY policy<{'amd64': 'y'}> +CONFIG_CPU_IBRS_ENTRY policy<{'amd64': 'y'}> +CONFIG_CPU_UNRET_ENTRY policy<{'amd64': 'y'}> +CONFIG_SPECULATION_MITIGATIONS policy<{'amd64': 'y'}> +CONFIG_RETHUNK policy<{'amd64': 'y'}> +# +CONFIG_LATENCYTOP mark note note + +# Menu: Kernel hacking >> Lock Debugging (spinlocks, mutexes, etc...) +CONFIG_PROVE_LOCKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LOCK_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RT_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_SPINLOCK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_MUTEXES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_WW_MUTEX_SLOWPATH policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RWSEMS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCK_ALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_ATOMIC_SLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_LOCKING_API_SELFTESTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LOCK_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_WW_MUTEX_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SCF_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CSD_LOCK_WAIT_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging +CONFIG_PAGE_EXTENSION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_PAGEALLOC policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PAGE_OWNER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PAGE_POISONING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_PAGE_REF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_RODATA_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PTDUMP_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_SLUB_DEBUG_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SLUB_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_STACK_USAGE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SCHED_STACK_END_CHECK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_VM_PGTABLE policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_VIRTUAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_DEBUG_MEMORY_INIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm', 's390x': 'm'}> +CONFIG_DEBUG_PER_CPU_MAPS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_KMAP_LOCAL policy<{'armhf': 'n'}> +CONFIG_DEBUG_HIGHMEM policy<{'armhf': 'n'}> +CONFIG_DEBUG_STACKOVERFLOW policy<{'ppc64el': 'n'}> +# +CONFIG_PAGE_POISONING mark note + +# Menu: Kernel hacking >> Memory Debugging >> Debug VM +CONFIG_DEBUG_VM policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> Debug object operations +CONFIG_DEBUG_OBJECTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger +CONFIG_KASAN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger >> Instrumentation type + +# Menu: Kernel hacking >> Memory Debugging >> KASAN: runtime memory debugger >> KASAN mode + +# Menu: Kernel hacking >> Memory Debugging >> KFENCE: low-overhead sampling-based memory safety error detector +CONFIG_KFENCE policy<{'amd64': 'y', 'arm64': 'y', 'riscv64': 'y', 's390x': 'y', 'armhf': 'y'}> +CONFIG_KFENCE_STATIC_KEYS policy<{'amd64': 'n', 'arm64': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_KFENCE_DEFERRABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_KFENCE_SAMPLE_INTERVAL policy<{'amd64': '0', 'arm64': '0', 'riscv64': '0', 's390x': '0', 'armhf': '0'}> +CONFIG_KFENCE_NUM_OBJECTS policy<{'amd64': '255', 'arm64': '255', 'riscv64': '255', 's390x': '255', 'armhf': '255'}> +CONFIG_KFENCE_STRESS_TEST_FAULTS policy<{'amd64': '0', 'arm64': '0', 'riscv64': '0', 's390x': '0', 'armhf': '0'}> + +CONFIG_KFENCE_STATIC_KEYS mark note + +# Menu: Kernel hacking >> Memory Debugging >> Kernel memory leak detector +CONFIG_DEBUG_KMEMLEAK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> RCU Debugging +CONFIG_RCU_SCALE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RCU_TORTURE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RCU_REF_SCALE_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RCU_CPU_STALL_TIMEOUT policy<{'amd64': '60', 'arm64': '60', 'armhf': '60', 'ppc64el': '60', 'riscv64': '60', 's390x': '60'}> +CONFIG_RCU_EXP_CPU_STALL_TIMEOUT policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0', 's390x': '0'}> +CONFIG_RCU_TRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RCU_EQS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_RCU_CPU_STALL_TIMEOUT flag + +# Menu: Kernel hacking >> Sample kernel code +CONFIG_SAMPLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SAMPLE_AUXDISPLAY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_TRACE_EVENTS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_TRACE_PRINTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SAMPLE_FTRACE_DIRECT policy<{'amd64': 'm', 's390x': 'n'}> +CONFIG_SAMPLE_TRACE_ARRAY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SAMPLE_KOBJECT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_KPROBES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_HW_BREAKPOINT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_SAMPLE_KFIFO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_KDB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_SAMPLE_QMI_CLIENT policy<{'arm64': 'n', 'armhf': 'n'}> +CONFIG_SAMPLE_RPMSG_CLIENT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_SAMPLE_LIVEPATCH policy<{'amd64': 'n', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_CONFIGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MTTY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_VFIO_MDEV_MBOCHS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SAMPLE_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_SAMPLE_TRACE_PRINTK mark note + +# Menu: Kernel hacking >> Scheduler Debugging +CONFIG_SCHED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCHEDSTATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Kernel hacking >> Tracers +CONFIG_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BOOTTIME_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_STACK_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IRQSOFF_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PREEMPT_TRACER policy<{'amd64': 'n', 'arm64': 'n'}> +CONFIG_SCHED_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HWLAT_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_OSNOISE_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TIMERLAT_TRACER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MMIOTRACE policy<{'amd64': 'y'}> +CONFIG_FTRACE_SYSCALLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BLK_DEV_IO_TRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KPROBE_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KPROBE_EVENTS_ON_NOTRACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_UPROBE_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPF_KPROBE_OVERRIDE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYNTH_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HIST_TRIGGERS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_TRACE_EVENT_INJECT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TRACEPOINT_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TRACE_EVAL_MAP_FILE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FTRACE_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_STARTUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MMIOTRACE_TEST policy<{'amd64': 'n'}> +CONFIG_PREEMPTIRQ_DELAY_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SYNTH_EVENT_GEN_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_KPROBE_EVENT_GEN_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_HIST_TRIGGERS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 's390x': 'n'}> +# +CONFIG_FTRACE_STARTUP_TEST flag +CONFIG_MMIOTRACE_TEST flag +CONFIG_RING_BUFFER_BENCHMARK flag +CONFIG_RING_BUFFER_STARTUP_TEST flag +CONFIG_TRACE_EVAL_MAP_FILE flag + +# Menu: Kernel hacking >> Tracers >> Branch Profiling +CONFIG_BRANCH_PROFILE_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PROFILE_ANNOTATED_BRANCHES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_PROFILE_ALL_BRANCHES policy<{'riscv64': 'n'}> + +# Menu: Kernel hacking >> Tracers >> Kernel Function Tracer +CONFIG_FUNCTION_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_GRAPH_TRACER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DYNAMIC_FTRACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FUNCTION_PROFILER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FTRACE_RECORD_RECURSION policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Kernel hacking >> printk and dmesg options +CONFIG_PRINTK_TIME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PRINTK_CALLER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_STACKTRACE_BUILD_ID policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CONSOLE_LOGLEVEL_DEFAULT policy<{'amd64': '7', 'arm64': '7', 'armhf': '7', 'ppc64el': '7', 'riscv64': '7', 's390x': '7'}> +CONFIG_CONSOLE_LOGLEVEL_QUIET policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4', 'riscv64': '4', 's390x': '4'}> +CONFIG_MESSAGE_LOGLEVEL_DEFAULT policy<{'amd64': '4', 'arm64': '4', 'armhf': '4', 'ppc64el': '4', 'riscv64': '4', 's390x': '4'}> +CONFIG_BOOT_PRINTK_DELAY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_DYNAMIC_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DYNAMIC_DEBUG_CORE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYMBOLIC_ERRNAME policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEBUG_BUGVERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Library routines +CONFIG_RAID6_PQ_BENCHMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CORDIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_PRIME_NUMBERS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_INDIRECT_PIO policy<{'arm64': 'y'}> +CONFIG_CRC_CCITT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC_T10DIF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC_ITU_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_CRC32 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRC64 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRC7 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'y', 's390x': 'm'}> +CONFIG_LIBCRC32C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CRC8 policy<{'amd64': 'm', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RANDOM32_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZLIB_DFLTCC policy<{'s390x': 'y'}> +CONFIG_DMA_RESTRICTED_POOL policy<{'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'armhf': '-', 'riscv64': 'y'}> +CONFIG_DMA_API_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DMA_MAP_BENCHMARK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CPUMASK_OFFSTACK policy<{'amd64': 'y'}> +CONFIG_GLOB_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IRQ_POLL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PARMAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OBJAGG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_ZLIB_DFLTCC mark note + +# Menu: Library routines >> CRC32 implementation +CONFIG_CRC32_SLICEBY8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CRC32_SLICEBY4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRC32_SARWATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CRC32_BIT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Library routines >> DMA Contiguous Memory Allocator +CONFIG_DMA_CMA policy<{'arm64': 'y', 'armhf': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_DMA_PERNUMA_CMA policy<{'arm64': 'y', 'armhf': 'n', 'riscv64': 'y', 's390x': '-'}> +CONFIG_CMA_SIZE_MBYTES policy<{'arm64': '32', 'armhf': '32', 'riscv64': '32'}> +CONFIG_CMA_ALIGNMENT policy<{'arm64': '8', 'armhf': '8', 'riscv64': '8'}> +# +CONFIG_DMA_CMA mark note note +CONFIG_CMA_SIZE_MBYTES mark note + +# Menu: Library routines >> DMA Contiguous Memory Allocator >> Selected region size +CONFIG_CMA_SIZE_SEL_MBYTES policy<{'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_CMA_SIZE_SEL_PERCENTAGE policy<{'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CMA_SIZE_SEL_MIN policy<{'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CMA_SIZE_SEL_MAX policy<{'arm64': 'n', 'armhf': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Library routines >> Select compiled-in fonts +CONFIG_FONTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_8x8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_8x16 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_6x11 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_7x14 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_PEARL_8x8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_ACORN_8x8 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_MINI_4x6 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_6x10 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_10x18 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_SUN8x16 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_SUN12x22 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FONT_TER16x32 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FONT_6x8 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Library routines >> XZ decompression support +CONFIG_XZ_DEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XZ_DEC_X86 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_POWERPC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_IA64 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_ARMTHUMB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_SPARC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_XZ_DEC_TEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +# +CONFIG_XZ_DEC note flag + +# Menu: Memory Management options +CONFIG_SPARSEMEM_VMEMMAP policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MEMORY_HOTPLUG policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'n', 's390x': 'n'}> +CONFIG_MEMORY_HOTREMOVE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_BALLOON_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_COMPACTION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PAGE_REPORTING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MIGRATION policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BOUNCE policy<{'armhf': 'y'}> +CONFIG_KSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_MMAP_MIN_ADDR policy<{'amd64': '65536', 'arm64': '32768', 'armhf': '32768', 'ppc64el': '65536', 'riscv64': '65536', 's390x': '65536'}> +CONFIG_MEMORY_FAILURE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_HWPOISON_INJECT policy<{'amd64': 'm', 'arm64': 'm', 'ppc64el': 'm'}> +CONFIG_TRANSPARENT_HUGEPAGE policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FRONTSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MEM_SOFT_DIRTY policy<{'amd64': 'y', 'ppc64el': 'n', 's390x': 'y'}> +CONFIG_ZPOOL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZBUD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_Z3FOLD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ZSMALLOC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZSMALLOC_STAT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEFERRED_STRUCT_PAGE_INIT policy<{'amd64': 'n', 'arm64': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IDLE_PAGE_TRACKING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZONE_DMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 's390x': 'y'}> +CONFIG_ZONE_DMA32 policy<{'amd64': 'y', 'arm64': 'y', 'riscv64': 'y'}> +CONFIG_ZONE_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_DEVICE_PRIVATE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y'}> +CONFIG_PERCPU_STATS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_GUP_TEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_READ_ONLY_THP_FOR_FS policy<{'amd64': 'n', 'arm64': 'n', 'armhf-generic-lpae': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_ZONE_DMA note +CONFIG_DEFAULT_MMAP_MIN_ADDR mark note note +CONFIG_TRANSPARENT_HUGEPAGE flag +CONFIG_MEM_SOFT_DIRTY flag +CONFIG_IDLE_PAGE_TRACKING flag note +CONFIG_PERCPU_STATS flag +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE mark note note + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) +CONFIG_ZSWAP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) >> Compressed cache for swap pages default allocator +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Compressed cache for swap pages (EXPERIMENTAL) >> Compressed cache for swap pages default compressor +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Contiguous Memory Allocator +CONFIG_CMA policy<{'amd64': 'n', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CMA_DEBUG policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CMA_DEBUGFS policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CMA_SYSFS policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CMA_AREAS policy<{'arm64': '7', 'armhf': '7', 'ppc64el': '7', 'riscv64': '7', 's390x': '7'}> +# +CONFIG_CMA mark note note + +# Menu: Memory Management options >> Data Access Monitoring +CONFIG_DAMON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Memory Management options >> Memory model +CONFIG_FLATMEM_MANUAL policy<{'armhf': 'n'}> +CONFIG_SPARSEMEM_MANUAL policy<{'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Memory Management options >> Transparent Hugepage Support sysfs defaults +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS policy<{'amd64': 'n', 'arm64': 'n', 'armhf-generic-lpae': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf-generic-lpae': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Memory setup >> Architecture: s390 +CONFIG_MAX_PHYSMEM_BITS policy<{'s390x': '46'}> + +# Menu: Networking support +CONFIG_NET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AF_KCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_CEPH_LIB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CEPH_LIB_PRETTYDEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CEPH_LIB_USE_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PSAMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_IFE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LWTUNNEL_BPF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FAILOVER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_ETHTOOL_NETLINK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Amateur Radio support +CONFIG_HAMRADIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> Amateur Radio support >> Amateur Radio AX.25 Level 2 protocol +CONFIG_AX25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_AX25_DAMA_SLAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_NETROM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ROSE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Amateur Radio support >> Amateur Radio AX.25 Level 2 protocol >> AX.25 network device drivers +CONFIG_MKISS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6PACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BPQETHER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BAYCOM_SER_FDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BAYCOM_SER_HDX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BAYCOM_PAR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BAYCOM_EPP policy<{'armhf': 'm'}> +CONFIG_YAM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Bluetooth subsystem support +CONFIG_BT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_LE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_MSFTEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_AOSPEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_SELFTEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth Classic (BR/EDR) features +CONFIG_BT_BREDR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_RFCOMM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_RFCOMM_TTY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_BNEP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_BNEP_MC_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_BNEP_PROTO_FILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_CMTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HIDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers +CONFIG_BT_HCIBTSDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIUART_LL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIBCM203X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIBPA10X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIBFUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIDTL1 policy<{'amd64': 'm'}> +CONFIG_BT_HCIBT3C policy<{'amd64': 'm'}> +CONFIG_BT_HCIBLUECARD policy<{'amd64': 'm'}> +CONFIG_BT_HCIVHCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_MRVL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_MRVL_SDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_MTKSDIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_MTKUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_QCOMSMD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_BT_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers >> HCI UART driver +CONFIG_BT_HCIUART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIUART_H4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_NOKIA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm'}> +CONFIG_BT_HCIUART_BCSP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_ATH3K policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_3WIRE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_INTEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_RTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_QCA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_AG6XX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIUART_MRVL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> Bluetooth subsystem support >> Bluetooth device drivers >> HCI USB driver +CONFIG_BT_HCIBTUSB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_BT_HCIBTUSB_AUTOSUSPEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIBTUSB_BCM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIBTUSB_MTK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_HCIBTUSB_RTL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BT_ATH3K policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAIF support +CONFIG_CAIF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CAIF_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_CAIF_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAIF_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support +CONFIG_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_CAN_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_BCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_GW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_J1939 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_ISOTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers +CONFIG_CAN_VCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_VXCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_SLCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_DEBUG_DEVICES policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support +CONFIG_CAN_DEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_CALC_BITTIMING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CAN_FLEXCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_GRCAN policy<{'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_JANZ_ICAN3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_KVASER_PCIEFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_TI_HECC policy<{'armhf': 'm'}> +CONFIG_CAN_XILINXCAN policy<{'arm64': 'm'}> +CONFIG_CAN_IFI_CANFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_MSCAN policy<{'ppc64el': 'm'}> +CONFIG_CAN_PEAK_PCIEFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_RCAR policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CAN_RCAR_CANFD policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_CAN_SOFTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_SOFTING_CS policy<{'amd64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch CC770 and Intel AN82527 devices +CONFIG_CAN_CC770 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_CC770_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_CC770_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch C_CAN/D_CAN devices +CONFIG_CAN_C_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_C_CAN_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_C_CAN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Bosch M_CAN support +CONFIG_CAN_M_CAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_M_CAN_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_M_CAN_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_M_CAN_TCAN4X5X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN SPI interfaces +CONFIG_CAN_HI311X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_MCP251X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_MCP251XFD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_MCP251XFD_SANITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> CAN USB interfaces +CONFIG_CAN_8DEV_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_EMS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_ESD_USB2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_ETAS_ES58X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_GS_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_KVASER_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_MCBA_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_PEAK_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_UCAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> CAN bus subsystem support >> CAN Device Drivers >> Platform CAN drivers with Netlink support >> Philips/NXP SJA1000 devices +CONFIG_CAN_SJA1000 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_EMS_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_EMS_PCMCIA policy<{'amd64': 'm'}> +CONFIG_CAN_F81601 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_KVASER_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_PEAK_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_PEAK_PCIEC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CAN_PEAK_PCMCIA policy<{'amd64': 'm'}> +CONFIG_CAN_PLX_PCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_SJA1000_ISA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_CAN_SJA1000_PLATFORM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> NFC subsystem support +CONFIG_NFC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NFC_DIGITAL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_NCI_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_NCI_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_HCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_SHDLC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> NFC subsystem support >> Near Field Communication (NFC) devices +CONFIG_NFC_TRF7970A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MEI_PHY policy<{'amd64': 'm'}> +CONFIG_NFC_SIM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_PORT100 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_VIRTUAL_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_FDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_FDP_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_PN544_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_PN544_MEI policy<{'amd64': 'm'}> +CONFIG_NFC_PN533_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_PN533_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_PN532_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MICROREAD_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MICROREAD_MEI policy<{'amd64': 'm'}> +CONFIG_NFC_MRVL_USB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MRVL_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MRVL_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_MRVL_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_ST21NFCA_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_ST_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_ST_NCI_SPI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_NXP_NCI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_NXP_NCI_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_S3FWRN5_I2C policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_S3FWRN82_UART policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NFC_ST95HF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Networking options +CONFIG_PACKET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PACKET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_UNIX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_UNIX_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TLS_DEVICE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TLS_TOE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XFRM_USER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XFRM_USER_COMPAT policy<{'amd64': 'm'}> +CONFIG_XFRM_INTERFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XFRM_SUB_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XFRM_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_XFRM_STATISTICS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_KEY_MIGRATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IUCV policy<{'s390x': 'y'}> +CONFIG_AFIUCV policy<{'s390x': 'm'}> +CONFIG_SMC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SMC_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_XDP_SOCKETS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_XDP_SOCKETS_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETWORK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NETWORK_PHY_TIMESTAMPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VLAN_8021Q_GVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_VLAN_8021Q_MVRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DECNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_DECNET_ROUTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_LLC2 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ATALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_X25 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_LAPB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PHONET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_MAC802154 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_DCB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DNS_RESOLVER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NETLINK_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_NSH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_HSR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_PCPU_DEV_REFCNT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_NET_PRIO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_CGROUP_NET_CLASSID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SMC mark note +CONFIG_SMC_DIAG mark note +CONFIG_NETWORK_PHY_TIMESTAMPING mark note + +# Menu: Networking support >> Networking options >> 6LoWPAN Support +CONFIG_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_6LOWPAN_DEBUGFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> Networking options >> 6LoWPAN Support >> Next Header and Generic Header Compression Support +CONFIG_6LOWPAN_NHC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_DEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_FRAGMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_HOP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_MOBILITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_NHC_UDP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_HOP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_6LOWPAN_GHC_UDP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_6LOWPAN_GHC_ICMPV6 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_DEST policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> Networking options >> 802.1d Ethernet Bridging +CONFIG_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_IGMP_SNOOPING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_VLAN_FILTERING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_MRP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_CFM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> Appletalk interfaces support +CONFIG_DEV_APPLETALK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IPDDP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +# +CONFIG_IPDDP mark note + +# Menu: Networking support >> Networking options >> Asynchronous Transfer Mode (ATM) +CONFIG_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_ATM_CLIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_CLIP_NO_ICMP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_ATM_LANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_MPOA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_BR2684 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_ATM_BR2684_IPFILTER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> Networking options >> B.A.T.M.A.N. Advanced Meshing Protocol +CONFIG_BATMAN_ADV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_BATMAN_ADV_BATMAN_V policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_BATMAN_ADV_BLA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BATMAN_ADV_DAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BATMAN_ADV_NC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BATMAN_ADV_MCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_BATMAN_ADV_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_BATMAN_ADV_TRACING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> + +# Menu: Networking support >> Networking options >> IEEE Std 802.15.4 Low-Rate Wireless Personal Area Networks support +CONFIG_IEEE802154 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_IEEE802154_NL802154_EXPERIMENTAL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': '-'}> +CONFIG_IEEE802154_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_IEEE802154_6LOWPAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Networking options >> MultiProtocol Label Switching +CONFIG_MPLS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_MPLS_GSO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MPLS_ROUTING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_MPLS_IPTUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) +CONFIG_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BRIDGE_NETFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration +CONFIG_NETFILTER_INGRESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NETFILTER_NETLINK_HOOK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_ACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_SYSLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_FLOW_TABLE_INET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter Xtables support (required for ip_tables) +CONFIG_NETFILTER_XTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XTABLES_COMPAT policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': '-', 's390x': 'y'}> +CONFIG_NETFILTER_XT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_AUDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CHECKSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CLASSIFY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_HMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_IDLETIMER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_LED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> +CONFIG_NETFILTER_XT_TARGET_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NFQUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_NOTRACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NETFILTER_XT_TARGET_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TEE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TRACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_SECMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CLUSTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_COMMENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNBYTES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLABEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CONNTRACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_CPU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DEVGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_DSCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPRANGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_IPVS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_L2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LENGTH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_MULTIPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_NFACCT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_OWNER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_POLICY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PHYSDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_QUOTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RATEEST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_REALM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_RECENT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STATISTIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_STRING policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TCPMSS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_TIME policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_XT_MATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter connection tracking support +CONFIG_NF_CONNTRACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_SECMARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_ZONES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_PROCFS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_NF_CONNTRACK_EVENTS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMEOUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_TIMESTAMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_LABELS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_DCCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_SCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CT_PROTO_UDPLITE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_CONNTRACK_AMANDA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_H323 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_IRC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_NETBIOS_NS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SNMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_PPTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SANE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CONNTRACK_TFTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_TIMEOUT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_CT_NETLINK_HELPER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NETFILTER_NETLINK_GLUE_CT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# +CONFIG_NF_CONNTRACK_PROCFS flag + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter nf_tables support +CONFIG_NF_TABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_INET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFT_NUMGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FLOW_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_CONNLIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_MASQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_REDIR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_OBJREF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_QUEUE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_QUOTA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_COMPAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_HASH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_INET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_XFRM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_SOCKET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_OSF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_TPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_FLOW_TABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Core Netfilter Configuration >> Netfilter nf_tables support >> Netfilter nf_tables netdev tables support +CONFIG_NF_TABLES_NETDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_DUP_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_DUP_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FWD_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_REJECT_NETDEV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> DECnet: Netfilter Configuration +CONFIG_DECNET_NF_GRABULATOR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Ethernet Bridge nf_tables support +CONFIG_NF_TABLES_BRIDGE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_BRIDGE_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> Ethernet Bridge tables (ebtables) support +CONFIG_BRIDGE_NF_EBTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_BROUTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_T_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_802_3 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_AMONG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_IP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LIMIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_PKTTYPE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_STP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_ARPREPLY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_DNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_MARK_T policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_SNAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_LOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_BRIDGE_EBT_NFLOG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP set support +CONFIG_IP_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_MAX policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'ppc64el': '256', 'riscv64': '256', 's390x': '256'}> +CONFIG_IP_SET_BITMAP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_IPMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_BITMAP_PORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_IPMAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_MAC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORTNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETNET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETPORT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_HASH_NETIFACE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_SET_LIST_SET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP virtual server support +CONFIG_IP_VS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IP_VS_TAB_BITS policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 'riscv64': '12', 's390x': '12'}> +CONFIG_IP_VS_PROTO_TCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_ESP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_AH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PROTO_SCTP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_RR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_WLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_FO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_OVF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_LBLCR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_DH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_MH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_SED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_TWOS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IP_VS_SH_TAB_BITS policy<{'amd64': '8', 'arm64': '8', 'armhf': '8', 'ppc64el': '8', 'riscv64': '8', 's390x': '8'}> +CONFIG_IP_VS_MH_TAB_INDEX policy<{'amd64': '12', 'arm64': '12', 'armhf': '12', 'ppc64el': '12', 'riscv64': '12', 's390x': '12'}> +CONFIG_IP_VS_FTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_VS_NFCT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_VS_PE_SIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration +CONFIG_NF_SOCKET_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TPROXY_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_ARP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NF_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_ARP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_ARP_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_NAT_SNMP_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV4 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFT_DUP_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_IPV4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) +CONFIG_IP_NF_IPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_MATCH_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) >> Packet mangling +CONFIG_IP_NF_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_CLUSTERIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_ECN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_TTL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IP: Netfilter Configuration >> IP tables support (required for filtering/masq/NAT) >> iptables NAT support +CONFIG_IP_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_NETMAP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP_NF_TARGET_REDIRECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration +CONFIG_NF_SOCKET_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TPROXY_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_REJECT_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_LOG_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NF_TABLES_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NFT_DUP_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NFT_FIB_IPV6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network packet filtering framework (Netfilter) >> IPv6: Netfilter Configuration >> IP6 tables support (required for filtering) +CONFIG_IP6_NF_IPTABLES policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_EUI64 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_FRAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_OPTS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_IPV6HEADER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_MH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RPFILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_RT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MATCH_SRH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_HL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_FILTER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_REJECT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_SYNPROXY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_MANGLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_RAW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_SECURITY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_MASQUERADE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IP6_NF_TARGET_NPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Network testing +CONFIG_NET_PKTGEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_DROP_MONITOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_NET_DROP_MONITOR note + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing +CONFIG_NET_SCHED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_SCH_CBQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HTB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HFSC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ATM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_SCH_PRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MULTIQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_RED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFB policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TEQL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TBF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CBS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ETF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_TAPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_GRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DSMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_NETEM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_DRR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_MQPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_SKBPRIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CHOKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_QFQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ_CODEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_CAKE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_HHF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_FQ_PIE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_INGRESS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_PLUG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_SCH_ETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BASIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_TCINDEX policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 'riscv64': '-', 's390x': '-'}> +CONFIG_NET_CLS_ROUTE4 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_CLS_U32_PERF policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_CLS_U32_MARK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_CLS_RSVP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_RSVP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOW policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_CGROUP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_FLOWER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_CLS_MATCHALL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Actions +CONFIG_NET_CLS_ACT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_POLICE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_GACT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_GACT_PROB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_ACT_MIRRED policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SAMPLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_IPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_NAT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_PEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SIMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SKBEDIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CSUM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_MPLS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_VLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_BPF policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CONNMARK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CTINFO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_SKBMOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_TUNNEL_KEY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_CT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_ACT_GATE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_TC_SKB_EXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Actions >> Inter-FE action based on IETF ForCES InterFE LFB +CONFIG_NET_ACT_IFE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Allow override default queue discipline +CONFIG_NET_SCH_DEFAULT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Allow override default queue discipline >> Default queuing discipline + +# Menu: Networking support >> Networking options >> QoS and/or fair queueing >> Extended Matches +CONFIG_NET_EMATCH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_EMATCH_STACK policy<{'amd64': '32', 'arm64': '32', 'armhf': '32', 'ppc64el': '32', 'riscv64': '32', 's390x': '32'}> +CONFIG_NET_EMATCH_CMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_NBYTE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_U32 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_META policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_TEXT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_CANID policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_EMATCH_IPSET policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_EMATCH_IPT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Qualcomm IPC Router support +CONFIG_QRTR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_QRTR_SMD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QRTR_TUN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_QRTR_MHI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking +CONFIG_INET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_MULTICAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_IPIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_DEMUX policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_IPGRE_BROADCAST policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SYN_COOKIES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_IPVTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_FOU policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_FOU_IP_TUNNELS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INET_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_ESP_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_ESPINTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INET_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_MD5SIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NETLABEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MPTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_MPTCP_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_SWITCHDEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_L3_MASTER_DEV policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NET_NCSI policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NCSI_OEM_CMD_GET_MAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NCSI_OEM_CMD_KEEP_PHY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BPF_STREAM_PARSER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SYN_COOKIES mark +CONFIG_NET_SWITCHDEV mark note note +CONFIG_NET_SWITCHDEV mark note note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> BPF based packet filtering framework (BPFILTER) +CONFIG_BPFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_BPFILTER_UMH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Distributed Switch Architecture +CONFIG_NET_DSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'n'}> +CONFIG_NET_DSA_TAG_AR9331 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_BRCM policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_BRCM_LEGACY policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_BRCM_PREPEND policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_HELLCREEK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_GSWIP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_DSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_EDSA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_MTK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_KSZ policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_RTL4_A policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_OCELOT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_OCELOT_8021Q policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_QCA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_LAN9303 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_SJA1105 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_TRAILER policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NET_DSA_TAG_XRS700X policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> INET: socket monitoring interface +CONFIG_INET_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_UDP_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_RAW_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET_DIAG_DESTROY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: advanced router +CONFIG_IP_ADVANCED_ROUTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_FIB_TRIE_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_MULTIPATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_ROUTE_VERBOSE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: kernel level autoconfiguration +CONFIG_IP_PNP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_IP_PNP note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> IP: multicast routing +CONFIG_IP_MROUTE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_PIMSM_V1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IP_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Layer Two Tunneling Protocol (L2TP) +CONFIG_L2TP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_L2TP_DEBUGFS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_L2TP_V3 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_L2TP_IP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_L2TP_ETH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> Open vSwitch +CONFIG_OPENVSWITCH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_VXLAN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_OPENVSWITCH_GENEVE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> TCP: advanced congestion control +CONFIG_TCP_CONG_ADVANCED policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_BIC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CUBIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TCP_CONG_WESTWOOD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HSTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_HYBLA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VEGAS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_NV policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_SCALABLE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_LP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_VENO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_YEAH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_ILLINOIS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_DCTCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_CDG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TCP_CONG_BBR policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> TCP: advanced congestion control >> Default TCP congestion control +CONFIG_DEFAULT_CUBIC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_RENO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol +CONFIG_IP_DCCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol >> DCCP CCIDs Configuration +CONFIG_IP_DCCP_CCID2_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IP_DCCP_CCID3 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +# +CONFIG_IP_DCCP_CCID3 flag + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The DCCP Protocol >> DCCP Kernel Hacking +CONFIG_IP_DCCP_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The IPv6 protocol +CONFIG_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTER_PREF policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_ROUTE_INFO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_OPTIMISTIC_DAD policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_INET6_AH policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET6_ESP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET6_ESP_OFFLOAD policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_INET6_ESPINTCP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INET6_IPCOMP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_MIP6 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_ILA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_VTI policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_SIT_6RD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_TUNNEL policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_GRE policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_IPV6_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_SUBTREES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_PIMSM_V2 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_SEG6_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_SEG6_HMAC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IPV6_RPL_LWTUNNEL policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IPV6_IOAM6_LWTUNNEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_IPV6_OPTIMISTIC_DAD flag +CONFIG_IPV6 mark note + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The Reliable Datagram Sockets Protocol +CONFIG_RDS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RDS_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RDS_TCP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_RDS_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The SCTP Protocol +CONFIG_IP_SCTP policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_SCTP_DBG_OBJCNT policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SCTP_COOKIE_HMAC_MD5 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCTP_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SCTP_DBG_OBJCNT flag + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The SCTP Protocol >> Default SCTP cookie HMAC encoding +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Networking support >> Networking options >> TCP/IP networking >> The TIPC Protocol +CONFIG_TIPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_TIPC_MEDIA_IB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TIPC_MEDIA_UDP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TIPC_CRYPTO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TIPC_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> + +# Menu: Networking support >> Networking options >> Virtual Socket protocol +CONFIG_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VSOCKETS_DIAG policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VSOCKETS_LOOPBACK policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_VMWARE_VMCI_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> +CONFIG_VIRTIO_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_HYPERV_VSOCKETS policy<{'amd64': 'm', 'arm64': 'm'}> + +# Menu: Networking support >> Plan 9 Resource Sharing Support (9P2000) +CONFIG_NET_9P policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_9P_VIRTIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_9P_XEN policy<{'amd64': 'm', 'arm64': 'm', 'armhf': '-'}> +CONFIG_NET_9P_RDMA policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_NET_9P_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_NET_9P note + +# Menu: Networking support >> RF switch subsystem support +CONFIG_RFKILL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_RFKILL_INPUT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_RFKILL_GPIO policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': '-'}> + +# Menu: Networking support >> RxRPC session sockets +CONFIG_AF_RXRPC policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +CONFIG_AF_RXRPC_IPV6 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_AF_RXRPC_INJECT_LOSS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_AF_RXRPC_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_RXKAD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Networking support >> Wireless +CONFIG_WIRELESS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_LIB80211_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) +CONFIG_MAC80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_MAC80211_RC_MINSTREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MAC80211_MESH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MAC80211_LEDS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MAC80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_MAC80211_MESSAGE_TRACING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) >> Default rate control algorithm +CONFIG_MAC80211_RC_DEFAULT_MINSTREL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Networking support >> Wireless >> Generic IEEE 802.11 Networking Stack (mac80211) >> Select mac80211 debugging features +CONFIG_MAC80211_DEBUG_MENU policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_MAC80211_STA_HASH_MAX_SIZE policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0'}> + +# Menu: Networking support >> Wireless >> cfg80211 - wireless configuration API +CONFIG_CFG80211 policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm'}> +CONFIG_NL80211_TESTMODE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_CFG80211_DEVELOPER_WARNINGS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_CFG80211_DEFAULT_PS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CFG80211_DEBUGFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CFG80211_CRDA_SUPPORT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CFG80211_WEXT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +# +CONFIG_CFG80211_WEXT flag + +# Menu: Networking support >> Wireless >> cfg80211 - wireless configuration API >> cfg80211 certification onus +CONFIG_CFG80211_CERTIFICATION_ONUS policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n'}> +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> + +# Menu: Platform selection +CONFIG_ARCH_ACTIONS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_SUNXI policy<{'arm64': 'y', 'armhf': 'n'}> +CONFIG_ARCH_ALPINE policy<{'arm64': 'n', 'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_BCM2835 policy<{'arm64': 'y'}> +CONFIG_ARCH_BERLIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_BRCMSTB policy<{'arm64': 'y'}> +CONFIG_ARCH_EXYNOS policy<{'arm64': 'n', 'armhf': 'y'}> +CONFIG_ARCH_HISI policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MEDIATEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MESON policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MVEBU policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_MXC policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_QCOM policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_REALTEK policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_RENESAS policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_ROCKCHIP policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_INTEL_SOCFPGA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_TEGRA policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARCH_UNIPHIER policy<{'arm64': 'n', 'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_VEXPRESS policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_ARCH_ROCKCHIP note note + +# Menu: Platform selection >> Architecture: arm64 +CONFIG_ARCH_APPLE policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM4908 policy<{'arm64': 'y'}> +CONFIG_ARCH_BCM_IPROC policy<{'arm64': 'y'}> +CONFIG_ARCH_BITMAIN policy<{'arm64': 'y'}> +CONFIG_ARCH_SPARX5 policy<{'arm64': 'y'}> +CONFIG_ARCH_K3 policy<{'arm64': 'y'}> +CONFIG_ARCH_LAYERSCAPE policy<{'arm64': 'y'}> +CONFIG_ARCH_LG1K policy<{'arm64': 'y'}> +CONFIG_ARCH_KEEMBAY policy<{'arm64': 'y'}> +CONFIG_ARCH_S32 policy<{'arm64': 'y'}> +CONFIG_ARCH_SEATTLE policy<{'arm64': 'y'}> +CONFIG_ARCH_SYNQUACER policy<{'arm64': 'y'}> +CONFIG_ARCH_SPRD policy<{'arm64': 'y'}> +CONFIG_ARCH_THUNDER policy<{'arm64': 'y'}> +CONFIG_ARCH_THUNDER2 policy<{'arm64': 'y'}> +CONFIG_ARCH_VISCONTI policy<{'arm64': 'y'}> +CONFIG_ARCH_XGENE policy<{'arm64': 'y'}> +CONFIG_ARCH_ZYNQMP policy<{'arm64': 'y'}> + +# Menu: Platform type +CONFIG_ARCH_RV32I policy<{'riscv64': 'n'}> +CONFIG_ARCH_RV64I policy<{'riscv64': 'y'}> +CONFIG_CMODEL_MEDLOW policy<{'riscv64': 'n'}> +CONFIG_CMODEL_MEDANY policy<{'riscv64': 'y'}> +CONFIG_TUNE_GENERIC policy<{'riscv64': 'y'}> +CONFIG_RISCV_ISA_C policy<{'riscv64': 'y'}> +CONFIG_FPU policy<{'riscv64': 'y'}> + +# Menu: Power management and ACPI options +CONFIG_SUSPEND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SUSPEND_FREEZER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_SUSPEND_SKIP_SYNC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_HIBERNATION policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'y', 'ppc64el': 'n'}> +CONFIG_HIBERNATION_SNAPSHOT_DEV policy<{'amd64': 'y', 'armhf': 'y'}> +CONFIG_PM_STD_PARTITION policy<{'amd64': '""', 'armhf': '""'}> +CONFIG_PM_AUTOSLEEP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_PM_WAKELOCKS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_WAKELOCKS_LIMIT policy<{'amd64': '100', 'arm64': '100', 'armhf': '100', 'ppc64el': '100'}> +CONFIG_PM_WAKELOCKS_GC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n'}> +CONFIG_PM_TRACE_RTC policy<{'amd64': 'y'}> +CONFIG_APM_EMULATION policy<{'armhf': 'n'}> +CONFIG_WQ_POWER_EFFICIENT_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ENERGY_MODEL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_KVM_GUEST policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_INTEL_IDLE policy<{'amd64': 'y'}> +# +CONFIG_HIBERNATION flag +CONFIG_HIBERNATION mark note +CONFIG_PM mark note + +# Menu: Power management and ACPI options >> 512x-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 52xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 82xx-based boards (PQ II) >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 83xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 86xx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> 8xx Machine Type >> Architecture: powerpc + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support +# + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> ACPI Platform Error Interface (APEI) + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> Intel DPTF (Dynamic Platform and Thermal Framework) Support + +# Menu: Power management and ACPI options >> ACPI (Advanced Configuration and Power Interface) Support >> PMIC (Power Management Integrated Circuit) operation region support + +# Menu: Power management and ACPI options >> APM (Advanced Power Management) BIOS support >> Architecture: x86 +# +CONFIG_APM flag + +# Menu: Power management and ACPI options >> Architecture: arm + +# Menu: Power management and ACPI options >> Architecture: arm64 + +# Menu: Power management and ACPI options >> Architecture: powerpc +CONFIG_SCOM_DEBUGFS policy<{'ppc64el': 'y'}> +CONFIG_EPAPR_PARAVIRT policy<{'ppc64el': 'y'}> +CONFIG_PPC_OF_BOOT_TRAMPOLINE policy<{'ppc64el': 'y'}> +CONFIG_PPC_DT_CPU_FTRS policy<{'ppc64el': 'y'}> +CONFIG_UDBG_RTAS_CONSOLE policy<{'ppc64el': 'n'}> +CONFIG_MPIC_MSGR policy<{'ppc64el': 'n'}> +CONFIG_RTAS_PROC policy<{'ppc64el': 'y'}> +CONFIG_RTAS_FLASH policy<{'ppc64el': 'm'}> +CONFIG_QE_GPIO policy<{'ppc64el': 'y'}> +CONFIG_GEN_RTC policy<{'ppc64el': 'y'}> +CONFIG_PPC_POWERNV policy<{'ppc64el': 'y'}> +CONFIG_OPAL_PRD policy<{'ppc64el': 'm'}> +CONFIG_PPC_MEMTRACE policy<{'ppc64el': 'y'}> +CONFIG_PPC_VAS policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> Architecture: x86 + +# Menu: Power management and ACPI options >> CPU Frequency scaling + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling +CONFIG_CPU_FREQ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_STAT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_PERFORMANCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_POWERSAVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_USERSPACE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_ONDEMAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_CONSERVATIVE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_GOV_SCHEDUTIL policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_X86_AMD_PSTATE policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_PSTATE policy<{'amd64': 'y'}> +CONFIG_X86_PCC_CPUFREQ policy<{'amd64': 'y'}> +CONFIG_X86_SPEEDSTEP_CENTRINO policy<{'amd64': 'y'}> +CONFIG_X86_P4_CLOCKMOD policy<{'amd64': 'm'}> +CONFIG_ACPI_CPPC_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ACPI_CPPC_CPUFREQ_FIE policy<{'arm64': 'y'}> +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM policy<{'arm64': 'm', 'armhf': '-'}> +CONFIG_ARM_SCPI_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_IMX6Q_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_MEDIATEK_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_MEDIATEK_CPUFREQ_HW policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_OMAP2PLUS_CPUFREQ policy<{'armhf': 'y'}> +CONFIG_ARM_QCOM_CPUFREQ_NVMEM policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_QCOM_CPUFREQ_HW policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_RASPBERRYPI_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_SCMI_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA186_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA194_CPUFREQ policy<{'arm64': 'm'}> +CONFIG_ARM_TI_CPUFREQ policy<{'armhf': 'y'}> +CONFIG_POWERNV_CPUFREQ policy<{'ppc64el': 'y'}> +CONFIG_QORIQ_CPUFREQ policy<{'arm64': 'm'}> +# +CONFIG_CPU_FREQ_STAT note +CONFIG_CPU_FREQ_GOV_PERFORMANCE note +CONFIG_CPU_FREQ_GOV_POWERSAVE note +CONFIG_CPU_FREQ_GOV_USERSPACE note +CONFIG_CPU_FREQ_GOV_ONDEMAND note +CONFIG_CPU_FREQ_GOV_CONSERVATIVE note +CONFIG_X86_PCC_CPUFREQ note +CONFIG_X86_SPEEDSTEP_CENTRINO note +CONFIG_X86_SPEEDSTEP_ICH note +CONFIG_X86_SPEEDSTEP_SMI note +CONFIG_X86_CPUFREQ_NFORCE2 note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> ACPI Processor P-States driver +CONFIG_X86_ACPI_CPUFREQ policy<{'amd64': 'y'}> +CONFIG_X86_ACPI_CPUFREQ_CPB policy<{'amd64': 'y'}> +CONFIG_X86_POWERNOW_K8 policy<{'amd64': 'y'}> +CONFIG_X86_AMD_FREQ_SENSITIVITY policy<{'amd64': 'm'}> +# +CONFIG_X86_ACPI_CPUFREQ note +CONFIG_X86_POWERNOW_K8 note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL) + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> Default CPUFreq governor +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE policy<{'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL policy<{'amd64': 'y', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE note + +# Menu: Power management and ACPI options >> CPU Frequency scaling >> CPU Frequency scaling >> Generic DT based cpufreq driver +CONFIG_CPUFREQ_DT policy<{'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_ARM_ARMADA_37XX_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_ARMADA_8K_CPUFREQ policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_HIGHBANK_CPUFREQ policy<{'armhf': 'm'}> +CONFIG_ARM_IMX_CPUFREQ_DT policy<{'arm64': 'm', 'armhf': 'm'}> +CONFIG_ARM_TEGRA20_CPUFREQ policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_TEGRA124_CPUFREQ policy<{'arm64': 'y', 'armhf': 'y'}> +# +CONFIG_CPUFREQ_DT note + +# Menu: Power management and ACPI options >> CPU Idle + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support +CONFIG_CPU_IDLE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_IDLE_GOV_LADDER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_IDLE_GOV_MENU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_IDLE_GOV_TEO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_CPU_IDLE_GOV_HALTPOLL policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_HALTPOLL_CPUIDLE policy<{'amd64': 'm'}> + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> ARM CPU Idle Drivers +CONFIG_ARM_CPUIDLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_PSCI_CPUIDLE policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN policy<{'arm64': 'y', 'armhf': 'y'}> +CONFIG_ARM_BIG_LITTLE_CPUIDLE policy<{'armhf': 'y'}> +CONFIG_ARM_HIGHBANK_CPUIDLE policy<{'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_ARM_EXYNOS_CPUIDLE policy<{'armhf': 'n'}> +CONFIG_ARM_MVEBU_V7_CPUIDLE policy<{'armhf': 'y'}> +CONFIG_ARM_TEGRA_CPUIDLE policy<{'armhf': 'n'}> +CONFIG_ARM_QCOM_SPM_CPUIDLE policy<{'armhf': 'y'}> +# +CONFIG_ARM_HIGHBANK_CPUIDLE note + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> MIPS CPU Idle Drivers + +# Menu: Power management and ACPI options >> CPU Idle >> CPU idle PM support >> POWERPC CPU Idle Drivers +CONFIG_PSERIES_CPUIDLE policy<{'ppc64el': 'y'}> +CONFIG_POWERNV_CPUIDLE policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> CPUIdle driver >> Architecture: powerpc + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> ARM CPU Idle Drivers +# + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> MIPS CPU Idle Drivers + +# Menu: Power management and ACPI options >> CPUIdle driver >> CPU Idle >> CPU idle PM support >> POWERPC CPU Idle Drivers + +# Menu: Power management and ACPI options >> Cell Broadband Engine options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Embedded 6xx/7xx/7xxx-based boards >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Book-E Machine Type >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Ethernet driver platform-specific options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Freescale Ethernet driver platform-specific options >> Second Ethernet channel >> Architecture: powerpc + +# Menu: Power management and ACPI options >> IBM pSeries & new (POWER5-based) iSeries +CONFIG_CMM policy<{'ppc64el': 'm', 's390x': 'y'}> +# +CONFIG_CMM flag + +# Menu: Power management and ACPI options >> IBM pSeries & new (POWER5-based) iSeries >> Architecture: powerpc +CONFIG_PPC_PSERIES policy<{'ppc64el': 'y'}> +CONFIG_PPC_SPLPAR policy<{'ppc64el': 'y'}> +CONFIG_DTL policy<{'ppc64el': 'y'}> +CONFIG_PSERIES_ENERGY policy<{'ppc64el': 'm'}> +CONFIG_IO_EVENT_IRQ policy<{'ppc64el': 'y'}> +CONFIG_LPARCFG policy<{'ppc64el': 'y'}> +CONFIG_PPC_SMLPAR policy<{'ppc64el': 'y'}> +CONFIG_HV_PERF_CTRS policy<{'ppc64el': 'y'}> +CONFIG_PAPR_SCM policy<{'ppc64el': 'm'}> +CONFIG_PPC_SVM policy<{'ppc64el': 'y'}> + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> 8xx advanced setup >> Architecture: powerpc + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> MPC8xx CPM Options >> Microcode patch selection >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PA Semi PWRficient options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PS3 Platform Options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> PS3 Platform Options >> PS3 Advanced configuration options >> Architecture: powerpc + +# Menu: Power management and ACPI options >> Power Management Debug Support +CONFIG_PM_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_ADVANCED_DEBUG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y'}> +CONFIG_PM_TEST_SUSPEND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +CONFIG_DPM_WATCHDOG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n'}> +# +CONFIG_PM_DEBUG flag + +# Menu: Power management and ACPI options >> Support for 47x variant >> Architecture: powerpc + +# Menu: Processor support +CONFIG_SMP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NR_CPUS policy<{'amd64': '8192', 'arm64': '256', 'armhf': '4', 'ppc64el': '2048', 'riscv64': '32', 's390x': '512'}> +# +CONFIG_NR_CPUS note + +# Menu: Processor support >> Architecture: powerpc +CONFIG_PPC_FPU policy<{'ppc64el': 'y'}> +CONFIG_ALTIVEC policy<{'ppc64el': 'y'}> +CONFIG_VSX policy<{'ppc64el': 'y'}> +CONFIG_PPC_RADIX_MMU policy<{'ppc64el': 'y'}> +CONFIG_PPC_RADIX_MMU_DEFAULT policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUEP policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUAP policy<{'ppc64el': 'y'}> +CONFIG_PPC_KUAP_DEBUG policy<{'ppc64el': 'n'}> +CONFIG_PMU_SYSFS policy<{'ppc64el': 'n'}> + +# Menu: Processor support >> CPU selection +CONFIG_GENERIC_CPU policy<{'amd64': 'y', 'ppc64el': 'y'}> + +# Menu: Processor support >> CPU selection >> Architecture: powerpc +CONFIG_POWER7_CPU policy<{'ppc64el': 'n'}> +CONFIG_POWER8_CPU policy<{'ppc64el': 'n'}> +CONFIG_POWER9_CPU policy<{'ppc64el': 'n'}> + +# Menu: Processor support >> Processor Type >> Architecture: powerpc +CONFIG_PPC_BOOK3S_64 policy<{'ppc64el': 'y'}> +CONFIG_PPC_BOOK3E_64 policy<{'ppc64el': 'n'}> + +# Menu: Processor type and features +CONFIG_NUMA policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KEXEC_FILE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KEXEC_SIG policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_ARCH_RANDOM policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RELOCATABLE policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_RANDOMIZE_BASE policy<{'amd64': 'y', 'arm64': 'y', 's390x': 'y'}> +CONFIG_SCHED_MC policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 's390x': 'y'}> +CONFIG_SCHED_SMT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HOTPLUG_CPU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_NODES_SHIFT policy<{'amd64': '10', 'arm64': '6', 'ppc64el': '8', 'riscv64': '2', 's390x': '1'}> +CONFIG_PARAVIRT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n'}> +CONFIG_PARAVIRT_TIME_ACCOUNTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n'}> +CONFIG_XEN policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'n'}> +CONFIG_HIGHPTE policy<{'armhf': 'y'}> +CONFIG_COMPAT_VDSO policy<{'amd64': 'n'}> +CONFIG_HIGHMEM policy<{'armhf': 'y'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64-generic': '13', 'arm64-generic-64k': '14', 'armhf-generic': '12', 'armhf-generic-lpae': '11', 'ppc64el': '9'}> +# +CONFIG_RELOCATABLE flag +CONFIG_HOTPLUG_CPU flag +CONFIG_NUMA note note +CONFIG_COMPAT_VDSO mark + +# Menu: Processor type and features >> ARM errata workarounds via the alternatives framework >> Architecture: arm64 +CONFIG_ARM64_ERRATUM_826319 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_827319 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_824069 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_819472 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_832075 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_834220 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_845719 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_843419 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1024718 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1418040 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1165522 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1319367 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1530923 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1286807 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1463225 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1542419 policy<{'arm64': 'y'}> +CONFIG_ARM64_ERRATUM_1508412 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_22375 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_23144 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_23154 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_27456 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_ERRATUM_30115 policy<{'arm64': 'y'}> +CONFIG_CAVIUM_TX2_ERRATUM_219 policy<{'arm64': 'y'}> +CONFIG_FUJITSU_ERRATUM_010001 policy<{'arm64': 'y'}> +CONFIG_HISILICON_ERRATUM_161600802 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_1003 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_1009 policy<{'arm64': 'y'}> +CONFIG_QCOM_QDF2400_ERRATUM_0065 policy<{'arm64': 'y'}> +CONFIG_QCOM_FALKOR_ERRATUM_E1041 policy<{'arm64': 'y'}> +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM policy<{'arm64': 'y'}> +CONFIG_SOCIONEXT_SYNQUACER_PREITS policy<{'arm64': 'y'}> +# +CONFIG_ARM64_ERRATUM_843419 mark note +CONFIG_QCOM_QDF2400_ERRATUM_0065 mark note + +# Menu: Processor type and features >> ARMv8.1 architectural features >> Architecture: arm64 +CONFIG_ARM64_HW_AFDBM policy<{'arm64': 'y'}> +CONFIG_ARM64_PAN policy<{'arm64': 'y'}> +CONFIG_ARM64_USE_LSE_ATOMICS policy<{'arm64': 'y'}> +# +CONFIG_ARM64_USE_LSE_ATOMICS mark note + +# Menu: Processor type and features >> ARMv8.2 architectural features >> Architecture: arm64 +CONFIG_ARM64_PMEM policy<{'arm64': 'y'}> +CONFIG_ARM64_RAS_EXTN policy<{'arm64': 'y'}> +CONFIG_ARM64_CNP policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.3 architectural features >> Architecture: arm64 +CONFIG_ARM64_PTR_AUTH policy<{'arm64': 'y'}> +CONFIG_ARM64_PTR_AUTH_KERNEL policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.4 architectural features >> Architecture: arm64 +CONFIG_ARM64_AMU_EXTN policy<{'arm64': 'y'}> +CONFIG_ARM64_TLB_RANGE policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.5 architectural features + +# Menu: Processor type and features >> ARMv8.5 architectural features >> Architecture: arm64 +CONFIG_ARM64_BTI policy<{'arm64': 'y'}> +CONFIG_ARM64_E0PD policy<{'arm64': 'y'}> +CONFIG_ARM64_MTE policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> ARMv8.7 architectural features >> Architecture: arm64 +CONFIG_ARM64_EPAN policy<{'arm64': 'y'}> + +# Menu: Processor type and features >> Architecture: arm +CONFIG_HAVE_ARM_ARCH_TIMER policy<{'armhf': 'y'}> +CONFIG_ARM_PSCI policy<{'armhf': 'y'}> +CONFIG_THUMB2_KERNEL policy<{'armhf': 'n'}> +CONFIG_ARM_PATCH_IDIV policy<{'armhf': 'y'}> +CONFIG_AEABI policy<{'armhf': 'y'}> +CONFIG_OABI_COMPAT policy<{'armhf': 'n'}> +CONFIG_CPU_SW_DOMAIN_PAN policy<{'armhf-generic': 'y'}> +CONFIG_ARM_MODULE_PLTS policy<{'armhf': 'y'}> +CONFIG_UACCESS_WITH_MEMCPY policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Architecture: arm64 +CONFIG_KEXEC_IMAGE_VERIFY_SIG policy<{'arm64': 'n'}> +CONFIG_UNMAP_KERNEL_AT_EL0 policy<{'arm64': 'y'}> +CONFIG_RODATA_FULL_DEFAULT_ENABLED policy<{'arm64': 'y'}> +CONFIG_ARM64_SW_TTBR0_PAN policy<{'arm64': 'y'}> +CONFIG_ARM64_TAGGED_ADDR_ABI policy<{'arm64': 'y'}> +CONFIG_ARM64_SVE policy<{'arm64': 'y'}> +CONFIG_ARM64_MODULE_PLTS policy<{'arm64': 'y'}> +CONFIG_ARM64_PSEUDO_NMI policy<{'arm64': 'y'}> +CONFIG_ARM64_DEBUG_PRIORITY_MASKING policy<{'arm64': 'n'}> +CONFIG_RANDOMIZE_MODULE_REGION_FULL policy<{'arm64': 'y'}> +# +CONFIG_KEXEC_IMAGE_VERIFY_SIG flag + +# Menu: Processor type and features >> Architecture: powerpc +CONFIG_PPC_TRANSACTIONAL_MEM policy<{'ppc64el': 'y'}> +CONFIG_PPC_UV policy<{'ppc64el': 'y'}> +CONFIG_LD_HEAD_STUB_CATCH policy<{'ppc64el': 'n'}> +CONFIG_PPC_QUEUED_SPINLOCKS policy<{'ppc64el': 'n'}> +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE policy<{'ppc64el': 'y'}> +CONFIG_RELOCATABLE_TEST policy<{'ppc64el': 'n'}> +CONFIG_FA_DUMP policy<{'ppc64el': 'y'}> +CONFIG_OPAL_CORE policy<{'ppc64el': 'n'}> +CONFIG_IRQ_ALL_CPUS policy<{'ppc64el': 'y'}> +CONFIG_THREAD_SHIFT policy<{'ppc64el': '14'}> +CONFIG_DATA_SHIFT policy<{'ppc64el': '24'}> +CONFIG_PPC_SUBPAGE_PROT policy<{'ppc64el': 'y'}> +CONFIG_PPC_PROT_SAO_LPAR policy<{'ppc64el': 'n'}> +CONFIG_PPC_DENORMALISATION policy<{'ppc64el': 'y'}> +CONFIG_EXTRA_TARGETS policy<{'ppc64el': '""'}> +CONFIG_PPC_MEM_KEYS policy<{'ppc64el': 'n'}> +CONFIG_PPC_SECURE_BOOT policy<{'ppc64el': 'y'}> +CONFIG_PPC_SECVAR_SYSFS policy<{'ppc64el': 'y'}> +CONFIG_PPC_RTAS_FILTER policy<{'ppc64el': 'y'}> +# +CONFIG_FA_DUMP note +CONFIG_PPC_MEM_KEYS flag note +CONFIG_PPC_SECURE_BOOT mark note note +CONFIG_PPC_SECVAR_SYSFS mark note + +# Menu: Processor type and features >> Architecture: s390 +CONFIG_KERNEL_NOBP policy<{'s390x': 'n'}> +CONFIG_EXPOLINE policy<{'s390x': 'y'}> +CONFIG_EXPOLINE_EXTERN policy<{'s390x': 'y'}> +CONFIG_SCHED_TOPOLOGY policy<{'s390x': 'y'}> + +# Menu: Processor type and features >> Architecture: x86 +CONFIG_X86_FEATURE_NAMES policy<{'amd64': 'y'}> +CONFIG_X86_X2APIC policy<{'amd64': 'y'}> +CONFIG_X86_MPPARSE policy<{'amd64': 'y'}> +CONFIG_RETPOLINE policy<{'amd64': 'y'}> +CONFIG_X86_CPU_RESCTRL policy<{'amd64': 'y'}> +CONFIG_X86_EXTENDED_PLATFORM policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_LPSS policy<{'amd64': 'y'}> +CONFIG_X86_AMD_PLATFORM_DEVICE policy<{'amd64': 'y'}> +CONFIG_IOSF_MBI policy<{'amd64': 'y'}> +CONFIG_IOSF_MBI_DEBUG policy<{'amd64': 'y'}> +CONFIG_SCHED_OMIT_FRAME_POINTER policy<{'amd64': 'y', 'ppc64el': 'y', 's390x': 'y'}> +CONFIG_HPET_TIMER policy<{'amd64': 'y'}> +CONFIG_GART_IOMMU policy<{'amd64': 'y'}> +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS policy<{'amd64': 'y'}> +CONFIG_X86_16BIT policy<{'amd64': 'y'}> +CONFIG_X86_VSYSCALL_EMULATION policy<{'amd64': 'y'}> +CONFIG_X86_IOPL_IOPERM policy<{'amd64': 'y'}> +CONFIG_X86_MSR policy<{'amd64': 'm'}> +CONFIG_X86_CPUID policy<{'amd64': 'm'}> +CONFIG_X86_5LEVEL policy<{'amd64': 'y'}> +CONFIG_X86_CPA_STATISTICS policy<{'amd64': 'n'}> +CONFIG_AMD_MEM_ENCRYPT policy<{'amd64': 'y'}> +CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT policy<{'amd64': 'n'}> +CONFIG_ARCH_MEMORY_PROBE policy<{'amd64': 'y', 'ppc64el': 'y'}> +CONFIG_X86_PMEM_LEGACY policy<{'amd64': 'y'}> +CONFIG_X86_CHECK_BIOS_CORRUPTION policy<{'amd64': 'y'}> +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK policy<{'amd64': 'y'}> +CONFIG_MTRR policy<{'amd64': 'y'}> +CONFIG_MTRR_SANITIZER policy<{'amd64': 'y'}> +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT policy<{'amd64': '1'}> +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT policy<{'amd64': '1'}> +CONFIG_X86_PAT policy<{'amd64': 'y'}> +CONFIG_X86_UMIP policy<{'amd64': 'y'}> +CONFIG_X86_KERNEL_IBT policy<{'amd64': 'n'}> +CONFIG_X86_X32_ABI policy<{'amd64': 'n'}> +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS policy<{'amd64': 'y'}> +CONFIG_X86_SGX policy<{'amd64': 'y'}> +CONFIG_EFI_STUB policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> +CONFIG_EFI_MIXED policy<{'amd64': 'y'}> +CONFIG_KEXEC_SIG_FORCE policy<{'amd64': 'n'}> +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG policy<{'amd64': 'y'}> +CONFIG_KEXEC_JUMP policy<{'amd64': 'y'}> +CONFIG_PHYSICAL_ALIGN policy<{'amd64': '0x200000'}> +CONFIG_RANDOMIZE_MEMORY policy<{'amd64': 'y'}> +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING policy<{'amd64': '0xa'}> +CONFIG_BOOTPARAM_HOTPLUG_CPU0 policy<{'amd64': 'n'}> +CONFIG_DEBUG_HOTPLUG_CPU0 policy<{'amd64': 'n'}> +CONFIG_CMDLINE_BOOL policy<{'amd64': 'n'}> +CONFIG_MODIFY_LDT_SYSCALL policy<{'amd64': 'y'}> +# +CONFIG_X86_KERNEL_IBT mark note +CONFIG_X86_LEGACY_VM86 note +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG flag note +CONFIG_MODIFY_LDT_SYSCALL flag note + +# Menu: Processor type and features >> CPU microcode loading support >> Architecture: x86 +CONFIG_MICROCODE policy<{'amd64': 'y'}> +CONFIG_MICROCODE_INTEL policy<{'amd64': 'y'}> +CONFIG_MICROCODE_AMD policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Endianness + +# Menu: Processor type and features >> Endianness >> Architecture: arm64 + +# Menu: Processor type and features >> Expoline default >> Architecture: s390 +CONFIG_EXPOLINE_OFF policy<{'s390x': 'n'}> +CONFIG_EXPOLINE_AUTO policy<{'s390x': 'y'}> +CONFIG_EXPOLINE_FULL policy<{'s390x': 'n'}> + +# Menu: Processor type and features >> High Memory Support >> Architecture: x86 + +# Menu: Processor type and features >> Kernel command line type + +# Menu: Processor type and features >> Kernel command line type >> Architecture: powerpc + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 +CONFIG_KUSER_HELPERS policy<{'arm64': 'y', 'armhf': 'y'}> +# + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 >> Architecture: arm64 + +# Menu: Processor type and features >> Kernel support for 32-bit EL0 >> Emulate deprecated/obsolete ARMv8 instructions >> Architecture: arm64 +CONFIG_ARMV8_DEPRECATED policy<{'arm64': 'y'}> +CONFIG_SWP_EMULATION policy<{'arm64': 'y'}> +CONFIG_CP15_BARRIER_EMULATION policy<{'arm64': 'y'}> +CONFIG_SETEND_EMULATION policy<{'arm64': 'y'}> +# +CONFIG_ARMV8_DEPRECATED mark note +CONFIG_SWP_EMULATION mark note +CONFIG_CP15_BARRIER_EMULATION mark note +CONFIG_SETEND_EMULATION mark note + +# Menu: Processor type and features >> Linux guest support >> Architecture: x86 +CONFIG_HYPERVISOR_GUEST policy<{'amd64': 'y'}> +CONFIG_XEN_PVHVM_GUEST policy<{'amd64': 'y'}> +CONFIG_ARCH_CPUIDLE_HALTPOLL policy<{'amd64': 'y'}> +CONFIG_PVH policy<{'amd64': 'y'}> +CONFIG_JAILHOUSE_GUEST policy<{'amd64': 'y'}> +CONFIG_ACRN_GUEST policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Architecture: x86 +CONFIG_PARAVIRT_DEBUG policy<{'amd64': 'n'}> +CONFIG_PARAVIRT_SPINLOCKS policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Xen guest support + +# Menu: Processor type and features >> Linux guest support >> Enable paravirtualization code >> Xen guest support >> Architecture: x86 +CONFIG_XEN_PV policy<{'amd64': 'y'}> +CONFIG_XEN_DOM0 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-'}> +CONFIG_XEN_512GB policy<{'amd64': 'y'}> +CONFIG_XEN_DEBUG_FS policy<{'amd64': 'n'}> +CONFIG_XEN_PVH policy<{'amd64': 'y'}> +# +CONFIG_XEN_512GB flag note + +# Menu: Processor type and features >> Machine Check / overheating reporting >> Architecture: x86 +CONFIG_X86_MCE policy<{'amd64': 'y'}> +CONFIG_X86_MCELOG_LEGACY policy<{'amd64': 'y'}> +CONFIG_X86_MCE_INTEL policy<{'amd64': 'y'}> +CONFIG_X86_MCE_AMD policy<{'amd64': 'y'}> +CONFIG_X86_MCE_INJECT policy<{'amd64': 'm'}> + +# Menu: Processor type and features >> Math emulation options >> Architecture: powerpc + +# Menu: Processor type and features >> Memory split +CONFIG_VMSPLIT_3G policy<{'armhf': 'y'}> +CONFIG_VMSPLIT_3G_OPT policy<{'armhf-generic': 'n'}> +CONFIG_VMSPLIT_2G policy<{'armhf': 'n'}> +CONFIG_VMSPLIT_1G policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Memory split >> Architecture: arm + +# Menu: Processor type and features >> Memory split >> Architecture: x86 + +# Menu: Processor type and features >> Page size >> Architecture: arm64 +CONFIG_ARM64_4K_PAGES policy<{'arm64-generic': 'y', 'arm64-generic-64k': 'n'}> +CONFIG_ARM64_16K_PAGES policy<{'arm64': 'n'}> +CONFIG_ARM64_64K_PAGES policy<{'arm64-generic': 'n', 'arm64-generic-64k': 'y'}> + +# Menu: Processor type and features >> Page size >> Architecture: powerpc +CONFIG_PPC_4K_PAGES policy<{'ppc64el': 'n'}> +CONFIG_PPC_64K_PAGES policy<{'ppc64el': 'y'}> + +# Menu: Processor type and features >> Performance monitoring >> Architecture: x86 +CONFIG_PERF_EVENTS_INTEL_UNCORE policy<{'amd64': 'y'}> +CONFIG_PERF_EVENTS_INTEL_RAPL policy<{'amd64': 'm'}> +CONFIG_PERF_EVENTS_INTEL_CSTATE policy<{'amd64': 'm'}> +CONFIG_PERF_EVENTS_AMD_POWER policy<{'amd64': 'n'}> +CONFIG_PERF_EVENTS_AMD_UNCORE policy<{'amd64': 'm'}> + +# Menu: Processor type and features >> Physical address space size >> Architecture: arm64 +CONFIG_ARM64_PA_BITS_48 policy<{'arm64': 'y'}> +CONFIG_ARM64_PA_BITS_52 policy<{'arm64-generic-64k': 'n'}> + +# Menu: Processor type and features >> Power Management Debug Support +# + +# Menu: Processor type and features >> Processor family + +# Menu: Processor type and features >> Processor family >> Architecture: x86 +CONFIG_MK8 policy<{'amd64': 'n'}> +CONFIG_MPSC policy<{'amd64': 'n'}> +CONFIG_MCORE2 policy<{'amd64': 'n'}> +CONFIG_MATOM policy<{'amd64': 'n'}> + +# Menu: Processor type and features >> Processor type >> Architecture: s390 +CONFIG_MARCH_Z10 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z196 policy<{'s390x': 'n'}> +CONFIG_MARCH_ZEC12 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z13 policy<{'s390x': 'y'}> +CONFIG_MARCH_Z14 policy<{'s390x': 'n'}> +CONFIG_MARCH_Z15 policy<{'s390x': 'n'}> + +# Menu: Processor type and features >> Support for extended (non-PC) x86 platforms >> Architecture: x86 +CONFIG_X86_NUMACHIP policy<{'amd64': 'y'}> +CONFIG_X86_VSMP policy<{'amd64': 'n'}> +CONFIG_X86_UV policy<{'amd64': 'y'}> +CONFIG_X86_GOLDFISH policy<{'amd64': 'n'}> +CONFIG_X86_INTEL_MID policy<{'amd64': 'n'}> +# +CONFIG_X86_UV mark note + +# Menu: Processor type and features >> Supported processor vendors >> Architecture: x86 +CONFIG_PROCESSOR_SELECT policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_INTEL policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_AMD policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_HYGON policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_CENTAUR policy<{'amd64': 'y'}> +CONFIG_CPU_SUP_ZHAOXIN policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Symmetric Multi-Processing +# + +# Menu: Processor type and features >> Symmetric Multi-Processing >> Architecture: arm +CONFIG_SMP_ON_UP policy<{'armhf': 'y'}> +CONFIG_ARM_CPU_TOPOLOGY policy<{'armhf': 'y'}> +CONFIG_MCPM policy<{'armhf': 'y'}> +CONFIG_BIG_LITTLE policy<{'armhf': 'y'}> +CONFIG_BL_SWITCHER policy<{'armhf': 'y'}> +CONFIG_BL_SWITCHER_DUMMY_IF policy<{'armhf': 'm'}> + +# Menu: Processor type and features >> Symmetric multi-processing support +# + +# Menu: Processor type and features >> Symmetric multi-processing support >> Architecture: x86 +CONFIG_MAXSMP policy<{'amd64': 'y'}> +CONFIG_SCHED_MC_PRIO policy<{'amd64': 'y'}> + +# Menu: Processor type and features >> Symmetric multi-processing support >> NUMA Memory Allocation and Scheduler Support +# + +# Menu: Processor type and features >> Symmetric multi-processing support >> NUMA Memory Allocation and Scheduler Support >> Architecture: x86 +CONFIG_NUMA_EMU policy<{'amd64': 'n'}> +CONFIG_AMD_NUMA policy<{'amd64': 'y'}> +CONFIG_X86_64_ACPI_NUMA policy<{'amd64': 'y'}> +# +CONFIG_NUMA_EMU note mark +CONFIG_NUMA_EMU note + +# Menu: Processor type and features >> TSX enable mode >> Architecture: x86 +CONFIG_X86_INTEL_TSX_MODE_OFF policy<{'amd64': 'y'}> +CONFIG_X86_INTEL_TSX_MODE_ON policy<{'amd64': 'n'}> +CONFIG_X86_INTEL_TSX_MODE_AUTO policy<{'amd64': 'n'}> + +# Menu: Processor type and features >> Timer frequency +CONFIG_HZ_100 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_HZ_250 policy<{'amd64-generic': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_HZ_300 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_HZ_1000 policy<{'amd64-generic': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Processor type and features >> Timer frequency >> Architecture: arm +CONFIG_HZ_200 policy<{'armhf': 'n'}> +CONFIG_HZ_500 policy<{'armhf': 'n'}> + +# Menu: Processor type and features >> Tune code generation >> Architecture: s390 +CONFIG_TUNE_DEFAULT policy<{'s390x': 'n'}> +CONFIG_TUNE_Z10 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z196 policy<{'s390x': 'n'}> +CONFIG_TUNE_ZEC12 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z13 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z14 policy<{'s390x': 'n'}> +CONFIG_TUNE_Z15 policy<{'s390x': 'y'}> + +# Menu: Processor type and features >> Virtual address space size >> Architecture: arm64 +CONFIG_ARM64_VA_BITS_39 policy<{'arm64-generic': 'n'}> +CONFIG_ARM64_VA_BITS_42 policy<{'arm64-generic-64k': 'n'}> +CONFIG_ARM64_VA_BITS_48 policy<{'arm64': 'y'}> +CONFIG_ARM64_VA_BITS_52 policy<{'arm64-generic-64k': 'n'}> +# +CONFIG_ARM64_VA_BITS_48 mark note + +# Menu: Processor type and features >> vsyscall table for legacy applications >> Architecture: x86 +CONFIG_LEGACY_VSYSCALL_XONLY policy<{'amd64': 'y'}> +CONFIG_LEGACY_VSYSCALL_NONE policy<{'amd64': 'n'}> +# +CONFIG_LEGACY_VSYSCALL_XONLY flag + +# Menu: Security options +CONFIG_SLS policy<{'amd64': 'y'}> +CONFIG_SECURITY_DMESG_RESTRICT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_PERF_EVENTS_RESTRICT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITYFS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PAGE_TABLE_ISOLATION policy<{'amd64': 'y'}> +CONFIG_INTEL_TXT policy<{'amd64': 'y'}> +CONFIG_HARDENED_USERCOPY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_HARDEN_BRANCH_HISTORY policy<{'armhf': 'y'}> +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY policy<{'arm64': 'y'}> +CONFIG_FORTIFY_SOURCE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'y'}> +CONFIG_STATIC_USERMODEHELPER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LSM policy<{'amd64': '"landlock,lockdown,yama,integrity,apparmor"', 'arm64': '"landlock,lockdown,yama,integrity,apparmor"', 'armhf': '"landlock,lockdown,yama,integrity,apparmor"', 'ppc64el': '"landlock,lockdown,yama,integrity,apparmor"', 'riscv64': '"landlock,lockdown,yama,integrity,apparmor"', 's390x': '"landlock,lockdown,yama,integrity,apparmor"'}> +# +CONFIG_SECURITY_DMESG_RESTRICT mark +CONFIG_LSM mark + +# Menu: Security options >> Enable access key retention support +CONFIG_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KEYS_REQUEST_CACHE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_PERSISTENT_KEYRINGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_TRUSTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ENCRYPTED_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KEY_DH_OPERATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_KEY_NOTIFICATIONS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models +CONFIG_SECURITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_INFINIBAND policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_NETWORK_XFRM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_PATH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LSM_MMAP_MIN_ADDR policy<{'amd64': '0', 'arm64': '0', 'armhf': '0', 'ppc64el': '0', 'riscv64': '0', 's390x': '0'}> +CONFIG_SECURITY_LOADPIN policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SECURITY_YAMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SAFESETID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LOCKDOWN_LSM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LOCK_DOWN_IN_SECURE_BOOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_LANDLOCK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SECURITY mark +CONFIG_LSM_MMAP_MIN_ADDR mark flag +CONFIG_SECURITY_YAMA mark +CONFIG_SECURITY_SAFESETID mark note +CONFIG_SECURITY_LOCKDOWN_LSM mark +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY mark +CONFIG_LOCK_DOWN_IN_SECURE_BOOT mark + +# Menu: Security options >> Enable different security models >> AppArmor support +CONFIG_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_APPARMOR_DEBUG policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem +CONFIG_INTEGRITY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_SIGNATURE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_AUDIT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> EVM support +CONFIG_EVM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EVM_ATTR_FSUUID policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EVM_EXTRA_SMACK_XATTRS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EVM_ADD_XATTRS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EVM_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_EVM_X509_PATH policy<{'ppc64el': '"/etc/keys/x509_evm.der"'}> +# +CONFIG_EVM note +CONFIG_EVM_ATTR_FSUUID note +CONFIG_EVM_LOAD_X509 note +CONFIG_EVM_X509_PATH note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Enable asymmetric keys support +CONFIG_INTEGRITY_ASYMMETRIC_KEYS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INTEGRITY_PLATFORM_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LOAD_PPC_KEYS policy<{'ppc64el': 'y'}> +CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_INTEGRITY_PLATFORM_KEYRING mark note +CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY mark note +CONFIG_LOAD_PPC_KEYS mark note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) +CONFIG_IMA policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_KEXEC policy<{'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y'}> +CONFIG_IMA_WRITE_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_READ_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_DISABLE_HTABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_IMA mark note +CONFIG_IMA_KEXEC mark note +CONFIG_IMA_WRITE_POLICY mark note +CONFIG_IMA_READ_POLICY mark note note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Appraise integrity measurements +CONFIG_IMA_APPRAISE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_APPRAISE_SIGNED_INIT policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': 'n', 's390x': '-'}> +CONFIG_IMA_ARCH_POLICY policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT policy<{'amd64': 'y', 'arm64': 'y', 'armhf': '-', 'ppc64el': 'y', 'riscv64': '-', 's390x': 'y'}> +CONFIG_IMA_APPRAISE_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_APPRAISE_MODSIG policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_TRUSTED_KEYRING policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_BLACKLIST_KEYRING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_LOAD_X509 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_X509_PATH policy<{'ppc64el': '"/etc/keys/x509_ima.der"'}> +# +CONFIG_IMA_APPRAISE mark note +CONFIG_IMA_TRUSTED_KEYRING mark note +CONFIG_IMA_BLACKLIST_KEYRING mark note +CONFIG_IMA_LOAD_X509 mark note +CONFIG_IMA_X509_PATH mark note +CONFIG_IMA_APPRAISE_SIGNED_INIT mark note +CONFIG_IMA_ARCH_POLICY mark note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Appraise integrity measurements >> IMA build time configured policy rules +CONFIG_IMA_APPRAISE_BUILD_POLICY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default integrity hash algorithm +CONFIG_IMA_DEFAULT_HASH_SHA1 policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_DEFAULT_HASH_SHA256 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_IMA_DEFAULT_HASH_SHA512 policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_IMA_DEFAULT_HASH_SHA256 note + +# Menu: Security options >> Enable different security models >> Integrity subsystem >> Integrity Measurement Architecture(IMA) >> Default template +CONFIG_IMA_NG_TEMPLATE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'n', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_IMA_SIG_TEMPLATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'y', 'riscv64': 'n', 's390x': 'n'}> +# +CONFIG_IMA_SIG_TEMPLATE note + +# Menu: Security options >> Enable different security models >> Kernel default lockdown mode +CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Security options >> Enable different security models >> NSA SELinux Support +CONFIG_SECURITY_SELINUX policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_BOOTPARAM policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_DISABLE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SECURITY_SELINUX_DEVELOP policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_AVC_STATS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE policy<{'amd64': '1', 'arm64': '1', 'armhf': '1', 'ppc64el': '1', 'riscv64': '1', 's390x': '1'}> +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS policy<{'amd64': '9', 'arm64': '9', 'armhf': '9', 'ppc64el': '9', 'riscv64': '9', 's390x': '9'}> +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE policy<{'amd64': '256', 'arm64': '256', 'armhf': '256', 'ppc64el': '256', 'riscv64': '256', 's390x': '256'}> +# +CONFIG_SECURITY_SELINUX mark +CONFIG_SECURITY_SELINUX_DISABLE mark note + +# Menu: Security options >> Enable different security models >> Simplified Mandatory Access Control Kernel Support +CONFIG_SECURITY_SMACK policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SMACK_BRINGUP policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SECURITY_SMACK_NETFILTER policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_SMACK_APPEND_SIGNALS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# +CONFIG_SECURITY_SMACK mark + +# Menu: Security options >> Enable different security models >> TOMOYO Linux Support +CONFIG_SECURITY_TOMOYO policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY policy<{'amd64': '2048', 'arm64': '2048', 'armhf': '2048', 'ppc64el': '2048', 'riscv64': '2048', 's390x': '2048'}> +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG policy<{'amd64': '1024', 'arm64': '1024', 'armhf': '1024', 'ppc64el': '1024', 'riscv64': '1024', 's390x': '1024'}> +CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SECURITY_TOMOYO_POLICY_LOADER policy<{'amd64': '"/sbin/tomoyo-init"', 'arm64': '"/sbin/tomoyo-init"', 'armhf': '"/sbin/tomoyo-init"', 'ppc64el': '"/sbin/tomoyo-init"', 'riscv64': '"/sbin/tomoyo-init"', 's390x': '"/sbin/tomoyo-init"'}> +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER policy<{'amd64': '"/sbin/init"', 'arm64': '"/sbin/init"', 'armhf': '"/sbin/init"', 'ppc64el': '"/sbin/init"', 'riscv64': '"/sbin/init"', 's390x': '"/sbin/init"'}> +CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Security options >> First legacy 'major LSM' to be initialized +CONFIG_DEFAULT_SECURITY_SELINUX policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_SMACK policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_TOMOYO policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEFAULT_SECURITY_APPARMOR policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_DEFAULT_SECURITY_DAC policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> + +# Menu: Security options >> Kernel hardening options + +# Menu: Security options >> Kernel hardening options >> Memory initialization +CONFIG_INIT_ON_ALLOC_DEFAULT_ON policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_INIT_ON_FREE_DEFAULT_ON policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_ZERO_CALL_USED_REGS policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> + +# Menu: Security options >> Kernel hardening options >> Memory initialization >> Initialize kernel stack variables at function entry +CONFIG_INIT_STACK_ALL_ZERO policy<{'amd64': '-', 'arm64': '-', 'armhf': '-', 'ppc64el': '-', 'riscv64': '-', 's390x': '-'}> + +# Menu: Security options >> Kernel hardening options >> Memory initialization >> Poison kernel stack before returning from syscalls + +# Menu: Selftests >> Architecture: s390 + +# Menu: SoC selection +CONFIG_SOC_SIFIVE policy<{'riscv64': 'y'}> +CONFIG_SOC_VIRT policy<{'riscv64': 'y'}> + +# Menu: System Type +# + +# Menu: System Type >> ARM Ltd. Integrator family >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Integrator family >> Support Integrator/AP and Integrator/PP2 platforms >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Integrator family >> Support Integrator/CP platform >> Architecture: arm + +# Menu: System Type >> ARM Ltd. RealView family >> Architecture: arm +CONFIG_ARCH_REALVIEW policy<{'armhf': 'n'}> + +# Menu: System Type >> ARM Ltd. RealView family >> Support RealView(R) Emulation Baseboard >> Architecture: arm + +# Menu: System Type >> ARM Ltd. Versatile Express family + +# Menu: System Type >> ARM Ltd. Versatile Express family >> Architecture: arm +CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_DCSCB policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_SPC policy<{'armhf': 'y'}> +CONFIG_ARCH_VEXPRESS_TC2_PM policy<{'armhf': 'y'}> + +# Menu: System Type >> ARM system type >> Architecture: arm +CONFIG_ARCH_MULTIPLATFORM policy<{'armhf': 'y'}> +CONFIG_ARCH_FOOTBRIDGE policy<{'armhf': 'n'}> +CONFIG_ARCH_DOVE policy<{'armhf': 'n'}> +CONFIG_ARCH_RPC policy<{'armhf': '-'}> +CONFIG_ARCH_SA1100 policy<{'armhf': 'n'}> + +# Menu: System Type >> AT91/Microchip SoCs >> Architecture: arm +CONFIG_ARCH_AT91 policy<{'armhf': 'n'}> + +# Menu: System Type >> Allwinner SoCs + +# Menu: System Type >> Allwinner SoCs >> Architecture: arm + +# Menu: System Type >> Altera SOCFPGA family + +# Menu: System Type >> Altera SOCFPGA family >> Architecture: arm +CONFIG_SOCFPGA_SUSPEND policy<{'armhf': 'y'}> + +# Menu: System Type >> Amlogic Meson SoCs + +# Menu: System Type >> Amlogic Meson SoCs >> Architecture: arm +CONFIG_MACH_MESON6 policy<{'armhf': 'y'}> +CONFIG_MACH_MESON8 policy<{'armhf': 'y'}> + +# Menu: System Type >> Architecture: arm +CONFIG_ARCH_VIRT policy<{'armhf': 'y'}> +CONFIG_ARCH_AXXIA policy<{'armhf-generic-lpae': 'y'}> +CONFIG_ARCH_DIGICOLOR policy<{'armhf': 'n'}> +CONFIG_ARCH_HIGHBANK policy<{'armhf': 'y'}> +CONFIG_ARCH_KEYSTONE policy<{'armhf': 'n'}> +CONFIG_ARCH_RDA policy<{'armhf': 'y'}> +CONFIG_ARCH_S5PV210 policy<{'armhf': 'n'}> +CONFIG_ARCH_WM8850 policy<{'armhf': 'n'}> +CONFIG_ARCH_ZYNQ policy<{'armhf': 'n'}> +CONFIG_ARM_THUMB policy<{'armhf': 'y'}> +CONFIG_ARM_THUMBEE policy<{'armhf': 'y'}> +CONFIG_SWP_EMULATE policy<{'armhf': 'y'}> +CONFIG_CPU_ICACHE_DISABLE policy<{'armhf': 'n'}> +CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND policy<{'armhf': 'y'}> +CONFIG_CPU_BPREDICT_DISABLE policy<{'armhf': 'n'}> +CONFIG_HARDEN_BRANCH_PREDICTOR policy<{'armhf': 'y'}> +CONFIG_CACHE_FEROCEON_L2 policy<{'armhf': 'y'}> +CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH policy<{'armhf': 'n'}> +CONFIG_CACHE_TAUROS2 policy<{'armhf': 'y'}> +CONFIG_CACHE_UNIPHIER policy<{'armhf-generic': 'y', 'armhf-generic-lpae': '-'}> +CONFIG_ARM_DMA_MEM_BUFFERABLE policy<{'armhf': 'y'}> +CONFIG_DEBUG_ALIGN_RODATA policy<{'armhf': 'y'}> +CONFIG_IWMMXT policy<{'armhf': 'y'}> +CONFIG_PJ4B_ERRATA_4742 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_430973 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_643719 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_720789 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_754322 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_754327 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_764369 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_775420 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_798181 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_773022 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_818325_852422 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_821420 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_825619 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_857271 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_852421 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_852423 policy<{'armhf': 'y'}> +CONFIG_ARM_ERRATA_857272 policy<{'armhf': 'y'}> + +# Menu: System Type >> Aspeed BMC architectures >> Architecture: arm +CONFIG_ARCH_ASPEED policy<{'armhf': 'y'}> +CONFIG_MACH_ASPEED_G6 policy<{'armhf': 'y'}> + +# Menu: System Type >> Axis Communications ARM based ARTPEC SoCs >> Architecture: arm +CONFIG_ARCH_ARTPEC policy<{'armhf': 'y'}> +CONFIG_MACH_ARTPEC6 policy<{'armhf': 'n'}> + +# Menu: System Type >> Broadcom SoC Support + +# Menu: System Type >> Broadcom SoC Support >> Architecture: arm +CONFIG_ARCH_BCM policy<{'armhf': 'n'}> + +# Menu: System Type >> Cavium Networks CNS3XXX family >> Architecture: arm + +# Menu: System Type >> Cirrus EP93xx Implementation Options >> Architecture: arm + +# Menu: System Type >> Enable the L2x0 outer cache controller >> Architecture: arm +CONFIG_CACHE_L2X0 policy<{'armhf': 'y'}> +CONFIG_CACHE_L2X0_PMU policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_588369 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_727915 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_753970 policy<{'armhf': 'y'}> +CONFIG_PL310_ERRATA_769419 policy<{'armhf': 'y'}> + +# Menu: System Type >> Footbridge Implementations >> Architecture: arm + +# Menu: System Type >> Freescale i.MX family + +# Menu: System Type >> Freescale i.MX family >> Architecture: arm +CONFIG_SOC_IMX50 policy<{'armhf': 'y'}> +CONFIG_SOC_IMX51 policy<{'armhf': 'y'}> +CONFIG_SOC_IMX53 policy<{'armhf': 'n'}> +CONFIG_SOC_IMX6Q policy<{'armhf': 'y'}> +CONFIG_SOC_IMX6SL policy<{'armhf': 'y'}> +CONFIG_SOC_IMX6SLL policy<{'armhf': 'y'}> +CONFIG_SOC_IMX6SX policy<{'armhf': 'y'}> +CONFIG_SOC_IMX6UL policy<{'armhf': 'y'}> +CONFIG_SOC_LS1021A policy<{'armhf': 'n'}> +CONFIG_SOC_IMX7D policy<{'armhf': 'y'}> +CONFIG_SOC_IMX7ULP policy<{'armhf': 'y'}> +CONFIG_SOC_VF610 policy<{'armhf': 'y'}> + +# Menu: System Type >> Freescale i.MX family >> Clocksource for scheduler clock >> Architecture: arm +CONFIG_VF_USE_ARM_GLOBAL_TIMER policy<{'armhf': 'y'}> +CONFIG_VF_USE_PIT_TIMER policy<{'armhf': 'n'}> + +# Menu: System Type >> Hisilicon platform type >> Architecture: arm +CONFIG_ARCH_HI3xxx policy<{'armhf': 'y'}> +CONFIG_ARCH_HIP01 policy<{'armhf': 'n'}> +CONFIG_ARCH_HIP04 policy<{'armhf': 'y'}> +CONFIG_ARCH_HIX5HD2 policy<{'armhf': 'y'}> + +# Menu: System Type >> IOP32x Implementation Options >> Architecture: arm + +# Menu: System Type >> Intel IXP4xx Implementation Options >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Gumstix Carrier/Expansion Board >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> Motorola EZX Platform >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Keith und Koep Trizeps DIMM-Modules >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Keith und Koep Trizeps DIMM-Modules >> Select base board for Trizeps module >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Palm PDAs >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> PXA based Toshiba e-series PDAs >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models >> Architecture: arm + +# Menu: System Type >> Intel PXA2xx/PXA3xx Implementations >> display on pcm990 >> Architecture: arm + +# Menu: System Type >> MMU-based Paged Memory Management Support + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Architecture: arm +CONFIG_MMU policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_ARM_LPAE policy<{'armhf-generic': 'n', 'armhf-generic-lpae': 'y'}> +CONFIG_VDSO policy<{'armhf': 'y'}> + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Marvell Orion >> Architecture: arm + +# Menu: System Type >> MMU-based Paged Memory Management Support >> ST-Ericsson U8500 Series >> Architecture: arm +CONFIG_ARCH_U8500 policy<{'armhf': 'n'}> + +# Menu: System Type >> MMU-based Paged Memory Management Support >> Set flash/sdram size and base addr >> Architecture: arm + +# Menu: System Type >> MOXA ART SoC >> Architecture: arm + +# Menu: System Type >> MStar/Sigmastar Armv7 SoC Support >> Architecture: arm +CONFIG_ARCH_MSTARV7 policy<{'armhf': 'y'}> +CONFIG_MACH_INFINITY policy<{'armhf': 'y'}> +CONFIG_MACH_MERCURY policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell Berlin SoCs + +# Menu: System Type >> Marvell Berlin SoCs >> Architecture: arm +CONFIG_MACH_BERLIN_BG2 policy<{'armhf': 'y'}> +CONFIG_MACH_BERLIN_BG2CD policy<{'armhf': 'y'}> +CONFIG_MACH_BERLIN_BG2Q policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell Dove Implementations >> Architecture: arm + +# Menu: System Type >> Marvell Engineering Business Unit (MVEBU) SoCs + +# Menu: System Type >> Marvell Engineering Business Unit (MVEBU) SoCs >> Architecture: arm +CONFIG_MACH_ARMADA_370 policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_375 policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_38X policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_39X policy<{'armhf': 'y'}> +CONFIG_MACH_ARMADA_XP policy<{'armhf': 'y'}> +CONFIG_MACH_DOVE policy<{'armhf': 'y'}> + +# Menu: System Type >> Marvell MV78xx0 >> Architecture: arm + +# Menu: System Type >> Marvell PXA168/910/MMP2/MMP3 >> Architecture: arm +CONFIG_ARCH_MMP policy<{'armhf': 'n'}> + +# Menu: System Type >> Marvell PXA168/910/MMP2/MMP3 >> Marvell PXA168/910/MMP2 Implementations >> Architecture: arm + +# Menu: System Type >> MediaTek SoC Support + +# Menu: System Type >> MediaTek SoC Support >> Architecture: arm +CONFIG_MACH_MT2701 policy<{'armhf': 'y'}> +CONFIG_MACH_MT6589 policy<{'armhf': 'y'}> +CONFIG_MACH_MT6592 policy<{'armhf': 'y'}> +CONFIG_MACH_MT7623 policy<{'armhf': 'y'}> +CONFIG_MACH_MT7629 policy<{'armhf': 'y'}> +CONFIG_MACH_MT8127 policy<{'armhf': 'y'}> +CONFIG_MACH_MT8135 policy<{'armhf': 'y'}> + +# Menu: System Type >> Multiple platform selection >> Architecture: arm +CONFIG_ARCH_MULTI_V6 policy<{'armhf': 'n'}> +CONFIG_ARCH_MULTI_V7 policy<{'armhf': 'y'}> + +# Menu: System Type >> Nuvoton NPCM Architecture >> Architecture: arm +CONFIG_ARCH_NPCM policy<{'armhf': 'y'}> +CONFIG_ARCH_NPCM7XX policy<{'armhf': 'y'}> + +# Menu: System Type >> Oxford Semiconductor OXNAS Family SoCs >> Architecture: arm + +# Menu: System Type >> Qualcomm Support + +# Menu: System Type >> Qualcomm Support >> Architecture: arm +CONFIG_ARCH_IPQ40XX policy<{'armhf': 'n'}> +CONFIG_ARCH_MSM8X60 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8960 policy<{'armhf': 'y'}> +CONFIG_ARCH_MSM8974 policy<{'armhf': 'y'}> +CONFIG_ARCH_MDM9615 policy<{'armhf': 'y'}> + +# Menu: System Type >> SA11x0 Implementations >> Architecture: arm + +# Menu: System Type >> SA11x0 Implementations >> Cerf Flash available >> Architecture: arm + +# Menu: System Type >> ST SPEAr Family >> Architecture: arm +CONFIG_PLAT_SPEAR policy<{'armhf': 'n'}> + +# Menu: System Type >> ST SPEAr Family >> ST SPEAr13xx >> Architecture: arm + +# Menu: System Type >> ST SPEAr Family >> ST SPEAr13xx >> ST SPEAr3xx >> Architecture: arm + +# Menu: System Type >> ST-Ericsson Nomadik >> Architecture: arm + +# Menu: System Type >> STMicroelectronics Consumer Electronics SOCs >> Architecture: arm +CONFIG_ARCH_STI policy<{'armhf': 'n'}> + +# Menu: System Type >> STMicroelectronics STM32 family >> Architecture: arm +CONFIG_ARCH_STM32 policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung Common options >> Architecture: arm + +# Menu: System Type >> Samsung Exynos + +# Menu: System Type >> Samsung Exynos >> Architecture: arm +CONFIG_ARCH_EXYNOS3 policy<{'armhf': 'n'}> +CONFIG_ARCH_EXYNOS4 policy<{'armhf': 'n'}> + +# Menu: System Type >> Samsung Exynos >> Samsung Exynos5 >> Architecture: arm +CONFIG_ARCH_EXYNOS5 policy<{'armhf': 'n'}> +CONFIG_SOC_EXYNOS5250 policy<{'armhf': '-'}> +CONFIG_SOC_EXYNOS5260 policy<{'armhf': '-'}> +CONFIG_SOC_EXYNOS5410 policy<{'armhf': '-'}> +CONFIG_SOC_EXYNOS5420 policy<{'armhf': '-'}> +CONFIG_SOC_EXYNOS5800 policy<{'armhf': '-'}> + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2410 >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2412 >> Architecture: arm + +# Menu: System Type >> Samsung S3C24XX SoCs Support >> Samsung S3C2440 >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> SMDK6410 >> Architecture: arm + +# Menu: System Type >> Samsung S3C64XX >> SMDK6410 >> SMDK6410 MMC/SD slot setup >> Architecture: arm + +# Menu: System Type >> Socionext Milbeaut SoCs >> Architecture: arm +CONFIG_ARCH_MILBEAUT policy<{'armhf': 'y'}> +CONFIG_ARCH_MILBEAUT_M10V policy<{'armhf': 'y'}> + +# Menu: System Type >> TI DaVinci >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DA850/OMAP-L138/AM18x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DA850/OMAP-L138/AM18x based system >> Select peripherals connected to expander on UI board >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> DaVinci 644x based system >> Architecture: arm + +# Menu: System Type >> TI DaVinci >> Select DA830/OMAP-L137/AM17x UI board peripheral >> Architecture: arm + +# Menu: System Type >> TI OMAP Common Features >> Architecture: arm +CONFIG_POWER_AVS_OMAP policy<{'armhf-generic': 'y'}> +CONFIG_POWER_AVS_OMAP_CLASS3 policy<{'armhf-generic': 'y'}> +CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE policy<{'armhf-generic': 'n'}> + +# Menu: System Type >> TI OMAP/AM/DM/DRA Family >> Architecture: arm +CONFIG_ARCH_OMAP3 policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_ARCH_OMAP4 policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_SOC_OMAP5 policy<{'armhf': 'n'}> +CONFIG_SOC_AM33XX policy<{'armhf-generic': 'y', 'armhf-generic-lpae': 'n'}> +CONFIG_SOC_AM43XX policy<{'armhf': 'n'}> +CONFIG_SOC_DRA7XX policy<{'armhf': 'y'}> +CONFIG_OMAP5_ERRATA_801819 policy<{'armhf': 'y'}> + +# Menu: System Type >> TI OMAP/AM/DM/DRA Family >> TI OMAP2/3/4 Specific Features >> Architecture: arm +CONFIG_ARCH_OMAP2PLUS_TYPICAL policy<{'armhf': 'y'}> +CONFIG_SOC_HAS_OMAP2_SDRC policy<{'armhf': 'y'}> +CONFIG_SOC_HAS_REALTIME_COUNTER policy<{'armhf': 'y'}> +CONFIG_SOC_OMAP3430 policy<{'armhf-generic': 'y'}> +CONFIG_SOC_TI81XX policy<{'armhf-generic': 'y'}> +CONFIG_OMAP3_SDRC_AC_TIMING policy<{'armhf-generic': 'n'}> + +# Menu: System Type >> TI OMAP1 specific features >> Architecture: arm + +# Menu: System Type >> TI OMAP1 specific features >> OMAP15xx Based System >> Architecture: arm + +# Menu: System Type >> TI OMAP1 specific features >> OMAP16xx Based System >> Architecture: arm +CONFIG_MACH_OMAP_GENERIC policy<{'armhf': 'y'}> + +# Menu: Ubuntu Supplied Third-Party Device Drivers +CONFIG_UBUNTU_HOST policy<{'amd64': 'm', 'arm64': 'm', 'armhf': 'm', 'ppc64el': 'm', 'riscv64': 'm', 's390x': 'm'}> +# + +# Menu: Virtualization +CONFIG_VIRTUALIZATION policy<{'amd64': 'y', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +# + +# Menu: Virtualization >> Architecture: powerpc +CONFIG_KVM_BOOK3S_64 policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_HV policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_64_PR policy<{'ppc64el': 'm'}> +CONFIG_KVM_BOOK3S_HV_EXIT_TIMING policy<{'ppc64el': 'n'}> +CONFIG_KVM_XICS policy<{'ppc64el': 'y'}> + +# Menu: Virtualization >> Architecture: s390 +CONFIG_PROTECTED_VIRTUALIZATION_GUEST policy<{'s390x': 'y'}> +CONFIG_PFAULT policy<{'s390x': 'y'}> +CONFIG_CMM_IUCV policy<{'s390x': 'y'}> +CONFIG_S390_HYPFS_FS policy<{'s390x': 'y'}> +CONFIG_S390_GUEST policy<{'s390x': 'y'}> + +# Menu: Virtualization >> KVM +CONFIG_KVM policy<{'amd64': 'm', 'arm64': 'y', 'ppc64el': 'y', 'riscv64': 'm', 's390x': 'y'}> +# +CONFIG_KVM note + +# Menu: Virtualization >> KVM >> Architecture: s390 +CONFIG_KVM_S390_UCONTROL policy<{'s390x': 'n'}> + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support +# + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support >> Architecture: arm64 +CONFIG_NVHE_EL2_DEBUG policy<{'arm64': 'n'}> + +# Menu: Virtualization >> Kernel-based Virtual Machine (KVM) support >> Architecture: x86 +CONFIG_KVM_WERROR policy<{'amd64': 'y'}> +CONFIG_KVM_INTEL policy<{'amd64': 'm'}> +CONFIG_X86_SGX_KVM policy<{'amd64': 'y'}> +CONFIG_KVM_AMD policy<{'amd64': 'm'}> +CONFIG_KVM_AMD_SEV policy<{'amd64': 'y'}> +CONFIG_KVM_XEN policy<{'amd64': 'y'}> + +CONFIG_TDX_GUEST_DRIVER policy<{'amd64': 'm'}> +CONFIG_TDX_GUEST_DRIVER note + +# Menu: Virtualization >> Linux - VM Monitor Stream, base infrastructure >> Architecture: s390 + +CONFIG_APPLDATA_BASE policy<{'s390x': 'y'}> +CONFIG_APPLDATA_MEM policy<{'s390x': 'm'}> +CONFIG_APPLDATA_OS policy<{'s390x': 'm'}> +CONFIG_APPLDATA_NET_SUM policy<{'s390x': 'm'}> + +# New configs options introduced in 5.19 +CONFIG_CACHEFILES_ONDEMAND policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_DEBUG_NET policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_BOOT_CONFIG_EMBED policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_MODULE_UNLOAD_TAINT_TRACKING policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'ppc64el': 'n', 'riscv64': 'n', 's390x': 'n'}> +CONFIG_FW_LOADER_COMPRESS_XZ policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_FW_LOADER_COMPRESS_ZSTD policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'ppc64el': 'y', 'riscv64': 'y', 's390x': 'y'}> +CONFIG_EFI_DISABLE_RUNTIME policy<{'amd64': 'n', 'arm64': 'n', 'armhf': 'n', 'riscv64': 'n'}> +CONFIG_EFI_COCO_SECRET policy<{'amd64': 'y', 'arm64': 'y', 'armhf': 'y', 'riscv64': 'y'}> diff --git a/debian.hwe-5.19/config/arm64/config.common.arm64 b/debian.hwe-5.19/config/arm64/config.common.arm64 new file mode 100644 index 000000000000..aeb236eee03c --- /dev/null +++ b/debian.hwe-5.19/config/arm64/config.common.arm64 @@ -0,0 +1,729 @@ +# +# Config options for config.common.arm64 automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +CONFIG_ACCESSIBILITY=y +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_ADIN1100_PHY=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_EXYNOS is not set +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_ARCH_NR_GPIO=2048 +CONFIG_ARCH_SUNXI=y +# CONFIG_ARCH_UNIPHIER is not set +CONFIG_ARCNET=m +CONFIG_ARM_SMMU=y +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="console=ttyAMA0" +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +CONFIG_COMPAT=y +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC7=m +CONFIG_CRC8=y +CONFIG_CRC_ITU_T=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DMADEVICES=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DP83TD510_PHY=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DWMAC_INTEL_PLAT=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +CONFIG_FSL_MC_BUS=y +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +# CONFIG_GOLDFISH is not set +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GPIO_XILINX=y +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +# CONFIG_HIBERNATION is not set +CONFIG_HID=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HTE=y +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +# CONFIG_I2C_AMD_MP2 is not set +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=y +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +CONFIG_KVM=y +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=y +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMSTICK=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MHI_BUS_EP=m +CONFIG_MII=y +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_ESDHC_IMX=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SPI=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_NAND_OMAP2=m +CONFIG_MTD_NAND_OMAP_BCH_BUILD=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_PHYSMAP_GEMINI=y +CONFIG_MTD_PHYSMAP_VERSATILE=y +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_DSA_REALTEK_MDIO=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=6 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=256 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_POOL_STATS=y +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARAVIRT=y +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +CONFIG_PCCARD=m +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_MESON=m +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCMCIA is not set +CONFIG_PCS_XPCS=m +CONFIG_PECI=m +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_TI_GMII_SEL=m +CONFIG_PINCTRL=y +CONFIG_PM=y +# CONFIG_PMIC_OPREGION is not set +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_EFI=y +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PL031=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SIFIVE=m +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_SIENA=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_IMX_SOC=m +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_IMX_PCM_DMA=m +CONFIG_SND_SOC_IMX_SGTL5000=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_BRCMSTB=y +CONFIG_SOC_IMX8M=y +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +# CONFIG_SURFACE_3_POWER_OPREGION is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_SYSFB_SIMPLEFB=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UBSAN=y +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_EMXX=m +CONFIG_USB_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VIDEO_TI_CAL_MC=y +CONFIG_VIRTIO_MMIO=y +CONFIG_VMAP_STACK=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XEN=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.hwe-5.19/config/arm64/config.flavour.generic b/debian.hwe-5.19/config/arm64/config.flavour.generic new file mode 100644 index 000000000000..d6e3ffa1d269 --- /dev/null +++ b/debian.hwe-5.19/config/arm64/config.flavour.generic @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_64K_PAGES is not set +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_PGTABLE_LEVELS=4 diff --git a/debian.hwe-5.19/config/arm64/config.flavour.generic-64k b/debian.hwe-5.19/config/arm64/config.flavour.generic-64k new file mode 100644 index 000000000000..4cacb09e2c54 --- /dev/null +++ b/debian.hwe-5.19/config/arm64/config.flavour.generic-64k @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.generic-64k automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=29 +CONFIG_ARCH_MMAP_RND_BITS_MIN=14 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7 +# CONFIG_ARM64_4K_PAGES is not set +CONFIG_ARM64_64K_PAGES=y +CONFIG_ARM64_CONT_PMD_SHIFT=5 +CONFIG_ARM64_CONT_PTE_SHIFT=5 +CONFIG_ARM64_PAGE_SHIFT=16 +CONFIG_FORCE_MAX_ZONEORDER=14 +CONFIG_PGTABLE_LEVELS=3 diff --git a/debian.hwe-5.19/config/armhf/config.common.armhf b/debian.hwe-5.19/config/armhf/config.common.armhf new file mode 100644 index 000000000000..3e60c6c47263 --- /dev/null +++ b/debian.hwe-5.19/config/armhf/config.common.armhf @@ -0,0 +1,712 @@ +# +# Config options for config.common.armhf automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=y +CONFIG_ACCESSIBILITY=y +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_ADIN1100_PHY=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_EXYNOS=y +CONFIG_ARCH_MMAP_RND_BITS=8 +CONFIG_ARCH_MMAP_RND_BITS_MAX=16 +CONFIG_ARCH_MMAP_RND_BITS_MIN=8 +CONFIG_ARCH_NR_GPIO=2048 +# CONFIG_ARCH_SUNXI is not set +CONFIG_ARCNET=m +# CONFIG_ARM_SMMU is not set +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=y +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="arm-linux-gnueabihf-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_AXG_AUDIO is not set +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC7=m +CONFIG_CRC8=y +CONFIG_CRC_ITU_T=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CXL_BUS=m +# CONFIG_DEBUG_INFO_BTF is not set +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DMADEVICES=y +CONFIG_DMA_CMA=y +# CONFIG_DMA_PERNUMA_CMA is not set +CONFIG_DMA_VIRTUAL_CHANNELS=y +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DP83TD510_PHY=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_ETNAVIV=m +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DWMAC_INTEL_PLAT=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +# CONFIG_FSL_MC_BUS is not set +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +# CONFIG_GOLDFISH is not set +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=y +CONFIG_GPIO_TWL6040=y +CONFIG_GPIO_VIRTIO=m +CONFIG_GPIO_XILINX=y +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIBERNATION=y +CONFIG_HID=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_HMC6352=m +# CONFIG_HOTPLUG_PCI is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HTE=y +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=y +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE=y +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +# CONFIG_JUMP_LABEL is not set +CONFIG_KARMA_PARTITION=y +CONFIG_KERNEL_GZIP=y +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=y +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=y +CONFIG_MDIO_BUS_MUX=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=y +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65217=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MHI_BUS_EP=m +CONFIG_MII=y +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_CQHCI=y +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_ESDHC_IMX=y +CONFIG_MMC_SDHCI_PLTFM=y +CONFIG_MMC_SPI=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=y +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_NAND_CORE=y +CONFIG_MTD_NAND_OMAP2=y +CONFIG_MTD_NAND_OMAP_BCH_BUILD=y +CONFIG_MTD_OF_PARTS=y +CONFIG_MTD_PHYSMAP_GEMINI=y +CONFIG_MTD_PHYSMAP_VERSATILE=y +CONFIG_MTD_RAW_NAND=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_DSA_REALTEK_MDIO=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NOP_USB_XCEIV=y +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=4 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NVMEM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +CONFIG_PAGE_EXTENSION=y +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PAGE_POOL_STATS=y +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_PARAVIRT is not set +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +CONFIG_PCCARD=m +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_LAYERSCAPE is not set +# CONFIG_PCI_MESON is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +# CONFIG_PCMCIA is not set +CONFIG_PCS_XPCS=m +CONFIG_PECI=m +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_TI_GMII_SEL=y +CONFIG_PINCTRL=y +CONFIG_PM=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +CONFIG_PSTORE_CONSOLE=y +CONFIG_PSTORE_RAM=y +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=y +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REGULATOR_TPS65217=y +CONFIG_REGULATOR_TWL4030=y +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_EFI=y +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_PCF8523=y +CONFIG_RTC_DRV_PL031=y +CONFIG_RTC_DRV_TWL4030=y +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_SCHED_SMT is not set +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SIFIVE=m +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_SIENA=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=y +CONFIG_SND_COMPRESS_OFFLOAD=y +CONFIG_SND_DMAENGINE_PCM=y +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_IMX_SOC=y +CONFIG_SND_PCM=y +CONFIG_SND_SOC=y +CONFIG_SND_SOC_FSL_SSI=y +CONFIG_SND_SOC_I2C_AND_SPI=y +CONFIG_SND_SOC_IMX_AUDMUX=y +CONFIG_SND_SOC_IMX_PCM_DMA=y +CONFIG_SND_SOC_IMX_SGTL5000=y +CONFIG_SND_SOC_SGTL5000=y +CONFIG_SND_TIMER=y +# CONFIG_SOC_BRCMSTB is not set +# CONFIG_SOC_IMX8M is not set +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=y +CONFIG_SPI=y +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSFB_SIMPLEFB=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UBSAN=y +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_EMXX=y +CONFIG_USB_GADGET=y +CONFIG_USB_MUSB_HDRC=y +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VIRTIO_MMIO=y +CONFIG_VMAP_STACK=y +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +# CONFIG_XEN is not set +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.hwe-5.19/config/armhf/config.flavour.generic b/debian.hwe-5.19/config/armhf/config.flavour.generic new file mode 100644 index 000000000000..2628b58f3b1f --- /dev/null +++ b/debian.hwe-5.19/config/armhf/config.flavour.generic @@ -0,0 +1,15 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_ARCH_ALPINE=y +CONFIG_ARCH_OMAP3=y +CONFIG_ARCH_OMAP4=y +CONFIG_ARCH_UNIPHIER=y +CONFIG_ARM_ATAG_DTB_COMPAT=y +# CONFIG_ARM_HIGHBANK_CPUIDLE is not set +CONFIG_ARM_L1_CACHE_SHIFT=7 +# CONFIG_ARM_LPAE is not set +CONFIG_FORCE_MAX_ZONEORDER=12 +CONFIG_PGTABLE_LEVELS=2 +CONFIG_SOC_AM33XX=y +# CONFIG_VIDEO_TI_CAL_MC is not set diff --git a/debian.hwe-5.19/config/armhf/config.flavour.generic-lpae b/debian.hwe-5.19/config/armhf/config.flavour.generic-lpae new file mode 100644 index 000000000000..2f5bfadabcd0 --- /dev/null +++ b/debian.hwe-5.19/config/armhf/config.flavour.generic-lpae @@ -0,0 +1,15 @@ +# +# Config options for config.flavour.generic-lpae automatically generated by splitconfig.pl +# +# CONFIG_ARCH_ALPINE is not set +# CONFIG_ARCH_OMAP3 is not set +# CONFIG_ARCH_OMAP4 is not set +# CONFIG_ARCH_UNIPHIER is not set +# CONFIG_ARM_ATAG_DTB_COMPAT is not set +CONFIG_ARM_HIGHBANK_CPUIDLE=y +CONFIG_ARM_L1_CACHE_SHIFT=6 +CONFIG_ARM_LPAE=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_PGTABLE_LEVELS=3 +# CONFIG_SOC_AM33XX is not set +CONFIG_VIDEO_TI_CAL_MC=y diff --git a/debian.hwe-5.19/config/config.common.ubuntu b/debian.hwe-5.19/config/config.common.ubuntu new file mode 100644 index 000000000000..826adc904092 --- /dev/null +++ b/debian.hwe-5.19/config/config.common.ubuntu @@ -0,0 +1,13300 @@ +# +# Common config options automatically generated by splitconfig.pl +# +CONFIG_104_QUAD_8=m +CONFIG_60XX_WDT=m +CONFIG_64BIT=y +# CONFIG_6LOWPAN_DEBUGFS is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set +# CONFIG_6LOWPAN_GHC_ICMPV6 is not set +# CONFIG_6LOWPAN_GHC_UDP is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6PACK=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_8129=y +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +# CONFIG_A11Y_BRAILLE_CONSOLE is not set +CONFIG_ABP060MG=m +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACERHDF=m +CONFIG_ACER_WIRELESS=m +CONFIG_ACER_WMI=m +# CONFIG_ACORN_PARTITION is not set +CONFIG_ACPI=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_ADXL=y +CONFIG_ACPI_AGDI=y +CONFIG_ACPI_ALS=m +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_EINJ=m +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BGRT=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_CCA_REQUIRED=y +CONFIG_ACPI_CMPC=m +CONFIG_ACPI_CONFIGFS=m +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_CPPC_CPUFREQ=m +CONFIG_ACPI_CPPC_CPUFREQ_FIE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_DEBUGGER_USER=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_DPTF=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_FPDT=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_HED=y +CONFIG_ACPI_HMAT=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_ACPI_IORT=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_MDIO=y +CONFIG_ACPI_NFIT=m +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_PCC=y +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_PFRUT=m +CONFIG_ACPI_PLATFORM_PROFILE=m +CONFIG_ACPI_PPTT=y +CONFIG_ACPI_PRMT=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +CONFIG_ACPI_TABLE_LIB=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TAD=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_THERMAL_REL=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_VIOT=y +CONFIG_ACPI_WATCHDOG=y +CONFIG_ACPI_WMI=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACRN_GUEST=y +CONFIG_ACRN_HSM=m +CONFIG_AD2S1200=m +CONFIG_AD2S1210=m +CONFIG_AD2S90=m +CONFIG_AD3552R=m +CONFIG_AD5064=m +CONFIG_AD5110=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_AD5272=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5504=m +CONFIG_AD5592R=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5593R=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5686_SPI=m +CONFIG_AD5696_I2C=m +CONFIG_AD5755=m +CONFIG_AD5758=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5766=m +CONFIG_AD5770R=m +CONFIG_AD5791=m +CONFIG_AD5933=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +CONFIG_AD7150=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7280=m +CONFIG_AD7291=m +CONFIG_AD7292=m +CONFIG_AD7293=m +CONFIG_AD7298=m +CONFIG_AD7303=m +CONFIG_AD74413R=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7746=m +CONFIG_AD7766=m +CONFIG_AD7768_1=m +CONFIG_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7816=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD7949=m +CONFIG_AD799X=m +CONFIG_AD8366=m +CONFIG_AD8801=m +CONFIG_AD9467=m +CONFIG_AD9523=m +CONFIG_AD9832=m +CONFIG_AD9834=m +CONFIG_ADA4250=m +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +CONFIG_ADF4350=m +CONFIG_ADF4371=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADIN_PHY=m +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16136=m +CONFIG_ADIS16201=m +CONFIG_ADIS16203=m +CONFIG_ADIS16209=m +CONFIG_ADIS16240=m +CONFIG_ADIS16260=m +CONFIG_ADIS16400=m +CONFIG_ADIS16460=m +CONFIG_ADIS16475=m +CONFIG_ADIS16480=m +CONFIG_ADI_AXI_ADC=m +CONFIG_ADJD_S311=m +CONFIG_ADM8211=m +CONFIG_ADMV1013=m +CONFIG_ADMV1014=m +CONFIG_ADMV4420=m +CONFIG_ADMV8818=m +CONFIG_ADRF6780=m +CONFIG_ADT7316=m +CONFIG_ADT7316_I2C=m +CONFIG_ADT7316_SPI=m +CONFIG_ADUX1020=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ADVISE_SYSCALLS=y +CONFIG_ADV_SWBUTTON=m +CONFIG_ADXL313=m +CONFIG_ADXL313_I2C=m +CONFIG_ADXL313_SPI=m +CONFIG_ADXL355=m +CONFIG_ADXL355_I2C=m +CONFIG_ADXL355_SPI=m +CONFIG_ADXL367=m +CONFIG_ADXL367_I2C=m +CONFIG_ADXL367_SPI=m +CONFIG_ADXL372=m +CONFIG_ADXL372_I2C=m +CONFIG_ADXL372_SPI=m +CONFIG_ADXRS290=m +CONFIG_ADXRS450=m +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AEABI=y +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_AFIUCV=m +# CONFIG_AFS_DEBUG is not set +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_AFS_FS=m +CONFIG_AFS_FSCACHE=y +CONFIG_AF_KCM=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +CONFIG_AF_RXRPC_IPV6=y +CONFIG_AF_UNIX_OOB=y +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=m +CONFIG_AGP_VIA=y +CONFIG_AHCI_BRCM=m +CONFIG_AHCI_CEVA=m +CONFIG_AHCI_DM816=m +CONFIG_AHCI_IMX=y +CONFIG_AHCI_MTK=m +CONFIG_AHCI_MVEBU=m +CONFIG_AHCI_QORIQ=m +# CONFIG_AHCI_SUNXI is not set +CONFIG_AHCI_TEGRA=m +CONFIG_AHCI_XGENE=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_AIO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_AK09911=m +CONFIG_AK8974=m +CONFIG_AK8975=m +CONFIG_AL3010=m +CONFIG_AL3320A=m +CONFIG_ALIBABA_ENI_VDPA=m +CONFIG_ALIENWARE_WMI=m +CONFIG_ALIGNMENT_TRAP=y +CONFIG_ALIM1535_WDT=m +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_ALPINE_MSI=y +CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_ALTERA_MBOX=m +CONFIG_ALTERA_MSGDMA=m +CONFIG_ALTERA_PR_IP_CORE=m +CONFIG_ALTERA_PR_IP_CORE_PLAT=m +CONFIG_ALTERNATE_USER_ADDRESS_SPACE=y +CONFIG_ALTIVEC=y +CONFIG_ALX=m +CONFIG_AL_FIC=y +CONFIG_AM2315=m +CONFIG_AM335X_CONTROL_USB=m +CONFIG_AM335X_PHY_USB=m +CONFIG_AMBA_PL08X=y +CONFIG_AMD8111_ETH=m +CONFIG_AMDTEE=m +CONFIG_AMD_HSMP=m +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=m +CONFIG_AMD_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set +CONFIG_AMD_NB=y +CONFIG_AMD_NUMA=y +CONFIG_AMD_PHY=m +CONFIG_AMD_PMC=m +CONFIG_AMD_PTDMA=m +CONFIG_AMD_SFH_HID=m +CONFIG_AMD_XGBE=m +CONFIG_AMD_XGBE_DCB=y +CONFIG_AMD_XGBE_HAVE_ECC=y +CONFIG_AMILO_RFKILL=m +CONFIG_AMLOGIC_THERMAL=m +CONFIG_AMT=m +CONFIG_ANDROID_BINDERFS=m +CONFIG_ANDROID_BINDER_DEVICES="" +CONFIG_ANDROID_BINDER_IPC=m +# CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set +CONFIG_ANON_VMA_NAME=y +CONFIG_APDS9300=m +CONFIG_APDS9960=m +# CONFIG_APM_EMULATION is not set +CONFIG_APPLDATA_BASE=y +CONFIG_APPLDATA_MEM=m +CONFIG_APPLDATA_NET_SUM=m +CONFIG_APPLDATA_OS=m +CONFIG_APPLE_AIC=y +CONFIG_APPLE_DART=m +CONFIG_APPLE_GMUX=m +CONFIG_APPLE_M1_CPU_PMU=y +CONFIG_APPLE_MAILBOX=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_APPLE_PMGR_PWRSTATE=y +CONFIG_APPLE_PROPERTIES=y +CONFIG_APPLE_RTKIT=m +CONFIG_APPLE_SART=m +CONFIG_APPLE_WATCHDOG=m +CONFIG_APQ_GCC_8084=m +CONFIG_APQ_MMCC_8084=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AR5523=m +CONFIG_ARCH_32BIT_OFF_T=y +CONFIG_ARCH_32BIT_USTAT_F_TINODE=y +CONFIG_ARCH_ACTIONS=y +CONFIG_ARCH_AIROHA=y +CONFIG_ARCH_APPLE=y +CONFIG_ARCH_ARTPEC=y +CONFIG_ARCH_ASPEED=y +# CONFIG_ARCH_AT91 is not set +CONFIG_ARCH_AXXIA=y +# CONFIG_ARCH_BCM is not set +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM4908=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +CONFIG_ARCH_BINFMT_ELF_EXTRA_PHDRS=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_BITMAIN=y +CONFIG_ARCH_BRCMSTB=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_ARCH_CPU_PROBE_RELEASE=y +# CONFIG_ARCH_DIGICOLOR is not set +CONFIG_ARCH_DISABLE_KASAN_INLINE=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +# CONFIG_ARCH_DOVE is not set +CONFIG_ARCH_EMEV2=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +# CONFIG_ARCH_EXYNOS3 is not set +# CONFIG_ARCH_EXYNOS4 is not set +# CONFIG_ARCH_EXYNOS5 is not set +CONFIG_ARCH_FLATMEM_ENABLE=y +# CONFIG_ARCH_FOOTBRIDGE is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_HAS_BANDGAP=y +CONFIG_ARCH_HAS_BINFMT_FLAT=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CC_PLATFORM=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_ARCH_HAS_DMA_MAP_DIRECT=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_ARCH_HAS_EARLY_DEBUG=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_ARCH_HAS_HUGEPD=y +CONFIG_ARCH_HAS_KCOV=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +CONFIG_ARCH_HAS_MEMBARRIER_CALLBACKS=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_ARCH_HAS_MEMREMAP_COMPAT_ALIGN=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_ARCH_HAS_MMIOWB=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_ARCH_HAS_PHYS_TO_DMA=y +CONFIG_ARCH_HAS_PKEYS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_ARCH_HAS_SCALED_CPUTIME=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_SUBPAGE_FAULTS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +CONFIG_ARCH_HAS_VDSO_DATA=y +CONFIG_ARCH_HAS_VM_GET_PAGE_PROT=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ARCH_HAVE_CUSTOM_GPIO_H=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_ARCH_HI3xxx=y +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HIGHBANK=y +# CONFIG_ARCH_HIP01 is not set +CONFIG_ARCH_HIP04=y +CONFIG_ARCH_HISI=y +CONFIG_ARCH_HIX5HD2=y +CONFIG_ARCH_HPE=y +CONFIG_ARCH_HPE_GXP=y +CONFIG_ARCH_INLINE_READ_LOCK=y +CONFIG_ARCH_INLINE_READ_LOCK_BH=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_READ_TRYLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK=y +CONFIG_ARCH_INLINE_READ_UNLOCK_BH=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_SPIN_LOCK=y +CONFIG_ARCH_INLINE_SPIN_LOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK=y +CONFIG_ARCH_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_BH=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INLINE_WRITE_LOCK=y +CONFIG_ARCH_INLINE_WRITE_LOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_ARCH_INLINE_WRITE_TRYLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_BH=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_ARCH_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_ARCH_INTEL_SOCFPGA=y +# CONFIG_ARCH_IPQ40XX is not set +CONFIG_ARCH_K3=y +CONFIG_ARCH_KEEMBAY=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +# CONFIG_ARCH_KEYSTONE is not set +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MDM9615=y +CONFIG_ARCH_MEDIATEK=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_ARCH_MILBEAUT=y +CONFIG_ARCH_MILBEAUT_M10V=y +# CONFIG_ARCH_MMP is not set +CONFIG_ARCH_MSM8916=y +CONFIG_ARCH_MSM8960=y +CONFIG_ARCH_MSM8974=y +CONFIG_ARCH_MSM8X60=y +CONFIG_ARCH_MSTARV7=y +CONFIG_ARCH_MULTIPLATFORM=y +# CONFIG_ARCH_MULTI_V6 is not set +CONFIG_ARCH_MULTI_V6_V7=y +CONFIG_ARCH_MULTI_V7=y +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_MXC=y +CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED=y +CONFIG_ARCH_NPCM=y +CONFIG_ARCH_NPCM7XX=y +CONFIG_ARCH_OMAP=y +CONFIG_ARCH_OMAP2PLUS=y +CONFIG_ARCH_OMAP2PLUS_TYPICAL=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX=y +CONFIG_ARCH_OPTIONAL_KERNEL_RWX_DEFAULT=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_R7S72100=y +CONFIG_ARCH_R7S9210=y +# CONFIG_ARCH_R8A73A4 is not set +CONFIG_ARCH_R8A7740=y +CONFIG_ARCH_R8A7742=y +CONFIG_ARCH_R8A7743=y +CONFIG_ARCH_R8A7744=y +CONFIG_ARCH_R8A7745=y +CONFIG_ARCH_R8A77470=y +CONFIG_ARCH_R8A774A1=y +CONFIG_ARCH_R8A774B1=y +CONFIG_ARCH_R8A774C0=y +CONFIG_ARCH_R8A774E1=y +CONFIG_ARCH_R8A7778=y +CONFIG_ARCH_R8A7779=y +CONFIG_ARCH_R8A7790=y +CONFIG_ARCH_R8A7791=y +CONFIG_ARCH_R8A7792=y +CONFIG_ARCH_R8A7793=y +CONFIG_ARCH_R8A7794=y +CONFIG_ARCH_R8A77950=y +CONFIG_ARCH_R8A77951=y +CONFIG_ARCH_R8A77960=y +CONFIG_ARCH_R8A77961=y +CONFIG_ARCH_R8A77965=y +CONFIG_ARCH_R8A77970=y +CONFIG_ARCH_R8A77980=y +CONFIG_ARCH_R8A77990=y +CONFIG_ARCH_R8A77995=y +CONFIG_ARCH_R8A779A0=y +CONFIG_ARCH_R8A779F0=y +CONFIG_ARCH_R8A779G0=y +CONFIG_ARCH_R9A06G032=y +CONFIG_ARCH_R9A07G043=y +CONFIG_ARCH_R9A07G044=y +CONFIG_ARCH_R9A07G054=y +CONFIG_ARCH_R9A09G011=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_RCAR_GEN1=y +CONFIG_ARCH_RCAR_GEN2=y +CONFIG_ARCH_RCAR_GEN3=y +CONFIG_ARCH_RDA=y +CONFIG_ARCH_REALTEK=y +# CONFIG_ARCH_REALVIEW is not set +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_RMOBILE=y +CONFIG_ARCH_ROCKCHIP=y +# CONFIG_ARCH_RV32I is not set +CONFIG_ARCH_RV64I=y +CONFIG_ARCH_RZG2L=y +CONFIG_ARCH_RZN1=y +CONFIG_ARCH_S32=y +# CONFIG_ARCH_S5PV210 is not set +# CONFIG_ARCH_SA1100 is not set +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SH73A0=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARX5=y +CONFIG_ARCH_SPRD=y +CONFIG_ARCH_STACKWALK=y +# CONFIG_ARCH_STI is not set +# CONFIG_ARCH_STM32 is not set +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_SUPPORTS_CFI_CLANG=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_SUSPEND_NONZERO_CPU=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA=y +CONFIG_ARCH_TEGRA_114_SOC=y +CONFIG_ARCH_TEGRA_124_SOC=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_186_SOC=y +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +CONFIG_ARCH_TEGRA_234_SOC=y +CONFIG_ARCH_TEGRA_2x_SOC=y +CONFIG_ARCH_TEGRA_3x_SOC=y +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +# CONFIG_ARCH_U8500 is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_USE_MEMTEST=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA=y +CONFIG_ARCH_VEXPRESS_DCSCB=y +CONFIG_ARCH_VEXPRESS_SPC=y +CONFIG_ARCH_VEXPRESS_TC2_PM=y +CONFIG_ARCH_VIRT=y +CONFIG_ARCH_VISCONTI=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_IRQS_OFF_ACTIVATE_MM=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_ARCH_WEAK_RELEASE_ACQUIRE=y +# CONFIG_ARCH_WM8850 is not set +CONFIG_ARCH_XGENE=y +# CONFIG_ARCH_ZYNQ is not set +CONFIG_ARCH_ZYNQMP=y +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCX_ANYBUS_CONTROLLER=m +CONFIG_ARC_EMAC_CORE=m +CONFIG_ARM=y +CONFIG_ARM64=y +# CONFIG_ARM64_16K_PAGES is not set +CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y +CONFIG_ARM64_AMU_EXTN=y +CONFIG_ARM64_AS_HAS_MTE=y +CONFIG_ARM64_BTI=y +CONFIG_ARM64_CNP=y +CONFIG_ARM64_CRYPTO=y +# CONFIG_ARM64_DEBUG_PRIORITY_MASKING is not set +CONFIG_ARM64_E0PD=y +CONFIG_ARM64_EPAN=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1319367=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1508412=y +CONFIG_ARM64_ERRATUM_1530923=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_1742098=y +CONFIG_ARM64_ERRATUM_2051678=y +CONFIG_ARM64_ERRATUM_2054223=y +CONFIG_ARM64_ERRATUM_2067961=y +# CONFIG_ARM64_ERRATUM_2077057 is not set +CONFIG_ARM64_ERRATUM_2441007=y +CONFIG_ARM64_ERRATUM_2441009=y +CONFIG_ARM64_ERRATUM_2457168=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_LD_HAS_FIX_ERRATUM_843419=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MODULE_PLTS=y +CONFIG_ARM64_MTE=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_PA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +# CONFIG_ARM64_PA_BITS_52 is not set +CONFIG_ARM64_PMEM=y +CONFIG_ARM64_PSEUDO_NMI=y +CONFIG_ARM64_PTR_AUTH=y +CONFIG_ARM64_PTR_AUTH_KERNEL=y +CONFIG_ARM64_RAS_EXTN=y +# CONFIG_ARM64_RELOC_TEST is not set +CONFIG_ARM64_SME=y +CONFIG_ARM64_SVE=y +CONFIG_ARM64_SW_TTBR0_PAN=y +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_ARM64_TLB_RANGE=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +CONFIG_ARM64_VA_BITS=48 +# CONFIG_ARM64_VA_BITS_39 is not set +# CONFIG_ARM64_VA_BITS_42 is not set +CONFIG_ARM64_VA_BITS_48=y +# CONFIG_ARM64_VA_BITS_52 is not set +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARM64_WORKAROUND_TSB_FLUSH_FAILURE=y +CONFIG_ARMADA375_USBCLUSTER_PHY=y +CONFIG_ARMADA_370_CLK=y +CONFIG_ARMADA_370_XP_IRQ=y +CONFIG_ARMADA_370_XP_TIMER=y +CONFIG_ARMADA_375_CLK=y +CONFIG_ARMADA_37XX_CLK=y +CONFIG_ARMADA_37XX_RWTM_MBOX=m +CONFIG_ARMADA_37XX_WATCHDOG=m +CONFIG_ARMADA_38X_CLK=y +CONFIG_ARMADA_39X_CLK=y +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_AP_CPU_CLK=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_ARMADA_THERMAL=y +CONFIG_ARMADA_XP_CLK=y +CONFIG_ARMV8_DEPRECATED=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +CONFIG_ARM_AMBA=y +CONFIG_ARM_APPENDED_DTB=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_ARM_ARMADA_37XX_CPUFREQ=m +CONFIG_ARM_ARMADA_8K_CPUFREQ=m +CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND=y +# CONFIG_ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER is not set +CONFIG_ARM_BIG_LITTLE_CPUIDLE=y +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=m +CONFIG_ARM_CCI=y +CONFIG_ARM_CCI400_COMMON=y +CONFIG_ARM_CCI400_PMU=y +CONFIG_ARM_CCI400_PORT_CTRL=y +CONFIG_ARM_CCI5xx_PMU=y +CONFIG_ARM_CCI_PMU=y +CONFIG_ARM_CCN=y +CONFIG_ARM_CHARLCD=y +CONFIG_ARM_CMN=m +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_CPU_SUSPEND=y +CONFIG_ARM_CPU_TOPOLOGY=y +CONFIG_ARM_CRYPTO=y +CONFIG_ARM_DMA_IOMMU_ALIGNMENT=8 +CONFIG_ARM_DMA_MEM_BUFFERABLE=y +CONFIG_ARM_DMA_USE_IOMMU=y +CONFIG_ARM_DMC620_PMU=m +CONFIG_ARM_DSU_PMU=m +CONFIG_ARM_ERRATA_430973=y +CONFIG_ARM_ERRATA_643719=y +CONFIG_ARM_ERRATA_720789=y +CONFIG_ARM_ERRATA_754322=y +CONFIG_ARM_ERRATA_754327=y +CONFIG_ARM_ERRATA_764319=y +CONFIG_ARM_ERRATA_764369=y +CONFIG_ARM_ERRATA_773022=y +CONFIG_ARM_ERRATA_775420=y +CONFIG_ARM_ERRATA_798181=y +CONFIG_ARM_ERRATA_814220=y +CONFIG_ARM_ERRATA_818325_852422=y +CONFIG_ARM_ERRATA_821420=y +CONFIG_ARM_ERRATA_825619=y +CONFIG_ARM_ERRATA_852421=y +CONFIG_ARM_ERRATA_852423=y +CONFIG_ARM_ERRATA_857271=y +CONFIG_ARM_ERRATA_857272=y +# CONFIG_ARM_EXYNOS_BUS_DEVFREQ is not set +# CONFIG_ARM_EXYNOS_CPUIDLE is not set +CONFIG_ARM_FFA_SMCCC=y +CONFIG_ARM_FFA_TRANSPORT=m +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_GLOBAL_TIMER=y +CONFIG_ARM_GT_INITIAL_PRESCALER_VAL=1 +CONFIG_ARM_HAS_GROUP_RELOCS=y +CONFIG_ARM_HAS_SG_CHAIN=y +CONFIG_ARM_HEAVY_MB=y +CONFIG_ARM_HIGHBANK_CPUFREQ=m +CONFIG_ARM_IMX6Q_CPUFREQ=m +CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m +CONFIG_ARM_IMX_BUS_DEVFREQ=m +CONFIG_ARM_IMX_CPUFREQ_DT=m +CONFIG_ARM_KPROBES_TEST=m +CONFIG_ARM_L1_CACHE_SHIFT_6=y +CONFIG_ARM_L1_CACHE_SHIFT_7=y +CONFIG_ARM_MEDIATEK_CPUFREQ=m +CONFIG_ARM_MEDIATEK_CPUFREQ_HW=m +CONFIG_ARM_MHU=m +CONFIG_ARM_MHU_V2=m +CONFIG_ARM_MODULE_PLTS=y +CONFIG_ARM_MVEBU_V7_CPUIDLE=y +CONFIG_ARM_OMAP2PLUS_CPUFREQ=y +CONFIG_ARM_PATCH_IDIV=y +CONFIG_ARM_PATCH_PHYS_VIRT=y +CONFIG_ARM_PL172_MPMC=m +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +CONFIG_ARM_PSCI=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y +CONFIG_ARM_PSCI_FW=y +CONFIG_ARM_PTDUMP_CORE=y +# CONFIG_ARM_PTDUMP_DEBUGFS is not set +CONFIG_ARM_QCOM_CPUFREQ_HW=m +CONFIG_ARM_QCOM_CPUFREQ_NVMEM=m +CONFIG_ARM_QCOM_SPM_CPUIDLE=y +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_RK3399_DMC_DEVFREQ=m +CONFIG_ARM_SBSA_WATCHDOG=m +CONFIG_ARM_SCMI_CPUFREQ=m +CONFIG_ARM_SCMI_HAVE_MSG=y +CONFIG_ARM_SCMI_HAVE_SHMEM=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_POWER_DOMAIN=m +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y +CONFIG_ARM_SCMI_TRANSPORT_SMC=y +CONFIG_ARM_SCMI_TRANSPORT_SMC_ATOMIC_ENABLE=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO_ATOMIC_ENABLE=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO_VERSION1_COMPLIANCE=y +CONFIG_ARM_SCPI_CPUFREQ=m +CONFIG_ARM_SCPI_POWER_DOMAIN=m +CONFIG_ARM_SCPI_PROTOCOL=m +CONFIG_ARM_SDE_INTERFACE=y +CONFIG_ARM_SMCCC_SOC_ID=y +CONFIG_ARM_SMC_WATCHDOG=m +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +CONFIG_ARM_SMMU_QCOM=y +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SMMU_V3_PMU=m +CONFIG_ARM_SMMU_V3_SVA=y +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_SPE_PMU=m +CONFIG_ARM_SUN8I_A33_MBUS_DEVFREQ=m +CONFIG_ARM_TEGRA124_CPUFREQ=y +CONFIG_ARM_TEGRA186_CPUFREQ=m +CONFIG_ARM_TEGRA194_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=y +# CONFIG_ARM_TEGRA_CPUIDLE is not set +CONFIG_ARM_TEGRA_DEVFREQ=m +CONFIG_ARM_THUMB=y +CONFIG_ARM_THUMBEE=y +CONFIG_ARM_TIMER_SP804=y +CONFIG_ARM_TI_CPUFREQ=y +CONFIG_ARM_VEXPRESS_SPC_CPUFREQ=m +CONFIG_ARM_VIC=y +CONFIG_ARM_VIC_NR=2 +CONFIG_ARM_VIRT_EXT=y +CONFIG_AS3935=m +CONFIG_AS73211=m +CONFIG_ASM_MODVERSIONS=y +CONFIG_ASN1=y +CONFIG_ASN1_ENCODER=y +CONFIG_ASPEED_ADC=m +CONFIG_ASPEED_BT_IPMI_BMC=m +CONFIG_ASPEED_KCS_IPMI_BMC=m +CONFIG_ASPEED_LPC_CTRL=m +CONFIG_ASPEED_LPC_SNOOP=m +CONFIG_ASPEED_P2A_CTRL=m +CONFIG_ASPEED_SOCINFO=y +CONFIG_ASPEED_UART_ROUTING=m +CONFIG_ASPEED_WATCHDOG=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_NB_WMI=m +CONFIG_ASUS_TF103C_DOCK=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ASUS_WMI=m +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +# CONFIG_ASYNC_RAID6_TEST is not set +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y +CONFIG_ASYNC_TX_DMA=y +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_ASYNC_XOR=m +CONFIG_AS_AVX512=y +CONFIG_AS_HAS_ARMV8_2=y +CONFIG_AS_HAS_ARMV8_4=y +CONFIG_AS_HAS_ARMV8_5=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +CONFIG_AS_HAS_LDAPR=y +CONFIG_AS_HAS_LSE_ATOMICS=y +CONFIG_AS_HAS_NON_CONST_LEB128=y +CONFIG_AS_HAS_PAC=y +CONFIG_AS_HAS_SHA3=y +CONFIG_AS_IS_GNU=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y +CONFIG_AS_VERSION=23800 +CONFIG_AS_VFP_VMRS_FPINST=y +CONFIG_AT76C50X_USB=m +CONFIG_AT803X_PHY=m +CONFIG_ATAGS=y +CONFIG_ATAGS_PROC=y +CONFIG_ATA_ACPI=y +CONFIG_ATA_BMDMA=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_SFF=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATH10K=m +CONFIG_ATH10K_AHB=y +CONFIG_ATH10K_CE=y +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_SNOC=m +CONFIG_ATH10K_SPECTRAL=y +CONFIG_ATH10K_TRACING=y +CONFIG_ATH10K_USB=m +CONFIG_ATH11K=m +CONFIG_ATH11K_AHB=m +# CONFIG_ATH11K_DEBUG is not set +CONFIG_ATH11K_DEBUGFS=y +CONFIG_ATH11K_PCI=m +CONFIG_ATH11K_SPECTRAL=y +CONFIG_ATH11K_TRACING=y +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH5K_PCI=y +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH6KL=m +# CONFIG_ATH6KL_DEBUG is not set +CONFIG_ATH6KL_SDIO=m +# CONFIG_ATH6KL_TRACING is not set +CONFIG_ATH6KL_USB=m +CONFIG_ATH9K=m +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K_CHANNEL_CONTEXT=y +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_COMMON_DEBUG=y +CONFIG_ATH9K_COMMON_SPECTRAL=y +CONFIG_ATH9K_DEBUGFS=y +# CONFIG_ATH9K_DYNACK is not set +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_HWRNG=y +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_RFKILL=y +CONFIG_ATH9K_STATION_STATISTICS=y +CONFIG_ATH9K_WOW=y +CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set +CONFIG_ATL1=m +CONFIG_ATL1C=m +CONFIG_ATL1E=m +CONFIG_ATL2=m +CONFIG_ATLAS_EZO_SENSOR=m +CONFIG_ATLAS_PH_SENSOR=m +CONFIG_ATMEL=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FORE200E=m +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_FORE200E_TX_RETRY=16 +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_LANAI=m +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +CONFIG_ATM_SOLOS=m +CONFIG_ATM_TCP=m +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ATP=m +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_ARCH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUTO_ZRELADDR=y +CONFIG_AUXILIARY_BUS=y +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_AX88796=m +# CONFIG_AX88796_93CX6 is not set +CONFIG_AXI_DMAC=m +CONFIG_AXP20X_ADC=m +CONFIG_AXP20X_POWER=m +CONFIG_AXP288_ADC=m +CONFIG_AXP288_CHARGER=m +CONFIG_AXP288_FUEL_GAUGE=m +CONFIG_B43=m +CONFIG_B43LEGACY=m +# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PIO=y +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_B43_BCMA=y +CONFIG_B43_BCMA_PIO=y +# CONFIG_B43_BUSES_BCMA is not set +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_SSB is not set +# CONFIG_B43_DEBUG is not set +CONFIG_B43_HWRNG=y +CONFIG_B43_LEDS=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PIO=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_SSB=y +CONFIG_B44=m +CONFIG_B44_PCI=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B53=m +CONFIG_B53_MDIO_DRIVER=m +CONFIG_B53_MMAP_DRIVER=m +CONFIG_B53_SERDES=m +CONFIG_B53_SPI_DRIVER=m +CONFIG_B53_SRAB_DRIVER=m +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_ARCXCNN=m +CONFIG_BACKLIGHT_AS3711=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_GPIO=m +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_LED=m +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_LM3630A=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP8788=m +CONFIG_BACKLIGHT_LV5207LP=m +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RAVE_SP=m +CONFIG_BACKLIGHT_RT4831=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_SKY81452=m +CONFIG_BACKLIGHT_TPS65217=m +CONFIG_BACKLIGHT_WM831X=m +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_BACKTRACE_VERBOSE is not set +CONFIG_BALLOON_COMPACTION=y +CONFIG_BARCO_P50_GPIO=m +CONFIG_BASE_FULL=y +CONFIG_BASE_SMALL=0 +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +# CONFIG_BATMAN_ADV_DEBUG is not set +CONFIG_BATMAN_ADV_MCAST=y +CONFIG_BATMAN_ADV_NC=y +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_BATTERY_88PM860X=m +CONFIG_BATTERY_ACER_A500=m +CONFIG_BATTERY_ACT8945A=m +CONFIG_BATTERY_AXP20X=m +CONFIG_BATTERY_BQ27XXX=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +CONFIG_BATTERY_BQ27XXX_HDQ=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_CPCAP=m +CONFIG_BATTERY_CW2015=m +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DA9052=m +CONFIG_BATTERY_DA9150=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_RT5033=m +CONFIG_BATTERY_RX51=m +CONFIG_BATTERY_SAMSUNG_SDI=y +CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_SURFACE=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_BATTERY_UG3105=m +CONFIG_BAYCOM_EPP=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BCACHE=m +CONFIG_BCACHE_ASYNC_REGISTRATION=y +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_DEBUG is not set +CONFIG_BCM2711_THERMAL=m +CONFIG_BCM2835_MBOX=y +CONFIG_BCM2835_POWER=y +CONFIG_BCM2835_THERMAL=m +CONFIG_BCM2835_VCHIQ=m +CONFIG_BCM2835_VCHIQ_MMAL=m +CONFIG_BCM2835_WDT=m +CONFIG_BCM4908_ENET=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7038_L1_IRQ=y +CONFIG_BCM7038_WDT=m +CONFIG_BCM7120_L2_IRQ=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA_BLOCKIO=y +# CONFIG_BCMA_DEBUG is not set +CONFIG_BCMA_DRIVER_GMAC_CMN=y +CONFIG_BCMA_DRIVER_GPIO=y +CONFIG_BCMA_DRIVER_PCI=y +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_SOC=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA_SFLASH=y +CONFIG_BCMGENET=m +CONFIG_BCM_FLEXRM_MBOX=m +CONFIG_BCM_IPROC_ADC=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_BCM_NS_THERMAL=m +CONFIG_BCM_PDC_MBOX=m +CONFIG_BCM_PMB=y +CONFIG_BCM_SBA_RAID=m +CONFIG_BCM_SR_THERMAL=m +CONFIG_BCM_VIDEOCORE=m +CONFIG_BCM_VK_TTY=y +CONFIG_BD957XMUF_WATCHDOG=m +CONFIG_BE2NET=m +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +# CONFIG_BEFS_DEBUG is not set +CONFIG_BERLIN2_ADC=m +# CONFIG_BFQ_CGROUP_DEBUG is not set +CONFIG_BFQ_GROUP_IOSCHED=y +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_BIG_LITTLE=y +CONFIG_BINARY_PRINTF=y +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_ELF_FDPIC=y +CONFIG_BINFMT_FLAT=y +CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y +CONFIG_BINFMT_FLAT_OLD=y +CONFIG_BINFMT_MISC=m +CONFIG_BINFMT_SCRIPT=y +CONFIG_BINFMT_ZFLAT=y +CONFIG_BITREVERSE=y +CONFIG_BLK_CGROUP=y +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_DEBUG_FS_ZONED=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_DM=y +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DRBD=m +CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_MD=y +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PMEM=m +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m +CONFIG_BLK_DEV_SD=y +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_DEV_ZONED=y +CONFIG_BLK_ICQ=y +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_MQ_STACKING=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_SED_OPAL=y +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +CONFIG_BLOCK=y +CONFIG_BLOCK_COMPAT=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y +CONFIG_BLOCK_LEGACY_AUTOLOAD=y +CONFIG_BL_SWITCHER=y +CONFIG_BL_SWITCHER_DUMMY_IF=m +CONFIG_BMA220=m +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_BME680=m +CONFIG_BME680_I2C=m +CONFIG_BME680_SPI=m +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_BMI088_ACCEL=m +CONFIG_BMI088_ACCEL_SPI=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_BNA=m +CONFIG_BNX2=m +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_BNXT=m +CONFIG_BNXT_DCB=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +CONFIG_BNXT_HWMON=y +CONFIG_BNXT_SRIOV=y +CONFIG_BOARD_TPCI200=m +CONFIG_BONDING=m +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTTIME_TRACING=y +# CONFIG_BOOTX_TEXT is not set +CONFIG_BOOT_CONFIG=y +# CONFIG_BOOT_CONFIG_EMBED is not set +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_BOOT_VESA_SUPPORT=y +CONFIG_BOUNCE=y +CONFIG_BPF=y +CONFIG_BPFILTER=y +CONFIG_BPFILTER_UMH=m +CONFIG_BPF_EVENTS=y +CONFIG_BPF_JIT=y +CONFIG_BPF_JIT_ALWAYS_ON=y +CONFIG_BPF_JIT_DEFAULT_ON=y +CONFIG_BPF_KPROBE_OVERRIDE=y +CONFIG_BPF_LSM=y +# CONFIG_BPF_PRELOAD is not set +CONFIG_BPF_STREAM_PARSER=y +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y +CONFIG_BPQETHER=m +CONFIG_BQL=y +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_BRCMDBG is not set +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PCIE=y +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMSMAC=m +CONFIG_BRCMSMAC_LEDS=y +CONFIG_BRCMSTB_DPFE=y +CONFIG_BRCMSTB_GISB_ARB=y +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_BRCMSTB_PM=y +CONFIG_BRCMSTB_THERMAL=m +CONFIG_BRCMUTIL=m +CONFIG_BRCM_TRACING=y +CONFIG_BRCM_USB_PINMAP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_CFM=y +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_NETFILTER=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BROADCOM_PHY=m +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_BT=m +CONFIG_BTREE=y +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_DEBUG is not set +CONFIG_BTRFS_FS=m +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +CONFIG_BTT=y +CONFIG_BT_6LOWPAN=m +CONFIG_BT_AOSPEXT=y +CONFIG_BT_ATH3K=m +CONFIG_BT_BCM=m +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_BREDR=y +CONFIG_BT_CMTP=m +CONFIG_BT_DEBUGFS=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIUART_NOKIA=m +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIVHCI=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_INTEL=m +CONFIG_BT_LE=y +CONFIG_BT_LEDS=y +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_MSFTEXT=y +CONFIG_BT_MTK=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_QCA=m +CONFIG_BT_QCOMSMD=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_RTL=m +# CONFIG_BT_SELFTEST is not set +CONFIG_BT_VIRTIO=m +CONFIG_BUG=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +CONFIG_BUILDTIME_MCOUNT_SORT=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_BUILD_BIN2C=y +CONFIG_BUILD_SALT="" +CONFIG_BXT_WC_PMIC_OPREGION=y +CONFIG_BYTCRC_PMIC_OPREGION=y +CONFIG_C2PORT_DURAMAR_2150=m +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +CONFIG_CACHEFILES_ERROR_INJECTION=y +# CONFIG_CACHEFILES_ONDEMAND is not set +CONFIG_CACHE_FEROCEON_L2=y +# CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH is not set +CONFIG_CACHE_L2X0=y +CONFIG_CACHE_L2X0_PMU=y +CONFIG_CACHE_TAUROS2=y +CONFIG_CACHE_UNIPHIER=y +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_DRIVERS=y +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_USB=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_BCM=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_CC770=m +CONFIG_CAN_CC770_ISA=m +CONFIG_CAN_CC770_PLATFORM=m +CONFIG_CAN_CTUCANFD=m +CONFIG_CAN_CTUCANFD_PCI=m +CONFIG_CAN_CTUCANFD_PLATFORM=m +CONFIG_CAN_C_CAN=m +CONFIG_CAN_C_CAN_PCI=m +CONFIG_CAN_C_CAN_PLATFORM=m +# CONFIG_CAN_DEBUG_DEVICES is not set +CONFIG_CAN_DEV=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_F81601=m +CONFIG_CAN_FLEXCAN=m +CONFIG_CAN_GRCAN=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_GW=m +CONFIG_CAN_HI311X=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_ISOTP=m +CONFIG_CAN_J1939=m +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_MCBA_USB=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +CONFIG_CAN_MSCAN=m +CONFIG_CAN_M_CAN=m +CONFIG_CAN_M_CAN_PCI=m +CONFIG_CAN_M_CAN_PLATFORM=m +CONFIG_CAN_M_CAN_TCAN4X5X=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCIEFD=m +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_RAW=m +CONFIG_CAN_RCAR=m +CONFIG_CAN_RCAR_CANFD=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m +CONFIG_CAN_TI_HECC=m +CONFIG_CAN_UCAN=m +CONFIG_CAN_VCAN=m +CONFIG_CAN_VXCAN=m +CONFIG_CAN_XILINXCAN=m +CONFIG_CAPI_TRACE=y +CONFIG_CARDBUS=y +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_CARL9170=m +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_HWRNG=y +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_CASSINI=m +CONFIG_CAVIUM_CPT=m +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_PTP=m +CONFIG_CAVIUM_TX2_ERRATUM_219=y +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_CC10001_ADC=m +CONFIG_CCS811=m +CONFIG_CCW=y +CONFIG_CCWGROUP=m +CONFIG_CCW_CONSOLE=y +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y +CONFIG_CC_HAS_IBT=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_KASAN_SW_TAGS=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_RETURN_THUNK=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y +CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_CC_HAS_SLS=y +CONFIG_CC_HAS_UBSAN_BOUNDS=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_CC_HAVE_STACKPROTECTOR_TLS=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_CC_IS_GCC=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_CDNS_I3C_MASTER=m +CONFIG_CDROM=y +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_CEC_CH7322=m +CONFIG_CEC_CORE=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_GPIO=m +CONFIG_CEC_MESON_AO=m +CONFIG_CEC_MESON_G12A_AO=m +CONFIG_CEC_NOTIFIER=y +CONFIG_CEC_PIN=y +# CONFIG_CEC_PIN_ERROR_INJ is not set +# CONFIG_CEC_SAMSUNG_S5P is not set +CONFIG_CEC_SECO=m +CONFIG_CEC_SECO_RC=y +CONFIG_CEC_TEGRA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_CFG80211=m +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_CPUACCT=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CGROUP_MISC=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_RDMA=y +CONFIG_CGROUP_SCHED=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_ADP5061=m +CONFIG_CHARGER_AXP20X=m +CONFIG_CHARGER_BD99954=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ2515X=m +CONFIG_CHARGER_BQ256XX=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_BQ25980=m +CONFIG_CHARGER_CPCAP=m +CONFIG_CHARGER_CROS_PCHG=m +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_DA9150=m +CONFIG_CHARGER_DETECTOR_MAX14656=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_LT3651=m +CONFIG_CHARGER_LTC4162L=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77650=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX77976=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_MP2629=m +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_PCF50633=m +CONFIG_CHARGER_QCOM_SMBB=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_SBS=m +CONFIG_CHARGER_SC2731=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_SURFACE=m +CONFIG_CHARGER_TPS65090=m +CONFIG_CHARGER_TPS65217=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHARGER_UCS1002=m +CONFIG_CHARGER_WILCO=m +CONFIG_CHARLCD=m +CONFIG_CHARLCD_BL_FLASH=y +# CONFIG_CHARLCD_BL_OFF is not set +# CONFIG_CHARLCD_BL_ON is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CHELSIO_INLINE_CRYPTO=y +CONFIG_CHELSIO_IPSEC_INLINE=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_TLS_DEVICE=m +CONFIG_CHROMEOS_ACPI=m +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PRIVACY_SCREEN=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROMEOS_TBMC=m +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHSC_SCH=m +CONFIG_CHTCRC_PMIC_OPREGION=y +CONFIG_CHT_DC_TI_PMIC_OPREGION=y +CONFIG_CHT_WC_PMIC_OPREGION=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS=m +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_FSCACHE=y +CONFIG_CIFS_POSIX=y +# CONFIG_CIFS_SMB_DIRECT is not set +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_SWN_UPCALL=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIO2_BRIDGE=y +CONFIG_CIO_DAC=m +# CONFIG_CIO_INJECT is not set +CONFIG_CLANG_VERSION=0 +CONFIG_CLKBLD_I8253=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_ARM_GLOBAL_TIMER_SCHED_CLOCK=y +CONFIG_CLKSRC_EXYNOS_MCT=y +CONFIG_CLKSRC_IMX_GPT=y +CONFIG_CLKSRC_IMX_TPM=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLKSRC_QCOM=y +CONFIG_CLKSRC_TI_32K=y +CONFIG_CLKSRC_VERSATILE=y +CONFIG_CLK_ACTIONS=y +CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC=y +CONFIG_CLK_BCM2711_DVP=m +CONFIG_CLK_BCM2835=y +CONFIG_CLK_BCM_NS2=y +CONFIG_CLK_BCM_SR=y +CONFIG_CLK_EMEV2=y +CONFIG_CLK_GFM_LPASS_SM8250=m +CONFIG_CLK_ICST=y +CONFIG_CLK_IMX5=y +CONFIG_CLK_IMX6Q=y +CONFIG_CLK_IMX6SL=y +CONFIG_CLK_IMX6SLL=y +CONFIG_CLK_IMX6SX=y +CONFIG_CLK_IMX6UL=y +CONFIG_CLK_IMX7D=y +CONFIG_CLK_IMX7ULP=y +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MP=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_CLK_IMX8ULP=m +CONFIG_CLK_IMX93=m +CONFIG_CLK_INTEL_SOCFPGA=y +CONFIG_CLK_INTEL_SOCFPGA32=y +CONFIG_CLK_INTEL_SOCFPGA64=y +CONFIG_CLK_LS1028A_PLLDIG=m +CONFIG_CLK_OWL_S500=y +CONFIG_CLK_OWL_S700=y +CONFIG_CLK_OWL_S900=y +CONFIG_CLK_PX30=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_R7S9210=y +CONFIG_CLK_R8A7740=y +CONFIG_CLK_R8A7742=y +CONFIG_CLK_R8A7743=y +CONFIG_CLK_R8A7745=y +CONFIG_CLK_R8A77470=y +CONFIG_CLK_R8A774A1=y +CONFIG_CLK_R8A774B1=y +CONFIG_CLK_R8A774C0=y +CONFIG_CLK_R8A774E1=y +CONFIG_CLK_R8A7778=y +CONFIG_CLK_R8A7779=y +CONFIG_CLK_R8A7790=y +CONFIG_CLK_R8A7791=y +CONFIG_CLK_R8A7792=y +CONFIG_CLK_R8A7794=y +CONFIG_CLK_R8A7795=y +CONFIG_CLK_R8A77960=y +CONFIG_CLK_R8A77961=y +CONFIG_CLK_R8A77965=y +CONFIG_CLK_R8A77970=y +CONFIG_CLK_R8A77980=y +CONFIG_CLK_R8A77990=y +CONFIG_CLK_R8A77995=y +CONFIG_CLK_R8A779A0=y +CONFIG_CLK_R8A779F0=y +CONFIG_CLK_R8A779G0=y +CONFIG_CLK_R9A06G032=y +CONFIG_CLK_R9A07G043=y +CONFIG_CLK_R9A07G044=y +CONFIG_CLK_R9A07G054=y +CONFIG_CLK_R9A09G011=y +CONFIG_CLK_RASPBERRYPI=m +CONFIG_CLK_RCAR_CPG_LIB=y +CONFIG_CLK_RCAR_GEN2_CPG=y +CONFIG_CLK_RCAR_GEN3_CPG=y +CONFIG_CLK_RCAR_GEN4_CPG=y +CONFIG_CLK_RCAR_USB2_CLOCK_SEL=y +CONFIG_CLK_RENESAS=y +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_CPG_MSTP=y +CONFIG_CLK_RENESAS_DIV6=y +CONFIG_CLK_RK3036=y +CONFIG_CLK_RK312X=y +CONFIG_CLK_RK3188=y +CONFIG_CLK_RK322X=y +CONFIG_CLK_RK3288=y +CONFIG_CLK_RK3308=y +CONFIG_CLK_RK3328=y +CONFIG_CLK_RK3368=y +CONFIG_CLK_RK3399=y +CONFIG_CLK_RK3568=y +CONFIG_CLK_RV110X=y +CONFIG_CLK_RZA1=y +CONFIG_CLK_RZG2L=y +CONFIG_CLK_SH73A0=y +CONFIG_CLK_SIFIVE=y +CONFIG_CLK_SIFIVE_PRCI=y +CONFIG_CLK_SP810=y +CONFIG_CLK_STARFIVE_JH7100=y +CONFIG_CLK_STARFIVE_JH7100_AUDIO=m +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_CLK_TWL6040=m +# CONFIG_CLK_UNIPHIER is not set +CONFIG_CLK_VEXPRESS_OSC=y +CONFIG_CLK_VF610=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=100 +CONFIG_CLONE_BACKWARDS=y +CONFIG_CLONE_BACKWARDS2=y +CONFIG_CLS_U32_MARK=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CLZ_TAB=y +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM3605=m +CONFIG_CM36651=m +CONFIG_CMA_ALIGNMENT=8 +CONFIG_CMA_AREAS=7 +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SIZE_MBYTES=32 +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +CONFIG_CMA_SYSFS=y +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_CMDLINE_FORCE is not set +CONFIG_CMDLINE_FROM_BOOTLOADER=y +CONFIG_CMM_IUCV=y +CONFIG_CMODEL_MEDANY=y +# CONFIG_CMODEL_MEDLOW is not set +CONFIG_CMT_SPEECH=m +CONFIG_CNIC=m +CONFIG_CODA_FS=m +# CONFIG_CODE_PATCHING_SELFTEST is not set +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_DIO200_ISA=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_AMPLC_PC236_ISA=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_ISA=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAC02=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_DAS08_ISA=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DAS800=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_ISADMA=m +CONFIG_COMEDI_ISA_DRIVERS=y +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_LABPC_ISA=m +CONFIG_COMEDI_NI_LABPC_ISADMA=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_NI_ROUTING=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_TESTS=m +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMMAND_LINE_SIZE=4096 +CONFIG_COMMON_CLK_APPLE_NCO=m +CONFIG_COMMON_CLK_ASPEED=y +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXI_CLKGEN=m +CONFIG_COMMON_CLK_BD718XX=m +CONFIG_COMMON_CLK_BM1880=y +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CDCE925=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_COMMON_CLK_EN7523=y +CONFIG_COMMON_CLK_FIXED_MMIO=y +CONFIG_COMMON_CLK_FSL_FLEXSPI=m +CONFIG_COMMON_CLK_FSL_SAI=y +CONFIG_COMMON_CLK_G12A=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_HI3516CV300=m +CONFIG_COMMON_CLK_HI3519=m +CONFIG_COMMON_CLK_HI3559A=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=m +CONFIG_COMMON_CLK_HI6220=y +CONFIG_COMMON_CLK_HI655X=m +CONFIG_COMMON_CLK_IPROC=y +CONFIG_COMMON_CLK_LOCHNAGAR=m +CONFIG_COMMON_CLK_MAX77686=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_MEDIATEK=y +CONFIG_COMMON_CLK_MESON8B=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +# CONFIG_COMMON_CLK_MT2701 is not set +CONFIG_COMMON_CLK_MT2712=y +CONFIG_COMMON_CLK_MT2712_BDPSYS=y +CONFIG_COMMON_CLK_MT2712_IMGSYS=y +CONFIG_COMMON_CLK_MT2712_JPGDECSYS=y +CONFIG_COMMON_CLK_MT2712_MFGCFG=y +CONFIG_COMMON_CLK_MT2712_MMSYS=y +CONFIG_COMMON_CLK_MT2712_VDECSYS=y +CONFIG_COMMON_CLK_MT2712_VENCSYS=y +CONFIG_COMMON_CLK_MT6765=y +CONFIG_COMMON_CLK_MT6765_AUDIOSYS=y +CONFIG_COMMON_CLK_MT6765_CAMSYS=y +CONFIG_COMMON_CLK_MT6765_GCESYS=y +CONFIG_COMMON_CLK_MT6765_IMGSYS=y +CONFIG_COMMON_CLK_MT6765_MFGSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2BSYS=y +CONFIG_COMMON_CLK_MT6765_MMSYS=y +CONFIG_COMMON_CLK_MT6765_VCODECSYS=y +CONFIG_COMMON_CLK_MT6779=y +CONFIG_COMMON_CLK_MT6779_AUDSYS=y +CONFIG_COMMON_CLK_MT6779_CAMSYS=y +CONFIG_COMMON_CLK_MT6779_IMGSYS=y +CONFIG_COMMON_CLK_MT6779_IPESYS=y +CONFIG_COMMON_CLK_MT6779_MFGCFG=y +CONFIG_COMMON_CLK_MT6779_MMSYS=y +CONFIG_COMMON_CLK_MT6779_VDECSYS=y +CONFIG_COMMON_CLK_MT6779_VENCSYS=y +CONFIG_COMMON_CLK_MT6797=y +CONFIG_COMMON_CLK_MT6797_IMGSYS=y +CONFIG_COMMON_CLK_MT6797_MMSYS=y +CONFIG_COMMON_CLK_MT6797_VDECSYS=y +CONFIG_COMMON_CLK_MT6797_VENCSYS=y +CONFIG_COMMON_CLK_MT7622=y +CONFIG_COMMON_CLK_MT7622_AUDSYS=y +CONFIG_COMMON_CLK_MT7622_ETHSYS=y +CONFIG_COMMON_CLK_MT7622_HIFSYS=y +CONFIG_COMMON_CLK_MT7629=y +CONFIG_COMMON_CLK_MT7629_ETHSYS=y +CONFIG_COMMON_CLK_MT7629_HIFSYS=y +CONFIG_COMMON_CLK_MT7986=y +CONFIG_COMMON_CLK_MT7986_ETHSYS=y +CONFIG_COMMON_CLK_MT8135=y +CONFIG_COMMON_CLK_MT8167=y +CONFIG_COMMON_CLK_MT8167_AUDSYS=y +CONFIG_COMMON_CLK_MT8167_IMGSYS=y +CONFIG_COMMON_CLK_MT8167_MFGCFG=y +CONFIG_COMMON_CLK_MT8167_MMSYS=y +CONFIG_COMMON_CLK_MT8167_VDECSYS=y +CONFIG_COMMON_CLK_MT8173=y +CONFIG_COMMON_CLK_MT8173_MMSYS=y +CONFIG_COMMON_CLK_MT8183=y +CONFIG_COMMON_CLK_MT8183_AUDIOSYS=y +CONFIG_COMMON_CLK_MT8183_CAMSYS=y +CONFIG_COMMON_CLK_MT8183_IMGSYS=y +CONFIG_COMMON_CLK_MT8183_IPU_ADL=y +CONFIG_COMMON_CLK_MT8183_IPU_CONN=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE0=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE1=y +CONFIG_COMMON_CLK_MT8183_MFGCFG=y +CONFIG_COMMON_CLK_MT8183_MMSYS=y +CONFIG_COMMON_CLK_MT8183_VDECSYS=y +CONFIG_COMMON_CLK_MT8183_VENCSYS=y +CONFIG_COMMON_CLK_MT8186=y +CONFIG_COMMON_CLK_MT8192=y +CONFIG_COMMON_CLK_MT8192_AUDSYS=y +CONFIG_COMMON_CLK_MT8192_CAMSYS=y +CONFIG_COMMON_CLK_MT8192_IMGSYS=y +CONFIG_COMMON_CLK_MT8192_IMP_IIC_WRAP=y +CONFIG_COMMON_CLK_MT8192_IPESYS=y +CONFIG_COMMON_CLK_MT8192_MDPSYS=y +CONFIG_COMMON_CLK_MT8192_MFGCFG=y +CONFIG_COMMON_CLK_MT8192_MMSYS=y +CONFIG_COMMON_CLK_MT8192_MSDC=y +CONFIG_COMMON_CLK_MT8192_SCP_ADSP=y +CONFIG_COMMON_CLK_MT8192_VDECSYS=y +CONFIG_COMMON_CLK_MT8192_VENCSYS=y +CONFIG_COMMON_CLK_MT8195=y +CONFIG_COMMON_CLK_MT8516=y +CONFIG_COMMON_CLK_MT8516_AUDSYS=y +CONFIG_COMMON_CLK_PALMAS=m +CONFIG_COMMON_CLK_PWM=m +CONFIG_COMMON_CLK_QCOM=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_ROCKCHIP=y +CONFIG_COMMON_CLK_RS9_PCIE=m +CONFIG_COMMON_CLK_S2MPS11=m +CONFIG_COMMON_CLK_SAMSUNG=y +CONFIG_COMMON_CLK_SCMI=m +CONFIG_COMMON_CLK_SCPI=m +CONFIG_COMMON_CLK_SI514=m +CONFIG_COMMON_CLK_SI5341=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI544=m +CONFIG_COMMON_CLK_SI570=m +CONFIG_COMMON_CLK_TI_ADPLL=y +CONFIG_COMMON_CLK_TPS68470=m +CONFIG_COMMON_CLK_VC5=m +CONFIG_COMMON_CLK_VISCONTI=y +CONFIG_COMMON_CLK_WM831X=m +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_ZYNQMP=y +CONFIG_COMMON_RESET_HI3660=m +CONFIG_COMMON_RESET_HI6220=m +CONFIG_COMPACTION=y +CONFIG_COMPAL_LAPTOP=m +CONFIG_COMPAT_32=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_COMPAT_BINFMT_ELF=y +# CONFIG_COMPAT_BRK is not set +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_COMPAT_OLD_SIGACTION=y +# CONFIG_COMPAT_VDSO is not set +# CONFIG_COMPILE_TEST is not set +CONFIG_CONFIGFS_FS=y +CONFIG_CONNECTOR=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_CONSOLE_POLL=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_CONTIG_ALLOC=y +CONFIG_CORDIC=m +CONFIG_COREDUMP=y +# CONFIG_CORESIGHT is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_CORTINA_PHY=m +CONFIG_CP15_BARRIER_EMULATION=y +# CONFIG_CPA_DEBUG is not set +CONFIG_CPCAP_ADC=m +CONFIG_CPU5_WDT=m +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_CPUMASK_OFFSTACK=y +CONFIG_CPUSETS=y +CONFIG_CPU_32v6K=y +CONFIG_CPU_32v7=y +CONFIG_CPU_ABRT_EV7=y +# CONFIG_CPU_BPREDICT_DISABLE is not set +CONFIG_CPU_CACHE_V7=y +CONFIG_CPU_CACHE_VIPT=y +CONFIG_CPU_COPY_V6=y +CONFIG_CPU_CP15=y +CONFIG_CPU_CP15_MMU=y +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_FREQ_THERMAL=y +CONFIG_CPU_HAS_ASID=y +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_CPU_IBPB_ENTRY=y +CONFIG_CPU_IBRS_ENTRY=y +# CONFIG_CPU_ICACHE_DISABLE is not set +CONFIG_CPU_ICACHE_MISMATCH_WORKAROUND=y +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_HALTPOLL=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +CONFIG_CPU_IDLE_THERMAL=y +CONFIG_CPU_ISOLATION=y +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_CPU_PABRT_V7=y +CONFIG_CPU_PJ4=y +CONFIG_CPU_PJ4B=y +CONFIG_CPU_PM=y +CONFIG_CPU_RMAP=y +CONFIG_CPU_SPECTRE=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_SW_DOMAIN_PAN=y +CONFIG_CPU_THERMAL=y +CONFIG_CPU_THUMB_CAPABLE=y +CONFIG_CPU_TLB_V7=y +CONFIG_CPU_UNRET_ENTRY=y +CONFIG_CPU_V7=y +CONFIG_CRAMFS_BLOCKDEV=y +CONFIG_CRAMFS_MTD=y +CONFIG_CRASH_CORE=y +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRC32=y +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_SELFTEST is not set +# CONFIG_CRC32_SLICEBY4 is not set +CONFIG_CRC32_SLICEBY8=y +CONFIG_CRC4=m +CONFIG_CRC64=y +CONFIG_CRC64_ROCKSOFT=y +CONFIG_CRC_CCITT=y +CONFIG_CRC_T10DIF=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_CROS_EC=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_ISHTP=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_MKBP_PROXIMITY=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_EC_RPMSG=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_EC_VBC=m +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +CONFIG_CRYPTO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=m +CONFIG_CRYPTO_AEGIS128_SIMD=y +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_ARM=m +CONFIG_CRYPTO_AES_ARM64=m +CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64_CE_BLK=m +CONFIG_CRYPTO_AES_ARM64_CE_CCM=m +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m +CONFIG_CRYPTO_AES_ARM_BS=m +CONFIG_CRYPTO_AES_ARM_CE=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_AES_S390=m +CONFIG_CRYPTO_AES_TI=m +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2B_NEON=m +CONFIG_CRYPTO_BLAKE2S_ARM=y +CONFIG_CRYPTO_BLAKE2S_X86=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_CHACHA20_X86_64=m +CONFIG_CRYPTO_CHACHA_S390=m +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRC32C_VPMSUM=m +CONFIG_CRYPTO_CRC32_ARM_CE=m +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_CRC32_S390=m +CONFIG_CRYPTO_CRC64_ROCKSOFT=y +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m +CONFIG_CRYPTO_CRCT10DIF_ARM_CE=m +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_CRCT10DIF_VPMSUM=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_CURVE25519=m +CONFIG_CRYPTO_CURVE25519_NEON=m +CONFIG_CRYPTO_CURVE25519_X86=m +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_DES_S390=m +CONFIG_CRYPTO_DEV_ALLWINNER=y +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_CRYPTO_DEV_ARTPEC6=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_BCM_SPU=m +CONFIG_CRYPTO_DEV_CAVIUM_ZIP=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_CCP_DD=m +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_CCREE=m +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_CPT=m +# CONFIG_CRYPTO_DEV_EXYNOS_RNG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD=255 +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD=2048 +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=m +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PRNG_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=m +CONFIG_CRYPTO_DEV_HIFN_795X=m +CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y +CONFIG_CRYPTO_DEV_HISI_HPRE=m +CONFIG_CRYPTO_DEV_HISI_QM=m +CONFIG_CRYPTO_DEV_HISI_SEC=m +CONFIG_CRYPTO_DEV_HISI_SEC2=m +CONFIG_CRYPTO_DEV_HISI_TRNG=m +CONFIG_CRYPTO_DEV_HISI_ZIP=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_CTS=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_ECB=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_ECC=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU_HMAC_SHA224=y +CONFIG_CRYPTO_DEV_MARVELL=m +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +CONFIG_CRYPTO_DEV_NITROX=m +CONFIG_CRYPTO_DEV_NX=y +CONFIG_CRYPTO_DEV_NX_COMPRESS=m +CONFIG_CRYPTO_DEV_NX_COMPRESS_POWERNV=m +CONFIG_CRYPTO_DEV_NX_COMPRESS_PSERIES=m +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT=m +CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m +CONFIG_CRYPTO_DEV_OMAP=m +CONFIG_CRYPTO_DEV_OMAP_AES=m +CONFIG_CRYPTO_DEV_OMAP_DES=m +CONFIG_CRYPTO_DEV_OMAP_SHAM=m +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_4XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m +CONFIG_CRYPTO_DEV_QAT_C62X=m +CONFIG_CRYPTO_DEV_QAT_C62XVF=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QCE=m +CONFIG_CRYPTO_DEV_QCE_AEAD=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD is not set +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA is not set +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER is not set +CONFIG_CRYPTO_DEV_QCE_SHA=y +CONFIG_CRYPTO_DEV_QCE_SKCIPHER=y +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN=512 +CONFIG_CRYPTO_DEV_QCOM_RNG=m +CONFIG_CRYPTO_DEV_ROCKCHIP=m +# CONFIG_CRYPTO_DEV_S5P is not set +CONFIG_CRYPTO_DEV_SA2UL=m +CONFIG_CRYPTO_DEV_SAHARA=m +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_SP_PSP=y +CONFIG_CRYPTO_DEV_SUN4I_SS=m +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE=m +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y +CONFIG_CRYPTO_DEV_SUN8I_SS=m +# CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG=y +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_VMX=y +CONFIG_CRYPTO_DEV_VMX_ENCRYPT=m +CONFIG_CRYPTO_DEV_ZYNQMP_AES=m +CONFIG_CRYPTO_DEV_ZYNQMP_SHA3=m +CONFIG_CRYPTO_DH=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECHAINIV=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_ENGINE=m +CONFIG_CRYPTO_ESSIV=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_GCM=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_GHASH_ARM64_CE=m +CONFIG_CRYPTO_GHASH_ARM_CE=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m +CONFIG_CRYPTO_GHASH_S390=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_KDF800108_CTR=y +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_LZO=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MD5_PPC=m +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_NHPOLY1305_AVX2=m +CONFIG_CRYPTO_NHPOLY1305_NEON=m +CONFIG_CRYPTO_NHPOLY1305_SSE2=m +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PAES_S390=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_ARM=m +CONFIG_CRYPTO_POLY1305_NEON=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_ARM=m +CONFIG_CRYPTO_SHA1_ARM64_CE=m +CONFIG_CRYPTO_SHA1_ARM_CE=m +CONFIG_CRYPTO_SHA1_ARM_NEON=m +CONFIG_CRYPTO_SHA1_PPC=m +CONFIG_CRYPTO_SHA1_S390=m +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA256_ARM=m +CONFIG_CRYPTO_SHA256_ARM64=m +CONFIG_CRYPTO_SHA256_S390=m +CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA2_ARM64_CE=m +CONFIG_CRYPTO_SHA2_ARM_CE=m +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SHA3_256_S390=m +CONFIG_CRYPTO_SHA3_512_S390=m +CONFIG_CRYPTO_SHA3_ARM64=m +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA512_ARM=m +CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA512_ARM64_CE=m +CONFIG_CRYPTO_SHA512_S390=m +CONFIG_CRYPTO_SHA512_SSSE3=m +CONFIG_CRYPTO_SIMD=m +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_SM3_ARM64_CE=m +CONFIG_CRYPTO_SM3_AVX_X86_64=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_SM4_ARM64_CE=m +CONFIG_CRYPTO_SM4_ARM64_CE_BLK=m +CONFIG_CRYPTO_SM4_ARM64_NEON_BLK=m +CONFIG_CRYPTO_STATS=y +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_AEAD=m +# CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_VPMSUM_TESTER=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_XTS=y +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_ZSTD=m +CONFIG_CS89x0=m +CONFIG_CS89x0_PLATFORM=m +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +CONFIG_CS_DSP=m +CONFIG_CTCM=m +CONFIG_CURRENT_POINTER_IN_TPIDRURO=y +CONFIG_CUSE=m +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_CXD2880_SPI_DRV=m +CONFIG_CXL=m +CONFIG_CXLFLASH=m +CONFIG_CXL_ACPI=m +CONFIG_CXL_BASE=y +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_PCI=m +CONFIG_CXL_PMEM=m +CONFIG_CXL_PORT=m +CONFIG_CXL_SUSPEND=y +CONFIG_CX_ECAT=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_DA280=m +CONFIG_DA311=m +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9062_THERMAL=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9150_GPADC=m +# CONFIG_DAMON is not set +CONFIG_DASD=m +CONFIG_DASD_DIAG=m +CONFIG_DASD_ECKD=m +CONFIG_DASD_EER=y +CONFIG_DASD_FBA=m +CONFIG_DASD_PROFILE=y +CONFIG_DATA_SHIFT=24 +CONFIG_DAVICOM_PHY=m +CONFIG_DAX=y +CONFIG_DCA=m +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_DCB=y +CONFIG_DCDBAS=m +CONFIG_DCSSBLK=m +CONFIG_DDR=y +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_DEBUGGER=y +CONFIG_DEBUG_ALIGN_RODATA=y +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_CREDENTIALS is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_GPIO is not set +# CONFIG_DEBUG_HIGHMEM is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_INFO_BTF_MODULES=y +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +CONFIG_DEBUG_INFO_DWARF5=y +# CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set +# CONFIG_DEBUG_INFO_NONE is not set +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KERNEL_DC is not set +# CONFIG_DEBUG_KMAP_LOCAL is not set +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_LL is not set +CONFIG_DEBUG_LL_INCLUDE="mach/debug-macro.S" +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_DEBUG_MISC=y +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_NET is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_PREEMPT is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_DEBUG_USER is not set +CONFIG_DEBUG_VF_UART_PORT=1 +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +CONFIG_DEBUG_WX=y +CONFIG_DECNET_NF_GRABULATOR=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_DEFAULT_CUBIC=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +CONFIG_DEFAULT_INIT="" +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_DEFXX=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_RBU=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMBIOS_SMM=y +CONFIG_DELL_SMBIOS_WMI=y +CONFIG_DELL_SMO8800=m +CONFIG_DELL_UART_BACKLIGHT=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_WMI_DESCRIPTOR=m +CONFIG_DELL_WMI_LED=m +CONFIG_DELL_WMI_PRIVACY=y +CONFIG_DELL_WMI_SYSMAN=m +# CONFIG_DEPRECATED_PARAM_STRUCT is not set +CONFIG_DETECT_HUNG_TASK=y +# CONFIG_DEVFREQ_EVENT_EXYNOS_NOCP is not set +# CONFIG_DEVFREQ_EVENT_EXYNOS_PPMU is not set +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI=m +CONFIG_DEVFREQ_GOV_PASSIVE=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_DEVICE_MIGRATION=y +CONFIG_DEVICE_PRIVATE=y +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_DEVTMPFS_SAFE=y +CONFIG_DEV_APPLETALK=m +CONFIG_DEV_COREDUMP=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_HMEM=m +CONFIG_DEV_DAX_HMEM_DEVICES=y +CONFIG_DEV_DAX_KMEM=m +CONFIG_DEV_DAX_PMEM=m +CONFIG_DHT11=m +CONFIG_DIAG288_WATCHDOG=m +CONFIG_DIMLIB=y +CONFIG_DL2K=m +CONFIG_DLHL60D=m +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +CONFIG_DLN2_ADC=m +CONFIG_DM9000=m +# CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL is not set +CONFIG_DM9051=m +CONFIG_DM9102=m +# CONFIG_DMABUF_DEBUG is not set +CONFIG_DMABUF_HEAPS=y +CONFIG_DMABUF_HEAPS_CMA=y +CONFIG_DMABUF_HEAPS_SYSTEM=y +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +# CONFIG_DMADEVICES_DEBUG is not set +CONFIG_DMARD06=m +CONFIG_DMARD09=m +CONFIG_DMARD10=m +CONFIG_DMAR_TABLE=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ACPI=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DMA_BCM2835=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ENGINE_RAID=y +# CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_OF=y +CONFIG_DMA_OMAP=y +CONFIG_DMA_OPS=y +CONFIG_DMA_OPS_BYPASS=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_SHARED_BUFFER=y +CONFIG_DMA_SUN6I=m +CONFIG_DMI=y +CONFIG_DMIID=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_DMI_SYSFS=m +CONFIG_DM_AUDIT=y +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_BUFIO=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_CLONE=m +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_DELAY=m +# CONFIG_DM_DUST is not set +CONFIG_DM_EBS=m +CONFIG_DM_ERA=m +CONFIG_DM_FLAKEY=m +CONFIG_DM_INIT=y +CONFIG_DM_INTEGRITY=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_RAID=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_SWITCH=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_UEVENT=y +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_VERITY=m +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING is not set +CONFIG_DM_WRITECACHE=m +CONFIG_DM_ZERO=m +CONFIG_DM_ZONED=m +CONFIG_DNOTIFY=y +CONFIG_DNS_RESOLVER=y +CONFIG_DOVE_CLK=y +CONFIG_DOVE_THERMAL=m +CONFIG_DP83640_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DPAA2_CONSOLE=m +CONFIG_DPAA_ERRATUM_A050385=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_DPOT_DAC=m +CONFIG_DPS310=m +CONFIG_DPTF_PCH_FIVR=m +CONFIG_DPTF_POWER=m +CONFIG_DQL=y +CONFIG_DRAGONRISE_FF=y +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_DRM=m +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_USERPTR=y +CONFIG_DRM_AMD_ACP=y +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_DCN=y +CONFIG_DRM_AMD_DC_HDCP=y +CONFIG_DRM_AMD_DC_SI=y +CONFIG_DRM_AMD_SECURE_DISPLAY=y +CONFIG_DRM_ANALOGIX_ANX6345=m +CONFIG_DRM_ANALOGIX_ANX7625=m +CONFIG_DRM_ANALOGIX_DP=m +CONFIG_DRM_ARCPGU=m +CONFIG_DRM_ARMADA=m +CONFIG_DRM_ASPEED_GFX=m +CONFIG_DRM_ATMEL_HLCDC=m +CONFIG_DRM_BOCHS=m +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_BUDDY=m +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_CDNS_MHDP8546=m +CONFIG_DRM_CDNS_MHDP8546_J721E=y +CONFIG_DRM_CHIPONE_ICN6211=m +CONFIG_DRM_CHRONTEL_CH7033=m +CONFIG_DRM_CROS_EC_ANX7688=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_DISPLAY_DP_HELPER=y +CONFIG_DRM_DISPLAY_HDCP_HELPER=y +CONFIG_DRM_DISPLAY_HDMI_HELPER=y +CONFIG_DRM_DISPLAY_HELPER=m +CONFIG_DRM_DP_AUX_BUS=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +CONFIG_DRM_DW_HDMI=m +CONFIG_DRM_DW_HDMI_AHB_AUDIO=m +CONFIG_DRM_DW_HDMI_CEC=m +CONFIG_DRM_DW_HDMI_GP_AUDIO=m +CONFIG_DRM_DW_HDMI_I2S_AUDIO=m +CONFIG_DRM_DW_MIPI_DSI=m +CONFIG_DRM_ETNAVIV_THERMAL=y +CONFIG_DRM_EXYNOS=m +CONFIG_DRM_EXYNOS5433_DECON=y +# CONFIG_DRM_EXYNOS7_DECON is not set +CONFIG_DRM_EXYNOS_DSI=y +CONFIG_DRM_EXYNOS_FIMC=y +# CONFIG_DRM_EXYNOS_FIMD is not set +CONFIG_DRM_EXYNOS_G2D=y +CONFIG_DRM_EXYNOS_GSC=y +CONFIG_DRM_EXYNOS_HDMI=y +CONFIG_DRM_EXYNOS_IPP=y +CONFIG_DRM_EXYNOS_MIC=y +CONFIG_DRM_EXYNOS_MIXER=y +CONFIG_DRM_EXYNOS_ROTATOR=y +CONFIG_DRM_EXYNOS_SCALER=y +# CONFIG_DRM_EXYNOS_VIDI is not set +CONFIG_DRM_FBDEV_EMULATION=y +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_FBDEV_OVERALLOC=100 +CONFIG_DRM_FSL_DCU=m +CONFIG_DRM_FSL_LDB=m +CONFIG_DRM_GEM_CMA_HELPER=m +CONFIG_DRM_GEM_SHMEM_HELPER=m +CONFIG_DRM_GM12U320=m +CONFIG_DRM_GMA500=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HDLCD=m +# CONFIG_DRM_HDLCD_SHOW_UNDERRUN is not set +CONFIG_DRM_HISI_HIBMC=m +CONFIG_DRM_HISI_KIRIN=m +CONFIG_DRM_HYPERV=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7511_AUDIO=y +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_I915=m +CONFIG_DRM_I915_CAPTURE_ERROR=y +CONFIG_DRM_I915_COMPRESS_ERROR=y +# CONFIG_DRM_I915_DEBUG is not set +# CONFIG_DRM_I915_DEBUG_GUC is not set +# CONFIG_DRM_I915_DEBUG_MMIO is not set +# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set +# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set +CONFIG_DRM_I915_FENCE_TIMEOUT=10000 +CONFIG_DRM_I915_FORCE_PROBE="" +CONFIG_DRM_I915_GVT=y +CONFIG_DRM_I915_GVT_KVMGT=m +CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500 +# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000 +CONFIG_DRM_I915_PREEMPT_TIMEOUT=640 +CONFIG_DRM_I915_PXP=y +CONFIG_DRM_I915_REQUEST_TIMEOUT=20000 +# CONFIG_DRM_I915_SELFTEST is not set +CONFIG_DRM_I915_STOP_TIMEOUT=100 +# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set +# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set +CONFIG_DRM_I915_TIMESLICE_DURATION=1 +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250 +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_WERROR is not set +CONFIG_DRM_IMX=m +CONFIG_DRM_IMX_DCSS=m +CONFIG_DRM_IMX_HDMI=m +CONFIG_DRM_IMX_LDB=m +CONFIG_DRM_IMX_PARALLEL_DISPLAY=m +CONFIG_DRM_IMX_TVE=m +CONFIG_DRM_ITE_IT6505=m +CONFIG_DRM_ITE_IT66121=m +CONFIG_DRM_KMB_DISPLAY=m +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_KOMEDA=m +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_LIMA=m +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_LONTIUM_LT8912B=m +CONFIG_DRM_LONTIUM_LT9211=m +CONFIG_DRM_LONTIUM_LT9611=m +CONFIG_DRM_LONTIUM_LT9611UXC=m +CONFIG_DRM_LVDS_CODEC=m +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MCDE=m +CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_HDMI=m +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW=m +CONFIG_DRM_MESON=m +CONFIG_DRM_MESON_DW_HDMI=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_DP=y +CONFIG_DRM_MSM_DPU=y +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_7NM_PHY=y +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI=y +CONFIG_DRM_MSM_HDMI_HDCP=y +CONFIG_DRM_MSM_MDP4=y +CONFIG_DRM_MSM_MDP5=y +CONFIG_DRM_MSM_MDSS=y +CONFIG_DRM_MXS=y +CONFIG_DRM_MXSFB=m +CONFIG_DRM_NOMODESET=y +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_NOUVEAU_SVM is not set +CONFIG_DRM_NWL_MIPI_DSI=m +CONFIG_DRM_NXP_PTN3460=m +# CONFIG_DRM_OMAP is not set +CONFIG_DRM_PANEL=y +CONFIG_DRM_PANEL_ABT_Y030XX067A=m +CONFIG_DRM_PANEL_ARM_VERSATILE=m +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596=m +CONFIG_DRM_PANEL_BOE_BF060Y8M_AJ0=m +CONFIG_DRM_PANEL_BOE_HIMAX8279D=m +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_BRIDGE=y +CONFIG_DRM_PANEL_DSI_CM=m +CONFIG_DRM_PANEL_EDP=m +CONFIG_DRM_PANEL_ELIDA_KD35T133=m +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D=m +CONFIG_DRM_PANEL_ILITEK_IL9322=m +CONFIG_DRM_PANEL_ILITEK_ILI9341=m +CONFIG_DRM_PANEL_ILITEK_ILI9881C=m +CONFIG_DRM_PANEL_INNOLUX_EJ030NA=m +CONFIG_DRM_PANEL_INNOLUX_P079ZCA=m +CONFIG_DRM_PANEL_JDI_LT070ME05000=m +CONFIG_DRM_PANEL_JDI_R63452=m +CONFIG_DRM_PANEL_KHADAS_TS050=m +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04=m +CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W=m +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829=m +CONFIG_DRM_PANEL_LG_LB035Q02=m +CONFIG_DRM_PANEL_LG_LG4573=m +CONFIG_DRM_PANEL_LVDS=m +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51=m +CONFIG_DRM_PANEL_MIPI_DBI=m +CONFIG_DRM_PANEL_NEC_NL8048HL11=m +CONFIG_DRM_PANEL_NEWVISION_NV3052C=m +CONFIG_DRM_PANEL_NOVATEK_NT35510=m +CONFIG_DRM_PANEL_NOVATEK_NT35560=m +CONFIG_DRM_PANEL_NOVATEK_NT35950=m +CONFIG_DRM_PANEL_NOVATEK_NT36672A=m +CONFIG_DRM_PANEL_NOVATEK_NT39016=m +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO=m +CONFIG_DRM_PANEL_ORISETECH_OTM8009A=m +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=m +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00=m +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m +CONFIG_DRM_PANEL_RAYDIUM_RM67191=m +CONFIG_DRM_PANEL_RAYDIUM_RM68200=m +CONFIG_DRM_PANEL_RONBO_RB070D30=m +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=m +CONFIG_DRM_PANEL_SAMSUNG_DB7430=m +CONFIG_DRM_PANEL_SAMSUNG_LD9040=m +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0=m +CONFIG_DRM_PANEL_SAMSUNG_S6D27A1=m +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_DSI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_SPI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=m +CONFIG_DRM_PANEL_SAMSUNG_SOFEF00=m +CONFIG_DRM_PANEL_SEIKO_43WVF1G=m +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01=m +CONFIG_DRM_PANEL_SHARP_LS037V7DW01=m +CONFIG_DRM_PANEL_SHARP_LS043T1LE01=m +CONFIG_DRM_PANEL_SHARP_LS060T1SX01=m +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_SITRONIX_ST7701=m +CONFIG_DRM_PANEL_SITRONIX_ST7703=m +CONFIG_DRM_PANEL_SITRONIX_ST7789V=m +CONFIG_DRM_PANEL_SONY_ACX565AKM=m +CONFIG_DRM_PANEL_SONY_TULIP_TRULY_NT35521=m +CONFIG_DRM_PANEL_TDO_TL070WSH30=m +CONFIG_DRM_PANEL_TPO_TD028TTEC1=m +CONFIG_DRM_PANEL_TPO_TD043MTEA1=m +CONFIG_DRM_PANEL_TPO_TPG110=m +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA=m +CONFIG_DRM_PANEL_VISIONOX_RM69299=m +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +CONFIG_DRM_PANEL_XINPENG_XPP055C272=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_PARADE_PS8622=m +CONFIG_DRM_PARADE_PS8640=m +CONFIG_DRM_PL111=m +CONFIG_DRM_PRIVACY_SCREEN=y +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_RCAR_CMM=m +CONFIG_DRM_RCAR_DU=m +CONFIG_DRM_RCAR_DW_HDMI=m +CONFIG_DRM_RCAR_LVDS=m +CONFIG_DRM_RCAR_MIPI_DSI=m +CONFIG_DRM_RCAR_USE_CMM=y +CONFIG_DRM_RCAR_USE_LVDS=y +CONFIG_DRM_RCAR_VSP=y +CONFIG_DRM_RCAR_WRITEBACK=y +CONFIG_DRM_ROCKCHIP=m +CONFIG_DRM_SCHED=m +CONFIG_DRM_SII902X=m +CONFIG_DRM_SII9234=m +CONFIG_DRM_SIL_SII8620=m +CONFIG_DRM_SIMPLE_BRIDGE=m +CONFIG_DRM_SPRD=m +CONFIG_DRM_SSD130X_I2C=m +CONFIG_DRM_SSD130X_SPI=m +# CONFIG_DRM_STI is not set +CONFIG_DRM_STM=m +CONFIG_DRM_STM_DSI=m +CONFIG_DRM_SUN4I=m +CONFIG_DRM_SUN4I_BACKEND=m +CONFIG_DRM_SUN4I_HDMI=m +CONFIG_DRM_SUN4I_HDMI_CEC=y +CONFIG_DRM_SUN6I_DSI=m +CONFIG_DRM_SUN8I_DW_HDMI=m +CONFIG_DRM_SUN8I_MIXER=m +CONFIG_DRM_SUN8I_TCON_TOP=m +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +CONFIG_DRM_TEGRA_STAGING=y +CONFIG_DRM_THINE_THC63LVD1024=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_TILCDC=m +CONFIG_DRM_TI_SN65DSI83=m +CONFIG_DRM_TI_SN65DSI86=m +CONFIG_DRM_TI_TFP410=m +CONFIG_DRM_TI_TPD12S015=m +CONFIG_DRM_TOSHIBA_TC358762=m +CONFIG_DRM_TOSHIBA_TC358764=m +CONFIG_DRM_TOSHIBA_TC358767=m +CONFIG_DRM_TOSHIBA_TC358768=m +CONFIG_DRM_TOSHIBA_TC358775=m +CONFIG_DRM_TTM=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_TVE200=m +CONFIG_DRM_UDL=m +CONFIG_DRM_V3D=m +CONFIG_DRM_VBOXVIDEO=m +CONFIG_DRM_VC4=m +CONFIG_DRM_VC4_HDMI_CEC=y +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +# CONFIG_DRM_VMWGFX_MKSSTATS is not set +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_ZYNQMP_DPSUB=m +CONFIG_DS1803=m +CONFIG_DS4424=m +CONFIG_DST_CACHE=y +CONFIG_DTC=y +CONFIG_DTL=y +CONFIG_DTPM=y +CONFIG_DTPM_CPU=y +# CONFIG_DTPM_DEVFREQ is not set +CONFIG_DT_IDLE_GENPD=y +CONFIG_DT_IDLE_STATES=y +CONFIG_DUMMY=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_DVB_A8293=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_AS102=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_BCM3510=m +CONFIG_DVB_BT8XX=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET_PATCH=m +# CONFIG_DVB_C8SECTPFE is not set +CONFIG_DVB_CORE=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_CXD2099=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_CXD2880=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_DRXK=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_DUMMY_FE=m +CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_EC100=m +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_HELENE=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_L64781=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_M88DS3103=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_MB86A16=m +CONFIG_DVB_MB86A20S=m +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_MN88443X=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_MXL692=m +CONFIG_DVB_NET=y +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_PLATFORM_DRIVERS=y +CONFIG_DVB_PLL=m +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_S921=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_SP2=m +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STV0297=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_TC90522=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_TDA10071=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_TDA826X=m +# CONFIG_DVB_TEST_DRIVERS is not set +CONFIG_DVB_TS2020=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m +CONFIG_DVB_TUNER_ITD1000=m +# CONFIG_DVB_ULE_DEBUG is not set +CONFIG_DVB_USB=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_ZD1301=m +CONFIG_DVB_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_ZL10353=m +CONFIG_DWC_XLGMAC=m +CONFIG_DWC_XLGMAC_PCI=m +CONFIG_DWMAC_DWC_QOS_ETH=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_IMX8=m +CONFIG_DWMAC_INTEL=m +CONFIG_DWMAC_IPQ806X=m +CONFIG_DWMAC_LOONGSON=m +CONFIG_DWMAC_MEDIATEK=m +CONFIG_DWMAC_MESON=m +CONFIG_DWMAC_QCOM_ETHQOS=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DWMAC_SOCFPGA=m +CONFIG_DWMAC_SUN8I=m +# CONFIG_DWMAC_SUNXI is not set +CONFIG_DWMAC_VISCONTI=m +CONFIG_DW_APB_ICTL=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +CONFIG_DW_AXI_DMAC=m +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_DW_I3C_MASTER=m +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_DYNAMIC_PHYSICAL_MASK=y +CONFIG_DYNAMIC_SIGFRAME=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_EADM_SCH=m +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_EARLY_PRINTK_USB=y +CONFIG_EARLY_PRINTK_USB_XDBC=y +CONFIG_EBC_C384_WDT=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_EDAC=y +CONFIG_EDAC_ALTERA=y +CONFIG_EDAC_ALTERA_ETHERNET=y +CONFIG_EDAC_ALTERA_L2C=y +CONFIG_EDAC_ALTERA_NAND=y +CONFIG_EDAC_ALTERA_OCRAM=y +CONFIG_EDAC_ALTERA_QSPI=y +CONFIG_EDAC_ALTERA_SDMMC=y +CONFIG_EDAC_ALTERA_SDRAM=y +CONFIG_EDAC_ALTERA_USB=y +# CONFIG_EDAC_AL_MC is not set +CONFIG_EDAC_AMD64=m +CONFIG_EDAC_ARMADA_XP=y +CONFIG_EDAC_ASPEED=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_BLUEFIELD=m +CONFIG_EDAC_CPC925=m +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_DMC520=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_GHES=y +CONFIG_EDAC_HIGHBANK_L2=m +CONFIG_EDAC_HIGHBANK_MC=m +CONFIG_EDAC_I10NM=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_IGEN6=m +CONFIG_EDAC_LAYERSCAPE=m +# CONFIG_EDAC_LEGACY_SYSFS is not set +CONFIG_EDAC_PND2=m +CONFIG_EDAC_QCOM=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_SIFIVE=y +CONFIG_EDAC_SKX=m +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC_SYNOPSYS=m +CONFIG_EDAC_THUNDERX=m +CONFIG_EDAC_TI=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_XGENE=m +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_EEH=y +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_AT25=m +CONFIG_EFI=y +CONFIG_EFIVAR_FS=y +# CONFIG_EFI_ARMSTUB_DTB_LOADER is not set +CONFIG_EFI_BOOTLOADER_CONTROL=m +CONFIG_EFI_CAPSULE_LOADER=m +CONFIG_EFI_COCO_SECRET=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +CONFIG_EFI_DEV_PATH_PARSER=y +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# CONFIG_EFI_DISABLE_RUNTIME is not set +CONFIG_EFI_DXE_MEM_ATTRIBUTES=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_EMBEDDED_FIRMWARE=y +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +CONFIG_EFI_MIXED=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_PARTITION=y +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_EFI_RCI2_TABLE=y +CONFIG_EFI_RUNTIME_MAP=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_SECRET=m +CONFIG_EFI_SOFT_RESERVE=y +CONFIG_EFI_STUB=y +CONFIG_EFI_TEST=m +CONFIG_EFI_VARS=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EINT_MTK=y +CONFIG_EISA=y +CONFIG_EISA_NAMES=y +CONFIG_EISA_PCI_EISA=y +CONFIG_EISA_VIRTUAL_ROOT=y +CONFIG_EISA_VLB_PRIMING=y +CONFIG_EL3=m +CONFIG_ELFCORE=y +CONFIG_ELF_CORE=y +CONFIG_EMAC_ROCKCHIP=m +# CONFIG_EMBEDDED is not set +CONFIG_EM_TIMER_STI=y +CONFIG_ENA_ETHERNET=m +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCRYPTED_KEYS=y +CONFIG_ENCX24J600=m +CONFIG_ENERGY_MODEL=y +CONFIG_ENIC=m +CONFIG_ENVELOPE_DETECTOR=m +CONFIG_EPAPR_BOOT=y +CONFIG_EPAPR_PARAVIRT=y +CONFIG_EPIC100=m +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_ZIP=y +# CONFIG_EROFS_FS_ZIP_LZMA is not set +CONFIG_ERRATA_SIFIVE=y +CONFIG_ERRATA_SIFIVE_CIP_1200=y +CONFIG_ERRATA_SIFIVE_CIP_453=y +# CONFIG_ERRATA_THEAD is not set +CONFIG_ET131X=m +CONFIG_ETHERNET=y +CONFIG_ETHTOOL_NETLINK=y +CONFIG_EUROTECH_WDT=m +CONFIG_EVENTFD=y +CONFIG_EVENT_TRACING=y +CONFIG_EVM=y +CONFIG_EVM_ADD_XATTRS=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +CONFIG_EVM_X509_PATH="/etc/keys/x509_evm.der" +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_EXPERT=y +CONFIG_EXPOLINE=y +CONFIG_EXPOLINE_AUTO=y +CONFIG_EXPOLINE_EXTERN=y +# CONFIG_EXPOLINE_FULL is not set +# CONFIG_EXPOLINE_OFF is not set +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_FSA9480=m +CONFIG_EXTCON_GPIO=m +CONFIG_EXTCON_INTEL_CHT_WC=m +CONFIG_EXTCON_INTEL_INT3496=m +CONFIG_EXTCON_INTEL_MRFLD=m +CONFIG_EXTCON_MAX14577=m +CONFIG_EXTCON_MAX3355=m +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_MAX77843=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_QCOM_SPMI_MISC=m +CONFIG_EXTCON_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTRA_FIRMWARE="" +CONFIG_EXTRA_TARGETS="" +# CONFIG_EXYNOS5422_DMC is not set +# CONFIG_EXYNOS_ADC is not set +# CONFIG_EXYNOS_AUDSS_CLK_CON is not set +# CONFIG_EXYNOS_CHIPID is not set +# CONFIG_EXYNOS_CLKOUT is not set +CONFIG_EXYNOS_CPU_SUSPEND=y +# CONFIG_EXYNOS_IOMMU is not set +CONFIG_EXYNOS_IRQ_COMBINER=y +CONFIG_EXYNOS_PMU=y +CONFIG_EXYNOS_PMU_ARM_DRIVERS=y +CONFIG_EXYNOS_PM_DOMAINS=y +CONFIG_EXYNOS_SROM=y +CONFIG_EXYNOS_THERMAL=y +# CONFIG_EXYNOS_USI is not set +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET=m +CONFIG_EZX_PCAP=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +CONFIG_F2FS_FS_COMPRESSION=y +CONFIG_F2FS_FS_LZ4=y +CONFIG_F2FS_FS_LZ4HC=y +CONFIG_F2FS_FS_LZO=y +CONFIG_F2FS_FS_LZORLE=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_ZSTD=y +# CONFIG_F2FS_IOSTAT is not set +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_UNFAIR_RWSEM=y +CONFIG_F71808E_WDT=m +CONFIG_FAILOVER=m +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_FARSYNC=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FAT_FS=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_FA_DUMP=y +CONFIG_FB=y +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_ARC=m +CONFIG_FB_ARMCLCD=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +CONFIG_FB_CFB_REV_PIXELS_IN_BYTE=y +CONFIG_FB_CMDLINE=y +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_DA8XX=m +CONFIG_FB_DDC=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_EFI=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_GOLDFISH=m +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +CONFIG_FB_HYPERV=m +CONFIG_FB_IMX=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_LE80578=m +CONFIG_FB_MACMODES=y +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_MB862XX_LIME is not set +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_MX3=y +CONFIG_FB_N411=m +CONFIG_FB_NOTIFY=y +CONFIG_FB_NVIDIA_BACKLIGHT=y +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y +CONFIG_FB_OF=y +CONFIG_FB_OMAP2=m +# CONFIG_FB_OMAP2_CONNECTOR_ANALOG_TV is not set +# CONFIG_FB_OMAP2_CONNECTOR_DVI is not set +# CONFIG_FB_OMAP2_CONNECTOR_HDMI is not set +# CONFIG_FB_OMAP2_DEBUG_SUPPORT is not set +CONFIG_FB_OMAP2_DSS=m +# CONFIG_FB_OMAP2_DSS_DEBUG is not set +# CONFIG_FB_OMAP2_DSS_DEBUGFS is not set +CONFIG_FB_OMAP2_DSS_DPI=y +# CONFIG_FB_OMAP2_DSS_DSI is not set +CONFIG_FB_OMAP2_DSS_HDMI_COMMON=y +CONFIG_FB_OMAP2_DSS_INIT=y +CONFIG_FB_OMAP2_DSS_MIN_FCK_PER_PCK=0 +# CONFIG_FB_OMAP2_DSS_SDI is not set +CONFIG_FB_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y +CONFIG_FB_OMAP2_DSS_VENC=y +# CONFIG_FB_OMAP2_ENCODER_OPA362 is not set +# CONFIG_FB_OMAP2_ENCODER_TFP410 is not set +# CONFIG_FB_OMAP2_ENCODER_TPD12S015 is not set +CONFIG_FB_OMAP2_NUM_FBS=3 +# CONFIG_FB_OMAP2_PANEL_DPI is not set +# CONFIG_FB_OMAP2_PANEL_LGPHILIPS_LB035Q02 is not set +CONFIG_FB_OMAP4_DSS_HDMI=y +# CONFIG_FB_OMAP5_DSS_HDMI is not set +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PROVIDE_GET_FB_UNMAPPED_AREA=y +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S3_DDC=y +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SH_MOBILE_LCDC=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SM750=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SEPS525=m +CONFIG_FB_TFT_SH1106=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TMIO=m +CONFIG_FB_TMIO_ACCELL=y +CONFIG_FB_UDL=m +CONFIG_FB_VESA=y +CONFIG_FB_VGA16=m +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +# CONFIG_FB_VIRTUAL is not set +CONFIG_FB_XILINX=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_FEC=y +CONFIG_FHANDLE=y +# CONFIG_FHCI_DEBUG is not set +CONFIG_FIB_RULES=y +CONFIG_FIELDBUS_DEV=m +CONFIG_FILE_LOCKING=y +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_FIPS_SIGNATURE_SELFTEST is not set +CONFIG_FIQ=y +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FIRMWARE_EDID=y +CONFIG_FIXED_PHY=y +CONFIG_FIX_EARLYCON_MEM=y +# CONFIG_FLATMEM_MANUAL is not set +CONFIG_FM10K=m +CONFIG_FONTS=y +# CONFIG_FONT_10x18 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_6x8 is not set +# CONFIG_FONT_7x14 is not set +CONFIG_FONT_8x16=y +CONFIG_FONT_8x8=y +CONFIG_FONT_ACORN_8x8=y +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_SUN8x16 is not set +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_TER16x32=y +CONFIG_FORCEDETH=m +CONFIG_FORCE_PCI=y +CONFIG_FORCE_SMP=y +CONFIG_FPGA=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_EMIF=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000=m +CONFIG_FPGA_DFL_PCI=m +CONFIG_FPGA_MGR_ALTERA_CVP=m +CONFIG_FPGA_MGR_ALTERA_PS_SPI=m +CONFIG_FPGA_MGR_ICE40_SPI=m +CONFIG_FPGA_MGR_MACHXO2_SPI=m +CONFIG_FPGA_MGR_SOCFPGA=m +CONFIG_FPGA_MGR_SOCFPGA_A10=m +CONFIG_FPGA_MGR_STRATIX10_SOC=m +CONFIG_FPGA_MGR_VERSAL_FPGA=m +CONFIG_FPGA_MGR_XILINX_SPI=m +CONFIG_FPGA_MGR_ZYNQMP_FPGA=m +CONFIG_FPGA_REGION=m +CONFIG_FPROBE=y +CONFIG_FPU=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +CONFIG_FRAME_POINTER=y +CONFIG_FREEZER=y +CONFIG_FRONTSWAP=y +CONFIG_FSCACHE=m +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_FSCACHE_STATS=y +CONFIG_FSI=m +CONFIG_FSI_MASTER_ASPEED=m +CONFIG_FSI_MASTER_AST_CF=m +CONFIG_FSI_MASTER_GPIO=m +CONFIG_FSI_MASTER_HUB=m +# CONFIG_FSI_NEW_DEV_NODE is not set +CONFIG_FSI_OCC=m +CONFIG_FSI_SBEFIFO=m +CONFIG_FSI_SCOM=m +CONFIG_FSL_BMAN_TEST=m +# CONFIG_FSL_BMAN_TEST_API is not set +CONFIG_FSL_DPAA=y +CONFIG_FSL_DPAA2_ETH=m +CONFIG_FSL_DPAA2_ETH_DCB=y +CONFIG_FSL_DPAA2_PTP_CLOCK=m +CONFIG_FSL_DPAA2_QDMA=m +CONFIG_FSL_DPAA2_SWITCH=m +CONFIG_FSL_DPAA_CHECKING=y +CONFIG_FSL_DPAA_ETH=m +CONFIG_FSL_EDMA=m +CONFIG_FSL_ENETC=m +CONFIG_FSL_ENETC_IERB=m +CONFIG_FSL_ENETC_MDIO=m +CONFIG_FSL_ENETC_PTP_CLOCK=m +CONFIG_FSL_ENETC_QOS=y +CONFIG_FSL_ENETC_VF=m +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_FSL_FMAN=y +CONFIG_FSL_GTM=y +CONFIG_FSL_GUTS=y +CONFIG_FSL_IFC=y +CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_FSL_LBC=y +CONFIG_FSL_MC_DPIO=m +CONFIG_FSL_MC_UAPI_SUPPORT=y +CONFIG_FSL_PQ_MDIO=m +CONFIG_FSL_QDMA=m +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_RCPM=y +CONFIG_FSL_UCC_HDLC=m +CONFIG_FSL_XGMAC_MDIO=y +CONFIG_FSNOTIFY=y +CONFIG_FS_DAX=y +CONFIG_FS_DAX_LIMITED=y +CONFIG_FS_DAX_PMD=y +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_ENCRYPTION_ALGS=y +CONFIG_FS_ENCRYPTION_INLINE_CRYPT=y +CONFIG_FS_IOMAP=y +CONFIG_FS_MBCACHE=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FS_VERITY=y +CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y +# CONFIG_FS_VERITY_DEBUG is not set +CONFIG_FTGMAC100=m +CONFIG_FTL=m +CONFIG_FTMAC100=m +CONFIG_FTM_QUADDEC=m +CONFIG_FTRACE=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY=y +CONFIG_FTRACE_MCOUNT_USE_RECORDMCOUNT=y +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_SORT_STARTUP_TEST is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_FTRACE_SYSCALLS=y +# CONFIG_FTR_FIXUP_SELFTEST is not set +CONFIG_FTWDT010_WATCHDOG=m +CONFIG_FUEL_GAUGE_SC27XX=m +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_FUJITSU_ES=m +CONFIG_FUJITSU_LAPTOP=m +CONFIG_FUJITSU_TABLET=m +CONFIG_FUNCTION_ERROR_INJECTION=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUN_CORE=m +CONFIG_FUN_ETH=m +CONFIG_FUSE_DAX=y +CONFIG_FUSE_FS=y +CONFIG_FUSION_CTL=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_SAS=m +CONFIG_FUSION_SPI=m +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_FWNODE_MDIO=y +CONFIG_FWTTY_MAX_CARD_PORTS=32 +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FW_ATTR_CLASS=m +CONFIG_FW_CACHE=y +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_LOADER_COMPRESS_XZ=y +CONFIG_FW_LOADER_COMPRESS_ZSTD=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_FW_LOADER_SYSFS=y +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_UPLOAD is not set +CONFIG_FXAS21002C=m +CONFIG_FXAS21002C_I2C=m +CONFIG_FXAS21002C_SPI=m +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_FXOS8700=m +CONFIG_FXOS8700_I2C=m +CONFIG_FXOS8700_SPI=m +CONFIG_GACT_PROB=y +CONFIG_GADGET_UAC1=y +# CONFIG_GADGET_UAC1_LEGACY is not set +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GARP=m +CONFIG_GART_IOMMU=y +CONFIG_GCC12_NO_ARRAY_BOUNDS=y +CONFIG_GCC_SUPPORTS_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_GCC_VERSION=110300 +# CONFIG_GCOV_KERNEL is not set +CONFIG_GDB_SCRIPTS=y +CONFIG_GEMINI_ETHERNET=m +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ARCH_NUMA=y +CONFIG_GENERIC_ARCH_TOPOLOGY=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_GENERIC_CPU=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_GENERIC_ENTRY=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IOREMAP=y +CONFIG_GENERIC_IRQ_CHIP=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_MULTI_HANDLER=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_GENERIC_PINCONF=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_GENERIC_SCHED_CLOCK=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_TRACER=y +CONFIG_GENERIC_VDSO_32=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_GENEVE=m +CONFIG_GENWQE=m +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 +CONFIG_GEN_RTC=y +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GIANFAR=m +CONFIG_GIGABYTE_WMI=m +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +CONFIG_GNSS_USB=m +CONFIG_GOLDFISH_PIPE=m +CONFIG_GOLDFISH_TTY=m +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_GP2AP002=m +CONFIG_GP2AP020A00F=m +CONFIG_GPD_POCKET_FAN=m +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIOLIB_IRQCHIP=y +CONFIG_GPIO_104_DIO_48E=m +CONFIG_GPIO_104_IDIO_16=m +CONFIG_GPIO_104_IDI_48=m +CONFIG_GPIO_74X164=m +CONFIG_GPIO_74XX_MMIO=m +CONFIG_GPIO_AAEON=m +CONFIG_GPIO_ACPI=y +CONFIG_GPIO_ADNP=m +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_AGGREGATOR=m +CONFIG_GPIO_ALTERA=m +CONFIG_GPIO_ALTERA_A10SR=m +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_ASPEED=m +CONFIG_GPIO_ASPEED_SGPIO=y +CONFIG_GPIO_BCM_XGS_IPROC=m +CONFIG_GPIO_BD71815=m +CONFIG_GPIO_BD71828=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_BRCMSTB=m +CONFIG_GPIO_BT8XX=m +CONFIG_GPIO_CADENCE=m +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_CRYSTAL_COVE=y +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DAVINCI=y +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_EIC_SPRD=m +# CONFIG_GPIO_EM is not set +CONFIG_GPIO_EN7523=m +CONFIG_GPIO_EXAR=m +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_FTGPIO010=y +CONFIG_GPIO_GPIO_MM=m +CONFIG_GPIO_GRGPIO=m +CONFIG_GPIO_GW_PLD=m +CONFIG_GPIO_HISI=m +CONFIG_GPIO_HLWD=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_IT87=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LOGICVC=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LP873X=m +CONFIG_GPIO_LP87565=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_MAX3191X=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MAX730X=m +CONFIG_GPIO_MAX77620=m +CONFIG_GPIO_MAX77650=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_MLXBF=m +CONFIG_GPIO_MLXBF2=m +CONFIG_GPIO_ML_IOH=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_MOXTET=m +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_MSC313=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_OMAP=y +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCIE_IDIO_24=m +CONFIG_GPIO_PCI_IDIO_16=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_PMIC_EIC_SPRD=m +CONFIG_GPIO_RASPBERRYPI_EXP=m +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_RCAR=m +CONFIG_GPIO_RDA=y +CONFIG_GPIO_REGMAP=m +CONFIG_GPIO_ROCKCHIP=m +CONFIG_GPIO_SAMA5D2_PIOBU=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_SIFIVE=y +CONFIG_GPIO_SIM=m +CONFIG_GPIO_SL28CPLD=m +CONFIG_GPIO_SPRD=m +CONFIG_GPIO_STMPE=y +CONFIG_GPIO_SYSCON=m +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TC3589X=y +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +CONFIG_GPIO_THUNDERX=m +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS65218=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TPS68470=m +CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_TS4800=m +CONFIG_GPIO_TS4900=m +CONFIG_GPIO_UCB1400=m +# CONFIG_GPIO_UNIPHIER is not set +CONFIG_GPIO_VF610=y +CONFIG_GPIO_VIPERBOARD=m +CONFIG_GPIO_VISCONTI=m +CONFIG_GPIO_VX855=m +CONFIG_GPIO_WATCHDOG=m +CONFIG_GPIO_WCD934X=m +CONFIG_GPIO_WHISKEY_COVE=m +CONFIG_GPIO_WINBOND=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +CONFIG_GPIO_WS16C48=m +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=m +CONFIG_GPIO_XLP=m +CONFIG_GPIO_XRA1403=m +CONFIG_GPIO_ZEVIO=y +CONFIG_GPIO_ZYNQ=m +CONFIG_GPIO_ZYNQMP_MODEPIN=m +CONFIG_GRACE_PERIOD=m +CONFIG_GREENASIA_FF=y +CONFIG_GREYBUS_AUDIO=m +CONFIG_GREYBUS_AUDIO_APB_CODEC=m +CONFIG_GREYBUS_BOOTROM=m +CONFIG_GREYBUS_BRIDGED_PHY=m +CONFIG_GREYBUS_ES2=m +CONFIG_GREYBUS_FIRMWARE=m +CONFIG_GREYBUS_GPIO=m +CONFIG_GREYBUS_HID=m +CONFIG_GREYBUS_I2C=m +CONFIG_GREYBUS_LIGHT=m +CONFIG_GREYBUS_LOG=m +CONFIG_GREYBUS_LOOPBACK=m +CONFIG_GREYBUS_POWER=m +CONFIG_GREYBUS_PWM=m +CONFIG_GREYBUS_RAW=m +CONFIG_GREYBUS_SDIO=m +CONFIG_GREYBUS_SPI=m +CONFIG_GREYBUS_UART=m +CONFIG_GREYBUS_USB=m +CONFIG_GREYBUS_VIBRATOR=m +CONFIG_GRO_CELLS=y +CONFIG_GTP=m +CONFIG_GUEST_PERF_EVENTS=y +# CONFIG_GUP_TEST is not set +CONFIG_GVE=m +CONFIG_GXP_TIMER=y +CONFIG_GXP_WATCHDOG=m +CONFIG_HALTPOLL_CPUIDLE=m +CONFIG_HAMRADIO=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAPPYMEAL=m +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDEN_BRANCH_HISTORY=y +CONFIG_HARDEN_BRANCH_PREDICTOR=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAVE_64BIT_ALIGNED_ACCESS=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_HUGE_VMALLOC=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_HW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_HAVE_ARCH_KCSAN=y +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KGDB_QXFER_PKT=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_HAVE_ARCH_NODE_DEV_GROUP=y +CONFIG_HAVE_ARCH_NVRAM_OPS=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_ARM_ARCH_TIMER=y +CONFIG_HAVE_ARM_SCU=y +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_HAVE_ARM_TWD=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_EISA=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_ARCH=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IMA_KEXEC=y +CONFIG_HAVE_IMX_ANATOP=y +CONFIG_HAVE_IMX_GPC=y +CONFIG_HAVE_IMX_MMDC=y +CONFIG_HAVE_IMX_SRC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_JUMP_LABEL_HACK=y +CONFIG_HAVE_KCSAN_COMPILER=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_UNCOMPRESSED=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_HAVE_KVM_DIRTY_RING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_HAVE_KVM_INVALID_WAKEUPS=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_HAVE_KVM_PFNCACHE=y +CONFIG_HAVE_KVM_PM_NOTIFIER=y +CONFIG_HAVE_KVM_VCPU_ASYNC_IOCTL=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_HAVE_LD_DEAD_CODE_DATA_ELIMINATION=y +CONFIG_HAVE_LIVEPATCH=y +CONFIG_HAVE_MARCH_Z10_FEATURES=y +CONFIG_HAVE_MARCH_Z13_FEATURES=y +CONFIG_HAVE_MARCH_Z196_FEATURES=y +CONFIG_HAVE_MARCH_ZEC12_FEATURES=y +CONFIG_HAVE_MEMBLOCK_PHYS_MAP=y +CONFIG_HAVE_MEMORYLESS_NODES=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_NMI_WATCHDOG=y +CONFIG_HAVE_NOINSTR_HACK=y +CONFIG_HAVE_NOINSTR_VALIDATION=y +CONFIG_HAVE_NOP_MCOUNT=y +CONFIG_HAVE_OBJTOOL=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_HAVE_PCI=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_PNETID=m +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y +CONFIG_HAVE_PREEMPT_DYNAMIC_KEY=y +CONFIG_HAVE_PROC_CPU=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_HAVE_RETHOOK=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HAVE_SMP=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_UACCESS_VALIDATION=y +CONFIG_HAVE_UID16=y +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_IDLE=y +CONFIG_HBMC_AM654=m +# CONFIG_HCALL_STATS is not set +CONFIG_HD44780=m +CONFIG_HD44780_COMMON=m +CONFIG_HDC100X=m +CONFIG_HDC2010=m +CONFIG_HDLC=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_X25=m +CONFIG_HDMI=y +CONFIG_HDMI_LPE_AUDIO=m +CONFIG_HDQ_MASTER_OMAP=m +# CONFIG_HEADERS_INSTALL is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +# CONFIG_HERMES_PRISM is not set +# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set +CONFIG_HI13X1_GMAC=y +CONFIG_HI3660_MBOX=m +CONFIG_HI6220_MBOX=m +CONFIG_HI6421V600_IRQ=m +CONFIG_HI8435=m +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_HIDRAW=y +CONFIG_HID_A4TECH=m +CONFIG_HID_ACCUTOUCH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_ALPS=m +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_BIGBEN_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_HID_ELAN=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GENERIC=m +CONFIG_HID_GFRM=m +CONFIG_HID_GLORIOUS=m +CONFIG_HID_GOOGLE_HAMMER=m +CONFIG_HID_GREENASIA=m +CONFIG_HID_GT683R=m +CONFIG_HID_GYRATION=m +CONFIG_HID_HOLTEK=m +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_ICADE=m +CONFIG_HID_ITE=m +CONFIG_HID_JABRA=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LETSKETCH=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_HID_MACALLY=m +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +CONFIG_HID_MAYFLASH=m +CONFIG_HID_MCP2221=m +CONFIG_HID_MEGAWORLD_FF=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NINTENDO=m +CONFIG_HID_NTI=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PID=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_HID_PRIMAX=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_RAZER=m +CONFIG_HID_REDRAGON=m +CONFIG_HID_RETRODE=m +CONFIG_HID_RMI=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +CONFIG_HID_SENSOR_GYRO_3D=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_HUMIDITY=m +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_HID_SENSOR_TEMP=m +CONFIG_HID_SIGMAMICRO=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_HID_SONY=m +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEAM=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_HID_TIVO=m +# CONFIG_HID_TOPRE is not set +CONFIG_HID_TOPSEED=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_U2FZERO=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_UDRAW_PS3=m +CONFIG_HID_VIEWSONIC=m +CONFIG_HID_VIVALDI=m +CONFIG_HID_VIVALDI_COMMON=m +CONFIG_HID_WACOM=m +CONFIG_HID_WALTOP=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XIAOMI=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_HID_ZYDACRON=m +CONFIG_HIGHMEM=y +CONFIG_HIGHPTE=y +CONFIG_HIGH_RES_TIMERS=y +CONFIG_HINIC=m +CONFIG_HIP04_ETH=m +# CONFIG_HIPPI is not set +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_HISILICON_LPC=y +CONFIG_HISI_ACC_VFIO_PCI=m +# CONFIG_HISI_DMA is not set +CONFIG_HISI_FEMAC=m +CONFIG_HISI_PCIE_PMU=m +CONFIG_HISI_PMU=m +CONFIG_HISI_THERMAL=m +CONFIG_HIST_TRIGGERS=y +# CONFIG_HIST_TRIGGERS_DEBUG is not set +CONFIG_HIX5HD2_GMAC=m +CONFIG_HMC425=m +CONFIG_HMC_DRV=m +CONFIG_HMEM_REPORTING=y +CONFIG_HMM_MIRROR=y +CONFIG_HMS_ANYBUSS_BUS=m +CONFIG_HMS_PROFINET=m +CONFIG_HNS=m +CONFIG_HNS3=m +CONFIG_HNS3_DCB=y +CONFIG_HNS3_ENET=m +CONFIG_HNS3_HCLGE=m +CONFIG_HNS3_HCLGEVF=m +CONFIG_HNS_DSAF=m +CONFIG_HNS_ENET=m +CONFIG_HNS_MDIO=m +CONFIG_HOLTEK_FF=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_CS=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_PLX=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_POWERNV=m +CONFIG_HOTPLUG_PCI_RPA=m +CONFIG_HOTPLUG_PCI_RPA_DLPAR=m +CONFIG_HOTPLUG_PCI_S390=y +CONFIG_HOTPLUG_SMT=y +CONFIG_HP03=m +CONFIG_HP206C=m +CONFIG_HPET=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HPET_TIMER=y +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_HP_ACCEL=m +CONFIG_HP_WATCHDOG=m +CONFIG_HP_WMI=m +CONFIG_HSA_AMD=y +CONFIG_HSA_AMD_SVM=y +CONFIG_HSI_BOARDINFO=y +CONFIG_HSI_CHAR=m +CONFIG_HSU_DMA=y +CONFIG_HT16K33=m +CONFIG_HTC_EGPIO=y +CONFIG_HTC_I2CPLD=y +CONFIG_HTE_TEGRA194=m +CONFIG_HTE_TEGRA194_TEST=m +CONFIG_HTS221=m +CONFIG_HTS221_I2C=m +CONFIG_HTS221_SPI=m +CONFIG_HTU21=m +CONFIG_HUAWEI_WMI=m +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set +CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y +CONFIG_HVCS=m +CONFIG_HVC_CONSOLE=y +# CONFIG_HVC_DCC is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_IUCV=y +CONFIG_HVC_OLD_HVSI=y +CONFIG_HVC_OPAL=y +CONFIG_HVC_RTAS=y +# CONFIG_HVC_UDBG is not set +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_HV_PERF_CTRS=y +CONFIG_HWLAT_TRACER=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +CONFIG_HWPOISON_INJECT=m +CONFIG_HWSPINLOCK_OMAP=m +CONFIG_HWSPINLOCK_QCOM=m +CONFIG_HWSPINLOCK_SPRD=m +CONFIG_HWSPINLOCK_SUN6I=m +CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=m +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_CAVIUM=m +CONFIG_HW_RANDOM_CN10K=m +# CONFIG_HW_RANDOM_EXYNOS is not set +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_IMX_RNGC=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_MTK=m +CONFIG_HW_RANDOM_NPCM=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OMAP3_ROM=m +CONFIG_HW_RANDOM_OPTEE=m +CONFIG_HW_RANDOM_POLARFIRE_SOC=m +CONFIG_HW_RANDOM_POWERNV=m +CONFIG_HW_RANDOM_PSERIES=m +CONFIG_HW_RANDOM_S390=m +CONFIG_HW_RANDOM_TPM=y +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XGENE=m +CONFIG_HX711=m +CONFIG_HYPERV=m +CONFIG_HYPERVISOR_GUEST=y +CONFIG_HYPERV_BALLOON=m +CONFIG_HYPERV_IOMMU=y +CONFIG_HYPERV_KEYBOARD=m +CONFIG_HYPERV_NET=m +CONFIG_HYPERV_STORAGE=m +# CONFIG_HYPERV_TESTING is not set +CONFIG_HYPERV_TIMER=y +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_VSOCKETS=m +# CONFIG_HZ_1000 is not set +# CONFIG_HZ_200 is not set +# CONFIG_HZ_300 is not set +# CONFIG_HZ_500 is not set +CONFIG_HZ_FIXED=0 +# CONFIG_HZ_PERIODIC is not set +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALTERA=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_APPLE=m +CONFIG_I2C_ARB_GPIO_CHALLENGE=m +CONFIG_I2C_ASPEED=m +CONFIG_I2C_AXXIA=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=m +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CADENCE is not set +CONFIG_I2C_CCGX_UCSI=m +CONFIG_I2C_CHT_WC=m +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CP2615=m +CONFIG_I2C_CROS_EC_TUNNEL=m +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CORE is not set +CONFIG_I2C_DEMUX_PINCTRL=m +CONFIG_I2C_DESIGNWARE_AMDPSP=y +CONFIG_I2C_DESIGNWARE_BAYTRAIL=y +CONFIG_I2C_DESIGNWARE_CORE=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +# CONFIG_I2C_EMEV2 is not set +# CONFIG_I2C_EXYNOS5 is not set +CONFIG_I2C_FSI=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_HID_ACPI=m +CONFIG_I2C_HID_CORE=m +CONFIG_I2C_HID_OF=m +CONFIG_I2C_HID_OF_GOODIX=m +CONFIG_I2C_HISI=m +CONFIG_I2C_HIX5HD2=m +CONFIG_I2C_IMX_LPI2C=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_MESON=m +CONFIG_I2C_MLXBF=m +CONFIG_I2C_MLXCPLD=m +CONFIG_I2C_MPC=m +CONFIG_I2C_MT65XX=m +CONFIG_I2C_MUX=m +CONFIG_I2C_MUX_GPMUX=m +CONFIG_I2C_MUX_PINCTRL=m +CONFIG_I2C_MV64XXX=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NOMADIK=m +CONFIG_I2C_NPCM7XX=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_OPAL=y +CONFIG_I2C_OWL=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PXA=m +CONFIG_I2C_PXA_SLAVE=y +CONFIG_I2C_QCOM_CCI=m +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=m +CONFIG_I2C_RCAR=m +CONFIG_I2C_RIIC=m +CONFIG_I2C_RK3X=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +# CONFIG_I2C_S3C2410 is not set +CONFIG_I2C_SCMI=m +CONFIG_I2C_SH_MOBILE=m +CONFIG_I2C_SI470X=m +CONFIG_I2C_SI4713=m +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_SPRD=y +CONFIG_I2C_STUB=m +CONFIG_I2C_SYNQUACER=m +CONFIG_I2C_TEGRA=m +CONFIG_I2C_TEGRA_BPMP=m +CONFIG_I2C_THUNDERX=m +CONFIG_I2C_TINY_USB=m +# CONFIG_I2C_UNIPHIER is not set +# CONFIG_I2C_UNIPHIER_F is not set +CONFIG_I2C_VERSATILE=m +CONFIG_I2C_VIPERBOARD=m +CONFIG_I2C_XGENE_SLIMPRO=m +CONFIG_I2C_XLP9XX=m +CONFIG_I40E=m +CONFIG_I40EVF=m +CONFIG_I40E_DCB=y +CONFIG_I82092=m +CONFIG_I8253_LOCK=y +CONFIG_I8K=y +CONFIG_IA32_EMULATION=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_IAQCORE=m +CONFIG_IAVF=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBMVETH=m +CONFIG_IBMVIO=y +CONFIG_IBMVMC=m +CONFIG_IBMVNIC=m +CONFIG_IBM_ASM=m +CONFIG_IBM_BSR=m +CONFIG_IBM_PARTITION=y +CONFIG_IBM_RTL=m +CONFIG_ICE=m +CONFIG_ICE_HWTS=y +CONFIG_ICE_SWITCHDEV=y +CONFIG_ICP10100=m +CONFIG_ICPLUS_PHY=m +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_IDLE_INJECT=y +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IE6XX_WDT=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_CA8210=m +CONFIG_IEEE802154_CA8210_DEBUGFS=y +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_HWSIM=m +CONFIG_IEEE802154_MCR20A=m +CONFIG_IEEE802154_MRF24J40=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IFB=m +CONFIG_IFCVF=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IGB_DCA=y +CONFIG_IGB_HWMON=y +CONFIG_IGC=m +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +CONFIG_IIO_BUFFER_HW_CONSUMER=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_CROS_EC_ACCEL_LEGACY=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=m +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_MS_SENSORS_I2C=m +CONFIG_IIO_MUX=m +CONFIG_IIO_RESCALE=m +CONFIG_IIO_SCMI=m +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +CONFIG_IIO_SSP_SENSORHUB=m +CONFIG_IIO_SSP_SENSORS_COMMONS=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_IIO_ST_GYRO_3AXIS=m +CONFIG_IIO_ST_GYRO_I2C_3AXIS=m +CONFIG_IIO_ST_GYRO_SPI_3AXIS=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_ST_LSM6DSX_I2C=m +CONFIG_IIO_ST_LSM6DSX_I3C=m +CONFIG_IIO_ST_LSM6DSX_SPI=m +CONFIG_IIO_ST_LSM9DS0=m +CONFIG_IIO_ST_LSM9DS0_I2C=m +CONFIG_IIO_ST_LSM9DS0_SPI=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_SW_DEVICE=m +CONFIG_IIO_SW_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +CONFIG_IIO_TIGHTLOOP_TRIGGER=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_TRIGGERED_EVENT=m +# CONFIG_IKCONFIG is not set +CONFIG_IKHEADERS=m +CONFIG_IMA=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_MODSIG=y +# CONFIG_IMA_APPRAISE_SIGNED_INIT is not set +CONFIG_IMA_ARCH_POLICY=y +# CONFIG_IMA_BLACKLIST_KEYRING is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +# CONFIG_IMA_DISABLE_HTABLE is not set +CONFIG_IMA_KEXEC=y +# CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY is not set +CONFIG_IMA_LSM_RULES=y +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y +CONFIG_IMA_TRUSTED_KEYRING=y +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMA_X509_PATH="/etc/keys/x509_ima.der" +CONFIG_IMG_ASCII_LCD=m +CONFIG_IMX2_WDT=m +CONFIG_IMX7D_ADC=m +CONFIG_IMX7ULP_WDT=m +CONFIG_IMX8MM_THERMAL=m +CONFIG_IMX8QXP_ADC=m +CONFIG_IMX_DMA=m +CONFIG_IMX_DSP=m +CONFIG_IMX_DSP_REMOTEPROC=m +CONFIG_IMX_GPCV2=y +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_IMX_INTMUX=y +CONFIG_IMX_IPUV3_CORE=m +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_MBOX=m +CONFIG_IMX_REMOTEPROC=m +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +CONFIG_IMX_SC_THERMAL=m +CONFIG_IMX_SC_WDT=m +CONFIG_IMX_SDMA=m +CONFIG_IMX_THERMAL=m +CONFIG_IMX_WEIM=y +CONFIG_INA2XX_ADC=m +CONFIG_INDIRECT_PIO=y +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESPINTCP=y +CONFIG_INET6_ESP_OFFLOAD=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET_AH=m +CONFIG_INET_DCCP_DIAG=m +CONFIG_INET_DIAG=m +CONFIG_INET_DIAG_DESTROY=y +CONFIG_INET_ESP=m +CONFIG_INET_ESPINTCP=y +CONFIG_INET_ESP_OFFLOAD=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_MPTCP_DIAG=m +CONFIG_INET_RAW_DIAG=m +CONFIG_INET_SCTP_DIAG=m +CONFIG_INET_TABLE_PERTURB_ORDER=16 +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_BNXT_RE=m +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EFA=m +CONFIG_INFINIBAND_HFI1=m +CONFIG_INFINIBAND_HNS=m +CONFIG_INFINIBAND_HNS_HIP08=y +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_IRDMA=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_OPA_VNIC=m +CONFIG_INFINIBAND_QEDR=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_RDMAVT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_VIRT_DMA=y +CONFIG_INFINIBAND_VMWARE_PVRDMA=m +CONFIG_INFTL=m +CONFIG_INITRAMFS_PRESERVE_MTIME=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_INIT_STACK_NONE=y +CONFIG_INLINE_READ_LOCK=y +CONFIG_INLINE_READ_LOCK_BH=y +CONFIG_INLINE_READ_LOCK_IRQ=y +CONFIG_INLINE_READ_LOCK_IRQSAVE=y +CONFIG_INLINE_READ_TRYLOCK=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_BH=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_READ_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_SPIN_LOCK=y +CONFIG_INLINE_SPIN_LOCK_BH=y +CONFIG_INLINE_SPIN_LOCK_IRQ=y +CONFIG_INLINE_SPIN_LOCK_IRQSAVE=y +CONFIG_INLINE_SPIN_TRYLOCK=y +CONFIG_INLINE_SPIN_TRYLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_BH=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE=y +CONFIG_INLINE_WRITE_LOCK=y +CONFIG_INLINE_WRITE_LOCK_BH=y +CONFIG_INLINE_WRITE_LOCK_IRQ=y +CONFIG_INLINE_WRITE_LOCK_IRQSAVE=y +CONFIG_INLINE_WRITE_TRYLOCK=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_BH=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE=y +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_ARIZONA_HAPTICS=m +CONFIG_INPUT_ATC260X_ONKEY=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATMEL_CAPTOUCH=m +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_CPCAP_PWRBUTTON=m +CONFIG_INPUT_DA7280_HAPTICS=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_DA9055_ONKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +CONFIG_INPUT_DRV260X_HAPTICS=m +CONFIG_INPUT_DRV2665_HAPTICS=m +CONFIG_INPUT_DRV2667_HAPTICS=m +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_DECODER=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_HISI_POWERKEY=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +CONFIG_INPUT_IQS7222=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_MAX77650_ONKEY=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_PALMAS_PWRBUTTON=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_PM8941_PWRKEY=m +CONFIG_INPUT_PM8XXX_VIBRATOR=m +CONFIG_INPUT_PMIC8XXX_PWRKEY=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_RAVE_SP_PWRBUTTON=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_RK805_PWRKEY=m +CONFIG_INPUT_SC27XX_VIBRA=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_STPMIC1_ONKEY=m +CONFIG_INPUT_TPS65218_PWRBUTTON=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_VIVALDIFMAP=y +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_YEALINK=m +CONFIG_INSTRUCTION_DECODER=y +CONFIG_INT3406_THERMAL=m +CONFIG_INT340X_THERMAL=m +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_INTEGRITY_MACHINE_KEYRING=y +CONFIG_INTEGRITY_PLATFORM_KEYRING=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEL_ATOMISP=y +CONFIG_INTEL_ATOMISP2_LED=m +CONFIG_INTEL_ATOMISP2_PDX86=y +CONFIG_INTEL_BXTWC_PMIC_TMU=m +CONFIG_INTEL_BXT_PMIC_THERMAL=m +CONFIG_INTEL_CHTDC_TI_PWRBTN=m +CONFIG_INTEL_CHTWC_INT33FE=m +CONFIG_INTEL_GTT=y +CONFIG_INTEL_HFI_THERMAL=y +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_IDLE=y +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IDXD=m +CONFIG_INTEL_IDXD_BUS=m +# CONFIG_INTEL_IDXD_COMPAT is not set +CONFIG_INTEL_IDXD_PERFMON=y +CONFIG_INTEL_IDXD_SVM=y +CONFIG_INTEL_INT0002_VGPIO=m +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_ISHTP_ECLITE=m +CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER=m +CONFIG_INTEL_ISH_HID=m +CONFIG_INTEL_LDMA=y +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MEI_GSC=m +CONFIG_INTEL_MEI_HDCP=m +CONFIG_INTEL_MEI_ME=m +CONFIG_INTEL_MEI_PXP=m +CONFIG_INTEL_MEI_TXE=m +CONFIG_INTEL_MEI_WDT=m +CONFIG_INTEL_MENLOW=m +CONFIG_INTEL_MRFLD_ADC=m +CONFIG_INTEL_MRFLD_PWRBTN=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMT_CLASS=m +CONFIG_INTEL_PMT_CRASHLOG=m +CONFIG_INTEL_PMT_TELEMETRY=m +CONFIG_INTEL_POWERCLAMP=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_QEP=m +CONFIG_INTEL_RAPL=m +CONFIG_INTEL_RAPL_CORE=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SAR_INT1092=m +CONFIG_INTEL_SCU=y +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_INTEL_SCU_PCI=y +CONFIG_INTEL_SCU_PLATFORM=m +CONFIG_INTEL_SDSI=m +CONFIG_INTEL_SKL_INT3472=m +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_SOC_PMIC_BXTWC=m +CONFIG_INTEL_SOC_PMIC_CHTDC_TI=m +CONFIG_INTEL_SOC_PMIC_CHTWC=y +CONFIG_INTEL_SOC_PMIC_MRFLD=m +CONFIG_INTEL_SPEED_SELECT_INTERFACE=m +CONFIG_INTEL_STRATIX10_RSU=m +CONFIG_INTEL_STRATIX10_SERVICE=m +CONFIG_INTEL_TCC_COOLING=m +CONFIG_INTEL_TDX_GUEST=y +CONFIG_INTEL_TELEMETRY=m +CONFIG_INTEL_TH=m +CONFIG_INTEL_TH_ACPI=m +# CONFIG_INTEL_TH_DEBUG is not set +CONFIG_INTEL_TH_GTH=m +CONFIG_INTEL_TH_MSU=m +CONFIG_INTEL_TH_PCI=m +CONFIG_INTEL_TH_PTI=m +CONFIG_INTEL_TH_STH=m +CONFIG_INTEL_TURBO_MAX_3=y +CONFIG_INTEL_TXT=y +CONFIG_INTEL_UNCORE_FREQ_CONTROL=m +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_VSEC=m +CONFIG_INTEL_WMI=y +CONFIG_INTEL_WMI_SBL_FW_UPDATE=m +CONFIG_INTEL_WMI_THUNDERBOLT=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_INTERCONNECT_IMX=m +CONFIG_INTERCONNECT_IMX8MM=m +CONFIG_INTERCONNECT_IMX8MN=m +CONFIG_INTERCONNECT_IMX8MQ=m +CONFIG_INTERCONNECT_QCOM=y +CONFIG_INTERCONNECT_QCOM_BCM_VOTER=m +CONFIG_INTERCONNECT_QCOM_MSM8916=m +CONFIG_INTERCONNECT_QCOM_MSM8939=m +CONFIG_INTERCONNECT_QCOM_MSM8974=m +CONFIG_INTERCONNECT_QCOM_MSM8996=m +CONFIG_INTERCONNECT_QCOM_OSM_L3=m +CONFIG_INTERCONNECT_QCOM_QCM2290=m +CONFIG_INTERCONNECT_QCOM_QCS404=m +CONFIG_INTERCONNECT_QCOM_RPMH=m +CONFIG_INTERCONNECT_QCOM_RPMH_POSSIBLE=y +CONFIG_INTERCONNECT_QCOM_SC7180=m +CONFIG_INTERCONNECT_QCOM_SC7280=m +CONFIG_INTERCONNECT_QCOM_SC8180X=m +CONFIG_INTERCONNECT_QCOM_SC8280XP=m +CONFIG_INTERCONNECT_QCOM_SDM660=m +CONFIG_INTERCONNECT_QCOM_SDM845=m +CONFIG_INTERCONNECT_QCOM_SDX55=m +CONFIG_INTERCONNECT_QCOM_SDX65=m +CONFIG_INTERCONNECT_QCOM_SM8150=m +CONFIG_INTERCONNECT_QCOM_SM8250=m +CONFIG_INTERCONNECT_QCOM_SM8350=m +CONFIG_INTERCONNECT_QCOM_SM8450=m +CONFIG_INTERCONNECT_QCOM_SMD_RPM=m +# CONFIG_INTERCONNECT_SAMSUNG is not set +CONFIG_INTERRUPT_CNT=m +CONFIG_INTERVAL_TREE=y +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_HELPER=y +CONFIG_IOMMU_IO_PGTABLE=y +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOMMU_SVA=y +CONFIG_IONIC=m +CONFIG_IOSCHED_BFQ=m +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +CONFIG_IOSM=m +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_EVENT_IRQ=y +# CONFIG_IO_STRICT_DEVMEM is not set +CONFIG_IO_URING=y +CONFIG_IO_WQ=y +CONFIG_IP5XXX_POWER=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IPC_NS=y +# CONFIG_IPDDP is not set +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_IPMB=m +CONFIG_IPMI_KCS_BMC=m +CONFIG_IPMI_KCS_BMC_CDEV_IPMI=m +CONFIG_IPMI_KCS_BMC_SERIO=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_PLAT_DATA=y +CONFIG_IPMI_POWERNV=m +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_WATCHDOG=m +# CONFIG_IPMMU_VMSA is not set +CONFIG_IPQ_APSS_6018=m +CONFIG_IPQ_APSS_PLL=m +CONFIG_IPQ_GCC_4019=m +CONFIG_IPQ_GCC_6018=m +CONFIG_IPQ_GCC_806X=m +CONFIG_IPQ_GCC_8074=m +CONFIG_IPQ_LCC_806X=m +CONFIG_IPV6=y +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_IOAM6_LWTUNNEL=y +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_RPL_LWTUNNEL is not set +CONFIG_IPV6_SEG6_BPF=y +CONFIG_IPV6_SEG6_HMAC=y +CONFIG_IPV6_SEG6_LWTUNNEL=y +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPVLAN=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVTAP=m +CONFIG_IPW2100=m +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2100_MONITOR=y +CONFIG_IPW2200=m +# CONFIG_IPW2200_DEBUG is not set +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPWIRELESS=m +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_DCCP=m +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARP_MANGLE=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_IP_PNP is not set +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_SCTP=m +CONFIG_IP_SET=m +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_IPV6=y +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_MH_TAB_INDEX=12 +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_PE_SIP=m +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_SCTP=y +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_SH_TAB_BITS=8 +CONFIG_IP_VS_TAB_BITS=12 +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_WRR=m +CONFIG_IQS620AT_TEMP=m +CONFIG_IQS621_ALS=m +CONFIG_IQS624_POS=m +CONFIG_IRQCHIP=y +# CONFIG_IRQSOFF_TRACER is not set +CONFIG_IRQSTACKS=y +CONFIG_IRQ_ALL_CPUS=y +CONFIG_IRQ_CROSSBAR=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_IRQ_POLL=y +CONFIG_IRQ_REMAP=y +CONFIG_IRQ_SIM=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_UNIPHIER_AIDET=y +CONFIG_IRQ_WORK=y +CONFIG_IR_ENE=m +CONFIG_IR_FINTEK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_IR_GPIO_TX=m +CONFIG_IR_HIX5HD2=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_IMON=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_MESON=m +CONFIG_IR_MESON_TX=m +CONFIG_IR_MTK=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_PWM_TX=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_RX51=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SERIAL=m +CONFIG_IR_SERIAL_TRANSMITTER=y +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SPI=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_SUNXI=m +CONFIG_IR_TOY=m +CONFIG_IR_TTUSBIR=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_XMP_DECODER=m +CONFIG_ISA_BUS=y +CONFIG_ISA_BUS_API=y +CONFIG_ISA_DMA_API=y +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_ISCSI_IBFT=m +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_ISCSI_TCP=m +CONFIG_ISDN=y +CONFIG_ISDN_CAPI=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISL29125=m +CONFIG_ISL29501=m +CONFIG_ISM=m +CONFIG_ISO9660_FS=m +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_ITCO_WDT=m +CONFIG_ITG3200=m +CONFIG_IUCV=y +CONFIG_IWL3945=m +CONFIG_IWL4965=m +CONFIG_IWLDVM=m +CONFIG_IWLEGACY=m +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLEGACY_DEBUGFS=y +CONFIG_IWLMVM=m +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +CONFIG_IWLWIFI_DEVICE_TRACING=y +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLWIFI_OPMODE_MODULAR=y +CONFIG_IWMMXT=y +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_IPSEC=y +CONFIG_JAILHOUSE_GUEST=y +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_FS_WRITEBUFFER=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_JOLIET=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADC=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_FSIA6B=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_232=m +CONFIG_JOYSTICK_IFORCE_USB=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_PSXPAD_SPI=m +CONFIG_JOYSTICK_PSXPAD_SPI_FF=y +CONFIG_JOYSTICK_PXRC=m +CONFIG_JOYSTICK_QWIIC=m +CONFIG_JOYSTICK_SENSEHAT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JSA1212=m +CONFIG_JUMP_LABEL_FEATURE_CHECKS=y +# CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG is not set +CONFIG_K3_DMA=m +CONFIG_K3_RTI_WATCHDOG=m +CONFIG_K3_THERMAL=m +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +# CONFIG_KASAN is not set +CONFIG_KCMP=y +# CONFIG_KCOV is not set +# CONFIG_KCSAN is not set +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +CONFIG_KEEMBAY_WATCHDOG=m +CONFIG_KEMPLD_WDT=m +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_KERNEL_MODE_NEON=y +# CONFIG_KERNEL_NOBP is not set +CONFIG_KERNEL_START=0xc000000000000000 +# CONFIG_KERNEL_UNCOMPRESSED is not set +# CONFIG_KERNEL_XZ is not set +CONFIG_KERNEL_ZSTD=y +CONFIG_KERNFS=y +CONFIG_KEXEC=y +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y +CONFIG_KEXEC_CORE=y +CONFIG_KEXEC_ELF=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_IMAGE_VERIFY_SIG is not set +CONFIG_KEXEC_JUMP=y +CONFIG_KEXEC_SIG=y +# CONFIG_KEXEC_SIG_FORCE is not set +CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_APPLESPI=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_BCM=m +CONFIG_KEYBOARD_CAP11XX=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_CYPRESS_SF=m +CONFIG_KEYBOARD_DLINK_DIR685=m +CONFIG_KEYBOARD_GOLDFISH_EVENTS=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_IMX=m +CONFIG_KEYBOARD_IMX_SC_KEY=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_MT6779=m +CONFIG_KEYBOARD_MTK_PMIC=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_NVEC=m +CONFIG_KEYBOARD_OMAP4=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_PMIC8XXX=m +CONFIG_KEYBOARD_QT1050=m +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_SAMSUNG=m +CONFIG_KEYBOARD_SNVS_PWRKEY=m +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_STOWAWAY=m +# CONFIG_KEYBOARD_SUN4I_LRADC is not set +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_TM2_TOUCHKEY=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KEY_NOTIFICATIONS=y +CONFIG_KFENCE=y +# CONFIG_KFENCE_DEFERRABLE is not set +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +# CONFIG_KFENCE_STATIC_KEYS is not set +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +CONFIG_KGDB=y +CONFIG_KGDB_HONOUR_BLOCKLIST=y +CONFIG_KGDB_KDB=y +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KHADAS_MCU_FAN_THERMAL=m +CONFIG_KMAP_LOCAL=y +CONFIG_KMAP_LOCAL_NON_LINEAR_PTE_ARRAY=y +CONFIG_KMX61=m +CONFIG_KPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +CONFIG_KPSS_XCC=m +CONFIG_KRAITCC=m +CONFIG_KRAIT_CLOCKS=y +CONFIG_KRAIT_L2_ACCESSORS=y +CONFIG_KRETPROBES=y +CONFIG_KRETPROBE_ON_RETHOOK=y +CONFIG_KS0108=m +CONFIG_KS0108_DELAY=2 +CONFIG_KS0108_PORT=0x378 +CONFIG_KS7010=m +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KSM=y +CONFIG_KSZ884X_PCI=m +# CONFIG_KUNIT is not set +CONFIG_KUSER_HELPERS=y +CONFIG_KVM_AMD=m +CONFIG_KVM_AMD_SEV=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_KVM_ASYNC_PF_SYNC=y +CONFIG_KVM_BOOK3S_64=m +CONFIG_KVM_BOOK3S_64_HANDLER=y +CONFIG_KVM_BOOK3S_64_HV=m +CONFIG_KVM_BOOK3S_64_PR=m +CONFIG_KVM_BOOK3S_HANDLER=y +# CONFIG_KVM_BOOK3S_HV_EXIT_TIMING is not set +CONFIG_KVM_BOOK3S_HV_NESTED_PMU_WORKAROUND=y +CONFIG_KVM_BOOK3S_HV_POSSIBLE=y +CONFIG_KVM_BOOK3S_PR_POSSIBLE=y +CONFIG_KVM_COMPAT=y +CONFIG_KVM_EXTERNAL_WRITE_TRACKING=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_KVM_GUEST=y +CONFIG_KVM_INTEL=m +CONFIG_KVM_MMIO=y +# CONFIG_KVM_S390_UCONTROL is not set +CONFIG_KVM_VFIO=y +CONFIG_KVM_WERROR=y +CONFIG_KVM_XEN=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_KVM_XICS=y +CONFIG_KVM_XIVE=y +CONFIG_KXCJK1013=m +CONFIG_KXSD9=m +CONFIG_KXSD9_I2C=m +CONFIG_KXSD9_SPI=m +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_ETH=m +CONFIG_L2TP_IP=m +CONFIG_L2TP_V3=y +CONFIG_LAN743X=m +CONFIG_LAN966X_SWITCH=m +CONFIG_LAPBETHER=m +# CONFIG_LATENCYTOP is not set +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_LCD2S=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_OTM3225A=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LCS=m +CONFIG_LDISC_AUTOLOAD=y +# CONFIG_LDM_DEBUG is not set +# CONFIG_LD_DEAD_CODE_DATA_ELIMINATION is not set +# CONFIG_LD_HEAD_STUB_CATCH is not set +CONFIG_LD_IS_BFD=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_LD_VERSION=23800 +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_AAEON=m +CONFIG_LEDS_AAT1290=m +CONFIG_LEDS_ACER_A500=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_AN30259A=m +CONFIG_LEDS_APU=m +CONFIG_LEDS_AS3645A=m +CONFIG_LEDS_ASIC3=y +CONFIG_LEDS_AW2013=m +CONFIG_LEDS_BCM6328=m +CONFIG_LEDS_BCM6358=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLASS_MULTICOLOR=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_CPCAP=m +CONFIG_LEDS_CR0014114=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_EL15203000=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_IS31FL319X=m +CONFIG_LEDS_IS31FL32XX=m +CONFIG_LEDS_KTD2692=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3532=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_LM3601X=m +CONFIG_LEDS_LM36274=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_LM3692X=m +CONFIG_LEDS_LM3697=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_LP5562=m +CONFIG_LEDS_LP55XX_COMMON=m +CONFIG_LEDS_LP8501=m +CONFIG_LEDS_LP8788=m +CONFIG_LEDS_LP8860=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_MAX77650=m +CONFIG_LEDS_MAX77693=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_MENF21BMC=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_MLXREG=m +CONFIG_LEDS_MT6323=m +CONFIG_LEDS_MT6360=m +CONFIG_LEDS_NIC78BX=m +CONFIG_LEDS_NS2=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA955X_GPIO=y +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_PM8058=m +CONFIG_LEDS_POWERNV=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_PWM_MULTICOLOR=m +CONFIG_LEDS_QCOM_LPG=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_RT4505=m +CONFIG_LEDS_RT8515=m +CONFIG_LEDS_SC27XX_BLTC=m +CONFIG_LEDS_SGM3140=m +CONFIG_LEDS_SIEMENS_SIMATIC_IPC=m +CONFIG_LEDS_SPI_BYTE=m +CONFIG_LEDS_SYSCON=y +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_TPS6105X=m +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_NETDEV=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_PATTERN=m +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_TTY=m +CONFIG_LEDS_TURRIS_OMNIA=m +CONFIG_LEDS_USER=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LED_TRIGGER_PHY=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +CONFIG_LG_LAPTOP=m +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +CONFIG_LIB80211_CRYPT_WEP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_LIBCRC32C=m +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_CS=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_LIBFDT=y +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_LIB_MEMNEQ=y +CONFIG_LIDAR_LITE_V2=m +CONFIG_LINEAR_RANGES=y +CONFIG_LINEDISP=m +CONFIG_LIQUIDIO=m +CONFIG_LIQUIDIO_VF=m +CONFIG_LIRC=y +CONFIG_LITEX=y +CONFIG_LITEX_LITEETH=m +CONFIG_LITEX_SOC_CONTROLLER=m +CONFIG_LIVEPATCH=y +CONFIG_LIVEPATCH_64=y +# CONFIG_LKDTM is not set +CONFIG_LLC=m +CONFIG_LLD_VERSION=0 +CONFIG_LMK04832=m +CONFIG_LMP91000=m +CONFIG_LOAD_IPL_KEYS=y +CONFIG_LOAD_PPC_KEYS=y +CONFIG_LOAD_UEFI_KEYS=y +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +CONFIG_LOCKUP_DETECTOR=y +CONFIG_LOCK_DEBUGGING_SUPPORT=y +CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y +# CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY is not set +# CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY is not set +CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_LOCK_SPIN_ON_OWNER=y +# CONFIG_LOCK_STAT is not set +# CONFIG_LOCK_TORTURE_TEST is not set +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +# CONFIG_LOGO is not set +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_LOOPBACK_TARGET=m +CONFIG_LP8788_ADC=m +CONFIG_LPARCFG=y +# CONFIG_LP_CONSOLE is not set +CONFIG_LRU_CACHE=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LSM="landlock,lockdown,yama,integrity,apparmor" +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LS_EXTIRQ=y +CONFIG_LS_SCFG_MSI=y +CONFIG_LTC1660=m +CONFIG_LTC2471=m +CONFIG_LTC2485=m +CONFIG_LTC2496=m +CONFIG_LTC2497=m +CONFIG_LTC2632=m +CONFIG_LTC2688=m +CONFIG_LTC2983=m +CONFIG_LTE_GDM724X=m +CONFIG_LTO_NONE=y +CONFIG_LTR501=m +CONFIG_LV0104CS=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_LXT_PHY=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_M62332=m +CONFIG_MAC80211=m +CONFIG_MAC80211_DEBUGFS=y +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_HWSIM=m +CONFIG_MAC80211_LEDS=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_MESSAGE_TRACING=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_MAC802154=m +CONFIG_MACB=m +CONFIG_MACB_PCI=m +CONFIG_MACB_USE_HWSTAMP=y +CONFIG_MACHZ_WDT=m +CONFIG_MACH_ARMADA_370=y +CONFIG_MACH_ARMADA_375=y +CONFIG_MACH_ARMADA_38X=y +CONFIG_MACH_ARMADA_39X=y +CONFIG_MACH_ARMADA_XP=y +# CONFIG_MACH_ARTPEC6 is not set +CONFIG_MACH_ASPEED_G6=y +CONFIG_MACH_BERLIN_BG2=y +CONFIG_MACH_BERLIN_BG2CD=y +CONFIG_MACH_BERLIN_BG2Q=y +CONFIG_MACH_DOVE=y +CONFIG_MACH_INFINITY=y +CONFIG_MACH_MERCURY=y +CONFIG_MACH_MESON6=y +CONFIG_MACH_MESON8=y +CONFIG_MACH_MT2701=y +CONFIG_MACH_MT6589=y +CONFIG_MACH_MT6592=y +CONFIG_MACH_MT7623=y +CONFIG_MACH_MT7629=y +CONFIG_MACH_MT8127=y +CONFIG_MACH_MT8135=y +CONFIG_MACH_MVEBU_ANY=y +CONFIG_MACH_MVEBU_V7=y +CONFIG_MACH_OMAP_GENERIC=y +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MACSEC=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_MADERA_IRQ=m +CONFIG_MAG3110=m +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_MAILBOX_TEST=m +CONFIG_MANAGER_SBS=m +CONFIG_MANTIS_CORE=m +CONFIG_MAPPING_DIRTY_HELPERS=y +# CONFIG_MARCH_Z10 is not set +CONFIG_MARCH_Z13=y +# CONFIG_MARCH_Z14 is not set +# CONFIG_MARCH_Z15 is not set +CONFIG_MARCH_Z15_TUNE=y +# CONFIG_MARCH_Z16 is not set +# CONFIG_MARCH_Z196 is not set +# CONFIG_MARCH_ZEC12 is not set +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_CN10K_DDR_PMU=m +CONFIG_MARVELL_CN10K_TAD_PMU=m +CONFIG_MARVELL_PHY=m +# CONFIG_MATOM is not set +CONFIG_MAX1027=m +CONFIG_MAX11100=m +CONFIG_MAX1118=m +CONFIG_MAX1241=m +CONFIG_MAX1363=m +CONFIG_MAX30100=m +CONFIG_MAX30102=m +CONFIG_MAX31856=m +CONFIG_MAX31865=m +CONFIG_MAX44000=m +CONFIG_MAX44009=m +CONFIG_MAX517=m +CONFIG_MAX5432=m +CONFIG_MAX5481=m +CONFIG_MAX5487=m +CONFIG_MAX5821=m +CONFIG_MAX77620_THERMAL=m +CONFIG_MAX77620_WATCHDOG=m +CONFIG_MAX8925_POWER=m +CONFIG_MAX9611=m +CONFIG_MAXIM_THERMOCOUPLE=m +CONFIG_MAXSMP=y +CONFIG_MAX_PHYSMEM_BITS=46 +CONFIG_MB1232=m +CONFIG_MC3230=m +CONFIG_MCB_LPC=m +CONFIG_MCB_PCI=m +CONFIG_MCHP_CLK_MPFS=y +# CONFIG_MCORE2 is not set +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP3911=m +CONFIG_MCP4018=m +CONFIG_MCP41010=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_MCPM=y +CONFIG_MCPM_QUAD_CLUSTER=y +CONFIG_MCTP_FLOWS=y +CONFIG_MCTP_SERIAL=m +CONFIG_MCTP_TRANSPORT_I2C=m +CONFIG_MD=y +CONFIG_MDIO=m +CONFIG_MDIO_ASPEED=m +# CONFIG_MDIO_BCM_IPROC is not set +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX_BCM_IPROC=y +CONFIG_MDIO_BUS_MUX_GPIO=m +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MMIOREG=m +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=m +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_HISI_FEMAC=m +CONFIG_MDIO_I2C=m +CONFIG_MDIO_IPQ4019=m +CONFIG_MDIO_IPQ8064=m +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_OCTEON=m +# CONFIG_MDIO_SUN4I is not set +CONFIG_MDIO_XGENE=m +CONFIG_MDM_GCC_9607=m +CONFIG_MDM_GCC_9615=m +CONFIG_MDM_LCC_9615=m +CONFIG_MD_AUTODETECT=y +CONFIG_MD_CLUSTER=m +CONFIG_MD_FAULTY=m +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MEDIATEK_MT6360_ADC=m +CONFIG_MEDIATEK_MT6577_AUXADC=m +CONFIG_MEDIATEK_WATCHDOG=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_ATTACH=y +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_CEC_RC=y +CONFIG_MEDIA_COMMON_OPTIONS=y +CONFIG_MEDIA_CONTROLLER=y +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_PCI_SUPPORT=y +CONFIG_MEDIA_PLATFORM_DRIVERS=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y +CONFIG_MEDIA_SUPPORT_FILTER=y +CONFIG_MEDIA_TEST_SUPPORT=y +CONFIG_MEDIA_TUNER=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_USB_SUPPORT=y +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +CONFIG_MELLANOX_PLATFORM=y +CONFIG_MEMBARRIER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMFD_CREATE=y +CONFIG_MEMORY_BALLOON=y +CONFIG_MEMORY_FAILURE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +CONFIG_MEMREGION=y +# CONFIG_MEMSTICK_DEBUG is not set +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_MEMSTICK_TIFM_MS=m +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MEMTEST=y +CONFIG_MENF21BMC_WATCHDOG=m +CONFIG_MENZ069_WATCHDOG=m +CONFIG_MEN_A21_WDT=m +CONFIG_MEN_Z188_ADC=m +CONFIG_MERAKI_MX100=m +CONFIG_MESON6_TIMER=y +CONFIG_MESON_CANVAS=m +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_EFUSE=m +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_GXL_PHY=m +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_IRQ_GPIO=y +CONFIG_MESON_MX_AO_ARC_REMOTEPROC=m +CONFIG_MESON_MX_EFUSE=m +CONFIG_MESON_MX_SOCINFO=y +CONFIG_MESON_SARADC=m +CONFIG_MESON_SECURE_PM_DOMAINS=y +CONFIG_MESON_SM=y +CONFIG_MESON_WATCHDOG=m +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAEON=m +CONFIG_MFD_AAT2870_CORE=y +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_ACER_A500_EC=m +CONFIG_MFD_ACT8945A=m +CONFIG_MFD_ALTERA_A10SR=y +CONFIG_MFD_ALTERA_SYSMGR=y +CONFIG_MFD_ARIZONA=m +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_AS3711=y +CONFIG_MFD_AS3722=y +CONFIG_MFD_ASIC3=y +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATMEL_FLEXCOM=m +CONFIG_MFD_ATMEL_HLCDC=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_RSB=m +CONFIG_MFD_CPCAP=m +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_CS47L15=y +CONFIG_MFD_CS47L24=y +CONFIG_MFD_CS47L35=y +CONFIG_MFD_CS47L85=y +CONFIG_MFD_CS47L90=y +CONFIG_MFD_CS47L92=y +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DLN2=m +# CONFIG_MFD_EXYNOS_LPASS is not set +CONFIG_MFD_GATEWORKS_GSC=m +CONFIG_MFD_HI6421_PMIC=m +CONFIG_MFD_HI6421_SPMI=m +CONFIG_MFD_HI655X_PMIC=m +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +CONFIG_MFD_INTEL_M10_BMC=m +CONFIG_MFD_INTEL_PMC_BXT=m +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_MFD_KHADAS_MCU=m +CONFIG_MFD_LOCHNAGAR=y +CONFIG_MFD_LP8788=y +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +CONFIG_MFD_MAX77620=y +CONFIG_MFD_MAX77650=m +CONFIG_MFD_MAX77686=y +CONFIG_MFD_MAX77714=m +CONFIG_MFD_MAX77843=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_NTXEC=m +CONFIG_MFD_NVEC=m +CONFIG_MFD_OMAP_USB_HOST=y +CONFIG_MFD_PALMAS=y +CONFIG_MFD_PM8XXX=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_MFD_QCOM_RPM=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_RK808=m +CONFIG_MFD_RN5T618=m +CONFIG_MFD_ROHM_BD71828=m +CONFIG_MFD_ROHM_BD718XX=m +CONFIG_MFD_ROHM_BD957XMUF=m +CONFIG_MFD_RSMU_I2C=m +CONFIG_MFD_RSMU_SPI=m +CONFIG_MFD_SC27XX_PMIC=m +CONFIG_MFD_SEC_CORE=y +CONFIG_MFD_SIMPLE_MFD_I2C=m +CONFIG_MFD_SL28CPLD=m +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SPMI_PMIC=m +CONFIG_MFD_STMFX=m +CONFIG_MFD_STMPE=y +CONFIG_MFD_STPMIC1=m +CONFIG_MFD_SUN4I_GPADC=m +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_T7L66XB=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TC6387XB=y +CONFIG_MFD_TC6393XB=y +CONFIG_MFD_TI_LP87565=m +CONFIG_MFD_TMIO=y +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_MFD_VEXPRESS_SYSREG=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM8997=y +CONFIG_MFD_WM8998=y +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_PCI_GENERIC=m +CONFIG_MHI_NET=m +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_MICREL_KS8995MA=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_PIT64B=y +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROCHIP_TCB_CAPTURE=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_LATE_LOADING is not set +CONFIG_MICROSEMI_PHY=m +CONFIG_MICROSOFT_MANA=m +CONFIG_MIGHT_HAVE_CACHE_L2X0=y +CONFIG_MIGRATION=y +CONFIG_MILBEAUT_HDMAC=m +CONFIG_MILBEAUT_TIMER=y +CONFIG_MILBEAUT_XDMAC=m +CONFIG_MIPI_I3C_HCI=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_MISC_RTSX=m +CONFIG_MISC_RTSX_USB=m +CONFIG_MISDN=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_HDLC=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m +CONFIG_MISDN_L1OIP=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_W6692=m +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y +# CONFIG_MK8 is not set +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_CORE_EN_DCB=y +CONFIG_MLX5_CORE_IPOIB=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_EN_TLS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_FPGA=y +CONFIG_MLX5_INFINIBAND=m +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_SF_MANAGER=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_TC_CT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_MLX90614=m +CONFIG_MLX90632=m +CONFIG_MLXBF_BOOTCTL=m +CONFIG_MLXBF_GIGE=m +CONFIG_MLXBF_PMC=m +CONFIG_MLXBF_TMFIFO=m +CONFIG_MLXFW=m +CONFIG_MLXREG_HOTPLUG=m +CONFIG_MLXREG_IO=m +CONFIG_MLXREG_LC=m +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_CORE_THERMAL=y +CONFIG_MLXSW_MINIMAL=m +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLX_PLATFORM=m +CONFIG_MLX_WDT=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9553=m +CONFIG_MMC35240=m +CONFIG_MMCONF_FAM10H=y +CONFIG_MMC_ALCOR=m +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_BCM2835=m +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_CAVIUM_THUNDERX=m +CONFIG_MMC_CB710=m +CONFIG_MMC_CRYPTO=y +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_DW=m +CONFIG_MMC_DW_BLUEFIELD=m +CONFIG_MMC_DW_EXYNOS=m +CONFIG_MMC_DW_HI3798CV200=m +CONFIG_MMC_DW_K3=m +CONFIG_MMC_DW_PCI=m +CONFIG_MMC_DW_PLTFM=m +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_LITEX=m +CONFIG_MMC_MESON_GX=m +CONFIG_MMC_MESON_MX_SDHC=m +CONFIG_MMC_MESON_MX_SDIO=m +CONFIG_MMC_MTK=m +CONFIG_MMC_MVSDIO=m +CONFIG_MMC_MXC=m +CONFIG_MMC_OMAP=m +CONFIG_MMC_OMAP_HS=y +CONFIG_MMC_OWL=m +CONFIG_MMC_QCOM_DML=y +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_AM654=m +CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER=y +CONFIG_MMC_SDHCI_BRCMSTB=m +CONFIG_MMC_SDHCI_CADENCE=m +CONFIG_MMC_SDHCI_DOVE=m +CONFIG_MMC_SDHCI_EXTERNAL_DMA=y +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_SDHCI_MILBEAUT=m +CONFIG_MMC_SDHCI_MSM=m +CONFIG_MMC_SDHCI_OF_ARASAN=m +CONFIG_MMC_SDHCI_OF_ASPEED=m +CONFIG_MMC_SDHCI_OF_AT91=m +CONFIG_MMC_SDHCI_OF_DWCMSHC=m +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_OF_HLWD=m +CONFIG_MMC_SDHCI_OF_SPARX5=m +CONFIG_MMC_SDHCI_OMAP=m +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_SDHCI_PXAV3=m +# CONFIG_MMC_SDHCI_S3C is not set +CONFIG_MMC_SDHCI_SPRD=m +CONFIG_MMC_SDHCI_TEGRA=m +CONFIG_MMC_SDHCI_XENON=m +CONFIG_MMC_SDHI=m +CONFIG_MMC_SDHI_INTERNAL_DMAC=m +CONFIG_MMC_SDHI_SYS_DMAC=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_SH_MMCIF=m +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SUNXI=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_TMIO=m +CONFIG_MMC_TMIO_CORE=m +CONFIG_MMC_TOSHIBA_PCI=m +# CONFIG_MMC_UNIPHIER is not set +CONFIG_MMC_USDHI6ROL0=m +CONFIG_MMC_USHC=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_WBSD=m +CONFIG_MMIOTRACE=y +# CONFIG_MMIOTRACE_TEST is not set +CONFIG_MMIOWB=y +CONFIG_MMU=y +CONFIG_MMU_GATHER_MERGE_VMAS=y +CONFIG_MMU_GATHER_NO_GATHER=y +CONFIG_MMU_GATHER_PAGE_SIZE=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_NOTIFIER=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_MODPROBE_PATH="/sbin/modprobe" +CONFIG_MODULES=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_MODULES_USE_ELF_REL=y +CONFIG_MODULES_USE_ELF_RELA=y +# CONFIG_MODULE_ALLOW_BTF_MISMATCH is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +# CONFIG_MODULE_COMPRESS_GZIP is not set +CONFIG_MODULE_COMPRESS_NONE=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SECTIONS=y +CONFIG_MODULE_SIG=y +CONFIG_MODULE_SIG_ALL=y +# CONFIG_MODULE_SIG_FORCE is not set +CONFIG_MODULE_SIG_FORMAT=y +CONFIG_MODULE_SIG_HASH="sha512" +CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" +# CONFIG_MODULE_SIG_KEY_TYPE_ECDSA is not set +CONFIG_MODULE_SIG_KEY_TYPE_RSA=y +# CONFIG_MODULE_SIG_SHA1 is not set +# CONFIG_MODULE_SIG_SHA224 is not set +# CONFIG_MODULE_SIG_SHA256 is not set +# CONFIG_MODULE_SIG_SHA384 is not set +CONFIG_MODULE_SIG_SHA512=y +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set +CONFIG_MODVERSIONS=y +CONFIG_MONREADER=m +CONFIG_MONWRITER=m +CONFIG_MOST_CDEV=m +CONFIG_MOST_COMPONENTS=m +CONFIG_MOST_DIM2=m +CONFIG_MOST_I2C=m +CONFIG_MOST_NET=m +CONFIG_MOST_SND=m +CONFIG_MOST_USB_HDM=m +CONFIG_MOST_VIDEO=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_MOXTET=m +CONFIG_MP2629_ADC=m +CONFIG_MPIC=y +# CONFIG_MPIC_MSGR is not set +CONFIG_MPILIB=y +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MPLS=y +CONFIG_MPLS_IPTUNNEL=m +CONFIG_MPLS_ROUTING=m +CONFIG_MPROFILE_KERNEL=y +# CONFIG_MPSC is not set +CONFIG_MPTCP=y +CONFIG_MPTCP_IPV6=y +CONFIG_MPU3050=m +CONFIG_MPU3050_I2C=m +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_MRP=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_MSC313E_WATCHDOG=m +CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +CONFIG_MSE102X=m +# CONFIG_MSI_BITMAP_SELFTEST is not set +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_MSM_GCC_8660=m +CONFIG_MSM_GCC_8916=m +CONFIG_MSM_GCC_8939=m +CONFIG_MSM_GCC_8953=m +CONFIG_MSM_GCC_8960=m +CONFIG_MSM_GCC_8974=m +CONFIG_MSM_GCC_8976=m +CONFIG_MSM_GCC_8994=m +CONFIG_MSM_GCC_8996=m +CONFIG_MSM_GCC_8998=m +CONFIG_MSM_GPUCC_8998=m +# CONFIG_MSM_IOMMU is not set +CONFIG_MSM_LCC_8960=m +CONFIG_MSM_MMCC_8960=m +CONFIG_MSM_MMCC_8974=m +CONFIG_MSM_MMCC_8994=m +CONFIG_MSM_MMCC_8996=m +CONFIG_MSM_MMCC_8998=m +CONFIG_MSPRO_BLOCK=m +CONFIG_MSTAR_MSC313_MPLL=y +CONFIG_MST_IRQ=y +CONFIG_MS_BLOCK=m +CONFIG_MT7601U=m +CONFIG_MT7603E=m +CONFIG_MT7615E=m +CONFIG_MT7615_COMMON=m +CONFIG_MT7622_WMAC=y +CONFIG_MT7663S=m +CONFIG_MT7663U=m +CONFIG_MT7663_USB_SDIO_COMMON=m +CONFIG_MT76_CONNAC_LIB=m +CONFIG_MT76_CORE=m +CONFIG_MT76_LEDS=y +CONFIG_MT76_SDIO=m +CONFIG_MT76_USB=m +CONFIG_MT76x02_LIB=m +CONFIG_MT76x02_USB=m +CONFIG_MT76x0E=m +CONFIG_MT76x0U=m +CONFIG_MT76x0_COMMON=m +CONFIG_MT76x2E=m +CONFIG_MT76x2U=m +CONFIG_MT76x2_COMMON=m +CONFIG_MT7915E=m +CONFIG_MT7921E=m +CONFIG_MT7921S=m +CONFIG_MT7921U=m +CONFIG_MT7921_COMMON=m +CONFIG_MT7986_WMAC=y +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=m +CONFIG_MTD_AFS_PARTS=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_BCM47XXSFLASH=m +CONFIG_MTD_BLOCK2MTD=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_MTD_CFI=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_DATAFLASH=m +CONFIG_MTD_DATAFLASH_OTP=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DOCG3 is not set +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_HYPERBUS=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_IMPA7=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_LPDDR=m +CONFIG_MTD_LPDDR2_NVM=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_MCHP23K256=m +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND_ARASAN=m +CONFIG_MTD_NAND_BRCMNAND=m +CONFIG_MTD_NAND_CADENCE=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_DT=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_MEDIATEK=m +CONFIG_MTD_NAND_ECC_MXIC=y +CONFIG_MTD_NAND_ECC_SW_BCH=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_NAND_FSL_IFC=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_GPMI_NAND=m +CONFIG_MTD_NAND_HISI504=m +CONFIG_MTD_NAND_INTEL_LGM=m +CONFIG_MTD_NAND_MARVELL=m +CONFIG_MTD_NAND_MESON=m +CONFIG_MTD_NAND_MTK=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_OMAP_BCH=y +CONFIG_MTD_NAND_ORION=m +CONFIG_MTD_NAND_PL35X=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_QCOM=m +CONFIG_MTD_NAND_RENESAS=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_ROCKCHIP=m +# CONFIG_MTD_NAND_SUNXI is not set +CONFIG_MTD_NAND_TEGRA=m +CONFIG_MTD_NAND_TMIO=m +# CONFIG_MTD_NAND_VF610_NFC is not set +CONFIG_MTD_NETtel=m +CONFIG_MTD_OF_PARTS_BCM4908=y +CONFIG_MTD_OF_PARTS_LINKSYS_NS=y +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_ONENAND_GENERIC=m +CONFIG_MTD_ONENAND_OMAP2=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_OOPS=m +CONFIG_MTD_PARSER_TRX=m +# CONFIG_MTD_PARTITIONED_MASTER is not set +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_PHRAM=m +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_PHYSMAP_IXP4XX=y +CONFIG_MTD_PHYSMAP_OF=y +CONFIG_MTD_PLATRAM=m +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_POWERNV_FLASH=m +CONFIG_MTD_PSTORE=m +CONFIG_MTD_QCOMSMEM_PARTS=m +CONFIG_MTD_QINFO_PROBE=m +CONFIG_MTD_RAM=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +CONFIG_MTD_REDBOOT_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +CONFIG_MTD_ROM=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_SHARPSL_PARTS=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_SPI_NAND=m +CONFIG_MTD_SPI_NOR=m +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +CONFIG_MTD_SST25L=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTK_ADSP_IPC=m +CONFIG_MTK_ADSP_MBOX=m +CONFIG_MTK_CMDQ=m +CONFIG_MTK_CMDQ_MBOX=m +CONFIG_MTK_CQDMA=m +CONFIG_MTK_DEVAPC=m +# CONFIG_MTK_EFUSE is not set +CONFIG_MTK_HSDMA=m +CONFIG_MTK_INFRACFG=y +# CONFIG_MTK_IOMMU is not set +# CONFIG_MTK_IOMMU_V1 is not set +CONFIG_MTK_MMSYS=y +CONFIG_MTK_PMIC_WRAP=m +CONFIG_MTK_SCP=m +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SCPSYS_PM_DOMAINS=y +CONFIG_MTK_SMI=m +CONFIG_MTK_T7XX=m +CONFIG_MTK_THERMAL=m +CONFIG_MTK_TIMER=y +CONFIG_MTK_UART_APDMA=m +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_MULTIPLEXER=m +CONFIG_MULTIUSER=y +CONFIG_MUSB_PIO_ONLY=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +CONFIG_MUX_MMIO=m +CONFIG_MV643XX_ETH=m +CONFIG_MVEBU_CLK_COMMON=y +CONFIG_MVEBU_CLK_COREDIV=y +CONFIG_MVEBU_CLK_CPU=y +CONFIG_MVEBU_DEVBUS=y +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_MBUS=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_MVMDIO=m +CONFIG_MVNETA=m +# CONFIG_MVNETA_BM_ENABLE is not set +CONFIG_MVPP2=m +CONFIG_MVPP2_PTP=y +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y +CONFIG_MWAVE=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y +CONFIG_MXC_TZIC=y +CONFIG_MXM_WMI=m +CONFIG_MXS_DMA=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_NAMESPACES=y +CONFIG_NATIONAL_PHY=m +CONFIG_NATSEMI=m +CONFIG_NAU7802=m +CONFIG_NBPFAXI_DMA=m +CONFIG_NCSI_OEM_CMD_GET_MAC=y +# CONFIG_NCSI_OEM_CMD_KEEP_PHY is not set +CONFIG_NDC_DIS_DYNAMIC_CACHING=y +CONFIG_ND_BTT=m +CONFIG_ND_CLAIM=y +CONFIG_ND_PFN=m +CONFIG_NE2K_PCI=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEON=y +CONFIG_NET=y +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETDEVICES=y +CONFIG_NETDEVSIM=m +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XTABLES_COMPAT=y +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_SET=m +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFS_STATS=y +CONFIG_NETFS_SUPPORT=m +CONFIG_NETIUCV=m +CONFIG_NETLABEL=y +CONFIG_NETLINK_DIAG=m +CONFIG_NETPOLL=y +CONFIG_NETROM=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NETWORK_PHY_TIMESTAMPING=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NETXEN_NIC=m +CONFIG_NET_9P=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_FD=m +CONFIG_NET_9P_RDMA=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_XEN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_GATE=m +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_CALXEDA_XGMAC=m +CONFIG_NET_CLS=y +CONFIG_NET_CLS_ACT=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_U32=m +CONFIG_NET_CORE=y +CONFIG_NET_DEVLINK=y +# CONFIG_NET_DEV_REFCNT_TRACKER is not set +CONFIG_NET_DROP_MONITOR=y +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_BCM_SF2=m +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +CONFIG_NET_DSA_LANTIQ_GSWIP=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_MICROCHIP_KSZ8795=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON=m +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_MT7530=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6XXX_PTP=y +CONFIG_NET_DSA_QCA8K=m +CONFIG_NET_DSA_REALTEK=m +CONFIG_NET_DSA_REALTEK_RTL8365MB=m +CONFIG_NET_DSA_REALTEK_RTL8366RB=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +CONFIG_NET_DSA_SJA1105_TAS=y +CONFIG_NET_DSA_SJA1105_VL=y +CONFIG_NET_DSA_SMSC_LAN9303=m +CONFIG_NET_DSA_SMSC_LAN9303_I2C=m +CONFIG_NET_DSA_SMSC_LAN9303_MDIO=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +CONFIG_NET_EGRESS=y +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_FAILOVER=m +CONFIG_NET_FC=y +CONFIG_NET_FLOW_LIMIT=y +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_NET_IFE=m +CONFIG_NET_INGRESS=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPIP=m +CONFIG_NET_IPVTI=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_NCSI=y +CONFIG_NET_NS=y +CONFIG_NET_NSH=m +# CONFIG_NET_NS_REFCNT_TRACKER is not set +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NET_REDIRECT=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_CODEL=m +# CONFIG_NET_SCH_DEFAULT is not set +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_ETS=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_TC_SKB_EXT=y +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TULIP=y +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_VENDOR_8390=y +CONFIG_NET_VENDOR_ACTIONS=y +CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_NET_VENDOR_ALLWINNER=y +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_NET_VENDOR_ASIX=y +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_NET_VENDOR_CORTINA=y +CONFIG_NET_VENDOR_ENGLEDER=y +CONFIG_NET_VENDOR_FARADAY=y +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_IBM=y +# CONFIG_NET_VENDOR_MEDIATEK is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_NET_VENDOR_NETERION=y +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_NET_VENDOR_SYNOPSYS=y +CONFIG_NET_VENDOR_VERTEXCOM=y +CONFIG_NET_VENDOR_XILINX=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_NET_VRF=m +CONFIG_NET_XGENE=m +CONFIG_NET_XGENE_V2=m +CONFIG_NFC_DIGITAL=m +CONFIG_NFC_FDP=m +CONFIG_NFC_FDP_I2C=m +CONFIG_NFC_HCI=m +CONFIG_NFC_MEI_PHY=m +CONFIG_NFC_MICROREAD=m +CONFIG_NFC_MICROREAD_I2C=m +CONFIG_NFC_MICROREAD_MEI=m +CONFIG_NFC_MRVL=m +CONFIG_NFC_MRVL_I2C=m +CONFIG_NFC_MRVL_SPI=m +CONFIG_NFC_MRVL_UART=m +CONFIG_NFC_MRVL_USB=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NCI_SPI=m +CONFIG_NFC_NCI_UART=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_PN532_UART=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_I2C=m +CONFIG_NFC_PN533_USB=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_I2C=m +CONFIG_NFC_PN544_MEI=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_S3FWRN5=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_NFC_S3FWRN82_UART=m +CONFIG_NFC_SHDLC=y +CONFIG_NFC_SIM=m +CONFIG_NFC_ST21NFCA=m +CONFIG_NFC_ST21NFCA_I2C=m +CONFIG_NFC_ST95HF=m +CONFIG_NFC_ST_NCI=m +CONFIG_NFC_ST_NCI_I2C=m +CONFIG_NFC_ST_NCI_SPI=m +CONFIG_NFC_TRF7970A=m +CONFIG_NFC_VIRTUAL_NCI=m +# CONFIG_NFIT_SECURITY_DEBUG is not set +CONFIG_NFP_APP_ABM_NIC=y +CONFIG_NFP_APP_FLOWER=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NFSD=m +CONFIG_NFSD_BLOCKLAYOUT=y +CONFIG_NFSD_FLEXFILELAYOUT=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_SCSILAYOUT=y +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_V4_2_INTER_SSC=y +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_DEBUG=y +CONFIG_NFS_DISABLE_UDP_SUPPORT=y +CONFIG_NFS_FS=m +CONFIG_NFS_FSCACHE=y +CONFIG_NFS_SWAP=y +CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_NFS_V4_1_MIGRATION=y +CONFIG_NFS_V4_2=y +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_CT=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_HASH=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_NAT=m +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_OSF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_XFRM=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_PPTP=m +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_LOG_IPV6=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_IPV4=y +CONFIG_NF_TABLES_IPV6=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NI903X_WDT=m +CONFIG_NIC7018_WDT=m +CONFIG_NILFS2_FS=m +CONFIG_NINTENDO_FF=y +CONFIG_NITRO_ENCLAVES=m +CONFIG_NIU=m +CONFIG_NI_XGE_MANAGEMENT_ENET=m +# CONFIG_NL80211_TESTMODE is not set +CONFIG_NLATTR=y +CONFIG_NLMON=m +CONFIG_NLS=y +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_NMI_IPI=y +CONFIG_NOA1305=m +CONFIG_NOKIA_MODEM=m +CONFIG_NONSTATIC_KERNEL=y +CONFIG_NOP_TRACER=y +CONFIG_NORTEL_HERMES=m +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NO_HZ=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ_IDLE=y +CONFIG_NO_IOPORT_MAP=y +CONFIG_NPCM7XX_KCS_IPMI_BMC=m +CONFIG_NPCM7XX_TIMER=y +CONFIG_NPCM7XX_WATCHDOG=y +CONFIG_NPCM_ADC=m +CONFIG_NR_CPUS_DEFAULT=8192 +CONFIG_NR_CPUS_RANGE_BEGIN=8192 +CONFIG_NR_CPUS_RANGE_END=8192 +CONFIG_NR_IRQS=512 +CONFIG_NS83820=m +# CONFIG_NTB_AMD is not set +CONFIG_NTB_EPF=m +CONFIG_NTB_IDT=m +CONFIG_NTB_INTEL=m +CONFIG_NTB_MSI=y +# CONFIG_NTB_MSI_TEST is not set +CONFIG_NTB_NETDEV=m +CONFIG_NTB_PERF=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_SWITCHTEC=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_TRANSPORT=m +# CONFIG_NTFS3_64BIT_CLUSTER is not set +CONFIG_NTFS3_FS=m +CONFIG_NTFS3_FS_POSIX_ACL=y +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING=y +# CONFIG_NUMA_EMU is not set +CONFIG_NUMA_KEEP_MEMINFO=y +CONFIG_NVDIMM_DAX=y +CONFIG_NVDIMM_KEYS=y +CONFIG_NVDIMM_PFN=y +CONFIG_NVEC_PAZ00=m +CONFIG_NVEC_POWER=m +# CONFIG_NVHE_EL2_DEBUG is not set +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y +CONFIG_NVIDIA_WMI_EC_BACKLIGHT=m +CONFIG_NVMEM_APPLE_EFUSES=m +CONFIG_NVMEM_BCM_OCOTP=m +CONFIG_NVMEM_IMX_IIM=m +CONFIG_NVMEM_IMX_OCOTP=m +CONFIG_NVMEM_IMX_OCOTP_SCU=m +CONFIG_NVMEM_LAYERSCAPE_SFP=m +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_NVMEM_RMEM=m +CONFIG_NVMEM_SNVS_LPGPR=m +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_NVMEM_SUNXI_SID=m +CONFIG_NVMEM_SYSFS=y +# CONFIG_NVMEM_VF610_OCOTP is not set +CONFIG_NVMEM_ZYNQMP=y +CONFIG_NVME_APPLE=m +CONFIG_NVME_CORE=m +CONFIG_NVME_FABRICS=m +CONFIG_NVME_FC=m +CONFIG_NVME_HWMON=y +CONFIG_NVME_MULTIPATH=y +CONFIG_NVME_RDMA=m +CONFIG_NVME_TARGET=m +CONFIG_NVME_TARGET_FC=m +# CONFIG_NVME_TARGET_FCLOOP is not set +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_PASSTHRU=y +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_TCP=m +CONFIG_NVME_TCP=m +# CONFIG_NVME_VERBOSE_ERRORS is not set +CONFIG_NVSW_SN2201=m +CONFIG_NV_TCO=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_N_HDLC=m +# CONFIG_OABI_COMPAT is not set +CONFIG_OBJAGG=m +CONFIG_OBJTOOL=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCTEONTX2_AF=m +CONFIG_OCTEONTX2_MBOX=m +CONFIG_OCTEONTX2_PF=m +CONFIG_OCTEONTX2_VF=m +CONFIG_OCTEON_EP=m +CONFIG_OCXL=m +CONFIG_OCXL_BASE=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_DMA_DEFAULT_COHERENT=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_FPGA_REGION=m +CONFIG_OF_GPIO=y +CONFIG_OF_IOMMU=y +CONFIG_OF_IRQ=y +CONFIG_OF_KOBJ=y +CONFIG_OF_MDIO=y +CONFIG_OF_NUMA=y +CONFIG_OF_OVERLAY=y +CONFIG_OF_PMEM=m +# CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT is not set +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OID_REGISTRY=y +CONFIG_OLD_SIGACTION=y +CONFIG_OLD_SIGSUSPEND=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_OMAP2PLUS_MBOX=m +CONFIG_OMAP2_VRFB=y +# CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set +# CONFIG_OMAP3_SDRC_AC_TIMING is not set +CONFIG_OMAP5_ERRATA_801819=y +CONFIG_OMAP_CONTROL_PHY=m +CONFIG_OMAP_DM_TIMER=y +CONFIG_OMAP_GPMC=y +# CONFIG_OMAP_GPMC_DEBUG is not set +CONFIG_OMAP_HWMOD=y +CONFIG_OMAP_INTERCONNECT=y +CONFIG_OMAP_INTERCONNECT_BARRIER=y +CONFIG_OMAP_IOMMU=y +# CONFIG_OMAP_IOMMU_DEBUG is not set +CONFIG_OMAP_IRQCHIP=y +CONFIG_OMAP_MBOX_KFIFO_SIZE=256 +CONFIG_OMAP_OCP2SCP=m +CONFIG_OMAP_REMOTEPROC=m +# CONFIG_OMAP_REMOTEPROC_WATCHDOG is not set +CONFIG_OMAP_SSI=m +CONFIG_OMAP_USB2=m +CONFIG_OMAP_WATCHDOG=m +# CONFIG_OPAL_CORE is not set +CONFIG_OPAL_PRD=m +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPEN_DICE=m +CONFIG_OPT3001=m +CONFIG_OPTEE=m +CONFIG_OPTPROBES=y +CONFIG_ORANGEFS_FS=m +CONFIG_ORINOCO_USB=m +CONFIG_ORION_IRQCHIP=y +CONFIG_ORION_TIMER=y +CONFIG_ORION_WATCHDOG=m +# CONFIG_OSNOISE_TRACER is not set +CONFIG_OUTER_CACHE=y +CONFIG_OUTER_CACHE_SYNC=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_METACOPY is not set +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +CONFIG_OVERLAY_FS_XINO_AUTO=y +CONFIG_OWL_DMA=m +CONFIG_OWL_EMAC=m +CONFIG_OWL_PM_DOMAINS=y +CONFIG_OWL_PM_DOMAINS_HELPER=y +CONFIG_OWL_TIMER=y +CONFIG_P54_COMMON=m +CONFIG_P54_LEDS=y +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_USB=m +CONFIG_PA12203001=m +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_PADATA=y +CONFIG_PAGE_COUNTER=y +CONFIG_PAGE_IDLE_FLAG=y +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POOL=y +CONFIG_PAGE_REPORTING=y +CONFIG_PAGE_SIZE_64KB=y +CONFIG_PAGE_SIZE_LESS_THAN_256KB=y +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +# CONFIG_PAGE_TABLE_CHECK is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_PAHOLE_HAS_SPLIT_BTF=y +CONFIG_PAHOLE_VERSION=122 +CONFIG_PALMAS_GPADC=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_PANEL=m +# CONFIG_PANEL_CHANGE_MESSAGE is not set +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PROFILE=5 +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANTHERLORD_FF=y +CONFIG_PAPR_SCM=m +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_XXL=y +CONFIG_PARIDE=m +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PG=m +CONFIG_PARIDE_PT=m +CONFIG_PARMAN=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_NOT_PC=y +CONFIG_PARPORT_PANEL=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_SERIAL=m +CONFIG_PARTITION_ADVANCED=y +CONFIG_PARTITION_PERCPU=y +CONFIG_PATA_ACPI=m +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_IMX=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OF_PLATFORM=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_TIMINGS=y +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m +CONFIG_PC300TOO=m +CONFIG_PC87413_WDT=m +CONFIG_PCC=y +CONFIG_PCCARD_NONSTATIC=y +CONFIG_PCENGINES_APU2=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_PCI=y +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +CONFIG_PCIE_AL=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCIE_APPLE=m +CONFIG_PCIE_APPLE_MSI_DOORBELL_ADDR=0xfffff000 +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_BRCMSTB=m +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_CADENCE=y +CONFIG_PCIE_CADENCE_EP=y +CONFIG_PCIE_CADENCE_HOST=y +CONFIG_PCIE_CADENCE_PLAT=y +CONFIG_PCIE_CADENCE_PLAT_EP=y +CONFIG_PCIE_CADENCE_PLAT_HOST=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_EP=y +CONFIG_PCIE_DW_HOST=y +CONFIG_PCIE_DW_PLAT=y +CONFIG_PCIE_DW_PLAT_EP=y +CONFIG_PCIE_DW_PLAT_HOST=y +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_EDR=y +CONFIG_PCIE_FU740=y +CONFIG_PCIE_HISI_ERR=y +CONFIG_PCIE_HISI_STB=y +CONFIG_PCIE_IPROC=m +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_IPROC_PLATFORM=m +CONFIG_PCIE_KEEMBAY=y +CONFIG_PCIE_KEEMBAY_EP=y +CONFIG_PCIE_KEEMBAY_HOST=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCIE_LAYERSCAPE_GEN4 is not set +CONFIG_PCIE_MEDIATEK=y +CONFIG_PCIE_MEDIATEK_GEN3=m +CONFIG_PCIE_MICROCHIP_HOST=y +# CONFIG_PCIE_MOBIVEIL_PLAT is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_PTM=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_QCOM_EP=m +CONFIG_PCIE_RCAR_EP=y +CONFIG_PCIE_RCAR_HOST=y +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_DW_HOST=y +CONFIG_PCIE_ROCKCHIP_EP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_TEGRA194=m +CONFIG_PCIE_TEGRA194_EP=m +CONFIG_PCIE_TEGRA194_HOST=m +# CONFIG_PCIE_UNIPHIER is not set +# CONFIG_PCIE_UNIPHIER_EP is not set +CONFIG_PCIE_VISCONTI_HOST=y +CONFIG_PCIE_XILINX=y +CONFIG_PCIE_XILINX_CPM=y +CONFIG_PCIE_XILINX_NWL=y +CONFIG_PCI_AARDVARK=y +CONFIG_PCI_ATMEL=m +CONFIG_PCI_ATS=y +CONFIG_PCI_BRIDGE_EMUL=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_DRA7XX=m +CONFIG_PCI_DRA7XX_EP=m +CONFIG_PCI_DRA7XX_HOST=m +CONFIG_PCI_ECAM=y +CONFIG_PCI_ENDPOINT=y +CONFIG_PCI_ENDPOINT_CONFIGFS=y +# CONFIG_PCI_ENDPOINT_TEST is not set +# CONFIG_PCI_EPF_TEST is not set +# CONFIG_PCI_EXYNOS is not set +CONFIG_PCI_FTPCI100=y +CONFIG_PCI_HISI=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HYPERV=m +CONFIG_PCI_HYPERV_INTERFACE=m +CONFIG_PCI_IMX6=y +CONFIG_PCI_IOV=y +CONFIG_PCI_J721E=y +CONFIG_PCI_J721E_EP=y +CONFIG_PCI_J721E_HOST=y +CONFIG_PCI_KEYSTONE=y +CONFIG_PCI_KEYSTONE_EP=y +CONFIG_PCI_KEYSTONE_HOST=y +CONFIG_PCI_LABEL=y +CONFIG_PCI_LAYERSCAPE_EP=y +CONFIG_PCI_LOCKLESS_CONFIG=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_ARCH_FALLBACKS=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +CONFIG_PCI_MVEBU=y +CONFIG_PCI_NR_FUNCTIONS=512 +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_PF_STUB=m +CONFIG_PCI_RCAR_GEN2=y +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +CONFIG_PCI_SW_SWITCHTEC=m +CONFIG_PCI_SYSCALL=y +CONFIG_PCI_TEGRA=y +CONFIG_PCI_V3_SEMI=y +CONFIG_PCI_XEN=y +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_AXNET=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_PCMCIA_WL3501=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_PCNET32=m +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_PCS_LYNX=m +CONFIG_PD6729=m +CONFIG_PDA_POWER=m +CONFIG_PDC_ADMA=m +CONFIG_PEAQ_WMI=m +CONFIG_PECI_ASPEED=m +CONFIG_PECI_CPU=m +# CONFIG_PERCPU_STATS is not set +# CONFIG_PERCPU_TEST is not set +CONFIG_PERF_EVENTS=y +CONFIG_PERF_EVENTS_AMD_BRS=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=m +CONFIG_PERF_EVENTS_INTEL_CSTATE=m +CONFIG_PERF_EVENTS_INTEL_RAPL=m +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERF_USE_VMALLOC=y +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PFAULT=y +CONFIG_PGSTE=y +CONFIG_PHYLIB=y +CONFIG_PHYLINK=m +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHYS_RAM_BASE_FIXED is not set +CONFIG_PHY_AM654_SERDES=m +CONFIG_PHY_BCM_NS_USB2=m +CONFIG_PHY_BCM_NS_USB3=m +CONFIG_PHY_BCM_SR_PCIE=m +CONFIG_PHY_BCM_SR_USB=m +CONFIG_PHY_BERLIN_SATA=m +CONFIG_PHY_BERLIN_USB=m +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_BRCM_USB=m +CONFIG_PHY_CADENCE_DPHY=m +CONFIG_PHY_CADENCE_DPHY_RX=m +CONFIG_PHY_CADENCE_SALVO=m +CONFIG_PHY_CADENCE_SIERRA=m +CONFIG_PHY_CADENCE_TORRENT=m +CONFIG_PHY_CPCAP_USB=m +CONFIG_PHY_DM816X_USB=m +# CONFIG_PHY_EXYNOS_DP_VIDEO is not set +# CONFIG_PHY_EXYNOS_MIPI_VIDEO is not set +# CONFIG_PHY_EXYNOS_PCIE is not set +CONFIG_PHY_FSL_IMX8MQ_USB=m +CONFIG_PHY_FSL_IMX8M_PCIE=m +CONFIG_PHY_FSL_LYNX_28G=m +CONFIG_PHY_HI3660_USB=m +CONFIG_PHY_HI3670_PCIE=m +CONFIG_PHY_HI3670_USB=m +CONFIG_PHY_HI6220_USB=m +CONFIG_PHY_HISI_INNO_USB2=m +CONFIG_PHY_HISTB_COMBPHY=m +CONFIG_PHY_HIX5HD2_SATA=m +CONFIG_PHY_INTEL_KEEMBAY_EMMC=m +CONFIG_PHY_INTEL_KEEMBAY_USB=m +CONFIG_PHY_INTEL_LGM_EMMC=m +CONFIG_PHY_J721E_WIZ=m +CONFIG_PHY_LAN966X_SERDES=m +CONFIG_PHY_MAPPHONE_MDM6600=m +CONFIG_PHY_MESON8B_USB2=m +CONFIG_PHY_MESON8_HDMI_TX=m +CONFIG_PHY_MESON_AXG_MIPI_DPHY=m +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG=y +CONFIG_PHY_MESON_AXG_PCIE=y +CONFIG_PHY_MESON_G12A_USB2=m +CONFIG_PHY_MESON_G12A_USB3_PCIE=m +CONFIG_PHY_MESON_GXL_USB2=m +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_MTK_HDMI=m +CONFIG_PHY_MTK_MIPI_DSI=m +CONFIG_PHY_MTK_TPHY=m +CONFIG_PHY_MTK_UFS=m +CONFIG_PHY_MTK_XSPHY=m +CONFIG_PHY_MVEBU_A3700_COMPHY=m +CONFIG_PHY_MVEBU_A3700_UTMI=m +CONFIG_PHY_MVEBU_A38X_COMPHY=m +CONFIG_PHY_MVEBU_CP110_COMPHY=m +CONFIG_PHY_MVEBU_CP110_UTMI=m +CONFIG_PHY_MVEBU_SATA=y +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_NS2_USB_DRD=m +CONFIG_PHY_OCELOT_SERDES=m +CONFIG_PHY_QCOM_APQ8064_SATA=m +CONFIG_PHY_QCOM_EDP=m +CONFIG_PHY_QCOM_IPQ4019_USB=m +CONFIG_PHY_QCOM_IPQ806X_SATA=m +CONFIG_PHY_QCOM_IPQ806X_USB=m +CONFIG_PHY_QCOM_PCIE2=m +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_QCOM_USB_HS_28NM=m +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=m +CONFIG_PHY_QCOM_USB_SS=m +CONFIG_PHY_RCAR_GEN2=m +CONFIG_PHY_RCAR_GEN3_PCIE=m +CONFIG_PHY_RCAR_GEN3_USB2=m +CONFIG_PHY_RCAR_GEN3_USB3=m +CONFIG_PHY_ROCKCHIP_DP=m +CONFIG_PHY_ROCKCHIP_DPHY_RX0=m +CONFIG_PHY_ROCKCHIP_EMMC=m +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=m +CONFIG_PHY_ROCKCHIP_NANENG_COMBO_PHY=m +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=m +CONFIG_PHY_ROCKCHIP_USB=m +# CONFIG_PHY_SAMSUNG_UFS is not set +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_SPARX5_SERDES=m +CONFIG_PHY_SUN4I_USB=m +CONFIG_PHY_SUN50I_USB3=m +CONFIG_PHY_SUN6I_MIPI_DPHY=m +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TEGRA_XUSB=m +CONFIG_PHY_TUSB1210=m +# CONFIG_PHY_UNIPHIER_AHCI is not set +# CONFIG_PHY_UNIPHIER_PCIE is not set +# CONFIG_PHY_UNIPHIER_USB2 is not set +# CONFIG_PHY_UNIPHIER_USB3 is not set +CONFIG_PHY_XGENE=y +CONFIG_PHY_XILINX_ZYNQMP=m +CONFIG_PI433=m +# CONFIG_PID_IN_CONTEXTIDR is not set +CONFIG_PID_NS=y +CONFIG_PINCONF=y +CONFIG_PINCTRL_ALDERLAKE=m +CONFIG_PINCTRL_AMD=y +CONFIG_PINCTRL_APPLE_GPIO=m +CONFIG_PINCTRL_APQ8064=m +CONFIG_PINCTRL_APQ8084=m +CONFIG_PINCTRL_ARMADA_370=y +CONFIG_PINCTRL_ARMADA_375=y +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_ARMADA_38X=y +CONFIG_PINCTRL_ARMADA_39X=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +CONFIG_PINCTRL_ARMADA_XP=y +CONFIG_PINCTRL_AS370=y +CONFIG_PINCTRL_AS3722=y +CONFIG_PINCTRL_ASPEED=y +CONFIG_PINCTRL_ASPEED_G6=y +CONFIG_PINCTRL_AXP209=m +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_BCM4908=m +CONFIG_PINCTRL_BERLIN=y +CONFIG_PINCTRL_BERLIN_BG2=y +CONFIG_PINCTRL_BERLIN_BG2CD=y +CONFIG_PINCTRL_BERLIN_BG2Q=y +CONFIG_PINCTRL_BERLIN_BG4CT=y +CONFIG_PINCTRL_BM1880=y +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CANNONLAKE=m +CONFIG_PINCTRL_CEDARFORK=m +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_CS47L15=y +CONFIG_PINCTRL_CS47L35=y +CONFIG_PINCTRL_CS47L85=y +CONFIG_PINCTRL_CS47L90=y +CONFIG_PINCTRL_CS47L92=y +CONFIG_PINCTRL_DA9062=m +CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_DOVE=y +CONFIG_PINCTRL_ELKHARTLAKE=m +CONFIG_PINCTRL_EMMITSBURG=m +CONFIG_PINCTRL_EXYNOS=y +CONFIG_PINCTRL_EXYNOS_ARM=y +CONFIG_PINCTRL_GEMINILAKE=m +CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX50=y +CONFIG_PINCTRL_IMX51=y +CONFIG_PINCTRL_IMX6Q=y +CONFIG_PINCTRL_IMX6SL=y +CONFIG_PINCTRL_IMX6SLL=y +CONFIG_PINCTRL_IMX6SX=y +CONFIG_PINCTRL_IMX6UL=y +CONFIG_PINCTRL_IMX7D=y +CONFIG_PINCTRL_IMX7ULP=y +CONFIG_PINCTRL_IMX8DXL=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MP=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_IMX8ULP=m +CONFIG_PINCTRL_IMX93=m +CONFIG_PINCTRL_IMXRT1050=y +CONFIG_PINCTRL_IMXRT1170=y +CONFIG_PINCTRL_IMX_SCU=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_IPQ4019=m +CONFIG_PINCTRL_IPQ6018=m +CONFIG_PINCTRL_IPQ8064=m +CONFIG_PINCTRL_IPQ8074=m +CONFIG_PINCTRL_IPROC_GPIO=y +CONFIG_PINCTRL_JASPERLAKE=m +CONFIG_PINCTRL_KEEMBAY=m +CONFIG_PINCTRL_LAKEFIELD=m +CONFIG_PINCTRL_LEWISBURG=m +CONFIG_PINCTRL_LOCHNAGAR=m +CONFIG_PINCTRL_LPASS_LPI=m +CONFIG_PINCTRL_LYNXPOINT=m +CONFIG_PINCTRL_MADERA=m +CONFIG_PINCTRL_MAX77620=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MDM9607=m +CONFIG_PINCTRL_MDM9615=m +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON8=y +CONFIG_PINCTRL_MESON8B=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_A1=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MESON_S4=m +CONFIG_PINCTRL_MICROCHIP_SGPIO=y +CONFIG_PINCTRL_MSM=y +CONFIG_PINCTRL_MSM8226=m +CONFIG_PINCTRL_MSM8660=m +CONFIG_PINCTRL_MSM8916=m +CONFIG_PINCTRL_MSM8953=m +CONFIG_PINCTRL_MSM8960=m +CONFIG_PINCTRL_MSM8976=m +CONFIG_PINCTRL_MSM8994=m +CONFIG_PINCTRL_MSM8996=m +CONFIG_PINCTRL_MSM8998=m +CONFIG_PINCTRL_MSM8X74=m +CONFIG_PINCTRL_MT2701=y +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6397=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6779=m +CONFIG_PINCTRL_MT6795=y +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT7623=y +CONFIG_PINCTRL_MT7629=y +CONFIG_PINCTRL_MT7986=y +CONFIG_PINCTRL_MT8127=y +CONFIG_PINCTRL_MT8135=y +CONFIG_PINCTRL_MT8167=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8186=y +CONFIG_PINCTRL_MT8192=y +CONFIG_PINCTRL_MT8195=y +CONFIG_PINCTRL_MT8365=y +CONFIG_PINCTRL_MT8516=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MTK_MOORE=y +CONFIG_PINCTRL_MTK_PARIS=y +CONFIG_PINCTRL_MTK_V2=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_NPCM7XX=y +CONFIG_PINCTRL_NS2_MUX=y +CONFIG_PINCTRL_OCELOT=y +CONFIG_PINCTRL_OWL=y +CONFIG_PINCTRL_PALMAS=y +CONFIG_PINCTRL_PFC_EMEV2=y +CONFIG_PINCTRL_PFC_R8A7740=y +CONFIG_PINCTRL_PFC_R8A7742=y +CONFIG_PINCTRL_PFC_R8A7743=y +CONFIG_PINCTRL_PFC_R8A7744=y +CONFIG_PINCTRL_PFC_R8A7745=y +CONFIG_PINCTRL_PFC_R8A77470=y +CONFIG_PINCTRL_PFC_R8A774A1=y +CONFIG_PINCTRL_PFC_R8A774B1=y +CONFIG_PINCTRL_PFC_R8A774C0=y +CONFIG_PINCTRL_PFC_R8A774E1=y +CONFIG_PINCTRL_PFC_R8A7778=y +CONFIG_PINCTRL_PFC_R8A7779=y +CONFIG_PINCTRL_PFC_R8A7790=y +CONFIG_PINCTRL_PFC_R8A7791=y +CONFIG_PINCTRL_PFC_R8A7792=y +CONFIG_PINCTRL_PFC_R8A7793=y +CONFIG_PINCTRL_PFC_R8A7794=y +CONFIG_PINCTRL_PFC_R8A77950=y +CONFIG_PINCTRL_PFC_R8A77951=y +CONFIG_PINCTRL_PFC_R8A77960=y +CONFIG_PINCTRL_PFC_R8A77961=y +CONFIG_PINCTRL_PFC_R8A77965=y +CONFIG_PINCTRL_PFC_R8A77970=y +CONFIG_PINCTRL_PFC_R8A77980=y +CONFIG_PINCTRL_PFC_R8A77990=y +CONFIG_PINCTRL_PFC_R8A77995=y +CONFIG_PINCTRL_PFC_R8A779A0=y +CONFIG_PINCTRL_PFC_R8A779F0=y +CONFIG_PINCTRL_PFC_SH73A0=y +CONFIG_PINCTRL_QCM2290=m +CONFIG_PINCTRL_QCOM_SPMI_PMIC=m +CONFIG_PINCTRL_QCOM_SSBI_PMIC=m +CONFIG_PINCTRL_QCS404=m +CONFIG_PINCTRL_QDF2XXX=m +CONFIG_PINCTRL_RENESAS=y +CONFIG_PINCTRL_RK805=m +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_RZA1=y +CONFIG_PINCTRL_RZA2=y +CONFIG_PINCTRL_RZG2L=y +CONFIG_PINCTRL_RZN1=y +CONFIG_PINCTRL_S500=y +CONFIG_PINCTRL_S700=y +CONFIG_PINCTRL_S900=y +CONFIG_PINCTRL_SAMSUNG=y +CONFIG_PINCTRL_SC7180=m +CONFIG_PINCTRL_SC7280=m +CONFIG_PINCTRL_SC7280_LPASS_LPI=m +CONFIG_PINCTRL_SC8180X=m +CONFIG_PINCTRL_SC8280XP=m +CONFIG_PINCTRL_SDM660=m +CONFIG_PINCTRL_SDM845=m +CONFIG_PINCTRL_SDX55=m +CONFIG_PINCTRL_SDX65=m +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_SH_PFC_GPIO=y +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_SM6115=m +CONFIG_PINCTRL_SM6125=m +CONFIG_PINCTRL_SM6350=m +CONFIG_PINCTRL_SM8150=m +CONFIG_PINCTRL_SM8250=m +CONFIG_PINCTRL_SM8250_LPASS_LPI=m +CONFIG_PINCTRL_SM8350=m +CONFIG_PINCTRL_SM8450=m +CONFIG_PINCTRL_SPRD=y +CONFIG_PINCTRL_SPRD_SC9860=y +CONFIG_PINCTRL_STARFIVE=m +CONFIG_PINCTRL_STMFX=m +CONFIG_PINCTRL_SUN4I_A10=y +CONFIG_PINCTRL_SUN50I_A100=y +CONFIG_PINCTRL_SUN50I_A100_R=y +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H616=y +CONFIG_PINCTRL_SUN50I_H616_R=y +CONFIG_PINCTRL_SUN50I_H6_R=y +CONFIG_PINCTRL_SUN5I=y +CONFIG_PINCTRL_SUN6I_A31=y +CONFIG_PINCTRL_SUN6I_A31_R=y +CONFIG_PINCTRL_SUN8I_A23=y +CONFIG_PINCTRL_SUN8I_A23_R=y +CONFIG_PINCTRL_SUN8I_A33=y +CONFIG_PINCTRL_SUN8I_A83T=y +CONFIG_PINCTRL_SUN8I_A83T_R=y +CONFIG_PINCTRL_SUN8I_H3=y +CONFIG_PINCTRL_SUN8I_H3_R=y +CONFIG_PINCTRL_SUN8I_V3S=y +CONFIG_PINCTRL_SUN9I_A80=y +CONFIG_PINCTRL_SUN9I_A80_R=y +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_SUNXI=y +CONFIG_PINCTRL_SX150X=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA114=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA20=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA30=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_TIGERLAKE=m +CONFIG_PINCTRL_TI_IODELAY=y +CONFIG_PINCTRL_TMPV7700=y +# CONFIG_PINCTRL_UNIPHIER is not set +CONFIG_PINCTRL_VF610=y +CONFIG_PINCTRL_VISCONTI=y +CONFIG_PINCTRL_ZYNQMP=m +CONFIG_PING=m +CONFIG_PINMUX=y +CONFIG_PJ4B_ERRATA_4742=y +CONFIG_PKCS7_MESSAGE_PARSER=y +CONFIG_PKCS7_TEST_KEY=m +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_PKEY=m +CONFIG_PL310_ERRATA_588369=y +CONFIG_PL310_ERRATA_727915=y +CONFIG_PL310_ERRATA_753970=y +CONFIG_PL310_ERRATA_769419=y +CONFIG_PL320_MBOX=y +CONFIG_PL330_DMA=m +CONFIG_PL353_SMC=m +CONFIG_PLATFORM_MHU=m +CONFIG_PLATFORM_SI4713=m +CONFIG_PLAT_ORION=y +# CONFIG_PLAT_SPEAR is not set +CONFIG_PLAT_VERSATILE=y +CONFIG_PLAYSTATION_FF=y +CONFIG_PLDMFW=y +CONFIG_PLFXLC=m +CONFIG_PLIP=m +CONFIG_PLX_DMA=m +CONFIG_PLX_HERMES=m +CONFIG_PM8916_WATCHDOG=m +CONFIG_PMBUS=m +CONFIG_PMC_ATOM=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_PMS7003=m +# CONFIG_PMU_SYSFS is not set +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_AUTOSLEEP is not set +CONFIG_PM_CLK=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +CONFIG_PM_OPP=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_SLEEP_SMP_NONZERO_CPU=y +CONFIG_PM_STD_PARTITION="" +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_GC=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_PNP=y +CONFIG_PNPACPI=y +# CONFIG_PNP_DEBUG_MESSAGES is not set +CONFIG_POLARFIRE_SOC_MAILBOX=m +CONFIG_POLARFIRE_SOC_SYS_CTRL=m +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_POSIX_TIMERS=y +# CONFIG_POWER7_CPU is not set +# CONFIG_POWER8_CPU is not set +# CONFIG_POWER9_CPU is not set +CONFIG_POWERNV_CPUFREQ=y +CONFIG_POWERNV_CPUIDLE=y +CONFIG_POWERNV_OP_PANEL=m +CONFIG_POWER_AVS_OMAP=y +CONFIG_POWER_AVS_OMAP_CLASS3=y +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_AS3722=y +CONFIG_POWER_RESET_ATC260X=m +CONFIG_POWER_RESET_AXXIA=y +CONFIG_POWER_RESET_BRCMKONA=y +# CONFIG_POWER_RESET_BRCMSTB is not set +CONFIG_POWER_RESET_GPIO=y +CONFIG_POWER_RESET_GPIO_RESTART=y +CONFIG_POWER_RESET_HISI=y +CONFIG_POWER_RESET_LINKSTATION=m +CONFIG_POWER_RESET_LTC2952=y +CONFIG_POWER_RESET_MSM=y +CONFIG_POWER_RESET_MT6323=y +CONFIG_POWER_RESET_OCELOT_RESET=y +CONFIG_POWER_RESET_QCOM_PON=m +# CONFIG_POWER_RESET_QNAP is not set +CONFIG_POWER_RESET_REGULATOR=y +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_RMOBILE=m +CONFIG_POWER_RESET_SC27XX=m +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_POWER_RESET_TPS65086=y +CONFIG_POWER_RESET_VERSATILE=y +CONFIG_POWER_RESET_VEXPRESS=y +# CONFIG_POWER_RESET_XGENE is not set +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +CONFIG_PPC=y +CONFIG_PPC64=y +CONFIG_PPC64_BOOT_WRAPPER=y +CONFIG_PPC64_ELF_ABI_V2=y +CONFIG_PPC64_SUPPORTS_MEMORY_FAILURE=y +# CONFIG_PPC_4K_PAGES is not set +CONFIG_PPC_64K_PAGES=y +CONFIG_PPC_64S_HASH_MMU=y +CONFIG_PPC_BARRIER_NOSPEC=y +# CONFIG_PPC_BOOK3E_64 is not set +CONFIG_PPC_BOOK3S=y +CONFIG_PPC_BOOK3S_64=y +CONFIG_PPC_BOOK3S_IDLE=y +CONFIG_PPC_COPRO_BASE=y +CONFIG_PPC_DAWR=y +CONFIG_PPC_DENORMALISATION=y +# CONFIG_PPC_DISABLE_WERROR is not set +CONFIG_PPC_DOORBELL=y +CONFIG_PPC_DT_CPU_FTRS=y +# CONFIG_PPC_EARLY_DEBUG is not set +# CONFIG_PPC_EMULATED_STATS is not set +# CONFIG_PPC_EPAPR_HV_BYTECHAN is not set +# CONFIG_PPC_FAST_ENDIAN_SWITCH is not set +CONFIG_PPC_FPU=y +CONFIG_PPC_FPU_REGS=y +CONFIG_PPC_HASH_MMU_NATIVE=y +CONFIG_PPC_HAVE_PMU_SUPPORT=y +CONFIG_PPC_I8259=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +CONFIG_PPC_ICS_RTAS=y +CONFIG_PPC_INDIRECT_PIO=y +# CONFIG_PPC_IRQ_SOFT_MASK_DEBUG is not set +CONFIG_PPC_KUAP=y +# CONFIG_PPC_KUAP_DEBUG is not set +CONFIG_PPC_KUEP=y +CONFIG_PPC_LONG_DOUBLE_128=y +CONFIG_PPC_MEMTRACE=y +# CONFIG_PPC_MEM_KEYS is not set +CONFIG_PPC_MSI_BITMAP=y +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_PAGE_SHIFT=16 +CONFIG_PPC_PERF_CTRS=y +CONFIG_PPC_PKEY=y +CONFIG_PPC_POWERNV=y +# CONFIG_PPC_PROT_SAO_LPAR is not set +CONFIG_PPC_PSERIES=y +# CONFIG_PPC_QUEUED_SPINLOCKS is not set +CONFIG_PPC_RADIX_MMU=y +CONFIG_PPC_RADIX_MMU_DEFAULT=y +# CONFIG_PPC_RFI_SRR_DEBUG is not set +CONFIG_PPC_RTAS=y +CONFIG_PPC_RTAS_DAEMON=y +CONFIG_PPC_RTAS_FILTER=y +CONFIG_PPC_SECURE_BOOT=y +CONFIG_PPC_SECVAR_SYSFS=y +CONFIG_PPC_SMLPAR=y +CONFIG_PPC_SMP_MUXED_IPI=y +CONFIG_PPC_SPLPAR=y +CONFIG_PPC_SUBPAGE_PROT=y +CONFIG_PPC_SVM=y +CONFIG_PPC_TRANSACTIONAL_MEM=y +CONFIG_PPC_UDBG_16550=y +CONFIG_PPC_UV=y +CONFIG_PPC_VAS=y +CONFIG_PPC_WATCHDOG=y +CONFIG_PPC_WERROR=y +CONFIG_PPC_XICS=y +CONFIG_PPC_XIVE=y +CONFIG_PPC_XIVE_NATIVE=y +CONFIG_PPC_XIVE_SPAPR=y +CONFIG_PPDEV=m +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPP_SYNC_TTY=m +CONFIG_PPS=y +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_DEBUG is not set +CONFIG_PPTP=m +# CONFIG_PREEMPT is not set +CONFIG_PREEMPTION=y +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +CONFIG_PREEMPT_BUILD=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPT_DYNAMIC=y +CONFIG_PREEMPT_NONE_BUILD=y +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PREEMPT_RCU=y +# CONFIG_PREEMPT_TRACER is not set +CONFIG_PREEMPT_VOLUNTARY_BUILD=y +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_PREVENT_FIRMWARE_BUILD=y +# CONFIG_PRIME_NUMBERS is not set +CONFIG_PRINTER=m +CONFIG_PRINTK=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_PRINTK_INDEX is not set +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PRINT_STACK_DEPTH=64 +CONFIG_PRISM2_USB=m +CONFIG_PROBE_EVENTS=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_CPU_RESCTRL=y +CONFIG_PROC_EVENTS=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_THERMAL_MMIO_RAPL=m +CONFIG_PROC_VMCORE=y +CONFIG_PROC_VMCORE_DEVICE_DUMP=y +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_PROFILING=y +CONFIG_PROTECTED_VIRTUALIZATION_GUEST=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_PRU_REMOTEPROC=m +CONFIG_PSAMPLE=m +CONFIG_PSERIES_CPUIDLE=y +CONFIG_PSERIES_ENERGY=m +CONFIG_PSI=y +# CONFIG_PSTORE_842_COMPRESS is not set +CONFIG_PSTORE_BLK=m +CONFIG_PSTORE_BLK_BLKDEV="" +CONFIG_PSTORE_BLK_CONSOLE_SIZE=64 +CONFIG_PSTORE_BLK_KMSG_SIZE=64 +CONFIG_PSTORE_BLK_MAX_REASON=2 +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_PMSG is not set +CONFIG_PSTORE_ZONE=m +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PTDUMP_CORE=y +CONFIG_PTE_MARKER=y +CONFIG_PTE_MARKER_UFFD_WP=y +CONFIG_PTP_1588_CLOCK_DTE=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +CONFIG_PTP_1588_CLOCK_INES=m +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_OCP=m +CONFIG_PTP_1588_CLOCK_QORIQ=m +CONFIG_PTP_1588_CLOCK_VMW=m +CONFIG_PUNIT_ATOM_DEBUG=m +CONFIG_PVH=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +CONFIG_PWM_ATMEL_HLCDC_PWM=m +CONFIG_PWM_ATMEL_TCB=m +CONFIG_PWM_BCM2835=m +CONFIG_PWM_BCM_IPROC=m +CONFIG_PWM_BERLIN=m +CONFIG_PWM_BRCMSTB=m +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_DWC=m +CONFIG_PWM_FSL_FTM=m +CONFIG_PWM_HIBVT=m +CONFIG_PWM_IMX1=m +CONFIG_PWM_IMX27=m +CONFIG_PWM_IMX_TPM=m +CONFIG_PWM_IQS620A=m +CONFIG_PWM_KEEMBAY=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=y +CONFIG_PWM_LPSS_PCI=y +CONFIG_PWM_LPSS_PLATFORM=y +CONFIG_PWM_MEDIATEK=m +CONFIG_PWM_MESON=m +CONFIG_PWM_MTK_DISP=m +CONFIG_PWM_NTXEC=m +CONFIG_PWM_OMAP_DMTIMER=m +CONFIG_PWM_PCA9685=m +CONFIG_PWM_RASPBERRYPI_POE=m +CONFIG_PWM_RCAR=m +CONFIG_PWM_RENESAS_TPU=m +CONFIG_PWM_ROCKCHIP=m +# CONFIG_PWM_SAMSUNG is not set +CONFIG_PWM_SIFIVE=m +CONFIG_PWM_SL28CPLD=m +CONFIG_PWM_SPRD=m +CONFIG_PWM_STMPE=y +CONFIG_PWM_SUN4I=m +CONFIG_PWM_SYSFS=y +CONFIG_PWM_TEGRA=m +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_PWM_VISCONTI=m +CONFIG_PWM_XILINX=m +CONFIG_PWRSEQ_EMMC=m +CONFIG_PWRSEQ_SD8787=m +CONFIG_PWRSEQ_SIMPLE=m +CONFIG_PXA168_ETH=m +CONFIG_QCA7000=m +CONFIG_QCA7000_SPI=m +CONFIG_QCA7000_UART=m +CONFIG_QCM_DISPCC_2290=m +CONFIG_QCM_GCC_2290=m +CONFIG_QCOM_A53PLL=m +CONFIG_QCOM_A7PLL=m +CONFIG_QCOM_ADM=m +CONFIG_QCOM_AOSS_QMP=m +CONFIG_QCOM_APCS_IPC=m +CONFIG_QCOM_APR=m +CONFIG_QCOM_BAM_DMA=m +CONFIG_QCOM_BAM_DMUX=m +CONFIG_QCOM_CLK_APCC_MSM8996=m +CONFIG_QCOM_CLK_APCS_MSM8916=m +CONFIG_QCOM_CLK_APCS_SDX55=m +CONFIG_QCOM_CLK_RPM=m +CONFIG_QCOM_CLK_RPMH=m +CONFIG_QCOM_CLK_SMD_RPM=m +CONFIG_QCOM_COINCELL=m +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_CPR=m +CONFIG_QCOM_EBI2=y +CONFIG_QCOM_EMAC=m +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_QCOM_FASTRPC=m +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_GENI_SE=m +CONFIG_QCOM_GPI_DMA=m +CONFIG_QCOM_GSBI=m +CONFIG_QCOM_HFPLL=m +CONFIG_QCOM_HIDMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_IOMMU=y +CONFIG_QCOM_IPA=m +CONFIG_QCOM_IPCC=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_QCOM_KRYO_L2_ACCESSORS=y +CONFIG_QCOM_L2_PMU=y +CONFIG_QCOM_L3_PMU=y +CONFIG_QCOM_LLCC=m +CONFIG_QCOM_LMH=m +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_MPM=m +CONFIG_QCOM_OCMEM=m +CONFIG_QCOM_PDC=y +CONFIG_QCOM_PDR_HELPERS=m +CONFIG_QCOM_PIL_INFO=m +CONFIG_QCOM_PM8XXX_XOADC=m +CONFIG_QCOM_Q6V5_ADSP=m +CONFIG_QCOM_Q6V5_COMMON=m +CONFIG_QCOM_Q6V5_MSS=m +CONFIG_QCOM_Q6V5_PAS=m +CONFIG_QCOM_Q6V5_WCSS=m +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_QFPROM=m +CONFIG_QCOM_QMI_HELPERS=m +CONFIG_QCOM_RMTFS_MEM=m +CONFIG_QCOM_RPMCC=y +CONFIG_QCOM_RPMH=y +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=m +CONFIG_QCOM_RPROC_COMMON=m +CONFIG_QCOM_SCM=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_QCOM_SMD_RPM=m +CONFIG_QCOM_SMEM=m +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=m +CONFIG_QCOM_SMSM=m +CONFIG_QCOM_SOCINFO=m +CONFIG_QCOM_SPM=y +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_QCOM_SPMI_ADC_TM5=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_TEMP_ALARM=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SSC_BLOCK_BUS=y +CONFIG_QCOM_STATS=m +CONFIG_QCOM_SYSMON=m +CONFIG_QCOM_TSENS=m +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_WCNSS_CTRL=m +# CONFIG_QCOM_WCNSS_PIL is not set +CONFIG_QCOM_WDT=m +CONFIG_QCS_GCC_404=m +CONFIG_QCS_Q6SSTOP_404=m +CONFIG_QCS_TURING_404=m +CONFIG_QDIO=m +CONFIG_QED=m +CONFIG_QEDE=m +CONFIG_QEDF=m +CONFIG_QEDI=m +CONFIG_QED_FCOE=y +CONFIG_QED_ISCSI=y +CONFIG_QED_LL2=y +CONFIG_QED_OOO=y +CONFIG_QED_RDMA=y +CONFIG_QED_SRIOV=y +CONFIG_QETH=m +CONFIG_QETH_L2=m +CONFIG_QETH_L3=m +# CONFIG_QETH_OSX is not set +CONFIG_QE_GPIO=y +CONFIG_QE_TDM=y +CONFIG_QE_USB=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLGE=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_QORIQ_CPUFREQ=m +CONFIG_QORIQ_THERMAL=m +CONFIG_QRTR_MHI=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QSEMI_PHY=m +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_QUEUED_RWLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_QUICC_ENGINE=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_QUOTA_TREE=m +CONFIG_R6040=m +CONFIG_R8169=m +CONFIG_R8188EU=m +CONFIG_R8712U=m +CONFIG_RADIO_ADAPTERS=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_RADIO_SI470X=m +CONFIG_RADIO_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_RAID_ATTRS=m +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_RANDOM_TRUST_BOOTLOADER=y +CONFIG_RANDOM_TRUST_CPU=y +CONFIG_RANDSTRUCT_NONE=y +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_CPS_GEN2=m +CONFIG_RAPIDIO_CPS_XX=m +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +CONFIG_RAPIDIO_DMA_ENGINE=y +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_MPORT_CDEV=m +CONFIG_RAPIDIO_RXS_GEN3=m +CONFIG_RAPIDIO_TSI721=m +CONFIG_RAS=y +CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_RASPBERRYPI_POWER=y +CONFIG_RAS_CEC=y +# CONFIG_RAS_CEC_DEBUG is not set +CONFIG_RATIONAL=y +CONFIG_RAVB=m +CONFIG_RAVE_SP_EEPROM=m +CONFIG_RAVE_SP_WATCHDOG=m +# CONFIG_RBTREE_TEST is not set +CONFIG_RCAR_DMAC=m +CONFIG_RCAR_GEN3_THERMAL=m +CONFIG_RCAR_GYRO_ADC=m +CONFIG_RCAR_REMOTEPROC=m +CONFIG_RCAR_THERMAL=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_RCU_EXPERT is not set +CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0 +CONFIG_RCU_NEED_SEGCBLIST=y +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_SCALE_TEST is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +CONFIG_RC_ATI_REMOTE=m +CONFIG_RC_DECODERS=y +CONFIG_RC_DEVICES=y +CONFIG_RC_LOOPBACK=m +CONFIG_RC_MAP=m +CONFIG_RC_XBOX_DVD=m +CONFIG_RDA_INTC=y +CONFIG_RDA_TIMER=y +CONFIG_RDMA_RXE=m +CONFIG_RDMA_SIW=m +CONFIG_RDS=m +# CONFIG_RDS_DEBUG is not set +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +CONFIG_RD_BZIP2=y +CONFIG_RD_GZIP=y +CONFIG_RD_LZ4=y +CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y +CONFIG_RD_XZ=y +CONFIG_RD_ZSTD=y +# CONFIG_READABLE_ASM is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_REALTEK_AUTOPM=y +CONFIG_REALTEK_PHY=m +CONFIG_REBOOT_MODE=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_ENC8=y +# CONFIG_REED_SOLOMON_TEST is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_AC97=m +CONFIG_REGMAP_I3C=m +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_SCCB=m +CONFIG_REGMAP_SLIMBUS=m +CONFIG_REGMAP_SOUNDWIRE=m +CONFIG_REGMAP_SOUNDWIRE_MBQ=m +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPI_AVMM=m +CONFIG_REGMAP_SPMI=m +CONFIG_REGMAP_W1=m +CONFIG_REGULATOR_88PG86X=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_ACT8945A=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_ANATOP=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_ARM_SCMI=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_AS3722=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_BD71815=m +CONFIG_REGULATOR_BD71828=m +CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_BD957XMUF=m +CONFIG_REGULATOR_CPCAP=m +CONFIG_REGULATOR_CROS_EC=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9063=m +CONFIG_REGULATOR_DA9121=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_FAN53880=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_HI6421=m +CONFIG_REGULATOR_HI6421V530=m +CONFIG_REGULATOR_HI6421V600=m +CONFIG_REGULATOR_HI655X=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_LM363X=m +CONFIG_REGULATOR_LOCHNAGAR=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP873X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP87565=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_LTC3676=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX20086=m +CONFIG_REGULATOR_MAX77620=m +CONFIG_REGULATOR_MAX77650=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77802=m +CONFIG_REGULATOR_MAX77826=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8893=m +CONFIG_REGULATOR_MAX8907=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8973=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MCP16502=m +CONFIG_REGULATOR_MP5416=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MP886X=m +CONFIG_REGULATOR_MPQ7920=m +CONFIG_REGULATOR_MT6311=m +CONFIG_REGULATOR_MT6315=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_MT6380=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PBIAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PF8X00=m +CONFIG_REGULATOR_PFUZE100=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_RPMH=m +CONFIG_REGULATOR_QCOM_SMD_RPM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_RN5T618=m +CONFIG_REGULATOR_ROHM=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_RT5190A=m +CONFIG_REGULATOR_RT5759=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_S2MPA01=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_SC2731=m +CONFIG_REGULATOR_SKY81452=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_STPMIC1=m +CONFIG_REGULATOR_SY7636A=m +CONFIG_REGULATOR_SY8106A=m +CONFIG_REGULATOR_SY8824X=m +CONFIG_REGULATOR_SY8827N=m +CONFIG_REGULATOR_TI_ABB=y +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS6286X=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65086=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS65218=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TPS68470=m +# CONFIG_REGULATOR_UNIPHIER is not set +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_VCTRL=m +CONFIG_REGULATOR_VEXPRESS=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_VQMMC_IPQ4019=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_REISERFS_FS_XATTR=y +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_RELAY=y +CONFIG_RELOCATABLE=y +# CONFIG_RELOCATABLE_TEST is not set +CONFIG_REMOTEPROC_CDEV=y +CONFIG_RENESAS_DMA=y +CONFIG_RENESAS_INTC_IRQPIN=y +CONFIG_RENESAS_IRQC=y +CONFIG_RENESAS_OSTM=y +CONFIG_RENESAS_PHY=m +CONFIG_RENESAS_RPCIF=m +CONFIG_RENESAS_RZA1_IRQC=y +CONFIG_RENESAS_RZAWDT=m +CONFIG_RENESAS_RZG2LWDT=m +CONFIG_RENESAS_RZN1WDT=m +CONFIG_RENESAS_USB_DMAC=m +CONFIG_RENESAS_WDT=m +CONFIG_RESET_A10SR=m +CONFIG_RESET_ATTACK_MITIGATION=y +CONFIG_RESET_BERLIN=y +CONFIG_RESET_BRCMSTB=m +CONFIG_RESET_BRCMSTB_RESCAL=y +CONFIG_RESET_HISI=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_MCHP_SPARX5=y +CONFIG_RESET_MESON=y +CONFIG_RESET_MESON_AUDIO_ARB=m +CONFIG_RESET_NPCM=y +CONFIG_RESET_QCOM_AOSS=y +CONFIG_RESET_QCOM_PDC=m +CONFIG_RESET_RASPBERRYPI=m +CONFIG_RESET_RZG2L_USBPHY_CTRL=m +CONFIG_RESET_SCMI=m +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SOCFPGA=y +CONFIG_RESET_STARFIVE_JH7100=y +CONFIG_RESET_SUNXI=y +CONFIG_RESET_TEGRA_BPMP=y +CONFIG_RESET_TI_SCI=m +CONFIG_RESET_TI_SYSCON=m +# CONFIG_RESET_UNIPHIER is not set +# CONFIG_RESET_UNIPHIER_GLUE is not set +CONFIG_RETHOOK=y +CONFIG_RETHUNK=y +CONFIG_RETPOLINE=y +CONFIG_RETU_WATCHDOG=m +CONFIG_RFD77402=m +CONFIG_RFD_FTL=m +CONFIG_RFKILL_GPIO=m +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFS_ACCEL=y +CONFIG_RING_BUFFER=y +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +CONFIG_RIONET=m +CONFIG_RIONET_RX_SIZE=128 +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RISCV=y +CONFIG_RISCV_ALTERNATIVE=y +# CONFIG_RISCV_BOOT_SPINWAIT is not set +CONFIG_RISCV_INTC=y +CONFIG_RISCV_ISA_C=y +# CONFIG_RISCV_ISA_SVPBMT is not set +CONFIG_RISCV_PMU=y +CONFIG_RISCV_PMU_LEGACY=y +CONFIG_RISCV_PMU_SBI=y +CONFIG_RISCV_SBI=y +CONFIG_RISCV_SBI_CPUIDLE=y +# CONFIG_RISCV_SBI_V01 is not set +CONFIG_RISCV_TIMER=y +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +CONFIG_RMI4_F34=y +CONFIG_RMI4_F3A=y +CONFIG_RMI4_F54=y +CONFIG_RMI4_F55=y +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SMB=m +CONFIG_RMI4_SPI=m +CONFIG_RMNET=m +CONFIG_RN5T618_ADC=m +CONFIG_RN5T618_POWER=m +CONFIG_RN5T618_WATCHDOG=m +CONFIG_ROCKCHIP_ANALOGIX_DP=y +CONFIG_ROCKCHIP_CDN_DP=y +CONFIG_ROCKCHIP_DTPM=m +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_INNO_HDMI=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_ROCKCHIP_LVDS=y +CONFIG_ROCKCHIP_MBOX=y +CONFIG_ROCKCHIP_OTP=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_ROCKCHIP_RGB=y +CONFIG_ROCKCHIP_RK3066_HDMI=y +CONFIG_ROCKCHIP_SARADC=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_TIMER=y +CONFIG_ROCKCHIP_VOP=y +CONFIG_ROCKCHIP_VOP2=y +CONFIG_ROCKER=m +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROSE=m +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPMSG=m +CONFIG_RPMSG_CHAR=m +CONFIG_RPMSG_CTRL=m +CONFIG_RPMSG_MTK_SCP=m +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_SMD=m +CONFIG_RPMSG_TTY=m +CONFIG_RPMSG_WWAN_CTRL=m +CONFIG_RPR0521=m +CONFIG_RPS=y +CONFIG_RSEQ=y +CONFIG_RSI_91X=m +CONFIG_RSI_COEX=y +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +CONFIG_RST_RCAR=y +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT2500USB=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00=m +# CONFIG_RT2X00_DEBUG is not set +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_CRYPTO=y +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_LEDS=y +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT61PCI=m +CONFIG_RT73USB=m +CONFIG_RTAS_ERROR_LOGGING=y +CONFIG_RTAS_FLASH=m +CONFIG_RTAS_PROC=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABEOZ9=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RTC_DRV_AS3722=m +CONFIG_RTC_DRV_ASPEED=m +CONFIG_RTC_DRV_BD70528=m +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_BRCMSTB=m +CONFIG_RTC_DRV_CADENCE=m +CONFIG_RTC_DRV_CPCAP=m +CONFIG_RTC_DRV_CROS_EC=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_DA9055=m +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1307_CENTURY=y +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1374_WDT=y +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1685=y +CONFIG_RTC_DRV_DS1685_FAMILY=m +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +CONFIG_RTC_DRV_DS1742=m +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_FSL_FTM_ALARM=m +CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_GENERIC=y +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_HYM8563=m +CONFIG_RTC_DRV_IMXDI=m +CONFIG_RTC_DRV_IMX_SC=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_ISL12026=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_LP8788=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_MAX77686=m +CONFIG_RTC_DRV_MAX8907=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8997=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_DRV_MESON=m +CONFIG_RTC_DRV_MESON_VRTC=m +CONFIG_RTC_DRV_MSC313=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_MT2712=m +CONFIG_RTC_DRV_MT6397=m +CONFIG_RTC_DRV_MT7622=m +CONFIG_RTC_DRV_MV=y +CONFIG_RTC_DRV_MXC=m +CONFIG_RTC_DRV_MXC_V2=m +CONFIG_RTC_DRV_NTXEC=m +CONFIG_RTC_DRV_OMAP=y +CONFIG_RTC_DRV_OPAL=y +CONFIG_RTC_DRV_OPTEE=m +CONFIG_RTC_DRV_PALMAS=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF85363=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_PL030=m +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_R7301=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_RC5T619=m +CONFIG_RTC_DRV_RK808=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_RTD119X=y +CONFIG_RTC_DRV_RV3028=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +CONFIG_RTC_DRV_RV3032=m +CONFIG_RTC_DRV_RV8803=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RX6110=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_RZN1=m +CONFIG_RTC_DRV_S35390A=m +# CONFIG_RTC_DRV_S3C is not set +CONFIG_RTC_DRV_S5M=m +CONFIG_RTC_DRV_SC27XX=m +CONFIG_RTC_DRV_SD3078=m +CONFIG_RTC_DRV_SH=m +CONFIG_RTC_DRV_SNVS=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_TEGRA=m +# CONFIG_RTC_DRV_TEST is not set +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_TPS65910=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WILCO_EC=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_XGENE=y +CONFIG_RTC_DRV_ZYNQMP=m +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_I2C_AND_SPI=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_NVMEM=y +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +CONFIG_RTD119X_WATCHDOG=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL8188EE=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192CU=m +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8192DE=m +CONFIG_RTL8192E=m +CONFIG_RTL8192EE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192U=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8723BS=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTL8821AE=m +CONFIG_RTL8XXXU=m +CONFIG_RTL8XXXU_UNTESTED=y +CONFIG_RTLBTCOEXIST=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTLWIFI=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +CONFIG_RTL_CARDS=m +CONFIG_RTS5208=m +CONFIG_RTW88=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8723DE=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8821CE=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822BE=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8822CE=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_DEBUG=y +CONFIG_RTW88_DEBUGFS=y +CONFIG_RTW88_PCI=m +CONFIG_RTW89=m +CONFIG_RTW89_8852A=m +CONFIG_RTW89_8852AE=m +CONFIG_RTW89_8852C=m +CONFIG_RTW89_8852CE=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_DEBUG=y +CONFIG_RTW89_DEBUGFS=y +CONFIG_RTW89_DEBUGMSG=y +CONFIG_RTW89_PCI=m +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_RT_MUTEXES=y +CONFIG_RUNTIME_TESTING_MENU=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_RXKAD=y +CONFIG_RZG2L_ADC=m +CONFIG_RZG2L_THERMAL=m +CONFIG_RZN1_DMAMUX=m +CONFIG_RZ_DMAC=m +CONFIG_S390=y +CONFIG_S390_AP_IOMMU=y +CONFIG_S390_CCW_IOMMU=y +CONFIG_S390_GUEST=y +CONFIG_S390_HYPFS_FS=y +CONFIG_S390_IOMMU=y +CONFIG_S390_PRNG=m +CONFIG_S390_TAPE=m +CONFIG_S390_TAPE_34XX=m +CONFIG_S390_TAPE_3590=m +# CONFIG_S390_UV_UAPI is not set +CONFIG_S390_VMUR=m +# CONFIG_S3C2410_WATCHDOG is not set +CONFIG_S5P_DEV_MFC=y +CONFIG_SAMPLES=y +# CONFIG_SAMPLE_AUXDISPLAY is not set +# CONFIG_SAMPLE_CONFIGFS is not set +# CONFIG_SAMPLE_FPROBE is not set +# CONFIG_SAMPLE_FTRACE_DIRECT_MULTI is not set +# CONFIG_SAMPLE_HW_BREAKPOINT is not set +# CONFIG_SAMPLE_KDB is not set +# CONFIG_SAMPLE_KFIFO is not set +# CONFIG_SAMPLE_KOBJECT is not set +# CONFIG_SAMPLE_KPROBES is not set +# CONFIG_SAMPLE_LIVEPATCH is not set +# CONFIG_SAMPLE_QMI_CLIENT is not set +# CONFIG_SAMPLE_RPMSG_CLIENT is not set +CONFIG_SAMPLE_TRACE_ARRAY=m +# CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS is not set +# CONFIG_SAMPLE_TRACE_EVENTS is not set +CONFIG_SAMPLE_TRACE_PRINTK=m +# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set +# CONFIG_SAMPLE_VFIO_MDEV_MTTY is not set +# CONFIG_SAMPLE_WATCHDOG is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_MC=y +CONFIG_SAMSUNG_Q10=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_AHCI=m +CONFIG_SATA_AHCI_SEATTLE=m +CONFIG_SATA_DWC=m +CONFIG_SATA_DWC_OLD_DMA=y +CONFIG_SATA_HIGHBANK=y +CONFIG_SATA_HOST=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_MOBILE_LPM_POLICY=3 +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PMP=y +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_RCAR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SATA_ZPODD=y +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_SBITMAP=y +CONFIG_SBP_TARGET=m +CONFIG_SC1200_WDT=m +CONFIG_SC27XX_ADC=m +CONFIG_SC27XX_EFUSE=m +CONFIG_SC92031=m +CONFIG_SCA3000=m +CONFIG_SCA3300=m +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +CONFIG_SCD4X=m +# CONFIG_SCF_TORTURE_TEST is not set +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_BOOK=y +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_CORE=y +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_DRAWER=y +CONFIG_SCHED_HRTICK=y +CONFIG_SCHED_INFO=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_SCHED_TOPOLOGY=y +CONFIG_SCHED_TRACER=y +CONFIG_SCLP_CONSOLE=y +CONFIG_SCLP_OFB=y +CONFIG_SCLP_TTY=y +CONFIG_SCLP_VT220_CONSOLE=y +CONFIG_SCLP_VT220_TTY=y +CONFIG_SCM_BLOCK=m +CONFIG_SCM_BUS=y +CONFIG_SCOM_DEBUGFS=y +CONFIG_SCR24X=m +CONFIG_SCSI=y +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_COMMON=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_ALUA=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_HISI_SAS=m +# CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE is not set +CONFIG_SCSI_HISI_SAS_PCI=m +CONFIG_SCSI_IBMVFC=m +CONFIG_SCSI_IBMVFC_TRACE=y +CONFIG_SCSI_IBMVSCSI=m +CONFIG_SCSI_IBMVSCSIS=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_ISCSI_ATTRS=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_LOWLEVEL=y +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_MOD=y +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MYRS=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_NSP32=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SIM710=m +CONFIG_SCSI_SMARTPQI=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_UFSHCD_PCI=m +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_BSG=y +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_DWC_TC_PCI=m +CONFIG_SCSI_UFS_DWC_TC_PLATFORM=m +# CONFIG_SCSI_UFS_EXYNOS is not set +CONFIG_SCSI_UFS_HISI=m +CONFIG_SCSI_UFS_HPB=y +# CONFIG_SCSI_UFS_HWMON is not set +CONFIG_SCSI_UFS_MEDIATEK=m +CONFIG_SCSI_UFS_QCOM=m +CONFIG_SCSI_UFS_TI_J721E=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SC_CAMCC_7180=m +CONFIG_SC_CAMCC_7280=m +CONFIG_SC_DISPCC_7180=m +CONFIG_SC_DISPCC_7280=m +CONFIG_SC_GCC_7180=m +CONFIG_SC_GCC_7280=m +CONFIG_SC_GCC_8180X=m +CONFIG_SC_GCC_8280XP=m +CONFIG_SC_GPUCC_7180=m +CONFIG_SC_GPUCC_7280=m +CONFIG_SC_LPASSCC_7280=m +CONFIG_SC_LPASS_CORECC_7180=m +CONFIG_SC_LPASS_CORECC_7280=m +CONFIG_SC_MSS_7180=m +CONFIG_SC_VIDEOCC_7180=m +CONFIG_SC_VIDEOCC_7280=m +CONFIG_SDIO_UART=m +# CONFIG_SDMA_VERBOSITY is not set +CONFIG_SDM_CAMCC_845=m +CONFIG_SDM_DISPCC_845=m +CONFIG_SDM_GCC_660=m +CONFIG_SDM_GCC_845=m +CONFIG_SDM_GPUCC_660=m +CONFIG_SDM_GPUCC_845=m +CONFIG_SDM_LPASSCC_845=m +CONFIG_SDM_MMCC_660=m +CONFIG_SDM_VIDEOCC_845=m +CONFIG_SDR_MAX2175=m +CONFIG_SDR_PLATFORM_DRIVERS=y +CONFIG_SDX_GCC_55=m +CONFIG_SDX_GCC_65=m +CONFIG_SD_ADC_MODULATOR=m +CONFIG_SECCOMP=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_SECCOMP_FILTER=y +CONFIG_SECONDARY_TRUSTED_KEYRING=y +CONFIG_SECRETMEM=y +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_APPARMOR=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_APPARMOR_EXPORT_BINARY=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY=y +CONFIG_SECURITY_APPARMOR_PARANOID_LOAD=y +# CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS is not set +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY_INFINIBAND=y +CONFIG_SECURITY_LANDLOCK=y +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_LOCKDOWN_LSM=y +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y +CONFIG_SECURITY_NETWORK=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y +CONFIG_SECURITY_SAFESETID=y +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SMACK=y +CONFIG_SECURITY_SMACK_APPEND_SIGNALS=y +# CONFIG_SECURITY_SMACK_BRINGUP is not set +CONFIG_SECURITY_SMACK_NETFILTER=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_YAMA=y +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SENSEAIR_SUNRISE_CO2=m +CONFIG_SENSIRION_SGP30=m +CONFIG_SENSIRION_SGP40=m +CONFIG_SENSORS_AAEON=m +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM1266=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +CONFIG_SENSORS_ARM_SCMI=m +CONFIG_SENSORS_ARM_SCPI=m +CONFIG_SENSORS_AS370=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_ASPEED=m +CONFIG_SENSORS_ASUS_EC=m +CONFIG_SENSORS_ASUS_WMI=m +CONFIG_SENSORS_ATK0110=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_BEL_PFE=m +CONFIG_SENSORS_BPA_RS600=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DELTA_AHE50DC_FAN=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_DPS920AB=m +CONFIG_SENSORS_DRIVETEMP=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FSP_3Y=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_GSC=m +CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IBMPOWERNV=m +CONFIG_SENSORS_IBM_CFFPS=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA238=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_INSPUR_IPSPS=m +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m +CONFIG_SENSORS_IR35221=m +CONFIG_SENSORS_IR36021=m +CONFIG_SENSORS_IR38064=m +CONFIG_SENSORS_IR38064_REGULATOR=y +CONFIG_SENSORS_IRPS5401=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=m +CONFIG_SENSORS_ISL68137=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_LIS3_SPI=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LM25066_REGULATOR=y +CONFIG_SENSORS_LM3533=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_LOCHNAGAR=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC2992=m +CONFIG_SENSORS_LTC3815=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX15301=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX16601=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX20730=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX31785=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX6620=m +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_MLXREG_FAN=m +CONFIG_SENSORS_MP2888=m +CONFIG_SENSORS_MP2975=m +CONFIG_SENSORS_MP5023=m +CONFIG_SENSORS_MR75203=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT6775_CORE=m +CONFIG_SENSORS_NCT6775_I2C=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NPCM7XX=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NZXT_KRAKEN2=m +CONFIG_SENSORS_NZXT_SMART2=m +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_OCC_P9_SBE is not set +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_PECI=m +CONFIG_SENSORS_PECI_CPUTEMP=m +CONFIG_SENSORS_PECI_DIMMTEMP=m +CONFIG_SENSORS_PIM4328=m +CONFIG_SENSORS_PLI1209BC=m +CONFIG_SENSORS_PLI1209BC_REGULATOR=y +CONFIG_SENSORS_PM6764TR=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_PXE1610=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_RM3100=m +CONFIG_SENSORS_RM3100_I2C=m +CONFIG_SENSORS_RM3100_SPI=m +CONFIG_SENSORS_SBRMI=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHT4x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SL28CPLD=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SPARX5=m +CONFIG_SENSORS_STPDDC60=m +CONFIG_SENSORS_STTS751=m +CONFIG_SENSORS_SY7636A=m +CONFIG_SENSORS_TC654=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP108=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP464=m +CONFIG_SENSORS_TMP513=m +CONFIG_SENSORS_TPS23861=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TPS53679=m +CONFIG_SENSORS_TSL2563=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_VEXPRESS=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83773G=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SENSORS_XDPE122=m +CONFIG_SENSORS_XDPE122_REGULATOR=y +CONFIG_SENSORS_XDPE152=m +CONFIG_SENSORS_XGENE=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +CONFIG_SERIAL_8250_ASPEED_VUART=m +# CONFIG_SERIAL_8250_BCM2835AUX is not set +CONFIG_SERIAL_8250_BCM7271=m +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_CS=m +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_EM is not set +CONFIG_SERIAL_8250_EXAR=m +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_LPSS=m +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_MEN_MCB=m +CONFIG_SERIAL_8250_MID=y +CONFIG_SERIAL_8250_MT6577=y +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_OMAP=y +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_PERICOM=m +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_RT288X=y +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_TEGRA=y +# CONFIG_SERIAL_8250_UNIPHIER is not set +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_AMBA_PL010=m +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_BCM63XX=m +CONFIG_SERIAL_CONEXANT_DIGICOLOR=m +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y +CONFIG_SERIAL_ICOM=m +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +# CONFIG_SERIAL_IMX_EARLYCON is not set +CONFIG_SERIAL_IPOCTAL=m +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_LANTIQ=m +CONFIG_SERIAL_LITEUART=m +CONFIG_SERIAL_LITEUART_MAX_PORTS=1 +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_MEN_Z135=m +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_MILBEAUT_USIO=m +CONFIG_SERIAL_MILBEAUT_USIO_PORTS=4 +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_MULTI_INSTANTIATE=m +CONFIG_SERIAL_MVEBU_CONSOLE=y +CONFIG_SERIAL_MVEBU_UART=y +CONFIG_SERIAL_OF_PLATFORM=y +CONFIG_SERIAL_OWL=y +CONFIG_SERIAL_OWL_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=m +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y +CONFIG_SERIAL_QE=m +CONFIG_SERIAL_RDA=y +CONFIG_SERIAL_RDA_CONSOLE=y +CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_SAMSUNG=m +CONFIG_SERIAL_SAMSUNG_CONSOLE=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SC16IS7XX_CORE=m +CONFIG_SERIAL_SC16IS7XX_I2C=y +CONFIG_SERIAL_SC16IS7XX_SPI=y +CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SH_SCI=m +CONFIG_SERIAL_SH_SCI_DMA=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=2 +CONFIG_SERIAL_SIFIVE_CONSOLE=y +CONFIG_SERIAL_SPRD=m +CONFIG_SERIAL_ST_ASC=m +CONFIG_SERIAL_TEGRA=m +CONFIG_SERIAL_TEGRA_TCU=y +CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_XILINX_PS_UART=m +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_AMBAKMI=m +CONFIG_SERIO_APBPS2=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_GPIO_PS2=m +CONFIG_SERIO_I8042=y +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_NVEC_PS2=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_RAW=m +CONFIG_SERIO_SERPORT=m +# CONFIG_SERIO_SUN4I_PS2 is not set +CONFIG_SERIO_XILINX_XPS_PS2=m +CONFIG_SETEND_EMULATION=y +CONFIG_SEV_GUEST=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_MTD=y +CONFIG_SFC_SIENA_MCDI_LOGGING=y +CONFIG_SFC_SIENA_MCDI_MON=y +CONFIG_SFC_SIENA_MTD=y +CONFIG_SFC_SIENA_SRIOV=y +CONFIG_SFC_SRIOV=y +CONFIG_SFP=m +CONFIG_SF_PDMA=m +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SGI_GRU=m +# CONFIG_SGI_GRU_DEBUG is not set +CONFIG_SGI_XP=m +CONFIG_SGL_ALLOC=y +CONFIG_SG_POOL=y +CONFIG_SG_SPLIT=y +CONFIG_SHIFT_FS=m +CONFIG_SHIFT_FS_POSIX_ACL=y +CONFIG_SHMEM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SH_ETH=m +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_MTU2=y +CONFIG_SH_TIMER_TMU=y +CONFIG_SI1133=m +CONFIG_SI1145=m +CONFIG_SI7005=m +CONFIG_SI7020=m +CONFIG_SIEMENS_SIMATIC_IPC=m +CONFIG_SIEMENS_SIMATIC_IPC_WDT=m +CONFIG_SIFIVE_L2=y +CONFIG_SIFIVE_PLIC=y +CONFIG_SIGNALFD=y +CONFIG_SIGNATURE=y +CONFIG_SIGNED_PE_FILE_VERIFICATION=y +CONFIG_SIOX=m +CONFIG_SIOX_BUS_GPIO=m +CONFIG_SIS190=m +CONFIG_SIS900=m +CONFIG_SKB_EXTENSIONS=y +CONFIG_SKFP=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_SL28CPLD_WATCHDOG=m +# CONFIG_SLAB is not set +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLHC=y +CONFIG_SLICOSS=m +CONFIG_SLIC_DS26522=m +CONFIG_SLIMBUS=m +CONFIG_SLIM_QCOM_CTRL=m +CONFIG_SLIM_QCOM_NGD_CTRL=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_SLIP_SMART=y +# CONFIG_SLOB is not set +CONFIG_SLS=y +CONFIG_SLUB=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SLUB_DEBUG=y +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_SMBFS_COMMON=m +CONFIG_SMB_SERVER=m +CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y +CONFIG_SMB_SERVER_KERBEROS5=y +CONFIG_SMB_SERVER_SMBDIRECT=y +CONFIG_SMC=m +CONFIG_SMC911X=m +CONFIG_SMC91X=y +CONFIG_SMC_DIAG=m +CONFIG_SMP=y +CONFIG_SMP_ON_UP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +CONFIG_SMSC_PHY=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMSGIUCV=y +CONFIG_SMSGIUCV_EVENT=m +CONFIG_SMS_SDIO_DRV=m +CONFIG_SMS_SIANO_DEBUGFS=y +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_SMS_USB_DRV=m +CONFIG_SM_CAMCC_8250=m +CONFIG_SM_DISPCC_6125=m +CONFIG_SM_DISPCC_6350=m +CONFIG_SM_DISPCC_8250=m +CONFIG_SM_FTL=m +CONFIG_SM_GCC_6115=m +CONFIG_SM_GCC_6125=m +CONFIG_SM_GCC_6350=m +CONFIG_SM_GCC_8150=m +CONFIG_SM_GCC_8250=m +CONFIG_SM_GCC_8350=m +CONFIG_SM_GCC_8450=m +CONFIG_SM_GPUCC_6350=m +CONFIG_SM_GPUCC_8150=m +CONFIG_SM_GPUCC_8250=m +CONFIG_SM_VIDEOCC_8150=m +CONFIG_SM_VIDEOCC_8250=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_AD1889=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALOOP=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_AMD_ACP_CONFIG=m +CONFIG_SND_AMD_ASOC_RENOIR=m +CONFIG_SND_ARM=y +CONFIG_SND_ARMAACI=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_ATMEL_SOC=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AUDIO_GRAPH_CARD=m +CONFIG_SND_AUDIO_GRAPH_CARD2=m +CONFIG_SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BCD2000=m +CONFIG_SND_BCM2835=m +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +CONFIG_SND_BEBOB=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DESIGNWARE_I2S=m +CONFIG_SND_DESIGNWARE_PCM=y +CONFIG_SND_DICE=m +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_DUMMY=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_ECHO3G=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FIREFACE=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_FIREWIRE_MOTU=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_GINA20=m +CONFIG_SND_GINA24=m +CONFIG_SND_HDA=m +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_CS_DSP_CONTROLS=m +# CONFIG_SND_HDA_CTL_DEV_ID is not set +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_SCODEC_CS35L41=m +CONFIG_SND_HDA_SCODEC_CS35L41_I2C=m +CONFIG_SND_HDA_SCODEC_CS35L41_SPI=m +CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_HRTIMER=m +CONFIG_SND_HWDEP=m +CONFIG_SND_I2S_HI6210_I2S=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_INTEL_BYT_PREFER_SOF=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_KIRKWOOD_SOC=m +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_MESON_AIU=m +CONFIG_SND_MESON_AXG_FIFO=m +CONFIG_SND_MESON_AXG_FRDDR=m +CONFIG_SND_MESON_AXG_PDM=m +CONFIG_SND_MESON_AXG_SOUND_CARD=m +CONFIG_SND_MESON_AXG_SPDIFIN=m +CONFIG_SND_MESON_AXG_SPDIFOUT=m +CONFIG_SND_MESON_AXG_TDMIN=m +CONFIG_SND_MESON_AXG_TDMOUT=m +CONFIG_SND_MESON_AXG_TDM_FORMATTER=m +CONFIG_SND_MESON_AXG_TDM_INTERFACE=m +CONFIG_SND_MESON_AXG_TODDR=m +CONFIG_SND_MESON_CARD_UTILS=m +CONFIG_SND_MESON_CODEC_GLUE=m +CONFIG_SND_MESON_G12A_TOACODEC=m +CONFIG_SND_MESON_G12A_TOHDMITX=m +CONFIG_SND_MESON_GX_SOUND_CARD=m +CONFIG_SND_MIA=m +CONFIG_SND_MIXART=m +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_MONA=m +CONFIG_SND_MPU401=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_OXFW=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_PCI=y +CONFIG_SND_PCMCIA=y +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +# CONFIG_SND_PCM_OSS is not set +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_PCSP=m +CONFIG_SND_PCXHR=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_PPC=y +CONFIG_SND_PROC_FS=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SEQUENCER=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_SERIAL_GENERIC=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ACPI=m +CONFIG_SND_SOC_ACPI_INTEL_MATCH=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU1761=m +CONFIG_SND_SOC_ADAU1761_I2C=m +CONFIG_SND_SOC_ADAU1761_SPI=m +CONFIG_SND_SOC_ADAU17X1=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4118=m +CONFIG_SND_SOC_AK4375=m +CONFIG_SND_SOC_AK4458=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_AK5558=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_ALC5632=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_AMD_ACP3x=m +CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_ACP6x=m +CONFIG_SND_SOC_AMD_ACP_COMMON=m +CONFIG_SND_SOC_AMD_ACP_I2S=m +CONFIG_SND_SOC_AMD_ACP_PCI=m +CONFIG_SND_SOC_AMD_ACP_PCM=m +CONFIG_SND_SOC_AMD_ACP_PDM=m +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m +CONFIG_SND_SOC_AMD_LEGACY_MACH=m +CONFIG_SND_SOC_AMD_MACH_COMMON=m +CONFIG_SND_SOC_AMD_PS=m +CONFIG_SND_SOC_AMD_PS_MACH=m +CONFIG_SND_SOC_AMD_RENOIR=m +CONFIG_SND_SOC_AMD_RENOIR_MACH=m +CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_AMD_SOF_MACH=m +CONFIG_SND_SOC_AMD_VANGOGH_MACH=m +CONFIG_SND_SOC_AMD_YC_MACH=m +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_ARIZONA=m +CONFIG_SND_SOC_AW8738=m +CONFIG_SND_SOC_BD28623=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_CPCAP=m +CONFIG_SND_SOC_CROS_EC_CODEC=m +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=m +CONFIG_SND_SOC_CS35L34=m +CONFIG_SND_SOC_CS35L35=m +CONFIG_SND_SOC_CS35L36=m +CONFIG_SND_SOC_CS35L41=m +CONFIG_SND_SOC_CS35L41_I2C=m +CONFIG_SND_SOC_CS35L41_LIB=m +CONFIG_SND_SOC_CS35L41_SPI=m +CONFIG_SND_SOC_CS35L45=m +CONFIG_SND_SOC_CS35L45_I2C=m +CONFIG_SND_SOC_CS35L45_SPI=m +CONFIG_SND_SOC_CS35L45_TABLES=m +CONFIG_SND_SOC_CS4234=m +CONFIG_SND_SOC_CS4265=m +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS4271_I2C=m +CONFIG_SND_SOC_CS4271_SPI=m +CONFIG_SND_SOC_CS42L42=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CS42L51_I2C=m +CONFIG_SND_SOC_CS42L52=m +CONFIG_SND_SOC_CS42L56=m +CONFIG_SND_SOC_CS42L73=m +CONFIG_SND_SOC_CS42XX8=m +CONFIG_SND_SOC_CS42XX8_I2C=m +CONFIG_SND_SOC_CS43130=m +CONFIG_SND_SOC_CS4341=m +CONFIG_SND_SOC_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_CX2072X=m +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DAVINCI_MCASP=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES8316=m +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +CONFIG_SND_SOC_EUKREA_TLV320=m +CONFIG_SND_SOC_FSL_ASOC_CARD=m +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_AUD2HTX=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDA=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDMI_CODEC=m +CONFIG_SND_SOC_ICS43432=m +CONFIG_SND_SOC_IMG=y +CONFIG_SND_SOC_IMG_I2S_IN=m +CONFIG_SND_SOC_IMG_I2S_OUT=m +CONFIG_SND_SOC_IMG_PARALLEL_OUT=m +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC=m +CONFIG_SND_SOC_IMG_SPDIF_IN=m +CONFIG_SND_SOC_IMG_SPDIF_OUT=m +CONFIG_SND_SOC_IMX_AUDIO_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMIX=m +CONFIG_SND_SOC_IMX_CARD=m +CONFIG_SND_SOC_IMX_ES8328=m +CONFIG_SND_SOC_IMX_HDMI=m +CONFIG_SND_SOC_IMX_PCM_FIQ=y +CONFIG_SND_SOC_IMX_PCM_RPMSG=m +CONFIG_SND_SOC_IMX_RPMSG=m +CONFIG_SND_SOC_IMX_SPDIF=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_INTEL_APL=m +CONFIG_SND_SOC_INTEL_AVS=m +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m +# CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH is not set +CONFIG_SND_SOC_INTEL_CATPT=m +# CONFIG_SND_SOC_INTEL_CFL is not set +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +# CONFIG_SND_SOC_INTEL_CML_H is not set +# CONFIG_SND_SOC_INTEL_CML_LP is not set +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m +# CONFIG_SND_SOC_INTEL_CNL is not set +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC=m +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_GLK=m +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON=m +CONFIG_SND_SOC_INTEL_KBL=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KEEMBAY=m +CONFIG_SND_SOC_INTEL_MACH=y +CONFIG_SND_SOC_INTEL_SKL=m +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +# CONFIG_SND_SOC_INTEL_SKYLAKE is not set +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC=y +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m +CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH=m +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m +CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH=m +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y +CONFIG_SND_SOC_J721E_EVM=m +CONFIG_SND_SOC_LOCHNAGAR_SC=m +CONFIG_SND_SOC_LPASS_APQ8016=m +CONFIG_SND_SOC_LPASS_CDC_DMA=m +CONFIG_SND_SOC_LPASS_CPU=m +CONFIG_SND_SOC_LPASS_HDMI=m +CONFIG_SND_SOC_LPASS_IPQ806X=m +CONFIG_SND_SOC_LPASS_MACRO_COMMON=m +CONFIG_SND_SOC_LPASS_PLATFORM=m +CONFIG_SND_SOC_LPASS_RX_MACRO=m +CONFIG_SND_SOC_LPASS_SC7180=m +CONFIG_SND_SOC_LPASS_SC7280=m +CONFIG_SND_SOC_LPASS_TX_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_MAX9759=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +CONFIG_SND_SOC_MAX98373_SDW=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_MAX98396=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX98520=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MAX9867=m +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MEDIATEK=m +CONFIG_SND_SOC_MESON_T9015=m +CONFIG_SND_SOC_MIKROE_PROTO=m +CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m +CONFIG_SND_SOC_MSM8996=m +# CONFIG_SND_SOC_MT2701 is not set +CONFIG_SND_SOC_MT6351=m +CONFIG_SND_SOC_MT6358=m +CONFIG_SND_SOC_MT6359=m +CONFIG_SND_SOC_MT6359_ACCDET=m +CONFIG_SND_SOC_MT6660=m +CONFIG_SND_SOC_MT6797=m +CONFIG_SND_SOC_MT6797_MT6351=m +# CONFIG_SND_SOC_MT8173 is not set +CONFIG_SND_SOC_MT8183=m +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A=m +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A=m +CONFIG_SND_SOC_MT8192=m +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682=m +CONFIG_SND_SOC_MT8195=m +CONFIG_SND_SOC_MT8195_MT6359=m +CONFIG_SND_SOC_MTK_BTCVSD=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_NAU8540=m +CONFIG_SND_SOC_NAU8810=m +CONFIG_SND_SOC_NAU8821=m +CONFIG_SND_SOC_NAU8822=m +CONFIG_SND_SOC_NAU8824=m +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_NOKIA_RX51=m +CONFIG_SND_SOC_OMAP3_PANDORA=m +CONFIG_SND_SOC_OMAP3_TWL4030=m +CONFIG_SND_SOC_OMAP_ABE_TWL6040=m +CONFIG_SND_SOC_OMAP_DMIC=m +CONFIG_SND_SOC_OMAP_MCBSP=m +CONFIG_SND_SOC_OMAP_MCPDM=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM1789=m +CONFIG_SND_SOC_PCM1789_I2C=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM186X=m +CONFIG_SND_SOC_PCM186X_I2C=m +CONFIG_SND_SOC_PCM186X_SPI=m +CONFIG_SND_SOC_PCM3060=m +CONFIG_SND_SOC_PCM3060_I2C=m +CONFIG_SND_SOC_PCM3060_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=m +CONFIG_SND_SOC_PCM5102A=m +CONFIG_SND_SOC_PCM512x=m +CONFIG_SND_SOC_PCM512x_I2C=m +CONFIG_SND_SOC_PCM512x_SPI=m +CONFIG_SND_SOC_QCOM=m +CONFIG_SND_SOC_QCOM_COMMON=m +CONFIG_SND_SOC_QDSP6=m +CONFIG_SND_SOC_QDSP6_ADM=m +CONFIG_SND_SOC_QDSP6_AFE=m +CONFIG_SND_SOC_QDSP6_AFE_CLOCKS=m +CONFIG_SND_SOC_QDSP6_AFE_DAI=m +CONFIG_SND_SOC_QDSP6_APM=m +CONFIG_SND_SOC_QDSP6_APM_DAI=m +CONFIG_SND_SOC_QDSP6_APM_LPASS_DAI=m +CONFIG_SND_SOC_QDSP6_ASM=m +CONFIG_SND_SOC_QDSP6_ASM_DAI=m +CONFIG_SND_SOC_QDSP6_COMMON=m +CONFIG_SND_SOC_QDSP6_CORE=m +CONFIG_SND_SOC_QDSP6_PRM=m +CONFIG_SND_SOC_QDSP6_PRM_LPASS_CLOCKS=m +CONFIG_SND_SOC_QDSP6_ROUTING=m +CONFIG_SND_SOC_RCAR=m +CONFIG_SND_SOC_RK3288_HDMI_ANALOG=m +CONFIG_SND_SOC_RK3328=m +CONFIG_SND_SOC_RK3399_GRU_SOUND=m +CONFIG_SND_SOC_RK817=m +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_ROCKCHIP=m +CONFIG_SND_SOC_ROCKCHIP_I2S=m +CONFIG_SND_SOC_ROCKCHIP_I2S_TDM=m +CONFIG_SND_SOC_ROCKCHIP_MAX98090=m +CONFIG_SND_SOC_ROCKCHIP_PDM=m +CONFIG_SND_SOC_ROCKCHIP_RT5645=m +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_RT1011=m +CONFIG_SND_SOC_RT1015=m +CONFIG_SND_SOC_RT1015P=m +CONFIG_SND_SOC_RT1019=m +CONFIG_SND_SOC_RT1308=m +CONFIG_SND_SOC_RT1308_SDW=m +CONFIG_SND_SOC_RT1316_SDW=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +CONFIG_SND_SOC_RT5616=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5659=m +CONFIG_SND_SOC_RT5660=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682S=m +CONFIG_SND_SOC_RT5682_I2C=m +CONFIG_SND_SOC_RT5682_SDW=m +CONFIG_SND_SOC_RT700=m +CONFIG_SND_SOC_RT700_SDW=m +CONFIG_SND_SOC_RT711=m +CONFIG_SND_SOC_RT711_SDCA_SDW=m +CONFIG_SND_SOC_RT711_SDW=m +CONFIG_SND_SOC_RT715=m +CONFIG_SND_SOC_RT715_SDCA_SDW=m +CONFIG_SND_SOC_RT715_SDW=m +CONFIG_SND_SOC_RT9120=m +CONFIG_SND_SOC_RZ=m +# CONFIG_SND_SOC_SAMSUNG is not set +CONFIG_SND_SOC_SC7180=m +CONFIG_SND_SOC_SC7280=m +CONFIG_SND_SOC_SDM845=m +CONFIG_SND_SOC_SDW_MOCKUP=m +CONFIG_SND_SOC_SH4_FSI=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIGMADSP_REGMAP=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SM8250=m +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_ACPI=m +CONFIG_SND_SOC_SOF_ACPI_DEV=m +CONFIG_SND_SOC_SOF_ALDERLAKE=m +CONFIG_SND_SOC_SOF_AMD_COMMON=m +CONFIG_SND_SOC_SOF_AMD_RENOIR=m +CONFIG_SND_SOC_SOF_AMD_TOPLEVEL=m +CONFIG_SND_SOC_SOF_APOLLOLAKE=m +CONFIG_SND_SOC_SOF_BAYTRAIL=m +CONFIG_SND_SOC_SOF_BROADWELL=m +CONFIG_SND_SOC_SOF_CANNONLAKE=m +CONFIG_SND_SOC_SOF_CLIENT=m +CONFIG_SND_SOC_SOF_COFFEELAKE=m +CONFIG_SND_SOC_SOF_COMETLAKE=m +CONFIG_SND_SOC_SOF_COMPRESS=y +CONFIG_SND_SOC_SOF_DEBUG_PROBES=m +# CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set +CONFIG_SND_SOC_SOF_ELKHARTLAKE=m +CONFIG_SND_SOC_SOF_GEMINILAKE=m +CONFIG_SND_SOC_SOF_HDA=m +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y +CONFIG_SND_SOC_SOF_HDA_COMMON=m +CONFIG_SND_SOC_SOF_HDA_LINK=y +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_HDA_PROBES=m +CONFIG_SND_SOC_SOF_ICELAKE=m +CONFIG_SND_SOC_SOF_IMX8=m +CONFIG_SND_SOC_SOF_IMX8M=m +CONFIG_SND_SOC_SOF_IMX_COMMON=m +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y +CONFIG_SND_SOC_SOF_INTEL_APL=m +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP=m +CONFIG_SND_SOC_SOF_INTEL_CNL=m +CONFIG_SND_SOC_SOF_INTEL_COMMON=m +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC=m +CONFIG_SND_SOC_SOF_INTEL_ICL=m +CONFIG_SND_SOC_SOF_INTEL_MTL=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_INTEL_TGL=m +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y +CONFIG_SND_SOC_SOF_JASPERLAKE=m +CONFIG_SND_SOC_SOF_MERRIFIELD=m +CONFIG_SND_SOC_SOF_METEORLAKE=m +CONFIG_SND_SOC_SOF_MT8186=m +CONFIG_SND_SOC_SOF_MT8195=m +CONFIG_SND_SOC_SOF_MTK_COMMON=m +CONFIG_SND_SOC_SOF_MTK_TOPLEVEL=y +CONFIG_SND_SOC_SOF_OF=m +CONFIG_SND_SOC_SOF_OF_DEV=m +CONFIG_SND_SOC_SOF_PCI=m +CONFIG_SND_SOC_SOF_PCI_DEV=m +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE=y +CONFIG_SND_SOC_SOF_TIGERLAKE=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_XTENSA=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SPRD=m +CONFIG_SND_SOC_SPRD_MCDT=m +CONFIG_SND_SOC_SSM2305=m +CONFIG_SND_SOC_SSM2518=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_SSM2602_I2C=m +CONFIG_SND_SOC_SSM2602_SPI=m +CONFIG_SND_SOC_SSM4567=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_STA350=m +CONFIG_SND_SOC_STI_SAS=m +CONFIG_SND_SOC_STORM=m +CONFIG_SND_SOC_TAS2552=m +CONFIG_SND_SOC_TAS2562=m +CONFIG_SND_SOC_TAS2764=m +CONFIG_SND_SOC_TAS2770=m +CONFIG_SND_SOC_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TAS5805M=m +CONFIG_SND_SOC_TAS6424=m +CONFIG_SND_SOC_TDA7419=m +CONFIG_SND_SOC_TEGRA=m +CONFIG_SND_SOC_TEGRA186_ASRC=m +CONFIG_SND_SOC_TEGRA186_DSPK=m +CONFIG_SND_SOC_TEGRA20_AC97=m +CONFIG_SND_SOC_TEGRA20_DAS=m +CONFIG_SND_SOC_TEGRA20_I2S=m +CONFIG_SND_SOC_TEGRA20_SPDIF=m +CONFIG_SND_SOC_TEGRA210_ADMAIF=m +CONFIG_SND_SOC_TEGRA210_ADX=m +CONFIG_SND_SOC_TEGRA210_AHUB=m +CONFIG_SND_SOC_TEGRA210_AMX=m +CONFIG_SND_SOC_TEGRA210_DMIC=m +CONFIG_SND_SOC_TEGRA210_I2S=m +CONFIG_SND_SOC_TEGRA210_MIXER=m +CONFIG_SND_SOC_TEGRA210_MVC=m +CONFIG_SND_SOC_TEGRA210_SFC=m +CONFIG_SND_SOC_TEGRA30_AHUB=m +CONFIG_SND_SOC_TEGRA30_I2S=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD=m +CONFIG_SND_SOC_TEGRA_MACHINE_DRV=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_RT5677=m +CONFIG_SND_SOC_TEGRA_SGTL5000=m +CONFIG_SND_SOC_TEGRA_TRIMSLICE=m +CONFIG_SND_SOC_TEGRA_WM8753=m +CONFIG_SND_SOC_TEGRA_WM8903=m +CONFIG_SND_SOC_TEGRA_WM9712=m +CONFIG_SND_SOC_TFA9879=m +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TI_EDMA_PCM=m +CONFIG_SND_SOC_TI_SDMA_PCM=m +CONFIG_SND_SOC_TI_UDMA_PCM=m +CONFIG_SND_SOC_TLV320ADC3XXX=m +CONFIG_SND_SOC_TLV320ADCX140=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC32X4_SPI=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TSCS42XX=m +CONFIG_SND_SOC_TSCS454=m +CONFIG_SND_SOC_TWL4030=m +CONFIG_SND_SOC_TWL6040=m +CONFIG_SND_SOC_UDA1334=m +# CONFIG_SND_SOC_UNIPHIER is not set +CONFIG_SND_SOC_WCD9335=m +CONFIG_SND_SOC_WCD934X=m +CONFIG_SND_SOC_WCD938X=m +CONFIG_SND_SOC_WCD938X_SDW=m +CONFIG_SND_SOC_WCD_MBHC=m +CONFIG_SND_SOC_WM5102=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8524=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8731_I2C=m +CONFIG_SND_SOC_WM8731_SPI=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8940=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_WM8994=m +CONFIG_SND_SOC_WM9712=m +CONFIG_SND_SOC_WM_ADSP=m +CONFIG_SND_SOC_WM_HUBS=m +CONFIG_SND_SOC_WSA881X=m +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER=m +CONFIG_SND_SOC_XILINX_I2S=m +CONFIG_SND_SOC_XILINX_SPDIF=m +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_ZL38060=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SPI=y +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m +# CONFIG_SND_SUN4I_CODEC is not set +# CONFIG_SND_SUN4I_I2S is not set +# CONFIG_SND_SUN4I_SPDIF is not set +CONFIG_SND_SUN50I_CODEC_ANALOG=m +CONFIG_SND_SUN8I_ADDA_PR_REGMAP=m +CONFIG_SND_SUN8I_CODEC=m +CONFIG_SND_SUN8I_CODEC_ANALOG=m +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_SYNTH_EMUX=m +CONFIG_SND_TEST_COMPONENT=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_VARIAX=m +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_VERBOSE_PROCFS=y +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_VIRTIO=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VMASTER=y +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_X86=y +CONFIG_SND_XEN_FRONTEND=m +CONFIG_SND_YMFPCI=m +# CONFIG_SNI_AVE is not set +CONFIG_SNI_NETSEC=m +CONFIG_SOCFPGA_FPGA_BRIDGE=m +CONFIG_SOCFPGA_SUSPEND=y +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_SOCK_VALIDATE_XMIT=y +# CONFIG_SOC_AM43XX is not set +CONFIG_SOC_BUS=y +CONFIG_SOC_DRA7XX=y +CONFIG_SOC_HAS_OMAP2_SDRC=y +CONFIG_SOC_HAS_REALTIME_COUNTER=y +CONFIG_SOC_IMX5=y +CONFIG_SOC_IMX50=y +CONFIG_SOC_IMX51=y +# CONFIG_SOC_IMX53 is not set +CONFIG_SOC_IMX6=y +CONFIG_SOC_IMX6Q=y +CONFIG_SOC_IMX6SL=y +CONFIG_SOC_IMX6SLL=y +CONFIG_SOC_IMX6SX=y +CONFIG_SOC_IMX6UL=y +CONFIG_SOC_IMX7D=y +CONFIG_SOC_IMX7D_CA7=y +CONFIG_SOC_IMX7ULP=y +# CONFIG_SOC_LS1021A is not set +CONFIG_SOC_MICROCHIP_POLARFIRE=y +CONFIG_SOC_OMAP3430=y +# CONFIG_SOC_OMAP5 is not set +CONFIG_SOC_RENESAS=y +CONFIG_SOC_SAMSUNG=y +CONFIG_SOC_SIFIVE=y +CONFIG_SOC_STARFIVE=y +CONFIG_SOC_TEGRA20_VOLTAGE_COUPLER=y +CONFIG_SOC_TEGRA30_VOLTAGE_COUPLER=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y +CONFIG_SOC_TI81XX=y +CONFIG_SOC_VF610=y +CONFIG_SOC_VIRT=y +CONFIG_SOFTLOCKUP_DETECTOR=y +CONFIG_SOFT_WATCHDOG=m +CONFIG_SOFT_WATCHDOG_PRETIMEOUT=y +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_FF=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUNDWIRE=m +CONFIG_SOUNDWIRE_CADENCE=m +CONFIG_SOUNDWIRE_GENERIC_ALLOCATION=m +CONFIG_SOUNDWIRE_INTEL=m +CONFIG_SOUNDWIRE_QCOM=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SP5100_TCO=m +CONFIG_SPAPR_TCE_IOMMU=y +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSEMEM_STATIC=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPARX5_SWITCH=m +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPECULATION_MITIGATIONS=y +CONFIG_SPI_ALTERA=m +CONFIG_SPI_ALTERA_CORE=m +CONFIG_SPI_ALTERA_DFL=m +CONFIG_SPI_AMD=m +CONFIG_SPI_ARMADA_3700=m +CONFIG_SPI_ASPEED_SMC=m +CONFIG_SPI_AX88796C=m +# CONFIG_SPI_AX88796C_COMPRESSION is not set +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM_QSPI=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +CONFIG_SPI_CADENCE=m +CONFIG_SPI_CADENCE_QUADSPI=m +CONFIG_SPI_CADENCE_XSPI=m +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_DESIGNWARE=m +CONFIG_SPI_DLN2=m +CONFIG_SPI_DW_DMA=y +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DYNAMIC=y +CONFIG_SPI_FSI=m +CONFIG_SPI_FSL_DSPI=m +CONFIG_SPI_FSL_LIB=y +CONFIG_SPI_FSL_LPSPI=m +CONFIG_SPI_FSL_QUADSPI=m +CONFIG_SPI_FSL_SPI=y +CONFIG_SPI_GPIO=m +CONFIG_SPI_HISI_KUNPENG=m +CONFIG_SPI_HISI_SFC=m +CONFIG_SPI_HISI_SFC_V3XX=m +CONFIG_SPI_IMX=m +CONFIG_SPI_INTEL=m +CONFIG_SPI_INTEL_PCI=m +CONFIG_SPI_INTEL_PLATFORM=m +CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LOOPBACK_TEST=m +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y +CONFIG_SPI_MESON_SPICC=m +CONFIG_SPI_MESON_SPIFC=m +CONFIG_SPI_MT65XX=m +CONFIG_SPI_MTK_NOR=m +CONFIG_SPI_MTK_SNFI=m +CONFIG_SPI_MUX=m +CONFIG_SPI_MXIC=m +CONFIG_SPI_NPCM_FIU=m +CONFIG_SPI_NPCM_PSPI=m +CONFIG_SPI_NXP_FLEXSPI=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_OMAP24XX=y +CONFIG_SPI_ORION=m +CONFIG_SPI_PL022=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_QCOM_GENI=m +CONFIG_SPI_QCOM_QSPI=m +CONFIG_SPI_QUP=m +CONFIG_SPI_ROCKCHIP_SFC=m +CONFIG_SPI_RPCIF=m +CONFIG_SPI_RSPI=m +# CONFIG_SPI_S3C64XX is not set +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SH_HSPI=m +CONFIG_SPI_SH_MSIOF=m +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_MT27XX=m +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=m +CONFIG_SPI_SLAVE_TIME=m +CONFIG_SPI_SPIDEV=m +CONFIG_SPI_SPRD=m +CONFIG_SPI_SPRD_ADI=m +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=m +CONFIG_SPI_SYNQUACER=m +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +CONFIG_SPI_TEGRA20_SLINK=m +CONFIG_SPI_TEGRA210_QUAD=m +CONFIG_SPI_THUNDERX=m +CONFIG_SPI_TI_QSPI=m +CONFIG_SPI_TLE62X0=m +# CONFIG_SPI_UNIPHIER is not set +CONFIG_SPI_XCOMM=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_XLP=m +CONFIG_SPI_ZYNQMP_GQSPI=m +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_SPMI_HISI3670=m +CONFIG_SPMI_MSM_PMIC_ARB=m +CONFIG_SPMI_MTK_PMIF=m +CONFIG_SPMI_PMIC_CLKDIV=m +CONFIG_SPRD_COMMON_CLK=m +CONFIG_SPRD_DMA=m +CONFIG_SPRD_EFUSE=m +CONFIG_SPRD_IOMMU=m +CONFIG_SPRD_MBOX=m +CONFIG_SPRD_SC9860_CLK=m +CONFIG_SPRD_SC9863A_CLK=m +CONFIG_SPRD_THERMAL=m +CONFIG_SPRD_TIMER=y +CONFIG_SPRD_WATCHDOG=m +CONFIG_SPS30=m +CONFIG_SPS30_I2C=m +CONFIG_SPS30_SERIAL=m +CONFIG_SQUASHFS=y +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y +# CONFIG_SQUASHFS_DECOMP_SINGLE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_ZSTD=y +CONFIG_SRAM_EXEC=y +CONFIG_SRCU=y +CONFIG_SRF04=m +CONFIG_SRF08=m +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_DRIVER_GPIO=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SPROM=y +CONFIG_SSFDC=m +CONFIG_SSI_PROTOCOL=m +CONFIG_STACKDEPOT=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_PER_TASK=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_STACKTRACE=y +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STACK_HASH_ORDER=20 +CONFIG_STACK_TRACER=y +CONFIG_STACK_VALIDATION=y +# CONFIG_STAGING_BOARD is not set +CONFIG_STAGING_MEDIA=y +# CONFIG_STATIC_CALL_SELFTEST is not set +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_STE10XP=m +CONFIG_STK3310=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +CONFIG_STM=m +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_PCI=m +CONFIG_STMMAC_PLATFORM=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMPE_ADC=m +CONFIG_STMPE_I2C=y +CONFIG_STMPE_SPI=y +CONFIG_STMP_DEVICE=y +CONFIG_STM_DUMMY=m +CONFIG_STM_PROTO_BASIC=m +CONFIG_STM_PROTO_SYS_T=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_FTRACE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STP=m +CONFIG_STPMIC1_WATCHDOG=m +CONFIG_STREAM_PARSER=y +CONFIG_STRICT_DEVMEM=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_STRICT_MODULE_RWX=y +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set +# CONFIG_STRING_SELFTEST is not set +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_STUB_CLK_HI3660=y +CONFIG_STUB_CLK_HI6220=y +CONFIG_STX104=m +CONFIG_ST_UVIS25=m +CONFIG_ST_UVIS25_I2C=m +CONFIG_ST_UVIS25_SPI=m +# CONFIG_SUN4I_EMAC is not set +# CONFIG_SUN4I_GPADC is not set +CONFIG_SUN4I_TIMER=y +CONFIG_SUN50I_A100_CCU=y +CONFIG_SUN50I_A100_R_CCU=y +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_SUN50I_H616_CCU=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +CONFIG_SUN50I_IOMMU=y +CONFIG_SUN6I_MSGBOX=y +CONFIG_SUN6I_RTC_CCU=m +CONFIG_SUN6I_R_INTC=y +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_SUN8I_THERMAL=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_SUNGEM=m +CONFIG_SUNGEM_PHY=m +CONFIG_SUNRPC=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_SWAP=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUNXI_CCU=y +CONFIG_SUNXI_MBUS=y +CONFIG_SUNXI_NMI_INTC=y +CONFIG_SUNXI_RSB=m +CONFIG_SUNXI_SRAM=y +CONFIG_SUNXI_WATCHDOG=m +CONFIG_SURFACE3_WMI=m +CONFIG_SURFACE_ACPI_NOTIFY=m +CONFIG_SURFACE_AGGREGATOR=m +CONFIG_SURFACE_AGGREGATOR_BUS=y +CONFIG_SURFACE_AGGREGATOR_CDEV=m +# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set +CONFIG_SURFACE_AGGREGATOR_REGISTRY=m +CONFIG_SURFACE_DTX=m +CONFIG_SURFACE_GPE=m +CONFIG_SURFACE_HID=m +CONFIG_SURFACE_HID_CORE=m +CONFIG_SURFACE_HOTPLUG=m +CONFIG_SURFACE_KBD=m +CONFIG_SURFACE_PLATFORMS=y +CONFIG_SURFACE_PLATFORM_PROFILE=m +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_SVC_I3C_MASTER=m +CONFIG_SWAP=y +CONFIG_SWIOTLB=y +CONFIG_SWIOTLB_XEN=y +CONFIG_SWPHY=y +CONFIG_SWP_EMULATE=y +CONFIG_SWP_EMULATION=y +CONFIG_SW_SYNC=y +CONFIG_SX9310=m +CONFIG_SX9324=m +CONFIG_SX9360=m +CONFIG_SX9500=m +CONFIG_SXGBE_ETH=m +CONFIG_SX_COMMON=m +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYNC_FILE=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +CONFIG_SYN_COOKIES=y +CONFIG_SYSCON_REBOOT_MODE=m +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_SYSC_R8A7742=y +CONFIG_SYSC_R8A7743=y +CONFIG_SYSC_R8A7745=y +CONFIG_SYSC_R8A77470=y +CONFIG_SYSC_R8A774A1=y +CONFIG_SYSC_R8A774B1=y +CONFIG_SYSC_R8A774C0=y +CONFIG_SYSC_R8A774E1=y +CONFIG_SYSC_R8A7779=y +CONFIG_SYSC_R8A7790=y +CONFIG_SYSC_R8A7791=y +CONFIG_SYSC_R8A7792=y +CONFIG_SYSC_R8A7794=y +CONFIG_SYSC_R8A7795=y +CONFIG_SYSC_R8A77960=y +CONFIG_SYSC_R8A77961=y +CONFIG_SYSC_R8A77965=y +CONFIG_SYSC_R8A77970=y +CONFIG_SYSC_R8A77980=y +CONFIG_SYSC_R8A77990=y +CONFIG_SYSC_R8A77995=y +CONFIG_SYSC_R8A779A0=y +CONFIG_SYSC_R8A779F0=y +CONFIG_SYSC_R8A779G0=y +CONFIG_SYSC_RCAR=y +CONFIG_SYSC_RCAR_GEN4=y +CONFIG_SYSC_RMOBILE=y +CONFIG_SYSFB=y +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSTEM76_ACPI=m +CONFIG_SYSTEMPORT=m +# CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE is not set +CONFIG_SYSTEM_BLACKLIST_HASH_LIST="" +CONFIG_SYSTEM_BLACKLIST_KEYRING=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem" +CONFIG_SYSTEM_REVOCATION_LIST=y +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_SYS_SUPPORTS_APM_EMULATION=y +CONFIG_SYS_SUPPORTS_EM_STI=y +CONFIG_SYS_SUPPORTS_SH_CMT=y +CONFIG_SYS_SUPPORTS_SH_MTU2=y +CONFIG_SYS_SUPPORTS_SH_TMU=y +CONFIG_T5403=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TAHVO_USB=m +CONFIG_TAHVO_USB_HOST_BY_DEFAULT=y +CONFIG_TAP=m +CONFIG_TARGET_CORE=m +CONFIG_TASKSTATS=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_TASK_XACCT=y +CONFIG_TCG_ATMEL=m +CONFIG_TCG_CRB=y +CONFIG_TCG_FTPM_TEE=m +CONFIG_TCG_IBMVTPM=y +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS_SPI=m +CONFIG_TCG_TIS_SPI_CR50=y +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TCG_TIS_SYNQUACER=m +CONFIG_TCG_TPM=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_XEN=m +CONFIG_TCM_FC=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_TCM_USER2=m +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BBR=m +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_MD5SIG=y +CONFIG_TCS3414=m +CONFIG_TCS3472=m +CONFIG_TDX_GUEST_DRIVER=m +CONFIG_TEE=m +CONFIG_TEE_BNXT_FW=m +CONFIG_TEGRA124_CLK_EMC=y +CONFIG_TEGRA124_EMC=y +CONFIG_TEGRA186_GPC_DMA=m +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA20_EMC=y +CONFIG_TEGRA210_ADMA=m +CONFIG_TEGRA210_EMC=m +CONFIG_TEGRA210_EMC_TABLE=y +CONFIG_TEGRA30_EMC=y +CONFIG_TEGRA30_TSENSOR=m +CONFIG_TEGRA_ACONNECT=m +CONFIG_TEGRA_AHB=y +CONFIG_TEGRA_BPMP=y +CONFIG_TEGRA_BPMP_THERMAL=m +CONFIG_TEGRA_CLK_DFLL=y +CONFIG_TEGRA_GMI=m +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_CONTEXT_BUS=y +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_TEGRA_HSP_MBOX=y +CONFIG_TEGRA_IOMMU_GART=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_MC=y +# CONFIG_TEGRA_SOCTHERM is not set +CONFIG_TEGRA_TIMER=y +CONFIG_TEGRA_WATCHDOG=m +CONFIG_TEHUTI=m +CONFIG_TELCLOCK=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITOPS is not set +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_TEST_BPF=m +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +# CONFIG_TEST_DIV64 is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_HMM is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_LIVEPATCH is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_LOCKUP is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_OBJAGG is not set +# CONFIG_TEST_PARMAN is not set +CONFIG_TEST_POWER=m +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_REF_TRACKER is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_SCANF is not set +# CONFIG_TEST_SIPHASH is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UBSAN is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_VMALLOC is not set +# CONFIG_TEST_XARRAY is not set +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_TEXTSEARCH_KMP=m +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_EMULATION=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_MMIO=m +CONFIG_THERMAL_NETLINK=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_STATISTICS=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_LMI=m +CONFIG_THP_SWAP=y +CONFIG_THREAD_INFO_IN_TASK=y +CONFIG_THREAD_SHIFT=14 +CONFIG_THRUSTMASTER_FF=y +# CONFIG_THUMB2_KERNEL is not set +CONFIG_THUNDERX2_PMU=m +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_RGX=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_TICK_CPU_ACCOUNTING=y +CONFIG_TICK_ONESHOT=y +CONFIG_TIFM_7XX1=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_TIMERFD=y +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_IMX_SYS_CTR=y +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y +CONFIG_TIME_NS=y +CONFIG_TINYDRM_HX8357D=m +CONFIG_TINYDRM_ILI9163=m +CONFIG_TINYDRM_ILI9225=m +CONFIG_TINYDRM_ILI9341=m +CONFIG_TINYDRM_ILI9486=m +CONFIG_TINYDRM_MI0283QT=m +CONFIG_TINYDRM_REPAPER=m +CONFIG_TINYDRM_ST7586=m +CONFIG_TINYDRM_ST7735R=m +CONFIG_TIPC=m +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC084S021=m +CONFIG_TI_ADC108S102=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS124S08=m +CONFIG_TI_ADS131E08=m +CONFIG_TI_ADS7950=m +CONFIG_TI_ADS8344=m +CONFIG_TI_ADS8688=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_AM65_CPSW_TAS=y +CONFIG_TI_CPPI41=m +CONFIG_TI_CPSW=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TI_CPSW_SWITCHDEV=m +CONFIG_TI_CPTS=y +CONFIG_TI_DAC082S085=m +CONFIG_TI_DAC5571=m +CONFIG_TI_DAC7311=m +CONFIG_TI_DAC7612=m +CONFIG_TI_DAVINCI_EMAC=m +CONFIG_TI_DAVINCI_MDIO=y +CONFIG_TI_DMA_CROSSBAR=y +CONFIG_TI_EDMA=y +CONFIG_TI_EMIF=m +CONFIG_TI_EMIF_SRAM=m +CONFIG_TI_EQEP=m +CONFIG_TI_K3_AM65_CPSW_NUSS=m +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV=y +CONFIG_TI_K3_AM65_CPTS=m +CONFIG_TI_K3_DSP_REMOTEPROC=m +CONFIG_TI_K3_PSIL=y +CONFIG_TI_K3_R5_REMOTEPROC=m +CONFIG_TI_K3_RINGACC=y +CONFIG_TI_K3_SOCINFO=y +CONFIG_TI_K3_UDMA=y +CONFIG_TI_K3_UDMA_GLUE_LAYER=y +CONFIG_TI_MESSAGE_MANAGER=y +CONFIG_TI_PIPE3=m +CONFIG_TI_PRUSS=m +CONFIG_TI_PRUSS_INTC=m +CONFIG_TI_PWMSS=y +CONFIG_TI_SCI_CLK=m +# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set +CONFIG_TI_SCI_INTA_IRQCHIP=y +CONFIG_TI_SCI_INTA_MSI_DOMAIN=y +CONFIG_TI_SCI_INTR_IRQCHIP=y +CONFIG_TI_SCI_PM_DOMAINS=m +CONFIG_TI_SCI_PROTOCOL=y +# CONFIG_TI_SOC_THERMAL is not set +CONFIG_TI_ST=m +CONFIG_TI_SYSC=y +CONFIG_TI_SYSCON_CLK=y +CONFIG_TI_TLC4541=m +CONFIG_TI_TSC2046=m +CONFIG_TLAN=m +CONFIG_TLS=m +CONFIG_TLS_DEVICE=y +# CONFIG_TLS_TOE is not set +CONFIG_TMD_HERMES=m +CONFIG_TMP006=m +CONFIG_TMP007=m +CONFIG_TMP117=m +CONFIG_TMPFS=y +CONFIG_TMPFS_INODE64=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_TN3215=y +CONFIG_TN3215_CONSOLE=y +CONFIG_TN3270=y +CONFIG_TN3270_CONSOLE=y +CONFIG_TN3270_FS=m +CONFIG_TN3270_TTY=y +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +# CONFIG_TOSHIBA_WMI is not set +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADC=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AR1021_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37=y +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_BU21029=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505=m +CONFIG_TOUCHSCREEN_COLIBRI_VF50=m +CONFIG_TOUCHSCREEN_CY8CTMA140=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_CYTTSP4_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP4_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP4_SPI=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP_SPI=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DMI=y +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_EKTF2127=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_IMAGIS=m +CONFIG_TOUCHSCREEN_IMX6UL_TSC=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_IPROC=m +CONFIG_TOUCHSCREEN_IQS5XX=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MELFAS_MIP4=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MSG2638=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW=m +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMFTS=m +CONFIG_TOUCHSCREEN_STMPE=m +# CONFIG_TOUCHSCREEN_SUN4I is not set +CONFIG_TOUCHSCREEN_SUR40=m +CONFIG_TOUCHSCREEN_SURFACE3_SPI=m +CONFIG_TOUCHSCREEN_SX8654=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_TS4800=m +CONFIG_TOUCHSCREEN_TSC2004=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_TSC2007_IIO=y +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WDT87XX_I2C=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_ZET6223=m +CONFIG_TOUCHSCREEN_ZFORCE=m +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_TPL0102=m +CONFIG_TPS68470_PMIC_OPREGION=y +CONFIG_TQMX86_WDT=m +CONFIG_TRACEPOINTS=y +# CONFIG_TRACEPOINT_BENCHMARK is not set +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_TRACE_CLOCK=y +# CONFIG_TRACE_EVAL_MAP_FILE is not set +CONFIG_TRACE_EVENT_INJECT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACING=y +CONFIG_TRACING_MAP=y +CONFIG_TRACING_SUPPORT=y +CONFIG_TRANSPARENT_HUGEPAGE=y +CONFIG_TRANS_TABLE=y +CONFIG_TREE_RCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_TRUSTED_FOUNDATIONS=y +CONFIG_TRUSTED_KEYS=y +CONFIG_TRUSTED_KEYS_TPM=y +CONFIG_TS4800_IRQ=m +CONFIG_TS4800_WATCHDOG=m +CONFIG_TSL2583=m +CONFIG_TSL2591=m +CONFIG_TSL2772=m +CONFIG_TSL4531=m +CONFIG_TSNEP=m +# CONFIG_TSNEP_SELFTESTS is not set +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_TTPCI_EEPROM=m +CONFIG_TTY=y +CONFIG_TTY_PRINTK_LEVEL=6 +CONFIG_TULIP=m +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_TUN=y +# CONFIG_TUNE_DEFAULT is not set +CONFIG_TUNE_GENERIC=y +# CONFIG_TUNE_Z10 is not set +# CONFIG_TUNE_Z13 is not set +# CONFIG_TUNE_Z14 is not set +CONFIG_TUNE_Z15=y +# CONFIG_TUNE_Z16 is not set +# CONFIG_TUNE_Z196 is not set +# CONFIG_TUNE_ZEC12 is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_TURRIS_MOX_RWTM=m +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_MADC=m +CONFIG_TWL4030_POWER=y +CONFIG_TWL4030_USB=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_TWL6030_GPADC=m +CONFIG_TWL6030_USB=m +CONFIG_TWL6040_CORE=y +CONFIG_TYPEC=m +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_MUX_FSA4480=m +CONFIG_TYPEC_MUX_INTEL_PMC=m +CONFIG_TYPEC_MUX_PI3USB30532=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +CONFIG_TYPEC_QCOM_PMIC=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_RT1719=m +CONFIG_TYPEC_STUSB160X=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_UCSI=m +CONFIG_TYPEC_WCOVE=m +CONFIG_TYPEC_WUSB3801=m +CONFIG_TYPHOON=m +# CONFIG_UACCESS_WITH_MEMCPY is not set +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_AUTHENTICATION=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +# CONFIG_UBSAN_ALIGNMENT is not set +CONFIG_UBSAN_BOOL=y +CONFIG_UBSAN_BOUNDS=y +# CONFIG_UBSAN_DIV_ZERO is not set +CONFIG_UBSAN_ENUM=y +CONFIG_UBSAN_ONLY_BOUNDS=y +CONFIG_UBSAN_SANITIZE_ALL=y +CONFIG_UBSAN_SHIFT=y +# CONFIG_UBSAN_TRAP is not set +# CONFIG_UBSAN_UNREACHABLE is not set +CONFIG_UBUNTU_HOST=m +CONFIG_UBUNTU_ODM_DRIVERS=y +CONFIG_UCB1400_CORE=m +CONFIG_UCC=y +CONFIG_UCC_FAST=y +CONFIG_UCC_SLOW=y +CONFIG_UCLAMP_BUCKETS_COUNT=5 +CONFIG_UCLAMP_TASK=y +CONFIG_UCLAMP_TASK_GROUP=y +CONFIG_UCS2_STRING=y +CONFIG_UCSI_ACPI=m +CONFIG_UCSI_CCG=m +# CONFIG_UDBG_RTAS_CONSOLE is not set +CONFIG_UDF_FS=m +CONFIG_UDMABUF=y +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_UEFI_CPER_X86=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UHID=m +CONFIG_UID16=y +CONFIG_UIO=m +CONFIG_UIO_DFL=m +CONFIG_UIO_FSL_ELBC_GPCM=m +# CONFIG_UIO_FSL_ELBC_GPCM_NETX5152 is not set +CONFIG_UIO_HV_GENERIC=m +CONFIG_ULI526X=m +CONFIG_UNCOMPRESS_INCLUDE="debug/uncompress.h" +CONFIG_UNICODE=y +# CONFIG_UNICODE_NORMALIZATION_SELFTEST is not set +CONFIG_UNINLINE_SPIN_UNLOCK=y +# CONFIG_UNIPHIER_EFUSE is not set +# CONFIG_UNIPHIER_MDMAC is not set +# CONFIG_UNIPHIER_SYSTEM_BUS is not set +# CONFIG_UNIPHIER_THERMAL is not set +# CONFIG_UNIPHIER_WATCHDOG is not set +# CONFIG_UNIPHIER_XDMAC is not set +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +CONFIG_UNIX_DIAG=m +CONFIG_UNIX_SCM=y +CONFIG_UNMAP_KERNEL_AT_EL0=y +# CONFIG_UNWINDER_ARM is not set +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_ORC is not set +CONFIG_UPROBES=y +CONFIG_UPROBE_EVENTS=y +CONFIG_US5182D=m +CONFIG_USB=y +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set +CONFIG_USB4_NET=m +CONFIG_USBIP_CORE=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_VUDC=m +CONFIG_USBPCWATCHDOG=m +CONFIG_USB_ACM=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_AIRSPY=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AN2720=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_ASPEED_VHUB=m +CONFIG_USB_ATM=m +CONFIG_USB_AUDIO=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_BDC_UDC=m +CONFIG_USB_BELKIN=y +CONFIG_USB_BRCMSTB=m +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CATC=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_CDNS3=m +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_CDNS3_IMX=m +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNS3_TI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_IMX=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_TEGRA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_COMMON=y +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +CONFIG_USB_CONFIGFS_F_TCM=y +CONFIG_USB_CONFIGFS_F_UAC1=y +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY=y +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_CXACRU=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_DEFAULT_PERSIST=y +CONFIG_USB_DSBR=m +# CONFIG_USB_DUMMY_HCD is not set +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_DEBUG is not set +# CONFIG_USB_DWC2_DUAL_ROLE is not set +CONFIG_USB_DWC2_HOST=y +CONFIG_USB_DWC2_PCI=m +# CONFIG_USB_DWC2_PERIPHERAL is not set +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_DWC3=m +CONFIG_USB_DWC3_AM62=m +CONFIG_USB_DWC3_DUAL_ROLE=y +# CONFIG_USB_DWC3_EXYNOS is not set +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_HAPS=m +# CONFIG_USB_DWC3_HOST is not set +CONFIG_USB_DWC3_IMX8MP=m +CONFIG_USB_DWC3_KEYSTONE=m +CONFIG_USB_DWC3_MESON_G12A=m +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC3_OMAP=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_QCOM=m +CONFIG_USB_DWC3_ULPI=y +CONFIG_USB_DWC3_XILINX=m +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_EG20T=m +CONFIG_USB_EHCI_BRCMSTB=m +# CONFIG_USB_EHCI_EXYNOS is not set +CONFIG_USB_EHCI_FSL=m +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_HCD_NPCM7XX=m +CONFIG_USB_EHCI_HCD_OMAP=m +CONFIG_USB_EHCI_HCD_ORION=y +CONFIG_USB_EHCI_HCD_PPC_OF=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TEGRA=m +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_EMI26=m +CONFIG_USB_EMI62=m +CONFIG_USB_EPSON2888=y +CONFIG_USB_ETH=m +CONFIG_USB_ETH_EEM=y +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_FHCI_HCD=m +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_FUSB300=m +CONFIG_USB_F_ACM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_TCM=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC1_LEGACY=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_GADGETFS=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_XILINX=m +CONFIG_USB_GL860=m +CONFIG_USB_GOKU=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_GSPCA=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_HID=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_G_NCM=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_HACKRF=m +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +# CONFIG_USB_HCD_TEST_MODE is not set +CONFIG_USB_HID=m +CONFIG_USB_HIDDEV=y +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_HSIC_USB4604=m +CONFIG_USB_HSO=m +CONFIG_USB_HUB_USB251XB=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IPHETH=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_DUAL_ROLE=y +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_HCD=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +CONFIG_USB_ISP1761_UDC=y +CONFIG_USB_KAWETH=m +CONFIG_USB_KBD=m +CONFIG_USB_KC2190=y +CONFIG_USB_KEENE=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_LCD=m +CONFIG_USB_LD=m +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_LED_TRIG=y +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LGM_PHY=m +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_M5602=m +# CONFIG_USB_M66592 is not set +CONFIG_USB_MA901=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MAX3420_UDC=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MON=m +CONFIG_USB_MOUSE=m +CONFIG_USB_MR800=m +CONFIG_USB_MSI2500=m +CONFIG_USB_MTU3=m +# CONFIG_USB_MTU3_DEBUG is not set +CONFIG_USB_MTU3_DUAL_ROLE=y +# CONFIG_USB_MTU3_GADGET is not set +# CONFIG_USB_MTU3_HOST is not set +CONFIG_USB_MUSB_AM35X=m +CONFIG_USB_MUSB_DSPS=m +CONFIG_USB_MUSB_DUAL_ROLE=y +# CONFIG_USB_MUSB_GADGET is not set +# CONFIG_USB_MUSB_HOST is not set +CONFIG_USB_MUSB_MEDIATEK=m +CONFIG_USB_MUSB_OMAP2PLUS=m +CONFIG_USB_MUSB_POLARFIRE_SOC=m +CONFIG_USB_MUSB_SUNXI=m +CONFIG_USB_MUSB_TUSB6010=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_MXS_PHY=y +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_ZAURUS=m +# CONFIG_USB_OHCI_EXYNOS is not set +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_OMAP3=m +CONFIG_USB_OHCI_HCD_PCI=y +# CONFIG_USB_OHCI_HCD_PPC_OF_BE is not set +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PCI=y +CONFIG_USB_PEGASUS=m +CONFIG_USB_PHY=y +CONFIG_USB_PRINTER=m +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_USB_PXA27X=m +CONFIG_USB_QCOM_EUD=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RAINSHADOW_CEC=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_RAW_GADGET=m +CONFIG_USB_RENESAS_USB3=m +CONFIG_USB_RENESAS_USBHS=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_RENESAS_USBHS_UDC=m +CONFIG_USB_ROLES_INTEL_XHCI=m +CONFIG_USB_ROLE_SWITCH=y +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_USB_S2255=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_DEBUG=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_F8153X=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_UPD78F0730=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_SI470X=m +CONFIG_USB_SI4713=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SNP_CORE=m +CONFIG_USB_SNP_UDC_PLAT=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_STORAGE=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_DATAFAB=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STV06XX=m +CONFIG_USB_TEGRA_PHY=m +CONFIG_USB_TEGRA_XUDC=m +CONFIG_USB_TEST=m +CONFIG_USB_TMC=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_UAS=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_UHCI_ASPEED=y +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_UHCI_PLATFORM=y +CONFIG_USB_UHCI_SUPPORT_NON_PCI_HC=y +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_ULPI_VIEWPORT=y +CONFIG_USB_USBNET=m +CONFIG_USB_USS720=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_VL600=m +CONFIG_USB_WDM=m +CONFIG_USB_XEN_HCD=m +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_HISTB=m +CONFIG_USB_XHCI_MTK=m +CONFIG_USB_XHCI_MVEBU=m +CONFIG_USB_XHCI_PCI=m +CONFIG_USB_XHCI_PCI_RENESAS=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_RCAR=m +CONFIG_USB_XHCI_TEGRA=m +CONFIG_USB_XUSBATM=m +CONFIG_USB_YUREX=m +CONFIG_USB_ZD1201=m +CONFIG_USB_ZERO=m +CONFIG_USB_ZR364XX=m +CONFIG_USELIB=y +CONFIG_USERFAULTFD=y +CONFIG_USERIO=m +CONFIG_USERMODE_DRIVER=y +CONFIG_USER_DECRYPTED_DATA=y +CONFIG_USER_NS=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_USE_OF=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_UTS_NS=y +CONFIG_UV_MMTIMER=m +CONFIG_UV_SYSFS=m +CONFIG_U_SERIAL_CONSOLE=y +CONFIG_V4L2_ASYNC=m +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_H264=m +CONFIG_V4L2_JPEG_HELPER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_VP9=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_VBOXGUEST=m +CONFIG_VBOXSF_FS=m +CONFIG_VCHIQ_CDEV=y +CONFIG_VCNL3020=m +CONFIG_VCNL4000=m +CONFIG_VCNL4035=m +CONFIG_VDPA_SIM=m +CONFIG_VDPA_SIM_BLOCK=m +CONFIG_VDPA_SIM_NET=m +CONFIG_VDPA_USER=m +CONFIG_VDSO=y +CONFIG_VDSO32=y +CONFIG_VEML6030=m +CONFIG_VEML6070=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VETH=m +CONFIG_VEXPRESS_CONFIG=y +CONFIG_VF610_ADC=m +CONFIG_VF610_DAC=m +CONFIG_VFAT_FS=y +CONFIG_VFIO_AMBA=m +CONFIG_VFIO_AP=m +CONFIG_VFIO_CCW=m +CONFIG_VFIO_FSL_MC=m +CONFIG_VFIO_IOMMU_SPAPR_TCE=y +CONFIG_VFIO_MDEV=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PCI_ZDEV_KVM=y +CONFIG_VFIO_PLATFORM=m +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET=m +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET=m +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET=m +CONFIG_VFIO_SPAPR_EEH=y +CONFIG_VFP=y +CONFIG_VFPv3=y +CONFIG_VF_USE_ARM_GLOBAL_TIMER=y +# CONFIG_VF_USE_PIT_TIMER is not set +CONFIG_VGASTATE=m +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_CONSOLE=y +CONFIG_VGA_SWITCHEROO=y +CONFIG_VHOST=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_RING=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VDPA=m +CONFIG_VHOST_VSOCK=m +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_VIA_WDT=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV748X=m +CONFIG_VIDEO_ADV7511=m +# CONFIG_VIDEO_ADV7511_CEC is not set +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_ALLEGRO_DVT=m +CONFIG_VIDEO_AMPHION_VPU=m +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_ASPEED=m +CONFIG_VIDEO_ATOMISP=m +CONFIG_VIDEO_ATOMISP_GC0310=m +CONFIG_VIDEO_ATOMISP_GC2235=m +CONFIG_VIDEO_ATOMISP_ISP2401=y +CONFIG_VIDEO_ATOMISP_LM3554=m +CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER=m +CONFIG_VIDEO_ATOMISP_MT9M114=m +CONFIG_VIDEO_ATOMISP_OV2680=m +CONFIG_VIDEO_ATOMISP_OV2722=m +CONFIG_VIDEO_ATOMISP_OV5693=m +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_BCM2835=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_COBALT=m +CONFIG_VIDEO_CODA=m +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_CX23885=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX25840=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_DEV=m +CONFIG_VIDEO_DT3155=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_FB_IVTV_FORCE_PAT=y +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m +CONFIG_VIDEO_GS1662=m +CONFIG_VIDEO_HANTRO=m +CONFIG_VIDEO_HANTRO_IMX8M=y +CONFIG_VIDEO_HANTRO_ROCKCHIP=y +CONFIG_VIDEO_HANTRO_SUNXI=y +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_HI847=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX334=m +CONFIG_VIDEO_IMX335=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_IMX412=m +CONFIG_VIDEO_IMX7_CSI=m +CONFIG_VIDEO_IMX8_JPEG=m +CONFIG_VIDEO_IMX_CSI=m +CONFIG_VIDEO_IMX_MEDIA=m +CONFIG_VIDEO_IMX_MIPI_CSIS=m +CONFIG_VIDEO_IMX_PXP=m +CONFIG_VIDEO_IMX_VDOA=m +CONFIG_VIDEO_IPU3_CIO2=m +CONFIG_VIDEO_IPU3_IMGU=m +CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_ISL7998X=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_MAX9286=m +CONFIG_VIDEO_MAX96712=m +CONFIG_VIDEO_MEDIATEK_VPU=m +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_VIDEO_MESON_GE2D=m +CONFIG_VIDEO_MESON_VDEC=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_MUX=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_OG01A1B=m +CONFIG_VIDEO_OMAP2_VOUT=m +CONFIG_VIDEO_OMAP2_VOUT_VRFB=y +CONFIG_VIDEO_OMAP3=m +# CONFIG_VIDEO_OMAP3_DEBUG is not set +CONFIG_VIDEO_OMAP4=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV08D10=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5640=m +CONFIG_VIDEO_OV5645=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5693=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9282=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +# CONFIG_VIDEO_PCI_SKELETON is not set +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_DVB=y +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_QCOM_CAMSS=m +CONFIG_VIDEO_QCOM_VENUS=m +CONFIG_VIDEO_RCAR_CSI2=m +CONFIG_VIDEO_RCAR_DRIF=m +CONFIG_VIDEO_RCAR_ISP=m +CONFIG_VIDEO_RCAR_VIN=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RENESAS_CEU=m +CONFIG_VIDEO_RENESAS_FCP=m +CONFIG_VIDEO_RENESAS_FDP1=m +CONFIG_VIDEO_RENESAS_JPU=m +CONFIG_VIDEO_RENESAS_VSP1=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_ROCKCHIP_ISP1=m +CONFIG_VIDEO_ROCKCHIP_RGA=m +CONFIG_VIDEO_ROCKCHIP_VDEC=m +CONFIG_VIDEO_S5C73M3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_SAA6752HS=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_GO7007=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_SAA7185=m +# CONFIG_VIDEO_SAMSUNG_EXYNOS4_IS is not set +# CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC is not set +# CONFIG_VIDEO_SAMSUNG_S5P_G2D is not set +# CONFIG_VIDEO_SAMSUNG_S5P_JPEG is not set +# CONFIG_VIDEO_SAMSUNG_S5P_MFC is not set +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_SONY_BTF_MPX=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_ST_MIPID02=m +CONFIG_VIDEO_SUN4I_CSI=m +CONFIG_VIDEO_SUN6I_CSI=m +CONFIG_VIDEO_SUN8I_DEINTERLACE=m +CONFIG_VIDEO_SUN8I_ROTATE=m +CONFIG_VIDEO_SUNXI=y +CONFIG_VIDEO_SUNXI_CEDRUS=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TEGRA=m +CONFIG_VIDEO_TEGRA_TPG=y +CONFIG_VIDEO_TEGRA_VDE=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_THS8200=m +CONFIG_VIDEO_TI_CAL=m +CONFIG_VIDEO_TI_CSC=m +CONFIG_VIDEO_TI_SC=m +CONFIG_VIDEO_TI_VPDMA=m +CONFIG_VIDEO_TI_VPE=m +# CONFIG_VIDEO_TI_VPE_DEBUG is not set +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBTV=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_VICODEC=m +CONFIG_VIDEO_VIM2M=m +CONFIG_VIDEO_VIMC=m +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_XILINX=m +CONFIG_VIDEO_XILINX_CSI2RXSS=m +CONFIG_VIDEO_XILINX_TPG=m +CONFIG_VIDEO_XILINX_VTC=m +# CONFIG_VIDEO_ZORAN is not set +CONFIG_VIPERBOARD_ADC=m +CONFIG_VIRTIO=y +CONFIG_VIRTIO_ANCHOR=y +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_BLK=m +CONFIG_VIRTIO_CONSOLE=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VIRTIO_FS=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_IOMMU=y +CONFIG_VIRTIO_MEM=m +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PCI_LIB_LEGACY=y +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_VIRTUALIZATION=y +CONFIG_VIRT_CPU_ACCOUNTING=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRT_TO_BUS=y +CONFIG_VIRT_WIFI=m +CONFIG_VISCONTI_WATCHDOG=m +CONFIG_VITESSE_PHY=m +CONFIG_VL53L0X_I2C=m +CONFIG_VL6180=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_VMAP_PFN=y +CONFIG_VMCP=y +CONFIG_VMCP_CMA_SIZE=4 +CONFIG_VMD=m +CONFIG_VME_CA91CX42=m +CONFIG_VME_FAKE=m +CONFIG_VME_TSI148=m +CONFIG_VME_USER=m +CONFIG_VMGENID=m +CONFIG_VMIVME_7805=m +CONFIG_VMLINUX_MAP=y +CONFIG_VMLOGRDR=m +# CONFIG_VMSPLIT_1G is not set +# CONFIG_VMSPLIT_2G is not set +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_3G_OPT is not set +CONFIG_VMWARE_BALLOON=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_VMWARE_VMCI=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_VORTEX=m +CONFIG_VP_VDPA=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VSOCKMON=m +CONFIG_VSX=y +CONFIG_VT=y +CONFIG_VT6655=m +CONFIG_VT6656=m +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_VT_HW_CONSOLE_BINDING=y +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_VXLAN=m +CONFIG_VZ89X=m +CONFIG_W1_CON=y +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_MXC=m +CONFIG_W1_MASTER_SGI=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +CONFIG_W1_SLAVE_DS250X=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_THERM=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_WAFER_WDT=m +CONFIG_WANT_COMPAT_NETLINK_MESSAGES=y +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_WANXL=m +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP=y +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=m +CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL=m +CONFIG_WATCHDOG_RTAS=m +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCH_QUEUE=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_WDAT_WDT=m +# CONFIG_WERROR is not set +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PRIV=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WFX=m +CONFIG_WIL6210=m +CONFIG_WIL6210_DEBUGFS=y +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WILC1000=m +CONFIG_WILC1000_HW_OOB_INTR=y +CONFIG_WILC1000_SDIO=m +CONFIG_WILC1000_SPI=m +CONFIG_WILCO_EC=m +CONFIG_WILCO_EC_DEBUGFS=m +CONFIG_WILCO_EC_EVENTS=m +CONFIG_WILCO_EC_TELEMETRY=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WINBOND_840=m +CONFIG_WINDFARM=m +CONFIG_WINMATE_FM07_KEYS=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WIRELESS_HOTKEY=m +CONFIG_WIZNET_BUS_ANY=y +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5100_SPI=m +CONFIG_WIZNET_W5300=m +# CONFIG_WKUP_M3_IPC is not set +CONFIG_WKUP_M3_RPROC=m +CONFIG_WL1251=m +CONFIG_WL1251_SDIO=m +CONFIG_WL1251_SPI=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_PURELIFI=y +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_SILABS=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLCORE=m +CONFIG_WLCORE_SDIO=m +CONFIG_WLCORE_SPI=m +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_POWER=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_WMI_BMOF=m +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +# CONFIG_WQ_WATCHDOG is not set +CONFIG_WWAN_DEBUGFS=y +CONFIG_WWAN_HWSIM=m +# CONFIG_WW_MUTEX_SELFTEST is not set +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_X86=y +CONFIG_X86_16BIT=y +CONFIG_X86_5LEVEL=y +CONFIG_X86_64=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_X86_64_SMP=y +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_X86_AMD_PSTATE=y +CONFIG_X86_ANDROID_TABLETS=m +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG64=y +# CONFIG_X86_CPA_STATISTICS is not set +CONFIG_X86_CPUID=m +CONFIG_X86_CPU_RESCTRL=y +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_X86_DEBUG_FPU=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_EXTENDED_PLATFORM=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_GOLDFISH is not set +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_IOPL_IOPERM=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_KERNEL_IBT is not set +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_MCE=y +CONFIG_X86_MCELOG_LEGACY=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MEM_ENCRYPT=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_MPPARSE=y +CONFIG_X86_MSR=m +CONFIG_X86_NEED_RELOCS=y +CONFIG_X86_NUMACHIP=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PAT=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_X86_PLATFORM_DRIVERS_DELL=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_SGX=y +CONFIG_X86_SGX_KVM=y +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_TSC=y +CONFIG_X86_UMIP=y +CONFIG_X86_UV=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_X86_VSMP is not set +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_X32_ABI is not set +CONFIG_XARRAY_MULTI=y +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_XENFS=m +CONFIG_XEN_512GB=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_BACKEND=y +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_COMPAT_XENFS=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_DOM0=y +CONFIG_XEN_EFI=y +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GNTDEV_DMABUF=y +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_XEN_GRANT_DMA_ALLOC=y +CONFIG_XEN_GRANT_DMA_IOMMU=y +CONFIG_XEN_GRANT_DMA_OPS=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_XEN_PCIDEV_STUB=m +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_PV=y +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PVCALLS_FRONTEND=m +CONFIG_XEN_PVH=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_GUEST=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_PV_DOM0=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_SAVE_RESTORE=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_XEN_SYMS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_UNPOPULATED_ALLOC=y +CONFIG_XEN_VIRTIO=y +# CONFIG_XEN_VIRTIO_FORCE_GRANT is not set +CONFIG_XEN_WDT=m +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XFRM=y +CONFIG_XFRM_AH=m +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_ESPINTCP=y +CONFIG_XFRM_INTERFACE=m +CONFIG_XFRM_IPCOMP=m +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_USER=m +CONFIG_XFRM_USER_COMPAT=m +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +# CONFIG_XFS_ONLINE_SCRUB is not set +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_RT=y +CONFIG_XFS_SUPPORT_V4=y +# CONFIG_XFS_WARN is not set +CONFIG_XGENE_DMA=m +CONFIG_XGENE_PMU=y +CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_XIAOMI_WMI=m +CONFIG_XILINX_AMS=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_DMA=m +CONFIG_XILINX_GMII2RGMII=m +CONFIG_XILINX_INTC=y +CONFIG_XILINX_PR_DECOUPLER=m +CONFIG_XILINX_VCU=m +CONFIG_XILINX_XADC=m +CONFIG_XILINX_ZYNQMP_DMA=m +CONFIG_XILINX_ZYNQMP_DPDMA=m +CONFIG_XILLYBUS_CLASS=m +CONFIG_XILLYBUS_OF=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XILLYUSB=m +CONFIG_XIL_AXIS_FIFO=m +# CONFIG_XIP_KERNEL is not set +CONFIG_XLNX_EVENT_MANAGER=y +CONFIG_XMON=y +# CONFIG_XMON_DEFAULT is not set +CONFIG_XMON_DEFAULT_RO_MODE=y +CONFIG_XMON_DISASSEMBLY=y +CONFIG_XOR_BLOCKS=m +CONFIG_XPOWER_PMIC_OPREGION=y +CONFIG_XPS=y +CONFIG_XXHASH=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_MICROLZMA=y +CONFIG_YAM=m +CONFIG_YAMAHA_YAS530=m +CONFIG_YENTA=m +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_YOGABOOK_WMI=m +CONFIG_Z3FOLD=m +CONFIG_ZBOOT_ROM_BSS=0x0 +CONFIG_ZBOOT_ROM_TEXT=0x0 +CONFIG_ZBUD=y +CONFIG_ZCRYPT=m +# CONFIG_ZCRYPT_DEBUG is not set +CONFIG_ZCRYPT_MULTIDEVNODES=y +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZEROPLUS_FF=y +CONFIG_ZERO_CALL_USED_REGS=y +CONFIG_ZFCP=m +CONFIG_ZISOFS=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZLIB_DFLTCC=y +CONFIG_ZLIB_INFLATE=y +CONFIG_ZONEFS_FS=m +CONFIG_ZONE_DEVICE=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ZOPT2201=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m +CONFIG_ZPOOL=y +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_DEF_COMP_842 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +CONFIG_ZRAM_MEMORY_TRACKING=y +CONFIG_ZRAM_WRITEBACK=y +CONFIG_ZSMALLOC=y +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_ZSWAP=y +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZYNQMP_FIRMWARE=y +# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set +CONFIG_ZYNQMP_IPI_MBOX=y +CONFIG_ZYNQMP_PM_DOMAINS=y +CONFIG_ZYNQMP_POWER=y diff --git a/debian.hwe-5.19/config/ppc64el/config.common.ppc64el b/debian.hwe-5.19/config/ppc64el/config.common.ppc64el new file mode 100644 index 000000000000..f2dbc3bbfadd --- /dev/null +++ b/debian.hwe-5.19/config/ppc64el/config.common.ppc64el @@ -0,0 +1,701 @@ +# +# Config options for config.common.ppc64el automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +CONFIG_ACCESSIBILITY=y +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_ADIN1100_PHY=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=29 +CONFIG_ARCH_MMAP_RND_BITS_MIN=14 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=13 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7 +CONFIG_ARCNET=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=y +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="powerpc64le-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +CONFIG_CMM=m +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +CONFIG_COMPAT=y +CONFIG_COUNTER=m +# CONFIG_CPU_BIG_ENDIAN is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRAMFS=m +CONFIG_CRC7=m +CONFIG_CRC8=m +CONFIG_CRC_ITU_T=m +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMADEVICES=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DP83TD510_PHY=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +CONFIG_DWMAC_INTEL_PLAT=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +CONFIG_EVM_LOAD_X509=y +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +CONFIG_FB_IBM_GXT4500=y +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FORCE_MAX_ZONEORDER=9 +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=2048 +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +# CONFIG_GOLDFISH is not set +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GPIO_XILINX=y +CONFIG_GREYBUS=m +CONFIG_HABANA_AI=m +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +# CONFIG_HIBERNATION is not set +CONFIG_HID=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_SHPC is not set +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +CONFIG_HTE=y +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +# CONFIG_HW_RANDOM_CCTRNG is not set +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_ILLEGAL_POINTER_VALUE=0x5deadbeef0000000 +CONFIG_IMA_DEFAULT_HASH="sha256" +# CONFIG_IMA_DEFAULT_HASH_SHA1 is not set +CONFIG_IMA_DEFAULT_HASH_SHA256=y +CONFIG_IMA_DEFAULT_TEMPLATE="ima-sig" +CONFIG_IMA_LOAD_X509=y +# CONFIG_IMA_NG_TEMPLATE is not set +CONFIG_IMA_READ_POLICY=y +CONFIG_IMA_SIG_TEMPLATE=y +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +CONFIG_IP_VS_TWOS=m +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +CONFIG_KERNEL_GZIP=y +CONFIG_KVM=y +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=y +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +CONFIG_MEMSTICK=m +# CONFIG_MEM_SOFT_DIRTY is not set +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +# CONFIG_MFD_TPS65217 is not set +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MHI_BUS_EP=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_CQHCI=m +# CONFIG_MMC_HSQ is not set +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SPI=m +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_OF_PARTS=m +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +# CONFIG_NET_DSA_MSCC_FELIX is not set +CONFIG_NET_DSA_REALTEK_MDIO=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=8 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=2048 +CONFIG_NTB=m +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NVRAM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xc000000000000000 +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_PANIC_TIMEOUT=10 +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +# CONFIG_PCCARD is not set +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_MESON is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCS_XPCS=m +CONFIG_PECI=m +CONFIG_PGTABLE_LEVELS=4 +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYSICAL_START=0x00000000 +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PINCTRL=y +CONFIG_PM=y +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +CONFIG_REMOTEPROC=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCHED_SMT=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=y +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +# CONFIG_SENSORS_Q54SJ108A2 is not set +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +# CONFIG_SERIAL_8250_FINTEK is not set +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SIFIVE=m +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_SIENA=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPI_SIFIVE=m +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=y +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=y +CONFIG_TCG_TIS_I2C_NUVOTON=y +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y +# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +CONFIG_UBSAN=y +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_CORE=y +CONFIG_VFIO_VIRQFD=y +CONFIG_VIRTIO_MMIO=y +# CONFIG_VIRT_CPU_ACCOUNTING_NATIVE is not set +CONFIG_VME_BUS=y +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=y +CONFIG_X25=m +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.hwe-5.19/config/ppc64el/config.flavour.generic b/debian.hwe-5.19/config/ppc64el/config.flavour.generic new file mode 100644 index 000000000000..bb7773a235d2 --- /dev/null +++ b/debian.hwe-5.19/config/ppc64el/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.hwe-5.19/config/riscv64/config.common.riscv64 b/debian.hwe-5.19/config/riscv64/config.common.riscv64 new file mode 100644 index 000000000000..4fe03db15552 --- /dev/null +++ b/debian.hwe-5.19/config/riscv64/config.common.riscv64 @@ -0,0 +1,692 @@ +# +# Config options for config.common.riscv64 automatically generated by splitconfig.pl +# +CONFIG_6LOWPAN=m +CONFIG_AC97_BUS=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_AD525X_DPOT=m +CONFIG_ADFS_FS=m +CONFIG_ADIN1100_PHY=m +CONFIG_AFFS_FS=m +CONFIG_AIX_PARTITION=y +CONFIG_ALIM7101_WDT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_AMIGA_PARTITION=y +CONFIG_ANDROID=y +CONFIG_APDS9802ALS=m +CONFIG_APPLICOM=m +CONFIG_AQTION=m +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_MMAP_RND_BITS_MAX=24 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=17 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCNET=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_PIIX=m +CONFIG_ATM=m +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AX88796B_PHY=m +CONFIG_BACKLIGHT_CLASS_DEVICE=m +CONFIG_BAREUDP=m +CONFIG_BATMAN_ADV=m +CONFIG_BCH=m +CONFIG_BCM84881_PHY=m +CONFIG_BCMA=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_VK=m +CONFIG_BE2ISCSI=m +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_SX8=m +CONFIG_BSD_DISKLABEL=y +CONFIG_C2PORT=m +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +CONFIG_CAN=m +CONFIG_CB710_CORE=m +CONFIG_CC_VERSION_TEXT="riscv64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +CONFIG_CDROM_PKTCDVD=m +CONFIG_CMA=y +CONFIG_CMDLINE="" +CONFIG_CMDLINE_PARTITION=y +CONFIG_COMEDI=m +CONFIG_COMMON_CLK=y +# CONFIG_COMMON_CLK_XLNX_CLKWZRD is not set +# CONFIG_COMPAT is not set +# CONFIG_COUNTER is not set +CONFIG_CRAMFS=m +CONFIG_CRC7=y +CONFIG_CRC8=m +CONFIG_CRC_ITU_T=y +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CXL_BUS=m +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DECNET=m +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DMADEVICES=y +CONFIG_DMA_CMA=y +CONFIG_DMA_PERNUMA_CMA=y +CONFIG_DMA_VIRTUAL_CHANNELS=m +# CONFIG_DM_DEBUG is not set +CONFIG_DNET=m +CONFIG_DP83TD510_PHY=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_AST=m +CONFIG_DRM_CIRRUS_QEMU=m +# CONFIG_DRM_ETNAVIV is not set +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_VGEM=m +CONFIG_DRM_VKMS=m +CONFIG_DS1682=m +CONFIG_DUMMY_IRQ=m +# CONFIG_DWMAC_INTEL_PLAT is not set +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_ECHO=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFS_FS=m +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ETHOC=m +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXFAT_FS=m +CONFIG_EXTCON=y +CONFIG_F2FS_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CYBER2000=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_KYRO=m +CONFIG_FB_MATROX=m +CONFIG_FB_MB862XX=m +CONFIG_FB_METRONOME=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RIVA=m +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_SAVAGE=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SM712=m +CONFIG_FB_SSD1307=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UVESA=m +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIRMWARE_MEMMAP=y +# CONFIG_FORTIFY_SOURCE is not set +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FRAME_WARN=1024 +CONFIG_FUSION=y +CONFIG_GAMEPORT=m +CONFIG_GENERIC_PHY=y +CONFIG_GNSS=m +CONFIG_GOLDFISH=y +CONFIG_GPIO_ADP5588=m +# CONFIG_GPIO_AMD_FCH is not set +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_VIRTIO=m +# CONFIG_GPIO_XILINX is not set +# CONFIG_GREYBUS is not set +# CONFIG_HABANA_AI is not set +CONFIG_HAMACHI=m +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HID=m +# CONFIG_HISI_HIKEY_USB is not set +CONFIG_HMC6352=m +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HPFS_FS=m +CONFIG_HP_ILO=m +CONFIG_HSI=m +CONFIG_HSR=m +CONFIG_HTC_PASIC3=m +# CONFIG_HTE is not set +CONFIG_HWMON=y +CONFIG_HWSPINLOCK=y +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +CONFIG_I2C=y +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +CONFIG_I2C_GPIO=m +CONFIG_I2C_I801=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_SLAVE is not set +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XILINX=m +CONFIG_I3C=m +CONFIG_I6300ESB_WDT=m +CONFIG_ICS932S401=m +CONFIG_IEEE802154=m +CONFIG_IIO=m +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTERCONNECT=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_IOMMU_IOVA=m +CONFIG_IPACK_BUS=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_VS_TWOS is not set +CONFIG_IRQ_BYPASS_MANAGER=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_JFS_FS=m +CONFIG_JME=m +CONFIG_JUMP_LABEL=y +CONFIG_KARMA_PARTITION=y +CONFIG_KVM=m +CONFIG_LAPB=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LDM_PARTITION=y +CONFIG_LIBNVDIMM=y +CONFIG_LLC2=m +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +CONFIG_MAC_PARTITION=y +CONFIG_MAILBOX=y +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MCB=m +CONFIG_MCTP=y +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_BUS_MUX=m +CONFIG_MDIO_THUNDER=m +CONFIG_MD_MULTIPATH=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MEMORY=y +CONFIG_MEMSTICK=m +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LP3943=m +CONFIG_MFD_MADERA=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TPS65086=m +# CONFIG_MFD_TPS65217 is not set +CONFIG_MFD_TPS65912_I2C=y +# CONFIG_MFD_TQMX86 is not set +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM8994=m +CONFIG_MHI_BUS=m +CONFIG_MHI_BUS_EP=m +CONFIG_MII=m +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MLX5_SF=y +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLXSW_I2C=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_CQHCI=m +CONFIG_MMC_HSQ=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SPI=y +CONFIG_MOST=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_OF_PARTS=m +# CONFIG_MTD_PHYSMAP_GEMINI is not set +# CONFIG_MTD_PHYSMAP_VERSATILE is not set +CONFIG_MTD_RAW_NAND=m +CONFIG_NET_DSA=m +CONFIG_NET_DSA_REALTEK_MDIO=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFP=m +CONFIG_NODES_SHIFT=2 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NOZOMI=m +CONFIG_NR_CPUS=32 +CONFIG_NTB=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +CONFIG_NVMEM=y +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_OF=y +CONFIG_OMFS_FS=m +CONFIG_OSF_PARTITION=y +CONFIG_PACKING=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_OFFSET=0xff60000000000000 +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARPORT=m +CONFIG_PATA_SIS=m +CONFIG_PC104=y +# CONFIG_PCCARD is not set +CONFIG_PCIEPORTBUS=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_MESON is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCS_XPCS=m +CONFIG_PECI=m +CONFIG_PGTABLE_LEVELS=5 +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PINCTRL=y +# CONFIG_PM is not set +CONFIG_PM_DEVFREQ=y +CONFIG_POWERCAP=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP=y +CONFIG_PPS_CLIENT_GPIO=m +CONFIG_PPS_CLIENT_LDISC=m +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_RAM=m +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PVPANIC=y +CONFIG_PWM=y +CONFIG_QNX4FS_FS=m +CONFIG_QNX6FS_FS=m +CONFIG_QRTR=m +CONFIG_RAPIDIO=y +CONFIG_RAVE_SP_CORE=m +CONFIG_RC_CORE=m +CONFIG_REED_SOLOMON=m +CONFIG_REGMAP_I2C=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REISERFS_FS=m +# CONFIG_REMOTEPROC is not set +CONFIG_RESET_CONTROLLER=y +CONFIG_RFKILL=y +CONFIG_RMI4_CORE=m +CONFIG_ROMFS_FS=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RTC_DRV_EFI=m +CONFIG_RTC_DRV_GOLDFISH=y +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_S2IO=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ESAS2R=m +# CONFIG_SCSI_FDOMAIN_PCI is not set +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPS=m +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SNIC=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_WD719X=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_CORE=y +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SIFIVE=y +CONFIG_SERIO=y +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_SIENA=m +CONFIG_SGI_PARTITION=y +CONFIG_SLIP=m +CONFIG_SND=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_DMAENGINE_PCM=m +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_PCM=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_TIMER=m +CONFIG_SOC_TI=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SOUND=m +CONFIG_SPI=y +# CONFIG_SPI_ROCKCHIP is not set +CONFIG_SPI_SIFIVE=y +CONFIG_SPMI=m +CONFIG_SRAM=y +CONFIG_SSB=m +CONFIG_STAGING=y +CONFIG_STANDALONE=y +CONFIG_SUN_PARTITION=y +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSV_FS=m +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_THERMAL=y +CONFIG_TIFM_CORE=m +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TTY_PRINTK=y +CONFIG_UACCE=m +# CONFIG_UBSAN is not set +CONFIG_UFS_FS=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_USB4=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_GADGET=m +CONFIG_USB_MUSB_HDRC=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_USB_SUPPORT=y +CONFIG_VDPA=m +CONFIG_VFIO=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +CONFIG_VIRTIO_MMIO=y +# CONFIG_VMAP_STACK is not set +CONFIG_VME_BUS=y +CONFIG_VMXNET3=m +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +CONFIG_W1=m +CONFIG_WAN=y +CONFIG_WDTPCI=m +CONFIG_WWAN=m +CONFIG_X25=m +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +# CONFIG_XILINX_SDFEC is not set +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILLYBUS=m +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YELLOWFIN=m +CONFIG_ZIIRAVE_WATCHDOG=m diff --git a/debian.hwe-5.19/config/riscv64/config.flavour.generic b/debian.hwe-5.19/config/riscv64/config.flavour.generic new file mode 100644 index 000000000000..bb7773a235d2 --- /dev/null +++ b/debian.hwe-5.19/config/riscv64/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.hwe-5.19/config/s390x/config.common.s390x b/debian.hwe-5.19/config/s390x/config.common.s390x new file mode 100644 index 000000000000..30fd16bd375c --- /dev/null +++ b/debian.hwe-5.19/config/s390x/config.common.s390x @@ -0,0 +1,624 @@ +# +# Config options for config.common.s390x automatically generated by splitconfig.pl +# +# CONFIG_6LOWPAN is not set +# CONFIG_ACCESSIBILITY is not set +# CONFIG_AD525X_DPOT is not set +# CONFIG_ADFS_FS is not set +# CONFIG_ADIN1100_PHY is not set +# CONFIG_AFFS_FS is not set +# CONFIG_AIX_PARTITION is not set +# CONFIG_ALIM7101_WDT is not set +# CONFIG_ALTERA_STAPL is not set +# CONFIG_ALTERA_TSE is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ANDROID is not set +# CONFIG_APDS9802ALS is not set +# CONFIG_APPLICOM is not set +# CONFIG_AQTION is not set +# CONFIG_ARCNET is not set +# CONFIG_ATA is not set +# CONFIG_ATALK is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_ATM is not set +CONFIG_AUTOFS4_FS=y +CONFIG_AUTOFS_FS=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_AX88796B_PHY is not set +# CONFIG_BACKLIGHT_CLASS_DEVICE is not set +# CONFIG_BAREUDP is not set +# CONFIG_BATMAN_ADV is not set +# CONFIG_BCM84881_PHY is not set +# CONFIG_BCMA is not set +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_BCM_VK is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BEFS_FS is not set +# CONFIG_BFS_FS is not set +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_C2PORT is not set +# CONFIG_CADENCE_WATCHDOG is not set +# CONFIG_CAIF is not set +# CONFIG_CAN is not set +# CONFIG_CB710_CORE is not set +CONFIG_CC_VERSION_TEXT="s390x-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0" +# CONFIG_CDROM_PKTCDVD is not set +CONFIG_CMA=y +# CONFIG_CMDLINE_PARTITION is not set +CONFIG_CMM=y +# CONFIG_COMEDI is not set +# CONFIG_COMMON_CLK is not set +CONFIG_COMPAT=y +# CONFIG_COUNTER is not set +CONFIG_CPU_BIG_ENDIAN=y +# CONFIG_CRAMFS is not set +CONFIG_CRC7=m +CONFIG_CRC8=m +CONFIG_CRC_ITU_T=m +# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set +# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set +# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set +# CONFIG_CRYPTO_DEV_SAFEXCEL is not set +# CONFIG_CRYPTO_DH_RFC7919_GROUPS is not set +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1 +# CONFIG_CRYPTO_SM3_GENERIC is not set +# CONFIG_CRYPTO_SM4_GENERIC is not set +# CONFIG_CXL_BUS is not set +CONFIG_DEBUG_INFO_BTF=y +# CONFIG_DECNET is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DMADEVICES is not set +# CONFIG_DMA_CMA is not set +CONFIG_DM_DEBUG=y +# CONFIG_DNET is not set +# CONFIG_DP83TD510_PHY is not set +# CONFIG_DRM_AMDGPU is not set +# CONFIG_DRM_ANALOGIX_ANX78XX is not set +# CONFIG_DRM_AST is not set +# CONFIG_DRM_CIRRUS_QEMU is not set +# CONFIG_DRM_ETNAVIV is not set +# CONFIG_DRM_I2C_CH7006 is not set +# CONFIG_DRM_I2C_NXP_TDA9950 is not set +# CONFIG_DRM_I2C_NXP_TDA998X is not set +# CONFIG_DRM_I2C_SIL164 is not set +# CONFIG_DRM_MGAG200 is not set +# CONFIG_DRM_NOUVEAU is not set +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=m +# CONFIG_DRM_QXL is not set +# CONFIG_DRM_RADEON is not set +# CONFIG_DRM_SIMPLEDRM is not set +# CONFIG_DRM_SSD130X is not set +# CONFIG_DRM_VGEM is not set +# CONFIG_DRM_VKMS is not set +# CONFIG_DS1682 is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_DW_WATCHDOG is not set +# CONFIG_DW_XDATA_PCIE is not set +# CONFIG_ECHO is not set +# CONFIG_EEPROM_93CX6 is not set +# CONFIG_EEPROM_AT24 is not set +# CONFIG_EEPROM_EE1004 is not set +# CONFIG_EEPROM_IDT_89HPESX is not set +# CONFIG_EEPROM_LEGACY is not set +# CONFIG_EEPROM_MAX6875 is not set +# CONFIG_EFS_FS is not set +# CONFIG_ENCLOSURE_SERVICES is not set +# CONFIG_ETHOC is not set +# CONFIG_EVM_LOAD_X509 is not set +# CONFIG_EXFAT_FS is not set +# CONFIG_EXTCON is not set +# CONFIG_F2FS_FS is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_ATY is not set +# CONFIG_FB_ATY128 is not set +# CONFIG_FB_CARMINE is not set +CONFIG_FB_CFB_COPYAREA=m +CONFIG_FB_CFB_FILLRECT=m +CONFIG_FB_CFB_IMAGEBLIT=m +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_I740 is not set +# CONFIG_FB_IBM_GXT4500 is not set +# CONFIG_FB_IMSTT is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_MATROX is not set +# CONFIG_FB_MB862XX is not set +# CONFIG_FB_METRONOME is not set +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_OPENCORES is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_PM3 is not set +# CONFIG_FB_RADEON is not set +# CONFIG_FB_RIVA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_S3 is not set +# CONFIG_FB_SAVAGE is not set +# CONFIG_FB_SIMPLE is not set +# CONFIG_FB_SIS is not set +# CONFIG_FB_SM712 is not set +# CONFIG_FB_SSD1307 is not set +# CONFIG_FB_TILEBLITTING is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_UVESA is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set +# CONFIG_FDDI is not set +# CONFIG_FEALNX is not set +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_FORTIFY_SOURCE=y +# CONFIG_FPGA_BRIDGE is not set +# CONFIG_FPGA_DFL is not set +CONFIG_FRAME_WARN=1024 +# CONFIG_FUSION is not set +# CONFIG_GAMEPORT is not set +# CONFIG_GENERIC_PHY is not set +# CONFIG_GNSS is not set +# CONFIG_GOLDFISH is not set +# CONFIG_GPIO_ADP5588 is not set +# CONFIG_GPIO_AMD_FCH is not set +# CONFIG_GPIO_DWAPB is not set +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +# CONFIG_GPIO_MAX7300 is not set +# CONFIG_GPIO_MAX732X is not set +# CONFIG_GPIO_MB86S7X is not set +# CONFIG_GPIO_PCA953X is not set +# CONFIG_GPIO_PCA9570 is not set +# CONFIG_GPIO_PCF857X is not set +# CONFIG_GPIO_RDC321X is not set +# CONFIG_GPIO_SIOX is not set +# CONFIG_GPIO_TPIC2810 is not set +# CONFIG_GPIO_VIRTIO is not set +# CONFIG_GREYBUS is not set +# CONFIG_HABANA_AI is not set +# CONFIG_HAMACHI is not set +# CONFIG_HFSPLUS_FS is not set +# CONFIG_HFS_FS is not set +# CONFIG_HID is not set +# CONFIG_HMC6352 is not set +CONFIG_HOTPLUG_PCI=y +# CONFIG_HOTPLUG_PCI_SHPC is not set +# CONFIG_HPFS_FS is not set +# CONFIG_HP_ILO is not set +# CONFIG_HSI is not set +# CONFIG_HSR is not set +# CONFIG_HTC_PASIC3 is not set +# CONFIG_HTE is not set +# CONFIG_HWMON is not set +# CONFIG_HWSPINLOCK is not set +# CONFIG_HW_RANDOM_TIMERIOMEM is not set +# CONFIG_HW_RANDOM_XIPHERA is not set +CONFIG_HZ=100 +CONFIG_HZ_100=y +# CONFIG_HZ_250 is not set +CONFIG_I2C=m +# CONFIG_I2C_ALI1535 is not set +# CONFIG_I2C_ALI1563 is not set +# CONFIG_I2C_ALI15X3 is not set +# CONFIG_I2C_AMD756 is not set +# CONFIG_I2C_AMD8111 is not set +# CONFIG_I2C_CBUS_GPIO is not set +CONFIG_I2C_CHARDEV=m +# CONFIG_I2C_DESIGNWARE_PCI is not set +# CONFIG_I2C_DESIGNWARE_PLATFORM is not set +# CONFIG_I2C_GPIO is not set +# CONFIG_I2C_I801 is not set +# CONFIG_I2C_ISCH is not set +# CONFIG_I2C_MUX_GPIO is not set +# CONFIG_I2C_MUX_LTC4306 is not set +# CONFIG_I2C_MUX_MLXCPLD is not set +# CONFIG_I2C_MUX_PCA9541 is not set +# CONFIG_I2C_MUX_PCA954x is not set +# CONFIG_I2C_MUX_REG is not set +# CONFIG_I2C_NFORCE2 is not set +# CONFIG_I2C_NVIDIA_GPU is not set +# CONFIG_I2C_OCORES is not set +# CONFIG_I2C_PCA_PLATFORM is not set +# CONFIG_I2C_PIIX4 is not set +# CONFIG_I2C_SIMTEC is not set +# CONFIG_I2C_SIS5595 is not set +# CONFIG_I2C_SIS630 is not set +# CONFIG_I2C_SIS96X is not set +# CONFIG_I2C_SLAVE is not set +# CONFIG_I2C_TAOS_EVM is not set +# CONFIG_I2C_VIA is not set +# CONFIG_I2C_VIAPRO is not set +# CONFIG_I2C_VIRTIO is not set +# CONFIG_I2C_XILINX is not set +# CONFIG_I3C is not set +# CONFIG_I6300ESB_WDT is not set +# CONFIG_ICS932S401 is not set +# CONFIG_IEEE802154 is not set +# CONFIG_IIO is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_NG_TEMPLATE=y +# CONFIG_IMA_READ_POLICY is not set +# CONFIG_IMA_SIG_TEMPLATE is not set +# CONFIG_INFINIBAND_OCRDMA is not set +# CONFIG_INPUT_EVBUG is not set +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MATRIXKMAP is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_INTERCONNECT is not set +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +# CONFIG_IPACK_BUS is not set +# CONFIG_IPMI_HANDLER is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_VS_TWOS is not set +CONFIG_IRQ_BYPASS_MANAGER=m +# CONFIG_ISL29003 is not set +# CONFIG_ISL29020 is not set +# CONFIG_JFS_FS is not set +# CONFIG_JME is not set +CONFIG_JUMP_LABEL=y +# CONFIG_KARMA_PARTITION is not set +# CONFIG_KERNEL_GZIP is not set +CONFIG_KVM=y +# CONFIG_LAPB is not set +# CONFIG_LCD_CLASS_DEVICE is not set +# CONFIG_LDM_PARTITION is not set +# CONFIG_LIBNVDIMM is not set +# CONFIG_LLC2 is not set +CONFIG_LOG_BUF_SHIFT=18 +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_MAC_PARTITION is not set +# CONFIG_MAILBOX is not set +# CONFIG_MARVELL_88X2222_PHY is not set +# CONFIG_MAX63XX_WATCHDOG is not set +# CONFIG_MAXLINEAR_GPHY is not set +# CONFIG_MCB is not set +# CONFIG_MCTP is not set +# CONFIG_MDIO_BCM_UNIMAC is not set +# CONFIG_MDIO_BITBANG is not set +# CONFIG_MDIO_THUNDER is not set +CONFIG_MD_MULTIPATH=y +# CONFIG_MEDIATEK_GE_PHY is not set +# CONFIG_MEDIA_CEC_SUPPORT is not set +# CONFIG_MEDIA_SUPPORT is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_MEMORY is not set +# CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE is not set +# CONFIG_MEMSTICK is not set +CONFIG_MEM_SOFT_DIRTY=y +# CONFIG_MFD_88PM800 is not set +# CONFIG_MFD_88PM805 is not set +# CONFIG_MFD_ARIZONA_I2C is not set +# CONFIG_MFD_ATC260X_I2C is not set +# CONFIG_MFD_AXP20X_I2C is not set +# CONFIG_MFD_BCM590XX is not set +# CONFIG_MFD_BD9571MWV is not set +CONFIG_MFD_CORE=m +# CONFIG_MFD_DA9062 is not set +# CONFIG_MFD_DA9063 is not set +# CONFIG_MFD_DA9150 is not set +# CONFIG_MFD_IQS62X is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_LM3533 is not set +# CONFIG_MFD_LP3943 is not set +# CONFIG_MFD_MADERA is not set +# CONFIG_MFD_MAX14577 is not set +# CONFIG_MFD_MAX77693 is not set +# CONFIG_MFD_MAX8907 is not set +# CONFIG_MFD_MC13XXX_I2C is not set +# CONFIG_MFD_MENF21BMC is not set +# CONFIG_MFD_MP2629 is not set +# CONFIG_MFD_MT6360 is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_PCF50633 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RETU is not set +# CONFIG_MFD_RT4831 is not set +# CONFIG_MFD_RT5033 is not set +# CONFIG_MFD_SI476X_CORE is not set +# CONFIG_MFD_SKY81452 is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TI_LMU is not set +# CONFIG_MFD_TI_LP873X is not set +# CONFIG_MFD_TPS65086 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TQMX86 is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MFD_WCD934X is not set +# CONFIG_MFD_WL1273_CORE is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MHI_BUS is not set +# CONFIG_MHI_BUS_EP is not set +# CONFIG_MINIX_FS is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_MISC_ALCOR_PCI is not set +# CONFIG_MISC_RTSX_PCI is not set +# CONFIG_MLX5_SF is not set +# CONFIG_MLX5_VFIO_PCI is not set +# CONFIG_MLXSW_I2C is not set +# CONFIG_MMC is not set +# CONFIG_MOST is not set +# CONFIG_MOTORCOMM_PHY is not set +# CONFIG_MTD is not set +# CONFIG_NET_DSA is not set +# CONFIG_NET_VENDOR_3COM is not set +# CONFIG_NET_VENDOR_ADAPTEC is not set +# CONFIG_NET_VENDOR_AGERE is not set +# CONFIG_NET_VENDOR_ALTEON is not set +# CONFIG_NET_VENDOR_AMD is not set +# CONFIG_NET_VENDOR_ARC is not set +# CONFIG_NET_VENDOR_ATHEROS is not set +# CONFIG_NET_VENDOR_BROADCOM is not set +# CONFIG_NET_VENDOR_BROCADE is not set +# CONFIG_NET_VENDOR_CAVIUM is not set +# CONFIG_NET_VENDOR_CHELSIO is not set +# CONFIG_NET_VENDOR_CISCO is not set +# CONFIG_NET_VENDOR_DAVICOM is not set +# CONFIG_NET_VENDOR_DEC is not set +# CONFIG_NET_VENDOR_DLINK is not set +# CONFIG_NET_VENDOR_EMULEX is not set +# CONFIG_NET_VENDOR_EZCHIP is not set +# CONFIG_NET_VENDOR_FUNGIBLE is not set +# CONFIG_NET_VENDOR_GOOGLE is not set +# CONFIG_NET_VENDOR_HUAWEI is not set +# CONFIG_NET_VENDOR_INTEL is not set +# CONFIG_NET_VENDOR_LITEX is not set +# CONFIG_NET_VENDOR_MARVELL is not set +# CONFIG_NET_VENDOR_MICREL is not set +# CONFIG_NET_VENDOR_MICROCHIP is not set +# CONFIG_NET_VENDOR_MICROSEMI is not set +# CONFIG_NET_VENDOR_MICROSOFT is not set +# CONFIG_NET_VENDOR_MYRI is not set +# CONFIG_NET_VENDOR_NATSEMI is not set +# CONFIG_NET_VENDOR_NI is not set +# CONFIG_NET_VENDOR_NVIDIA is not set +# CONFIG_NET_VENDOR_OKI is not set +# CONFIG_NET_VENDOR_PENSANDO is not set +# CONFIG_NET_VENDOR_QLOGIC is not set +# CONFIG_NET_VENDOR_QUALCOMM is not set +# CONFIG_NET_VENDOR_RDC is not set +# CONFIG_NET_VENDOR_REALTEK is not set +# CONFIG_NET_VENDOR_RENESAS is not set +# CONFIG_NET_VENDOR_ROCKER is not set +# CONFIG_NET_VENDOR_SAMSUNG is not set +# CONFIG_NET_VENDOR_SEEQ is not set +# CONFIG_NET_VENDOR_SILAN is not set +# CONFIG_NET_VENDOR_SIS is not set +# CONFIG_NET_VENDOR_SMSC is not set +# CONFIG_NET_VENDOR_STMICRO is not set +# CONFIG_NET_VENDOR_SUN is not set +# CONFIG_NET_VENDOR_TEHUTI is not set +# CONFIG_NET_VENDOR_TI is not set +# CONFIG_NET_VENDOR_VIA is not set +# CONFIG_NET_VENDOR_WIZNET is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_NFC is not set +# CONFIG_NFP is not set +CONFIG_NODES_SHIFT=1 +# CONFIG_NOZOMI is not set +CONFIG_NR_CPUS=512 +# CONFIG_NTB is not set +CONFIG_NTFS_RW=y +# CONFIG_NULL_TTY is not set +# CONFIG_NUMA_BALANCING_DEFAULT_ENABLED is not set +# CONFIG_NVMEM is not set +# CONFIG_NXP_C45_TJA11XX_PHY is not set +# CONFIG_N_GSM is not set +# CONFIG_OF is not set +# CONFIG_OMFS_FS is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_PACKING is not set +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_PANIC_TIMEOUT=0 +# CONFIG_PARPORT is not set +# CONFIG_PC104 is not set +# CONFIG_PCCARD is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIPCWATCHDOG is not set +# CONFIG_PCI_EPF_NTB is not set +# CONFIG_PCI_MESON is not set +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCS_XPCS is not set +# CONFIG_PECI is not set +CONFIG_PGTABLE_LEVELS=5 +# CONFIG_PHANTOM is not set +# CONFIG_PHONET is not set +# CONFIG_PHY_CAN_TRANSCEIVER is not set +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +# CONFIG_PINCTRL is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_POWERCAP is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_PPP is not set +# CONFIG_PPS_CLIENT_GPIO is not set +# CONFIG_PPS_CLIENT_LDISC is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PSI_DEFAULT_DISABLED=y +# CONFIG_PSTORE is not set +CONFIG_PTDUMP_DEBUGFS=y +CONFIG_PTP_1588_CLOCK=m +# CONFIG_PTP_1588_CLOCK_IDT82P33 is not set +CONFIG_PTP_1588_CLOCK_OPTIONAL=m +# CONFIG_PVPANIC is not set +# CONFIG_PWM is not set +# CONFIG_QNX4FS_FS is not set +# CONFIG_QNX6FS_FS is not set +# CONFIG_QRTR is not set +# CONFIG_RAPIDIO is not set +# CONFIG_RAVE_SP_CORE is not set +# CONFIG_RC_CORE is not set +CONFIG_REGMAP_I2C=m +# CONFIG_REGULATOR is not set +# CONFIG_REISERFS_FS is not set +# CONFIG_REMOTEPROC is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_RFKILL is not set +# CONFIG_RMI4_CORE is not set +# CONFIG_ROMFS_FS is not set +# CONFIG_RPMSG_VIRTIO is not set +# CONFIG_S2IO is not set +# CONFIG_SAMPLE_FTRACE_DIRECT is not set +CONFIG_SCHED_SMT=y +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_BFA_FC is not set +# CONFIG_SCSI_BNX2X_FCOE is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_SCSI_CHELSIO_FCOE is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_EFCT is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_SCSI_FDOMAIN_PCI is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_MPI3MR is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_MYRB is not set +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_PMCRAID is not set +# CONFIG_SCSI_QLA_FC is not set +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_SNIC is not set +CONFIG_SCSI_SRP_ATTRS=m +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_UFSHCD is not set +# CONFIG_SCSI_WD719X is not set +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SENSORS_APDS990X is not set +# CONFIG_SENSORS_BH1770 is not set +# CONFIG_SENSORS_LIS3_I2C is not set +# CONFIG_SENSORS_TSL2550 is not set +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +CONFIG_SERIAL_CORE=m +# CONFIG_SERIAL_FSL_LINFLEXUART is not set +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_SC16IS7XX is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIO is not set +# CONFIG_SFC is not set +# CONFIG_SFC_FALCON is not set +# CONFIG_SFC_SIENA is not set +# CONFIG_SGI_PARTITION is not set +# CONFIG_SLIP is not set +# CONFIG_SOC_TI is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +# CONFIG_SOUND is not set +# CONFIG_SPI is not set +# CONFIG_SPMI is not set +# CONFIG_SRAM is not set +# CONFIG_SSB is not set +# CONFIG_STAGING is not set +CONFIG_STANDALONE=y +# CONFIG_SUN_PARTITION is not set +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_SYSV_FS is not set +# CONFIG_TCG_TIS_I2C_ATMEL is not set +# CONFIG_TCG_TIS_I2C_CR50 is not set +# CONFIG_TCG_TIS_I2C_INFINEON is not set +# CONFIG_TCG_TIS_I2C_NUVOTON is not set +# CONFIG_TCG_TIS_ST33ZP24_I2C is not set +# CONFIG_THERMAL is not set +# CONFIG_TIFM_CORE is not set +# CONFIG_TPS6105X is not set +# CONFIG_TPS65010 is not set +# CONFIG_TPS6507X is not set +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +# CONFIG_TTY_PRINTK is not set +# CONFIG_UACCE is not set +CONFIG_UBSAN=y +# CONFIG_UFS_FS is not set +# CONFIG_UIO_AEC is not set +# CONFIG_UIO_CIF is not set +# CONFIG_UIO_DMEM_GENIRQ is not set +# CONFIG_UIO_MF624 is not set +# CONFIG_UIO_NETX is not set +# CONFIG_UIO_PCI_GENERIC is not set +# CONFIG_UIO_PDRV_GENIRQ is not set +# CONFIG_UIO_PRUSS is not set +# CONFIG_UIO_SERCOS3 is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_USB4 is not set +# CONFIG_USB_SUPPORT is not set +# CONFIG_VDPA is not set +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m +# CONFIG_VIRTIO_MMIO is not set +CONFIG_VIRT_CPU_ACCOUNTING_NATIVE=y +CONFIG_VMAP_STACK=y +# CONFIG_VME_BUS is not set +# CONFIG_VMXNET3 is not set +# CONFIG_VXFS_FS is not set +# CONFIG_VXGE is not set +# CONFIG_W1 is not set +# CONFIG_WAN is not set +# CONFIG_WDTPCI is not set +# CONFIG_WWAN is not set +# CONFIG_X25 is not set +# CONFIG_XILINX_EMACLITE is not set +# CONFIG_XILINX_LL_TEMAC is not set +# CONFIG_XILINX_SDFEC is not set +# CONFIG_XILINX_WATCHDOG is not set +# CONFIG_XILLYBUS is not set +# CONFIG_XZ_DEC_ARM is not set +# CONFIG_XZ_DEC_ARMTHUMB is not set +# CONFIG_XZ_DEC_IA64 is not set +# CONFIG_XZ_DEC_POWERPC is not set +# CONFIG_XZ_DEC_SPARC is not set +# CONFIG_XZ_DEC_TEST is not set +# CONFIG_XZ_DEC_X86 is not set +# CONFIG_YELLOWFIN is not set +# CONFIG_ZIIRAVE_WATCHDOG is not set diff --git a/debian.hwe-5.19/config/s390x/config.flavour.generic b/debian.hwe-5.19/config/s390x/config.flavour.generic new file mode 100644 index 000000000000..bb7773a235d2 --- /dev/null +++ b/debian.hwe-5.19/config/s390x/config.flavour.generic @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# diff --git a/debian.hwe-5.19/control.d/flavour-control.stub b/debian.hwe-5.19/control.d/flavour-control.stub new file mode 100644 index 000000000000..2c0bcd194a5c --- /dev/null +++ b/debian.hwe-5.19/control.d/flavour-control.stub @@ -0,0 +1,142 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER, initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, linux-doc | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version PKGVER on DESC + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-PKGVER-ABINUM-FLAVOUR, wireless-regdb +Description: Linux kernel extra modules for version PKGVER on DESC + This package contains the Linux kernel extra modules for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR-dbgsym +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides the=SIGN-ME-TXT= kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-tools-PKGVER-ABINUM +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-cloud-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version PKGVER-ABINUM on + =HUMAN=. + diff --git a/debian.hwe-5.19/control.d/generic.inclusion-list b/debian.hwe-5.19/control.d/generic.inclusion-list new file mode 100644 index 000000000000..9b9bd7c35ae0 --- /dev/null +++ b/debian.hwe-5.19/control.d/generic.inclusion-list @@ -0,0 +1,303 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/kvm/vfio.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/s390/* +arch/x86/kvm/kvm-amd.ko +arch/x86/kvm/kvm-intel.ko +crypto/* +drivers/acpi/* +drivers/ata/acard-ahci.ko +drivers/ata/ahci.ko +drivers/ata/ahci_platform.ko +drivers/ata/ahci_tegra.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/floppy.ko +drivers/block/loop.ko +drivers/block/nbd.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/bus/tegra-aconnect.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/clk/clk-max77686.ko +drivers/cpufreq/tegra186-cpufreq.ko +drivers/cpufreq/tegra194-cpufreq.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/dma/tegra210-adma.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/gpio/gpio-max77620.ko +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/bochs/bochs-drm.ko +drivers/gpu/drm/cirrus/cirrus.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/tegra/tegra-drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/gpu/drm/vboxvideo/vboxvideo.ko +drivers/gpu/drm/virtio/virtio-gpu.ko +drivers/gpu/drm/vmwgfx/vmwgfx.ko +drivers/gpu/drm/xen/drm_xen_front.ko +drivers/gpu/host1x/host1x.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/hid.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/hwmon/pwm-fan.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_mad.ko +drivers/infiniband/core/ib_sa.ko +drivers/infiniband/core/iw_cm.ko +drivers/infiniband/core/rdma_cm.ko +drivers/infiniband/ulp/iser/ib_iser.ko +drivers/infiniband/ulp/isert/ib_isert.ko +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/input-leds.ko +drivers/input/joydev.ko +drivers/input/keyboard/gpio_keys.ko +drivers/input/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/memory/tegra/tegra210-emc.ko +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mmc/host/sdhci-tegra.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/iavf/iavf.ko +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/netronome/nfp/nfp.ko +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.ko +drivers/net/ethernet/stmicro/stmmac/stmmac-platform.ko +drivers/net/ethernet/stmicro/stmmac/stmmac.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/pcs/pcs-xpcs.ko +drivers/net/phy/marvell.ko +drivers/net/phy/phylink.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/controller/dwc/pcie-tegra194.ko +drivers/pci/host/vmd.ko +drivers/phy/tegra/phy-tegra194-p2u.ko +drivers/pinctrl/pinctrl-max77620.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/pwm/pwm-tegra.ko +drivers/regulator/fixed.ko +drivers/regulator/max77620-regulator.ko +drivers/rtc/rtc-max77686.ko +drivers/rtc/rtc-tegra.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/BusLogic.ko +drivers/scsi/aacraid/* +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_transport_spi.ko +drivers/scsi/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/vmw_pvscsi.ko +drivers/spi/spi-tegra114.ko +drivers/staging/media/tegra-video/tegra-video.ko +drivers/target/loopback/tcm_loop.ko +drivers/target/target_core*.ko +drivers/thermal/tegra/tegra-bpmp-thermal.ko +drivers/tty/serial/jsm/* +drivers/tty/serial/serial-tegra.ko +drivers/uio/uio.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/gadget/udc/tegra-xudc.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +drivers/video/fbdev/* +drivers/video/vgastate.ko +drivers/virt/vboxguest/vboxguest.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/overlayfs/* +fs/shiftfs.ko +fs/squashfs/* +fs/udf/* +fs/ufs/* +fs/vboxsf/vboxsf.ko +fs/xfs/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bpfilter/* +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +! find sound/core -name oss -prune -o -name *.ko -print +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/hda/snd-hda-tegra.ko +sound/pci/snd-ens1370.ko +sound/soc/tegra/snd-soc-tegra186-dspk.ko +sound/soc/tegra/snd-soc-tegra210-admaif.ko +sound/soc/tegra/snd-soc-tegra210-ahub.ko +sound/soc/tegra/snd-soc-tegra210-dmic.ko +sound/soc/tegra/snd-soc-tegra210-i2s.ko +sound/soundcore.ko +ubuntu/ubuntu-host/ubuntu-host.ko diff --git a/debian.hwe-5.19/control.d/linux-doc.stub b/debian.hwe-5.19/control.d/linux-doc.stub new file mode 100644 index 000000000000..a0e04473286d --- /dev/null +++ b/debian.hwe-5.19/control.d/linux-doc.stub @@ -0,0 +1,12 @@ +Package: linux-doc +Build-Profiles: +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel specific documentation for version PKGVER + This package provides the various documents in the PKGVER kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/SRCPKGNAME-doc/00-INDEX for a list of what is + contained in each file. diff --git a/debian.hwe-5.19/control.d/linux-libc-dev.stub b/debian.hwe-5.19/control.d/linux-libc-dev.stub new file mode 100644 index 000000000000..fb045233d401 --- /dev/null +++ b/debian.hwe-5.19/control.d/linux-libc-dev.stub @@ -0,0 +1,12 @@ +Package: linux-libc-dev +Architecture: amd64 armhf arm64 i386 ppc64el riscv64 s390x +Depends: ${misc:Depends} +Conflicts: linux-kernel-headers +Replaces: linux-kernel-headers +Provides: linux-kernel-headers, aufs-dev +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use SRCPKGNAME-headers-* packages for that. diff --git a/debian.hwe-5.19/control.d/vars.generic b/debian.hwe-5.19/control.d/vars.generic new file mode 100644 index 000000000000..ca144cfac896 --- /dev/null +++ b/debian.hwe-5.19/control.d/vars.generic @@ -0,0 +1,6 @@ +arch="amd64 armhf arm64 ppc64el s390x" +supported="Generic" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [armhf arm64] | grub-efi-arm64 [arm64] | grub-efi-arm [armhf] | grub-ieee1275 [ppc64el]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.hwe-5.19/control.d/vars.generic-64k b/debian.hwe-5.19/control.d/vars.generic-64k new file mode 100644 index 000000000000..82213f4803fc --- /dev/null +++ b/debian.hwe-5.19/control.d/vars.generic-64k @@ -0,0 +1,6 @@ +arch="arm64" +supported="Generic 64K pages" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-efi-arm64 [arm64] | flash-kernel [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff --git a/debian.hwe-5.19/control.d/vars.generic-lpae b/debian.hwe-5.19/control.d/vars.generic-lpae new file mode 100644 index 000000000000..107ebc52a0b3 --- /dev/null +++ b/debian.hwe-5.19/control.d/vars.generic-lpae @@ -0,0 +1,6 @@ +arch="armhf" +supported="Generic LPAE" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="flash-kernel [armhf] | grub-efi-arm [armhf]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff --git a/debian.hwe-5.19/control.stub.in b/debian.hwe-5.19/control.stub.in new file mode 100644 index 000000000000..9529976122f7 --- /dev/null +++ b/debian.hwe-5.19/control.stub.in @@ -0,0 +1,156 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kmod , + makedumpfile [amd64] , + libcap-dev , + libelf-dev , + libnewt-dev , + libiberty-dev , + default-jdk-headless , + java-common , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64 s390x] , + pahole [amd64 arm64 armhf ppc64el s390x riscv64] | dwarves (>= 1.21) [amd64 arm64 armhf ppc64el s390x riscv64] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-dev , + python3-sphinx , + python3-sphinx-rtd-theme , + fontconfig , + python3-docutils , + imagemagick , + graphviz , + dvipng , + fonts-noto-cjk , + latexmk , + librsvg2-bin , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: linux-source-PKGVER +Build-Profiles: +Architecture: all +Section: devel +Priority: optional +Provides: linux-source +Depends: ${misc:Depends}, binutils, bzip2, coreutils +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version PKGVER with Ubuntu patches + This package provides the source code for the Linux kernel version + PKGVER. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, lsb-release +Description: Linux kernel version specific tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER. + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 armhf arm64 ppc64el s390x +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-cloud-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel version specific cloud tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools for cloud tools for version PKGVER. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-cloud-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-tools-host +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, python3 +Description: Linux kernel VM host tools + This package provides kernel tools useful for VM hosts. + diff --git a/debian.hwe-5.19/copyright b/debian.hwe-5.19/copyright new file mode 100644 index 000000000000..d1d04a6d6697 --- /dev/null +++ b/debian.hwe-5.19/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/debian.hwe-5.19/etc/getabis b/debian.hwe-5.19/etc/getabis new file mode 100644 index 000000000000..c6d2c351492c --- /dev/null +++ b/debian.hwe-5.19/etc/getabis @@ -0,0 +1,19 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-hwe-5.19" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-hwe-5.19" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-hwe-5.19" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-hwe-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-hwe-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-hwe-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-hwe-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-hwe-5.19" +) + +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 --git a/debian.hwe-5.19/etc/kernelconfig b/debian.hwe-5.19/etc/kernelconfig new file mode 100644 index 000000000000..2ecc9e822d51 --- /dev/null +++ b/debian.hwe-5.19/etc/kernelconfig @@ -0,0 +1 @@ +archs="amd64 armhf arm64 ppc64el riscv64 s390x" diff --git a/debian.hwe-5.19/etc/update.conf b/debian.hwe-5.19/etc/update.conf new file mode 100644 index 000000000000..16b86110691e --- /dev/null +++ b/debian.hwe-5.19/etc/update.conf @@ -0,0 +1,8 @@ +# WARNING: we do not create update.conf when we are not a +# derivative. Various cranky components make use of this. +# If we start unconditionally creating update.conf we need +# to fix at least cranky close and cranky rebase. +RELEASE_REPO=git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/kinetic +SOURCE_RELEASE_BRANCH=master-next +DEBIAN_MASTER=debian.master +BACKPORT_SUFFIX=~22.04 diff --git a/debian.hwe-5.19/modprobe.d/common.conf b/debian.hwe-5.19/modprobe.d/common.conf new file mode 100644 index 000000000000..e0fbbd6e060d --- /dev/null +++ b/debian.hwe-5.19/modprobe.d/common.conf @@ -0,0 +1,3 @@ +# LP:1434842 -- disable OSS drivers by default to allow pulseaudio to emulate +blacklist snd-mixer-oss +blacklist snd-pcm-oss diff --git a/debian.hwe-5.19/reconstruct b/debian.hwe-5.19/reconstruct new file mode 100644 index 000000000000..45ee93a1ad04 --- /dev/null +++ b/debian.hwe-5.19/reconstruct @@ -0,0 +1,68 @@ +# Recreate any symlinks created since the orig. +# Remove any files deleted from the orig. +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml' +rm -f 'arch/arm/crypto/blake2s-shash.c' +rm -f 'arch/x86/crypto/blake2s-shash.c' +rm -f 'crypto/blake2s_generic.c' +rm -f 'fs/io-wq.c' +rm -f 'fs/io-wq.h' +rm -f 'fs/io_uring.c' +rm -f 'net/sched/cls_tcindex.c' +rm -f 'tools/testing/selftests/cpu-hotplug/config' +rm -f 'tools/testing/selftests/net/bpf/Makefile' +rm -f 'tools/testing/selftests/net/bpf/nat6to4.c' +chmod +x 'debian.hwe-5.19/scripts/helpers/copy-files' +chmod +x 'debian.hwe-5.19/scripts/helpers/local-mangle' +chmod +x 'debian/cloud-tools/hv_get_dhcp_info' +chmod +x 'debian/cloud-tools/hv_get_dns_info' +chmod +x 'debian/cloud-tools/hv_set_ifconfig' +chmod +x 'debian/rules' +chmod +x 'debian/scripts/abi-check' +chmod +x 'debian/scripts/config-check' +chmod +x 'debian/scripts/control-create' +chmod +x 'debian/scripts/dkms-build' +chmod +x 'debian/scripts/dkms-build--nvidia-N' +chmod +x 'debian/scripts/dkms-build-configure--zfs' +chmod +x 'debian/scripts/file-downloader' +chmod +x 'debian/scripts/helpers/close' +chmod +x 'debian/scripts/helpers/open' +chmod +x 'debian/scripts/helpers/rebase' +chmod +x 'debian/scripts/link-headers' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +chmod +x 'debian/scripts/misc/final-checks' +chmod +x 'debian/scripts/misc/find-missing-sauce.sh' +chmod +x 'debian/scripts/misc/fw-to-ihex.sh' +chmod +x 'debian/scripts/misc/gen-auto-reconstruct' +chmod +x 'debian/scripts/misc/getabis' +chmod +x 'debian/scripts/misc/git-ubuntu-log' +chmod +x 'debian/scripts/misc/insert-changes' +chmod +x 'debian/scripts/misc/insert-mainline-changes' +chmod +x 'debian/scripts/misc/insert-ubuntu-changes' +chmod +x 'debian/scripts/misc/kernelconfig' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/tristate.sh' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-check' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/module-signature-check' +chmod +x 'debian/scripts/retpoline-check' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod -x 'drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod +x 'update-dkms-versions' +chmod +x 'update-version-dkms' +exit 0 diff --git a/debian.hwe-5.19/rules.d/amd64.mk b/debian.hwe-5.19/rules.d/amd64.mk new file mode 100644 index 000000000000..d0384f0227a4 --- /dev/null +++ b/debian.hwe-5.19/rules.d/amd64.mk @@ -0,0 +1,23 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true +do_tools_x86 = true +do_tools_hyperv = true +do_tools_host = true +do_extras_package = true +do_tools_common = true +do_tools_acpidbg = true +do_odm_drivers = true diff --git a/debian.hwe-5.19/rules.d/arm64.mk b/debian.hwe-5.19/rules.d/arm64.mk new file mode 100644 index 000000000000..d215e1bda1fe --- /dev/null +++ b/debian.hwe-5.19/rules.d/arm64.mk @@ -0,0 +1,21 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = generic generic-64k +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +no_dumpfile = true +uefi_signed = true + +vdso = vdso_install + +do_extras_package = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_dtbs = true diff --git a/debian.hwe-5.19/rules.d/armhf.mk b/debian.hwe-5.19/rules.d/armhf.mk new file mode 100644 index 000000000000..99c49b8f42ae --- /dev/null +++ b/debian.hwe-5.19/rules.d/armhf.mk @@ -0,0 +1,17 @@ +human_arch = ARM (hard float) +build_arch = arm +header_arch = arm +defconfig = defconfig +flavours = generic generic-lpae +build_image = zImage +kernel_file = arch/$(build_arch)/boot/zImage +install_file = vmlinuz +no_dumpfile = true + +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_dtbs = true diff --git a/debian.hwe-5.19/rules.d/hooks.mk b/debian.hwe-5.19/rules.d/hooks.mk new file mode 100644 index 000000000000..af48c2179284 --- /dev/null +++ b/debian.hwe-5.19/rules.d/hooks.mk @@ -0,0 +1,5 @@ +do_enforce_all = true +do_libc_dev_package = false +do_doc_package = false +do_tools_common = false +do_tools_host = false diff --git a/debian.hwe-5.19/rules.d/i386.mk b/debian.hwe-5.19/rules.d/i386.mk new file mode 100644 index 000000000000..c2e41a076823 --- /dev/null +++ b/debian.hwe-5.19/rules.d/i386.mk @@ -0,0 +1,18 @@ +human_arch = 32 bit x86 +build_arch = i386 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +do_flavour_image_package = false +do_tools = false +do_tools_common = false +do_extras_package = false +do_source_package = false +do_doc_package = false +do_flavour_header_package = false +do_common_headers_indep = false diff --git a/debian.hwe-5.19/rules.d/ppc64el.mk b/debian.hwe-5.19/rules.d/ppc64el.mk new file mode 100644 index 000000000000..786e7beae016 --- /dev/null +++ b/debian.hwe-5.19/rules.d/ppc64el.mk @@ -0,0 +1,18 @@ +human_arch = PowerPC 64el +build_arch = powerpc +header_arch = $(build_arch) +defconfig = pseries_le_defconfig +flavours = generic +build_image = vmlinux.strip +kernel_file = arch/powerpc/boot/vmlinux.strip +install_file = vmlinux +no_dumpfile = true +do_extras_package = true +opal_signed = false +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +#do_flavour_image_package = false diff --git a/debian.hwe-5.19/rules.d/riscv64.mk b/debian.hwe-5.19/rules.d/riscv64.mk new file mode 100644 index 000000000000..425537f83142 --- /dev/null +++ b/debian.hwe-5.19/rules.d/riscv64.mk @@ -0,0 +1,20 @@ +human_arch = RISC-V +build_arch = riscv +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = Image +kernel_file = arch/$(build_arch)/boot/Image +install_file = vmlinuz + +vdso = vdso_install +no_dumpfile = true + +do_flavour_image_package = false +do_tools = false +do_tools_common = false +do_extras_package = false +do_source_package = false +do_doc_package = false +do_flavour_header_package = false +do_common_headers_indep = false diff --git a/debian.hwe-5.19/rules.d/s390x.mk b/debian.hwe-5.19/rules.d/s390x.mk new file mode 100644 index 000000000000..0620c638a724 --- /dev/null +++ b/debian.hwe-5.19/rules.d/s390x.mk @@ -0,0 +1,19 @@ +human_arch = System 390x +build_arch = s390 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz + +vdso = vdso_install +no_dumpfile = true + +do_extras_package = true +sipl_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true diff --git a/debian.hwe-5.19/rules.d/x32.mk b/debian.hwe-5.19/rules.d/x32.mk new file mode 100644 index 000000000000..84918880e252 --- /dev/null +++ b/debian.hwe-5.19/rules.d/x32.mk @@ -0,0 +1,13 @@ +human_arch = 64 bit x86 (32 bit userspace) +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +uefi_signed = true + +do_flavour_image_package = false diff --git a/debian.hwe-5.19/scripts/helpers/copy-files b/debian.hwe-5.19/scripts/helpers/copy-files new file mode 100755 index 000000000000..8b40afd31712 --- /dev/null +++ b/debian.hwe-5.19/scripts/helpers/copy-files @@ -0,0 +1,62 @@ +#!/bin/bash -eu + +if [ -f debian/debian.env ]; then + # shellcheck disable=SC1091 + . debian/debian.env +fi + +if [ ! -d "${DEBIAN}" ]; then + echo You must run this script from the top directory of this repository. + exit 1 +fi + +CONF="${DEBIAN}"/etc/update.conf +if [ -f "${CONF}" ]; then + # shellcheck disable=SC1090 + . "${CONF}" +fi + +FOREIGN_ARCHES="" +LOCAL_CONF="${DEBIAN}/etc/local.conf" +if [ -f "${LOCAL_CONF}" ]; then + # shellcheck disable=SC1090 + . "${LOCAL_CONF}" +fi + +SKIP_RULES_D=${SKIP_RULES_D:-} + +# +# Update configs from master +# +rsync -avc --delete "${DEBIAN_MASTER}/config/" "${DEBIAN}/config" + +# +# Update package and DTB settings from master. +# +if [ -z "${SKIP_RULES_D}" ] ; then + rsync -avc "${DEBIAN_MASTER}/rules.d/"*.mk "${DEBIAN}/rules.d/" +fi + +# Remove the .mk files from the arch's that are not supported +for i in ${FOREIGN_ARCHES} +do + rm -f "${DEBIAN}/rules.d/${i}.mk" + git rm -f --ignore-unmatch "${DEBIAN}/rules.d/${i}.mk" || true +done + +# +# Update modprobe.d from master +# +# Some releases (trusty) don't have this directory, and rsync would fail +# without this check. +if [ -d "${DEBIAN}/modprobe.d/" ]; then + rsync -avc --delete "${DEBIAN_MASTER}/modprobe.d/" "${DEBIAN}/modprobe.d" +fi + +cp -p "${DEBIAN_MASTER}/control.d/"*.inclusion-list "${DEBIAN}/control.d" + +cp -p "${DEBIAN_MASTER}/reconstruct" "${DEBIAN}/reconstruct" + +if [ -x "${DEBIAN}/scripts/helpers/local-mangle" ]; then + "./${DEBIAN}/scripts/helpers/local-mangle" +fi diff --git a/debian.hwe-5.19/scripts/helpers/local-mangle b/debian.hwe-5.19/scripts/helpers/local-mangle new file mode 100755 index 000000000000..2394237e66ce --- /dev/null +++ b/debian.hwe-5.19/scripts/helpers/local-mangle @@ -0,0 +1,24 @@ +#!/bin/bash -eu + +. debian/debian.env + +# Override config settings (in the annotations) which are not applicable in the +# 22-04/Jammy environment when using GCC-11. +GCC=$(grep "export gcc.=" debian/rules.d/0-common-vars.mk | cut -d= -f2) +GCCV=$(${CHROOT:-} $GCC --version | grep ^gcc | cut -d" " -f3 | cut -d. -f1) + +if [ "$GCCV" = "11" ]; then + sed -i -e "/CONFIG_INIT_STACK_ALL_ZERO/s/'y'/'-'/g" \ + -e "/CONFIG_SHADOW_CALL_STACK/s/'y'/'-'/g" \ + "${DEBIAN}/config/annotations" +fi + +# Override options in rules.d/hooks.mk (normally master does not have this +# file but it got added for generic annotations enforcement. +cat <>"${DEBIAN}/rules.d/hooks.mk" +do_libc_dev_package = false +do_doc_package = false +do_tools_common = false +do_tools_host = false +EOD + diff --git a/debian.hwe-5.19/tracking-bug b/debian.hwe-5.19/tracking-bug new file mode 100644 index 000000000000..f212b8e913b8 --- /dev/null +++ b/debian.hwe-5.19/tracking-bug @@ -0,0 +1 @@ +2019826 2023.05.15-1 diff --git a/debian.hwe-5.19/upstream-stable b/debian.hwe-5.19/upstream-stable new file mode 100644 index 000000000000..c82a4bc64e13 --- /dev/null +++ b/debian.hwe-5.19/upstream-stable @@ -0,0 +1,3 @@ +# The following upstream stable releases have been ported: +[upstream-stable] + linux-5.19.y = v5.19.7 diff --git a/debian.hwe-5.19/variants b/debian.hwe-5.19/variants new file mode 100644 index 000000000000..519e5363c03b --- /dev/null +++ b/debian.hwe-5.19/variants @@ -0,0 +1 @@ +-hwe-22.04 diff --git a/debian.nvidia-5.19/abi/abiname b/debian.nvidia-5.19/abi/abiname new file mode 100644 index 000000000000..52a9f4e2bf4d --- /dev/null +++ b/debian.nvidia-5.19/abi/abiname @@ -0,0 +1 @@ +1010 diff --git a/debian.nvidia-5.19/abi/amd64/nvidia b/debian.nvidia-5.19/abi/amd64/nvidia new file mode 100644 index 000000000000..14c037cebc89 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia @@ -0,0 +1,27087 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1eea8ae7 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3221b892 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0xa3e37815 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x05cd2e87 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a4da2fc devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1dbc9463 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x20789767 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x22d7106d cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2547ff27 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x25debe31 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x29cce8db to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2b3143a9 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2c1723d6 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x334ad9ee cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x3fa350df find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4902fd12 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x497312ab devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4aed414c cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4cfae129 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x536ec99d cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5429d0d1 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5afc24da __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5de3fce4 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x62ad0b9f cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x65dd4166 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66d8e2be cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7211655f cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x73044f6e is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x79a44f62 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7aaf7dd0 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7f79cd39 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x81939666 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x82ffcb77 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x86d690da is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x889ffe23 cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8b9623be devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa121c26f cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa686294b to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa6dc0ce3 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab444de5 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae1ce7a1 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae93fa48 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf386cb9 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbd45a28b devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbdc4106e cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbf73fd9e to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc56f9fc3 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xccc6dfcb cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd1d20ddb cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd26ba491 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdc3ffce5 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdcf44bfc devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdd92e93d cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfe8dd771 is_cxl_memdev drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x00ad6433 dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x08128c8f dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x371c9076 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x38cc7351 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x48163155 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x488bad77 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x544afd92 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x56bdcfde dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x74ab4569 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x814b449d dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x856f8941 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x93af4fda dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xa39d96e0 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xab46aaa2 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb0134751 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xb98deb43 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xdd00ddb1 dma_buf_map_attachment vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +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 0x71835cf5 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x4605cf12 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x5005a47b crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xcea59375 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd8ca70b8 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xe5df5ad7 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xf6a3e957 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x0a473f08 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x27e9b800 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xd6d07d57 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0xaeb7f11b sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x112c83e1 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0x97e0f697 acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x79efc2ed suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xaedc377a bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xb99abbd9 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 0x14b36ec8 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x37aad3c5 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3e54f43b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x541b6a93 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x5ae3d4f6 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x61f4b5ac paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7c192590 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x7d3caddb pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc3129f1f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xd0552674 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe8a1cdc3 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xe913bca8 pi_init +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xde9673f6 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x56431de0 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x3ea45272 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x3337e9a5 ipmi_smi_watcher_register +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 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb40b7820 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 0xe98c507d ipmb_checksum +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xec1c2a90 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xee00b22d ipmi_add_smi +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 0xfd8a5fa6 ipmi_smi_watcher_unregister +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 0x62808faf st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8acde181 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa57ed355 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe3fc732d st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x045f16fa xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x858f0880 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xe6bff7d0 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x293837c6 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6ecf0a10 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xe11c1062 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x92321368 atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc141363a atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xe91b07c6 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/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 0x075e6946 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12aa813f fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17e9f215 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1adc59b2 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25d4a52c fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ccf9fb2 fw_iso_context_start +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 0x599fd729 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x69be4be0 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7ec2a82c fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9c8aa105 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f2895d5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa223a0b4 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa515097d fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xacb7a77b fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7ca2066 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb8e682e1 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc2772c23 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc560a208 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2565a32 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe023889b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe05d7ccc fw_bus_type +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 0xe8bdadb4 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec08dc45 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec273422 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeebea262 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5163782 fw_iso_context_stop +EXPORT_SYMBOL drivers/fpga/dfl 0x0654233f dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xf675113d __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01ed5d92 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x02455661 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x03e72005 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0571c69e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06f2f997 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07a8b46a drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08e85fcd drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f61b461 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0f6b8a99 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11e2f624 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1234061c drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12bd8613 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x14f5b26d drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x189e24b5 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x18cf516f drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b109820 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1d80cc6a drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1f302312 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x204e2d3b drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21580c8a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21f30734 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x24706339 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x248864f5 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x253a5bd8 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2797396e drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29805b5f drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2b1faba8 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x31df3165 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x32532ccc drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x37bf4a57 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3cc1d4ae drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d2f6bef drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3fd80876 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x414f46fd drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x478a6cc6 drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x496cdd30 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b9fac63 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4bb2ba13 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e073803 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fa6ce29 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5427d9dc drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x54ed0552 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59eee2fc drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a33fdb9 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5c2db391 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ca12650 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5ff225be drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62694f52 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64079c1f drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64a2a921 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65540c7d drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x669a2c2c drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6807b39a drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6bcf4be7 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6f76bfd3 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x721c5b28 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x72ab7a03 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76819be1 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77fc8080 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x791c9989 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7e534990 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82533646 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x875714c6 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a009ec7 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8fa23ddb drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90ad2893 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9209a69f drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x931dc3ac drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x93557625 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9f6bd556 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa17ea902 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1cf4dc6 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa5002bda drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa79263a3 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa9884529 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaaa1c20f drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb02eb363 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb0e073ce drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4b7f3c1 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xba0cfb7c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbda1df8b drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbfad62bd drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc1d40f49 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9f75a86 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc0c5409 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc190fe7 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce8f796f drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd580224c drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd6d7dead drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda579f0e drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xda79b4c5 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdc24c024 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe2cfef13 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe61868bf drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe79e347a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe94ba7dd drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe9e82d27 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb37ffa9 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee1a04d7 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0febe25 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf3133569 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8f5bc8a drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfa33a30b drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfaa65dd9 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb6692a1 drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfc799078 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd4ec3a2 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfdb0a51b drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01bf4680 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02190ae7 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e9651c drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x043bb53e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ec3201 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0604c35b drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0793b204 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07b44938 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e5ad60 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e6785a drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09f9ccf4 drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a49ca70 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae3d916 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b0cdaa4 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b59fa14 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b62ed56 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0babf657 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7e6585 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d156358 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4955a7 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f61ccd6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f68a5bb drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f94611c drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10360436 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1075dbf2 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108a1041 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1139d683 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1210e613 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x129f1ac2 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1321edde drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13816586 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141f804a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d68921 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14eb7bdd drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x177276c7 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1798078b drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e65f89 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1865adfc drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1983ad95 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19c316fc drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ab64b93 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfea658 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c331387 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3816d8 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d3ff76b drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edb9370 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fa1a6f0 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20374385 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2257deb7 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x229c9050 drm_crtc_vblank_restore +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 0x24f3613e drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x258939ec drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2600fac3 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x260dc9c4 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2754dad8 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282cc891 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x286bdeef drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28779e52 drm_printf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x289a66c8 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a391d8a drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a4f82d0 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a88cc77 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c51cd44 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6a0761 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd4b582 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfacaa3 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfb6c5f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e21f6cd drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e995a01 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f7cc49 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31af84b0 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d555e8 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3391282f drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33dacd5c drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e6d569 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3474f285 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e07110 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3668ca00 __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36f95daf drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37661128 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a755f8 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d6e4c0 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380ce220 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3889c886 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x390db9b1 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39191e56 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c24d27 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a3172e8 drm_client_modeset_dpms +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 0x3c1a3209 drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc8bf60 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d7c0019 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ec7dba5 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f06b32f drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f2b2dce drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fb8a358 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40ae8266 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41b40cda drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x423c48a5 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4260a65a drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4260c4c4 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x427d9e71 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4372889e drm_event_reserve_init_locked +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 0x452ac047 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d01f76 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48195a02 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48267879 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a1abf70 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a23d935 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be94964 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c503136 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d9ea8e0 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f24d3fa drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5029fe5b drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50979020 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e04747 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5154779c drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x535f0302 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54013767 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55626061 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e2f47e drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56561923 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b3311f drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b66fb5 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c5f8e2 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5764d6a6 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b4b890 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aeb52ef drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c17c354 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c208ea4 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ce93d3c drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d23ab44 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5deb27aa drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4acd41 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f983afc drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa2cd26 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ca8311 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60d7a597 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ed2e2c drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622f1b35 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637ec114 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64014965 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6447f3ec drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66455d4a drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66a3ff41 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66acade7 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66bf714d drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67343277 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6811a685 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x688572e7 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68fe9611 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab862f6 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b62d990 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b718079 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6564ac drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f85fa17 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70242f44 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7115e47d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x719fc717 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a2b3b5 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73c2de2b __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748135a2 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74d32def drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x770d15f1 drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794f57f1 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a7dee2c drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aab042f drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afa8ee6 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c443423 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7efd4924 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3acf42 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8022b4bb drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802c666f drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80b73b61 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fb3619 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e1e016 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829bfecf drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e8bfa1 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83699b8e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83939bb3 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8407cdde drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8438c639 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864efb4a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865fb469 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x866c510c drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8680599b drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87cb01fb drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87f81605 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889a185c drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8932ec01 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3d4b66 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a95cd36 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ad14a8f drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c12ca69 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c2633dd drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c346931 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d37681c drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3b5491 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dc6eec6 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e837e39 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90231ff7 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9136db6e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91ae3064 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920dac76 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9215775b drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92891313 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e25e3d drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94fd8518 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x951644e5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x951f2dd7 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x953d9007 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957ac233 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96109527 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ffe220 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97aaf643 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9844377f drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9915a72a drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a2456c drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e002f6 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ab2d6e2 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b3ac1cc drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b81b603 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc08a7c drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbec699 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e049392 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fddc039 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa14bcc05 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1d448e7 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1fb19cf drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3f1490d drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b7c9d9 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8132c96 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87273ae drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9e29e85 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab2c8253 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf2d779 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabfcbd3f drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad09544e drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9205d2 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae32bb84 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7aa4ff drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb26a9e drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2063e5 drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb061cf07 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb07b240f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0919a0e drm_mode_plane_set_obj_prop +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 0xb1480a23 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18e2581 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1a941ac drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2482291 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3147b62 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b02bcf drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c7eb32 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb40eac6e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43d7c84 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43f5e1f drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb44ee39d drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4905101 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6175965 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6cae6dc drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb738b2a8 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb749285b drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb75d83cd drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7acfbc4 drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9d5137b drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba75e508 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbaae067c drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbad8d8c6 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc224844 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbce336e2 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdcc2577 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9784a5 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb2922d drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf94804c drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06a8881 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0cabe40 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2091c5f drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc21e3b58 drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc22af5b1 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc34293ae drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc42df6e4 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48d34fa drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4caf482 drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56d0ac2 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58786f6 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f6a038 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6b4f9e5 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc78f9605 drm_encoder_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 0xc7d2cd1e drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fa16e2 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca051aaf drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcabc35e6 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb365296 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc31087d drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc5cb1ce drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc95e808 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd5ae7da drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc41ee0 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceb4b353 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcebe4115 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08c83ce drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f9d09d drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16d4312 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd227ca9b drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2cd6692 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5642643 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75cdaf1 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96c66e2 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda5ad660 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc240ea3 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde67018c drm_master_put +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 0xdf6fb072 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9735dd drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04824db drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0927aeb drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe117a9d6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12761ea drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1990c54 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe312a005 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36bfb5f __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4087344 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe408c42a drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe53524a8 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe73d5f4a drm_connector_list_iter_end +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 0xe8dd9b6a drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb9f7dbc drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec03799d drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc8f3ef drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xece9fef1 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd6006c drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeecc0b1d drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0153c97 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf018e632 drm_writeback_get_out_fence +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 0xf2258115 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3db4e70 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf45fb135 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf46a7305 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf50d455c drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf519b496 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5736392 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf594c6a4 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5aebdb9 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5bf8e70 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6b56c64 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c95c55 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6f35328 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7be04cd drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf817073d drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9ed6130 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa91902f drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa7ca94 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb455dd7 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb769359 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb1f10c drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2c3678 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde3ef71 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe1eaa36 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb34020 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc7ba89 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffdfb3e3 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x9f44c898 drm_buddy_init +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xabb5a026 drm_buddy_block_trim +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xbd5b3bcc drm_buddy_free_block +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x12088881 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0xd5c68914 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0114eee2 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02980069 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0486cc68 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04aae97a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05486aad drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054eeca6 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x063f6a54 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x072596d1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x084b910e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f22e96 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0acea06f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bc5ab20 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c7c479d drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d7fb3b2 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e48648b drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fedb2f4 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11519a81 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11ba8059 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11e9d4a7 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1325b7de drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13d10eb0 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x164e1d35 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e04492e drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x200dedcd drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2027cf44 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x230874f4 drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23ea2556 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f6aff4 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27204ba8 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x274457d3 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2afb436d drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bfc1902 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c003f76 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c70bdc4 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dd34765 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2efec798 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f6fda98 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3205b4f8 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32979c64 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x358c6574 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ef1104 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38968241 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ac406b drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f548a5 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a6d8ae9 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3af3cde7 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e1bf4fb drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f04f367 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f6d5354 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fdaed40 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ff5897c drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43570f7d drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43f4a8d9 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4645bf06 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46ecdafd __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47462053 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a306d94 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9c66b7 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c2adfec drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51de383a __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5204c678 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5297b460 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53a43540 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53f08329 drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55f85123 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x560aa28b __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e8c840 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5731e99e drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58ab3c9c drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c66a96 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x590467ed drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5972ddb0 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a1f3fbf drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5de27f __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bd3681f drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d9d5576 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x601cc312 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61004764 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654f551f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67fcdb91 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69224c7f drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2ddbfc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a710587 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c9c4c02 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e4b7acc drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e666c5c drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7366afd8 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74062de3 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79a800a5 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a091097 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ed95d59 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x827f04ea drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x841b70ec drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84f59a8c drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85c52a4f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x867358ec drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87140c77 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x872fb599 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87a0c295 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87b39a5c drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883d2cb7 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bcadcfe drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c50c728 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fdfa439 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ff4e6dc drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9281335f drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a8254d drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95df7e65 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9683520e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bde79aa __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cbaa408 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d49dd76 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f25a544 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fc90f3e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b9b302 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2d2d822 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4c6d386 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa56498e3 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9e23e8a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac1f4da1 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb27f57d2 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb361b13d drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb433ce36 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4341c73 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb55dbf7c drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6b50424 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb753cc8b drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8f73c1b drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb985374c drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb99161df drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9be3af7 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba1ab773 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb90af3b devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc8a184b drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc327d741 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3fd981d drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6652512 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c6b7c2 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc84f3a25 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbdef70e drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd4e8f84 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce1a731a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcea65918 __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd273b158 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4721de9 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6a652da drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6e974d3 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd86b481d drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a9b819 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b1cd81 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb399458 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc2495d8 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc49d435 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfa81303 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfbf4c48 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdff718dd drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0017c3f drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe03517cf drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2131823 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4374585 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe54f10c9 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5f3a251 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6385527 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8c2df57 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea73c545 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb96f87d drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec22bb97 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefd21957 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefe3bf4e drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2722aac drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30c5fb4 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42a1608 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf446e58b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf454f372 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4cd6c9a drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf512578e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf55a41a7 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf75480fe drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf92b9d04 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfba0454e drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7e7c8e drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff184210 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff896345 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0484e5c0 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x21dedbf5 mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24d319d5 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x42100919 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4ab43a23 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4c4bd304 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x58035215 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6b532c0f mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6e35cfa0 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x766c5dd3 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8d6ddb5f mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9989700f mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xacdbeecc mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xbc8e0b9d mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe5741a1e mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf1ac2bf3 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf40bc85f mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0c0ff672 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x116e453c drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x3b2b4728 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x66a4ff84 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x915d6642 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x92ef8465 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x957c73a6 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xaaea68c9 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe3d353d9 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfdcd4acc drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x5e9a5a94 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x61604a49 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x68557686 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x9080769f drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xa13a3d94 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09f07e7f drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x09fbbd86 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x131755b1 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d0c3acb drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x4e55ccfc drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c13d215 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9144df98 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9ed3eaf5 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa22d06d6 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xad1f45e9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb3e9870f drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbed76210 drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xbfbcb318 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc2363aa0 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd6f65e66 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe5954b1f drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x00560700 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ea2534b drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x11e0e2fc drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x120799f8 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x1fc6ace8 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x31ab2ebe drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32018600 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x344ef4df drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x485d13d2 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d6276aa drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ee4a3cb to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56ab0b13 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x690d6c02 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x762a3d31 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e931272 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x801b2f49 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x96d2ed8e drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9ec7533d drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa6021891 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xafa88294 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbf9d7595 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc55a6dd6 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7233b32 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc7397086 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd25f8d02 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd4bc00bc drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdd798ef7 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06a11426 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10080728 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a8e219a ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2962b70d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a7cad54 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ba0fcd4 ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e6725de ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x338b949c ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3837e7e6 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f604f61 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fe8d73c ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42742557 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42863a77 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4364dd49 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x461da3bd ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4773ce1e ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2b852f ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bae213a ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cdc5011 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e46e6c7 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50ee21ef ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58948bea ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a7874e4 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5dbaae75 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5de1e7e4 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e1c3254 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5f2b2263 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x616fe823 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x618024ad ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x634ecff2 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67eb7b89 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b510bd9 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x714bfcad ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79c82b84 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a42b336 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a71e592 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7adf6497 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83e15809 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84456aaa ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85801301 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85c91632 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x888ec858 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e84522c ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cf38566 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fe61db5 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa536980c ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9d25a45 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab7e2055 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaf9f4f42 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2668033 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb2f7d408 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5d1d6a7 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1b3340c ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4247c83 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc446ab14 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc66fcd2c ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc2492a4 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfeed7c3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3478c64 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdda7e50f ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfa32709 ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe02934d2 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe937922b ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec09a2f5 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xecd1366d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf124905a ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/hid/hid 0x8b143ae2 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x03218513 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x09d4febc ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0b29091e ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1455ec47 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x1751447e ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x370f8a6b ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3786bb38 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x381d2ca9 ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x392eb209 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3c7d621f ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3c859e9c ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4425a7d3 ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x48731611 ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4c6afbd7 ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x53c704eb ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5658d9c0 ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5a956f25 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5b259aa7 ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5cbe80a5 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x6c62e47c ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x81b65918 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x850e204f ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x893e8419 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x919df432 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9ad2e77b ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9f2c830a ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa22257d6 ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa369626e ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa873c60e ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xba146a2e ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc97dc510 ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd154cac4 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd69ae7f4 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd75d20e7 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe17798de ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe9ffa5e7 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xea85643a ishtp_cl_send +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xef4dac74 ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf16f22c7 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xf71a7768 ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfa8f0d00 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xfc0f3022 ishtp_cl_allocate +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd2d24e3a vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe082dd91 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xfb3d68c6 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 0xeb973932 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x16301c47 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x68ce43c8 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe8691483 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x237745da i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb972d148 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x32b1d1e1 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x15ed2cee iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x76f46910 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x043681ce iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x117560b1 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x083c36d3 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1ed25361 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xa42859b2 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x07aa8848 hts221_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x17b9f4d6 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x639d8897 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x22dd0a80 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x252077e5 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xd21fec7b st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x0ae40bfc __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1abd13f0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x2253d730 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x23c1585f iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x28400266 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x28c8e4dc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d76fd99 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x3cf3522f iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4286ddef iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x44d213f6 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x5140e3ed iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x56eea62b iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x60d0db00 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x659254b5 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x733928a8 iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x87d01131 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x9aa8c089 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xa400331b iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xc1691161 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xcb840583 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe9644687 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xfe74fef2 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xfef2e296 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x3a12c167 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x0fdcf197 iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1462f31c iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x1b451002 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xaa1364a0 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x35ef8260 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xa1853caf iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc565e974 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xecd811e2 iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x52284f69 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb395d67e iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x5e72b8f5 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x7ad2d264 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x88981c95 bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xb4f46597 bmp180_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14af8e42 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ae14306 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a87ae48 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45656d6b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x483e2c7c ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x57df822c ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa682eb4f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaba21bad ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae737454 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xccbad0aa ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd199d367 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde639d6e ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeb4e25b5 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf20765bf ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfdf3178d ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00690097 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00dc0d61 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00f8fe3a ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x013bcad1 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03f7c2d7 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x047013fb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x095557a8 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a640bdc ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d47f7d7 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0db7e576 ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1091521d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11ec5809 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14a98452 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15937253 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15d6f7be rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17dd2ec2 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c8ce251 ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc935b8 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb73a13 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x240ef11f rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2739005e ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x275038cd ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29277567 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b2be010 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bda66ef rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ccfae88 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5b793a rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30f4d3ac rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x314ed8bf ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x330717e3 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x331eb655 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x343d6416 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34da0896 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e8d4af rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37c6c70f rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x393b8784 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x399e52d9 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b7ce2f5 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c23f9a8 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d459f8d rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3efc50b9 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404b637c rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b820b4 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40c5e84b rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4171e8c8 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42ae0236 ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42c103f1 ib_port_unregister_client_groups +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 0x472cdc7e ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4890a514 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491d2b71 rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c73dd62 ib_drain_sq +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 0x5000e827 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5206fc90 rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53a2fbb6 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54af016f ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56e96d30 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5719f7cc rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a620600 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ba39d59 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bca19b2 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5df2d6c0 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e4e277d ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb65dbc rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff0169e rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60134a64 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61bdbd7b rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6239c318 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x643daebb ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64fd1f3c ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6584750c rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x666326d5 ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6754c339 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67db1afc ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69eb2dd3 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b903869 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c15dfdb ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c65f563 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d34d92e ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d50e201 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6df08eaf ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73e6e324 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75181d21 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77423fea rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x783912c3 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ec97a7 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ecc9d4 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba3455f rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bfd8def ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fabd964 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8118783c ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8219d056 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8281aa26 rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x855d0ad9 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85918d19 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86118cbb ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x876ebfff ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8985c3bd ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e0ab313 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ea60805 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91249e29 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91532657 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x916a9024 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91bd7381 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91eb1f23 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x921d914a rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x929d057e ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94384ee9 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94a5de76 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x950e98a4 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ea0d1e ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99f5f880 rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa07ee606 ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0dbfea2 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2e06944 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa32dd3b2 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4e12262 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa53043c6 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa726b4ce ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa805529f ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8376521 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa899021c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa922ae68 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab4c31c2 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab73e9ad ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca05f55 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa54791 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafc70c7a ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb32faca1 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5411933 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb64cb972 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb793c4fb rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7cc5e44 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb94cbf22 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb7464a6 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc0c495a rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0b6e92 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbec693df ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfc6a031 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc08c359e _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0dadef4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc282a254 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc51cd352 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6ab4226 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6d3675f rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c149b0 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcaf00ccf ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbeead48 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc71e77d ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce794f10 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf38fd49 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd43808e7 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8435c59 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd844bcf7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda4bfdeb rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb7ccbeb rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc431e1a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0476359 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0ac8c4a ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe246a27b ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe34d1d34 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4135853 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4717d31 ib_query_pkey +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 0xe5e20525 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6d874bf rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe85082d4 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8d92b9f rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea6b52ba ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb450c33 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedd75de6 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedf379b3 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee45fde9 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea69181 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb06043 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef93a4da rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2049f10 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf41dbce0 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf44d8df0 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6a146c4 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf884b5e3 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8c6df53 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa1692cc ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc11ff79 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc567be5 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc760524 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb893e4 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff57de2b ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x09fb5fde ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x11c0de2f _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1319b5dc ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x17ffdb5d ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23e82446 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x259c882b ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x34298c8a uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4845ed1e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4a637180 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53b1e704 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x68ef80b5 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7a233316 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x80c02f35 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8af81a06 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8fb6a683 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9914e37d uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x994d705d ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9bf46015 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cfd83d2 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa7616725 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa89373bb ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac714ebd uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb514f85d flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb5b58b6d uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc3bf0522 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5d154fa ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc84c6b7b ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcc14edff ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcdd784e5 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd37377bb ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xde2f9119 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe02736d2 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0296b33 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe96cf728 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xedd146b5 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf04442c5 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf5bf44bc uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0cc7df11 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x251507cc iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x43a6bfda iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c22ea81 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa03184d0 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xccedca3e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe69cf1bb iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf54c73ee iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05b486cd rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x077b3ac1 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0bf8461f rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0e0a0e57 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f78aa57 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x16b605e9 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e9b9ab0 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x248f00d6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c7b12a1 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47137241 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x493d382d rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54ab7baf rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x593e74c0 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x642bc702 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88e872fe rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b4281b1 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90ce7587 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x972c988f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97ae2835 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cd68814 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9fe04562 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1be00d4 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4d55cbe rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6dbf03b rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa842b2c0 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xac5811b2 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb895ccfa rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8d50501 rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xca22875d __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd6540f26 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb09f1da rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1abf63f rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf653cec3 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf868eb72 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0190b09b rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x09a95b7e rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e0d9123 rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x152dd874 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x15ed1810 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1b545eeb rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1f0e88d5 rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x25c846cc rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2f52030c rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x4adeb8d2 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5121b900 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x55246e26 rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x5679c26a rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6671ecfa rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6db28ffd rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x71e53a4d rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7e7c114e rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x83b3534e rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x844e4cb8 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x878bb484 rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8a26aeab rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x964292e6 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9dd09cad rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb153455a rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb8b94f94 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd7cdac44 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf0bd03f4 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xf8160313 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xfecc77f0 rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x03732f4b rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0bb2ef69 rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0c30e694 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x889af5ea rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xababc05b rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xcd5c4e3e rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xd9a714a5 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 0x3712b537 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 0xa99bebef rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xadf309fc rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xefb20282 rtrs_ib_dev_find_or_add +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x963d123b rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x9ed96d8b rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa11c79c1 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xaa8b390b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xca4597a4 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xdd4185cf rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2eab5525 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x36dde258 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3d292797 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70cbb08f gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7ec86d7e gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaf0f0101 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe461a944 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe7816d35 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xffb9034c gameport_stop_polling +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x1bc334ab iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x99df2837 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xb66e61e9 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0x7f940beb matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x40957974 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x697ffab3 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd1710eae ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xad7a8e28 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/rmi4/rmi_core 0xd9aa64f1 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x01f26ef0 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b88c859 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x55ba7bbc sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe020dd0c sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf8ded078 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xc5b82e6d ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe8d33603 ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x3faf4624 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x53e2db27 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x7e7c3b78 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x82fb61e8 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xc20138ae amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xf0beb69d amd_iommu_init_device +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x28049d63 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6579fdfe capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7413676d capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7af5d6a0 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x92e77a47 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 0x2d36594e mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x5955ec51 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7d258684 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9b4aeb72 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x01198f1d mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf9a7886e mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0246d69d mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06e9b862 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0f8d4a4d recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f781547 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2535cd76 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2892299e recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32377b48 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40c3b011 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47c5c24e mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4863d10e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4c5f24b5 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7bc4cc4d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82b1897a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x90d9e887 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x92a6efee bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa59d7fd4 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc682ddb7 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc20bbad queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd43fbcaf recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7ce84bf mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe3bdca6a mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef0aa125 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa716693 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 0x6d47d70a ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xc6b08d34 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x421457f9 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x4b4ab70d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x54e9fb6e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x72b2d392 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x460c91b4 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6b143ddb dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa2ba6bf4 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xacdcec5e dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb9353ea0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbf357c95 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x1c36038c r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x800f6316 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00f9552d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b2cf80e flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3cec4ee8 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x736d61b0 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8d0846e8 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x91ff13f6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xce3dc9cb flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd16b3fc flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe50a7f7f flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe569accb flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf3329fa4 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf8da80c1 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfe168ece flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0fd24116 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x15ac1bd0 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x28240e61 cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5cd200ef cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x83a3eb51 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdbc5583a cx2341x_update +EXPORT_SYMBOL drivers/media/common/cx2341x 0xe1fe1432 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0xf48d58f0 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x52621b78 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xfc2ebae4 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x00dc4b9b tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +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 0x6725ac83 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x7f526e2b 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 0x0cd2e05f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1214bcf5 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1f167327 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x208307d7 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x37ab90d6 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7c782560 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 0xf194a7e6 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f74943e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12074b1e dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e9bec45 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1eaddc01 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x314299c3 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33591623 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4459759e dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f72f1c2 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x521d2ca2 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5444b3ff dvb_frontend_resume +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 0x74f1edab dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x77ab1b02 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x79bb80d1 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7b889406 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8101263d dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x889fc811 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e71b7da dvb_net_release +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 0x947b1522 dvb_dmxdev_release +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 0xbd1a1810 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcefb050d dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd73fa0bd dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4babd7c dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea296d09 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb09f39a dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfb9a826f dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfc6380e5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xff201e37 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xed57a427 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x559baf8d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x26af7e2d au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2e43881e au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4be89d1b au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4efbdb59 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5bc5351c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x683d3d7f au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8249ba0d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x87deeb25 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xad956961 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xca7a6675 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x162ee78e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x2f0abf04 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x9b44ce7a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x8b0428ab cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xab189b95 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xc73357ae cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xe34dd165 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x89481543 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x14332440 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xcef1dc0d cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1d6811e1 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb614e0b6 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf113fa1b cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x9fa0cbbb cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0098f64d dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5d3dff55 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8e2059bf dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb96006b2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf332fb46 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x25223c44 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x350504f3 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35474924 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x358fd2a7 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35a5fc01 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52c2d44c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x68649412 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x714e744f dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7508bd2c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c0f1e80 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x920cb353 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9e5e0834 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa75f7d14 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb313a3c0 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe5980885 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xcd6bf8dc dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x09fd283e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x34327ac1 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x548ea0fa dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81ff376c dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x99d0d5ea dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdb1be7ce dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3e671d05 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x565782ef dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xaae3ea63 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe6b3e957 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa011a608 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9a36aa36 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x19c27d41 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1df3db96 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1fa3e73f dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2e741a55 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3978c269 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6ec15881 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x74e62394 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x84ce6ff1 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9ffb91cd dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xaf85b79b dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb9c02277 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xed3df6ea dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xef5a80c5 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x18c37b76 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x31391383 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x45365098 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9439bbdd dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc04f2881 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xb6568925 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xcf08c4ae drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x5d2f3892 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xc1185896 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xba80081f dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x16907598 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3b2d6850 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x90e34c38 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4d425dcf ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x0407d793 helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xd97c8990 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x68d4536f horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x014f5353 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x0bf733b5 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x07d38640 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xa1d03ff2 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x1fcadd03 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x35f2315f l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x50f399c8 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xebd03d2a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xb21b4681 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4bf58a87 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x65a2347e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xfe61570a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xf4d417ad lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x6e8880e2 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc967b5cf lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd64412ee lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xf78a974d lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x739e57e9 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf55f8119 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xc59527ee m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x03ae7233 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xe8060743 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x10bb6d63 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xeda9b401 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x5bbfe6bd nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6db4368e nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xad332e6b or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xf1771f73 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x72711bd9 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc437f4b5 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7a0e9123 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xf87581b8 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x4a35b82a s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x34439200 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x9a0993aa si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x2532a45d sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xfec08d54 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xc4473ca4 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xe5ada71e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x620b7dfd stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xeb9fe540 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x7efdf35d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x4e1a3bf7 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9aa68eb5 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xe9d2ddd0 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x9dd63f93 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x6b904963 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8e556792 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x5ea8a1ea stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x6e0efef2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc2bf126d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc8ae9977 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x16f5afc0 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe296799a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf043ac82 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x35d785fb tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x307b67d5 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x27c15286 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xffb322a9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xaff5a2be ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x627dc9c1 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xa0c2ff73 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa0ddf921 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0fb1f853 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x114cc534 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x43f29724 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x44a4c5f9 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe3a4f6bf zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0f4a3bc0 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x230a8dd4 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x36dd2277 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x84c29b5b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8fd3676f flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9e81189a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb0493ffe flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4157ec10 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa70f3849 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc68f7c17 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf22ff878 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +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 0xbd76625c bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf01e084b bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf51a131a bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x46053c11 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5113e74f dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x58c22bd8 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5badd1fe dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x65f33994 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6803b2d8 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6d731d1c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8299b79c dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa8ef56e1 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4897acbb dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x36388699 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5079a837 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd915b045 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdb6d4745 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1c53548 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 0x1c9e40c2 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x408fee0a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb02e4398 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb8fc71b3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdee5453e cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe5cb310d cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9d310b5 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x05369e68 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6d532d2c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2ef40bee cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4e52e7fd cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5ce3921d cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x87e20b1e cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1b9360e5 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3da33316 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x68a74fcc cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x89841335 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8d9cd2e1 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaa37b6e8 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbb0cab6d cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x03f23e87 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08aa30d8 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0a1d477b cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1f0a3537 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x506005fd cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x745efee6 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x77ea16df cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7875706f cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7942ffb0 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7dfa37bd cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e680d61 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a3e4307 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3cdee9b cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac09d4bd cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb23fe071 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb3050b48 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcade3d6a cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd09d5fb0 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfd894857 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe294333 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x4bc0b13d ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x056f9ae4 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0653d107 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2b2487a7 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b3b0a3d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3cc7314c ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ab01a97 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x71b02565 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x814cb57f ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x819cc887 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x868a0343 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x915c8877 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa011f913 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9704e7c ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae853cc6 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe6365b4c ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xecdbde20 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xffaca466 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 0x206c1eb1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2cee7515 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2d36b607 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x33e06a91 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6231e11a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x70e8fd86 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7a8e1951 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x810ac32e saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xab64bea4 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xae708315 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc3757b07 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/radio/tea575x 0x70b9f7b7 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x77c313de snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb921b925 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcb185735 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe8031548 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe97adddf snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xff946430 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2d6e5a4d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0xdd955c3e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xa3a9d578 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xc1c81940 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x24ddcca5 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3d5f4b04 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3e474716 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xee444099 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xfbe565fb mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xcf014fa6 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x40ce2e0f mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x0b0aba22 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x96149346 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x26a07f52 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x635c4a53 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x15081bbb xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x87eca930 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x60e261ac xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x73954d57 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc3b52f26 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1d2a64af dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x36e2290c dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x75f2780a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x945fe3cc dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99ea2c3d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9b4fbf05 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xaabfbddd dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbbac1832 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xdfb90623 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2542aa3d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4f4ccd35 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x64adc7e2 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x789956d0 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 0xa331586a usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf877077e dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x341530cb rc_map_af9005_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x81f5859e 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 0x1c905c1a dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x69dfea55 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x83da1db3 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x94a32fab dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb3ba6fad dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc89fcff0 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe81384e7 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xea6856dd dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xec1c8695 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x62b59749 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xd297c337 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x33c8c9ed em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcfc1ba0a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1ac4a7f2 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3dda3c51 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4baf076f go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4c67ad56 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x537ef92f go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x56ad695f go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x91ac0215 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xdd8fed4c go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf75b03ce go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x20319efd gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2660bb6b gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5f3e5f5d gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9dc5ce3b gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd0960af2 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe7e60b4a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf168d6fe gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf1b63f1c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x70ffb542 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x852d9f6e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc436654a tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x08e62395 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2321225f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0ed4000c v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x0fdd5c06 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2aa89fbc v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8c8fcde2 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xd5e62587 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xf8be87f0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x5352d022 v4l2_m2m_resume +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x76034534 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8349ddc2 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xd08592d5 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf8975b3d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06946d8d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0a3ac378 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1068e5e1 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11fa0eda v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12527510 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x185d4c5b v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x258be914 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f30e154 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x300cf555 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x315de2cf v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d43420 v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b71b171 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d635a3b __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e71d05c __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b075001 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x67468285 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x694b1b4c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6edbd609 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77386494 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7884acef v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x795dd251 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ec609ed v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f733e07 v4l2_ctrl_radio_filter +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 0x8f2b5967 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9047d5b5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95d0161f v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9941fea6 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99f72339 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a17e212 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cf8ce4a v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2ccfecf v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa41c2bf3 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5caa702 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5e4d016 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf3c5378 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb386830b v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb52ce679 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb581b656 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb87f8977 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb96cfcb1 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2441bdd v4l2_ctrl_subscribe_event +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 0xe038a321 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2626aa7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5a72847 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe87512d9 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe999fe65 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeba4654e v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xece2cba7 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed18e6b7 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed378ee0 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4e03034 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf606439b __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf730e6a0 video_device_release_empty +EXPORT_SYMBOL drivers/memstick/core/memstick 0x191d5a15 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1a588e5b memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x21b0106f memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x46007b27 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x76237ecb memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4771506 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba00a51d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba37c202 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb4e54c7 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd3f1d8c3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xed2e6365 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfc65acd1 memstick_free_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0054a55a mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x00e071f1 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x05326b4a mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b298f0b mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2235c523 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2eb673ed mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3287f901 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x395adba3 mpt_free_fw_memory +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 0x61bf7f1c mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a368847 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e77455b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x76c1e671 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x778b4a18 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7b77497d mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e5c700b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8446e30f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x87dd337f mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x88206b4b mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8897f91e mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaebd3db5 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf6672e0 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6c9f113 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9beb748 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbb785bff mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd8d32eba mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdaa1debb mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde6674dc mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe529d819 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe66258c mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0df1a939 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1013e1ee mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f25672e mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31c2a14e mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b1a01e5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b557caf mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4125901f mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44669097 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f23ed61 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5855af14 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d34eaf5 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ec1eec8 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d11102f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa0ad16fe mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa447e2cd mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8a867f4 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb75a012a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc10fcc53 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc69a29b7 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1aab71d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1aca8cb mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd95b8e8b mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe09d3281 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe22ca798 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2bccb3a mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe7d0cdd5 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xecde7697 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/mfd/axp20x 0x2a31e7e4 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xa5862135 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0xe99d152c axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x97ee9a40 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xcd676a63 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xf148729b dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x57d8e85f pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc0dbae92 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x387a5b1e mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x42f91175 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x44908235 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x63bbc6ed mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x64febf02 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x73d598a3 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x997afaea mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb393590b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb4796d2a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd1fb7874 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea39c1c3 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 0x24676114 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x2fc0bb7d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0x306c2bcf wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x3e497ae6 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x893fd8a0 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xbb056339 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x3131ff75 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x6224e705 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x7d92e2ee c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x91cfe2fc c2port_device_register +EXPORT_SYMBOL drivers/misc/mei/mei 0x0975f9fc __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x0bb25295 __SCT__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x14dc7949 __SCT__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x168b3bc7 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x1c711970 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x34bb54d2 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x555b74f7 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x7c331474 __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xcb86288c __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xdb386c98 __tracepoint_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0xf3cc0ca4 __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x000acb37 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x2a362473 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x46f0626c tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x4e7e70a8 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x4f4c9573 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5ca68de6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x6c705ba1 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x89a09d60 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9636b125 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x98f0e162 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc3d3b0da tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xfba2f6bf tifm_register_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x16b3a031 cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2716fc32 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x423bac59 cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x4ffc08d9 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x7801ea4c cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x95bae7f9 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xce4ed99a mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x192ff8d5 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4384f56c cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6220d602 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x639c3250 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x942546ea cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd855dab2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xef559703 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x64900770 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x9304927b register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x99fc03c9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe0428346 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xcfa1e782 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x1c2b1f6d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf22addf9 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x185c32d1 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xdeb83951 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x021bb480 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0263b1bc nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x04aecc97 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f5c0ea7 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1180a32f nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1feb32f1 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x495ed2dd nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6e4124f5 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x71a8ddda nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7870fc9c nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7a98725e nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x82bfa5a0 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x88e73dc5 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8ba8c869 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x97e5a002 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99dce870 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa0ffb12f nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa75c9355 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xb5f616c0 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe48e6871 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xeb69805a nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff80c279 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x17256882 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xa80ac257 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x32c8ef6a denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x95ccb4b6 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x06dead18 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x20510390 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3645f54a nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x3c197d91 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x56cf48e1 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7bd1ff9b nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x83137314 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8d609b43 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 0x918a10e4 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa06feb81 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa188ea8f rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbb7984fd rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc339a32c nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd1173cc5 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe3a2ef01 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe7d86a2e nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf2b21e1b rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0aa29e2d arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0dbb3bd8 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x11be4c0e arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1bd707a7 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x39021023 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4d21c1e4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5f5e3d49 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x75ff4320 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa1e4ac11 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc4d74529 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xca0fa759 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3cd6b3a9 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe4c48b30 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf128a32c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3cf26e39 ctucan_probe_common +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb8ca9b18 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe6c48bdc ctucan_suspend +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0246b449 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0991c513 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x118f8345 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1f595f40 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2c2c12c8 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x316f19d1 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35d598da b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3b1196c6 b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3bdcfb9b b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x541151fa b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5844d780 b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6156bcd4 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x64981c49 b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x66b963b5 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x77b2276d b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x793bd192 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7c99cb9f b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x804da06c b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8516ba92 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8828e9a8 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8c36d7e5 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e43d06d b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9320af97 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x946bf67b b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa9172be5 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb0d2a225 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb11db4f7 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb45547f5 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc32c13d3 b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc37217e8 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcac772da b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd14cccb7 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd1e4d423 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd9ec11ef b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe84b612c b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xed543dea b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf9386494 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff239fcd b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x3bea08b1 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x51304dff b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6783e278 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xe9c587e2 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x2c7fcb6c lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x420c9af7 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9ccc1965 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4f1e1382 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x041cab25 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x4a16cc99 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xce4a0147 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe21bc9f6 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x30ca5aa7 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x40196309 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x669092a8 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x5500d222 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x68209538 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 0xb12dc8bb xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf1c5cef9 xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2b2cd072 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x62f0a905 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6f752e1c ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9666a1ff ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa0b8bf0c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa1308999 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf1eaaef NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc042615a ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc1556e72 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc275729b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x57f1ab94 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x818eaef0 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x09a83a67 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x9bc108d1 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 0x208bb920 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26d44e00 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2de54ff2 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36cc726a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4949fe27 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ecc2434 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4fc2a5cd cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x63c5a6c0 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa95fd0c3 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb4706d7e cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb89601fe cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbff9ee72 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4afb72f cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcb71625d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd6caf828 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf6c9d71f t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x066a9480 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0caa58a2 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1957103b t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x199facbb cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f7983ed cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x212995a9 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21c81e3c cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22b8dd4b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22ffb16f cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x347844c2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x37899231 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x428555b5 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b36f95f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c546e41 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4fe03dfd cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x528b5141 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5d86edcb cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69c38b98 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6e3f1b53 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7042b5a9 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a137071 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7a5807ec cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cb6d717 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x845930e0 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85da1842 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91320653 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x91723b9a cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ee81d96 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f8ece3d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ff57586 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa279cbb2 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4a2e7dd cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa50bef01 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa3b4741 cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad55f275 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xadf51d0f cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7df2aa9 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbe44baf4 cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc3ed3244 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7c8ad46 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca14c238 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcdd524be cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeba7bc8d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3a895d3 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf526d7c2 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd2cf744 cxgb4_reclaim_completed_tx +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 0x3fc13d85 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x5d7a99b9 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6ad243b3 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb0f90377 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc0965988 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xd529c38c cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf2546d1f cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3b0e3395 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4f879184 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9d4945fc vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xafe03fee vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xdb86f044 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf56bfcd7 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0db5f785 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 0x7e95cf6d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x010ec147 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x89eacc2e fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xdef9decd fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xf50f7134 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0a8021aa iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x5da42934 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x12b3157a prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x50c754aa prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0932bd5d mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a9bef4 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b46c0a3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b862991 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1172f053 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x248b0b30 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5792b3 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f0978fb mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8d5f37 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4074eec5 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x450b59d8 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4eb57bda mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f5712ff set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529e569c mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5403bdd4 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57325851 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e9a85d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d2f9d57 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6348a606 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654abc70 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67d8be36 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x693d777b mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7422c8d1 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79fd0331 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x854a2544 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86882979 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b6e616d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f9f841 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x978dc200 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd234d1 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa509829a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab362190 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb111d105 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb160856a mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1fff2ed mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7d142f0 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcad14ea6 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce17858d mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce702071 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd938ec83 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd551c0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeff79535 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1e21a7b mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe53ac0c mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037b795f mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07ef14f8 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x094cd8c0 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0aa18d52 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b035466 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0cc1b57e mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15d4717c mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x17cba68f mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d664f0 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19bd541a mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1aa314a0 mlx5_cmd_create_vport_lag +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 0x1c71e3f0 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d9f3b9b mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fbb12f1 __tracepoint_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2124a675 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22e4122f mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x247e01f5 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x278ab40c __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x286f023a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28f21ce6 mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x297d0422 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aae2b0d __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2df1cd97 mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e631968 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3502390e mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3528c1c7 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35f832e4 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3750c4b0 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a898692 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e9b0cfb mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43543fba mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44d22866 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4edc7147 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ede984f mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fda3240 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51538f41 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x543c44d9 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x567dd200 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x574328f0 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x588f21d7 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a23f213 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a386fbb mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b35f08d mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c98722d __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d8202b4 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eb5bb1e mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f358d49 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60ea97e9 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x632b7f25 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6376be87 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6474b295 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69d8e30b mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b3b294e mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6daaed63 __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f5799ff mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x735a17c1 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78a410cb mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79392562 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b153775 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7dad3aef __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e545363 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x818095fd mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81c6d02b mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81fb5ca2 mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85dbc1ba mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8674a61e mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89772979 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c12f637 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c44d2b7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d422e33 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e486bc2 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9007e9bd mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90296240 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f486f4 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91d50584 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x932228e9 mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95df4f3f mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x963c6ef4 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9693d725 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98e7b144 mlx5_eswitch_get_vport_metadata_for_match +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 0x9d917135 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d95a2bf mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d9d3a1c mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f7c20bb __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1ec154b mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2c31b5c __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6451b14 mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8f9cb72 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa978a95 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab9a5e8f mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac038a20 __tracepoint_mlx5_fs_del_fte +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 0xb0fe4bbc mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c2d333 __SCK__tp_func_mlx5_fs_del_fg +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 0xb2d628f2 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb444e7a8 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4c1009e mlx5_sriov_blocking_notifier_register +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 0xb6afa532 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f9d9e7 mlx5_modify_header_dealloc +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 0xbaec6cb6 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb088b3d mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd07c03f mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe21ce1c mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc07afc8e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc25e7967 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc30d9732 mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4412afb mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc563cae9 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6b04191 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7a55310 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8230cae mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc87f3159 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a5f3d3 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9a91098 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 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc78b02e mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd4c20e mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce2508fb mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce3baa3b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce6ebaa6 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd02d92a1 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd15625c9 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2aa89e1 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2f17aaa mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd740e4a0 __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd87b3a3a mlx5_eswitch_register_vport_reps +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 0xdfbc08aa __SCT__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0a42182 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1c80968 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3e5efcb mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5fa7749 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6419b5d mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b0f49e __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7cf4f7c mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8969ba6 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebd85d30 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec111903 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1a648f4 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2c68cd1 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3419710 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3680a96 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4436a24 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf690ebd7 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8bd1bb6 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8f12db7 mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfebbee49 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x00888689 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x081eaf7e mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e09962b mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x1a8adb48 mlxsw_core_skb_transmit +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 0x240f737e mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x378a4081 mlxsw_afa_block_append_mirror +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 0x39e77c61 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +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 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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x70c06bb9 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7281acc7 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x76f85aa0 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8f13ed14 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 0x944d5e6e mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0xa597aead mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe6ce463 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +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 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdc2125b9 mlxsw_env_get_module_info +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 0xde8f2b7f mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeadf1fd3 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xee1e4c85 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf9546f17 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x2368fe50 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xac436786 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x573e7935 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x9fd3c52e mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x03c2868e ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04629ecd ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06e79e1b ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0706da32 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a5514e5 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e670137 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e8509ad ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0eb4206f ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f6caf28 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14f46f23 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1a40c2d3 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1bc6f0dc ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x234e5207 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 0x2eb0c8df ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31bd1f1e ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31dd81a4 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x33d85476 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39cc2207 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3baf9451 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3d3d5c12 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3da2f3ee ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46048c35 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fa3175e ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51001474 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x559cb392 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57f75a4e ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5838d8c0 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x61d71762 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x672e991f ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67ed6c42 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6d83c2e4 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7108f078 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c8fe184 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7de36463 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a58ce5 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8380e178 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85e3d49e ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86388358 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89462ddc ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d1ea681 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8d496919 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93176471 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93e816ce ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x98e2bc4d ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c9de5f4 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e7b6cd8 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eaa1dbe ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f979aec ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa0e8ff29 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9b1e443 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaafbc7cc ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb4c6e879 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6d40b3a ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc503b40e ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8937194 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc8f2b57b ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9e21979 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcd58c2b1 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcfc61a39 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd040ff4f ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd6227bc0 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7f70d80 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd8571a67 ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde998177 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe191d6ef ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe3bc09d8 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe41c84e2 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe9a4cd70 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea3e105c ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecfbfd6e ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf05f8939 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf777324d ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcf9762c ocelot_sb_occ_port_pool_get +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 0xb8dde80e qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xd3b80efc qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xe496fa74 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xf7f7f5be qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x3db8ed49 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x75a3ed75 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x01c16c16 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x48ba919e hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6ef6b8f5 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x75d18103 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xef7f9096 hdlcdrv_register +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x1e387827 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x6d2bee18 mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd42653a8 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xd7fc37fa mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x0df696ef cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x695a0632 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x4af972cc mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x21b5a0cd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x58dcf71d mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6527ef27 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x6a9d7a17 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x8cec5790 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa4fc06bb mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xab092221 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xb961d93e generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xc8ae23e3 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe06ecc0a mii_ethtool_gset +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x0877a857 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa22bf5b8 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x4a18cdc3 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x15766442 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3fe7c37a register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5a070c3a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc872abcd pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xf5f00ddd sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x03a52267 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x410d9fb0 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x423031e3 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x87e2b094 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x95b18f57 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x96495f0e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa40e69db team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xd04b7479 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0xaf05cdb3 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xcda833d0 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xfcdf6ea6 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ed38478 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x235e2abe unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2ca5ff69 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6c9fbb96 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x844d1793 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb997fc5b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc2a2ca45 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd23283d6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd95ad21d register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe5714b92 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0052722d ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x03e8a7c7 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19d16539 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x47c70ee8 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7878770c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8b18216b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8eda653a 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 0xa72a358d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd35a1b77 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdba2da6f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf02e8e9a ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfbb49b54 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfc1e4b18 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x00b2404b ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x04ee20f6 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x06cd40a4 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08569ee5 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x08b2a260 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0afeedcf ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0dfd4897 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1068cfaa ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x122994b5 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2083ba20 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x28f28ce9 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b92c776 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ca84fc8 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2facf9bb ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34bec8b5 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x350b4529 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3841dbad ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3a413054 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3d245093 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x427355c9 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4b610f34 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5302234d ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55e957da ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5880469d ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65fd561f ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6915b56c ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6d71b276 __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x70b823eb ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x723eb998 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7285d1e2 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x761c540b __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a942a40 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e00870f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8351140d ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8472d92b ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ce48c09 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb1978f51 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6d472b4 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb8fd3748 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc24dfed0 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2bbed8a ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xca767e2a ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb188242 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd2cd742 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcfd86259 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd10bd8b3 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2df985e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd75880fe ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc06b4e0 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe28c3cd1 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8835416 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xebf72c96 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf240d35b ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf44154fd ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf51e66ce ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfc2fb82d ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfebabeaa ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x003fee72 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x072e3a0e ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x12cd8925 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x198e6adc ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1c946a95 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26517139 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x26d9d5da ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ac7ef32 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4ab445f8 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4c927f10 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x500fce77 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x543c004e ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x57ffee44 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5a97e358 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5f04a771 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x602bf3e0 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x60ca8527 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x617286b6 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6a3d0b90 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e880014 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x71b05761 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e4446d2 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7eeebd67 ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8e685664 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x909bdfdc ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa28388a2 ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xac4e3edb ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb2e179b1 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb4c2d38a ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd48752f ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd9087b3 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc05b6b12 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd4d036bd ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd62c4797 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd7194492 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdbaa2f87 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdfab2f11 ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf643a70c ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xfc595efc __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0eaf181f ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x172d4882 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x775afd53 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8401e071 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 0x97632fc6 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa8fc6fed ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa9656c37 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb646fcb4 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 0xc81b3498 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf2f200c5 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfa905a59 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10534578 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x13f0c703 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x17714724 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x219b3856 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x26065a21 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2674a529 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2b7d4df7 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2c770c90 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31182c76 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38d6edf1 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3f72eacc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x52403e96 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x672825b0 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89bf711b ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x90a78d7d ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa406f7c0 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xabd57e0b ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1e21841 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbf531056 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca038a26 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd35e52e3 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8e548f2 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2d6a03b ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x003119a1 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01412858 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x016614db ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01fdffb7 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x051df281 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06c6dc97 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x092f5d06 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cf6cea3 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1251da88 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12783aca ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1319f0dc ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13be07ae ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19c98430 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b0e0a4f ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b9d915e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e0ced9d ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ea53d93 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f272f23 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fb596ed ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x208ba0fb ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20b4f9d7 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2134e6c1 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x21dffa29 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25b67718 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28ee5a13 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x290c66d4 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b42fbbd ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fd196d7 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30bfe438 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x328044df ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x366ddc71 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36ea8c46 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b5abfcb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d0cdcc3 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e6c1022 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f25e9bc ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41e99cd9 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444988bd ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x457b1697 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46dd243b ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49fa72e7 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b541c54 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c17041a ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c603908 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x576388a4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x594f8f8b ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x598e5c40 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59c01ad5 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60e82ebb ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68253b64 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69d3e05f ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b101588 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6be6de14 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e9e2379 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7051dc6b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74f2ee94 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x832ceeae ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86250d19 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87a1a9f9 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dfa71c7 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f852d52 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90656239 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x915d1a13 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x938e6b77 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9435b940 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b123f3 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cc9f420 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f5d8be0 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa01f2e5f ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa236a4d8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6c9f944 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa908073e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacef253c ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae22c60c ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1a4f1de ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3aa95a5 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbc27244 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf7ace10 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc05548bc ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc20d9178 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2b8ae4e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3042715 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc51d0a12 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb5c7f63 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcccc05e4 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0163264 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c760a2 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd16e4acc ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd54b0c03 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5b38cff ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7349109 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd75d0487 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd928ab85 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc5ae3f7 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddfdcccf ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe42786e0 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe50e229c ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe881fe9a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8f93043 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec3557ce ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed0dfe1b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf026909d ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6738f11 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7c427ff ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfaec38df ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb7c3d3d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffe4ac00 ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4339d558 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4b7caac2 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xc263df27 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04ebd9f2 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x087cad32 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x107b4d64 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x11ac4a87 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5eacf8ad brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x670a62dc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x7467b4ca brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8973a933 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x9b5a4153 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd584b4dc brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf56ff143 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf5fc9c97 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf9bb5f57 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x5653dda5 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6c6a6237 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x7535b9a5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x06d0c93b libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x216d744c libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2835079f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x30fd0097 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x312428f4 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6488bbb4 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x6b82b23d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75de354c free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7d08be7f alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8a16c71d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb8f597bf libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xba0706bd libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd78c3f81 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd7039c6 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdd81820e libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe34408b7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe629e860 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xeaef43b8 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5684b18 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf5c78e12 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x05cd0de2 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09a93107 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c2fc073 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c47783a il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c655f5e il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0da4ef6a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1065ac66 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11a3e84a il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x11d0d4a2 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x121bd976 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x172a1911 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x188f1ff6 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x19a083e7 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b02e845 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ce19ce1 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x206d8350 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x255f4de7 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28aa466e il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b5d6669 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b713e08 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2fca0e95 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3033da83 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x31c668ac il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x376c9b8d il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a41ec47 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3c69221e il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d588fc7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3d9c0a5f il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3f40751e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4108a65a il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x415fb5aa il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42348ed7 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x444be1e4 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dafb748 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4fb6b5e8 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x53421208 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x567f0a69 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x57c557d7 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x596595b6 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x597d89a3 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b4266d5 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bf4feba il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6c6dad2e il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6db29ca4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x70e519ad il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x71e26ebf il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72703b6c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x72a50c0e il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7808dc80 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x798b208d il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79d00e80 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7f600ce8 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x821d3ab8 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x824e5923 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83cdd3bb il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x851401eb il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86bad89f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87830a60 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87b7de7f il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x898c352a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b0a7736 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8f8ab5e7 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x910952be il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x918abe27 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x940c2092 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95c6e6b8 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95f488d4 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x990f84bf il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c596ec2 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xacc9e148 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xae492ff1 il_read_targ_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 0xbbde74b6 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc12c0373 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc13b5e4c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc13df324 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1b7895e il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc2581374 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc279da1d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc93ef71e il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc9b59071 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc52cabe il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf6a5b2a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd03deda6 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd3463006 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5de246f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdc429300 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdcd67f46 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf47c264 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe1cd284f _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe2c66286 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe48c01f9 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe558786d il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe901f2d1 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe9f075e5 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xed6dd8a4 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xede31d17 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf26b9f2f il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf39f769c il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x042a4a27 __SCK__tp_func_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 0x41ef20be __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x68abfb68 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x72d2cdb8 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x77a73591 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x93a6361d __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe02b49ab __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xe99041b0 __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xeb258b79 __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x07fcf3a0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0ed4669a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x184cd679 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x196202d6 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x28c87421 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x412dbd8a hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4ffaced6 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ade12bd hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5bde00dd hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x67d1a977 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6d27b709 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73554d12 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x73638800 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7adcfaca hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8dafe3c0 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x9c3e8bef hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa4ae73b3 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2f8689f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc99a2225 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd3604834 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xde2eaa92 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdf601103 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf226c20e hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xfcaa1d4a hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xff92ed3d hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x11e3ae6c orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x140ed699 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x26f4ba9b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2a35be0f orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x30e9f8ae __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5f983601 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x686e992a orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6ab90861 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6bd7990c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8a9e643c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8beeb6e3 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x8ef415f2 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x992bdd4e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb16b7c28 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc6e91564 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x8c4290be mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8befce9a rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b6f48d6 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1692e926 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d42a07f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f120727 rtl92c_dm_check_txpower_tracking +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 0x2529e451 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2778ee80 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29ea604d rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b3dc734 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2f9e085e rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39a07646 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c89cb9e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d9d26ba rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49f71d65 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4edaa00f rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60ca0a90 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x696bddc5 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78afc1c5 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x801cd627 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8500189f _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90d4838f rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9b498000 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9e0a0e6e rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa201b1d3 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaafe4fd6 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc2d161f5 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf27abf2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfc23b67 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd12c2dd6 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2b94cbc rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3bc2e99 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6084219 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9ff8530 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdfa5794f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdff2c38f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8792dc5 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xea95416b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xece1f846 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedfce409 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa5ed0ec rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffb4a83b rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xffe355bc rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70c2ca1e rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb1ef078f rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb317f150 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xe9ba5367 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2c02823e rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4d5e5cd2 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x66bc93e8 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8b83e810 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03c1c392 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03f9b427 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05fd8682 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x107eb5df rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1243765e rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12add80b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19ad6fd4 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24dd0f08 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x25e39828 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30b4f0bf rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5079cdf4 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5339b7bb rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54dd2efd rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x564a0696 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d68bb2a efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x669789b9 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66aea7d5 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6cca1f61 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79a276b3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f9132e3 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e733997 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8facc4f7 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9af68278 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae5c9251 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb06082bc rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3bad21d rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4f1fe6a rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0cbc521 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebfe1431 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee0f40de rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x14e64050 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x892637dd rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xff063ae2 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x10c451dc rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x009b0a39 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x03220efa rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0cfc41e7 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0edf715b rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10ed7892 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x11ce7b16 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18d8641a rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1a109aa2 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1b2bf538 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1f1b8fa2 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x278f6129 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28b9f14b rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2acea099 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x35d5dc44 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36638498 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x391d66f1 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3b121cb0 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f326b64 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x444746f7 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4764a245 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4bedb807 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5474bf57 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x577899ce rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x59fa18c4 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5ca989cd rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x61390b60 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x634aede5 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6810a138 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d5c7970 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6f65321a rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77579822 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c682fbe rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x87189578 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89059fbd rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x89bc337f rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8aad6e38 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b1b9f99 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8fe59769 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x90601b98 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9bd4c36d rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9dc37378 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa5357041 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa6fac3b1 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa87d43d6 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa004c15 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaad5911b rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xae52d12e rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbc8b5b7f rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xca7927af rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb6420de rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcf1aedba rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6baf1d7 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd7d86e68 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe0d49275 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe15fcd4a rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4a5b260 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xeb138de2 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf024c64e rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf042a6fa rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf060cfb9 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x6eff641a rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x77d503f8 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd44f565f rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd53deabb rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x94b7a0d9 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x788c3e46 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x044a03ed rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x129048e5 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x155b7cb2 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1a019a77 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d710030 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1fb2cb5c rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a64a260 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e09b39d rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2e2b2ed8 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x34e59957 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x360be55c rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4a0dbfcb rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c08118e rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c227ff4 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f260539 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x590c5f2d rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5fe799d0 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x60ea2795 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x616c0fc5 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x69f325c1 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x72554757 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7374d394 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c00c024 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7f6aba23 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8aef3f80 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8b3a2eaf rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90507b9b rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x90f2ed20 rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x957f2db3 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x99078bb2 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x995953db rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa613a425 rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa7044650 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa9ff31cd rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaf5c5e8c rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb26c5990 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb820f66c rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb88c2077 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2ec0640 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc517ac1e rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc64cf045 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc830f808 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca8dc7b5 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcb9e07aa rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde096c89 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe0116f9b 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 0xeccc875a __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xef7372d1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xefaebce4 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf4570946 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf7f38167 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf96b4483 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x00184edd rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x04b82bd4 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2c5bee04 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x34a82115 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x569fb06e rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5fe83a02 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x88fbce60 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8a4e462a rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x8ae5f098 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa90de0b9 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xc548f98c rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe006a0d2 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3893d43 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe2e628f rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xfe76d943 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xc5d1f921 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x72d559d6 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x84317d8a wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe36e94c0 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe4333529 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xda6d3214 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xef8f2d82 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7483f870 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xcc791bdd microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x255284e9 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x44995bf1 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7c7fd69a nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0x91bf0fa6 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xbc286178 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xf0a9d4c6 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x47ae7cab s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x90ad51b3 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x99484974 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xedb12f10 s3fwrn5_phy_set_mode +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf25c9434 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xf2ab60da s3fwrn5_phy_get_mode +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0a3dece2 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x500f7fea st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5cfd7d8a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61744e5c st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x87b372ae ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb9f1db66 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc3c4654e ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xccae2e2a st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf9169b3 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdca8b834 ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x20cec2d0 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21794b42 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x22a963a4 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2567797c st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5abc3fdc st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e8a5f01 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6f828b0b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7614fbb2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x79490836 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x83c18553 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8dc44693 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc78b9736 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd82abf2 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2c72689 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe649f7b5 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeb31037a st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf58f3ae1 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8597790 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/ntb/ntb 0x43a72876 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x5783a9f3 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x57cbe53d ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x61911be9 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6a1ced87 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x728f3a87 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x739c9cbd ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x9e5302ff ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x9efc33f0 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xa04bf5dc ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa0cd8495 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xa4ec3669 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xaf9dccac ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xbb8bbbbf ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0xbe9c6d7b ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc0110779 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xc056199e ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xeb6af48b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf1ba16d2 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf5de76b1 ntb_default_port_number +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x0e97db98 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x59049032 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x050ba391 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x0ec3a706 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x208dd502 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2c944020 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x30291089 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x36d339d9 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x44725cda parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4b5b84bd parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x511c9a1d parport_write +EXPORT_SYMBOL drivers/parport/parport 0x53e73949 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x57bc4948 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6264e49b parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x6c935c3f parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x72ada065 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x77cd73aa parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x78082487 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x8066d7de parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8e2daeb1 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xa047fbd2 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa3b18a4d parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xabb98f47 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xb8d46fc2 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb9121769 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xc0a2db1a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xc1b3971a parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xc8985012 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd056af87 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd89fd824 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xdec6bcc9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xef435575 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xfb148133 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0x141f4487 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x95e58907 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x238d9534 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2aece7ac pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3e246500 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3ee1cdf9 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x42a4affc pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4789f837 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4f143e9b pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5ec2e94f pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87dfc726 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x91462e32 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92db36d6 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb7d35a33 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc0ee18b2 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc5a3f2e8 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd20024f0 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdffc3541 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe272abc6 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfee0861b pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x141379e4 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x36e54ef8 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x544b9f5e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x71601a17 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9d098d29 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb4fb6f35 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb9e5c158 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe582e421 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf14f47e8 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf42b68d3 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x50a62a49 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe701cd51 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x251c8f8c cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x345343a9 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x5d2982f0 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x718aac53 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/simatic-ipc 0x35a48fec simatic_ipc_get_membase0 +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x8829871b __wmi_driver_register +EXPORT_SYMBOL drivers/platform/x86/wmi 0xe80d05f2 wmi_driver_unregister +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x317f9fb2 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xe18bc53e rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0224fa4e rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x29353593 rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x35576246 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3b7e10de rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3c44f5c1 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d0315a6 rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x3d602299 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x51001530 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x69bd6323 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6ce93c83 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6db35f31 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80282f2a rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xa8a78e5d rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xaee05bc5 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc27cb5d2 rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc755587f rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd12f8512 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe4a7cc33 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xef9fd707 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x910d23c6 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xa8082df0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x6166991c NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x89beae65 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1ac48e03 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x928a086f scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9a4ca7f2 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xdee8653a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16b340d6 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e28c5dd fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48b93e2c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5508c63b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x980cff74 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9871fe40 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x996a6cdf fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf89213f fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc757e84b fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xed9ef6a3 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb71ee36 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0869ac58 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e745e23 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1197ff70 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x144e6cc0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d18ea61 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f2a991 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x289a4e17 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x28cc3a0d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x297bbfc3 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dbb3016 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x354d05b2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x38f931c8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x396265a7 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39edee7f fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c5aa0e0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f7e7980 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40a445c1 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42be1347 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4826e27f fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x484c7898 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48e5c50a fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5410bf89 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5952eb24 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ceaaca9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e26be0e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x615edc08 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6620bf5e fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6968d833 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d1f07ea fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x728ceeb1 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72ee1753 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x762ec415 fc_exch_mgr_alloc +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 0x81ba2571 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83235da5 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8700bf67 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d23a263 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96952c85 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0660492 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7e09940 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa40bce5 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaee453b7 fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb34c7ff4 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3f00e2e fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb446d081 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6e5fc5b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0af3606 fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1cbdfb1 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc596b286 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc899eac8 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5c14fa2 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdae5ef42 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf9ae708 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed2c130f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedca71ab fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1408e2c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3545aa6 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf689e662 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf96e4ba3 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1e916f19 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x78174e61 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x823ff00c sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x995bca9f sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x0123b1fc 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 0x0a91bd4e qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0badf240 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x29e2f163 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x53f36593 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x548e638c qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8dd4419c qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc1b83923 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcf265117 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd414d4e3 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd817e426 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdae19604 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed0bdc28 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1a25278a qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x423aef9a qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x43a1b20c qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4fd6c162 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe46c1c29 qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xeb84b5fa qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x6493d5cc raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x9c767769 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe27d83a8 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04ca0825 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1160226d fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17cfb253 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x191edb5e fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b6d1292 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4cc36899 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x796113b4 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98f0e5b6 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9ff7d9d2 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa18c31d1 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa5ed7fe8 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa94f840e scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa60efbe fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc5700408 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcb8a2d86 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd3dafa4d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe553944c fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02acd4a6 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05cee965 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1484908d sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1efbcbb3 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1fdf9756 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24b39167 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2727461c sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b7ca5de sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32d94323 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x400d3bc9 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41b63303 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c1cef7f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a00357e scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d51cdcc scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6409439c sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x735c1229 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c9b8305 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e61f9df sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f9664b9 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97269493 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacafa59e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1a42fbc sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca3481d3 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca78f0d1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb635a89 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd6548d37 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe11711b8 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3ecabe8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa7355c0 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6dfa5878 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7e5d603e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8cf0409f spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa7209231 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb95252c5 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x11ccd37a srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x14c66baf srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9adc16c9 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9fa27171 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfb6bea3f srp_rport_put +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x01622706 qmi_send_request +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 0x37f5372f qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x498a4c7d qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8a7d5c74 qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa32266ad qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa5e95241 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xabfa4c06 qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xda70e04f qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf077307b qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xf699d4c9 qmi_send_indication +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x037c07a1 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0b3bfeba sdw_bus_prep_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 0x36ec1429 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3e14dc7e sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x412c4a54 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x52065ea3 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54996b34 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x661b258c sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x67acfeff sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x686266a2 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7ffe7141 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x818425bb sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88c8d6aa sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x905ba763 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa9011e70 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb61d036c sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb831dbb1 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 0xc042b729 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc508a06a sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd10d652b sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd1d98426 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdf228bb7 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xece1f30e sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf38cbbd4 sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf509401d sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb361eec sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x06022cb4 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0631a1eb sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3369a886 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x340a5acd sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x36c54eba sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x40c60306 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x413e8d49 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x594c6e4a cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x69910118 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7a930603 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x888c54e3 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xab7a31ef sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb65277fd sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd1ae965e sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdc1ae9b4 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xdfbc4f85 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xaeed473b sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x009d0e20 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x071294ac ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x17276125 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x1aff62de ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x41167f9a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x606fb3e0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x610be46a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x68a75c71 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6a3d4889 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x80542fd4 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x81a5b3cb ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8725dfdb ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x9741c68a ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa6d56543 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xaa168922 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xaa34a2b0 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf0209fd ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd16a5978 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xdd895702 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xfcd90924 ssb_bus_powerup +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x159a2e38 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20ef93c9 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x222124ec fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2be833b3 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x30dc2393 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37125372 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x38baa16a fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d3fb414 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x45f4a7bb fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4885e9cd fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cbb61ca fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8602520d fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ffb01f5 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95b6595f fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9ee9e236 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa21405d3 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb658a06a fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc46af288 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdb3e9f06 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd58cc2e fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe1f7bb97 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6f5b63c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf403a635 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf42cb56d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9e4ac14 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x2d6a971d gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x301e6369 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x556fa5ba gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xcbe9b8ce adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x55709b93 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x439dd49d sp8870_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03094351 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0553eb42 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0927cd45 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d9aa382 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0da91cc6 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14402756 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c0df9d2 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25fb9f1d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2aedd144 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2af5a98a rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3597a7b6 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x414b86e9 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5259d186 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5330ec40 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55fdd219 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5f2d8c31 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6146db0d rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x617a10ab rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62a2aef3 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x673b3224 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d399c1a rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x729ed16b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x807abee3 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82091e6a rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x885266ab rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ce48875 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8f65ebd4 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94962d2f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98800cfe rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9dac754e rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ce96ec rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0bfc68c rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4092852 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba070876 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba72c432 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbc67ce44 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbfd100bb rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc0de6bbd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2e78921 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9995add rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc99c0b59 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb46a1fa rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceca58a9 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0624624 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd70e4349 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd8c8f2fa rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xef2593f4 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0cf8ad2 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfcfbb97f rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00dcc35e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04366be5 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08cd0d0f ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e9343e5 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21402fc0 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x230a56bc ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24c3ae02 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x28f71d9b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2afa3ef7 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e104705 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3286eafd ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x356ecc8f dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36285d9f ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x381e0d64 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42cac964 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43039c45 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a986c02 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d2207a0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d800769 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x511454e7 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x536a38b0 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59af5478 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ed571b8 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cb498a9 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70e60faa notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x838f2fff ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ef63e4d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9360ab7f ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a436528 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bdbabe0 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e615aaf ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa00aa256 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0954f96 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3ca1069 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa778e9f3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaab2f720 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf8634aa ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfebdb18 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc28bbd54 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc5d11b01 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca133c59 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xccef807f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdc462ec ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcddfb7b6 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2456402 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd707dca6 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdabbb95b ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe035c1f0 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1e13957 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee114ba0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf21ac2f5 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf61d7180 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf80ca668 dot11d_update_country_ie +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01447731 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0683c7fd iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d7b0867 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1065a37e iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1537e28a iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x175e36cd iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c516003 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1cf0fe85 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23dc94c9 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2fc72d9e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x388210d4 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3c5ef5a6 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x40e5a1e2 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x42505492 iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a31ebdd iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a4d6b0a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c034072 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537f58ae iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x55d0466e iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5745568f iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x635ffbc6 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x69a5e90e iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x769c4807 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d3c8ebf iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f1f7f37 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a1d14d7 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b763c3f iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0af448c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb3044062 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbf91440f __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1438e29 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc31b4054 iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc90ae3b1 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaa25812 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1fd35d2 iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6daae6d iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdd9a5853 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe006bd20 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4cf3176 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xebf329eb iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf1e328ad iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf47d55a8 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5056c66 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7f37903 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff437bcb iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/target_core_mod 0x07385873 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x078092b1 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x092cad11 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b35c98f __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11ec45ac target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x12109b17 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x124a4aef target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x176f9063 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x19c3615f target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e6cf8db sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x256e8256 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x25b2640b spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x29db61f1 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x2dc7d2e0 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f9f26b3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x32c24012 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3693ab5b transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x395cf0a4 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e1fec0f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4090ba1d core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x424b1e9d transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4432b187 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x451fbeab target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4708a091 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x487ea3b5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x48c925a2 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a76b0de sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x4af2ffb1 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x5117ffb4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x62655593 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66c8a724 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x67c1e780 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x67f77c48 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b1362f7 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f339975 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa630e1 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fa6ed9f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x735b6ae2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x75e2914d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x75fd1831 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b7cb253 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x85498183 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x875cdb99 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x87dc4412 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x892d0983 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a3439e2 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8aa490a1 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ddbf469 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x90c9942e passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x94617c67 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9822fb37 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b7d56e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6543f83 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa871e859 transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa682ef7 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0320a92 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7c2b72b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xb93702c7 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbafadfe3 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xc80d6a62 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xcace14b1 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xcadec373 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbee3e04 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xce10a9b2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0da0513 __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1569c70 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd2b0125 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0ccc20b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe585c2ee target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6ae8c15 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xebc32a18 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdbdaac0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3407adcd ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x504a04b8 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x544362a1 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x75e5d8c8 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x990dff26 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc739ffad ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd1d97618 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe2729584 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x5e78a7ad tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xaf56fc0b tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xcb819cfc ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xdffec482 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x531afbbd usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xb3b2f0ba usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xfee93060 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x042b1619 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1def618e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x310f30a7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x333d438b usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x486a3815 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x497a6fdf usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x655a6df1 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82b0579b usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8967faaf usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdab778b0 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe044be66 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x1645d7ce usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x70910e6f usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x9de3d01f vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x18758697 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x1c4f9dee mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5a9f5ae5 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x63a71e8f mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x8cebba9d mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x96461954 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x9f7030cd mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xcbcd368f mtype_get_type_group_id +EXPORT_SYMBOL drivers/vhost/vhost 0x3d400467 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe435fa47 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 0x34accdbd lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb670f511 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd3a6ff75 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xdddfe83b devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0fe723d6 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x13e7d2f6 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 0x27b0186d svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5d77c8a0 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 0x8fc0dd2f svga_get_caps +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 0xec56bf40 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfef17595 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x719b7590 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x74bc18b9 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xffd49f39 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 0xf27df989 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x33801d06 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x08e5ac1d matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x31103439 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd0784a9c matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5a996b2f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5d4b89b4 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xcb06f30b matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe0183781 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc9f9c25c matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x3f589f51 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1b326bb3 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x73b427b1 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x964370cb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf8dae805 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6958026a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xf494f438 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x113535e3 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2c71c883 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5c433986 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7c0dcfa1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf5f0de55 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x1ac503b5 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 0x75504d2d vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x899778eb vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x94a0358d vbg_get_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xcc2baf2b vbg_hgcm_call +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x0d386311 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x1ecfaf29 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb44ac325 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xf348027e virtio_dma_buf_export +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4f5fe8ff w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xe42515db w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x66eea32a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x6836f668 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x05ead62b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x4a16f19b w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x7481859d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb02ad32b 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 0x04b0a13b __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0aed9611 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0da1a099 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x0e65bce6 fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1c0694c3 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x22e651e3 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2f042253 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x344e67dc __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x3ab94c8f fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4c2fabf7 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4dcdcb98 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x50acfb40 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x54b6029c __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x56145b2d __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x5640b61b __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x5b539e09 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7c3b0348 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x80bc7800 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8317ab16 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x894605e7 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8b1a1933 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8e36c7c2 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x91844b92 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9fa0831a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xaa9f5481 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb5dd1683 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xb8e5af93 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0xb9a1e527 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbf59c9e2 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe50ac33c fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe78caee1 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe79bada5 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0xf49d45b4 __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf6029560 fscache_relinquish_cache +EXPORT_SYMBOL fs/netfs/netfs 0x06ebf3f6 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x1a297e34 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0x4c0307b4 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x864c851e netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xf5770f88 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x281c5357 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3f062b13 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x59fdcdde qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6fda2768 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd6707708 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0xfd0e6788 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 0x15e30dfc lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x2d47ac83 lc_committed +EXPORT_SYMBOL lib/lru_cache 0x2f3dcecb lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x4522d82a lc_reset +EXPORT_SYMBOL lib/lru_cache 0x4543c8f5 lc_seq_dump_details +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 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 net/6lowpan/6lowpan 0x0701d307 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x14f67bf0 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x1d07dc66 lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7c288470 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbf5c5ea1 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd773bad7 lowpan_register_netdevice +EXPORT_SYMBOL net/802/p8022 0x6123a492 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x7f72d41d register_8022_client +EXPORT_SYMBOL net/802/psnap 0x47248591 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xf021cbc6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0e0f9de4 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x0e50a0cd p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0x125b6777 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x16046e4e p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x1b7ab91e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1ba92867 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x20ac29fe p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x29f77661 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x306a8723 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x32f7ba78 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3597a987 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x35a1269e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x360bc1e7 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3c272b6f p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3ed762e4 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x48498670 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x48a9d3dc p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x4c11cc10 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x4c25ba04 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x53a0d854 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x56884995 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x5ba31c9d p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x6812f7de p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6c1a1a0a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6f7ab9ec p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7021efc3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x7c2bb303 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x9cd00c48 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaa2e6745 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xabaacdaf p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xcd24af13 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xcd92ab28 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xd2e4e22f p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd30ed6b4 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd67c35dd p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xe3f98932 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe42b4f9c p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xed7d075d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xef056c7e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf0a36771 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xff984f0b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xfffee606 p9_client_getlock_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x065985f3 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x6bce0e0a atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xcb228eea atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe07398e7 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x00a22269 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x12f02060 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x191b733a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1bb9ee4d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x232becfa atm_alloc_charge +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 0x5060b32f deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x54b00118 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6462e76e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x70b19421 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x80e4808b vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x890aa4fe atm_charge +EXPORT_SYMBOL net/atm/atm 0x9887b9f8 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9bb501f2 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0b5f0d72 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x34b67169 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x3a8dc9f1 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3f91176c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa56bbdee ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xbbd7413b ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xbc6f7be1 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcbb5df46 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x055b71df bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ae98f40 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b00b9a6 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x152af2f7 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x172c448c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x239c87fc __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x242db6f6 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2540d6a4 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fb0a1fd hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x324b61f8 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32814349 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c24a9e5 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3dc703c2 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x427fcced hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x436b2b38 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46c72e07 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48eb49ef hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d3b8dff hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56dfffb3 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x597ebc29 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59baa00f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b099e5c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6011a3b3 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68bddb66 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x707cb963 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73cfb0db l2cap_conn_get +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 0x81c7f1da hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81f393fa bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x899a8466 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d157050 hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9035e56f bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93f700f9 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96a8429f hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f6231e5 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1a6bb8b l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa31ce3f2 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa41b5ca9 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa94e51e hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaca13b17 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbb775aa bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc5d4a185 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb8120e0 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce742ea9 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce7ada52 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf31626a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f0dddf __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe787ecf5 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8f962d0 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf23d5f9b bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc56bc8c hci_get_route +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x01ebb388 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0554019b ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x26030caf ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x372d6065 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa0d480c1 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc0602382 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x141e4b50 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x1ea695ef cfcnfg_add_phy_layer +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 0x64d8a6d6 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x8050375d 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 0xb099d16f caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x4a245518 can_proto_register +EXPORT_SYMBOL net/can/can 0x9a2e8e69 can_send +EXPORT_SYMBOL net/can/can 0xa65daef6 can_rx_register +EXPORT_SYMBOL net/can/can 0xabcc0c44 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xb8b184c2 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xebef49bd can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x02e8804b ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x037eb3dd osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x040756b7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05a09fc3 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x05af96e6 ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x0795640c ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x08387362 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x0aade393 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x0e9cd087 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0fb6a179 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x107343ac ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x137c6280 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x13e71326 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x1456b4df ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x147e0f45 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x14d63ea5 ceph_osdc_flush_notifies +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 0x18d7a092 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x1ac60a79 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x1ac681d6 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x1ce10ed2 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x1ff184d5 osd_req_op_extent_osd_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 0x24ed2054 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2b330791 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0x2bc072dc ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x2c44d215 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x2f5b4974 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x315a9de4 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x32cac95c osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x3308a585 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x38ccc9e9 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x39b1631b ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x3b59c5ca ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3bcdc94a ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x4070f605 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x419a56ae ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x42e24c20 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x49eaec1f osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x49f91315 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x51e86181 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x579c8414 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5859f666 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5c6b9025 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x633122f2 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x648d885d ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x66f909c5 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x69c94936 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6c6a743e ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x714c2100 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x76c492bf osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x79bf7b23 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x8090ef42 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x83166bf7 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x83daa1d5 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x85f3a5f7 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89342f0e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x8fbfe7f1 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x986c762a ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x9b398bd9 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9c3310ce ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9d0ccf18 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x9dc85313 ceph_put_page_vector +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 0xa0a9d762 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa5227b2f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xa613c2e8 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa87a99f1 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xab7f8b81 ceph_auth_handle_bad_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 0xb17d2bcb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xb361ea8a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb43263dd ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0xb461ee7a ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb75fd13e ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xbaeb67d8 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf07b526 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xbf373c50 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc1457de6 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xc3045113 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc945eb88 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xca1234b3 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcae4e6ef ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xcb3c4a4e ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xcd35228a osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xcd96c558 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xcec9e25f ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xcfcd19a3 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xcfe840cc ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xd056a72e osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xd2b92b98 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xd422e40b osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xdb6d7c6c ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xdef301b0 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe2cd59e8 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe5f5ce48 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xe700b9fb osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xec06ec80 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0xec2d2f03 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xec7088de 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 0xf86723a7 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xfb764a9b ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xfb7f78b6 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xfc793cd0 ceph_monc_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcaa39c39 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcc48599a dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x188a8d36 is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x196c0126 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2be1f967 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4cddd419 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x55c436e7 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x644b964d wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7f84d522 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8f63c47f wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x658f69f7 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xb3b15f74 __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x284e6bbd gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x31d58f56 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6fafa365 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x841d3f0a ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3533d8d ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x296ba5bc arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3f85fdaa arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x474499bd arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfb380ece arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2ebaab1b ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3efe59ef ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7b825ec9 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xda89695b ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x66ae3ad5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xdc46c07d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x30d4e613 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0219904f ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x18266321 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3da96756 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3de56230 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4d3bbb9b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6129fb92 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x84c0b889 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdcbbb6e4 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf946271d ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x847f17c3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8f7a3987 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8fa5462 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcced8174 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x17d0dc49 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x754d3039 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3b4803f5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x9dc2a646 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x28aa8539 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x320d2bc1 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x68e92993 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x8729caec lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x92ed00f0 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xb1ed4140 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xba14e2d1 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xce9267a1 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x28ad0cd3 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4537b39a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6c32273c llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xc4b34fff llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xdef7d762 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xe2a919f0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfaf8f1c3 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x016df17f ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x0614e720 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x07b96f13 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x0c041bf4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x0d9beafd ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x15cef388 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x16a5b1ae ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x183dcd3b ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x19be43d4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x19f37f0d ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x1a66fc17 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x1e664c41 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x1e82a492 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1f4ca90a ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x2181a4b0 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x2a633c0b ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x303627b2 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x34810793 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x3725733a ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3728f7a5 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x3b106f4a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3ba95019 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x3c9ace3c ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3ed0ef20 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x3fda3480 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x403a18e6 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x40fd5951 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x41d31863 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x45621023 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x4edd7018 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0x54465f65 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5d6dab33 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x5e028deb ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5ed059cd ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x63c0ba59 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x6809f394 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x69a2699a ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x69fc0c6e ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x6ad5a44d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6bd85f55 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6e34a931 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6f314869 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x70388869 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x71f2ec36 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x764225a9 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7651b59e ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x7915eb01 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0b1c92 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x7be27369 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7e9746c8 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x809cf6cb ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x80d37cbe ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x819d04f6 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x84d70627 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x85045925 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8cec8f7b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8db8f423 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x8f2b7cb8 ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x8f73dbad ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x95198c12 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9a638912 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x9cc722b1 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0x9f9675f0 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa1e3ebaa ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa2a64795 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xa52ffca8 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa60d3869 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xa8a27aae ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa94cd662 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa99e23cf ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xacdbacbe ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xad697e6d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xafdf9a86 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb1ea5406 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb6afbc28 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xbf28fe00 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xc0ed27c7 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc548ef6f ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xc80e338e ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xc83e83c9 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xc8bf462b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xc918cdc0 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xc9ae2e69 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcbfcacf0 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xcece32e0 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xd13c8d86 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xd2efdb74 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xd847c87d ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xddc9221a ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe1a3ceb6 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xe266888c ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xe2847cc4 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xe3ceeecf __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xed8fddb2 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xedaee412 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xee6fc522 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf0515c23 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf0d481a2 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xf28e79da ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xf6f47d9b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf909242c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xfe26e268 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xffad289c ieee80211_chswitch_done +EXPORT_SYMBOL net/mac802154/mac802154 0x1b337a65 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x44f5d2ad ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x64c0fb97 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7f415a50 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x8d63bbf4 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8f2286fa ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa14ba18b ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xad50572e ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0xc293376b ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xf08f8762 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xf474736a ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x13942d3e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f9abad7 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x33b424e5 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37d060c9 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x384834d8 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a498cc8 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8a5ceccd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8ec5e6b8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa6c8f6a0 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xace4528c ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb471fc50 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbb62a3b7 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbb80d1b2 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbde8bed0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff944c89 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x45abaf0e nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x464db973 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x50e57a45 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x83371a70 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc2d5d364 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 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 0x583ef857 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5f4289c5 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x6192f930 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x784a0be0 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xa0f7ddb8 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa4374684 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xaab11cb3 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xbca9247e 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 0xf627b121 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf707b5e8 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x1ea058cb nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x34fb21b6 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x4af7c40a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x4e2f539c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x51352eec nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x51a6c5f9 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6cfb7f58 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x775c4e10 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7da17562 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x86c313e9 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xaada5103 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb30acbd0 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xb3a64908 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb8149b72 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xb88aa28e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbbb39cca nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xd0bce380 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xd3ddd6ce nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xde2dcb60 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xedc022ed nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xeed804ca nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x018e7fa4 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x077cf638 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x122cca70 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x186184ee nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1a002f22 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x25c541fa nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x35c1d49f nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x39c0679e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x3cfdbc0d nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x40dee999 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x42b3a660 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x43ae2cee nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x449fc4da nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x4f2c7ec3 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x5c5fb60c nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x5d3a7409 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6f716ed8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x7dab2ea1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x7fbbf268 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x83d6dede nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x922aaaf1 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x99a5b36b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xa2037196 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xa5c228c1 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbc69a8c9 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xcaeaaa33 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xcee0972d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd52a2caa nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xee9b8123 nci_set_config +EXPORT_SYMBOL net/nfc/nfc 0x0810f315 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x0e0ec706 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1ed2cb85 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x23592083 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x2afe3698 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x359cd874 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x38efe062 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3c4cbf67 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x3ea322ff nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x442eef12 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x44d0c9c8 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x52929949 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x53587561 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6f5ea639 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7521b279 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7db52224 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x80a473c9 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x93a9b0b2 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xb702b1b2 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc1dca282 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xcb203bb2 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xd79934d6 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xe7de67a4 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xee7b5ae1 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xfc931dbe nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x6398ed73 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x945519b2 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb149139a nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xcea38164 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x0beeec6c phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x1687d057 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x1acc9fb7 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x3d0bb011 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x50291033 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x5da470ee pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xc561804f phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xcca8d4ac phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0ddc16a2 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b794b82 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1fa0a5e7 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x21b563d2 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x309facd8 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x37c24b63 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x418de169 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6aa5df78 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa705ff74 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9e83d74 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaa27924e rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xaeaa8692 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbeb8c5d0 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc1683d69 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe1677c4e rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe305dc2b rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe5f945c5 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe8768565 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/sctp/sctp 0x1ebd2858 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x01e529ab __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x2e728403 __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x39a5c474 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x5cc71472 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x5d242707 __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x6d8dde8a __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x747bfbdd __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8344344a __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x93b97707 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xbb04d995 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xd76c2eb4 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xf18bf40c __traceiter_smcr_link_down +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9aa1379d gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb296a84b gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xcf114bda gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x02726d5d xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1cbae527 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfed662d6 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0x3aab8e77 rpcrdma_unregister_nvfs_dma_ops +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0xcaa7a8f3 rpcrdma_register_nvfs_dma_ops +EXPORT_SYMBOL net/tipc/tipc 0x5fe31e64 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0x9da56887 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xb363c31f tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xb53e091e tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x5012783c tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x039c9ece cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x09a8d65e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0baf5fd5 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x0bf3356c cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0d655109 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0d73ea01 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x14b95643 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x17a98001 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18b6c250 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x1b3e0656 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d7398f8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1fb529a7 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x206a3b37 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2194d123 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x260a4a47 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x27fb9123 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2ba6e2ed cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x2d18cbe2 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x2de9555b cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2e4859f9 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x309a6279 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x348c09c4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3575e390 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x37ebb63b __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3af9ae35 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x3b97e04d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3cb14663 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x3ec2603a cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x40510279 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x41560769 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x4320672d cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x462e5381 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4aca171e cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x56355689 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x5697abcb cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x570035bb cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5b022655 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x6956e0e5 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x696fcc88 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6c6f835e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x6d150826 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x6e9efea5 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6fdac2a6 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0x70b458f9 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x7252ed85 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x778f654c cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x79774588 get_wiphy_regdom +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 0x7c8e4272 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7d141d48 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x84210a05 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x854b490d cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x906e6a19 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x95ea0433 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x9650938d wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x96be13eb cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9a4fd65a cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9a9ddab4 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x9bd1bf7e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa171ff79 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xa3d8ba1c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xa454b8ac cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xaf678726 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb0b44530 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb10ad635 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb2cea654 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xb44b7af1 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xb72fb1da cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xb76c3602 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xbc01ce0c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbd4c2af1 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbdbc8704 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xbe115edf cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc239cdd3 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc35ff11d cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xcbe07641 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xcbedbcf2 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcf653ca4 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd11dffc2 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd18c42c2 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdcae1738 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe260c9e7 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe269fd8a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe3909763 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xe42734aa cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe44c35e8 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe48958bc cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe48a2e4f cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xe94d572d cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xeca08f71 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xeca104d2 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xed95390e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xf287a15b cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xf3563f03 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf3c39148 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf73000ec cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xf83f94c5 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf9cb44f1 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xfb793f79 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xfc9d5efc cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xfd84c532 wdev_chandef +EXPORT_SYMBOL net/wireless/lib80211 0x1cd87d6f lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x80646685 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb4b82303 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb5cbd7a0 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xbef94915 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf7ccd519 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x9d633fc7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x2f090bc3 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 0x3a016828 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 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 0x800b5189 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x970eff8e snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb7681135 snd_seq_create_kernel_client +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 0xc0adfa91 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00e90496 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x02df593c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0706027e snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x076c70d8 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x082161d9 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x095bff28 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x0f927b52 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x12863671 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x15afbd0b snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x17b5cc88 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x18d74de3 snd_ctl_register_ioctl_compat +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 0x1c0ef31b snd_device_register +EXPORT_SYMBOL sound/core/snd 0x202358a7 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x212a6438 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x2172a89b snd_card_new +EXPORT_SYMBOL sound/core/snd 0x22cbee34 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x32b4cfe8 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x340f9055 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3d9eedb7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x43718570 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4eb6bd7e snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x523663bb snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x5b30a8d2 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x6b03b873 snd_jack_report +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 0x80770ade snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x80fff9d6 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x83b28b0f snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8cfe3baf snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x95fee8d0 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x9dbf537f snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x9e4e2a50 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xacfa2363 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbe2255db snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc1340bc2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc90f2c33 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xcb590288 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd08b42bb snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xda2e0ed5 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xdb047547 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xde476f9b snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xe4c3c760 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xe4fbb0c3 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xe72b3e5e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xe8d93ac1 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xeb00ae82 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xec7d8795 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xf133bd09 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xf86d0004 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x16c910a3 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x6a8feb9d snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x1cd563bf 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 0x08f1e653 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0aa267da snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x0fc55338 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x10a1c881 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x132fba4e snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x13a7a407 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x1c3f42e6 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d4002fc snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1f01adc3 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x266fd051 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0x27e6b240 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x289b7aba snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x36ea0765 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x376897a6 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37d8cde9 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3ec38502 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x407db34e snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x433690ef snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x46b0752e snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x481ff6c5 snd_pcm_new_stream +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 0x515a9b8d snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x519bb4fa snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x51e3c1f7 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x5298bfbf snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x532a325b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x594e77d5 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x59672256 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5c4ca345 snd_pcm_lib_preallocate_free_for_all +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x816c7ab6 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x8b7b24a9 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8f3c592a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x904eb8b0 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x9185fea9 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94f8709a snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xa1086805 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa92aa3ea snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xacf74621 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xadd74372 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xb32f50a7 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc266223f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc9d88009 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd7b571a4 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xdc92592b snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xdd53cc3e snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe40fdc3e snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xee7c6cc4 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xf3f0025c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xf5da5d90 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf9134bb8 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02538c79 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06c939ba __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0920d46c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15aaffa0 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c5344c7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x29bcd3ba snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2b3886ca snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x33b6e1d5 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3496874b snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5968da12 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5def26d4 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x613638e7 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63deca4e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7073ac33 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e270361 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90b5c928 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad136c28 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd0284c27 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe98bb51a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1bf76f3 snd_rawmidi_transmit_peek +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 0x8c308931 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x3191511c snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x3f9ab7b4 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x43e8a94e snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x4fa8662f snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x57c5463e snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x73a1536c snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x76438b61 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x79e84a64 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x8a617516 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x9388610f snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xa90a2f98 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xb819151d snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xbcc1eeda snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xf72429d0 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfbcd38b6 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x69bfa19f 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 0x179c9073 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1d523aec snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3e17e107 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x536a1682 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x86530ff4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9a86d0d2 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa0285466 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3f3d290 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xea8675d8 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1d3640e6 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x203fe8a8 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3994770f snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x40ffbbfa snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49267571 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x80c0bf68 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8f85bfad snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed08441d snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfe0bee71 snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x080d2878 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b2fe23b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d4fe792 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2379bcf0 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2bb39377 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x308723d0 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x325ed257 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34d6e2fc amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a7a3f5e cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e1af574 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fd22122 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b8324b6 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5147345f cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b26a39f cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5ea01595 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x605a24dd amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x714f98e1 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ea12902 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8651e8b0 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98fc96fe fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9a438f26 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9baf9063 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f8bb214 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa738c484 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac6daf28 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb08c3c6b cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb4d25995 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb6702034 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe36600f3 cmp_connection_break +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x99ed5e34 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x65a47011 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x71e7ef94 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2bfae893 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4b3ef1c0 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x73553b0b snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fa969e4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa32c061f snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbc384c43 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd9c76784 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xde18303a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0d662b85 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4b3554d1 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5396f1a1 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8bf3ecc8 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcf3e275 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xff9acdc6 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8ba7459c snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb88134bc snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xbb421f65 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd3992eb0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8f14252a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe82f737f snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3f3e0a38 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43e1e71b snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x695e5ed1 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x766d79f8 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8e8ab173 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xfa87fdf4 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x03edd124 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2949df30 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x409968ba snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x45e3c0c2 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5919b3cf snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f50e4d2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x06fe280b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0e4b5ef8 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x45727381 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x565f33f1 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5c85ff85 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x67c70072 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8f8890ae snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ecb4b71 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc0c06384 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd7b82a10 snd_sbmixer_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x213b5723 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x269cc0ce snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x356d7851 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3a25602e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d0c7b25 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x46058fcd snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5ac54ea6 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5bc5fbeb snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7169994b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87d7caa0 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90da61b9 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9fffe162 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7bdeed0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa88bbdb9 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcea9cc4c snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf708ad9 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2f899d0 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xf785a364 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1706875d snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x36a87e1e snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4948c867 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4a8d1975 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x519cfb6c snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x548105e3 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9d569fdb snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb17cb483 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbb61dea8 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1723ee0e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2abf0d09 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x5c3b4a23 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1bf20baa oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b9f9329 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37c8d367 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5043eb07 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x58635ec5 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72025d6c oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4b25ac4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4d69aba oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa52d45c9 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0336fd0 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb071e24c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb40eb978 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd222f42a oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd76087ef oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xda269d67 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe409ca44 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe74c2e2f oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe75bb140 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf12e538f oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf408d026 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x008f5e61 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2411e8b7 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x42a2041d snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8e40c0ee snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xde4b2e74 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x52f1413b snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xfc734124 snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x78029824 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x9bd9e623 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x875613f3 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xffc47504 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1b183878 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5739bfb8 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x0580d84c aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x66264564 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xb2ed1528 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x313504fc aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xc6706c75 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 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 0xbbd8092f wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xdf59587c wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xffd315cb wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/snd-soc-core 0x196f096d snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/amd/snd-sof-amd-renoir 0x5f6834e0 sof_renoir_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x032d1f43 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16685b72 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18bc75bf snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1c767a3d snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x27f0c5f0 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30cc6567 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x323c8886 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x41d0a834 snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x44d546d7 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4d537936 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x537b992f sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x64cc06d7 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6773fd26 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x68848271 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x749817e3 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76fd9227 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7ea221c1 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7fea33c3 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x800e8697 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x817d08ad snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x832e5685 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8705ba2a sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x884d1953 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x890e7e95 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c7f3d26 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8fe769e9 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98161a47 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9a6d2035 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9b50ec0e snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f086b5c sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa04ba548 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa065464e sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa376535b snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaca5be5c snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaca82e8b sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xadf63b03 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb59216ae sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb798955d snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbd4f78c0 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbe2ef461 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc074012a snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc156cdda sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca1c28a3 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc823e57 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xceaa851e snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd344e6c5 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe000f165 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe50f9e18 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf057451c sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3eb76ad snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf45f65d8 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf4d18138 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf5641ab9 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf96b5c76 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfa947e10 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0xb51f7b50 snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x421e1612 sound_class +EXPORT_SYMBOL sound/soundcore 0x45296e3a register_sound_special +EXPORT_SYMBOL sound/soundcore 0x5c3b4214 register_sound_special_device +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 0xeb998add register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfd273c8c register_sound_mixer +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x023e4687 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 0x6c6e3eee snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x779be739 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x98870d82 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9ce7cb76 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xdd6c8fec 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 0x4d75e969 __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 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00350790 pci_disable_device +EXPORT_SYMBOL vmlinux 0x00440003 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x004a368a devm_clk_put +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00bbb669 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e5f747 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x00fc9726 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015bd133 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x01631d62 __scm_send +EXPORT_SYMBOL vmlinux 0x016461c4 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x01717372 scsi_done_direct +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 0x018d1866 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x018e69da scsi_print_result +EXPORT_SYMBOL vmlinux 0x01a59837 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x01aa7691 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf0462 skb_push +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01dd3378 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x0205b7c8 uart_match_port +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020d29e6 __d_drop +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 0x023d09c4 watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x023f22a1 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024b4e44 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x0261e571 sock_from_file +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027bcbc2 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x028b4542 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02985d7e vc_resize +EXPORT_SYMBOL vmlinux 0x02acadde dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x02b6a74e __destroy_inode +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02d24132 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x03128ec5 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x03167259 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x031f6ab6 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0x03323f0f ethtool_notify +EXPORT_SYMBOL vmlinux 0x0333512b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0349806c jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x034a7baa dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x036072e9 key_link +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0362f9a8 __x86_indirect_thunk_r12 +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x0396754a ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b1af9c free_task +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c202b2 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x03ca888e jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x03f2431c ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x043d0d43 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x043db932 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0451e75d __mdiobus_read +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047b91d1 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x0485eba6 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x048dcdb9 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04ce5cbe dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x04d2fcae i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x04d59a06 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04db0349 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x04e5e26a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x04ea0f85 noop_llseek +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f12fcb from_kuid +EXPORT_SYMBOL vmlinux 0x04f6786e phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x05036422 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0503a258 file_remove_privs +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05423586 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x05436b75 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0570d35f ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0583c5f1 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05aa8932 __serio_register_port +EXPORT_SYMBOL vmlinux 0x05b12347 _dev_alert +EXPORT_SYMBOL vmlinux 0x05b6ab7a dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x05c6c8c7 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x05cd4d4f netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x05d07a2a nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x05d2405e xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x06033b3d sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061d544c reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x0626f8d8 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x062830a7 dev_mc_add +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06442ab0 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x064487ad put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x064d45b5 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x0658134d add_watch_to_object +EXPORT_SYMBOL vmlinux 0x065c12b2 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x066354d5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x0668b2fa inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x066b7068 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x067b7706 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x06940f22 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x0697dd69 file_path +EXPORT_SYMBOL vmlinux 0x06a27c2f eth_type_trans +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06b57642 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x06b7e2e1 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06d385d2 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x06ead246 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x06f37b2d generic_setlease +EXPORT_SYMBOL vmlinux 0x06f81260 param_ops_bint +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x072c0a8e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0741073e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x075ee7ae rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x07717603 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x0789d652 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x078be506 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aed0c2 d_genocide +EXPORT_SYMBOL vmlinux 0x07b49f88 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d43150 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x07f1523c irq_set_chip +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 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084416fd fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x085825de jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x0862908e __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0863dec1 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x0870d509 __icmp_send +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x0884ed5e dget_parent +EXPORT_SYMBOL vmlinux 0x08a578ca clk_add_alias +EXPORT_SYMBOL vmlinux 0x08dc6a15 igrab +EXPORT_SYMBOL vmlinux 0x08dcf4ea mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x08e5088d mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x09010efa __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0911076c kill_anon_super +EXPORT_SYMBOL vmlinux 0x0915943a kset_unregister +EXPORT_SYMBOL vmlinux 0x09288344 netdev_printk +EXPORT_SYMBOL vmlinux 0x0928f909 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x092cf9a2 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093acf0f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x0944e99a dump_skip +EXPORT_SYMBOL vmlinux 0x09526f7d give_up_console +EXPORT_SYMBOL vmlinux 0x095b5a2a pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x09684129 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x09691ec3 sg_miter_start +EXPORT_SYMBOL vmlinux 0x096b8e23 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098a3b0a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0990f908 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099b63d7 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x09c48e2d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e1bba3 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x09e4a224 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x09ec4e4b get_user_pages_remote +EXPORT_SYMBOL vmlinux 0x09f51372 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x09f850b5 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x09fcb750 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a052638 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1e2ec4 param_set_bint +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a204d82 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0a2e8c59 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x0a60b919 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a983b7e _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa0df8a mpage_readahead +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aabbe14 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abbd7fa serio_interrupt +EXPORT_SYMBOL vmlinux 0x0aca812f generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adc252e sock_init_data +EXPORT_SYMBOL vmlinux 0x0add5622 dst_release +EXPORT_SYMBOL vmlinux 0x0af2d535 __fput_sync +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b6c7562 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7dacb0 ether_setup +EXPORT_SYMBOL vmlinux 0x0b873adb inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bb97ccc ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bf0cb62 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c14e4f6 ip_defrag +EXPORT_SYMBOL vmlinux 0x0c177248 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c2aec1e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x0c2e3f31 block_write_end +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c4a11a4 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x0c4e211b dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0c4f18f6 bh_submit_read +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5bb657 mmc_free_host +EXPORT_SYMBOL vmlinux 0x0c642d33 security_path_mknod +EXPORT_SYMBOL vmlinux 0x0c6bad78 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c70bc3a devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x0c761792 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x0c938cbb devm_register_netdev +EXPORT_SYMBOL vmlinux 0x0cb3ac1e agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x0cb40e1f filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x0cbd2760 backlight_device_register +EXPORT_SYMBOL vmlinux 0x0cc1cdb8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x0cc1e799 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd95865 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0d03c8cd page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x0d066a66 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0ca666 ps2_end_command +EXPORT_SYMBOL vmlinux 0x0d22737b xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x0d26e9c7 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x0d2a0bc5 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d54dbc8 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x0d7b002d boot_cpu_data +EXPORT_SYMBOL vmlinux 0x0d7c268b neigh_for_each +EXPORT_SYMBOL vmlinux 0x0d93111b ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x0d983097 pci_bus_type +EXPORT_SYMBOL vmlinux 0x0daf7932 netdev_features_change +EXPORT_SYMBOL vmlinux 0x0dc237b3 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x0dcfaaea devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x0ded28de vfs_rename +EXPORT_SYMBOL vmlinux 0x0df92a5e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x0e063520 __breadahead +EXPORT_SYMBOL vmlinux 0x0e0f5079 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e1c43e1 set_page_writeback +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e509c69 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0x0e6500f3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x0e6654dc pneigh_lookup +EXPORT_SYMBOL vmlinux 0x0e728345 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x0e9be6ec tcf_block_put +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 0x0ec7af51 tcp_req_err +EXPORT_SYMBOL vmlinux 0x0ed05d2e set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x0eeafa35 ilookup5_nowait +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 0x0f4ea765 phy_aneg_done +EXPORT_SYMBOL vmlinux 0x0f5b2d7f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f7f81ed pci_choose_state +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f900bf5 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x0f967232 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0facf9b1 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe341f7 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x0fe488e2 skb_expand_head +EXPORT_SYMBOL vmlinux 0x0ff15319 posix_test_lock +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x10065bf6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x100e8862 serio_bus +EXPORT_SYMBOL vmlinux 0x1022a5ae ppp_register_channel +EXPORT_SYMBOL vmlinux 0x102b870a tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104cc85e __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1052a8c6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x105f178e cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1077071f pci_pme_active +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107df79a clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6e152 tcp_connect +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10f0207c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x10f45869 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110b4568 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x113744e2 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x114b746f xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x114fcb98 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x11520195 sock_no_linger +EXPORT_SYMBOL vmlinux 0x11554d9d devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117d9f25 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x11b5409e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x11c333d5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ea7a25 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x11f750d9 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1202eef7 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d91a0 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x121437d9 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x1221c7e5 path_has_submounts +EXPORT_SYMBOL vmlinux 0x122823c4 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x12362d9f cpu_info +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x125b8fe3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x126fe683 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x128197b1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12e0be34 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x12eec8ce tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132c37ab path_get +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x1347509a dentry_create +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x1398aa53 filp_open +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13af27ff config_item_get +EXPORT_SYMBOL vmlinux 0x13c1878e fb_pan_display +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d2edcc iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x140f0db3 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x140f7068 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141ff642 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x1420968b genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x14253c58 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x14254c74 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x143257b0 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x1437c4e3 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0x14411e0e padata_free +EXPORT_SYMBOL vmlinux 0x14436cf6 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x14506659 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x1454ac10 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146ae0eb can_nice +EXPORT_SYMBOL vmlinux 0x146c35a1 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x14746951 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1483dd71 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x14894049 param_ops_byte +EXPORT_SYMBOL vmlinux 0x148f6626 softnet_data +EXPORT_SYMBOL vmlinux 0x14998682 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x14b244b3 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x14baf043 wireless_send_event +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cab327 arp_create +EXPORT_SYMBOL vmlinux 0x14ffcfc0 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x150b70b1 mr_table_dump +EXPORT_SYMBOL vmlinux 0x150d6e29 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x153c9249 __register_nls +EXPORT_SYMBOL vmlinux 0x1544be80 ip6_frag_next +EXPORT_SYMBOL vmlinux 0x1546986c kill_fasync +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15621f96 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x15825877 phy_device_create +EXPORT_SYMBOL vmlinux 0x158b4ff4 phy_get_pause +EXPORT_SYMBOL vmlinux 0x15a4317b tcf_block_get +EXPORT_SYMBOL vmlinux 0x15ba50a6 jiffies +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bd830f ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x15bed7a5 LZ4_decompress_safe_partial +EXPORT_SYMBOL vmlinux 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15de9d77 dev_add_pack +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x15fc8d9f netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x160cc468 reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x160d0321 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1654b46e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x16757e02 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x167a4b2b simple_transaction_read +EXPORT_SYMBOL vmlinux 0x167c5230 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167ddfe1 block_write_begin +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16814684 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x1683d32b bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16aeccd8 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x16ccc00d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1705c1ec kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x170d32ef vme_register_driver +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1718b539 dma_pool_create +EXPORT_SYMBOL vmlinux 0x17199b32 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x1735ea01 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x173b8c46 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x173d6b53 fb_set_var +EXPORT_SYMBOL vmlinux 0x1745dc5b sock_setsockopt +EXPORT_SYMBOL vmlinux 0x174d8faa sg_miter_next +EXPORT_SYMBOL vmlinux 0x1752c537 phy_print_status +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1784d4e8 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x1785146e pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x1793ad5b pci_write_config_word +EXPORT_SYMBOL vmlinux 0x17a16735 kern_path_create +EXPORT_SYMBOL vmlinux 0x17b21dfb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17d7deb7 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x17eb0220 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x17ec55df skb_free_datagram +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17f8d63c agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x1810938a __free_pages +EXPORT_SYMBOL vmlinux 0x182e0fab nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1841fe59 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x184b6242 d_alloc +EXPORT_SYMBOL vmlinux 0x184e5bb3 param_set_ulong +EXPORT_SYMBOL vmlinux 0x186a1444 sock_no_connect +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18938d6b capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x18985ba0 simple_getattr +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18d98b83 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x18dc679c nonseekable_open +EXPORT_SYMBOL vmlinux 0x18e077e7 dev_uc_del +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f895ab call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x18fbb4fe dm_table_get_md +EXPORT_SYMBOL vmlinux 0x191a5e74 dev_deactivate +EXPORT_SYMBOL vmlinux 0x1920cb22 dev_change_flags +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x193061ec inet_offloads +EXPORT_SYMBOL vmlinux 0x1945e74a xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x194d280f kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x197d435b ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1999a631 kill_litter_super +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a14b4e netdev_emerg +EXPORT_SYMBOL vmlinux 0x19a80f09 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19d29b50 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x1a070984 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x1a0aa994 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1a20e091 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x1a2dfe7d netdev_alert +EXPORT_SYMBOL vmlinux 0x1a35e38e __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x1a3781fc security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5cd6fa input_close_device +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a73e93f phy_detach +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a7b100a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1a82679c security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x1a8f2f1f gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1a992a18 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1aecb192 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x1afc5c4a md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b064e70 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x1b097d94 udp_poll +EXPORT_SYMBOL vmlinux 0x1b0aaa1f flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x1b111369 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x1b3b6e5b simple_get_link +EXPORT_SYMBOL vmlinux 0x1b442e41 skb_queue_head +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6716f0 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x1b741296 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba3d7b9 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1baaf997 skb_tx_error +EXPORT_SYMBOL vmlinux 0x1bb04c91 udp_read_sock +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bc21800 __post_watch_notification +EXPORT_SYMBOL vmlinux 0x1bcaacf2 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be9f159 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1c05c0b7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x1c0889bc filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6e3f2b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x1c72fbee submit_bh +EXPORT_SYMBOL vmlinux 0x1c7a71bd register_quota_format +EXPORT_SYMBOL vmlinux 0x1c8732d7 rw_verify_area +EXPORT_SYMBOL vmlinux 0x1c943fe5 scsi_device_put +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb95fc1 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd0beca proto_register +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdc3aaf console_stop +EXPORT_SYMBOL vmlinux 0x1cde0d2a sock_no_bind +EXPORT_SYMBOL vmlinux 0x1ce41de2 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x1cf7c2cd filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x1cfa7e64 __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1002b8 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d328af0 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x1d3f3f08 get_phy_device +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d509809 single_release +EXPORT_SYMBOL vmlinux 0x1d5d1119 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x1d7cf43d dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d996936 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbe4fcb con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1def4b85 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x1df3aadd bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0ccbd5 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0ebab0 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e237a3e file_modified +EXPORT_SYMBOL vmlinux 0x1e3afbbc max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x1e3f1b95 simple_statfs +EXPORT_SYMBOL vmlinux 0x1e4bb4bb mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1e627e82 task_work_add +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 0x1ead0716 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x1eb909b3 inet_del_offload +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ecddee9 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x1ecf5943 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edaef11 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1f146431 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1f1821ae efi +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f3b9e4d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x1f451302 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x1f4bb583 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f64ad81 __put_user_ns +EXPORT_SYMBOL vmlinux 0x1f81e953 agp_bridge +EXPORT_SYMBOL vmlinux 0x1f855123 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x1f88647e mmc_retune_release +EXPORT_SYMBOL vmlinux 0x1f9f3d69 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x1fa60d3b phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x1fa7fbdb tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1fbaa2e0 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1fbb9298 pnp_get_resource +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 0x1fdc9223 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x1fe4df81 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x1ff3382d dump_page +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20300ce4 udp_seq_start +EXPORT_SYMBOL vmlinux 0x20346a25 inet6_bind +EXPORT_SYMBOL vmlinux 0x20380c6e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x203def6a fsync_bdev +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x206c82bd iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x207cdb72 md_reload_sb +EXPORT_SYMBOL vmlinux 0x207e31b9 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x209c098f udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x20a4e878 register_filesystem +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +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 0x20de0eed tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0x20e2141f skb_unlink +EXPORT_SYMBOL vmlinux 0x20e569bc simple_release_fs +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f55be4 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x21051193 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x2123d743 dm_io +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x21319175 netdev_state_change +EXPORT_SYMBOL vmlinux 0x21347ba8 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213a77ea netif_receive_skb +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x21451a36 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x215203bc vfs_mkobj +EXPORT_SYMBOL vmlinux 0x215f2f98 dma_supported +EXPORT_SYMBOL vmlinux 0x216ea213 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x21839b32 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x2184f7dd inet_put_port +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21912f8f is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x21967acd request_key_tag +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21df456b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ede360 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x21ee6e7e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f997ac migrate_vma_setup +EXPORT_SYMBOL vmlinux 0x2204d007 kset_register +EXPORT_SYMBOL vmlinux 0x2227eefc pskb_expand_head +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22490139 __module_get +EXPORT_SYMBOL vmlinux 0x224f4a9c neigh_seq_start +EXPORT_SYMBOL vmlinux 0x227c662f fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x22a914dc rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cdbc8f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x22dd594e pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22def2b5 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x22e1b479 set_blocksize +EXPORT_SYMBOL vmlinux 0x22f6ed91 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x23020a2b netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x23307cae pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x236878c7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x2390bcb1 seq_release_private +EXPORT_SYMBOL vmlinux 0x239ae8eb vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x239c81f5 mmc_request_done +EXPORT_SYMBOL vmlinux 0x23ab74c9 _dev_err +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c2f56c serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23ccfa39 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x23d726f0 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23e071f7 elv_rb_find +EXPORT_SYMBOL vmlinux 0x23e4e0e5 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x23fd1e66 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2407acf4 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x242ebf84 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x243c0ac2 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2444ac20 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x244d5036 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2467a44f pci_remove_bus +EXPORT_SYMBOL vmlinux 0x24780c77 napi_complete_done +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2497bf9b padata_do_parallel +EXPORT_SYMBOL vmlinux 0x249e2b4d dma_sync_wait +EXPORT_SYMBOL vmlinux 0x24ac35d2 d_lookup +EXPORT_SYMBOL vmlinux 0x24cb0a99 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x24cb4bce i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24db26dc no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x24ec21f6 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x24ee39b2 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x24f73980 sock_create_lite +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250fc75e xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2510aa3f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x251358da vfio_pin_pages +EXPORT_SYMBOL vmlinux 0x25140027 param_get_bool +EXPORT_SYMBOL vmlinux 0x25161c1a tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x25175b86 __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x25188716 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2531a760 seq_lseek +EXPORT_SYMBOL vmlinux 0x2532003a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x25495436 mipi_dsi_dcs_set_tear_on +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 0x259370c5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x25943f9f generic_listxattr +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259ebc61 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x25c2257a neigh_xmit +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e70d39 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26125d2f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x2632ba46 vfs_llseek +EXPORT_SYMBOL vmlinux 0x263a49e4 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x26498f57 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x2664f77c complete_request_key +EXPORT_SYMBOL vmlinux 0x266a19ba tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x26822b55 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269a67e5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x26a5bb0e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x26a5fd08 km_report +EXPORT_SYMBOL vmlinux 0x26b2adc1 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x26c3a8c8 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x26d13ec2 pskb_extract +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26ea6063 mmc_release_host +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x2709a317 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271217ef fwnode_phy_find_device +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 0x27420f63 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2747d756 key_invalidate +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x2773d74e inet_protos +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 0x278b4ed2 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x27941c31 i2c_transfer +EXPORT_SYMBOL vmlinux 0x27946106 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x27a9e41b serio_close +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c9cf82 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27ec6a8d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x27f52b92 kobject_set_name +EXPORT_SYMBOL vmlinux 0x28004178 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x28039ca6 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28192f03 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x281ed079 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x282a0097 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x283b3f47 PageMovable +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x287d716b netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x287ee709 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x287f556a rproc_alloc +EXPORT_SYMBOL vmlinux 0x288c9b6d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x289eb7a1 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x28a8b103 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x28ad8f3b pci_set_mwi +EXPORT_SYMBOL vmlinux 0x28d43075 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x28d6ba80 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x290a6581 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x290afbcf netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x29163932 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x2933a662 tty_port_open +EXPORT_SYMBOL vmlinux 0x29532914 vfs_setpos +EXPORT_SYMBOL vmlinux 0x2958c5e0 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29691d4a cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x299a39fb sock_bind_add +EXPORT_SYMBOL vmlinux 0x299f3bef eisa_bus_type +EXPORT_SYMBOL vmlinux 0x29a644fd file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x29ab67b7 request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29c96893 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x29cac7cb nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x2a26f245 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3c28af sk_reset_timer +EXPORT_SYMBOL vmlinux 0x2a4692e3 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x2a6a1a6c lease_modify +EXPORT_SYMBOL vmlinux 0x2a6a4e25 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a74eca1 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x2a76deef __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x2a8d063b qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aa2960c tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2aca24d1 devm_memremap +EXPORT_SYMBOL vmlinux 0x2ad6aa4a tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2adac6db sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x2b0cfd55 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x2b2cd105 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2b347299 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x2b3482d0 put_fs_context +EXPORT_SYMBOL vmlinux 0x2b3fdd8f seq_putc +EXPORT_SYMBOL vmlinux 0x2b40d77a cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b662e9a xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2b672977 get_tz_trend +EXPORT_SYMBOL vmlinux 0x2b67c267 get_task_cred +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b74b8b7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x2b7c77d2 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0x2b8cc6f0 nd_btt_version +EXPORT_SYMBOL vmlinux 0x2b8ce5dd param_set_hexint +EXPORT_SYMBOL vmlinux 0x2b9cd114 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb481b9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bfdbce2 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x2bfe1bb7 proc_symlink +EXPORT_SYMBOL vmlinux 0x2c0aeefc folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x2c1c3a0e __nd_driver_register +EXPORT_SYMBOL vmlinux 0x2c2316bc mark_page_accessed +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3ab710 vfs_get_super +EXPORT_SYMBOL vmlinux 0x2c4679e8 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c562044 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x2c666d92 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c81fbb9 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cc2caf4 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x2cc9f9aa pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd73f73 phy_read_paged +EXPORT_SYMBOL vmlinux 0x2cdc2fa1 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce302f1 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x2d0481dd t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2af90e register_key_type +EXPORT_SYMBOL vmlinux 0x2d2f4921 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d310d66 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2d32f9be pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d3a2ea1 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d6283d4 dcb_setapp +EXPORT_SYMBOL vmlinux 0x2d7d779b xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da4ecfc dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x2db9d50b tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x2dbb66c6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2de93679 _dev_printk +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df30569 component_match_add_release +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e587f87 vga_con +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e7e8afa serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x2eba2724 page_symlink +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecf2b90 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x2ed51b94 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x2ed5f110 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2eded8e5 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2ee34e3f key_revoke +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2eeee156 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x2ef3a4da block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x2f036aed elv_rb_add +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f127be8 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x2f20e42e tty_write_room +EXPORT_SYMBOL vmlinux 0x2f25cdcb read_cache_folio +EXPORT_SYMBOL vmlinux 0x2f26f9f9 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f6284f6 sync_file_create +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f89994e mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x2f8faf93 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x2fc2f211 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2fd2015a phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2fd7fe46 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fecac7e xsk_tx_release +EXPORT_SYMBOL vmlinux 0x2ffde1b6 make_kprojid +EXPORT_SYMBOL vmlinux 0x300e613e pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x305eb2d8 mmc_get_card +EXPORT_SYMBOL vmlinux 0x307d300b ipv4_specific +EXPORT_SYMBOL vmlinux 0x307f2950 generic_write_end +EXPORT_SYMBOL vmlinux 0x308dbbb7 pci_request_regions +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a827ec __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x30a8d120 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30b4c72d d_invalidate +EXPORT_SYMBOL vmlinux 0x30c06b96 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x30c63bc6 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x30ca1589 lookup_one +EXPORT_SYMBOL vmlinux 0x30cc2acb reuseport_alloc +EXPORT_SYMBOL vmlinux 0x30ccdec6 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x30cd46a9 dst_discard_out +EXPORT_SYMBOL vmlinux 0x30d2ea1e dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x30d6ba0b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31031d05 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x310c5916 generic_fadvise +EXPORT_SYMBOL vmlinux 0x31143431 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x311bbb57 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x3124569a pci_fixup_device +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31375180 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x313877c6 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x3163b15e follow_pfn +EXPORT_SYMBOL vmlinux 0x31698cbf vm_event_states +EXPORT_SYMBOL vmlinux 0x31892bae arp_xmit +EXPORT_SYMBOL vmlinux 0x318be5d8 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x319a2e45 cdrom_release +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31b6e3cb tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x31cf20b4 pps_register_source +EXPORT_SYMBOL vmlinux 0x31dbab79 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x31e3170f module_put +EXPORT_SYMBOL vmlinux 0x31f5a748 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x32026846 sock_create_kern +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x32179cb3 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x3218bd2e xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x321c6591 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x324d30cb tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x3262ea58 tty_unregister_driver +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 0x3286c2d0 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x328b6d40 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3297b7ec dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x329ef8dd regset_get_alloc +EXPORT_SYMBOL vmlinux 0x329f23b2 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x32c36db1 freeze_bdev +EXPORT_SYMBOL vmlinux 0x32cadb07 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32e921b8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x332595db framebuffer_release +EXPORT_SYMBOL vmlinux 0x33259a36 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x334d94d4 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x33623a27 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x33700a25 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x338a0fbf sock_wmalloc +EXPORT_SYMBOL vmlinux 0x338a5590 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x338b30b5 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x339af6a9 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x33ad1c3b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x33ad43af pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33b997c1 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x33d42d06 param_ops_short +EXPORT_SYMBOL vmlinux 0x33d434f8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x33d6b471 skb_flow_dissect_hash +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 0x340064f0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x341d96c0 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3428db82 mr_dump +EXPORT_SYMBOL vmlinux 0x343afccd netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x343bc33a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x344c707b __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x345d1e18 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x346e8e71 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x3471ec33 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x347c0e72 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x3484452c folio_unlock +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348b1d74 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a05340 pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34af512e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34d5a4ee handle_edge_irq +EXPORT_SYMBOL vmlinux 0x34d7fbda vme_master_mmap +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34dbc6f6 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x34ed69a8 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352e3f1f __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x3536cb84 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x35372a2c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x355b7339 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x355f10e8 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357924a4 pci_release_region +EXPORT_SYMBOL vmlinux 0x35917e18 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35bea991 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x35d1aa4c tcp_conn_request +EXPORT_SYMBOL vmlinux 0x35d38a4c seq_path +EXPORT_SYMBOL vmlinux 0x35dc7665 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x3649391b agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x364a0e96 ip6_output +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3656d576 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3674777c alloc_pages +EXPORT_SYMBOL vmlinux 0x367fc150 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x368c2f95 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x36a82cec tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x36a9baa2 make_bad_inode +EXPORT_SYMBOL vmlinux 0x36b37700 audit_log_start +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36bd1d45 __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x36ca193e pci_release_regions +EXPORT_SYMBOL vmlinux 0x36d5cf4e posix_lock_file +EXPORT_SYMBOL vmlinux 0x36debb35 tty_register_device +EXPORT_SYMBOL vmlinux 0x36e6870a devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x36ef75a8 proc_set_size +EXPORT_SYMBOL vmlinux 0x36f08731 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x36f419d1 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x3703b55f thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x3708eb06 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x370d4266 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372573b7 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x37380e19 ram_aops +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3760d5a8 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x376a319b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x376f91f4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x377307fb netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x3788e995 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x378e4224 input_match_device_id +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37be75b7 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c5a2c3 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x37db614b scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37f4e721 vme_slave_request +EXPORT_SYMBOL vmlinux 0x3808ff33 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x380b7b78 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x380cef06 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38202824 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3828b612 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x382c9e5e devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x38421367 rproc_boot +EXPORT_SYMBOL vmlinux 0x3849def4 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3852fde4 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385b9125 cdev_device_del +EXPORT_SYMBOL vmlinux 0x385eca9b ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3864227b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x38699e1b simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x38727113 generic_shutdown_super +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 0x389b688d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x38a07134 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b86d29 flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x38da8388 dm_table_event +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x38f64f6d seq_dentry +EXPORT_SYMBOL vmlinux 0x38f76210 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x38f93f5e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39349c25 eth_header +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393cfad3 dev_mc_init +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3953103a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39583fdd should_remove_suid +EXPORT_SYMBOL vmlinux 0x395e3e96 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x396247b8 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x3971d5ee fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39a6e6d0 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c527ab sk_capable +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39e7bc58 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a0f08b4 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a1c5fd3 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3a26ba6b input_register_device +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a5dee8c blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x3a5f27df vme_bus_num +EXPORT_SYMBOL vmlinux 0x3a5f8aa7 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x3a6b6336 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x3a6c1a89 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x3aa2cf7f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x3aa3bf74 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ab8a07e dma_free_attrs +EXPORT_SYMBOL vmlinux 0x3ac12d96 xp_alloc +EXPORT_SYMBOL vmlinux 0x3ac1884b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x3ac784da mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad1b33a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x3ad40c98 inet_csk_prepare_forced_close +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 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aef7b0b fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x3af16fa2 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b1ee809 register_cdrom +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b2f9bb6 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b40f283 d_path +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b72f08d preempt_schedule_notrace_thunk +EXPORT_SYMBOL vmlinux 0x3b7dc013 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x3b83610f cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b963636 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x3b993176 dquot_commit +EXPORT_SYMBOL vmlinux 0x3b9c1cb8 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x3ba34290 __brelse +EXPORT_SYMBOL vmlinux 0x3bb1cb1e fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x3bc9e006 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x3bd6bf35 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bebaf86 arp_tbl +EXPORT_SYMBOL vmlinux 0x3bf08c58 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x3bf0a8b6 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x3bfa5cc0 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3bfaedd6 kobject_add +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c2a7cbf fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x3c35222f mdio_device_free +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c50c950 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x3c88d0d3 netdev_warn +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3ce33c34 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cef72fe devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d60b866 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3d6b54dd scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3d6de3c9 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x3d6f2e2f iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3d9987ea pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dab638d build_skb_around +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 0x3db849dd prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddacdb3 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3deada04 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dffb816 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x3dfffa7b unix_get_socket +EXPORT_SYMBOL vmlinux 0x3e1aae6f no_llseek +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e4aedb6 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3e717f6b blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3e739fe8 genphy_resume +EXPORT_SYMBOL vmlinux 0x3e766676 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x3e77803b simple_link +EXPORT_SYMBOL vmlinux 0x3e788f0d mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x3e992293 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x3ecdfc9f mmc_start_request +EXPORT_SYMBOL vmlinux 0x3ed05c80 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efac025 phy_attached_info +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f062664 stop_tty +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f0f196c scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3f0f388d amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x3f1584d8 proc_create +EXPORT_SYMBOL vmlinux 0x3f1cc573 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x3f2bbcc6 security_sb_remount +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f510966 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3f83bfec security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f893d2e configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x3f9cd7c7 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x3fa1145d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3fa24ae0 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x3fba0e1b kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc72131 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x3fd2f8f8 cdev_add +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3feb3350 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x3ff791a6 generic_perform_write +EXPORT_SYMBOL vmlinux 0x3ff94510 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x40013904 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x400e4471 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x401a9352 configfs_register_group +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x4023a94b mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x40278a24 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x407a04a9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x407b8c74 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40980b0b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c1c3bf copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d49f47 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d82c19 rtc_add_group +EXPORT_SYMBOL vmlinux 0x40f3afed udp_gro_receive +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40ff8a53 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x4109e8de pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x4130b834 phy_driver_register +EXPORT_SYMBOL vmlinux 0x4136cd30 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x4140dd43 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41494dee blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x415a74d5 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x41621533 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x4171769a twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x4180e868 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418b9a30 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0x419de8cc agp_copy_info +EXPORT_SYMBOL vmlinux 0x41a5d493 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x41b9cc24 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x41c06bcc fc_mount +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fd828e pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x422b1bbe vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x422c7ce9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4236d1cd devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424cd896 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425364b1 __register_chrdev +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x42658f69 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x4270bb11 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x427523e9 iterate_dir +EXPORT_SYMBOL vmlinux 0x42790a23 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x42a53c19 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x42a568bb ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x42ad3450 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x42bc1791 __neigh_create +EXPORT_SYMBOL vmlinux 0x42bcc3d3 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42bf6b68 inet_add_offload +EXPORT_SYMBOL vmlinux 0x42c8563c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x42d4e1c4 con_is_visible +EXPORT_SYMBOL vmlinux 0x42e645ac end_page_writeback +EXPORT_SYMBOL vmlinux 0x42f04756 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307893b config_group_find_item +EXPORT_SYMBOL vmlinux 0x430960b2 mmc_put_card +EXPORT_SYMBOL vmlinux 0x43102808 set_cached_acl +EXPORT_SYMBOL vmlinux 0x43165782 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x4318fe30 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x432aafc6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433a85bb __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4354ca95 __scm_destroy +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4399a6a0 skb_append +EXPORT_SYMBOL vmlinux 0x439af369 devm_free_irq +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b24674 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x43c5404d param_ops_hexint +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d8efe8 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x43db88fd scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x43e35451 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x43e6c06b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x43eca24a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x440beef4 lru_cache_add +EXPORT_SYMBOL vmlinux 0x4419af2d udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x442b6c90 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x44480c27 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x444827f0 d_delete +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4466c27e phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x44828418 dm_get_device +EXPORT_SYMBOL vmlinux 0x44840359 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x44862321 genphy_loopback +EXPORT_SYMBOL vmlinux 0x448d9228 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44c08312 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x44dc67e5 __phy_resume +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450aed17 input_register_handle +EXPORT_SYMBOL vmlinux 0x450df44a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x4511d6ea skb_copy_header +EXPORT_SYMBOL vmlinux 0x45135a4f tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x4534b221 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x4539dc35 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4556cede input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x455c6bc8 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x456c7d85 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4579f8dc block_truncate_page +EXPORT_SYMBOL vmlinux 0x457bba50 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x459f7efb __devm_release_region +EXPORT_SYMBOL vmlinux 0x45c1b1c0 netdev_crit +EXPORT_SYMBOL vmlinux 0x45ca7a91 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x45d1d73a dev_driver_string +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45e2e74f skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45f990e0 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x4615d4a3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46480f98 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466fb9b0 get_tree_keyed +EXPORT_SYMBOL vmlinux 0x4679535e __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4686d95c km_query +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46acb619 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46cf956b mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47163c79 neigh_destroy +EXPORT_SYMBOL vmlinux 0x473a2117 sync_blockdev +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x4767c12f unregister_binfmt +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x478b8c8d __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479d2601 thaw_bdev +EXPORT_SYMBOL vmlinux 0x47c20f8a refcount_dec_not_one +EXPORT_SYMBOL vmlinux 0x47c65bfc unregister_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0x47c7a6e2 dma_find_channel +EXPORT_SYMBOL vmlinux 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47ea555f __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481e2062 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x48302eaa pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x48328c69 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4845641f param_get_byte +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +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 0x48635030 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x486779f2 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x48855a31 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x489449b6 pcim_iomap +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c674e0 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule +EXPORT_SYMBOL vmlinux 0x48f9fbf7 input_event +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4916a328 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49593451 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x496583a4 finish_no_open +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x49720c72 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x49766f98 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x497bc2f4 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x49859d8a mmc_can_discard +EXPORT_SYMBOL vmlinux 0x498cf533 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x49990e48 param_set_ushort +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49ab6ac0 vme_irq_free +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49d36af2 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x49fae8a5 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x49fe2220 secpath_set +EXPORT_SYMBOL vmlinux 0x4a1f9f62 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a57a57b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x4a7eb685 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4a94a881 write_inode_now +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aaf6fe4 sk_common_release +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ad88317 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aef62af nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x4af37093 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0069f4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0d951f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4b2e32e7 update_region +EXPORT_SYMBOL vmlinux 0x4b344878 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x4b34c9d2 tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x4b3ecc4c __netif_schedule +EXPORT_SYMBOL vmlinux 0x4b440794 generic_file_read_iter +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 0x4b7867f2 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x4b7abd79 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4b8097f4 input_set_capability +EXPORT_SYMBOL vmlinux 0x4b88fad3 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4bb1349c configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf57f0e input_set_timestamp +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c15a3e6 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x4c1b72b2 generic_permission +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c33bf9e pci_match_id +EXPORT_SYMBOL vmlinux 0x4c3a2c45 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x4c3e69cd scsi_remove_host +EXPORT_SYMBOL vmlinux 0x4c3f966c xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c443b67 sock_wake_async +EXPORT_SYMBOL vmlinux 0x4c674279 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x4c6a208a iunique +EXPORT_SYMBOL vmlinux 0x4c96ad1c vfs_create_mount +EXPORT_SYMBOL vmlinux 0x4c9a2ae6 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca2a179 unregister_key_type +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cbb9ec3 kernel_connect +EXPORT_SYMBOL vmlinux 0x4cc121b9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cd82952 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x4cd8533d kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x4cdd04dd pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4ceef226 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x4cf70956 dquot_destroy +EXPORT_SYMBOL vmlinux 0x4cf92502 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d339600 unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x4d4a6d5e vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0x4d53e614 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x4d645d12 phy_attach +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db463be pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x4db6bf72 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x4db7bc0a agp_find_bridge +EXPORT_SYMBOL vmlinux 0x4dc11b97 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dca16f8 bmap +EXPORT_SYMBOL vmlinux 0x4dccb8b5 vm_insert_pages +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 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e3021a4 blk_put_queue +EXPORT_SYMBOL vmlinux 0x4e332902 nla_append +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3ed2e3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e6130f8 sock_wfree +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8a7be9 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x4e9685a3 cdev_alloc +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb0052b phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x4ec3e6fd netif_rx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ed9d1e1 skb_split +EXPORT_SYMBOL vmlinux 0x4f066596 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x4f18ab3a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2968a8 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x4f48f876 key_unlink +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f62d39a rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x4f6d629b __check_sticky +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f821e41 sock_i_ino +EXPORT_SYMBOL vmlinux 0x4f8ffbee free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4fa8f1f1 param_ops_int +EXPORT_SYMBOL vmlinux 0x4faa392c param_set_int +EXPORT_SYMBOL vmlinux 0x4fd9b986 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50000d20 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x500048f1 inet6_protos +EXPORT_SYMBOL vmlinux 0x5006ce1e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500de519 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x501d1beb vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x504d3eab nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5053c5d5 skb_store_bits +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x5065f5dc unix_attach_fds +EXPORT_SYMBOL vmlinux 0x50661cce simple_setattr +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5088105e __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x5097f7d7 vga_switcheroo_get_client_state +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 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50cc203a __SCK__tp_func_rdpmc +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 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51057f85 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x510cd49e fiemap_prep +EXPORT_SYMBOL vmlinux 0x51111e87 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x5117c1a3 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0x51206623 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5123fbc9 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x51299f91 sk_alloc +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5188de91 get_tree_single +EXPORT_SYMBOL vmlinux 0x51a4590c sock_kmalloc +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51c3195b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x51c41e89 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x520f3f74 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x520fcac0 vfs_unlink +EXPORT_SYMBOL vmlinux 0x52428810 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x5267a38d set_nlink +EXPORT_SYMBOL vmlinux 0x5269d08c trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x526bbb9d neigh_update +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a62ea4 d_rehash +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f5db4a dev_lstats_read +EXPORT_SYMBOL vmlinux 0x52fed2cd xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x53076dd4 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530ba382 pci_get_slot +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53212f2d iov_iter_npages +EXPORT_SYMBOL vmlinux 0x5331a874 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x533997ce netdev_notice +EXPORT_SYMBOL vmlinux 0x534e94a9 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x538a4ccd tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x538f6017 phy_start +EXPORT_SYMBOL vmlinux 0x53a28702 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53c65a09 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x53e181d1 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x53e197a6 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x53e87f33 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x5414d44c irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x541a6db8 module_layout +EXPORT_SYMBOL vmlinux 0x5434efc3 vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0x543ad234 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5440543e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x54413a4a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x54528720 nf_log_unset +EXPORT_SYMBOL vmlinux 0x54533a50 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x546957ca mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x5497f6d3 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x54a81696 dev_trans_start +EXPORT_SYMBOL vmlinux 0x54a913ef blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54faaa83 input_flush_device +EXPORT_SYMBOL vmlinux 0x54fcdb15 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x55127462 pci_iomap +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554b8b9a xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x555540a5 nf_log_unbind_pf +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 0x557d6f34 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x55837a5f dump_emit +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x559ae3e5 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x55a4189a dns_query +EXPORT_SYMBOL vmlinux 0x55c12cb8 sock_edemux +EXPORT_SYMBOL vmlinux 0x55ca91a0 pid_task +EXPORT_SYMBOL vmlinux 0x55cbf8b0 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb25bb blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x55ec7f62 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x55f781d1 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x55fba6aa pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x56068ba9 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x56078908 misc_register +EXPORT_SYMBOL vmlinux 0x5615a4fc bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x56227711 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x5629375c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563b9ec1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564e20cf pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565c72e4 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x565fe66f key_alloc +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x568d7fc3 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x56959889 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x56aa9c76 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x56c14cc5 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d286bb sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x56d969b4 tcp_poll +EXPORT_SYMBOL vmlinux 0x56ddad5c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x56fc9504 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x56fe6de6 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x5708ebf2 cdev_del +EXPORT_SYMBOL vmlinux 0x570dd8da cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x571a2357 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575e1bc2 page_mapped +EXPORT_SYMBOL vmlinux 0x578110a1 __quota_error +EXPORT_SYMBOL vmlinux 0x5783224c nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579689f8 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x57b28df0 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57bde703 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x57ca0782 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57ec8780 ptp_cancel_worker_sync +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 0x584afa2f da903x_query_status +EXPORT_SYMBOL vmlinux 0x58556c77 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5858f877 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x585db2cc try_module_get +EXPORT_SYMBOL vmlinux 0x5874e895 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x5878980f ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5880c64a fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x589909d0 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x58993b3c bio_init +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bdb80d d_exact_alias +EXPORT_SYMBOL vmlinux 0x58ca4d7d security_sk_clone +EXPORT_SYMBOL vmlinux 0x58ce6eaf flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x58cea16a generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f82de0 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x590ccc5f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x590e3687 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x59230cee ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x5928dd0e dev_set_alias +EXPORT_SYMBOL vmlinux 0x593c827c neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x5942be91 no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x5944ec2d xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x59553883 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x59720fc3 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x59793d77 generic_file_open +EXPORT_SYMBOL vmlinux 0x5982325c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x5994c673 input_free_device +EXPORT_SYMBOL vmlinux 0x599fa06d sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59c203eb mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x59dd0f36 vif_device_init +EXPORT_SYMBOL vmlinux 0x59e1ac03 skb_put +EXPORT_SYMBOL vmlinux 0x59fc1e21 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1836db xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x5a1b435d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x5a248e50 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a2c073d simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5a3c8a3b unregister_netdev +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 0x5a5d8592 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x5a5ea638 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x5a855a7a inode_nohighmem +EXPORT_SYMBOL vmlinux 0x5a8618d8 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9d1394 netdev_info +EXPORT_SYMBOL vmlinux 0x5aac2251 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x5abb6ed9 seq_puts +EXPORT_SYMBOL vmlinux 0x5ad062d1 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae834d5 mdiobus_free +EXPORT_SYMBOL vmlinux 0x5aee5780 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5af5c15f __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x5afa3d29 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x5afea130 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5b179434 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x5b1a1f8c jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x5b1a6a59 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x5b2a49a6 vma_set_file +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b313261 genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5a7f79 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b655d10 migrate_page_states +EXPORT_SYMBOL vmlinux 0x5b73e87e bio_split +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b839c02 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x5b941221 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x5b99abbe mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x5ba27f9a tty_check_change +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5befbb3e phy_error +EXPORT_SYMBOL vmlinux 0x5bff02d9 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5c095b6d blk_rq_init +EXPORT_SYMBOL vmlinux 0x5c0b51ac ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4b2dd9 __alloc_skb +EXPORT_SYMBOL vmlinux 0x5c4c5809 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0x5c52c74e flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x5c65e38b input_unregister_device +EXPORT_SYMBOL vmlinux 0x5c929f02 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x5c978830 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x5cb70595 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x5cc9b341 generic_read_dir +EXPORT_SYMBOL vmlinux 0x5ccb53e0 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0x5cd47893 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5cd89c47 get_fs_type +EXPORT_SYMBOL vmlinux 0x5cda74e8 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d064b2a neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5d07b40d proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x5d1d6f6f remove_proc_entry +EXPORT_SYMBOL vmlinux 0x5d2ec5de get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x5d401f7f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5d46ecdf __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5d48668b inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4f665e mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5d5d5502 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x5d6e7397 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x5d6efd1f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x5d720833 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x5d7a4952 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x5d942d4a netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5dac6b32 arp_send +EXPORT_SYMBOL vmlinux 0x5db8d9ec jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x5dc3c9af __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5dc4996d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x5dca6913 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x5dd6b07a md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x5de78793 kobject_put +EXPORT_SYMBOL vmlinux 0x5df68981 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5dff1c98 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1e7427 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5e228312 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e36c0a3 md_write_start +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e39ecdb ip_do_fragment +EXPORT_SYMBOL vmlinux 0x5e4af839 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x5e5fdd54 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x5e6a04a9 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x5e6fc4be inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5e7decb2 __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97a1be ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5e9bc16e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x5eaca692 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9726b sock_release +EXPORT_SYMBOL vmlinux 0x5ec34026 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecf482f icmp6_send +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed0d56f i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddfb4c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x5ee4ffe9 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f11860e eth_get_headlen +EXPORT_SYMBOL vmlinux 0x5f13641a d_move +EXPORT_SYMBOL vmlinux 0x5f1e28e5 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5f21c8de find_inode_rcu +EXPORT_SYMBOL vmlinux 0x5f246a0e mdio_device_create +EXPORT_SYMBOL vmlinux 0x5f28d603 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f353960 phy_device_register +EXPORT_SYMBOL vmlinux 0x5f4f1e5e netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x5f540977 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f5f7fd8 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x5f62e758 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x5f6b55f9 is_nd_dax +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f7f76b1 follow_up +EXPORT_SYMBOL vmlinux 0x5f854e20 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x5f8845c9 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x5f9249ef fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fb4ccfe vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fd7f474 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5fe8eb94 phy_connect +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x600b854a kill_pgrp +EXPORT_SYMBOL vmlinux 0x601674d9 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x601a83d7 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60212de8 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x604e7e61 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x6059346b flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x605acb66 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x6071d3d4 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6095416c neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x6098d562 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ad2d46 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60b3bb8c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x60bf400b udp_seq_stop +EXPORT_SYMBOL vmlinux 0x60c5aaf9 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x60c612eb kthread_create_worker +EXPORT_SYMBOL vmlinux 0x60cc20d6 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x60d2f019 kill_pid +EXPORT_SYMBOL vmlinux 0x60d75e6d scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60ddbe36 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x60e09158 put_watch_queue +EXPORT_SYMBOL vmlinux 0x60e855f5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x60ee9ee4 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x60efab56 acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0x60fe71bb tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x61047e78 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610825e4 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x611cda4f iget_locked +EXPORT_SYMBOL vmlinux 0x6124b040 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61374db0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x61429050 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x61520c66 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x615717ed dcb_getapp +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615f1b6d ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x616041e6 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x6162ecba bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x617acd8c vfs_iter_write +EXPORT_SYMBOL vmlinux 0x617bdedd input_set_abs_params +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x6184b304 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x61858991 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x6188095d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61986b8e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61ab2038 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x61b4410f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c8c5a3 tso_build_data +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61eaebb3 bio_add_page +EXPORT_SYMBOL vmlinux 0x61f255a1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x6204cdcd amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0x62141f0b mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62150734 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622e44ea sock_set_priority +EXPORT_SYMBOL vmlinux 0x62318efe inet_shutdown +EXPORT_SYMBOL vmlinux 0x623e4a0e netif_device_attach +EXPORT_SYMBOL vmlinux 0x6243fe9b md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6274fe67 inet6_release +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62855576 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x628eac32 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x629f9dad netdev_change_features +EXPORT_SYMBOL vmlinux 0x62a2f0e5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x62be6add xattr_full_name +EXPORT_SYMBOL vmlinux 0x62ca91b5 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x62cebee3 seq_open_private +EXPORT_SYMBOL vmlinux 0x62d73f56 sk_stream_error +EXPORT_SYMBOL vmlinux 0x62e43770 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fb2ab1 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x631e7c60 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x633b620e setattr_copy +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6363eb1d pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x636cd389 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x637c3495 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x638c0c21 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x63a54900 __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b06f6e dm_table_get_size +EXPORT_SYMBOL vmlinux 0x63c2ddb9 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x63c37e5f __skb_ext_del +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dfe616 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ee1e63 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x63ef1698 pci_map_rom +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6415e8f5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x64323c77 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x6439c19c dev_activate +EXPORT_SYMBOL vmlinux 0x64448d4e i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x6467aa66 sock_pfree +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648861ab rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x648a6b44 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64919a91 invalidate_disk +EXPORT_SYMBOL vmlinux 0x64942266 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x649d29a3 netif_device_detach +EXPORT_SYMBOL vmlinux 0x64a33df3 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b37983 from_kprojid +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d43b5a folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x64de735d param_ops_ulong +EXPORT_SYMBOL vmlinux 0x64f83366 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x650a5f04 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x650d5722 scsi_partsize +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65464c16 clkdev_drop +EXPORT_SYMBOL vmlinux 0x6547a0d9 setattr_prepare +EXPORT_SYMBOL vmlinux 0x65487097 __x86_indirect_thunk_rax +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x65781786 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0x658ab7b2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x658b033a mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x65944e3a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a38110 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x65b0270e security_sock_graft +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65bb42bf dquot_free_inode +EXPORT_SYMBOL vmlinux 0x65bc783d pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x65c2bbd0 __netif_rx +EXPORT_SYMBOL vmlinux 0x65c5dc76 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x65c96622 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df35ca __put_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e4707b padata_alloc +EXPORT_SYMBOL vmlinux 0x661269a6 param_get_long +EXPORT_SYMBOL vmlinux 0x6622413a tcp_disconnect +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66277a0f md_done_sync +EXPORT_SYMBOL vmlinux 0x662c58e6 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x6638d8f8 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x66445246 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x66581a20 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66818ac6 dquot_alloc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x66db9a33 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x66dbddbe unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x66f8ac49 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6712d2e9 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x6720612e passthru_features_check +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6726ee33 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6728a54e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672e7557 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x67306cc6 dst_alloc +EXPORT_SYMBOL vmlinux 0x6732e95a fqdir_exit +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x677f5add flush_signals +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x6790a4b8 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x67a07718 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b41d36 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67df1a21 scmd_printk +EXPORT_SYMBOL vmlinux 0x6800f31e __break_lease +EXPORT_SYMBOL vmlinux 0x68031039 init_net +EXPORT_SYMBOL vmlinux 0x6812d53b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6828c59f phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x6837ec53 vme_dma_request +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6865e667 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6867dbe7 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6875fc59 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687f398d dev_get_stats +EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x6894141b user_revoke +EXPORT_SYMBOL vmlinux 0x68bc4462 mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68cb03a9 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x68e79558 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x68e959fe lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x68f39886 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x69112e7c flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6926fc6d fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x6929f6ab grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x6949bc14 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69713d52 key_task_permission +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6977f21c del_gendisk +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699854d2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x699ea030 seq_read_iter +EXPORT_SYMBOL vmlinux 0x69a423fb ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x69a83edd scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69c278dc d_prune_aliases +EXPORT_SYMBOL vmlinux 0x69c69eff input_unregister_handler +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69d8058d pci_msix_vec_count +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 0x6a21b06e tso_build_hdr +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a4547e5 ppp_unregister_channel +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 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa737f1 try_to_release_page +EXPORT_SYMBOL vmlinux 0x6aa9fb0c take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x6ab515a8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6ab7a6b8 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6acb8246 ihold +EXPORT_SYMBOL vmlinux 0x6acbab3b follow_down +EXPORT_SYMBOL vmlinux 0x6acc44da skb_copy +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae415fb get_watch_queue +EXPORT_SYMBOL vmlinux 0x6aeeee72 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af5ecc0 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6b0abd58 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6b0f47e5 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b16294f nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6b21f227 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b394a34 dev_add_offload +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b628000 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b73e971 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x6b7c952e devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b962f2f security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x6b9dda62 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x6bab8733 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x6babdfcd pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6bad54c7 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x6bad88bc mount_subtree +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc60e1c netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x6bccce4d __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6be45e91 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0x6bec8410 dev_addr_add +EXPORT_SYMBOL vmlinux 0x6bf8b6b8 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x6c052e91 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x6c0f7a88 get_acl +EXPORT_SYMBOL vmlinux 0x6c1974d5 ping_prot +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c284454 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL vmlinux 0x6c4d8b08 vme_irq_request +EXPORT_SYMBOL vmlinux 0x6c5857b1 udp_ioctl +EXPORT_SYMBOL vmlinux 0x6c5b8dd7 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c81bf3f tty_port_close_end +EXPORT_SYMBOL vmlinux 0x6c8e0c03 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x6c8f465c pnp_register_driver +EXPORT_SYMBOL vmlinux 0x6c96e583 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cc676ed __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x6cd66cb8 inc_nlink +EXPORT_SYMBOL vmlinux 0x6cf7edb8 ip6_dst_check +EXPORT_SYMBOL vmlinux 0x6cf90d10 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1e4446 tty_port_block_til_ready +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 0x6d37cdb4 netif_tx_lock +EXPORT_SYMBOL vmlinux 0x6d488c45 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d646266 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0x6d688b0e mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x6d7500b3 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x6d7a637d iov_iter_init +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d9d41a2 dentry_open +EXPORT_SYMBOL vmlinux 0x6da17264 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x6da4024c xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x6da92e7b dquot_get_next_id +EXPORT_SYMBOL vmlinux 0x6daf53f1 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbd0e14 blk_mq_start_request +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 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df3afe6 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x6df7b95f i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6e08beb3 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x6e175388 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x6e1fed97 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6e32e51d __devm_request_region +EXPORT_SYMBOL vmlinux 0x6e33d032 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x6e3d1982 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6e3ead5d iov_iter_zero +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e5e3851 input_allocate_device +EXPORT_SYMBOL vmlinux 0x6e672ee6 current_time +EXPORT_SYMBOL vmlinux 0x6e6e024b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ebed6b7 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x6ece6dc8 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x6ee09f21 simple_write_begin +EXPORT_SYMBOL vmlinux 0x6ee2a4cd jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6f026b2c dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x6f058981 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6f12dc18 tcf_idr_create +EXPORT_SYMBOL vmlinux 0x6f172cb2 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6f2606d1 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x6f29df22 logfc +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f425036 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6f49ea72 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f4eb40a reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0x6f51ff2f fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x6f5992d0 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x6f5a9499 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f686e66 put_cmsg +EXPORT_SYMBOL vmlinux 0x6f849aa1 xfrm_dst_ifdown +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 0x6fbfe805 pci_find_resource +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd1906f pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x6fd95dd7 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7005f7e1 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x7008a081 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7025f64a xp_can_alloc +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70784dc3 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x70a56138 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70adbe91 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x70bc32bb xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x70e4952c tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x70f6679b xfrm_register_type +EXPORT_SYMBOL vmlinux 0x710d5d63 kernel_bind +EXPORT_SYMBOL vmlinux 0x71109d18 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713dfc6a __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x71414925 rproc_put +EXPORT_SYMBOL vmlinux 0x71427a12 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x714da0ca vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716146d1 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x7165f2f8 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7180998f input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x71821c3a twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x7184059c qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x719d507a __lock_buffer +EXPORT_SYMBOL vmlinux 0x71a2af3f gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae8035 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x71cbab8b d_make_root +EXPORT_SYMBOL vmlinux 0x71d5b294 mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e7482b phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x71eada32 default_llseek +EXPORT_SYMBOL vmlinux 0x71fb182d page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x72027c44 vm_insert_page +EXPORT_SYMBOL vmlinux 0x720419c5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72183aa8 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x7227675e kernel_param_lock +EXPORT_SYMBOL vmlinux 0x7229b6da phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0x723331d5 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0x7250e397 fb_show_logo +EXPORT_SYMBOL vmlinux 0x725a646d backlight_force_update +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x727e6e29 inet_getname +EXPORT_SYMBOL vmlinux 0x7285b1e2 vfs_readlink +EXPORT_SYMBOL vmlinux 0x72895f9a nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72de6d52 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f99096 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x731dc189 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x73224674 netlink_capable +EXPORT_SYMBOL vmlinux 0x73228cc1 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73437a0b kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7361ca74 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x7364c5a0 cont_write_begin +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x738d5b26 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x738d7fe4 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x73a2daf3 phy_suspend +EXPORT_SYMBOL vmlinux 0x73aa3ed3 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73adcf1d ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x73b2d574 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x73d165dc mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e7cb13 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x73f3f48a pipe_lock +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x7430eb00 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x7496b281 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x74aa55ac __register_binfmt +EXPORT_SYMBOL vmlinux 0x74b30374 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca3b6a mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x74ccf276 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x74d5b52f filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x74dc6964 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x74df7af5 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x750842bf vfs_getattr +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75557761 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75834c2f dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x759135df phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a1e0a3 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x75a6c1df sock_gettstamp +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c68aa0 audit_log +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75f99a6f get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x75fa8095 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x7645a01a drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x766b4f1c param_set_byte +EXPORT_SYMBOL vmlinux 0x7674696d pci_set_master +EXPORT_SYMBOL vmlinux 0x7677afb3 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x769f9b22 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x76a52e2c pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x76ab5b81 nf_reinject +EXPORT_SYMBOL vmlinux 0x76b37eb1 netif_skb_features +EXPORT_SYMBOL vmlinux 0x76b4e39f netdev_update_features +EXPORT_SYMBOL vmlinux 0x76be273a mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771e3640 proc_create_data +EXPORT_SYMBOL vmlinux 0x7724ef1c misc_deregister +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77332991 nd_dax_probe +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 0x775c866a pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x77791f24 set_user_nice +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x777e8fdf tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x7793e573 ilookup5 +EXPORT_SYMBOL vmlinux 0x779a4926 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x77a07848 dquot_file_open +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77b0cb2d inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c030da __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x77e641b1 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ea094d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x781220d5 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x7835afa8 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78651602 sock_rfree +EXPORT_SYMBOL vmlinux 0x786df506 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78991b29 qdisc_put +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a3849d pmem_sector_size +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78db6edf rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f1838e pci_scan_slot +EXPORT_SYMBOL vmlinux 0x78f5c260 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x793b4af7 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x794a9fab pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x794f41bf d_add +EXPORT_SYMBOL vmlinux 0x7958a249 I_BDEV +EXPORT_SYMBOL vmlinux 0x795abc5f ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x795c0aab uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x79605a62 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x79708a29 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7993e254 param_get_charp +EXPORT_SYMBOL vmlinux 0x79a26147 device_add_disk +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b98c44 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x79c163ce inode_update_time +EXPORT_SYMBOL vmlinux 0x79c21363 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x79c57a3a icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x79d9c36d dquot_transfer +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x7a08e219 pci_iounmap +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2febab genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a4235eb tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7a51cd62 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5fdc1b pci_save_state +EXPORT_SYMBOL vmlinux 0x7a6aa7e1 d_alloc_name +EXPORT_SYMBOL vmlinux 0x7a7d0809 fput +EXPORT_SYMBOL vmlinux 0x7a814b77 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x7a826138 serio_rescan +EXPORT_SYMBOL vmlinux 0x7a849894 register_netdev +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a97ee68 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa68b4a devm_release_resource +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac4a5a6 phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5cf52 flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7addb33b xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x7addf992 to_nd_btt +EXPORT_SYMBOL vmlinux 0x7af9725e folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b06f058 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x7b1b00f7 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x7b350a71 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b569f9a xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb59c29 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x7bbb98d2 bio_put +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc452e8 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0x7bd5eb05 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x7bf19ae5 inode_init_once +EXPORT_SYMBOL vmlinux 0x7bf39db8 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1cc154 mmc_command_done +EXPORT_SYMBOL vmlinux 0x7c2a125a tty_port_put +EXPORT_SYMBOL vmlinux 0x7c3b6c59 kobject_get +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c558893 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x7c5a6665 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7c5c54bc gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x7c68d7e8 tty_port_init +EXPORT_SYMBOL vmlinux 0x7c6f4eed skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x7c74817e truncate_setsize +EXPORT_SYMBOL vmlinux 0x7c820784 vfs_fsync +EXPORT_SYMBOL vmlinux 0x7c8225e5 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x7c8825f4 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x7c891933 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x7c969c94 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca09420 init_special_inode +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf7ae07 inet_accept +EXPORT_SYMBOL vmlinux 0x7cfe368d net_dim_get_def_tx_moderation +EXPORT_SYMBOL vmlinux 0x7d0ba682 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d1a70f7 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x7d1dab5c phy_write_paged +EXPORT_SYMBOL vmlinux 0x7d35e4ec max8925_reg_write +EXPORT_SYMBOL vmlinux 0x7d40cda2 fs_bio_set +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d6ceb4a agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8cdc19 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7d966358 stream_open +EXPORT_SYMBOL vmlinux 0x7d98a651 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbb6d7f phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7dbe2c4c fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x7dc054ee phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcd3f13 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddd2852 set_bh_page +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc1363 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x7e0101ba inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7e1a90da _dev_crit +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e55318b fb_get_mode +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7ed11013 phy_disconnect +EXPORT_SYMBOL vmlinux 0x7ee0c140 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x7eef2e8a phy_do_ioctl +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 0x7f157f62 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x7f21e729 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f3d152c of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x7f48b603 config_item_set_name +EXPORT_SYMBOL vmlinux 0x7f498c3f mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f5c5db3 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7f6bd723 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7838ac reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7fa21777 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x7fac44e2 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x7fc2776e fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0x7fcb828e jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ffb3666 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x7ffcca8b noop_qdisc +EXPORT_SYMBOL vmlinux 0x7ffe1d41 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0x7ffe86b9 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x80216936 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x802e62cb udp_set_csum +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x8068f167 udp_seq_ops +EXPORT_SYMBOL vmlinux 0x8077199e blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x807f62d2 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809b4ac2 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80dbc247 sget_fc +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80fe6bed folio_alloc +EXPORT_SYMBOL vmlinux 0x81091025 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81101873 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812a89bd page_pool_create +EXPORT_SYMBOL vmlinux 0x813bcc84 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x81480324 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x8151811b iget_failed +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815d4673 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x815e44b8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816347c6 agp_device_command +EXPORT_SYMBOL vmlinux 0x816e6eba __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x8179415e netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x817a2e92 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x819208c6 input_reset_device +EXPORT_SYMBOL vmlinux 0x81951c5a __do_once_done +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81a92fe4 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81c79eb6 unregister_console +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81d9f30f __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e0789a may_umount +EXPORT_SYMBOL vmlinux 0x81e58a08 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ece392 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x81f1a8ce pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x82150639 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x822fb563 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x8239bbf5 register_framebuffer +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x825458ba tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x82615b59 serio_reconnect +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x82724b55 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x827fbca2 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x8287ed72 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x8296f02e param_set_ullong +EXPORT_SYMBOL vmlinux 0x8298a9a0 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x82a11a62 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x82abe1e8 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x82b8946f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x82c60249 bioset_init +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82ff539b pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x8311da04 ps2_init +EXPORT_SYMBOL vmlinux 0x831a06e2 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x833b8952 folio_wait_bit +EXPORT_SYMBOL vmlinux 0x83568e11 kernel_accept +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x8368d26f seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x83773617 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837c2f32 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x837fccf1 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x839a87d9 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x83ae2e29 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x83ba41ed skb_trim +EXPORT_SYMBOL vmlinux 0x83cf97a2 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x83d16e56 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x83dbd50e filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x83dc3bb8 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0x83e9d010 readahead_expand +EXPORT_SYMBOL vmlinux 0x83ed6389 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x83f57d40 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x840b5156 param_set_charp +EXPORT_SYMBOL vmlinux 0x8414dc85 agp_backend_release +EXPORT_SYMBOL vmlinux 0x841520a8 unpin_user_page +EXPORT_SYMBOL vmlinux 0x841b187c configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x84221b7f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x84243c22 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x842d4b5c mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x8449042f adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8452f04b vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84aa6cbc simple_rename +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1ad08 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84ea6b45 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8524eecb blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x858db142 con_is_bound +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85941cfc scsi_device_get +EXPORT_SYMBOL vmlinux 0x85970e47 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x85a52119 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x85aa5576 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c3d296 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x85d0f4a8 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0x85d7d97f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8612eacf dput +EXPORT_SYMBOL vmlinux 0x86188239 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x8626bce1 eth_header_cache +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x862c955f open_with_fake_path +EXPORT_SYMBOL vmlinux 0x8639096a iput +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x8644506c param_get_uint +EXPORT_SYMBOL vmlinux 0x86460a05 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8655556f md_write_inc +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x86852f87 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8691936c key_validate +EXPORT_SYMBOL vmlinux 0x86954c1e acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x869621e0 tty_do_resize +EXPORT_SYMBOL vmlinux 0x8698edc3 __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x86adbba7 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x86aec907 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d17639 set_page_dirty +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e0d59b bio_kmalloc +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87051a98 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x87148c85 _dev_info +EXPORT_SYMBOL vmlinux 0x873afdb1 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x8740e539 poll_freewait +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 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87d7ae6b cdev_device_add +EXPORT_SYMBOL vmlinux 0x87d9556d ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8826247c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x88275b88 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x8831f53f sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x886e61d0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x88706a99 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8875e4a1 kernel_listen +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x88978abf sock_no_listen +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88ba5a3a trace_event_printf +EXPORT_SYMBOL vmlinux 0x88c01ecb _dev_notice +EXPORT_SYMBOL vmlinux 0x88d5bdea scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e7c3fb bdi_register +EXPORT_SYMBOL vmlinux 0x88f2f4ea fget +EXPORT_SYMBOL vmlinux 0x88f32611 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0x89063ecc devfreq_update_target +EXPORT_SYMBOL vmlinux 0x89253d09 vme_bus_type +EXPORT_SYMBOL vmlinux 0x89353d6c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89818cdd dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89a6b366 mpage_writepage +EXPORT_SYMBOL vmlinux 0x89ec7e64 ata_print_version +EXPORT_SYMBOL vmlinux 0x89f3ffad get_agp_version +EXPORT_SYMBOL vmlinux 0x89fb6658 cad_pid +EXPORT_SYMBOL vmlinux 0x89feb739 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x8a0cc776 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x8a1d4cc9 locks_delete_block +EXPORT_SYMBOL vmlinux 0x8a3273c5 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x8a35b432 sme_me_mask +EXPORT_SYMBOL vmlinux 0x8a3ac302 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a61356e backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x8a62a52e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a75658f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8a75f3c5 nf_log_set +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a875cab __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa63759 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8ad079d6 key_move +EXPORT_SYMBOL vmlinux 0x8ad2f6f5 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x8ad94d08 d_add_ci +EXPORT_SYMBOL vmlinux 0x8af39c96 pci_get_device +EXPORT_SYMBOL vmlinux 0x8b002d09 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b10c87c vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x8b1a3dda netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0x8b28f7c6 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8b308e03 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x8b3a2cd3 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8b6076f0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6889f3 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b829a76 jbd2_journal_abort +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 0x8bb5f4fa cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bdf4218 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8bea17cc __folio_alloc +EXPORT_SYMBOL vmlinux 0x8c0be2a4 read_cache_page +EXPORT_SYMBOL vmlinux 0x8c14f84e remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8c182bf4 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x8c201299 scsi_host_busy +EXPORT_SYMBOL vmlinux 0x8c2577bc pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c486989 d_obtain_root +EXPORT_SYMBOL vmlinux 0x8c60449b km_policy_expired +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c7368fc filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x8c7fa500 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca65513 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x8ca84afa pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccd1a70 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x8ccf4bbc inet6_ioctl +EXPORT_SYMBOL vmlinux 0x8cd502df devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cde01a7 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x8cf1f21a param_set_uint +EXPORT_SYMBOL vmlinux 0x8cffcfb3 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x8d0b8890 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x8d26a187 bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x8d37d2a3 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x8d3b9a25 phy_device_free +EXPORT_SYMBOL vmlinux 0x8d411705 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8d4b88d7 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x8d5131fa generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d606639 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8e0e75 phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da44719 ip_frag_next +EXPORT_SYMBOL vmlinux 0x8da79a4d shmem_aops +EXPORT_SYMBOL vmlinux 0x8db1dcb3 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db31d7a mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x8dbc0768 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x8dbfdcae inet_frag_kill +EXPORT_SYMBOL vmlinux 0x8dd0ebcc netdev_err +EXPORT_SYMBOL vmlinux 0x8dd50171 seq_write +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dec6faa md_update_sb +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +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 0x8e2c536a scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x8e370618 devm_ioremap +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e68cab6 phy_device_remove +EXPORT_SYMBOL vmlinux 0x8e752c89 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x8e823e4b vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9875aa ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8ea13211 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb9d1d0 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x8ed5c97b pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8edb07ab register_qdisc +EXPORT_SYMBOL vmlinux 0x8edcc652 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8ee8e8dc show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0x8ef43185 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8eff488e rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f0d975b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x8f1c83a9 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x8f20638c xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f425dfd devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0x8f51cf2f generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x8f70f2d7 discard_new_inode +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f87ebf6 neigh_lookup +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fa67521 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fdb2a76 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x8fe273d8 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffa20fd __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90065e8d flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x902babc0 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x903cd8fb tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90651c31 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x909eb392 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x909f6abc skb_clone +EXPORT_SYMBOL vmlinux 0x90ba912b __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x90d454fe clear_inode +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e91fb0 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x90fad6bd pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x911e3615 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x91331502 mdio_find_bus +EXPORT_SYMBOL vmlinux 0x913edcda default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x914eb2f1 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x91575a17 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917ebfc4 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x9186ba47 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x918b54e2 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919f375a pcie_get_mps +EXPORT_SYMBOL vmlinux 0x91a10c61 intel_scu_ipc_dev_simple_command +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a5f773 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91bc25cf reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x91c0c988 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x91e77b10 proc_mkdir +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x91fdd0f1 param_get_int +EXPORT_SYMBOL vmlinux 0x9200a19f input_copy_abs +EXPORT_SYMBOL vmlinux 0x920d2d41 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923afc9f devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9241f2ed flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x924bad7a inet_ioctl +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x92542d7a ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x92564aa9 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x9274f38c mntput +EXPORT_SYMBOL vmlinux 0x9276bf6c ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b1cd1c in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x92b54487 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x92b696f7 simple_empty +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92c6b395 xfrm4_rcv +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 0x933204e2 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x93559a2d proto_unregister +EXPORT_SYMBOL vmlinux 0x936fc7f5 pci_clear_master +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b6b836 ipv4_mtu +EXPORT_SYMBOL vmlinux 0x93b9bec7 inet6_getname +EXPORT_SYMBOL vmlinux 0x93c23132 nobh_writepage +EXPORT_SYMBOL vmlinux 0x93d5bf68 finish_open +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93dd211b nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x93f38d0b dquot_operations +EXPORT_SYMBOL vmlinux 0x93f495ae __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x93f62dde devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x9404005d fwnode_iomap +EXPORT_SYMBOL vmlinux 0x940de849 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942e04a8 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x94461d9d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945adc23 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9469daed sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948a0bbe xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x948b37eb phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x94917632 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949c16ed mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x94b5b1b0 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94d91a0e xfrm_init_state +EXPORT_SYMBOL vmlinux 0x94dcae0b clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x95001a65 done_path_create +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950bb09b inet_frag_find +EXPORT_SYMBOL vmlinux 0x950bf181 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x953031a7 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x953b5b25 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x953f933a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x95425d92 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9559d96d devm_memunmap +EXPORT_SYMBOL vmlinux 0x9563b707 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x956a460b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95adce3f add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x95ec6640 simple_unlink +EXPORT_SYMBOL vmlinux 0x95f272b7 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x95f6ff7a mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x96019b4f pci_restore_state +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x96169be3 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x961787ea seq_file_path +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x963618d0 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x963d1e9e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x963d7f54 dquot_release +EXPORT_SYMBOL vmlinux 0x9649e45b nobh_write_begin +EXPORT_SYMBOL vmlinux 0x96665193 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x966e30c8 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9685dd50 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x96a1090f crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x96a2f4c1 console_start +EXPORT_SYMBOL vmlinux 0x96a7cc80 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x96a9719f netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x96b2515e mount_nodev +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c6bce3 to_ndd +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d7dac8 may_setattr +EXPORT_SYMBOL vmlinux 0x96d98b95 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e89d0f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96f901da thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x96f9d10f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9704b16d mdio_device_register +EXPORT_SYMBOL vmlinux 0x970ef58c __inet_hash +EXPORT_SYMBOL vmlinux 0x970ef8ea __fs_parse +EXPORT_SYMBOL vmlinux 0x97221c0a inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x9738fb2b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x973c3164 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974d4647 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97670a9e agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x9795b756 simple_rmdir +EXPORT_SYMBOL vmlinux 0x979c9b35 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97b12377 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97d23be0 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x9810b231 ip_frag_init +EXPORT_SYMBOL vmlinux 0x982212b3 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982e38b6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x98309e3f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x983cbbd9 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x983f30ac dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x98584a84 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x985f7dd8 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x986c1e26 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x98801b77 rproc_detach +EXPORT_SYMBOL vmlinux 0x988882c3 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x9896b7a5 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x989ca8df empty_aops +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c62dc4 _dev_warn +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cac911 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98fee6c0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x9916b50d inet_listen +EXPORT_SYMBOL vmlinux 0x991a4179 pci_free_irq +EXPORT_SYMBOL vmlinux 0x991acad5 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99460a2f skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99599bbe mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x9985ae8a unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x998a0352 tty_hangup +EXPORT_SYMBOL vmlinux 0x99907875 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x999387fb scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9996477b __nla_put +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a3aef2 send_sig +EXPORT_SYMBOL vmlinux 0x99b4a8d3 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x99c6d653 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x99ca5b2b xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1177e seq_release +EXPORT_SYMBOL vmlinux 0x99eaf29a set_posix_acl +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 0x9a039fc3 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a45c662 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x9a486154 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x9a4c4bec dst_release_immediate +EXPORT_SYMBOL vmlinux 0x9a4d18f9 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a96ca79 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab9806f __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9aba98dd xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae36296 udp_disconnect +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af40265 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2947a1 inet_sendpage +EXPORT_SYMBOL vmlinux 0x9b32aca1 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x9b33a49d ll_rw_block +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3a051d eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x9b411cdf jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4ba0bf mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x9b5443c2 devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9b566913 consume_skb +EXPORT_SYMBOL vmlinux 0x9b5c1658 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x9b6228ed ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x9b6721b6 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x9b6c9a1b dev_load +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b794ef7 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x9b84f8a3 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x9b926b3b ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x9b9d7626 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x9b9f4bac jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x9baeb51d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bb5e53e devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x9bc1985b hmm_range_fault +EXPORT_SYMBOL vmlinux 0x9bdbb0da __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9be248f7 filemap_fault +EXPORT_SYMBOL vmlinux 0x9be41bab jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9bf1064a xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x9bf2b839 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9bf9be9d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9bfbc901 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x9c000fa7 tty_devnum +EXPORT_SYMBOL vmlinux 0x9c0a5fb6 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x9c0bb4ee tty_vhangup +EXPORT_SYMBOL vmlinux 0x9c0fee89 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1d7e27 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x9c47ef27 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x9c5acef4 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c71e2d6 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x9c75f2ea build_skb +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c9e8b49 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cc15d4d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x9cc47c88 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x9ccc77f2 devfreq_register_notifier +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 0x9ce05a96 uart_register_driver +EXPORT_SYMBOL vmlinux 0x9ced41ad __SCT__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0x9cf109b7 get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x9d0141a4 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x9d057f9a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9d08ccd2 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1665a8 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x9d1d2522 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x9d1ecb8d param_get_short +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4a71dd tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d67c2fb neigh_direct_output +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d707d2d block_dirty_folio +EXPORT_SYMBOL vmlinux 0x9d70f85a vlan_vid_add +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9dc55e0b __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x9dd68f1a gro_cells_init +EXPORT_SYMBOL vmlinux 0x9de10bb4 sync_filesystem +EXPORT_SYMBOL vmlinux 0x9def06c1 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x9e02d129 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x9e04d05f __f_setown +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 0x9e2f7e5c inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9e2fa2d8 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x9e31b22d rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5bf33c jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e77f997 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9c2cc8 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9f50ce phy_validate_pause +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea811be netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ecd2f8c fb_class +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9ee060f9 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9f092e44 param_get_ullong +EXPORT_SYMBOL vmlinux 0x9f14b916 dma_set_mask +EXPORT_SYMBOL vmlinux 0x9f177f13 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0x9f31c18e flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x9f36feee inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9f3ca2a0 skb_dequeue +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 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa5d5ad vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fb931e1 get_vm_area +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00450dc __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa016c9f6 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xa01c4d11 get_user_pages +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01f2664 pci_read_config_word +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 0xa046788c netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0xa04abfd2 param_ops_bool +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05e187e filp_close +EXPORT_SYMBOL vmlinux 0xa069d5d2 import_iovec +EXPORT_SYMBOL vmlinux 0xa06fcce8 tcf_em_register +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b3701 d_set_d_op +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa0866278 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xa09046d5 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09ce9a4 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xa0a37537 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xa0a9d239 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c54efe udp6_set_csum +EXPORT_SYMBOL vmlinux 0xa0c86076 tcp_close +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dcb58f __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa0eae826 smp_call_function +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ebd437 hdmi_drm_infoframe_check +EXPORT_SYMBOL vmlinux 0xa0f29cc5 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1058ec1 pci_get_class +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1151b08 freeze_super +EXPORT_SYMBOL vmlinux 0xa11803f2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa13295ce bpf_map_get +EXPORT_SYMBOL vmlinux 0xa1571efb ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa15eb391 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa1695030 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xa1799ac7 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xa17feec4 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xa18b8c91 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0xa197d75d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xa1b64035 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1ce9b2c backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0xa1e9e4ea pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xa1fbf0d4 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa216d9f3 bpf_link_put +EXPORT_SYMBOL vmlinux 0xa21ed7b3 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xa224a4a4 xp_dma_map +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa26049e8 config_item_put +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa292db75 pci_release_resource +EXPORT_SYMBOL vmlinux 0xa2bd7a36 touch_atime +EXPORT_SYMBOL vmlinux 0xa2ca5d0c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xa2db39ac simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xa2dd63f3 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xa2e49020 bdi_unregister +EXPORT_SYMBOL vmlinux 0xa2e9ed7e init_task +EXPORT_SYMBOL vmlinux 0xa2f64e50 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa30dd487 tty_name +EXPORT_SYMBOL vmlinux 0xa315dc1f send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa3412d34 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xa3415956 sk_free +EXPORT_SYMBOL vmlinux 0xa34cd09e phy_loopback +EXPORT_SYMBOL vmlinux 0xa3593d04 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xa35c61ea __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0xa3612db0 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa3622eb7 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xa38597f2 __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa39753ab udplite_prot +EXPORT_SYMBOL vmlinux 0xa3b084e7 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xa3bb1daf register_shrinker +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3c0532d __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xa3c50a3f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xa3ca3772 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3dfbca3 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3ef3f8e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa3f8d8dc nd_device_register +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4102671 rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0xa41329b1 blkdev_put +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa4216be6 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa444d44f blk_start_plug +EXPORT_SYMBOL vmlinux 0xa458807d md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa49814f8 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa4a6653c pci_request_region +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c43249 blk_get_queue +EXPORT_SYMBOL vmlinux 0xa4d16cb5 tcp_filter +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dbe121 dev_open +EXPORT_SYMBOL vmlinux 0xa4de233b phy_attached_print +EXPORT_SYMBOL vmlinux 0xa4dff4f4 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xa4ed1866 vga_get +EXPORT_SYMBOL vmlinux 0xa4f12141 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa500ba88 ipv6_dev_mc_inc +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 0xa51276bd inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa52046fb vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xa523e721 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa54fd255 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5575bec __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa5586322 thread_group_exited +EXPORT_SYMBOL vmlinux 0xa572f755 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xa5754419 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa587a5bd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa58af8e6 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5dba2ca devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xa5e41b8f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa602c7dc set_create_files_as +EXPORT_SYMBOL vmlinux 0xa6054562 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0xa61521f6 __folio_lock +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa626643b sock_no_getname +EXPORT_SYMBOL vmlinux 0xa6275d19 inode_permission +EXPORT_SYMBOL vmlinux 0xa62d79bb pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xa630b05c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa647ffd4 to_nd_dax +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6495030 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa662f334 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa6793866 unload_nls +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6893d39 single_open +EXPORT_SYMBOL vmlinux 0xa6d331ca __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xa6dff5e4 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71b1332 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa723132a edac_mc_find +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa747e321 neigh_table_init +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7525785 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xa754a7c1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xa75e77a1 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xa762509d pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa7625852 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa7842fe0 vfs_get_link +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa793ceee flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa79e3c06 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xa7b980a1 inet_release +EXPORT_SYMBOL vmlinux 0xa7d46770 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa7d49b83 vc_cons +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fa5606 dst_destroy +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa80e0504 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xa80e92fa pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81a4f99 page_pool_destroy +EXPORT_SYMBOL vmlinux 0xa824c2b0 dst_init +EXPORT_SYMBOL vmlinux 0xa8311308 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xa83207a3 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa8370adb skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa846d8e1 genl_register_family +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa84fd94c block_write_full_page +EXPORT_SYMBOL vmlinux 0xa851bd90 dev_uc_init +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8809311 make_kuid +EXPORT_SYMBOL vmlinux 0xa88af4d9 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xa8930df8 mdiobus_read +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a24003 md_check_recovery +EXPORT_SYMBOL vmlinux 0xa8b28a98 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xa8ca3642 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8cbf319 ppp_input +EXPORT_SYMBOL vmlinux 0xa8d5ace9 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xa8d9fb3f from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa8dd5f6c fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8e9c0cd __d_lookup_done +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8fbca86 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90f2d75 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa9105f82 skb_find_text +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91781bb blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa9375acc netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0xa940800b rproc_get_by_child +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa95f178e phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0xa96453bf scsi_host_get +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98fd5cd pci_resize_resource +EXPORT_SYMBOL vmlinux 0xa99dab09 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xa9a5a45d __scsi_execute +EXPORT_SYMBOL vmlinux 0xa9c47b73 file_open_root +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9ee1688 open_exec +EXPORT_SYMBOL vmlinux 0xa9efe2f6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa9f1dbe6 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa9f425c8 dquot_get_state +EXPORT_SYMBOL vmlinux 0xa9f83253 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa00ff83 tcp_time_wait +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa2e0639 dump_skip_to +EXPORT_SYMBOL vmlinux 0xaa319fe0 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa47e333 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xaa529456 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xaa53e632 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xaa545783 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7aab38 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xaa9d0bfa tty_lock +EXPORT_SYMBOL vmlinux 0xaa9e60c3 padata_do_serial +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaace4343 tcf_chain_put_by_act +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 0xaad8ff5a __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafec0d4 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xab0261b1 cdrom_open +EXPORT_SYMBOL vmlinux 0xab06447e dev_get_flags +EXPORT_SYMBOL vmlinux 0xab0b04fe mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xab0b9b49 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab3ec70e iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xab3edd26 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xab4cc1b1 dcb_ieee_delapp +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 0xab688454 pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7f306b gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xab89432c pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0xabafbc09 bio_copy_data +EXPORT_SYMBOL vmlinux 0xabbe0abd netlink_broadcast +EXPORT_SYMBOL vmlinux 0xabcee610 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xabedefa2 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xabef0f5c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xabf75305 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xac0ce14b pci_iomap_range +EXPORT_SYMBOL vmlinux 0xac13d953 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xac196956 __block_write_begin +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1f5e96 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xac26f408 eth_header_parse +EXPORT_SYMBOL vmlinux 0xac30ae97 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac3947a5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xac4e73b9 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac6949fb flow_rule_alloc +EXPORT_SYMBOL vmlinux 0xac69fdb9 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xac729a11 find_vma +EXPORT_SYMBOL vmlinux 0xac733666 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xac813cf5 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xac8266d4 mdio_device_reset +EXPORT_SYMBOL vmlinux 0xac847c87 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbe0045 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0xacd525b0 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf158bd unregister_md_personality +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0156bb bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad294c17 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad4cd721 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad58ac06 dev_addr_del +EXPORT_SYMBOL vmlinux 0xad60770f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad8b3657 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xad934d0e __SetPageMovable +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xadadac3a page_pool_release_page +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb38394 zap_page_range +EXPORT_SYMBOL vmlinux 0xadb57879 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xadb99cd1 dquot_disable +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadc1dbc8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadf5185e blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xadf704f5 ip6_mtu +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0171e5 twl6040_power +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0bdc4f netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae3430c5 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xae37e797 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae7f8c4b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xae8c752d pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xae9797dc pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb113de dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec80331 phy_stop +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaef9c288 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf37ff54 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf43c534 rproc_del +EXPORT_SYMBOL vmlinux 0xaf4940eb mfd_add_devices +EXPORT_SYMBOL vmlinux 0xaf499cde textsearch_unregister +EXPORT_SYMBOL vmlinux 0xaf57b5bf set_anon_super +EXPORT_SYMBOL vmlinux 0xaf85086a param_set_invbool +EXPORT_SYMBOL vmlinux 0xaf8bc486 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xaf8bdea6 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd74423 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafdd0b6f pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xafeaa181 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xaff124f7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xaffc262a eth_gro_complete +EXPORT_SYMBOL vmlinux 0xb0142cf9 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb017de79 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb01b5a46 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb027b241 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb04f14ac begin_new_exec +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb093ae0b dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0aecebd blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb0bf2c60 load_nls_default +EXPORT_SYMBOL vmlinux 0xb0c39db0 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d34f9b cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xb0d483c6 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0ed05a8 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xb10544b5 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xb109ddaa ip_output +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11f636c inode_to_bdi +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12f7f8b iov_iter_advance +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb1378f5a pnp_device_attach +EXPORT_SYMBOL vmlinux 0xb13d7852 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb154494e is_subdir +EXPORT_SYMBOL vmlinux 0xb16b0fc4 tcp_mmap +EXPORT_SYMBOL vmlinux 0xb16d08b9 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xb186803d phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xb18b4cb8 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1adde3b acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xb1b2b74c nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e9d6df scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb1f1b25a d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xb209bdb2 dma_resv_init +EXPORT_SYMBOL vmlinux 0xb20b227e kern_path +EXPORT_SYMBOL vmlinux 0xb20c3650 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb20f4966 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xb21534ef jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xb21882b6 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp +EXPORT_SYMBOL vmlinux 0xb24a481c __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb25065f0 unregister_nls +EXPORT_SYMBOL vmlinux 0xb2583423 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2766fbc sock_efree +EXPORT_SYMBOL vmlinux 0xb28523ef simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb28792cf mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xb290e120 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xb292cfa4 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xb299dd8c freezing_slow_path +EXPORT_SYMBOL vmlinux 0xb29a0b47 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb29c21dc page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xb2b06728 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2e134d0 bio_init_clone +EXPORT_SYMBOL vmlinux 0xb2ec5d5b __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f95451 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb30235f7 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31ef793 vme_master_request +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb327c387 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb32a5973 acpi_ut_status_exit +EXPORT_SYMBOL vmlinux 0xb34d779f skb_dump +EXPORT_SYMBOL vmlinux 0xb350907c param_set_copystring +EXPORT_SYMBOL vmlinux 0xb3546f74 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb368ca14 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xb370613a phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb3886dc0 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xb38b453b jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xb3a14f2e vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3d06ffa filemap_flush +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dc1c17 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb3dcb18a tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xb3eac612 send_sig_info +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb404ae2f agp_create_memory +EXPORT_SYMBOL vmlinux 0xb40e34d2 ps2_command +EXPORT_SYMBOL vmlinux 0xb415a402 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42cd7d7 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xb433d734 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0xb449ab43 param_get_ushort +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb45aaa36 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xb461eab4 node_data +EXPORT_SYMBOL vmlinux 0xb46d42af deactivate_super +EXPORT_SYMBOL vmlinux 0xb46e02cc phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xb474e725 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb47de848 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb487210c __nla_reserve +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb48ee618 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb4a5b62c reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xb4b19daa param_ops_charp +EXPORT_SYMBOL vmlinux 0xb4b4d409 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xb4bcc9fe bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0xb4c018e6 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb4ef4a58 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb50bd436 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xb51b1e7b import_single_range +EXPORT_SYMBOL vmlinux 0xb525f092 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5359665 seq_open +EXPORT_SYMBOL vmlinux 0xb53bd6a4 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb545f92b __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xb54fd1c7 nobh_write_end +EXPORT_SYMBOL vmlinux 0xb551a2c0 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xb553f006 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb592f207 mmc_erase +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5acfff8 finalize_exec +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5bd6117 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xb5c3cdc5 __seq_open_private +EXPORT_SYMBOL vmlinux 0xb5c93c67 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xb5dc8234 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xb5e3f50e dquot_quota_off +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5f1fe64 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb61320cd set_pages_uc +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb622d9c8 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb63aa3b1 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb64599c8 vfs_statfs +EXPORT_SYMBOL vmlinux 0xb64b4fca generic_update_time +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb662dc9c inode_init_always +EXPORT_SYMBOL vmlinux 0xb66ce6b0 input_register_handler +EXPORT_SYMBOL vmlinux 0xb66d290e drop_nlink +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6808aa3 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6968105 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xb69ed6c6 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6e3087e input_release_device +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6f03715 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xb6f837fb dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb70e5b3f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7472477 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb75fd8df current_in_userns +EXPORT_SYMBOL vmlinux 0xb770f6b8 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb77638c2 block_commit_write +EXPORT_SYMBOL vmlinux 0xb7863397 path_put +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb7aa7543 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xb7bc84ac xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c8d553 qdisc_reset +EXPORT_SYMBOL vmlinux 0xb7c9d456 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xb7d91cb7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb7e978ab mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xb801391e single_open_size +EXPORT_SYMBOL vmlinux 0xb8048c60 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xb805a9c7 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xb8064ebf tty_unlock +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb82b97fb tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xb850fe92 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb8715646 km_new_mapping +EXPORT_SYMBOL vmlinux 0xb8724cc0 would_dump +EXPORT_SYMBOL vmlinux 0xb880e12d udp6_csum_init +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb8923843 unlock_page +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c3fae3 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xb8d69700 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xb8dc2b11 pnp_is_active +EXPORT_SYMBOL vmlinux 0xb8df281f __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb8e64441 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb90730e7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90b4058 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb911bdf7 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb915361f pnp_device_detach +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9231e31 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9535c3f tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb9855249 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9e276cf wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xb9e7429c memcpy_toio +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba00f6e4 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba087bd6 nla_reserve +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba3ba8f4 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4e6fc7 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba566869 kern_unmount +EXPORT_SYMBOL vmlinux 0xba579892 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xba66c437 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xba6d6d5a netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xba6e99b9 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xba7471be phy_modify_paged +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9452d6 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xbaba6804 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xbac69bfc kernel_write +EXPORT_SYMBOL vmlinux 0xbae8b83c neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xbaeb16df sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb1283f5 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb14822d inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xbb1ac629 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb2ee99b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbb3bf2e0 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xbb3c60fe bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xbb44d218 d_find_alias +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb507375 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbb6fe86a pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xbb76e790 security_path_rename +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbbaa5d71 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xbbbf281c drop_super +EXPORT_SYMBOL vmlinux 0xbbd23c91 ip_options_compile +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc0cffc6 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbc122fa2 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xbc1251e4 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2cb702 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbc4c414c register_console +EXPORT_SYMBOL vmlinux 0xbc50ab3c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xbc5de35b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xbc698780 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xbc841706 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xbc8598a8 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xbc8ee1e8 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xbca568cf __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xbca92074 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcc9642a devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0xbcd21151 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xbcd749c9 phy_init_hw +EXPORT_SYMBOL vmlinux 0xbcd7c001 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0xbd18b757 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd40a87e __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd50209a bio_chain +EXPORT_SYMBOL vmlinux 0xbd56b119 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbdc5a778 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xbde092c6 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xbde6ee4e agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdffad35 rio_query_mport +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe06a680 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xbe469696 skb_pull +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 0xbe6a3c1c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe846185 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xbeaa90c9 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xbeb15a29 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xbeb25ef6 simple_open +EXPORT_SYMBOL vmlinux 0xbec3fab4 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xbec47925 tty_port_close +EXPORT_SYMBOL vmlinux 0xbeccbe44 param_get_hexint +EXPORT_SYMBOL vmlinux 0xbed5aecb init_pseudo +EXPORT_SYMBOL vmlinux 0xbee17fa2 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xbee94674 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefd0f9b locks_init_lock +EXPORT_SYMBOL vmlinux 0xbeffa593 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xbf082cc6 locks_free_lock +EXPORT_SYMBOL vmlinux 0xbf189e02 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xbf209007 km_state_notify +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf3a89b9 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xbf4c6720 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf7d5889 ip6_xmit +EXPORT_SYMBOL vmlinux 0xbf92c46e __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xbf9833f1 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xbf9acf20 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb79270 skb_pull_data +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc3f65c devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xbfc78067 md_write_end +EXPORT_SYMBOL vmlinux 0xbfe7fa8f inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xc00143ee pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xc017e4fd scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc029145c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0606410 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0830526 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xc0954478 nla_put +EXPORT_SYMBOL vmlinux 0xc0a74d96 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc0a76192 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xc0a92ca2 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0dda1cc tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc0ebc234 vfs_create +EXPORT_SYMBOL vmlinux 0xc0f47e1e nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0xc0f4ce8f param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc0f5c7ee tcp_check_req +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1108f97 udp_seq_next +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc11901d2 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc132d0a1 sock_register +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc13937fa acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc14e2be5 param_set_bool +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc180c509 pci_select_bars +EXPORT_SYMBOL vmlinux 0xc1a78d0f pci_dev_get +EXPORT_SYMBOL vmlinux 0xc1afc193 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc1b8f559 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d7e0ec serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e787c7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc1eccd8c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc206a786 xp_free +EXPORT_SYMBOL vmlinux 0xc20b16b0 udp_prot +EXPORT_SYMBOL vmlinux 0xc21c23ed dentry_path_raw +EXPORT_SYMBOL vmlinux 0xc227431e get_tree_nodev +EXPORT_SYMBOL vmlinux 0xc23e0fb8 proc_remove +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24b56d9 get_tree_bdev +EXPORT_SYMBOL vmlinux 0xc251a145 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc26cf96b serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xc26f5467 dma_map_resource +EXPORT_SYMBOL vmlinux 0xc270953f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc289ab46 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc2922ddc dm_register_target +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a98af1 __skb_pad +EXPORT_SYMBOL vmlinux 0xc2b099cc input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc2be0437 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0xc2cadd3f bioset_exit +EXPORT_SYMBOL vmlinux 0xc2cb1ece devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ed4b81 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xc2f1df41 kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc30b195a pci_request_irq +EXPORT_SYMBOL vmlinux 0xc30efb7e jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc318494d mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc3375841 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xc3648a75 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36b8a96 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xc36e2218 devm_ioport_map +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 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c32a06 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xc3d8843e md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xc3e721d8 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4061bcd serio_open +EXPORT_SYMBOL vmlinux 0xc40620a8 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0xc41790f0 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xc41ab6ac __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc41bc980 iwe_stream_add_value +EXPORT_SYMBOL vmlinux 0xc4212ab9 qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xc428dbdd mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc45445d7 dev_set_threaded +EXPORT_SYMBOL vmlinux 0xc45a39fd __pagevec_release +EXPORT_SYMBOL vmlinux 0xc45e1ed0 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xc461a154 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xc46753d3 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc48d4393 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc4a2c5f5 devm_clk_get +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc4b1962a __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xc4b8e376 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc4ce49c1 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xc4eaf06e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc513548e phy_init_eee +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc54fb8af tso_start +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5697189 set_trace_device +EXPORT_SYMBOL vmlinux 0xc56a2c77 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5856a4e dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0xc58c9e0f agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc597893e inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59e14e9 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xc5a1b064 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xc5ac2069 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bbbf60 current_task +EXPORT_SYMBOL vmlinux 0xc5bf112f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xc5c90074 param_ops_string +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5eb43e1 napi_get_frags +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fc31cf sock_set_mark +EXPORT_SYMBOL vmlinux 0xc600cc92 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc624d865 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc6256160 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6717546 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xc688af0b configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc694e886 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0xc69781db skb_checksum +EXPORT_SYMBOL vmlinux 0xc6a54bb7 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xc6c148ce flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc6c85d94 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cdb01d i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc6ce80f2 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e550d4 input_inject_event +EXPORT_SYMBOL vmlinux 0xc6ebc988 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f7d8a6 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc7165e78 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc727fcc2 inode_init_owner +EXPORT_SYMBOL vmlinux 0xc7433643 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc74d6cd7 dqput +EXPORT_SYMBOL vmlinux 0xc751cb2d input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0xc75897de write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc7735a5e security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc77e4fdf keyring_search +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79ac267 vm_map_pages +EXPORT_SYMBOL vmlinux 0xc7a18ffa dev_addr_mod +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a5b545 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xc7af0097 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d317a1 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xc7eda6bc mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xc7f0381a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc814fb56 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xc822d571 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc836076b page_readlink +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc83b956c path_is_under +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8594c40 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc869a68c max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc86bd56b put_disk +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc876b381 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xc87be927 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc88644ae phy_find_first +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a5dde0 devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc8a72c7f generic_file_fsync +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b97404 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xc8c02b9d __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc8cf3228 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xc8d0afc9 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xc8d1aa5d kernel_read +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e33855 nf_log_trace +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc942eefb param_array_ops +EXPORT_SYMBOL vmlinux 0xc9445759 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xc9549a7c copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xc959cfd4 bdevname +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9684246 seq_vprintf +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc974ab7f tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xc97e3d9f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc97f29f4 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc9868a8e tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xc98e7d0a ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc99763b0 netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9b86873 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0xc9d40604 __alloc_pages +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e27479 seq_bprintf +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9fcb3d2 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2a475d devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xca314e99 key_put +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca80da56 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xca838431 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9f4ca3 iget5_locked +EXPORT_SYMBOL vmlinux 0xcaae6d0e inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xcaaf3511 d_instantiate +EXPORT_SYMBOL vmlinux 0xcab32edd phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xcab7e610 rt_dst_clone +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb06abcf request_key_rcu +EXPORT_SYMBOL vmlinux 0xcb076079 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xcb15f83a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xcb2175a4 release_sock +EXPORT_SYMBOL vmlinux 0xcb2903c9 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0xcb320fb0 file_ns_capable +EXPORT_SYMBOL vmlinux 0xcb333cdf dma_ops +EXPORT_SYMBOL vmlinux 0xcb3a7552 bio_reset +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb5451c1 __invalidate_device +EXPORT_SYMBOL vmlinux 0xcb60f542 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xcb6156a9 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb925bad xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xcb98c091 uart_resume_port +EXPORT_SYMBOL vmlinux 0xcba734dd get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xcbb0dab4 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xcbb52145 md_handle_request +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbe97ff6 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xcbf22e01 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc011978 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xcc0b7621 ip_route_me_harder +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 0xcc2f6d9c devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc33475e param_set_short +EXPORT_SYMBOL vmlinux 0xcc39fb65 page_mapping +EXPORT_SYMBOL vmlinux 0xcc3ad233 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xcc3fac44 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc7ea03b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xcc850ade nd_integrity_init +EXPORT_SYMBOL vmlinux 0xcc899e12 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xcc8c2c95 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xcca1288e blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xcca2d35f tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xccaaf961 nf_log_packet +EXPORT_SYMBOL vmlinux 0xccad1aa2 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0xccb2cb62 thaw_super +EXPORT_SYMBOL vmlinux 0xccc29942 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd53615 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xcce819b2 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfc5aaf __napi_schedule +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd19d503 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xcd204664 __bforget +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2fcbc0 napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xcd3954db filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcd59949e dev_printk_emit +EXPORT_SYMBOL vmlinux 0xcd78d28a param_get_invbool +EXPORT_SYMBOL vmlinux 0xcd7b50ca blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xcd83c46f set_disk_ro +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd9e50d2 pps_event +EXPORT_SYMBOL vmlinux 0xcdb75967 genphy_update_link +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd3badf phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfaf8f0 param_get_string +EXPORT_SYMBOL vmlinux 0xce163853 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2c3668 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xce43a9a3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xce4550e5 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xce45aaa3 tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xce46f354 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e26d3 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5b8a11 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xce72bdd4 vmap +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce97b8e8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xce9bb630 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0xce9d630f vga_put +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb89ca3 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced83679 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xcee351ea pnp_start_dev +EXPORT_SYMBOL vmlinux 0xcee5bf88 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xceee8e5a vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xceef85e4 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xcef8d830 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefbf772 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcefe6227 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0xceff3d8a dquot_resume +EXPORT_SYMBOL vmlinux 0xcf0e2d6a __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf2cd9f0 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf5e19ed cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xcf817cab peernet2id +EXPORT_SYMBOL vmlinux 0xcf826760 submit_bio +EXPORT_SYMBOL vmlinux 0xcf8f9868 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb1d8b2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xcfb67307 sk_net_capable +EXPORT_SYMBOL vmlinux 0xcfb68c38 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfd95025 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xcff2d502 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xd003682d sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd00c304d make_kgid +EXPORT_SYMBOL vmlinux 0xd01efc7d end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xd02f152b end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xd0304fa5 napi_build_skb +EXPORT_SYMBOL vmlinux 0xd04058d2 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xd046e63a ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05be8b7 request_firmware +EXPORT_SYMBOL vmlinux 0xd05bf300 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd05d476f fs_param_is_string +EXPORT_SYMBOL vmlinux 0xd060a61c security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd0670394 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0867616 vme_slot_num +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0a08ebd tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0bb2563 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xd0cd6748 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0ef4d21 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd101ac15 write_cache_pages +EXPORT_SYMBOL vmlinux 0xd1077978 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xd12b7960 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1442af2 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd14e419d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xd1571746 f_setown +EXPORT_SYMBOL vmlinux 0xd158a6f2 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd161e027 vfs_fadvise +EXPORT_SYMBOL vmlinux 0xd164a43d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd16d0d53 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xd1721ab7 inet6_offloads +EXPORT_SYMBOL vmlinux 0xd172d4d8 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xd17388ee netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xd17f2f4b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xd17f9033 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd180cd03 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd18b3242 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1c9311a mdio_bus_type +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e0ff07 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd20d4422 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd20fa407 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xd21ad590 tcp_prot +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd22d073d seq_pad +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24d1df6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd268809a vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xd26bd2c5 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28219a9 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd2970fe7 __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xd2b6fef3 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2cdf174 tso_count_descs +EXPORT_SYMBOL vmlinux 0xd2d6b009 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2eace43 notify_change +EXPORT_SYMBOL vmlinux 0xd2ebcb58 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd309cd45 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xd3203859 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xd329794d filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd33bf1ac fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xd351e4f8 __find_get_block +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 0xd362c30a set_pages_wb +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd3808b5c md_error +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd3a02288 register_netdevice +EXPORT_SYMBOL vmlinux 0xd3b65d87 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xd3d8cbd6 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xd3e48ac3 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xd4053f6c filemap_check_errors +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41413d6 copy_string_kernel +EXPORT_SYMBOL vmlinux 0xd4384438 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xd43859f2 param_ops_uint +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd460f068 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0xd465bac2 free_netdev +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48b96c8 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd494bc92 pci_enable_device +EXPORT_SYMBOL vmlinux 0xd49abd03 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xd4a7cd68 md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xd4abb0d9 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4d1f9d9 dcache_readdir +EXPORT_SYMBOL vmlinux 0xd4e59660 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd4ec175b netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd4f0a0fd agp_generic_enable +EXPORT_SYMBOL vmlinux 0xd4f19f08 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xd4f740a6 netlink_ack +EXPORT_SYMBOL vmlinux 0xd4f94727 migrate_page +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd51950b1 seq_read +EXPORT_SYMBOL vmlinux 0xd51ae3c8 xfrm_state_free +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd534123c scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd545afa3 folio_mapped +EXPORT_SYMBOL vmlinux 0xd551b6e9 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xd56a1f11 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd58c4893 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5d5a9a3 kobject_del +EXPORT_SYMBOL vmlinux 0xd5ec1d85 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61fb23d __ps2_command +EXPORT_SYMBOL vmlinux 0xd62d5dc2 pci_dev_put +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b46502 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd6bac031 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xd6c6e0d0 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xd6c9d65e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6eb553f bdi_alloc +EXPORT_SYMBOL vmlinux 0xd6ed4e13 inet_bind +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fa2bc5 tcp_rcv_established +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 0xd716c5e0 folio_add_lru +EXPORT_SYMBOL vmlinux 0xd7180375 devm_request_resource +EXPORT_SYMBOL vmlinux 0xd71ad9c7 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd734110a keyring_alloc +EXPORT_SYMBOL vmlinux 0xd73795e1 param_set_long +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd77318f3 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd7945c8e __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd79f3f8c vme_irq_handler +EXPORT_SYMBOL vmlinux 0xd7af88dc xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xd7b30486 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd7b35077 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xd7b4898d simple_fill_super +EXPORT_SYMBOL vmlinux 0xd7bebb81 mpage_writepages +EXPORT_SYMBOL vmlinux 0xd7c54339 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7dfe77c tcf_exts_change +EXPORT_SYMBOL vmlinux 0xd7e37e33 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e9d28a sget +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f2da0b ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0xd8034eed sock_i_uid +EXPORT_SYMBOL vmlinux 0xd810ab1f acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xd81bfe6c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xd82c2501 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xd83ed7b3 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd8573a48 pci_enable_wake +EXPORT_SYMBOL vmlinux 0xd865c240 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd86b2419 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xd88802c2 pci_find_bus +EXPORT_SYMBOL vmlinux 0xd891ef20 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a85bd4 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b34aa8 ilookup +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8d1c943 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e18a29 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xd8e97fe8 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xd8eedb8f agp_free_memory +EXPORT_SYMBOL vmlinux 0xd8fbe26c phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd9319585 bdi_put +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94fc513 kobject_init +EXPORT_SYMBOL vmlinux 0xd95241e2 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0xd95910a8 kill_block_super +EXPORT_SYMBOL vmlinux 0xd970d787 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd977500f kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98c036e clear_nlink +EXPORT_SYMBOL vmlinux 0xd990ebd7 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b11890 wake_up_process +EXPORT_SYMBOL vmlinux 0xd9b35177 vm_mmap +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c508f3 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd9cc3eb1 textsearch_register +EXPORT_SYMBOL vmlinux 0xd9cc7ea9 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd9cf4cdf uart_get_divisor +EXPORT_SYMBOL vmlinux 0xd9d0c41e fb_blank +EXPORT_SYMBOL vmlinux 0xd9d61386 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9da47cd __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xda0c3f03 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3a4f62 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4ba4c4 __sock_create +EXPORT_SYMBOL vmlinux 0xda5aa1bb device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xda75d0b2 __block_write_full_page +EXPORT_SYMBOL vmlinux 0xda8db763 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xda9e0bb7 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xdaac8dce dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xdaac9cac __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacdfc7b processors +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdae4b449 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdaf3e4a7 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1a7364 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xdb22a563 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb2ed689 set_capacity +EXPORT_SYMBOL vmlinux 0xdb372b83 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdb4a5d70 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xdb4c71a5 sock_create +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a2106 user_path_create +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb803b4b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xdb95956b amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb9908e6 netlink_set_err +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd50968 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbff17a1 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xdc0c277a dst_dev_put +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc32b447 datagram_poll +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc51bdab pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc5b08d5 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xdc61b734 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0xdc6a670b dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xdc6f3827 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0xdc7e4ef2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdcb528ae register_md_personality +EXPORT_SYMBOL vmlinux 0xdcbeb9f3 phy_resume +EXPORT_SYMBOL vmlinux 0xdcc77a7d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xdcd39337 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcdc3cb3 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xdce5d494 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xdcedb832 module_refcount +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd1969be ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd370aea fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xdd3a2eca scsi_target_resume +EXPORT_SYMBOL vmlinux 0xdd3dae5f inet6_del_offload +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd5e75ea textsearch_prepare +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd78d533 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xdd7cbdf0 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8ea668 genl_notify +EXPORT_SYMBOL vmlinux 0xdd9d5cc8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddc73316 dev_close +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde086349 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde32136e __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde4fb71b iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xde5033d7 md_flush_request +EXPORT_SYMBOL vmlinux 0xde576ce9 skb_eth_push +EXPORT_SYMBOL vmlinux 0xde6aa0b7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea9eb4b mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xdec30dce udp_pre_connect +EXPORT_SYMBOL vmlinux 0xdec6b9d6 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xdece6384 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xdecfae3b fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdefaed40 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xdf1ac593 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf294ecf security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf38c93d convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0xdf399d33 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xdf4b4bbe dev_uc_sync +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf6986d8 poll_initwait +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf72de26 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xdf79aec6 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9f5b1e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xdfa24be6 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xdfa75546 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdfb6d37d netlink_unicast +EXPORT_SYMBOL vmlinux 0xdfb75413 vfs_symlink +EXPORT_SYMBOL vmlinux 0xdfc10c94 load_nls +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfc6a502 keyring_clear +EXPORT_SYMBOL vmlinux 0xdfcaf63e tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfcdd92d __bread_gfp +EXPORT_SYMBOL vmlinux 0xdfd89c6a setup_new_exec +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe01cb5ab __skb_checksum +EXPORT_SYMBOL vmlinux 0xe0280b67 new_inode +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 0xe03d441d dquot_initialize +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05535a8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xe0676232 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe0772360 __tracepoint_module_get +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 0xe096cbe1 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xe09b4414 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bf5bd5 dquot_acquire +EXPORT_SYMBOL vmlinux 0xe0bf68d9 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xe0de6f1e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xe0e404bd genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xe0e428fb vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe0ee8eb5 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe0f34c4d __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xe0ff0e74 nf_log_register +EXPORT_SYMBOL vmlinux 0xe10966b9 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xe10e9d7b __mdiobus_register +EXPORT_SYMBOL vmlinux 0xe1139771 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe118780c napi_disable +EXPORT_SYMBOL vmlinux 0xe11deea5 km_state_expired +EXPORT_SYMBOL vmlinux 0xe123aba7 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12c623a generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe140e5e8 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xe1416cd0 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xe14703cb kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe15874e3 scsi_print_command +EXPORT_SYMBOL vmlinux 0xe1684dc3 mount_single +EXPORT_SYMBOL vmlinux 0xe16f7cbf genlmsg_put +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1dad85f tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe1db1101 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1e95b9d jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0xe1f07c58 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe1fd8377 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xe2183f75 bio_uninit +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe230a9e4 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe2329e08 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe2343025 tcf_classify +EXPORT_SYMBOL vmlinux 0xe2408f0f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xe2462f54 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xe2538cd6 from_kgid +EXPORT_SYMBOL vmlinux 0xe2693c0b jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe28d7b77 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e02fbd __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2e391ad nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xe2e9f25a sk_wait_data +EXPORT_SYMBOL vmlinux 0xe2f12bc1 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xe2f1e74f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe2fd77fa netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xe303f1bd rproc_add +EXPORT_SYMBOL vmlinux 0xe3042606 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe307ff5d input_open_device +EXPORT_SYMBOL vmlinux 0xe30873d9 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe31cbb2f has_capability +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32bb61d pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xe32c045d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe336945c mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xe33d7559 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xe341bc5d finish_swait +EXPORT_SYMBOL vmlinux 0xe351251e __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe35b0e80 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xe36c9572 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe375ba15 fget_raw +EXPORT_SYMBOL vmlinux 0xe37dfdf5 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3a419e3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xe3a915e6 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xe3b7bc2b bio_free_pages +EXPORT_SYMBOL vmlinux 0xe3c95d87 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3dda056 dump_align +EXPORT_SYMBOL vmlinux 0xe3e20280 pagevec_lookup_range +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 0xe405a3e1 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe41a6249 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xe4288c7c nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe42f221e dquot_drop +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4349515 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xe435c915 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe4386fec pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xe43e1439 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xe43ea717 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xe4483202 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4627cca netpoll_setup +EXPORT_SYMBOL vmlinux 0xe466d3b6 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xe46f5795 bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe478a665 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0xe47d2c24 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xe485aaf4 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe4948a22 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xe494baca gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xe49c5e8e mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe4aa4989 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xe4af109f vm_map_ram +EXPORT_SYMBOL vmlinux 0xe4b713c2 update_devfreq +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c2d3ab mmput_async +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe543e449 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe546841d vme_irq_generate +EXPORT_SYMBOL vmlinux 0xe54ad183 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xe54d51ed phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xe5548476 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe558d4a3 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xe55cdc00 kthread_bind +EXPORT_SYMBOL vmlinux 0xe57beaee pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe58eb382 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe591dd7e bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe5960a4d xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe59f441f __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe5b2bc57 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d91c6a simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe5db9cb1 lock_rename +EXPORT_SYMBOL vmlinux 0xe5def077 proc_set_user +EXPORT_SYMBOL vmlinux 0xe5e040f2 generic_fillattr +EXPORT_SYMBOL vmlinux 0xe5f540b0 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6244c71 __put_page +EXPORT_SYMBOL vmlinux 0xe630cfb2 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xe6345023 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe643a66f devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe6472d85 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe66a75ed blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xe683c384 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xe687d55b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6a0397a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe6b87024 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xe6bbd9e8 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xe6c49e03 seq_printf +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f1803b seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe70868ed is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe71ec4c5 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe73c1b42 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe74a09ce genphy_read_status +EXPORT_SYMBOL vmlinux 0xe761920e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe777da27 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe78a6f59 input_get_timestamp +EXPORT_SYMBOL vmlinux 0xe796ecac __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7aca7ea dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xe7be89b9 scsi_done +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d91a42 sk_error_report +EXPORT_SYMBOL vmlinux 0xe7e61d37 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe80dbdcc dm_put_device +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe83cc2a7 dqget +EXPORT_SYMBOL vmlinux 0xe843bf75 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0xe8526472 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xe855f528 md_register_thread +EXPORT_SYMBOL vmlinux 0xe85f0069 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86ac918 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xe873e50c rproc_report_crash +EXPORT_SYMBOL vmlinux 0xe87eceed inode_set_flags +EXPORT_SYMBOL vmlinux 0xe884bca5 blk_queue_split +EXPORT_SYMBOL vmlinux 0xe89277e2 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0xe896c2ed elv_rb_del +EXPORT_SYMBOL vmlinux 0xe8ab5baf scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xe8bb3fdf param_get_ulong +EXPORT_SYMBOL vmlinux 0xe8dd3e15 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe8de561d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xe8f0da2b napi_enable +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe901c9c2 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90f55ad mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xe9146393 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe935ffb7 generic_write_checks +EXPORT_SYMBOL vmlinux 0xe951fcc7 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95b48e6 flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xe979613d lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9a7cb34 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xe9ac3e5d sk_dst_check +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b63fa4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xe9cc54d8 sock_alloc +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9eae268 d_tmpfile +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea00c298 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xea032ccf tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xea0d7f1c file_update_time +EXPORT_SYMBOL vmlinux 0xea2dbde6 security_path_unlink +EXPORT_SYMBOL vmlinux 0xea3721d9 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea5dbe83 xfrm_input +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea837fc6 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xea84c39f agp_enable +EXPORT_SYMBOL vmlinux 0xea9f0b81 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xead7972e dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae42557 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb278048 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xeb30d177 get_cached_acl +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb52c206 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xeb6bc49c ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xeb7287df registered_fb +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba2494c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xebb8a484 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xebc726f0 mdio_device_remove +EXPORT_SYMBOL vmlinux 0xebdea7b7 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebf5e4c9 ps2_drain +EXPORT_SYMBOL vmlinux 0xec260fc1 touch_buffer +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec4c1932 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec563a87 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xec668d2e tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xec77d42d mdio_driver_register +EXPORT_SYMBOL vmlinux 0xec78013a sock_no_accept +EXPORT_SYMBOL vmlinux 0xec7a36cb gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xec800e11 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xec828ee6 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb0ecb3 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xecb3aca2 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xecd10d61 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xecdaa4c4 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xece67b8a is_bad_inode +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed14288b inode_needs_sync +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed9a87dd netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xeda4730b scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xedb5f702 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc15ca8 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xedc4170f mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xedcc01d5 set_binfmt +EXPORT_SYMBOL vmlinux 0xedd03922 input_set_keycode +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedd891f1 rtnl_notify +EXPORT_SYMBOL vmlinux 0xede977b5 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xedef08e6 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xedf4d030 vga_client_register +EXPORT_SYMBOL vmlinux 0xee031672 flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xee0b36f4 iterate_fd +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee52dc65 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xee57c8fa rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee61d157 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xee7c0e0c security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee883b06 __vmalloc_array +EXPORT_SYMBOL vmlinux 0xee8c02e9 vprintk_emit +EXPORT_SYMBOL vmlinux 0xee8d74d6 jiffies64_to_nsecs +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xef04611f blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0xef0759b7 add_to_pipe +EXPORT_SYMBOL vmlinux 0xef43f9a9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xef4609af tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xef629d57 generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xef6e90ca input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbb2d42 rproc_free +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd51198 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xefe3f95a ___pskb_trim +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0138073 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0xf01aeda6 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03fbddf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf054b670 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xf0572b85 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf05fcec1 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xf061b3bf skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0xf07529cd sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf07b6d4e tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0xf07f8032 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xf083abd5 key_type_keyring +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0ba224a vme_init_bridge +EXPORT_SYMBOL vmlinux 0xf0c0411b phy_start_aneg +EXPORT_SYMBOL vmlinux 0xf0c65d80 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xf0cf10a3 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xf0da0777 may_umount_tree +EXPORT_SYMBOL vmlinux 0xf0e2c994 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf0ffe3a2 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf10fee98 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf12ad983 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf1591de4 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0xf159530b cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xf18185f7 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf1848ee2 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0xf189b773 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19739a9 tcf_register_action +EXPORT_SYMBOL vmlinux 0xf19d0fb4 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1c0c8a2 is_nd_btt +EXPORT_SYMBOL vmlinux 0xf1c3753d bio_endio +EXPORT_SYMBOL vmlinux 0xf1d90ad7 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e91f96 generic_writepages +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf200be77 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf202cde0 simple_lookup +EXPORT_SYMBOL vmlinux 0xf23acbe0 pin_user_pages +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24fa3fd inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xf25cbe14 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xf25f9dcc dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf26339ce phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0xf27dc428 clocksource_unregister +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 0xf2b1c688 legacy_pic +EXPORT_SYMBOL vmlinux 0xf2b1eae2 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xf2b5f99c jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2dcf2cc pcim_set_mwi +EXPORT_SYMBOL vmlinux 0xf2dfc7a4 fasync_helper +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2eda576 mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0xf2f1abe3 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf2f44fb7 regset_get +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf306d562 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf32065a7 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34adb83 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf364fe8e blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3969a1d security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a73ff8 d_drop +EXPORT_SYMBOL vmlinux 0xf3bf1e0e __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xf3c46ea0 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0xf3c60b14 fd_install +EXPORT_SYMBOL vmlinux 0xf3cc12e5 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xf3cfab72 do_splice_direct +EXPORT_SYMBOL vmlinux 0xf3d4fd3c lookup_one_len +EXPORT_SYMBOL vmlinux 0xf3d63852 tty_register_driver +EXPORT_SYMBOL vmlinux 0xf3decd56 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3e4750d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xf3e65814 mmc_add_host +EXPORT_SYMBOL vmlinux 0xf3e8c614 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4016935 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf4092089 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xf40c8cf9 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xf42d7be9 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf46c5abf blk_integrity_register +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47a4500 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0xf47c14ea mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xf49571c0 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b4a990 brioctl_set +EXPORT_SYMBOL vmlinux 0xf4b73a55 tcp_child_process +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4cfcb7e input_get_keycode +EXPORT_SYMBOL vmlinux 0xf4d081a9 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xf4d97514 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4dd38cd blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf4e1972c inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f46fc9 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf5369e45 vfs_mknod +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf540c10a arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xf58265e2 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5a9d337 vme_lm_request +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5c2f322 dup_iter +EXPORT_SYMBOL vmlinux 0xf5c92ed0 noop_fsync +EXPORT_SYMBOL vmlinux 0xf5cdabdd mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xf5dcb02c blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf6044fb4 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xf604a07c ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf60bec65 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xf6191af2 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf62dec14 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf668bc39 iov_iter_discard +EXPORT_SYMBOL vmlinux 0xf67d349c zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf684528f nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xf69783fc nd_device_notify +EXPORT_SYMBOL vmlinux 0xf6cc3fc0 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xf6e7ce51 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f28d29 folio_mapping +EXPORT_SYMBOL vmlinux 0xf6f73355 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf704f6b5 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xf709cb89 kthread_stop +EXPORT_SYMBOL vmlinux 0xf711ef95 inode_insert5 +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf7418d17 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xf74883e3 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf758dfdf vfs_iter_read +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7842cdc blk_finish_plug +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7a034f8 vfs_link +EXPORT_SYMBOL vmlinux 0xf7ae6bed __phy_write_mmd +EXPORT_SYMBOL vmlinux 0xf7bdd1ba pci_enable_ptm +EXPORT_SYMBOL vmlinux 0xf7be14e9 mount_bdev +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7e664f8 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xf7e7997d clk_get +EXPORT_SYMBOL vmlinux 0xf7ecc4cf __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xf7ef9a79 iosf_mbi_punit_release +EXPORT_SYMBOL vmlinux 0xf7f5e3b6 folio_write_one +EXPORT_SYMBOL vmlinux 0xf804a82e tty_unregister_ldisc +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 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8441b03 elevator_alloc +EXPORT_SYMBOL vmlinux 0xf84ba5f7 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8536a8a fb_find_mode +EXPORT_SYMBOL vmlinux 0xf85f7e29 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xf8663c9a mntget +EXPORT_SYMBOL vmlinux 0xf8725c30 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xf87d8b0b blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88d2849 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf893e93e inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xf8b652e0 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xf8cd850f device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8d3af97 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0xf8e62d78 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf91e6b6a __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xf9256d28 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xf925de39 genphy_suspend +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97f2f0c inet_del_protocol +EXPORT_SYMBOL vmlinux 0xf9a26a03 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b0a7aa napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf9ba23bb iptun_encaps +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9e28173 skb_ext_add +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa07de03 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa09a3e0 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xfa2060d9 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa3729be kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xfa3a4023 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xfa4a9ae8 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xfa55b3ee kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa63eba3 follow_down_one +EXPORT_SYMBOL vmlinux 0xfa6c80b7 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0xfa6ed034 vlan_for_each +EXPORT_SYMBOL vmlinux 0xfa761db5 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xfa77281a netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xfa8ab306 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xfa92e835 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xfaa55726 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab25447 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xfab6a816 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad0fbf2 tty_kref_put +EXPORT_SYMBOL vmlinux 0xfaddf5d9 _dev_emerg +EXPORT_SYMBOL vmlinux 0xfae9f88a serio_unregister_port +EXPORT_SYMBOL vmlinux 0xfaee86c9 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xfaf4a364 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xfaff0cef input_unregister_handle +EXPORT_SYMBOL vmlinux 0xfb137ec7 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xfb2468e3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xfb2cf5e2 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0xfb2d530f __kfree_skb +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb38b09c __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xfb38d84a netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xfb3e4389 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0xfb48f648 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb762add dev_mc_flush +EXPORT_SYMBOL vmlinux 0xfb81a304 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xfb875636 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfba8af87 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xfbaa7230 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab1bb1 ioread8_rep +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb4db54 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd7882f fqdir_init +EXPORT_SYMBOL vmlinux 0xfbe099d5 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfc069ec6 release_pages +EXPORT_SYMBOL vmlinux 0xfc2ea6e7 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xfc3080de start_tty +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc5faec1 cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xfc6ee657 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xfc7e21d0 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xfc83cfec scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xfc85c861 d_splice_alias +EXPORT_SYMBOL vmlinux 0xfc883b88 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfc89874c ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xfcc7fbf2 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf706e5 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xfd132e1c netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0xfd205a2d cdev_init +EXPORT_SYMBOL vmlinux 0xfd286792 pci_find_capability +EXPORT_SYMBOL vmlinux 0xfd2d7a13 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xfd3793fd input_setup_polling +EXPORT_SYMBOL vmlinux 0xfd4cb24f param_ops_long +EXPORT_SYMBOL vmlinux 0xfd516abc unlock_rename +EXPORT_SYMBOL vmlinux 0xfd6f1006 km_policy_notify +EXPORT_SYMBOL vmlinux 0xfd70231d scsi_add_device +EXPORT_SYMBOL vmlinux 0xfd77490e acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd95bb71 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xfdb0e720 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xfdb47dfb dev_get_iflink +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdc4cf0b address_space_init_once +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 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfdd9c32f configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe026a74 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe07a919 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfe0edd20 pv_ops +EXPORT_SYMBOL vmlinux 0xfe192356 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe35971d redraw_screen +EXPORT_SYMBOL vmlinux 0xfe3f8cd9 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe7313ba input_grab_device +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9b1bad tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfebded7c vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xfebe1cc6 __bio_advance +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 0xfefc8b77 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff0581b8 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xff05f394 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2b9dc2 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xff383b18 dev_uc_add +EXPORT_SYMBOL vmlinux 0xff510060 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff5e1156 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff68b294 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xff70ac18 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xff726cf4 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xff75207c page_get_link +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8d979a devm_of_iomap +EXPORT_SYMBOL vmlinux 0xff8dd9a0 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xff985d22 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xffa13a2d do_SAK +EXPORT_SYMBOL vmlinux 0xffa86833 config_group_init +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffc761ab tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffd2ca2c rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xffd71b48 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xffd9205c nd_device_unregister +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +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 0x29ad6065 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x82e3afcc sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x92ea4352 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x9d60934b sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xad0a89a3 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb2628c1f sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb9d055bd sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00500aa2 kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x006e4e4c kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x009e0a42 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00a7caf7 kvm_pmu_trigger_event +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x011ff531 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x015ac8d6 kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x023e1e63 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02f8ac72 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x039b27ae kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04e60bf7 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06d8ad3e kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06e7e1fe kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07148bad __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x087a9cb7 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08d1a2d8 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x093ada00 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09987170 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a5d4788 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b41b8ab kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b58a11d kvm_nr_uret_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b6440f2 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b6d9511 kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b811d72 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b8a3365 __traceiter_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0ca8df68 __traceiter_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cbb0616 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cf6ba6a kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cff45f4 __SCT__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d74e063 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0eb8bd6f kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f2c26da mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1181edea __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12ec2b2e kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x132f0fc5 kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x142198a4 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x164ff11a kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1726e436 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18351ee9 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x197c2cec kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19f3bc6f kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a159e2d kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1af2c952 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1affa376 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b045cc1 kvm_apic_update_irr +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 0x21a3c84d kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x223d4bab kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22425240 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24d1ce3e kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x252adc51 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26271262 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26e45973 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x275349e9 kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x287d6594 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28c2af80 __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28f32ec3 __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x294043bf kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a111fd3 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a191c03 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2dbdfc6f __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2eb4b666 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x307a3c58 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x308f20e7 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30d3215f kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30e3eede kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31dfc542 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32ddc94f kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x341fd190 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3459dcff kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35494ae7 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x369ae04c __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3788ab84 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37a5a880 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x388e0e10 __SCT__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x397bb83c kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39e9ac8c kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fcefa0 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a12797d kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a3b4ea9 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a6b0cab kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b446802 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ce2dcad kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e083a91 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f31b0fb kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403f91f5 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41a672e0 kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4201b9ef kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42a53463 __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x433d670c kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43d7486b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x449f4dd0 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45bc7ca2 kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47bf0e0a kvm_vcpu_read_guest_atomic +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 0x4948cfad hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4950b51b kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b1358e reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a3b98a5 __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a42f9aa kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4aba1bc7 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c7bd244 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e8e5d1a __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x501dfecf kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50ce6388 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x512d4546 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52905854 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5382a53f __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53ed02e9 kvm_hv_get_assist_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55507fe2 kvm_gfn_to_pfn_cache_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55e7b99e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56d5c688 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58a97136 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59a4765f mark_page_dirty +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 0x5c11e105 __traceiter_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c5f3f31 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5c8a428f __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e2102f2 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x612e5c1c kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61ff44a1 kvm_emulate_instruction +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 0x63496e21 kvm_gfn_to_pfn_cache_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x63a8be59 kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x644eee3d __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64ace5f3 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65230403 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65f4da2d kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x666340f7 __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66f883ed kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67b164fb kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67f9da5e __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68b12602 __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x690ad040 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a6378b8 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bc6b70a kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c45b7a4 kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e2dd98d __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f0bf8ca kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x703683be kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70f699a6 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7101f308 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7198e6eb kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73bb94de kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ef6cee __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7833784d kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x797f0ab8 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79df9f55 kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3020a9 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3ac216 kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adab0cf kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b7a2815 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c899706 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7db612bb kvm_set_cr3 +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 0x82fca82e kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x854d9656 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87f694a9 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x886942d7 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a65b6a9 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a99fe9f __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b6b66b0 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b8a1dd4 kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c6834ec kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f7897ce __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x904df13e kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e19ce1 __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x936d8ec5 kvm_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 0x953e3c26 __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95522115 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96395ad3 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9672e502 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97ba55c3 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98fba4cf kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9bbd0ebc kvm_gfn_to_pfn_cache_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ccac935 __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d91a129 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e6aa0eb kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9eb601dc kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ed76e28 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0557af1 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa066a0ae reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0b7f07d __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa35e9e20 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5494793 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa63eb0a5 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa65f1dc7 __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa66f1c8a __tracepoint_kvm_exit +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 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 0xa9721b9c kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9c03cc2 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa6a09c7 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa982659 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa9a1652 kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1bfd184 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1c3748d __SCK__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2007e45 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb231ca09 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb242e3ca kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2d4d237 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2f556f1 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb431f746 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb50eb9f5 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb717a166 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb738b9ae kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8464fd3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb85556f1 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8fea06a kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba719a01 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbea09984 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbeaa8ba1 __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbefd7a1f kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf832d37 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc06dd091 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc19a1bba kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc219d36d kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2b920bc __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc35a0db7 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b956f3 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc492e581 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc680bda8 __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7612d98 kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7d59784 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ec092f kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc210548 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc34f82e kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdbb177d __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcddde892 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf042fbd __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf142f1e gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf658286 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd04b9458 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd09da48b __SCT__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0f004da __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd268a39b kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3872aa1 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4fdb058 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd7701bea kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9d828e7 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda148538 __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdba2ce5b kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcb60d3f kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd216674 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd549dd4 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde3cf682 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfb7d3f6 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfb92da0 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe08d66c1 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0a27b22 kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe11e767a handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe140622f kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d231bc kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d25080 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe2519d9f kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe34fced1 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3521168 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe375592f kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe53ed8c1 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55d312c kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe55ed296 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5b9ff25 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6d36d32 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe7777457 kvm_cpu_has_injectable_intr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe81995bc kvm_load_guest_xsave_state +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 0xe983d6cf kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea79cc57 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb183fc0 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb2cec3 kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecf61581 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeedc8d43 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef936ccb __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf22809fa kvm_lapic_hv_timer_in_use +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 0xf3ebd104 __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf40e317f kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5ae01a0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5cd9467 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf77bf5a8 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa717bd2 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcd4829b kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfce2ce72 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd9a49a9 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdae18d0 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe16822e kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe68825d __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe853139 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL crypto/af_alg 0x1cba93d1 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1efeb053 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x2508a11d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x451db879 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x4efc72ea af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bdebf48 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x66232100 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x710695c0 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7485a85e af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x88f9b00a af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x98d3194b af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xaa4f5532 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xb353acf9 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xb44e1727 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xc9b5ecb3 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xd7f883dd af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf87a7a5 af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xedf5a3ae af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9dd676a6 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9c963763 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe10bec83 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x26ed3d75 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xac8e05c0 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x21f3b0ca async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2d605d8a async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9ddebdbd __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe0fcb404 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x1e430b0f async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7a679e33 async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8aaa30e3 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa117a5ee async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd5caaa92 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe2f9d5e2 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x003b9cce cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x21065ecc cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x34b6ca87 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x39c14d51 cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x407bc845 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7568cc61 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xa5f23322 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb9d2fc57 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbfecb543 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xca311ca3 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xd5acc3ef cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xe61f60fe cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe925fdf4 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe9cae540 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0401c1db crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x18d1fae1 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x21862ea3 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x22244923 crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2396ea1a crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x2df800ca crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x397dbd89 crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x863d3cfa crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9afa404b crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb661ada4 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbe5e133f crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd34865fa crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd47e26ab crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe6300c89 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xfdded766 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x29ecbb87 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46dd1ec3 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46e0ca63 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4c2c7aec 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 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 0x0c733734 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 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa5628746 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x070b5c6d synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3e639956 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x43dfb735 spk_do_catch_up_unicode +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 0x4975fa9e spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x5c4df688 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6fb20a1b spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x7ee7ae55 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x858ae1fe spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8763fd16 spk_ttyio_ops +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 0x99335346 synth_current +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 0xc236d71e 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 0xcc6f8518 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd36c10c1 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd3f440cb spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd786094d spk_ttyio_release +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 0x0755815e acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x2e80d662 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 0x948bcc13 acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xea1971e1 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf489a276 __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/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 0x048bfe99 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x07fd93e9 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2f469f08 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x486b8bca ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4ec13647 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x535a1900 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x640915ac ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c52f55d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6ce379e1 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7212afaf ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7611d8e2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8a6e3c21 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9900de36 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa1f70e3d ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa826b2c1 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaaeba72e ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xad18a973 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb2b6bd7f ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc7e2721f ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe458a642 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9e9865f ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2a2de95 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf4b88dfd ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf930c43f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x176b8d65 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x240eab44 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2a9bf11f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3af3af35 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6033fcaa ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x78521425 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x908cd9d5 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xab56a770 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb5f5e5e1 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb9a31281 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc53de27b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcdd8cc5b ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd37b8eca ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4ac4523 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xefdcbb21 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf60ae9b4 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x9f4cd1de __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/auxdisplay/line-display 0x2fa5089f linedisp_register +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0x68a9c1ac linedisp_unregister +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xec9bc4e9 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x6274e6b1 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xf4265e40 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xc2ebc0a3 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0xd2fd725d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x13016ad8 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xb24d8481 __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x04c00c6f __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xe690a88d __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x0776b2d9 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xac1a3909 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x1b30b18e __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5b386814 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xd78c7a2a __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xeb8459a0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x92bdd9ff __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xd9ec9126 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0464d3b4 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x126319ad bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cf9a456 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2b078d66 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ee59d41 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3da1b291 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x58bdb8e4 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x63a1eda3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6c4f84ad bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6d085cee bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7594304f bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x761cf3f7 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x881b2042 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9ae485ee bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa40b32d9 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa122697 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac156393 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xada2b8f6 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xadd56149 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8e83a49 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe527d4e0 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef4bf0bf bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf23f7d58 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6d9d880 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x18287505 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x23e3e113 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2cf29101 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x688e882a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x714e1fed btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdaa9c4a5 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdb95b15a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xf83bf757 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x028af802 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x18b25c07 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2a19a9e9 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2e64d0ed btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4642222f btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5be98ca7 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7ee17b16 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x91577f34 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e911cd2 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e9ed5dd btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xade6d669 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb934ee20 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcde40bb0 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd037c7f9 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe367d10c btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe69e5c8f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0a527ac btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x08e638d3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0d204608 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2526cede btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3f5c12d4 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x66faae90 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x87ec36d2 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8de714db btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf5b4c4b btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc95cbc4c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd41b4cc6 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf755cd37 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x00ba0305 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x4c60d050 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x55950838 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x24a2668c qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7b1c99c6 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x96d7d25b qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc6ca1595 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xdc7bba13 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x091de2cf btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2e7c78b8 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6a8655dc btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x879f5e4c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x95061e47 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf6dc48da btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x1293f25b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x375890d1 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xb7dc39a5 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbeb3e6e7 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2350135c mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x277eaa44 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x283b1d14 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x321deefa mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3552a378 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x362f9ac5 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe9605e8a mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xfb214ab9 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x007a7622 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0c0f3858 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1ed600fe mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1f656c0d mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x24e2198b mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x254fb8b7 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x271cef23 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x37f00598 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3dfa10ad mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3e4a85c9 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x42190d68 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x461168e4 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x62105a06 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8867bb53 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x951193d9 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa3727008 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa7756131 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xaebb1e0b mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbe1aa554 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbf55a875 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc8f7dc4e mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd4775985 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd545031b mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdafbb7c7 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe34b90cc mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe4d25c6a mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe65036bd mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xebf1f440 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf0425d3f __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf6df4220 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf7931ec9 mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x071b753a comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0a0a1e3b comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f820066 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x25508fb1 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d961e82 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x337eaf59 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x34e9a48d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3d6e4993 comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x44c055f3 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45bf3563 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x58130eae comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x678434a4 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x762f7d0e comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8857ebfc comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95686a95 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x97fa3e54 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9f751baa comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9fbab766 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xaf71b2d8 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3a3974b comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb3d6309a comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb8ca2ec8 comedi_request_region +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 0xc4f09dd3 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc7501476 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8888dd4 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc8aee0a9 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd3617069 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd426690c comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd51fd05b comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd570cf8a comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd671efcd comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdf14349b comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8c9938d comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf6a874fe comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf9630103 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfbb14c23 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x086f449b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x29ad8500 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x2e33d0b4 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x46596f49 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x8cc2dae6 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe63b425f comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe7ec342f comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xfbbe9300 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x108855f8 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x164133d7 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x5cdedf44 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x61e6f185 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x9750bd53 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x97b5708a comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xc621833a comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x6315b8bc comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x640f6957 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x86b46f56 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9a62dec9 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xd4e3815c comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xfef97879 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x4e42ad9e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x21bb62f9 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xe13b6c4d amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x94975783 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x0d80c884 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x22be4336 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x2daaa1d4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x362baf5d comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x4036319c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x45825972 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x68e3c902 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6a06750b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x7be1224c comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x94275538 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa2622450 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa2c920f0 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe2415ff0 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x478ac636 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x4cb8d52f subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xfba39665 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x0231abc5 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x12fba874 comedi_isadma_disable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x29699e7c comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x4a17474e comedi_isadma_disable_on_sample +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xca784d4b comedi_isadma_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xea878430 comedi_isadma_program +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0xf5af7809 comedi_isadma_poll +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x37ddba0a das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x14d0741c mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1d062da7 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x249df399 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x3a479de7 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4646b689 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x489a44fc mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x4e782ca9 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6b4d2559 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c080c70 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x6c677dbb mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x7db1ad21 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x91832086 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9e89ac20 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdb8cd7cf mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf148970e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xfd8c28b8 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x312c6b2f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x791beadd labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x2010c00e labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x34bb214d labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x3e3e4862 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x54e99a79 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x886d5765 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x076bc308 ni_find_route_source +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x0921123e ni_lookup_route_register +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_routing 0x1facf7f8 ni_is_cmd_dest +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 0x08a941b8 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x22e20272 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x23ad5831 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b8a7f82 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x48636488 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x5693b006 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x63bc55a5 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x71b2cb28 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7a5ec847 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x86fdc3d9 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa44c8203 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa8746fe0 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xed58323c ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xee6aab65 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf1df06ee ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfa69aedd ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x53724097 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x5b305aa2 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x6c2a3ebb ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9d11ddb2 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xd14baf25 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe01ccf87 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4a9c1a97 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x790ea92b comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x7cdcfc35 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x8c18f9d6 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdbd815b1 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfc59db3c comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfd0fe938 comedi_open +EXPORT_SYMBOL_GPL drivers/counter/counter 0x323b3b48 devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x95eb9c50 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0xaa1a370a counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb6ab7a70 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xbee106c4 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xc33fb93e counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf844b01e devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xfafb7ee7 counter_push_event +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 0x55612bf6 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xe82f9908 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x02a2e53b adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x04245d83 adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x04db58c8 adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0b313aac adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12edbb56 adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x185be54d adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2658c59f adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x275a3b51 adf_gen2_get_num_aes +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2893b366 adf_gen2_enable_error_correction +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 0x33a2d0e2 adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3ac51457 adf_exit_admin_comms +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 0x442c8a2e adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4470d527 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c2e5985 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x51475967 adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x518fc358 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x55947dd6 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61b8776c adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655b5f8e adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x655e7a4b adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x671d26ec adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x69ae1747 adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f341573 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f574e80 adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6f58f63f adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7477f90d adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7c4bc7c1 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d151e28 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9431f53a adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9a532a1e adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c2c2de8 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9c90ccd0 adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa29bde9e adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa6c71793 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xac2648b4 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xadeb1f5c adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xae11c2c8 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb0dcea3c adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb1975ef4 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb3553245 adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb529a045 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb62de98a adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb98b7d45 adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbc2f6ca6 adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc394253b adf_gen2_enable_ints +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 0xc7efb48f adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcab366b6 adf_dev_shutdown +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 0xd41e124b adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd5324192 adf_enable_aer +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 0xdc4ce98a adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd5afadd adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe9054b78 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xebac7162 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefee51a0 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf13aba36 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf3933f1a adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf890b787 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xff2d8d72 adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xffe0d699 adf_dev_put +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x17e90094 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x303f2b1d alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5b139e87 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5c11a0c3 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x66b310a3 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x85614f48 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xaa634427 dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac308314 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfb562646 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x5e096420 dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc2eb5485 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3cc0234d dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4fe2e1e8 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7112cce4 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b8f5df6 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x9aad9db9 dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xba966cd1 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd36e6d18 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe36bbac7 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf0f25d4a dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x4f26f3b7 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x82f5cd2e 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 0xa6768751 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x01f304d6 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x04b434ce cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x04de13ad cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x3ffa7373 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4bb5ae44 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x55ac3323 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x595cff43 cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x59943c62 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x63acb9ee cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x676ffd43 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6b574606 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7d2f95d7 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7e6ac459 cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa3c76221 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xacb63314 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xace2c0b5 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb21da54a cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb83f884b cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbb9127af cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbdf55ca0 cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc102d86e cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xc2ae8383 cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xd3acdb00 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xf89aa093 cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0xd3f2f6c0 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x05e54337 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0b80d296 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0e7016e5 dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x196c979a dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x28293202 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4843847e dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6aafd0ec dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6ce921dd dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x76a8685f dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x86fd56dd dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x957d4dc0 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9c55bf77 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9cf8164f dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa141e950 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa305c796 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xa5bf8b4e dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaad572f8 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xb337034a dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbc14a882 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xc808a265 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xed8fe9d6 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xee811ff7 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xf101954b dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x06c3ded5 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x297e30b8 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3157f7df fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x36dfce13 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x44feaa36 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x824be865 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc2038520 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeac4078d fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xf8dfe983 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x02b81501 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x148b9a93 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x53d6e976 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x593a7578 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5fd96a79 devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6104d59d fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7a743dc5 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8fa497e2 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa47804e2 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa9e45262 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb15bc2a5 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb4bd005d fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd10eb5c4 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x1aeee702 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3bcc5028 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x842a29cf fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8a59d3bc fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xcb87c9ab fpga_region_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x09a9ccf0 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x382203f8 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x39a7d078 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xac8f525b gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xf2a0bd16 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0c1b2958 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0f7fdfa6 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x5b1325fd gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6a46b8bd gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x6eb0e904 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x85fef70b __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd38316e0 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x176c2305 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x21ea289b analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3cbcbcd9 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 0x6f57647b analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x72398427 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc2e36d64 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xea1cc828 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xeebc4817 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x9f055a5a drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0419f983 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2e5289fe drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x318dfca7 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3e383036 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x68c78448 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71c48bee drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xaa1670a4 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad764710 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 0xaf294a0c drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb35179ab drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc03da92 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd05e2d5a drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf6081a15 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x112d441f drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x91ba9931 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x9862815d drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa51cdef0 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa947efdf drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xae0b22fd drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd0573261 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd730bf00 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd9a9f026 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe56d6053 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf4999b54 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf9407fbd drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x06626e06 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x10561b7b drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x5cbe07d5 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x61500b60 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x6b915e65 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x73e28944 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x7c44bbfe drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8787eb7b drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa9b80232 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xde5772b4 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x2e1c4c57 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x334c21a6 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x469e9c2f drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x712c50b8 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7dc5346e drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8458ee8f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xafd98cea drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc8f84467 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2f53b61d ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd049d3a3 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xd0b914c2 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x010a9c72 __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01b0ef87 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x01c1ef14 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0cb21ace __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10d1b03e __SCT__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x13a912a2 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x165f8c6d gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2a1f8c83 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2c1144c0 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2f0f6828 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b731ce6 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3f7d3820 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4247f379 __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x451dadb6 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x47442a09 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x4dffbd40 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x50aea173 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x56e76c31 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x608a2e78 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x611a4918 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x627a3de8 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x63c1eae0 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65e3721b __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75cb3f2b gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78ed22f5 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7bc55b13 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x85004b1e __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86d1bc46 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94958f93 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9a14d190 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f040e58 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f097cc3 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa2a7e41b __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8227c3c __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa8c0b8d7 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabf6eecb gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xadd7926d __SCT__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae557b53 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xae877457 __SCT__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xafb5dddd gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb991cb50 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbe93d208 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc0a6f706 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc3df3665 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc68e6240 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcc44a9dc gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xce1bbbe3 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd416a389 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd421c135 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4e1f859 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd6b058c2 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdb5e9984 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xde8f5e88 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe335abdc gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed16410e gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xef5c8aef __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf32d331f gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf87b3c84 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/hid/hid 0x027b6cae hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04551cf4 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09eea9ae hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10df1f94 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26aefca3 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27445b16 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c299734 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c5840bf hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ddd2c7d hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2df9d1bb hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2e3c7ff6 hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36bd5a1b hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x38fa8360 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dee543c hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e2bb41b hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4927944e hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e7202bf hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x544caffc hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54624f75 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x605d2d28 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64f2c55e hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x678b4cd7 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x69004ea2 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x723a1258 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8eba6320 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x927c5ebd __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x977b38bf hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa19e0553 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa375a2ea hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4033936 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9165f0a hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9dc3db4 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaed5d199 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba8d8fe6 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0f0a83e hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc230c4ba hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3398030 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdcff57fa hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd4ea695 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdf032e49 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe512600e hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8371c97 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec417ff5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xed5a2e9d hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xefd2e948 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf1460b68 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8adf093 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc198bd9 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfefc085f hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x4d1812a6 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x66086a5f roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7520c58a roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb5a37b6f roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb792f2d1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcf99f3a3 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd5e9f339 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d81c1c8 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x85470185 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa72e09f5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbf03c348 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc4b94801 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xceb98f5c sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd5c867f5 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe467e2e6 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xec4f7535 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xeba3ad36 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xf1fcdb86 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x461769bd i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x6b7251c3 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7f1e6405 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x968e7ff0 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xa7b22f1b i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xe9a563a6 ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x1a9c9262 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x872a498d surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xd5e6b79b surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x7fc1ec47 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x56b56657 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb7871cb1 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x12899675 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c1e9a9a hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x328925b7 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4333d5cd hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4f2ee6c1 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6729f6ec hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x70aa0e0d hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d8475ac hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7d938a4a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x916483a7 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9e572c44 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9388efa hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe7526e98 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed76905f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0e8d3f1 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf532c7cf hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfd37d98f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x01866228 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x084e089c vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1d7ec463 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x27a42aab vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2be03eaa vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2fb2e4fe 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 0x41af7f0c vmbus_teardown_gpadl +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 0x579d5730 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x58017358 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e342fc6 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x74c8c13a vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7baada13 vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x817d0982 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88cad39a vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c192942 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8d4eb143 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9409f40a __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x95a3ff33 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9964bb98 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa32002f8 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa5e2a93d vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8868522 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb10fecad hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb3724025 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb53da3ab __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc0dfaf78 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xda80d03a vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf9388ef4 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xff0caf23 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x108f1941 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x911d2838 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 0xe5169919 ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x022dbb62 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x09229c58 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x75e7957a nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xa560f84f nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xc4fb62f3 nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xfe34a418 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0e423972 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x320d87ed intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x447d6a65 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4b9a4e91 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5b22cf41 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x7321bbaa intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x94728a51 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe1d1efe4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf41dabce intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x15e8170e intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x49aba3a9 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xd760066a intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x064c517e stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x077d86d1 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0ddc63dd stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x547579b5 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x583c3ff2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd3dc916b stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf3d450d9 to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfa8fb90f stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfe9e6489 stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x06cc8441 amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0eb18c62 amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x30b29aa6 amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x34f99991 amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x35a14497 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xa0c01939 amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd6f3a8f2 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x6002b977 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x3af7aa11 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0c72ac22 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x41c4e4a3 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5f4197fa i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7bc6fe34 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7bd65751 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d24099b i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0400c47e i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x06a55610 i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x21cb63bb i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x247c0655 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3281a7f9 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x33fbf234 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x36bb1a59 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x42bce12d i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4512ca91 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a81a235 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x59c6e6e1 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5e48cbcc i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x63b7f9dd i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6553021a i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x683f33cd i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x68f7331c i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7ce1042a i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x88c717b1 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8c73f89b i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb6714dcc dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcca99894 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe02aaa97 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe715cb52 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe8485581 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf398aa19 i3c_master_unregister +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 0x9a1e2779 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 0xad8244b9 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdaf8b074 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1168680a iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x33a2fee7 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x39fcdc45 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x536209d0 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5d54af23 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x75d9d43b iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x7a9a7bb2 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x88a0a3f9 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x91f52d95 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa1bf0f55 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb52ae58e iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xde29c659 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x3f9480c3 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 0xbf358fa9 iio_hw_consumer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xd33843b7 devm_iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0xe728fb43 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-triggered-buffer 0xbc050181 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x0de480b3 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x4f20f630 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x153c0024 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x42e42d56 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x5d2e43b3 cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x65fa7a20 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7ab07252 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x827c3629 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x93ec8982 cros_ec_sensors_core_register +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 0xbc64de0f cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xc7c28a30 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xcc6fdada cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xfaa61a0f cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x1940c469 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xa48b1bf9 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdfc3bb9d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x7b1f7536 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xa53c7499 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xfc554e5a fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0x8016ef68 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x50f372b5 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x6335aa07 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x89f44c6a inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xc494b3be inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x69eae387 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x868e5231 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x003f2dc5 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01cd8313 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0691f9ff iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0a9c024e __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10484352 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1837beda iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1aa13377 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1aa7c4d8 iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1da38e70 devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dae28fd iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2329af6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x25a052f8 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2b04b60d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x305cb82c iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3b820047 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41dc568c iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44df09c3 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4874dc35 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x530e0e4e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5e7d649a iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x618dbf87 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x63fdb749 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6550b99b iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x656e03b5 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x674861a7 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6bf7b07f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6fa9b486 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x70e572c1 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79fb41c1 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7b9312a4 devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8227d135 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8243927d iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84e98374 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8dcb2fb8 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f136fab devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x91f6914b iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a5b6729 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa0224b3b iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa4546bb2 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa7fb0597 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa88e3912 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xac70eeeb iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacf77412 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3d225d6 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb62bb386 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6f8e4a8 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7fe25d8 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdfa56fba iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1c3e708 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf509ce79 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf7298981 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0c740b43 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4238bf18 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4322e5c5 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x60feeab1 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x69b7629d rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x6e8376a8 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9d4a0ba0 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xac9f5314 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xafe32855 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcfcc2ea8 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xd2f3fb12 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf61c0b7f rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xafae6072 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xb8ebea40 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe2ca296a adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x169d6e80 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2a47f7c7 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35d45ee8 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4bd43377 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5a766edb rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x808abe83 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x849c34dd rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x8ce90b5b rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd440b50b rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd833cc98 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdc914378 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe3160062 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xfb6e2aac rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb3038ad6 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc07f4736 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd479d927 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x07e3e8d1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xd851aaf9 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa27227fb cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xf19bc247 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x25021df6 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x640384aa tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcd2b4c63 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd044eb47 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2ad7e66f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3769fb35 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5df1a8cb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6c3a83e0 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x87ae7cda wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9d2ee4f5 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa0e50899 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc03ed3d0 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcaf5d8a7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd60cf8f4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe67de6f1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf64c49ad wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x012998d4 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1e7e9c28 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3967f602 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x46dfc296 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa5a4bdeb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaf67a7e3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb01c1c27 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xba68f136 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xed5a6355 ipack_get_device +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0dff56cf led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2ae38cd4 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3756b978 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x55ea6d85 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x5c08657c devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6958562b led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x77ef37b8 led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc45bcd4b devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x301e63e0 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x54a07686 led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8a5c18a1 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8e52b41d devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xe56359f5 led_classdev_multicolor_register_ext +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 0x023f02b8 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x05c02de9 __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x07d85a13 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08042822 __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x08358a63 __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d2d617f __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x136424a6 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13744f7d __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1455134d __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x153f47e3 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x169e253e __traceiter_bcache_invalidate +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 0x1fa2a28c __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21486874 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2233fc36 __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x23f08bda __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2630f45e __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x27c8e87d __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x287090dc __SCT__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28dd60f4 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x32b1a849 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x347c036d __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x35b245c2 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x37ebfaf6 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3c77e234 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3cae492f __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x429e6dcb __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4314b582 __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x45da888b __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48071804 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x48792621 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x490c657a __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x491a646b __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x59d8eefa __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5e4937c4 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5f336433 __traceiter_bcache_bypass_congested +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 0x6540692f __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d16d9d2 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x70c53d44 __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x76fd505f __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7dc20797 __tracepoint_bcache_btree_node_alloc +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 0x81c699f5 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x88eb83d3 __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f404818 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9129dd23 __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x938e98fc __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x94bead0f __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97c226a0 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97fb0c9e __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9bfec060 __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9c5589c7 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d43080a __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa24471ec __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xabc4d8cd __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaed073db __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf7dc363 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1457733 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb930d0b9 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xba85578b __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbaed5ce8 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc1871608 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4b1e173 __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc9b78b45 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcd744685 __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2f32f6b __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd2fe691a __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd54aa7f2 __tracepoint_bcache_bypass_congested +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 0xd9969ab7 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda95d358 __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc0cb71a __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde29cfc5 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xde2f0b9b __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdf879aa0 __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe0ad0927 __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe1a09539 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe2190ce7 __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe54f6e44 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe955956f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xead52862 __tracepoint_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 0xecdcc1dd __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xed2ca30b __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xee7b8402 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef379675 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xef62bd3c __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf505e964 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf57f81ae __SCT__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf6f0da53 __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf73e94d8 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf7a5edc7 __SCT__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfadcccad __traceiter_bcache_btree_node_alloc +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 0x04c627b1 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x36f6229b dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x39f65d9b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x40d75be4 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x42c0c362 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x57ee7745 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5d7c50c9 dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5e90cccb dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62307abc dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x64ca3f8a 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 0x8e652d9d dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8fb8d777 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9dd32a3d dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9de9c214 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa573034d dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd94730e7 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2fa513b dm_cell_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 0x55b37891 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 0x42664bdb dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8d71dd47 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 0xb8844849 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdcaffb26 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 0x09161f2e dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x27df79a7 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 0x4a4a5f22 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x930c76d6 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 0xbc62e6cb dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe0039f4c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +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 0x20c84409 dm_block_manager_create +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 0x0097a71b cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1cd6dc33 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x1e2385d0 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2791c97f cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x3483fbaa cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6a42e19f cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6ce4f8ef cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7160d503 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x81d3a3b2 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9579b5b7 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9e52da22 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaa6e72d3 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaade7f9f cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbae56c14 cec_s_log_addrs +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 0xc23e9617 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdc2d706f cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe6266e8e cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe72ad64c cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe870701e cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xe9082382 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xee1199d8 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf71ce462 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d5ad46a saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1ea5d8f7 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4490d352 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x68b55b15 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90a5786d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa97affa0 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xce0bffcc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe5ca8502 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf0f78481 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfedab390 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x43c3708d saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x753b3163 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xab293c6e saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcbf621e1 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd72c27a7 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xefdfee76 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf586d9a9 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0a26f273 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1008482c smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x29889b5e 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 0x3f5732c2 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x42e3b3f2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4aa8c9c9 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4cb69002 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa368b186 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb78942a4 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb9d71b2f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc1bc6bbb smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc399b166 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd8ef485a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xecfebfb3 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4e18947 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfa831661 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfea15b9f sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x517e7ccd tpg_fill_plane_buffer +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6026aaf0 tpg_log_status +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x6960e899 tpg_s_crop_compose +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x756516e7 tpg_s_fourcc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x7a5d8c0b tpg_update_mv_step +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x86b4ddf7 tpg_reset_source +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x975a1e29 tpg_g_interleaved_plane +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xaa5503d9 tpg_set_font +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xb40fae23 tpg_g_color_order +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6110b6e tpg_free +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xc6808be7 tpg_calc_text_basep +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xce8159bb tpg_pattern_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf4aef3a4 tpg_gen_text +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0xf65c5e46 tpg_fillbuffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x08198f42 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0fce4f08 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x132da5d0 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x24c148d0 vb2_core_qbuf +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 0x2bfd7452 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2dabf550 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3dbffb0b vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4293ca4d __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4357fb13 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x43c2065f __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4bcc09f1 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4d67ec46 vb2_core_prepare_buf +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 0x5044cb64 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x52624233 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6b4b9f1c vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6c473d96 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6e0b5bb8 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7f7b9117 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fde70b3 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d8d06ae vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8dd4fceb vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9955cfd0 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b6d1157 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9f581a30 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa133d8f1 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xad821e4b vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbc7879ff __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf1c5bfa vb2_mmap +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 0xd28a08d4 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xde37a2c9 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe516a8ba vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe6354917 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xead0a3e8 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec7b4cc6 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xefccd3a3 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf9bdb689 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfae18a01 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x0395247e vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x67aa00fc vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x76fd03e7 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x0864e5e6 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x00d5e340 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x08108757 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15b423c9 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1cd801e8 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x310a8309 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x339e4f4f vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3eff9842 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x417769eb vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4c08c755 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4fd2acdc vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5415de45 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x58205334 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5b61f8d8 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x64ac67f6 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x743d9d8b vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x77b03c9f vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79f98684 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7fe4e1bc vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x82754e5d vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x843233f8 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x883945d6 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9599d1ac vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x95bcc9a0 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xaac2132c vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xab832bd0 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbafc42ce vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbb758280 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd178200 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xcb12dc10 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbde84fe _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdc72869c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf003a3ad vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf13cae3c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf1d4a776 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x47c5f0e5 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xa0bcbc1f dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xcb54f20b dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xdb5ea132 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x044afd1f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6074acac cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x1450a88b gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xa92ca7da mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x97e88ce2 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x770e12c6 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xb6f054c1 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xd5b8e564 aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xdb0c1ddd ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x28050b06 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x390c0b76 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x44729700 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x500a2455 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x87be2cc7 max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8a2ffb9f max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x909c95bd max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x91931e62 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x9cd75d2a max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xb9164397 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc864c838 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xda6e0509 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xe857cb7e max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1059f270 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x13a5a8a2 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x157fe4b4 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x179d151b media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x18e06354 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1ab08b4e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1e1a451a media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1fd470f2 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x31044075 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x35136f1f __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x369f6b8a media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x37763346 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45c916a1 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4b3389c0 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4c5160b3 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4d99c3f6 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4f49f080 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x60fe3c0f media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64d0e3bf media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x66931c04 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6d48bb9f media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7646927c media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79f2a34e media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7b92e5be media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81c69a63 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x88452f3c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c790fbe media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fd21d8f media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9189b509 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9218ea40 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x96d8050b media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9a45742c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9e86ffb2 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa04445bb media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa08f3f50 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa1fa1fbd media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb37bce0e media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbcc16da4 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc81991f9 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xccef7c95 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4943cc2 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xda66d092 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc5f13f4 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdc9265e1 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe0957ca1 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0a9f7f4 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf5e3e1ce media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xc7781d2f cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0c6db4d5 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0fc682d3 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13e07f7a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x159c9a96 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3356076e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3e7d74d5 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4bb69596 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5586c51d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x609084ce mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64a431a0 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6534de59 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x984f1546 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb25619c3 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca466287 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd106143 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2faf94a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe488072f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedc14af1 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf57dd13c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x02b1ca2b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x39e2aa7d saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x735cc870 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7a86ff08 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x82e9d054 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x962055af saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96568b50 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa34aae41 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa69eb7cb saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa7552f71 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7f98c8e saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc2132eb3 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc49fa6ff saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd8e592cb saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe94e1df7 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed184cd5 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5e77a30 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf94e8e20 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa3e94ec saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x00ba1bc1 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x08ca41c5 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0d9358be 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 0x8ab8a404 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xafed56be ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbbb9d422 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xbf48f2f2 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x17216aee mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x9bfb48c2 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc7e01f5e mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xd50c4e57 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xef7d2f9b mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x71a499b5 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7ee1e4f2 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x4df69e26 si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x5c32388b si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb6e67b11 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb735abd9 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe716abf0 si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0a5a293f rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19ec78a9 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b248473 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f0542a0 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2e98255b ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4a299c16 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4ce1581d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51d181c1 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a47cfb9 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x65db4006 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x67c89342 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x79b90fb2 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9721b2d9 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c139dd9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c4d5f11 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xda966d12 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0515d78 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbcf4c1c lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x52d5ac28 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x48edacd8 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xefeebc11 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x9ab3bf9b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x332e87b3 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x295908c5 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x77c7284c tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdcbabf5b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x8c66e59c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xaa87e353 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xce32e115 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6cf2b8d5 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd6f93f23 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x7805888a simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x083e212d cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1ba4529f cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1cf88487 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x43c53ab9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4c3dcb6f cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5118b79e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x527770e6 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7087582d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7631ff72 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7dd481cf cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x866c686b cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d4935ce cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb37ed4d8 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc2c4a7d8 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5558457 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd1a26a78 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdcd1c76a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdddaf4f5 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde329330 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xead738fc cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x1c510cb1 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x15bd5357 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0f411d35 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x136df51f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x21815f3d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x306aee7c em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x59973e6c em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x646b29a8 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a0edc85 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa75724c7 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaf3e1405 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb1e937aa em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb7479d09 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb75d53df em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb80d615f em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb95f3588 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbb8fb454 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc120fbe3 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd32d751b em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe6996d44 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4851e36d tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4d3d8b9e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6b769691 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd70f4de6 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4def831b __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x4e573cce __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5ef303f2 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xa4bfe094 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xe4158b53 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x05e7cdef v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x23ec8a2e v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xa5de7b09 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x14b56a86 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4386034b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x44d9dd98 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 0x80e563f1 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x88d1103a v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ae355f5 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x93d7f72e v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc47296c0 v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xe9cebbc5 v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfaaa27f6 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01850138 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02a74532 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x09d24be8 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d2da582 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x135d481c v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14940007 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x18b9345a v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x220cfe08 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2892b68d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3ac661a9 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bfda8a0 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x407b0b26 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x40fdc4b9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5286a163 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5f96c89d v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6097d18e v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6547ca67 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7bfdb594 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x88ced000 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a92e9db v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x952cb1f7 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b2934c2 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b2d58c5 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9ef96d49 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa1e19b7a v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0b16d69 v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb2482ebb v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb5e88c97 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba27a50c v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbafdfc30 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0b1b807 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc1efe091 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc93b3fba v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc966274b v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbcb6d86 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd93d8df4 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf412368 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdf85569f v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe5ebccee v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebf0501c v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xebf1d829 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf063d205 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0fd1950 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfeb1e820 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0048b58e videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0aea48ff videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12ffc68b videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x17e4ca62 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1915864d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x19355cf8 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1fc450d9 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3430ff7b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x37995d63 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x41f75343 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4aac0943 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x650af18f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70fad48f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x731fde05 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77a31bb6 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7cf0d6ae videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x81c663ab videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9caf5b47 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e6799f1 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb8a7d358 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc953d8dd videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe70a4938 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe730b8fc videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb137c46 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2ce9e99c 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 0x7897250e videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa750ce85 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdac0487c videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2456ff21 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe855bd04 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xee0cb3fc videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0692594d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x094b8bf9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0e54e406 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f47220b v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x169b221a v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18b3fd9b v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2032aae2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x221e0dcc v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x236a84f8 __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24125267 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x27e3a3d0 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ac4c210 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3deb6b5d __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4066a5b1 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4192afb2 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x470bb0a1 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x492cb37d __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4c42d7ad v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ee044c8 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55231d9f v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5628c1cb __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57040313 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5c7b2a15 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ccf3c6f __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e18dbe6 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x62b8af25 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x63c6a156 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6520c186 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x654b5cd5 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x66c4abeb v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67a1af18 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b7ff734 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cd9fdfe v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6d3d6bc6 __SCT__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e47550b v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71d94a29 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x744603ea v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c058742 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c5f3e1a v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8e20019d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9482c821 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x960ca1fb v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x975a80c4 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x99508ff6 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x995976a3 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9dd6a4b4 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f6b8b53 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa13b7016 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa381ce74 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa69b784b v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa9baa79d v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaaf9560e v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb0b4becb __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb2d65f1f v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb587e2a2 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7d266ab v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2d874f9 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc31ed577 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3e98a5d __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf149882 __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd10ecd63 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd774970d v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdeb9a728 __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4bc8435 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4c9cb42 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe6bba30b __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe84fdb31 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xef287156 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2e1ea6d v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf41b87e1 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x32866b2a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xcdb6bf26 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd19ab125 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x01943d1f wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x07b06089 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2d4aeed9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2f871ff9 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2fcd4ebe arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x374662fb arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x37cce862 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x42acfc53 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4e9da0cc arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5961d260 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x670940ca arizona_pm_ops +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 0xbfffa86e wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xca456ae3 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd4847c6c cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd9de612c arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xed35bfd6 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf2297dab wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xfcc76922 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x19dc4ee3 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xfc717380 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19013754 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x626f61a6 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x77b92775 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97e70664 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xce45d523 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd2a115cb da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdbea9496 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x086b5821 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x1ce8d202 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x28a2d35f intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x38c2d24c intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x84b9847c intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x0f645631 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x1d904a30 intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x254c58a4 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2e60e80a kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2f7c18e0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2fc7bd49 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7b0a88ac kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2a31f3c kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xebe64376 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xee63caa6 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf9f7e476 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x3e875549 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x66a462be lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xd2a46d79 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x05bf53e9 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2aa65400 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4e62fe56 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5388aa5d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x839f8653 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb2a19ee3 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc387472e lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0865d8a8 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x41d123d6 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9d17853d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0c2f71db cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x22549850 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3a15dde7 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3a1801a7 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7920c0eb cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x792d1cab cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8191f15f cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x819c2d1f cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8a83976d cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x994486ef cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x99495aaf cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9b6acb48 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9e425849 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaec59d12 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xaec84152 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3e36a27 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb3eeb667 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2a4ec53 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc2a93013 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcad74135 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd4cb7289 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda719be3 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xda7c47a3 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedf0801e cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xedfd5c5e cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0d6772b cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf0dbab6b cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xfac094dc cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x392a4db3 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3e176c83 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6ca2d2cb mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7ead27a3 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xabd16923 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbc6a8af9 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4d401856 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x60891b91 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x67516d60 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6b738417 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d6dcdc8 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x707349ef pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9be903e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb2fc833b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf6ae913 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc3b9ceb5 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcfa2be16 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x13084d5e pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x26561710 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x194a9555 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x412ad60f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9538ac62 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcd23d401 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd567d24d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xddf2176d 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 0x037047c0 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x049f9cc0 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0741b838 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x22bea606 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x316dcf48 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34390f4d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b6687aa si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ed61287 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45317acf si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f152747 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60f413f2 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x619ab1a9 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x642733fb si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x71b90405 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x75a48b43 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x864a9343 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b6cb012 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e109847 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91dcaa3e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9676e1f4 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ce62b2c si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cffa763 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9f72c19b si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa1f29d7f si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadb12aec si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadf662a2 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc4a3ab65 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xceb1aee7 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3feb2ed si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe3669e43 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe430b3fc si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe48a575b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe59d0ae8 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff2d898d si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3856ced4 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9618b76e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xed51b7eb sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xee3d908e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf2b5b67c sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x225008b4 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbaa33fb4 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe3914f72 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfa736003 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa4ec8ac1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x11d2ee3e alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x1fa4b229 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x57018464 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8129d302 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x944eaf5f alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xad808a69 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xb7ebb95b alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x05ba4127 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0d6c1baf rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x28f7459c rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2b782f22 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3497c391 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x35610945 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x398d92b4 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x3d9c268a rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x65ebe12c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x688879aa rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x74d6d95c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x7560bc9b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x798ac881 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa0fe3db8 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa838a855 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbd2b0a37 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd0401161 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd6760166 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd8cda291 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xdb07706d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe3a7d473 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe87d0600 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xed7ba1a9 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfd4e9738 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x03f6b886 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x277c6963 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x358c8ac9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x37a523d7 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x440ab6e5 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x589373e3 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x95b72a6b rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9f4213a3 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb53636d0 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc22e3712 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe65a090c rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb1b5c78 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfe79558e rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3a049699 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x46ee7661 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x90c3314b cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9b335e09 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 0x0b0f0ecc enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x1ec98984 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3b5b700a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x76716fe8 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa81f7d13 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcb8aef65 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd4ff8276 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdfb30261 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17401042 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x47f6ec1f lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4dc77053 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7c71fafc lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x80e9f096 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xad312358 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc553ac06 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd7db8cc9 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0091fa6a mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0e0b3380 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x11f7735e mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x16c16f84 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x173d69f7 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x25473e0d __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x307422e7 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31e084d6 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33db3abc mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3833af41 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3a3e9e51 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3bfc9f6c mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c2799ab mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x80f23b9c mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90f66ef2 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa038880f mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa38014cc mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb34f7ada mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb5bf880 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbb794945 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd5444f9 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd5471fc mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc2b37943 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc5949600 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc64395ed mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc94fedac mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcd62a897 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcfdb9d6c mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xefd1c970 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf42de6e6 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf89cc693 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa5f4534 mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfa6f1581 mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfc10a9e8 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x922c6ae5 mei_me_irq_quick_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xb99a6270 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xcb430034 mei_me_get_cfg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x421b9e26 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 0x91401317 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc3503d7f st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x10168f82 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4a3fc47b uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xd87fc7fe uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x01ac22cd vmci_qpair_enquev +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 0x6099a7f2 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x75fe065a vmci_send_datagram +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x787f0fe8 vmci_register_vsock_callback +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x7c74d7a6 vmci_qpair_consume_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0xdf7a641a vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x037e4db3 sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x04a48a55 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11c577b8 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x12bb4331 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1fdfe636 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x209a307f sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fade853 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x30c3c3dd sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x358dccd9 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47043f4b sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x512915c4 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fcc643a sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6bb45e06 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x72095a1e sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x730a86fb sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76c097ee sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77f6f838 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7fc3fc28 sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8460372f sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x878c03b7 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x93233a85 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x98d30ee8 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9d066beb sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa06e3354 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa48a6ae0 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa67b2466 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaa5a5292 __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xae12e384 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb274de17 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb278d363 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb298ec3f sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4702fad sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8eccbc2 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcf4408d3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd46a90b4 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2d20a69 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2ed1a60 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeaca883c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9285620 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfadb5fb1 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe8a3031 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfe98ffba sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2766c4e2 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2ef38b5d sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x45e30f25 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x84757296 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xafc57c62 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc18c6b98 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc6dfb118 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xec56fe5b sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xede7b9d7 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11c88940 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x21e2df9a most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x274dbb7e most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4d72f575 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4dc8b0fb most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7c097055 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7d24cf8b most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7db4676b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa1d0cf63 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa6b0bbca channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xbabe6bb4 most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xc2a7267b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcea54c3a most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfb67ef72 most_deregister_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2499d180 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd987f416 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe6aed1fe cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x35eaa964 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb8412d32 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc61366e2 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x57d40065 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3f7bbcc7 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8efff581 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x99b83603 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xb69329ad hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xf1fa7274 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09ee51ab mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0baa6af0 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e1a7c57 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1161aa6f mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x160396b4 mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ac8d789 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f0f67a1 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25f30e28 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x264b478c mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2802d227 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e21cc51 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x315394ed __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34c9557d mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x360f62a9 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x426e6753 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44d186a7 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45852133 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x48df0dd8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55d99287 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ae7bca6 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5d42d2ef mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e578ea8 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5eb9fad0 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67a52480 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b369168 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c9abf60 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71e075f1 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x721ffe05 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7a47b303 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b93da95 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7e5299a0 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x858329af mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x882885c6 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b3ce616 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8c40ecb3 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e39f6de mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92564538 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98f052d1 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac55ccc3 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaeac3818 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb23939b0 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7e2d869 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc784f136 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd7b0073 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2d8574c mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd5bb9ad8 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd61721fe mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7cf1b00 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7f3053d mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2ed6aa3 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb8f8358 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf77d3d9b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfab61063 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x08674f58 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa47067d5 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbd2184cf mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd03243fe register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xef01f6bb deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x06ea3e92 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e25d9a4 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0e4677a4 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x1499f4d4 nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x41972b84 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x45806120 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4a16cba2 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x54446cc1 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5ad7ddfa nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5b6c57d4 nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7a807223 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8aec47f2 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8b535b85 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8fe0d823 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9fea6078 nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa05d6776 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa429f8fe nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb9d106d8 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc2ab6b78 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc46a537c nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc60b53f5 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc901602b nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd5a96ee3 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf6d8d637 nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xf6fdc206 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xff078ec8 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x29683b78 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xa99c27a2 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x89590447 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0511ea2b nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x097549c7 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x144729c4 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x27eadd48 nand_read_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 0x48c25023 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x50b97005 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x512d5012 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 0x5666d41a nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x58feaa17 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x637866b8 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x65947d32 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7344aa1c nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x779941b1 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x84992d6e nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8807464f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x90248bb4 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x930e6439 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9d4506a8 nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa7188826 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba5504df nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcea07dc2 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd19f88e2 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 0xdb68060b nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe3eacaf6 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xc7d91f9b sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x94adbf6d spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xc569cee0 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d89c94c ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1af4815b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39fae057 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x409c0e26 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x477bd0ed ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4b21fb18 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x520dc77c ubi_leb_read_sg +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 0x8939b572 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa38a575e ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3b82ef3 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc52a9eb6 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe3f69f63 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf812e311 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe4e2e77 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x07c1ddaf mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x241a9fdd devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2a7f4fd7 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x2fe7ec41 devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x517614c1 devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x59027e72 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x5df3c1d8 mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x66e85c4b mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6f54beca mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b3c21d9 mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x9b37ae47 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb12775c4 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xc0df9bd6 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xf0420845 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x9af2219e arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc273816e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0f7a730a free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1e7ba2e3 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x569f7740 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7bf16ac5 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa5e19a94 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe990a76f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x362b98cb register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7d108668 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe157a61c alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeec4ddf5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x049c06db can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x07371d5b register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x09b6025c can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x172ef658 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x374e3349 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x40b58a2a can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4767cdcc safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4db80529 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6416f413 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x682931c0 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6b645339 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x710296c8 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x72307389 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7603af76 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x76820a86 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x82c831a4 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x88182cb0 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x91668dbd alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9784b855 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa8f92749 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb290319e can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb2dcc911 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb3787450 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb498ec4d can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xca6eea7e can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd81d1530 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd92972b5 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xea7580bb can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfb11a4c8 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x491222e0 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x5a4aba33 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x77b1e762 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7c860a6b m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x7f707264 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x84f0142b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xcf22599e m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf0e94217 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9ab5e6ff register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xddc69072 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe5907f8d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8cc4a1d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xdf11fa1a lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0e03b1e5 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x198817bc ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2696c210 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x28e381ff ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2ae472c0 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2b54a01d ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x33254cf0 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3e45a347 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4d2781b5 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4e30b5e1 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x50cc885c ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x63d68318 ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x67ed4734 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6840635a ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x722b58e8 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xac1e4dec ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xae512032 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb0689330 ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb5fdeb25 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc4ed175 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbc85345c ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc2f0e7fd ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xca626129 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe11103b9 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe9c2ad1f ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xc0b59ca8 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1207df77 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x28c1b887 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x31780b56 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x46169987 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x55a4ce24 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5cbd51aa rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6b14247c rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6fa98417 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8a257e55 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xcd305493 rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe5781976 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xfebec7e7 rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x178ad334 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x22be9e7f fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x330d552c fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x48293dff fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x54d241c9 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x74e11586 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x91ea988c fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xae389a0a fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc18acb20 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc979fd51 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdb39d661 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x3bf2705b i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x82d7e789 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1de784fc ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x1e5f5109 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x6d760a0d ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x9c1b1c6a ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xaf953548 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x024725cc mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05c7e36d mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0619e5cb mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a2154fb mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b9682a8 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0ba02f mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11f1e0dc mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14553b3b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17b59aeb mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1823c4e7 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x190602e4 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1a99b6 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c3030f1 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d8cc033 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eda1cb1 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4efc83 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24c18dc0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x260d101d mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26e7f2bc mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28177c13 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3218a7 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a473910 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad3c6bc mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b906d52 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bca9de6 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a85c0d __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32f310c7 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3402b1d8 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34e352fc mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f220a7 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a7fb2f1 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dc628d1 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f1478a7 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e4065e mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41a1e07e mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ff95f0 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4421eba5 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44db7d15 mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4736d9c6 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4923cea9 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ec16bbe mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ef6ca5c mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fc3a584 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51924500 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51cc091f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5318fe64 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b27e265 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5da36142 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63e6eb1f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c08fac mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x689a3248 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x692db92c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a8d959a mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fac6c24 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74058750 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77d39de6 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ac5d376 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e2cfbd0 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81064106 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82ce77f2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86dd4fb6 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x881c53db mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x882da679 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91dd3d48 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x954adbb5 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956e2311 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x956f2e53 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x958275fe mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9682aadd mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x985072b8 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x999bd488 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ae5cb6b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba30d24 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dc25b46 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9df55c65 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e4d3c26 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f935872 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0516c35 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa34f991f mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa661e3a3 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa917228 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad81d362 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1e727dd mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3975bc8 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7e05f5b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb934fd3f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc274b5d mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc26057 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe64798e mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfe3e9c2 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3a142c4 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61a3e6d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc648b180 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e0d972 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb439b31 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf14ef30 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf51f482 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1d60c84 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd81488ed mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8c483ce mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcfa0c0f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd57d435 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf4ceb82 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1bb5c6f mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2dd1220 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31e4630 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5675e53 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6b32e47 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea0e8caa mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbccab8 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecb348aa mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef663341 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf32247af mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7702418 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78a6112 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf919a861 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9af07bb mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa473fa6 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc5a9e32 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc7fd23 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfeb8d51e mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x000be847 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x015d579b mlx5_query_hca_vport_gid +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 0x0ae915cf mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f031de1 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x125c3eae mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15380e41 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15f76d16 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18d64945 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e504b8c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e719cd4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f35c2f0 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26d0ee5c mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28d2083d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a80fcd1 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d9c13d2 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37282806 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39694289 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d02b164 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4044aac1 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40a3a6db mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x411c5dad mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4145f7ef mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x462b2e05 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a5df8a3 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8d2db0 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538255b6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538a3902 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56a51084 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x595a254e mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69df5d48 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d6378f8 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75c212e9 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c931e39 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa5be7a mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8363007a mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8588d5e4 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b5ec1d1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9322646f mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x939f4e48 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x954021bf mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98a34156 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x998f096c mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa122d362 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa639bb24 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3e978c2 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb75e9671 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7adbe85 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9344d00 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba14c3b3 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbfe6873 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd13dc5c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4a64db8 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc601dd54 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc62dc56a mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcac7ae08 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae4c451 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0ae2100 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd17cfd21 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd32dd5b0 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda5a398a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbdbd18c mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfcd8b44 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe80c3b0e mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed71ca49 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee2d383d mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4d6f6f7 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf73bb567 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x5f09a08f ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x71cf7ef6 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xb99882da ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf1ac8f0c ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x6ba878fc 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 0x090f52fe ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x09f44ea3 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ac78ccc ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0c3c9d80 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x122409c0 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25656177 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3986e2c0 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x39de25a8 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3f25f9b8 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4f824d4b ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50671cd5 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dfd63d7 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fa073d0 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81200553 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x92a1d474 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x963e4225 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9eab0742 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1238d6d ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7f18293 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3cf2bbd __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5c53674 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcdbf3f96 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcde92911 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdbdacdc6 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5b910db ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe61c1b5a ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xedeb8d42 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xefaffbcd ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6f400b9 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfea41a8a ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0460f7a6 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1ae7dd0c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2d8db2a3 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x601e9207 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x7488b706 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x88219458 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-platform 0x08271f91 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3918f521 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x963d6d84 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbba078eb stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc5d6fc0e stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x007ec967 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x25614443 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x7766fde0 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xd52539ba w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0xf194bf14 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x6a268d81 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xaffc131c ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xba036d70 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xcec74959 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xed76d7f2 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0xde49030f macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x29f8fa54 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2b0c2fa8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcfcb136a macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf52006cc macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x8186e17d mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x62a30529 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xe88dd55f net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x064ff9e9 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x23feefdc xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x36e280d6 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x82bce66d xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xc69d2d93 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xcb794255 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0369b91b __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0862381a __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x145a72fe bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1b2a501e bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25546513 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2e9d3023 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f6b4ad7 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33314dbc bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44165c1a bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x471ed6b3 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4efc5478 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x55eda300 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d87b5c9 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76887d7a bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x821a3546 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b6f9bf2 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaca51710 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb1a8d92f bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbbdd6ed4 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbfed7f14 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc2693d41 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc8bedbc1 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc933d260 __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb6bacef bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd549bfc1 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd7662da9 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe1b4262d bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe6a3b621 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe96fa925 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xebd84867 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf96b26c7 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfbd07d89 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd13c84e bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfd28675e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0ddb5f76 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +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 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x35892517 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x49acf7cb phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x59e0695d phylink_speed_down +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x5d0c4dcc phylink_speed_up +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x62104126 phylink_ethtool_set_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x6fe483e2 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xa8fc45ee phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb3a0f870 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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xee41ab19 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xeffb4a7a phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3d08410 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x0c948d85 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x3330ec46 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x74629fb5 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x7f07331e tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x8bac2c06 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0x8f1e99f6 tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x9540a25d tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x9db2a870 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xc07a64c5 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4912b96e usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6d6a77f5 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x86f0b772 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8dddda29 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbf620401 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc0da4505 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xcc01daeb usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x067a6baf cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x17d11c05 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x25cd7ebc cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x30a5f27e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x424e8019 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c54bcbe cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x822332be cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8486e31c cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9a705483 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf56aa2c0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xfd69516a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0x97b971f6 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1f584f60 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x55eaad52 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x948f8410 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbe0f0909 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe3b8cae5 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf40aa845 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x002d6364 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08a31a5f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c1556c5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21243c81 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2614be29 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36ef2e9c usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38fdb08a usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b2913a5 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x41aae5b6 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4285d547 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44f45cfe usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4697ee81 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6dda5d80 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dd150af usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dfe7379 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87bf8a65 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x880b2763 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89372a8f usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8f70074c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x92bf3fdf usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d9176e1 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e1bfde5 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5c2ccbe usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad13d006 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xad8ea6d5 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc64079a8 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd08002f3 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc0ec9a3 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0574de4 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe222a8db usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8c9ce92 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe91504ff usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xec822601 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf72f9d50 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x6ab0b783 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa82eafd1 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xc12a642c vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xeac61bbb vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x749690b3 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x08bba2ed il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b9bc82c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33d75fa3 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6aa5ae7f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe8034e5b il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x02f1d55a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0d169b0f p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0fa416d1 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x2448d0b6 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4360bf9d p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x489fa854 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5f749df2 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xb7b4d27c p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xde4f6188 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0b7deb9b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x0bd58b1d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x1c19aee9 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2899dade lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3354896a lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3c4a1ecf lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x56816488 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x70777363 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8d9b08f6 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa76867e1 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb09db6cd lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcf08ed4a lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe31c9a4a __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe340e41d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xed99b66f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfbbcdab4 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x07a687a4 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x500376c8 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x63c4138e lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb1e089b6 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe50e8f98 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf77a467f lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf955efde lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xf9ee9f2b lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x117c7ba6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2c894984 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x484e5769 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4db28d1f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x56982ad2 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d1a0e1e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8bc4822b mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x93d9ed14 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9a2f8b08 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9aee188d mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa263dd63 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa4badd81 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xa6367f66 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xaa760de0 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb33add28 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6253bab mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xbb9d12af mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xc75e86ae mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdb60ff6f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe399e720 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe49ad697 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe5dac154 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf1c46ec2 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3d7a2c4 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x01adaec8 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0268c2c7 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d54e74f mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0f3aaff3 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x12ec0675 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x149fa7bb mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14ec1007 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15cb3772 mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1649c61f mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1c5237ca mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e9b00b2 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ec57b4f __mt76_worker_fn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2490a794 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2490c687 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x25980414 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27d63676 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a200779 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a89f5c0 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2ef2ab04 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30e72a0c mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30f748a8 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3743c60c mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3d620037 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40de74fc mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40fad8c6 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44822781 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x524f952f mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5459c3f9 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x55c48896 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x577d392a mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x58ec52e9 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59b260a1 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60069c0e __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x60781152 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6414b3d2 mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x648e128e mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66dad794 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x684cccc3 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x699cc512 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x69cf63b0 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b1b26cf mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6c8b5452 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d61b9e8 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d884074 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6e88b61c mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x73686135 __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7c5eb3ae mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7cd7f00f mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7fa9a187 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81893f98 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x899b0b2a mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89c92fcc mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8eb7572b mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x903a7e3b mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9474f689 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95535e93 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x977fdb68 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b36a248 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa2db9c12 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa3722a8d mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa4c7b782 __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb17627cd mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb34d3b7b mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb75c69e9 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb9ccc4ee mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbac0697f __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbdee91dc mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbf9345d8 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc4b6397a mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca59d5ad mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcc1ab994 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd62a310d mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd8a3084f mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd9d4fe46 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdbd703a6 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdc7bb0b3 mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdfa4decd __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe45628cb __SCT__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe5285ca1 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe99c9541 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeba69dc6 mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef87954c mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf3912c16 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfb747af2 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfdc24ea3 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x00cb7ab9 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x01a3074e mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0bc5adad mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e6981b8 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0f09723f mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x10332a43 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x169c977f mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1c0ddf27 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1cad1dd8 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d82c0a5 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2813069d mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x29203226 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2a189104 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2b4512bd mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b4fbec4 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46017386 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x494ae711 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c4c0931 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4fc2a4ec mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5522abc0 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5593f753 mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5821b024 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5828c121 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60334f16 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x63e8d255 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6cd97238 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6f8402b5 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78d2450a mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7de8df08 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7e04706c mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84ebe6c5 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86b08b01 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x86fad5fe mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x885a9c0a mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f621144 mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x908ca40c mt76_connac_wowlan_support +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x985fdaf6 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa16e9449 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa7f39b3b mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa896d478 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xadeb79e7 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf1083a2 mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb5126102 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbcb15c3b mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd7d4cc7 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbeae6b69 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9eb56f9 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcab08d32 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceafea41 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd16f1dbc mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9136335 mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd9699a3b mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe4e5c8fb mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8c7b185 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xea6d6fe0 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xebf117de mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6a26e70 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa3139b mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfaa78706 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfc749e06 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x034b0db8 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x07fee3db mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x263d5551 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2f15f63e mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x36ffba98 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x3b5f0181 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x427b1c42 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4e7c7d78 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5be64430 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x62ef5c55 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c47c803 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x84dac58c mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x92e7e059 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbe13a66b mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcd707ac3 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe0cd6933 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03798331 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x14b199d5 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x221d2df3 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3b64c3d4 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x571b249c ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6a456c9d mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x70935cd0 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x85dd0ec0 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8f70bb9d ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x99de441f mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9db24c6a mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa16e9424 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xc8049d17 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe49ace0a mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x05ec275f mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0f40a552 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x10cbe4b6 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x118a5f30 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x16b9333c mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1b9f3ec8 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1ce0d05f mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1fcf79d5 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2965d823 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2ccf102e __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5e0da368 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x65f0ce15 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b53edd2 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6e51e474 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8b2fe1e2 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c5217d2 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8ce455bf mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x91e1000e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa1f5626f mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa721396b mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb328a04b mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba18b6af mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbd8c5db3 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf59201a mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xddea8801 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe233fb9f mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe8dcc982 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfaf7ebdd mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0x1816cc7b mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x09f4aaea mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x1506ffca mt7663_usb_sdio_reg_map +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x62898a2b mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc9a18c67 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xddb1bb83 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x0d492a61 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x12ccd44e mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x4e2a0330 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x7ab16035 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x83c0d990 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbdfa10b2 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc35993f8 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00055b26 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x021a9a29 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x03335c47 mt76x02_reconfig_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 0x06045d51 mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0785cd17 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x07bf6a15 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x093017cc mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0acd3656 mt76x02_remove_interface +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 0x0f1691d3 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x10413449 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x14a7e4e5 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ca00ee7 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1e694178 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21732a0a mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2e2a42e8 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2fa9bc0c mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33ab26bf mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x34f62151 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x368a34fa mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x457845f3 mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c96cce2 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x516ef6c8 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x56d09c5d mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c9db077 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d4e9d0b mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6609beb3 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69645d50 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x69f02832 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6d2adc21 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6dbd0a1f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70577fa7 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75816334 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75f965b1 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x764393a3 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x81694ab5 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8adf807a mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8efb24d2 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92202e08 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x93834a4b mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9cf494ab mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa4ba8dcd mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa97abd41 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafeed534 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb32d76cf mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb896b667 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf731661 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc25ce65e mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcc35aa69 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd31cfe2 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd1a04c1a mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd97b9f35 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdba1f270 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdde176f9 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde14dbb0 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xde2c9c17 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdec4d196 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3e8acb0 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe74be50c mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9319312 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xeb8047de mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xec785cb5 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf07ba725 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf0e47c6e mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf15a61e9 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf2c5b49e mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf633aa3b mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x4c4818f3 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5e5de1f2 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7badf923 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7ffe932c mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc593a171 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xd2535628 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe7c2981f mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xf8d73a73 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f6b890a mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x11a28d35 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x141d1401 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x4dbe92ed mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5445382c mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x54a97fe3 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58b3764d mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5ff3b521 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6046532d mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x84da623c mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x91d7fd10 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x994e3e96 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9c41a042 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa8fa346f mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xce5972ad mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd3ff825a mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe324da4d mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe496dd9a mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xebb85e23 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf0a38890 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0621c224 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x169a5ded mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x16b18606 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2ae1ca5e mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x31be0709 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x38d5e6f2 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3dca0e42 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x42860e3c mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x62697af9 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x6573ba81 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x673d3697 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x72e43250 mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7b9aa984 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c82d23f mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x852b5644 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8a6da44a mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8f7bde62 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc1487117 mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc5be506a mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc7e8e5fe mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe4941038 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xebf2717a mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf4ccdc71 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfd13e819 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xffa32e2c mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x11e3c2c4 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3ba2605a wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x4728f931 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x6ae176b0 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xb7b45930 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe1dfa289 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfd51ea37 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x13238faf qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1c3f3157 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 0x3c40ffdb qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x6272ad2e qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x63729ec8 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x770d5de0 qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03d820a7 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0590d10f rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1495b0a0 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x16f1b35d rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1bad2c95 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x288914c1 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2df841e7 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x373a512a rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3c2b86dd rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x40b7deb6 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4188440c rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4f06c358 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x51110a0b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x60e05a12 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x62cf7b88 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x637cbf40 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x68ab4aec rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bc9ad55 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6bce68eb rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7359f427 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x73a8ac6b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7563bc98 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b3dbc2b rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89bf0121 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9054c4fe rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa5cf5888 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa781dce4 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa8a90af9 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb12559fd rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb1448593 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb3002a91 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb527fe31 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb875995b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1bfdcaa rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1f876ae rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb5ee1b1 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcd828a48 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcf785bb4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe49cc7af rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe981bf02 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed1b3e3e rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef51ee5b rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfa307864 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfb1feb30 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x00385f75 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0e340a76 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x0f827301 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 0x3b4f36a4 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 0x52d76dbd rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x73206d83 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x83c2c5a2 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x87052c4d rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x94967bae rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x99128292 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 0xa23fa056 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa6b02143 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdb5b2c77 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe64b36e3 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe9329d2b rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfaf76729 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0122fba1 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x017ebdce rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0e378ca5 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x152f8337 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1ad5c30a rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20c5c0e8 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x22aa547d rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24602df2 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2662cabc rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2c1e7708 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3b53cc61 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3e333b8d rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x43237e2c rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x44643b4f rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5326ca2e rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53f05cde rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x607521fd rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e330114 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e826958 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x79a8f968 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b6de416 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7d03c74f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x801e3002 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8021d4f3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8151f73d rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9118142b rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x923bc3c6 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x93ca5474 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94669d66 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9d3e0ef6 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa77bc267 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa96d966e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xae9b62a1 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb8bebc63 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xba6ba22f rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbad55fc9 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2abe239 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc2b65864 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcf32ee7e rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd75ad991 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2ac4218 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xea479e8a rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf06335b0 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf88c3c58 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfa55ae6b rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfbc01043 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc61301d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4517132b rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x51b4d382 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8f996628 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8fbc8f69 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xbef90954 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x020dc3cc rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x2b92222a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xe0f2a716 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1dbf298f rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x295f0894 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x59bd637a rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5ccfcd33 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x745573e7 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8d5ceb9d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x996e341b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa2bbcaea rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb7f62b4a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbe172979 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbec0d793 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc29b82bb rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd215b9cc rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe6bebf30 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xedd9060b rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf9be8fca rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c99db61 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76bc9c2a rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83d12ae4 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca2bc198 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20cb952f rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x21a17959 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2233fc1f rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x399c349e rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f9315d5 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x53666910 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62956ddb rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x74b8f438 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7af00a83 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89ef9741 rtl8723_phy_init_bb_rf_reg_def +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 0x8e0f7f0d rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92ee7a51 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a7e7c7b rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3954167 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb3ee92ea rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc1d7099a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6857edd rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcfac2b50 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6789003 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe2afd0b5 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe5157011 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xed32fbe4 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf275f0be rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf6d6e0d2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe6cec1a rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x109fa401 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14477819 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x16ca63a8 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18affbf0 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 0x294d6f1e rtl_init_rx_config +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 0x33376e5d rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3414c652 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x417cb024 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48965161 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e5410f0 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x668fbc09 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x693d9165 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8068eebd rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81625a12 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dac5f5a rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9798c06f rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9f006525 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2073584 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaddc64d6 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1f976fe rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6e836f7 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3ea0284 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2af94ba rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7338b3a rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf91d8b29 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0512d2e2 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x848330e8 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x852302cd rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc7b44885 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe8fe1074 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x19d9664d cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9e617080 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd84e989d cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xdf146398 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x09932d3d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x171b4f60 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcfb168ed wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0808ec94 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c3d1aef wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ddb8834 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1059f449 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x17ee8306 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1efe8282 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f511c7f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f5b2c69 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2baff3f7 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f1d01ce wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x34e5e9d0 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x397f944d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3aea6a6b wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c68298b wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3dc2ccf0 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x429439c9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x484e2e46 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x495fbfdb wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f412687 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5158080e wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5eb2c131 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7432189e wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7814c1ab wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7fb9b279 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81ef20b3 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85cca740 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88baf902 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d2625aa wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92f18472 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9aee0621 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa15baf18 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb1dd0e18 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb23fdc49 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5e2ad57 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb7954d31 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb8c71b55 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb7e0974 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbd6c218 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe1e28fb0 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee76b1c7 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf643ea4e wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf741e7ed wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb105411 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x0dca6777 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x42a3d5d1 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x51eb9fce mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x193c8317 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc2bfb469 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd3c0701e nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xfaffb21f nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x321412c3 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x3d0fd94b pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x549fbd2e pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5a2c5f93 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x820e1320 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb4bbf1de pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb5469205 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 0x44c8c5cd st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4fa3ddf6 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x899b9460 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x94fd3abd st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9b3141e4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xba7797cf st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdf2a070c st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf3d9bfd1 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9d10dc83 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x9fc98a20 st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf7a62e71 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 0x2db7bfbe ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x9c992c8f ntb_transport_link_up +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xbf1e25ac 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 0xc8879325 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xd40e7a02 ntb_transport_rx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x84495bdf async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe397abc1 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x031593a5 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d3afc19 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d3b857a nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1e15020b nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1ed44584 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x21068082 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27da345c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2d8d5bda nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2f4a8b2f nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3013f3b4 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3225e29e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x39e85534 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49197e19 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49d3847a nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4d203b0b nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x530c6970 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5f41384e nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x643d76fe nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6b927401 nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6c011887 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x75fab9be nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7a58c094 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7ad15934 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x85df63cc nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x944b50fd nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9a740a90 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9b14687e nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0108b1b nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa0e9aa4b nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa17c0277 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa55ed5ec nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaba9688f nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb05f9925 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb3c28d5c nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb6bde13b nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba5c6203 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc5008dd nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc9f3cb8b nvme_complete_batch_req +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 0xdb98ac7b nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1673b64 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe3c40ea8 __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb0b0bc8 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeba52615 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf042465e nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf949acc5 nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9629692 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x14db9f23 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x18b319c1 nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x82bd8abf nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x885bc00d nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x99d00bb7 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9b3e24ff nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xae2e7671 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc8f325d8 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd5854279 nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xedb8a468 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x58e312f7 nvme_fc_io_getuuid +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 0xd749713f nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x066ade0a nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1decae3c nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x29275ef4 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x454c2437 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4a68b21a nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7da663a1 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9f33821c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xdcf4459e nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe5799104 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe628e352 nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xfc35cf1f nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x144bf2dd 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/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 0x750f12b3 switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x84fef8c0 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xb4855c2f mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xd41f1d28 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x0556eaab cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x26c2b40f 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 0xcc16fe11 wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0732902b ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c5ac2d1 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x12218bf2 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x135c9715 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13add793 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x190c96d6 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2055d784 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x318b84f2 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x31f079b8 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x421a5e8c ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x42a280a3 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4529e0fd ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x48d46c42 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x56022f47 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x582d0943 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6bfb0767 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x71493c1c ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x74d994a0 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x87f11279 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x987577b2 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9f3d5e3b ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa5e767cd ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa6c0c698 ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa8ce5415 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbef8f61d ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1f8f627 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 0xc9cf8d83 ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xca5ebf62 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd0b21e3a ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfc0e04e3 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfff3e288 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 0x495c97c1 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/amd_hsmp 0xdfd927ba hsmp_send_message +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x6aa9cf0f asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa6ac23e6 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xd9146b52 dcdbas_smi_free +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xf1a06655 dcdbas_smi_alloc +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc0405dfc dell_smbios_register_device +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 0xd702948c dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xefc33120 dell_smbios_call_filter +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 0x8a00747b 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 0x377193ce intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x4ca9c171 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x8ca88bd0 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x0912662c isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x861369f8 isst_resume_common +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x974ebed7 isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x9a5c38f2 isst_store_cmd +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x062941d4 wmidev_block_query +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 0x35e882b5 wmidev_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3db629ed set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x6068bedf wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x76ae31fd wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xaba842fe wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xd7752b86 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x70f656d4 bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb52a72c7 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb96454a4 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x44aa15db pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x649950f4 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x869a214b pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x689dc56d rapl_remove_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xb6a9d09b rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xb9f38a87 rapl_add_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1cb03143 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4eb8468e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x51d7bb9b mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2fa223e4 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4fcb69fb wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x69ece973 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x94c7fd0e wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc46345a2 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe1103be3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xa3cbd556 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x9123f9f0 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x046b8403 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x097998bc cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16365d83 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cbae870 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e003b6d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e53f835 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23097ff9 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c943454 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30f39dd3 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a792c39 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c7dc0a1 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50ce8fd8 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x553bd87d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x58ffdbdd cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x660e8ed0 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67c3828f cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75ac1ed4 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77ddfe94 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b504d66 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x815677a9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83f3a0e3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87d010c2 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8dd330ff cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ee520ad cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9415e3da cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e6dae25 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa16e90d2 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaa8ecf1f cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaec131c1 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb1f656e3 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1af162c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1eaed54 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5e10885 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0428871 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1f0de08 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3d0f286 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf08815e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b13471 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2ab1a3b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe81d662f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0994ca7 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7f564a2 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa6fb553 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb38d05a cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0364b429 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x07a3bd8e fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0cab17d1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ea057ca fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x14497b9f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x240c763d fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x278491fb fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5942e622 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x68a325f4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6db47121 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x82b2ac7f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8a2939c1 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e52e18e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90d7071e fcoe_get_paged_crc_eof +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 0xf0d8a971 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3e0f82f fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x6378e34e fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x75a614a4 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3ead49c7 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5f81f622 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa24e6f6d iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa3bdf937 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0c51e52 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefa746d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf8035f2d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x09279ed6 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02dae90a iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x047e1ee7 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x094ac611 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b4b8d00 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13196bfb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x142ee36a iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16077a21 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x283c1df1 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2acbd0bd iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ad405bc iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31ad121c iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33417689 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b50e8f5 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4f0d0938 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5136b852 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61632891 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x694b40b9 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x70830af1 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x741c9c96 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7740209c iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b23a746 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x811514ca iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x813b7d3b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x879d8188 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8bb3f9dc iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x982e5be7 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9993163b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99d36799 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e1c82b7 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab4dcff9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb140dd00 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5fe4e5b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf52c1fd iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc3541104 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbe834ba iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcbf6ea23 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0bc665b iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3c9fdca iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd8555c8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde0f2408 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde718a94 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe291a805 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4cd7c12 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee83ae67 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf124cc70 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3e9b220 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf54c0161 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcd17762 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04b9ace5 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d40a5e2 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1ed7e77d iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3033a1df iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3fc124fb iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4636488d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x53caedee iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5976c603 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6af77a99 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x83921714 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9154eaa5 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb824b4e7 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd20fc9d1 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd21632be iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd91b460e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd9c27278 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf721473f iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x08beb7dd sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x111f8675 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x139bab8c sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18a6d292 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1fc485af sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25605519 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30bb78cd sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32631c70 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37462a3d sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48ec57fd sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c0a31b3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4e2d19ef sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53213292 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b913fa9 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5eddba7e sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x62248e9b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ee81e51 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ef1b4af sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9b346679 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bbda26a sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9e7bca40 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa51881b7 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6dd69ac sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaaf64082 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf73dad5 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaff89449 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb060bec2 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb13f5af5 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc3df122 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd13cb00c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdacd92a0 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe58de6a9 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee2bb6fd sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee5371a3 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf35007fd sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbb782a7 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc4b5a4e sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xc26daab1 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07ef4c1c __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0b443d86 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0bb3cbf1 __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e2e6904 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x117912c3 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b6e6daa iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cea8b83 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x224e4b05 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22d1a84a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2309b16c iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x239cf869 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x264fcd14 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x27cf4e27 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x28875624 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x33b5008b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x395b3a35 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39ceff9e iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e7d15a5 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40babbde iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x40be39fe iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e95afd8 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x530450af iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5470a81a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56e3a100 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5e8fd45b iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64c4e51f __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6790eae7 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 0x6dcd85c2 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7670f104 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x774a9861 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ab83df6 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e08b8e8 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x81faa0c3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x83b727bb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87b6106a __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8cef8c33 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e36984a iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90e868fd iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97485bce __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9bd4a244 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8c4b5e1 __SCT__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad54fb5e iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae655426 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb1bfca9c iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc26d6b9 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca968311 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcae056c6 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb0463fb __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce79a530 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd16017b6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4d59e76 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd73c5bce iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0abb721 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe208aea5 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6018138 iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe64c8e81 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf81fbe1a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8f275b1 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffc146ce __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x154bdd67 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd1ba82e9 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdd0abd8a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xec2e54b8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x77637617 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 0x2210311f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x30703426 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x507f6d76 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5dc70423 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb61b4bed srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xdf7d5174 srp_remove_host +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1250c338 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2e28c6b6 siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x68e608d5 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7a2591e5 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb021834d siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xfce1110f siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x108331a0 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x12aaf321 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x139cafba slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x149a091a slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1aee7975 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x24a876c0 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2537866c of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x25df2d1f slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x27874343 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e23c070 slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2e7b9b16 slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30099cf0 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x30493541 slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x488094bd slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x54d0aa93 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56fa4118 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x789e27bf slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x809e8705 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x823c7b81 slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x94f82d10 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa7e2ab51 slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb277fe58 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xd2836ec3 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea8085e9 slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xeecea8a4 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf9519051 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x356a8f0a sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x40d2ec1e __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x62a69a40 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x66b97743 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7e81c9e5 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1b225078 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1d9d94da spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x73cf1fb4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9abc3380 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbbf99cd9 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc3c798b0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0x98d7c215 intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x24471f92 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x2d1e35e4 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x88f9e1a9 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0507a8c1 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0cb129c7 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13dd8f5d __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b24d78a spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x236da25d spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x32f0f497 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3eba8102 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4eebf28c spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x528538cd spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d1ff9bd spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6d690bdf spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x86e3e0ac spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8b4e263d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e21059b spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa055197b spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb880efaf spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde5f50ef spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe9314967 spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x81aedfbd ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x04ab5c20 fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5a7f9fff fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x5ba309c8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x6ee1f9ed fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x0eafe25d gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3539ed9f gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x35877c49 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x38b05f81 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4292a1be gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x6878b118 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x69f20360 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x73047b92 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x99b3f5de gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa1f40a66 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc7235923 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xce32769f gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xedc94985 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x01ac1906 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ca593ec gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x22773e4f gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2e286ff9 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8d9a3c7f gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x972d9012 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9c2a383d gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb15dab0c gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb282df8e gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc1d42e13 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc8bb47b4 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd6ec54d6 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeca3bd22 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4b2376ba 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 0xdc4ed4ec gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x597f85a7 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xdca2a298 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x885c6769 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x98099820 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x05896d56 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x214e0395 apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xcdd38a98 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xe4a30d53 release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x2cfa1b2c atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x5a9ae93c camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x709b5454 gmin_get_var_int +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 0xbd40ffa9 gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xc52c1258 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdbbb9256 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xdde22874 atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xea243a34 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x0384fe4b target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x47d84363 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xd1da9c8d target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xfa427f5d target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0a61dfad tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0de9dd5b tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0f4fe25f tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x19cc5f44 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a0088e8 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1d963da0 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x22ec71fb tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x29bffe79 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x31a12ad3 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x456727a8 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x523719ef tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7a28ab6d tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7bc342b0 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8177b889 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85cb26d0 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8b3d47c6 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f05a04d tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x9f9f4d05 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xa6839f4e tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaaceff6e tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc957c8b9 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xd8ccad8e tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x8a24d7f5 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb3d37764 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xbe5c609c int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x36b0e48f proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x37450645 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x5f04b50e proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x6473175a proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x9bafcd13 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xf188eb09 proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x6eca6839 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0xf7a1f393 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 0xc4d4f89a proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x2b97ba2f proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xa3d1cf05 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x07f9105c intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x146e6310 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x5f1acdac intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xba2443fc intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x00c0a05b tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0e6fed39 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f2530e9 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0f2eb98a tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1ec805f1 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x23bc3229 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2fc5c55d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x34a892dd tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4754ab72 tb_ring_poll_complete +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 0x4f01a599 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5549a56f tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5af11fe2 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5b6316c8 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7ac498ba __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x817fa670 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9054fefb tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9a848471 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xada2e83b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb6ad5177 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc19a2f68 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd5f03641 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda78c81c tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xdad4d652 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf9247fec tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x023b72f2 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0772df03 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3f86e897 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4cd25c05 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x542c092c ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x58a6a37a ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x699bf923 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6a89ee5e __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7c6ea4e8 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x846cff98 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x92f26c06 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x95d1501a ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x96ad2471 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ab8f475 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9ee7bbf2 ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa873c336 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc6eb8270 ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd8fd4a3a ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe0329c63 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf1069274 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf2edd391 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc977480 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff755c5c ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xcce0872e ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xdb3777a7 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0f58a8e2 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5f6f3839 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8ca5d3af uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfa25cb2c __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x0f465c2b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xd92cd241 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x27807f36 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x2913aca3 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x386a9f6a cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x60c6b9d4 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa2ec45e6 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xba9dd0b8 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe2802250 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xed24d1d3 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xfc485cac cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0c929011 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3a48fc23 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x6b469e64 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd75e645d ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1f7d1774 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x32760bf8 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3a733e42 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6935e2d7 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7ea85813 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd5d002e3 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0980165d u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x137fee8c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4779253e u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4d6b7297 u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4db472cb u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x508f2a15 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x564faeaf u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8d32f90b u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x93089564 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x962a9f16 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc6ed34e1 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd7f57c40 u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xdce61f36 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe1627ecd u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xec1d22df g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0aa526d0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x21c554a9 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2284e125 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x23fb0992 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x29da92a0 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37103138 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x48390681 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x539d0759 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77409b11 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa2457248 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa26a6041 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa540e90e gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcd5e57ca gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe46ff6a0 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7ee43c9 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfd8392bf 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 0x45a7ea0b gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x83250b79 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb1f94876 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 0xc7dcb092 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x081191b7 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9372e273 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0ecc5b94 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 0x22148b71 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x282f8b10 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x455b6bac fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4b0cda9a fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4d6e41b4 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x55799d27 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x64a1ce41 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 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x830b687f fsg_lun_close +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 0x93dd304d fsg_show_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 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 0xa6d26f4c 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 0xaca37456 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 0xc6e3b642 fsg_show_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 0xdbcf012e fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5116a9b fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec7ed655 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf096e59d 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_rndis 0x09ce56b4 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0a0ab1ab rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26706bd6 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26cebf58 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a584c47 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33bb321f rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x455a79e6 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x63725f56 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x70dbf03a rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73718f55 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x73ab5440 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9fb2b0cf rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaeec8e90 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec693985 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xecb4179d rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00e9c419 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x068ecdcd usb_function_register +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 0x0cd20a3d usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x11303f38 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x29d0501f usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3294d78a usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x357ef2db usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3aa12d89 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f21fc33 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x429c94d2 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46de45a2 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47846ead usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cd90255 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57ae3823 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a88c5cf usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5bff069a usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x63bd1c50 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ce79222 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82d07554 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8502c670 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c600e43 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a2f34db usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa5493244 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa58e9630 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2f4b27d usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3aa9ff6 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf68e1c3 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcff862d3 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf364ffb2 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf998e4c4 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd69f771 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0731a2a5 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x2047845b gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x444a56d1 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7b97cc6e udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8d4870a6 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xb9ceb564 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe37ec995 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf3cd78bc init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf60c0b1b empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x030727f6 usb_gadget_vbus_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 0x15872cfb usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1dd99c06 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x27cecd6c usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b855f08 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f2543d8 usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x358459a1 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 0x4e950f72 usb_gadget_unmap_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 0x50a6fde7 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5ba20f4b usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5bcdc0a0 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 0x61a76084 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66447123 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b47ed8c usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x72043a08 usb_gadget_deactivate +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 0x93f27c3a usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x974d38b3 usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9cf6c3aa usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa35937a7 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa58fe6e4 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa768be03 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa9e74462 usb_ep_alloc_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaefadae2 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbab3d79d usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc2f84e90 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcf39c72c usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xda65f5ff usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdbcd0cb5 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdf82e5fa usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfcd15158 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0xe73b2c73 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x20932afd ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xfd5f45eb ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0c3552a0 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x150562c2 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x20d9e32c usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x30e48790 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x681eddb9 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa65c475b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd1f93cd9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe095d67e usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe38cfc14 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 0x29cbbabb musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x52a05e64 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x60aab7ad musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6af8c6dc musb_writel +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x95d5ec38 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb2e27fc4 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/musb/musb_hdrc 0xf7f546e6 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x308dfbcb usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x759826a7 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7fc56562 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa8ade8b9 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xe2cd5f89 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x4649ad14 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x9a256445 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01ed9003 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1130003a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13a1c74e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16565b20 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18ca8496 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x336ea657 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35f63f99 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bc9f4cf usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d3405d4 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x536e6634 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x660d40e7 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fe92082 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8414fc46 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99cff41a usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a86e500 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9abd92a2 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa27a130e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb688398b usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb9391fc2 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd785f05f usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2c485b43 dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x432dbe60 dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0xbd20fe07 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 0x6912a76f 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 0x03f64503 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0adfb45b typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e1fac20 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x18e2a3ec typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x223df9b4 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2372c35a typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x280131bc typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a57fb0a typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2ebfc299 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x35aa8e58 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3b29c0d4 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4acd7fec typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4f85f070 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x51761a58 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5386a35f typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x538ba760 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x58e00b17 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x591f970f typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x59c20eb3 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5a66ec9d typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5db24a6f typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b5159bf typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6d3dda2f typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6fc6b832 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x738c80f5 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7528c9c4 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x79cefaee __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7bcc1bf6 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8af2fb2f typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8b9f5288 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bc8403d typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8e4da8df typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x90a149e1 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9285e51a typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9b742173 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9e0291b7 typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb05cd23b typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb07a0662 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb63bf24a typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbab11922 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbb0f1a27 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc0e5435d typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc13e3b6a typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc352b2f1 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc41e20a6 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc503de3e typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd5598bab typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd8a5c190 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdf008d50 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe9a3404f typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xea049341 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeea4f58f typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf7a58c95 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfaa2580b typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfce2aa1e typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x120c5d68 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5f6db9e2 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x61fc41cd ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x8f60ef65 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd0e70b36 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xdab5e3e1 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xe25ec093 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xeb207873 ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xfed195c8 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1888bd18 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21fe6fed usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2879a9dc usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5bdff562 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6769a05c usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x75428344 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8a4d4750 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x96845908 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9f1352c2 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9fa24b28 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd63eacff dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe548e425 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf40d3aed usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x651e298e vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7b575150 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x814fc2f5 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8de6dda8 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa147823d _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa2e97603 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa82c12a1 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb12f6aef vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcb970adc vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xdc1117a8 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe1044180 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x080ce72a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x5ccd77ba mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05c0ab48 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bc6b71b vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0cb53484 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d07c9c5 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x18e89509 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1a791169 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25246ac1 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x25d83df7 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2af4eeb9 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c412382 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33338fa7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x367ea3fd vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3717c943 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cd99c5d vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41230194 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47065226 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e19ef67 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5069b1c2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52337cae vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x584efa3f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x655cf785 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d09f93e vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6eb15e4c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71d0afaf vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b2e3cdd vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c55e468 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85de9f22 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x87f1fc09 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x88d50cd5 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa3d70c76 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xab3f8fd2 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf06e13e vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4f3fce5 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbd5e365 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe3d7378 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd16308e5 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8c69102 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb0b6d9d vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe5ca49a7 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec4e79a8 vhost_dev_flush +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 0x8a7d8ee9 vhost_iotlb_init +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 0x40868430 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x468f3211 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4df3f75b ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e4b71d9 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9e634f70 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcef0fda1 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd2426240 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x8343be71 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x03724124 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc79a5d19 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x905aa369 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xc6034bbb sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x0e1cee08 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 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 0xebf2b5a7 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x604d83b4 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63234d59 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x699b5847 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6f0dd1ef w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8df8335b w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8fc00bcc w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa16388b8 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9ea6621 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcb59de0f w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd5ab7ca9 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfefab552 w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x036b917a xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1eb649bf xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x4415eed6 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x87a38c6c xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xc58123cb xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xae2e4400 xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xf7fbf32a xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3de28cd1 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x647d6170 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf1c97a02 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf547fcc5 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x457d3f89 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x49c66fd4 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8300426f nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa9da303c nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe605bdd4 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf105a132 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfcfaab19 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x008aafbe nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x036db262 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04127d22 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04cf45b5 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e3d85d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0738bbc3 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07cc3c7c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0899038f __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c87d83c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x100bdc4a nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x143f7140 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1507df2b nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15331834 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x178ec335 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17ee22c0 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18aa39a3 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e4d8bc __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ab44864 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1de170fc nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e374d54 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d3e643 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20d90086 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x210bb514 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x223cdc8e nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22c1f532 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23624a5f nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24326b4c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28bab71d get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2996c67f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29df871e __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3310f3ed nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348183ec __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37051347 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37239e6d __SCT__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38d4bae4 nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f072e17 nfs_d_prune_case_insensitive_aliases +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 0x42ca8d94 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45417b8c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x455ccbd4 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4637e57c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46d1df71 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x478e2713 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48356d94 nfs_clear_verifier_delegated +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 0x51b72db8 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x539cd789 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x551699f4 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5597dd3f nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x580159cb nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58a68e3a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a0674b7 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d66c9ec nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5d67904b nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5f948966 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6069f57f nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62c13d40 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62e0204f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6348f2f8 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64376dd9 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6626e712 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c5b4b6d nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d19b9e2 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e6a5703 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f4f89a5 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f817a3d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6fc57fb5 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x721b1da6 nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73535330 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76b1d903 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7736e6fd nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78968116 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b08b037 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fb3711c nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80e955d9 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d7f71c nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86292152 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x877a7160 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x887011d8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89aeacc4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac88bbf nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ccbe624 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e3bdbae nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x901d2171 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9107cc3b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9278a655 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92bb8e7c nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d46336 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x947f1b8a nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x948810ff nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97d9e3ae nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x997afc43 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ae9c5be nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9cec9b4f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa00cd709 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0f1d416 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4e24c68 __traceiter_nfs_xdr_bad_filehandle +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 0xb12118d3 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb30f52be nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3d3e254 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a0546d nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba4d3026 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbaf0146b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe754d4e nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc007ea44 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc066eef1 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc27aca34 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc54906e9 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc55600fd nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc56efeea nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6f64964 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8e66e60 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaf9a0ea nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcafa4229 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb8340c8 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf03650 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc1f2447 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc3fa9f6 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce410b1c __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xce611748 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02f551d nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd19cd065 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd963d990 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcdd504c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeda533d nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdefd6d96 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf0c9d7c nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe22f61f9 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe55dce36 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea1b67a8 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeae44548 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec651272 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedb83893 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedcc412f nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee980763 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15c6ddc nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4923f56 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf4a4c18f nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6ad3e9b put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf732c083 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f5320a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf92af43b nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb6a1257 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7e9f34 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee48f14 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff02e304 __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x7354b8aa nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x009c0099 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02be54f1 __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x049eaf63 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04ae74ca __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x067d0321 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08e496ff nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1001497f __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1321efec pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1395eb4d pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1612eb79 __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16f86d67 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x17be99cb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18090ca2 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x189ead42 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c68b42d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x254cc46e __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26ca2cba nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cd3d771 __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x333f8d12 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x383c87ea __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39b166ff __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3b96c209 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d302b2a pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e45078b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x414a7701 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41ee0624 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42e1c357 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44bdfc2c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45b3a890 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x460cd930 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x49f9da27 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d3531be nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x508f94ba __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5178f22a nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x537c4c1e __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56cc8186 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5addfbba __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5b36c08a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce3324e __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ea3ea91 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x603990bd pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x605f28a1 __SCK__tp_func_pnfs_mds_fallback_read_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 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3fc80 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69f2bdd8 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a2a754e pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a5eb444 __SCT__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a925097 __SCT__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c81e1af pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6d55453b pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ee08632 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f5f751d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7224d5cb pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72b818cc __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73a7f8a8 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7460a14d nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x748499e8 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x767507c9 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76cc0a45 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785e949d nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c258dc3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7c5aa40e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81242351 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x85111d4f nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8634c33e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8bfab6b4 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f8e46ee nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9007c758 __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91741968 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93ca45cb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x967e31c5 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x984fc5a4 __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99a38b6d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a230d81 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a7d6937 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bd77c82 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa01ae0b9 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa818c3e7 __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaaee9892 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xabece530 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac664804 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadbe98a8 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1411268 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb23e8f96 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb3592042 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3a30d5 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb35f76a __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbeba9d4f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b1e53c __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc62b4103 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc793ab6a pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9776963 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca6b31b0 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf8f48cf pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd03c47e2 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6966582 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd86f2d6e __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad78363 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0243dbc pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec3d00b3 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec7aa3b2 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf1e889b1 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf23f1830 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf44b45ac nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf456fd06 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf713cc5d pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7cde9d2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd071023 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x191c4dbe locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa641bc9d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc5393982 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x020c3409 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x21156394 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x88db1312 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdfa1ec47 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x835a724f 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 0x575ac73b 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 0x82f3669c o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa183a4eb o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa8055470 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 0xce5b87ed 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 0xedecf4f0 o2nm_node_get +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 0xf74d76c9 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0cdcd8f5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa210d578 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xabe807f9 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb2dc5615 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc32e4e52 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd868f752 dlmunlock +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 0x2e979719 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x37de1cab 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 0x91e07559 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/ocfs2/ocfs2_stackglue 0xeaa20667 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x97e8b455 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xa2addf16 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x0c846b33 unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xd557549e 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/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/notifier-error-inject 0x4a5e61da notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd7bdafcd notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x17d0b969 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x66a47157 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0f21bf16 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x2f8be651 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5c27ce54 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x906046a0 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xce4e506d garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe5c63a38 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x047356d0 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x3873a60e mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x63710db9 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x7c143ef9 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xb9a7dcd7 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xf58e4803 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x5d6c06f8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xb8197ac0 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5c62b80c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x65d45aac 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 0x5c0df688 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 0x7ef4f1e7 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x80a300cf l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x90a9ee92 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb552bb52 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6863514 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc6cb5c23 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc85356e4 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd2362e18 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe3149c6f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xa9c50428 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x12eadebb br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x197e500b br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1dbf3aae br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1e45acc5 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x27670d05 br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x33f6615b br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3ef23c6d br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4629bc4e br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x55319cee br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x586ef999 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x638f2b3b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x75e5afbe nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7852127c br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b0d0bd2 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa2afaf46 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb95ea276 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc9bde11a br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdc7c0cea br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcc0daa6 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdf5b4fa2 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe28563d7 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe567a675 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xec78574f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf2b2cec2 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd53a2e4 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/core/failover 0x8ec4f55a failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x9054ad6a failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xe8529d5a failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a98e814 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0d3a9d3d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x115840a3 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d71a92b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d751369 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x291ba4b0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ad00619 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3c2007b9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d5c997a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6cbfbf dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4673b423 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a81b665 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53b55280 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5471bcf8 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e3415d0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5fa0379b dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x65628094 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7095d9be dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x70a89b34 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7377688a dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7724f871 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x791a2edd 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 0x88125b19 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c937472 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a91b9cd dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9be355a6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb45353f3 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd241aa8b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd24cc69d dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd90441d4 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9b0f460 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x02a3507c dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x04d6af59 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x21291e2b dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2edd8554 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd72b49e6 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe8eeb59a dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0dbbe09e dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0fcea2db dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1630a3ae dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x26b86ea8 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2bb473e5 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2f1aac40 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3fb0e85c dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40706ba5 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x40dd8e08 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x428845f7 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x475bb67d dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48eca1e3 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4a57894f dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4f2825a6 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5042f841 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61771e90 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c4b954f dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7d4f059b dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x82fd4146 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94d74fcf dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xa59f1586 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbc6fa54e dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbdc9ec44 dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbe6352ce dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb890840 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd02d922d dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe058f9e9 dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4477b94 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf576fd28 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf95fc0fc dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xffa946b0 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4856ac28 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5aa4adc4 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xad8d9151 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc688cc01 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ife/ife 0x5229a7d8 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe0259f63 ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x54bebe6f esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xfe9a5e6a esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xffc8fb45 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/gre 0x36e0ecb3 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3db62fb7 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x03f5783f inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6f0e659a inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8672b943 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xadb6f1b8 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd07f8763 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe1d6c7df inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe39d9d00 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe8fd715e inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xffd456a4 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x396e7c4c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0bcf4119 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2021c17b ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x424f5862 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x47f951b1 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cc4ef12 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x535da52b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x56cded49 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x63b6746b ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6699ab3b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa4379b57 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf5eb455 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb13fc5db ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4fa5468 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd976bdd0 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf668b7c1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf948042b ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf997f4b0 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xf15189e2 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x6ea259c8 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x86b1e745 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xb6e922bb nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5cba7bef nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5e0a99d9 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x75a3a050 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x81c06001 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9c244661 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb1bbc692 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc905073f nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe53d2a95 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xb80f3014 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x0bd1af1b nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7ba8c6e8 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xeadd0e2b nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xbfeff72a nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xda4f74c4 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x23bf79ec tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x28005962 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x51802695 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x537518ce tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7475c8ef tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x212162ee udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x22e34c26 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6e589946 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x78bf0f1b udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa0bbe586 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa9ef4d86 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xb3cf2616 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe318d0b udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x31c96a79 esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4ec6f43a esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xfa653371 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x36a7b5ee ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x61406097 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfafebd03 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2ed3d1da udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xac802910 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9af64192 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4e89845f nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbb596a77 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xeb8c4a14 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x348d6e23 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b9aae78 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x272a2ef6 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x863bee69 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9066cae6 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4f06a77 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xec3dd26d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xef40b7e1 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x3f68917d nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x3543ac34 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x88d3a7e8 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xfe8a51e4 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xba85d522 nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xe0bdfe25 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00f49b45 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x11f51ef7 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12a481df l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x22c627f9 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x23dd39aa l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3963e262 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x437b00e6 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x458cd967 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4988e7ee l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5812e8fc l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x660088d9 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x72868663 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x73a945e8 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7af38678 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8703ba19 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9216a575 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93ea0e15 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9b65e75e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xac207b09 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd76c587e l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf6ebe815 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x46c54b1c l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x09456f5f l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e31496a ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x228ee9de ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x28cac819 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2914659e ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x319d6f4b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x32c84808 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x35f8d70f ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x49856ad8 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e4080ba ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5443152c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0f8d53 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68b33115 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d879003 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7cd71285 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 0xa5d208a9 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbbb8727b ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc3dc0a1b ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcae6f15a ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf661130 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea323670 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed2d8772 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfde69a73 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x42627c9c mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x44891719 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x48a4fdc3 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8d728e73 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbdd714fc mpls_output_possible +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04c7fe90 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x13aad4bd ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15327547 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15e2b114 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x254d5f10 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29cb13aa ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a790967 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2efd8828 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x51c872f6 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5cbd409e 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8ba705f5 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x99d07029 ip_set_get_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 0xa483dc68 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xaf017e5e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb33b5172 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xca64b34c ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0c631ca ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd78610c8 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf21e254b ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x064ba71d unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4cb55c13 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4e66f35e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x95f0cd01 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x1e82657a nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x705ed458 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9f257632 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xcf246687 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xdd90e520 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0122cef2 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02703d22 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x057be4ae nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06002a3f nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06aed366 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13a5437c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14b0b55c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x151e9301 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1602a6ce nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16fc2f33 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1cd72503 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fb0d078 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20f2d41a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22d932a1 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2644e707 nf_ct_destroy_timeout +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 0x291d8934 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2efd2e35 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311093c4 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x380bb4f0 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c76b239 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e613a5e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4225d1bb nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44bb712b nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x491af770 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4bcc3503 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f4942f4 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x505e21ab nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5105f92d nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5399010e nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53bc404b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63a63df9 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x640a4ac8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64ead6dd __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66701c81 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66c39ec0 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6881fd0b nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7263d146 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x729a1322 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72a9c38f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72fb5318 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x730f984d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75a03f20 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7766a245 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x781f4285 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b4d7ee1 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ba6a024 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x829dabf9 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83e343a3 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83f75533 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e6ff243 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95bf201c nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x972a5401 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x984be3b4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x992c570e nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a2ace87 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c68213c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f4811c6 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2d8dd9a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4676039 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6c152ae nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadeb8f4b 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 0xb2582db2 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb71a91ed nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb823dccf nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbface16 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd655bcb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc005ebb6 nf_ct_helper_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 0xc848d7ae nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1c856ea nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4166631 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd477f804 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5186219 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9b5c613 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd58579f nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe29cb0b8 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2a14b56 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb7db63c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeba5e2b8 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed176a93 nf_ct_unlink_expect_report +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 0xe4659c00 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x6bf8203d nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x08b9bca9 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3caebd6b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x70941955 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x83008835 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb0369ba2 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb3c57f22 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe0434d1 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcbb19aeb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd67f4929 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf30137ea set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf63828fd set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe7d92ed8 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4f36dd0e nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02418963 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0f9da665 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x70388c20 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x73575801 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x97efc79f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9f9fa2e1 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe58dce96 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbbbd2728 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xdc004c74 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xa0ce9f7a nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf07137f4 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xf7f24725 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1036e01e flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1204f661 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1d0b00a6 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x39e62b27 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x64aabf77 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x76151061 nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x900c0963 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9bd7799a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9eb87e7b nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb0e2989a nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb4948d36 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc318aa29 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xce15ad16 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe78d847f nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf15ca96b nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfafb380d flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfff0cd33 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x29da5a99 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c55bda5 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33b3ec07 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3afe59c1 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 0x4c6f36de nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4d5518a8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c1e512f nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x63cb3748 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6c5b34fb nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x85522519 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9ccc2637 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f425c33 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc0fb9cbb nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd3addb9d nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd5712a97 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 0xed370c32 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x234a0d02 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3cd5ef48 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x544f520b nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5df2f3eb synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74545a30 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x83015698 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa0f387ce nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xaab600be ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xbefdc951 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd7f6d8c7 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf7e63290 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0787f2f0 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15f777dc nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26e0f933 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26fef355 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29b3c875 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b7b9de5 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2d012740 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33720c7a nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x33c46bc6 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3af8fc56 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x455f724a nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4fc1a409 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x61047530 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6590da85 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x688bb700 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6b502d79 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6c42b575 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d087fb1 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c0e0caa nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8a824996 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x91eee586 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x92575aea nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9bdc943f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f29d099 nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa32d7456 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa400b262 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab4c7418 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb75133c9 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbfdaf305 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc0e6ecbc nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc30133ae nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb047f66 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcaa662b nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdcc0a8cd __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd1f4fe5 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd650a10 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xeb56674d nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xedbfa85f nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee367613 nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6022851 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb4cd4d5 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0b8f6dbd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1658450c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x272dd39b nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x28ec4481 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b6f749d nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa162ccd3 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc7afe28c nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x372b64fe nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x374278fd nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xc5e7cb27 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x9de1fd85 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc7be4e3d nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x3685b20f nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x5a96b23a nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x71835494 nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe1d6c1af nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xf1facb8e nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x18e6138d 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 0x8fe3b82b nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xfaabd475 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x110069f7 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x164ed79a xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c4a42d8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39750795 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3bc7ee69 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x410c1062 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46d14a96 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a859590 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x56d8805a xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c3080db xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x76468f3d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x770eae26 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x803dc0e4 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 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e4995e7 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa227ead0 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8102f47 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa93bc680 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb64e8c55 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8c64dce xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcc25839e xt_compat_match_offset +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 0xda143c95 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeabbd04c xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5cce6d3 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x55a89cf9 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xb10c4f83 xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x18d8b31e nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x8e880434 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xdcdddfb9 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x07a4ffae nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3c50e8e5 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5aeb9b02 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nsh/nsh 0x346c4676 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xaba734e7 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x00da0ea9 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x080da8c8 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x13f2b896 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x646e1d58 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe62465fb ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf69c4f57 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x385ace28 psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x64a088e4 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x9b206621 psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xb0539fd5 psample_group_take +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x700add56 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 0xb1db7906 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xf1e2153f qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00f0003b rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1087f212 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 0x387bee63 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x491f12d6 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 0x59e90b77 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x5c3d95d1 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x691b0d91 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x70543bcf rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x761956ee rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x76200f88 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x82b265fa rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8af77960 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x8f56fc72 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x9e09cf3d rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa8e8f57c rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xa9837114 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0xb2630057 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb8f84560 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xb90ece63 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbf673554 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4bfe632 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc82d031c rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xcbadf0e8 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xd922843f rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdb019a7f rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xeb7d4663 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf5bab56a rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xfb76f7f3 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x2e57657e pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xa5d2b80d 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 0x1c8380e2 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2064f99e sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x82e994c5 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc85eb76f sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x0fc763f0 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x1479b3cf smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x25f6fd07 smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x401d81f0 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x48464fed smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x52cf84bc smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x7b915708 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x969b7d3e smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc32e469a smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xdbc78b3a smcd_handle_irq +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2fbc16b5 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x92af744e 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 0xd804b0a1 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe53808ad gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000659da svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03fed588 cache_seq_next_rcu +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 0x06b32611 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06c326c1 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0729b34d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x074f73e0 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0771ade2 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x096c630f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a76b492 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5740a0 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f76a26f xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffdc670 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107032ea svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115404b4 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11f1e032 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ace3e4 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x133b293d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14f2d72f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x159506c6 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179ea6e9 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cb6782 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ec805b rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x185dde86 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x187a6ae1 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a833739 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af65aa4 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c210907 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca17aee svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb453de rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cd91a80 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e1556a3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8371a2 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20010c03 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20af398b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216cd105 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2180ad8d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22512609 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2272debe xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2301a244 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x233d969a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2418dcf4 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x254565ef xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274ad15f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x280eee22 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28622f4c rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29169ad5 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2985df90 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b9b9396 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2baee34d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0eb3ec svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6b3024 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e5248bc svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ee13ae8 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f805f8f rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30650ca6 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32be45f7 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3431354b xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x348f0042 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35c9dd3e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37cb83b1 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3957dc4c auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3977a392 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a476c81 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aaec28f xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dace253 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f33cf1a rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f814517 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40f161bd xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41271be1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4295b8c6 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44769f46 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x467e366a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4967cbdd xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4998746e xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a75cd7b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aeb1ab1 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aed5da1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4be78ab0 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c0e58ac svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cf747de read_bytes_from_xdr_buf +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 0x4f28392e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50f50ad9 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51291b2b __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x521b0425 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52cec5cb cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52d7b77d xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548597e8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a55310d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aed8670 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5d11a1 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd5a4fa xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c99e608 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf19b16 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d22a053 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d825582 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5eb6720b svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630996a0 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643f4f8f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64627478 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66efdfe9 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6847e477 cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69515eec xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69fc76b6 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab7f8d6 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ad673bb rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7079e1e4 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x718d4356 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71de8bb7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7249d4e5 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72e9e1a5 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x743f45c4 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748e7801 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7691674b xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77a06554 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78161498 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c8b1a5 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a343a6c rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b6b6b11 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc961f2 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cefe0ce xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de69e7a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e46803a auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81eac0d6 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83536118 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x836ad93f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8679290a svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867b64ab rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88212f42 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88230a28 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88e6b974 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a893f2b rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb5fdbd rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cacd046 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d0e00c3 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f606a65 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f75dd3b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9003d5b8 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9215bf7e svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92807cf3 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9583d110 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x959d23f3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x964abb4c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x966fc566 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98652cd9 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987e23b6 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98abb482 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e47573c xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f700f22 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f6ceb3 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4e7a147 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5970822 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa62fbdba rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6ae6cd2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa9f1aae rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9f88d6 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf62b0eb xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafa86f95 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb050ed14 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0af799e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f02484 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb208802a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb29d632f rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb342ec28 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb36b042e rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51bffdb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb585811c xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb69dc889 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7019697 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7396e0d xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b29b57 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b3d5cf xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7c7b46f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ca9ca6 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba8fbcee rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb70c247 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc1d880a xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8d3caa svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd0e3bb3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5bfdac xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe766244 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbef9fbe7 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf08890b svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf12a261 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0adac2c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2ecb7b0 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3daec90 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6c2a1db svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6fbe9e4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8f01b01 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93b497f rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc94e6891 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca76c6cf xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd527c0b rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce30ac1d rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfcfd1ad rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd04aa8df bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd48f6959 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51b849c svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7532b97 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd80e652c rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd967c07f xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9997095 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd5c76f6 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd97e033 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe027bd53 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe17eef3e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2943b66 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4184e3d rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46c29d1 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4d1e2c5 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51dd15d cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe546526f xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7e7f61d svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2e09c7 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee69a944 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeed92467 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf230f0ee rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32285a7 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6a67111 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf92785e7 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99aa013 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3d0cac xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfadb8193 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc475f0a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd29f665 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdb770e3 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff727250 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/tls/tls 0x2324df12 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0x63e7731f tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xcb00eed7 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xcf1c1026 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x01eed8e4 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x08287aca virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e3ddc8c virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x144e93b3 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x219b3294 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x304d54ea virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x37ddf960 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x49fdbad4 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x52cbfe0b virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a67ec0a virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5cd4c1d6 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x683cff73 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6cb7e4af virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x887904da virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9b88e2dc virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cce882c virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa581beab virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa64271fd virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa8825e2f virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb2025e52 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb32a33bd virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb9487928 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf4e709b virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd5311777 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd75d5c7d virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe37592c8 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4b35a4f virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe581077b virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe8a88c99 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe9af52db virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xef93cec6 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf2f45751 virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6d6b5e1 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf6ee00a1 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02408887 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c3bf827 vsock_for_each_connected_socket +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 0x31131603 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x36239564 vsock_remove_tap +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 0x4e721c5d vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x502e2d62 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5c347bc7 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f38aa03 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6262c5f2 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7846cf37 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f2f737d vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8d289380 vsock_enqueue_accept +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 0x9fc4afad vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2787a75 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa2d5101a vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb1acbf0b vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1437f20 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0709806 vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc6e4f1f vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe28f0f2b vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0175fcc9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f0bd752 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x267cf2fb cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f840a82 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x501fa5a6 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x520d42c0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x550c4e60 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x70975b91 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84f1df28 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x887fda29 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8acc195c cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa55368d2 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa99b73d5 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb847bf7e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcc6c2d57 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xef542223 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x37a02412 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x5c699441 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x72395dc1 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x7a8ca627 xfrm_count_pfkey_enc_supported +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xaab23340 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xb73be794 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xc6b1fdbe xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0xd6f50cf7 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5d600dcc ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6ca8ddcb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe2d71a16 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xeed80227 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 0x35030a2a 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 0x048ca8df snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x213512ed snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x25e5fbbe snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x2ab3a608 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x3a278abc snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x3b90c6ee snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x4090262c snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x513c138f snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x5ec472db snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0x6b5c17cb snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x7123b501 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xa9983366 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xad1c0d34 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xb166ac76 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xb20c7439 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xb49c4e62 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xcb03ce48 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xde363f96 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf1dbf5c3 snd_ctl_disconnect_layer +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 0x288a0a6f snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x324bfb22 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 0x18d2140b _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x234b06ac snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x34b721b0 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3998128f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x54387f2a snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5dd63049 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5eedcaea 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 0x792f7d8d snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7ae89ab6 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 0x96b8797c _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa89942f8 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb7dac88d snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xda3d30d9 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xeda69588 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x07e62f4d snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1939993b snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x232e4a4d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2e9f446a snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5b78220d snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x60e58cca snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa67c1742 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd68b4a5a snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe2f9ace8 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe7ac76d5 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf36c7964 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf83a3c28 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x31af57d0 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x693bcc17 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1ccf21e3 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3afd1bc1 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x43bece7c amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x63b835d9 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x662a0b7f amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6b4fa843 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8b20cc8c amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x916bbf0b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a3ec262 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9fdcf69a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaea6d647 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc222e824 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xeeb3dad2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x12db6979 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x19af8146 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1a054493 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1aca2ab7 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1b773c31 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1f057762 snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21c16d30 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x24fff4de snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x380dfd3d snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c59a116 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3e3583e1 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3fd53e76 snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5f3471b9 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6b7458dd snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6f163b44 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6ff7e28f snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7069236e snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x71807d79 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7406d77a snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7822067a snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x79b41b9f snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7a505d49 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7c1e1a34 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f7023fe snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8ab8b88d snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa1d46122 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa508064a snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7b7e14a snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc038dc4c snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xccc644b8 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xccddcd37 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd6cd2452 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdcd05b39 snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdd87cb2f snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe07e0292 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe4500f4a snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xeeabe30a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3dec7d9 snd_hdac_ext_bus_link_at +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf6f395b3 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x01c6f3a5 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0587cc95 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07d03581 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f7ffe59 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15a84744 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x163f81b6 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a480a44 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a8a8c66 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x208e4c00 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a5f9d33 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33362efe snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3390af40 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33c1dbf0 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x341ef855 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b22b76a snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ef92463 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fa7c676 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x422f724c snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458c4587 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46108479 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47291a86 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4755972b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c408522 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ceb7c71 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e94ae85 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5473234a snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x565c94ce snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56947a9f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57fbca5f snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5840a894 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x589323bd snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x597099b8 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b2f33b9 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c174b82 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6206359a snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6cd62877 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dfc3049 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ea9e555 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x707e8447 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72f67f2c snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x730a1172 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7406697b snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74704cf2 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77679351 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dea5d13 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80e8976b snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c3ec8c8 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c915334 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9adb2181 snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b0eba27 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d110ad1 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d4dd138 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa29c8bef snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaaf6dace snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad68d16e snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae5a3b0c snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeb521ad snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0d88336 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb28d9f11 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3dc9f01 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7f4b496 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb84c3593 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7b2633 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd7c3310 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe24fe98 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc23283c5 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2f4e300 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc404f144 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc68a95e0 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6f0b658 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc88fed93 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca8d7eab snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaf68c4a snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcb2e4317 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2204f38 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd75e45f2 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7ceba9c snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdece816d snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0b0ac67 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe894868e snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe911566c snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea7b9424 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xebfba9a3 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf00e984b snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4f3e006 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf808a614 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdd73182 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x18036e74 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x2e6e539f 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 0x67c85783 intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8b4b2bac intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x02696431 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x49e8071e snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa3f19582 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa827a79b snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa8661b3a snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe2c3fa31 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00216d03 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03349e4c snd_hda_jack_bind_keymap +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 0x0906816f snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a772e90 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b2d5473 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bd44025 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb586af snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f3b35ac snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10539104 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x129e4bfb snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x154c2979 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16a8dd24 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193f3028 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e89749 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20801680 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20fec487 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27f86afc snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ad210b9 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d58f8ac snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ed1d493 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x305f63e2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34e99c2c snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35aae804 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36be63a8 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39346aaf snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b229a32 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d38a05c snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f4e10a2 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x402f7d4e snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42859694 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e2d742 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x446a4cc3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4832cb2a snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x486450bf snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48ba3ab8 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a66813a snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aaacf4c snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ace266e snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6501a1 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cc956a1 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f98e78f snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50f79c31 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5196b7f4 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52655f8d snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5482a0e7 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x548a7a4b snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x554fbbf1 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x586f6782 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a4aa84f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b4dc241 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cfbc735 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f3fdbbd snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606e8862 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x642cf489 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6618ca96 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67213509 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68360f91 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x689548fe snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a758879 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef233bc snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70d6e3db snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71eb9171 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72894363 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7922a2e2 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a77acc1 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e38f553 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80f1269f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81a7b550 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87d7dd3b azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x888006f8 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a69f3de snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a6ec06c __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c21ce40 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8dad354d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90296a16 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f6db5d snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x933c775f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95a22aaf snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95eb476e snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98cb71ce azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x999dadee snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ac21b0e snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d30df86 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0d494ad snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2c02fbe azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa338ad46 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa386fdda snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa487b646 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa705e5c6 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7a4a677 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa81b7716 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8a0f929 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8e420eb snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xade86a7a snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0be39b7 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb325f647 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3ff7c67 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7c37117 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7d4a4f3 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9927f20 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb627dfe snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbf9abf0 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc5adf18 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1b79806 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc27a6b56 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4364fb0 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4707dc3 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5894df8 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc626ba44 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcafc90e6 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xccfd21a9 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0a5a81a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd49f53a7 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5b5dd95 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd793f24b snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8c67391 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb58635e snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe11439df snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1c581bc snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1dcc69f snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7007637 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecc4b7b9 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefe77884 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0b4e30b snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3f7127e snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf75ce47f snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf760ace9 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff2f39c8 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffba8bf9 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x041b359d snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1392939c snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x13fbd772 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x217c6fcb snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e12f491 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f50f9d0 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x41f8541b snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5a634436 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x66f5bca7 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 0x781fd8f6 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x84a18986 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 0x8e1f68f9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x919661a2 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x983282bb snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa1277bcb snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaf313939 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6e5a6ff snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2c51c8b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd475e8a1 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9d2436d snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe52e1527 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0xa9367dd7 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x075afa54 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1d1356a8 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x311efd45 adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x378f0099 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3d22ed12 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x3ec2a5ae adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x509b032d adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x78aa27dd adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xaa239a6c adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xcf0373cd adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe7b32329 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff12ed63 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xd44b4323 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d4673c1 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0d9c58b6 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x197a9c1a arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x20988bdb arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x21b7c4c8 arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2389d906 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x27eef1a6 arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x28928687 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2faf5fea arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x37221fa8 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3ece4a30 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x421b2d11 arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44320085 arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44cfb1d9 arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x4d468e9c arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x578e9658 arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5884d0e6 arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5a3e727a arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5d9aa86e arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f192bf0 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x707246eb arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x729a5ef3 arizona_mixer_values +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x74cdf568 arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x79a490f7 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7aaaa920 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 0x804d0a8b arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x84f6bbea arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x880029d3 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8bb2cb12 arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x93443bf7 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x9989b131 arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa71879d5 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa9f5a398 arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb43f968f arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb8c83cba arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xb9429458 arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xbf0d97ae arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc3ba64b4 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc90bbffb arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd56c76d5 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd57d69b8 arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd852c260 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd895f598 arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd98a6f07 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 0xe61418a7 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xe94f077e arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xec5bbbc0 arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf2e72639 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf46364e3 arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf60ebd05 arizona_hp_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf72e1e47 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x3314bd80 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x6d901d90 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x79b6c3a2 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x22decfe3 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2bacc016 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x45e39e69 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5cf17ce5 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x5da7f834 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x764cba0d cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x7ea66698 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8620903a cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x94dc179d cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc517ef25 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd26013c3 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf3b698b6 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf41a4c05 cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x287e44a0 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xe77186e8 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3a8db46a cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3ac96928 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8077b5f5 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x8286bc7e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x96e3fd6b cs42l51_suspend +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 0xa819a53b cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xef37b2d1 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xfffdadda cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x046a7da4 da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x08c0a4d0 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x18bf660f da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x8f83185a da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x7666a2f7 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xb180a39b es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x295fda69 snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x5121e990 hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x7995556a hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x515061bc lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xa8450e18 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xeabf67be max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x35102ef2 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x69edb824 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd36988cd max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xd9c6bbd4 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x06a7f031 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x421e5193 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x90b356e2 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xe3413f46 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0x449a4805 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x12796999 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x6e0362a0 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x36b67003 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x7f1f3548 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xa18ef117 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x6bc8d13c pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xa63e5d3f pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x1b3a333f pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xfcb3528b pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x3ce778a5 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x43b85f96 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x99e4ce2a pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xdc5572b3 pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x31619791 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x6a9a96bf pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x75726401 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xce7042f3 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 0x0c1e9b81 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x03fb8b75 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 0x07849c73 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x4c234d99 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x9b423fbe rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc05c3f89 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xc2ecf677 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf75c428a rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xb9fe27c6 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xf785115e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x9025ea38 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x723238db rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2629a1dd rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x2f5ee4db rt5670_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x6b812199 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xc4d0a3b2 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xee20a46b rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x7c1d00bf 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 0x0dc5bf84 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4c963fa8 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x50174b74 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 0x63d63602 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa7a184ab rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb42bf75f 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 0xc61da25d rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xdca23aea rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xed63fcf0 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf5628deb rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf8c7f3f7 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x20818854 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2e64a136 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x7825d439 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x8f8a53d4 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x94bfeb42 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa281d8f4 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xc4a9b572 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0xc461dfe1 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0b3c3f04 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x23dd1ad0 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0xa0e182fd aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x2e614ca9 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x60c55ac9 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 0x56548229 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x5797bcc3 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x67459c7a wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe52908d0 wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xfc8a7358 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x01c7f6d2 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x05a82bb2 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x06666c03 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x157b3901 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1e07f103 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2523d81a wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x31c53c1c wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3d4a32cd wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x46636e8f wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x47916a7f wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x50c53cc0 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 0x5eceff11 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6d430964 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74375cd1 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x74e762de wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x760c50b6 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x82f676d8 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8929dac0 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9d1ec543 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x9ded7db0 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa3e1437b wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaf8e38a2 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbb1b349e 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 0xe51faf51 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xe5ec17a2 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x1ce4daf6 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x461a07cd wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x58dc8ab0 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5b5771f8 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x60502533 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x69576029 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5b00d8c6 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x23196710 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe13cbe6e 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 0x07e55bc9 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0b9ae463 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x119b9607 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x16cd6354 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1980cbcf asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1c84b33f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1d7a50cb asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x267473a8 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2c7f30ac asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x391f3aa1 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5b6d4df8 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6b760965 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x73a954e0 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7d534310 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8870626a asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x93cfbef9 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x9db5c989 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbb9f79f4 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcba54764 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd53e7ab9 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdb2269de asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf2a772d6 asoc_simple_clean_reference +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 0x4caac39d sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x6bbe8771 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x6dfe1b8f 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 0x81efe6a8 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xc213a26b sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xc2ce1dfc sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xd877f23e sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x13430765 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a04997c snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2a7556da snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x333bbde2 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x34a14f4e snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3e10d45b snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x40dfb2c1 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x462d8968 snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a5565e1 snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5c652038 snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x607c51aa snd_soc_acpi_intel_mtl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x63e7540c snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x659eb785 snd_soc_acpi_intel_rpl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x745f1210 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7e9d4e97 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x88dd0c65 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8a37e27f snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8d98c309 snd_soc_acpi_intel_mtl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x97428ae0 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x9af1dd43 snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xac2417e0 snd_soc_acpi_intel_icl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbd17d594 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc484b592 snd_soc_acpi_intel_rpl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd67016b6 snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd974c666 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xed96d3e5 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xfa4ace8b snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0a7f3c70 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16e86983 sst_shim32_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x285bcbf3 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49068949 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49ccd1c0 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4b7104fa sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63b81231 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x69d905c7 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6be9b27f sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x785845bc 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 0x948b2444 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaea5027a sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc5dcc956 sst_dsp_mailbox_init +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 0xe8d000ff sst_dsp_shim_update_bits_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 0xfb9d6541 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x01c82c18 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x04a68e75 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x14b445ec sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x1977a549 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x22820d4f sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x25068e3d sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf5a5f327 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x00446e04 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0353106a skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x12cd6e48 bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2b2bf9e1 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2bf0c4be skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2c6aec4b skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x2c8dd272 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x35114ced skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x372357df skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3f7d108b skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x526b8a3f skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x52edf28c bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x54d5b7f3 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x65838b3b cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6f86f908 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x71c64025 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8e9200f5 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa24972cd skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xa604eef9 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xafb91a81 cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc022db61 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc1a0b42d skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc719b0a4 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc8bbc4c1 skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc9ebf2ac is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xca68c98c skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6c91f3d skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xd6f71453 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xddcc134b skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xde1c9571 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe02764bd skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe417ada6 skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe6a4140d skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf0c21d45 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf942b958 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0229857f snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05a391ac snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x064fba95 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07885f5e snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x080bdc19 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x081f31ac snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08384405 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098841d1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b57a344 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7e6905 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b89406b snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e689533 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1018b87e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1185bd93 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12560cbf snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x173749d0 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1770e0cb snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1843f9cf devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19c4b25a snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a194c28 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a4eb24c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aea3bb5 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1af45347 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b3848b3 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bde59ec snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d40c4bc snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de18ae4 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ee59b6c snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fc855aa snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2029969f snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x202f6ce8 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20f8fba5 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23caebda snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d77b36 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23da18aa snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24cd5b83 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24ff408e snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x279076d5 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2818c340 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28bac7b5 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b769780 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f3d7245 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31775a04 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x317d27b8 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32121f4d snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x327c3241 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33021e1f snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33633da5 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3510ad79 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x366aae1e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x377ce05f snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bee01d7 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d10fb08 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d22e59a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3debcedf snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e2ef416 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ee23648 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f7bb610 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4012f0d9 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42723f39 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x437b0148 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45bc5a8f snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47bc7492 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48bd7005 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x495c9c21 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b614410 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b76912d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bc6cdfc snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb93105 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5092de29 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511bf75c snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53f930a9 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x544b9cc2 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54e5fbdf snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x561df40e snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59199ea6 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59c41ebc snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b332235 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bf73566 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e136ed9 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5eaae716 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd80335 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6158bdc6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61811ced snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6197598b snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61b63c5b snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63c620ea snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6405ed6c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65864918 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65edc747 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66d4ec78 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6831ea3b snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ab85a3 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c35c627 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf4e4fb snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da67c95 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6da89f97 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e31c4da snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed911d1 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f25d055 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7018ad89 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a05ec7 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73879357 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c8ade5 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7518f30b dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75903d91 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75bd6ed2 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7634a018 snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x763edf8f snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78ba48c7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f56e97 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x799e29e9 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79afd440 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a813581 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ba39b21 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c568b70 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c85d834 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d69db01 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8043fce1 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80c5cb5a snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x811e85da snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82db6aea snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83225b21 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8454fec7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89598aab snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bebbe59 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e7ffef8 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ed3e82b snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x921f3a15 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e3a56a snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9462dc76 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x959d20ef snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95c383c2 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fdafd7 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95ff9b16 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96bc5d51 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96ccb42a snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x978cdaf1 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x981358f1 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d49351 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ee3212 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfe1f31 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c629f59 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ec9bcd7 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00bb68b snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa11e9bac dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3a9e96a snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8a63dd7 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa962227b snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8b04a4 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa8e7023 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafe77330 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0312d17 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb079c9ff snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb09901c5 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1263c3c snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1ba3e0e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb24c08a1 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2de0deb snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb408ff4c devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4e5a43b snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6a2b924 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f605e3 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6f89e53 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb83e8ff6 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb2ea042 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbca1dba0 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd823b69 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc3f368 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd8a634 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc00c7d78 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0976296 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1a93374 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2bf1c8d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2fef547 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc378d523 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4ed3133 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9184c27 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0cbcd9 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccb28b06 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf0a3061 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0003a75 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4887ece snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5389be3 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8334f69 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb03ada1 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbcd5f6e null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc908cc6 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdceead31 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe040c616 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1f28362 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe32b0c2b snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5a2e7d1 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe647afdc snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe795876e snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7d3da8e snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8bb9717 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea8594d6 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedd7266c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef09782 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefe5c858 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0dc520e snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf261e378 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4bdd75d snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf57f04a7 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf663e5a8 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73d359c snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7a9a119 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87efa0a snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfac40574 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcb42abf snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd5742ac snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef4a661 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x0dc8230b snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x136e20b1 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x18d18886 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9df26977 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xdd815c2f snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0dfa59b6 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x14eaa418 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1c38434c 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 0x5daa099d line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7de93b18 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf2e4f20 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4c3a2c6 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbe9716ae line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc032a1dc line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcc7cce6a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xceb08e31 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd99d9831 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdcc9debc line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xef95e0be line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf4b01184 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf8b1ba89 line6_send_sysex_message +EXPORT_SYMBOL_GPL vmlinux 0x00018f06 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x0013539f devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x00140b93 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x001b879f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x00240e17 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +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 0x006f0f5b bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008f0dfe __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x0091ce2d pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x0098cfa0 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x00a18cb1 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d7351c dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00e3d635 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00e57c2c iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x00ec8ec8 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00f92244 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x00fe1d92 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x0112599c pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x011e9a24 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x01415e50 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x01468c2b iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x015be260 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x0169c1f6 spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x016fa670 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x017a8a74 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018ba544 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x018cac23 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x019f05eb mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01d65b94 elv_unregister +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 0x02099ff7 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x02122a38 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x02187dd3 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x021c9bd4 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0235044f __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024cfb5b of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024e9ff5 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0257019c tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x025fa948 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x0264b9f8 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x026ce816 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x026f50ba ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x026fa6a9 vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0270cc9d pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x027b7717 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x028c053c posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x028cd8c2 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x028fab8e dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x029ee36b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x02b1c120 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x02b5eb8e register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0x02be47a7 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02c979b1 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x02e2cbbc extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0322efdb dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x03334b0d serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0354dc69 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x03553c4b gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x0358bb25 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x035b74d3 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x0368cbcd usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03780b42 vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x037e8305 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x038e3f2a blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x038e557d crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x0398b1a1 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x039db423 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x03a487a5 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x03b22b2e __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c5c4d5 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x03c6e4aa __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x03c93417 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03cfd15d fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x03de3680 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x03e9e7f8 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x041699de devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x041ea174 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x043bb0f5 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x04599dc3 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x0464e0fc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046dffbd irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0476cb34 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x0492741c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04b5cd51 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x04bd0d4c acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x04be2025 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04cba1e2 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x04d9320e clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x04d9c402 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x04dda268 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04f09ca6 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x04f63c58 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x05061531 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051a7c96 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x051bd29e __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x05270124 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x0540efcf irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x0544cc03 netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05501c9e regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x05512479 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x05605634 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0564b21b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x0564e481 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x05691349 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x057c241b pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x058a0711 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05a3a8bc virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x05b38679 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x0601aa3f blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06170d0e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0637d831 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x06381e73 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065fb465 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x066b22ac gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x06720413 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x06a40d9c iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x06a9659a clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x06ad2fb7 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x06b8718c devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x06c191b8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x06c8a462 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d1115b blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x06da0088 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x06fc733c nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x0705d6bc fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x070f2763 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x07102fd1 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x07200451 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0724ac25 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x07377b2e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076155ca pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x0781c44c __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x0785a0fc of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x078a95b2 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x07ada23e xenbus_map_ring_valloc +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 0x07bf2612 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x07c87852 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x07e95bfa devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x07ed29b2 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x08001b84 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08156968 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x081bec6a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x081f9dc9 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x0821a769 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x082b82f9 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x086b67ce device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x086ca347 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x08766382 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x08768e25 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08862698 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x08930f53 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x0899834e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x08a24d30 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x08a3d310 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x08b01d7d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x08bbc582 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x08c0669f cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x08c38fe5 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d6d901 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x08daf0c0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x08dd02b5 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +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 0x0943d924 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x094dbad2 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x0958fb5d dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x095c33da serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x09658af6 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x096e1abb sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0979c5a3 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0991f007 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x09afab8a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b65d72 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x09bf8399 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x09bf9177 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x09caa489 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x09d056e2 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x09ee065c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x09fa167c vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a000e4a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x0a01e110 wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0a03844f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0a1517e2 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x0a18e0f1 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a641c2f fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0a675f5e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a6d8e60 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x0aadc736 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x0aae7317 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x0ab94685 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0abba89f perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0adab218 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0ae79598 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x0ae83665 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b28ad56 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b313f55 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0b37ca8d crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x0b3bdc15 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x0b3ebdbc xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0b433312 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x0b4651db ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b596b15 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x0b5a580e tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x0b783c82 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x0b92465b i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0baee061 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bdea0f8 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x0bf0800a crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c081bf8 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c0970c4 device_move +EXPORT_SYMBOL_GPL vmlinux 0x0c291b77 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2f32ca pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c44a8f8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0c45b225 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x0c511bc1 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x0c55aea3 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c55e39b sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c638e51 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x0c6c35cf fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c87a217 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x0c87d952 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c97e3f7 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc12ac1 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x0cc96690 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cd4385c __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0cd5ac30 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x0ce06100 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0ceb71b3 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0x0cf1d93b devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0cf58005 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0cfa688f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d0cd7aa __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x0d0e035a tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x0d10f6bf edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x0d14a44d usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x0d15ba54 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x0d2e8047 tracing_snapshot_cond_enable +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 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d676d4e regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x0d763d4b kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x0d7eedb9 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x0d9118e6 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x0da91568 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0dae64dd cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0db1e4b3 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dd896d8 dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e0ed796 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e168aae isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e1acb6f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0e1c715e usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e25c785 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x0e493038 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6df763 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x0e6f18e4 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x0e7f094d pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x0e863912 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x0e98ad69 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x0ea3f31d regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0eb45915 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ec72d0b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x0ed2db28 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x0ee14137 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f1501ad device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1974ab __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x0f1c071c fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x0f21b39d nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x0f224e18 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0f244045 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0f261da5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f427ee9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0f4b9512 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0f5bc84b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0f62cfeb genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f70d054 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f99696e devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fa89425 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x0faa0ae7 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x0fb58951 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fc37562 amd_smn_read +EXPORT_SYMBOL_GPL vmlinux 0x0fcad17a kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x1010c587 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x1012d950 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x103f9316 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x1041674d dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x105616e5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x1061383f cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10912e0a serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x1093837e __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x10b45f0d vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x10b5a2b1 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x10bd5c52 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x10c672b6 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0f014 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1135b3ec srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x114f0662 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11517a43 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x11652f3f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x117c9cec user_update +EXPORT_SYMBOL_GPL vmlinux 0x118564b3 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x119a0915 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x119ac005 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x11a20d87 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11c0065a ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x11da5ef0 kthread_flush_worker +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 0x11e46449 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x11f15bac sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x12084b1c of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x120bcb1c __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x120fad2c sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12285ffa xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x122dce96 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123732f0 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x123af1de thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x123c1da2 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x124cc58d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x125c9a95 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x1267509a cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126e28be kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x1292c81b nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12a830ed irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x12ab619f fuse_do_ioctl +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 0x12eeb158 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x12f2570d led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x13032c44 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1309bc05 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x130cacc1 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x13136d64 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x1318a12b folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131ef58f switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x13300673 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1336d50e extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13526fb9 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13621b57 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x13739f0f iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x138714bc adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13a474a3 devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x13b23347 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13ca1b05 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13e8ccbd crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f2ea3a virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x1410f776 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x141cf318 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14268620 sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x1426f03d acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x142f4b21 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146eaf85 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm +EXPORT_SYMBOL_GPL vmlinux 0x147bb461 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x148967f9 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x148a6b13 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x148d4922 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0x149d6f53 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x14aa23e0 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x14b00548 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x14b0d0c9 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x14b9bfd3 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL vmlinux 0x14ba4de4 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x14c57752 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0x14cf3142 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x14d37a53 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x14e7b9f6 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14eeded2 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x14f797d6 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x150218af ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x151e8756 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x15329d8c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155e9c89 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x1566a21a __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1573098a sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x157bb373 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x1585a4c8 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15ccbecd iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x15d4e63b dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x15d89708 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f4644e usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x15f4742b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x161d0371 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x1631cfbd get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x16323945 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x1632a3ea gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1651cdfa ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x165370c4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1653a907 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x165ffbc5 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x166a0876 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x16709496 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1672d0ab pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +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 0x16949838 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x169b65dd debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x16accbc4 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x16adfafe gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x16c2168a xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x16d3d613 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dd183a pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x170866e6 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x1709cb5d fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170dd8ba irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x17221375 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1724d9e9 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x17272571 rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x17332c68 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x173fbee2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x173fc214 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x174dea9b led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x174e82bd dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x1754cb28 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17856160 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x1785ef56 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x178bbab0 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x17a90b23 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17be703a bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x17c59bc7 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x17d302d2 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0x17d72d3c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x183009d3 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x183728a7 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x1846236f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x18491ffc pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185cebe7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x185e9df4 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186e1c92 thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x187150ab driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18bf0441 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x18d18094 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x18d61bfe serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x18dfe2f9 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18ed688d __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x18f1c94f ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1905a28a __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x1905f496 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x1935d18c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19383d52 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x19399aff component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x1945234a pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x194d777e usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x194f4da1 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x1967b72f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x196d73d5 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1984e770 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x198f7ed3 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1991c60e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a9b463 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x19bacbdc clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x19d4b20d dst_blackhole_redirect +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 0x19f8de22 tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x1a0e72fe hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a10e955 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a216bcd __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x1a388398 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1a4217e8 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x1a453296 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1a5fbe8a devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a719a95 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1a826c75 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x1a91a309 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x1abbc69f serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1aebdcb7 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1af63871 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b00bf2e smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x1b03ac06 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x1b0d84d1 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x1b242f01 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b34fa21 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1b3d5120 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1b47b92a add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x1b4cf632 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5a890f devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1b5df2ad devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b617c0b mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1b72432d spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x1b7e9220 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1bac28d6 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bd11234 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x1be4c6db gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1be850c6 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c09cbac gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c208e77 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1c2f5db5 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x1c316770 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1c368a15 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1c3e21b5 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x1c43637b dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x1c4499a0 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x1c4f43cd cpufreq_freq_attr_scaling_available_freqs +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 0x1c687e57 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1c764526 __SCT__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1c77414e __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cae2884 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x1cb54288 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbcea84 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x1cbd745c __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ce800ef devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1cfae8b5 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x1cfe2c62 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d192ad5 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3ba85b wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x1d3dfb59 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1d4884c7 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x1d62f375 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x1d771248 put_device +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d824be5 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x1d8476ef fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x1d84afa1 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1da12ad6 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1dc77ba2 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x1def9c8b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x1df5509e wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e03f74d preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e17754b efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e17ef97 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x1e2fbe8b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e50ec11 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1e53bbb9 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e5f124c gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e88f768 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1e8bc6a1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e961f2b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eab9afc sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1eb16509 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebdf014 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec2bff7 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ecf87f8 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x1ed44635 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ee11655 devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x1ee7e575 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1f139bb1 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f2374f7 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1f23ff10 em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1f277780 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f4276df __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f587631 spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f606a18 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1f699dd8 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x1f6a5c1f iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x1f771f57 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f895fb8 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fb2085e __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1fb5a0ed spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0x1fcd5be3 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x1fd4898b fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x1fdceb40 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe7e227 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x1ff4378e nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x1ff731c2 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x20069e38 sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x200feceb mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x20112fc4 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x201b705f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x2037b6bf crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x2038c080 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x2046198b rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x204fbfca cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x205b9f11 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x20957e99 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x2098aa2a __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x20b579b7 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x20e93580 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x20ec9516 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x20f6e08b bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x20f846bb open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x2146cb76 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x214cc4c9 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x214d18d1 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0x214e2f1b dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x2166416c tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x216b36c0 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x21728c9b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2175270c crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x217a074f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x21928d84 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b0137e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x21c77966 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e60452 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x21e9d691 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x21f678f2 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x21fa45c7 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2209a705 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22214634 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2239c11a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x223e4c49 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x225ef606 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x2264bba6 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x226f871f iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x2276dd95 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x22833793 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x2293fad7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +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 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230c4267 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x23118328 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x23280bb9 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x232a49b6 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2338570d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23461311 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x2367a096 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2372a3bc transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x237eda8e dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x2384d9f2 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x238f0490 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23adecfa gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23bbc57e kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x23bd6e3e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c985a2 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x23d41be8 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x23e19f87 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x23e92375 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x24015121 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x240170de __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24331410 encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x244770eb iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x2453d6c3 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2469a4cb dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x246bc6c5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x246d678e of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2489d3cd __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24abc127 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bdb85c simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24dea17b devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x24e4ea85 xfrm_audit_policy_delete +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 0x251b755f vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x251f23f5 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x252b31be genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2536ad06 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2539e563 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x255d37bc dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x256256b3 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x25634d46 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x256e9f8e tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x258387fc blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d43dea vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x25d69b30 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x25da4785 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x25e21989 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x25e5a039 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f40960 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x26172822 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x26394767 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x26479184 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x264a9e40 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26536c2d reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x26567dd3 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x265b6e29 hyperv_flush_guest_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x2660d033 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267e135c bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x267fef80 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x26848166 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x26934a6c tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x26956328 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x26a24a52 component_del +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26d1c8c7 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x26da75bb skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f059a1 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x26f453a3 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x2718e06c device_attach +EXPORT_SYMBOL_GPL vmlinux 0x2722a28b devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state +EXPORT_SYMBOL_GPL vmlinux 0x273fc6af iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x274b2a82 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x274d2c74 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x276013dc ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x2763ba9c rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x276b696f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x2772b2fd regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27918c60 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x2796119d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x279947f1 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x27ab7314 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x27b362e9 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x27b72524 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x27c2b102 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x27def68d devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x27eea003 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f96575 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fce782 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x2800222e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x281610d5 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x2819fd7c vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x285f95c2 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x286198d2 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x2867b407 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2873cfb6 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x287702c2 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x287e5136 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2880ab26 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288b658c PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x2892bb41 __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x28a5bab1 devm_clk_hw_register_fixed_factor_index +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 0x28b5a4ef __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28c04311 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x28d4d42b devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x28e32bbd usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e6efdc gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x28ff5dc3 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x290191fa pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2907f401 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2951a335 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x295bceec cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x295c1c7c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x29616235 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x29620a09 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2973727f acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x2976673a dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x297dda08 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x29968df0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x29a14b9e phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x29b5f6f1 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x29d56dbe blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x29ea1570 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a4aafb9 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x2a5445e6 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2a5d9cf7 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6b13b2 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x2a88e92f auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a96ca68 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9c61f0 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2a9e2107 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x2aa3c4ff xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2abb6ce3 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x2abb93ea rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x2ae482b1 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2af737cc sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x2aff1dd6 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2affdc7a acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b16bf4b serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b1ad061 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2b1b1929 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x2b1caaa1 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x2b2bd4f6 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2b2e3636 ata_scsi_unlock_native_capacity +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 0x2b621031 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2b635c16 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b68cee1 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b7cf8ff wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b81d1fc gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2b84c246 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2ba647bc __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x2baa12b5 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x2bad050e wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2bb19af1 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x2bc8f698 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x2bdb7083 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2c050a64 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2c0648a3 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x2c08b889 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2ac7c2 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2c2c3925 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c2e09e6 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c40b0c5 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x2c5bec61 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c5fe490 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x2c61bb09 uv_bios_get_pci_topology +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c65a4db vchan_init +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 0x2ca89fe7 snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x2cc6726a pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2cecc7f4 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0e82e8 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1c5e69 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2d2b9306 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d34bdf4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x2d393f48 intel_soc_pmic_exec_mipi_pmic_seq_element +EXPORT_SYMBOL_GPL vmlinux 0x2d397b68 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d42e746 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2d44be3b __SCT__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2d5512be inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d714f5a thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2d77ea8e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2d82b10f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d8a2309 irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x2d9d5126 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2daf3202 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2db45aab tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x2dbf2296 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2dc6777f genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x2dd62f11 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2dd747e9 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de403e6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x2de49a0f find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x2de8eb5f usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x2df0d459 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x2df867dd metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0c0100 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x2e156b15 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e2eda95 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2e324ce1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x2e37a09a tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x2e393dc1 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2e59eb4a iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2e5ed6ac usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2e6e6158 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e812f0e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x2e8e4237 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e98cd85 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ea3d6c4 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2ea5240e fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x2ea5c920 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebcd38e icc_get +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef3142e do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f095bf4 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x2f0d2030 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1414a8 virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f32278a acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2f465b7e ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x2f482d04 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f59fdbe sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2f616e18 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f71dc3a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2f8f54a4 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x2f990157 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x2f9ef5e5 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2fb1eda6 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2fbb7f74 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc4f3ea sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2fd6c162 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2fe414ed debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x2fea1cfd edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x2ffd111c pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x300663f0 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x301be4e8 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x30378216 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x3054d2a9 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3079287d iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x307f262c ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3084833d bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0x308c7632 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x3097fa63 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x30a673cc ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x30a8112d pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x30aedda2 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x30c370b5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30e0dbfe badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e27db4 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x30ee68fa irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x30ff291f pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310aca27 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311a0cba nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x3125a98b ping_err +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a0364 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x31477f2d crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x3154f75c pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0x31592658 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x316d47c1 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x317557bc sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x318835ae irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x318a9a77 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x318d4abc strp_process +EXPORT_SYMBOL_GPL vmlinux 0x318f4122 input_ff_event +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 0x31a865d8 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b7632a __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x31bf17e6 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d35c6a set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31de30df vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x31e402cc skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x31f61151 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x320c3bc7 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322fde8e dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x32493f07 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x325e5cbb screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x326b836f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3278416a xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32a3434e pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x32a35ee2 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32bba384 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cd46e4 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e2b75f intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e47447 genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32e7cc74 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330573fb ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3321e8ff __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x33251921 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x3337baa6 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x333dbf32 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x3341af14 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x33694981 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x338a726f devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x339404b3 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x3395fdc7 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x33a115d6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x33a42414 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x33b1cf7f blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery +EXPORT_SYMBOL_GPL vmlinux 0x33c2f1e6 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x33d479be mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x33d8d2ff regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x33dd4d5a dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x33e5be20 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x33f0fdaa fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x33fb8461 __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0x3408110b __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x340c8810 __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x340d79a2 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x3444ea8a xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x3458d60e regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x345db8a3 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x346d4978 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x346e96ef crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x34782039 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x347dcb7c gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x348a9eca driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x34db2412 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34eb9da1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x34f24fde regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x34f2fe19 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x34f6fc39 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x350ebac9 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35269b5e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x353c4b15 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x3540838a l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3557ae02 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355cc2e3 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x35643730 crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3574a7f9 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3595debe powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x35b0f4c6 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x35bb4dd1 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0x35cf1bba power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35d78afc __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x35de40e8 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x35e567d4 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x35ef7543 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x36146fa6 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x361d1551 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362bb183 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x364fbeed devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36551456 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x365a97ca tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x367bbe09 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x3683376c __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a93e10 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bc04bd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x36daa497 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36f82558 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x370588b6 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x370ec78d virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372fb81a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x3753549d devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x37589884 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37bb7a18 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x37beb3e5 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c0cf4d pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x37c2ed56 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x37d46efd ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x37dbdae4 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x3811d56a mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3814709d spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x3833df78 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x384e280c pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x38507107 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x38535e3f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x386feb04 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38724875 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x38914fb4 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38b6feaf clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x38bce2cb dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x38bd5a74 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x38c05585 vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38ca4e24 mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x38dd2d33 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x38de11ec regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e8f912 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x3906b1e9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x39088fb3 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x390d4e4e skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x392d68b1 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3959dd9f l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x398d100c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x399a0b53 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x39a1bd64 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0x39a6b431 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cb2abd acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39e042b0 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3a001269 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3a0175c7 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x3a021ec0 input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x3a1517b1 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a1ff8d3 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +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 0x3a56909f da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a5a2c22 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x3a78dc58 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a81e53d dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x3a825a0f usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa15a5b __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad1c01b bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3aef0b51 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b06c4af devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3b0c8614 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x3b1d0c9d devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x3b3f1917 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3b4454bc intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5a7910 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3b61f3e8 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b7d1e15 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x3b8fb8ab ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x3b907527 regcache_mark_dirty +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 0x3bb0ae70 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x3bb8cb24 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0x3bbaa536 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x3bc3568f usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdedcc3 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x3be65439 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3bef0806 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bffea1a __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x3c060ae1 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c19c61f led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c220a35 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x3c257143 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x3c37407e dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x3c4038e0 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x3c46318a __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3c591b4b iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c66f2e7 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c85ddb0 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x3c913dfb usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x3c9cc63c devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x3ca3ffa4 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc140ad crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3cc153f6 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cd01b47 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cf19c6a vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0x3cfce936 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3d04b768 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d0a8094 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d1862e1 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3d294bd8 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3a47df irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d55813c key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3d5846de i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x3d67c628 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x3d6fe6e2 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3d84eeb2 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da3f544 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dd9da28 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3de0a022 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x3de64289 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3e0b7499 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x3e0c7019 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3e10ce66 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x3e190c70 __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x3e289d52 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x3e31c394 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x3e3a15a1 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3e3bbd41 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x3e556a2c serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e64d861 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e85fd78 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x3e90c17f handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e963b17 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3e973ca9 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x3ea40edf gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eaf136d __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3eb27416 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x3ec1e915 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3ed9250b mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0x3edc6527 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x3ee3a25e put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3efd8231 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x3f2688d1 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f27f809 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f321b64 memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3f366b5d devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x3f3678c9 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4c71f8 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x3f535293 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x3f74ca11 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3f78bb76 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f993e35 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fca0b5e pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x3fd03517 icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x3fdc744e irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe3b715 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff01e4b badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400f7e24 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0x4010c44e dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x401175ac clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x401f7720 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4021d741 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402e78cd blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x403d2029 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40400767 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x40474e8e fib_rules_register +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 0x40809c9a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4083b6ea ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x4097a0ba irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x409a5afa extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40b0752e usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x40b17787 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x40b3b7e7 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x40bb5aa9 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x40bd43a3 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x40cacdbb tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x40d1b14d crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x40d5de6f pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x40e7a8d1 sk_msg_free_partial +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 0x41039777 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x4108af2f tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x4108d36a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x410c13e7 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x41234429 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x41379d5e mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4147035d regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x414f9751 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4167d386 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x416fce40 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x41718a73 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x4190de89 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x4194c6dc iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x419da510 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x419ef828 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c6afce kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x41d011a9 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41d9eee1 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x41dca779 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x420045ba sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x421ee2b7 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x4222580c uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x4222f3b0 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x4223ef98 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x423061bf __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x423b2882 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x4247704f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x424bdd43 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x425737e5 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x4260f54e debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426799e7 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x427aa976 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x427bb219 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4288f89f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x428f33cb acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x42947fc3 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42ac65e9 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42c76017 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x42cbcf4e virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x42d6d8bf device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x42dc646f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x43080222 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4311910b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x432987ec hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x4335bc0d blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x4348f09b crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435976c6 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x435d88e2 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x43653c99 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x43655f3b inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4372e78d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x437dd34a irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43873151 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x439011fe phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43bb4389 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x43bee916 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x43da68fa crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x43ea5409 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fb9d6f umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x440527e7 hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x4409a88c vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x44339182 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x443b3ab0 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x44581262 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x4463daca sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x44752dec regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x4481ff9a irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4486e226 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x4492f565 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x449b202f pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bfa14c bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f0b0a6 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x44f2dc1c acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x44fa8823 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450a6502 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4527237c dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x45273df5 nd_cmd_out_size +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 0x454844df nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x454fee96 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4577c1f4 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x457ce789 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0x45928b1f acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a15b29 register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45a80fb6 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x45aeee1e ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x45af48b6 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x45c993ca regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d1dae0 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x45dfad21 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x45e3e1a4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x45fcb1d8 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x461185be pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x461676a0 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x4620c0d0 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x464bf4ed phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x464e1aee mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x4660bb1c vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x467759b6 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x467f313f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x4684365a devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x4688295c addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469ce136 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a4c1da i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46c16eb6 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c6d6af spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x46d8f60f preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x46ee4c62 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x46f11ef3 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x46fe9164 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4718b51e mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x4719091e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x471c0fdd __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x471e3406 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4723b7ba fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x4729c2c9 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x47346176 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x473d743f ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x47499c59 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x474c0df5 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4775fdae pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x4788f068 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b31950 __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x47c2469a xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x47cd59ce ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47db3fef skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47df7cc0 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x47e50499 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x47ff6817 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4821be7c rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482ab941 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x4842dcb0 __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x48565917 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x48602921 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4864b33f led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x487bef2b is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x48931e20 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x48949ce7 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a949f5 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x48cfd74e ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x48dbbefe sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x48edf9c2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x48f9e533 i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4905df5a bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x4915821a __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x4915ac29 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x4916b467 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x491e97c5 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x49351f72 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x49381098 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x494844fa set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x495ff30c set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x496c3751 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x4978d322 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x49870ba5 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x498b59c4 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a4b68e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x49b8edaa ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x49c1c763 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49e61d05 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x49e8ac17 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb90a7 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x49f61e08 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x49f95552 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x4a031347 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4a0a573f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4a135718 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2f31ec crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x4a3bbbb5 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a452665 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x4a454c0e posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a50c246 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x4a72abc0 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x4a74d165 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4a78cf3b regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a947ad6 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x4ab83d78 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4ab86251 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ac43d1f free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x4ac48463 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x4acab934 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x4aea86ef dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x4af64d7b pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x4afa0231 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x4afa6a26 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x4afe72e5 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4affb478 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x4b1b4bf5 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x4b1d52de devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x4b3c6278 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x4b3d8a81 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x4b464b07 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x4b4d6ddf xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b555583 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b58cd37 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x4b59da8d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b702da4 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4b708d07 fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b7bca1a usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bb01642 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4bb08c50 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x4bbffee0 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4bc7ed07 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be4c851 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c0fd15b put_pid +EXPORT_SYMBOL_GPL vmlinux 0x4c12b791 bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x4c1dc12e usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4c21dacb inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x4c25be7f device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c364b97 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x4c3c2b73 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x4c3e9f72 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x4c44adc9 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x4c490f11 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c50e850 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x4c5149a2 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c5f6b8e init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c63d905 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x4c7059c8 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7a4a4e xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c8ea0ef ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4c97e60c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x4c9e10c9 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0x4caee66f clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cc74663 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4ccb64af __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4cd39abb __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ce75232 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ceda22a serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d06edd5 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4d1b0f61 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x4d2d7e89 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d57be71 fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x4d5b2252 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0x4d60d6ea sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d71f9c0 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d79ef23 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x4d819169 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x4d9031dd intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x4da96bc1 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dcf0b84 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de04036 __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df1f8db virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e100a98 msg_zerocopy_realloc +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 0x4e34cbf6 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4e3941dd iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e3eccd4 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x4e42b0dc devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e75972d gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x4e852b13 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x4e9847d5 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eafcb33 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x4eb137c4 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed0b15b kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x4ee65275 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f07e015 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x4f0c5726 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x4f12d4d7 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2a39e7 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2e07ad io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x4f421fc4 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x4f4338df devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x4f4cc4d1 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4f54c076 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4f5bd37a pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x4f61559d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x4f66fa7a synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f78adce __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f9f3fa2 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4fa63757 xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4fae9d3a report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x4fb0f4d7 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4fbc9e69 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x4fc7a6ee pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4fc7e031 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x503ac608 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x503bd194 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x503ee8ad __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5040ec0c mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x50562572 __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506554cb __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x507876ad sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5086d119 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x50892715 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x508a0d15 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x508a5fe3 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50954f72 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x50956faa __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x509d50a9 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a0e622 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50b770e4 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x50cb9c63 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d5dc5a raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e5c505 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50ebbf67 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x50f1a936 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x50f5b24b fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fcbc2b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x51200bee crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515b74e2 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x515e298a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x51804887 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5180b4a6 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x5183c106 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5187aa2d class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x518dba4d device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x519f6524 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x51a11128 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b9b2fd gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x51bff8e1 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x51c3d038 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x51cc725f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51fd6f04 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x5210c8e1 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x521a5a06 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x521fd87c nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52434174 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0x52436c1e regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52508353 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x52574c96 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x52593744 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x52684018 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x527a2325 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x527f092b cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x529851e6 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b29622 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52cc0844 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x52ceb9d4 regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52ddf3c2 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x53046e0f ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x53201924 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x53312364 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x53340785 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x533d0fc6 of_css +EXPORT_SYMBOL_GPL vmlinux 0x534327a8 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x53804910 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x5393323c crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5395edad usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c24905 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x53cad7ee regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x53cefd2d alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x53d1984e i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x53d5179b iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53ec0e67 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x53f76932 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x5400e6e3 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x5411810f regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5413050c serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541c1359 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542454de usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x542d0bbe udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x5432139e pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x544a6624 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x54526e94 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x545910ba acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x54660c30 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x546cac68 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549de4f6 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x54dfb40f irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x54f946ce cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x54fc61df securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5504b8de fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55197dfb blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x552f6a48 __fscrypt_prepare_link +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 0x55462474 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x554cc4ea pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x554dfec1 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x556c4db3 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x558491c9 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x558f1c1a __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x5598b93a clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x55a4af5f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x55b62df8 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55d46e1a __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x55e871e3 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55faf675 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x56067f89 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x562201b8 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562df8a3 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x563ecb24 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5650c6f4 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x56601f71 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x567f66ba pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x568ac86c dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x568c40a9 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x5690c59b crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x569167d4 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x56925d0d of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x56988aa4 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x569a41f0 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x569e10d9 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x56ac2bd5 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x56adf780 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x56d0ab0b mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x56d1b22e tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x56d4bf45 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x56d9bdbb spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x56d9cb0a md_stop +EXPORT_SYMBOL_GPL vmlinux 0x56e813da dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x56fba774 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x56fe945b vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x570bc6cf fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x57148565 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x57460308 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57490dfe sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5784c5cb tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579327e3 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5799e0f2 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa8b54 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x57acac01 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x57bc7758 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x57c255e5 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x57d0828a pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57db209e pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x57ecfb21 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f8cd00 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5804b0df ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5818a6a6 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x585cebc6 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x58758018 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587d345f perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x587ede89 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x5891a7d5 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x58926cd1 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x58a22eb4 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x58aa6397 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x58af980b fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x58b8f984 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e42c0c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x58ed0e01 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x58f683a7 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x5901eaa5 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x590d8343 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5920cf1d __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x5927de60 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x592de784 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x59356ac3 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x59486f09 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x5949106c bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x59502226 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5956c8c7 usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x5970af47 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x597d88da iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5980390d ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59874788 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5997478f pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x59a06699 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x59a7341e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59ba037a proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x59c32825 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d100c4 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x59da6c8a cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x59e8d15c bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x59eb94d3 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x59ebe6d6 klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a141142 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x5a191656 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5358b0 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x5a628c5b pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5a686af5 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a785855 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a85c242 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5a94c8c6 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5aa091b5 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ad98ec5 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5adeb83a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5ae1f48e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x5aeb13ce vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5afb6d4c __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b1fdc78 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b2d71dc __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x5b31e0a3 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5b323b54 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5b3546ca transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b41a128 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5b430b18 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x5b43634c inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5b571aad ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x5b6157f4 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x5b629b01 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x5b670427 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x5b692883 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b7114d4 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x5b7341bd wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5b8cb816 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x5b93283d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5b94c86f ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x5b9c9a6b scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x5b9e5b5f switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x5b9f6b30 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ba681f2 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5baa624a __kernel_write +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 0x5bef9d37 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c1f46a2 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5c1f7946 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c5875c8 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6b52f4 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5c6de681 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x5c81fb97 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x5c95dc6f iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0x5c960746 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x5ca10578 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb0a1c7 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x5cb9e8ef __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x5ccad799 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0x5cd17fc6 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x5cd97f4d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d058b7d __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x5d05aed2 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x5d080d50 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d25e79e ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d4063b7 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d454f51 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x5d473748 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x5d483f04 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x5d4a0a6c dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x5d4dd102 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d6be4d7 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x5d759f93 create_signature +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d872325 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d99cac4 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5de88353 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5dedc7c2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5dfc2ef6 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x5e0c90cb devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e17e1cb dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5e27ba33 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5e38503e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5e41eb74 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e68e530 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5e6a2421 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5e6e3ce2 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x5e7065a8 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5e74f2f3 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7da0b8 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e85cab9 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5eb43af3 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5ec3a5c4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5ed19d40 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee4171d acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x5f05afd6 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x5f07c50b dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x5f14fe3f find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5f1ae27b iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x5f1f8735 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f23e9db rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f45436a clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5f540cd3 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f5ff369 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x5f69434c tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x5f6dcad3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f80611b trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5f8bc4d7 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5fa17bd0 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fbb5e92 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x5fbe00fd usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x5fc5e598 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0x5fc7bf18 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5fd09221 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x5fde63c7 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ff54fd9 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6006ab3b crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6014459b dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x60409924 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6045c9b3 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x605661b1 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606fd75b __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x6070fd0a rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x60766f99 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x608e457f irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609b79d5 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x60a0cd34 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60a7c2bb pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60c7a822 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x60ceb9bd ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f30ee1 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x60fdb226 device_add +EXPORT_SYMBOL_GPL vmlinux 0x610a20a1 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x610b2a39 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6116403c dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x61232481 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x61260bf7 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612b62a2 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x61429530 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x614a27ff tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0x61509772 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6169ae9f bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x6175fd1c gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x6179354c __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x6186f8d1 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0x61901594 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6195242a skb_scrub_packet +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 0x61a382f8 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x61adbe1c __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61c743b0 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x61d2b8e1 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x61d6a754 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x61dfc5ba devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x61ecb772 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x61f3b747 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x61f4f358 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f696d6 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x62055839 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x622ae5fe irq_domain_free_irqs_parent +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 0x6257b042 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x62601a48 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x626a223e intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x62899450 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6292a6c5 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x62a42688 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62bcda8e usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x62d0482d sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x62d31645 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x62dfe465 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x62e11f01 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x62f8f5e5 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6307f43e xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x630d9ea1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x63226f81 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x632be0ef adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x633222d8 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x6337a085 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x633e0128 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x6352bc2f clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63717a48 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x6371d79b alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x637624e1 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x637af990 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x637fa335 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x6381c770 vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x638dbeb7 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6396d412 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x639c11aa blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x63a984aa devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63aa2bb0 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x63af65b0 __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x63b3c73f i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c13aed nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x63ca47f2 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x63db4bb7 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x63df8215 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f78e87 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x63ff3673 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x641f77b3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x64218ad5 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x642e9389 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x642ef593 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x643b742d led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x645620c0 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6469fa63 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x647a53a9 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x648ad2a0 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x649aedcc iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64a93040 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x64b3087b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x64b8f931 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64ec11ba vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6516cced get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x652dcb64 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x6547a550 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x65563441 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x65600d70 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x656ed864 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x657f3b22 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x6583d4c8 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x65930ac6 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0x65a8d81a __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b63cc7 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x65bf9df9 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x65ca2b7f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x65cb81df serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x65cc7ad0 gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d8e249 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x65de1186 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x65efdede bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x66022233 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x660afaa3 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x660b4695 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x660f08d6 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66187a05 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6628b6b6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x66367609 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663725c2 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663d41b9 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x664879ba dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x66572c3b __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666a6c4c udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66849e52 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x66a9b207 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x66af9c79 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b467be platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66ccd522 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x66d670b3 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e38f89 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66fa2b8f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x67057bb2 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6722b7ab regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x67244aaa acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x672b96b2 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x67384475 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67448b82 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x674fb95a vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x67564ec0 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x676163bb nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x677112b6 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x677ba9f3 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6787e098 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x678a561b devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x6791faea attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6795814f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x679746d0 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x679936e4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x679b6f05 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x67a6210a dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x67b6cdaa icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67ebb58f pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x67eebdc8 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x67f05acf pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x67f58f8b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x67f89a78 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6809449a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6825cb2b node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x685752b7 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x686197d7 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x68630ef9 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x686a7c70 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x687513cb fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6875a057 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x687a7452 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x6895f24f tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x68a2ff51 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x68b5f720 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68ba6623 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x68c3add4 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x68cd4ec4 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x68d9cc67 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x68dc9a86 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x690207f7 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x6906c186 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6909b136 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x690b89ef __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x690e58ed extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x6918a646 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x691a1563 power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x6929218a debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x692bbb81 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x692ca63e netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x69308a98 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6941459f ethtool_set_ethtool_phy_ops +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 0x6979c616 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c5d50 fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x698d79e4 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x699ae2c5 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x69aee1a9 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x69b97c21 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69d4f3a6 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x69dabbb4 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x69db445f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x69dbc43e clk_register_composite +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 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a099080 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6a117156 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1d0a1a fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x6a2eacc9 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f0294 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a520d29 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6a5264be ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x6a535447 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x6a53782b __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6a5430df device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x6a7b442f clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x6a7caed4 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b7d12 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x6a9bca12 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x6a9eab59 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa56b28 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6aaaf816 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x6aab9354 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6acbdc25 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b3dc2a6 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b538aa9 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x6b53dab6 devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6b5b6256 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6b6f2f54 rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b801df0 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6b8154ba unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b902018 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x6b90f6b0 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x6b9551f0 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6ba839fe blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb4cd3d dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bccd9b8 fat_remove_entries +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 0x6bfd6ca1 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6c1b86f2 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c25ae97 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c48272b irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5888e9 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c83e19b io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x6c8a3833 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c8a46b5 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x6c8ebe09 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb8faee inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x6cb95aca crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x6cba2900 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x6cc3c004 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x6cca28e2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x6cde452a lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x6ce6d791 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x6ceb4088 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x6cf076ca mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6cfb5d28 wm8350_read_auxadc +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 0x6d155f91 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3520a0 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x6d367be5 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x6d538627 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x6d56a2cd wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6d597ca8 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x6d5d7e82 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6d6bddf7 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d702bb8 blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7d5d36 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8d9e46 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x6d95ec7f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6d9e2b38 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x6da200e3 component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0x6db65c1a iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dd28429 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6ddb68fa vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x6de08fea sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x6de3a4cc aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e047f75 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x6e09cdd5 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x6e1a9b3c xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x6e22da93 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x6e24d3e3 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e4923a1 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7cefcd wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6e82dbe2 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e8825f6 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea4afec ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb36203 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x6eb6d446 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ebe6e2e fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x6ec43121 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x6ec7ba60 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x6ee466d6 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6eea64da fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6ef0b8fc rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f294b3f __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x6f2dab40 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x6f4551a7 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x6f5ffa95 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6f6684bb alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6ba4b6 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x6f703ecd pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f73eb23 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f7e0a5e fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8aa9e4 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fc7bb3b fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd3f874 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6fd40609 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x6fdf5197 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fe32a62 __synth_event_gen_cmd_start +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 0x700d6ab3 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x702abb72 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x702cd996 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x702e97d6 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x7042e384 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70464f34 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x70478bdf crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x704b7804 hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x70508f21 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x706aab6a vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x706e3257 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7070bd9d blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707a3d1f pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x70999443 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x70aebf68 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0x70c2bbd2 dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70ca463c md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cfb05d ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x70d515b3 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x70f6ef4a hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x70faaf6a dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71185e6a fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x711c4ff4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712ca328 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x713dd136 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7150085d tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7158d98e devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x7159a68d sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716ad66b of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x71701079 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7172735a acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7177af67 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71877d58 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x71884e76 iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x7193fdb9 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a502dd sata_link_scr_lpm +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 0x71dfbc3a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x71f6912f serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x71f8bf92 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0x71f95506 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x71fa87cc tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x72010bbd crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x721ff714 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x722808f6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x723ea67e usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x726dd96f inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x726f04ff fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727c55dd dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7286b815 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x72b16f0a dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x72c15383 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x72c7e18e usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x72d0adea acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72d7d134 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x72fcc923 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x730ad8e2 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x731183b1 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7327a895 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x73311254 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x733bc08f gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7348e0e6 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x734d533a ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x735917a7 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x735b38bf ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x735b7dca fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738624e4 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x7396643f extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b0c9af power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73b2f248 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c7709f cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d12797 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x73e5ddaa cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x73e62a41 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x73f5f631 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7401bff0 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x7417d9ba pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x74197d7d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x7428575c pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x742872b1 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x74356db2 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x74398626 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7441bb03 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744f5eac devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74639b3c fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x746e25f1 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x746ecdd0 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x748c3a9e umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x7494b8f1 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x74ac3590 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x74b031a5 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c4952d dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d36933 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74edc206 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x74f14048 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7504c398 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751ab68f kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x751f5281 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752b0fa7 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x752de70e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x75343ce3 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x753e116b regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x75458ece pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x75461426 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x755101c3 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x75532b7c fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x7555e23d dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x755bb617 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x75950e80 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x759922d0 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x759a42ca tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75a03847 vfio_pci_core_read +EXPORT_SYMBOL_GPL vmlinux 0x75adb43c __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x75b11da4 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x75b180da blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x75b466d9 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x75bedec9 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x75c96e1e xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x75e18d09 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x75e57da2 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75eac5dd fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0x75fb5488 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x760c3610 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7610b2f3 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x7640e694 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x764f292a dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a6d981 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x76c9f3d0 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x76d2a009 ip6_local_out +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 0x76dd9a1e raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x76f9e955 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772696d1 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x772c2e06 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x772f974c i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7774b0a5 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x778468d6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x779c4786 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x77a766fb device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x77a9c660 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b639a3 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x77b844ce bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0x77c0f975 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x77c8d22b dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x77cc97fd gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x77ccdda9 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x77d14405 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77f7bcba fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7824eeff perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x7825240e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7829277c platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78312a48 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x7835596d devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x7837644e wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x784ebf85 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7861ac97 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x788d68ac fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x78929fda dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x7893bb17 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789ef9bf pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x789f5ad7 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x78a102d0 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x78a381e8 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x78b1e04a spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x78b80584 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78c21554 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x78c66aaa handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x78c85ef3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78cda2de vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x78d00890 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x78d1fc19 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x78d89621 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e4e84a debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7911d9fe kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x7915cee5 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x791748c8 adxl_decode +EXPORT_SYMBOL_GPL vmlinux 0x79180da4 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +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 0x7957db96 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x797f2352 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x79813015 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x798f5487 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79b62e0b kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x79bb17f9 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79bc93e2 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x79c0fd09 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x79d07b7a irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x79d21841 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x79daf4de __SCT__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e59b40 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79fabd05 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x7a0ff403 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x7a2743ea md_run +EXPORT_SYMBOL_GPL vmlinux 0x7a5211b8 devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7a55b2c1 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a7a7997 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9772ce debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aabda46 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ad52088 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x7ae1453e mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x7ae36e66 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7af05310 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7af66d46 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7afb37d4 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b0a4687 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7b13b505 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b226380 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x7b394f30 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x7b420f25 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b5607fe i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0x7b5a3e48 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5ba098 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x7b65350a xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6d9360 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b78028a device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +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 0x7bbac1af pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x7bd122a0 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7be40949 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7c0c0479 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x7c0e1edb scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x7c11301b sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x7c12680e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7c1a4c98 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c3edaa2 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7c46c075 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7c56e775 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c815087 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x7c8a559b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7c8c9c8b usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7c94dc74 i2c_dw_validate_speed +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 0x7cab996a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7cabd27f blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb4d0c4 hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbaa0a7 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7cc941a7 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd4ef65 devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce25b12 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf1355f pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d092b79 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d112286 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7d18a296 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d357a4b cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x7d3efd4e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7d584d47 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5aaacc task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x7d6e60b9 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x7d9753d8 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7d9fa038 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x7db1bc9e call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7de8ddc4 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df950da debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7e0416d4 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x7e0434f1 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x7e1368e8 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x7e1943bb acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7e2880b1 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e3cdb13 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6862ba devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x7e6b5729 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x7e727238 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7d4a52 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d6657 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e8e69fb devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7ea5c6d4 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1c516 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebaa316 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x7ec7bfbe aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x7ed301b6 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7ed856ef fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7efb51b7 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f09fd18 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x7f1af9ed sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x7f231f06 gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x7f2cd562 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0x7f5708ee fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7f6448e9 fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f777921 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8f6e0e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9c64cd __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb96067 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fd31673 __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7fd31992 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7fd8c542 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ffd1254 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x80069562 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x8014f0d2 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8028fbd4 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x802c79ae agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x803ba982 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x803f3529 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x8081cbe5 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808c29fe dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809136e1 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8096f634 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x80a0e24d xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x80ae8eb2 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x80b45dd1 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d621c1 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x80da3326 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x80de5cbc fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x80efc9e9 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x80fb599b pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x810282bb subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x812aad03 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x813223e1 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x813c6f7b usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x81431099 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x8153cdc5 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x8173414d bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x81740a6c xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8191e881 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b59047 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x81c7733e devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x820444b4 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x820704fe pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820c181b input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x820ebc7a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8218663f extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822c1bc8 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8254541e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x82572ea5 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x826eaab1 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x82858a50 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x828d021a finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829eb153 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x82a42bff crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82e4de33 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x82e5a149 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x82e5bbdb usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x82e73997 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x82ee464b __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x82f77478 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x831f967b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832a2d99 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x83326975 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x834149fb eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x834ed358 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x835d717d pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x836a5ece acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x837b540f devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x837c712c tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x83846f57 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x83a176d8 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x83af9d48 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x83b70d2c edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x83b99c93 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x83c3708a clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x83c9c40f __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x83d22e12 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x83e049ac devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x83ee7297 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x83f5358d sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x840e0124 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x841ef8ae ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x841faed6 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x84204303 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8425b610 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8425f733 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x843a0622 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844031cf dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x844ff1ea nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x8453699c pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8467b41e tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x846e0bcc perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x84728609 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x847e556d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x847f0051 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x848a435f wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x84a152e3 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84b4c31d ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84c35991 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x84c777d0 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x84dc0216 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850bb6db devlink_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0x851b57ce split_page +EXPORT_SYMBOL_GPL vmlinux 0x851e6003 usb_phy_roothub_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x85254406 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x85381cc7 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x85400e88 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x854160ec devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855b465d vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x856e7690 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x85788c24 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x857bcf7c __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x858812f8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85baa6a5 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x85bd4fd5 inet6_csk_addr2sockaddr +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 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e3acc8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x85ecd87d __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85f0da73 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863af857 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x863b3af9 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865bd367 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866a9163 irq_remove_generic_chip +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 0x867d1e11 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868c22bf devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x868f146c scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x8693a2ea blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x86973fcc ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x869d8d8b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x86a47952 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86c97adb __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86ded68d dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x86e5919a shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fc694d platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x870ae2ce __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871e449d device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x87343ede ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x873b8325 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x87460e50 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x87576cd3 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x875a03e3 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x875cd894 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x875f051c tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x876cffae fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x878c8003 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x878d2ee1 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x879c8520 register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0x87b1d50c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x87be5f76 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x87bed7f2 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x87c96cf7 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x87cd35ec devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87d0f0b9 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x87db60f9 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x87e1b3dc __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x88040e28 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x880f60ac irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x8812222d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x882aaa50 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884b15d3 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x885a7c11 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x885d76f9 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8878f398 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x889d7985 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b3af8a rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88d45a66 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88ed50ea platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88ed6c7c ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x89041859 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8913bed6 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8930aea7 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894c73dc devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8965b674 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x896fc393 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8971c7e8 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x899042c3 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x89912760 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89b6cb91 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c415c1 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x89d3bee8 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x89df50c6 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89fe7d9f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8a07ba64 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x8a1f5cde led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a379247 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x8a380120 __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a439a97 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a48cc82 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a64bc2e uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x8a72f7b1 tty_init_termios +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 0x8a9ae3a4 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x8a9d6716 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8aa0f3aa acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8aa22883 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8aa4d95c mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x8aa7bf82 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8acff733 xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8ad28e5c crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ad6ac3e tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8ad7e229 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x8ae3dabf irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ae5d40c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8b08909a is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b24e1bd i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x8b289ac0 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5abc15 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x8b5d4726 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8b5d81e9 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8b65a152 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x8b8127e3 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b8d2b15 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b921914 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8bae53bf hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x8bb57115 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x8bb84d9f hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x8bf6e14d ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0x8bf903cc bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0782e1 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c14efba clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8c225f87 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x8c33467e xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c5da1f1 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8c5df9c2 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x8c6204a9 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x8c6be760 decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x8c6ce549 vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7afd05 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9dd834 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x8c9ed545 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x8cb43e19 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8cd2608d bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x8cf3f707 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8cf7280c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d10704d nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x8d15281b sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d1bda02 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x8d2014b3 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d25e9f1 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d413f7b pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8d4b2c63 vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5dc2d6 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d89ab44 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d90e486 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8d922725 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8d9c2a91 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x8da8bbd4 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8dac6edc usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dd09b71 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd50e8f led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8dede1d3 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x8df02145 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8dfda639 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x8e13923d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x8e37bb8a sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e447538 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4ec23f devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7377a2 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x8e7dff81 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x8e7f2928 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8e82d0ad srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e935bd5 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x8e9fc276 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x8eaafc46 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8eb66d15 devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8ec1514a device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x8ec927c1 msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x8ed1d080 ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x8ed8d52a devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8ee316c9 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x8eec3c11 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8eece959 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef6260c __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x8ef66e05 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x8efebd78 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f32124b clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x8f5a7466 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x8f637713 power_supply_charge_behaviour_show +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 0x8f8854b2 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x8f8ff554 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x8f98ef0f pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x8f9cdf2e serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x8fa878d1 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fae7491 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc8e7a9 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fd0c80a sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8fd4dec2 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8fe1e519 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x8fe60ab6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x8fe97b72 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x8fedfe68 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x900361d3 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x901e0869 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903be599 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x904400e3 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x90477827 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x90687735 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x90717699 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x907203ac ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x907f0386 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0x908295ad dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x90868193 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9086a75b blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x90891db9 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90b3a707 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x90bc4826 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90de7a17 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x90e2ff42 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x90e5e499 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x90ee1371 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x9100cfc6 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x91235d04 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x912cf83e regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9131ca33 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x913d6d43 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x913ff8c9 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x914381ab platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x915c99ca crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x915cdef7 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x915df531 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x91713f85 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x91720ff3 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9185f442 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919a9927 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x919ff632 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x91a84c6d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x91b369ef tpm_chip_unregister +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 0x91c8a691 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91cee209 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0x91e8552a __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x9216d6c7 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x92186691 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x9219ff79 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x92212d22 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92440258 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924deb24 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x9255a4bf tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x92661301 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x92746924 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x928aa5f6 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x928d1a04 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x92978f91 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x92a3e678 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x92b34baa __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92d1f783 dma_get_any_slave_channel +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 0x9313d394 dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9314f038 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9324ddbe mbox_flush +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 0x93477d33 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x93557c16 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9363d44a sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x936e554b devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x936ee24b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x93731687 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x93752388 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x9376e656 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x937bc67a uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x937d2aed rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x9382dd0a pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x93a48606 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x93a52213 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93b6dc43 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x93bbdf9d gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93c9929d devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x93cddcc9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d31efc tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941e3afc led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9422522e regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0x9424058f arch_haltpoll_disable +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942b8917 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x943304d0 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9450cd6d crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x945bd71b xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x9460aadd events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9477d59e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x947f4fa9 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949c1095 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a29bb9 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x94b17bb2 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x94c83274 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fec2c4 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x94ffdc52 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95188689 phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951bb409 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x95329d4d component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x95337ef0 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x955b31e1 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x956232f3 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x95683849 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9575b396 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x9581fe2b lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958dc7f4 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x9596e2aa crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95acdcd1 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c29c1e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x95c812f1 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x95c89a21 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x95ce89ec sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x96196f22 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x9625119f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x9626824d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9634a2ad pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x96378ac9 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9641a053 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x96447042 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965c1c6d devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x965d5dcd xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x9668c4aa __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x96812fa6 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x968a41b6 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x968dec74 xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96a2d6ee ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96ae31c1 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x96b157bf class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x96b20d19 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x96b89a2c devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96ba8d05 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x96cf4b19 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x96da667d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x96eac6cf usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x96ed0d3b regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x9710aa70 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x97122673 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97292c85 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x972db9af acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x97390a57 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x973fa68a vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x9747fc0f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977d7891 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x977eb743 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x978063a8 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x97849401 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x978b8abe console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x97aaa399 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x97abc7a8 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x97ae08f5 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x97ddbdc5 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e5c450 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x97f2b8fb genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x980050a2 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x9802ca79 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x98146c90 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x9816598e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x98328663 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +EXPORT_SYMBOL_GPL vmlinux 0x983b88e0 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x983d62b8 sk_attach_filter +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 0x98693abc ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98923a06 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98b20c9b ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x98ccc510 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x98e60d21 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x98ea1a8c clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x98ecf0ed tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f10da0 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x990ce4f7 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x99111cd4 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9916c5ad iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x99244de2 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x99267b2f task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x992a001e dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x9932e037 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x993c2b59 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99460469 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x9946fd0b rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x9951f429 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x996d6dd4 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x9983eff4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a8ce80 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x99c0570d ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x99ce3f63 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99e53b25 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x99e9a4a9 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a0845f2 phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a167329 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a263ec1 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9a371cd2 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9a37f941 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9a404179 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6b30f8 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x9a7e7685 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9a81ffba crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9a84c702 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x9a8f3798 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aa7cd8c kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab0ecf8 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x9ab78b57 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x9ac0c58e nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae9a22d tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9afc45b7 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x9b1cbbc5 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x9b1dfa0c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x9b4d5424 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b570a72 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x9b5c4698 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b80d49c pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b95d5b7 em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x9b99e668 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bbf72de mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9bc60531 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x9bced185 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x9bd0ba3d __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x9bd447c5 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfdbeff trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x9c0e8129 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c3441ce dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x9c3d7973 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9c6acf30 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c7f38d9 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9caf99f2 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9caf9e17 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x9cb00afe fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x9cb15ec5 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9cba5af9 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9cde08d0 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9cdfddac usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x9ced6d2d devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf86e9b devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d13c2fc unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d2748b8 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x9d3d49d2 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d507b50 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9d5aad7b ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x9d7031f1 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x9d72cbec usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9d38d7 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x9da04120 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x9da5b5e9 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x9daf329b rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x9dc4fc83 __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x9ddbd4c9 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x9ddd7163 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e07d3e7 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9e13beb8 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x9e1428f1 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x9e1fed9e dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x9e2e07b8 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9e314124 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x9e38cef4 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x9e3bf46f regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b3228 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x9e664646 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9e6d5de3 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x9e6e9b1e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9e6efa3b serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x9e758ed6 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x9e84dc8c securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9ebad2d1 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x9ecc6ee0 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9edd4cbe apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef1bfdd netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9f0746a0 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x9f0acd17 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x9f22c5b9 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x9f24c8d1 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x9f2bedaf irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x9f37720c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x9f39b292 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f5ad238 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f6bca20 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x9f807466 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x9f9475f3 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fa2a1d3 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x9fa51244 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc6957a dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x9fc6d7e5 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff2fbb0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa0255fb6 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xa02a5b94 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xa031b1ed __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xa03332be scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa04dc934 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0696e73 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xa077d6fe gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa07ccd7d blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa0821858 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa0accac5 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0c264c7 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa0c2890d xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xa0d2bce0 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa0d3063c hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa0d33f97 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d81b76 __SCT__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xa0dabb2f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xa0e59e7f ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa0e671d8 __SCT__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa1083fa8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa1094d0b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1095423 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xa10db043 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1363623 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xa138aba5 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa13bca01 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1686ae8 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xa171c39a irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xa1872a13 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa19db5c5 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xa1a68cc4 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xa1aafbc2 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa1c47be5 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa1ce7387 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1f213dd device_del +EXPORT_SYMBOL_GPL vmlinux 0xa1f48e30 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xa1f6083a __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa22232e8 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2383cdc acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xa2603063 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa26b6db2 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2713e2c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa284df4d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xa28b53bf dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xa29d0624 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa2a12083 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xa2aa60fe devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xa2acf088 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2b99f54 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa2bb7ef0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa2c57927 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2df1ece xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e50f09 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xa2e6b5cc umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa308526c xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa30fb913 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa31d6cf7 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa33df980 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa3484479 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0xa348467d device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xa34b0376 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa354a207 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xa356012a __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa35a4ae4 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xa35ae736 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0xa36d34d0 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a4f63 get_device +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38ca43d pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c44e1d irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xa3dbf989 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa3e37106 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f10706 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f569c2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa3f76a00 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa3fa8d6c inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa41b2f22 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa42dba7b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa42fcd2c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xa4409290 acpi_subsys_suspend_noirq +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 0xa4565fef __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa459bb95 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa46136fe device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa47b2d64 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48e8659 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xa49466b5 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b81338 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0xa4bc92e6 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa4be30bf usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4ca3b60 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xa4d9e6e6 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4e2594e gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa4e4f66e serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa4e8fc42 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xa5052a85 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa50b1bfa inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa51060a5 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xa5245afa device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xa5246925 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xa5251c53 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa526fe91 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa565dd79 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xa57b46d8 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa58d3133 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5d9fc69 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xa5e23977 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xa5e2e96c of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa5e4e606 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5e56505 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa5e61c30 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe879 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xa5f7da9f class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xa6001db7 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xa60481a4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xa60c0f60 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa6307dcf unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xa636fe98 __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa6423d83 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa6450092 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa67ac218 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa680a224 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa6886e2d io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa698579c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7fdd4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa6cc9a9f iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa6d6ac80 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7546c cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xa6e87790 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xa6ff5b20 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70d52de dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa7155ab7 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xa7166c99 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xa7171682 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73e5177 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xa74104a5 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa74dab43 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa76261ca fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xa764567d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xa76660d9 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xa77993fa gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa79f774b dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xa7a337c9 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa7a578f6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa7a82208 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa7a974de bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7a98a4f ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xa7b4bd85 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0xa7b8af86 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa7b9fd98 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa7cdd1ca __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa7cf93e7 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xa7cfe323 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa7d88c12 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa7f0794b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa7f49f4f usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xa8160a9d inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa816d653 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0xa81c3f00 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0xa82d41ff usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xa82dadce sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa8482b5b dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858534b relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8b94b4a genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8c4ad6a mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa8c52d78 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xa8d031f2 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xa8d0a34c nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xa8d0f7c6 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa8d54651 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa8d69984 hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0xa8e610b3 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa8f7445c perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xa902bf19 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa91bc939 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93af83f led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0xa941c56d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa9434cd4 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xa9495442 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xa94ab319 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa96dff5c skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97c8ad3 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xa985bd55 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xa991e9b7 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xa993bf82 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xa99ce2a3 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a23d34 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa9b106db blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa9ca7a9e xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xa9f9676b usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xaa1148d7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xaa188b29 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xaa201216 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xaa366e86 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xaa37de96 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xaa3db8d7 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa46a27d pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0xaa49eab3 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa6e6d96 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xaa8018e1 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa8ed4e7 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xaa924014 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xaa9616d6 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaa9fd517 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xaaa7f622 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab6740 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xaaade649 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xaabcea7a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xaaccb525 debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xaad72ea0 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xaada5959 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xaadd2721 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xaae537d5 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xaae6a7c4 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xaae945bd desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xab07d042 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab4ac14b sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xab4ee6d3 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xab631265 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xab78a007 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xab8023bc regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xab8e60c4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xab95e128 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xab9be852 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabbdae31 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0xabbeb52b devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xabbec4a5 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabce6303 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xabfba6b1 cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0xac008140 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xac1aaea4 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xac1c71b1 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xac1d70fb pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xac1d992d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xac30288f iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac4207ec find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xac451865 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xac77abec task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xac7d37cc __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xac8106de led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xac9aa777 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xac9fe4d0 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xaca43734 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xaca7784b usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xacaeba13 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbb95c6 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xacbc5bed __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xacbd957e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xace91163 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0xacff0a72 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xad1b3933 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xad24c000 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xad2e2fc5 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xad373858 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4ea635 devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xad4ecbf9 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5bbe84 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad7ffb17 dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad95d5db page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadbca2d8 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xadce0db6 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadecc70c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xadf027fa xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae20731d vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0xae33a783 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3c4550 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xae42e173 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6d9468 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae92faa7 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xaea60854 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaecc4b11 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0xaed1fbd4 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xaeda0e40 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xaee657ee __class_create +EXPORT_SYMBOL_GPL vmlinux 0xaef4ec55 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xaf02f6ed devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf2599f6 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf6690b7 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf66ca28 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf864bcd regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xaf8ad12e crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0xaf981aaf __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xafa8385d nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0xafc0cd2c init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xafd11344 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafed462c tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaffb7a98 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0xaffeb49d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xb001e9ec switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xb007ecd8 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb015908c blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb01e30aa powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb02077ed xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xb02699ef __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03a2476 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xb04f5641 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xb05078ad rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb053c4a7 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0868ca1 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb0aaeac5 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb0adf3e8 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d0f3f0 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ee5377 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb0ee904b unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1024251 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +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 0xb124eb95 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xb136c138 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xb14ad6fd vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb1511fb3 vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb16bfce1 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb1811418 nf_route +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19566ab __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1a0e42b usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb1a27f55 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xb1a6bedd icc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb1b7c959 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c189d6 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb1d2805f led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e40874 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0xb1ef3bd3 iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22343d7 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xb23aa9d1 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2496844 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xb250d52f gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27b474d acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb298b863 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xb2b0d7cd user_read +EXPORT_SYMBOL_GPL vmlinux 0xb2beb24c xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2ca51d9 intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xb2cfa227 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xb2d70f1b bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0xb2d852bf fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xb2d88a89 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2df75f2 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb337531f fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xb33e0236 pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb365a048 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb37cd2b8 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xb393fb48 sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0xb3cda795 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb3f002e7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb406ca7f blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xb42d7bfd get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb4452e61 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb46b1b80 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb478c650 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb47a8b21 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb493960d serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xb49d8c42 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb49eb36b misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +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 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5252a2b elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xb5447158 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0xb5486f63 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb550bc29 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0xb5649127 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xb5709609 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xb591857f fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xb59f775f blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b6ceab usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb5ba775a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xb5d1d945 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xb5d9daa6 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xb5dee3bb inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb5e0986d xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb5f9dd75 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xb5fe7c32 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6004ac4 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb6094004 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb61b3af8 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6250dce ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62e0e7d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64c036b devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xb64f7080 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb65c67df __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xb66f3415 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb679544c pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xb67b92c0 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb68bb323 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69cdcf3 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xb6ae3647 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb6aec2cf gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb70b8958 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xb7132179 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0xb7164dbf regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xb71a8291 __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xb71cf37b pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb725a1d4 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb7704b1c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xb77a59ae ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xb77bf9f2 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xb785fe22 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb791a67c gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb79fc27b regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b1cd1a irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb7b2a306 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb7b90972 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0xb7c14351 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7c82ea7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb7c9fea0 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e462a8 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb7e8bb2e tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb7ef7c0a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8203d8d dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8358c9c __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb8384b46 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xb840ee90 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb848f5c3 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb85b4094 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xb862b8ce phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xb8681645 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8846e65 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xb884bdc7 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb88ad2ce usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89d39d0 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a0f425 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c8ae7a fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cf4ea2 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8d4955b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8dfb871 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb8e02180 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb8e29ab3 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb8e620e5 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0xb8e99988 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb8f0611e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f358c5 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xb8fe5f03 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb9154e54 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb9192e28 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94be8e1 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb95f4044 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb962a382 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97bd795 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xb97f8ef2 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9872d49 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb98a3f6c ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb9b3c79a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c0841b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9caab26 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d2fd97 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb9fbfef9 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4c7d2a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xba7e6a9a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xbab59693 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad37525 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xbad583fb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbad7fb8a ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xbae20364 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbae88a4e __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbaebb86d crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf7d5e2 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb022621 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb14112e ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xbb17da23 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xbb1e2273 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xbb2df4c0 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbb477628 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xbb4aa958 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xbb4ca2aa pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb65c608 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6c8538 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb73f3d9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbb746fd1 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0xbb7927e5 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9e10c8 fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xbba4fe2a driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xbbad73f8 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbd00d2f dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbbd3acc6 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xbbdcd19d bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbf4e391 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xbc158f5f dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xbc1d9cb9 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc2806af rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xbc28e3b9 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbc2c1cfb regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbc3e3acb uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc4114c2 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0xbc4b3160 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc522bc1 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc558e8a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc5c5e88 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6e3841 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xbc8462fd phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbc86d583 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xbc8d223f dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcadbed4 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xbcb5f475 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfec58d scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd097307 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xbd106c31 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xbd3154c8 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd47485b dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0xbd477d7b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xbd60f971 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xbd6d8159 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xbd6e77ea iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xbd7155e9 __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0xbd72a49b clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xbd73e8cf xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd8d92bb zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xbd98b13a nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbdad788e rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xbdc102b0 strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xbdca1e1a bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xbdcb67f1 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbddbca34 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbde17eb8 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xbde3b7d6 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xbdebf8a1 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xbded09d1 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xbdfe0d76 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xbe19cc6d regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe1d1e82 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xbe2ff7b6 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xbe38d0d8 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe478e4b acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5fb480 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe61d9b2 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe810001 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea07393 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb585d5 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xbeb62dc6 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbec5dd88 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbecdebf8 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xbecef44c blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xbed8e99f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xbeecd6d7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf08262c md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf3da1d3 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4b06e5 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0xbf4cec28 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xbf4e1a44 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbf5ec713 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbf7dff6f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbf885822 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xbf8dcb60 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xbf9f96d8 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xbfa8a245 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xbfab46aa invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbfbbdd85 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbe20bb skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xbfe16c06 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc003db61 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc004e020 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xc02cb90b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc0552560 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0xc0584e78 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc05c1b64 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc073837d vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08d10dc dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc096c044 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc097e2db blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xc09fb751 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c42068 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0ef98b0 xen_register_device_domain_owner +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 0xc111bea9 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc1202379 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xc1269a84 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xc137e8a4 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0xc1518045 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc15344a8 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xc1641746 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xc1715d42 skb_append_pagefrags +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 0xc18608ae devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc189bcf5 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xc1a26655 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0xc1c11533 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xc1cb1ca9 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc1e42c5a pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc1ede0a3 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xc1ef4b62 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc20ad520 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc232701c crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc23befa3 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc23ecb83 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26bbfef tpm2_get_tpm_pt +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 0xc297aad0 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ae220c phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc2b6964b usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2bf388b __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2c3b780 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e72eec __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc2e7e28e fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2f26271 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xc2f26a23 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xc2f2c8f4 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc31baca3 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xc3256b7a serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xc32b8ca6 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3468c06 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xc348be32 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xc34f959a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xc352adb8 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xc36aab91 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc376856d acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xc37cfe97 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc38265b9 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc39da57e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc3bc53ec crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xc3bcda8b __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xc3bd749a genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xc3c26cb2 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cc33ae tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d0798f devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xc3d447e3 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e03a0f device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f9c439 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xc404fe3e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc405d9c6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc405e2a8 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4303130 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44e105e mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45905af device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc465dd30 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xc466e643 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc46fb64e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc46fecae uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xc4711fd5 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4799f24 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc48b24f3 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc48dc346 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4c56d1f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4d80d6b dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc4ef4fc7 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5078d94 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc509b9e4 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc50ddcfe bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5185ea2 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xc51cf102 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xc532f497 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc543cf39 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xc54b7d28 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc551083b __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xc5530f2e watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5609104 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xc5631344 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc5739aa4 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc5821ff0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc58d52df efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xc593b9ca xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ea3467 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0xc5eeb629 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6246085 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc62826c2 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xc64f2308 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc659fe21 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6672ed9 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc66d5421 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc66feba4 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6779900 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xc67fdfa2 genphy_c45_baset1_read_status +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 0xc69d644a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a7b41a devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6a9e34f fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0xc6b2bfdb battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0xc6bb494d virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc6cc9bed rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc6d62659 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6f82d45 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xc70188c6 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc709c05f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xc70de4f0 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc7131d59 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc73c9e28 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0xc73d2091 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc742e72d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xc76d40e8 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc782db76 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78d6cb7 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0xc78e24e8 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xc7981872 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc798fdb7 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c57d61 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc7ca5417 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc7cbb5c7 __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xc7ced274 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc7d91e51 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e5296f acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7e8dbf3 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xc7ed0a80 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc80926e3 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec +EXPORT_SYMBOL_GPL vmlinux 0xc82801da smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc832a04c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83c0a09 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xc8553a4d vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc857b2ed __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc8624f91 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xc862a09e dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xc867f405 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8a87fbf of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xc8ae1ea8 wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xc8d0d714 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8d5448a pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e8ca1d __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xc8efa1be subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xc8ff4bdd __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xc90b010f ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc91c980a led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc925ad5a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc9288936 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xc92b86bc gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9487318 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xc952d85c __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9592ed3 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9681dbf sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xc9796b38 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc979b1cc gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xc97bf448 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc983dc1e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc99f14f5 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9ad8569 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc9bce966 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9dec427 component_add +EXPORT_SYMBOL_GPL vmlinux 0xc9e174e5 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xc9e64e10 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9f17a08 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xc9f29544 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca21db29 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca4c3bd4 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xca5da188 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xca5f2eed vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xca75c257 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca819ce5 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xca8c238f genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xca931ad4 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xca93559f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xca94bb37 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9dbc54 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xcaa3bbef dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcab1b30f pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xcab62029 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcace864d nl_table +EXPORT_SYMBOL_GPL vmlinux 0xcad1285b cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xcae2fbba __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcb041894 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xcb07d7ba irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb119f00 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb28394e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb2da4e6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xcb3a73cd mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xcb3bb5b7 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb559f99 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb55b082 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5b44ba class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcb5e17c5 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xcb84437f devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcb9a151b tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcb9e08b1 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xcba5120c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xcba99290 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xcbab9217 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbc3107a acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xcbd2b370 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf4b41f dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0xcbf853ec extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xcbff43b6 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xcc0cffb9 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcc171172 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xcc1adc99 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xcc234860 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc2f3c49 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xcc2f5710 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xcc312197 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc3ff6b8 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xcc530248 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xcc54237d __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc85573d vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcc8b527c usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xcc91c284 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca6fd84 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccbe3b29 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xccc0c864 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +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 0xcd0eb8cc gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xcd1af976 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd1cfcd1 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xcd1f1867 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd3cdc04 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xcd3e11b0 __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xcd40170e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xcd4d9fcd devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcd5ce3df param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xcd5d60a5 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xcd6c060f serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd7775c8 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcd779e1f user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcd7cd9d6 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdadde67 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbd447e rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde1a1fa sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcde57a01 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xcde6d288 dm_put +EXPORT_SYMBOL_GPL vmlinux 0xcdf8ec93 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcdff3f97 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0xce0582b6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce120d53 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xce1578ea securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xce1bb032 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xce2cf88d nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0xce38e2b1 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xce5dfb45 __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xce5ed3d0 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce6163e1 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xce667cd9 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xce6c67e6 led_put +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce74fd39 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xce852bf3 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce9d30ae dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0xce9d39d0 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0xcea3b775 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xceac751e __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xceadc1c3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xceae7f39 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb4423c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xceca97a1 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0xced4b3d9 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xced5b33a tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceef797b lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcef2270d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf05f48c clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xcf08347c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xcf0aded4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xcf138d46 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xcf26e972 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf3d86fe usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xcf461308 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0xcf46c5e1 scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0xcf535439 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf5ced11 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xcf6c2760 nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf83b2a0 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0xcfa73b65 netif_carrier_event +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 0xcfdb7faf __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xcfe4983a bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0xcfe67af4 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0xcfee9288 __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xcfffdbe8 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd01b4681 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0xd01fcc8a acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd029b5a8 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xd02dc2ba pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04725bd crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xd04a2de1 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xd0559180 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06bfe50 tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xd075a104 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd0769dd5 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xd07e43f2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xd080f279 nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xd0884bfe hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0xd092de93 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0b3ba39 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd0b6d48c percpu_down_write +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 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0dc99f6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0eaec90 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xd0f67dc5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd0f9ec4c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd105e19b account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd118a375 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd126e834 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1530dce da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xd1570730 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1719c94 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xd1783a59 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xd17c4f92 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xd17d8e7e wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd19580f5 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd19f642a vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xd1ad2b4c tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xd1b96b1b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1e1162f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xd1e7a936 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f5644f tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xd1f78808 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xd1fb81ce pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd231a2aa sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24259b5 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd25bcb1a usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd264b1e1 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd2699c17 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd26cfa12 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2746af8 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd280a6bb bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2acc270 events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2be10fa phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd2d57e44 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd2d6ffcc vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd2d761ba trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2dc64f0 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xd2ffe91d vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd306c109 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd311d70e ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd319fe69 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31aef97 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd31b3c68 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd320f097 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xd3280846 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xd328312a device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd33498b1 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xd35759a2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37f10fc pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd382dbdf phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd39a8f99 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b2e2bf subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd3bc7f90 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xd3c16cce __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd3c39604 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd3e31d95 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f16ce7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4116121 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd41fc62f bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd435ad4c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd437ebd0 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xd4404350 __SCT__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd443fa18 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45ba097 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd45db3f7 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46fcd9c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd47481e8 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0xd4761617 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd479d28b debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd47edc7c xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd48df7ab __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd49762d6 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xd4a7413b dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0xd4ac42ef fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0xd4ac7664 irq_gc_ack_set_bit +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 0xd4c8cd3f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xd4d4f102 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4d929b4 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4e6e772 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xd4ea65ab pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xd4ec9eb7 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xd4ee31e6 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd4f1bfb8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f5d658 md_start +EXPORT_SYMBOL_GPL vmlinux 0xd502b5ab seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0xd52391aa usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53e4e3f ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xd53fbb60 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xd5407c76 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xd541571d ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd5502e81 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0xd5524776 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd581fac6 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd5f4147b __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd5ff2622 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xd63af2b4 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xd63f7e67 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67d4ae6 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xd686aaec regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xd6a281bf __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xd6a739c4 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6c96713 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xd6ccfe2c efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xd6da664c inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd6df2d33 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xd6e887a7 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7004076 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd71c15e7 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72a60c7 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd730427a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd7374409 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73e2d04 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75e3c40 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76b0721 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd77a5497 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0xd78a52d6 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd78ab226 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xd79d7507 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xd7adc8f5 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd7adfeb3 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xd7b18dc4 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7cf14a4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7ebf5e5 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xd7f5bdb4 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd8188eb5 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd81eb466 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd82c8714 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xd84d2106 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd85019d4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd86fdf7b device_register +EXPORT_SYMBOL_GPL vmlinux 0xd87aaec6 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd882527b pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0xd8899f00 fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd8affed2 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0xd8b4b702 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xd8b710c3 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xd8c6de6a devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8e2f4bc __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd91025c9 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9117aae user_describe +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 0xd9314030 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xd9321a10 devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xd93608bb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xd9373014 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd9441878 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96cbb90 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xd98a6a33 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd9904b38 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9977037 thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9b06f91 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9ecef74 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9f7b973 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0722b8 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0ab472 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xda13813d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xda17db40 __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xda188f6d pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda1ffc7a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3d8578 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xda54df95 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xda5573c7 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda799cf6 usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda8df972 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda9fbd2e icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab87132 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xdab88c6c crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xdacc7289 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0xdad46e54 devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xdad8f744 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafdc358 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xdb025654 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page +EXPORT_SYMBOL_GPL vmlinux 0xdb205606 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xdb307c7d ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0xdb47bff6 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb50ebaf vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb85e739 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1847 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb93532e tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xdb9c8ab8 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdba5778c devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdc4fdb led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfa5b55 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc046457 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xdc0564b1 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xdc120746 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1620a2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdc293cf9 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xdc2f2404 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xdc381740 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xdc3b8285 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc5191e8 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xdc52e592 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xdc5a7941 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc7dca23 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc7ee4fc gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xdc811005 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc82dc7c crypto_alloc_base +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 0xdcb3c052 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xdcb96dc5 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdcbea18f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdcc58a16 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xdccf2acd crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdccfc3ad devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xdcdb940b bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd1b5274 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xdd217687 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdd2820ca fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd498258 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd84820c serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xdd8fcd8d regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdd91a28a blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xddaa3041 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc01f90 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xddc36276 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xddccc1b9 __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xddcd3b2f mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xddd656c0 mmput +EXPORT_SYMBOL_GPL vmlinux 0xdddb2b18 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xddde0ade register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xdde85a47 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xddebba77 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xddf32322 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xddfc18fa device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xde036c03 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xde0efefc msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xde308aeb pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde52f786 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde7866c8 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0xde7f02fd class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xde90ac9d crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xde97dbaf device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xde98fd74 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xde9d6665 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeb30bfd switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xdeb9df96 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0xdebbdd6f irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xdebd8485 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdee9bffa trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf016f00 irq_find_matching_fwspec +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 0xdf1b5576 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf27efde md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf309bed sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xdf3751ed key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xdf38cac8 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf50a9c2 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdf7b6309 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdf7d4541 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf7e5431 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xdf7faa06 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf9951eb bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa0a787 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfa44c70 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xdfb60745 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfce31b2 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xdfd0783d devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdfd603d3 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfe0d335 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xdfe8c7d8 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe008e7f7 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe00a4202 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe00ef2c1 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xe015232b crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe01e2654 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xe0251e6f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03ba895 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe04f35df vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xe051160d spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe05a296b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06001d9 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xe06375b8 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe0673920 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe07540a7 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0xe07adf79 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe07ca984 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xe0849cfd regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09fd2d5 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b85582 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0xe0baa3ab edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d0847c spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0dba48e icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0ed8f88 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xe0ff46d3 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe1000717 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11062c4 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xe1122d8a sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xe125d5b4 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xe1266cfc pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xe127f1f7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xe1465a6c devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe1600dcb fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xe16b51e4 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe1751f91 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe175a7ca ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xe176414e i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c4536 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xe18d3551 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xe197f281 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xe1a06a3d mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1ab22ee __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe1ad469c blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xe1b821e9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1e4970b acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xe1e8e81c power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe1fb5183 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xe1feef03 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe20e887b crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xe20f98b6 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xe213ee71 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe21b4536 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xe2265d01 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0xe23119f7 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe239953e strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe243801e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe25473cb relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe25e273c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe26410ba scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xe271f20c __SCT__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xe28c5a56 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2aba377 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b376bc __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe2c90e14 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe3013a81 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xe30bdc01 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe3205873 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xe32927b0 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xe340af9a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe349fbf5 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xe374728b efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xe37f19c8 ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xe380bcb1 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xe3840e18 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xe385f6d2 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xe389ddce crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe3949399 cpufreq_cpu_put +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 0xe3b51be8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3cdca90 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xe3de866e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e4e1f9 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe3ef2d4c dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe3f060b0 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xe403f9ae syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe41a5ee9 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xe41db5ea linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe41e5380 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4518521 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c318a5 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xe4c49d6d dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xe4cbdfa1 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe4db7d7a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4fa6bd1 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xe500d2c6 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe5032c67 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xe52da673 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0xe5336188 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58b9994 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe5af0d9a fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c41616 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d0f834 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5d28ee5 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xe5d588df mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe5f0de07 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xe5f35306 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xe5f3aa28 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe5f82a04 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe6004665 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe60ba332 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe612a7a6 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xe61d2776 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe620f0d9 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xe625b447 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe634d170 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe638dc6a usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe63bce36 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe65a8879 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xe65bd47c genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xe65c9447 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xe65f036e balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xe66f2940 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6759ae9 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xe685f240 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe68765c7 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe69cd288 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xe69e00c1 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6ab07df fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xe6bfb196 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6c2405f sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xe6d220b4 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe6d85f4e dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xe6dbeac2 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe702e1d8 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe71c4cfe __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72ff6d6 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7579d4d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0xe75bc340 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe7617810 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe785529c mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xe78f6f7b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xe79018f6 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a286ae trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xe7a28e83 switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xe7a9158e phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0xe7b0ff43 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 +EXPORT_SYMBOL_GPL vmlinux 0xe7c1b15a thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xe7c94941 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xe7cfc934 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e104ad ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xe7e36c3e fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xe7e3c309 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe7f1e986 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xe80b7514 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81cabc1 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xe821eab7 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe82c9619 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xe838f360 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe8416d07 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL vmlinux 0xe84ae014 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe862fd0f ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0xe86a4101 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe870aca7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xe8860ba3 do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xe88c86bc __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe891509e pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c778a8 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xe8d8e2c5 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8df9c04 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe8e22ed9 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8ece2c7 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe8f04ba2 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xe90a5747 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9221137 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe92da69c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xe9312056 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe937902f lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9636fe2 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xe966610a vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xe9689cc3 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xe96ca5bd debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe973fef2 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xe97e5dc5 __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xe98a505d acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe9925143 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe998e5be ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xe9b2e511 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xe9b5663e __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0xe9b8cf0a devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe9c444ab dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d3c623 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe9d8fc02 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe9e45dfe lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xe9ed9f0a usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +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 0xea15c9b0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xea178813 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0xea2dfc94 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xea32484e __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea49305d mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xea51c712 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xea7eae6b perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0xea7f6de8 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xea82d546 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xea966220 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xeab07116 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xead2bc25 dm_internal_suspend_fast +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 0xead94009 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xeadcef13 __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae63ae0 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeb0c6f2f elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0xeb0cd942 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xeb0e6b21 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb1b8a32 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xeb258612 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xeb29b342 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xeb2fb853 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0xeb6ba750 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb8ecc18 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xeb98bcf0 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xeb9903b0 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xebb4d4d1 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xebbf6012 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcadba4 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebde80ba platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xebe22a4c l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0xebf23c1a fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xebf91ba8 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xec055e60 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xec1b7939 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xec1def33 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0xec3698e1 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xec372de4 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xec3b8466 iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xec40d363 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0xec45bc8a noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec59140d perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec5e8d63 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec83639a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xec905548 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xeca4e3c8 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbce164 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecdc2dae __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xecdd0cf1 gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xecec7c9a blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xecfd3d38 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xed0854ad __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xed0cea09 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xed10d08b regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xed1d8828 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xed207e7e filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2ddbfa set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xed2e55a0 devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3fae38 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xed43ef40 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xed526344 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xed5448e9 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xed573f65 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xed57eb4c disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xed6aa713 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed91d666 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xed9abeac xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xeda5dce9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xeda8461e disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xeda9bf40 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xedcfd2cf xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd2ca16 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedd9cd04 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xede2df34 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xede4fc63 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee0a6814 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee20051d gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3e6c7d skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee56e655 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xee5bdd6c sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xee5f12bc proc_get_parent_data +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 0xee6fac98 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xee8d2ae3 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xee99ba49 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeea0685b pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xeea877fc x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xeeade72c param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xeecda1d8 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee1e191 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef0f203 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xef1374d9 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xef18d2b3 dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef20c94b mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef2e4c5f __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5286cc devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xef561c63 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xef565c31 gpiochip_unlock_as_irq +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 0xef7275d5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef8073f1 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xef8c81ff kern_mount +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 0xefc00da3 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xefc5ebd8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xefd40051 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xefd8ef18 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefefa5b5 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xefff0132 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xf0021b00 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf03bd6af cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf042a40d i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04efb08 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf0593601 hwspin_lock_unregister +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 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf09878b6 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf09a90cc sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xf0aa7768 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf0c3261b reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf10674b2 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf11d6060 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf11d9290 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xf121efc3 __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xf12c1586 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xf13eea59 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf141b7db ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1458ab4 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf15b8f15 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf15babfa tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0xf1729c2b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf173b7f0 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf193bae3 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xf1a8c4e5 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf1aac2b6 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xf1b800b5 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1d0e72a xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xf1db3d34 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xf1e405a0 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xf1ea3a8d usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xf1fb6bf1 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf1fdafb6 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xf206422b acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21ef60f fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xf25d1f81 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xf26c8a53 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf280ac0f wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2933ebd scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a11936 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf2a3ba8f __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xf2afcd13 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b34a6f bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xf2c2b225 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c366e0 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2d7865d device_create +EXPORT_SYMBOL_GPL vmlinux 0xf2da6946 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2ea88e8 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf2f201a8 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2fa0a9f skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf302c4b4 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xf306f228 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf30887d9 debugfs_create_bool +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 0xf31ad8ca sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf321a7d3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33bcf83 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf358083e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf359a90e blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf364f901 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xf367b0a2 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3967c94 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xf39f4c8f pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf3b16d64 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b736bf transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3d2b129 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf3d532dc acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xf3d8b111 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xf3dcbdf6 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xf3ef7b33 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xf406fff1 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf41057ca ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xf4131b33 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xf42e1a65 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xf4325102 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0xf43ddd99 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xf440745d __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xf4438ce9 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf448df9b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf458523f ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xf467e45b trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf48b81c8 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf4a9d03b __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b439f3 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xf4c12444 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0xf4c28039 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4d0bc20 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xf4d356e4 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4df3e96 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf4e309c7 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xf4ec8911 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf506aab0 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf51737cd pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xf51cb13d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xf53acd27 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf552cf03 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf557286c ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xf559e451 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xf55ce83b __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf587b2a6 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf58abf2f pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf59633ff usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a25a74 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b3f634 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xf5c0cb52 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf5e8da89 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f9efa7 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xf6073f4d __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xf60dcaf0 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf6111198 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf637b9b3 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf657136d virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf667b78d dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf66d4221 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf66d4af3 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6911f65 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0xf693dc09 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6b46007 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xf6ba3b02 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6ca4e79 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6dcbaf0 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6e14042 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6e8ef40 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf6e901b1 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xf6ea523b genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f47671 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xf6f4d95c __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf714719d acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf7300268 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xf73a4558 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf750fbf8 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xf764f40f nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7698fc8 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xf774b305 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77a66ee ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf77cbcd4 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xf781ab97 regmap_async_complete +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 0xf7983aef memremap_pages +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 0xf7cba840 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf80957b1 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf813fa3c pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xf8150e7f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf830a538 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf832f701 fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0xf8417c5f debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xf84a22ce class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf881e2ac gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf8ab14a3 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xf8b633b6 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xf8be1316 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xf8e415b6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xf8e6f1b9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf902f7b2 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf90c261d regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf91a2a90 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xf91e4d8f of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xf92f21c8 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xf935f574 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0xf942b50e ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf95e44df sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xf9696cf0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf9711d20 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf978c2d6 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xf97d1600 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf9889032 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xf990da91 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9b822a4 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf9c53fef wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xf9c9f70f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xf9e65782 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xf9ee1209 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf9f78d78 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9ffdafb get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa242aa2 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa2bda6e pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa36dee1 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xfa3f2de7 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa5c0402 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xfa5e58de ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xfa5f078d static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xfa600b30 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfaa370f6 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab00c85 devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfabe1f51 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfae291d9 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xfae84500 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xfaead581 hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xfaf919ba kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0xfb1001f9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xfb1458e5 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb34b3e1 receive_fd +EXPORT_SYMBOL_GPL vmlinux 0xfb38b1a1 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0xfb39d282 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xfb51a191 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb62c567 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xfb6c6b96 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb860923 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xfb86db83 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfb90d9de devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0xfb9ad35e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xfba25827 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfba6a8a6 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfba82603 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xfbb2192d uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd93c73 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xfbe9356a usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfbeb8298 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbf667c5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xfbf74718 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xfbfe7410 thermal_zone_get_slope +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 0xfc0d1968 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc21a854 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfc23636e vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2b6473 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc5daced __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfc702a94 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xfc7b5b73 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc7f14d3 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xfc8abc09 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfc9a4426 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfca3d3cf tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcba872a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1bc26 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc2b3cb usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xfcc85887 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xfcca5424 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfce4e6c7 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd070696 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xfd0fef52 syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0xfd22b73e ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd3d808a unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfd3db6f3 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xfd48f634 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xfd4c8087 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfd523486 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd60093b scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7821f8 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfd88957b debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xfd93be59 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xfda587a8 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xfdac5e95 unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xfdad35db irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xfdaf32ab pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdd4b3d2 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xfde49b9c debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfde4e881 lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdffacdc register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xfe0596d6 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe245fca devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xfe371a0a rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3bd304 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xfe3fa9ce gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe46f360 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe5d8404 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfe6f5da2 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe83269a devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe87795b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe999c10 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0xfe9be13c __device_reset +EXPORT_SYMBOL_GPL vmlinux 0xfea663d4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xfeb45def input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed47b8e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff11cacc pinctrl_find_gpio_range_from_pin_nolock +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 0xff302f76 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xff358ca8 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4d066f dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xff4d4656 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xff4de823 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0xff686933 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xff6af778 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xff6e9042 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xff7e05f7 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff842662 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xff88e65f __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xff8e74e2 arch_haltpoll_enable +EXPORT_SYMBOL_GPL vmlinux 0xff8f29ea fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xff8f5439 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa63b80 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffbf68f1 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffd1336b security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xffd19924 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xffe130c0 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xffed22d4 device_change_owner +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x013cbbb8 hwmon_device_register_for_thermal vmlinux +I915_GVT EXPORT_SYMBOL_GPL 0x0cfeb1f0 __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0f269ef4 __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0f744f74 intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x13f23c70 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1c3516f7 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x253bb7b8 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x26118c98 intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x26d4294a i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x28281bb3 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2cfd06f7 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x38272130 intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4689f39a i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4e639fe4 i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5181a803 i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x528c50f9 intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5b81c38f __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5c3e44de i915_ppgtt_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x6343a02c i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7623e3e1 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x7ffdcc3e i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x90b49af1 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x949fd6a6 i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x97b8126c intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb3a83689 i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xb5c21f44 intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc86fb2d9 i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc87b7a30 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd61db68a __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe0255ffb intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe3d56118 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe6c6d161 i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe9198c8c i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xef0aa545 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf33e7b84 __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf5d28f2d i915_request_wait drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x0f3fc963 idxd_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x1d04d5e0 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x2d2157f9 dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0x50616e90 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xc7bf72a0 __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xfb5d1398 idxd_driver_unregister drivers/dma/idxd/idxd_bus +IIO_AD5592R EXPORT_SYMBOL_GPL 0x2fa74752 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0x8a013f91 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x29c8a19d ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0x62c7504d ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x1176074a ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xe28b2078 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x36fd0cec ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xeec0efb5 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x14b3abb0 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0x4a56ee46 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x03b8ae50 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x68a3d4c5 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x7ff732ae __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8b90c5c4 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x8c81823b adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xa8e15e57 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xabda0150 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xac50b0ad __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xeb0c6d65 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xec3405bc devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x60a373db __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x5dcfba8b adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xda663f0c adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xe1770eef adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x19979080 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0xfa6b354a adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x00868ee2 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x25443001 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4e988534 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x6fc9c6ea ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x83982bcb ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xaa86f087 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xbc5055f4 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc85a33a9 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xcf84516d ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xe4166970 ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x206abbca bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x29f243fd bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x26cde36d bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x404e160d bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x454b6b35 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xca98c49d bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x463fe3a7 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xa561d3f8 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xc6f72ce6 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xf76e1fea bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xbf72bf3a bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xfdcc5bc7 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x3d7a0f21 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xc2ce5926 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xcbf5409a bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xf4b300c2 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x26041d98 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x334052df fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x38ff9b0c fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x9a210fc9 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x00ea097b hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x04d69a08 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x2c672bad hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2e9f9e3d hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4e353bd5 hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x4f13079f hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x505c1de6 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x88a567a3 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x88dd1fe4 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xbb3e1ac3 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xc199a29f hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xcdba8f7e hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x0a650524 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x2b41de6e hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x41fe9194 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x72018fdc hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x8ece1173 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xcb63472d hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xd28da9ad hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xe43b922c hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x16c9aaa6 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x3febf424 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xdfbff83d kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2e3ce1f6 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x52e973a3 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x994ffa38 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa909fd9e ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xb8977dfd ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc18e4974 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcb8610a1 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe4900bd0 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xe5359f6c ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x3dd909cb mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfae4ce71 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xfdf03223 mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x00f540ed mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x0a5fa77e mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x183ce95c mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1f1bd745 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x243f6f31 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x39a75107 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x5eb5a873 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x64acd10c mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x77875e9b mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x78e37d2d mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xabda9d01 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xba2c24c7 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc2e4952a mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd19b1a84 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xec177283 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf7d25846 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x351ad316 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0xd5d7dcd6 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xfbef2197 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x230e4c5f rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0xcab4245c scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xff34c69a scd30_probe drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x00d2db21 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x197e5e05 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x3794c842 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x4e6b919e ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6baded53 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x6fc819bf ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9aae9b6d ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xba1a0171 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x16b0324b st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x283377cc st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x30e70b2e st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x361e3897 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x419feb2b st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x43d979d8 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4c3a08b6 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4d601c6d st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x50eb4d51 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x5491bc36 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x67f54f90 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x6d9087c0 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x707330b0 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x70d9445c st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x796c6491 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xb052ec81 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xb9d718ec st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc1c33d66 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xc554e43b st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc7a71728 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xd4507750 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd5e1050b st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe29baadc st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xeb582883 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf6018431 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xfd49dddf st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xf1e41d7b st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x0144cd5a st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x0e63e745 st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x10a997fd zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x28c784eb zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9bda335c zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xac9d8d9b zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xed4c798e zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xff367f2c zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x2b72bad6 processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0xac156a23 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x2c725389 uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x853d7f1c uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xf29f5712 uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IWLWIFI EXPORT_SYMBOL_GPL 0x00c6c318 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0661e8c7 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x097f21fa iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0b742dc8 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x103c6a56 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1051ee41 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x11329c2d iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x13cd4a54 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17581887 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x199d331f iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1ec203a0 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2091318b iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x282db139 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bdfe4ea iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35de9a51 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37b6a3df iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x390c3fb6 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b98be81 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3cc66b45 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3ce2b500 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3e9cd786 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f4dfd50 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43f26064 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45a88ae2 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49dbb083 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4b5a4131 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4d4552f6 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x522c4e6a iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x560dbb78 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x59f4081d iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d050a4b iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5e90f0ac iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61a17375 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61adf868 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c94f16d iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e348f86 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6e50a806 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6fab92d2 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x819528f6 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84c4ffc7 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88a907a7 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x88bdec35 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f784013 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x903a53ad iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x94d1e0e7 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x976986d6 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9926c55b iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9a9b193d iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9c68ff5d iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9d1cf4b9 iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9f2a1d5d iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa7124087 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa9f447cf iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xab2bc57e iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xad2617bb iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaf003ade _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb47c7b22 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7bca443 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbd18e155 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbfedec28 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc0873fc9 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2387e29 __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc36d2baf iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc57bac1c iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc708646f iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd06a256 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xcd43eb83 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd0e5fa93 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd1de7728 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3423a0b iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd457aeb1 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe5355837 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe98134d8 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xedc3af7b iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf31ff308 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x0a3b9f76 ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x249d2150 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x2dce9c5d __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e21c685 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4ec01b6e mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x6f11dbb6 chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x73853769 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x83adad9a mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x94265759 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa2c78d7d mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xbe1b437c mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd8f8eb42 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xd9c7bb50 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe1398413 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe20a7b48 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xee4c512e mcb_unregister_driver drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x27671899 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3b41ffea nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9e4d45c6 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xaa0b056a nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xd7039449 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdb4fb700 nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x02569909 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x04fec07e peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x052189fd peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x09e5a2ad peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x255458f5 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2583328f peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2a949fe9 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3370bf37 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x39906b9f peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4157da54 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x427f297a peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4db20ecc peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6995dcb4 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6a6f5169 peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x6e6f85b3 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8309ac61 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x854369d7 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8e8b4761 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x92c48b74 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9ed938e6 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaa320b53 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb711b6a4 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc82bc5e7 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcc01fac4 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcf3fd08a peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd0a8abf6 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdcd2f319 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf1bf51a7 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf407b520 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x153630cf peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x6d397321 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8e9a3f2b peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xb79b10e6 peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xdf4a2aea peci_ep_pci_local_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x24ea0944 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x31321ad8 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4b7c67fc pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x60dc686a pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x63a3c086 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x69bab006 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6a03de91 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6b5d695f pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x722a8d25 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x847326b8 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa5d7d6d6 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xa76b2e83 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xaa97d052 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb1bbf0ba pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb98de382 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc38e11de pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd7b4f1dd pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xebe83c35 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf95540fa pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x28275901 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x601fb52c sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xefddceb9 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xf3773f0a sx_common_write_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0e9b1004 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x31b96028 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x37925208 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x81b127d6 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x18dfbd0e cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x8786e909 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xb591f04e cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x49215a78 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x5c5d3c74 asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x8f4c483c asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xa091d83b acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xd3827499 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe764baaa acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0x81271ee3 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xce6a5e8e acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x245a92ae cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xad064d44 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc4956725 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x2ba67369 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x689eb225 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x8079a731 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x6156255a hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x29ff3c7d cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x609bc942 cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x03f2767d max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x1187d6b0 max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x183d162b max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x20ca97fa max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x37caf42d max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x62a59af3 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x661a2065 max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7afe541b max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x80b1b594 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x8638b9a8 max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x87362468 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x9c5c8e32 max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa293dbe5 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x12e1b150 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x39bd682e sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x6a8e66e4 sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x90e06214 sof_rt1019_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x91335664 sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xbcaa8be2 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xc01823b6 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xf2199eb6 sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x78518a7e sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x7d9fcf89 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x85d9f6ab sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x0d9fa3f3 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1adc6b30 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35fb27dd acp_sof_ipc_irq_thread sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x39fbe5f2 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x3de5b6e2 acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4119f31a acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x411ba479 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x471b4a17 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x47995fa3 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x511762d1 acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x5bebf005 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x719a13d6 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7caa431e acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7e59da1a acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x88b9d2a5 acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xaa5239b4 amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc7d17870 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xccb490ea acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe2244fd7 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf6d149db acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xfcfb4581 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x1a751a85 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x25105fae sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4b129fb0 sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x52f21852 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x663f9ec5 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x72410f87 sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x9ed640ef sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa1574c72 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xab10b9a0 sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xae562dc1 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xbd97d187 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xca408e55 sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe83ea6b2 sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xec9e898f sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf394d4f8 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xf7f5d902 sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xfe49d77f sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x52aedd06 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x92524644 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xe0b20ff9 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x1113c90d hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x333f6919 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x840a7ec0 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x1154a516 atom_set_mach_params 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 0x622d55c2 atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xb1f7adb6 atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xbc94d3fc atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc8c72a39 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xc8ed63ce atom_dump sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xcade057c atom_send_msg sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xdf152847 atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe8349f9c atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xefa4a41a atom_irq_handler sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0504a8d4 icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x14f58e75 tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x211a5e74 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x38b55a18 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x3f907cf6 apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x521ed29f sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x64d28cbc sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6c89d107 sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x75e52c40 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x7f78d1ee sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x901f1231 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x95c5000e adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x9c9eac0f sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb1600537 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xb3f45422 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc4ae27f9 hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc838865a ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xcd622bd5 jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe3cb4de3 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xe95a4ce1 sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x063e2a52 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x85b371b8 sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xe4203956 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xe5d5decd sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x41bc3311 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x039d8b45 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x576b08c2 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 0x6e3247ee 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 0xe51ca4a6 sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x02a2f807 dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x24540257 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3fc022eb dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x95fc308b dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x99d72512 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa00f2d45 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xa51c6251 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdef401e2 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe5049eb7 dw_spi_update_config drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x05e3b8e5 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2a807460 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x307fbff9 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3367b231 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a7c5d85 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cae52e0 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cb092b3 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x62b9262e usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x69a37811 usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7102debf usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7b187228 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f5ab94e usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x883b8c28 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x98f56f20 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc5ddc786 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc614b4ab usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc8ef8f7f fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc93eaa84 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd1318650 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd16b0e92 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd6f2972c usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd87d10d8 usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdf36b606 usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe0e6f494 usb_stor_bulk_srb drivers/usb/storage/usb-storage diff --git a/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency new file mode 100644 index 000000000000..682641074920 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency @@ -0,0 +1,27087 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x034ae868 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3eaea668 crypto_cipher_encrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x5fbba9e3 crypto_cipher_decrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x09395fa2 cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a700893 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0b68ae81 cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x10297abf devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x134972b6 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ff2a291 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x23872d79 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2aff4c87 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2bfe6dd5 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e3d8777 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x34a0ffa8 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x34ec714f cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x37cc64fe devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3958e63a is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x47a7a0bf cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x509d24b7 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x56dc6266 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x59006297 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x599a0d3f cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x599ab0a8 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x5d1709c3 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x646836f3 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x66e559df devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x728e3c6f find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ad9f1a4 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8c5690e6 devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x8d2144be to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x93437ea1 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9aa9bb8b cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9f53f3af cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaaea9091 is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaeafef0b is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf065848 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4e7850c clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbe0f4677 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbe7b4879 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbeb8fc0a cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc303eb87 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc4ab7e9d set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc961ee8a cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcd75087f to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd50d6e6a cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd69c88e5 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd7977f01 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xead9d50c cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeb9dd2c2 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xeec257aa cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf3e8acb7 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfacdaa24 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfc0a1193 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfc82ddf1 __cxl_driver_register drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x05266e5a dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x18e52dc6 dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x198d5d48 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x36b6b4c6 dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x5475029b dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x58e4015c dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x70951e1a dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x71d4d749 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x8d1c95d7 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x923d3b28 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x98c46b2d dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x9c7050ba dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc8b4dd60 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcfca0105 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe3b4ad9c dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xf63eb683 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xff7d919e dma_buf_put vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +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 0x0782d663 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x4605cf12 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x5005a47b crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xcea59375 crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd8ca70b8 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0xe5df5ad7 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0xf6a3e957 crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x0a473f08 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0x27e9b800 crypto_sha3_final +EXPORT_SYMBOL crypto/sha3_generic 0xd6d07d57 crypto_sha3_update +EXPORT_SYMBOL crypto/sm2_generic 0x6f2c9e3e sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/acpi/video 0x1f1c1c87 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x6de7f7ff acpi_video_get_backlight_type +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x7cc484a5 acpi_video_handles_brightness_key_presses +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xd7f7bb7d acpi_video_get_levels +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x6e4fb586 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x1798e1a1 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xeecf3afe 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 0x2e7521f7 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3b4ce344 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4800767b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x48d5abc9 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x52a582ae pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x547e7d42 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x8d06c49d paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x981213dd pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xd1b7e393 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xdbec493f pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xdfc8382c pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe22bfcbb pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x61acf792 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xb4d01501 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0x35c5db01 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x23be7813 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 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96fec372 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd28b2a57 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 0xe98c507d ipmb_checksum +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 0xf6ba47cc 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 0x2bdb499a st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x59089ebf st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5f4cd629 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x61e61ab1 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x343c81ea xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x6cdf53d2 xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xd4cd2140 xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x21075723 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3ba380ca xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa40a2cb5 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x255792ff atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc34d61c1 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xdda8ddc2 atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xf283e995 atmel_i2c_init_random_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xfaab573f atmel_i2c_init_ecdh_cmd +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0x47d3c97f psp_check_tee_status +EXPORT_SYMBOL drivers/crypto/ccp/ccp 0xaa04056c psp_tee_process_cmd +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0717e12d fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x21426a2e fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x23e83f8f fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ce721c8 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x36ee5079 fw_iso_context_queue_flush +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 0x41f68114 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5fdf295f fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62087404 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x667f16ca fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d8bdc95 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90ee540f fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x92685eec fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9387971f fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95b5d1c8 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa0b37113 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb18e8ec4 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb84405d4 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3e14030 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd0a08754 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1132df7 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd91f5123 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdcf1e5b9 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80a555d fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf0fa2f0b fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf38085d6 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4406942 fw_iso_context_create +EXPORT_SYMBOL drivers/fpga/dfl 0x07cf8d5e dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xc5022e61 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x00e59a27 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x048fee77 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x05704cb9 drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08312169 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09b125d5 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0d0640fd drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0e1bfa17 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0ea85a79 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0fdafb1a drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x112841a8 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x12d73a3c drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x13b49f05 drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1787825d drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19bb2275 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b847277 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1bfe1920 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1ead8211 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1eeeed70 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x22bf5b64 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x263664e5 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x288b2e3b drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29d6bc3d drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29f9cf79 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f83723e drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x312216a1 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x313ecf23 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x340f1cd8 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x39db5efc drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a259a53 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a7e2387 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3be399f5 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e4dc86f drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x426d8382 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x431fa4ee drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4674e65c drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x482c82b6 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x484c6c99 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cf33b5f drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d2f9231 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4d8d7a27 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4fc25701 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x514e9ec7 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x516c9aa4 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5401dd4a drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x569337e4 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5a77574e drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5eb5ddbe drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x612d922c drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6348c6c1 drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x64cc18a7 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6d1a4c7f drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6e4a83b5 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x74f09226 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76cc6238 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7782fc77 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77c65034 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7c0ab3fe drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7eb57b27 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80d2e399 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x814085d9 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x85b9a817 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x860694d9 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8aa910c8 drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b1f1e9a drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b5a0ee7 drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8be791e3 drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d56c0dc drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x97a413aa drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a7ba74e drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9a8f7491 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9cd25adf drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa180822a drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2b97fff drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa650ac73 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa6810226 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaaed31db drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xacd140b0 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb74fcfad drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb752e385 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb8a76b42 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbb2ddabb drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbd95c185 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc15bc94a drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc367b15e drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc49a202d drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc81f36b6 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcd47a3ad drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xce60a109 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd33c7f2b drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd4045209 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd732f445 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd8ce11c5 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd9ca3617 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf4a90d9 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe4737181 drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe6c14945 drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xecfc176a drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xee900cfa drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeedf5fcf drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0ba8ab0 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf14c4f1d drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4f09431 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf602c03b drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf73cafcc drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf899c9ac drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfbe6b537 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfd103d69 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe7d6ea3 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012b82aa __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05057266 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0693ca6c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f7f4f3 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x082db827 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0838ce18 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08df277f drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09577348 drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a71cfc2 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa6d89b drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0abc4923 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ba575ba drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0d26b3 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d802b34 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e74e623 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f2eee5c drm_atomic_private_obj_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 0x10236ae2 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106df8dd drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10c9be9d drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1141ba7f drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x116efa4b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11aa01e4 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11f1d327 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1271695b drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163fe813 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x165f1cba drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16da3803 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17957a72 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17a46567 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17e159c1 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186d0a17 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1880a61a drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x195a6e55 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ae08bf3 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b02aedb drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bb1ad3f drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df0c1bd drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8696af drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea7dd76 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f23cff9 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f983e08 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20c75dc8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21a01da1 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23104b9d drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x242389e1 drm_gem_object_init +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 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b659e5 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ef67c4 drm_dev_put +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 0x289f8251 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c8a7bb drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bc5c12 drm_get_edid +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 0x2b48eabb drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b656f57 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b739f3e drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb5bc0d drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdf6565 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9353a1 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df275d4 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ec58836 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f57ba7a drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f8f3aa0 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd798cb drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ff637a8 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x302fb1cd drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x310c9d0c drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3248f759 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3322d8fa drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x334abac7 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34d4bbde drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34fd8301 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35e72774 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36971949 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376399ac drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38e36f32 drm_connector_attach_privacy_screen_provider +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 0x3b2fc273 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b6f82ff drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bff0259 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c688ae1 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cbae4f1 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d1155fd drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e196076 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e75a4b5 drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f6011b6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f775a54 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41605ebe drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4192a9a9 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42272699 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42dc0aa5 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4307461f drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43266747 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x439fda33 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43ceadee drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4406dddc drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44729e46 drm_gem_private_object_init +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 0x45bee369 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467ef16f drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47419cc9 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4773b73d drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b2eabe drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b30b04 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e3ca7b drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ac5d9f0 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7bcd2b drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bcae853 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c18391c drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c2915fa drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cbf71ab drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d04bf60 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f3c7c2b drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5010a079 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x504254d8 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50674de7 drm_timeout_abs_to_jiffies +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51187f8a drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x513072fe __drm_puts_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519e27a9 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51a5cdc3 __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52165e2f drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x521ad6d0 drm_puts +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52813dad drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a1c621 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54f448c6 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5796e2d2 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x585190d4 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ac7f33 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58eb0cf8 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5942c4e3 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x597c3856 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b6dbfae drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bba15d1 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c771833 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d712003 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da4ff13 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e2a7ed7 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60027e99 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x607a2147 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64891069 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653310f7 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657bba42 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x658a301e drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66537475 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66f2db9d drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67040c3e drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67d4e2f3 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6894c16f drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ead5e1 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5d766a drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c546e90 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c640a52 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd44465 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d4daa40 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e085f59 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fdfe82f drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7043eb9e drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7053a393 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x712597c6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71b6980b drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7251f375 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7289d4d2 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72aa089c drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72e9a5ef drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f96643 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75081658 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75814706 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x783e6097 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x791fa962 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a2a6cc5 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a400817 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a560891 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b669ad2 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc3b92e drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bd06d1f drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c3f7a0c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dcabdba drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dcced99 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ddabc01 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e1272b3 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e64eb3e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8e77d9 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f3259ac drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5c9445 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x809c0939 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e2d24b drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810f7af4 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811ae5c0 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a81df7 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8511d819 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c245c9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85d2c3a9 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86410a2d drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x879fa750 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88c4060d drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88e43806 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cd6dc4e drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e3ce86a drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e491099 drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e9f57a0 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ebd29e4 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec4fcae drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f37f689 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3a8126 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f8c172c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fa8dd84 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff62776 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90bc814c drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90df941c drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90e05a89 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923b0d20 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x925fcfac drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9291afa5 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940fa2ab drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943bb6e5 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94704b4d drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x970e3aa3 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98df96cf drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99b97ab9 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a35573c drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3b63bf drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a4f7bbc drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b858c56 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bb5eb8d drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bda98d7 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9be50b05 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bfe3f36 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c09df64 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cb33b43 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dcb3e6d __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0bc946 drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed724bf drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f004741 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa00fd894 drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa01803f4 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3384981 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa389d56e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa466f22f drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4c09f72 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa570aa47 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a7064d drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a0b429 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e5a4f9 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8f8f762 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9af140e drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa378aa2 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa90b689 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaec6c76 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab1cb47d drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabbd1b53 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac6017e8 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad21f2b1 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadf16e8f __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeba7039 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaefe2e28 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf2a58a9 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa07e2d drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafae7df0 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb02a3738 drm_privacy_screen_get_state +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 0xb1da028d drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4743be0 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6530843 drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68384ec drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e69fac drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb76bb0fd drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a2c09d drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e778f3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93de95c drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9694097 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba63ff24 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbacc1280 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc3fd204 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf7db5eb drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf88bae8 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc294b294 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2aa988e drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5072ddf drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc60f89f3 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6d724f2 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc75f1427 drm_client_modeset_check +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 0xc7de7329 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8731695 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc878c842 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc97dde23 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9ba41f0 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9fd9e7a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca5ed80a drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcad95360 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd4c9fcb drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd910c0e drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef78399 drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd043f2e5 drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0538153 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd05fda43 drm_prime_get_contiguous_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd067305c drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0fa61cd drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13f9985 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c520b0 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd24076a3 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd388b2ff drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4dcab24 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4ff1cbf drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53f2655 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5e71abe drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d139cb drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7150310 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7bea926 drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd85683ac drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8674cf4 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd89ad0f7 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8e742f8 drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9223f2e drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9601e0e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b7b36b drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda581b05 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb5a0f96 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc6b1802 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc8543d5 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd58788d drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddd90054 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde0ad872 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde15d7b9 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb3fee9 drm_mode_create_tile_group +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 0xdf882251 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe10bdaf0 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe16d9461 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a5f115 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe242ff63 drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe34674b5 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ac4044 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fb5449 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4cc3cf4 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61288df drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe65782c9 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe818f001 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8224380 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a034df drm_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8a0e334 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5b4cf1 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebb9a46d drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec2c0ae9 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee756bc3 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef66bd2c drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf062cc8e drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a62d87 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf127f2aa drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf160e389 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a40981 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf27dfa18 drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf28d6f56 drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3379d05 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37dfcdf drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b4c41f drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b5990c drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6184057 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6bd668c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c1a93a drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf70fc40c drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c1b234 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8cb749a drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf993e91d drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa050f06 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfab3b55a drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb13aec9 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc72aaf0 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7b278e devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc95e9a7 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd061968 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd2800de drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x22d53779 drm_buddy_free_list +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x2d9e9583 drm_buddy_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x40d76a49 drm_get_buddy +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0x9f44c898 drm_buddy_init +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xabb5a026 drm_buddy_block_trim +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xbd5b3bcc drm_buddy_free_block +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xc30d71cc drm_buddy_block_print +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xfa150882 drm_buddy_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_buddy 0xff748b76 drm_buddy_alloc_blocks +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x0776dcb3 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x6bb874d3 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0003c5da drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01ad7f6d drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02068ae7 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03c30a7b drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05db6926 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07482687 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07efffb1 drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07f317bb drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b635c15 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ed83bf6 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10542ea3 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1094cdae drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12e9cb8c drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13f8e0e2 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1625576e drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ad7042 drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1915b5de drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x194b4455 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a32146f drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c3d0b9e drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd71e62 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e88ba34 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1eeddd23 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f202b6c drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f26b34b __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24b9a5e9 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x261050eb drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x272971ee drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x285cf195 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b8d86b7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ced4f0d drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d8d9b8a __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e78096a drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ea217dd __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3082cf96 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32491cea drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33fb76c9 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x379e045b __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ad40783 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b6118d4 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c3e0eb5 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d15f686 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f13d81d drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f28adcf drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f412181 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40904bda drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4108fd92 drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421b839c drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45946310 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47876f7e drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ebcb6d __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dc3d071 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee2d5dd drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ee59096 drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52894f16 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5459778a drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a86dda drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56664e2c drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56d3c2a0 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57244b33 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x577229ad drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57d41e7c drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5fff56 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5aa19187 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba74f7d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d64667d drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fbc4d1d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60692ac6 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60bd8c06 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6203452d drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66e92b98 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x676f781f drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x677711de drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67baf1d0 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68811ec9 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6afbc18f drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b824d97 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b8aa887 drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c202a0f drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d4e490b drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f4bd3cb drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71215cc2 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x748ce97c drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7744e246 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77781d40 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79c2727d drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a3f54aa drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b143932 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc5ecdb drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ddc2887 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8042d8ab drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8320aadc drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8381c3f6 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84cc985c drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8561a043 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86f0e410 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87ac7a40 drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88ff98a4 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d3b4359 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2e904b drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fe96d8a drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91f5c29c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94bbc050 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9542178e devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a172d0 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96515a1a drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9670132c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x989b959b drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a4bd95a drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b72eba2 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ec0bca1 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ed4af2a drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fd451f2 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa12c2002 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa13ca400 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1a35419 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa74408a3 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb4b569 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae354b67 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb26f0b87 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb28c8bdd __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb631b7ca drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a41b81 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb98e4f12 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbabb8b3c drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbad0ec37 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd547a8c __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf8f6a30 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0f2ff86 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2087038 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2bbb251 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc38f3a7b drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc54ba8a8 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5cde1c7 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc78133d5 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c9bf51 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8526764 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8a8edc2 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc99d4985 drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1c8957 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc126914 drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd34fdd4 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdf53c3d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce41734d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce7f7f0b __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf3c6c6d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf65b82d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0e2bcff drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8563fb2 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9312b7c drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd95f59e1 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd96d8f46 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9d9e8f1 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaa613de drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc11cc4d drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcec643c __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf31d4cc __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf4f8ee2 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf98d938 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfc719e8 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0407b5b drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1488e23 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4c38e31 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5716bd8 drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6067de3 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6925b31 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe754f5b2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7681122 drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7701faf drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe863e90c drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e42c2b drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca1fd91 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef5b87a4 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1b5b3ed __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3d4746f drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf551db20 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6a087e1 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6b2a426 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7470620 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf803fb63 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa35bf64 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfaf3d604 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc1d76a9 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1780e7c1 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x24647864 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2e08f087 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x3fd0d5fb mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4e73517f mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x50e4a420 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x566e3bef mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x70bb51a0 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x74244a3a mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7d6fa9c1 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x7efcf0fd mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8b8d433c mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa373d739 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xb497a5ae mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xce2ac071 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xced730c4 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xd5664f81 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x06de72c4 drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x154379ea drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x291e34fe drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x516a26f3 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x59873eb1 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6b4ade03 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x6e497e55 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x83b8ad80 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x8f3799fe drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xd80e5664 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x09407e23 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x0c546195 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x1a228ccb drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xad52a7d6 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xf7edbf1e drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0a2b122e drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0ea212e7 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x15059766 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x198a58e3 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3bfb68e4 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x54719ae8 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5c4641e8 drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6419e029 drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7707cceb drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x958732ea drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa41f46c3 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb281eb0e drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc9844211 drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2359d9c drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe2af4ae8 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe69f46d7 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x092d5cec drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0d6afc72 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0daec174 drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x15aa7ddb drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x191bb8a8 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x213e8ff6 drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3017f3a4 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3acc2562 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3e3cd7bd drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4aafc49c drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6349da13 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6b0d5156 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7ec2150f drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x86503b0e drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88d9f2c1 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9770699d drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad34eedf drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xadd3d836 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb236a3c8 drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb2fcb224 drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb653e1be to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xb95c53c0 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbdbc9d59 drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc2397d9b drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd65a2aff drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe7056bc4 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xf99b22b9 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06e56b34 ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08627963 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x101f75d8 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15063a73 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x166920b7 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17001639 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17b59eb8 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1df2864b ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21671146 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x234df3f1 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2acf4e1a ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2bc90c6a ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30744274 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39e27e69 ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a2d2803 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x42016a22 ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x494c16e4 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49578296 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b4b5c2c ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f16d055 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x521c26cf ttm_agp_destroy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5345bb20 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x572ff34f ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x589d7e59 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a7874e4 ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b07da4b ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ca257e5 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65990bb0 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6afee528 ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c3af34a ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6eaa933b ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74c36981 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76d16806 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7af2a145 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x81c3053f ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84084cdb ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x871f5a47 ttm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8862473d ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bf3f10b ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f2a667a ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa404df60 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb338c102 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb56271f5 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb583879d ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb9bb829e ttm_agp_is_bound +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1a56dc6 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2c8de88 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc40d7b1a ttm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc490aea8 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc582b7f8 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbfde927 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc961188 ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd065c249 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0e1d4cf ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd17b0779 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3d3bcc9 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd5ef0538 ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7f33f3d ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd9237a41 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd92780eb ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda417d23 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2a2b35c ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xef5fc90b ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2aeae14 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4e13e07 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8ac5fb7 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/hid/hid 0x5cfea291 hid_bus_type +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x04609ae1 ishtp_set_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x0f947ab8 ishtp_recv +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x11b04057 ishtp_get_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x15ce5dba ishtp_cl_link +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x16816639 ishtp_cl_driver_unregister +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x18293e6e ishtp_cl_allocate +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2be495ca ishtp_cl_free +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x2d500ea5 ishtp_device_init +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x31948cea ishtp_trace_callback +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x35835235 ishtp_cl_get_tx_free_buffer_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3afa3c68 ishtp_register_event_cb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3ef4808f ishtp_get_pci_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x3fdcc96d ishtp_get_drvdata +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x4ba96be1 ishtp_fw_cl_get_client +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x547cd7ee ishtp_cl_disconnect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x559908ef ishtp_dev_to_cl_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x5f9b0501 ishtp_get_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x66dd1d20 ish_hw_reset +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7057f10b ishtp_set_connection_state +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7498f756 ishtp_get_ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x7b440bec ishtp_set_tx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x91546462 ishtp_cl_get_tx_free_rings +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9169b367 ishtp_start +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e173785 ishtp_cl_io_rb_recycle +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0x9e5a5915 ishtp_set_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xa6629876 ishtp_cl_driver_register +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xaa918aef ishtp_reset_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb07fcebb ishtp_set_rx_ring_size +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb14699a6 ishtp_get_client_data +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xb4d278c7 ishtp_cl_set_fw_client_id +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xbad9bb8f ishtp_reset_compl_handler +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc187a7ac ishtp_cl_connect +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc492ebf4 ishtp_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xc6565cb4 ishtp_cl_rx_get_rb +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xcbedf4c6 ishtp_cl_tx_empty +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd394ff01 ishtp_send_resume +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd4e86760 ishtp_cl_flush_queues +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xd57af16a ishtp_send_suspend +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xdfce4f43 ishtp_put_device +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe5dc4d4b ishtp_cl_unlink +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xe7e25752 ishtp_fw_cl_by_uuid +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xed05d5f3 ishtp_bus_remove_all_clients +EXPORT_SYMBOL drivers/hid/intel-ish-hid/intel-ishtp 0xefecfe83 ishtp_cl_send +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x25a3bb6a vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xd77758d4 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe7e12060 vmbus_sendpacket_getid +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 0xe245fde9 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x46af1a2a i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4aa38e3c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb6b1f9cb i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x51bac13d i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xe3f0ba4c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfadea78b amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0x5dcc475a iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd37ccc0b iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x28d5e98b iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xaf5437f3 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x1da3553f mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x5200c09a mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x65d478e7 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6fcdce6f hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xcf05ef3d hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x9df47387 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x8595e00a fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x5c90c0ac st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x8e14c8d1 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/industrialio 0x03d2a29c iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3346209e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x42c6ade4 iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x475a92e9 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x47e74c8d iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x498b81f8 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4a17d018 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x51837303 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x633b3ee6 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x641e1a88 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x64587dff iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0x6f2fa235 iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x71194859 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x72dfe377 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x78fa9204 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x9e511e4f iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xb14df0b9 iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0xbe1d2522 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xcd9ce34a iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xd7def922 iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xf369052d __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xf8cebc88 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xfb01c3fa iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0xae64f4b2 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x84cf9e38 iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xcc211067 iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xd7ded68a iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xe275113f iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x0eaea8fd iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x2d1d55fa iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xc9654031 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xee1bbf77 iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x56a0090a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5dc8b6e9 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x4de920f5 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x56b5cf35 bmp180_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xbc331257 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xd493383f bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01828afa ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04c90732 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05542d43 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d4491eb ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x226acfb4 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30ba20b2 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4710fba1 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6cd5eebb ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x76d9917d ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d443201 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb4185865 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbf4b684e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcab49cf5 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd95f4e25 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf471badc ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03fd883f roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04a973a0 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05dd4f37 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06895087 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c45160 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0707096b _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078a6a5f ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0816e276 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089c96d2 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09b04490 ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09bde145 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a55f0ab ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0af9ca0a ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x103c3c54 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x117ba6b2 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15824a23 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1814353e rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b9cadfd rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bd09589 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e805838 rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20147d55 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20964b6b rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20982b2d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x221c7203 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2303f29e ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23e34a9d ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2454be00 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24854f09 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x248b9027 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26e87284 ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2702f769 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x288eb50b ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a595f78 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d36baf0 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d7ccc74 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f019be4 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3039581b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x30b6839e ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3155d036 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x360e0750 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3668e948 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37b4cddb rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x37d6cf75 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x384ea748 ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38c3dbee ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x395b8b0c ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b8948ee rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cd55494 rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f6637b7 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40e4d74f ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41248a8f ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4170f4d3 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x418af085 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41f3f63f ib_rdmacg_uncharge +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 0x43a33995 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46c3bfa8 ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x471bce09 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x481ca75c ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48c813c0 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x494445fe ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49ca988f rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a021d02 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c2f6c70 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c6238cf ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c6cd68d ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d36760f ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ebf331e ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51ca0747 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525877c8 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x546192ed ib_port_register_client_groups +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 0x593a8ead ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x599c7f19 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c347546 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d5306c4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e14495f ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eb5de92 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x613b1e2e ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61478de6 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61d24c52 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62036048 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63c36d61 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64ac09c1 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x657d718d rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69007aa8 ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ccb9c25 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6cee0d83 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d25e00e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d3c4a4c ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d757447 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2adca9 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7074149a rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70e10eb3 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71634672 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71fb9f94 ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7239afd7 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7412c24b rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x748a6e59 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7527464e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x761c74ac rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x778d056d ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x780d4d18 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79a3d3ce ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5b8cae ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c092014 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cb488d3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f2f7be0 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81d003f9 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85f7e050 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8639e612 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86582da1 rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86e128ed rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8720cab1 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x873aa05f rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f4d204 ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88be3504 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89df739c rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aaed02e ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b2e38d0 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bed0a1d rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d9171ad ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f95f422 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9188c91f ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x936b5473 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93fa92a5 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96c460a9 rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x988d3bc2 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b4b810 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a37339b rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c574665 rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d68a70f ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa01064f2 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa02b3cb4 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa494763c __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa697c715 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7cf6ea6 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8899e7f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9575f7d rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab243a4c ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab4cdb74 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabc7996b ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac03b26b rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae2b12ef rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1077ead rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1e95556 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb368da27 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb43c36ea rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6d17fc2 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb78cca13 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8190fb6 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb91d08e1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb965545e rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe01cbdd ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf633663 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbfe99b2b rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc01b6b40 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1cffac1 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49bdfc0 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7884697 ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc84e56c3 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc92c44f9 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd569c98 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcda5ca9c ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6d2373b ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9910845 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda1d0bb1 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdcbee433 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd57b754 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdda5a017 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe34bba91 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47a9e6c ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4b0a47c ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4bdbe55 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5a78c1e ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe898407b ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec30e194 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec777cbb rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed64ac4e ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee196d50 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee89e5a8 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0abc564 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1da840e ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4ac4887 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5dedb30 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf647f810 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ed3334 ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfaaddda3 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfadc5504 ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb6447b5 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcb3b90c rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff76d19c rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff849a20 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x023350f7 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18ed9606 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1ac8185f 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 0x1eff5084 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x25617683 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2a979b68 ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x35daa2e7 uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4bfafe2b ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4f5779cb _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x532c4d0c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x544c9f61 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f5202aa 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 0x6d737e7a ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x709238cf _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7bf7c304 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x84dac328 ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x8569c94b flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94fd6097 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa5b904dc ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa8bca041 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa9e8ee60 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xac155a8e ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaea30499 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb61c6acc flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb778bc82 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbc5ad965 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc5e0f489 ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc6169aea uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcfaa11b9 ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd0740f47 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd22eeec7 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbc063a7 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdbf82ec5 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe4e16862 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xebf5ab8b uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf1c25543 ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xf3a69a80 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2ac330e0 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2b489192 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4bba032d iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x70a765b2 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcbd05401 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd69360f7 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef75e28c iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe051855 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x04a64c1c rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0823e381 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08a0b43e rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d5c9fe9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c0357b9 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2262e302 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24ffe3a8 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3b3203bd rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3fb8f095 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x49910f66 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4c8dafff rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x54c16d8e rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x561fcbfd rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c50d860 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63076923 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68386175 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x72bcd9fd rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x771af9b4 rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x821a7d92 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83fe5658 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x88b3b8d0 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a5b5e8a rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ef7b3f0 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x913ba94d rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91f6868e rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9eac10c3 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa6424cff rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa886b601 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf06a041 rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1868404 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd90803a5 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea08a058 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xece533a2 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xef968ae4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x040e4eb1 rvt_alloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0954379c rvt_dealloc_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x0e385842 ib_rvt_state_ops +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x180fbda7 rvt_send_complete +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1d8f89de rvt_mcast_find +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x1deddddc rvt_get_credit +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x29c3f283 rvt_add_rnr_timer +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x2dd96e4c rvt_error_qp +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6138de4f rvt_restart_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x623f4773 rvt_check_ah +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6761ccd3 rvt_unregister_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x68be16fc rvt_stop_rc_timers +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x6f3e36b6 rvt_rkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7487045e rvt_compute_aeth +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x75c1bdcc rvt_init_port +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7c594bb2 rvt_get_rwqe +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7dea91f7 rvt_comm_est +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x7f6cc10a rvt_del_timers_sync +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x86fcc652 rvt_register_device +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8abf9f06 rvt_qp_iter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8b343a1d rvt_rc_error +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x8f8dba0c rvt_invalidate_rkey +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0x9677c9e4 rvt_qp_iter_next +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xa049d181 rvt_lkey_ok +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb6a28d5a rvt_qp_iter_init +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xb7ee98b2 rvt_rc_rnr_retry +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xbb536af0 rvt_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xc2003ff7 rvt_add_retry_timer_ext +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd6759f80 rvt_cq_enter +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xd924dcc6 rvt_ruc_loopback +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe4883694 rvt_copy_sge +EXPORT_SYMBOL drivers/infiniband/sw/rdmavt/rdmavt 0xe9cf3e43 rvt_rnr_tbl_to_usec +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x1aebbe7c rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x474f9acf rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x6759028f rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa1100f87 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xa988e417 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xda6c8abd rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xf8e2956c rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x242a8646 rtrs_addr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x57798d2e 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 0x69f2b42d 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 0xc2cdfff8 rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xfd764177 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x19c98de0 rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x63216da2 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x8203679c rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc40a7f28 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc4a08829 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xf9fc9b5f rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x279199bb gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x67ee76ec gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8584a824 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9940257b __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb29c3419 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3e521d6 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbe150d37 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc9935828 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd0117807 gameport_set_phys +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9a1956b1 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xe8a1225e iforce_process_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xfec2cebd iforce_init_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x73013516 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6a6c9ed1 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xb3094625 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe7574b25 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x0ce0c440 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 0xf07ec9bb rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x06058025 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6d03d87f sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa9e1108c sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xce37ae8c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf82c8483 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x298d76eb ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x8144f858 ad7879_probe +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x28f0be63 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x43ba3cd3 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x4f194a0d amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x9327e487 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0x9c4bc6d9 amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd/iommu_v2 0xdb7671cc amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x59bd4191 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x60532018 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x69ec1fa9 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe2be0b9c capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf4b0a21d 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 0x4867956d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x532a978b mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7b683fe5 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf1c3cac4 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3713347a mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4816456f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1d0ac447 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20ccb71d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2391d015 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x272ee28a bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c2bddc2 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3310d188 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x345cc3d0 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35ae7d20 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a6fd278 mISDN_unregister_device +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 0x5ba9326d mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e47f9c0 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7a78df7e recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x967af1a2 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa9d31be3 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2207e2b get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb8ca5ddf recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbffcf0d4 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc8b76321 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfc205d8 recv_Dchannel +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 0xd5235eb4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdb7e9a4a get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xde0d3aac mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb453830 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x93df9e4b dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb07a21b8 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x54a12ec4 ti_lmu_common_set_ramp +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0x65f9050e ti_lmu_common_get_brt_res +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xb414cbf0 ti_lmu_common_get_ramp_params +EXPORT_SYMBOL drivers/leds/leds-ti-lmu-common 0xced72aae ti_lmu_common_set_brightness +EXPORT_SYMBOL drivers/md/dm-log 0x1cc410cb dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x658f9a1b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xc3a9a7b9 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xd22b887a dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x214f740b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3063dfa2 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e52e7ec dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa064c53d dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xef8ba54a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf0e328b4 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0x4b257cb1 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x73b96b05 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0d70ee62 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0fab1925 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x20848bf3 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b0d0b57 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ba3d957 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38e7b5a8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f981531 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4366f0b3 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b6f0778 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d4b651c flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x70d26882 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x740aabcd flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc34fbb4e 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 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x5a94c43c cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8c320927 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xad3031d4 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd2c9ba4e 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 0xa5f3a420 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xfb5b5b00 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x584cc62d 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 0x79d72274 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 0xcb8190a1 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 0x1052baa5 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x11a65bfe vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x1257ac15 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x15a40ffc vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x2a299ae8 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x78e97016 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xa21fa765 vb2_create_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-memops 0xccd197c7 vb2_destroy_framevec +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-v4l2 0xe7e5a235 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11a8e73d dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1754cd6e dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x31a3be06 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3fb086a3 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4778efb7 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x489dd9bd dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x63baed64 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x69ea0f5e dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72bbf499 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f6b174f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x847f521c dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8cfa7666 dvb_dmxdev_init +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 0xa42f9c5b dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4f1c152 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae49682d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3b09a28 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcb681bd4 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xda6c377f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe61268bb dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe7d9e240 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeadc21ec dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xedefe7d9 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee35bf97 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf8c36889 dvb_unregister_frontend +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 0xf361e156 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xcdd42caf atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x08ecb557 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1216c0f9 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x363bd84c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9566f53d au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x97be722f au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xba1f7996 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbc3f162c au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd2b4d347 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf2fd20da au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd6c7373e au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xa7ccd457 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x983ec7c3 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xfbdaf55f cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x3c30506c cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xdcd0d968 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xddb61f2e cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xffd8fa97 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xcc562ab9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x246a5ff2 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x25f0f510 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0d429cd0 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2e91736d cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5b15dac0 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x540aab13 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x180872c2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2b778e38 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4a13e571 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6302a7e7 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe7395a03 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1715ae3a dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1b01d992 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1fb564db dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x40a4efbf dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x429b6d91 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6d53891b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8531e53d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9dd12eeb dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa0bc166e dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa8dd588 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaf1160b9 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xccad8b2e dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd40e9498 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf9dbc90 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf352d62c dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x32861e61 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x41883be1 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x509f8788 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb0371ab7 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xde102f3a dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe835af85 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf27f05fe dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x02292f28 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd2d4e40f dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xeb2fc134 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf9c4df0d dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc0b49cbc dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x84a19a9f dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x3022e2d6 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x32e1c006 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x434dc390 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7a55965a dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x94cdf6ba dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9518a983 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9554ef99 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbe40ea11 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xcba9f4b6 dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd5ae1aa9 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xd987ada3 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf9eec747 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xfb288877 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0c092678 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3b3fefa2 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x61657971 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x96d5e17f dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xca0261aa dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa547bae0 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x4c730603 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x13c25a30 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x114e5434 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9b40678a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x25ea0ab4 dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x8e242edc dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xd000f90a dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x5449f872 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x5098e304 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0xbc4d992f helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x76e2161e horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x8dd20a1e isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8bb39411 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xfabacdff isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x8f65cf6d itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x792273b1 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xc225afc6 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xcbbe0614 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x7a4c0b4c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x9419b915 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x6cb72b97 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xd2964cb9 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x33af2d42 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x6da10b94 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x12c503e1 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x430ff7c2 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9861acb0 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xab279a92 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x2315e859 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5dbb258e m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x7c1ef2dd m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x2a55682e mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x796ab38d mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x89ce715a mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x7a77c382 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x9dc3e529 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xc818ab6a nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x6b4f2dff or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xac557546 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x249a502b s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xdc27c77e s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x587db13a s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x909512dc s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x52258be1 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x7ac5c89b s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xfa97a88f si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x9c6aaa5b sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x5e72b86e stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x2c3eb7eb stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5d3844ee stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8f0a478b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9b45c37a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x65e4544e stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x67e121ea stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xb35d94a8 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc029c7cd stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x308c58cd stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x46256e9e stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x3e87d297 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xbf7c38f1 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x37f6a7af tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7b34c75e tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xf7230985 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x1e6f9e41 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xea0c481b tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x96ab0230 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xfa11fa7c tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x874f1f12 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x4c9bc0a3 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x764d759d tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe118c01c ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x8a04428e tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x00fd9396 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x31b14def ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x05fb8793 zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x8a04ccbc zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x78c78d0c zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x85fbb9be zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7f7b3132 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x327be100 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37ef6719 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6a93919d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x72933d9d flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7d848352 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8678d3fb flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbcfedeb1 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0382d8d3 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x1c2b6129 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9a588662 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb4b8c27c 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 0x3577df68 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 0xebf80347 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xedf6fecb bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x21bc0954 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2641b50c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4b122b14 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4c4dc9e2 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x616c1b50 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7311c97d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x84112a15 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8f50569e rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xbd0acea3 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x1787da2d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x06d57396 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3c788797 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x90f9d691 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xdd4624ef cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf58ea4c8 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 0x21238e96 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6b66d897 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9c604f60 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xae38accc cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc317dcb0 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc6f8796b cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe48ab51a cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x5f5144f6 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf5dd93b0 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x00106fea cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1b2d9441 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7bad0e79 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x876ef4bb cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5adb5572 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6a64fc77 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6fc9b726 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8b7e5f45 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9bae1ed3 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xaa1d7342 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfd34e6af cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00ab67f4 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x19b4663a cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26e75551 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3f4aea9a cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4aa2b05c cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x58d3c477 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edb7ae5 cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x608ead9f cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x65ecef81 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x685ee6f6 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8220a096 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x86550373 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d8ac627 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90603575 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa65c3ebf cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc57de5a9 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd539bc3a cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7d69507 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd9438bf2 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe14b0b55 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe772faa cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x273a04f6 ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x02fe582c ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x06a94257 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07442a34 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2311c99d ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31365773 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3ae05b2a ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4548d8b6 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x459072a3 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5e661741 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9957699e ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9e2e11a6 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9ff7b7ce ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa6a1f3ee ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb1c4d990 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb4cdedb9 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb63d84bd ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe2393869 ivtv_init_on_first_open +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 0x216b4738 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2c5c860e saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x58a7215e saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f61c84b saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x88e14d99 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f84ee68 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93e09451 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9b716a1a saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabc70060 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2a53afd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb5c95ad1 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2eeda533 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x38fe9050 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3bfa027b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3cae11fe snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x72e7ab49 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x87ae36b9 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xea90bdcb snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x0c224b23 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8da6b1f2 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xb62a0068 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x477bb61e fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3262936e fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb2639fce fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb7fd5ea6 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0xe69c19d7 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x87a8e6f8 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x22a349ce mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xad6c2867 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2d65c163 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd8f9f1e4 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x00cf0413 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd38eff56 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x971cb5eb xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9ffc9afb xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xc0ea512e xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xbe910d19 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe799cb68 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x049d1173 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x211e65c7 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45a600a4 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x474826e8 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7e0c31aa dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8affcaa7 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x97e1658f dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd5a98ee6 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe7abcf01 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0d00b712 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x18676055 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x219ec4ab dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4442709e 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 0x9ad32430 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd8ea85ab 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 0xa909dccb 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 0x01bec023 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x03922171 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x24dbb0c8 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x34ca7c36 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f7ff340 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x46a27db3 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x82da1bce 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 0xafc73bb6 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc484f0ac dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x643cf678 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xb46693cd dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x81daf040 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xcedc0a19 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4a8d2630 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x57c6c315 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8c655826 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa79e29a3 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb974ec26 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc10aeb78 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xde7cfe3b go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe60425bc go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf8b4f86b go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2ef8271e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3bb91956 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3d3527c9 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x51d8d6f4 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6e39aed4 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7275c43c gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd1fc4cea gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd429301f gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x500b1a2e tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x63b9aac5 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xbe325d33 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8369d3ab ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa8aed261 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x07fb3fcd v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x1e0505f3 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x4817e9c3 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x538c041d v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x87ba0820 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xec7ae78b v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x17eea0ad v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x29a370c7 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 0xd77cc214 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xedb685c7 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x00a0ff34 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x023c96f1 v4l2_ctrl_request_complete +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 0x09d9d0ca v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0df53389 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1340815d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c7761a8 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x245d1d21 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28b12cc9 v4l2_format_info +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29725d85 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dedf5ce v4l2_ctrl_cluster +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 0x3627a83c v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38484529 v4l2_g_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 0x46e7b03c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47592341 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49b99b50 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x500f6fc8 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x512ec797 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59a78ba7 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ca3851 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c7d87ad v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5d352643 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x60e1e031 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68fce0f1 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b0a0d11 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d147fed video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89bc442a v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c79edc3 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9288f8a3 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x953dfd85 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95bb9aa3 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9aa1eea9 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d9a2278 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9df0e6d3 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f300242 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa07337fe v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa145f4e2 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa7b5d85c __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0553516 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb92d007a v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xba232fbf v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc7a1ead v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc423c95a video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc71b7a14 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc781d49d v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc8b74c0 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd7a653a v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0caefa3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7b2d640 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda51b261 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b72d6c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5f86f4c v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf731f587 video_device_release +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0078dff3 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x10f8253d memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x311315c0 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x49c7195b memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa6f03197 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab151966 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xadede56b memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb89a9ea4 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd09f7b91 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd4f1667b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdbab94b9 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe3c4566e memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02f800a3 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1274cc5c mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17f4fb6d mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18c458bc mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27550b32 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ce80ef4 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37c2bf75 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48d9d682 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x536bc8f5 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5859ca62 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x624666c3 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c7f99e4 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70ea9f5e mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x741709f3 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7af65ec1 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7c0cc97c mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa29af991 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa9ffc459 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb05f27b6 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb06543e4 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb38eaa37 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc725285 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1336cc5 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcdddfe44 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd479576c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4c3047b mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb310d51 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe52d363c mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe81e6883 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02f74694 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03cfe07a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x040fb685 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x158ee07a mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1badb89c mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1cb3a84f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x28dec067 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3aa2a963 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41ee9e5d mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b467f64 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d94e991 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f946df3 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x515ae256 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54155b0a mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e178c4a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76eb7a6a mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d9f75dd mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99463415 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c49e4f8 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaf2bdabe mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcad1ee52 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd75ff1b mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd741458b mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd7a895c7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdeecca76 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe876c2ca mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6dc8fb9 mptscsih_qcmd +EXPORT_SYMBOL drivers/mfd/axp20x 0x7522115c axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x7ee818bf axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0xdcc8bfc8 axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x0463709f dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x1939addc dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xf93d4681 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x82722e64 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xeed3c337 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1629b4ea mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1c89c2eb mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x204bcc64 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26b08d96 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x47d92f33 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x659b6be1 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9f913772 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa2fec43f mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba339a62 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf3af7678 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf573ac1d 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 0x4fa7c028 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x92ff2ccd wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xb6cc2404 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xd0c5c205 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe2ff799c wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe44950f3 wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xbc2dd474 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc3152273 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x42ad50de c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xba2bb5cd c2port_device_unregister +EXPORT_SYMBOL drivers/misc/mei/mei 0x0053fedc __tracepoint_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 0x198b7770 __traceiter_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x1bddbaa6 __tracepoint_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3b0a488d __SCT__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0x3d1d0844 __SCK__tp_func_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x76fe8ff8 __traceiter_mei_reg_write +EXPORT_SYMBOL drivers/misc/mei/mei 0x8dbef5c3 __SCK__tp_func_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xb1b66fab __traceiter_mei_reg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xc7734faa __SCK__tp_func_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/mei/mei 0xe7f18c73 __tracepoint_mei_pci_cfg_read +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x1385e7d4 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x3947b6ce tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x645217d1 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x67be2c66 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x7ff57ab4 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa73cb2a6 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xba79bac3 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xccb3e4fd tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd5f004a7 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xd937ff37 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe5e0b128 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf6c6739d tifm_remove_adapter +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x2377bfa3 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5e91c00e cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xc89e2bdc cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd7c2678d cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xe36d2b9d cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x0db27c45 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x51196931 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x25fc3570 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2fee4756 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6b404f53 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbee3da8c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdd5e1a21 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe30a6fe2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe97a1d9b cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x11cb4b34 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x69936e48 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x7c51eee9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x803b6146 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbba1183e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x14c3f6f2 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf22addf9 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x04f87a04 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x81ec9706 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x0f6da79e nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x16d6b581 nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x2125b969 of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x31302b96 nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3d94e81f nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3db5d200 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x448ab7a1 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4586cc94 nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x5428bead nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x60c6fb01 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x6dbc2fab nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7379f2f8 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x75da79b1 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x86135874 nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9fc62b1d nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa47cacc5 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa9e28338 nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xae9eb416 nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc904911a nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xc99a50de nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcbc14dbe nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe3ed6dc5 nand_ecc_sw_bch_calculate +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 0x56627d76 flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x74d94ff9 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x66a17715 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xb0b5ef5b denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x1eb16da7 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x4f4783e7 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x60f0b720 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6b75a660 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6f08deb9 rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8a6ab21e 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 0x9314b022 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9750cbbc nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa7f7c0f1 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xb63d6e4a nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xbd496f8c nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc14da6e9 nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xcb03cc10 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xea629a7b rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xef0c77a0 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf9f2d865 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfdafa80b nand_create_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x14fb980a arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1b89961e arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44afe4bb arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4b11bd35 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x903e02f0 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa5dea58f arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa9f3312d arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaa27ab90 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad19b5f4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaf1ceb42 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeae08f3c arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8d6dd9a5 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaace7c7e com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xee841847 com20020_check +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x1a1a214c ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xe6c098ef ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xf2b1729e ctucan_probe_common +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0ac10c81 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0e1cf2bd b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1a40a835 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1d3d96f6 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x280bacf1 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2f073143 b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x35792b74 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x413529f9 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x46509823 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b17effb b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4d9eb40d b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x67efab5f b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x69ebbdc2 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6c3f8f26 b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7249bc63 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x75e32741 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7eb1589b b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ef7d15b b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x80f91464 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8d291525 b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8e44aa19 b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x8f1c492d b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x902b9f4a b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9270e5ae b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9d6d5b94 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa533c2a6 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa5c5f98e b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb40951ca b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb521b038 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbab479c2 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbcce4f50 b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd5f0b03d b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe1a95eac b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe8b9a791 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf701aa44 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc062c55 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfcb0ec4c b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xff3b06d8 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x05f9d620 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2560c6b1 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x2b9b2ab6 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x5e28c1d3 b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x32dd32d3 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x4ff21686 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x5a3de559 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x2829f9d8 ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0xe3df8cd4 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x47500496 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd6c90089 ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe45f03d3 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x085da0c5 vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x7bb13220 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xdc68cdf7 vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x15dadc2b xrs700x_switch_register +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6ca58f5e xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x735d64b0 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 0xd7644fae xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3b4950b8 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3f0401ac ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x470fc634 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73e050f0 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8c790c6d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x978f8686 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bda8e71 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb8e55152 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7e4d437 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfd7624c3 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0xbb6436c9 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x8e2a286d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x10c8d642 cavium_ptp_get +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xee39ec8d 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 0x1f2cb1fb cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30c8e7a8 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41aa3219 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x437e82e3 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x487496ad t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78a07532 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8242264b t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x84139c01 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b58b0e3 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa634b746 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa76d52da cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa7ddda4f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbb08caf7 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc0c81196 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd12c9f41 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeeda326e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0069c38a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x084bcc84 cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a74d96c cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0efbe0ae cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1cb495f8 cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f70eb37 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x21b9ad7f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x242bc15a cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2f63c710 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33c67a2b cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3dedaea8 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4446ab0c cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50f32379 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x55249f7e cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x565e05fc cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57f81664 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x581fe096 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5a8b2045 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5c19c31e cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ecc0403 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ef49914 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f50ab1b cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x671e53ad cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ae1c642 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6afdbd7b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x771ed386 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa50e9ddc cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa405cff cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1f9c6fa cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb33fd82d cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5f9d683 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb77adf1f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd34649d cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0156232 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5a89a77 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc61a14c1 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcf4d7061 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xddd766ad t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde252cf1 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe53a3d88 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe57afe27 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xefb73b44 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf483a9b3 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf63fa800 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa39b0f5 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffffe2d9 cxgb4_ring_tx_db +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 0x29dbdd72 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x3dc1836e cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x785efd3b cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8540ab31 cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x8f53876c cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9b01d868 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcac614ee cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3be01006 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x45503524 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9870413e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa52d6a27 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc601b93d enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc7b94ea6 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb6d1a3dc be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdb4f072e be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x242a34ce fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x4d84c382 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xd3ec3bf8 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0xe63d2bad fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x18d96334 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x990c4799 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x8465262b prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xb5412d7a prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00d95d4a mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06d8f0f3 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x095ca8b9 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b7ebb0b mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bab123b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x124dd2d2 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1327f85d mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x141dbb95 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x198b98cc mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x258dc0ca mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x270431b9 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34a410d3 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f3002e4 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4719429c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4861a412 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48d15922 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x491b8611 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49398939 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b95f0da set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x617523aa mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a24501 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66a678ee mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6da799ce mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7de7b3bd mlx4_sync_pkey_table +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 0x80530dd7 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84d969ae mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c1da70 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88050b56 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c7625a9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9907e303 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8f5d76b mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae28369b mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb31de085 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc790c070 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcac3bf6e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd503f198 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdade2fb3 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc908b19 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcbe3d36 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdde5bbaa mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5eb3654 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf74d84c5 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfce99b97 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfde28d35 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x000da167 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06d4bfd1 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07acc34f mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b22e7d3 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f4b49fd mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fed8cac mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10156288 __tracepoint_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10afdd28 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11e169b3 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x162e0180 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x169ba4f5 __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19584deb mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x199daf76 mlx5_mpfs_del_mac +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 0x1d39e1eb mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1df8836a mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1eead2b1 __tracepoint_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1efea6c1 mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21182b8b mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x225095d8 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x251e1f7b mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2558df0c mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25c5ed52 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x268540eb mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2887a54d mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29d77307 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b3da031 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c163af9 mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d65b857 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3368e5df mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x364c8397 __SCK__tp_func_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38789aa2 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c995866 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cdf8347 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d155cf0 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df22a8d mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e669475 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e7c8f2c __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40bb674c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41025e75 mlx5_cmd_do +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e412f1 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4202b207 mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c79e15 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4655c0c8 __SCK__tp_func_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47eb9721 mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48c71a84 mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c19cf9c mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e65aba3 mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4fc15244 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51c33369 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c62a05 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56bf375e mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56bf8f5d mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57a3c205 __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b5367fb mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b5fb695 mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d7a7ae2 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5da802f3 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x604af45c mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x609b8a2d mlx5_rsc_dump_cmd_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 0x62dc190a __SCT__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63b0017a mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64016ec0 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66878d74 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68fb3ecc mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b302fe5 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2a030b mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa37821 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71686ebc mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71fa231a __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72fd541f mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x751a79dc mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76783d0f mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x773a6c9a mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77d7dd57 mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x794f2787 mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b1203a1 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e1f2157 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8384ffa2 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83a7867b mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87116a75 __tracepoint_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d8ed2f mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x894d813b mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89a3b975 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a1189f4 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a5af256 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ac56e8f mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad035b7 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8bae849a __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f601c31 __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9348c5e7 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94b1088a mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95d47ac4 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x971f4700 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99baa1fa mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a173ab8 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b73605f mlx5_core_create_tir +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 0x9f583454 __SCK__tp_func_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa29495f0 mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8ccaa32 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 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 0xaf289d26 mlx5_eswitch_unregister_vport_reps +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 0xb40620eb mlx5_core_create_cq +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 0xb66ed23e mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8852ad3 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb901d54b __tracepoint_mlx5_fs_add_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 0xba94f8b1 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd94c837 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc56d9ea7 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc66f1e96 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc73a9235 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 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc0baa9d mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcdf32861 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd173ea8a mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd35586c2 __tracepoint_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd739f363 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7ee8e9a mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8badfc5 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8ee94d9 __tracepoint_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd949aab5 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda6e640f mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaa0cc38 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb484064 mlx5_core_create_rqt +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 0xdbe99d50 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcf57c63 mlx5_fpga_mem_write +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 0xe0f5e76e mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1498dac mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe30fb2a8 __SCT__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe54123d2 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe55aeab6 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7db68ec mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8cdd674 mlx5_rsc_dump_next +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe94e1716 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe94e57cf mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb8f172a mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef659d5b mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf16a34f0 mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3318e77 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf50b30ba mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6e5ed5e mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7b55296 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8ef3982 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbedf1ca mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc6f446c mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcc6b334 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb775c6 __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffea05ae __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0b521a56 mlxsw_core_skb_transmit +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c267748 mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x37474228 mlxsw_core_traps_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x38483cf3 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3d9a632c mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x42e7feeb mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x44001d15 mlxsw_core_ptp_transmitted +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 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f46c779 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x669cb753 mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7804b61a mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x92128eb6 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0x9d3e6c1c mlxsw_core_rx_listener_unregister +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 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xaccd31f2 mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb12e61e4 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbce995df mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2727178 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdcc4d998 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe17c42da mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf2a72df9 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x3d767265 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xa95d69c8 mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x0cb22566 mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe9849253 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x00773cc3 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x06e6775e ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x07c5d27e ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e372826 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ee58bdc ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0fff6aa8 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x101525c2 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x11ec2692 ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12f8b18c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x14611211 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e4c6c3d ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e4fa7f9 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x26062faf ocelot_vcap_filter_replace +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 0x2d77642b ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3599f7a1 ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36db4e5b ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c869a34 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ea630c9 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41032ae9 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e72b9c3 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x50f21109 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x51859701 ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57945c53 ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57e90572 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58e392c4 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x58ece8da ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ea32d97 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x67095d94 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6711b7be ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6cc6a9ea ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f76ce23 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x740edfe0 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x79ee2764 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bc785b9 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84bb2d27 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86b51b03 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x89941335 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8e12f356 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8f4cfd01 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c16630d ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9ee30eb6 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa24d12a8 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa3b0f656 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5094eb7 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9b2c2e4 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xab4993e1 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac9de8e3 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacb3a361 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb1f14264 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb396153d ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3bfd758 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7156e42 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb745d4ef ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb782843a ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb4f6d24 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc23198aa ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4620ce4 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca69b734 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbaf79a4 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc85c4a9 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xced30f7b ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0fa1353 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd2019761 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd35efce9 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd4d10eb4 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcede2ba ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe405bce9 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7d2fb9c ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed65af60 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeda2456b ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1bbeaf4 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6756bc4 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xff17b4ec ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x19a8eea0 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 0x9f9def98 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xa08ff918 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xfc137d54 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x8216b460 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x9801064d qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7bad72bc hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x896b1f3e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x89928942 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa9a2649d hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc12d4875 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x0214ad9b mdiobb_read +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x8fbbb565 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0x90713b25 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/mdio/mdio-bitbang 0xaafe4f05 mdiobb_write +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xc3ffee09 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xca902f7f cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x327a9b92 mscc_miim_setup +EXPORT_SYMBOL drivers/net/mii 0x15a6fd93 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x2400f98c mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x45606d6d mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x6920d6b2 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x696126ea mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x7aae5787 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL drivers/net/mii 0x7f4789ff mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x83fbfd7d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xd137ce44 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xdd248787 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xd957b187 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xe73260d4 lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x43c3fa4f bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x16217a42 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x31421bec pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3c5982c2 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9ef34aa2 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x2246fe81 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x3e146f30 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x57778d64 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x68fceeb2 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7e1c85dd team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa64e97e2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xadb0892b team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xb93359f3 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd446ce54 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0357d967 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb083ccf6 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc000ee04 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x01679a1a unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x026df2c7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3bd75f8e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x475f6d28 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5ba882ee detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x85575191 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa0bb6cd9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc42ecd10 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd61a1301 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xee3e5a45 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x20733283 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x22562532 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ce0ee22 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x328a2455 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x626b349f ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x821b745f ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x86b29da6 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8f1044c2 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cb50199 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa02f90f9 ath_printk +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 0xc6fe9bb4 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc82fef34 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd2e3e82d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0095ea16 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x03034fec __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x10d98b84 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x229c20e7 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x240eeb09 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2504dc9d ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x316ef2b9 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37e45117 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3f8ae454 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x45658db7 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4592dac4 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49a4356c ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x53b61db6 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x566dacc2 ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x56866f9f ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5c82422a ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69759819 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6cad0d75 ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x719a0e85 ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x73cd4733 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74497ef7 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x75a2390e ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7bf51ba0 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7e5fc8fc ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x82550159 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84740211 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86300cb8 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8836a989 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8a80c919 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bb00330 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cf20e69 ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d484bec ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9052d720 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9112a88 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaa42bc33 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac08f408 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb33d2946 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb6ed3796 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2e2b658 ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc580ad33 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc69d1c57 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcae4007c ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd9b4641 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcef6a4c4 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd01f8833 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd167d5ef ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3c9f6c5 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd67df993 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdd35eb1d ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddf21496 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe642671d ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe78cae3d ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xec94053e ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xee136dd9 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf1c7ace1 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf89e445a ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfa5e8b05 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x04a43c98 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x09f9ac2a ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0b9403cb ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10a09669 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x136c43b3 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x181ef6a4 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2dfef92e ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x33eb7f94 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3fcc56a3 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4b3a34bd ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51934c2c ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x51ca09e6 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x52be5d63 ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x54754378 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x56082d98 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x560845a2 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x61434271 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67c813e0 ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6851942a ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f41b1d1 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x72f9cc3a ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7a958051 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7c052db9 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7e5a8dfa ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x91c8a1f2 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x925b940a ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x971a552a ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa1704b86 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa2185bcf __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb291393c ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc1a334cf ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc3557255 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc7ca7c26 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc81d7320 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xdfdfc2c7 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe38eb3fd ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe3dfc9d7 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xef75a715 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf3950606 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2151dcf5 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x27c261c0 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2e9c20a6 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x33f1da4a 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 0x6e0c7674 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6ebd4e94 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x92cf395a ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa47bf69d 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 0xd63e4c0e ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe5c324eb ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe6071796 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a0ea477 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a31e5fc ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25ac238f ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2f14982a ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3574f2dd ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x429ba639 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4c04e7e5 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5198cbd8 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e212500 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x668a9712 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x689e4750 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x699c456b ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84bcfcad ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9e8dde23 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7c52d57 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbee3bfab ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8e912de ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4cc995c ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe51b925e ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf28fc428 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3fcaf42 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7eafc90 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfab21008 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x005ebf2e ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0113e552 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02302bd5 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0347ddf1 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07527eba ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07f63f46 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08cf7c2b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ae9b773 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f1a87a8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10a18fd0 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ba1216 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f59ea2 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12551465 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12923419 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13532083 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1431eb14 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14bc7676 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1722a7c7 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x188f6eab ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f6eb691 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fca3c9c ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2105e8a6 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26116ea0 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27311c95 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ba9fe6d ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f02bdec ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b72516 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x349852bc ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34c2d013 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x357860f7 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3581a297 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x358be5b8 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3754f1ea ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38466801 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406c842c ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43c4106c ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51ce6883 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53165759 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53847b7b ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54b4ae84 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x555002aa ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5574f96f ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x586f7168 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58fe944b ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a3a5dc3 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b3d67eb ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8ada21 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e07f9df ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61277cb3 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63187982 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65b4ecb6 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66acea8a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a1efc88 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c18b961 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7034af3f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x737de947 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75023d49 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7735187c ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f584d4c ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82d98f50 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85999ef8 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85a7f7b5 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x872470b0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x885e9bd7 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e63ca98 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fcee1e3 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x904f6a0f ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9276a4e8 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9341a423 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x944b275e ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95f51d0c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97f60d5a ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x986544c2 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99e25bf3 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d65abee ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9dd1e760 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e37eb6b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5f427fc ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7072fc0 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa95fbcd4 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae3a7d84 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1dd8f01 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb441ad66 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb50f83bd ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb70be4b4 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbf23286 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0a646d4 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc543f671 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9ee7f8b ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd376ef6 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf0ca7f3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1786c02 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b3b036 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6980d27 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6d2f4fb ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd708f271 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe5197a17 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe54f971f ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaf75d52 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef9f7b8e ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0108951 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1676d7f ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2511d52 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3dc2e57 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf53c1166 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd458f92 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffda5c46 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x4dca7c32 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xcd53b2b6 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xeb2059d1 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1906648e brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e87bd78 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x269a2785 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x2a7efd98 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x564f9d42 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x80030aa9 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x8bf49a71 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb4bb02a4 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb8058f38 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xc7e394bb brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xdd90cc57 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xde4b3439 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe20052d8 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe37325a5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x3730568f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0x6ae35d33 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/cisco/airo 0xf2d3385e init_airo_card +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x02472e6a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x45cd283d alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x473484bc libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x505f31e4 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x55170b18 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x55854d84 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x68055201 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7847811c libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8719c2c9 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8cc31d17 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa440716f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb087ce07 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb25301b4 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xb590b54a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc068c3c6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xc582f2bf libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd1ae6c41 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd2dbef93 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd65061ca libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xddf120ea libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x01acebba il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0530c687 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b5790bb il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0c4b0874 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f167359 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1b842084 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1be02159 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f8a2b0a il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x207c0673 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x246a7e59 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x256e7310 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x25961249 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x264753ac il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x271daf18 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x27e554d9 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28fe2f94 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2b9ffef9 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2d6c6632 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ddcbc03 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2f37be8a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x36db8e19 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3877369b il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x39386ce3 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3b5c7d49 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3fd2a4e0 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49be2f4a il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x49e5a56b il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4da0c11a il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dfe2fe4 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e5eb6e9 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4e93883e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x519a9d7d il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x527fcfb9 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5379e912 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x573f9e43 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x582003d1 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a6e50aa il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5afdcabe il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5e8f7646 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64d344a5 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x75613eef il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x781edb33 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7accc38b il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80102270 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x80c1980f il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81403850 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x82b4bdd7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x83576233 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x86bb0b61 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8701e012 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x89a87063 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a2401ab il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8a9bdaa9 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x91aaf508 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x93a46839 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x952e2bb3 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x974da990 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x99c9edb0 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a56ce9f il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b109ae8 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9bb7fcfb il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa3c05920 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa462fa13 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4dc1274 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa8309658 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb10ae240 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3ab6dd3 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3abc2ac il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb3ebf381 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb6693703 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb70aaec9 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb80fc779 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb4dccc0 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb67e0be il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbb82f043 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd8958a7 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc1645608 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc497e4b9 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc4d628b0 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8725b3a il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8cc49c0 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcbe40cb2 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce9456b4 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd0324416 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1e0692b il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8240222 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdacfc408 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe7448009 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xea91197a il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec8d89db il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee28f697 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf013daa4 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf350de2c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf605f416 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf7325dfb il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa9527b0 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe4c2526 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfeff172f il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x000eabab __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x0d99121f __SCK__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3554c30b __traceiter_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x38688d65 __SCT__tp_func_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3a2a40a5 __SCT__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x40bcdb06 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x94fb4e8f __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x9a156e25 __SCK__tp_func_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xc3dd0f4e __SCK__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xcfdaed70 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd730a73c __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xd81e2f28 __SCT__tp_func_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e297f35 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x0e56e708 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x15489e26 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x16b8ff33 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x21377a00 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x24d8dd18 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x273a20db hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3058fc0a hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x39b809bf hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x3ea8ad2b hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x45fa60c5 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4977499c hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x51153305 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x69137e63 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7925ab22 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x836e5cd8 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbf22152b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcb96c292 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xccb3e356 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xcefe479a hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd0ee6abb hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe6756b7d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xecca47fd hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xeddcd760 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf3bea69a hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x03d9c58e orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x06ea0aa9 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x081ea026 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x0e6d4b7a orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14244f34 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x14719e67 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x17319e9e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x260a119f orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x3238f788 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x4eeb0aae alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x560a1d59 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x5caf24cd orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa7fbb46c orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xce827d0d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd1a373fa __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x0612633c mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xda4be77a rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0837a924 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0daf87c0 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0e03eb9f rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21a4401a rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x22dd94a5 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 0x24921c38 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2618920f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x268c69db rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31b59dfe rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35dae42c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b79e7bb _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d722405 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3dedc33b rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x475a2b32 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4dfefbe9 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e802c5f _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5555bffc rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5ac8a81c rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d388372 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d9fbb46 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68142148 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e0c8747 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x790d1c41 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8172f197 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x82005eaa rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ab741c5 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8ca8ffb0 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d35ad26 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2f83845 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa84a8273 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3eb2e32 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb988d1b0 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb98935a2 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbe5d79b1 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbea311dc _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc574b0aa _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc576f72b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca19a3cb _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcae63247 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd79860e0 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc847db8 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9f3d9d9a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa8cc98a1 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xaf5f7783 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc86c9995 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x108fdb18 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4809cd7e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x81d068df rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xaea94775 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12ca10c0 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19656e89 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2c46d6b4 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35d7c48b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37329718 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x602067a3 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f17af90 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fca35f0 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7082b609 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7231017d rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x730c9b0c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76ea1092 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77148aba rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x77ab6428 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89a3ce45 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89e1c70f rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ec768e1 rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3559782 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3e71bbc rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa5974156 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb22850f9 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf757ff7 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6a74b9f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7837d37 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe0d7fd93 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe2d311db rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9e0da9f efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee4a535b rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6ec1ae7 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfaf8a40c efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0x1627ab88 rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x8be7dc05 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0xfdc7d13a rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0x1205ba04 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x0822a209 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x10e9e5b2 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x125104a6 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x17709747 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1dd11d5a rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1eaaffc6 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2126938f rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2528c9e4 rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x330530df rtw_phy_cfg_mac +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 0x42b6691f rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x42dedb29 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x448a7ca7 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4c00c566 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x50a68533 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51ec0143 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51fee2a5 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5258253c rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x54570e51 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5681af8e rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6185c38b rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a4abc2d rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6d59c4c6 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x752b3ca9 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7c88c61f rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7f27290d rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x80f3c57e rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x83a9085b rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x844cbd6c rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x84c835fb rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x85d730f3 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8c4d6359 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x923bf5b6 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x94e1a73d rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99c7d835 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa0302a6d rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa08c3017 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa4001053 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa42aa81a rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa91ced41 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa755b20 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaf4ba9c3 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb244cc9b rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb3866c88 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc05332a5 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc4dd9496 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc7cbc00a rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc93d2602 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd0ea772e rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd1062006 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd6a56276 rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xddb80ee2 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xdfdf8c8b rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe02dfe98 rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe5419bf2 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecd13812 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf57d93c2 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfa2718b6 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfae8f737 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd67bff3 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xffb475e9 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8fa06275 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xaa6b82a1 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xc6041551 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xedc67d95 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xf5954fd0 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x19aed14f rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0a8f5a42 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0aa2e96b rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0b7a94ef rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x0e85d941 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x131dfc2d rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1430813b __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1518d2a2 rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x19f51c7e rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1cf1e884 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1e5d0e1f rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x20e76c6a rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x37ecbc88 rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x392665c1 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4537fd93 rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4ae3c3e6 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4e4f7493 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x53faa616 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x54d00837 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ac8a63b rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ebd9be7 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x60d143be rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x62faed76 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x680ee771 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6fcf2441 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x78fffdb6 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7c1b1d07 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7eab430e rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x859f3c89 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x861aab52 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9583378e rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x95a8eaf7 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa1465110 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac4a45fb rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae1fb977 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xae4ae080 rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0ad5cf5 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb3ca41a6 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb6bcf96a rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0d048c9 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc121422a rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc281f686 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc2b96650 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc50eeef1 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd771ad46 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd8329de4 rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd85e3e8b rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe1571329 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf0ea023f rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf41cab03 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf9f8e955 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfed3d6a0 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xff9a20bc rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0b92bdc5 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x20c2542e rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x341c5d50 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x3bcadd78 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x4cee80d0 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x5222e752 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7042cb59 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x87de2026 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x933ea764 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9490c660 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9b1aee73 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9d6736f8 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xac19696a rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd4b20106 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xe3c3f349 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xf393483c rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x01ede411 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x75825f62 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x85b70d01 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf8c8e866 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8ac0fc08 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xec6594d9 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5aaeae2a microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x60b9a108 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb0a7c5db nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb6374dc5 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbfeb96d3 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xcfc49fb2 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x3c1132f9 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xec42f045 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x2a4c51ed s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5de1804d s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x79d412aa s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8c0a3315 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 0x07e6c7e2 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x11ec7c6d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44884c0d st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4a4b2221 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x609e2938 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9983c898 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xadeed909 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd7f058ca st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xde205a18 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5ef8d92 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f21c422 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1628320f st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x28619dee st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2b817b58 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2bbae1d7 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2d0dcfee st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x36caa3e9 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x522e4bd1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6ae21604 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7cb8cfc7 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f548e9d st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9a03b414 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa326131f st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa6a33e28 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa913a39c st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe671bd79 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe7b26a02 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf6e55cc5 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x279a36cb ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0x28b21c0f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2da1aaf8 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x580bd90c ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x5c296059 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x655e178a ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x702233be ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0x72690483 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x72f4f6bc ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x951083b2 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9a5ef908 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xa6d0b7e5 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xb416e383 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xb448dca8 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0xcc7c17b7 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xdfbccef2 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xe4e57804 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xf46cee16 ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xf7105c60 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf72edfa8 __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x232f3a86 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbe67d1ab nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x02e06c17 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0490fba0 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x0f446abd parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x10ce2c74 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x1cfa5283 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x2bab47b4 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x3243ab49 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x3337110c parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x33a84c4b parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x3a992ed3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3aea3cfc parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x3d9cdaa8 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x49e157bd parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4b41b35b parport_read +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x67e28230 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x6e7d5d4e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x75e4152d parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x80e16e95 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x96eb521b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xac22f2cc parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb24c8fbd parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xba264f3d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc3ca55af parport_release +EXPORT_SYMBOL drivers/parport/parport 0xc4e2359f parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xd1532ce1 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xd40e5e5f parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xe5e380b2 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xe72a30ab parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xea8b93b7 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xf3c221cb parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xf4a3e282 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0x4ee835a3 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x54c95049 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x068b16c5 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41ff637e pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x519b2f3d pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x66d73eff pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x678d22b3 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x681c8f09 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x78c09cc0 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x840821fa pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x87025a14 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9105114f pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa81dab50 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaabcfb3b pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb312663 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc1a84186 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc739c59a pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xda0e5891 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe28dcf51 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe3033dbb pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfa6eebde pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x124fe8b0 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1254f71a pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x23d5b276 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x36a977b2 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3969e54e pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x657643de pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9db736a8 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb613bc4f pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc29d5999 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe96e80f1 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x8a9f62fb pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd194db39 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x55c3be38 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x7b226853 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xbcdeeec8 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf82afd4c cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xaa1c36de cros_ec_lpc_io_bytes_mec +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xc4ebc6b3 cros_ec_lpc_mec_init +EXPORT_SYMBOL drivers/platform/chrome/cros_ec_lpcs 0xf5c87c59 cros_ec_lpc_mec_destroy +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/simatic-ipc 0x35a48fec simatic_ipc_get_membase0 +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0xd857cac7 sony_pic_camera_command +EXPORT_SYMBOL drivers/platform/x86/wmi 0x26a92368 wmi_driver_unregister +EXPORT_SYMBOL drivers/platform/x86/wmi 0x7c5936a5 __wmi_driver_register +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x745db4d3 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xa7980270 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x04d85351 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x05beb14e __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x0abb8d1f rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x11f45c61 rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x20bbb8b4 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x2471a07e rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x37acc007 rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x45ec1f10 rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x47632bf8 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x4bad6143 rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x65902fee rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x68e78e44 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x80ffdcec rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb4cd1235 rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb8d05dde rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc5d77139 rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe4f606bc rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe8c7b823 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb0a5e18 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0x3349dfba rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x886be5c0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x6b0c4b46 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x81578f07 NCR_700_release +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1882d21b scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x66c30632 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x796cab07 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe4659095 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x13e54e56 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x33941cdd fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3d33f804 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x790396b4 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x85715845 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x87646660 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8d7a2a5c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3bed83d fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa3d3e9af fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe573b8df fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfa0ef313 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x026802c8 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x065524be fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b79d9a9 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b91c131 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b797b3f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d18ea61 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fce1bc9 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23e36b50 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26ebc87e fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f2a991 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a01ed8d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e6f4d52 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d2a92b2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4409eab9 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x484c7898 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48e5c50a fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e460385 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fc37ed1 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x520c3b3d fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54542c9a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59a50eb0 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62d55702 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6bf65c07 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d0199b1 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75261a4a fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76868395 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7a83506f fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e758f69 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f3407a7 fc_seq_start_next +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x808302db fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x811811e0 fc_exch_done +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8431ec19 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89332eab fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c93ada3 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d23a263 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x908f9be9 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98088c3a fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa729a96c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa5a9882 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae6714c0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb77647e8 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb871cd67 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb92c4cdf fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf965470 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfa42e30 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1cbdfb1 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc21ecf61 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd0535ea fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdd3f1804 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0c3447e fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe218dfbe fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2639d86 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xebbf7f6c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec15d299 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed2c130f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed4ff504 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf388fc27 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf689e662 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf814997a fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf9a0314f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x14c71f0e sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3c7a9012 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x94615f82 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xbfda88e2 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x9be62da1 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 0x1a4022ee qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2acef8b0 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x37e214e5 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x40f043d7 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7c8f754e qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80e7d8c3 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84ed5023 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x92df9eea qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9b8c6032 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9d1e480a qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xda346850 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf1d3bbda qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x450726e1 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x68d15d96 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8df15dcf qlogicfas408_host_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x920dd55b qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9ea361ff qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc41b3b73 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x01e39797 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x12000059 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x439eec99 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x00fbd800 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x17f11fef fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x18679b5b fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x18cc8234 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x18e883d5 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ec79784 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4c6e8a4c fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5affc7f1 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x67ad577f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8aa96772 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x98118191 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1c0c34a fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa71cb1b4 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb0f7197b scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd3691c3 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xedfa1c3c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf8cdfcff fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x127b53c7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1395b06b sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13a45f72 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18fe204c sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24a7abbc scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2675a960 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26db87ca sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3762f392 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b5c70f5 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4577fd94 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49f09e73 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4fa47919 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a4e7e88 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f2effdf sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7cf0d021 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8470a957 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86a16065 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8de86f56 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97eec020 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa619f794 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7f4c65e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc0732b77 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc30f871c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcdef83c6 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd73e2969 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf05d66f1 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf501ed57 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf868651a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf976c487 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2e36752f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x990da1bf spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc73867aa spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xee631c51 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xfcc08220 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x11c9c0cb srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x2f4546d0 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3c625ff7 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x53aac07d srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf4b87c1e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0b5d7785 qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x0db7b96a qmi_send_request +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 0x2a955368 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x2f4ad1aa qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x46cd1672 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x543d0f20 qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x55ea2e46 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x6dbc941b qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x8cbafcdb qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe600ec9c qmi_handle_init +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0e7506f5 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x0fa84776 sdw_bus_master_delete +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 0x20cd936a sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x2b657a5e sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3cc54ddb sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4426e83a sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49035a5c sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x52d58105 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58db4d3a sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5af1352c sdw_stream_remove_slave +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 0x73525659 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x74c35be9 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x88ff044e sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x8bdf8ba0 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x92326e9a sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x94e2a9a9 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9a3c9f0b sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xab313fce sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xac927068 sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb858fa11 sdw_write +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 0xd3cc57b3 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xd92f4af3 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xed6c298a sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf16abf26 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf6e6ff5e sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xff785aa0 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0bfacfb3 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ba99e99 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x5a77c297 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x6d5c642d sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x7385d26c sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x9e6b1093 sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa30b80f7 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa3671820 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa7077a7e sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xabd57a9e sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb88968d8 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc129c5c2 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd12ff108 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd3293bc0 sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd73200b8 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe30fd33f sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0xfef041f5 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x1578a31e __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1835ec48 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x1988c582 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x223146bb ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x2d9c62c8 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x31fce8ae ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x35363bf4 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5426931b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6166e7bb ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x753dff69 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x95e4e40b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x977434ea ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xa51e7ef6 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb0f63535 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xbe88f5fb ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xc0839b7d ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc6f8b5fc ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd9d9b993 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xdf44b936 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xef3ea09b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04b69af3 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0fb9b86f fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f867f27 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f9c1d6c fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37e21d52 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44ce5c68 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b3e76c0 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x556e0608 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x58437360 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x70ea43fd fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7fb62d1e fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x84368ccb fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cd6be34 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa08276cf fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xac35f131 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb85c850c fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc0a0af64 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc2749b1f fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc3db5391 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc73fd6c1 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc75aeff3 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc79dc8d2 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd26a22f6 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xef132c17 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf7328702 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x38ec6aea gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x947b46d7 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xc1c677e3 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9da03fd8 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x9252b765 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xfac5da9b sp8870_attach +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04df9a20 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x072fa338 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08c969bf HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0caab391 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0db1c9a1 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2017519c notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20b62d18 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x21e75433 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x229a0eaf dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22a759a2 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c635ca5 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x33d698da rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x37b58313 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3bc9a108 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ca75a80 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d129ddd rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44cda031 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b7418d9 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f37f8f2 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53043ce1 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x537e416e rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x577113ad rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5a31542f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x621d8a89 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63397558 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6344e334 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a698ae8 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6af56ce3 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x776f0fff rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8048b2f2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96606a5b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a77906e rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa5c81adb alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa80e9ca3 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae809bd1 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1954310 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb2d3ed6a rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6223472 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4b818a1 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc7cf5902 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc8afe294 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc936d292 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc38eb04 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcc4a49ab rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcf4b43a8 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd81cefe6 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9801b09 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde873a3d rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfec792da rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x027011f2 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08d216de rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08e6cc12 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11dfcb3f ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2afa62bf ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2bcccec3 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f5fdf09 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30a075ab ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3352a2cd ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42081839 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42c8b1a6 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44af70b9 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45b1faee ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48266e6e ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4899efd8 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x504ed9fc ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x536cdc6d ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5524681e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55fd864b ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x571e2cd9 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5783696c dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f1e5f3c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6134acb0 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x649bb9a5 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65a08959 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ce8b066 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fe081c7 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x84178c5f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f4609a0 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x91662858 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x961be3de ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa620466b ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa164f82 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab7a9574 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xae5c6f49 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb243d1b7 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb395ea9a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb41ed7f5 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb589365b is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbc0dd54 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0e63b7c ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd18265e8 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1a79315 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4d19f86 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5c84523 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdce7862d ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6a5c2a3 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb194570 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf362ec01 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf453cb3f ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf67ae4e1 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf6b061ad ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffeac889 SendDisassociation_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x088e1966 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e602df1 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12105411 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13483ed3 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13b53a09 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x187e6df5 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1aad198f iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d92c588 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e941cab iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1fa90d07 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d62b88d iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f9a662c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5a3a868e iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6544a551 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6810432f iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6c2e7782 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7399b5f5 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c52826b iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x806d0e6a iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c5e49fd iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95d0765e iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9798938b iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97af1108 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d222f7c iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6b69049 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb14c7996 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1f4d691 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb45c9daf iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8f50895 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb906f6b2 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbac6cafc iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc71d04e7 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfd97198 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd158271f iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd25f4594 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd3109125 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd50e5608 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd6f389bb __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0ebed25 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8d6de69 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xec7c22c6 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf243105b 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 0xf53799c7 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8a7f6a2 iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa6b801b iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x036ff5d9 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x07773c88 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x07af308e core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0af69f70 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0dfb20c5 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ebc75f0 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eca51a0 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f983a47 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b4cd334 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c59795b core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1ed1b317 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a00e924 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b4f629a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x332bb0bf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x36620c38 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x41bf06d1 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x44272bf3 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x4aeb0de8 target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4baedb8b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bfb159e transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ec92fe8 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5037535a sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x51b7e773 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x58a62f66 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x62c573a9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x63f24b0b sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x64e305ce sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x726314e4 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x7298e7ee target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x734a8919 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d86aad1 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x826cf707 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x83cedad4 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x887b310b transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c4b6480 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d778653 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c043ffd transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c095a90 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cd6d26e passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9cfc5535 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa23e3e04 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2a5f104 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa80ee1e8 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf244a5d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf9fbad4 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2360780 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xb47a566f target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb729c922 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7598b75 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0a90599 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2db9b3a __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc411cfb1 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc87bdb48 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdc27783 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xce65479f sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xce9dab6e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd08546f4 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xd29a560d transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2b7cde4 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd57d7738 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd639401a target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd966ff90 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb63da94 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb8f83ab target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdca1d22f transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3789063 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe550f70f transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe92fa3a0 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9c25e1a target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3eb47d8 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf564d11a core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6fcc098 target_send_busy +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x1887763e acpi_thermal_rel_misc_device_add +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x86c998e6 acpi_thermal_rel_misc_device_remove +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0x9103c585 acpi_parse_art +EXPORT_SYMBOL drivers/thermal/intel/int340x_thermal/acpi_thermal_rel 0xf0f9fe0d acpi_parse_trt +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3711ae3b ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x3c20caea ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5472b580 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x60125e69 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x73e9c70f ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x8be86fa0 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xb1d86b01 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc4211a7f ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x89d0c561 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xbc3d1db3 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x0557fe6b ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xeae5679e ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x895a2af8 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xe9edfdd4 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x228f12b8 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x130714f7 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1a74fd96 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3f3bfba7 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x404552b6 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4bef15b5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x98e333ff usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdcff7ddd usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe1e597ac usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe1f01043 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf9c7fdb5 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfc326c68 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x2aef6da7 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdb2420af usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0xf295cced vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x4d2b8678 mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x7455677f mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x968db229 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xafc7feb5 mdev_register_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd22433a0 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe6c87555 mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xe85e00b5 mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xfe302922 mdev_parent_dev +EXPORT_SYMBOL drivers/vhost/vhost 0x227f5d1a vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe35cf2a6 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 0x72dfed8c devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x87e2faba lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa0cca7cd lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xac76e5c9 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x047af673 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x16405864 svga_get_caps +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 0x31a8c9f2 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7e7e0945 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x83871d81 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 0xd1882ee7 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 0xd94195b5 svga_tileblit +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 0x29604628 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x50d45c65 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xc9491c04 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 0x8cfc5565 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 0xa78748e1 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x045490f1 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x87431ff0 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xbd8122b1 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x48aa0338 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4e13eab3 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5797b21e DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf68581fe matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xdceb964f matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x92208740 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0e92f6fe matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x19a17f43 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1d017046 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xace23177 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x552ae57d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd6197d2c matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1239ad93 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5637aad7 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90da8623 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x92768f13 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xef9c5248 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 0x260590c0 vbg_err +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x27f99237 vbg_hgcm_connect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x409934fe vbg_hgcm_call +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x4a20db87 vbg_put_gdev +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x5313f660 vbg_hgcm_disconnect +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x569b312f vbg_info +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x68f1cf1a vbg_err_ratelimited +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x70cdcbfd vbg_warn +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0x9c072aa8 vbg_status_code_to_errno +EXPORT_SYMBOL drivers/virt/vboxguest/vboxguest 0xf2b763e7 vbg_get_gdev +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x303ee477 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x3854fe64 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x7ad570cb virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xa9f33a97 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8573e4f3 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xafaa332e w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x4456b237 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x8685a935 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x6b029444 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb826faa1 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xcfd0f491 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xdcb899aa 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 0x01ae57f2 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x097532ee __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1f915040 fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x23cb1f03 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x2ac7962b fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2f39282f __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x42101d62 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4ab2af5a __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x51d60a37 fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x5954d7ac __SCT__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x5a42ff11 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x5e4e51c4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x611abe73 fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x63fac8ca fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x70dc2948 __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x71eddc36 __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x741a3ae7 __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7aba4145 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7b1b25da __SCT__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7ba482d6 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x7c87e02d __SCT__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7d2440f7 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7eec87bd __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x89d33dee fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x8f57bd2f fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x93f69c40 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9642b945 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x9e02f861 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb8fd964c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xcafdbe08 fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xce4ae572 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0xd07acf4b __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xd33ebbe3 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe3614f4d __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe8662196 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xea6d6f09 fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf895055c fscache_resume_after_invalidation +EXPORT_SYMBOL fs/netfs/netfs 0x4cae104e netfs_stats_show +EXPORT_SYMBOL fs/netfs/netfs 0x94acc870 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0xad3b82d7 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb43f65e0 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0xcdd861a6 netfs_subreq_terminated +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x2a04f09e qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x2f9990e1 qtree_get_next_id +EXPORT_SYMBOL fs/quota/quota_tree 0x3afeff2d qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc2441fd3 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe78dd381 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xea009c86 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/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 0x09b20db1 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 0x8b3e3c6b lc_seq_printf_stats +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 net/6lowpan/6lowpan 0x1d600261 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3a11e0f8 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x76121a6f lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x82cff2bb lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x8fc22c6f lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xaab25ef1 lowpan_unregister_netdev +EXPORT_SYMBOL net/802/p8022 0xba551851 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xc4535e36 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x09f7f5e9 register_snap_client +EXPORT_SYMBOL net/802/psnap 0x2bb55a53 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x005bfb89 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x0b8f0b63 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x13afe520 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x17383ed7 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x1ebdbcad p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x22b5418d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x22ba5703 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x27672331 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x2ef1c788 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3c440506 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4c8752cd p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x5bfb6ea5 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x62a7e957 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x62d955da p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x63e40aa0 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x66923e00 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6839bdfc p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x69402674 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x759dee72 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x851f090a 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 0x9d1d4d65 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x9dfeed98 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9f5fa708 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xad557abf p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xb598d884 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xb6025432 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xb69d83fe p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xb8b22165 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xbc503e84 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xcc8675c4 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xd108a3f4 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd2dad407 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd80367b8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd875d16d p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd8a2c971 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xdcd08f2b p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xde680491 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xef1bd178 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf0a138aa v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xf6fc59c2 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xf72974af p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xfcc63e3e p9_client_setattr +EXPORT_SYMBOL net/appletalk/appletalk 0x0c66417d atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x2825e2ba aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x4f810133 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x64582099 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x05224b01 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2d73cb68 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x4c852439 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x585438e1 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x59d5a125 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x5e7b173a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x7a88bdfa atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8ba33dde vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x8f380329 atm_charge +EXPORT_SYMBOL net/atm/atm 0x96e524e1 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9c06ed89 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 0xca1c8f9e atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf55e5e53 atm_dev_deregister +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x285f9947 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x4185ba70 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x67ac8a15 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9f5e2317 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xb06944a7 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcdb76e02 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xecfbfdb6 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xfecea486 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c826989 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cec73fc bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x149423a0 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a24d481 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2258372b __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x232a1fba hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x235ceccd hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x246c9e5d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x27e5012d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28adb5fc hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bd84128 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e81e802 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f7b8820 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x329034f2 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3365a7cb hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a31840b hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40486d6f bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42b7e728 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x474bc070 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48beeee4 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x494ab836 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x545ea27d hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x589b918d hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5daead44 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x633bc1d7 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68a2ede2 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6b8aa161 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6bc275f4 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ce80e1e hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71bb8266 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b89f925 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ef8c29b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x80dc3fcb bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x81eb2356 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82cc7846 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x973e1d39 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98c154dc hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a374eda hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa103a5bb __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb33bb90d l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb700f8d9 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9e0e302 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbb2036d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc99e1b4 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd878749 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe062fcb7 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe2fd13cd hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7f399e9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea10c843 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7bce72e bt_procfs_init +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6cb16667 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x98a57f5c ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9be909ce ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa36aa0b7 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcb15ce7a ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd64175bc 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 0x3cbedb8b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x5a7566e3 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x5de1045f caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xbff0991c get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xecba9e53 caif_connect_client +EXPORT_SYMBOL net/can/can 0x1aabf125 can_proto_register +EXPORT_SYMBOL net/can/can 0x1efe33b4 can_send +EXPORT_SYMBOL net/can/can 0x2525b871 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x41361aa0 can_sock_destruct +EXPORT_SYMBOL net/can/can 0x5b43c5f7 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xcd6eb249 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x01c228ed ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05be7a82 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x0797ad29 ceph_osdc_flush_notifies +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 0x16981ef6 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x177d7bdb ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x1e48c7a0 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x2394aa0c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x23b065a3 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0x241dbc70 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x2a497f02 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2bf1f651 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x2d6ba801 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3001d381 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x31188946 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x332f479d ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x346ce686 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x347cc3b5 ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0x34a02015 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x354fe422 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x371825a9 ceph_msg_get +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 0x412134e2 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x48c7401f osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4b6c5389 ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4db59ab0 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x4e0b42cb ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x5163356c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x51730558 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x522108c5 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x523737eb ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x53438874 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x565b506e ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5e4eacdd ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0x5f41d169 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x611db594 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x688505c9 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x68c90d3b osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6b738366 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x6ceb8e30 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0x6daa996d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x6e195ccd osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x6f657526 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x701ee634 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x714c1ba8 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x71748434 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x718b6805 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x72bbba97 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7422b178 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x75bd9ac3 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0x76e33526 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x79357d28 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x7d481b8d ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7ecbe424 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x829e3b65 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8a661aea ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x8c317057 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x8c89774b ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x8e2830f8 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x910feeb3 ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x937e7e44 ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x93eeba9c ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x9830a215 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x99d3a0cb ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x9ba02e8f osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9bc6b539 ceph_find_or_create_string +EXPORT_SYMBOL net/ceph/libceph 0x9ca95932 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x9f889d2c __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9fbba67f ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x9fefa3cb ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0xa30296c1 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0xa5ab0922 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa9d93cf4 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xaa52e11c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xabd67b0a ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad8759d0 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xae29b1de ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb03651ec osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb0c70601 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb1c92f12 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xb4ddfd0b ceph_monc_get_version_async +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 0xbd99358f ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbf0391cc ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc93c3bb7 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc95b3ccd ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcb553620 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xcd86e382 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd201d47d ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7ddb045 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xdb37c42c osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe13c3f14 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xe201767a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe3ae39d3 ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xe7a77391 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xea13f977 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xeb574870 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xee39ecae osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xeeab80b2 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeeeb78e1 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xefa23f6d ceph_monc_open_session +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 0xf35e31d5 ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xf736e046 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf890e32a ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xfd86523f ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xff45a409 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xffab1c95 ceph_monc_validate_auth +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x1e341d6b dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xd6730e68 dccp_req_err +EXPORT_SYMBOL net/hsr/hsr 0x6463d89e is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0xe88a6ac9 hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b5576de wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5be533d6 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x60fc5445 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd9f34010 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf66dbfdd wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xffa983d0 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0ff1826c __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf5ed522e __fou_build_header +EXPORT_SYMBOL net/ipv4/gre 0xb3529bd2 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9d4eea1c ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb40e1f7c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xbf218995 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xdf59e5a6 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1e5ec1b7 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7bff7ef1 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8ef6b6c0 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9905a380 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x81714432 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x952436d4 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf52d9486 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfbba39e8 ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0xc4db367e xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf7c9f46e xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x295234c8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x22e2de64 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2d5be699 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x507d0b18 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5cff2902 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ee58b57 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa6c7b900 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xaac66d41 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbc53bd59 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xca034611 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x22f64b39 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3902594d ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd37664c7 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xfcaeda13 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/tunnel6 0x25a704c0 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x7b8ed00a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x80334813 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x99b6e5b9 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x0b96fd56 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x1f4f9e4f lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x23241a2a lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x2efe998a lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x500f4bf0 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb256a910 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xbf9048c7 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xdc9aef83 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3c13c157 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6c703b25 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x7a7a0284 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9222aa9b llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x92e85438 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xbe404145 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xc21de4c3 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x018d7cac __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0692149b ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0x0693a50a ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x0a64194d ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0bcb83ee ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x0d7856e5 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x0e6737f9 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x0ef6d328 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x0f354172 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x0f91644b ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x12b4aee3 ieee80211_sta_set_buffered +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 0x1a75b290 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x26c88c60 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x28bd924a ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2da2da23 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2f4e88ec ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x33e2ae2e ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0x379c9846 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x39317a01 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x39be4246 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x3a34e072 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3af48011 ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x3be2e5b7 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x41d7aaac ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0x43203793 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4594917d ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x4661a461 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4fa06ced ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x527b5cfa ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x529da685 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x53792514 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x55a65304 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x570ee5fc ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x5fa9ca7a ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x603a653c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x648d8ed0 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6664f379 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x69e3f298 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6a0df781 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6df64c99 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6f3054e5 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x73277835 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x759dd1b3 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x76fd9922 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x78530819 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x78f354f5 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7a654c3e ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x7f3f51df ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x817f1acc ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x81ebd2c8 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8234bf27 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x82b12f44 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x872b7135 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x90625557 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x9079575c ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x921d45a9 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9289143b ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9527286f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x96e9a1be ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b8a0afd ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x9c29325b ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x9c565b08 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xa04d7794 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xa1171eee ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xa6a6458c ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa6bb8853 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa7d62fcf ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xaacea82c ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xadbe2fa9 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xaec0f7c3 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xb0271963 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xb0f2e103 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xb189a4b7 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb3cf241f ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb72864b9 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb9e0b584 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xbf17304b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc0204e6b ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc1bc7267 ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc9537b5b ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0xcd9221f5 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xd080e295 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xd1172eb2 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd25bcf08 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd26abb80 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xdea077aa ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xdf1abd51 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xdfb1475b ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe037caf5 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe321e951 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe38f2d28 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe6a0df8f ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0xeafc84a2 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xec15641a ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xece884b1 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xf30c88ad ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xf40ffc5f __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xfc1ef381 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xfd356154 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xfdf3b571 ieee80211_radar_detected +EXPORT_SYMBOL net/mac802154/mac802154 0x044465bf ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x12a74311 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x16cdfe97 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0x1a373dc9 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x466238c2 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x53fd2dd9 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5dfd3f26 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5ee1d892 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x68793cc9 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x76797f11 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x7cb44788 ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x111a18d1 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x37a14cd6 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x424b500e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b537de0 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x64f4e573 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d5d6267 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96166fbf ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9683d773 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x997fabce ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa9dda6a5 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb0ed3549 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbbdc18f2 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbcf82fb7 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd68e483f ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf6510b61 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6971d55f nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x0d566721 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x1ed147a0 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x2f8803c5 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x4cee8a09 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 0x160c7101 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x3fad17d4 xt_find_table +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 0x62686435 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x6e6638bd xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x7463f23a xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7de62104 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x977fd4bf xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x9e90a52d xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9f9a2d13 xt_register_targets +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 0xdaf0c99e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xe204e042 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xfed664a7 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x042041b3 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0b32ab00 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x0bf54de3 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x14fc1d8b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x220dfeee nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2f1952b5 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4c74217e nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x7b048a54 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x85ada00f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x895d5064 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa1e28d63 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xa4a9bb4d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xa9d7fcbc nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaafbf16b nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xaee39c79 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xd1548ec3 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xdbcd0324 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe0a16539 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xe7dbc698 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xe8fdb0ac nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf6ff4643 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x154bc3ee nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x205a5c27 nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x282227bd nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x2e87f5b6 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0x3745f26a nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x3ab467e3 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x3d2dcbf2 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x44dd3711 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x4c890d7f nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x4dff8037 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x68229ce2 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x74df1025 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7819f437 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x79bbc11a nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7a9eb1e2 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x803aa935 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8348d2f0 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8d54622e nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x90031f2d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa3d606df nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa759349d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb1d731df nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc351b8d6 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xcaf0b261 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xd61c7417 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd70b6a88 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd768f4d4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe9190928 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xfe65d371 nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x09ebd875 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x16d38225 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x1d566357 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x2e1d0875 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x30acbc80 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x3a2c3f70 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x3d2dd063 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x40931581 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x64cef68e nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x6867d6d1 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6fda56ed nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x750b8211 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x75c332e4 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x797ccec5 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x812e62a3 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x83eb2a56 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0x8c8f1b73 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8eee1fc7 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xb5701eb2 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xc3469de1 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xcf4e0f83 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd37d0baa nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xdb923e69 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xe8671b36 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xf92ceb97 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2b6e8694 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x3b38e2c5 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9a9f521e nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xac2cb89f nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x061a7127 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x1ea1dedb phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x283957e5 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x6e0130f6 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x80bc7f22 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x97ce5c16 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xab1d2395 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xace66a3d pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0d53bbe1 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0e4f5f38 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2dc7a2a2 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4fc06da0 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x50bffd3c rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5c11eb2b rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6de43d89 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8b7ca508 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d2736ae rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x961be7a3 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa8903036 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xab5dcf65 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xbeaaa22b rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc375cd0a rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcc28fbb6 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xcdccb9ff rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe673bdc6 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf11998e4 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x0ac65b8e sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1e612b77 __SCT__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x3ac4e1c7 __SCT__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3bcd3bb9 __SCT__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3ee2f714 __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x5106c607 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x53af2134 __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x57544fb0 __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x6acaedea __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x878fc118 __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x87ccd0c7 __SCT__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb8d3aff2 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xc84c561b __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xd3a7dbe6 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xdc1f1792 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xe86bf00b __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0xfdeda5dd __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x89965a9c gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc9c46b3a gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf831f889 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x10ca9d12 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb6475347 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xd38e89de xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0x3aab8e77 rpcrdma_unregister_nvfs_dma_ops +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0xadb5de84 rpcrdma_register_nvfs_dma_ops +EXPORT_SYMBOL net/tipc/tipc 0x27da8c35 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0x3c22d6dd tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0xf8f7c60b tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xfa1be783 tipc_dump_start +EXPORT_SYMBOL net/tls/tls 0x27bd1c82 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00676739 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x008c7515 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x07581b06 cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x09c1b2a3 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x0e482ecb cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x0e91179e cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x10c8458b cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x110e1a35 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11ee57fe cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18d87e74 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x18e06b3f cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x1a8a5fb5 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0x1b44d461 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1be71abc cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1e26adc5 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x1f0e2344 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0x20e72e55 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x2220730e cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x22e57cbe cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x27a3f190 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x29adf6cc cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x2e79fe92 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3100f9ec cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x32d705d5 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x34c924fd cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x353ace68 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x36be86ce cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x37b45eab cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x38641f1f cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x3a542258 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x3aa69fa9 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3c933ed3 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x3d1d92ef cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x5522a977 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x57b5d228 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5a71834f regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x609afea2 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x64825522 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x6698f062 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x6742e7a6 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a8d3a3b cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d10d077 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x6eaecb5c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6ff58934 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x70c70060 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x74e576e1 regulatory_hint +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 0x7c7484ae cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7db5d6bb cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x80cee1a5 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x80fadeff __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x81e3547c cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x86046b55 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x884c0e91 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x896f6f3c wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x8991c41b ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x8e5e5efc cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x8eb6ebd6 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8f23f90e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8f4e6125 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x9044b172 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x91bfabd9 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x934ee88c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x937c3215 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x953cbc17 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9e16bfd1 regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0xa041ca23 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xaa2291f8 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xad58ba7b cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xae641675 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0xb30ba31d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb32287c3 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xb3a4d1c5 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb92af1aa cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xba340c12 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xbb9c315b cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xbcc1fc4b ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xbdceaf3e cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc2c7f51a cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0xc4306f2a cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc7af2181 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc7ca78f6 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc81a4746 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc97c9fb9 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xccdfd3b1 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xce4f6461 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xd2009210 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd2f61a42 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xd4d4f2aa cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xd99f847d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe1c2498a ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe263b47b regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xe470dfd5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xedd21b8d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf434e509 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf5f4c6be cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf9d83a94 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xfa4a40f8 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xfb91533b wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xfe27ccdf wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xfe7e78f3 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/lib80211 0x00156e85 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x099e24cf lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x2e48dfa5 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x5842867b lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xcf9eb062 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe7bbec87 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x3a2852c7 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3a54ba9b snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x12f5e17d snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x16e630a2 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 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x84d54ef7 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc4099715 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +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 0xe3b011c6 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00b70e6e snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0444c2bc snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x092047d4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0b05141c snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0dbc1c65 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0x0deb3477 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x0edd6544 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1ece9972 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2c9b9d0b snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x44237f2f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x45651bbe snd_card_free +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4e191471 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x516861a2 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x680dbcd4 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x6be613c3 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x79ad1b0e snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x7a8b1c65 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x8acd32cf snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x8c76d6d9 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 0x93c549d5 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x93fc1645 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x9925b784 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fc78f08 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xa0452bca snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xa392c74a snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xa9835a66 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xb18c81ca snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb1e882f1 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb3a4b8c7 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xb960ccc2 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xba4cd854 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xba6c42ce snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xc0a6ef18 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xc1022bb0 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc26b9e6a snd_component_add +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xcb8afc76 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd0cdd9da snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xdd4cdc23 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xde4d4a5f snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xe020533d snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xe1668feb snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xeabb6ae8 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xec50a671 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xee8538ca snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf0e1b12a snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfa4f46bc snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfc679ed6 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xfdd7c959 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x089cb2f8 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x2a4e953b snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x717d5e01 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x028b5459 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0ef4ad39 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1ba3fda3 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x228301cf snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x273781b2 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x2a11f8bb snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x2c1d4414 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x2dc587a5 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x2ec505c5 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x34fc62a6 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x36b34052 snd_pcm_lib_free_pages +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 0x3ae0b749 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x3dec4360 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x3f1e93f7 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x4612017c snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x46c39cc1 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4d86bf2f snd_pcm_lib_preallocate_free_for_all +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 0x5538602b snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x56344fcf snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x598e28b9 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5bb75898 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fd063e1 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x60eb5759 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x61306083 snd_pcm_release_substream +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 0x69b92022 __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x6ad09d8b snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x6b1a9e6f _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x6e21ab22 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x84ff941a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x868cf79d snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x985f5c6c snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xa0300ce2 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xa226df86 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6989ff9 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa7002201 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xb527efc4 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xb72198cf snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb844c8e3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb99a9a10 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xc8ad4aba snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xcd993698 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd1c5d74e snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xdb54ff0a snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeb8bbc56 snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0xec3eef5e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf18a64cc snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf3238308 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xf9642be4 snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffc90992 snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e33d05d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x12b94574 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x216d55c9 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x27c9de87 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2cad381a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x39e30876 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4acd24f2 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x57996b69 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x63d99131 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d1cb889 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ef7aef9 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88465380 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x888903d4 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90256fa6 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x90bea4c3 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9fdb8b70 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1903fe2 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdee6855e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4146592 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf436727d snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x41ca9fb7 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-timer 0x07ca0eed snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x10b86557 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x1ae6fdb2 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x2eb28467 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0x3a85b408 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x4f875993 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x50be68e5 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x6d5ce605 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x759bb017 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xbd81ee50 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xcc0ff5a3 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xcc356734 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xcf621565 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xeb0bc089 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xf8c00b05 snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf0a94c68 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1457e948 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4ca23681 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x515a4d95 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x65280940 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x724c4a4e snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7537ab62 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa916bc44 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc76070ee snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcb1d1ba7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x43390ca4 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4c5116fe snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x76971da2 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x89693b25 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa410ffa2 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd99eee52 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe85ae30b snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf34a702b snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfc866fb2 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a3fd961 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0caef56d amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x11b30012 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x233d68c6 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2e5b0d41 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x535cf82c fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5810b6ac snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a08546b cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a238514 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66c18092 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a9eebc7 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ec5fea1 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75e9fa7b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x75f706ed cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9472cee5 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa891ce9f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb7fc9b80 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc069c478 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc43861fd amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6a79443 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcbadfb02 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcd3ec990 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcde92d8e fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd780e3ca cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd93c0567 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdec4cd40 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe509b4ca amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1faa1a1 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf32f4b45 avc_general_get_plug_info +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x8db09de9 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd9e8ae18 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xeca3f0f5 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x41a38521 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63699ccf snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9072fc70 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xab0773c5 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xacb409c4 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xae68b62c snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xed5e0d73 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf57b08b0 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1ab89d5c snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4c1588b4 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x501afe71 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x90c2174b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbd56d3de snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcc943b55 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x34c7fdac snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5c2a61ac snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x95ccf93e snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc198d380 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaefa3e93 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xeb240bb4 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0ec48954 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x40ae744a snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x43e6ce08 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x63f7c924 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7aee2120 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x959dead9 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3fb76730 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x873dddf4 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8b115238 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb6d8035e snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc483ac37 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd746e81a snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1467c8d4 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1d360e4a snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x58aa9df1 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x73f54a25 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8c6bd3b8 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8f31d331 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9ad2e7f3 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xacee2e65 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd2f73893 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdb637973 snd_sbdsp_reset +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0e25a22e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1b7a4877 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2ba43e9e snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e0b0cda snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3e8b2dd1 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x45ee36ee snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48942a9e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x601c12cf snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7aeb15e3 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d0693c7 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x831c154b snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9613ad11 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa386f71f snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb62f50bb snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd20f0ee9 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xead39706 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf5225f7b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x34ae7c75 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x190b6071 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x461aa31e snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x94be8e1b snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb76bf1ad snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xca75c065 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd32ad52c snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf24ddbf8 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf930a30a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xff07fc11 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8b9b0b33 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdd79ff44 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf224f0d1 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x09ef1803 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x10873174 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x18443cd6 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2219d9a5 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d46a9e9 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2eb6002e oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69eb7432 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e5ca736 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x95eaaec4 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ff5ffd6 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa28da022 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2e07603 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa731e28e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb4388b5e oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc32fb0de oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc47e1ad9 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcb243925 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd71186d2 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe0c020ac oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf4496c96 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x06f52812 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x74f06219 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbcaebfb7 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc41ebaaa snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xca0efafe snd_trident_free_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x8da86e09 snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0xd1dfbdbb snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x96d26f90 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x101cdb14 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x4bd0edcf pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xf89506d8 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xabf618f7 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xba9852ca tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x726826fa aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xcacee8b2 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xeeca9d97 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x09c66798 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xdacacebb aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x2604ffb5 wcd_mbhc_start +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x3a195ca9 wcd_mbhc_get_impedance +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x789ebe56 wcd_mbhc_set_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xa5758a49 wcd_mbhc_get_hph_type +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xab6f6ba9 wcd_mbhc_init +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xd094df47 wcd_mbhc_deinit +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xe2beca26 wcd_mbhc_stop +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0xf665e34a wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/snd-soc-core 0xcdf886e6 snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/amd/snd-sof-amd-renoir 0xafcf1f07 sof_renoir_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x002c1ff0 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0291ca6c sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0667b63b snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x07551e64 sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x077bd80d snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d895010 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2458d3c6 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2df75c30 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x335b515c sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x35ed9481 sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x36050d19 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3662eafc snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x371ce3d8 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x43e6562a snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x49135aca snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x499e7dc1 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4a3af80e snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4f6bcb87 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5846d91f snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5ccf73f4 snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5e6cbccd sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6d84b530 sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6f196a1f sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7062a26c sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x848848cc snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x89c101ad sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x89c773bc sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b8320e3 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8e13088d sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x99348746 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x99ea4669 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xac8264f2 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaf0a3c55 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb94b2669 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc0240674 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc1e749cf snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc600cc59 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc7f30841 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xca5f1f30 sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd37dda34 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0702e7e snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe0795a9a snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe4c2b6dc snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe5fdce41 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe7a629e1 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xe9981ba5 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec307d24 snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec38a4d9 snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf0b93022 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf1d329cc snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf78df068 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf84a28f5 snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfc45eef4 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfed29649 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xff7a1924 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x81bcf2dd snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x24d9bd1f register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x51ec0164 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x5f13f962 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x6d421eab sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb383aa50 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x091ac48c snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x17763d3a snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2ecac5f1 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 0x99e41954 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xbb35e2e9 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfb7abadc 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 0x6e99144a __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 0x000fef97 inode_insert5 +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x00249147 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x003cd549 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x0040c27a __devm_request_region +EXPORT_SYMBOL vmlinux 0x005133b3 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x00664187 d_genocide +EXPORT_SYMBOL vmlinux 0x00809cb1 pci_free_irq +EXPORT_SYMBOL vmlinux 0x00a4b044 amd_iommu_deactivate_guest_mode +EXPORT_SYMBOL vmlinux 0x00b01671 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b965cf skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x00d004bd nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d843a8 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0x00e5ce5a skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x00fb5a70 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x01233234 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x012605d1 padata_do_serial +EXPORT_SYMBOL vmlinux 0x013a2898 cad_pid +EXPORT_SYMBOL vmlinux 0x013f26ae dma_fence_get_stub +EXPORT_SYMBOL vmlinux 0x0147812c kblockd_mod_delayed_work_on +EXPORT_SYMBOL vmlinux 0x015e23f1 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x0172278e blk_queue_io_opt +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 0x01916e4e inet6_offloads +EXPORT_SYMBOL vmlinux 0x019c08f9 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bb7d19 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c4e9c3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x01c7f51f free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x01d1a175 vm_map_pages +EXPORT_SYMBOL vmlinux 0x01dda31f seq_path +EXPORT_SYMBOL vmlinux 0x0200149e vme_irq_generate +EXPORT_SYMBOL vmlinux 0x0204b994 ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x0220abcc udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x0225d8bb __xfrm_state_destroy +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 0x023b90fb napi_disable +EXPORT_SYMBOL vmlinux 0x023d1b90 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024e02d3 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02776efc xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x02b17deb seq_read +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c1e8bc set_bh_page +EXPORT_SYMBOL vmlinux 0x02c656b6 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x02cbef0f dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x02ef8b23 kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x0324a1e6 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0337880e secpath_set +EXPORT_SYMBOL vmlinux 0x034e4442 ata_print_version +EXPORT_SYMBOL vmlinux 0x035dd31b pcim_iomap_regions_request_all +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 0x03686957 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x0370b8f5 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x038cd07a take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x03974c05 get_tree_single +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03b5202a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c5173d mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x03db034d dm_register_target +EXPORT_SYMBOL vmlinux 0x03dfd50c blk_start_plug +EXPORT_SYMBOL vmlinux 0x03e4b27d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x03f3625a blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x03f5f7a9 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x03f84d61 get_cached_acl +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04052a59 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x0417d1b2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x042588c1 build_skb +EXPORT_SYMBOL vmlinux 0x04385a82 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x043a0faa cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x043bdd03 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x04757e4e drop_nlink +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 0x049b009a padata_do_parallel +EXPORT_SYMBOL vmlinux 0x049ed54e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x04af9d27 register_qdisc +EXPORT_SYMBOL vmlinux 0x04b8c319 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x04c17854 device_add_disk +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d83f46 vfs_create +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04e4a225 input_free_device +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f2fa64 may_umount +EXPORT_SYMBOL vmlinux 0x05016e32 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0539659b pci_enable_wake +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05564ed9 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x056eb8d8 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x0570df13 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x0573af07 zap_page_range +EXPORT_SYMBOL vmlinux 0x057a5a04 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a70888 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x05b91b8f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x05ba1d2e napi_complete_done +EXPORT_SYMBOL vmlinux 0x05bb4753 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x05c0d81e is_subdir +EXPORT_SYMBOL vmlinux 0x05d26cf6 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x05ddf6d8 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0600a55b devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x0601ed2e skb_append +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x06058dd5 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062b9caf ps2_end_command +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06418412 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x064a88e1 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x06655e1f flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x069165d2 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x06a605d9 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x06a86bc1 iowrite16 +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06c071c8 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x06c869e0 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06f348a8 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x06ffd2df input_unregister_handle +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071d97d1 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x072d783b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0732373f md_cluster_ops +EXPORT_SYMBOL vmlinux 0x0736ccba fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0756b75a pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x075c0546 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x07642a89 dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c5c514 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07d51ca3 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x07d93f14 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x07da8167 __serio_register_port +EXPORT_SYMBOL vmlinux 0x07de68bc skb_split +EXPORT_SYMBOL vmlinux 0x07e1dae9 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x07f57478 pci_unmap_iospace +EXPORT_SYMBOL vmlinux 0x07fff06a netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x0800473f __cond_resched +EXPORT_SYMBOL vmlinux 0x0805f2c8 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0x08162c74 free_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0x081c2a34 ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x081c2cd9 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x08249512 iwe_stream_add_point +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0846c891 vga_switcheroo_lock_ddc +EXPORT_SYMBOL vmlinux 0x086f1131 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x087323ba rt_dst_clone +EXPORT_SYMBOL vmlinux 0x08795c63 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x089ec802 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x08a6a940 fput +EXPORT_SYMBOL vmlinux 0x08d9d8d9 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x08da6b4d setattr_prepare +EXPORT_SYMBOL vmlinux 0x08f5b77b kern_path_create +EXPORT_SYMBOL vmlinux 0x0900265e mmc_erase +EXPORT_SYMBOL vmlinux 0x090fb6ab d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x0915943a kset_unregister +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093307ff generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x093bad42 vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x0946a486 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x094e9a81 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x095583fd filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x097bc76b register_quota_format +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099229aa __free_pages +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09991786 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x09ab069c unlock_page +EXPORT_SYMBOL vmlinux 0x09ac0553 netdev_features_change +EXPORT_SYMBOL vmlinux 0x09ad31b6 __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x09cd895a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d7ce1b netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09db5916 fqdir_init +EXPORT_SYMBOL vmlinux 0x09fd5fef neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a22fbfb make_kprojid +EXPORT_SYMBOL vmlinux 0x0a2456b6 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x0a2e195c dev_mc_add +EXPORT_SYMBOL vmlinux 0x0a336bd9 __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x0a3b3d2c __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0a49ed08 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a872b24 elevator_alloc +EXPORT_SYMBOL vmlinux 0x0a956dfe tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa6c0aa migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ab08236 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adc6702 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x0b0c5adb skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x0b0e6dcc genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0b15605d xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x0b19b445 ioread8 +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b46cd2c phy_attach_direct +EXPORT_SYMBOL vmlinux 0x0b637410 cr4_update_irqsoff +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b95c612 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0ba6b2ae iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bc63187 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x0bcfd4b1 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c0e4385 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5988ca d_path +EXPORT_SYMBOL vmlinux 0x0c6b9a79 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7e35d5 console_start +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0ccbced8 md_write_inc +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0ce82043 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0e83a1 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x0d15f1ae jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0d233216 sk_alloc +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d3fa303 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5f8b19 put_fs_context +EXPORT_SYMBOL vmlinux 0x0d639768 xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0x0d63f732 submit_bh +EXPORT_SYMBOL vmlinux 0x0d7b002d boot_cpu_data +EXPORT_SYMBOL vmlinux 0x0d816a23 blk_get_queue +EXPORT_SYMBOL vmlinux 0x0d90e47f folio_wait_bit +EXPORT_SYMBOL vmlinux 0x0d9ec241 agp_create_memory +EXPORT_SYMBOL vmlinux 0x0da0ac82 noop_llseek +EXPORT_SYMBOL vmlinux 0x0da2ff28 netdev_change_features +EXPORT_SYMBOL vmlinux 0x0da545c0 blk_put_queue +EXPORT_SYMBOL vmlinux 0x0db20ebc wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x0db32a87 da903x_query_status +EXPORT_SYMBOL vmlinux 0x0dbb3d5e mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x0dc744a8 input_get_keycode +EXPORT_SYMBOL vmlinux 0x0df05302 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x0e112579 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e23b37f alloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x0e34e148 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x0e402a32 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e4e75f6 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x0e4f41ec cfb_copyarea +EXPORT_SYMBOL vmlinux 0x0e908ae0 vme_bus_num +EXPORT_SYMBOL vmlinux 0x0e95e7cc udp_seq_stop +EXPORT_SYMBOL vmlinux 0x0e9ec595 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0ea1f41e pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea6910d fb_get_mode +EXPORT_SYMBOL vmlinux 0x0eb2410c vfs_get_super +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec2f911 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed35c76 read_cache_page +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f0e73c0 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f2f49b4 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x0f32e146 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f473780 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x0f570e09 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f7c4079 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x0f811b06 unlock_buffer +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0fa1738a devm_memremap +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe2c6d6 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x0ff80f59 zalloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x1009cda7 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x10435058 mmc_add_host +EXPORT_SYMBOL vmlinux 0x10484073 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x104cb38d devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x10719aee devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108c8975 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x109aa54c tcp_mmap +EXPORT_SYMBOL vmlinux 0x10a6c2bd pci_find_bus +EXPORT_SYMBOL vmlinux 0x10be7b37 would_dump +EXPORT_SYMBOL vmlinux 0x10c0927a nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x10d2d872 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x10e748b4 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x10f0137d proc_create +EXPORT_SYMBOL vmlinux 0x1101ebb2 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11098855 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x110e480b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x11134305 inet6_bind +EXPORT_SYMBOL vmlinux 0x1126391d dquot_acquire +EXPORT_SYMBOL vmlinux 0x11297544 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x1130d297 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x1135b8df filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x1157dcb9 qdisc_put +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1199ddb4 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x11a70617 simple_write_begin +EXPORT_SYMBOL vmlinux 0x11b5409e __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x11d176be seq_hex_dump +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e6456b proc_create_data +EXPORT_SYMBOL vmlinux 0x12054907 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x12112dcc nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x121389cd pci_match_id +EXPORT_SYMBOL vmlinux 0x12186e01 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x12190814 tcp_child_process +EXPORT_SYMBOL vmlinux 0x12362d9f cpu_info +EXPORT_SYMBOL vmlinux 0x12379cda tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x1268f5b1 flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0x129144c7 __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x12c82ea4 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cbec5d posix_test_lock +EXPORT_SYMBOL vmlinux 0x12d37f67 nf_log_trace +EXPORT_SYMBOL vmlinux 0x12d5d95e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x12d8676b blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x12da36f3 nf_log_packet +EXPORT_SYMBOL vmlinux 0x12e9754d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x12ef7f5e rfkill_alloc +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x12f82864 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x12ff07fd sock_create +EXPORT_SYMBOL vmlinux 0x1301f7ed xfrm_user_policy +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 0x132d321a ilookup +EXPORT_SYMBOL vmlinux 0x133ed4b2 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x133fe60a follow_down +EXPORT_SYMBOL vmlinux 0x1344d7e6 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x13560d64 sock_no_linger +EXPORT_SYMBOL vmlinux 0x1359d0e8 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x1373ddda input_set_keycode +EXPORT_SYMBOL vmlinux 0x1383fad8 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x1389619c __max_die_per_package +EXPORT_SYMBOL vmlinux 0x138a4145 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x13962732 thread_group_exited +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13af27ff config_item_get +EXPORT_SYMBOL vmlinux 0x13b16844 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x13c49cc2 _copy_from_user +EXPORT_SYMBOL vmlinux 0x13cf1c80 udplite_prot +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e25667 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x13f18932 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x14136e7e remove_arg_zero +EXPORT_SYMBOL vmlinux 0x14163fc5 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x1418590a block_truncate_page +EXPORT_SYMBOL vmlinux 0x142ba5fb param_get_uint +EXPORT_SYMBOL vmlinux 0x14334468 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x14368920 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x145ce989 sk_net_capable +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x146ce362 super_setup_bdi +EXPORT_SYMBOL vmlinux 0x14755fd3 generic_update_time +EXPORT_SYMBOL vmlinux 0x1480cfb8 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x1492e831 __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x14a180d4 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x14b6d4a5 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x14bc2c44 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x14bdbe71 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x14c43567 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14cde9f7 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x14d8a90c xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x14dc2639 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x14dda16c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x14e3b3a7 kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x14fa000f jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x152a1896 phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x15387c2c buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x153c9249 __register_nls +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154e3898 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x15560304 tcf_em_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 0x15c85de3 mempool_init +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x15fa3981 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x15fdae87 bmap +EXPORT_SYMBOL vmlinux 0x15febc73 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x16033551 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x16199ad3 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x16286538 iowrite64be_lo_hi +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x16301b34 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x16320216 pci_release_regions +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x1648d885 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16819d92 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x169bf670 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d35b29 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x16d75010 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e5fc4c fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x16e732f2 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x16f22185 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1729ef45 set_binfmt +EXPORT_SYMBOL vmlinux 0x173e1db9 sock_register +EXPORT_SYMBOL vmlinux 0x1751c26c udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1755522f vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x175e33fb dma_spin_lock +EXPORT_SYMBOL vmlinux 0x1765bf9c configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x178aaf48 send_sig_info +EXPORT_SYMBOL vmlinux 0x178dd3f1 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x179a0f7c skb_pull +EXPORT_SYMBOL vmlinux 0x179b030c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x179b6edf __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x17b6c017 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x17be68ca acpi_clear_event +EXPORT_SYMBOL vmlinux 0x17e568df __put_user_ns +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f3bb49 current_time +EXPORT_SYMBOL vmlinux 0x17f813a9 __SCT__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x17fc3ae3 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0x18152a3e freeze_bdev +EXPORT_SYMBOL vmlinux 0x18200f83 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x182b64b2 mmc_get_card +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x185ff42e skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x186c7e1e __module_get +EXPORT_SYMBOL vmlinux 0x186ed4d9 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x1872faa5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18ad634c blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x18b485c1 amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c23e68 __tracepoint_write_msr +EXPORT_SYMBOL vmlinux 0x18ccee95 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x18d1af46 vm_mmap +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e982da __mdiobus_write +EXPORT_SYMBOL vmlinux 0x18e9c99d vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x19075a66 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x190e09f2 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1918790f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x191b6a32 tty_lock +EXPORT_SYMBOL vmlinux 0x192b4ee9 skb_put +EXPORT_SYMBOL vmlinux 0x192ea14f __SCT__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x19425174 neigh_xmit +EXPORT_SYMBOL vmlinux 0x1952760a skb_store_bits +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL vmlinux 0x195b83be rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x1973fb6d ps2_handle_response +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x19998c87 stop_tty +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ce4f35 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x19d200ec __SCT__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x19df99b9 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x19efb8c3 __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x19f9a96a kernel_write +EXPORT_SYMBOL vmlinux 0x1a140629 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x1a2c956e devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x1a38cd97 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x1a3c03ad skb_clone +EXPORT_SYMBOL vmlinux 0x1a415411 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4da25b pci_set_mwi +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6ef97c discard_new_inode +EXPORT_SYMBOL vmlinux 0x1a72d4af migrate_page +EXPORT_SYMBOL vmlinux 0x1a7517a5 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x1a79c8e9 __x86_indirect_thunk_r13 +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1aabb5e1 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ace8cfe __SCK__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0x1afd6fc0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1759ee cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x1b2b7956 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x1b4a93a5 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1b4d679b sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b5d0731 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b710550 sync_filesystem +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b804b0a pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8ee118 current_task +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1babe444 vfs_llseek +EXPORT_SYMBOL vmlinux 0x1bb12eae splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bd0f976 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1be967f6 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x1bf05add flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x1bf3153d unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x1c352c2c phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x1c390484 mpage_writepages +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c6125e0 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x1c70aa9f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x1c98aaa0 qdisc_reset +EXPORT_SYMBOL vmlinux 0x1ca527fa ioread64be_hi_lo +EXPORT_SYMBOL vmlinux 0x1ca9187d ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cb974af _dev_emerg +EXPORT_SYMBOL vmlinux 0x1cc1993d security_sock_graft +EXPORT_SYMBOL vmlinux 0x1cc3da35 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd3bdc3 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cfaa298 scsi_partsize +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d102a02 iov_iter_init +EXPORT_SYMBOL vmlinux 0x1d1727f4 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x1d19f77b physical_mask +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d367534 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x1d37d24b acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4c6065 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x1d627da7 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1d690e9b vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1d7390fd pci_release_resource +EXPORT_SYMBOL vmlinux 0x1d925de9 read_cache_folio +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1daa9b9a jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dbabc70 generic_writepages +EXPORT_SYMBOL vmlinux 0x1dbecf40 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dcb68a6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x1dcde8be kernel_bind +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd8e046 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x1dda898e pci_dev_get +EXPORT_SYMBOL vmlinux 0x1de4ccb2 get_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x1e02ec46 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1e063f05 ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0bdf70 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0e2a84 __folio_alloc +EXPORT_SYMBOL vmlinux 0x1e0fcbd9 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x1e18b6f1 call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e56716a cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x1e682f58 mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e75f378 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x1e92b7dc __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x1e9a0794 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea59eed generic_perform_write +EXPORT_SYMBOL vmlinux 0x1eb89644 padata_free_shell +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee50616 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x1ee80587 sock_set_priority +EXPORT_SYMBOL vmlinux 0x1ef0748e ip6_dst_check +EXPORT_SYMBOL vmlinux 0x1ef501aa rproc_del +EXPORT_SYMBOL vmlinux 0x1ef5a3c6 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x1f1821ae efi +EXPORT_SYMBOL vmlinux 0x1f199d24 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x1f2572b6 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x1f3b95d8 neigh_for_each +EXPORT_SYMBOL vmlinux 0x1f3f3285 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x1f44ade1 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x1f4b8c84 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x1f4e32db tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f5ca912 _dev_notice +EXPORT_SYMBOL vmlinux 0x1f6d1dce dquot_release +EXPORT_SYMBOL vmlinux 0x1f70b88b page_pool_release_page +EXPORT_SYMBOL vmlinux 0x1f84c647 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0x1f8cd836 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc0cc7c intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0x1fcb494e pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1ff01080 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1ffb9534 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x1fff77af netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200240b7 sg_miter_next +EXPORT_SYMBOL vmlinux 0x2003e4d0 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200e7e1c dev_get_stats +EXPORT_SYMBOL vmlinux 0x20108863 phy_loopback +EXPORT_SYMBOL vmlinux 0x2015e6fb dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x20259bc5 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x20337c15 cdev_alloc +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x2084af63 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x2087409a input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x20895406 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x20a1e2d5 igrab +EXPORT_SYMBOL vmlinux 0x20a5a47f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20adeb41 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x20b2e1a5 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x20ba4f3e rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x20bcbe4f blake2s_compress +EXPORT_SYMBOL vmlinux 0x20bd4bae ip_setsockopt +EXPORT_SYMBOL vmlinux 0x20bd751a pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20ce067e phy_stop +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e27305 con_is_visible +EXPORT_SYMBOL vmlinux 0x20e348d5 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f94a01 sk_common_release +EXPORT_SYMBOL vmlinux 0x20fc812f input_register_device +EXPORT_SYMBOL vmlinux 0x210533e1 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x211130c1 alloc_cpumask_var +EXPORT_SYMBOL vmlinux 0x21242030 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x21271fd0 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x212910d2 udp_read_sock +EXPORT_SYMBOL vmlinux 0x212f7997 netdev_update_features +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x213f8c29 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x215805b7 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x2160d299 sock_efree +EXPORT_SYMBOL vmlinux 0x21709784 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x2177bd71 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x217b750a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x21afa9e4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x21ba806d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21df5709 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ec6864 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x21ee84d6 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f96a5a page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x21fec997 proc_mkdir +EXPORT_SYMBOL vmlinux 0x2204d007 kset_register +EXPORT_SYMBOL vmlinux 0x220b984b notify_change +EXPORT_SYMBOL vmlinux 0x22164540 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x2228cb91 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x222a3bea param_get_string +EXPORT_SYMBOL vmlinux 0x222a6810 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x22357853 nobh_writepage +EXPORT_SYMBOL vmlinux 0x223d81a1 tty_register_driver +EXPORT_SYMBOL vmlinux 0x223ff9a4 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x2245b3ea blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x22607d90 param_get_bool +EXPORT_SYMBOL vmlinux 0x2267b1c8 kernel_listen +EXPORT_SYMBOL vmlinux 0x227059e7 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x227220fb pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x2279c508 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x22832df7 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x22896169 genphy_loopback +EXPORT_SYMBOL vmlinux 0x228f4b82 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b8c0c9 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x22de4931 amd_iommu_register_ga_log_notifier +EXPORT_SYMBOL vmlinux 0x22e52078 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x22f02f40 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x22fb5b51 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x22fe9e1b security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x23079f0c phy_disconnect +EXPORT_SYMBOL vmlinux 0x23093f0f ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x230eabfb balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x2333a756 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x239ad7bf phy_read_mmd +EXPORT_SYMBOL vmlinux 0x23a1e563 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x23aa7d3e from_kuid_munged +EXPORT_SYMBOL vmlinux 0x23b496f0 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bb5708 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23fcfea2 phy_connect +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241373c3 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x24423358 xattr_full_name +EXPORT_SYMBOL vmlinux 0x2447d276 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24636470 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x246e71a4 dquot_destroy +EXPORT_SYMBOL vmlinux 0x2473b2b5 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x24761bea put_disk +EXPORT_SYMBOL vmlinux 0x248365af genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x2483e796 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2491a607 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x24c28ff4 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x24c92542 bio_free_pages +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24dce55a sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x2504b5aa clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x250814e1 alloc_pages +EXPORT_SYMBOL vmlinux 0x25506c89 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x257c8ec5 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2584a438 migrate_page_states +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25a7588f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x25d3a16e prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0x25d9ec4d thaw_bdev +EXPORT_SYMBOL vmlinux 0x25db1577 do_trace_write_msr +EXPORT_SYMBOL vmlinux 0x25df1c2b reuseport_add_sock +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25effcab generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260efe43 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x261a4b5e tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263fd18a get_fs_type +EXPORT_SYMBOL vmlinux 0x264d3803 d_tmpfile +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x26909a0a neigh_destroy +EXPORT_SYMBOL vmlinux 0x2696f66b input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x26989b8c tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x26c1b520 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0x26ddb782 inet_protos +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26f66b79 fb_set_var +EXPORT_SYMBOL vmlinux 0x26f8f0b8 iowrite16be +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272155f4 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x272a8933 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x2733eaf7 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x273badce copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0x2744d63c security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d8816 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x27532a00 tty_kref_put +EXPORT_SYMBOL vmlinux 0x27551034 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277693fb nd_device_unregister +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 0x27b7ea06 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bd1a26 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27dafcec pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x27ef50a2 d_set_d_op +EXPORT_SYMBOL vmlinux 0x27f52b92 kobject_set_name +EXPORT_SYMBOL vmlinux 0x28075fcb block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x280e7970 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2832c34a md_write_end +EXPORT_SYMBOL vmlinux 0x28383008 fs_bio_set +EXPORT_SYMBOL vmlinux 0x284faa6b __x86_indirect_thunk_r11 +EXPORT_SYMBOL vmlinux 0x2854c432 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x2877f0be jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x28792461 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x2897fd19 drop_super +EXPORT_SYMBOL vmlinux 0x28a79add skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x28cd86c7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f61878 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x29036a2b tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x2931738f tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x29332499 __x86_indirect_thunk_rsi +EXPORT_SYMBOL vmlinux 0x294a61dc jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x29592805 __bio_advance +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29690a76 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x296ba736 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x29985590 param_get_byte +EXPORT_SYMBOL vmlinux 0x299e0980 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x29ad8e33 x86_hyper_type +EXPORT_SYMBOL vmlinux 0x29b019a7 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x29b097eb mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x29b4a006 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x29c5de52 security_path_mknod +EXPORT_SYMBOL vmlinux 0x29ce5f78 touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0x29d4f9d7 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29fc99ca tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x2a1600ae seq_file_path +EXPORT_SYMBOL vmlinux 0x2a1c680b keyring_search +EXPORT_SYMBOL vmlinux 0x2a2384d6 mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a38fd74 tcp_check_req +EXPORT_SYMBOL vmlinux 0x2a3b8f7e ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x2a4abc4f nf_setsockopt +EXPORT_SYMBOL vmlinux 0x2a6205e3 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x2a65b1c3 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x2a6fa0d0 __SCT__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x2a75e934 skb_tx_error +EXPORT_SYMBOL vmlinux 0x2a8492f9 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x2a908f95 gro_cells_receive +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a98992b nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x2a994c02 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2aa00e26 intel_scu_ipc_dev_update +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab808fb tcp_peek_len +EXPORT_SYMBOL vmlinux 0x2ac85471 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2ae7cbe6 vme_master_request +EXPORT_SYMBOL vmlinux 0x2b052e66 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x2b15f084 netlink_capable +EXPORT_SYMBOL vmlinux 0x2b1a6174 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x2b266c53 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b6672d5 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b6d5095 simple_statfs +EXPORT_SYMBOL vmlinux 0x2b6f0962 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x2b73d833 ip_options_compile +EXPORT_SYMBOL vmlinux 0x2b8d44db inet_del_offload +EXPORT_SYMBOL vmlinux 0x2b92b536 skb_eth_push +EXPORT_SYMBOL vmlinux 0x2b995407 edac_mc_find +EXPORT_SYMBOL vmlinux 0x2b9ab4c6 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2bb49486 clear_inode +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bc10558 inet_sendpage +EXPORT_SYMBOL vmlinux 0x2bcbbc50 param_set_ulong +EXPORT_SYMBOL vmlinux 0x2bd1e10f dev_uc_flush +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2bf37e7c udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c282d0b sget +EXPORT_SYMBOL vmlinux 0x2c423718 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x2c498b7e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c60144e nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2c60c260 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x2c69442c agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c7313ed __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c847d9c pci_read_config_byte +EXPORT_SYMBOL vmlinux 0x2c86b1e1 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x2c896dc3 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x2c8b6b8d skb_queue_head +EXPORT_SYMBOL vmlinux 0x2c8ff0dc dquot_resume +EXPORT_SYMBOL vmlinux 0x2caf63d1 topology_phys_to_logical_die +EXPORT_SYMBOL vmlinux 0x2cb601ca napi_consume_skb +EXPORT_SYMBOL vmlinux 0x2cc56103 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ce5ed7b rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x2d104602 phy_start +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16989c dentry_create +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 0x2d47a2b0 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d4fdb33 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x2d5202b5 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2d6dd8cd eth_mac_addr +EXPORT_SYMBOL vmlinux 0x2d6e916d page_pool_destroy +EXPORT_SYMBOL vmlinux 0x2d880387 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x2d8ffe68 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2da0af9a neigh_ifdown +EXPORT_SYMBOL vmlinux 0x2db55c07 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df0ed63 key_invalidate +EXPORT_SYMBOL vmlinux 0x2df7eb80 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x2e033d27 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x2e041f30 netdev_emerg +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e0cb12c d_add_ci +EXPORT_SYMBOL vmlinux 0x2e0f7150 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e404e73 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5480a6 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2e5757c2 pps_event +EXPORT_SYMBOL vmlinux 0x2e5fe036 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x2e881e13 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x2e96a31b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2e9f0529 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x2ea8c63a create_empty_buffers +EXPORT_SYMBOL vmlinux 0x2ec6464d generic_permission +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ecce2b2 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f014a8d vfs_setpos +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f06318c remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x2f0d44a3 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x2f1f3c20 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x2f2bf111 filemap_fault +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f2f0af3 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f4eee5b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2f5dc254 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7ddd3e mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x2f898cdd bio_init_clone +EXPORT_SYMBOL vmlinux 0x2f96ba47 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x2fa9fcdf pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0x2fba64e0 devm_iounmap +EXPORT_SYMBOL vmlinux 0x2fbf1764 sock_from_file +EXPORT_SYMBOL vmlinux 0x2fc28395 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x2fd0f614 framebuffer_release +EXPORT_SYMBOL vmlinux 0x2fd32551 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x2fd3578d pci_iounmap +EXPORT_SYMBOL vmlinux 0x2fd5a330 get_tz_trend +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ffa85ee netlink_net_capable +EXPORT_SYMBOL vmlinux 0x301304c2 __get_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x3018d46b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x3018f437 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x303cbb32 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x303cf12e tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x303fd122 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x3053e736 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x305a916c __x86_indirect_thunk_rdi +EXPORT_SYMBOL vmlinux 0x30662086 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x306fa3c6 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x30710a42 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x3077c9b8 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3093d527 param_array_ops +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30977d17 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x3098b7ee jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x30a21f4f genl_unregister_family +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c0cb13 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x30c837a3 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x30cd5823 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x30cfb389 PageMovable +EXPORT_SYMBOL vmlinux 0x30d2f43b scsi_block_requests +EXPORT_SYMBOL vmlinux 0x30e01951 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x310255e1 finish_swait +EXPORT_SYMBOL vmlinux 0x3122b708 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31280f1b pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x315188f5 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x31549b2a __x86_indirect_thunk_r10 +EXPORT_SYMBOL vmlinux 0x31595fae pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x315fe65a xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x31698cbf vm_event_states +EXPORT_SYMBOL vmlinux 0x3175cc2d netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x317fd29d skb_push +EXPORT_SYMBOL vmlinux 0x318f3967 sock_wake_async +EXPORT_SYMBOL vmlinux 0x3194dafc ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x31960e3f __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31bc4b71 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x31c7e373 rtc_add_groups +EXPORT_SYMBOL vmlinux 0x31d7f6e9 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x31e0a9a4 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x3209c24d __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x320aa240 ip6_xmit +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x321e67ef __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x321f7d19 proc_remove +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32493383 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x32504cc0 vfs_unlink +EXPORT_SYMBOL vmlinux 0x3252e434 dst_destroy +EXPORT_SYMBOL vmlinux 0x325a10bc __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x32600dfc vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x326267e3 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x327d457e twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x3283d149 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32a0a7a7 pci_bus_type +EXPORT_SYMBOL vmlinux 0x32a24601 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x32a3ab16 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x32b31671 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d8435a rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x32dd58a9 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x32ebb2e2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x33073535 param_set_charp +EXPORT_SYMBOL vmlinux 0x33177596 to_nd_btt +EXPORT_SYMBOL vmlinux 0x331898f6 proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x331e988e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x33217356 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x3324ef3b acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x33369321 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0x3339c642 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x334551bf page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x3352a77f tty_port_open +EXPORT_SYMBOL vmlinux 0x3359637f jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x3362c549 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x338fbca3 ip6_mtu +EXPORT_SYMBOL vmlinux 0x339514df skb_checksum +EXPORT_SYMBOL vmlinux 0x3397522f blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c0550b input_unregister_handler +EXPORT_SYMBOL vmlinux 0x33e83222 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x33e9f419 generic_ro_fops +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 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x3441445f msrs_free +EXPORT_SYMBOL vmlinux 0x3457e8dd md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x346e8e71 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0x34820e92 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x3489859f acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x348f2d03 import_single_range +EXPORT_SYMBOL vmlinux 0x349142fb dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x349bbe6a netdev_notice +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34bb700f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x34c15df0 keyring_clear +EXPORT_SYMBOL vmlinux 0x34c4b06f init_net +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34ddd193 dev_activate +EXPORT_SYMBOL vmlinux 0x34e34d06 inet_ioctl +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f78928 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x34f846d7 __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x34f89363 acpi_terminate_debugger +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3511c8ab eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351a6cc0 vmap +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x354b4a1e acpi_ut_trace +EXPORT_SYMBOL vmlinux 0x3557c2c5 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x357d7273 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x3582f38a get_unmapped_area +EXPORT_SYMBOL vmlinux 0x35886bc3 simple_release_fs +EXPORT_SYMBOL vmlinux 0x359eb2ae unregister_qdisc +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ab3e50 sock_init_data +EXPORT_SYMBOL vmlinux 0x35aee647 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x35d6c74a iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x35ee65fa find_inode_rcu +EXPORT_SYMBOL vmlinux 0x35fd75b7 genphy_update_link +EXPORT_SYMBOL vmlinux 0x3603ccb2 vlan_for_each +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x361d9024 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0x362c7fca netif_device_attach +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x365749c2 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x365821e9 begin_new_exec +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x366085e4 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x3663bc34 sock_rfree +EXPORT_SYMBOL vmlinux 0x366f4faa md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x36922288 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x36aedc46 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x36b3454b cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36bc5c44 __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x36cadae5 km_state_expired +EXPORT_SYMBOL vmlinux 0x36cffabb tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x3703395e get_phy_device +EXPORT_SYMBOL vmlinux 0x370ed1f7 put_watch_queue +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x37123742 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x3717e82b nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x372cf1c5 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x372cf4a6 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3756c1c4 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x375bf3f5 folio_mapped +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x379e47e8 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c318f9 set_cached_acl +EXPORT_SYMBOL vmlinux 0x37c7fc5c gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e4148a xfrm_state_update +EXPORT_SYMBOL vmlinux 0x37e49db2 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x37f8c7bf invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x37fe775b sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x381226c9 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x3812e1e1 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385883fc ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x386024fd ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x386f74f6 inc_nlink +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388aa3c9 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x389066a8 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x3891ffc8 ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0x389617b0 LZ4_decompress_fast_continue +EXPORT_SYMBOL vmlinux 0x389b688d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x389f86fd dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ba2bc2 make_bad_inode +EXPORT_SYMBOL vmlinux 0x38bb9754 mmc_command_done +EXPORT_SYMBOL vmlinux 0x38bbf730 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x38db2072 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x38e20c06 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f46134 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +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 0x395e0187 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0x39658b47 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x3965ff52 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x3969e118 clk_add_alias +EXPORT_SYMBOL vmlinux 0x396a906b submit_bio_wait +EXPORT_SYMBOL vmlinux 0x397cec41 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x3992db09 bh_submit_read +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399e342f fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x39b47e9c pcim_iounmap +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b896a2 sock_alloc +EXPORT_SYMBOL vmlinux 0x39c0369e netdev_info +EXPORT_SYMBOL vmlinux 0x39c52c88 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e3c030 do_trace_read_msr +EXPORT_SYMBOL vmlinux 0x39f0d6ac dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a099605 __get_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2d1dfa rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a623c8d pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x3a62697c mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0x3a6e7054 dev_add_offload +EXPORT_SYMBOL vmlinux 0x3a80a2a1 page_pool_create +EXPORT_SYMBOL vmlinux 0x3a943316 pci_enable_device +EXPORT_SYMBOL vmlinux 0x3aa929cf inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x3ab7aaf2 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3ac2f40f __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acc2898 mmc_of_parse_clk_phase +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 0x3adbcce6 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x3adbd977 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3afa6814 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b029f48 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x3b08c6f4 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3b0cee6b pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x3b0d665d mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x3b0ef27c inode_update_time +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b25bf41 is_nd_btt +EXPORT_SYMBOL vmlinux 0x3b28d757 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b497818 param_get_long +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +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 0x3bb5124e gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x3bc5e2f7 phy_read_paged +EXPORT_SYMBOL vmlinux 0x3bcb0bc9 input_set_timestamp +EXPORT_SYMBOL vmlinux 0x3bce43d8 dquot_transfer +EXPORT_SYMBOL vmlinux 0x3bd04335 tcp_filter +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bfaedd6 kobject_add +EXPORT_SYMBOL vmlinux 0x3c00cc60 netdev_warn +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1a094a pps_unregister_source +EXPORT_SYMBOL vmlinux 0x3c1a6fa5 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3c22ac42 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x3c3f0ec2 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c427f67 cpu_die_map +EXPORT_SYMBOL vmlinux 0x3c4f00b4 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3c69a96d linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x3c79fa8f devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x3c7c177b input_setup_polling +EXPORT_SYMBOL vmlinux 0x3c88c6f9 __brelse +EXPORT_SYMBOL vmlinux 0x3c8fd160 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x3ca801bc folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x3cb4bd3e sock_wmalloc +EXPORT_SYMBOL vmlinux 0x3cbb8c43 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cec5e5e mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d1de013 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d23f1d4 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3d29f631 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0x3d2b858b pcim_enable_device +EXPORT_SYMBOL vmlinux 0x3d2fede9 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x3d32d57e __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x3d32ecb0 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3d345bf0 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x3d43c979 genl_register_family +EXPORT_SYMBOL vmlinux 0x3d628ae4 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x3d68f6d7 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x3d6bc803 vif_device_init +EXPORT_SYMBOL vmlinux 0x3d7e5eb7 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x3d801a54 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3d80782f unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x3d8475eb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x3d9144fb xfrm_input +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 0x3db68781 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x3dc619d3 swake_up_locked +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd4f689 send_sig +EXPORT_SYMBOL vmlinux 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3ddc6c04 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x3dee871b acpi_register_debugger +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e26d5c1 genphy_read_status +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e3bce8c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3e4dd3a7 pipe_unlock +EXPORT_SYMBOL vmlinux 0x3e4e2c87 seq_write +EXPORT_SYMBOL vmlinux 0x3e73e0a9 sk_error_report +EXPORT_SYMBOL vmlinux 0x3e95af40 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x3e9af741 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x3eb4b2ba __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x3edb6d33 param_get_int +EXPORT_SYMBOL vmlinux 0x3ede1650 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0x3ee6a9f8 proto_register +EXPORT_SYMBOL vmlinux 0x3ee96875 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f0041b7 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f36e131 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x3f376c23 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f530b18 bio_copy_data +EXPORT_SYMBOL vmlinux 0x3f6c8499 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x3f8856cd flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f8ee0c0 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3f97d53d alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x3f9bc07b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x3fa49e7e vfs_mkdir +EXPORT_SYMBOL vmlinux 0x3fb68eb7 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x3fbaeb77 register_key_type +EXPORT_SYMBOL vmlinux 0x3fbc5a6c free_netdev +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff173a8 close_fd_get_file +EXPORT_SYMBOL vmlinux 0x3ff6f565 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x40214c0d pci_find_resource +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x4023f492 __bread_gfp +EXPORT_SYMBOL vmlinux 0x402ebea2 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x402fe388 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x404210bb vm_map_ram +EXPORT_SYMBOL vmlinux 0x4055a920 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x40682092 tcp_seq_next +EXPORT_SYMBOL vmlinux 0x40709ab1 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x407d4a04 fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x407eeddc netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x40868147 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40990473 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b41e8b security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x40b8635a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x40c0e42f ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d49f47 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40d70d2f set_blocksize +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x40f99d50 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x40fcc1fc vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x411959d2 vfio_register_notifier +EXPORT_SYMBOL vmlinux 0x411bbafd __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x4128c48c path_has_submounts +EXPORT_SYMBOL vmlinux 0x412a110b uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x413d3a83 single_open +EXPORT_SYMBOL vmlinux 0x41441e7a seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4152db57 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x416c4509 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x4172a381 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41924880 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x419712b9 pci_select_bars +EXPORT_SYMBOL vmlinux 0x41baa688 sock_set_mark +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41cfbae7 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x421a3f2f ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x42227dbf tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x422e8d43 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4236dbc4 inode_init_once +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x425c78b8 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x426095d9 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x42a44e8c iterate_supers_type +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42e4efcf vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x42e5b9ff flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42f3f2a9 scsi_device_get +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307893b config_group_find_item +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 0x435507e8 free_buffer_head +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x437f66e7 register_cdrom +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x4386f3e6 lru_cache_add +EXPORT_SYMBOL vmlinux 0x43897693 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x438affdf pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x439a52ae serio_unregister_port +EXPORT_SYMBOL vmlinux 0x439aa1e1 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b5dfee unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x43b6a995 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x43c0baf0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x43d0a588 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d63962 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x43f4955e __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403ba9d devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x440f2a16 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x44118c41 tcf_classify +EXPORT_SYMBOL vmlinux 0x441abd6b devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x441ec95d ps2_command +EXPORT_SYMBOL vmlinux 0x442bfa29 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x443dc57b mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0x44414ff2 iosf_mbi_unblock_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x4452ae3e max8998_update_reg +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x446a59b9 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x447cb22b bio_reset +EXPORT_SYMBOL vmlinux 0x44902cff acpi_enable_event +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449dbc4c folio_add_lru +EXPORT_SYMBOL vmlinux 0x44a637c5 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b78035 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x44b7c491 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x44bb6ba7 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x44c43b92 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x44da54f4 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eeee6b buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x44f9c300 __kfree_skb +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45098e8d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x45196048 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x451b8e7a vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454afd32 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x4552854d tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x4552f316 gro_cells_init +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45889c41 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0x4594c807 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x45b2b9da set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x45d1a6d4 md_register_thread +EXPORT_SYMBOL vmlinux 0x45d246da node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x45e8d7b5 native_write_cr0 +EXPORT_SYMBOL vmlinux 0x45f7be84 tty_write_room +EXPORT_SYMBOL vmlinux 0x45fc2cf6 __fput_sync +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4620865b vfs_get_link +EXPORT_SYMBOL vmlinux 0x46229e65 set_page_dirty +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x4629e4f3 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4636f849 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x463751e1 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x463cada2 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x46414c99 start_tty +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46552b47 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46781da7 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a01813 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x46a99aaa processors +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cb4014 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x46cf10eb cachemode2protval +EXPORT_SYMBOL vmlinux 0x46d83302 lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x46fb0817 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x47362331 sock_no_listen +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x4742dc33 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x474340ff mr_table_dump +EXPORT_SYMBOL vmlinux 0x4769be44 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x476dddce pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4784fd02 generic_cont_expand_simple +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 0x47cfd825 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x47d4b50d nd_dax_probe +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47f261e8 inet_frags_init +EXPORT_SYMBOL vmlinux 0x48061100 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x48241697 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0x4829cf6b fscrypt_enqueue_decrypt_work +EXPORT_SYMBOL vmlinux 0x482fb171 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48476bcb intel_gtt_insert_page +EXPORT_SYMBOL vmlinux 0x484d60dd netdev_offload_xstats_enabled +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 0x486429c5 dma_pool_create +EXPORT_SYMBOL vmlinux 0x4871d75d clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b8e5d9 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48bf90fe flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d1ea62 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48d88a2c __SCT__preempt_schedule +EXPORT_SYMBOL vmlinux 0x48da6af7 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x48dba0d7 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x48dcfc39 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x48f275be dst_alloc +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4933c62c dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x493417b6 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x49353443 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495e378d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x495f6327 dquot_initialize +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x497cc6c8 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x4987c1d8 phy_find_first +EXPORT_SYMBOL vmlinux 0x498a792b devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c297e4 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x49cf18b7 dev_set_alias +EXPORT_SYMBOL vmlinux 0x49e12a07 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x49e14e33 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x49e44310 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x4a071055 pci_clear_master +EXPORT_SYMBOL vmlinux 0x4a36e4a5 skb_expand_head +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a453f53 iowrite32 +EXPORT_SYMBOL vmlinux 0x4a46847d copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4a554fb0 param_ops_string +EXPORT_SYMBOL vmlinux 0x4a55870f follow_down_one +EXPORT_SYMBOL vmlinux 0x4a6f908f netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x4a83d679 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4a99c321 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4a9b96a2 inet_addr_type +EXPORT_SYMBOL vmlinux 0x4aa22bb0 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x4aa2886e ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x4aae93a4 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x4abb7d10 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x4ade889b kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x4ae3a5fd mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4afebb97 pci_enable_msi +EXPORT_SYMBOL vmlinux 0x4b0069f4 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0ea94f __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x4b379bdc ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x4b392490 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x4b3933e8 pci_scan_slot +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 0x4b7d0447 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4be80aa1 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bfb3f5d vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4bffa09a find_vma +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c14077f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4c236f6f __x86_indirect_thunk_r15 +EXPORT_SYMBOL vmlinux 0x4c383b43 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0x4c39724c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4c3f9a6e of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c42e86b fd_install +EXPORT_SYMBOL vmlinux 0x4c57d262 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4c5b9cd1 brioctl_set +EXPORT_SYMBOL vmlinux 0x4c7352b7 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0x4c9b13b7 kern_path +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4cacf496 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cd5bc5e rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x4cff68ed thaw_super +EXPORT_SYMBOL vmlinux 0x4d01c5a7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x4d1df4d0 inet6_release +EXPORT_SYMBOL vmlinux 0x4d2c1faf __dquot_transfer +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d5a8b13 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x4d60a676 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d98aff1 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9f510a blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x4da47772 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x4da86af5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x4db49432 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x4db641be __tracepoint_read_msr +EXPORT_SYMBOL vmlinux 0x4dc2f5a8 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de3b648 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4de5947d unregister_netdevice_notifier_dev_net +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 0x4df61f0b __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2d1d3a param_set_bool +EXPORT_SYMBOL vmlinux 0x4e332902 nla_append +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3e1746 _copy_from_iter +EXPORT_SYMBOL vmlinux 0x4e469eaa truncate_inode_pages +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 0x4e953fc0 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x4e967936 vc_resize +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eaa452f uart_get_divisor +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ef25847 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4f02a6ef __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x4f073ba7 dev_mc_init +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f25cef0 input_match_device_id +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f619a64 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x4f68814b param_ops_ushort +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f711f84 intel_scu_ipc_dev_iowrite8 +EXPORT_SYMBOL vmlinux 0x4f99297c __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4f9a6a63 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0x4fc566d1 set_create_files_as +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe7e16b agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x4feb07bb phy_sfp_probe +EXPORT_SYMBOL vmlinux 0x4ffaa960 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x50074b5d write_cache_pages +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500cd691 update_devfreq +EXPORT_SYMBOL vmlinux 0x5017a212 mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5022d91c phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x503c8911 __breadahead +EXPORT_SYMBOL vmlinux 0x50437788 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x504fccc1 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x508815a4 __netif_rx +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x5098c92f icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509fb863 inode_init_always +EXPORT_SYMBOL vmlinux 0x509fef2e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50abfe82 pci_release_region +EXPORT_SYMBOL vmlinux 0x50b73ce2 rfkill_find_type +EXPORT_SYMBOL vmlinux 0x50b80992 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x50bd76a8 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x50be748d security_ib_free_security +EXPORT_SYMBOL vmlinux 0x50c0f4b2 vfs_rename +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50f363ff mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x50f7ebf7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x510097e8 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51064da7 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x511aa4fe acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x512a468d file_remove_privs +EXPORT_SYMBOL vmlinux 0x512decf6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x5137dc35 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x5140fa87 skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5157eb12 component_match_add_typed +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x51892fea pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x519a754a ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51c2da26 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x51c8773b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f298e0 intel_scu_ipc_dev_ioread8 +EXPORT_SYMBOL vmlinux 0x520911da genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x520e1cca acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5212adb4 arp_xmit +EXPORT_SYMBOL vmlinux 0x522b030f devfreq_update_status +EXPORT_SYMBOL vmlinux 0x522d1b39 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x522fa17a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x526d4a5d fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5273f7a5 d_alloc +EXPORT_SYMBOL vmlinux 0x5280c92c scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x529373be devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529d17cf inet_put_port +EXPORT_SYMBOL vmlinux 0x52aa9356 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x52c11cd6 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52edb177 _dev_err +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530c3364 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x53385e9e bdi_put +EXPORT_SYMBOL vmlinux 0x533fb95f blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x5358fe1c generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5382e0c0 key_validate +EXPORT_SYMBOL vmlinux 0x5391f8cf netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x53aa73f7 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53cc0d3d bio_chain +EXPORT_SYMBOL vmlinux 0x53cc4f0a arp_create +EXPORT_SYMBOL vmlinux 0x53d3df25 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x53e7bd82 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0x53e87f33 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x53f03dce netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x53fad3e3 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x540130c2 udp_ioctl +EXPORT_SYMBOL vmlinux 0x54111962 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x54165722 mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x54175c5f acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5441256a agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x5462321a ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x546d2ffd __sk_receive_skb +EXPORT_SYMBOL vmlinux 0x546f7a86 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5477b40e icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x547d9ad2 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x547e3344 acpi_disable +EXPORT_SYMBOL vmlinux 0x549595b1 nonseekable_open +EXPORT_SYMBOL vmlinux 0x54994bcd page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x5499b0df d_obtain_root +EXPORT_SYMBOL vmlinux 0x54ac9aaf mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b22bb1 __SCT__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x54c9c760 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x54d881c5 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54fdf827 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x550bbaad pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x5514d179 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5527b41a netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x5531a063 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x55385e2e __x86_indirect_thunk_r14 +EXPORT_SYMBOL vmlinux 0x554acca5 d_make_root +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x554d00b0 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x5552b856 udp_sk_rx_dst_set +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 0x5575ede2 param_get_short +EXPORT_SYMBOL vmlinux 0x55826801 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x558af07e dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x55a4189a dns_query +EXPORT_SYMBOL vmlinux 0x55a6bccf dquot_get_state +EXPORT_SYMBOL vmlinux 0x55d3489f __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x55d34ea4 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55ea3a23 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x55eba904 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x55f95e07 ioremap_prot +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x56564c6a generic_file_mmap +EXPORT_SYMBOL vmlinux 0x565a558f rproc_put +EXPORT_SYMBOL vmlinux 0x5678645b try_to_release_page +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5688be94 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x56954ba8 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x56988029 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x56aa5a4a security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x56b0b944 invalidate_disk +EXPORT_SYMBOL vmlinux 0x56b9c04e remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cabcb1 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x56e2ce9c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x56f1816c blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x56f49f7f mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x56fbe07b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x56fdd188 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x57211f94 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x57263d09 is_bad_inode +EXPORT_SYMBOL vmlinux 0x572c4ed4 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x57474a81 ip_frag_init +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57586f2b mount_single +EXPORT_SYMBOL vmlinux 0x5764d73d fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x576b2379 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x5770ac13 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x577e9b51 vga_switcheroo_unlock_ddc +EXPORT_SYMBOL vmlinux 0x578f0ac3 scsi_host_put +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5790d43c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x5793f962 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c50f25 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x57d6b3f4 pv_ops +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x5816e451 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58223a13 __quota_error +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584a0b7c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x5858a5d4 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x58604276 iput +EXPORT_SYMBOL vmlinux 0x5868d7db mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0x586b4cc8 devm_register_netdev +EXPORT_SYMBOL vmlinux 0x587365ec vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x58786bf4 dquot_operations +EXPORT_SYMBOL vmlinux 0x5879a72f __SetPageMovable +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5887eeca vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x588da745 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x588e4cdf __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x5890dccc ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x58937e0e pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0x5899ccc9 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x589c86fd phy_print_status +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b206e7 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cba2a4 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5901cff1 filemap_check_errors +EXPORT_SYMBOL vmlinux 0x5912fe8a clk_get +EXPORT_SYMBOL vmlinux 0x591e62f8 param_set_copystring +EXPORT_SYMBOL vmlinux 0x592f265a __sk_dst_check +EXPORT_SYMBOL vmlinux 0x593edc4b cpu_tlbstate_shared +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594c3e88 bioset_init +EXPORT_SYMBOL vmlinux 0x5959170b kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596a7268 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x59741fcf may_umount_tree +EXPORT_SYMBOL vmlinux 0x59897eae skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x598e2ab1 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x598f2452 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x599c5fbb skb_dequeue +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b593cc eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x59d610bd inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x59d9ae0b input_release_device +EXPORT_SYMBOL vmlinux 0x59efe1c8 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x59f5687e mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1e499c scsi_add_device +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a375fc9 udp_poll +EXPORT_SYMBOL vmlinux 0x5a415c23 tcf_action_set_ctrlact +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 0x5a702be1 generic_fadvise +EXPORT_SYMBOL vmlinux 0x5a81b94d pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x5a81fbe9 clear_nlink +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5ac3999c alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5af36d3c dev_trans_start +EXPORT_SYMBOL vmlinux 0x5af4d31b pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x5b062d17 console_stop +EXPORT_SYMBOL vmlinux 0x5b09f532 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x5b0ae30d noop_fsync +EXPORT_SYMBOL vmlinux 0x5b1eeb8d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x5b20934a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3981e9 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x5b3b721d set_disk_ro +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b433a2f give_up_console +EXPORT_SYMBOL vmlinux 0x5b43ce0d tty_port_put +EXPORT_SYMBOL vmlinux 0x5b4c59c8 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x5b4f5b4c tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b6046ca inet_release +EXPORT_SYMBOL vmlinux 0x5b641283 arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b740379 keyring_alloc +EXPORT_SYMBOL vmlinux 0x5b76c7c7 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5b7aa2e0 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x5b8239ca __x86_return_thunk +EXPORT_SYMBOL vmlinux 0x5b928bf2 ip6_output +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c04e678 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x5c131000 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5c131ca1 user_revoke +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c2c62ed devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5c2e2f04 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5c381bb9 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4e3904 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x5c6cfe3f ip6_frag_init +EXPORT_SYMBOL vmlinux 0x5c751bb2 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x5c7fc90e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x5c944a03 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x5c94d3ef param_set_ushort +EXPORT_SYMBOL vmlinux 0x5caccdc8 mount_bdev +EXPORT_SYMBOL vmlinux 0x5cb6aaea tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x5ccc3483 bio_init +EXPORT_SYMBOL vmlinux 0x5ccdc783 rproc_detach +EXPORT_SYMBOL vmlinux 0x5cce7f7c do_SAK +EXPORT_SYMBOL vmlinux 0x5cd02aa3 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0x5cd46000 __destroy_inode +EXPORT_SYMBOL vmlinux 0x5cda74e8 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5ce07316 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x5ce5e4a4 blk_queue_split +EXPORT_SYMBOL vmlinux 0x5ce737c7 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x5ceb9068 serio_rescan +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0343f8 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x5d407b60 simple_empty +EXPORT_SYMBOL vmlinux 0x5d47f15c request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x5d496b87 flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d4e1528 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5d546542 input_flush_device +EXPORT_SYMBOL vmlinux 0x5d560c3c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x5d6de8a3 eth_header_cache +EXPORT_SYMBOL vmlinux 0x5d7729e0 ll_rw_block +EXPORT_SYMBOL vmlinux 0x5d810fb1 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x5da484aa _dev_warn +EXPORT_SYMBOL vmlinux 0x5dcd28e2 from_kuid +EXPORT_SYMBOL vmlinux 0x5dd62729 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x5ddce765 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x5de78793 kobject_put +EXPORT_SYMBOL vmlinux 0x5df334ff vga_get +EXPORT_SYMBOL vmlinux 0x5dfb2c96 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e2d8606 km_policy_notify +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e4abd4f pci_request_irq +EXPORT_SYMBOL vmlinux 0x5e510d74 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x5e59dfa5 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x5e5ee3d2 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecef139 devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed14424 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef44fdf ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efde8e6 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f14af53 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x5f1598e5 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f3eb251 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f56663b rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x5f672a20 I_BDEV +EXPORT_SYMBOL vmlinux 0x5f68c381 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f703153 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x5f76b7a1 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5f97907a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5f99383a ioread64_hi_lo +EXPORT_SYMBOL vmlinux 0x5fa260e5 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x5fa38e81 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x5faeeba9 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x5fb30dd2 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x5fbb7e21 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x5fc5ffc1 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x5fc67252 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fcbc697 task_work_add +EXPORT_SYMBOL vmlinux 0x5fe13529 __SCT__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x5ff39daa registered_fb +EXPORT_SYMBOL vmlinux 0x5ff5eaeb fb_set_cmap +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60525d90 bdi_alloc +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x60701815 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608afa37 cdrom_release +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x6097a73a kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6098b55d xfrm6_protocol_register +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 0x60ceed9b submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e6353d vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x60ea713d fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x6102a50f key_task_permission +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x610aa870 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x613ff4e5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x6140334a mark_page_accessed +EXPORT_SYMBOL vmlinux 0x6141caa8 napi_get_frags +EXPORT_SYMBOL vmlinux 0x6155eb2b bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x61573238 sock_gettstamp +EXPORT_SYMBOL vmlinux 0x615745af file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x615fe393 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x61786c8d napi_schedule_prep +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617e0b4b set_page_writeback +EXPORT_SYMBOL vmlinux 0x6185b747 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618c6187 inet_add_offload +EXPORT_SYMBOL vmlinux 0x61986b8e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x619c7c91 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x619d9347 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x619dfcdc intel_scu_ipc_dev_readv +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61d0b32b security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e9f1a3 netpoll_setup +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61fbb51d dev_load +EXPORT_SYMBOL vmlinux 0x61fee2a8 tcf_register_action +EXPORT_SYMBOL vmlinux 0x6204f3ff blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x6210b03d skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624e8ef4 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628d4033 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62b74f7b __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x62c1b4fa devm_ioremap +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fdc2fd flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x62feb077 rproc_free +EXPORT_SYMBOL vmlinux 0x62fff2db __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631c76f2 setattr_copy +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x6326250b fifo_set_limit +EXPORT_SYMBOL vmlinux 0x6340fe9b folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x6347171e iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x63599868 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x636257f7 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x6383b27c __x86_indirect_thunk_rdx +EXPORT_SYMBOL vmlinux 0x6396bbe0 dquot_file_open +EXPORT_SYMBOL vmlinux 0x6397a015 neigh_table_init +EXPORT_SYMBOL vmlinux 0x63a3a329 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c332db scsi_host_busy +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63e603db nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f835ba on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x6409aeae phy_init_eee +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6418f83c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x6422349e pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x6425ba95 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x642b919a __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x64336e15 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x64427205 tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x64476496 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x645df150 udp_set_csum +EXPORT_SYMBOL vmlinux 0x645ef168 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x647dcb9d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x649105fe __inet_hash +EXPORT_SYMBOL vmlinux 0x6496db51 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b38af2 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64be98e2 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x64e40634 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x64f3879d vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x65012400 tty_port_init +EXPORT_SYMBOL vmlinux 0x65065ed6 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x65091a73 sync_file_create +EXPORT_SYMBOL vmlinux 0x650b3faa xfrm_unregister_type_offload +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 0x65230285 tc_cleanup_offload_action +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 0x65602537 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65ae66cc mdio_device_remove +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65cc266d phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dba70c devm_rproc_add +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 0x65e7d6f7 tty_port_close +EXPORT_SYMBOL vmlinux 0x65fa2615 security_path_unlink +EXPORT_SYMBOL vmlinux 0x66009a37 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x663182c9 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x66348340 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x663cfcc4 mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x665767e0 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66611e29 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x667019b6 param_get_ullong +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x6676bee7 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x6683c5f6 get_task_cred +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x66950bfd configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x6699f743 d_exact_alias +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b45c56 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b828a4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x66c7b624 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x66cca4f9 __x86_indirect_thunk_rcx +EXPORT_SYMBOL vmlinux 0x670ecece __x86_indirect_thunk_rbx +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x6722ef46 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6726ee33 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672c655a __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67449c75 mod_node_page_state +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x675e6548 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x677434f7 vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0x67838471 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x678a0787 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x67923b47 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x67a19288 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x67a31234 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x67a91473 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b41006 nd_btt_version +EXPORT_SYMBOL vmlinux 0x67b65eb0 d_find_alias +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67cb3107 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x67d9ba8e md_update_sb +EXPORT_SYMBOL vmlinux 0x67de342f pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x67e408b0 __icmp_send +EXPORT_SYMBOL vmlinux 0x68129623 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x68136d9e bio_kmalloc +EXPORT_SYMBOL vmlinux 0x682262ed devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x682ab18b devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x682ca16e sget_fc +EXPORT_SYMBOL vmlinux 0x68345383 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x683b4f8e amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x684da63e vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x6851664e wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x6865baa9 dev_addr_del +EXPORT_SYMBOL vmlinux 0x6866e5d7 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x686d212e pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x6872e386 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x68795ab6 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688e72e1 __SCT__preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x6897b40f page_readlink +EXPORT_SYMBOL vmlinux 0x68a3eccb get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0x68a9fb79 path_put +EXPORT_SYMBOL vmlinux 0x68ac0d80 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x68ac3c99 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x68c4b824 cpumask_any_but +EXPORT_SYMBOL vmlinux 0x68d0e690 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x68d6c36a dma_find_channel +EXPORT_SYMBOL vmlinux 0x68d7328a vme_dma_request +EXPORT_SYMBOL vmlinux 0x68e0509d key_link +EXPORT_SYMBOL vmlinux 0x68f46a73 ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690762d2 mr_table_alloc +EXPORT_SYMBOL vmlinux 0x69093fb1 __tracepoint_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x6909b103 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6917880c blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6925acc9 vm_insert_pages +EXPORT_SYMBOL vmlinux 0x6946e656 km_policy_expired +EXPORT_SYMBOL vmlinux 0x694c53fb pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x696b9b1c cdev_device_add +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69819516 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699a075d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x699d5268 softnet_data +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69b337d7 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x69bb61dd input_register_handle +EXPORT_SYMBOL vmlinux 0x69bd0839 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x69d5243a tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69db4377 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x69fb8966 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a10e103 dma_resv_init +EXPORT_SYMBOL vmlinux 0x6a158c30 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x6a179359 md_write_start +EXPORT_SYMBOL vmlinux 0x6a261b78 irq_stat +EXPORT_SYMBOL vmlinux 0x6a2fb383 get_thermal_instance +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 0x6a7ab5dd bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x6a7f82a1 fc_mount +EXPORT_SYMBOL vmlinux 0x6a9a93b9 iunique +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6aa54ca4 input_set_capability +EXPORT_SYMBOL vmlinux 0x6ab913d7 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeb371c pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afb5cac dump_skip +EXPORT_SYMBOL vmlinux 0x6b024eeb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6b10bee1 _copy_to_user +EXPORT_SYMBOL vmlinux 0x6b16a332 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6b1bdd8d vfs_fsync +EXPORT_SYMBOL vmlinux 0x6b20c625 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x6b22d5bd __scsi_add_device +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b30d199 skb_copy +EXPORT_SYMBOL vmlinux 0x6b3bb98d security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b695cf1 zen_untrain_ret +EXPORT_SYMBOL vmlinux 0x6b711b79 pci_choose_state +EXPORT_SYMBOL vmlinux 0x6b796ed0 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x6b7adae8 blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6ba66952 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x6ba678e9 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6bd19383 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x6bd950f8 vme_init_bridge +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6c12d7ab __dquot_alloc_space +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 0x6c43a523 __alloc_skb +EXPORT_SYMBOL vmlinux 0x6c45cefb devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x6c473e84 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6c5a69f2 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c82f97d d_obtain_alias +EXPORT_SYMBOL vmlinux 0x6c90163f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x6ca0ecc5 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x6cb0b217 dquot_disable +EXPORT_SYMBOL vmlinux 0x6cb2f5a1 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb4d0f4 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x6cc09945 ioread32_rep +EXPORT_SYMBOL vmlinux 0x6cd45eae fb_class +EXPORT_SYMBOL vmlinux 0x6ce77785 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x6cf5de42 input_get_timestamp +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +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 0x6d47c27c vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x6d58f69e agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d637a66 can_nice +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d90907f __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x6da74202 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x6daf522d dma_map_resource +EXPORT_SYMBOL vmlinux 0x6db1d842 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dc10fea netif_tx_unlock +EXPORT_SYMBOL vmlinux 0x6dc35b25 radix_tree_iter_delete +EXPORT_SYMBOL vmlinux 0x6dcb79f1 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6dcf857f uuid_null +EXPORT_SYMBOL vmlinux 0x6dd17e7b acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x6ddf80b9 d_splice_alias +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0e4cd5 dst_init +EXPORT_SYMBOL vmlinux 0x6e1252e8 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x6e1ca1fc param_ops_bint +EXPORT_SYMBOL vmlinux 0x6e1ea8b9 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x6e3d0d96 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x6e428287 is_acpi_device_node +EXPORT_SYMBOL vmlinux 0x6e50c2da import_iovec +EXPORT_SYMBOL vmlinux 0x6e58f666 uart_match_port +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e73eb77 con_is_bound +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e9083 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x6ea7575d acpi_dispatch_gpe +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb95c75 pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x6efd4059 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6f04dd2f xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0x6f19b3e1 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0x6f3c6964 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f428683 ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f6fcbe6 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x6f776cd3 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x6f7a1c39 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fa3de3a tcf_idr_create +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc062a2 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fe4e0ed tty_name +EXPORT_SYMBOL vmlinux 0x6fe85798 fsync_bdev +EXPORT_SYMBOL vmlinux 0x6ff1d91a iget_locked +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702c7cf5 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x7040fff9 rtc_lock +EXPORT_SYMBOL vmlinux 0x70445ad0 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705c42f7 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x70633bc6 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x709c2b1a pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70d0cb36 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x70d5179a tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x70ee5041 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x711bbb78 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7130a5fc tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x713a6a1f watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x714c9c6d phy_aneg_done +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x716a4a24 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717b4bef d_instantiate_new +EXPORT_SYMBOL vmlinux 0x718a4693 __SCT__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x718cf2dc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x7195db50 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x719f262a pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71aa2a62 d_instantiate +EXPORT_SYMBOL vmlinux 0x71b4c503 phy_device_register +EXPORT_SYMBOL vmlinux 0x71bb5ac0 _dev_printk +EXPORT_SYMBOL vmlinux 0x71db1320 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e6ae42 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x72013652 simple_link +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x7232b822 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x7249e76a folio_write_one +EXPORT_SYMBOL vmlinux 0x7263502b __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x7275d65b is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bca06a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x72c17ba0 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x72c4dd5c set_user_nice +EXPORT_SYMBOL vmlinux 0x72c92999 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x72d79d83 pgdir_shift +EXPORT_SYMBOL vmlinux 0x72e73ea2 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x72f80b5d fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731c4a9c dma_fence_signal +EXPORT_SYMBOL vmlinux 0x73228cc1 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x7327f7cf netlink_unicast +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x7344f7aa scmd_printk +EXPORT_SYMBOL vmlinux 0x7350461e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735ba64f sock_create_kern +EXPORT_SYMBOL vmlinux 0x735c63dc zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x737f1d7a __register_chrdev +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73a24cce nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73be8fdf bio_add_page +EXPORT_SYMBOL vmlinux 0x73c81f74 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x73d18247 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73ef064b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x73f8b7e4 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x742f1513 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x744d3708 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7458f230 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x746633c7 tso_count_descs +EXPORT_SYMBOL vmlinux 0x74671fb9 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x74ab6d69 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74bf4e45 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c2b81c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x74ca4d97 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x74d4e6b4 sk_stream_error +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x75036d6c jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x751737c3 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x7530bb0c __SCT__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753b8bb4 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7561f675 sock_edemux +EXPORT_SYMBOL vmlinux 0x7563c293 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x757d8640 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75943e25 i8253_lock +EXPORT_SYMBOL vmlinux 0x75a70347 page_get_link +EXPORT_SYMBOL vmlinux 0x75ac8b39 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x75b4b869 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bfc715 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x75c58898 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75d61134 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x75de9702 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x75ee81e7 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x75effd22 inet_accept +EXPORT_SYMBOL vmlinux 0x75f50d86 page_symlink +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763297a5 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7647f6e0 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x764e6632 generic_file_open +EXPORT_SYMBOL vmlinux 0x764eaef0 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x767c3c4d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x767dce4b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x768e0cee in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76a2d6ed netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x76a89523 param_ops_int +EXPORT_SYMBOL vmlinux 0x76a9e444 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x76b56be6 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e0fe33 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x76ebcb51 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x76ebd6a5 __fs_parse +EXPORT_SYMBOL vmlinux 0x76ee5c7d input_event +EXPORT_SYMBOL vmlinux 0x76f1df91 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x76f4b4ab vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x771deb65 xp_dma_map +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x773ac809 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7742b31d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7748d9ed __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x774fd34a genlmsg_put +EXPORT_SYMBOL vmlinux 0x7765b3fd skb_copy_expand +EXPORT_SYMBOL vmlinux 0x77792d83 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x777b2db1 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x77a23472 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e98fd4 d_add +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77f7d857 fb_pan_display +EXPORT_SYMBOL vmlinux 0x77fb5ba1 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7804de5a set_trace_device +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x78448026 i2c_transfer +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7864dd5b flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0x786a186f xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x786bec45 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788d3076 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x789a7d1b tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78f9af1e dquot_quota_on +EXPORT_SYMBOL vmlinux 0x7924e772 vme_bus_type +EXPORT_SYMBOL vmlinux 0x794297bf bprm_change_interp +EXPORT_SYMBOL vmlinux 0x795bf47a bdi_register +EXPORT_SYMBOL vmlinux 0x795bfffc seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x796ab2d8 fasync_helper +EXPORT_SYMBOL vmlinux 0x796e0e35 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798b0e65 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x79986b01 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79a90159 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x79ac0aaa flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x79af4d40 get_acl +EXPORT_SYMBOL vmlinux 0x79b0fd28 tcp_close +EXPORT_SYMBOL vmlinux 0x79db9e9c kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x79df9633 ioremap_encrypted +EXPORT_SYMBOL vmlinux 0x79e9a9e5 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x79e9afe2 xp_alloc +EXPORT_SYMBOL vmlinux 0x79ee5170 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x79ef3c74 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x79f0e400 km_query +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a1528d4 truncate_setsize +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a1f5105 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a37795a scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7a446dbe genphy_resume +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a593769 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x7a67f3fd dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7a6dc889 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7a86131e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7a88da87 iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9b1e30 serio_close +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa6d329 __bforget +EXPORT_SYMBOL vmlinux 0x7aad636a inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac455ac mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x7ac7d98a vga_client_register +EXPORT_SYMBOL vmlinux 0x7ac8560d udp_disconnect +EXPORT_SYMBOL vmlinux 0x7aca3d4a fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad0e94b pci_disable_device +EXPORT_SYMBOL vmlinux 0x7ad7c927 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x7ada1ccc pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7adc9660 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7aef0a61 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x7af127ad fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7af6e1e2 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7aff77a3 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x7b096ac7 skb_pull_data +EXPORT_SYMBOL vmlinux 0x7b15b68c pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x7b25ba80 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b3dea93 md_error +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b588130 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b656392 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x7b67a6b3 fget_raw +EXPORT_SYMBOL vmlinux 0x7b757d8e i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x7b7873f4 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b8d4076 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x7b8dd9c3 __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x7b94ed23 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x7b9cf71e blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7ba093bc eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7bb35e65 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bf04b22 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0x7bfeb946 get_vm_area +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1b41c6 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x7c1d8428 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x7c284b6f try_module_get +EXPORT_SYMBOL vmlinux 0x7c37aacc bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x7c37b837 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7c3b6c59 kobject_get +EXPORT_SYMBOL vmlinux 0x7c3f50f5 pci_pme_active +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6df3d5 param_ops_byte +EXPORT_SYMBOL vmlinux 0x7c93e079 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7ca00c41 pin_user_pages +EXPORT_SYMBOL vmlinux 0x7cd8d75e page_offset_base +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cecfe1d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7cf1e3b5 xfrm_policy_hash_rebuild +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 0x7d1114ee unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d1ae471 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x7d4822ff iterate_dir +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d628444 memcpy_fromio +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8d5a0d neigh_direct_output +EXPORT_SYMBOL vmlinux 0x7d923f69 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dda6317 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7ddd502e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7de9cb2a blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df69813 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x7e060f0d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7e080f6a __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e532096 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7e545f84 km_state_notify +EXPORT_SYMBOL vmlinux 0x7e71100c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7e750d86 inode_io_list_del +EXPORT_SYMBOL vmlinux 0x7e78a234 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7e7bcf26 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x7e8f4c9f drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x7e939666 __find_get_block +EXPORT_SYMBOL vmlinux 0x7e961f6f devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x7ea149a2 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x7ef72996 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f06b677 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7f07418b __SCT__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f28918e inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7f40e731 put_ipc_ns +EXPORT_SYMBOL vmlinux 0x7f48b603 config_item_set_name +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5538ea mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x7f567d87 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f624755 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7f7242f0 __neigh_create +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f88aa9d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fa302c3 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0x7fa6266f ip_output +EXPORT_SYMBOL vmlinux 0x7fc338a1 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff1de69 block_write_full_page +EXPORT_SYMBOL vmlinux 0x800312d1 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0x8024aee8 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x80272e6e vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x80372827 submit_bio +EXPORT_SYMBOL vmlinux 0x8039240f init_pseudo +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x804af87c wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x80553000 poll_initwait +EXPORT_SYMBOL vmlinux 0x80750e1f uart_suspend_port +EXPORT_SYMBOL vmlinux 0x80838c42 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x808422cb inet_sk_rebuild_header +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 0x81034e5d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x81100216 proc_symlink +EXPORT_SYMBOL vmlinux 0x81127d2a tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x81155d66 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x812128e4 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x81227239 dquot_set_dqblk +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 0x81668912 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x81951c5a __do_once_done +EXPORT_SYMBOL vmlinux 0x819919e8 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b36245 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x81c0e4db vme_slave_request +EXPORT_SYMBOL vmlinux 0x81ce9941 intel_scu_ipc_dev_writev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e10997 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x81e19783 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82057581 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x82067c36 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8208f9e5 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x820c209d __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x820f840b netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x82104c00 ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0x82281270 __break_lease +EXPORT_SYMBOL vmlinux 0x822e87c3 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x8238d2dc udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x82398302 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x823c19ea iosf_mbi_unregister_pmic_bus_access_notifier_unlocked +EXPORT_SYMBOL vmlinux 0x8243ce07 vfio_unregister_notifier +EXPORT_SYMBOL vmlinux 0x824456ec jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8269fdb0 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x829b0f4b pci_save_state +EXPORT_SYMBOL vmlinux 0x829efe54 dump_page +EXPORT_SYMBOL vmlinux 0x82be8fb2 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82dc882a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x82ea9ce4 to_nd_dax +EXPORT_SYMBOL vmlinux 0x82f3a54b devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x82f3b9ce __nd_driver_register +EXPORT_SYMBOL vmlinux 0x82f7acbe __ps2_command +EXPORT_SYMBOL vmlinux 0x830bb6fa phy_device_create +EXPORT_SYMBOL vmlinux 0x8312a046 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x832468e6 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x832ae9c6 set_capacity +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x83a5c5cc register_filesystem +EXPORT_SYMBOL vmlinux 0x83c4f887 to_ndd +EXPORT_SYMBOL vmlinux 0x83c9647d rtc_add_group +EXPORT_SYMBOL vmlinux 0x83d2094c rtnl_notify +EXPORT_SYMBOL vmlinux 0x83d70dbc phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x83e478d1 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x83fe6548 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x83fea62a iptun_encaps +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x8420e9b5 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842c8e9d ioread16 +EXPORT_SYMBOL vmlinux 0x843aaa40 init_special_inode +EXPORT_SYMBOL vmlinux 0x84510c69 unpin_user_pages +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8469ed13 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0x8475c6a5 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x8477a182 genphy_suspend +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x84863aaf dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x848d372e iowrite8 +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a2f297 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x84bf4f1a d_delete +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1ad08 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84c797b6 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0x84f3d93f locks_free_lock +EXPORT_SYMBOL vmlinux 0x85168720 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8520c8b6 sg_miter_start +EXPORT_SYMBOL vmlinux 0x8522d6bc strncpy_from_user +EXPORT_SYMBOL vmlinux 0x852c4651 param_set_hexint +EXPORT_SYMBOL vmlinux 0x853cb90b tso_build_hdr +EXPORT_SYMBOL vmlinux 0x8543e039 ipv4_specific +EXPORT_SYMBOL vmlinux 0x85479492 ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x85484a55 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x8553e045 rio_query_mport +EXPORT_SYMBOL vmlinux 0x8556d772 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85820872 lock_rename +EXPORT_SYMBOL vmlinux 0x8588516e done_path_create +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85958d85 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0x859b80c4 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x85a86211 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x85b0fde4 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x85b5cd82 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bb3dcb skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d98db8 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e71a4d consume_skb +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f748dc uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x8634e082 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x863c7b4e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x86436eb0 page_mapping +EXPORT_SYMBOL vmlinux 0x86592f53 eth_header_parse +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x86794d77 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86c0108e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x86c7272b iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x86d4c36c skb_seq_read +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e21a94 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x86e9f09c dm_io +EXPORT_SYMBOL vmlinux 0x86f27420 iosf_mbi_block_punit_i2c_access +EXPORT_SYMBOL vmlinux 0x86fb4536 cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87088bcb get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x87566db3 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x875825f2 set_pages_uc +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87706d4e __put_user_nocheck_8 +EXPORT_SYMBOL vmlinux 0x8775ec2b mdiobus_read +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a51a93 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x87b5ce6a pci_dev_put +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c5838e end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x87e0e25b dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x87f75d8a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x881b7451 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x885bdab3 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x8860eb59 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0x887de5c1 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x8889665a inode_nohighmem +EXPORT_SYMBOL vmlinux 0x88899981 fb_find_mode +EXPORT_SYMBOL vmlinux 0x888deb71 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x8899ce07 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88b5c364 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x88b7414c __pagevec_release +EXPORT_SYMBOL vmlinux 0x88da2735 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ef1655 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0x89062177 tcf_idr_search +EXPORT_SYMBOL vmlinux 0x89085248 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x892d332d tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x89534aff vme_irq_handler +EXPORT_SYMBOL vmlinux 0x895f78c4 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x89658bff serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x8967592a filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x897b02c2 dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89aaf3d6 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x89c21e4e __skb_ext_del +EXPORT_SYMBOL vmlinux 0x89c349fa pci_scan_bus +EXPORT_SYMBOL vmlinux 0x89c54cfa tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x89da48a8 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8a091e8f kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x8a1373b5 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x8a13ad6a vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x8a27a8a2 __scsi_device_lookup_by_target +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 0x8a4b428c lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x8a5e7666 rw_verify_area +EXPORT_SYMBOL vmlinux 0x8a69a48e clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0x8a6c7139 acpi_mask_gpe +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a76f1a3 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7e5ecc request_key_rcu +EXPORT_SYMBOL vmlinux 0x8a7f1539 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x8a88638d simple_rename +EXPORT_SYMBOL vmlinux 0x8a88fa59 genl_notify +EXPORT_SYMBOL vmlinux 0x8a8ff435 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x8a9661e0 elv_rb_add +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8abd86ac xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x8ac1ce6c no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8accfe48 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x8ad2ced8 security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x8ad3e044 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x8ad73723 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x8aec5e9b tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x8aee633b xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x8af249be generic_write_end +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b0abc85 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x8b0fc52d scsi_ioctl +EXPORT_SYMBOL vmlinux 0x8b2a2c6d ipv4_mtu +EXPORT_SYMBOL vmlinux 0x8b2ffc07 fb_blank +EXPORT_SYMBOL vmlinux 0x8b3f22c6 vga_put +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b89811f sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x8b90fc46 xfrm_sad_getinfo +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 0x8b9c357f tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x8ba52e94 ps2_drain +EXPORT_SYMBOL vmlinux 0x8baa64f0 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8baae270 vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x8bbd5d88 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x8bd13a34 may_setattr +EXPORT_SYMBOL vmlinux 0x8bd577d0 acpi_ut_exit +EXPORT_SYMBOL vmlinux 0x8bda8be5 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x8bdb22cc tty_unlock +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be4e403 mntput +EXPORT_SYMBOL vmlinux 0x8c1473e3 pci_request_regions +EXPORT_SYMBOL vmlinux 0x8c17da56 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c2722c0 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c3fb107 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x8c419042 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x8c45f9f0 input_grab_device +EXPORT_SYMBOL vmlinux 0x8c5fbd30 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x8c64ff4d pps_register_source +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c7b5758 bioset_exit +EXPORT_SYMBOL vmlinux 0x8c81c081 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c9bae8f finish_open +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca67d40 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc2cdc0 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccb7c0d convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cda9b7e tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x8d02c0b2 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x8d1f17cc pid_task +EXPORT_SYMBOL vmlinux 0x8d25b3b0 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8d4953fd filemap_map_pages +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d60652c __SCT__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x8d622c57 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8d6aff89 __put_user_nocheck_4 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d876812 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x8d8e7894 nf_log_unset +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8db22efe acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x8db3bbc3 register_console +EXPORT_SYMBOL vmlinux 0x8dc8e0fb cfb_imageblit +EXPORT_SYMBOL vmlinux 0x8dcdef24 dev_addr_add +EXPORT_SYMBOL vmlinux 0x8dd11739 get_agp_version +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8ddfe254 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x8ded2e21 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df4c85b vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e17e3f1 phy_driver_register +EXPORT_SYMBOL vmlinux 0x8e1d542b new_inode +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e34611c sock_no_connect +EXPORT_SYMBOL vmlinux 0x8e39e4ed ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e589345 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x8e59fe1c capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x8e5abe7f iov_iter_revert +EXPORT_SYMBOL vmlinux 0x8e663d0f zalloc_cpumask_var_node +EXPORT_SYMBOL vmlinux 0x8e7c0d63 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x8e8f7efd mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8e9d72bc tcp_time_wait +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebcc43f fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x8ec88271 kthread_stop +EXPORT_SYMBOL vmlinux 0x8ecf6ca7 scsi_done +EXPORT_SYMBOL vmlinux 0x8ed42941 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8ed88722 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x8ee8f77d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f07d503 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x8f169a62 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f272ba7 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8f28ed02 file_open_root +EXPORT_SYMBOL vmlinux 0x8f4de96c touch_buffer +EXPORT_SYMBOL vmlinux 0x8f511b03 devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x8f5acc56 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x8f80bf11 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8f9b6935 blkdev_put +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fc41e7a security_path_rename +EXPORT_SYMBOL vmlinux 0x8fca9e4e dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0x8fcb0342 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8ff20041 bio_endio +EXPORT_SYMBOL vmlinux 0x8ff6a676 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x900253e8 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x90073057 udp_seq_start +EXPORT_SYMBOL vmlinux 0x902686af __udp_disconnect +EXPORT_SYMBOL vmlinux 0x9029570e unpin_user_page +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x902efca5 security_sk_clone +EXPORT_SYMBOL vmlinux 0x90332c4b icmp6_send +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x90352732 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x904bfafd migrate_page_copy +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x907e6eb7 generic_setlease +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x9081f944 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x909cbffb mmc_start_request +EXPORT_SYMBOL vmlinux 0x90a65015 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x90b56a86 kthread_create_worker +EXPORT_SYMBOL vmlinux 0x90b7302c unregister_md_personality +EXPORT_SYMBOL vmlinux 0x90ba912b __nla_put_64bit +EXPORT_SYMBOL vmlinux 0x90bef67f mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e9fe8b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x90ec7f41 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x91025240 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0x9107d644 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x9116f182 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x911bff0e netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0x911db68a ip_defrag +EXPORT_SYMBOL vmlinux 0x91542952 write_inode_now +EXPORT_SYMBOL vmlinux 0x91579799 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x916669b8 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x9176145b acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x917cd47a pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0x9193f9b7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +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 0x91b0c370 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x91d0e801 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x91d94656 tty_devnum +EXPORT_SYMBOL vmlinux 0x91df4d22 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x91e28fa6 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x91eeed0b acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x92110fcd cdrom_open +EXPORT_SYMBOL vmlinux 0x92263286 simple_getattr +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x9233a3ae n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9248e6d4 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x924cc114 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92685843 end_page_writeback +EXPORT_SYMBOL vmlinux 0x92687b25 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927e1aea __mdiobus_read +EXPORT_SYMBOL vmlinux 0x927fc75f tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x9286173b __dquot_free_space +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x928c7d90 ip_frag_next +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9291d11b security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x92977897 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929f83f7 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x92a0348e tcf_block_put +EXPORT_SYMBOL vmlinux 0x92a38942 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x92a51e56 acpi_debug_print_raw +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92b9b3bc devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ea29a6 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92ec57df default_llseek +EXPORT_SYMBOL vmlinux 0x92f9c420 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931f5ca0 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x9347e7f5 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x93613c61 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0x9364e313 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x936a22bc acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x93712a98 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x9375089d __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9379c5ff __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x937b542e get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x9390c619 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x9390e5c0 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x939dc74c inet6_getname +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c4a0b3 dev_uc_init +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93ea09b2 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x9401d705 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x940a1e4c seq_pad +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x94582e2b dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x9467f2c4 filp_close +EXPORT_SYMBOL vmlinux 0x946a37cf xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x946dcb2a security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x9493fc86 node_states +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b2d816 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94c20803 __scm_destroy +EXPORT_SYMBOL vmlinux 0x94c2b7f3 mdio_device_create +EXPORT_SYMBOL vmlinux 0x94c7cd62 stream_open +EXPORT_SYMBOL vmlinux 0x94d6e563 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x94ec9c0b simple_pin_fs +EXPORT_SYMBOL vmlinux 0x94fbd25c posix_lock_file +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95239a97 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x9525e3c1 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9531b685 rproc_boot +EXPORT_SYMBOL vmlinux 0x9539ee95 param_get_hexint +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x95a24eb2 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x95a25938 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x95a4f50a t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95a801d3 param_ops_long +EXPORT_SYMBOL vmlinux 0x95d568dc irq_set_chip +EXPORT_SYMBOL vmlinux 0x95de1cbf genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x95e41b9e tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x95ef41c6 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x95f4d28c mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x95fc8bdb dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x96050dc8 __next_node_in +EXPORT_SYMBOL vmlinux 0x960b4bba tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x961f3507 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x9623d6fd i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x9625695d acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x962c4977 clkdev_add +EXPORT_SYMBOL vmlinux 0x964183ac sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0x9643f220 dev_open +EXPORT_SYMBOL vmlinux 0x96657608 request_key_tag +EXPORT_SYMBOL vmlinux 0x966dd99b dev_get_flags +EXPORT_SYMBOL vmlinux 0x9670af24 serio_open +EXPORT_SYMBOL vmlinux 0x96719d0d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x967649f3 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9691384e fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x96976aa8 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x96997de4 input_unregister_device +EXPORT_SYMBOL vmlinux 0x96a1090f crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d48043 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0x96d4d324 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x96e165fd device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96eab78b iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x96f1b982 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x9704df00 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x9708b734 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x97206b5a get_tree_keyed +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974201d7 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x974c8e3e cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x9754a966 input_copy_abs +EXPORT_SYMBOL vmlinux 0x97567953 tty_register_device +EXPORT_SYMBOL vmlinux 0x975ca0a2 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x97651e6c vmemmap_base +EXPORT_SYMBOL vmlinux 0x97718c7a request_firmware +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x979f9491 vfio_dma_rw +EXPORT_SYMBOL vmlinux 0x97a514b9 kernel_sock_shutdown +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 0x97c20cf8 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x97c3a767 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x97cb466e amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97e5b11d md_integrity_register +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983c5ad8 mmput_async +EXPORT_SYMBOL vmlinux 0x9851f9f1 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x985c367d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x985dcd69 vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x9865b1ef mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x986c8c36 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x9877f145 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x9881556e tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c3a293 sock_create_lite +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98ccc1ca simple_unlink +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98e5d2be fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x991b58ef pcim_pin_device +EXPORT_SYMBOL vmlinux 0x992a3331 wake_up_process +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99479aff tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x996b0c0f dump_emit +EXPORT_SYMBOL vmlinux 0x997427ee page_mapped +EXPORT_SYMBOL vmlinux 0x99750262 generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x997e8b77 ether_setup +EXPORT_SYMBOL vmlinux 0x9987f4f6 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x999623ed get_tree_bdev +EXPORT_SYMBOL vmlinux 0x9996477b __nla_put +EXPORT_SYMBOL vmlinux 0x999c666a remap_pfn_range +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a384dc xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x99b4e4f3 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x99d3926c generic_delete_inode +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d7020e rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x99d8fef4 agp_copy_info +EXPORT_SYMBOL vmlinux 0x99da1fde xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dbfe96 input_close_device +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 0x9a06a7f4 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a15ec89 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a2b393b configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x9a33911b netdev_crit +EXPORT_SYMBOL vmlinux 0x9a4388c5 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x9a526f09 inet_offloads +EXPORT_SYMBOL vmlinux 0x9a55e96e devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a6365ae pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9a66e2f5 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0x9a708eeb md_done_sync +EXPORT_SYMBOL vmlinux 0x9a87648f prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x9a9ed67e jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x9aae67dc pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab20c13 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x9ab36323 nf_reinject +EXPORT_SYMBOL vmlinux 0x9acd3f6f get_cpu_entry_area +EXPORT_SYMBOL vmlinux 0x9ad37e2c fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x9ad7a582 iosf_mbi_assert_punit_acquired +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9afa7e8a locks_copy_lock +EXPORT_SYMBOL vmlinux 0x9b12ab31 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x9b1cebf8 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b29ddb9 bpf_link_put +EXPORT_SYMBOL vmlinux 0x9b2a989f ethtool_notify +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b413ca9 phy_get_pause +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b55efcd devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b73b9fa dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x9b8ff64f agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x9bb4e317 ioread32be +EXPORT_SYMBOL vmlinux 0x9bcfbe65 generic_read_dir +EXPORT_SYMBOL vmlinux 0x9bdaa4b4 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x9be8cf99 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x9bedb17e sock_pfree +EXPORT_SYMBOL vmlinux 0x9c05cdb8 misc_deregister +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1fd91c ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x9c2c6cec nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x9c50a37c inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x9c65b78a csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x9c69b005 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x9c78fdd6 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c8a4ea4 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x9ca370a3 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb986f2 vmalloc_base +EXPORT_SYMBOL vmlinux 0x9cbe3b9a tcf_idr_release +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd806f7 md_bitmap_close_sync +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 0x9cefe499 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x9cf61431 mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0x9d099a39 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f4881 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9d10b2a9 dump_align +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab07c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d36252b input_register_handler +EXPORT_SYMBOL vmlinux 0x9d38d102 key_type_keyring +EXPORT_SYMBOL vmlinux 0x9d3f4588 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d70541a native_save_fl +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d838adc nlmsg_notify +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9d9cfd1c eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x9d9e68f5 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0x9d9f8bb5 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x9da2eeae dqput +EXPORT_SYMBOL vmlinux 0x9db92d3c kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9dc38ce1 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x9df91776 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0x9dfe8b37 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x9e05eb39 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e174663 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x9e1ff254 __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x9e20e20c blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9e21c38c d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5d4244 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x9e5fa420 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e677ee6 tty_vhangup +EXPORT_SYMBOL vmlinux 0x9e683f75 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9e67cd blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9fc51b elv_rb_find +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea203ea dm_put_device +EXPORT_SYMBOL vmlinux 0x9ea9767e tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9eac81a8 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eb521fe md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x9ec0e639 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x9ec17c72 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9ec3bf33 skb_unlink +EXPORT_SYMBOL vmlinux 0x9ec6ca96 ktime_get_real_ts64 +EXPORT_SYMBOL vmlinux 0x9ed978de vme_lm_set +EXPORT_SYMBOL vmlinux 0x9edb230b fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x9eeede22 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x9ef075f7 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x9ef0eee7 __SCT__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9f0497be simple_get_link +EXPORT_SYMBOL vmlinux 0x9f1e3d3d __netif_schedule +EXPORT_SYMBOL vmlinux 0x9f2e22f7 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x9f30ad63 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x9f3e28a0 tcp_set_rcvlowat +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 0x9f5ffafc neigh_connected_output +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7cadf3 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa1b6b0 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fb29ace filemap_release_folio +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fc6623e register_netdevice +EXPORT_SYMBOL vmlinux 0x9fdadf0c regset_get_alloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9fff35ae agp_free_memory +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa017439d simple_recursive_removal +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 0xa043e917 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xa043fdd2 vme_slot_num +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa05fb742 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xa07158d3 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa084f79f cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0990a89 security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xa09e4496 key_move +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d7af64 folio_redirty_for_writepage +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 0xa0ef5760 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa105f05a __skb_pad +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa111bc4b dquot_free_inode +EXPORT_SYMBOL vmlinux 0xa1224444 _dev_alert +EXPORT_SYMBOL vmlinux 0xa1261fba __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xa155e788 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0xa155fb67 tty_hangup +EXPORT_SYMBOL vmlinux 0xa15f7a5d mdiobus_write +EXPORT_SYMBOL vmlinux 0xa1687a9c make_kgid +EXPORT_SYMBOL vmlinux 0xa172109a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xa172f757 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xa186856b vme_irq_request +EXPORT_SYMBOL vmlinux 0xa1a25a0d __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0xa1bedd72 amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0xa1c4e472 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa1ec8810 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa20e57e0 kill_fasync +EXPORT_SYMBOL vmlinux 0xa20fde6f pmem_sector_size +EXPORT_SYMBOL vmlinux 0xa212a1d1 has_capability +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa2523584 __seq_open_private +EXPORT_SYMBOL vmlinux 0xa2600634 logfc +EXPORT_SYMBOL vmlinux 0xa26049e8 config_item_put +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa27f79e9 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa28eedd4 seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xa2a1bc07 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa2b9ce97 generic_listxattr +EXPORT_SYMBOL vmlinux 0xa2c6eb09 block_commit_write +EXPORT_SYMBOL vmlinux 0xa2d1767e scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa2e270d4 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0xa2e674b6 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xa2f7431b ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xa30f178e mmc_retune_pause +EXPORT_SYMBOL vmlinux 0xa31408a9 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xa34d8fd7 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xa369ca14 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa373aba2 release_sock +EXPORT_SYMBOL vmlinux 0xa38f21b9 amd_iommu_update_ga +EXPORT_SYMBOL vmlinux 0xa39504f8 fs_param_is_string +EXPORT_SYMBOL vmlinux 0xa39ec796 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cbe749 skb_dump +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3d05f56 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xa3e4f871 acpi_initialize_debugger +EXPORT_SYMBOL vmlinux 0xa3ec0ddb __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa3fc42f6 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4191c0b memset_io +EXPORT_SYMBOL vmlinux 0xa45c9580 audit_log +EXPORT_SYMBOL vmlinux 0xa45d69e2 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa467d5f0 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xa475e575 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa4a726c9 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c6f44b cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4d9e808 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xa4f91422 netdev_alert +EXPORT_SYMBOL vmlinux 0xa4faf62a acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0xa507125e acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xa5085470 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa50bcff0 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0xa51408cd __post_watch_notification +EXPORT_SYMBOL vmlinux 0xa520c808 pci_request_region +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa52efa46 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa530df28 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa56eee03 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xa57c7bde devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xa585c1c0 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5e3074e mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xa5e55057 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0xa5f7978f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa6266108 from_kprojid +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa6577592 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xa6793866 unload_nls +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6938329 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0xa6a53d29 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa6c0aa5c hmm_range_fault +EXPORT_SYMBOL vmlinux 0xa6c3a4ca seq_vprintf +EXPORT_SYMBOL vmlinux 0xa6c4ce27 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xa6ce792e xfrm_state_add +EXPORT_SYMBOL vmlinux 0xa6eb8068 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa70ee3f9 dma_resv_fini +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71d2e2c ioread16be +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa72cfb7d ioremap_wt +EXPORT_SYMBOL vmlinux 0xa7325bfd sock_bindtoindex +EXPORT_SYMBOL vmlinux 0xa7376ff2 watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xa73b7de0 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa756b62f dev_driver_string +EXPORT_SYMBOL vmlinux 0xa759d621 ip6_frag_next +EXPORT_SYMBOL vmlinux 0xa765679e md_check_recovery +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa78af5f3 ioread32 +EXPORT_SYMBOL vmlinux 0xa78f8021 filemap_flush +EXPORT_SYMBOL vmlinux 0xa796679d __SCT__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xa7a80484 fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xa7a81c61 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xa7ae6be4 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xa7b3ec1c dquot_commit +EXPORT_SYMBOL vmlinux 0xa7b552b7 kill_litter_super +EXPORT_SYMBOL vmlinux 0xa7b6509c pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0xa7c8b545 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7d82193 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xa7da09f3 ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xa7e25f6f __ip_dev_find +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa7fd30eb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xa805ecfc acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0xa80b61e1 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa836ba02 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xa8378a36 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa83f301d phy_start_cable_test_tdr +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 0xa85e5ee3 dev_add_pack +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa86a8946 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xa87c2b0a pnp_device_detach +EXPORT_SYMBOL vmlinux 0xa8863fe8 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa88813eb sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a297b9 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xa8c7bb94 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e07608 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8ec91e1 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa8f918a5 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9188425 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa931af8a asm_load_gs_index +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa955513c security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0xa956e603 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9785b49 cpu_core_map +EXPORT_SYMBOL vmlinux 0xa98d50f3 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xa9903bf4 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xa991265b build_skb_around +EXPORT_SYMBOL vmlinux 0xa9a6c0ff inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xa9ae501f input_set_abs_params +EXPORT_SYMBOL vmlinux 0xa9b22177 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa9c72303 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0xa9cc2b74 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xa9db8668 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xa9e595cc acpi_device_hid +EXPORT_SYMBOL vmlinux 0xa9fe7d2b __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xa9ffeaf0 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa05fa30 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3ab014 nd_device_register +EXPORT_SYMBOL vmlinux 0xaa44a707 cpumask_next +EXPORT_SYMBOL vmlinux 0xaa45a124 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xaa5db5a2 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xaa6247d3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7b2783 pci_restore_state +EXPORT_SYMBOL vmlinux 0xaa8108fc __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0xaa85f0fc input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xaa908580 dma_free_attrs +EXPORT_SYMBOL vmlinux 0xaa9cebb8 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaab5f529 dquot_alloc +EXPORT_SYMBOL vmlinux 0xaacbbd15 mfd_remove_devices_late +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 0xaad957b4 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xaadaecd5 __sock_create +EXPORT_SYMBOL vmlinux 0xaae00a92 dentry_open +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf95292 netdev_state_change +EXPORT_SYMBOL vmlinux 0xaafd9d9d fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab2c808b request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab5e08a6 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab64f355 seq_release_private +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8dce87 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xab9592b0 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xaba2c8a9 sk_free +EXPORT_SYMBOL vmlinux 0xaba5b116 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xabaa1ef1 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xabc014ac deactivate_super +EXPORT_SYMBOL vmlinux 0xabd5e757 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xabe7bb34 redraw_screen +EXPORT_SYMBOL vmlinux 0xabf0214f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0ada09 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0xac0bf5ec vc_cons +EXPORT_SYMBOL vmlinux 0xac14a388 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2abd2a dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0xac315e55 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac4251ae bdevname +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac620291 kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xac720341 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xac7de330 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb887cb netpoll_send_skb +EXPORT_SYMBOL vmlinux 0xacc3b071 phy_write_mmd +EXPORT_SYMBOL vmlinux 0xacca7e2b input_inject_event +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xacea8173 acpi_debug_print +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf5530c mdio_device_register +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1036a2 amd_iommu_activate_guest_mode +EXPORT_SYMBOL vmlinux 0xad15823a seq_printf +EXPORT_SYMBOL vmlinux 0xad15f8de nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xad2c377a ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad377d80 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0xad3a2032 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0xad3ef2e0 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xad536c91 x86_cpu_to_acpiid +EXPORT_SYMBOL vmlinux 0xad68ea29 __devm_release_region +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6f4a5d vlan_vid_add +EXPORT_SYMBOL vmlinux 0xad704893 address_space_init_once +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad7657ca security_unix_may_send +EXPORT_SYMBOL vmlinux 0xad7957b1 passthru_features_check +EXPORT_SYMBOL vmlinux 0xad8ec2d5 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada95f23 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadb94494 filp_open +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL vmlinux 0xadcf1769 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd1c997 secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xadd88fa6 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xade4c052 tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0xade64478 inode_to_bdi +EXPORT_SYMBOL vmlinux 0xade8bb1b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae1c7a43 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae375ce9 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xae380fb4 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xae545348 unix_get_socket +EXPORT_SYMBOL vmlinux 0xae588b62 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae732c65 should_remove_suid +EXPORT_SYMBOL vmlinux 0xae738a96 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xae761f01 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xae784891 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xae7d1f87 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xae926ebd netdev_printk +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb66ea7 bdi_unregister +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaec4ad9a reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaecd34ec ppp_input +EXPORT_SYMBOL vmlinux 0xaedcc252 param_get_ulong +EXPORT_SYMBOL vmlinux 0xaee99def eth_header +EXPORT_SYMBOL vmlinux 0xaef7f4df md_unregister_thread +EXPORT_SYMBOL vmlinux 0xaf172acd setup_new_exec +EXPORT_SYMBOL vmlinux 0xaf1a0e17 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xaf354bbe cpu_tss_rw +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf45fbc1 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xaf499cde textsearch_unregister +EXPORT_SYMBOL vmlinux 0xaf5382d9 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xaf814485 ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xaf8cc272 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xaf904d3b netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xaf91351c mdio_device_free +EXPORT_SYMBOL vmlinux 0xaf9e093c unregister_key_type +EXPORT_SYMBOL vmlinux 0xaf9e67ba param_set_ullong +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafca1ffb devm_release_resource +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafd744c6 __x86_indirect_thunk_rbp +EXPORT_SYMBOL vmlinux 0xafda3e13 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xaffd55e9 cont_write_begin +EXPORT_SYMBOL vmlinux 0xb0050ec9 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb00b3932 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xb00cffb9 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xb00feaf8 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb02bf70e security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xb02df2d6 __traceiter_rdpmc +EXPORT_SYMBOL vmlinux 0xb03a1fe4 tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb0557c39 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xb05e4297 __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0850658 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xb09d6310 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb09ecdbb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a5fd82 get_user_pages +EXPORT_SYMBOL vmlinux 0xb0b6e0f9 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0xb0bf2c60 load_nls_default +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d6f0e4 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xb0dacc89 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e118ed tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e7ea0b kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0xb0ec6c61 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xb0fb5c28 page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0xb0feb09c netif_tx_lock +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb11b2b9e vm_insert_page +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12b672f __put_page +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1342cdb _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xb136c365 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xb142a7ba tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb15f13bb scsi_print_command +EXPORT_SYMBOL vmlinux 0xb162bbc9 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb1781343 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0xb180599b file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xb19a5453 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xb1a172d3 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb1acbac8 folio_end_writeback +EXPORT_SYMBOL vmlinux 0xb1ad5e82 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xb1be6290 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1df09ec xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xb1f32db6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb221f677 get_watch_queue +EXPORT_SYMBOL vmlinux 0xb2223e6a sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb22d67f8 netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb2331592 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xb2338d81 __x86_indirect_thunk_rsp +EXPORT_SYMBOL vmlinux 0xb2359b3e register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xb25065f0 unregister_nls +EXPORT_SYMBOL vmlinux 0xb2601486 __SCT__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xb2637f1e rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xb27cbae8 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xb289b8ce tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb2a89480 mntget +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2c4db0d agp_backend_release +EXPORT_SYMBOL vmlinux 0xb2c59037 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xb2d2d1c5 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb2de731c netlink_set_err +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2f86be9 __scm_send +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb3091d5a skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb31577fb pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0xb31e9452 devfreq_add_device +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 0xb334079d fiemap_prep +EXPORT_SYMBOL vmlinux 0xb33422b1 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xb33defd7 inet_frag_find +EXPORT_SYMBOL vmlinux 0xb3419a1c unregister_netdev +EXPORT_SYMBOL vmlinux 0xb3468cb7 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0xb3592445 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb3863a67 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xb38647ff seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xb38ac535 __skb_checksum +EXPORT_SYMBOL vmlinux 0xb394accc __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xb3a11845 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xb3a2dfdf nmi_panic +EXPORT_SYMBOL vmlinux 0xb3bc905c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xb3c178aa sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xb3c448d6 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xb3c65a7b netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d70f05 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb3db2757 f_setown +EXPORT_SYMBOL vmlinux 0xb3e38f82 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xb3ea7cfd vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40158d7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb40ff76a follow_pfn +EXPORT_SYMBOL vmlinux 0xb415c179 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xb41bf182 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43247a2 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xb43ed0a3 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb4756bb2 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xb47cca30 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xb47fde60 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xb487210c __nla_reserve +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb491926c dquot_drop +EXPORT_SYMBOL vmlinux 0xb494c956 tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0xb49a0af3 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xb49af1d3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb4a78383 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xb4c65f6a inode_dio_wait +EXPORT_SYMBOL vmlinux 0xb4ef1242 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xb4ef6c03 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb528fb72 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb530d0f0 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab892d uv_undefined +EXPORT_SYMBOL vmlinux 0xb5ad814c blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c4e36b param_set_int +EXPORT_SYMBOL vmlinux 0xb5dd8cb5 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5ed260e pnp_register_driver +EXPORT_SYMBOL vmlinux 0xb5ed930f inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62681bd pci_get_class +EXPORT_SYMBOL vmlinux 0xb62926d9 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb652c909 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb657ee17 audit_log_start +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb66f6fcd dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67cca85 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb68a888b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6c759bb trace_event_printf +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6dbee32 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6e3709b nd_device_notify +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7023fbe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xb71462d3 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71a2d5f dst_dev_put +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb7298d46 add_watch_to_object +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb73a02e4 udp_gro_complete +EXPORT_SYMBOL vmlinux 0xb7462d82 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb74dd694 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0xb755eec6 tty_check_change +EXPORT_SYMBOL vmlinux 0xb7593ddc iosf_mbi_unregister_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xb7873fea napi_build_skb +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb79ce976 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb79dbbd3 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xb7bd1c91 rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xb7bded45 vma_set_file +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb811210a dev_change_flags +EXPORT_SYMBOL vmlinux 0xb82b624f misc_register +EXPORT_SYMBOL vmlinux 0xb85e3a85 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xb8638095 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86d3f4d xp_can_alloc +EXPORT_SYMBOL vmlinux 0xb86f74c5 free_cpumask_var +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8c22931 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xb8d0d3c1 follow_up +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb904ee69 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90a58fb napi_gro_flush +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb92b4776 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xb92c388c i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xb9326098 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb94343ad twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb96ce364 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb97e032a dm_table_event +EXPORT_SYMBOL vmlinux 0xb97f7045 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xb98490dc generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xb9900b0a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xb9a4e53c md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xb9a77b1c jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9d0ea7d jbd2_fc_wait_bufs +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 0xb9fcc8c1 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba087bd6 nla_reserve +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba251e4e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xba2c7b9b ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xba332f1b touch_atime +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba53f747 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xba6bfb31 blk_rq_init +EXPORT_SYMBOL vmlinux 0xba7d21fe __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xba8abadd genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xba8c437b poll_freewait +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba962d4e nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xbac11501 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xbadbc959 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0xbae37cb4 param_set_long +EXPORT_SYMBOL vmlinux 0xbb04bb1b dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb09a3a4 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xbb13595e smp_call_function_many +EXPORT_SYMBOL vmlinux 0xbb1bac24 acpi_unregister_debugger +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb4b79af lease_modify +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5dd83d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xbb616116 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xbb67edd4 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbb8e169a vga_switcheroo_handler_flags +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba31645 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xbbb07cd7 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0xbbb64103 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xbbc31224 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xbbcf0a1c __SCK__tp_func_write_msr +EXPORT_SYMBOL vmlinux 0xbbe4bb39 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc094cab ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xbc0fc5c3 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xbc17045f iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc2690e7 skb_copy_header +EXPORT_SYMBOL vmlinux 0xbc4a6514 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xbc578e0a __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbccfda08 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xbcdcea6e param_ops_uint +EXPORT_SYMBOL vmlinux 0xbd1e2ee1 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xbd386c79 md_handle_request +EXPORT_SYMBOL vmlinux 0xbd393ca3 ioread64be_lo_hi +EXPORT_SYMBOL vmlinux 0xbd44f5cc alloc_fcdev +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd646d63 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6fbff5 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xbd7ba8e9 seq_bprintf +EXPORT_SYMBOL vmlinux 0xbd949a08 dev_uc_add +EXPORT_SYMBOL vmlinux 0xbda49cab xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xbda4ad81 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xbda6d03b flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0xbda95cf3 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xbdadb7f1 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0xbdc65402 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbdde6316 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xbdf52c6b nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfc8db8 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0xbe0110e7 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0xbe1fe1df __register_binfmt +EXPORT_SYMBOL vmlinux 0xbe210c4a pci_set_master +EXPORT_SYMBOL vmlinux 0xbe41aa62 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xbe452371 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe54ff20 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe824f95 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xbe83abb4 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xbe870c9c kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xbe89e76c __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xbec326a2 fwnode_iomap +EXPORT_SYMBOL vmlinux 0xbec70370 flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefc9bfe lookup_one_len +EXPORT_SYMBOL vmlinux 0xbf01313f set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xbf128b70 ilookup5 +EXPORT_SYMBOL vmlinux 0xbf1e5cd5 proto_unregister +EXPORT_SYMBOL vmlinux 0xbf3193ec acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xbf4afca8 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf5cd111 kill_block_super +EXPORT_SYMBOL vmlinux 0xbf6b5403 open_with_fake_path +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfb49eee seq_open +EXPORT_SYMBOL vmlinux 0xbfbea58d cdev_device_del +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfdf867b netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xbfec4fcd fget +EXPORT_SYMBOL vmlinux 0xbfed39b7 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xbff14546 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xbffce492 acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xc012e8a9 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc018561a put_cmsg +EXPORT_SYMBOL vmlinux 0xc01e0ab5 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xc0276773 rproc_add +EXPORT_SYMBOL vmlinux 0xc028e155 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc03f754a tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xc0606410 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc063ad3e bio_put +EXPORT_SYMBOL vmlinux 0xc07351b3 __SCT__cond_resched +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0954478 nla_put +EXPORT_SYMBOL vmlinux 0xc097a14f security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xc0a402ec shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xc0aa8854 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0bd8461 mount_nodev +EXPORT_SYMBOL vmlinux 0xc0cf8250 devm_free_irq +EXPORT_SYMBOL vmlinux 0xc0da7ae2 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc0f11427 set_posix_acl +EXPORT_SYMBOL vmlinux 0xc0fe0b89 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc104b0fa pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xc10b554e genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xc10ef6c4 rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0xc1100e70 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xc111ae64 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11fa7a3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc12c4008 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xc12f7860 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0xc1365323 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0xc136d57c flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1ac77d9 nf_log_register +EXPORT_SYMBOL vmlinux 0xc1bee2e7 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc1d442c2 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e28de8 module_put +EXPORT_SYMBOL vmlinux 0xc1f0aea0 key_revoke +EXPORT_SYMBOL vmlinux 0xc2162e57 scsi_done_direct +EXPORT_SYMBOL vmlinux 0xc22fc87d inet_stream_ops +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24f89b5 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xc24fb852 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xc278c965 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc27da778 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc280d4f0 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xc292da46 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2b7805c __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc2cad71b handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc2dc90f2 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xc2e006cd set_nlink +EXPORT_SYMBOL vmlinux 0xc2e00de9 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f5e591 eth_type_trans +EXPORT_SYMBOL vmlinux 0xc3036b44 scsi_report_device_reset +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 0xc3458e39 del_gendisk +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc36d51a6 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37ec5e8 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc39fc431 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3b1945a locks_init_lock +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3d5dfff nf_hook_slow +EXPORT_SYMBOL vmlinux 0xc3e9d0d6 param_get_ushort +EXPORT_SYMBOL vmlinux 0xc3fdbac6 phy_remove_link_mode +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 0xc42c4ff8 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc42dcb99 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0xc42e25d8 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xc4340545 add_to_pipe +EXPORT_SYMBOL vmlinux 0xc43ef148 user_path_create +EXPORT_SYMBOL vmlinux 0xc445e23b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc4692afd cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc490204f skb_find_text +EXPORT_SYMBOL vmlinux 0xc496cd56 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0xc4ae915e arch_touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xc50602c4 mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc5399930 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xc53c7f9d dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc549ce26 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0xc54dbb3d serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xc5515129 mr_dump +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57407a1 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc580bf9b phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xc589df05 d_move +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5cd6890 file_ns_capable +EXPORT_SYMBOL vmlinux 0xc5d225a6 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ded73e kern_unmount +EXPORT_SYMBOL vmlinux 0xc5e156a3 vfs_mknod +EXPORT_SYMBOL vmlinux 0xc5e6246b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5e7af56 proc_set_user +EXPORT_SYMBOL vmlinux 0xc5eeec97 simple_fill_super +EXPORT_SYMBOL vmlinux 0xc5f5c1a8 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc61ca65e iowrite64be_hi_lo +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63f6464 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc64ef0be eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc66ef61d devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0xc672dc71 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xc6734bfd pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc680fa81 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xc6910aa0 do_trace_rdpmc +EXPORT_SYMBOL vmlinux 0xc694d3fe dput +EXPORT_SYMBOL vmlinux 0xc6aec9b0 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc6b2d4f8 ihold +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6ce6016 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d26fb5 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xc6d34479 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xc6f2d5f7 simple_lookup +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6fbace5 devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70bc6e3 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc730521f legacy_pic +EXPORT_SYMBOL vmlinux 0xc73aaf80 ipv4_dst_check +EXPORT_SYMBOL vmlinux 0xc73f3606 tcf_block_get +EXPORT_SYMBOL vmlinux 0xc74cd915 file_modified +EXPORT_SYMBOL vmlinux 0xc74e784e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xc7675e8a kthread_bind +EXPORT_SYMBOL vmlinux 0xc770cf10 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xc7791b6b max8925_reg_read +EXPORT_SYMBOL vmlinux 0xc77dee92 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79d703d udp6_csum_init +EXPORT_SYMBOL vmlinux 0xc7a32991 folio_alloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a92d0f fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xc7ae2a9f mmc_put_card +EXPORT_SYMBOL vmlinux 0xc7b1daac vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xc7ba9c1c pci_get_slot +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c7ddb0 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7e501b3 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0xc7e77c4d blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc7ea72b3 udp_prot +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc816fe15 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xc8270172 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xc8283dda mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xc82c1da2 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xc82cad1e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xc8356b05 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc83b20ef sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc8442f88 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8610278 update_region +EXPORT_SYMBOL vmlinux 0xc86260dc pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc878c613 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8971a12 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xc8a22eb4 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0xc8a3460f __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8ae0c4e param_ops_bool +EXPORT_SYMBOL vmlinux 0xc8bc3523 dev_mc_del +EXPORT_SYMBOL vmlinux 0xc8c26e39 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc9011999 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xc90f95f1 eisa_bus_type +EXPORT_SYMBOL vmlinux 0xc917d54c vga_con +EXPORT_SYMBOL vmlinux 0xc9216a82 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc94a392a kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xc95ce47f sk_stop_timer +EXPORT_SYMBOL vmlinux 0xc95e9e7f xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc968ffaa mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0xc96f96e0 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc976645c skb_trim +EXPORT_SYMBOL vmlinux 0xc981d741 vfs_getattr +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9aa566c rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0xc9aec775 mmc_release_host +EXPORT_SYMBOL vmlinux 0xc9b33111 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0xc9c04c73 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xc9cc2db6 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xc9da242d mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9f34c1d acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0xc9f89564 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xca01a6f7 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0xca0516da param_ops_short +EXPORT_SYMBOL vmlinux 0xca0f572e cdrom_check_events +EXPORT_SYMBOL vmlinux 0xca14d3bd mount_subtree +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca1acb79 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca3db2a9 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca5f9c26 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xca87e25c agp_generic_enable +EXPORT_SYMBOL vmlinux 0xca8a17a6 finish_no_open +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca95c2b9 inet_getname +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcabf98c2 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcad740ee dev_set_threaded +EXPORT_SYMBOL vmlinux 0xcaf861a5 d_lookup +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb1ea1dd scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xcb2ceb7e __ip_select_ident +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3b0e13 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xcb44c17c bio_split +EXPORT_SYMBOL vmlinux 0xcb69338b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcba77fef mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xcbb756c9 sync_blockdev +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc016f82 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xcc1b2756 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xcc1b882a idr_get_next_ul +EXPORT_SYMBOL vmlinux 0xcc1f6a51 configfs_unregister_subsystem +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 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc49b047 tcp_req_err +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc590f89 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc6993e2 pci_find_capability +EXPORT_SYMBOL vmlinux 0xcc96ed1a vfio_pin_pages +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcccd4407 vfs_create_mount +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccdc54dc inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xccf6c322 release_pages +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 0xcd0b7240 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0xcd138fb1 kill_pid +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd294ec8 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xcd32dab2 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0xcd33127b dev_close +EXPORT_SYMBOL vmlinux 0xcd41a936 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xcd4b1068 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xcd6ecbe0 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xcd706d54 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xcd812fb7 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xcd854a30 module_layout +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd954a49 dcache_readdir +EXPORT_SYMBOL vmlinux 0xcda4c282 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xcda69341 generic_fillattr +EXPORT_SYMBOL vmlinux 0xcda84291 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcd2afc __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xcdd78cc2 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xcde0b8f1 seq_puts +EXPORT_SYMBOL vmlinux 0xcde31676 file_path +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdf0fc0b iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xcdf46da6 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xce0c1634 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xce1923dc writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2ca867 phy_attached_print +EXPORT_SYMBOL vmlinux 0xce2db1b9 validate_slab_cache +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 0xce6e5570 seq_release +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce880adc xfrm_init_state +EXPORT_SYMBOL vmlinux 0xce8b4411 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xce987127 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xce9c4258 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xcea381dd x86_match_cpu +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcee366e0 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xcee48eff register_netdev +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf031e3d mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0xcf1a6e56 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xcf21ced7 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf32437a param_get_charp +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf485aed inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xcf4b7979 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf529ffe dcb_setapp +EXPORT_SYMBOL vmlinux 0xcf5ace9c ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xcf5d0d04 flush_signals +EXPORT_SYMBOL vmlinux 0xcf775efa sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xcf7e0de8 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xcf7f8f34 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xcf869ee9 vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0xcf89a67b tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xcf8ed8e1 inet_shutdown +EXPORT_SYMBOL vmlinux 0xcf987b75 block_write_begin +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 0xcfd75e56 acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfda28be mmc_request_done +EXPORT_SYMBOL vmlinux 0xcfdb444a tcp_sendpage +EXPORT_SYMBOL vmlinux 0xcfe83f21 phy_attach +EXPORT_SYMBOL vmlinux 0xcfefcfef i2c_register_driver +EXPORT_SYMBOL vmlinux 0xcff66702 fs_lookup_param +EXPORT_SYMBOL vmlinux 0xd004e3bc mfd_add_devices +EXPORT_SYMBOL vmlinux 0xd01c18e9 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xd038a392 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05c0edb netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06720fb netif_skb_features +EXPORT_SYMBOL vmlinux 0xd0679fbc datagram_poll +EXPORT_SYMBOL vmlinux 0xd074e40b i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd07caf54 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xd0818ec0 noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0c30688 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xd0c5bc48 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xd0d49446 key_put +EXPORT_SYMBOL vmlinux 0xd0da656b __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xd0e19797 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xd0e23b26 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd0efdd28 node_data +EXPORT_SYMBOL vmlinux 0xd0f284b8 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0xd0f525b6 current_in_userns +EXPORT_SYMBOL vmlinux 0xd0f6b9c2 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xd0f895f3 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd115c0c5 configfs_register_group +EXPORT_SYMBOL vmlinux 0xd1310576 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xd1323661 pnp_start_dev +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13c37e0 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0xd13f204a __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xd141102c __d_drop +EXPORT_SYMBOL vmlinux 0xd1491093 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd153db1b dev_lstats_read +EXPORT_SYMBOL vmlinux 0xd1746046 __lock_buffer +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1bb44a5 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd1c58fb5 mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xd1cf8816 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d996f4 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xd1e79074 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd1ec840a amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xd1f60a89 arch_io_free_memtype_wc +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2118ada d_invalidate +EXPORT_SYMBOL vmlinux 0xd2175881 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd21c5139 iowrite64_lo_hi +EXPORT_SYMBOL vmlinux 0xd222e704 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2257596 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd2535b33 devfreq_update_target +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2694c8e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd279f61c __skb_get_hash +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd28ced02 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd293c43f tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xd2949899 __check_sticky +EXPORT_SYMBOL vmlinux 0xd2a1e7ab vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xd2ad4b47 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xd2b7d461 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xd2bc5c46 __get_user_nocheck_2 +EXPORT_SYMBOL vmlinux 0xd2c04bf4 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xd2c3a7a2 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xd2c63d7e dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2ebf19b regset_get +EXPORT_SYMBOL vmlinux 0xd2f15593 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xd2f25f05 mmc_free_host +EXPORT_SYMBOL vmlinux 0xd2fca777 netif_device_detach +EXPORT_SYMBOL vmlinux 0xd31248a0 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xd31319ef vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd332983b clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xd3338824 vme_register_driver +EXPORT_SYMBOL vmlinux 0xd338ea7e __SCT__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xd35255b9 sg_alloc_table_from_pages_segment +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 0xd366ec8b from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xd367c636 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd36d0626 phy_detach +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd379324e tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd386d1aa inet6_del_offload +EXPORT_SYMBOL vmlinux 0xd38cd261 __default_kernel_pte_mask +EXPORT_SYMBOL vmlinux 0xd392a59d tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xd39c1b19 iget_failed +EXPORT_SYMBOL vmlinux 0xd3ad45d4 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xd3c774ce blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xd3cdebad netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0xd3f552b6 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd409bc3e fb_set_suspend +EXPORT_SYMBOL vmlinux 0xd411b9d5 devm_clk_get +EXPORT_SYMBOL vmlinux 0xd41d7d4b sk_wait_data +EXPORT_SYMBOL vmlinux 0xd43cdde0 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xd442fb44 nf_log_set +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47661f6 dget_parent +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd487b287 rproc_shutdown +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4d05daa inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4de0f75 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd4fcce13 no_llseek +EXPORT_SYMBOL vmlinux 0xd524e244 path_get +EXPORT_SYMBOL vmlinux 0xd525393b eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xd5255f63 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd52d26c3 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd531fa74 generic_write_checks +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd5473fdd tso_start +EXPORT_SYMBOL vmlinux 0xd549f733 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xd557a923 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xd563549d netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xd56c72d9 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xd56fcd4e phy_device_remove +EXPORT_SYMBOL vmlinux 0xd575d0d4 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xd5899e81 __block_write_begin +EXPORT_SYMBOL vmlinux 0xd5adaeb8 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c6c5c2 wireless_send_event +EXPORT_SYMBOL vmlinux 0xd5cae396 seq_read_iter +EXPORT_SYMBOL vmlinux 0xd5d1cbf5 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xd5d5111f vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0xd5d5a9a3 kobject_del +EXPORT_SYMBOL vmlinux 0xd5d6368d truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xd5db8b01 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xd5e23524 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xd5e35d7f tcp_seq_start +EXPORT_SYMBOL vmlinux 0xd5f87263 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0xd5f9ed38 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0xd5fd60d7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd61a11d6 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xd61a2e95 pcim_iomap +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd632bc14 empty_aops +EXPORT_SYMBOL vmlinux 0xd63488eb bio_uninit +EXPORT_SYMBOL vmlinux 0xd634a4ea xfrm_lookup +EXPORT_SYMBOL vmlinux 0xd642bd3c __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742002 preempt_schedule_thunk +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68b7370 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd690c174 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd693586d unix_attach_fds +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6ce4dcc phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xd6cfc36a __phy_resume +EXPORT_SYMBOL vmlinux 0xd6d3c465 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fdbfac md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd70103f9 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xd704f5ea dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd73675f1 backlight_device_register +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c0791 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd7449391 fqdir_exit +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd757f112 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd79fc474 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xd7a3643b devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd7cb3b9d configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e73dcb dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8198d3f __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd8246911 kernel_read +EXPORT_SYMBOL vmlinux 0xd846c315 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0xd85e15b6 xp_free +EXPORT_SYMBOL vmlinux 0xd860c56a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd873621d cdev_del +EXPORT_SYMBOL vmlinux 0xd87c842d netif_rx +EXPORT_SYMBOL vmlinux 0xd8861f16 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xd8884c7f inet6_protos +EXPORT_SYMBOL vmlinux 0xd893c727 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd89b8197 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd89d6a4c file_update_time +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c9d31d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xd8ccd3b0 ram_aops +EXPORT_SYMBOL vmlinux 0xd8cef6e1 clear_user +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e5cf22 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd933f209 __SCT__tp_func_rdpmc +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94fc513 kobject_init +EXPORT_SYMBOL vmlinux 0xd95bcb7e netlink_ack +EXPORT_SYMBOL vmlinux 0xd96b1503 vfio_unpin_pages +EXPORT_SYMBOL vmlinux 0xd96fa3a4 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd975f470 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xd983532a key_unlink +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98c462e devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9b216af dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9c7a4af seq_escape_mem +EXPORT_SYMBOL vmlinux 0xd9cc3eb1 textsearch_register +EXPORT_SYMBOL vmlinux 0xd9ce2fd3 neigh_lookup +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9f16a18 d_alloc_anon +EXPORT_SYMBOL vmlinux 0xda070e86 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xda096dbc arp_send +EXPORT_SYMBOL vmlinux 0xda12b070 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xda1ddef1 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0xda26b8ea __irq_regs +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda415d47 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xda775483 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xda7cfa53 phy_device_free +EXPORT_SYMBOL vmlinux 0xda9dcdc4 dump_skip_to +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad13544 ptrs_per_p4d +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdad7919c __alloc_pages +EXPORT_SYMBOL vmlinux 0xdadb66d0 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdb05357a inet6_ioctl +EXPORT_SYMBOL vmlinux 0xdb0fd770 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb1719e9 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb34a53c tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb737ebc sock_alloc_file +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb88e0b8 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0xdb8b8698 km_new_mapping +EXPORT_SYMBOL vmlinux 0xdb95e185 intel_scu_ipc_dev_command_with_size +EXPORT_SYMBOL vmlinux 0xdb962c94 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xdbb9ed0e tcp_poll +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbd45ae8 phy_suspend +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbe2839a pipe_lock +EXPORT_SYMBOL vmlinux 0xdc06f92d skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xdc07be6c xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc15c6d0 dup_iter +EXPORT_SYMBOL vmlinux 0xdc370f87 phy_resume +EXPORT_SYMBOL vmlinux 0xdc3cad3d _dev_crit +EXPORT_SYMBOL vmlinux 0xdc3f20a3 locks_delete_block +EXPORT_SYMBOL vmlinux 0xdc40a7d7 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5736d5 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0xdc682364 seq_dentry +EXPORT_SYMBOL vmlinux 0xdc6d82ad phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xdc9cde65 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xdc9de01a vfs_readlink +EXPORT_SYMBOL vmlinux 0xdc9fbe8d path_is_under +EXPORT_SYMBOL vmlinux 0xdca3eef3 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xdcb11207 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xdcb5fcb0 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0xdcb847a6 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xdcccb85f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xdcd23169 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcfb5384 single_open_size +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd0a446a vfs_mkobj +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd1f6c12 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3fa762 elv_rb_del +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd5e75ea textsearch_prepare +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd75c755 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd844fd9 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8dbd92 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xdd8dcee8 input_reset_device +EXPORT_SYMBOL vmlinux 0xdd8e14a8 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddcbe1f3 acpi_ut_value_exit +EXPORT_SYMBOL vmlinux 0xddda5e72 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xdded8fa1 pskb_extract +EXPORT_SYMBOL vmlinux 0xddefc56b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde01c034 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xde0741a2 sock_no_bind +EXPORT_SYMBOL vmlinux 0xde0eb86d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xde1eb2a3 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde377efd vfs_link +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde4ec25b pci_get_device +EXPORT_SYMBOL vmlinux 0xde4eeab5 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xde68eb32 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xde7be0dc blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xde80cd09 ioremap +EXPORT_SYMBOL vmlinux 0xde81fff2 devm_request_resource +EXPORT_SYMBOL vmlinux 0xde878225 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xde8c2230 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea238ec pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xdea625e7 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xdea72bb7 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xdeb6e521 kernel_connect +EXPORT_SYMBOL vmlinux 0xdecc470e set_anon_super +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded51964 kernel_accept +EXPORT_SYMBOL vmlinux 0xdee65911 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef8d0ae __SCT__tp_func_kfree +EXPORT_SYMBOL vmlinux 0xdf075fa1 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xdf0e472d skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf394398 tcp_prot +EXPORT_SYMBOL vmlinux 0xdf3aec89 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xdf40f59b ndisc_ns_create +EXPORT_SYMBOL vmlinux 0xdf4a98c6 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xdf4e52ff __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xdf51857b shmem_aops +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf618426 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf76537e vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xdf87ed67 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0xdf892ee3 d_rehash +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d781f acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfaf3a47 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xdfb3ac58 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xdfb599f9 mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0xdfbce510 sk_dst_check +EXPORT_SYMBOL vmlinux 0xdfc10c94 load_nls +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfda6b4e ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe00b5c29 sock_bind_add +EXPORT_SYMBOL vmlinux 0xe00f5388 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xe0112fc4 __x86_indirect_thunk_r9 +EXPORT_SYMBOL vmlinux 0xe0197e79 sock_set_keepalive +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 0xe03883c9 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe05d0550 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe071ebee con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe073a89b tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xe07a1215 get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe080df1a tcp_init_sock +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe09b544f __invalidate_device +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0ab3786 input_allocate_device +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c9a644 sock_wfree +EXPORT_SYMBOL vmlinux 0xe109d797 skb_ext_add +EXPORT_SYMBOL vmlinux 0xe1116206 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe12c08d0 genphy_read_lpa +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13a85aa cdev_init +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe171ff0d block_read_full_folio +EXPORT_SYMBOL vmlinux 0xe1747cb2 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0xe1798391 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xe19cc39d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xe1b01d7e xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe1bee700 __traceiter_read_msr +EXPORT_SYMBOL vmlinux 0xe1c99f3a udp_seq_next +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1f85592 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xe206cc94 arp_tbl +EXPORT_SYMBOL vmlinux 0xe21f14cf __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe2250484 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe237661c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xe25d7105 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27f0310 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xe27fc938 seq_putc +EXPORT_SYMBOL vmlinux 0xe29fe455 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xe2a35d1f input_open_device +EXPORT_SYMBOL vmlinux 0xe2a7e63b netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xe2a94e70 convert_art_ns_to_tsc +EXPORT_SYMBOL vmlinux 0xe2c17b5d __SCT__might_resched +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d6ab62 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xe2e28fc0 __traceiter_write_msr +EXPORT_SYMBOL vmlinux 0xe2e391ad nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xe2ffe015 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe32b49ba genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xe32fd899 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe3321868 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xe335d10d folio_unlock +EXPORT_SYMBOL vmlinux 0xe337461d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xe354a8ab twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xe35e38c8 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xe36b0f05 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xe37cb31c bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3cc7dfa input_get_poll_interval +EXPORT_SYMBOL vmlinux 0xe3d15f4f ps2_init +EXPORT_SYMBOL vmlinux 0xe3d857ea __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xe3ec2f2b alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0xe3f32208 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xe3f575a6 padata_free +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 0xe40f2107 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe419bc99 iowrite32be +EXPORT_SYMBOL vmlinux 0xe426871e agp_bridge +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4347287 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe4498200 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe48225b9 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xe49b0163 dm_get_device +EXPORT_SYMBOL vmlinux 0xe4a25a54 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xe4a2b679 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xe4b6d3e7 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bde487 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe4c4e39c __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe4d80bf4 acpi_enable +EXPORT_SYMBOL vmlinux 0xe502a2a9 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0xe509b497 phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0xe51a2b5e security_sb_remount +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe544850c ppp_input_error +EXPORT_SYMBOL vmlinux 0xe54ad183 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xe5513bed dst_release +EXPORT_SYMBOL vmlinux 0xe55b8d78 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xe57646a0 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0xe58090ca security_ib_endport_manage_subnet +EXPORT_SYMBOL vmlinux 0xe583730d mpage_readahead +EXPORT_SYMBOL vmlinux 0xe590dea3 sk_busy_loop_end +EXPORT_SYMBOL vmlinux 0xe5c5492c serio_bus +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d2929b vga_switcheroo_client_probe_defer +EXPORT_SYMBOL vmlinux 0xe5e99b82 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe5f375f5 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0xe5f8c1fc folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xe5fed1b6 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xe606df93 make_kuid +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe6238713 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xe6243136 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xe627e3df ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xe64047f7 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe6740fbd inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe68226db xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe68906ac jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6988e89 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xe6a2b363 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xe6a67271 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xe6a851a1 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xe6b605a2 param_get_invbool +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6df143a filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0xe6f60a7f acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xe6f6f6d2 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe6fdb051 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xe70877d4 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0xe70b8524 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xe70fc18f phy_write_paged +EXPORT_SYMBOL vmlinux 0xe710f571 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xe71409ee dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe72ce1cb nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xe7630ac9 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xe763a391 dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xe77344a2 sock_i_uid +EXPORT_SYMBOL vmlinux 0xe787698f acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xe7878e05 inode_permission +EXPORT_SYMBOL vmlinux 0xe796ecac __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7be1a8a flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0xe7c2082a mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xe7c4c7b4 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7dbccbe folio_account_redirty +EXPORT_SYMBOL vmlinux 0xe7e01cf3 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe7ec302d skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0xe7f0edd8 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe84017db vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe858dae8 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe86c7df3 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0xe870082e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe8720735 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0xe873f0a7 free_task +EXPORT_SYMBOL vmlinux 0xe879082a reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xe88a0665 kill_pgrp +EXPORT_SYMBOL vmlinux 0xe88b5d62 block_write_end +EXPORT_SYMBOL vmlinux 0xe892cac9 __ip_options_compile +EXPORT_SYMBOL vmlinux 0xe8a2a8d7 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xe8a42f9c ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xe8b1183f dcb_getapp +EXPORT_SYMBOL vmlinux 0xe8bb6447 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xe8d4c6ed twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xe8d4ebbd tcp_connect +EXPORT_SYMBOL vmlinux 0xe8ec674e unlock_rename +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe900fa4a register_framebuffer +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90b6b1d mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9224e36 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xe9250315 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0xe93dd7d9 reuseport_select_sock +EXPORT_SYMBOL vmlinux 0xe9422e45 __tracepoint_rdpmc +EXPORT_SYMBOL vmlinux 0xe9442c10 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe97ab00a jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe98c117e mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xe990f518 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xe99c27d9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xe9a5e67f intel_graphics_stolen_res +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9b8291a reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0xe9b973c5 param_set_invbool +EXPORT_SYMBOL vmlinux 0xe9baabda iov_iter_discard +EXPORT_SYMBOL vmlinux 0xe9cc6bd5 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e11318 key_payload_reserve +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 0xea04277e seq_open_private +EXPORT_SYMBOL vmlinux 0xea15635e dcache_dir_open +EXPORT_SYMBOL vmlinux 0xea1ede1d flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea43c4d5 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xea50a602 finalize_exec +EXPORT_SYMBOL vmlinux 0xea5c216f pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xea66c623 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0xea694cf9 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea7c49a6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xea95ba1c mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xeaa2b8fc serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeacaeb85 blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0xeaccfd40 peernet2id +EXPORT_SYMBOL vmlinux 0xead458a8 pnp_is_active +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeafcb180 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb197264 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xeb2119ba fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb31aee8 acpi_trace_point +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4da43b sock_i_ino +EXPORT_SYMBOL vmlinux 0xeb5a42dc netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0xeb5fe10d __scsi_execute +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb7f8cf9 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xeb928885 do_splice_direct +EXPORT_SYMBOL vmlinux 0xeb9352c2 __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xeb96d555 sk_capable +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebb1ca45 rproc_alloc +EXPORT_SYMBOL vmlinux 0xebc23d9a pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xebe13fda unlock_new_inode +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebecc767 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xec151279 backlight_force_update +EXPORT_SYMBOL vmlinux 0xec19e270 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2d1d47 vme_lm_request +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec37ad57 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6971c7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xec731002 km_report +EXPORT_SYMBOL vmlinux 0xec73d9a8 nobh_write_end +EXPORT_SYMBOL vmlinux 0xec8f706e scsi_host_get +EXPORT_SYMBOL vmlinux 0xec9ee123 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecb89cc4 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xecc61b78 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xecc71cc0 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xecd60d9b udp6_set_csum +EXPORT_SYMBOL vmlinux 0xecdcabd2 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0xecdf7d7b bpf_map_get +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xeceb144a dma_unmap_resource +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0a9e6f __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xed0ee4a9 phy_error +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed29f1a1 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xed2b5194 twl6040_power +EXPORT_SYMBOL vmlinux 0xed34ebbc acpi_any_gpe_status_set +EXPORT_SYMBOL vmlinux 0xed432271 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0xed455341 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xed465095 dst_discard_out +EXPORT_SYMBOL vmlinux 0xed48930b acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xed5418a7 open_exec +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed9ba7c0 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xed9ff96b fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xeda67177 mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc696b9 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xedcd14d2 sock_no_accept +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xeddcad95 netdev_err +EXPORT_SYMBOL vmlinux 0xede0c31a sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0xede31176 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xedf1c680 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xedf76ab9 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xedfd70c3 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xee15c464 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3545b8 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xee50606c neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee6bd984 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0xee7283dc pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee7f64d2 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xee811450 padata_alloc +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 0xeecd4957 register_shrinker +EXPORT_SYMBOL vmlinux 0xeee84cee rt6_lookup +EXPORT_SYMBOL vmlinux 0xef00ddf8 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xef03b567 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xef24e0e3 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xef64a66a t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xef6bc0a8 proc_set_size +EXPORT_SYMBOL vmlinux 0xef746f48 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9d3583 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefb9a0af xsk_tx_release +EXPORT_SYMBOL vmlinux 0xefbae169 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0xefc5450b xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefe330a5 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xefec7668 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefefec8a find_inode_nowait +EXPORT_SYMBOL vmlinux 0xeff95acf mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xefff40c1 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01ba856 param_set_byte +EXPORT_SYMBOL vmlinux 0xf01dad96 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xf0292fcf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf030c536 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf03d2b9e md_reload_sb +EXPORT_SYMBOL vmlinux 0xf03ee3c7 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xf0443351 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xf05c32ad rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf060c156 phy_init_hw +EXPORT_SYMBOL vmlinux 0xf063fa32 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xf0768b78 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xf08fc96f register_md_personality +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf09d4add xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0xf0a0588c filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xf0a4156e fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0a89be7 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xf0e23160 dma_ops +EXPORT_SYMBOL vmlinux 0xf0ed0742 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf121bdb4 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf1242178 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xf1373c13 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xf1608d1d dqget +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 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1a68107 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xf1d7dfe3 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dea443 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e2d3bb scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xf1e31716 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ebb3c6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf1ebd70c max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xf1f210bd tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xf2094d6a ip_check_defrag +EXPORT_SYMBOL vmlinux 0xf20baaea kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xf211dce8 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xf2143682 __napi_schedule +EXPORT_SYMBOL vmlinux 0xf21cffc5 vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0xf228af78 init_task +EXPORT_SYMBOL vmlinux 0xf23b71be mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2482b3f md_flush_request +EXPORT_SYMBOL vmlinux 0xf24ecdbc __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +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 0xf2b71787 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xf2b81b64 arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0xf2bdd53b security_inode_init_security +EXPORT_SYMBOL vmlinux 0xf2c20fdc kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d4a124 devm_clk_put +EXPORT_SYMBOL vmlinux 0xf2e1c4ef d_alloc_name +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2e6df6a memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xf2ec7561 freeze_super +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf302d70b dma_set_mask +EXPORT_SYMBOL vmlinux 0xf30965ac iosf_mbi_register_pmic_bus_access_notifier +EXPORT_SYMBOL vmlinux 0xf30eb9c3 seq_lseek +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3292940 lookup_one +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf343c9f0 agp_enable +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35ed470 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0xf36a13ee dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf3890b69 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf39e718e tso_build_data +EXPORT_SYMBOL vmlinux 0xf3a31308 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf3a3ddda __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3b9c356 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf3d36eab d_drop +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf41a820c jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xf41ed535 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xf4281a2f flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xf4338854 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xf435794a tcp_release_cb +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44010b2 inet_bind +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf44ecaf5 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf45b775f rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf463a6e4 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xf46ae9cb uart_register_driver +EXPORT_SYMBOL vmlinux 0xf46dc1ac simple_setattr +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47b5109 module_refcount +EXPORT_SYMBOL vmlinux 0xf47ea44a iterate_fd +EXPORT_SYMBOL vmlinux 0xf4877df2 inet_select_addr +EXPORT_SYMBOL vmlinux 0xf48ea65f nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xf4992abf i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf4a565fd wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c3b049 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5321c7a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf5324d24 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5480ebb pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xf562569d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf56535a7 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5a5c84c msrs_alloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5aea455 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xf5b59e91 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf5c3a3c5 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xf5cbfade cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0xf5e2d1b0 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5f5fe05 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xf608d967 unregister_console +EXPORT_SYMBOL vmlinux 0xf60ab926 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf6472b3e set_pages_wb +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf67853b7 inet_listen +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68312d3 skb_eth_pop +EXPORT_SYMBOL vmlinux 0xf6b7d362 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ec8b37 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf6f8adfd xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf700e3d7 component_match_add_release +EXPORT_SYMBOL vmlinux 0xf711f470 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xf7129a73 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xf722dd2a bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf740d115 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xf750b988 pci_read_config_word +EXPORT_SYMBOL vmlinux 0xf772a01c unregister_cdrom +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf7816a9a dma_supported +EXPORT_SYMBOL vmlinux 0xf79ca3bb acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0xf7c8d96c complete_request_key +EXPORT_SYMBOL vmlinux 0xf7ccc9e7 __pskb_pull_tail +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 0xf7f88368 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf8062fd2 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf807f09d flow_rule_match_icmp +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 0xf815940c dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0xf81d8b8d dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf831c77e devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0xf83a0df9 __folio_lock +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf854a53d mdiobus_free +EXPORT_SYMBOL vmlinux 0xf85d1974 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xf85fe4f3 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf8757588 key_alloc +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf89d3c49 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xf8a9087d adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xf8b1f3e0 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xf8b29747 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xf8bf5e84 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8e0aec3 dev_deactivate +EXPORT_SYMBOL vmlinux 0xf8ec8a18 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf90a1e85 __x86_indirect_thunk_r8 +EXPORT_SYMBOL vmlinux 0xf9289d87 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xf92da3af vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf94c3548 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0xf956aeb7 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xf96580ab genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xf9689025 param_set_uint +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf97adb91 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf98f2ee5 vfs_statfs +EXPORT_SYMBOL vmlinux 0xf9957f70 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xf99e37c5 ping_prot +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9afe305 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xf9b7bc51 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf9b9cfa8 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9cec651 devm_memunmap +EXPORT_SYMBOL vmlinux 0xf9e014c9 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf9e5b385 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xf9eeed03 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf9f6b30e lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa4b782c pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6041d4 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xfa7156d2 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xfa771491 __d_lookup_done +EXPORT_SYMBOL vmlinux 0xfa8348ec __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xfa852bd6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xfa93b247 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfa9e6eb1 dma_fence_describe +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfac19588 __clear_user +EXPORT_SYMBOL vmlinux 0xfac6822a rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfae9e7c0 napi_enable +EXPORT_SYMBOL vmlinux 0xfaec604a blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0xfaf424b9 __netif_napi_del +EXPORT_SYMBOL vmlinux 0xfb03b674 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xfb08527d d_find_any_alias +EXPORT_SYMBOL vmlinux 0xfb0d1d09 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xfb1e7d15 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb49f691 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xfb578fc5 memset +EXPORT_SYMBOL vmlinux 0xfb5c7e47 inode_init_owner +EXPORT_SYMBOL vmlinux 0xfb62dd4e param_set_short +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7fc988 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xfba190ca alloc_file_pseudo +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 0xfbc68249 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xfbe16712 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbfc179d dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xfc03fa55 param_set_bint +EXPORT_SYMBOL vmlinux 0xfc0eaa7d unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xfc26d7a4 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc36fbf1 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d53cb __put_user_nocheck_1 +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc461d17 from_kgid +EXPORT_SYMBOL vmlinux 0xfc5730bd sock_release +EXPORT_SYMBOL vmlinux 0xfc5e54d2 neigh_update +EXPORT_SYMBOL vmlinux 0xfc63035c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xfc755991 scsi_print_result +EXPORT_SYMBOL vmlinux 0xfc7caf3d unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xfc8241dc __SCK__tp_func_read_msr +EXPORT_SYMBOL vmlinux 0xfc922f78 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xfca2bfb2 __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0xfcaa8e10 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xfcc3df7c ptp_clock_event +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf0061c md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xfd060d04 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xfd1ae6c3 iget5_locked +EXPORT_SYMBOL vmlinux 0xfd53ce73 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xfd80acb7 serio_interrupt +EXPORT_SYMBOL vmlinux 0xfd93ee35 ioremap_wc +EXPORT_SYMBOL vmlinux 0xfd9b8cfa noop_qdisc +EXPORT_SYMBOL vmlinux 0xfdb03234 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0xfdb6576f acpi_set_debugger_thread_id +EXPORT_SYMBOL vmlinux 0xfdbb4643 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xfdc5a5f0 __xfrm_state_delete +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 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfdd9dc18 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0xfdfb792f amd_iommu_pc_supported +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe052363 ioread64_lo_hi +EXPORT_SYMBOL vmlinux 0xfe0a8ee1 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1f4abb folio_mapping +EXPORT_SYMBOL vmlinux 0xfe4470b3 readahead_expand +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe4cf548 flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0xfe4de1ce mpage_writepage +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e4c38 serio_reconnect +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe8cee26 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeb819b2 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xfebf1734 pci_map_rom +EXPORT_SYMBOL vmlinux 0xfecfc3c6 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeea0829 single_release +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfefa6d39 fb_show_logo +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff053c23 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xff13ba80 uart_resume_port +EXPORT_SYMBOL vmlinux 0xff14c90d pci_iomap +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff2ddcdb simple_open +EXPORT_SYMBOL vmlinux 0xff3a84a4 __f_setown +EXPORT_SYMBOL vmlinux 0xff52848a __SCT__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xff6197ad is_nd_dax +EXPORT_SYMBOL vmlinux 0xff6538a2 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff698667 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xff6d476f cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0xff812fde _dev_info +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff8fd952 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xffa86833 config_group_init +EXPORT_SYMBOL vmlinux 0xffaf84a3 cdev_add +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffbfce66 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0xffc2b604 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xffc30c3a acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffcd7f49 iosf_mbi_punit_acquire +EXPORT_SYMBOL vmlinux 0xffd77879 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xffda08cc phy_attached_info +EXPORT_SYMBOL vmlinux 0xffde5cf1 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff66512 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0xfff9868b __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +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 0x29ad6065 sm4_cbc_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x82e3afcc sm4_cfb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x92ea4352 sm4_avx_ctr_crypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0x9d60934b sm4_avx_cbc_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xad0a89a3 sm4_avx_ecb_encrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb2628c1f sm4_avx_cfb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/sm4-aesni-avx-x86_64 0xb9d055bd sm4_avx_ecb_decrypt +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x1f491d36 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x7c7bf6e0 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0x92a51c43 twofish_dec_blk_cbc_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb4e98a46 twofish_dec_blk_3way +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xe4ae7508 __twofish_enc_blk_3way +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00385d58 kvm_vcpu_reset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x008f99e7 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x03139db8 kvm_mmu_free_guest_mode_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x033fa3b4 __kvm_request_immediate_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0399e7df kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04e8b02c kvm_load_guest_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05215449 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053614ec kvm_set_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x05d584b4 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06cdc8d1 kvm_configure_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x071b1e3a hv_remote_flush_tlb +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x07a2973d kvm_emulate_mwait +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b463edd __x86_set_memory_region +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 0x0bee35bf __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bf5d6d9 kvm_hv_get_assist_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 0x0d4644a2 kvm_gfn_to_pfn_cache_refresh +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d8f4740 kvm_mce_cap_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x10b8bc7c kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x114eb824 __traceiter_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1235000a kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12964633 __kvm_is_valid_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x130fd155 supported_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x131dea07 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1412f042 __traceiter_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x153b343c __tracepoint_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15604479 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x159b8d5e host_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1701827d gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17de34fb __SCK__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17f9cfe3 __traceiter_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18901b6e __SCK__tp_func_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18da3079 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x192fa514 __SCK__tp_func_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a84f3d3 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ab4b5fa __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c6f24de kvm_get_running_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cdbf9ea kvm_cpu_has_injectable_intr +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 0x1f042378 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1fa85cc1 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2187e767 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x218c970f kvm_fast_pio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23263c0a __traceiter_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x236b6958 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23712e65 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2510fc6d __SCT__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2556ac43 __SCK__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25c07225 __traceiter_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26d4bb26 kvm_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27bec81a kvm_lapic_find_highest_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28411ed7 kvm_max_tsc_scaling_ratio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a7e059f kvm_page_track_register_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a8bbbff kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b1bd14f kvm_vcpu_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c5a3f62 kvm_emulate_wrmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d19d9ed kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d82cc24 kvm_spec_ctrl_test_value +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e4c0a25 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3180abed __tracepoint_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3201c2ff kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32431e44 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35e836c3 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36333022 hv_track_root_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x363a7c4a gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x369ae04c __traceiter_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38652124 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38825f1e kvm_complete_insn_gp +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 0x3a337259 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ab2794c kvm_find_user_return_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b3bd1c7 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c83c46c kvm_gpc_deactivate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d93fb92 __traceiter_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f510ff5 kvm_has_noapic_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f789f53 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40681bdf kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x409e22b4 __tracepoint_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x424bc55a kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x449f4dd0 __traceiter_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44e39837 kvm_handle_invalid_op +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4559d66a kvm_destroy_vcpus +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45e80fdf __traceiter_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x460d7592 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46daa85c gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4733bf8c __traceiter_kvm_avic_kick_vcpu_slowpath +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 0x4947821f kvm_handle_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x494a702c kvm_sev_es_mmio_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49aa9706 kvm_emulate_invd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49db2009 kvm_mmu_gva_to_gpa_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a1c261b __SCT__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b21af37 __traceiter_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bcb6d44 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4bd171d8 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c77e43f __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c7d95af kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4cf54f86 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ddadf00 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e30c1b2 __tracepoint_kvm_avic_ga_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ee76100 __SCK__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f2c44bd kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f2c7d68 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ffc14dd kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5140ff06 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52fa35f8 file_is_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x53d9f927 __SCT__kvm_x86_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5459cd76 kvm_vcpu_map +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x549a5df8 kvm_mmu_free_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54d2e55d kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5577b95a kvm_apic_clear_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x55fc161e kvm_wait_lapic_expire +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56a8eee3 handle_fastpath_set_msr_irqoff +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57341ef7 __SCK__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x57b66e61 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x587b10ce kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58d89685 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58f664e0 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59387ba3 __SCT__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x599062cf kvm_gfn_to_pfn_cache_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5aba5150 kvm_post_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5b3b8272 __SCK__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ba3aa70 mark_page_dirty +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 0x5c7e9f84 __SCT__tp_func_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d996b31 kvm_set_cpu_caps +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f911332 __SCT__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60526a47 kvm_apic_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x611724f1 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x616e6c95 __SCT__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x61efe7f8 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6243ac82 __kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x624822ad kvm_find_cpuid_entry +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 0x63e9a119 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x650d4862 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x652803c2 __tracepoint_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65a7ffae __SCK__kvm_x86_cache_reg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67490d5a kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67544a0a gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6756347e __traceiter_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x691914b4 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69a1d90a kvm_sev_es_string_io +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a6c25b4 kvm_apic_update_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ada8f59 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bab6cca kvm_can_use_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6becaded __SCT__tp_func_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c2bbc46 handle_ud +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c71e166 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c95726c host_xss +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70288943 __SCT__tp_func_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70b4bea1 kvm_mmu_gva_to_gpa_read +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7119dac6 __kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7263ae77 __traceiter_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x734a9751 hv_remote_flush_tlb_with_range +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7391fcb1 __tracepoint_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73f83e06 __tracepoint_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x743d6405 __SCK__tp_func_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7452b97d kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x752c2b00 __traceiter_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x75302b7e reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7674f773 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x770c66fd kvm_emulate_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x777f4ef6 x86_decode_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x778e30b9 __SCT__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79114dc0 kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79c85cf6 kvm_msr_allowed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79f35f93 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3eeeda kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aded389 kvm_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c3e7423 kvm_handle_memory_failure +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c94c99a kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cb65bee kvm_gpc_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f02e1e6 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f5e812d kvm_pmu_trigger_event +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 0x806b6e24 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e29255 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82e07e36 __SCK__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83085d42 __SCK__tp_func_kvm_nested_vmenter_failed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84430f0f kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84b5017d kvm_emulate_as_nop +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8518c965 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x851f67f8 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x860020c8 kvm_hv_assist_page_enabled +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a7fe54a __SCT__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8b618aa6 __SCT__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bd091eb __SCK__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c322c6d kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cf7c056 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f0d76fc __SCK__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x90df81a0 __SCK__tp_func_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x912a9286 __traceiter_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92c49138 kvm_vcpu_deliver_sipi_vector +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x933e5ad6 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93a3e40e __SCT__tp_func_kvm_ple_window_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93e4ad6f kvm_update_cpuid_runtime +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x944882ed kvm_has_bus_lock_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94deb13d kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9836378c kvm_set_or_clear_apicv_inhibit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a7064d1 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b54236d kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf42fa6 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9cf59e7a allow_smaller_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d6b58ae kvm_deliver_exception_payload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e20b2bc __traceiter_kvm_avic_incomplete_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e47eabb kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f68faa3 __traceiter_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f6da6b1 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ffaff04 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa09d2dcb kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ddba41 kvm_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa143e811 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa21e7fb9 kvm_apic_update_ppr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa24d1003 __SCK__tp_func_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa267d849 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa26b36a4 __SCK__tp_func_kvm_avic_kick_vcpu_slowpath +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3af3b7e kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa41e03bc reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa53665e0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa588ef67 __SCT__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa642f9b0 __SCK__tp_func_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa676aee9 kvm_set_cr3 +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 0xa784af85 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7a23750 kvm_emulate_halt +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 0xaa3ed364 kvm_emulate_monitor +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaaa42a9a __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaabbad7c __SCK__tp_func_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaca989f5 kvm_emulate_halt_noskip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad03c549 __SCK__tp_func_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad86acc7 kvm_slot_page_track_remove_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae7bacaf kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf869ca5 kvm_apic_match_dest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb122980a __SCK__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb32378f8 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb332b817 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3675fb4 __tracepoint_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb4f18587 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5344e41 __traceiter_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb62b096b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb63b0cbf kvm_emulate_rdmsr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb65bb249 kvm_gfn_to_pfn_cache_check +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6750a5d kvm_inject_emulated_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb82c0987 enable_pmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8b42fb0 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96e9aa1 __traceiter_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbacd4136 kvm_fixup_and_inject_pf_error +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb557161 __SCK__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbc65764 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd789e53 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd9d6dfc kvm_mmu_set_me_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc071e99f __SCT__tp_func_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1131580 __SCK__tp_func_kvm_vmgexit_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc150dea9 kvm_lapic_expired_hv_timer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc15d61c1 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc16dd6fa __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc19c1cad gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1ec027e kvm_slot_page_track_add_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc20a3be7 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2e6a7c3 kvm_mmu_new_pgd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc42e041e __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc587478f kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc60d7d0c __traceiter_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc6502d93 kvm_sev_es_mmio_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc696b28f kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc7ef7389 __SCK__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc96d35f4 report_ignored_msrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ffeec6 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca341ca6 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca527090 __SCK__tp_func_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca7ce33f kvm_arch_no_poll +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb7c1663 kvm_emulate_ap_reset_hold +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc1605ad kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdbb177d __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce22e98e kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce576a13 enable_apicv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf755ad3 kvm_prepare_emulation_failure_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfb94e2d kvm_update_dr7 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcfe5c33a __SCK__tp_func_kvm_inj_virq +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 0xd0a14fd7 kvm_service_local_tlb_flush_requests +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2142953 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2ef5b34 kvm_apic_send_ipi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd46371aa __tracepoint_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4744bb6 __SCK__tp_func_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd59ed9e0 kvm_post_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd629d80f kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6938fe7 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd837df0d kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd89aefc3 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd8a18502 kvm_init_shadow_npt_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda1d19d5 kvm_lapic_hv_timer_in_use +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdad2463d __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdae5e7eb kvm_queue_exception_p +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc464785 __tracepoint_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc7369fe __traceiter_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcea1dc7 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdec8a15d kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfa8c2d4 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0796e1c kvm_skip_emulated_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0e786a7 __SCT__tp_func_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0f146a1 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1d25080 kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3baf563 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3f75a74 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe499c4ff kvm_emulate_instruction_from_buffer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4a2e17a kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4f189da __SCK__tp_func_kvm_vmgexit_msr_protocol_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe824d316 kvm_write_guest +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 0xe9b92c33 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea082bee kvm_get_apic_mode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea1814cd gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea5cda33 __SCT__tp_func_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb4a37cb kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebcd8a41 kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef14fd98 kvm_calc_nested_tsc_multiplier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef23380d kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefdadae2 kvm_emulate_xsetbv +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf01bf3f2 kvm_load_host_xsave_state +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf084b57d __SCT__tp_func_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1625f49 __SCK__tp_func_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf19a02ba kvm_vcpu_apicv_activated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf298a7ce __tracepoint_kvm_apicv_accept_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2df48f3 __SCT__tp_func_kvm_pml_full +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf31ff814 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf32dff97 __SCT__tp_func_kvm_avic_unaccelerated_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4dc7f91 kvm_page_track_unregister_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf54e2886 __SCT__tp_func_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5a4ea34 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5b06929 __tracepoint_kvm_vmgexit_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf702d9e1 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8030416 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf84d2edb __SCK__tp_func_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8955a8f load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf96aa565 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa4f1710 kvm_init_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab33e4c enable_mmio_caching +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfae51aa0 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb038c8f kvm_handle_invpcid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd69c47e __tracepoint_kvm_vmgexit_msr_protocol_enter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdae9459 __SCK__tp_func_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe8a0c6c __traceiter_kvm_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfeeae888 kvm_gpc_activate +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff12560a mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL crypto/af_alg 0x09af83fa af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ffd8a35 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x1e002c3c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x2912ee04 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x33a47282 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x402fca70 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x56104e19 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b4c0979 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x631553be af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x670f7f62 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x6855049e af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0x81c87f25 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb95e415f af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0xbd9a6ff2 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xc9fa2dcf af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xcefe35ba af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xd536b951 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7f0494f af_alg_poll +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xd465a90e async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0d5cab6e async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe0aff53c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x897c14bf async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcea4f6d9 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x26c3198f async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x904f81c4 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbd0068ce async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf60233bf async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x33343137 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x44ac1590 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8fcac5ce async_xor_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb257c081 async_xor +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf6ad2db5 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xe2f9d5e2 cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x003b9cce cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x0dd8c321 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x3efa2d90 cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x5372d52a cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x59863ecd cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x5b0e1af5 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x5f264074 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x61a0d36a cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6ae3feff cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x76d727b7 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8f61af72 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xac2eaa9c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xc44ac298 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xceb64ed1 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x01786a93 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x04aec9fc crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x26409891 crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x60e2b863 crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x655f6a17 crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x73555134 crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9625224e crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xa0c2891f crypto_engine_exit +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xab14a1dc crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb35bf6d2 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd1fccb19 crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xd8a6aea5 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xdecddf2d crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xe67d42bc crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xf4e915ae crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x29ecbb87 simd_register_aeads_compat +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46dd1ec3 simd_unregister_aeads +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x46e0ca63 simd_unregister_skciphers +EXPORT_SYMBOL_GPL crypto/crypto_simd 0x4c2c7aec 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 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 0x0c733734 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 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa5628746 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1760506b synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x2b756bfe 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 0x53fa6c34 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6000f1c9 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6355187c spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x81b3de68 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 0x98a63b69 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaafae203 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xab7e9591 spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb4ff4e72 spk_var_show +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 0xcffb3ad5 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xd71e66d2 spk_synth_is_alive_restart +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 0xf40b9237 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf9c42a86 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfc17b54f spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x1f73c237 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x22473554 __acpi_nvdimm_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x426b9cbc __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x4639bcda acpi_nfit_shutdown +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x499bbf57 nfit_get_smbios_id +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xe120d07f acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xf22aaa15 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 0x0639ccbd ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x06e84c94 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x098aa7b5 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x09ebb87b ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0c97b168 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x27e2d1f1 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2b1402ce ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x30837ec6 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x542648ed ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b0df65b ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b65e6a3 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82983d28 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86bfdd78 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8af3c60c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8fb79e07 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x96cdd49f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xadb1ee6c ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7a0b1c3 ahci_shost_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc0f9c1a2 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd214d57e ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdc00bd62 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe946bbd1 ahci_do_hardreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe9b31dd6 ahci_sdev_groups +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf682fe8e ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x03e7e3b5 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x19e4d67c ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d00739d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x285f546d ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x303a8a32 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5e571a47 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x655c1169 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6bf04490 ahci_platform_shutdown +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f479988 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x72cb4552 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96eea2ad ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa060b07b ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbbd45b02 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcb14ebd3 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe4a26a2b ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf37c096a ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xca7d604a __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/auxdisplay/line-display 0x652f0c22 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xfbef1037 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x29f723ad __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x75194fc6 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0xb9d898de __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0de9f76c __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x31b3b063 __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x84aa3467 __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xc627762d __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x180fb52a __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0xfc974921 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xac83790f __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xb50ce3b0 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3625ef71 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x3d229bdc __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x59ba0497 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x85118858 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xa05bd272 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xaf4253b4 __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x001e282e bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0041d50b bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05fc5ba2 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c794d46 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1cc8d98b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3a13743b bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3bdff497 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4036c917 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a07a95d bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5893aefd bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x617c1349 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62428c2a bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69156313 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7ebe6144 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84fa7635 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b14c053 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x977de5ec bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa643c161 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbcf9caeb bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3ab454e bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd418b579 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf76c2a12 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfdde3a91 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff54f2b9 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x001c2fdb btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3d3f2242 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8637e96b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8670904e btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8d9e6034 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2e71288 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe44eb078 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfe4f72e4 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x030bccb7 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0ec5a438 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1b40fda1 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2a270c6f btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x378668ca btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x61ce8757 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6333e12c btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7e561e87 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x85b68094 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8ea55509 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9a760098 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa27892c1 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef649092 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf6c5e1fb btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf931f924 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa98e1f4 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfb120fc5 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x370b60b1 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c4caed9 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4409bd3f btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x52e8fdf9 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5df74fb9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62865372 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62a63e29 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc361388c btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd21e9d01 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe72225ac btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec8b56a9 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x0108c3ba btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x7d54c627 btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xa4227c6c btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5f0d3909 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7a0ea7b7 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8faa6253 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9079a67a qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbe70d6f4 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1f13296c btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x254b2db0 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xeaae186e btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xedee0432 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf93b0724 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xfc41531f btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x35e569f2 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x76827f4d hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcde0706b h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xec1d7c00 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x095a60cd mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x2fb2b2e8 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x6dcb0055 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x79b1b442 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb52d123d mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xb5fe3027 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xda7a8186 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe85dbf7c mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0094e5ac mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x06790e75 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0825893a mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x09d4befa mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x17995fca mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1a8c64c6 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x44c23ed9 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x480bd91a mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4cdd5ebe mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4ee33d1e mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7a2599fe mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x891541af mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x94ac23a4 mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x97270ca1 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x99d6ba9f mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9d9f7cb1 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa34f3c5c mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xa960ae7d mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xad6628e4 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb4f16611 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb759aa06 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xbba54ac6 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcd1fe7e1 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd25e025e mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd814c547 mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdacc0fa9 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe63a0d2e mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe69f793b mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xee592cce mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfc10da09 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xfe1cce85 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0c934552 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1377df90 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x18a61fe1 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1fe6f273 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26543918 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2e3dabf4 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x31d98860 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3206c5a3 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x339e7845 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x37393bf6 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x3cac1068 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x455f8997 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a8598a6 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4a85da45 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f077954 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56653c44 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56e6ae0d comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5fe8f778 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6d181684 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6db7637c comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6f4a793c comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x830f85ab comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x85b1fd63 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x87b0cc3e comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8ad9cf6a comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x95a93237 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa27219a4 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa29e4e33 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa7e9d293 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb845f702 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc384d827 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xca0e1867 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd257e68d comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xda64b828 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe6eb5682 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfb1b6e98 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x0dcd51b5 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x30e1c33f comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5004af2c comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x96767102 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa2c50c84 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa415c792 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc2a4b0bc comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xc3fe568e comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x2d0e9014 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x7b4ca963 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x7e4ca37c comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x841cc9ac comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0x8ffd209c comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xcf6ec9f0 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pcmcia 0xf3927dce comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x168f0b68 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3c5be659 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x427fa1a8 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x53b84e81 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x9002a8e7 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcaa20c25 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x84c0366e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1b48e090 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x2d91971e amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x15285c9d amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x088274ec comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x19910869 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x667aee48 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x75ac6efd comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x8c5d86e4 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x93bae22a comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xaadf43d2 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb058aa74 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xb8ef3a66 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xbcf1463c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xde9bfa6d comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe7550589 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfa4aec65 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x2dff22b4 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x39007334 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x96f0eb94 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x05b70861 comedi_isadma_poll +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 0x56020041 comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_isadma 0x884f2545 comedi_isadma_alloc +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 0x3c2d3861 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1c6ef8b0 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x306b2dab mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x523f8964 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x64d97d5e mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x67f5ddd8 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x77a1e1a0 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x827693bc mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x95bdad3f mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa2718b12 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xaf9f8f69 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xb27690a1 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc4ddfa78 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xd5438578 mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe1b5cff8 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xe65e2548 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf045cc64 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x69d70bb4 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x8ff690ee labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x5f24a79a labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x6cf25cd6 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0x9f494882 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xca0cd941 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_isadma 0xe8605397 labpc_init_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 0x07a5b5cc ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x0bd96367 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1c5c43d8 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3ba3e5a3 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x40918199 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x41e3c7fe ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x46b3bdce ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9c71fe33 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa90e64d2 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xbcd26347 ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xccbf1f5c ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xe03ff0b1 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf29df597 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf6947c3b ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xf9c00c35 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xfb56bbed ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x2af210d8 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x302bb0c1 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x409da07c ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x58ae0c1f ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdb892e30 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdf82fce3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x2098d8c9 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6d0a5c41 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x73ee663e comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x984c1847 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xb0691caf comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xc16c94d3 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xfe7beb42 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/counter/counter 0x46582b9f counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x951d6740 devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb4d0088d counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb5a88507 counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0xd94cf967 counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf377b121 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0xf942b4df devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xfe8c1604 counter_add +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 0x37a69165 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3e059f28 sev_guest_activate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x4073e924 sev_guest_deactivate +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x843d6541 sev_guest_decommission +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x8fac14a2 sev_guest_df_flush +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x91722dce sev_platform_status +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x9520dd80 sev_issue_cmd_external_user +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xd02e197f sev_platform_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x042d14a3 adf_gen4_ring_pair_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x05bf8b91 qat_crypto_dev_config +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x078080a6 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0d96e5a7 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0e0a5b3f adf_gen2_enable_error_correction +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x10eaa675 adf_enable_pf2vf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x123007fe adf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x12755804 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x192c905a adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1946541c adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ad8301c adf_pfvf_comms_disabled +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x20ea1af7 adf_init_admin_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x23890d40 adf_gen4_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2b6f8c69 adf_gen2_get_num_aes +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 0x2f80ee7b adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x31c7f50b adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3889f1bf adf_gen2_get_num_accels +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0a0f09 adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a0b436e adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a8963f9 adf_cleanup_etr_data +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 0x4275867f adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x52ca2b75 adf_gen2_get_accel_cap +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x567bb5a4 adf_gen4_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5744609f adf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x58f2ef8a adf_vf2pf_notify_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x59fe963e adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x66a97f7c adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68644bf3 adf_err_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x68cb2013 adf_gen2_enable_ints +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6afe4eac adf_vf2pf_notify_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6c499687 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ced9fcb adf_gen4_handle_pm_interrupt +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x70e75ee4 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x831fccfa adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x83f9e9a6 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x84978564 adf_gen2_init_pf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8bf6c987 adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91b6f82c adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x93340f2d adf_gen4_enable_pm +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9421ec3c adf_vf_isr_resource_alloc +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9612b54f adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9adf93a9 adf_vf_isr_resource_free +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xab87a71d adf_gen2_cfg_iov_thds +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb20a52ed adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbb66ed49 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbcfd9c18 adf_dev_get +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 0xc9e15932 adf_cfg_dev_add +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 0xcc84c9fc adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcfaad3ae adf_gen2_init_vf_pfvf_ops +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd585a4ff adf_dev_stop +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 0xdcc1f233 adf_cfg_get_param_value +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xddc6f821 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe4da6de2 adf_flush_vf_wq +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xe7a60b5d adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xea2e576e adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xecc8a8a0 adf_reset_sbr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf1653d80 adf_gen2_set_ssm_wdtimer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf8031a7a adf_reset_flr +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfc71ecef adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x593e787b dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x60432df9 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x608d2847 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x7ced181e dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9de4543e free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xa3ce5998 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 0xde1785e3 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe8be430e alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x6c9d213b dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xc7a8961c dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x05d584ad do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x124963f7 dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x288e08bd dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x30102e05 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x834e0b9f do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8bb8c4aa dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xad907d16 idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb56d6415 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xce124ed0 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x88754cac hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xc0e78fa0 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 0x135db79a fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x060ac317 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x0c26e9ae cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x40ef400e cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x478838dd cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e83ebb4 cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x66232b27 cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x718da86a cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x78621f78 cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x78c7488b cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7accfc7c cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x8982aeab cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa0609663 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xab7591bd cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xaf7a4e28 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xaf9607e4 cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb71f9d0b cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbbf13cf8 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbc04c878 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xccb0de81 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xdf1122bf cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xe3f875a8 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xee5410c7 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfa831d34 cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfe0234c7 cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x94ee2f81 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x048c9c34 dfl_fpga_feature_devs_enumerate +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x06575c55 dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x14cf254d dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x19e9030e dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x34a507a7 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x40d95b4d dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4dcd09e0 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x53cd3cd1 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x55175e63 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x629e3d3c dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6713bb8b dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6a5eed44 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8636d54a dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8c3769f1 dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbb309d86 dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbda79463 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbe9d9d2f dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcd950ddd dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdb5ab391 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeb9adeb6 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeeeb34e7 dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfaffc38d dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xfedc2888 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0633c4b9 fpga_bridges_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x0b2b884c fpga_bridges_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x1749bb9f fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x2c8167cf fpga_bridges_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x3c9f1fc1 fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x5ed68eb9 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x69483a11 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x86ab1230 fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x8f56a9ef fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x965c288a fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa9978e35 of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xbc71be01 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x074c5ee9 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x16111223 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x22d6dcbc fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x25f21d37 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x42542392 fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5726bfc2 fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x78c3010a devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7df7b8a1 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x86302129 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8cbd5fb9 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x929c63b0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbe98834a fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc61595ea devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x3ca06d9b fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x774fa4f5 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xa31518a4 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xc153fa5d fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0xe20a80df fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x30e5c6c9 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3c845760 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x95f2d550 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x982fa87d gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xc40eb1f6 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0e4ee0ec gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x2997f532 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x37f00dde gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x61eb58aa gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd38a1262 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x30cee0f5 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xec679bc6 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x05266433 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x320e0fe6 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 0x4347bb98 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x5a5d6048 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xc7b8e3e0 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xda4f9a4f analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xe00cc0d0 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf156045e analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0x54ea6cb7 drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2498b8e1 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5976e8cd drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c8c5845 drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x74bb4309 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7a848bf3 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7e46a5f3 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x899ab751 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8d3e129c drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe15ca48a drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeb073046 drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xefab1d49 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xefce5eee drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfdc9871c drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x0afbf926 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4598c8ec drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4d9db3a3 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4e5eebcb drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x5abf1fd5 drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x8a671d51 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x97887165 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa7c839ef drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd7ba37cb drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf362845c drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf82d5e11 drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xfc930774 drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x211f1fb6 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x2aaf6e54 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x36ce3bf4 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3acac0c0 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x4e19f60c drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x59d381a2 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x928ddd7b drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xb0a162e1 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc362f8e8 drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc004eee drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x393622fc drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x5d362589 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6dbd6e6f drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6ff424fb drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7e5ee7b6 drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8c548888 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe82e847b drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xe83b13ac drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x0424f81c ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x0d72d2a9 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x3f28acec ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02b93ca4 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0390a614 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04226a8b __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0653147d greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x08b3fc75 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x10cd2f6d greybus_data_rcvd +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 0x1ed4415a __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x298ba8a2 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e4346a0 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x30b4c530 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x357744c2 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3728f63c __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3833434a gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3a2f90dd gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3b30a5a8 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3ef9c2e7 gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5008f0b9 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x52969bca gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x59b155ad __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60cc78d2 gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7469a96f __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x78fedb98 __SCT__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x798fa492 __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7c5d703c gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7ec3dcb8 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8006ccb5 __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x834ccb37 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x86420a44 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87f43558 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x884ff6c1 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x890b2387 gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8d43b7bf gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8ff706d8 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9c0fa840 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9db604c1 gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9f935529 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa32a16af __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa77445a0 __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa7ffa145 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xac950016 greybus_register_driver +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 0xaed0d6f1 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbfb52284 __SCT__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbff4d91f __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc591155b __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0bf258e gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd1c26d38 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd35cf8d2 greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd4f930ab gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe4ba51af gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe6b45fb6 __SCT__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xebfac11f gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeeb215b1 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xefffc4de gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf227fcff gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3ab01c4 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf4b13ce6 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf660475e gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf88749b0 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09acd58b hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09c37f38 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0c383056 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0e67f3b5 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14d61ebc hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x184a19c2 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a9a6431 hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d8f7f73 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fa4b06c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2784e977 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2a65818b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x45ff7a21 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a77732b hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b5fdb4e hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b73033b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4bbbc10b hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56f0bd46 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5b6b3bd8 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60b295d8 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x65ce9d95 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c64857f hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74dd3e6c hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7db80d94 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83bf24d3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88183d28 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ad82d1f hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97c88cd0 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x97cff5fb hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x982e11c0 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x984beb8b hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b962924 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9cbb9986 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa795d0d4 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba7b6f9e __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd0f9cba hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc19ba75b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc2d7a825 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5cd2b6d hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce353c58 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd043b6aa hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd35985d7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde0beecd hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe489481c hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee69e293 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef59f5fa hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf71e7903 hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb6b807f hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb9510ec hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd347a23 hid_hw_open +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 0x7ebb2fe9 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x314f3da3 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x510595d8 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x63f9d6da roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x901fa1f5 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9821de06 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc0ab6202 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3caefe47 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x520e0020 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5917019f sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8a80eac3 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9424f1b9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa4b69403 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa5519dd1 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbd41e178 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe646526b sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x69d398ba vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0xe4c53d68 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x04add0a9 i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x182d735f i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1fead4d1 i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x66cf5986 i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xd8b3ba67 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/intel-ish-hid/intel-ishtp 0xc991576d ishtp_wait_resume +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x98136769 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xa05e0204 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xcca42d72 surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0xeb020c91 uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x635781f6 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf3071057 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x093e2438 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1fbe3e17 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x20484e73 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2dddc5bc hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2e1ce8a7 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2ef376b2 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x47c4875b hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4b93d8ba hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54936142 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a114d8c hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94f9d844 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa2d0d22c hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb84ba1be hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd129c8ee hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd280c934 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeacffa36 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec27250b hsi_release_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x01c5a00a hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0cef8c01 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f2e75ff vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1778b4ef vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f47d719 hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2176133f vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x262b2202 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x28127ae4 vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2bc7dca5 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31eb1e9f vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40844a7a __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4a684137 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4b2210b8 vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4ca0e584 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x582ad123 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5e841a02 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x60ff139f vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6274a733 vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6f3575aa vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x978d18ee vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9dce079e vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa44a5e0b vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xba0bce19 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbe6c738b vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbffd6883 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc239527 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xea6cc359 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xebc8a1e2 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf555343c vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfa1c962a vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc44367cf adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xf966d82c adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x5cbb5274 ltc2947_core_probe +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0x6663225a ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/ltc2947-core 0xbc54f93e ltc2947_of_match +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x1de03213 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2302f338 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2b45682c nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7a389130 nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x7f99a25f nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0xec67bc0a nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x009468b8 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x147fd3ad intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4229b0b9 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x625fe2f7 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6e71d740 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa0b67cba intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc360e6ce intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc58a1363 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcebe0847 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x373f1d8c intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x7d4425c1 intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa237b7d2 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0dfbda1e to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x22aa0d4f stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2ae7f0b9 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2c089be7 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x39670e78 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9c2778e5 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaa44af88 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xadb3e2ba stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe884e983 stm_data_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x0ccd58ed amd_mp2_find_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x3f5baf6b amd_mp2_unregister_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x54aca392 amd_mp2_rw +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x81ed3cae amd_mp2_register_cb +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0x9223b215 amd_mp2_process_event +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xb523d60e amd_mp2_bus_enable_set +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-amd-mp2-pci 0xd64e626d amd_mp2_rw_timeout +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x135e572f i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xdbdf4696 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x7d9db6e8 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x87cd2e18 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc6d733e9 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf5e8099d i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc02f059c i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xcd2d78ed i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x16345249 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1c1a94b1 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x30e94f96 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x435b64c0 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4a0c645b i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x56c53fb6 i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5bbc9149 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x64d9d7a6 i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6a6d74bd i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76d941a9 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x8254dacf i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9558202e i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa3a697eb i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xaf2795d4 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb68e454e i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc9c46962 i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcbb6fb7a i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd53ae040 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd85eb5fa i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe1ed9e90 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe6be93f6 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xed413560 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf083684e i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfccc2bdf i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfd54eb99 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x241c7c80 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 0x716ecdd5 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 0x99a99363 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x9acf62ab iio_channel_cb_set_buffer_watermark +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x055fd1f6 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0de9b4d2 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1ec66591 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x454ed110 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x5160e775 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x533760db iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa97746cf iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbd123b60 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xceaec388 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xd1f376e1 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xdb1a39c9 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe8de1aa5 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0xbb07eacf devm_iio_dmaengine_buffer_setup +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x2231ff69 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 0x749087ee 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 0xbcd09367 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x62367f3e devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x0c9d1164 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x0636f3bc cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1382e288 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x35367777 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x67e5e252 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x7e8699da cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x85e096b7 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8b26374e cros_ec_sensors_core_register +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 0xcae167fe cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xda374ac0 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xefaf9f23 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0xf493616f cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x3b235de8 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x60c210b3 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xb96efeae bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x2714519c fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xb53e02f8 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xdb8b73e6 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xe53f6b29 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x5f84b6cd fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x4cb2c9ee inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xac7f5f07 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xdab833d8 inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x165c92f0 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xada3e8cd inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x064cb05c devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c81ce5d iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x20a34e33 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x24ffbfed iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x251b8636 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x253baba5 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28698644 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2dfabbd8 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x368f7567 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a262adb devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a7ccb90 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c1c0122 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c629cab iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4b9bc8cf iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4e551294 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4eed5be1 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54343ec6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x56e8f29f iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6055ff02 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x672d9d07 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6cadd974 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x736fb4d5 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x76ed55a9 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x771d9db6 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7ce3b70b iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8385b164 devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x857fa066 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x867ba245 iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95fdd6c5 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9927d438 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa77fa23 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0bbf1f3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4704213 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb4a7b558 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbff1907 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc38d6ada iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc5ad29d6 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7dc33d9 iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8a3baa0 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc9e6d4c5 iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcb78182d iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd92e945 iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd5a37b87 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd6097a46 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd685d2b8 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdc834b4e __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xebc261ee iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xefa5e34b devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf00b756a iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf211aa20 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfd646439 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x0186fc52 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x158e671d rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x33459080 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3c5248d2 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x66a07993 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x76339c94 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x863e5a77 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x8f1be426 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x9ce8b6ac rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbb4c21f8 rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xbd2fd2c7 rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc0e49e0b rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5f1820d2 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xfd348584 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xff284709 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x07cd51bc rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3b129337 rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x46b94e05 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x4e85ab57 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x7883a7a0 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x80e0c597 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x856facf5 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa7f5092b rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xbab7e4ed rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xc6cab280 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xca822fb0 rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xdf026620 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe0a248d8 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1d13bedc cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x782660c2 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xdc02d59d cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3a1a7eba cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5ee595e7 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x72361ad2 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xc0719edc cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x090bf004 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4b42dd60 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x950731fa tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb84ecff2 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x085b93d7 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32c02ea2 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3728e45f wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x45a67349 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7900f05d wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9015ea51 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xadf1edcb wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb2efcd37 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc36ae529 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc4f19349 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc72b51b2 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd94f8e13 wm9705_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x21d9d9d7 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x62a5d9dd ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6899c3cd ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x72ba7100 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7bbb653b ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaef3d7d6 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbf054b8c ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc5a1b60d ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xded98b68 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x18b79544 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1ba45c5f devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x512c3ff8 devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7ac77a1a led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x82193006 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x8abe09a0 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9a8aa93e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdeae3fc6 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x21d9d260 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x41a46650 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6079f77e led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x6cd0612e led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x8023f7f1 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 0x00521e89 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0132c108 __tracepoint_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0a413ce5 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0b0d4323 __tracepoint_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0d2e4a6d __SCK__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x13bf04f1 __tracepoint_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1666207a __tracepoint_bcache_gc_end +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 0x1e004e33 __tracepoint_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x1f2d52bf __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2128efef __tracepoint_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x21b87a42 __SCT__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x227411dc __SCK__tp_func_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2334fd97 __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x238bd563 __SCK__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x25cacb14 __SCT__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x261f7a69 __traceiter_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x26c59e10 __SCK__tp_func_bcache_request_end +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 0x29590fb9 __SCK__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x297e0da3 __SCT__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2b84d820 __tracepoint_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2ef2f3f9 __traceiter_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x300c8ff4 __SCT__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3203cf6d __SCK__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3450c144 __tracepoint_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x351b4037 __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x36f317a4 __SCT__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3bc6689b __SCK__tp_func_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3e240310 __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x42e8dc38 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4543b49b __SCT__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4850420c __traceiter_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4c18e421 __tracepoint_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4e49da58 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4f7b7acf __tracepoint_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x513785a3 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5dd80bd5 __SCT__tp_func_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 0x64fd8264 __SCK__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x651e52aa __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6677ebf0 __SCT__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6bd18eeb __SCK__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x727c134c __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x73d82d01 __tracepoint_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x751365c4 __tracepoint_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x752f7fa4 __SCT__tp_func_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x77862819 __tracepoint_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78634d5e __tracepoint_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x786f3120 __tracepoint_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x787810b2 __SCT__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x789b9b43 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x78de5e41 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d67c0e0 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7d87bfba __SCK__tp_func_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7f252e00 __SCT__tp_func_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80cdfea1 __traceiter_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 0x81d1afdc __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x822db771 __SCT__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8506e203 __traceiter_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8754958c __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8e5ac98c __SCK__tp_func_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ef2bb07 __tracepoint_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8fb2b4ac __SCK__tp_func_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x935a5fad __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x972aa384 __SCT__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x97fb7067 __SCK__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x984e91fe __SCK__tp_func_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9b6f380b __SCK__tp_func_bcache_writeback_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d28d153 __SCT__tp_func_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9d65a938 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa15bd7c4 __SCT__tp_func_bcache_btree_gc_coalesce +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa19368e7 __tracepoint_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa29c297e __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa2eb4028 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa460084c __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa784e073 __SCT__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab598e88 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab6cb6b8 __tracepoint_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb1183691 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb26a984f __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb414b04f __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb7e5379d __SCT__tp_func_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb8b513f1 __tracepoint_bcache_writeback +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb37a494 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbb733bc6 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xbd5ca75d __tracepoint_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4a2c793 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc73e0c99 __SCT__tp_func_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcb8fa407 __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xcba8605b __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce451ad8 __SCT__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd30206ff __SCT__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd4860692 __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a376b3 __SCT__tp_func_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd7a7fbec __SCT__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8566e4f __SCK__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xd8f40e7a __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdb0682eb __SCT__tp_func_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc0425aa __tracepoint_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc870232 __SCK__tp_func_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd4590b6 __SCK__tp_func_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdd9871be __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe18326f4 __SCK__tp_func_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xe3497e77 __traceiter_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xeb40c348 __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 0xec64f12b __SCK__tp_func_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xedf90bb3 __SCT__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0d0f80f __tracepoint_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf0e5e221 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf3368a7c __traceiter_bcache_btree_node_split +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 0xf7f6f339 __SCK__tp_func_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xf8c6ec44 __traceiter_bcache_read +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 0x0680a730 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0c373b45 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x24b6af57 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2cf432ea dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x423897e8 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x427073a5 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x573f2589 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5c3bdb46 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 0x6afebc37 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7f5c4ffd dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80f01da1 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8243b806 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca8c826f dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd2b84054 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd745c09b 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 0xe03b4822 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xed6a776a 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 0x76c45415 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +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 0x393e5e88 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 0x67ddef1f dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 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 0x5bb6fc0b dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x86005b4b 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 0x3d49639c 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 0x754fc992 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 0x81016907 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x87b8e3f0 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 0xe86d2523 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf7db605d dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +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 0xb54e2ddb dm_block_manager_create +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 0x0267e810 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x12161529 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x219e66a3 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2bddcb22 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4a35a975 cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5f72efb1 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x61d1e257 cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x649ba5da cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6796e233 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6e1bce7c cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x78bc0695 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e5d92f5 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8267b879 cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x907f0d09 cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x91db9dbb cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x93929d3d cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9feeabe6 cec_notifier_cec_adap_unregister +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 0xb237ec03 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb34c6e19 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb7b04a89 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbf879ca1 cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc0b4ebcc cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x21e15a51 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x24ad84f0 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x29279f35 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x32ec4539 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3ac7515b saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5d6a71e2 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7b1324b8 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb55829f2 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd3098002 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfbca058a saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1a3c191e saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x66b04325 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7436cddd saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7e38503f saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x88022b93 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbd3a544c saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcc9f5148 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x02740793 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x064ee865 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e35a26a smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14dfce73 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 0x557b8170 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x56fe703a smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5be2a131 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5d0b1a4f sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5e2bce1f sms_board_setup +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 0x8abcd474 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c3b3521 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaaf5d276 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb866dcba smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc180e4b8 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1925c6b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd33ea180 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdcc848d7 smscore_putbuffer +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 0x01a2b54b vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0b6b7c18 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e3642ee vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x0e776adf vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1599d1b4 vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x16c37d42 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x19806de5 vb2_core_qbuf +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 0x2ed7d56e vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x352545aa vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3da57c27 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4b4c7590 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4e5af17a vb2_core_queue_release +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 0x58ceddcf __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5a60c533 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f1df0f6 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65735dcf vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x65e49711 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6947830b vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6ffbae17 vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7fa9efff vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x83197245 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x84e990f1 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d61a17a vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8eee0ab1 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa059bb6f __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa45ee482 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb488cda8 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbb2ea3d4 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbf003a02 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc036a0c3 vb2_core_prepare_buf +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 0xd03be012 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd2a49474 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd51cf097 __SCK__tp_func_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdd821dc8 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdf947a96 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe3393a4f __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf87be3f3 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x8391f5a1 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xfeaad0f7 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x0ad34855 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x3318a4bf vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x02670e1c vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0327b76e vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1194c49b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13731998 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x15d4a44b vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x196bd835 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x19e0076b vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e12ff05 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1e50e9a8 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x21f2d5af vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x2b544cfe vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3759e961 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x45e4c886 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4835336a vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x488047af vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5e742394 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x61aeb5ec vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x66cd8a83 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x71c59515 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8153141a vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x89fb8785 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f89b86f vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x908e4654 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c6244f6 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xae4978aa vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb4a67eca vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc171ffba vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc438fd68 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc6c328d5 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd40e80ec vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4b27c67 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd65b5754 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf0f9cba8 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf413a918 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x62d60c0e vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x348fe851 dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x6d4b7d83 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x77ea5b75 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x0425070f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xd740d46b cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xc829faab gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x7a2fab2f mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x4728a579 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xb6516e81 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc8cb403e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0xcf4b53bb aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0xbc2c9e95 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x03f626c1 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1dafb7d8 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x2119bf33 max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x25070f81 max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x281c4e70 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x66a06498 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6cb5cfde max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x70d251f9 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x827355fb max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x85c0bb5d max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xba2fb67e max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc875d431 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xcbff5504 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x047799d6 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0c5fb1f8 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x110bd7c8 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x12165e55 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1a5506b7 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1d354a0f media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f01ed5e media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1f0591cf media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x30280162 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3aa56316 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x505653d2 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x53807f79 media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x56ae8325 media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6461633e __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6a29ad7a media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6c5580ec media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7d398668 __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x81a10bcd media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x82b75b68 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x86761110 media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8747cbad media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ffaec96 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94566c75 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9eebaf4c __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa94846c4 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xaabe10cd media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb4c63a16 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb71f2623 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7c95515 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbe6e1f4f media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf5a7230 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc3ef4c85 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd42d328c media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6c08ee8 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd750105e __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdedd0773 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe020369b media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe3a6aba0 __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5cc3bbf media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe6211e90 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe7f7a95d media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe84468d6 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xea8f6f65 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf4dbc263 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf9a18ade media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff82798a media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xffabfe2b media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x282f3e72 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x147b6a63 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x14eafcac mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e073128 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2161be79 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2f6da9c2 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5463b71f mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x73972c08 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x756f2ef0 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7d42d33b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x852cd0ff mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e803fb5 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91cb48c7 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x95ee7b65 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb21ae072 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbe1a93d6 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe6083696 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xec179b3b mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeee065b8 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf715eb6d mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0da8fd9d saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1e0e416a saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2ce929c4 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x312e1e8d saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x44877a57 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a6fd167 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4eb858b3 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54ce570a saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x572827a3 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x761002eb saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1a787a0 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa4a82d52 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb36dd3bc saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbce7a39f saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd3d1da2 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc784d040 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xde58d2bd saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb95144f saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xef8b8118 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x179d3a17 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2d2ac005 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3cfb7d63 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x60fe6263 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 0x88ea8e8a ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa56e8c96 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd7cb8265 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x59a1c9e2 mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x6c5c77c1 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x8dde6039 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xb2fcfff2 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe1403353 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x4193bada radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x51058f9e radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x2abec532 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7d0d430d si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa6de61bc si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xcf5ed23f si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xe9ff4e7f si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0338023f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0abdd935 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b6623e0 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2754238e rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x29a7ec1f rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x48de5314 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x671bd27e rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x678d3b6b ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e1c8fa6 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7982c403 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x98f6ab67 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9d26ef8c devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb8c04999 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbc9d303b ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc0ab252d ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9227e24 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe6ced1f8 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfe09e508 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x2e982f2b mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xae668952 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xd508ed19 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x160f673f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4e667413 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x979fa7df tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xce20b483 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf24a90e6 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4d3999db tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6bd89f14 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xeb38758b tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x17a64364 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x44544d07 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3683d211 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x094d4b6c cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18bc2fe3 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3cd0446d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47b8a5b4 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49bebcfe cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4e36da2a cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x540bb133 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x657d8960 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x65f6de24 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6f5c0b47 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73c49f8c cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x851b517e cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8af176e8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8ee237fe cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa705b99c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd1ff0ed cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc70d16b9 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcb05c272 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf26b8e9a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf87b1572 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x82cdbc47 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x689c5b0a mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ddc2e7e em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d8568d3 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d965ba2 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x48076749 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x62811be5 em28xx_set_mode +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 0x8c9ac926 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x93015694 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9d805642 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa83d8e82 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xab37a250 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9775b45 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc074c8d9 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc5cb9389 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc9bdbef4 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd273cc57 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdef073ce em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xec5d6098 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf3845f15 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x3d2b9bf0 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x55c2cb94 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa4ccde65 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa7ad83e8 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x47d35c6e __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x806ada89 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x83fa2d4b __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x93d5af12 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x95ad4db4 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x2c6732c9 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x67119dfd v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x8920fe78 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x232622ac v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x40fc8bd0 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4cadc51d v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x51bc634b v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5566e3fb v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x612ddce5 v4l2_fwnode_connector_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x6fc317b9 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x922f3927 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xced7957d v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xddd6d1f6 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xebb6f6c2 v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x08af1a58 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x11049c69 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x129b7024 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b1f1177 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x211d55a2 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21e2f854 v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2d9ffbbb v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x30701363 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x354c2377 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x379fae44 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x442eb63a v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4d147cf7 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a18d16d v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5e15cbf7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6009b35e v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x621fc2ae v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x635dc3b0 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63b44f14 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x63daef36 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x658fda4f v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7c9151eb v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f08b1c3 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x80ef1b44 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x82a9033e v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8e80fb04 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x939addb9 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97091e8a v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa39c0217 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xae4ecf79 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xafd97d6e v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb7285834 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb68d9e8 v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc4459140 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc73f9894 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd97c74d v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2cfe526 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe307b210 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe46f5234 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6d7e172 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1182d44 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3df33b2 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8e0dd2d v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc30d378 v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfcd66482 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x02eb9a43 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e24e4dd videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1ee58185 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f0008c3 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x34517bee videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35728546 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61330ff4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61600f47 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6e47a786 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x78741d41 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ee14fd6 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80e60e62 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x982c3b3f __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x99c2c4df videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa8123001 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xae40cccb videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xba816dc6 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbdb1d915 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe9075ae videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc1f58387 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc639098e videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe86a6991 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf72f7afc videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff39a47b videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0c7d69ab 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 0x7cad7f89 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd8027064 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xeb1847bc videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x0ea3c7f6 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x8352ceaf videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xdcad52c5 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0a03ea5c __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x153c8f69 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17cdda87 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18351d48 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x18b76d3b __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x19bc38de v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x235b35fc v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26d096a6 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x279ee293 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2a34decc v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2b238e85 v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c9b5a60 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39bec55b v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ae77b00 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f660257 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x44cfa3a6 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x458feb61 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47867d9c v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4fea6e62 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x515f948a v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x57cf9395 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x65b1902c v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67e8b60f v4l2_subdev_get_fwnode_pad_1_to_1 +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 0x73e6367e __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x79155ccc v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7ae0616e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b91e291 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c6e2bbb __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7cf03813 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f571ab4 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82727f77 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88e695a8 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89249346 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d44bedf v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8df78e4f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9373ebb6 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x949b032c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d503832 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9eb27b6c v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa07cfb32 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1893d14 __SCT__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa524d1b1 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa59f40cc v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa8404c44 __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa89bb410 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac06f55c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb570d035 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb86ec1af v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2668423 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc467e836 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8d8bcad v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc8dd867f __SCT__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9fa1a5c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcecb6535 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf42c663 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf60fdc0 __SCK__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfc4d38d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd10c2665 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd5180dec v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd541e31a __SCT__tp_func_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd897d971 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xde35cfc9 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2726654 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2cf6a27 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8f9af93 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeaf26250 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xedbeb3d8 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xefd78f4a v4l2_event_unsubscribe_all +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 0xf6be22c3 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8913d21 __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf898b1d7 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff7c860d __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1927e671 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8443b36e pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb9707ab9 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0b56f5b7 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d49b459 arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x27e514a0 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3548db5c cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x50b10fda arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5a3b1dea arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x64ddd5ec wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x887c5725 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x998e81d1 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa329fcad arizona_pm_ops +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 0xaf0c8210 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc5a44019 arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xccf63634 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd206871f arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd5bef20f wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xdab6409d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe1334fc4 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe4c5ed73 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x15d0350b atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xdefcdef7 atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0aefc7e8 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2c566bf0 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x46509d8b da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x84825dda da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa1f537b0 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa4bac5da da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xada595e4 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x3189b23d intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x53732bcb intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x65e272b2 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xb3834183 intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xd65ef275 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x4469a162 intel_pmc_gcr_read64 +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0x9ebfacbc intel_pmc_s0ix_counter_read +EXPORT_SYMBOL_GPL drivers/mfd/intel_pmc_bxt 0xe0dcc2d1 intel_pmc_gcr_update +EXPORT_SYMBOL_GPL drivers/mfd/iqs62x 0xa436f4de iqs62x_events +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2746a40f kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f476a9d kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3fe5b802 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x89bc0f69 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9b37e81c kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3759b59 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe1972c44 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xfe2ab831 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x444ef770 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x9aacfe27 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xabe292d6 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0cf33f86 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x12723a29 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2557bd39 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x70d0f7d7 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x80aad967 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8e1176e1 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x95f6b8a0 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1cce1f3b lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x9eabf8cd lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdc17ffb8 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x06412fc9 cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x064cf389 cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b67d8fc cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1b6a04bc cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ce6c301 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x2ceb1f41 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3433b4b1 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x343e68f1 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3f91aff5 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x43a529db cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x457432c5 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4579ee85 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4c637e2b madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x5852c5f0 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x585f19b0 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fd3de0d cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x6fde024d cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7706a9bd cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x770b75fd cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x899c9cca cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fb79809 cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8fba4449 cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9279c610 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa592e2e5 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc828505 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcc8f5945 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe8581afc cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe9b93fb3 madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x13e00dce mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4155b386 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x535a46ee mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x540195c2 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x6095de23 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7e2be642 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1c05f976 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x31c560b2 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x53c1568f pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6114a095 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6aec0846 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0079302 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa19e9494 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbf43957b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xecfef2ee pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf3c8bafd pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfba33cc6 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2cd04725 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa48629bd pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x42a58b48 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6a935442 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x8f9307ea pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd8e4cdce pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdf11ac96 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x43e53ef9 rave_sp_exec +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0xd4375fd1 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 0x029c8b8e si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0b88418e si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20b357c3 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24984a80 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2cd68b93 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x352b9334 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x39c12855 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f137b01 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f9b5f2e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4d851783 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a3b9e6f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6909fcf4 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7a0931cb devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f00bad5 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8abec548 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8cfb4d53 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9010b3b7 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x949012b2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa04555b4 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa55500f9 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6c99623 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb0d79d86 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2c1867f si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7ab8c0f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9388e68 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9889ef0 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc26059c4 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcda593d3 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdfd343bc si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0dd7405 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8364360 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf06cf697 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf0d9658b si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7ef228d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x089a676d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2bba36b4 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x514dc509 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x54e7a7eb sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x63fad064 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x30b73c52 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x323f5e87 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x43cfa9e2 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x932b1ac2 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x9e7f38cf ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x047c8c5a alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x09fca3b1 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3716e1d7 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x6db13ff9 alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x82f992cd alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x8c0fed06 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xf827cc03 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0689e3e0 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1e3be464 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2d90ae88 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x459dd2ac rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49b24d4b rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x49e0046f rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x54ad8178 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x58f22dcb rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5a9328ef rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x61c1fd19 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x662b634b rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6c028b39 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6f00053a rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb2e7ba36 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xbeb14275 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcb2aaa5b rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xcbea2b72 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd2115682 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xde71cd0a rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe145a551 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe4c833db rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf41062d4 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf89a54e5 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf89eb936 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x19ed04ab rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2797c850 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2a3c98ef rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2c779523 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x2df51cf4 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x53e2b252 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5db2c3c0 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x62866382 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x70570f9e rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x896cfa61 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb3ecedb8 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xda3888b8 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xfb5b7125 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x19082f1f cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x93b062ad cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb7137955 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe93d7f57 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 0x2e1d931b enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a4baa5a enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5adab8f9 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c5de6e0 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x76cc4d35 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7c5448af enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc99b1070 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd7aec1d4 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0dcad34f lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2965f57f lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x434a2c24 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b82eabd lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5f2f7971 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x984e07cb lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6d11f45 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf8964972 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x02eaaca1 mei_cldev_dma_map +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03ab6cdf mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x259f1089 mei_cldev_register_notif_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x26768b67 mei_cldev_recv_nonblock +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2aeb21c6 mei_cldev_send_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2b673344 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x31ee178d mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33c7c710 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x35f7e701 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d5af4f5 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x41b3c232 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4bff0514 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5267d3b3 mei_cl_all_disconnect +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5845dc57 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x64add8cd mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x692c773e mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6d796612 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6e59ca89 mei_cldev_register_rx_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6fa94498 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x70d191ff mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7abb8efd mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7e55b9c1 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8d949c27 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8ea897f6 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x90a24af4 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9e4ff536 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa767e44e mei_cldev_recv_nonblock_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaaae0a2d mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb3c93351 mei_cldev_recv_vtag +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb970c8ba mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xcf7ccd91 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xed391b62 mei_cldev_dma_unmap +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xee2479a5 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfb9bcaa0 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xfd21c9ec mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x24c02342 mei_me_dev_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x379da8d9 mei_me_get_cfg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0x922c6ae5 mei_me_irq_quick_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei-me 0xd0eef98f mei_me_irq_thread_handler +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0xf33c1653 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 0x91401317 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xc3503d7f st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x4a4e6868 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x74a52369 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x7a171870 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 0x3693300e vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +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 0x803935c8 vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x81d61eef vmci_qpair_dequeue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xebd38248 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03a2fe11 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0f7b3442 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x18f3d6b6 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b285021 __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1d55c77f sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20340045 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x299b9583 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3e40eb6e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4063200d sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4d26527a sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56abb64e sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x57906b1f sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5e86b43e sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62862289 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x665052ac __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67c15e3c sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6f388c6d sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x780e424a sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d7333ab sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7eef1fdc sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83684de6 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87421e54 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x88f34cc0 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x89114544 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ac2f331 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d48d46d sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8e78817b sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa04f0f3d sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa5cc0d43 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb6cb9170 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbbfdd8f9 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc162ee23 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcde636ff sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xce0232e6 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2af7999 sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd30db0f3 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd663c8a3 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd93d0da6 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdfb46cda sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe115eace sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe2d51356 sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe932a8df sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d953686 sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2b964589 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3fe03f1f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x59c52d44 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x71514d02 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7ab4e9e0 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9a1ea9dc sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf852199e sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfe89d3c3 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0bf2ad3b most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x64e65df7 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x68d12548 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x6c33d06f most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x97a9039d most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x99a31e27 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xad995794 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb346f775 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xca69affa most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xcbdd8833 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd7bd8642 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe22cd7e8 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe8f42c80 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xff01c588 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x075d6593 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc56a65ed cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa434005 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x162e1d77 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9b859921 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe5d7d2f1 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7410b476 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x3d0ad847 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x91816fc2 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa8795c45 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x2455fa40 hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe94104f6 hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0410efb9 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x06a00405 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x085b4c3b mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x101c63b0 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ae3ed3b mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b55a040 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1e4272d2 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ec3a0c0 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x248c60e5 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x250f0ec5 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26cacd5b mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34f27c38 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d915ee0 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x423441ec mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x43bc9ff9 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c5baded mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51c61b30 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53c3867d __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x53d62020 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5600dca9 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5f74fa84 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x603c1cdb mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6846cd6e get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x707079d5 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x710370b8 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x769bcc44 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77275895 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83d070a1 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f46de3e mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x999b4b31 mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a9ba29a __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b429815 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa25b6187 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xad176dfb mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1c13329 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb9065e86 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb907879a mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe7348b4 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1685da8 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc32c73e7 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc48f2d8b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcef87e0c mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd02262a8 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe305bc65 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe331be9c register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe44fe766 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe484ebee mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe589d545 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe858ff42 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xec7b4874 mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2acffc7 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3d81662 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa100d16 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x05d0b7eb add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5c40bd53 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe4d75f70 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf7e354b1 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf7f57f7e mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x04e923e9 nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x12dd4c37 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x23be96d5 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x372f2025 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x374493d7 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x37b4dea7 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4b94cb23 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x4f393624 nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5299e154 nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x599431ff nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x60a6f95b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x63d8f1ae nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x6688c3cf nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x79326afd nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x81c66762 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x8612066b nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9172e4cb nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x935e56e8 nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xa2ef8a0c nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xb8214912 nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc0a13a7b nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc88fb212 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xc92684f5 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xcaf3ef66 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd8d79467 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe3ec8f97 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xbace07f1 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0xe79d19cf onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x96555eb8 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x08eb9908 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x124aa738 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x274accf1 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x278ed39d nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x33d1d793 nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x55ea05ba nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5a810094 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6204c12c nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6d2ed009 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6ef95731 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7fb813aa nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8810144f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x98551f5f nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa2d6af38 nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xa45072b0 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xae4f7366 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbda9a677 nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbfd59f28 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcba1772e 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 0xdad191ab nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xde91e214 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe2c62918 nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe593a8f3 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xf2775104 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xc2bc70f2 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x3a027f36 spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x57a78e31 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f5617a4 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x145a0a8b ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2e9f6fe7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2f70c1d0 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x36aa83a3 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 0x4657d77e ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x59f07dfb ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5f41c551 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x64a5d47e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6aa75ee0 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8141a62b ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x84da9647 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcb187708 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef7de26c ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x19ea0139 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x24bb1f9e mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x3f436792 mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x6cce81dc devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7d996176 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8723c778 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xae237958 mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb022bff8 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xbe2fbcbf mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd2676c50 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xdb8405fb mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe117d71f mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe46cd778 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xeb7e848b devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xaec62e90 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf902a6dd arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0a903f8a register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x543e03ac c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6ac630eb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x76fc9aea c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbbb07c66 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xed7524de free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6d3dbe57 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x87bc5238 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x957f8c65 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xef6bf452 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0bd99096 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 0x1981e6ac open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x1ff170c4 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x326eba3b can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x352162bc alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3f6f1354 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4776c66b can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x53bffe8c can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x58298156 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5c67770e can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x5ccb63ff can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6760cdbf can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x69070322 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6c3abb0e can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6f3736a9 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x810ee9fc can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x872440ab alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x879f4dc7 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9369b773 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x97491d15 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa0a9bfe9 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa2a7a5c0 can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xaac642ae register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb165abf2 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb4b45eab can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb6653cbd alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe6e0b9bf can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfd6f49d0 can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xff1a49a4 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x087c13c1 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x0d41067e m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3a7fabfb m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xbc212910 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc2ca345a m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd2722cbc m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xeca983c6 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xf5a80d02 m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5b269f97 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7e816224 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x95ffbcb9 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa3f4fb55 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xef52f46b lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x04162d07 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0abc5c7b ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1d870bde ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x27a52ec5 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3688c4e0 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x43be6f3d ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x53f5ca0b ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57617db9 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x79dbe0fa ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7d8d0122 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x81200f6f ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x81d5fdb8 ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8f109ccf ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x9bd53d11 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa9244c74 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaaa6ef1a ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xab031328 ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xaf5157c1 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb6ef9181 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc23959c7 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xc3ad21a1 ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd7f42f56 ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd937c9dc ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xec558516 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xec66586b ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xa4ca565a rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x05f02efd rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x12ce8dbb rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x61fc512c rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6412cac9 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x68899e0f rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x68e66744 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6a3b0dc2 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa17f66b5 rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xdcbb2316 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe47f84bd rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xee5ab4a7 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf3b29b07 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x155fad45 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x1620b301 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5840cfc5 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x92982975 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xb2de027f fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xc74f169a fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xd08ff082 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xe9053865 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xeb45ca66 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xf4aa48b4 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xfa506b41 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0x1ca37549 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xdb98de65 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x061044ab ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x522c62eb ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x65d8f235 ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x8f2d515e ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xb6f98e54 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00339a0b mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02511d9b mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04a0fc9c mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085066d8 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x099ce545 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d1cda00 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f3eabb1 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e11e3a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x168f00be mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x173087c2 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a0fdcc3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a453f7e mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a76a706 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dcc0b1f mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f72f2c7 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2052ffc8 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x292d1e2a mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29de4917 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a98da8b mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bccfed0 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e46419e mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fdb9d7a mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3072f9ae mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3319d52d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34da3e48 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3534fd9c mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e3f3f5 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37864036 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379212c7 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37caff53 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3924ce6c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41775298 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4333bd09 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45a30124 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48834a28 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48fe730f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49f19695 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a8b18ed mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b05b132 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fef0eb8 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x540f4b5b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x554780bb mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56792b0e mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59c8e163 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dff5995 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60b53c7d mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63a5b33c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640bb0d6 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65f133cf mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x662fc14e mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67ae7db8 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b432892 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c467316 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75ac50ab mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c99662 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x765a872b mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76ff13c1 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7932ef40 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79bfa0ff mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79c44554 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f18935d mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x867a8790 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x890e2262 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c14e2ff mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c7f0d04 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92db3f7c mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bf9c20 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9419c6a7 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b95115f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c5fb0c5 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9da2eb5c mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa01da8b0 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0d6afbe mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa21afb74 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e666f7 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5f5eee4 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa666633b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66a8632 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8e65059 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab23dbe0 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2e49861 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6927c7e mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb856db48 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb88a8eef mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaefb15a mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcf53153 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd1b37e3 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1ae93a8 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d60473 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f43d11 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4c44dab mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5b70c7d mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8fa9bf7 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9c7f22b mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccadddf7 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce41c850 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcef40707 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2939de1 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd311e5ce mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd844d2cd __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8478d00 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd85ba359 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd99ea9ca mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9ce174d mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdac3129a mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd0bddd8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddcb29bc mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde6d69a4 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22ef971 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9efd008 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xead10dbe mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed17734d mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed808af0 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef9b37c5 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf54a2c77 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6420c6e mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfba97c1b mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc52f7a0 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd016db5 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe0b6187 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe9b6892 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x002e7ad1 mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x020eb8c1 mlx5_set_port_pfc +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 0x08dca667 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x123d72e4 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12eec48c mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x219ed2aa mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22f9fa9a mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249fb606 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26676f28 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d843c72 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38a9dc55 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6b88d0 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4140a692 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47b91aba mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d555078 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4dfa8644 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f60d419 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x566210d7 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57a1792a mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5901179b mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59b2a2d5 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ab8b6f7 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5eaaa364 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6332ba3a mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x647646e4 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665301a1 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x665f793c mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66def8cc mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66e31e3d mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69dc75ab mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6edba793 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6eecd972 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718633a3 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a805d49 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bda2bc6 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d7308ed mlx5_query_port_prio_tc +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 0x82ef385b mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84700f7a mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x861faae5 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x870d4d9d mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88389858 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88db15de mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89d4c499 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x929db75b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x945bc3b7 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1e1ca33 mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5daac2d mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadefcb1d mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb552447d mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbafd5292 mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd60a1e5 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc00b64b7 mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f096e6 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1eafe31 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbdeff11 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5b05216 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5d7a140 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd814aeca mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91dcfd8 mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbc9a1a2 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e078f1 mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe804e254 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5afef9 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed2fdb7 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3d35c54 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfad3776e mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb672eb7 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x28703b93 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4840dd14 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x911af51a ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xf860af12 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x433732e4 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 0x07fd7c6b ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x12c53baa ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19fd0222 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x339e047c ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3438a57c __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34506367 ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x375970b6 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c6de5ae ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x41cf326e ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x57546846 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5d9f4ba1 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5dfd250d ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x60cb12f1 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6253855e __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x65de2caa ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7caacbc1 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x81b41153 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93b19f98 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x956efc4d ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c5a6395 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2d8de31 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa517beca ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5c2f743 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa6642794 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb010cf33 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb80bfccb ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc32d1da9 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc9afa34a ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe5818d44 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfee27ec4 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x640c3e33 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 0xa556e712 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xb79a5d1d stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd8652943 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xee5059d4 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfccbc36a stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x55f00663 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x567e17c4 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe08ebd8c stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xec8d47a2 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xfb08c23b stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x42caec1e w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6f4e7075 w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xadab2805 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf33d5d3c w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb0666933 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x0f604f53 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x25b9dc33 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x80d9668a ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xd2b54f2e ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xe97dacb8 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0x4664dd9f macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x04d16411 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1b4c1430 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x23f536e1 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xcbb114fe macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0xb8406d4b mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x4ea1bf0a net_failover_create +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xd5573f24 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x080952e7 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x6ffd127f xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x732d1d18 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xa942f1ed xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xaa57c112 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xee27cd43 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x02d7cd6c __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0bbb0a05 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x11f1184f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x12c393b2 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1808b9ac bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32b82957 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x330d4f1b __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33dfaa57 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3b8da80a bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ea93880 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x43435477 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4439342b bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44f4d91c bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4d3c3799 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x73ba649b bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76284b10 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x851bdf38 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x872919dd bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9ffe8177 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb094597c bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb772efb1 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb8ef1404 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb992420a bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd331b30 bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc1258e4b bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc6bd80c6 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcb289fc4 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd116509d bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd6fa11f9 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe665bdfc bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe8071770 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe9062ddc __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf1bacf01 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf259f4cf bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0275aedf phylink_mii_c22_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 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x39f0f6da phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8b0304e6 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8b1e8536 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x970e7ae8 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xa782a7ba phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xad18dc6f phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xad917d6f phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 0xe8045898 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xec02ebe0 phylink_init_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf3083a1d phylink_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xf8fe5642 phylink_ethtool_get_pauseparam +EXPORT_SYMBOL_GPL drivers/net/tap 0x07b29df5 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x4b8746c1 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x54bc74c4 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x5fec0cb4 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xa1128b12 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0xa9af6cf4 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0xb8ca1e1f tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0xeb15fa63 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xf618e69b tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x13651a2a usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x52cec578 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x540d7463 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x586d9e7c usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc15384e5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdb16ec89 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdc1c0ed1 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x06c18e84 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x09545e7a cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x20b2e825 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x27e2074e cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x46526f0f cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x50468bae cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x828a9def cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8be55b1a cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb04f7c20 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd5e2feae cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3a0fa9f cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xce2ab29d rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x340889b9 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3a885a3a generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4fdb55db rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9839ab49 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc1962bf5 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf24c6f35 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x113dd966 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16f5b194 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d0a1797 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x374a315f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3b18d091 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3da6c9dd usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f62c010 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44249efa usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x538515ea usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56868809 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x599da17e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a4a5578 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7dbe26c1 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x94de2be0 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x964d2ed3 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97d1e901 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa2221267 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9f69605 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xac208608 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb50d7ad9 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb75c5aa7 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbaae185d usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbc0c0d9b usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc30a9f8e usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc3a6c01d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc69a19ee usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccc11f28 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6af61ff usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0feca61 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9eacc1a usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeae97a5e usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf32f130b usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfd16224d usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfe37a2e6 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x038201a6 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x236bbf8b vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x5b785185 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xfc7895c0 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x253ec0ad libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x12759cf2 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38d8580f il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62a6db6d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x995dc9ba _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaa6661d0 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0a57a6d6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x1b275d52 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x3e8e0afa p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x44604bcd p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x5cccf952 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x767aafb9 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdc9c52c6 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf2a74eb3 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf405b687 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x03ff63a0 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2456192f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x245a7f7f lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x27cbce37 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x390416be lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5d85a0d1 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 0x60461fba lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x6d18e847 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x81fd3933 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x8257144a lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x857c3bd0 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x89c79ce2 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x91353598 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcd53de45 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xdde48623 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfc13f356 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x146fdfd2 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x15af70a4 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x44798338 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7051db20 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x79299fd3 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x7b983bdd lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x85fe68b3 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xac1d0c95 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x024b50aa mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0f5f1999 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ca8f905 mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1ea4856d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x32b5c672 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x436bd42c mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x59c2b4dd mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5a277e64 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x5e37ffe8 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x619f4dcb mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x72db9af6 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x74d46fb5 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7cc3c565 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d91ee8f mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7ff666e8 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x807c4a6a mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb27f19f7 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6222679 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb6ab397f mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd0acd22f _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd4dad9f3 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xda97ae7b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xdbe01f83 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe38d6a66 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xff5f9560 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x026274ef __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0df6caf1 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0fc0b207 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1094ccd2 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a424f15 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a70613c mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1d66ed89 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1ebd25a8 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 0x21ed219b mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a5b9f2b mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2a5fb9f1 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x32c168e5 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x357a4edf mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3598a511 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x36e6dbb9 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3e02ee8f __tracepoint_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x43e406bc mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x44bd070b mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4741f964 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47744c6a mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4b9b7b5a mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x505d0416 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x50863367 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5285ef39 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x57f30d5c mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59436740 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x59475929 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5e9cac21 mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x638e9c1e mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x654e8c78 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x66c01af8 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x694cc79f mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b34663b mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6eec1496 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7409ba95 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74b56c6b mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7818205c mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7ad2979a mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7e7ff1fd mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x80419f16 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88fe4cd0 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c4ffd9f mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8c987608 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8d29042d mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8ea482f1 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x908f6a40 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x93708ba8 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95fb3026 mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad19752f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xad396744 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae88ad18 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb3de4664 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb47dcd93 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb8bec93a __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb31a266 __SCT__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc03e860 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbcacebb1 mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbed42562 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc08311bb mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc50106c7 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc548ab80 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc6634315 mt76_ac_to_hwq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcb9a9706 __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcbf82d49 mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xcd1997f1 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd025e4fc mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd05ac2ce mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb30cb24 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb60f115 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xde61593e mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf02409b mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdf4ec82d mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe17576a6 mt76_rx_aggr_start +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 0xe605078a mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe8f06fe9 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xecaf8ddc __SCK__tp_func_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xee597a1d mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf322da74 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf36b7155 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf42859d7 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf4d7125a mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf6873d80 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7ab6ee0 __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfddec711 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xffeb0e4e __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x038afb2a mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x048a14e7 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x05119c1b mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0974aaae mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x09c6b4c4 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0e1b5d75 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x13ff1a38 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x154de2ee mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x166125be mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23ea0796 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x25bd5c3a mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d091a6a mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x328092bf mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x359aeab9 mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x365ba8d0 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x48e1c940 mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x51ddcc4a mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x524d57b3 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x549e8ffd mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x55fbebb2 mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58458a5e mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x586fa3de mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60aea819 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x60cb553a mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x64265da9 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6555dbee mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x69d7536d mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6a266048 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6ed8bbe1 mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x753aec79 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x76df08d7 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79b7ff10 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8265a5a6 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x889807c3 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 0x934b0905 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa024387b mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa2d92267 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5aab9aa mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xab6d5f06 mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xae2aa15b mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb22ed2c7 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb33ab3e9 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc27b289e mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc65b9da1 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc8bf9916 mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc9fa875e mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd32844b5 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd7e00ff1 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd86444ba mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdc0e4fe4 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdd38c416 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe1e1c547 mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe1fda105 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe7562b45 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe813f8d5 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf80f34ef mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfa1a7d47 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfb8c23fd mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xffeeb6a5 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0dead5ad mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x20542211 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x263ed686 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2ad8da19 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x2e092174 mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x49533f42 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x547e5dff mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x54c19800 mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x75a1b99d mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7cf85b2e mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x899563ab mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9cb3a2b5 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbba683cf mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xcc18d37d mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xdc93ff54 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe11004de mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0396c332 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x03e5b9d2 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2a6b9ccf mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x479ac93c mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x4f6cb64d mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5ca733ce mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6b0ea867 ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x6e679f8b mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x7f65d3a8 __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8672109e mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x9699fe05 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa3c49207 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xba043c13 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdea78e45 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x03fbe906 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x046a8c43 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x06b3d03d mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2cc2561f mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2dce2d9f mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x30ce121c mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4379e307 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x5960ab33 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6b6ad891 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x73fccfb0 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7d2a55bf mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x81ac77a4 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x909c4ba0 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x934df9eb mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9403f4a5 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x94d7b68a mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x96f19cce mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa0730100 __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb2b051d2 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbe53c6dd mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc4def805 mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xca06e519 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcf36fc05 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd0471a43 mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xda16eddf mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe6c1686e mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xf1747cb5 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfb7e610e mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xe188a039 mt7615_dma_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x0e8b6011 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 0x28fca944 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x7d8bae3e mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc5e32f78 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x392b6145 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x3a5a8137 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x86330c9f mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x86ad80a7 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x91f14454 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xab25f5ad mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbe5a26eb 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 0x06578b1c mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0b53042d mt76x02_eeprom_parse_hw_cap +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 0x0d6100f3 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0d7868f6 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0fb827c4 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x16733974 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x17e5def1 mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1967f803 mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1d73e132 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x208bba5b mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33e9abf7 mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3567d42e mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x366eb4ba mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3ec6ec19 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3f91d4fb mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x439dc93f mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x49b4583f mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4fbea95b mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x520446d7 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x528bb5cb mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x545809c6 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x561fb17e mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d7d74e0 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5fd8a7c5 mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x63c03a0a mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6b18db25 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x753f188d mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x763b6386 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x788b3a98 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x79ef71c3 mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dc29431 mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7dff2aeb mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82bfa520 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x85f5399d mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x863bf7ac mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x88b6c714 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a204c87 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8a5037a2 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8e105a32 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x906bc7ef mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92ca8cc9 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x991cef4c mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d776e30 mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2a87726 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2b4a0ac mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa521f260 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa69502fe mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xac2c8538 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xacfc9ec2 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb52eef44 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb64bf212 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbb4f5095 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xbf204243 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc67472ca mt76x02_mcu_function_select +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd7e40c6 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcdb47c61 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcf82b1b5 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd479ca60 mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd559d378 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe3cabe4c mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe7ccfca6 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe9d18167 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xede7b0d5 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xee3e81e7 mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf5dd9a17 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfb94ee98 mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x20a4ff40 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x422ca524 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x709ae20b mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c0f3439 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c48cbe7 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x81a5b756 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xa6a91b14 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xffb79594 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1020e525 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1123a99a mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30d89433 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x45e52a6c mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x55ce2241 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x569c89d6 mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x58c62ded mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x638a0266 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x64455663 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6e42458a mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7c3884a4 mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa15cff60 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xaadc69cf mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb1190bdd mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb2cfde42 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb904888d mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xc82ed607 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcabf3c99 mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd00f1b02 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xe0ccdd6f mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x00045ce9 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x06a550cb mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1b99ff51 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x314c17ed mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x437dacfa mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x5369ef15 mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x58327670 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x670a2e43 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x78275b57 mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x78b805e0 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x793a4aed mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x79ee210f mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c3b03a8 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8af895e4 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x910c857b __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9325c937 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x94b91c6b mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb9119b60 mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xba09aa23 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xe8328a22 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xec995e1c mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf0f732d7 mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xf88546d5 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfae409d2 mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xfbb68494 mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x2b01562c chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x37dd658e host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x3cd65054 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x45af634c wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x64371514 wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe7893458 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xff803245 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x11f17075 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 0x541cfc27 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x56d14d3f qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x98c6d018 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xa4cbef85 qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xad16fc56 qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0330c02e rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0a8ffee0 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10a16f1b rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x13a0a8b7 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x202b654d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x23415517 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x275a9631 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3039a77a rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x38a1f518 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x39beb83d rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3df56246 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3f8d9115 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x45f2e20f rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4736aec4 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a5332d7 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5618d045 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5a0e7678 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5d461ade rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x64e2f6d4 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x66afe89c rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67c230a7 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6f15a3de rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x79af2f47 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7d74d888 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8490595d rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8743c187 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8799d2d2 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x87d7f001 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x89b4d660 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8f494802 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x996a4bfb rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9c032e34 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9df70a7e rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xaa098626 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xab4287b3 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc1e8b59b rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc9e57bcb rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xdc63674f rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed51fbe8 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef45a114 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xef544968 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf47d04c9 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5db96cc rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xffa2b726 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1e1259ed rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25196f75 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x379691cf rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3c720c71 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x42e6292e rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fdb1f64 rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x89686768 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8adc04e9 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8be59e87 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8df8cc67 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x97e3c029 rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9f3c8921 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa1dcd1f2 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xa342767f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xb60b838a rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xba3b58c7 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xc4d7f0a6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xfc85bef0 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02a434f5 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0478a22b rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x05f862e4 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ea8eb0b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13823005 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x173d4275 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x18e49d71 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x21c7e0f2 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x23f8c6cc rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25686e62 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2a486b29 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3230b066 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3728f16a rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4c1a31b9 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x50d26163 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5af0dd67 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61a38dc3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61a9204e rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x61ef8185 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6231b8c5 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x678ce4d5 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69f405de rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x6e430f98 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7444fc82 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7f403511 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9164b82c rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x94656646 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x958abafc rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9854263d rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa0196f55 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa26e962a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa777456b rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb5d13a6d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb75ad053 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9bcee23 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0b64ea6 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc0c9044a rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xca599e1e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcd69bf0e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd0600ca8 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd21cb20f rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xda45de78 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdfe33cc8 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xef240acf rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf48e4b8e rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf63fcef4 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf7fb381b rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x3fb66546 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x43f22040 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6032e6b0 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x6f5a9511 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x87952547 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x511ca849 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7381c31e rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xc56d1dde rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x03213a17 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x06a54003 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x167f546c rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1d510c04 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x4f53fb7b rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x79e68b7a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8ee8cd6c rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9b222e38 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa49248e9 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xb70573d4 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xbf6ca9eb rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc1908d88 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc3c42b44 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc43062e0 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe08db654 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf745391d rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fcb9d09 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99dafd34 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3f84799 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb1e325e dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ca7b714 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fbffdb0 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x10bcb695 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x13a175c7 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b7f112a rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20242880 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x31c3fc63 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x33af9dac rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x373ddc09 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 0x62d543b8 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7247ca22 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ec24266 rtl8723_enable_fw_download +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 0x953162f4 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a1d9483 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c2aab99 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa1e52074 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa27f6877 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa46bcf7a rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa84cafd9 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaa4a9033 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb7831187 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde878ecc rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf17cb5f rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf22bf016 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf8b55c06 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0fa67050 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10b3572d rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1619edee rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18db5928 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2aa0d04a rtl_beacon_statistic +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 0x326d6272 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x472a3ecc read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4db0d8e0 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60b0f447 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x67600f87 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x76918e7f rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x894536fc rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x92514321 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9672f722 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9809ac76 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3254da0 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3ac47c9 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xade2c93b rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6096c9b rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb0892ea rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe084fef6 rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea0b8a7a rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb0c0d62 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb40f99e rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef83d5c4 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x22b5bc5a rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2fc48403 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4085433c rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6630d519 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdab413c1 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x292e4552 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x80192b7d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x9ab50016 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xe1e3ebc1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4606a7ff wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xde5c187f wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeb62b7cd wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x00a08a03 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0323ffd1 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03688bf0 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 0x08e8f6dc wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11e99bb6 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15fa02a9 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1afa9e74 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27d8384c wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36c37906 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x40953024 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49fe0e36 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b1ea4f1 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4f0358b3 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x539ff009 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x541aff64 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5af30393 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x692dc834 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81ab470d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8a5b6c44 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8b2a8d36 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x936a0f9f wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96479fa6 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97166c1b wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d3b148a wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1c4045b wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa33728e8 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7ba66ff wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa7c7a53e wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0275d66 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb47bf0e6 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc77122a0 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc98c3fcd wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9f0bc20 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcaa1e3d9 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0d40f82 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7fa9e62 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf7c8471 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe46eacce wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe4e99b30 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe71490af wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf5a2a294 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6fb35c7 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcdbaa3d wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4ec512fc nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x51eb9fce mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x97b15eb3 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x173abc47 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1e8b19e0 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc97e8edd nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf5d99763 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0d959fb5 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0fa41c6d pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x41e8e004 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x42d4d42d pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x79ee7fa6 pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xbe805b7f pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe95e129d pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0057feb7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x511ddcec st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x99da469f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9d693928 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xae3fd411 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd14b6834 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdf3aeca9 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe1881ea4 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x670283ed st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x77f2aa90 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xed3f3002 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 0x4b25c56c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x57dc3c10 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 0xf55d6313 ntb_transport_register_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xfd4e5e1a ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x35d0e082 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xdbceb239 async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x06997e08 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0d4e2a96 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x103409a4 nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1040f37a nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1c3d2848 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x250fc105 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3115056d nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38218206 nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x38a5ba66 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bf2393a __SCT__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3d660575 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3ee81241 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x407e8b4b __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x41a92776 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4c1d5705 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b4eedeb nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7fbbe7c5 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8068d909 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x81d796db nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8693114d nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x877ec98a nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b07c422 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e6ea388 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9435e1b6 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x997d8a68 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x9d07843d __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xadae3006 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xae7e1e8e nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb1ea81d5 nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb356f454 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb8fb77ea nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb9bc9f2b nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1b12359 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc4155a62 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcc623972 nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd22e9038 nvme_stop_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 0xd9807aec nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xd9a0edeb nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde5a87ed __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xde9471c7 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xdee20f4d nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe6703f97 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe9030457 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeb491075 nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf17b9d9b nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf2ebd492 nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf9769fbe nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3541775f nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x481a3081 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x6dd8484a nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x8017719c nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x9fb26fe1 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xa2077c01 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xb70f04e7 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbe6351d7 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd3320fc8 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xeb6ad00b nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a9cf5a7 nvme_fc_set_remoteport_devloss +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x94fa3e72 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 0x09bf0204 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x38b34c38 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x853e4183 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x86ed30cb nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8f364c5c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x9ada189d nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xaff45b0b nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe8887140 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xeb2f81f4 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xf1b4566e nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xff7db964 nvmet_unregister_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 0xe24bc63b 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 0x5150c1cf switchtec_class +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x9e503ac8 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xae2b9e27 mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0xc4cdbce1 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x8379bee8 cros_ec_sensorhub_unregister_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xfd6bd001 cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x6b1be500 cros_usbpd_unregister_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros_usbpd_notify 0x8bda2df3 cros_usbpd_register_notify +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x112134ec wilco_ec_set_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x24eef51f wilco_ec_get_byte_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x75bf4d33 wilco_ec_get_property +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8517eb0e wilco_ec_mailbox +EXPORT_SYMBOL_GPL drivers/platform/chrome/wilco_ec/wilco_ec 0x8b8ae425 wilco_ec_set_byte_property +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x096389f6 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c5de0e8 ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0f44a98c ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x1127e368 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x146eaabb ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2355f08b ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2a22ae04 ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2edeb21a ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x35bfbc49 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x592629be ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x788b6a68 ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9815b2f0 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x99e7b505 ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9cd12210 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa1b515eb ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa4ede6f4 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xac6017be ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb95bb65e ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbd035ddf ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0791b7d ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc33fc231 ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc58108cf ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc99f60eb ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd4d05074 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd7b3501d ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd96e6508 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdb090b9b ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdec5659c ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe0800e75 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xe8151bcc ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf35d361b ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x4acf7f39 san_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xd60bd773 san_dgpu_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/amd_hsmp 0xdfd927ba hsmp_send_message +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x00be286a asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x57c46ceb asus_wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xb98da0d1 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xd9146b52 dcdbas_smi_free +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dcdbas 0xf1a06655 dcdbas_smi_alloc +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0x51552fca dell_rbtn_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-rbtn 0xa060fe7d dell_rbtn_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x167844e3 dell_smbios_unregister_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x1b0b3141 dell_laptop_register_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x45170471 dell_smbios_call +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x6fda9474 dell_smbios_call_filter +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x7fd2ce06 dell_smbios_find_token +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0x8df02f21 dell_smbios_register_device +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xb9400dbf dell_laptop_call_notifier +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 0xc2871e79 dell_smbios_error +EXPORT_SYMBOL_GPL drivers/platform/x86/dell/dell-smbios 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 0x8a00747b 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 0x1b40cb93 intel_pmt_dev_create +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0x3561fa50 intel_pmt_is_early_client_hw +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/pmt/pmt_class 0xbb5a7019 intel_pmt_dev_destroy +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x06f7821f isst_if_mbox_cmd_set_req +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0x58a8261f isst_if_mbox_cmd_invalid +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 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 0xa960376b isst_if_cdev_register +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xdd014a9b isst_if_get_pci_dev +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/speed_select_if/isst_if_common 0xe18f42a5 isst_if_cdev_unregister +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x1c7565c2 telemetry_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x35db93a6 telemetry_get_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5847f501 telemetry_clear_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x5bb8e91a telemetry_raw_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x665cd407 telemetry_read_eventlog +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x6b892524 telemetry_set_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x82bb2dbe telemetry_get_evtname +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x90551504 telemetry_add_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0x9deec96c telemetry_set_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xb75bd1e6 telemetry_raw_read_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xbb9a2726 telemetry_reset_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xd14ffffc telemetry_update_events +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe1eb4be1 telemetry_set_trace_verbosity +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xe8847f53 telemetry_get_sampling_period +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf00771b0 telemetry_get_eventconfig +EXPORT_SYMBOL_GPL drivers/platform/x86/intel/telemetry/intel_telemetry_core 0xf9d5ad60 telemetry_get_pltdata +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x065b4695 wmi_get_acpi_device_uid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x17b0f8ca wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3b691918 wmidev_block_query +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x4fd1e72f 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 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 0xe877a8ec set_required_buffer_size +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xf18bdd75 wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xbff0d98c bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xc1cbd271 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xeaffea9a bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x18814a18 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x3f0d56ce pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0xf9595300 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0x93144365 rapl_find_package_domain +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xa9bd806b rapl_add_package +EXPORT_SYMBOL_GPL drivers/powercap/intel_rapl_common 0xec82bf60 rapl_remove_package +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x03aa2c2d mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3c9d6fc1 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xef994ee1 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x18ff89aa wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2ab86b47 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5714dcfa wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x57cf7e24 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6ce1664b wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe27a0670 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xd0d7276a wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x149236da qcom_glink_native_remove +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0x623413e9 qcom_glink_native_probe +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xf14f5684 qcom_glink_ssr_notify +EXPORT_SYMBOL_GPL drivers/rpmsg/qcom_glink 0xfd2d5a1d qcom_glink_native_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02508f5a cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0aeeb669 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ec57ec2 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1cb6e36f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1da75aa0 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e1d958f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x221f96cf cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x243f202d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x322ce19e cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f5ff817 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46363092 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x478a7587 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ca5002a cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d04a6e6 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65a4aea6 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x684a1b67 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x689d1861 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68ad1e39 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7002fdca cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7571323d cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e66bb51 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fb2ffab cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86f084f4 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a242e7d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95c01a5a cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98c7c82a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x993f90fa cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e1ff574 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0b2c3f4 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5c40588 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6a6df16 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xafb3a492 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4a1d8ab cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb61e7728 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb7a3c5a2 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0242f50 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc37a5dd5 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc5787508 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8f7d096 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd8b6aa0 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2adac86 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9473396 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1c7769c cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7da1d4d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x022aee61 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0ce03c7e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x13b508de fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x16658843 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bc5d891 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f66659a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65fd783e fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x768d7619 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa9972a70 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb79c80f4 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbab5da17 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 0xc70cbdb9 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xccc08a7e fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd32245d1 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9db93e7 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf97fadac fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x1a209ec7 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x2aebd0cd fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3ead49c7 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5f81f622 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa24e6f6d iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa3bdf937 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb0c51e52 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbefa746d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf8035f2d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x09279ed6 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0ab3a982 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x105355ca iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x122df931 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13bad276 iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x162d5c1a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x163ad77b iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16d6d42a iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b583548 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30ca6d40 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39a247f3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3d0c714e iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3dbcfb58 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45d9e2a7 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a0d1bd8 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4e22ed3c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55ed1e42 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x564f2b42 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fe03b9d iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63127f31 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b1ef4ce iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d73a4cd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d8bdd0f iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x707e8933 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72501430 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79152bee iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x795d66f3 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8be94a76 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91eb1a95 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91fd6e39 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x932fd488 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93de9a5a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x948de76e iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x960e2211 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1d89da7 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb22610b5 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe2f53ac iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2910292 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca8e0665 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd1332693 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3d3a7c8 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdae0f33b iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcda1f14 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde50f69f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdea14164 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee5ac470 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa2c16c0 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfda2d08b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe657a91 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x03ce397f iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x141202f5 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1f5b4e76 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40a7469e iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d699816 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x718f176b iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x86aa5593 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb20be100 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbda00769 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3f9d398 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc59801c7 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcfceb91a iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd44279bf iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd85dba0d iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe348106e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xee18702e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8127120 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a9e3215 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1b008ea7 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x245e16e8 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x299679de sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2aac2a29 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3525209c sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x376cc7bb sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a59e720 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c7b86ac sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41faa6ff sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d61503e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a6458ac sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b118e31 sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x64f4d771 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6659433f sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77614c12 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f86d799 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8cf30ce2 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x931b9d0f sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9457419c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x95cb0c6b sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2bb72d8 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa48a863a sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa648a9dc sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1d0e4e1 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc20e1d7c sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3500b82 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5825fa1 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7058346 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd29b7e52 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb4f907d sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb7ed8b2 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe4ce407a sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf982eaca sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc0a7de4 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe21ad28 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff7afa47 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xe6efc3b5 fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x050f2e71 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1568385f iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15dc8bab __SCT__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a9056b2 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x21f9fa65 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2af708b7 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b6911a9 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f16aa03 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3881ce66 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3dd58361 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x411d754a iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4619bebf iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x469627ef iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x471735d6 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ff6c5e9 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52575134 __SCT__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52a7baef iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x535d3ab7 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56276fce iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a267019 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5dc0606c __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x627f4f00 __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x669bb8bc iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x688bf860 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x72c0ed9a iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7507c467 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x820375d1 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8489129d 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 0x8664251e iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89988fa2 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ade2127 __SCK__tp_func_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bedf21f __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8ce94df7 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x950e302a iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b089f55 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b9f9168 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa07bedab iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3407815 __traceiter_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 0xacb8bcd4 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaeebfddd __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3679047 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb89070e1 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb11cd9c iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbd0076cf iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbfb75532 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca5d2728 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5f7d3d9 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd607e0aa iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd8d02dde __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda713baf __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf4490e8 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf515c49 __SCT__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0729a58 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe2a106b6 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6655c6c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea7bf3d6 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed99f413 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef4297a6 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf27ea2ec __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2d81cd4 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7e749fb __SCT__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfce50cd0 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3c0139fe sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbfa3ac17 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xebaebe6f sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf8fe7938 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 0xbe8b8b5d 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 0x33d2d78f srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x379fc72b srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5bd8acd1 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6490a865 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x70805137 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7db4d906 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x06e856fc siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1264c806 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x6c644f23 siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xb495c9dc siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xbded5643 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc9fdfdbc __siox_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0ff55326 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1661da1a slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x17c7984d slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x2b9b4bb3 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x36be2952 slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3938faf2 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3dfb24f2 slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x3e4cb1a0 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x40baf36a slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4144ae5c slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x45b48628 slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x56cd7cd8 slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x608ecf27 slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6430b572 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7d040283 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x99cf972e slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9d7b7720 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb7a1d99a slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xbf90aacd slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xc3380e04 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdec51063 slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xdee0cedb slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xea76df9b slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf17a7344 slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf54f3cfc slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfaec7b69 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x31d1ee94 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x3b558542 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x95a7e178 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x2f8c0649 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xcf0df571 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x04563cb8 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5bcab4a0 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x89ea6f1c spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc1606ec2 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb0e4dad spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb66902a spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-intel 0xd2eb2489 intel_spi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x8c35b395 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xd46e4152 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xde2bf56a spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x11ebab78 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x172cb001 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1b578e67 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1f41f63d spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41771d60 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x49ee4cfc spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x585d5b82 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5e61ed8d spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x767203aa spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9951b973 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9c50077b spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa5fd1f0a spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa8e6962c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb31d6ba4 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbcf98e52 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc52e5cd5 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcb4bcded __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcfbaf1b7 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x04029d6a ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x07f81d3c fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x29b24cc8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x620d688c fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x99ca5477 fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x25764b62 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2deb1ee1 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x303d39f8 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x37348f57 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4c840dcf gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x53048d51 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x60ad5515 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xad737e0d gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xafa01d7f gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb0eadd4c gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbaeb6fe5 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xd9d2db4c gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe9a296fc gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x025d5aab gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x12f6d675 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1322ce70 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x1ece9799 gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x216c16eb gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x37fe7fd5 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x690a44d6 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x8617554b gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xae95d3bc gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xce754a2d gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd5701d16 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd8ff0cc7 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xeb7de38d gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x19e9e6b1 gb_audio_manager_remove_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x32e6391e gb_audio_manager_remove +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x4b2376ba 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 0xdc4ed4ec gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xaf9c0e57 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xe035feea gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xa167d28a gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xe80b1c99 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x565023e3 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0x411902ec release_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xcc329e77 load_msr_list +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/i2c/atomisp-libmsrlisthelper 0xf7c6c5ba apply_msr_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x2b275a60 atomisp_gmin_register_vcm_control +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x399b21e9 camera_sensor_csi +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x47371413 atomisp_gmin_remove_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x539162f7 atomisp_get_platform_data +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0x6134a9ea atomisp_register_i2c_module +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xa9e4f8c3 gmin_get_var_int +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 0xca484915 atomisp_gmin_find_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/atomisp/pci/atomisp_gmin_platform 0xee8137da gmin_camera_platform_data +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2b97b0ae target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3862e69c target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x50b0222e target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x99bd21ab target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x00087ade tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x03f40d7f tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x09720488 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0b224235 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x14612706 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2cc1c697 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3c9c5a38 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x3d963abd tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x413d9658 tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x574a1740 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0x68922db6 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x75f5c8f1 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8efcc1f0 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x925133da teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0xae37c545 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbd37bce9 tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbde1d14b tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc24462de tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe39b474e tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0xe3e6bc39 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0xf6b7d853 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xff1de3ce tee_client_close_session +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x7068714f int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0x839f6c54 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/int340x_thermal_zone 0xb826a851 int340x_thermal_read_trips +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x2a6b7626 proc_thermal_resume +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x61e0748e proc_thermal_suspend +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x7e7a703c proc_thermal_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0x8fdeaff7 proc_thermal_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xb5cc967a proc_thermal_mmio_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_device 0xe2a518b9 proc_thermal_mmio_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x16ba019b proc_thermal_mbox_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_mbox 0x97ed8cb2 proc_thermal_mbox_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x098e82d4 proc_thermal_rapl_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rapl 0x565067d9 proc_thermal_rapl_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0x3b7839c8 proc_thermal_rfim_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel/int340x_thermal/processor_thermal_rfim 0xbc1be0a6 proc_thermal_rfim_add +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x338d020f intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x350973cb intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0x4171e30a intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel/intel_soc_dts_iosf 0xbd3cd7ab intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0ea1b24c tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x10caede6 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x156fc459 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1b0b372f __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x1d766740 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2ce0c86a tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x42631dff tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e5064a7 tb_property_find +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4e64bdfd tb_register_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x658e3d97 tb_property_add_immediate +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x70c417e5 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x70eeb719 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x73ad2acb tb_property_get_next +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7d3a9f54 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7e8c5925 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x90d3b310 tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x968e20d5 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x99eefc14 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4922542 tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa4a9bf4a tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xadf69dd3 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb8ff7863 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xc1dc0684 tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xcb75eeb1 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd4210ba7 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd7218179 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe322bdb6 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf92eb875 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0c1d4fd5 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x12d0185e ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x157b983b ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1ab3a3a3 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1b2ca15b ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2a8c0a23 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x2cb60e6a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x348a61fc __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x693653d6 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6ef684a3 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x71d07fe1 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x780022df ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7b583b70 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xa2cac470 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xaab2abbb ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbe65af1b ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd0d8c876 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdc751f1b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe89d08c3 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xe9edcf97 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf102059f ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf915d7d7 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfc582836 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x02533ed1 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xe8d06ab5 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4204467b __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x575ce996 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8482ef05 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdc0dc0bd uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x845b3eef usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb1d010cf usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x1d110006 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x41819cc8 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x53068bf1 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x71289b26 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x98f4a082 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9e3b46db cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xadfa8f9c cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb943f285 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xcd62f84b cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x3f8bf902 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x49b063ce hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5d40a336 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd84367b8 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x124cd415 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2341a777 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4fc16f67 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x743c1144 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbdcaa476 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xff46800d ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x18b9925c u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x246c3c3c u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x31776509 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x3538045a u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x4cacc674 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5824d003 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x63f919ad u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6a259f30 u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x78185cb8 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7fe26966 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x859eb04f u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x887f93db u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x984ac09d u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb147e7f1 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd4a95396 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0b2b92a6 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0f2a35a5 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2291f542 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2dcad91a gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x31c90044 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x35beeb1c gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3fef5084 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4c01cb0f gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x77ae4d9f gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x942e9398 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa1926917 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc0e1a6f7 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd0bbb5bb gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdcb487c1 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0481036 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf6bcbeea gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4a3df9d0 gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60db48f5 gserial_get_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x60ea48a0 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x7cce7690 gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa8d955fd gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xaea80697 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 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xf1060e62 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x423db862 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x6c825859 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb9c71a43 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x03b22316 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 0x197b8cba fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1d192cca fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x207239fe fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 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 0x4cb6949e fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4f78702e 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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x706a3650 fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7d8ff131 fsg_show_file +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 0x84a3861d fsg_store_cdrom +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 0x884aa23f fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x8855e3c6 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x95cffb3e fsg_hs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa11ba509 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xab6c68ac fsg_config_from_params +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb3adf38d store_cdrom_address +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb52ba28a fsg_intf_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb54d0d95 fsg_fs_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xb5b88920 fsg_common_remove_lun +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 0xd4678289 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd973b496 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe02f1b70 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf2f55fbd 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 0x227f1356 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2a86ccba rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x32f8978e rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33ce12f7 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x41bde3ed rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6b5e243b rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x77f67b4b rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8ab936ae rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d3d4e2f rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8f2a7c03 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x987272fb rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa18c56c6 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcde82dcf rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd504b0d0 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xedeb4073 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bdc2467 usb_gstrings_attach +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 0x13a390ff usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19d62845 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cfa8911 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2bf72fc0 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x39b816b8 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3a172eb4 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x442e4c44 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48e93b7c usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a36d8f1 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4ce3b885 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4e1859e0 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50af8a32 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x517213a1 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53cc9680 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59b00809 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5eba1f6c usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6ad00ebc usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x76b43d25 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84fe3113 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89434da9 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x961aa9f9 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97988056 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb021f524 config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb585fdfb usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe6b5b46 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbf2a45f0 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3ae23b7 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xca38627b usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3be8c2d usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf7f08737 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0efb389e udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3c32755a 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 0x64bce864 udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8c1d1cfb udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x8c7524bd empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x94139445 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x99edebed udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd37f8b6f udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xee51e739 gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x03fbdfac gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x07a83b96 usb_gadget_vbus_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 0x0fcaa981 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x11e173f2 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1944b7d3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1c7525d8 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1ed43c52 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2373b275 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x297fc7d1 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b1a0917 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x32390ef9 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 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 0x57cf1c0e usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f28cd95 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 0x68bfd492 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 0x7b974011 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7be89624 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x80619a4c usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x88eb1523 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8ce67d9a usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9a2fa6d4 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9eb52803 usb_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa0f3f715 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa5940a14 usb_add_gadget +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 0xd08648dc usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd5d8236c usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xee471462 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xef27f8ca usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6994ff2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf82a105a usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfaca4e6d usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xff70b8cf usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x6b42443f renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2cd56fb3 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2e2cadf6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x094f86a7 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1212c433 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1f70699c usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x67c272b9 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x72feecb0 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9f73982e usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xac4cae2e usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7645422 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf9522c8e 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 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x41ca4060 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x456ee857 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 0x763252dd musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x7dbfc82e musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x98f9ff67 musb_queue_resume_work +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/musb/musb_hdrc 0xf7708a69 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x0327cca5 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x0834af56 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3f01b86f usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x8003cb82 usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xca26aa8f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x0763c278 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x410afb9b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0d8a45e4 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0db333da usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17db6e1b usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x274efa7d usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68da3f35 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69bd4dc8 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x873d2984 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x87d6d0d8 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8b52cbba usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f21de19 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93a8e304 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97763db6 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x990170ba usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaf61494e usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbedce457 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcf9add79 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd24e24a6 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4e53c07 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd9e0726b usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xda944216 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x2f9b736c dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xfd0044bd 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 0xdbf4f1a7 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 0xb90e5ab6 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 0x0c03c5fa typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0e6c930c typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x136328ff typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x136421df typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1ca5d75d typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x1d977931 typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2452ebab typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x246d0677 typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2a4e69c3 typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34dce73b typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x34fca422 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x3d4aa72d typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4542fc45 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4d664037 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5742c1e3 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x57de12d1 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5aa8c9db typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5af13bd6 __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5c8fff7b typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5dfd680e typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x5e1cd0ff typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x64ab8e94 typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6535330f typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7142a2c6 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x72ca5dcb typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x751a34c7 typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x77044987 typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x774aa504 typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x798ca9de typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x7ca6b1bf typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x940ce79d typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x95a334dc typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96c387c5 typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9be19108 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa0eb4bb0 typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa50a6099 typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb06efe98 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb867e5c2 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbaa95583 typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc1f6a108 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc46c59c8 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc92fb84c typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xcfe8e8ca typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd34d6940 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd4c7ac95 fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xda70cb47 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdb3100c3 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc8fd616 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe53e7594 typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xeafc1eb8 typec_find_port_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xec28cec4 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xef1cc8e3 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3bf809f typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf5d594a3 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf9d5f8c5 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfb99f1f4 typec_partner_set_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x02623e72 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x35bc22b2 ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x42983cee ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x511e04d9 ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xb2f72df0 ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xc55cac7e ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcc447c6a ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xcdb26ad2 ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xd58e37e9 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01c9c86c usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1a54fb6c usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a63db3a usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2a777035 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x30bcbb74 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x42da4704 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x59a49aea usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x66e22ab5 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x730e9a29 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x85ed3a72 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9eb6859e usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb0fe2406 usbip_recv +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 0xec2e0885 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x02ce3bbe _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x0e8bccbf vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x20a1598d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x4ec43dc0 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7ed6f8a7 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7fde44ac vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x8aef0d2b vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x909c1373 __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa541ddc2 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe3004859 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe66f7c64 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x06c8a995 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xa38e298c mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175be161 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x181acc14 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x193d4b9f vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1c382595 vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27c51744 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2a3778b6 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37a1d074 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d580252 vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43c79d1f vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47b5b792 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4dc3f725 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54a12e22 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x558a4efa vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x59df5951 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5f0eaa87 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6315daf0 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6d08feea vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78c119ab vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c1d4e0a vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c4b105e vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85504a45 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85e605b3 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e3dc009 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x95b12e28 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x969c13a1 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b7dcf97 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa10a1486 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5e611a9 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2002096 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8ea5929 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf07ccb1 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc1bde2b7 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcce638af vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd004695b vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd55f6e48 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6481de3 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xda43bc8c vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea6d71bf vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf36b3220 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4d8e4d4 vhost_dev_flush +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 0x8a7d8ee9 vhost_iotlb_init +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 0x795e15cc ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7fdcda7f ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x82309037 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9c4973e8 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xcad3f38e ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd1bc7611 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdc578a2f ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xe28a99ae fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd4d5f653 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd778732b fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x26f9618f sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf0161975 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 0x331bc317 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4606f8d viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xcd538333 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0e86b357 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2ff0a563 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3027a890 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3182a784 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x44aa54d4 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x81a241c7 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8c630926 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9bf0ba1a w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa7949e49 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe2addab3 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfcad9441 w1_touch_bit +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3a4a238a xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x44fbfaec xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x5109d21c xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x513baa83 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x74f61b66 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x570c3f66 xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x5ac28b5f xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4b62826c dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5ca5fa3d 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/dlm/dlm 0xed005971 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf3b4b8ed dlm_posix_lock +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x31dd78c3 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x60834122 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x75ec2955 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x80223a1e lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x84623707 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d95b6d5 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8e2b873b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0094aa95 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04689cb1 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06283f2d nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07512f45 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a4c697f unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a9288ba nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cb898c5 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e18dc1 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11464ca9 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11ad831a nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14962e1f nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15f0dac0 nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19d5f046 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f4ece81 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24aaee9b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x251de976 nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25bee775 __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27951d41 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28cc60fd nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a238279 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2be4d03a nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d6d948b nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e6aeaee nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f42e3a8 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f7e4e26 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2fc567f9 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33a5a8ef register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x346f4105 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3501e4b5 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36f13385 nfs_getattr +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 0x3bf9c028 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e27de9b nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ff17bf0 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x401a49c7 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 0x431a7b86 __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d8828e get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48f8b63c nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4948e312 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fee0fef nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x544ce36e nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57039bf4 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57f53813 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59d26257 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59efeffb nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b5b4e7f nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb208ff nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c652a3b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64fbd45f __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x651b1aeb nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x657017eb nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6669060b __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67c484ab nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6912fe58 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f9ee880 nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ff4d999 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x700a5625 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70804c22 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70bf2ccf nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70dcceab nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x724b234c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7472b072 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x759a2e23 __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76881754 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x781ef69c nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a64dc47 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b3702f9 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bfdf800 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d0dc49d nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83c644f9 __tracepoint_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x862bd9af __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x868d972a nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x871dfc64 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89287fe4 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8acbbde7 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cccbaa3 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ddd412f nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90497057 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 0x93914a2d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94954799 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x985914cf nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a9d17b4 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bad7f99 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bdf536c nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9be6123f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d919c44 __SCT__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e98400b __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1971499 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3527716 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa69a957c __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa29618c nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa428791 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa89a361 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab0c177e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad703ba9 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadab21ea nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae03973e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaecac677 nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0190330 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb41a1475 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5b1d72e nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb67a94bb nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb781de80 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc09eb6d nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdcd657f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbefa39fb nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc03fcf21 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc09344de nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc22fe9ab nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2b530c8 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc433a450 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc437a551 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4d0fae2 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc67c2f9f nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc725d676 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc79d9ff6 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7deb739 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaef1613 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcde24dcc nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf37a17c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf996ff1 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd02c3c58 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd29f9104 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3447c18 nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4855851 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae77f88 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca277c4 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcb28f28 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde8aacb6 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe115a4c5 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3cb1065 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe515cd20 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb26059e nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef62d619 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1583906 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf17084a0 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5cca90e __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf81d572e nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa625b3a nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaa3efa0 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb842eac nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcc43290 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd3c0de6 __SCT__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe4bdab3 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeb42418 __SCT__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff9c5b26 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffa41580 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xee01d54e nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x018627aa pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02533f90 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03806643 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0772fbc5 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0891eb05 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c7aa895 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0cfcfd70 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12c91038 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15b00731 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16ec0fc1 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18e75751 __SCT__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18ec6ef3 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19380dd5 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1ae86419 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x278f2d65 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ca637e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a5d3dce pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b16e909 __SCT__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b768a2f nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2be79ebe pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d11c0dd nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e5ba0ea pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3147521a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x325245df __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32662392 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3302ad73 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c5ac85 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x34823722 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37280beb __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38eac0f2 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c31ad60 __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c563c50 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e4814e4 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x44c377c7 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b43d2a8 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c0cc663 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53ac74ac pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x55964b33 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5cd47912 __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d321290 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f610313 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60ba4a77 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61b8f4ef __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62b19b37 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63826d35 __SCT__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63a78be2 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a058cd9 __tracepoint_pnfs_mds_fallback_read_pagelist +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 0x707fdbeb nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7484dcb0 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74880b1c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x774b07b0 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x789fb9f7 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79316dbf __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7bc862d3 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e42bd3f __SCT__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x845ad64e __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86543f6a nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x867ddde4 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x871b95b0 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x877ad164 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89e5ba35 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b640d7d __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ca0809b pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ee9921c nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f9d3012 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x917afd66 pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x920b6840 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x927f6cd5 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x930a94fd __SCT__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96c4643f __SCT__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x971c9ee4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b7e4850 __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa27b4342 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa757ac88 __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9bf1c7a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacaf28ba pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad55df7c pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xade79d4b nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadeca730 __SCT__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb25b2984 __SCK__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb28e8911 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb45f427f __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7d2336f __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba3b9152 nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbacd5bf5 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf6f33e6 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc361c3c5 __SCT__tp_func_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc78238ef __tracepoint_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc21ce5c __SCT__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ff59ec __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd103e44f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1e1c42d pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd417ad29 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd55bcff9 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd62d177e nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd84abb7c __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9728aa3 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd9ac5b9f __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc1fa7a8 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc397905 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdcc8ed05 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeb5edce __SCT__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf59665c __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe06f9bf4 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1e2bb90 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5e154c0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe72c11c6 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe79b3d2c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7bb4db3 __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeba7c50d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee0498a1 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee5b4d9a __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeea4a601 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf287fa8c nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf32fa2b7 __SCT__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf66c178a __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x191c4dbe locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa641bc9d opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc5393982 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x19c2600f nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x954e3cb9 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x96733240 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc6254549 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x58dbaecf 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 0x3c36d81f o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5629a042 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5706f465 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f6de936 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x655ba1b2 o2nm_node_put +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 0x87a39179 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x88bb57e0 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0x2c9f6ae6 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8664a78a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa9447244 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xac953c31 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb4e41082 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 0xf7f28236 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 0x168a6957 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x9507547f ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaf969565 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb7636e7d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbc6fe038 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd00dd840 ocfs2_kset +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 0xc41f75f7 unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfa8c15f8 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x05f6461d register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x16b302fd 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/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/notifier-error-inject 0x9cd76992 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xfa488f5f notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x79ab1d2e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x9cc72537 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x0d5b3982 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x3874f33d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5de66875 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x7f4ead31 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xb713d2c0 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc317b36a garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2991d852 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x49f8275d mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x674f5388 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x9823fa08 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xb3a6f1ef mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe61fa45c mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x6a6f184e stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x7825b058 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x35c4a0cd p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x7d94368a 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 0xff0ce2bf ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x07597d6f l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x23ff878d l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x25bc1897 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x44bf4f76 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x793f8244 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x93d59fc1 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf4bf618b l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf7a1d67d l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfd3d63a7 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0xa53ccd06 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0afd5b2b br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x249f2f46 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x271290a1 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2810a7b4 br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3addef24 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x441d693e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x450789e7 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51dd8822 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x546ba64b br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5bda42e2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5db3179b br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0x70fed4ee br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x76e5742a br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7fef9a97 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8005be47 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9887c371 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xafc09f7c br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5715920 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb87905d1 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbed6e6cd br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd59de81b br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe4e33ce0 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe5fb9488 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xefe4ad99 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf690a6bf br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x09a398ee failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x606fc031 failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x7b1c6f6c failover_register +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x08049f6b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11487a21 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x131b23f3 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x143c3fe3 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23c02216 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2615435d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2f37220f dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x448e3a9c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x575b1f10 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d26d2da dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ef7890d dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71d4797f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7474e980 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cea5a90 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84a6c605 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85e38837 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f391d85 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9398f218 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x939df049 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a5e058c dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2e838a4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb975b753 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc019e536 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1199e90 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd35c974a dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd635a807 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf5e581b dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4073539 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe86180ef dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0a28c55 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf7e699eb dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x251ccbb3 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2d7559db dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6395e462 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x85c92b52 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe98514dd dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf865f352 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x055ce6cc dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x07021d22 dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x09678e8f dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x149ee9a4 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1b8871dc dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1cdec6e8 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1da0bf3d dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x22862610 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2452e1b1 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x440719b9 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4da31a35 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4eb655de dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5296aa43 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5606eb3e dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x682320d8 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6847378d dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68967bfb dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x68d21a57 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7fdb5b89 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x8cbcad68 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x96c718f5 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb23c63e8 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb5d22957 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb8c47390 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb90e7bab dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbd572c06 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xcb607da7 dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd07f077f dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe056b23a dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13fdda4 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf9558048 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x65729a57 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x99a9c361 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa45c20db ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd425dab5 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 0x781c27b5 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xaf9c7f2a ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x1b76b987 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x588ef696 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x8208f2e4 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc8e2e55c gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe69777b0 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4740c1da inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54e957e4 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x578ae7f1 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8a984d23 inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8b4d84c4 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9996281c inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa6965d25 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa7452a48 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb1d8bf8c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa047b83d gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x06fc5338 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d017fb6 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x20330ff8 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2164e64e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x219d8f65 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x37fc899c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x427d2203 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6d53a46e __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7774161e ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa59ac168 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa81e599d ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1524959 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbb14cad7 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbcabdc3a ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedd1daa6 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedea6de4 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe9b6ad7 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x0d045efe arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x2ec4d70b ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe3c495c6 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xe710687d nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xd4a0b693 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x08494c14 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x25689839 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2d454377 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7d196c46 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7f0da308 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xee75ff10 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf1c0b632 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0xe3331284 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x4f135a16 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x74556205 nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x7914ac35 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x205fae5c nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xaf943b5b nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x39c7c4cd tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x698fb487 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb2b554cf tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xceb6c172 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeebfed4c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x11ef802d udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1c2aabc9 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x24e497da udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x42819486 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x737001cc setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9e95d61f udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa1b97f3c udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe3c09d3d udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x34cd098c esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4b5b2342 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x671f5f64 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x46a2f879 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbaac653c ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd24d1cdf ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x100f5571 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf54f45bf udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x0cfd8f9c ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x17cbce07 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x668ea32c nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xbba2911a nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xcba5ecec nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x07c9db63 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x51bfcc83 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5f3bd121 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x783697e9 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xaea60511 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb6313c7b nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe6c0e45a nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0x6454b3ed nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x1f222e02 nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x4f8222d5 nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc0c1d9ba nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x3dccdf68 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x50408e6f nft_fib6_eval +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x069b8f08 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x072cf843 l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x38aa4d62 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3c9efeeb l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d5af226 l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40d125e3 l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a13c040 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5acc5a7b l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c542d93 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b33ec62 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a9cecc3 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ad9cd85 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x92bd06a2 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93053aa4 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa215e5ce l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8bdcf65 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbb8a26e1 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3cf8ef1 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe76128f2 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea22b3a7 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf47ae5a4 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x65d30541 l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xb794d914 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bee80f0 ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3901ce6f ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3a3d42e6 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3c280f05 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x465d0d4d ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x491c5d5c ieee80211_remain_on_channel_expired +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 0x5ca3530f ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x63b3c3bb ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x649dfea4 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7fde652c ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8dee70a1 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9617fe55 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9b080259 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e261f62 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 0xa4d8681b ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xabe8e00f ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb2267c48 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2fad233 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc9f638bd wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd03b7919 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe6da60c2 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xef58d8e3 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x04fc4f23 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5f98446b mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x616ad11a mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9bfbaa9d mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf3843d33 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x14fd69cb ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x17a882c8 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x208227ef ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x41188dd8 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7ed7a75c ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81dbbc4b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9b5dc2c0 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 0xa3f07589 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa8b83d67 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb036aa23 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb32de62a ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb57a0390 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xce136d21 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd41ee983 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe101d50b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe3ebe4ff ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xec901952 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf5d5fc4d ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf865be34 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x598eed93 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8e15e138 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe218aaa3 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef605897 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x15a54395 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x6af55e77 nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd6867231 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xe89de90c nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf3bbd958 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02d8cee7 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05cc1e91 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08af0d87 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bf79591 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x173a815a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1927bebe nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19bd75c2 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d190b40 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e41d5bf nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ecc2827 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26ceec1f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28d1c3ee __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c12bef5 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31a7e75d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x400c1106 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45142d55 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46b43b31 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c037cfe nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d99b66e nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x558958ab nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56351436 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59c027cf nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a9e9eec nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61d8dd1c nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x681850c7 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69112e48 nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b4c2ed8 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70929dea nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x719f1f3f nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73558a6a nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7bbf6a6d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80dcd803 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x812217bb nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8853d865 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889ed3fb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x894d5698 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89be360d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aa991dd nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b5c5672 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8db164f8 nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96dcdf34 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9727dcb4 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bdc4811 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d4f0cbf nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4257a87 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7efd952 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8e2f292 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaabec7e4 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab00510b nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabc2146f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafad0d95 nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb15e8dac nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb2516d71 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb47534fe nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4815c3a nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8e916e9 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbcc6990a nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc050017b nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca00d4d9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6f1462 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfafba4e nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4ed9696 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd93d6fb5 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda2167d8 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbb25046 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1766ed2 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe568302e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe958fa4c nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3d45892 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf54d2c63 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf58424e9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf59995b9 nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf654f571 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf705c932 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7328bfe nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8da3d6c nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa07d13c nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbc98571 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfddb1d53 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x87525781 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x9551f5ba nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x9c9841e9 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1660e4ca set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b5c8148 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d86718c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2d512065 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2f005fac nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x34129930 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x49d00fc6 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6ea8a977 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb8d56d63 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc200051 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xbcd07cb8 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x12109cef nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x20f279e7 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x29e8871e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x365871ff ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5dbbfa0d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x85121364 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa5ac4abc ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf2ef55fc ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x5f137db8 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf8d58b9d nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x01a8e776 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xd20022f0 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe93205a9 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x009eb4ea nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0e37b1d3 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3722a89d nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x56741147 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x60b658ce nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x68de1eb8 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x69cc0454 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x82c20b3a flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8b63bb26 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xa6847083 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xaf2115ce nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc61c5197 nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc6d8f6bb nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd15e1713 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xdfa4d6af flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe14de92f flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xf5f7e12b flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x00469ec6 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x083f6ae3 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bdc14af nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33f4cf3f nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4ae013cc nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4bcc3df3 nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f479e98 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9515243c nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9e9f28df nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc27dfc3f nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc6406dc8 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd374130a nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd63031e7 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd9c25654 nf_nat_masquerade_inet_unregister_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xde4e2143 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe165b804 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf41cad6c nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1af2b92a ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x2bb92cea ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x67296000 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x828c1b74 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x916db550 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb0d559a8 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb16c9a12 nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb2136d6b synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc874e642 synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe07d36e2 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xe1c4f558 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ac0c86a nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0e97886a nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1cdea201 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x329ad07b nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3362eb38 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3aade007 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3fa6fb5e nft_set_do_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x40008573 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x481616c3 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x493c194c nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4b493175 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4ec9e1e0 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x501ea508 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51e4bc16 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52df760f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x554a6d42 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5971404d nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5ceb4241 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x641355af nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x72914f1d nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74bd33a9 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8d4d8138 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9083bfcc nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96c5aff1 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x98c1dbd9 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b830be3 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xab90f307 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb04a4b70 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc96ae34e nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd38cb070 __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd3ea140a nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4eba139 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd8c0d487 nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xda419fa0 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdb53bb03 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd119c9f nft_meta_set_init +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 0xea082007 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee7bc70a nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf72082c4 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc0517c7 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfda61a1b nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3fa060ce nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4901ca25 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5497d93a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbe53fe97 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc4cab85f nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe8438cb1 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe980f636 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2faa6512 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x70717ad7 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x81ac10f0 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x0b8b4e4c nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x1d092937 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x21619dc7 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2341cee5 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x7d33c6da nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xa343d9fb nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xad9e6287 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x365a0106 nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x45511b92 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb2833aed nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x02d861a0 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x080659dc xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c3cdc25 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x25c492e9 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x335fcf61 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ce0e3d9 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3dfd27c2 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x48596212 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5071a580 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x52c9781f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x60776ddf xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x630aa465 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x636a6a06 xt_register_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 0x888e4a7c xt_check_target +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 0xa97112f0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab88061b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb79b3575 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb83928bb 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 0xcec07a24 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3e5368f 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 0xf23f373e xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5af936b xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc0e31b7 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe05bb1e8 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xe90496bd xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x2d37e5a6 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3bf77723 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x549202e2 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0e72adca nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xac79ce20 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf0c82357 nci_uart_register +EXPORT_SYMBOL_GPL net/nsh/nsh 0x07079793 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xd677637a nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2f1deb5d ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x564185b4 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcbabe64e ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcd26c490 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd575145d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf61cba40 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/psample/psample 0x3c1f2796 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0xd1e69990 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xe438098b psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0xf7bebcf9 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x25af8d56 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x60ba7ecb qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x693883d6 qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/rds/rds 0x006f21eb rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0263fcb4 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x053dcad3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x107e77a7 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x18b38e13 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x1a38b1fe rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2a981e77 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x34462269 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3826d35b rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x38c4c2dd rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x3ef5db08 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x4008580f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x469c247e rds_conn_create +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 0x624e9703 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x671d27f2 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x69921705 rds_send_path_drop_acked +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 0x8b24a8be rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8bb36f93 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9a0248f2 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9d55ca6b rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xaec7ff47 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb26c5aa0 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xb613274f rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xceab7691 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xda85ff13 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe0f246f2 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe9d78cd5 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf27609b7 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x1e1699f1 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xe9aa6533 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 0x1379a969 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x239ea870 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3cf1b6ae sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/sctp/sctp 0x4fcf1581 sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/smc/smc 0x114d6b63 smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x209fba62 smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x503fa92c smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x6be82284 smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xb164821d smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xc166d527 smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xc262b11c smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xd75bbda2 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xf2a054a8 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xff832a38 smcd_handle_event +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x03568a13 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x23df7032 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 0x44c99e2d 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 0x69d74dee gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f7ca9c xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01f8a417 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0235b9e2 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x040b5b45 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0489a5a4 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04946448 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04faa96c xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05dc5866 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x064f4cd7 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07cd8b50 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d83d30 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0811cf8d rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0848b026 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e98af7f xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f366b5f rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x107a0a82 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1137b0a7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15a5f943 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1615b3e9 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17ae0a9a xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x182c727f rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3accf4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cdd5eb8 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d37065b xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e0a0161 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e119a79 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e863ad1 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e8c58b0 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2056ca64 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20cb8e09 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20d94c8c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21ade6c5 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22e5c39b xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22fed6bf rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ffd4a5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23ba9f45 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25373a85 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b66c7e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x272d0d25 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27737d10 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28b7839e rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bffedcd svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca0d3eb rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cb5b6ae cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3188e4be cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d8dca6 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3446eea5 svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35f654e1 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a6556b3 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b394328 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c223e68 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df0b2d1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e5151fe svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8929e4 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40b48782 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41337499 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416d5558 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41895d8f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4223c859 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x449cbe26 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45984c7d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a4d600 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f3a33e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48722fa7 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4947dbdd sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bb2b014 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da7d900 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcf909b svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcfe0a8 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5c2261 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e5d7856 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f3a6213 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fc77077 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ff7a2d9 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50eb2848 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513bd588 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x520b8b1f svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x533ffbb4 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534a6c5a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53654878 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x539361c1 cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x547a0f08 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x554ba4ed rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55787800 xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56990031 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x579a6324 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59645831 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9bd83c cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bb6e019 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c0cd4a4 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60ce3a76 rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60fde766 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x616ad82d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c4b4f2 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64f02a89 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64fdbbba rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65366335 xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65b3dd0a rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65c03c68 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b96295 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x677f52b9 xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6903259d svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a3c64ff rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6adb8a2c xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5b5fc4 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c66e33d sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e779013 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9fb1fe rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f648250 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x708924d2 xprt_reconnect_backoff +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 0x730f6326 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74056655 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74c9ae2d svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e5912c rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76b5e1bd rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76c24b4b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76e1d456 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79090ef7 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79c02985 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b6c976e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bcd45c0 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c34c645 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cf9c489 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e9272f8 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f48aa78 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x818bdabb svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87f089cb sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x886ba1ee rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x889250d5 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a515ab4 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9cd23c svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf4ccb3 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8edfc165 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f0bc837 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91772ce2 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x920b6b44 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x925d4d66 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9269e6c1 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92b50f46 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936f0b6f xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x948d96ee xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d16b14 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96795968 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x969a0c68 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e57b4a sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ad899f4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d77fc59 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dac2fd4 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e28050d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f7baa55 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fe8d069 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2076f56 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa31ede93 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3b81753 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa53cf153 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5559454 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6d0ddab rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8663a64 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b5fe26 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa98dbbd4 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9b534f8 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad5de40 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaba9234e xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae6dfb37 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0cf7970 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb18fc158 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1c10cf1 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3ad6b59 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb62f2870 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6a2915e rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6e5dabb svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7bc714d rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9828a08 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc0233db svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd472352 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe39d517 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf120949 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf197b8a cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6d3460 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc08b4a56 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f51311 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc18247c1 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6e0cdc1 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc70fe9f0 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8af5eb4 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc96beaba sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaa3d74d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce198b2e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf95a7fd sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd12c5daa svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd213aa04 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd295737f svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29f2770 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd31a2089 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4c53548 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9354912 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd04655 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbf45a7e rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc466f86 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddbd1b66 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde0d1e57 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe01917fc rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0cc2b02 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40365e7 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5bb3948 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6a81e90 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea309831 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeae31e3a xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb3cc8e3 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf449b3 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefdcea3e svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf14fd5d5 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf169ad18 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf16c61d7 rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ec7cbe svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3798aa9 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5468a34 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5963d92 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5a07733 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6258379 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7abffc3 xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f506cb gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8b13e7a xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8e1f25a rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99a0dc8 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd5a57f rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb15e27 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfddeaf7a xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/tls/tls 0x1844e5f2 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xaa407127 tls_validate_xmit_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xdab9f311 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xfc7ab056 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x017cce4f virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x03a81e69 virtio_transport_stream_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x05297248 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0c316bbd virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c5276fe virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1dee7369 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x209b89c2 virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x2b771654 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x34e5b303 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x392d5573 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39fa8155 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x536db140 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x592288f4 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x628107bf virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6440acc4 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6a3c75c3 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6f21b08c virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6fad3b16 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x77c8c7da virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7876956b virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7a04420c virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x85093ae9 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8bffa7ab virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x918f4a6a virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d3b9619 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa42656dc virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac9f0c48 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbf2cc9fd virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xc08d2a0c virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd4131ea1 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe786cdd7 virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe85ed11d virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfd0a015c virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffa82c5e virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xffdea5b8 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x1064a82c vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x10751281 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a1fa338 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4444915c vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x46571155 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x487f7512 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x761ccb31 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85f773ab vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95cf382e vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa5d97ff4 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb86d5006 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbcb17a3b vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3d01bab vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd204fc8f vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8369c38 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe0e67601 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe79bf256 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6a15267 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf79f7ef7 vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xfd61d203 vsock_core_register +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x014c8a07 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0428f975 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a9bd4d9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16762f42 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2c59b749 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33d161c7 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4092df07 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4ca710b8 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67d32f72 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x748b90ee cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9bcf4367 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb259b893 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc31c3cc6 cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc77b681d cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd650fe6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfa8a6c91 cfg80211_pmsr_complete +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 0x1e454ee4 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x22c1de97 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb78ec45b ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd444e2f9 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 0x2a42c4d1 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 0x03ded913 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x0aaf5b1a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x0b753b6d snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x0dcf17b3 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x151d76e6 snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0x19326c90 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x19e4779d snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x2f060235 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x46f51cfd snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0x47eb6511 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0xaf4b2600 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0xba9f685c snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xc85f0dcc snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0xcfa35b2a snd_devm_request_dma +EXPORT_SYMBOL_GPL sound/core/snd 0xdc72f245 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xdca20817 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xdf8ceb55 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0xe3e27720 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf340c6c5 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-compress 0x59246cac snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x69e703ef 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 0x0ee39c06 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x16e0354e snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1de736c0 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4a3dbd9f snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x56d0e942 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5974aabf snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x5c407196 snd_pcm_fill_iec958_consumer_hw_params +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x63e6c80b _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x78d9eeee snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x854e1f67 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 0x9c60dd1b snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa98a0761 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 0xac3318b2 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xcb3097ab snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe51d702e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x16f87f27 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x322d9959 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x356c9f7b snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x47079ae7 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x49d272be snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x56115fa3 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x91af42f5 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x977cd61b snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb4de997b snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf4cd6a87 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfaf4c552 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfb941737 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x1b5d8f59 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x34bc251d snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2267cbf2 amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2314695d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x310ed6b6 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x448bd6e2 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x46395599 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5342b6fe amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x556de310 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x657bed4e amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9b0320c6 amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd392cc1b amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd5fa9e7c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd8bdc1b4 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe65003b2 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x03fce145 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x065ecc8c snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0abe8be4 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x11684cb8 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x17e880b7 snd_hdac_ext_bus_link_put +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1d4e4a58 snd_hdac_ext_stream_decouple_locked +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1ec8c610 snd_hdac_ext_bus_link_at +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x22b72427 snd_hdac_ext_stream_set_lpib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x27505ee8 snd_hdac_ext_bus_link_power_up_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2ff37497 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x30ecd9f2 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3216a32f snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x35bce881 snd_hdac_ext_stream_set_dpibr +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3f44ae42 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6100f9da snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63938af9 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x63dcf0e8 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x668afa07 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6835f5cf snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f06c3cd snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7f6a3574 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x89e773da snd_hdac_ext_stream_drsm_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a14a9bf snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8a20e089 snd_hdac_ext_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8c2a08fe snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x96de70fe snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa6460a98 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa9430bdd snd_hdac_ext_bus_link_get +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xaf22c119 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb7eed00c snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xbb7d46f1 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc0240517 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc11cd5c8 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcfa981b0 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbdd4580 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe1126ddf snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe5bfc1cf snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6c48617 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xffb90592 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02542a66 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0506e953 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0647c3d2 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12597356 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1262df54 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12f48eec snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1626c2c8 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16c21e53 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17b7bff5 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x191d9367 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ac442eb snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2149d6b7 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2215a10c snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ddb3f48 snd_hdac_i915_set_bclk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e183802 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e1afffb snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ea8f8a7 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x304520cc snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30c91e7b snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3329bfe8 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33536d9b snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3412563c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x363cdf7d snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3658d038 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 0x3dcfe5c1 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42c12fb4 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x43b47823 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4435ce82 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46d36c70 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ec4b6 snd_hdac_get_ch_alloc_from_ca +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d1b5fa1 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52c36f55 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x554c38e0 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5554d2a1 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x559264e7 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x582d55f0 snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58658c4a snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e79281e snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x655ab05a snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67d324af snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68f8dd4d snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6c176dba snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d100e8c snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1bd41b snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ea6e52a snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fa44ab5 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7061cbd0 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77c754a8 snd_hdac_chmap_to_spk_mask +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79e3ee1c snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c511ecc snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82668f96 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82830314 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x837a5367 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8bbdd426 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90915d23 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91f9a257 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92126c05 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92c76ea7 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94adb4f0 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x95e70cf5 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x969d80e6 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b8f303c snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c4650da snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eaa73f5 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2162f72 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa51ce707 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa761a99d snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa85d6456 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa97c32df snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xabbffab0 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad9afb6f snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae2acdd2 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaec13e93 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf6ad2de snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd1af97f snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdb894b9 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe8c275e snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc3c77134 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc783880f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0081350 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd99e8dce snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe48db406 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe778eb6e snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8c50187 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed761658 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf02b09e9 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1f2c760 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf881da27 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff388c5e snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1404b9de snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1a11f082 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 0x50f43a66 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x6b9a5be7 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x16108be5 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x38b76607 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6e9a8dd3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9526c474 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x96fa346d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb5811822 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x001c56b6 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00dcb4f4 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01a89524 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0279d9d1 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0398dc12 snd_hda_jack_detect_enable_callback_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 0x0b7f65e1 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0efc1e94 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10617174 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12571edd __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1272cf1e snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x144c4744 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14fafa11 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x151238d7 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b22cb00 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d61bb66 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fcb636a snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21054810 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x231ac131 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x268ce9d5 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27813332 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d5366f9 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f3545f4 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa29d55 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x310b9d76 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34c067b8 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x355b966f snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x377ec6a7 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a408fae snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e6b82c7 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41001c0c snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44a0d123 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45f59920 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4617fb9d snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48246dfa snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aac24f8 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bdc4d05 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c4e5211 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cb03169 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e8053e5 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f941200 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52d5addb snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5453ca20 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6206798f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x621220b6 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d0e906 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6331de5f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63ad14f1 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63b0ed47 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65c81396 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x684214e3 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69a0952a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6afe252f snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b31eef5 snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6baedc0a snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7254240b snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72553545 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73093edf snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77de8760 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x785edaac snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ab65948 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e5a5e9e snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7efd55b5 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fe606f0 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80f5cfca snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813eeb3c snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82fb86ea snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831367c3 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8623bd77 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87b02aeb snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x883e3506 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89622675 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a6947ed snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8be49103 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d03e5c8 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8de8d941 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4809ea snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fab89f1 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93bf41be snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94c774a5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95761265 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95b6ebeb snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97412105 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98522d1f snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd317ba snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa085863d snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4c3d835 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8799534 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab5bca4b snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac98e99c snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae048c64 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0768070 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb37abdc2 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8c7b024 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba014b58 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc020f6f snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcaa2fda azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcaddff5 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcc9e0ba snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc213f3f1 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc24d7450 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca58eead snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcacf3cf6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb8e69cd snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd237472 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd90fe53 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd206b360 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd45729a5 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd519b595 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd625a329 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd64283fd snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd940d7a8 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdaee9e92 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdba1e0ef __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde4a26c5 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf93d36e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe14a07bf snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe56e99f8 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7c0fc9a snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedcf60e9 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf01887c3 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4da4969 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5ed4291 snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d0e7e4 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8551ae6 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9116152 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa667b84 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc63ce06 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc7ebc94 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff989187 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01505c03 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19a3a7e2 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1fe77a32 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x26f20a84 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x31dbedb0 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x562d1ab0 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a97e19a snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6f261bb5 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x710fa71c 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 0x79be514f snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8e97118f snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8f90a885 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x91564393 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1904276 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc220e021 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc5edd581 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xeefef235 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf4487f8f snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5e49f30 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7154e8c snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfe691777 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau-utils 0xae620be9 adau_calc_pll_cfg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1372 0x2fddf0b4 adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x18276cb2 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x798e9e2d adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x033f2f5f adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x09c8f07b adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0c6c84ee adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4805fd04 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x57fdb8dd adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x64000aee adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xadb54521 adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd7f000b3 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe510560b adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe6513694 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0x4d0e0c41 adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02c5b854 arizona_init_dvfs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x02cc64ae arizona_init_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0523f793 arizona_init_mono +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x05eb7c13 arizona_lhpf4_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x06edb49b arizona_out_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x090dd62e arizona_output_anc_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0941488a arizona_anc_input_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0a4cff83 arizona_adsp2_rate_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0e289789 arizona_simple_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x0efc112a arizona_jack_codec_dev_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1081e74e arizona_anc_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1449ab1a arizona_voice_trigger_switch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x19928d7c arizona_set_fll_refclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x1bf9425f arizona_of_get_audio_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2058fec3 arizona_in_vi_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x23685185 arizona_in_dmic_osr +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x24531290 arizona_free_spk_irqs +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x2a827b59 arizona_init_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x33403e79 arizona_input_analog +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x3fe22a48 arizona_anc_ng_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x40c9113b arizona_isrc_fsh +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x418f9f03 arizona_in_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x44b7d45a arizona_init_common +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x46277216 arizona_rate_val +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x57d353b4 arizona_lhpf1_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x5f8ddf1f arizona_clk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x63971175 arizona_init_vol_limit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x663b4929 arizona_lhpf2_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x673ad55b arizona_out_vd_ramp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69102a20 arizona_sample_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x69c962b6 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 0x72d923d5 arizona_init_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x736ea15d arizona_in_hpf_cut_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7bac67c7 arizona_eq_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7f26f273 arizona_mixer_texts +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x7fcb929a arizona_sample_rate_val_to_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x8f455e7f arizona_jack_set_jack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0x91e14446 arizona_in_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xa7a23aca arizona_lhpf_coeff_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xab4d845c arizona_rate_text +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc04c429d arizona_lhpf3_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc08332d1 arizona_dvfs_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc1889b8b arizona_jack_codec_dev_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc593c859 arizona_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc5a72227 arizona_out_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc701be0c arizona_init_dai +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xc9c29637 arizona_mixer_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd077ba91 arizona_set_output_mode +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd2f3d23a arizona_init_spk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xd859ace6 arizona_asrc_rate1 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xdb58532d 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 0xe933fbe7 arizona_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf15dbbf8 arizona_dvfs_up +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf5fc939c arizona_ng_hold +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xf90c2e9b arizona_set_fll +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-arizona 0xff87b78c arizona_dvfs_sysclk_ev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x57d19952 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x895fe873 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9b5b0b18 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x156cc5a7 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2237cd06 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x22b27952 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x61db98e1 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x75b8426c cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa05bd230 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa339c378 cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb7dfd284 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xc960cde0 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd0d04c32 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xdf593a8d cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe12d8769 cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xfa1ca5e1 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0c79be8d cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x65a3b512 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x000c768e cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x1dae8a8f cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3b47fcd3 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x553ea99e cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x7e545024 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x47718324 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x58d6ecab cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf0d929f2 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x286b60e0 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x5a72547a da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x7519333e da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xdc510d1a da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0bbb0532 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x0cb696d8 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hda 0x3b91e16e snd_soc_hdac_hda_get_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x2d0eab96 hdac_hdmi_jack_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-hdac-hdmi 0x580544cf hdac_hdmi_jack_port_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x9d5d2944 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xff857fcb lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xb5a189fc max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x437ec103 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x73bfc7f2 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xb620330a max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xeb331cbe soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x3cd6e28a mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x6b117400 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbc81e2b7 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xbe5f0cc5 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xcce42b29 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xf6e12495 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8825 0x207f7133 nau8825_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x3fe3121d pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x50638d23 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x99d146c7 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x9e61eaef pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xe99b527a pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x2818b12f pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xa00a7a19 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x20b8c64c pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x9698be7b pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xca43aa9b pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd87645b3 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x979facbb pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc74f36cc pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd1aadf99 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe83f3853 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-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 0xb57522c3 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt298 0x90af54a1 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 0x1722b204 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x72c7d8ae rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x95889060 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcc2c50c2 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xea961ef9 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xec519b02 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x421fabea rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x5209f42d rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x1a4127ae rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xd69cb960 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 0x70d32a55 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x9c258218 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xa8b952fd rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf66647dd rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x587b8637 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 0x1ff3fda6 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x2f9aa8ec rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x31277cf4 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x56c48751 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 0x917f7ff8 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xa745daab rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xaa1c7696 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xc4ad13ef rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd4ce2363 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf711a8ae rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xf980c5ed rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x36a03871 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0d82bcd3 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x18b2c3ae devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4f28fc88 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x79b368ed sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x83504590 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x56a8776d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x8e1f1702 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1b82ad00 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x250b4c01 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x9957abfc aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xf18a63c1 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x414d726c 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 0x4b88634a wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb5ad1bd9 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd02a117c wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xe58b26df wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xec4af80f wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x01197b52 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x087228ef wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x08de705b wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1b3abe0d wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1bca7492 wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2c152053 wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x360bc630 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x59f8f694 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5d342f1b wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x63517e3e wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7d4d33fa wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7f097453 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x836080c1 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa2ecf335 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa596ec88 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa77a4b50 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa819032b wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb1083d63 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xbd8cae0a wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc058d462 wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcae62c43 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdbe79f26 wm_adsp_compr_set_params +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 0xe7bf9dea wm_adsp1_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 0xec55885d wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf950ad6d wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x27eaff43 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xc679059f wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7ca196f9 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x893c206a wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb1efc8cf wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd461556a wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xf04700eb wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4d012470 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb669cb12 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 0x0bdcfb4a asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x112b723a asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x15406a0c asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x17ff9c06 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1d28e0c4 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x20e57c5f asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x27677a7a asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3ed8b30b asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x46d87d62 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x49cf9482 asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x55d8a7c3 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x57c187ab asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x5ddd9327 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x60c3d2ac asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x63be7cfa asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6de83637 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7e2ff1a0 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x82dab86f asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabea6fc7 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xadffd3a1 asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xdf3aea19 asoc_simple_shutdown +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 0xf43771bb asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x1689dcb7 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-atom-hifi2-platform 0x7955842d sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0ddd5091 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x4008cbc7 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5bae16f2 sst_context_cleanup +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 0x75f1d055 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xfb4989a8 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x13430765 snd_soc_acpi_intel_adl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x1a04997c snd_soc_acpi_intel_cml_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x2546e27d snd_soc_acpi_intel_ehl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x333bbde2 snd_soc_acpi_intel_tgl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x34a14f4e snd_soc_acpi_intel_broadwell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x3e10d45b snd_soc_acpi_intel_cherrytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x40dfb2c1 snd_soc_acpi_intel_cfl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x462d8968 snd_soc_acpi_intel_cml_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5a5565e1 snd_soc_acpi_intel_adl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x5c652038 snd_soc_acpi_intel_glk_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x607c51aa snd_soc_acpi_intel_mtl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x659eb785 snd_soc_acpi_intel_rpl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x6cd4e0ab snd_soc_acpi_intel_hda_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x745f1210 snd_soc_acpi_intel_cfl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x7e9d4e97 snd_soc_acpi_intel_baytrail_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x88dd0c65 snd_soc_acpi_intel_haswell_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8a37e27f snd_soc_acpi_intel_bxt_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x8d98c309 snd_soc_acpi_intel_mtl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0x90d1a0c7 snd_soc_acpi_intel_kbl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xa002f115 snd_soc_acpi_intel_cnl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbceb78fa snd_soc_acpi_intel_skl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xbd17d594 snd_soc_acpi_intel_jsl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xc484b592 snd_soc_acpi_intel_rpl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd1e33c91 snd_soc_acpi_intel_cnl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd765ffb3 snd_soc_acpi_intel_icl_sdw_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xd974c666 snd_soc_acpi_intel_tgl_machines +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-acpi-intel-match 0xea85a191 snd_soc_acpi_intel_icl_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 0x19f4e0c4 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x30a5a0cb sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3c829ed1 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x40985af5 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x54fa9bed sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x66e19b07 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x87cdf7d2 sst_shim32_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9199d4b0 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xaa616732 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb23e1766 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc17ce06c sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd2065bb5 sst_dsp_register_poll +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 0xe74de93b sst_dsp_shim_read +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 0xf413e565 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xff280071 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x01af32c8 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0617275e sst_ipc_tx_message_nopm +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x064e790a sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x18370b8a sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x326d3760 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x4951c419 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x93958b73 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0a3fdf0b skl_ipc_unload_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x0dc96b6e skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1040f6c2 cnl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x12d18220 skl_get_pvt_instance_id_map +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x13c5da6a skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x1e8a1e80 skl_ipc_load_modules +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x24a34ad1 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x318a00ac cnl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x36c25b17 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x3ed45824 skl_dsp_put_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x43a286f4 bxt_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x4ec34efa skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x56e7edf3 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x61166352 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x65b11e00 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6c0b952c skl_clear_module_cnt +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x6d058f12 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x8265cda2 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x891a09ef skl_dsp_set_dma_control +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x897c9d7f skl_ipc_set_d0ix +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0x91bab942 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb013cf4c skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb2fdcce8 cnl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb9713549 skl_dsp_get_core +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xb9ca19c9 skl_put_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xc77a350d bxt_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xdd8cec9d skl_sst_ipc_load_library +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xe9d969ba skl_ipc_get_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xee4ee49b skl_sst_init_fw +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf12422e4 cnl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf15923b6 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xf76b3e77 skl_get_pvt_id +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfb401600 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfb7a8f5d skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl 0xfe3d508e bxt_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00214714 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x007da351 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x014b5097 snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x046b9284 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0580863d snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06a0732d snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c25a1d snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08b85884 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x091f91e4 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09532e59 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09a6c212 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a08ac23 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a291096 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a3a5884 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b08c29f snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b247c63 snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10c0045c snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x116061c9 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1161593a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x143c18da snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14dda805 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14dfa195 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x160a5634 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17477d2e snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a6884a snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x180d2bc6 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1aa1ba32 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c1a8e02 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ec3b9b6 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f94ada5 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2189b06a snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22a41e3e snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22cd84a3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2562424d snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26dfd777 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x282fc5d9 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b63b602 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c8d28ea snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d9bbd1f snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3098ea48 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x322f45ac snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3464d13b snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34c2f7e4 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x353702d0 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x355f2323 snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3900af24 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a3b3f74 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c610bc2 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c63458a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42250b8b snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43778a65 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x467e4ae2 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ddaf3b snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48462608 snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4879fa58 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x490a1484 snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a4554fa snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c38386c snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d00adae snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5033b574 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x515992ef snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x543189a5 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55506804 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5594825a snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x581ed767 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x598b0c40 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a88f784 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bcc54f9 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c70f91c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c8b21f0 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d088d71 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5df2ebb1 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e514aec snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x602a1b2f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61922cdf snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6211dd07 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62b309e7 snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62c9f239 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64ef72b3 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x668f9a0a snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68df8ac5 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69794441 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a594a2c snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b45688d snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d324100 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d890a8c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ec7a70d snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f0085b9 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f02d3a4 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7003375e snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70a32f98 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70bc062a snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72fa0616 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x740f8b7f snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x746e9467 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74b83b36 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c3eea8 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7569ead3 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75fb9c05 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75fdb4b0 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x782bc1ed snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78abed0e snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a440f7 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7abf1931 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7af22a95 snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b85f0b9 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bbd7eea snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cdfc9f7 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fcd2744 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82217fc5 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x852862de snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3685fa snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c541f43 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cd950ce snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ce3b1dd snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cfab06c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d4ce136 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db37160 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x914226e0 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92c91219 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93f45b93 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943c5f42 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fd7f1a snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x962eafc2 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97c7327f snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97df08e8 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9830dcbf snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999192ee snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a1790e2 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c155785 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d5941db snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f60e854 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f6cda4f snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fea990b snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1335193 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa163f0f1 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4d8e509 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa66e8b28 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa895dbd0 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8e3946f snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9df27c9 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa429a4f snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac11209 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac6ee72a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad4966b7 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad5428ee snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae11d0f1 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf89cbbb snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21c8336 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3b3486b snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb45eccbc snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb550b170 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5ce43c0 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7cb31b5 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8c9d7cd snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb489710 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb8cb943 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd19bae6 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd4243d7 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbebd6caf snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11295ef snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2240091 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc39aa0dc snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c86f8b snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6722c04 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc79b1c91 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc881d6a5 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8ab14f1 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9cdf66b snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcab68e63 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc374905 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccd0aed4 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce2254d7 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd03b3124 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd095e001 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1bd3f08 snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd42b927b snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4f4ead5 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5259025 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6fd29cc snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7913488 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd7936f36 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc11c75e snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc340801 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdca82317 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddcd5287 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde3f3bce snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde4fdf4c snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2b553af snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5860cac snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe798ee5f snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe96ec7ec snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea8add81 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed75dfb7 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee38fc70 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeecb8809 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1574422 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1b58fe6 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf31fbf51 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf452a3a4 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c519f6 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf648a7f0 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7683377 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9472efe snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9483351 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa95a81f snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc098ca7 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd4d2a4f snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd93f314 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe35c4c2 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe41bb57 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff0a50f6 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff67dc38 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x27a8eb30 snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x8686b5e6 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xad971f9d snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xbd8a231b snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcda17b63 snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x18b0369a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x262177ac line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x30c37382 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x39aeccd0 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3bd3cecf line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3e50a060 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x46dcb3eb line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5b364d1b line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5deed90c line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x678b4ded line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x821a1bfe line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x835ee41e line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8914c523 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8cd73003 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9226d9c5 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa9ecb5c2 line6_version_request_async +EXPORT_SYMBOL_GPL vmlinux 0x000afa5c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x001aee28 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x001b074f mce_is_correctable +EXPORT_SYMBOL_GPL vmlinux 0x001b879f crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x00219af9 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x003ac40e dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x003b94d2 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0x00477aec ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x004b2351 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x004d85f1 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x0051cda1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x00559f0c udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005accdd init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x0081d0a8 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x008539f0 klp_shadow_alloc +EXPORT_SYMBOL_GPL vmlinux 0x008a2b94 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x008df46a __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x008e5cee ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x009bd97e fpu_alloc_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x00a1bdfe devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x00a8b0cd __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x00aca547 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x00b4ce64 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00ccded0 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00db9017 usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00ed8bda devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x014ce0c3 open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x015b2bec get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0169de75 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x01738192 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018d7805 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c12c32 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x01c27ed6 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0x01d6bedf ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x01df0ea3 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e25f66 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x01eb9fca efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x01ee5532 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x01f1e12b wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0213058a ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0226e5a1 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x022a9c4b nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x022e95ca unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x023beb53 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x0249ccf6 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x026f50ba ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x028a8d6c perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x028c276d fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x0292f250 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x02989066 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x02a1ba3b crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02de224a fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x02f3a3db fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0x03008b1d rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0322584b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x0323bb1b debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x03246540 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033bab73 devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034c64b7 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x039a72b7 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x039b4378 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x039f23bd watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c1c035 acrn_remove_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0x03c325d4 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x03c52a3a extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e4a469 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x03ea7314 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x03ee8857 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x042614c7 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x04413067 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x044b532e crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0x044fa164 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x04591731 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0481838d fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048bbdae usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x049a8fc6 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x049f3b7c irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x04a57888 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c54c08 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x04c690ee devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04de2fe7 __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ee1e34 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x04f9db58 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x04fb466d add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x050798aa sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x0525ed08 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x054470c2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0549e88a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0559a80a vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x055d47ec pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x05691349 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x0572f716 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0588266a iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0589848d pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x0596e5c8 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0597cd89 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x059e3349 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x059ff5f0 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x05a901d0 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x05bc875c blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x05c75221 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x05cc1af3 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x05d77978 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x05d94a0f swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x05edb7ac fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x060214fc hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06183555 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064ceb55 cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0650c2b9 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x066380b5 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x0675b110 __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x067aaac4 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x06829b65 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x0682ff0e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x06941735 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x069b1a88 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x069f7ff4 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x06a63dbc fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x06ad2fb7 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x06bcc2ab __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x06c7e84d pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06d46714 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x06d4c87c irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x06d699ad vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x06e44fb7 clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x06efa804 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0x06f70474 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x06f80eeb gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x071789a0 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x07245890 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07262a63 exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x072d60f1 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x0748fa20 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x07521d2a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x075bf130 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07805eb4 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0793d35e __xenmem_reservation_va_mapping_update +EXPORT_SYMBOL_GPL vmlinux 0x07acd706 devm_intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b64d81 hyperv_stop_tsc_emulation +EXPORT_SYMBOL_GPL vmlinux 0x07bc7472 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07d43266 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x07e83da3 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x07ea379c regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x07f2c3f2 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x07fdcf4c __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0x08005eb0 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x08124341 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x08136f17 xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x08289a67 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x082b82f9 poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x0837c17b ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x084d3423 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x086214b3 fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x086639ad pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x0866d85d iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x087ebd53 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x088717ca pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x088a06b4 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0892973b ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x089aa089 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x089b707f decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x089f018a __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x08a3f4cc vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL vmlinux 0x08a4d22d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x08b00086 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08cdecb8 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x08ce0aa1 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x08d1a4fa __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x08eebdfb sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x090172ef pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x09060760 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x090cf1fa fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x09148d06 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +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 0x0940f07d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x09476df9 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0950034a devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0x09512692 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x09576d89 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x095d6f06 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x09643e70 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x096a7e6f x86_spec_ctrl_base +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c244f3 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x0a259c2c tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x0a284844 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a2c3633 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0x0a406097 driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x0a47553f tdx_kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x0a502c98 dmar_platform_optin +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a562653 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x0a63e3b0 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0x0a6a7f17 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a711436 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0a73eaff raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0a750b92 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x0a7eb152 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x0a850dea edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x0a88168d __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a8fca8d vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x0aa37f96 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x0aa477a6 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0ab739b0 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0abd02f7 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0abdc439 cc_platform_has +EXPORT_SYMBOL_GPL vmlinux 0x0abdd668 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0aca9eeb extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ad137d3 lpit_read_residency_count_address +EXPORT_SYMBOL_GPL vmlinux 0x0ad60e8c gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x0adb1ff5 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0e4f4c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b1121c6 devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b1b21f7 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b26f151 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b28a435 ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3ec053 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x0b4beb7e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0b4df86c fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x0b4fd816 devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b58a28f dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x0b63d63a crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0x0b64b25d usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b6ced04 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0b9d5bcc __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0ba1bbe7 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0bb09d62 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x0bb6b665 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bbeaeba uv_bios_enum_ports +EXPORT_SYMBOL_GPL vmlinux 0x0bc53cb6 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x0bca4b5e mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x0bcc7eee is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x0be25db6 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0bebdebe devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c1a82a3 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0c1add85 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x0c1fced9 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x0c2540ce da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x0c29475e md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c663f7d badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0x0c6fdc08 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x0c7e1507 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0cb86891 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc4d7f5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0ce4faf8 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0ce8dd65 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0cfe59cb hyperv_fill_flush_guest_mapping_list +EXPORT_SYMBOL_GPL vmlinux 0x0d014832 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0d3210a7 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d459213 work_on_cpu_safe +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4d704f bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x0d4e3f8c iopf_queue_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d6933f3 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x0d714afa rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x0d860e3e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x0d8786ed blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d8efb2a rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x0d9b2e89 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x0daba17b crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x0dc95603 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x0dcb3ee8 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x0dcc462a kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x0dce4cb5 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x0dd2d1d1 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x0dd37997 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0x0ddadea2 __SCT__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddbd727 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x0de2e2c6 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x0de55668 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x0de7d3fd bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0x0df237c6 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1e291f ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0e1fc8ef __SCT__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0e22130a tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0e2e3943 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x0e3e6316 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7a4f39 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x0e84010c efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x0e89173f iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x0e8d6454 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ead742a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebe54b8 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ed19e21 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x0eeae3e8 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0ef8596e crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x0efae755 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x0f0b21fe pm_trace_rtc_abused +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f1df4ca ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x0f20db77 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x0f2cc892 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f34200e pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f34d0bb pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f3661ab memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f4c770c pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0x0f51543f crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0x0f63cfb7 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8cf6de synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x0f955c03 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL vmlinux 0x0f9f6e54 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0f9fc04e uv_get_archtype +EXPORT_SYMBOL_GPL vmlinux 0x0fb4fd39 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fc177d1 pwmchip_remove +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 0x0feae75c dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x1008c5cf __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x100ec8ee gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x10130dc9 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1013ce28 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x10143df2 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1038b96f adxl_get_component_names +EXPORT_SYMBOL_GPL vmlinux 0x104f1cdc crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x104fd2e6 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x105299e8 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1053ffc0 __SCK__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1057d0d4 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x105986ff extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x105e2d0a splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x10855c0f irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x1088ea76 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x10985b91 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x109e7274 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x10aceee3 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x10ae8bbd tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x10b65aa5 acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x10b76974 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x10bb7ce7 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x10cbc3a9 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ddd0cb __SCT__perf_lopwr_cb +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eef6f7 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x10f8e9c5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1125e998 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1135b3ec srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1154901e syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0x11585822 dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0x116180b5 hv_current_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x11687303 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x11688799 cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0x116fb46e fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x11762376 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1195eade vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL vmlinux 0x11a07916 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x11a9d9d3 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11b5c43c power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x11bf8089 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x11ca8071 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x11cc1e96 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x11d36d13 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x11daf06c vfio_pci_core_read +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 0x11f0facd of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x11f39a82 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x1202bf6a usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x12159d03 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x12189359 __SCT__tp_func_block_unplug +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 0x1238fc77 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x12641f69 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126cc993 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1270bb4c devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12746004 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0x127c109b __SCT__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x127e5ecf usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x128b56e3 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12975f03 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x12b181bf __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x12ba8efa verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x12bc6c77 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12c68ddf crypto_default_rng +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 0x1302ec5e ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x131535f6 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13172a70 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131d8775 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1329a37c param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x132b7804 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x132f1986 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x132f1f88 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x133be918 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x1340dfd4 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x1351e952 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x1352bd74 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136f1ce2 split_page +EXPORT_SYMBOL_GPL vmlinux 0x1370831f fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x13894874 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1390cf8c xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x13a2209d pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13a4e287 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x13ad017c fpu_swap_kvm_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x13b5be18 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x13c62729 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d3617e edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x13e7ac80 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x13e9e56c irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f44f8a find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x13f77848 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x14015c9a skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x14130e22 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x141d2ec2 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14218810 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x14225e23 edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x142484d1 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x143105f8 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x14404410 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x145a5357 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146e7ea4 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x1475d603 xstate_get_guest_group_perm +EXPORT_SYMBOL_GPL vmlinux 0x147bc649 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x149917e9 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x14ae0852 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x14b42f28 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x14b821aa dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x14c3d3e2 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x14ea39c6 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14eead58 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x15160d2e regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x152c2ecc blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x154c1eb5 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x156e2a25 ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x156e8afe __SCT__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1584b3f5 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158d33e6 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1592fa14 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x1593fb66 clocksource_verify_percpu +EXPORT_SYMBOL_GPL vmlinux 0x159738d2 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x1598737d irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x1599dab7 vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15b6e142 __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x15c59805 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x15e049d7 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x15e4fd87 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15f27ac0 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x15f67aa6 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x16028353 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x1608f253 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x162c833f raw_abort +EXPORT_SYMBOL_GPL vmlinux 0x1633a3f6 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x163b28d2 iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x163fa31d crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x1649beb4 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x16554c57 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x165fc5aa regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x1663f6eb shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0x1665a8cd edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x166a8cb8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x166db1b5 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1671777c bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168a82ad ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x168b71fc devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x168c014e pwm_lpss_probe +EXPORT_SYMBOL_GPL vmlinux 0x168c1f2f fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16971b74 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x16b17f4f mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x16bdfc41 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16d32950 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e73c83 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f3a58e dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x17040b0b register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x170f984c receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x1738d874 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x173cbea8 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x175d7fa8 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x175fe730 crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1764bac4 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x176adc64 iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x176adf76 xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178c7759 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x17a67d90 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0x17a843f7 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0x17a9ce3f devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x17ab2533 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17add64b gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x17bbc5b2 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x17c0d243 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x17d2bc8d regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x17d578a7 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x183cee06 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x184eaa87 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1864897e pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x186e9f97 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x1893bcf6 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x18a6e469 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x18b1609a sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0x18b2790f uv_bios_obj_count +EXPORT_SYMBOL_GPL vmlinux 0x18bfe236 msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x18c3942f bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x18cc473b devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x18d9a818 __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x18df2cbd edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x190523ff relay_open +EXPORT_SYMBOL_GPL vmlinux 0x1921ce76 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x19276386 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x193dfdf6 klp_get_prev_state +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x19457ee9 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19697bc1 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x196ee63a rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x1972263d watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x1974ca8e crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x197cfffe regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1988fdf1 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x199c4833 __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x199e5d44 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a654aa iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x19ab52df blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0x19c2ae2d regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x19e0ae50 __SCT__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x19e17e3f acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x19e3e54a iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19f0a0ce virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x19f0c50e syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x19fe99e3 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a43dd6b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x1a4d6ac8 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x1a5f8df2 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x1a677272 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a74a8f1 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1a78e16b cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x1a832523 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1a832c65 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x1a83725c of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x1a8677e7 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x1a8bb37e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x1a9dc40b subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1aa6ccb6 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1aad5051 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x1ac030df invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1acd9e8b xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x1ad7708c fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x1ad98448 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1adbceef devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1aed9b56 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1aff3d55 mce_register_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0x1b02c4a1 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1b13a3ee usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1b1730b2 dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b1e9fdf rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b387aae genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1b3fdbd6 vfio_assign_device_set +EXPORT_SYMBOL_GPL vmlinux 0x1b4184c6 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b46ea42 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1b482d1a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1b48a95a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b52a1f8 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b65efab devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1b697f14 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x1b6c2ab1 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1b8016ff raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x1b84861e bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8edb23 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x1b8f3d97 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b979e7f fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x1ba237b0 default_cpu_present_to_apicid +EXPORT_SYMBOL_GPL vmlinux 0x1ba9626b sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x1bb165bb xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x1bb5938f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bd0c3b6 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1bdc2399 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x1be91551 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1befa466 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1bf42a65 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x1bfd4dc4 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c599ced devm_pinctrl_register_and_init +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 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c7ee52e __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c84ef7e tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9586c8 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x1c9cd462 __SCK__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb8fb0c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbcb32f l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cbd19c4 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1ccd85d8 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1cd63825 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x1ce341e4 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0x1ce6470c devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0x1cecdac5 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x1cf3fe23 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x1cf4707f vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1cf7867e usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1cfa0957 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1cfe4101 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d1203b8 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x1d174678 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x1d178348 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3774ef ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1d3a6ebd elv_register +EXPORT_SYMBOL_GPL vmlinux 0x1d547379 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x1d6f67a4 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x1d703f0f reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1d71115b blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9bdc05 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x1da0b45f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x1daeb7e8 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x1db1679e __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x1db3a8a4 __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x1db7a7a6 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x1db898e4 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1dc7f4df __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x1de561c0 gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x1df38691 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1dfca8da pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e0980f3 devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x1e151a45 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x1e280ace i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x1e36567f bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3da070 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4a9ed6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5a5f22 sn_partition_id +EXPORT_SYMBOL_GPL vmlinux 0x1e6915cb __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7e08c6 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e912415 uv_bios_get_heapsize +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec19c85 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x1ec5dbd7 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1edf3662 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1edfa2c7 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1ee76162 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x1ef036f6 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1efe7226 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f00aa7e is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1f056e9e watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x1f150973 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x1f1ef66b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x1f1f7acf usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0x1f21240b device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x1f335fb3 devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x1f36241c clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f483126 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x1f4ad4d6 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x1f4f25b3 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x1f55e316 genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f5ece97 cond_wakeup_cpu0 +EXPORT_SYMBOL_GPL vmlinux 0x1f64e7ca dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x1f6f507a pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f94b884 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x1f9fc43c pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1faec5ba tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fb84dae __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x1fc79991 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1fd0b5ef bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fec1b48 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1ff2be36 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x1ff417c5 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x20057ac7 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x202efa8d usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x20379559 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x206141a0 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x2065a5ad nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x2073bcc1 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x20899467 hv_stimer0_isr +EXPORT_SYMBOL_GPL vmlinux 0x208d6ce7 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20ab00d1 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x20ac33a4 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x20ba9df2 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x20c7471d dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x20cab8aa dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x20ee3ddc pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x20ef8a4e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x20f429e5 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x20f9cfbc regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x210754c5 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0x210d9d3e __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x213aa918 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x213bf497 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x21491e03 vfio_pci_core_match +EXPORT_SYMBOL_GPL vmlinux 0x2159fa8b inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21838724 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x218465e2 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x2187d027 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x218c3a0d eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x218d3fcb mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x21957426 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x21a434c8 acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bf233d crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x21c36dff pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d2232e devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x21d52d03 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x21d8a173 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x21dc54f4 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x21dececc __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x21e573af phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x21f4744f cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x22162058 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x222ef20c devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x22349b93 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x22550e0b ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x226b8c03 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2293fad7 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x229901ee clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x22a40d79 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22b6ceec __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d7f009 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22dfb228 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x22eac2a6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f24aed fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2301667e __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x23087501 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x2313a7b0 devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x231bf27b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x232f1abd pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x233acde2 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x233af481 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x23492225 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2386c0ea __SCT__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2387cb63 ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x238c9b02 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x238f4157 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a3b935 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x23a60496 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x23ab4b1b iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0x23b4e0d7 clear_page_rep +EXPORT_SYMBOL_GPL vmlinux 0x23b7f9f4 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x23bd7ac4 perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x23bdbe81 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c54a2a vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x23d57672 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x23f002f6 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x23f69f8a wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x23fb6d9a spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x2410c338 x86_virt_spec_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x2412b480 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x241f275a bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x242331b0 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x2428ddbc ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2450c2e0 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2453036f blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2461c758 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2468bb91 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246e7676 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x24709b2f trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2473498b fwnode_graph_get_port_parent +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 0x249aa991 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b0f4f0 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x24b8e9d8 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x24c4e9c0 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x24c94d9a virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x24cc039c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x24d430e8 tcp_register_congestion_control +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 0x251172ce pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x2512886e ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x253116c4 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253836aa tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0x253bc5d9 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25555a7e blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x25763df2 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x2582dddc usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25ca1a9e devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x25e5672c housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x25ec017a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25fca254 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x25fd476d vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x26149882 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x262a7063 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x262c2e93 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x262f8c85 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x263723a3 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x26510a53 driver_unregister +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 0x26610df1 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0x26616aee sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x2664b49e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2667f6a7 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2672ff3c dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2685b311 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x2697e655 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cc0fc5 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x26cda94f e820__mapped_raw_any +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x26f02cfb inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26f50269 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x26fdf888 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x2704c18c sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0x2705c820 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x2714ca59 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x27202b56 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x272bdb3e gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x2730d082 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273aff5c __SCT__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x273cbb44 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x273e1002 fpu_sync_guest_vmexit_xfd_state +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x274efaab ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x276eca63 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x276f4b75 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x279f12b7 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x27a8af4c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x27ba4ce2 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x27d55517 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27f18ba3 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb77f4 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x27fce98e blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0x27fe49d0 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x27ff0117 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x280f5399 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2813dcb7 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x283d4c38 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0x2844ad57 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0x2851a620 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x28672c19 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286cc756 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a01e6a __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x28a110b9 usb_enable_lpm +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 0x28b4f197 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x28be0cef misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0x28c9ba37 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x28d75b69 vfio_uninit_group_dev +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28f02b05 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2929e6af irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x29366b61 register_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x2939f57a pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x2951a872 trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x295a41a7 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x2974f534 iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x297da728 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x2997fc9c fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x29ac4ef5 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x29c95942 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0x29d7d7b0 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x29dac9ed dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x29dc8946 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x29dfaccd percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x29e28f81 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f208c9 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x29fba030 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x2a149721 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2a20c2a0 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x2a2aea17 clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a307807 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2a4e3dd6 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a613951 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a6ef725 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2a75289a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x2a8ce43f crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x2a901570 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aa1e287 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2aa2093b pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x2aa35ec3 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x2aaa461e thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ad2b581 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ad61d25 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2ad8de54 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x2adc2fb5 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x2ae9c5ca transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x2af091b4 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2af5706b alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x2af7f14e input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x2aff68f9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b1998de i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2b214625 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0x2b25c94d fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x2b283e72 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2b32abd9 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL vmlinux 0x2b3acc3b __SCT__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b444a8c acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b543fd8 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b67b6b7 mds_idle_clear +EXPORT_SYMBOL_GPL vmlinux 0x2b6d08bb xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b72bfd4 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x2b753a4d __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b854011 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2b9a8aa6 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2bb0188f devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2bc218a3 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2bd1bcb1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2bf188a0 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2c0e7c27 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c1af14e __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c1f49ab dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c2f5a09 x86_family +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 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 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c87a19b sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL vmlinux 0x2c8e565b dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2c8ec1d2 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2c953936 trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2c9670b1 fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x2c9f8d08 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca89fe7 snp_issue_guest_request +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2cd03428 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2cd4fa2b phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x2cda50e8 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x2cfbb2b5 __SCT__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x2cff1cce usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d138992 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d351f65 get_net_ns +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 0x2d589397 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x2d5f1472 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d730031 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d7ee7ea ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2d86b8d7 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2d88ade2 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x2d88ccf7 pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2d89b1ad __SCT__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x2d8c5743 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x2d94f8ed iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x2d967ba8 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2da4ddb5 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x2da59495 bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x2da5eb7a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x2daeb6f8 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x2dd3f399 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2dd7dac7 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2de663a5 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x2df0078e __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e142c30 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2e1a6880 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2e22bec4 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2df7f4 irq_remapping_cap +EXPORT_SYMBOL_GPL vmlinux 0x2e320d5d mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x2e45824f firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x2e4b8204 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0x2e4eae8c regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2e4f708f vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2e56a4f3 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0x2e5b274d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x2e774fd6 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x2e7a17d4 vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x2e8d8014 dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x2e90e0a4 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x2e90f2ea pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ecf421f inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x2eda018c reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2eda4807 is_uv_hubbed +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef52d81 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2efe45b4 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f36dc46 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x2f458f1c sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f558c75 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x2f56f985 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6fa668 edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2f859775 xfrm_register_translator +EXPORT_SYMBOL_GPL vmlinux 0x2f8b27f9 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2f99f0f6 device_create +EXPORT_SYMBOL_GPL vmlinux 0x2f9bf285 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2f9e0d97 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x2fbe752b dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2ff14240 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x2ff18ca1 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x30006ce7 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x3006ab69 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x3025c3a4 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x302f696c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x303c584d devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306ada40 extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3079649a dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x308dfca9 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x30ccd41d pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x30cf804f slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x30d6a2c6 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e47c52 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x30fe89fd blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x310181dc irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310361a4 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x31072de8 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3115dcd1 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x31210e15 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31280eda cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x312ec06a netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x313497fd __SCK__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3135e9fa fpu_copy_guest_fpstate_to_uabi +EXPORT_SYMBOL_GPL vmlinux 0x314d4adb i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x31527e8e edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x31538cf5 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x3165daa3 arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x31706316 __SCT__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x3179286e __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x31838ac7 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x31839ad3 software_node_register_nodes +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x3198bd55 __SCT__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3199b5a6 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x31a16c7b dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0x31a91e8d blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ca0adc __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x31d205e8 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e70903 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x31e764e1 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x31ecafae pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x31ece7d5 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x31f344f3 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x31f5232c fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x31fa2f2e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3204386c sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x320a2089 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x321354c4 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3217290b __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x322f9f89 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0x323360a0 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3240c6c3 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x3241a54b usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0x3243dd80 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x324c700e screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x32551cd2 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x32556d31 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0x326893c4 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x326a6605 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3287500d ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x3288b142 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x328e3354 __memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32b2cf23 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c0d512 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e4d1e0 sgx_virt_ecreate +EXPORT_SYMBOL_GPL vmlinux 0x32f0089a ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x32f6d3f8 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x32fb4e26 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330593a0 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x3321e9ad tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x3327e2c8 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x332b4bb8 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x335298a1 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x33539c68 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x335add21 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3362b03c xen_p2m_size +EXPORT_SYMBOL_GPL vmlinux 0x3372a809 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x337aa382 xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x33809906 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x33966711 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x33a5a0c2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x33ba4cb5 bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x33bd6d72 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x33bf4443 acpi_quirk_skip_acpi_ac_and_battery +EXPORT_SYMBOL_GPL vmlinux 0x33d27804 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x33d3a4db __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x33dc04ba fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x33de0459 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x33e58f5d gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x33f10cca iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x33fc09ff ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3411235f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3435c2f7 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x3437d61e dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x343f4bd8 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x344361a1 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0x34445256 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34455304 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x344a2c84 iomap_dio_complete +EXPORT_SYMBOL_GPL vmlinux 0x3450ad94 mpi_set_ui +EXPORT_SYMBOL_GPL vmlinux 0x345888cf agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x3466ce63 x86_msi_msg_get_destid +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x3476cc4c gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x347da874 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3485ddb4 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x34963f73 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x34998c88 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x34bbc145 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x34c76e8b blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x34d0dc23 __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x34da1c62 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x34e3d65f fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x34e9d709 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34eb5d38 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x34f0e481 pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x350029ef dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x350b05f1 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x3510173f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352d7f1c pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3534ba39 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x353c7efb sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x353dcd02 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0x353f6a1e gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x354ba584 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x35550e6c extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x356d09a1 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x357334bb efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x358461b9 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b62cd1 led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x35bb0f10 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x35bd9c0c __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x35c54c3a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x35c7cb70 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x35d22191 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35e44506 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x35e4f853 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x36173c1d phys_to_target_node +EXPORT_SYMBOL_GPL vmlinux 0x362351cd dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x3624654e cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x363d2d52 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x3644d955 device_add +EXPORT_SYMBOL_GPL vmlinux 0x365cc9ff aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3661c064 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x3667359d phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x367052e3 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x36757f84 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3677a813 __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x367d8da9 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x36817ee5 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368b247d __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x36908a36 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x3696ae74 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x3698aab6 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a76f5c phy_get +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36c09e36 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x36ca6ddd gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x36cf7aa2 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x36d1b34a platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x36d5ddb0 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x36dc9548 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x36f273e3 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x36f89452 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371df6e5 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x371e7358 switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37243a17 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x372bc9f4 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x373b2a74 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37690529 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0x377aa5ee clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x377bbcbc pm_suspend_target_state +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37a2785d skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x37a33148 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x37a417cf inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x37ae307e irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x37b47761 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x37b60891 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x37bcbf18 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37d2dbfb ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37ed0574 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x37fc96d3 dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3804a004 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383a303b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x38538060 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x385c6f37 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x38663267 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38744d49 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x38892547 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a437de pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b6a890 __SCT__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x38bd2d2b vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38c64be0 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x38ca3789 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x38ced895 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x38d62c21 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x38e095cd pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e2f8d8 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x38e37b4e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ea9765 intel_pt_validate_hw_cap +EXPORT_SYMBOL_GPL vmlinux 0x38eca2f1 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x39090386 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x390d3b96 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x3938b245 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0x39390305 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3965b884 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x396c4a1f ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x399fbe49 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x39a52a68 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x39a55929 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39cfcac7 intel_pmic_install_opregion_handler +EXPORT_SYMBOL_GPL vmlinux 0x39d2528c fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ded14f __SCT__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x39eb1113 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3a05e62a nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x3a112914 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x3a1d96ea spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x3a1ff8d3 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0x3a238046 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2cf78e cpufreq_table_index_unsorted +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 0x3a6b5833 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8173e0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3a8bbb8e trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x3a9b07e9 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa92e83 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3abadb8e clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3ac9058f devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3acbaa6b dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae0a11f __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x3af38bf3 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x3af578f5 hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b01aefc debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3b0859d2 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3b17bb57 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x3b25a495 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x3b25ca2c device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x3b4c06af gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b589bd0 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x3b67a541 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3b6ad92b fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7163 __static_call_return0 +EXPORT_SYMBOL_GPL vmlinux 0x3b7c6a6d md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3b913e06 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x3b91db5b intel_pt_handle_vmx +EXPORT_SYMBOL_GPL vmlinux 0x3b95f543 klp_shadow_free +EXPORT_SYMBOL_GPL vmlinux 0x3b99eea3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3ba50277 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x3bb2e6f2 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x3bb34c96 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x3bc72d61 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3bc9e722 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x3bd32269 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc8dc8 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bea180e rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bf28c78 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0x3bfb3e22 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0ef72f apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3c143bf1 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1d8ec4 security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0x3c37b9d7 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3c43d25c pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x3c459033 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c7c868d pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x3c81feea __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x3c854703 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3c9bc0fc sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cbba34a devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3cc07be9 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x3cc4b494 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd0f1c0 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd627b3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x3cf2569b __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x3cf79794 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3cf9d57f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3d09060c dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0x3d11dd39 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d27fd8c da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d44fd46 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5b764c usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3d693a35 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x3d76d6bd __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d96b928 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dbb1ca2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3dd2ecd5 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x3de106ba uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3def3a99 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3df38cce inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3df82d00 mce_log +EXPORT_SYMBOL_GPL vmlinux 0x3dfe63e1 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x3e00135c serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x3e0da762 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x3e0e31b2 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0x3e120174 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x3e18371c __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x3e1c8657 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x3e2478b3 __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0x3e4a5686 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x3e506d24 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x3e5dea22 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3e6704cf wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e754c81 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x3e964f9f serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3e993fff bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x3e9dd805 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x3ea20796 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eaa1b61 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x3eb402ab iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ebd7676 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x3ec0b941 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x3ec93255 hv_get_isolation_type +EXPORT_SYMBOL_GPL vmlinux 0x3edb69d6 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x3ee22c01 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x3eeb24c5 sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3f12af5f __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x3f12c657 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x3f14b135 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x3f34666c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f49404a __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x3f5b32d3 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8e7aec bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x3fa9089a __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb04764 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x3fc6d476 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe3b715 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff656bc subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400afc2a kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x401ad690 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40427f5d is_software_node +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x4045b3e9 __blk_trace_note_message +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 0x40767515 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x407af304 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x407d7e2e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x40919b21 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x40969d1d device_rename +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a0aafc __flush_tlb_all +EXPORT_SYMBOL_GPL vmlinux 0x40a136cb pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a24f45 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x40ae0f6c dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x40ae83c0 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x40b70ab0 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x40d234fd irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x40e45186 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x40e915c9 ohci_resume +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 0x40fb919b cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x4100a662 clk_get_scaled_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x41039777 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x410942d1 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x410bfc3d fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x411074b1 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x4116d4ae crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x411e5309 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x41206fe9 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x4129f5ee kernel_fpu_begin_mask +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415e8c83 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x415f7179 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x41623a5f tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x4176dc7e clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419001d9 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4190f903 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x419abae4 pci_iomap_wc_range +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 0x41c6afce kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x41caf09e sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41d33d83 kill_device +EXPORT_SYMBOL_GPL vmlinux 0x41dc2ef7 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x41e9171f __put_net +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f0020b __static_call_update +EXPORT_SYMBOL_GPL vmlinux 0x42012351 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42165f1f raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x4227dee0 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x422d9500 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x422e578a __SCT__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x423f6a0e trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x423f712f rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x4244790a device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x4245b70b ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x426ab907 dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x427bc400 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42827c91 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x429afb15 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429dcd7d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x42b4db36 crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42cc50e8 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x42d83e0d usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x42e04eb9 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f00d6e dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0x42f1360d metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x42f21793 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x4306ee67 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4329108e acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x432b3691 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x43364f2d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4357074b fpstate_clear_xstate_component +EXPORT_SYMBOL_GPL vmlinux 0x435e04cf debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x435f977d sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x437e2ba3 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4391fc58 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x439f48a0 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43ab14b2 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43da2229 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x43e9af28 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x43fbec38 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44026001 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x440d3c4f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x440ffa77 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x441bd6f2 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x4421871c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x442deaa9 poll_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x443dd2c9 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x4441a09f nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x444e0b9c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x447ad8d7 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x447b7a11 pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x447ea81c metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449c3cd9 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44a4bbbd usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x44a9066f usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x44afe193 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44ce107b hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44f780f2 crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x44fe10ca devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0x450110e8 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x450b632f iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x451d6c64 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x453d8e86 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455d50e8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x45678bf1 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4581931b usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a15b29 register_fprobe +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45a3ebb5 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x45a8961b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x45b0d73c devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x45b544d3 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x45b604e2 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x45b77ec1 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x45bd66bb inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e72a50 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x45e74b75 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x45e8caf7 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46021631 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x46047827 __SCT__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x460b22a8 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4611a883 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x461ba734 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x461fc2cc intel_pinctrl_probe_by_hid +EXPORT_SYMBOL_GPL vmlinux 0x4620421f ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x46293d37 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x462cc0f0 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x4631a7d4 crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x463fb9be smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x465bc22c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x4665343b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x46745e0a dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x4687e745 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4688305c debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a6c9ef hv_get_tsc_page +EXPORT_SYMBOL_GPL vmlinux 0x46bba472 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46d7b9a0 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x46de7029 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x471824fb sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x471a2f30 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x471d4a0d clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47270555 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x47283a1c skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x473102e7 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x47325812 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x473467e1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4736e4b4 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x47405147 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x4755e7e2 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4769544c vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x476da1ca ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4772fb4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4791cb91 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x479253c7 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a30f0e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47abd5de unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x47b24d32 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x47b7e68d serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e77b29 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x47e839ab nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x47ebcd12 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x4800ebb6 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x480a9266 vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x480f9577 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x48112f55 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x48185db9 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4821c86c tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482b38a3 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x482cf8f1 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x483f1016 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x484b45d5 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0x4857c18b sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x48846838 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x488af9f8 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x488fb6de dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x48952b25 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x489566cf tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48bfb342 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x48cb2260 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x48e8feec __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x48e9f0b6 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x48ec38c1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x48f5cdc7 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x490775fe __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x490a146c fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x491cd1cd wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x491e822a usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0x49242bc7 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4933a08a strp_process +EXPORT_SYMBOL_GPL vmlinux 0x4934bdd0 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x4939ebcd numa_map_to_online_node +EXPORT_SYMBOL_GPL vmlinux 0x49528b02 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x495a4221 __SCT__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49799f38 __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x497aaf43 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0x49840601 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c0c2d4 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d0c2f6 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f7c747 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x49f8c0d3 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x4a0d29f7 fpu_free_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x4a15332e kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x4a16abb5 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a190e74 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0x4a1be6cb device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x4a2af896 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x4a3b264e devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a3e37d1 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4bf5a7 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4a5a22cd spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x4a5ff310 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x4a622615 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x4a70210e pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4a760127 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x4a7830e0 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x4a8282ef perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x4aa43ef4 unwind_next_frame +EXPORT_SYMBOL_GPL vmlinux 0x4aa6db06 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x4ab18518 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x4ab70a0c da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b00d866 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b051a97 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x4b07d6ca n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b10f5fc crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x4b196d20 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4b2804cd smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b39abd7 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x4b470e5c regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4b4ac6ba devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b56ce05 xenmem_reservation_increase +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b5ef69b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4b64a55d power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0x4b762828 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x4b919a9a genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b97ac1f spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x4ba72e7e devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x4bb3d74d __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4bba52d6 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x4bbb1393 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bf14019 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x4bf29b52 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4bfaa743 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c1f2c52 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x4c2b07d5 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c355714 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4c3ab8d1 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4c49f1de hv_clock_per_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c552933 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x4c762b5c x86_stepping +EXPORT_SYMBOL_GPL vmlinux 0x4c7a888b devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4c81a1ba fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4c85f439 vfio_pci_core_disable +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cceb890 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x4ccf8989 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x4ce4951c nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x4cf014c4 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x4cf3053e pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4cfe55fc blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d17d2bb spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x4d253009 usb_altnum_to_altsetting +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 0x4d860c26 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4d860f11 vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d8e63e0 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d9031dd intel_cpu_collect_info +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4db6482b udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4dbc2072 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4dd4f523 devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4dd84206 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dfb6e89 __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x4dfede0d regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e06c3dd exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4e144a54 __SCT__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x4e169df2 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e28cac2 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x4e34bb08 events_hybrid_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x4e36633d fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x4e389629 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x4e4b2ad7 nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e4d4d5b dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5aac71 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4e661128 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x4e75aede skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x4e78400f vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x4e81e073 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4e90178c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4e9f7a11 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb35b1f device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x4eb44551 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x4ecaf3b6 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ee96cc6 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2b99fa tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2f8790 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x4f39db5a icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x4f44ff44 xen_remap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4f59f713 ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6d032f platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f77c43c __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4f8546af cpuidle_poll_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4f982c3b gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x4f98328a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x4fa4a75c __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x4fa6906a devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4fae612d register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x4fbfa856 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4fd86b6d __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe82582 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x4fe9e287 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ff95741 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x4fff4113 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x5010c85c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x50114c7d fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x50130a51 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5016ff6c dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x50216beb devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50402d97 __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x50404070 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x5048d949 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x505d29be gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50659be9 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x506e95b7 dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x50749dee blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x508a0d15 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x509a8b0c crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x509d5f55 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x50a49204 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x50b03f5d l1tf_vmx_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x50b42ba1 entry_ibpb +EXPORT_SYMBOL_GPL vmlinux 0x50c4c770 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50dea8c4 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f20b14 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0x50f6e27c __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd0186 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x511b24b6 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x51244fe8 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x51337f3b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51526ec8 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x51713bd8 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x517f2400 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x51884cc2 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x5191f9ca mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5196219d __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51b2bcb5 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51df1df3 hsu_dma_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x51e492ed mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x51fb4b0b netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x51fd990a of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x52073634 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x521df0ee crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5229a590 sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x522c3ad1 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x523a651d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52473017 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0x525560b9 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x5263f0b5 component_add +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x526c468f em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x527b7bf1 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x527d683a __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x5288d452 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x528c1609 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x5290a4ee devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x52952551 phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x52ac0eed regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x52aec594 device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b56b1d skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x52bb7509 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c7925b devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x52cc6e95 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52d7e041 md_run +EXPORT_SYMBOL_GPL vmlinux 0x52e886ee power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x52f2e5c5 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x52f997f4 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x5304d217 nf_route +EXPORT_SYMBOL_GPL vmlinux 0x530baf88 devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x5315aaaa wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x5316b37e anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x531ec56f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x53287655 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x53495dd5 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x5357fb30 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535d214d trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536f62c3 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x5374e462 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538e5731 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x539038d8 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53d1821b blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x53d3e756 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53df6723 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x54070f7b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542588a6 mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0x5435454c divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x543b05c6 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x543ded9c crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x54460652 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x544ae9f6 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x544c1e4c __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x545b0695 dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5481535d sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x548b96d7 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54ae5675 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x54af7839 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x54b95eeb devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x54bf9db7 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x54e8c7ce edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x552a1871 dax_recovery_write +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 0x5544565e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x55462474 fpu_copy_uabi_to_guest_fpstate +EXPORT_SYMBOL_GPL vmlinux 0x55659228 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5568cd5f __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5587916a em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x559f9957 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0x55b5336f get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x55b66402 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x55c1f7c2 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55dd7247 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x55de5df1 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x55e636c9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ef3b8d usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x55f76024 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5612c5fb crypto_register_rng +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 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56548848 md_start +EXPORT_SYMBOL_GPL vmlinux 0x5655a90e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x566937cb serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x567f6580 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0x5685189b ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x56948896 spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x5697c7d2 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x569fbab8 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x56b518a1 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x56c9378e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x56ccb702 tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x56d9761e dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x56dc6a7b __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x56e76380 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x57108235 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x57267c66 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x57300491 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x573385df gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x573ac493 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x573d7d7e clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x575e02ed spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x576a05ce debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5771c9b1 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x577c87f0 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x577f995d sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x5787d516 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x578eeb4d hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5790ae75 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0f043 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x57c8c28f l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57e3cb8c clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57e3f842 devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x57e4e354 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57ffe522 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5800789c rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x58099da8 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x5824f173 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x583c5a81 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x584698da vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0x585241f6 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x585858cb rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x5862dcdb shake_page +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x58814361 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x58cac193 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x58cdb997 uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x58d6311d trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58dcf043 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x5910967f genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x59117145 fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x5922b139 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x59278fa5 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x592a1070 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x5939591a kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x593dbff9 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x595c36ac devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x596583c8 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x596cebad attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x5974b8f9 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x5978abc5 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x598f2c46 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bff5c3 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a0c3664 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x5a0dabbc devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x5a1903e3 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5a1bfda0 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a24899b pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x5a331e43 xfrm_get_translator +EXPORT_SYMBOL_GPL vmlinux 0x5a3b8bba dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a5d5e54 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5a67d66d sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x5a6b030f __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5a6ca38d fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a70dce0 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5a740ced sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a7766b0 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7e716a debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x5a847d1a crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x5a8fbc4a crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x5a926b2d pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x5a949121 alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5aea4c23 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x5af544f7 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b0470b1 amd_iommu_is_attach_deferred +EXPORT_SYMBOL_GPL vmlinux 0x5b1a8a5a uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b24c76f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x5b3774cd ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b44512c nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x5b5bc06e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5b692883 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b6b5e08 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x5b8ec1ca irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0x5ba74c70 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bb0b21f serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x5bb8171a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5bbdfa26 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x5bc25e93 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x5bc446bf usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x5bc88949 tcp_enter_memory_pressure +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 0x5bdb63f6 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdea5dc perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x5be213fe init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5beb8ef6 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x5c03d4e4 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0c165e __SCT__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c2791d0 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c309e65 hibernate_quiet_exec +EXPORT_SYMBOL_GPL vmlinux 0x5c35a104 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x5c3aee04 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x5c3daee8 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x5c422301 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0x5c4e9389 vfio_pci_core_enable +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c7002e8 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x5c831aea __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x5c9700b7 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x5ca1b197 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cbb4937 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x5cca6f0d __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x5cce61d7 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x5cd1d995 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x5ce91a3a class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf35470 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5d07e04c irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x5d0a1660 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x5d0ae2e3 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5d156775 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1d76f5 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x5d208123 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d4a0d29 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5d6cd788 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5d6dd155 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8fc9c0 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5d9317d7 uv_teardown_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d9e64f0 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db08c41 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x5db9f290 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dbd1f3f tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x5dbff220 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5dc89bae fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x5dcedb2a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5dd17f85 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5dd456de ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5dd7f030 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5de0e8eb debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x5de85280 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5df6da07 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e2d5d7d sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5e4a8439 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x5e4db4ae crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5e50ceda acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51a8ca __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x5e578a5c ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x5e73d6cb regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7e6916 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e99f3a9 filemap_read +EXPORT_SYMBOL_GPL vmlinux 0x5eae5408 clk_is_enabled_when_prepared +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ee66ba7 bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5ef56080 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f2c9327 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f2fcc83 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x5f655bff regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f74bf3b sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x5f78a21a rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5f8d2f43 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5fa54219 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb509db hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x5fd63b4e blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x5fdf7b32 smca_get_bank_type +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ff0f622 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fff96c8 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60233dcf cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x602c3d5b hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x603d0d51 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x603d62c7 __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x604722fd devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x604ad2a4 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x605e397f __SCK__tp_func_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x605f1912 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x60646398 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x6069d3a1 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606d7bc4 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x60898963 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x608a1e25 tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x608ee39f __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609432dd pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x60a0bcd6 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32845 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60d87964 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x60d8d653 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x60dae792 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x61141829 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0x6115b786 bpf_prog_add +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 0x6148814e usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x61565ba5 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x6161359e fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x616d27d2 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x617d3adf irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x617eb711 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61893536 clockevents_unbind_device +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 0x619d9a8f __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x61a6edb6 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x61b443f8 x86_spec_ctrl_current +EXPORT_SYMBOL_GPL vmlinux 0x61b5a39d irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x61b9f6f6 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x61c27320 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x61c83e27 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x61e9147e tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x61efd006 __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f72fbb scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x6220978e pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x6220a453 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623086c2 __SCK__tp_func_arm_event +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 0x625e5463 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x62638bd0 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x62769a75 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6297f554 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x629a59d5 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62baba9d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c74e12 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x62ededf0 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x62fe1886 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x63026490 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63197685 s2idle_wake +EXPORT_SYMBOL_GPL vmlinux 0x633473ad rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x633879d1 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x6340434e x86_model +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x638a9653 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x638c4283 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x63b43fa0 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c98635 __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x63cba7f9 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x63d9ce91 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x63d9ef61 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x63dc3894 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63e6370e usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x642927a5 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x643d795c get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x6447b11c dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x644b7619 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x6463cac3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x647b0f07 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x64968da8 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a3e1fb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x64a62e11 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x64ad94d7 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x64afb4fb vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x64d2ed70 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x64db059b tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x64e085e6 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64f0d435 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f3eae5 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6502e6b9 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x654a9e4a component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x654f315d crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x656302a5 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x656f114d acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x65704d22 hv_stimer_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x65741fe7 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0x65765a77 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x657875f6 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x65852d38 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x658b12f8 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x65a81079 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65bdac6d acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x65cc76cd folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cd888f nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x65d764a6 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x65e90b0c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x65eb7b00 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x65f2056c platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6602d85e iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x6608b7f5 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66176055 cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0x661a0ac6 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6644f8fe __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x66587e9e iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x6663fc7b of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x666488f0 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x66737125 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6679c3b2 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x667a33b5 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x667ee582 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668785ef pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x6693a740 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL vmlinux 0x66a26008 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x66b26b2b clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66c1021d led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e38f89 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x66f41c76 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6711fe0e acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x6722371b pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x673125bd power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673ee900 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x6759bd00 __SCT__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x675e4093 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x6765b507 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x67712708 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x6773affd fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x6790ebd3 mce_is_memory_error +EXPORT_SYMBOL_GPL vmlinux 0x6791a9e2 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679737b9 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x67b3e11e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x67b3eef4 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dcd76b uv_setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x67fec95c sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6806abe1 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x680eb757 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x682b7b45 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x68428a16 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684eb758 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x686d0b62 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x686f2583 component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x6874a271 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x687caea5 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x688709bd __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x6890e851 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68a9e59c phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x68c2cf5e is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x68cf4ac7 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x68d70184 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x68db79a2 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x68e0eb5b crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68e435ad of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x68e6d9ab subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6900eb9c acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x6908c1d5 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x690bd695 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69138684 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x691f33f8 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6927a78e regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x693f1094 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x6943063a regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x69431072 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x694bff8d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x696340a5 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69637b2c __traceiter_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x69665d52 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6968d9de phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x696c634b pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x696d7e0b l1tf_mitigation +EXPORT_SYMBOL_GPL vmlinux 0x696e9b0c fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x6971f193 pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x697465cf perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697e36e2 vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x698a4379 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x698d700a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x698f3033 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0x69a0cce4 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x69a28cad regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x69abbfbf __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x69b22077 of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x69bafa1f dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e83605 mc146818_get_time +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69f1e777 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x69fc514b acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a091ab5 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6a09edc2 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a16b670 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x6a19afbf inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x6a2cad7a xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a3cc711 devlink_alloc_ns +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 0x6a572256 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x6a63fd47 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a7dcd54 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x6a81110d rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa15b3a spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa3cebd iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x6aa9425c pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ac7c6e5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x6ad0b267 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x6ada2250 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6af6a576 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6af8808b iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x6afc5e73 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x6b068b7b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b0eaa18 hv_ghcb_msr_read +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b35a16b intel_scu_ipc_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b38c96f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b484901 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b650982 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x6b74a1db dev_pm_opp_unregister_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x6b7a4335 hyperv_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8fa6c5 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x6b9875e7 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6b9ded62 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb03192 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6bb509e6 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bde42b2 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6bea1e33 __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6bf336d6 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6c0335f3 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x6c066398 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x6c0891d1 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x6c0cab9b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c24acbf devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3e4d43 da9052_request_irq +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 0x6c5dfffb led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c697197 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c6a8adc regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6c6f288c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x6c7b435f mc146818_does_rtc_work +EXPORT_SYMBOL_GPL vmlinux 0x6c81ec5b devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c8cfa53 devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x6c9ca8fe devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca786b8 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x6cae8596 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x6cb21982 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x6cb36a16 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ccf1601 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x6ced9f27 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x6cf2a344 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6cf698f5 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6cfdda9d rio_mport_read_config_8 +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 0x6d134705 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x6d2858fe blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x6d2c1b9a umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x6d2e899d mce_usable_address +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3fdde5 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6d5eebd2 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d725a85 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d793210 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d9ee85e fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x6da3324d iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x6db2a8e1 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dcbfeec ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x6dcdaef3 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6de01640 devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x6de226f7 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x6de8e17d iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x6e00fcfb modify_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0x6e16dbdd devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0x6e20d461 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x6e272f38 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e41d468 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x6e5e799c usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6e6d7861 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x6e70275a blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e836f67 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e89fe05 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6eaf8f1b proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb7ae2c xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec92897 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6ecb39e7 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6ecf68ea sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x6ed7ed57 gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x6ed83a11 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x6ee2d29b devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f068029 __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f218285 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f29adf7 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x6f2f718f nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x6f3b9ecf pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x6f40932d __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x6f57b506 elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x6f5e2631 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x6f5ea9cc pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f740c1a ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f83ff7a __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x6f935e35 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6f9d99fc tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fbd1d11 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd768e4 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6fdf5197 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ff1e079 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6ff44fad i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff8a580 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x6ff8a9d0 sync_page_io +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 0x703b92d4 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x70491781 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x705574c1 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x70576fee acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7078980d usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x707db25f gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x708695d2 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7097cf1c nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c4182c __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c6d827 mc146818_set_time +EXPORT_SYMBOL_GPL vmlinux 0x70c75578 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d7ea44 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x70d8eab9 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x70d9a424 phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x70f2ee01 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x71083a5f power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x710bc5a6 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7116b923 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x71199a63 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x71244d06 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712d455e dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x713a12e1 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7150c340 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x7153e09c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x71565ae0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716a479b irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7180e30c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71911f0d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71aabd45 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x71b15008 lwtunnel_valid_encap_type +EXPORT_SYMBOL_GPL vmlinux 0x71b6cf94 dst_cache_reset_now +EXPORT_SYMBOL_GPL vmlinux 0x71b8906a genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x71ba07e4 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c3c1e7 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x71cea59f dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x71d8c954 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x71e2ea93 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x71eb117e acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x71eee19e pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x71f69187 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x71fd372b __class_register +EXPORT_SYMBOL_GPL vmlinux 0x72060429 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x721237b7 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7214b16e acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x72155c28 devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x722a2a7d __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x723da3ea __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x7244b000 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x72450215 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x72500f2d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x726267f6 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x7262702b sfp_get_module_eeprom_by_page +EXPORT_SYMBOL_GPL vmlinux 0x7265f2b0 pci_vpd_check_csum +EXPORT_SYMBOL_GPL vmlinux 0x72729017 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x727293d5 crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279c4a7 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7290135d pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x729b28cc spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x72a76008 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0x72b17c4f skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x72c12f61 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x72c526f9 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e9455a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x72ec26d4 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x72fdafa2 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x730f84d4 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0x731134d5 __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x73176593 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732a2788 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x733de939 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x733ec33e __SCT__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7361be71 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x7362dd3d fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x7375b76e rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x737972dc mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x737bab65 __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738fe32b amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a83bd2 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x73ac774d crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x73b59647 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x73bbd7de pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x73bc55c7 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x73bdc4b7 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c6bd19 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73dac408 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x73dbaee6 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x73facef3 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x7419eb65 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x7420c0fd iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x74221f30 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7441bb03 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7444e1a3 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744a2e63 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x744c90b5 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x745f1831 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x746b454d ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x747131e8 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7489531e __class_create +EXPORT_SYMBOL_GPL vmlinux 0x749a5b95 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x74b16ca7 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bddc03 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x74c191f6 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cd2c95 fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x74cef2ec serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0x74d36933 srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x74d78089 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751939b8 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x751ab68f kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75230f49 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x75238608 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x7528e32f devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x752b32e2 __SCK__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x752fa494 clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0x753aabf9 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x754728f8 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x75616d0c iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x75732cee cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x757cd166 nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x7596fd56 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x7599e0e3 devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759d8c15 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x75acbba2 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x75c3c37b scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x75c48fdb __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x75d05ab4 rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x75db03f6 acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x75e44215 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75f2d347 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x75fa5138 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x76052520 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x760f49ea led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x762640ab __SCT__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x762670f3 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x7626d10e blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x762f895c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x763782ef pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x763e906d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x76426d7b wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x76441639 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7656ea35 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x7659f1d6 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x765f8830 __SCT__tp_func_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x767cd9ea dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x769d1a6c restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x76c717b9 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x76cb554a irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0x76d1f568 inet_csk_listen_start +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 0x76e23836 dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f00b78 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x76f10437 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x773f2713 clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775c87b7 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x7766b8dd sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x778e056f dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c1b925 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x77c7c22a exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x77dde651 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77f982c8 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x77fa73fc devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x77ff11c1 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x78041b8f byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x7804a025 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x781116f5 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7824eeff perf_msr_probe +EXPORT_SYMBOL_GPL vmlinux 0x78253531 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x7840a082 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x78581796 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785c68bc dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x787a4cc7 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788127ce xfrm_put_translator +EXPORT_SYMBOL_GPL vmlinux 0x7886b3aa pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x78907af7 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a8cc12 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x78bab66b irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x78c3e51f blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78e1a424 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x79036157 regmap_bulk_write +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 0x79175975 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791d2703 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x79291aee usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x792b467f dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x792c766c crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x792e3e53 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x793413be spi_new_device +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 0x79503189 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x79533225 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x795e7fcf platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7989f95a fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79956931 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x79a3ef1c xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x79ba2e41 __dax_driver_register +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 0x79e153ba virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x79e376f8 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f7eaa3 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7a33ee7b debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7a4254e6 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0x7a45b5d7 skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x7a49c4fe __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x7a655f68 acpi_processor_claim_cst_control +EXPORT_SYMBOL_GPL vmlinux 0x7a6fef18 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8fa0ab netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a99e451 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x7a9a4f06 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7a9e33b3 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa2c644 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7ac722bd phy_all_ports_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7acddeba __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x7ace1e41 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x7ad02a41 asn1_encode_tag +EXPORT_SYMBOL_GPL vmlinux 0x7ad13899 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x7ad1ded1 pinctrl_register_mappings +EXPORT_SYMBOL_GPL vmlinux 0x7ae261b0 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7ae3e78d regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7aebcc87 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b18ec18 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7b21f24a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7b24c1c8 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x7b45f6ce input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7b4b54f6 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b54ccd8 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5aa2db __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6b3d52 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7b16ee gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b7dd241 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x7b86381a irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b8958df bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b918234 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x7b926844 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7b940461 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9d04ab crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x7ba1357b regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7beab4e6 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x7bece8f9 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7bef52e7 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x7c0b4261 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x7c0f18a1 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x7c138954 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x7c1435c4 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x7c20b6a0 load_direct_gdt +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2db555 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x7c34d39f __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x7c390a1c __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x7c3c3544 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c47740b fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x7c498b00 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x7c4f12f0 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x7c5e1f79 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c72719a subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7c7cb45d iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7c7cfbe7 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7c8d7396 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0x7c92b174 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7c983a5d dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9e6a19 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7c9fca37 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ca64a0b __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x7ca8e636 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x7cab996a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb34eef posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x7cb4f6c0 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cbd2808 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7cc13024 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7cc4b5e8 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7cc928a5 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x7cca5b46 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd7c0fa ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x7cd8d520 put_device +EXPORT_SYMBOL_GPL vmlinux 0x7cd984b8 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7ce3bfde pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cecc039 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d0cb6a2 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d17dccb vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x7d18ae46 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d2f0636 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7d3bca73 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5dc814 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x7d62171b crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x7d69c99a pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7d706cd3 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x7d77b212 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7d98759d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x7da4d412 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0x7db40602 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x7db40e9c blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x7dbc9425 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7deda3ea phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df95c68 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x7e1f0ce0 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x7e3061b5 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7e336461 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e55891c kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e6334bb rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e690f4c icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x7e6e4bae nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e722479 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e7f99fd usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x7e81e9a0 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x7e8841ce fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x7e8bb8f5 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7e9b8580 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x7ea3b767 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ec3278f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x7ec56692 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7eda59ea phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7edca919 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef66efb hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f0d9a6c pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f13ad1c phy_init +EXPORT_SYMBOL_GPL vmlinux 0x7f377e07 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7faeb2c4 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0x7fafdec9 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fb1d989 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fb4a298 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7fca0b79 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x7fd07e62 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x7ff2d1de tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x7ff3a634 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x80056967 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8017f793 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x802b81ec devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x8035bf64 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808a8088 handle_guest_split_lock +EXPORT_SYMBOL_GPL vmlinux 0x808d56e6 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a5415d __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x80aac646 tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d34ad6 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dd1a97 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x80de660a __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x80fee848 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x8104f7cf mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81221cad amd_nb_num +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x8144d0b5 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x815ff3ed tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x816c908d find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x817099f5 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x817ed9ee nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x818e8cd1 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x819981ab sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x819fed86 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x81a5f468 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa1389 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b0af50 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x81baf9af rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81d45919 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81e46c84 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x81f928ae tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x81fff8b6 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x820fbd05 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x82106460 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x821ca997 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x821ec7f1 clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x82219088 misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x822e869e crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8253e9da pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x825d509a serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x82682cd2 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8270ab1a put_pid +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828062e7 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x82840e2e __SCK__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829a94f1 icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x829c77be xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x82a22f11 clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x82ab13d0 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82db4d71 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x82e14147 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x82e1fd76 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x82ead9a0 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x82fa70ee fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x82ff4b95 clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x831b2d04 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x831fec17 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x8328673f uv_bios_get_master_nasid +EXPORT_SYMBOL_GPL vmlinux 0x832fcb7f devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x8335ca43 __SCT__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x834246e1 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8343e23d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x83486ea5 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8359a90d device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x835c18fc dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x836a8cd5 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x83721384 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x837d47dc sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x83a237e7 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x83d1d56e class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x83d41887 rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x83eaa741 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x83f5b62b ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x840a0599 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8410f8f7 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x841d398e metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x84301366 hsu_dma_probe +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x844c587d ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845597f8 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x845dd079 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x846a0d53 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x847a6215 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x8480b3e3 phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84b268cf sn_coherency_id +EXPORT_SYMBOL_GPL vmlinux 0x84bcf9ee acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x84ce5681 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84fa5afd udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x8502f994 sysfs_group_change_owner +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 0x8525f223 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x852ec459 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8531ee0f usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x85379470 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x85500b02 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855fa0ed fpu_update_guest_xfd +EXPORT_SYMBOL_GPL vmlinux 0x8562209e ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x858118bc pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x85824282 __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85a5038b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x85a5fbad xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x85b15444 arch_set_max_freq_ratio +EXPORT_SYMBOL_GPL vmlinux 0x85ba00fe crypto_grab_shash +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 0x85cf9a63 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x85d1bf05 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x85d76de9 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85da07d3 find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85fc80bb fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x860ae146 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x86169f3e amd_smn_write +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861b0896 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x861d4c50 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x8621a3cf xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x863d273d synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x8651f34a sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +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 0x8677f369 pvclock_get_pvti_cpu0_va +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868d3cee phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x86947a36 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x869dd5c3 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0x869e83f1 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x86a6c24e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b427ce clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x86bee0b8 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86ca8d72 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e17d60 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x86e8cc2f genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0x86eff8e4 pci_scan_child_bus +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 0x87107221 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x8716306a iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x872d4f7c __SCT__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x8735ed3d irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x87496f89 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x875a602a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x875abf16 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x877628c2 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0x878fa3d2 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x87923998 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x8796aa92 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x879c8520 register_fprobe_ips +EXPORT_SYMBOL_GPL vmlinux 0x87afcb4e filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x87ce611f __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x87e64181 amd_nb_has_feature +EXPORT_SYMBOL_GPL vmlinux 0x87edebb6 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x87f34e99 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x87fd9353 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x88170daf __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x883eb578 software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x884fb6fa devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x8851d233 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888eb595 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x889a591b nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88b5785c __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x88c60209 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cddf75 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88e399d8 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x88fde14f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x88ffc283 gpiod_export +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 0x891f606b devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8927a6d3 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x892f9f04 __SCT__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x8936517a tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895872dd devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8972f15f netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x8979f42a to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x898be857 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x898bf4cb pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x89937d2f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x89980238 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89aefef8 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bfaa34 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0x89c51fac unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e498dd iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x8a01508a dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x8a0fc0a9 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8a147053 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8a19553a pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x8a3471a2 br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a440f37 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a46cb6c mc146818_avoid_UIP +EXPORT_SYMBOL_GPL vmlinux 0x8a563a84 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a669060 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x8a6a2cb8 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x8a70e3be dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a838ef6 intel_scu_ipc_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x8a83a47c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8611bf nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x8a91e84a kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8a9b7a89 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x8aa54809 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8aa7c84a pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x8aaa336c tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x8aac2917 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x8ab84c6f regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad5ceb1 __uv_hub_info_list +EXPORT_SYMBOL_GPL vmlinux 0x8ae3a62b nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x8ae5b5c3 component_del +EXPORT_SYMBOL_GPL vmlinux 0x8ae5d40c srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x8af23501 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x8af4ef87 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x8b072417 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x8b08051e gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x8b0b22a7 device_del +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1d3563 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x8b1d72fd yield_to +EXPORT_SYMBOL_GPL vmlinux 0x8b28ab40 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x8b2f3567 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x8b39861d phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8b47ea1d __SCT__tp_func_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x8b5403f2 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8b590e84 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x8b5eac1f thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b68ab29 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8b74d3a1 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x8b806924 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b87228f tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8b87eb20 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8cc689 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8b8cf403 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8b95e6a2 __SCT__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x8bac2811 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8baff4dc iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8bbae63d watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x8bc6d1c7 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8bca210e anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x8be1408d dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x8be175b2 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x8bee4bb4 user_read +EXPORT_SYMBOL_GPL vmlinux 0x8bf97412 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8bff150f iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c0eee85 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8c1fa6fb acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x8c244021 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x8c341c48 current_save_fsgs +EXPORT_SYMBOL_GPL vmlinux 0x8c356096 pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x8c41800e net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c4c380c fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x8c4fded2 sgx_virt_einit +EXPORT_SYMBOL_GPL vmlinux 0x8c65ef9e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c782012 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x8c79b553 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c9593fa crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8ca72628 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8cad05e1 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8cae9c22 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x8cc532a7 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8ccbc4e1 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0x8cd86555 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8cecb000 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x8cf3bd42 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x8cfbb702 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x8cfbb8db dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x8d101008 dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x8d159069 devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x8d160627 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d287bf3 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8d332289 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3578af mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8d4eb68c seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x8d5108d2 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5aed38 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x8d5dd7cb metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x8d6c7b94 cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d81785c ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8d875125 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d9c148c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8d9d161a relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x8dac5707 trace_array_put +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 0x8de6c792 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x8de76728 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8df0e396 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8e0dfded dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x8e0fc6ea of_css +EXPORT_SYMBOL_GPL vmlinux 0x8e1f9b2d extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e2bf425 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x8e2dbae8 extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x8e3d911b arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4e5f98 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e4f9d7d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x8e58416a switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7541c7 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x8e82d0ad srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x8e8d7dbd firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8e900705 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e97b0ce input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x8ea740c1 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ec7ce36 pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ed5d9e2 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8ef2be4f devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x8ef3b3f8 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8ef7d86d __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x8f073f0c tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f093f81 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f2eb429 kvm_arch_para_hints +EXPORT_SYMBOL_GPL vmlinux 0x8f31d1cb fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x8f338b0d debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x8f57a19d serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8f5b3fb4 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x8f65b25c clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f786bee fs_umode_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0x8f79adc1 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8f7b454e acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x8f7bd0a6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x8f8247ed sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x8fa9d9e8 __SCT__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8faa5fe0 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fbe0052 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fc77825 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8fc9255a trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0x8fd119c6 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x8fe1e550 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x8fe26293 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x8ff40e86 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffa0023 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8ffb1df7 acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x90179c7b debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x902483f8 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x9024f443 mds_user_clear +EXPORT_SYMBOL_GPL vmlinux 0x90254daf i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x903565d7 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90435d97 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x904d23c0 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x90616df0 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x90659890 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x90674616 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x90745f4c phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x90746e74 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x907bcf57 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x90824fd1 PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x9084b044 clear_page_erms +EXPORT_SYMBOL_GPL vmlinux 0x908c4495 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x90951a80 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a4e882 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x90a9d8cc hv_is_hyperv_initialized +EXPORT_SYMBOL_GPL vmlinux 0x90ad66b1 software_node_unregister_nodes +EXPORT_SYMBOL_GPL vmlinux 0x90c71c78 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90cbd3ed virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x90d12155 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90de72a9 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x90e65c7b ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x90ef56e4 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x90f2dd56 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x90f56197 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9107d224 __SCT__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x910db6b3 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x910dcc0f set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x911ce6ff __SCK__tp_func_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x91200b0f icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x91256540 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x9125be2f clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x914fb602 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0x915abca9 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x916080fb dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0x91622e6f disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x9166d092 vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0x9178ef92 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x917d953b __SCT__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x91803253 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x91a88718 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x91ad7871 acpi_get_pci_dev +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 0x91e1b0b6 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x91e61193 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fc35b7 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92141343 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x921a9675 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9224f51d __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92274fe6 acpi_unregister_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9247f9b5 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92524f35 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x926c37d3 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x928d4f5e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x929d56ad usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x92a07a83 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x92b6f890 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c5843c __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d9221f tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x93065173 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x930aa090 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9316e318 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9319f824 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x931e0692 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x93328f00 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x933d43ac crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x934d072e acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x93708982 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x937694a0 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9382aff0 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x938d8301 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x939d9db3 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x93acb253 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x93acd826 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x93b3d8c0 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x93c12e35 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93cdca66 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93d4c5d9 __devm_intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e8a9ae folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x94016fdc acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x9404a3c2 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x940cd78f gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x9413467d rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x941a3d4f clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x941dd87b debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9421f8f9 usb_queue_reset_device +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 0x943940f6 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944620d5 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x9470ac88 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x947b40c6 cpu_smt_possible +EXPORT_SYMBOL_GPL vmlinux 0x9482e36e mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x949095e3 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949de1d6 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94b40b81 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x94d0ecd3 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x94de862f __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f0d900 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x94f6630e governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x94fe98d2 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x94ffdc52 register_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950d89da uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9519dc7f clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x951bd2c1 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x95478d98 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95641a39 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x956474c7 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x9567a099 nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x956d0bcd ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x957a1a3d sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958d78c4 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x95a0acbe get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x95aa5624 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c318fa scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x95d4801d led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f525cf usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x95f77dc3 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9615b005 hv_map_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x96279d8b vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9645468c iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0x964a6b1c dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x96516047 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9655f182 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0x9656c56a unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x965def9d __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9679661c __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x968e1948 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96917a77 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9697a3c9 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96aa15d2 usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96abb35d crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x96b89765 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x96ec1eeb ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x96fc5d23 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x97022929 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x97026806 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x97095bea __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x97110720 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x971b4a9e pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x971d3dec led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x971ffdbe key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x97354fc0 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x974359e5 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9758f538 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x97738bf4 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97884ad8 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x9788d607 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x979157ce ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9797d143 __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x979c7f96 acpi_quirk_skip_serdev_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x97b3b7be devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x97c32b11 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e2970a dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0x97e55986 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x97ea30c3 rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x97f0c5af blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x980d5838 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x98199e4a __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x981fe5fe thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x98246a7f acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x9829baff __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98378a1d cc_mkdec +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 0x9856d351 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988a1a00 sn_region_size +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989300c1 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x98a3be84 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x98aab313 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98be9427 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x98dbc664 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x98e006c8 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x98e37b17 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x98e6b281 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x98e98286 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f4ca3b __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x98f4d306 hyperv_flush_guest_mapping +EXPORT_SYMBOL_GPL vmlinux 0x98f51470 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x9930f8a3 uv_bios_change_memprotect +EXPORT_SYMBOL_GPL vmlinux 0x994122ae dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x99430ba2 acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x99476ce3 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x994d0317 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x998131cb perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x9991cf7f kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x99995379 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x999d7445 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x99a60f13 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x99b9476a vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x99bd3efa devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x99bed893 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x99c0570d ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x99cf3380 __tracepoint_neigh_timer_handler +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 0x9a02cd38 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x9a09b86f io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x9a0ff46e devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1be670 battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x9a1e8797 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a2851ef __SCT__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x9a2c158e make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x9a2ec638 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x9a3a04fb thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x9a3d410c wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a559053 acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a689715 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x9a747ab9 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x9a7748c8 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9a7f838e dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x9a834cea fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x9a89a3ec rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x9a8b1a33 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9a8e4302 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9a963e73 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9a9a44be phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x9aa71c2a efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x9aaac699 dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x9ab32b51 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x9ab7f70b devres_release +EXPORT_SYMBOL_GPL vmlinux 0x9abc5fbb espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad796fe __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x9adb749e ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x9ae3ac2e gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x9ae8d96b gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9aee03c5 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b18ef65 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x9b468079 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9b4f2746 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5baabf __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x9b5d9be9 platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b6f7c03 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9b76280e __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x9b7b940c pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x9b87e8c8 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x9b880aae sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba70c7d powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x9bad141d hv_hypercall_pg +EXPORT_SYMBOL_GPL vmlinux 0x9bb92958 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9bd6b9ef get_device +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9be42d78 acpi_quirk_skip_i2c_client_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x9bebbfdf devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf7db9a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c374075 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0x9c4abb66 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c768705 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c85242b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9c8d625b serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x9c8f5502 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x9c9cdd93 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x9ca480cc clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9cc0498a xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc8f332 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ced2f49 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9ced489e pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cf38593 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d124103 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x9d14205c cr4_read_shadow +EXPORT_SYMBOL_GPL vmlinux 0x9d318bed ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x9d3b88e6 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d3ffd48 __tracepoint_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x9d4894c8 x2apic_mode +EXPORT_SYMBOL_GPL vmlinux 0x9d556962 vfio_file_iommu_group +EXPORT_SYMBOL_GPL vmlinux 0x9d5b98db __tracepoint_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x9d6ce048 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x9d6fa92d skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9d7402ce rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x9d78320d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9d8ab8e9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d8cef93 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x9d942cbe virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9d9c743e pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9da01cec transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9db2668d device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9db834a2 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9dbd3828 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x9dc24fba __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x9dcba70e dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9dce8ef1 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9de0970c irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9df75fc1 fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x9df941e0 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x9dfd92bd pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e03ccb5 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9e042362 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9e0a75da ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e116fe5 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e1d8fc9 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9e222d6e da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x9e227f7f query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x9e25dd82 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x9e305e36 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x9e30a0f9 usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x9e351793 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9e374c20 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e39b615 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4b340b icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x9e81a655 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9e83ae97 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eb04d95 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0x9eb17439 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x9ec906eb tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x9ed42984 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eda839e fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x9ee2288b iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef0b308 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x9ef83b73 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x9efb3313 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x9f204bd9 pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x9f31b003 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0x9f37720c kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x9f3b5f9c transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x9f4a65a1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9f4b4a99 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f57384e serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x9f5c6dc2 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x9f7595e8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f807466 kset_find_obj +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fb0d69f phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x9fb4f33c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x9fb837e0 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fecd71e folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x9feed7bc __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9fef548a devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ffa5b38 __SCK__tp_func_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ffc4489 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9ffe4e7f tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xa0065f84 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa025e90d pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0609738 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xa06d8bfa vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xa06e4cbb input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0769b7f acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa0859a57 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xa08ea424 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa09d1f04 folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0xa0a15d14 thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0xa0ae1abb cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xa0af4b48 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa0afeaca __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xa0c0f1d7 __SCT__tp_func_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0d0ed0a nl_table +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +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 0xa0e9d9f3 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa107112a rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xa1116d85 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa1223634 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xa13355e8 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xa1368350 nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa16b2da3 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xa185e40d pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa18a30b9 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa197cdc0 crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xa1993101 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f8a8 __SCT__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xa1cc5b62 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xa1cff656 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1d915c1 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa1f3bb20 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xa2019703 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xa204fa7b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa20e9189 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa2113a3f led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa244f04f uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xa2685afc pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa283b04c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xa2933ab3 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xa2a2b290 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xa2a705b0 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xa2abf857 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa2acdabc ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xa2af54b3 irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xa2b2c05e regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa2b99209 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xa2c37c91 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa2d0b59d mmio_stale_data_clear +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2eed4d4 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa30a97d0 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xa318674a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa32d52d1 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa35a0318 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xa36a230a __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa3840187 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xa38437c0 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38cdf83 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b00c9c devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xa3b7114a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c0067d serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa3ca4f3c pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3cb3b2e nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f1a047 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa406d98f platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xa40af469 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xa41058ff ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4207288 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xa4259ba7 ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa44ca2f1 tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa459c8d7 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa45c7b90 stack_trace_print +EXPORT_SYMBOL_GPL vmlinux 0xa462d5a6 __SCT__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xa4653bea vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4843b77 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xa494bda5 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xa495d2c5 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0xa4a8eb0b debugfs_create_x8 +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 0xa4c39630 __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xa4cf6ce2 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xa4d18de6 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xa4d7d529 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4f1f4ff efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xa515bc89 platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xa51d4f29 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xa524408f sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa535db47 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa551573d xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xa56461b7 nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xa581b828 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xa58d8345 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xa58f4d80 devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xa59c88a9 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0xa59e4821 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa59f9398 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa5a1793e unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xa5b0dbc3 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5be2b8e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xa5c05d45 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f843a0 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xa5fca2f0 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa619bc78 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xa6260d3a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa6307dcf unregister_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xa6319c13 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0xa6322aa6 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0xa63826bd vmf_insert_pfn_pud_prot +EXPORT_SYMBOL_GPL vmlinux 0xa668e08d usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xa67de0d6 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa687b5b5 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a65e4c pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xa6b06f65 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bab008 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xa6bfdfda phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0xa6cf4788 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xa6df85de fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e3b6f2 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70d7b14 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0xa7127da7 mce_unregister_injector_chain +EXPORT_SYMBOL_GPL vmlinux 0xa718e823 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa71924bb set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xa7218eba irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa7333f9a dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xa7337c75 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0xa737bf18 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0xa741361e fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xa76482e1 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xa783bdfa device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa789646d fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa794aaaa i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xa7ad2fac dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa7b6b433 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa7f36046 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa8087dc6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa813a014 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa81e9fff bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xa82f61f3 tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xa83f8378 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xa8401831 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8873688 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0xa88c9b47 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8a70738 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xa8ad3668 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa8bcea0a __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xa8be3ba8 apic +EXPORT_SYMBOL_GPL vmlinux 0xa8d2eb49 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xa8e268d9 __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xa8e4216a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa8e8ba1e vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL vmlinux 0xa8ea8cdc tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa92c40ba mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94553e2 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa95fcbc8 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xa96b27e3 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9724a0f memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa9755c83 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa977ab18 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa99c36fd ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9aee6e2 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xa9b3a9bf irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9b41e85 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa9e46ca0 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa9e62bea usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xa9e92498 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xa9ebe781 dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9edfbb8 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xaa13275b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xaa2e1912 devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xaa34e03e usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0xaa3b80e9 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaa3fc6ee rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xaa4ab59d dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa4f7033 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xaa5aee1c uv_bios_mq_watchlist_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7064e0 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xaa83e54a debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xaa86cfb5 uv_possible_blades +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaaa2e512 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaacb8e1 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xaab67b8f tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xaab87066 dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xaaca34f6 ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xaad2fb45 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xaae94b7c device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xab081b2e xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xab098f73 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab2e2ddf regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xab396e8a sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xab3a9f43 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xab464ba2 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xab52717c __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xab61f109 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xab707896 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xab7b6d32 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xab9eccca iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0xabb7c7c2 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xabba0457 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xabc298d0 intel_scu_ipc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd6f369 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xabe971ea efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xabef948a devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xabf03fc3 __SCT__tp_func_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xac032cbb syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xac0fe74b nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xac1b7ca5 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xac30d134 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xac37a738 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xac4ace90 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xac5eb784 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xac60f268 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xac6e9ad3 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xaca1bd45 device_move +EXPORT_SYMBOL_GPL vmlinux 0xaca7a0f5 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xaccf9b0e blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xacd44795 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xacda2fb7 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xacdcb266 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xace7db67 component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0xacebd6c4 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xacee5ae4 of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xacf655db gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xad08699d sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xad15caec fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xad22949a tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xad25dd78 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xad312b4d sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad401768 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xad40eaf4 generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xad448570 mmput +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad5145a4 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad5d0bff __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xad5f0017 perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad67300b generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xad6ce07d vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xad6d2f35 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad88506d inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xad891d7c pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xada56871 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xadc08c99 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xadc429d2 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xadcffc20 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xadd4f06d vfio_pci_core_register_device +EXPORT_SYMBOL_GPL vmlinux 0xadd67d3f regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xade98399 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xadf5fd15 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae257633 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xae2f9126 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae47f933 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae68e30f bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae70ec14 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae962dc9 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0xae9852a0 housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaec9f30c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xaeced141 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xaee344af devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xaee93cd3 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xaef20b8a class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xaef54cdd irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xaef80498 vfio_file_set_kvm +EXPORT_SYMBOL_GPL vmlinux 0xaefa067c cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xaf05f489 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf09e7ef skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf18fa18 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf43b6d4 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xaf47c891 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xaf510a7c cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xaf6d1b23 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf83f876 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf89f913 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf98c0c7 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0xaf9a8635 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xafa0e8e0 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xafa56b69 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xafd90468 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe3fea0 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0xafecaf61 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xb0105d31 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xb01fc375 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xb02780b6 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0386a10 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xb043a5c2 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb0486315 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xb0503c0e fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xb05272fa phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xb059bec7 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0601c34 xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xb0647534 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07cc859 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xb087c3c9 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb087d9ad ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0961566 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0xb09cf913 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c21026 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0f485a1 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0fbb722 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xb10216de devm_hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb106e9bc __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +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 0xb125a1bf switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xb12e6bae icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xb13fa03b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb143c335 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb1469f1d klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xb14da29d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb1529229 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xb15c7c18 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19441b8 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb199cf65 genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xb19a926f xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb19fc31e __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0xb1b247d2 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0xb1b39553 devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xb1b914b3 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c34866 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xb1cf8a5d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xb1d2b138 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f651fd virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb21c0341 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22ca0c0 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb26066fe ibft_phys_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2693a6f icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb277d8d8 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xb27d7aed scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0xb2832a2e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb2913607 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a09394 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xb2b300a7 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xb2b44804 xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2c4494a transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb2de4cf2 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e5c092 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f18ec7 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0xb2f655bc platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2f6c22c pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xb2fb2f44 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0xb2fedca3 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0xb3066c73 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xb307024e da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb30cb029 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb353ec84 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0xb36999ca pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0xb36b8ed2 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb3750fc9 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xb3ad71e5 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb3ce76e3 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb3d15f77 vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xb3d186bc bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0xb3d5c785 intel_pinctrl_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb3dc7fbf rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb3dcada6 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xb3deff42 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb3df8cbf adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb3e7827d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb3f987c7 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb404c2ce irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xb41e273f devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb43e2437 crypto_unregister_shash +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 0xb45d856f acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb470d50a wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb473dde4 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bc840d sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb4be4fea device_register +EXPORT_SYMBOL_GPL vmlinux 0xb4d5ed91 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xb4d74199 __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xb4e1ef32 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f1093f pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb51524f7 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xb5168451 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb54f626a shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb551ea72 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xb55921b3 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb55cfe26 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xb55df448 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb55e7e09 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0xb577ed5f ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb580d2cc crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb596974a gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xb5a03ccc pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5ac72cf dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xb5ae779e fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb5b5ecac serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xb5bdbf35 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xb5c3bd97 blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xb5d33fa9 acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0xb5f0c1db gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0xb60805e7 create_signature +EXPORT_SYMBOL_GPL vmlinux 0xb608c619 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb60cd334 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6192242 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62a823d devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63a6932 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb648032c rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xb64cfc8f vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb6561458 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xb65eac28 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xb6604b8f component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb6888188 klp_shadow_get_or_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb69fa185 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6a97fa6 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xb6b83fb0 led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0xb6c4408b screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xb6c5e614 acpi_processor_evaluate_cst +EXPORT_SYMBOL_GPL vmlinux 0xb6da0a1e firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xb6e4eb5a fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6e5193d device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eabe37 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb6f32f93 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7063b9e devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb72a939d wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb748b793 __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75041d1 hv_stimer_legacy_init +EXPORT_SYMBOL_GPL vmlinux 0xb78eff72 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb79a1916 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xb7a0d9ae sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0xb7a1ef1d node_to_amd_nb +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7aa112d phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xb7acbc8c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb7af77ac dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb7b8fe05 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7d656c5 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7d95a6c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb7de3c9a gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xb7f1df95 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xb7f961d6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb800ad84 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb82bf1f6 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb82d06c3 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xb8427daa rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb84ec376 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb84fd322 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb859af24 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb85e3341 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb8700948 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb87ae6a4 hv_ghcb_msr_write +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a8cdee nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8bab54b usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e8adf0 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xb8ec3596 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xb8ec51ea irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xb8ed1ea7 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8f98599 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xb8fc290c fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb9001347 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb912942f __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94294fe sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xb9431fa3 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xb965140a __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97a94c5 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xb9824197 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb99fe0ea __tracepoint_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9a7f384 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb9b96197 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c1d850 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c87a8b lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cb2b74 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9db2896 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb9f27440 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba003be3 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xba01ec83 hv_stimer_global_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xba0315d9 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xba04f7a8 dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba066d94 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba244fc2 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xba299255 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba33a0f1 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xba4a32c7 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xba5a4842 regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xba5dfc2e dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xba657600 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xba689cb4 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xba6a64b9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xba82f246 uv_bios_install_heap +EXPORT_SYMBOL_GPL vmlinux 0xba894b59 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xba9a3637 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbaa166a9 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbab7fc0d securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbae42f31 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbaf9d785 __tss_limit_invalid +EXPORT_SYMBOL_GPL vmlinux 0xbb022155 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb06d8f1 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb339662 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xbb357941 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xbb4028ab tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xbb5598ce get_llc_id +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb662819 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6d779b xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb798cbc unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbb88db02 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbba903e7 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xbbb78d3b for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc245f4 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xbbdac24e lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbef9e61 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbf278af device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbf8ffdc sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbbfe624c __SCK__tp_func_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0xbbffe3b3 crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xbc02a12a intel_pinctrl_probe_by_uid +EXPORT_SYMBOL_GPL vmlinux 0xbc13d4bd bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xbc2b9d01 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbc2bcb44 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xbc31f4a7 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbc361032 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xbc3ca10f devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc480a00 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0xbc4e24bb copy_mc_to_kernel +EXPORT_SYMBOL_GPL vmlinux 0xbc553e6c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc60dc37 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc707c3c handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc86948e ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xbc90410e crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xbc92596d intel_pt_validate_cap +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcae06c4 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcba45e9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcc757d1 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xbcd703bc regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce755b3 bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd08d412 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xbd08f73b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xbd1bab5a edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbd2540de __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xbd264d50 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xbd2ef11c intel_pinctrl_get_soc_data +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd488302 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0xbd4c9724 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xbd509603 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0xbd617a54 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xbd7365fd do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd842c3d genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbd8696b1 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xbd9606e2 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xbd99e873 __SCT__tp_func_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0xbda132a6 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0xbda6e187 vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb2dfd5 uv_bios_reserved_page_pa +EXPORT_SYMBOL_GPL vmlinux 0xbdb6dfe3 xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xbdbc439e unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xbdbe5f02 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xbdc5901c genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbdd76a9f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbe024235 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xbe0d5bd1 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbe0eab68 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbe373195 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe42249d pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe65e182 max_cswd_read_retries +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6c9040 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xbe741223 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xbe744257 efi_get_embedded_fw +EXPORT_SYMBOL_GPL vmlinux 0xbe8532eb tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea3980b cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea9c578 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbeb34e14 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbefa9212 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf069db2 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xbf0cec74 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0xbf10d5f1 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xbf119089 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xbf1456d9 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0xbf165dec __SCT__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xbf1ad171 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf2e5ff2 xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0xbf31ec01 serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4b3fe5 dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xbf55cb22 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xbf652a18 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf73add8 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbf8572a8 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xbf914de1 vfio_pci_core_request +EXPORT_SYMBOL_GPL vmlinux 0xbf97b38e serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xbfafa99b vfio_pci_core_write +EXPORT_SYMBOL_GPL vmlinux 0xbfb5e3a8 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbd1a3d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbfdad3ec bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xbfdb53ce mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xbfdc85f7 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbfe4140d ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfea47e1 rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbfffca7f gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc016b4ef __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc02f829d __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xc037ca2f mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xc03afd59 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xc0485db4 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xc05c1b64 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc05e0ddf crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc0706934 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xc0778b5b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xc078e2b5 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xc089b083 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc08b8081 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xc08bbce6 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xc08dc969 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc09e536b devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0ab2eae devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xc0ab687f iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0c06709 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xc0c33e12 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xc0c56490 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f1a41f l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10e6178 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc124a175 regcache_cache_bypass +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 0xc1919cd0 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc1973e09 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xc1a50361 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc1a5e68e thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xc1f39188 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xc1fa981f inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2033d9f amd_get_highest_perf +EXPORT_SYMBOL_GPL vmlinux 0xc21c2b11 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xc2218c7b devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23601c1 __SCT__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xc24a9c6d pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc25defba irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xc25e5538 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +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 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2ad25c4 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xc2bb925a ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2c1c427 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc2cbb7d4 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc2de26b4 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2f39731 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc2f750c4 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0xc2fb483f __SCT__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xc303701d trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xc30a8a30 user_update +EXPORT_SYMBOL_GPL vmlinux 0xc31a286e evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc321e879 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xc326249b mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3554021 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc3607c02 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xc3682afa xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xc36cf2e2 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc37e8ce2 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc39bb443 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc3a4f360 xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0xc3bef015 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cc4300 smca_get_long_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cca547 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xc3d2269b __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc3d298b2 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e1021c __SCT__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc3e3dd30 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f77a63 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0xc3f9986e aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc401ae49 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xc40abb17 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xc426c51f klp_shadow_free_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43abe0c blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc446ba92 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc44f1a64 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc453ec0d ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc45d0d13 injectm +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc477828d __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc47c00fd kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4ca918e pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xc4d022cb __SCT__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc50cff51 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xc50dca33 __SCT__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc53df410 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xc55862c8 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5668aa4 md_bitmap_copy_from_slot +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 0xc57e2cbf elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5874b66 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc59e2a41 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5af5479 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5b4afa4 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0xc5b69eaa intel_pinctrl_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc5bf3d5b dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xc5e3c39e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xc5e95d82 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xc5eaf0e5 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xc5f0ab2d gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xc5fcde1a iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0xc604ab28 __SCT__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc605fb35 iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0xc60c60ff __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61df88a mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xc62d7f74 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0xc644376e rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xc646e7d8 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65a4629 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc66b5284 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6795d23 pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc683da81 set_memory_decrypted +EXPORT_SYMBOL_GPL vmlinux 0xc68d0a97 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xc695dad8 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69f8730 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6ab6ebc pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc6af1729 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc6b6c234 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6bccf54 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xc6bf7ba8 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6c13914 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xc6c87e02 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc6ce4af5 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6e8e03e pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0xc6eec8f5 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70c7b9b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xc7262aaf devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0xc728b3ca usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc73b84a2 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc74b8340 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc74bdc91 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xc770f657 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xc77d94ff __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7a8f2a7 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7c36c77 dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0xc7cfdf5e tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc7d78d9a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc7e61d51 fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7eac65d crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fb3ec3 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc7fbfe7e edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xc8098f6d get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8126340 clear_mce_nospec +EXPORT_SYMBOL_GPL vmlinux 0xc82083d0 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc8213be1 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc853e444 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85cec6f __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xc862b25b pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xc874d710 hv_unmap_ioapic_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc87f74fa ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc8840723 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xc88884a6 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xc8924c58 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc892ee63 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xc894fd44 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc89567b1 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0xc89831e2 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8b9163c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xc8b95cf9 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xc8c564bb dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8e1d388 alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xc8f73eee acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xc8faeb74 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc91ee1b5 __SCT__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc931eae7 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xc93430b7 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9426d34 serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xc9455aa7 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc9555b79 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96599fb page_endio +EXPORT_SYMBOL_GPL vmlinux 0xc96fc0f7 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc9918513 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc99db607 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xc9a12f5d icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0xc9a18b52 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xc9a4b416 copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xc9a5d681 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc9b49389 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xc9c307bf pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c5329e usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0xc9cbc2f1 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xc9cbe33f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xc9d0709e msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xc9dc056d bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xc9e49d3a fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca045f5c strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xca159f6d debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xca17aee3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xca1ba962 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0xca1e874a vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca467318 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xca525dc2 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca861368 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xca8964ce usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaa68533 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0xcaa731e0 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcaad1426 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xcab344e5 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xcab7e5d4 led_put +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad77e4d devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcadcd4d5 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf61dc3 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0xcaf62461 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb1d2149 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb380f44 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0xcb3f46e0 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0xcb4b7697 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xcb5349e4 __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb735f2c __unwind_start +EXPORT_SYMBOL_GPL vmlinux 0xcb86919f fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0xcb8a461c hv_stimer_legacy_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcb970751 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xcba007d4 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcbb093c9 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xcbb46ca0 misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbf1db43 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcbf283e0 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0xcbf79bd8 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0xcc220366 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xcc23cf32 devres_find +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 0xcc519717 devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc7bddc8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xcc7cad43 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xcc884782 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcc9011b3 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca25d9a dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccb354bb __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xccb4c558 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xccba7e2e pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xccca3c42 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd50cd6 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xccdc4a6f cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xccea934e acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcced9be8 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0xccf396a3 x86_perf_get_lbr +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xcd143138 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd49b399 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xcd58f000 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xcd640748 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xcd68d392 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd74d062 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xcd81a945 switch_fpu_return +EXPORT_SYMBOL_GPL vmlinux 0xcd8e8f82 uv_bios_enum_objs +EXPORT_SYMBOL_GPL vmlinux 0xcd9039bc tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb5a839 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc7cd27 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce167093 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xce22def0 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xce3c205e of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xce4244ad badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0xce4b555b max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xce98355c unwind_get_return_address +EXPORT_SYMBOL_GPL vmlinux 0xcea33b3a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xcea3c7ba fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xceac8e4e tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xceb66bec sched_clock_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcebd426b mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0xcec443e7 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee9f878 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xcef43616 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xcf02ab71 __SCT__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xcf28dab7 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xcf2b93c8 __SCT__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xcf33aec5 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xcf3bfbf4 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xcf3f0783 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xcf4057ee irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf4156b7 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xcf45c3a5 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xcf540422 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcf652fb1 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0xcf6b2abf ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xcf742528 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcf767cfa crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xcf85f71f pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xcf87c1f3 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xcf93f564 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xcf99a717 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf9b11a9 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xcf9e22e2 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xcfa71d41 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0xcfaf6e57 blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xcfb872a9 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xcfbcd615 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcc21fa devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0xcfce0d4f phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfdbb460 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xcfe01b55 devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0xcff764ae pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0xd0032d17 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL vmlinux 0xd0081a68 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd00d3c3c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xd00f3f46 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd0177a65 acrn_setup_intr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd01d7c98 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04a0106 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xd04a2de1 unregister_fprobe +EXPORT_SYMBOL_GPL vmlinux 0xd056e1d3 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xd0585ad7 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0xd05d3f87 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xd0603045 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd078c5ae virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd07f7af7 fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd0805965 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xd08a97db vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd08eb2a4 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09c36bd ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd0a43d1c rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd0b21a77 crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c35e23 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xd0c39bbc gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xd0cf3f71 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d87146 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd0da9734 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0df12ba __SCT__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xd0f0fdae clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd0f67589 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd10663c0 __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xd10e9dab phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd11a9784 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xd12e9b48 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13a94d1 __SCT__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd1435545 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd14c4cb2 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd14d0e89 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1729b9b virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xd17d5164 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xd1a303bc auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1af1bf1 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd1c01222 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xd1c61573 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xd1cac7bf unregister_ftrace_direct +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1cfbc7b ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd1d07b7d vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xd1d51625 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd1d6b156 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0xd1e9b2ad __SCT__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd1ed5b04 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f92565 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xd20c66ab __SCT__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xd20e114f gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd24cd803 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd253c0ae regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26dc714 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd28a41fa __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd29236c4 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xd29a4ac4 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a6a9b9 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xd2acccf6 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2beb4e9 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd2c4ead5 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2ed527a dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xd2fbf5d6 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xd2ff4bd4 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xd309a92c iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd313c47d devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd314d77a ping_err +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 0xd340c83f usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd3415982 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd3503eba dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd36c2dc5 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd37d359e phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0xd38101aa dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd396e22d serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xd3970a71 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xd3977337 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd398665f acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b0abd0 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xd3bcc7d4 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd3d7371c fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xd3d95ff0 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3ecf934 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd405ab49 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xd40a3f5e msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xd415a219 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0xd41d73c4 __ip6_local_out +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 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4536ea4 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xd45c44aa md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd4637c3e irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0xd469184f power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd470a096 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd476c66a bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xd481268b dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xd489d359 nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0xd48b4a4f md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xd48cca5f switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0xd493e315 extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0xd4943f62 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd496a26b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xd499abf8 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd49bc09a acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xd4a83a9a irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0xd4acdb6c dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd4b48e2d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c0507c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd50c1ab5 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd5126ebb device_attach +EXPORT_SYMBOL_GPL vmlinux 0xd51b0718 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xd52400e6 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5323b69 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xd53afe87 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xd53c2e37 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53f65af usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd54717ac of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd548b60a iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0xd54c0604 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55da78f regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd55e92c3 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xd56341d3 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0xd56d5ef5 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd5760bd0 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5886a4f device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd58b5518 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xd58c6d5e acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xd5930ab3 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5b762b0 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd5d73844 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5e1c252 pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd5eb0d4e acpi_register_lps0_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5f3bb7b set_memory_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd60a7482 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd6273e54 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0xd6398b4d usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd644aa67 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd654a8f5 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xd65559ac regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xd66f87d0 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd678e4a9 blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6bad372 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xd6c09c5b serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd6c0b943 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0xd6c4b4d8 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6cff8cb fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xd6d0899f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xd6d180f4 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd6eacec1 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xd6f40e54 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd6fa8c20 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xd6fd83a2 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70bfce7 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd70f6bd6 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xd711a9a9 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xd715e3a0 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd7234044 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7490aea skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd7519a31 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xd7594303 __SCK__tp_func_fdb_delete +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 0xd77a5497 register_fprobe_syms +EXPORT_SYMBOL_GPL vmlinux 0xd77fa6ee power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xd7914500 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd79f97c4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xd7a6dda7 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd7b56ac1 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0xd7c25959 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d59f9b pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd7d7f2a7 devlink_port_health_reporter_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd7e67d27 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0xd80f38d0 rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xd81c4624 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd81fea1b regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd83aefa9 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8526518 scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xd855bcf8 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xd85b6ad6 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd86fec4c crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xd8766e88 spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88cee6a uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd88f3d84 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xd8a1e26d noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xd8adcfa8 irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xd8af3579 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd8c41eac pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xd8d065dd hv_stimer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8df515d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd8e9fbb6 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xd8f2aea4 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd8fd8f3c key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xd901483e platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xd908665b strp_init +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92cba4b bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd937128d regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd94c7e56 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd9537766 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xd956c3ef file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xd96a08df pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd971859f device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd973ef97 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd97e7e76 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9992eb4 uv_bios_get_geoinfo +EXPORT_SYMBOL_GPL vmlinux 0xd9a6e2f8 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd9c576f2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e3caa3 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xd9f1ae5a iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xd9f8fe3f i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda10c699 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0xda124537 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xda140cc1 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xda1f78ee clear_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xda230ab9 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xda25bcd9 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0xda2b8cbf __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda3cbe8d regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xda3d8578 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xda4be5a0 _copy_mc_to_iter +EXPORT_SYMBOL_GPL vmlinux 0xda5fcc22 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0xda614b4a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xda61ec6d cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xda6b6e9e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xda73ab5e inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xda788109 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda8369a7 __traceiter_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xda85eb30 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xda8dbd3a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda8e1da2 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0xda991195 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0xda9ee328 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa22db0 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf91063 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xdb14ff85 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xdb192865 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xdb1aaf9b arch_is_platform_page +EXPORT_SYMBOL_GPL vmlinux 0xdb1fed09 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xdb2e5cb0 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xdb617333 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xdb62dc67 __SCT__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb748651 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xdb7fca09 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xdb88c439 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8e5012 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xdb931687 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdb950b81 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xdb980979 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xdba0e344 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xdbd3fdab crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbeed43c dev_pm_qos_hide_latency_limit +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 0xdc1bba1d led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xdc32c050 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xdc3c7c16 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xdc3db43c irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc4bcd81 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xdc5c263a fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc66980a dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc719bcd ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0xdc7dcc9e mdiobus_modify +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 0xdc901739 devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9bde4d trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcf943e4 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdcfb719e __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xdcfc636d pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0dfa74 hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd2baa21 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0xdd358f50 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xdd3abb91 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd417c62 blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd54eb2e unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xdd603030 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd64eb7a pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd6d17da scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xdd6de3cb sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdd716b4a dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xdd7ffa17 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd933a55 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xdd9dd80d xen_pvh +EXPORT_SYMBOL_GPL vmlinux 0xdd9e5c0c fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc369bd mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xddd40b84 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xddd5967d mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xde169da9 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xde2406b4 acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xde30324a acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde588590 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde91a225 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea1ddfc udp_abort +EXPORT_SYMBOL_GPL vmlinux 0xdea23022 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdeddb0a0 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xdeea5481 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xdeec095b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdeefd2e5 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0xdef7e571 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xdef90c8a regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0xdefb2106 bio_trim +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 0xdf14486a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf21aa5d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2e51c0 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4c736b kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xdf4e8d97 blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xdf551355 screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xdf582d02 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xdf5c1d88 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xdf5dccd7 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xdf64096c pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xdf707072 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xdf81924d uv_bios_mq_watchlist_free +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfadfaff rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0xdfc8cc7b access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0xdfca38d7 platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfd0586a sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0xdff479a8 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xe02249f5 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xe024aa7b rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe03f233b xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe03f769e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe046b65e tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe04c78db __SCT__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0xe055fb01 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe05b9444 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0xe05df144 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe07c8ea0 __intel_scu_ipc_register +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09b3e79 vfio_init_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0a6aa17 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b212e2 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xe0bc1b0f __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c5d2cb fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d091ee tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xe0d154dd pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xe0d39f1c sgx_set_attribute +EXPORT_SYMBOL_GPL vmlinux 0xe0d9390b gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xe1089564 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10d8131 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe11f9d86 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0xe1238c9c handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xe12dab29 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xe138813e class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe146c0aa sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe1492f26 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xe14c584e wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0xe16ad16b isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe187e0f1 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe192d611 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0xe1a06ab0 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe1a6c41f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1aa2d62 set_hv_tscchange_cb +EXPORT_SYMBOL_GPL vmlinux 0xe1bbb461 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c0623e dm_put +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1cd2fa9 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xe1cec3c3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xe1d600e2 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0xe1e902ea genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xe217bb62 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe21b194e wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe22476c8 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0xe232ae62 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe234da93 __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xe237e980 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe23c1d50 __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe23ffb7c cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xe24e62ec power_supply_get_drvdata +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 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2968183 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0xe2a26a22 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xe2a6306e get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe2a64053 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xe2b0690c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2ccdb97 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2de4a81 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe2ec15b8 serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xe2f0cbe9 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe30635ab __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe3178cce pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe326ab1e sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xe3277e67 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe3285c40 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xe3318eb1 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0xe3327136 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0xe33d5d5d dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xe33f526b device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xe3452d58 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe34919df kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0xe3668ba7 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xe3672f29 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xe3824bed sched_set_normal +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 0xe3a8c08c pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c50512 dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d3222e ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe3d36a60 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe3e286b2 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e88acb __get_current_cr3_fast +EXPORT_SYMBOL_GPL vmlinux 0xe400bba8 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe4032de8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe4264dd6 cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43d190f __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xe452398d vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xe472df36 spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe47ad190 extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0xe48611ac trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0xe4898bda tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4b9e476 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cbdfa1 start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe4d7960d devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4eb430e crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xe4f10ca8 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe51ba7ca skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe524933d vfio_unregister_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xe52f1051 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xe54707b7 __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe56910ff dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58c7d26 __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xe5a3d856 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0xe5a5c3de nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe5a6b667 crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe5b3dd9d policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c3f659 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5dc099b root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5de445a lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0xe5e4bbb8 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe5fea10c pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe61eca18 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62eb809 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xe6324f2a regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe6329a17 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xe636d5e5 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6510514 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe6580159 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xe6712e60 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe6853e12 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xe68765c7 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe6948f18 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe6974593 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xe69cd288 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xe6a0f718 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe6a257f1 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0xe6a97e0e noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xe6c9f6f4 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xe6dddcc5 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e5abf4 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6ecd2c8 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe70d5fa9 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xe7124dfe wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72ec906 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe72f0199 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe739d692 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xe740b58a hv_vp_assist_page +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe768ae72 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a964f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe786430c usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xe7958cc1 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe79bf0c4 klp_shadow_get +EXPORT_SYMBOL_GPL vmlinux 0xe7abb27f devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe7b243fe adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xe7b66721 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xe7b96be0 tdx_mcall_get_report0 +EXPORT_SYMBOL_GPL vmlinux 0xe7d11634 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7f5744d nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe7ff1e61 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xe801d22b nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82bd703 phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xe83593c2 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xe835b5cc serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0xe8366794 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xe8377ea9 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xe83c486c ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0xe83eba32 itlb_multihit_kvm_mitigation +EXPORT_SYMBOL_GPL vmlinux 0xe8442285 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85c01b2 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xe85ed0eb platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0xe85fada6 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8635730 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xe86f33d4 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xe8705f0a genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0xe877dc10 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xe87c82f3 ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xe884fbe9 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xe89aa460 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xe8a8bbda gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c6eb52 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe8c74c9e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xe8cfeae4 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xe8e235c8 arch_static_call_transform +EXPORT_SYMBOL_GPL vmlinux 0xe8f67d5e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xe911df29 eventfd_ctx_do_read +EXPORT_SYMBOL_GPL vmlinux 0xe9308a2e paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xe932f0f2 bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe948a033 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe965f671 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0xe9680908 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xe969ecc7 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xe9734fe4 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe998da11 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xe99b85c3 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xe9a89495 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe9aa2deb bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0xe9bafbc0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9c641a7 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe9c829d9 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xe9c8ffdc linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0xe9ca533d tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d2be8a alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xe9da7733 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe9eb084b usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe9f3d629 disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9fadf16 __SCT__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea07ab75 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1da470 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xea26586b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xea2b07ee xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xea2cd1d3 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea416fe7 __xenmem_reservation_va_mapping_reset +EXPORT_SYMBOL_GPL vmlinux 0xea534514 devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0xea681c2b spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xea74106f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xea7aa68c dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xea7b9a63 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xea880dcf bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xeaa39293 auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0xeaa704b6 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xeab59a49 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xeab6c013 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0xeacbd931 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xead2f0d9 skb_zerocopy_headlen +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 0xeadd3ea1 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaeee6cd fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf87d37 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xeb05ff93 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xeb10978c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeb2c1866 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0xeb49dd15 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb5a599c devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xeb5bf592 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb889da3 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xeb8d1221 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xeb8e8a3d uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0xeb942c53 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xeb9d6d32 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xeb9e2398 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeba83d21 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xebc19730 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe81725 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xebf7501b events_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xec014f57 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xec058b83 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xec0d81f7 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xec154108 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xec1ff107 sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0xec2548a0 irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xec25d582 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xec4ab6f5 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec56eca4 pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xec595635 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec605be9 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xec6de7a9 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xec7295b0 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xec75dea8 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec788566 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0xec80ddfd nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0xec821d8d regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xec8fa806 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xec90279e pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xec929d15 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xeca2996b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xeca2ac6d trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbe010e crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xecc7af45 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0xecd888e2 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecf24bcc ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xed0e36e9 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xed1d1868 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed221e7e pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2d4743 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xed38e2e0 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xed38eced devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed76fe5c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xedb0c0c2 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xedcd1c57 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd7ede1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf22e43 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xee0ebb7f mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1af950 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xee256f01 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3ec145 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee695c99 thermal_cooling_device_unregister +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 0xee730647 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xee932fcb pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xee98ece9 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0xeeb245ac spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeee57955 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xeee667d3 fpregs_assert_state_consistent +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xef11dc44 pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xef1374d9 modify_ftrace_direct_multi +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef236988 virtio_break_device +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 0xef4dfcd2 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xef50ca77 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0xef5aaf3e irq_domain_alloc_irqs_parent +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 0xef712238 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xef808ad2 vring_transport_features +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 0xefbbd833 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xefc8441f serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xefcf885f extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0xefe0ad87 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0xefe90aae skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee011b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xf02a2292 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf03e38b2 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xf041c092 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf0450c6a __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xf0558e2f acpi_fetch_acpi_dev +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 0xf06ffacf devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0xf07fe9d5 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xf087ba26 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xf0893af4 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0a4e39d pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf0b1c631 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf0c4f364 security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf0c94d2c switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xf0e1aab3 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf0e5177a thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xf0f18516 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xf0ff5ffc synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xf10378cd bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xf105213f led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xf10915e4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf11ac41b ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf14323e3 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xf1600f36 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf1690c48 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf169e5f3 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf16d9590 md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf1cb7899 mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xf1cc8e00 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf1cd8929 kvm_read_and_reset_apf_flags +EXPORT_SYMBOL_GPL vmlinux 0xf1d483b3 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf1ef164d dbs_update +EXPORT_SYMBOL_GPL vmlinux 0xf2090056 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xf2097b71 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xf20ab3cf crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf212b062 tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xf21737ae tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21d7cae da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23757b5 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xf24e9f9e __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xf2513b02 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xf25b1eaf dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf28666d1 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xf2882a9d ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a37ea0 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf2a88964 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0xf2a90bce vfio_mig_get_next_state +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b52257 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2be298f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xf2c53d53 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xf2cb3367 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf2d4937f bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xf2e5a3ee xfrm_unregister_translator +EXPORT_SYMBOL_GPL vmlinux 0xf2eea7f3 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf2ff6471 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf3189f7e __uv_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31bfbaa usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xf31d3c1b bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf342d738 skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xf347471d ata_host_init +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 0xf38bf968 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xf3a0f02e posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3aa20c7 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c3c8bd dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf3ca8662 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf3ccb1c7 xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xf3cec16d fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3e63b0a _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xf3ffb5c8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf407bc53 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf408e0c8 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xf40d2a2b pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0xf41c455e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf428b8f0 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf42a688d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf43f0a45 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0xf45b5af9 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46c6e0a fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0xf46f7e7f __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf482a1fc device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0xf491058a mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xf4a416f0 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4c30c14 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf4ca2bf7 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4ce9ce8 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf4dd89bf uv_get_hubless_system +EXPORT_SYMBOL_GPL vmlinux 0xf4e8cf97 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf4f69d1f clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf52fd824 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf53eb0fa fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xf5457006 of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf550631c synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf57117bf get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xf574e749 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xf586f673 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf58b2d04 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xf58f4ba8 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf597d024 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5d004ef sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5d643fb dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xf5d7e581 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf5f12aa5 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xf5f23e65 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f71050 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf6032b0e trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0xf61a9744 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf61ed3b6 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xf622dc74 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xf635c091 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf638c6ed vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0xf63b78dd nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf63c0d23 fpu_enable_guest_xfd_features +EXPORT_SYMBOL_GPL vmlinux 0xf64641f3 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf65de1eb fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xf65f0947 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf69c2acc regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf69c4fb1 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf707a3fd x86_platform +EXPORT_SYMBOL_GPL vmlinux 0xf70c2612 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf71be239 serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf755cccd sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf75bad7b nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf767ca35 fixed_percpu_data +EXPORT_SYMBOL_GPL vmlinux 0xf7705dc1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xf7771c18 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf7792a75 gpiod_set_transitory +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 0xf7d25638 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xf7d961d8 clk_hw_unregister_composite +EXPORT_SYMBOL_GPL vmlinux 0xf7dd1750 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xf7e6219b fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf7ed9bd8 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xf8095115 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf80ef7e8 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83608db gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xf837e525 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf85f5a0d dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf875c1a5 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf881cecd load_fixmap_gdt +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf88813c7 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xf8a6c673 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0xf8a7548a gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0xf8adf77c crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf8b255d3 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0xf8b5951e regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xf8efecbe dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f9dec2 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3986 pat_pfn_immune_to_uc_mtrr +EXPORT_SYMBOL_GPL vmlinux 0xf91e663e inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xf927bcf1 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0xf928a2bd regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf92b0fc8 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf92d8dcc device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xf935fc1e ptdump_walk_pgd_level_debugfs +EXPORT_SYMBOL_GPL vmlinux 0xf9362083 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf946f83e klp_get_state +EXPORT_SYMBOL_GPL vmlinux 0xf94e2892 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf952e213 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf955e9c5 bprintf +EXPORT_SYMBOL_GPL vmlinux 0xf957f084 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf9754dab __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a67311 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0xf9ac3910 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf9ae8827 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9f5b14c iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9fa483b gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xf9fbfb9c usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xfa1d2d9c pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2c1c79 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa35044a alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0xfa352d02 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xfa3620be dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xfa3cfeda fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa5c057f devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0xfa61445a crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xfa6324bf pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa7c8254 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xfa97980b bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0xfaa17cb1 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0xfaab55f6 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfac19858 fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0xfac3193e __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xfad1c497 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadabb4e devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xfafc3e71 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0xfb096d56 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xfb0ac4cd sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xfb2d39c2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb414852 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xfb634c82 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xfb6d3b35 hsu_dma_remove +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb707fe5 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xfb7534dc kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xfb83b95b hsu_dma_get_status +EXPORT_SYMBOL_GPL vmlinux 0xfba4a427 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xfbaed7a6 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xfbb1b9f0 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbbb38c4 lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbcd44e8 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xfbd065f7 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xfbd2728b regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfbe0fa39 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfbecaa87 strp_done +EXPORT_SYMBOL_GPL vmlinux 0xfbf53c34 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc0170c9 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc075750 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc217e87 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3dbbac tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xfc3e1e73 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xfc43bf7e acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xfc442627 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc4a830a __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc51f00e bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xfc525a74 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xfc59621b tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0xfc601c62 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xfca3d3cf tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcaf85cd proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xfcbc5571 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfcbcc397 virtio_device_freeze +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 0xfcdf0a46 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xfce1ac26 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xfced6fa9 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfcf41c12 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xfcf559ca ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfbc689 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xfd0633c6 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd416e92 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfd581719 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd618c97 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd74509b vfio_register_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xfd8c69a6 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0xfd9f12da ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xfdb9ea32 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xfdbd29f6 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc08012 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xfdd87ffe ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe00b3b4 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe17ba6b __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe18c693 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4f41c4 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xfe5aad0c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe5d8404 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe85a80a vfio_file_has_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe86ec0a wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea7c991 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfeb118c3 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xfeb12464 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xfec5b902 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfec8fb41 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed561ff divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xfef2e42a blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff06b772 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xff11d89f dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff1692b9 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xff1e67b9 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4b782d vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xff4d6820 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xff5fa9c2 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xff5fed12 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff7057a9 devm_thermal_of_cooling_device_register +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 0xff9385ac phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffb5e52f gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xffb68e57 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xffc3e075 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xffc4bc87 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffce6b7a balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0xffe7a29f pci_epf_bind +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x21396e57 hwmon_device_register_for_thermal vmlinux +I915_GVT EXPORT_SYMBOL_GPL 0x02cf28ec i915_unreserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x0526777a i915_gem_gtt_insert drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x170e8e9b i915_request_add drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1830ba83 intel_uncore_forcewake_for_reg drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x18421071 __intel_context_do_pin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1ae67720 i915_gem_object_ggtt_pin_ww drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x1d76111c i915_fence_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x2d529c56 i915_gem_object_alloc drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x31bc32e4 __px_dma drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x39637d96 intel_gvt_set_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x48af74aa i915_gem_prime_export drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4ba8a1bc intel_runtime_pm_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x4ced39fb intel_ring_begin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x52685c69 shmem_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x54f20ce1 i915_request_wait drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x57b6b18a i915_gem_ww_ctx_fini drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x5af56b60 intel_uncore_forcewake_put drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x61d22992 i915_gem_ww_ctx_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x722bfde5 i915_request_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x78840dfe i915_reserve_fence drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8311cfc5 i915_gem_ww_ctx_backoff drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x834f7f75 intel_context_create drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x890fc889 i915_vm_release drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8bcd56cf __i915_gem_object_set_pages drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8c61b992 intel_uncore_forcewake_get drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x8e820f5e intel_runtime_pm_put_unchecked drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x93d34725 i915_gem_object_set_to_cpu_domain drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0x9d6b5734 shmem_unpin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xa77caadc i915_gem_object_init drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xac1c23be __intel_context_do_unpin drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xaf950885 _i915_vma_move_to_active drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xc1b4a6fd __i915_gem_object_flush_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd3541065 i915_gem_object_pin_map drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xd60c80d1 i915_gem_object_create_shmem drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xdf4c8c6e intel_gvt_iterate_mmio_table drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xe3dded6a intel_gvt_clear_ops drivers/gpu/drm/i915/i915 +I915_GVT EXPORT_SYMBOL_GPL 0xf8db7550 i915_ppgtt_create drivers/gpu/drm/i915/i915 +IDXD EXPORT_SYMBOL_GPL 0x17675512 idxd_dmaengine_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0x8302afef dsa_bus_type drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xb1f1226e __idxd_driver_register drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xbccce4bb idxd_driver_unregister drivers/dma/idxd/idxd_bus +IDXD EXPORT_SYMBOL_GPL 0xf3513723 idxd_user_drv drivers/dma/idxd/idxd +IDXD EXPORT_SYMBOL_GPL 0xf6197785 idxd_drv drivers/dma/idxd/idxd +IIO_AD5592R EXPORT_SYMBOL_GPL 0x3572ac9a ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xbace092a ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x12dd6234 ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xbe08a925 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x0c3f7ed5 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xd6214542 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0x6aaba7e4 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0x96b4d50c ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0xa3543da9 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xd9ec9a0d __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x394e523d adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x57dbc1e7 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x65b77ac1 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x70ef1ca9 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x75cd4bb8 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb4a0c508 adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xbfefe3f4 __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xd0fc8e11 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xdfde5e20 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe5a2655e __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x9fd501d9 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xb68d59e8 adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6515e4f4 adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x60942f85 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x00be20d5 adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x3421ce08 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x03a54eb4 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x18ebc123 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x19691a74 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x30ed9bcc ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x4ae6038b ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x58e0425b ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x7440d24e ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x78357c64 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x794b3246 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xee272e53 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x63bd1521 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xd79bb8ed bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x145fcec6 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x7c005bb7 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x8eda9cce bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x8f64d25d bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7b25db65 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x9d93b787 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xb0feb014 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe341e01c bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x1ce5dc06 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x979ed65e bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x3ee99b20 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x6f63ec7d bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x9bd78e6a bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xcb20dd5b bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0b967b41 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x760ef782 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa948ef84 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xcaa33825 fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x3921472f hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x3a3a5994 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x627c7811 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 0xa9abd173 hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xac616ebe hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb41fa028 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xbefe3f71 hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xc254b1cd hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xca87c436 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xd761a493 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xe6e1ccf2 hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xf7d88df8 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x3b572fc9 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x61c161a4 hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x61e24107 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x729a5881 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x0673702c hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x6ce094be hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0x77d7627c hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xdcb63d02 hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x1044de54 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0x67f15686 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xffefd356 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x239057a6 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42bccba3 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x5197858d ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x79a71ccc ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8d854f88 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xa9bfcd49 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xcfdc9a82 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xd6dbd345 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xf0f406d3 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x44105a4f mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x669c773a mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x7d87380a mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x0089815d mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x286d3ecc mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41cbf6a6 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x573e0659 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x668ead3c mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x700f9eb3 mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x80da5196 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x81cd6860 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x85f61a38 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x94643607 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa19ee348 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc0e78d5f mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xcb384c79 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xda557381 mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf1eb1a9b mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfa3e5e34 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0xddb0e363 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x28fee1d2 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xa81ba6d9 ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xa6c08197 rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0xb9473f14 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xe3c45613 scd30_probe drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x1ae8f789 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x242677b7 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x638d71c8 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7045e25e ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x927cb1db ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9491cc61 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x96c40f94 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x9cbc203d ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x06e37ecc st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x07af01b0 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x21c372be st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x2882b4c1 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x2e518806 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x431b23ac st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4388fe7a st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x5dd82bf5 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x753a641e st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x790a2fe4 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7b4ea3ac st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x7e048db1 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x82513e3b st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x913f40f0 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x99eae366 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xa5517aad st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xa95e8d43 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xab696df2 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0xac1968b5 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbc6aeecf st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc8094ea6 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc9384177 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xcc2ce054 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xf527199b st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xfa45af9b st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xfc2185d5 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xbc3d6558 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x5ab14b27 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0xae6d359d st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x6c6b895f zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x77202a81 zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8be2683c zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x9a02fbf9 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xc9b4f70d zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xf499427e zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x118c8f5d processor_thermal_send_mbox_write_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INT340X_THERMAL EXPORT_SYMBOL_GPL 0x44027542 processor_thermal_send_mbox_read_cmd drivers/thermal/intel/int340x_thermal/processor_thermal_mbox +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x03441fec uncore_freq_add_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0x51738d6d uncore_freq_remove_die_entry drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xbf3d935d uncore_freq_common_exit drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +INTEL_UNCORE_FREQUENCY EXPORT_SYMBOL_GPL 0xe471f32f uncore_freq_common_init drivers/platform/x86/intel/uncore-frequency/intel-uncore-frequency-common +IWLWIFI EXPORT_SYMBOL_GPL 0x010f3d6c iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x01592345 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x08801db0 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0a223c68 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0b42dfe2 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0f0f0d1c iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17c0732b iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x18860b75 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x240df0ee iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x282ac7c2 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2944d799 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x297834b5 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2bd10374 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c0a6c7a __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c227cbc _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2ce05bc5 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2ec211aa iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x320b4cbd iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x36af864c __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37f1900e iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3968ec4d iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3c1811f3 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3dd7d182 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4b926ec4 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x50d5ec44 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x572e2826 iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x57fda60c __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c83bbe0 iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x69b87326 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a31c0ae iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6de0eb23 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7ef8739a iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7fea2f3a iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8f260e25 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9114bff8 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x929f3b91 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x943b47d3 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x96836081 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9b17e052 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa529b266 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa56bfbb9 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa8848a02 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaa487bac __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xac401c64 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xaf991196 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb544e496 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb6d883db iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb70455bc iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb788f767 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb83780ba iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb840b7d7 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb9b91179 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc1569fe3 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc2f6c5c6 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc5a5c30f iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc6b9e897 iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc9511040 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd4191663 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd5bdd0e5 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xda696b58 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdd2e0e5e iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdeb07e89 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0bb9055 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe13372bc iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe2979de3 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe4b7810d iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe502564d iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe736b7e6 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe7c6f764 iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xebfd177c iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef798398 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf7a3d988 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf9b02cbd iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfcd94869 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfe79eb10 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x45019d0c ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0x690c04b3 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0bae9257 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0f173abd mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1a32c972 mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x3240c5b2 mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4076d418 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5f7f092e chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x7a7a0584 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9b81cbb8 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xa5c5782d mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xab6fe1c4 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb36daa79 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc0f80096 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xde575e6b mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xf41c0d39 mcb_release_bus drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5141b9f6 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x5b804dfa nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x87faff30 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x8941e4c4 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc3824d23 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xdc525ec7 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0186bb51 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0492af3b peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0dab1940 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x12179942 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x1a5ec96f peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2554d219 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2a3ffc78 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2aab66f6 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2d374109 peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x37ef68ff peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3e21f042 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4ebdb2cd peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x595f8a32 peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x66559144 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x68645d5d devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x687c04ce peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x80f63a8c peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x84313661 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8f48a73d peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9165f611 peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x93547c13 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x95cd0d1f peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbaa3121a peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc4daa37f peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc4dba6f9 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd56db203 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe6031d21 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfbd0b809 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfebdc420 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x4ec679e3 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x64cbf829 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8baf72e6 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xc975214b peci_pcs_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xcb394247 peci_temp_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x26d48fa4 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3398f797 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x342c7fad pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x364859fc pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x4211e3d6 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x43b1bdd9 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x43b44ce1 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x713fc786 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x76d987f7 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x79f2ad6c pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x914e0ac7 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb027d1e3 pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xce20cfd2 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd3c10d23 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdb436c00 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xdb7067e5 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xec116899 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf177f797 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf81d3d8f pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x10cd09e2 sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x36e30e04 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xab2bafe7 sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd8c02c41 sx_common_read_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x1a85f52d hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x7b0272c2 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x975ab107 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x9f2e3672 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x530fe501 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xade35307 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xaec76679 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x1e20b1c9 acp_platform_register sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x53d9a638 asoc_acp_cpu_dai_ops sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x66829285 acp_machine_select sound/soc/amd/acp/snd-acp-pcm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x6b99a48a asoc_acp_i2s_probe sound/soc/amd/acp/snd-acp-i2s +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0x766a3e96 acp_dmic_dai_ops sound/soc/amd/acp/snd-acp-pdm +SND_SOC_ACP_COMMON EXPORT_SYMBOL_GPL 0xe843262a acp_platform_unregister sound/soc/amd/acp/snd-acp-pcm +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xe716e7a2 acp_legacy_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_AMD_MACH EXPORT_SYMBOL_GPL 0xf6529da1 acp_sofdsp_dai_links_create sound/soc/amd/acp/snd-acp-mach +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0x323c74a7 cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xc6b75a14 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xdd077351 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x223be29d cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x2bdd6d9b cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x610323d1 cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_INTEL_HDA_DSP_COMMON EXPORT_SYMBOL 0x1a210fb3 hda_dsp_hdmi_build_controls sound/soc/intel/boards/snd-soc-intel-hda-dsp-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0x9ccb037a cs35l41_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_CIRRUS_COMMON EXPORT_SYMBOL 0xc9982916 cs35l41_set_dai_link sound/soc/intel/boards/snd-soc-intel-sof-cirrus-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x0d92302f max_98357a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x20702f0a max_98373_dapm_routes sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x3740571c max_98390_4spk_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x606e20c7 max_98390_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x6ee8104b max_98373_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0x7d33d404 max_98360a_dai_link sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xa898f0ad max_98390_ops sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd6a43572 max_98373_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd7fd71b9 max_98373_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xd92f2550 max_98390_spk_codec_init sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xdac0ed09 max_98373_components sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xddb78635 max_98390_set_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_MAXIM_COMMON EXPORT_SYMBOL 0xef39c156 max_98373_trigger sound/soc/intel/boards/snd-soc-intel-sof-maxim-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x1a7bd07f sof_rt1308_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x4b07e634 sof_rt1019_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x63cdb82b sof_rt1015p_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x798f6d49 sof_rt1011_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0x865b5518 sof_rt1015_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xa7a3b5b4 sof_rt1015p_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xd1ab63ce sof_rt1015_dai_link sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_INTEL_SOF_REALTEK_COMMON EXPORT_SYMBOL 0xf72cdd20 sof_rt1011_codec_conf sound/soc/intel/boards/snd-soc-intel-sof-realtek-common +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x25fa0687 sof_acpi_remove sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0x650931f7 sof_acpi_probe sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_ACPI_DEV EXPORT_SYMBOL 0xc0dd27a9 sof_acpi_pm sound/soc/sof/snd-sof-acpi +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x1114a69e acp_dsp_stream_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2b5643b7 acp_dsp_stream_put sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x2fa5e498 acp_dsp_pre_fw_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x35fb27dd acp_sof_ipc_irq_thread sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x3c1d3ca6 acp_pcm_hw_params sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4c5f26d9 acp_pcm_open sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x4c7d3b56 amd_sof_acp_remove sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x595297ee acp_sof_ipc_send_msg sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x630b011f amd_sof_acp_probe sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x70b8bef7 acp_sof_ipc_get_mailbox_offset sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x7a6acd13 acp_sof_trace_init sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x8a140d86 acp_dsp_stream_get sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0x94dc4374 acp_mailbox_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xa9ff30c3 acp_mailbox_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xb250e543 acp_pcm_close sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xc46cb6a4 acp_sof_trace_release sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xcfffaf94 acp_dsp_block_write sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xd51b5051 acp_sof_ipc_msg_data sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xe6ac2a5e acp_dsp_block_read sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xecf9bfd2 acp_sof_dsp_run sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_AMD_COMMON EXPORT_SYMBOL 0xf8f8ee65 acp_get_bar_index sound/soc/sof/amd/snd-sof-amd-acp +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x0eeba3a0 sof_client_core_module_put sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x105b1d5b sof_client_get_fw_version sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x4d6119ab sof_client_dev_register sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x505220c0 sof_client_get_dma_dev sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x5f64bd8a sof_resume_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x69250330 sof_client_get_fw_state sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x76496b85 sof_client_get_debugfs_root sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x83b30557 sof_client_unregister_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x87c26c19 sof_client_get_ipc_max_payload_size sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0x8a213464 sof_suspend_clients sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xa490bdb3 sof_client_core_module_get sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xade01d8b sof_client_dev_unregister sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xba5064de sof_client_ipc_tx_message sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xc065535d sof_client_register_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xd560c2a1 sof_client_register_fw_state_handler sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xe661ead4 sof_client_get_ipc_type sound/soc/sof/snd-sof +SND_SOC_SOF_CLIENT EXPORT_SYMBOL_GPL 0xedf52e2a sof_client_unregister_ipc_rx_handler sound/soc/sof/snd-sof +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x27b074d9 hda_codec_probe_bus sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0x6366bf21 hda_codec_jack_wake_enable sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC EXPORT_SYMBOL 0xc7558bd9 hda_codec_jack_check sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x0cca3455 hda_codec_i915_init sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x361e31f4 hda_codec_i915_exit sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_HDA_AUDIO_CODEC_I915 EXPORT_SYMBOL 0x768c4b50 hda_codec_i915_display_power sound/soc/sof/intel/snd-sof-intel-hda +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x0f7c556e atom_send_msg 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 0x3c0b310e atom_get_mailbox_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x54869362 atom_get_window_offset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x86cbaed1 atom_set_mach_params sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x98dbec3b atom_run sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0x9adf46a7 atom_dai sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xbeb24a6d atom_machine_select sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe40eba9d atom_reset sound/soc/sof/intel/snd-sof-intel-atom +SND_SOC_SOF_INTEL_ATOM_HIFI_EP EXPORT_SYMBOL 0xe73bf8f4 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_HDA_COMMON EXPORT_SYMBOL 0x006359e0 tglh_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x032797d2 ehl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x067d3a5d jsl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x0812e835 sof_tgl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x14f9f533 sof_mtl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x1a2f4ebd hda_pci_intel_probe sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x359fd461 sof_cnl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x4e7c9420 sof_apl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x5b0003b9 cnl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x6352bf42 sof_tgl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x70a3bfab sof_icl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x766d140d adls_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0x80b4c2a3 sof_cnl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xbac63372 mtl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xc5397148 sof_icl_ops_init sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xce1bb95c icl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xdfea9ffd tgl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xee9a3788 sof_mtl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf48f6d7e apl_chip_info sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_INTEL_HDA_COMMON EXPORT_SYMBOL 0xf570224d sof_apl_ops sound/soc/sof/intel/snd-sof-intel-hda-common +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x1112d34c sof_pci_shutdown sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0x522dfe6b sof_pci_remove sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xb4645b98 sof_pci_probe sound/soc/sof/snd-sof-pci +SND_SOC_SOF_PCI_DEV EXPORT_SYMBOL 0xd528e161 sof_pci_pm sound/soc/sof/snd-sof-pci +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x4206437c sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x587e00e1 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x5af438eb sdw_intel_enable_irq drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x84faac4d sdw_intel_probe drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaf3086e6 sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xbd2c12a5 sdw_intel_process_wakeen_event drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x00cf4c7c dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x62003de5 dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x645d527d dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7a2d792b dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x846c0fcd dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xdf73c9f4 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe603dc5e dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xedf1cd2a dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xf37ea692 dw_spi_suspend_host drivers/spi/spi-dw +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9d8a8803 efi_embedded_fw_list vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x9dd8d0e2 efi_embedded_fw_checked vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x0179555f usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x01fd0eb8 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x19d2c8eb 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 0x3734642c usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3b7f6afb usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4dae5580 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5a3eebdf usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6528543c usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6a50ad62 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x78a91bb1 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x873532df usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8742c3fc usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x88f52cbe usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8907c576 usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x8a804242 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xa7e35f1d usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb754a0e1 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc24b9dfe usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe65c7012 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xea943d2b usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeeb8942e usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf0cdd912 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfbf77471 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xfcf5b82a usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage diff --git a/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.compiler b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.modules b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.modules new file mode 100644 index 000000000000..e25033c91285 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.modules @@ -0,0 +1,6180 @@ +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 +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +ak8974 +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 +amc6821 +amd +amd-pmc +amd-rng +amd-uncore +amd-xgbe +amd5536udc_pci +amd64_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amd_hsmp +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 +amt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-ec-sensors +asus-laptop +asus-nb-wmi +asus-tf103c-dock +asus-wireless +asus-wmi +asus_atk0110 +asus_wmi_sensors +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 +ax88796c +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 +barco-p50-gpio +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 +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 +btmtk +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_acpi +chromeos_laptop +chromeos_privacy_screen +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-tps68470 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +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_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 +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 +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ct82c710 +ctucanfd +ctucanfd_pci +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +ddbridge-dummy-fe +de2104x +decnet +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 +delta-ahe50dc-fan +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 +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_buddy +drm_cma_helper +drm_display_helper +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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_secret +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 +eni_vdpa +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +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 +fsa4480 +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 +funcore +funeth +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +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-sim +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tps68470 +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_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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hisi-spmi-controller +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wmi +hp03 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +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-ccgx-ucsi +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-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-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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 +ina238 +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-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-uncore-frequency-common +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_chtdc_ti_pwrbtn +intel_chtwc_int33fe +intel_crystal_cove_charger +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_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_sdsi +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_vsec +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 +ip5xxx_power +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 +iqs7222 +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 +ishtp_eclite +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-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-pwm-multicolor +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 +lenovo-yogabook-wmi +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 +lightning +line-display +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +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 +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 +ltc2688 +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 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max77826-regulator +max77976_charger +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-serial +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-gsc +mei-me +mei-txe +mei_hdcp +mei_phy +mei_pxp +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_ep +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-vfio-pci +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxreg-lc +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 +mp5023 +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 +mse102x +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 +mt7921-common +mt7921e +mt7921s +mt7921u +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 +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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_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 +nvsw-sn2201 +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +octeon_ep +of_mmc_spi +of_xilinx_wdt +ofb +og01a1b +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 +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-mipi-dbi +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 +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pfr_telemetry +pfr_update +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 +plfxlc +pli1209bc +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 +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 +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 +rpmsg_char +rpmsg_core +rpmsg_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +scd4x +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 +sensehat-joystick +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 +sev-guest +sf-pdma +sfc +sfc-falcon +sfc-siena +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 +simatic-ipc +simatic-ipc-leds +simatic-ipc-wdt +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3-avx-x86_64 +sm3_generic +sm4 +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-acp-config +snd-acp-i2s +snd-acp-legacy-mach +snd-acp-mach +snd-acp-pci +snd-acp-pcm +snd-acp-pdm +snd-acp-renoir +snd-acp-sof-mach +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-cs-dsp-ctls +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-pci-ps +snd-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-ps-pdm-dma +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-acp5x-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-ak4375 +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-avs +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cirrus-common +snd-soc-intel-sof-maxim-common +snd-soc-intel-sof-realtek-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-macro-common +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-ps-mach +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt1011 +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1019 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +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-ssp-amp +snd-soc-sof_cs42l42 +snd-soc-sof_da7219_max98373 +snd-soc-sof_es8336 +snd-soc-sof_nau8825 +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-tas5805m +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-amd-acp +snd-sof-amd-renoir +snd-sof-intel-atom +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-pci +snd-sof-pci-intel-apl +snd-sof-pci-intel-cnl +snd-sof-pci-intel-icl +snd-sof-pci-intel-mtl +snd-sof-pci-intel-tgl +snd-sof-pci-intel-tng +snd-sof-probes +snd-sof-utils +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-intel +spi-intel-pci +spi-intel-platform +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-rockchip +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3-wmi +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tdx-guest +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_div64 +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-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +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 +tmp464 +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_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 +tps68470-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +typec_wcove +typhoon +u132-hcd +uPD60620 +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 +ug3105_battery +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 +vf610_dac +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 +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 +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 +vmgenid +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 +winmate-fm07-keys +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 +wusb3801 +wwan_hwsim +x25 +x38_edac +x86-android-tablets +x86_pkg_temp_thermal +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +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 +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 +zr364xx +zram +zstd +zunicode +zzstd diff --git a/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.retpoline b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.retpoline new file mode 100644 index 000000000000..945dc3fef780 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia-lowlatency.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.nvidia-5.19/abi/amd64/nvidia.compiler b/debian.nvidia-5.19/abi/amd64/nvidia.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.nvidia-5.19/abi/amd64/nvidia.modules b/debian.nvidia-5.19/abi/amd64/nvidia.modules new file mode 100644 index 000000000000..f755dc0dc1d1 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia.modules @@ -0,0 +1,6181 @@ +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 +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +ak8974 +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 +amc6821 +amd +amd-pmc +amd-rng +amd-uncore +amd-xgbe +amd5536udc_pci +amd64_edac +amd76xrom +amd8111e +amd_freq_sensitivity +amd_hsmp +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 +amt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +asus-ec-sensors +asus-laptop +asus-nb-wmi +asus-tf103c-dock +asus-wireless +asus-wmi +asus_atk0110 +asus_wmi_sensors +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 +ax88796c +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 +barco-p50-gpio +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 +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 +btmtk +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_acpi +chromeos_laptop +chromeos_privacy_screen +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-tps68470 +clk-twl6040 +clk-wm831x +cls_basic +cls_bpf +cls_cgroup +cls_flow +cls_flower +cls_fw +cls_matchall +cls_route +cls_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +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 +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 +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ct82c710 +ctucanfd +ctucanfd_pci +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dcdbas +ddbridge +ddbridge-dummy-fe +de2104x +decnet +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 +delta-ahe50dc-fan +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 +dmard06 +dmard09 +dmard10 +dme1737 +dmfe +dmi-sysfs +dmm32at +dmx3191d +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpot-dac +dps310 +dps920ab +dpt_i2o +dptf_pch_fivr +dptf_power +drbd +drivetemp +drm +drm_buddy +drm_cma_helper +drm_display_helper +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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_secret +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 +eni_vdpa +enic +epat +epia +epic100 +eql +erofs +esas2r +esb2rom +esd_usb2 +esp4 +esp4_offload +esp6 +esp6_offload +esp_scsi +essiv +et1011c +et131x +et8ek8 +etas_es58x +ethoc +eurotechwdt +evbug +exc3000 +exfat +extcon-adc-jack +extcon-axp288 +extcon-fsa9480 +extcon-gpio +extcon-intel-cht-wc +extcon-intel-int3496 +extcon-intel-mrfld +extcon-max14577 +extcon-max3355 +extcon-max77693 +extcon-max77843 +extcon-max8997 +extcon-palmas +extcon-ptn5150 +extcon-rt8973a +extcon-sm5502 +extcon-usb-gpio +extcon-usbc-cros-ec +extcon-usbc-tusb320 +ezusb +f2fs +f71805f +f71808e_wdt +f71882fg +f75375s +f81232 +f81534 +f81601 +failover +fakelb +fam15h_power +fan53555 +farsync +faulty +fb_agm1264k-fl +fb_bd663474 +fb_ddc +fb_hx8340bn +fb_hx8347d +fb_hx8353d +fb_hx8357d +fb_ili9163 +fb_ili9320 +fb_ili9325 +fb_ili9340 +fb_ili9341 +fb_ili9481 +fb_ili9486 +fb_pcd8544 +fb_ra8875 +fb_s6d02a1 +fb_s6d1121 +fb_seps525 +fb_sh1106 +fb_ssd1289 +fb_ssd1305 +fb_ssd1306 +fb_ssd1325 +fb_ssd1331 +fb_ssd1351 +fb_st7735r +fb_st7789v +fb_sys_fops +fb_tinylcd +fb_tls8204 +fb_uc1611 +fb_uc1701 +fb_upd161704 +fbtft +fc0011 +fc0012 +fc0013 +fc2580 +fcoe +fcrypt +fdomain +fdomain_cs +fdomain_pci +fdp +fdp_i2c +fealnx +ff-memless +fieldbus_dev +fintek-cir +firedtv +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 +fsa4480 +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 +funcore +funeth +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-gpio-mm +gpio-ich +gpio-it87 +gpio-janz-ttl +gpio-kempld +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-sim +gpio-siox +gpio-tpic2810 +gpio-tps65086 +gpio-tps65912 +gpio-tps68470 +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_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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hisi-spmi-controller +hmc425a +hmc5843_core +hmc5843_i2c +hmc5843_spi +hmc6352 +hopper +horus3a +hostap +hostap_cs +hostap_pci +hostap_plx +hp-wmi +hp03 +hp206c +hp_accel +hpfs +hpilo +hpsa +hptiop +hpwdt +hsi +hsi_char +hso +hsr +ht16k33 +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-ccgx-ucsi +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-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-mux +iio-rescale +iio-trig-hrtimer +iio-trig-interrupt +iio-trig-loop +iio-trig-sysfs +iio_dummy +iio_hwmon +ila +ili210x +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +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 +ina238 +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-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-uncore-frequency-common +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_chtdc_ti_pwrbtn +intel_chtwc_int33fe +intel_crystal_cove_charger +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_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_sdsi +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_vsec +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 +ip5xxx_power +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 +iqs7222 +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 +ishtp_eclite +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-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-pwm-multicolor +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 +lenovo-yogabook-wmi +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 +lightning +line-display +lineage-pem +linear +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +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 +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 +ltc2688 +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 +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +max6621 +max6639 +max6642 +max6650 +max6697 +max6875 +max7359_keypad +max77693-haptic +max77693-regulator +max77693_charger +max77826-regulator +max77976_charger +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-serial +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-gsc +mei-me +mei-txe +mei_hdcp +mei_phy +mei_pxp +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_ep +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-vfio-pci +mlx5_core +mlx5_ib +mlx5_vdpa +mlx90614 +mlx90632 +mlx_wdt +mlxfw +mlxreg-fan +mlxreg-hotplug +mlxreg-io +mlxreg-lc +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 +mp5023 +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 +mse102x +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 +mt7921-common +mt7921e +mt7921s +mt7921u +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 +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +nvsw-sn2201 +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocrdma +octeon_ep +of_mmc_spi +of_xilinx_wdt +ofb +og01a1b +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 +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-mipi-dbi +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 +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pfr_telemetry +pfr_update +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 +plfxlc +pli1209bc +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 +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 +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 +rpmsg_char +rpmsg_core +rpmsg_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +scd4x +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 +sensehat-joystick +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 +sev-guest +sf-pdma +sfc +sfc-falcon +sfc-siena +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 +simatic-ipc +simatic-ipc-leds +simatic-ipc-wdt +simple-mfd-i2c +simpledrm +simplefb +siox-bus-gpio +siox-core +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 +sm3-avx-x86_64 +sm3_generic +sm4 +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-acp-config +snd-acp-i2s +snd-acp-legacy-mach +snd-acp-mach +snd-acp-pci +snd-acp-pcm +snd-acp-pdm +snd-acp-renoir +snd-acp-sof-mach +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-cs-dsp-ctls +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-pci-ps +snd-pcm +snd-pcm-dmaengine +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-ps-pdm-dma +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-acp5x-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-ak4375 +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-avs +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cirrus-common +snd-soc-intel-sof-maxim-common +snd-soc-intel-sof-realtek-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-macro-common +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-ps-mach +snd-soc-rk3328 +snd-soc-rl6231 +snd-soc-rl6347a +snd-soc-rt1011 +snd-soc-rt1015 +snd-soc-rt1015p +snd-soc-rt1019 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +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-ssp-amp +snd-soc-sof_cs42l42 +snd-soc-sof_da7219_max98373 +snd-soc-sof_es8336 +snd-soc-sof_nau8825 +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-tas5805m +snd-soc-tas6424 +snd-soc-tda7419 +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-amd-acp +snd-sof-amd-renoir +snd-sof-intel-atom +snd-sof-intel-hda +snd-sof-intel-hda-common +snd-sof-pci +snd-sof-pci-intel-apl +snd-sof-pci-intel-cnl +snd-sof-pci-intel-icl +snd-sof-pci-intel-mtl +snd-sof-pci-intel-tgl +snd-sof-pci-intel-tng +snd-sof-probes +snd-sof-utils +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-intel +spi-intel-pci +spi-intel-platform +spi-lantiq-ssc +spi-lm70llp +spi-loopback-test +spi-mux +spi-mxic +spi-nor +spi-nxp-fspi +spi-oc-tiny +spi-pxa2xx-pci +spi-pxa2xx-platform +spi-rockchip +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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 +sunrise_co2 +sunrpc +sur40 +surface3-wmi +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tdx-guest +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-ads124s08 +ti-ads131e08 +ti-ads7950 +ti-ads8344 +ti-ads8688 +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 +tmp464 +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_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 +tps68470-regulator +tqmx86 +tqmx86_wdt +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +typec_wcove +typhoon +u132-hcd +uPD60620 +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 +ug3105_battery +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 +vf610_dac +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 +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 +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 +vmgenid +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 +winmate-fm07-keys +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 +wusb3801 +wwan_hwsim +x25 +x38_edac +x86-android-tablets +x86_pkg_temp_thermal +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +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 +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 +zr364xx +zram +zstd +zunicode +zzstd diff --git a/debian.nvidia-5.19/abi/amd64/nvidia.retpoline b/debian.nvidia-5.19/abi/amd64/nvidia.retpoline new file mode 100644 index 000000000000..945dc3fef780 --- /dev/null +++ b/debian.nvidia-5.19/abi/amd64/nvidia.retpoline @@ -0,0 +1 @@ +# retpoline v1.0 diff --git a/debian.nvidia-5.19/abi/arm64/nvidia b/debian.nvidia-5.19/abi/arm64/nvidia new file mode 100644 index 000000000000..234248a4bad8 --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia @@ -0,0 +1,27410 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1ae7bf58 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3a80c342 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3de51280 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x06753eb2 cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x06bd1ed1 cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0a21fba4 devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x0d32da74 cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x21ce79fc __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x22b0aae0 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x35c572ca cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3724f9cb is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x38994018 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3a8e38b4 cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x3b0fb131 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4dbaf2f5 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4ec7d177 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x65d3c512 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6837ab1d is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ac59328 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6ca423af cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6d7af05b cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x71dbc8ba is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x79756153 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7b70dc28 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x838d4b5d devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x84edc4b1 cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x88e89458 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x89de5b94 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x941d2e5f to_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x9ddb1597 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa02b3dd3 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa2fe76ef to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xab2fe3bb cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xac4ab289 schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xae5461ca cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xaf552847 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb0ec32a7 devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb2c2d847 devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb4104de8 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb47285c5 find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xbbb66774 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc041042a devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc0bb24ec cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc2fc16ef devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc8740481 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xce4a9c85 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd2f15636 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd4c9529a cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xddbde8cb cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe80a5e58 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf6c33be6 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfcb47ade devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfcef072a cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfd383f0f cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0d334c2b dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x11e864ce dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x1232a7ac dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x35a0d15c dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x456ad8b1 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x49e4dfb9 dma_buf_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4d60496d dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x4e99f158 dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x576d7ea3 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x630a1657 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x7262453a dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x77a15241 dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x98d3851e dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xbb063642 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc50b09a9 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd4c113ac dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe047da4e dma_buf_export vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x773a2d37 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +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 0xdb786e41 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x24191825 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x321c6104 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x3f3b9e10 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9159c72c crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd44d1470 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xf991fc2a crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x7cb4fc99 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xa0d48762 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xfa035299 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0xb9e3b993 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0xb29f7bea suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x56be85b3 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf5b9e3a8 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 0x00604c76 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x009de1ad pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x07940f3c pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1fca7075 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x2b1891cd paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3f8441e3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4f82f7be pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x71f98774 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7400dd3b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x78f32118 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9798958a paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe7d46caf pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x763415e4 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0x4f6fea11 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xf0d62e42 mhi_sync_power_up +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x03bc993e ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0705dd14 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4403c850 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 0x74778a80 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7c8f00b5 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x80aa4656 ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x89a5279a ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcf497735 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xde29bd20 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 0xe98c507d ipmb_checksum +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 0x0457d328 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8f8b0677 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x949965fb st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa28428db st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x228dbe5d xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8d2a01b7 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa45d83ef xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbaf8b7ba xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xef69ad00 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xf82643e5 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 0x0d92a37e atmel_i2c_probe +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x321be2ad atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x80a11b1d atmel_i2c_init_read_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xadffdb72 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc71ed50c atmel_i2c_init_genkey_cmd +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0xc80f14e8 atmel_i2c_flush_queue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 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 0x2157696a caam_qi_enqueue +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 0xa06be799 caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0xad485c27 caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xdf72c7a8 caam_drv_ctx_update +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x3740dfa9 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7efaa204 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x80542368 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xbab2535a gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf0c27e54 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 0x3e884be0 dpaa2_caam_enqueue +EXPORT_SYMBOL drivers/crypto/caam/error 0x53d0fc97 caam_ptr_sz +EXPORT_SYMBOL drivers/crypto/caam/error 0x7a38d43d 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 0x33affc21 xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0cefe778 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0cf460b7 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0e0aa0fd fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0e12e5d2 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18aee7f8 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2a82508c fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2da26a1e fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a771e39 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b735b0d fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a07d424 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b3a0135 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83c3fdd4 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90292520 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9228a3aa fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9a7342d8 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9af26423 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa2d8c7a4 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa994d878 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadbdab73 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb148f8ff fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcfb6917 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc092bf58 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc17eded9 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc32998f3 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe3fde125 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe430d0ba fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe49ad9f8 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe80e5087 fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xee9fa16f fw_iso_context_queue +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 0x51ebdd42 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6af78dda imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xc7e223de imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x15331608 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xb3bf1e42 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06b2d570 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x07b5514d drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x08415c43 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0baa0ef6 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x11c47bc6 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1524a61b drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x157fa608 drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x186a3212 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x19a99c1b drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a987448 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1fd581ee drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21440ee4 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x21e21544 drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x220c7a7c drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2252b34f drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x241285fa drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x251c1832 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29d6b7e5 drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29f9c413 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2bc51d73 drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ca2ffb7 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e7b13a2 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ec103ff drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fdd2354 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3276942b drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x381221e4 drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x395419b3 drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3b3fab68 drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3d1c19b8 drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3f08f3a7 drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x43eb7bf8 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x456544cb drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x48feee02 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x493a4313 drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4aeda67b drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4c11b31d drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4eacdfd7 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x51af99f2 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x560053d5 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x57f91a00 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5855e920 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x631b2f58 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6350b6d3 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6369a404 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6689470f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67f5cd6d drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a9cc6bc drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7250f25d drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x735cbc88 drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73f391dc drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x759a36c3 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76fa12a3 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x77b399c5 drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x781f517f drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7d32705c drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x821dcb11 drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8240e454 drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x82bfedf1 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8365da27 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x87e8af0b drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8a41f141 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e560576 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x90e00e4f drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x94553e45 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x994f7769 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x998e3603 drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9abcb661 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9b44d406 drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9baa6c07 drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9db15ab7 drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9de5bd2d drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa0394450 drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa23a821c drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa2f83769 drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa7b9ff19 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa8fba032 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa95d3ca8 drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa98ff45e drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad91ae75 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xae73f50e drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb10c5a2e drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb9a92a01 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbbd1f05e drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc13ed498 drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc2af317f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcb840ed4 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcba97139 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcc8775b3 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xcf1dc197 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd26f0f5a drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd49edfda drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd60809c1 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd7b073e0 drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd812de8e drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd993663e drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdb9d0c28 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdd723eb4 drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde77ae8c drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe1357cd1 drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedb87e67 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeed8b758 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xef889d45 drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xefcd67cc drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xefe8d1dd drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0bc518f drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf4272109 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf6fd2184 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf7ba6516 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0006615d drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00b3bb9d drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x018ce804 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0192d442 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b87efe drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d0d044 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028858ca drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d81eaf drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e1f552 drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0411834f drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x047c959f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05873b24 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05c24cfa drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072399a6 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07bd9476 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07d87a95 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c8fa52d drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d4676b3 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d97e560 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9d99c6 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ec2841a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f09cabc drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7acb66 drm_mm_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f7ef05d drm_bridge_attach +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 0x119db83a drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11eee872 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c65eff drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12ff2a16 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d84dd0 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14cf63ee drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15777a78 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15a37551 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17753115 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c018e4 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a7f786 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f591d4 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19df6d58 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b767823 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c6b38f3 drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e646312 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6c794c drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee6d2d6 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f26500d drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f96537d drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb948a2 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x201ea255 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20209196 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x213a2dbb drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21989b86 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x225040e6 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22c5a904 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23129815 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237e69fa drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f0eae7 drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23f5a63e 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 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x265a5673 drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2744a9a3 drm_vblank_work_init +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 0x28cf996c drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28d702fa drm_privacy_screen_unregister +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 0x2bc7c6af drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2be5bbe3 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c813126 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2da34737 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e6b9db0 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fd998ef drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30582fa9 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30628ade drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x307d42b2 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30e5b55b drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x315e0d1b drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31932ec3 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31dc1131 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32142e22 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32dc92c6 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36fda77e drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37d2545f drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x380bda03 drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39688dac drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39c4d17c drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a27a542 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a59a41f drm_syncobj_add_point +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 0x3c10ae4b __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cfb8937 drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ebeea9f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ffdb293 drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405a46b4 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x409c6c1c drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4122113d drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a3803d drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c168db drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440e577a drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x450d373c drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4514c7b9 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45608ffc drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x459b9917 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45fe0c10 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4607ef58 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x463609b3 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4642c163 __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470d1f37 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d43df5 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a0dbc1 drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49a7af3e drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a60cf6c drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cf0a70e drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d847dc4 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd277be drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df7e004 drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e235a86 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e4b99a0 drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea032f4 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4eccbb1f drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ef1776a drm_gem_object_release +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 0x51028b81 drm_bridge_chain_disable +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 0x5392a12b drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53d964e5 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542f8147 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x544ef62a drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x548b44f8 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x562882cd drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56481512 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e6fe32 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56eeae86 devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57171b9b drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x573450f3 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x573cb1ac drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578f8eaa drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57eb8da1 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5886a0e4 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58d22c4f drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593d78de drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596a038e drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a571033 drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a6f5121 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab1245f drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b7320a2 drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e15f904 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e72b1dc drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f913061 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fcfa51f drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60c13e90 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61aff8a6 drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f27f33 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6201c265 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64a8b166 drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6592895c drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a5f9a9 drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a8b3b1 drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67c94dc3 drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67f91225 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692778d2 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b5cfbc9 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b9f7330 drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb2099b drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bbafbc9 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d8dbc2a drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dec2a4c drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e3da5ed drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed4734f drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x702f6694 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70941ef0 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72288d62 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72d06b10 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x759aedff drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cb74af drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d4e941 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7909b249 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79c9effc drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79ccb84a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b8d8603 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d27a3b0 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7da8eeef drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e390a1f drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e464700 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e54f199 drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee61a99 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f6ce270 drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f97a21d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fbcd371 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801711b0 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8040a61c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80729934 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80bf54b5 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80f17b9b drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8219c875 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f94b51 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83c712d1 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8447ff2f drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a01411 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8690409f drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87a7f2a4 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88768f9e drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fc72cb drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a3fc064 drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8affa550 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c71e6ff drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d172738 drm_atomic_get_new_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3dbdd2 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d54fe4e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d972174 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d97c42c drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8debc744 drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fb9bbb8 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff7aaf8 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91041a2d drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x917eb61b drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93861929 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9416aeb6 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94e0c4b6 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9522dfe0 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95953cd4 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e34d48 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96422ed7 drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96ba2bb2 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9981cccf drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9adfe505 drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b0eb027 drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8ed2e8 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d048ada drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e6da024 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2fdd463 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa559fc1a drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa55a5676 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a97fe9 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ee5065 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a0f90c drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a0d086 drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e31cd8 drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8046368 drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8048bbb drm_mode_validate_ycbcr420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8276d98 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8eb8718 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa96accab drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa982f776 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0c80e6 drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6eacfc drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa94ca3f drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaad9b48f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab1cd3e1 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6db694 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8f01b9 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3ed3c6 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad9780eb drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf8f312e drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf9b8fcb drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0cc274e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb11ac7a7 __drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2126bff drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb22dfd68 drm_format_info_min_pitch +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2798cc9 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32ccf90 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb33d5a6f drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3af30d1 drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb49e1be0 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5157f19 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e3c636 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb672193e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7b3d45e drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7c8bc48 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93059ec drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb95f1e8d drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cd2d30 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbabbb283 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb020826 drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb425e0b drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbfc514 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc2aef7a drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc71d5c1 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc89ed52 drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdba8342 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeb49cf4 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf6a7342 drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfd92c9c drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfdec847 drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbffe71db drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e819f8 drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1693860 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ffdfcd drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32e7142 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc39ed66d drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d42abf drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ea54a3 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc48f90e4 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d1f1d4 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc62dd287 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc65e5400 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6a2d747 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6dd3d08 drm_connector_list_iter_end +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 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8747283 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc90923a5 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb376e3 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3c6249 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0da86c drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfeba2b1 drm_file_get_master +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 0xd14a7c3a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd14c3f10 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c32b0f __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3192d80 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd344f688 drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a6a850 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52c74f0 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5574fcd drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a50e98 drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c7e201 drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd637804e drm_gem_dmabuf_release +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 0xd815ee13 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b5c928 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9a872d4 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb713039 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc5b142 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc22697e drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc53eec2 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7b66e8 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddfd5258 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2a8bd7 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeb65290 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdeccd183 drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf60256c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe03a0bbb drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a78fc4 drm_crtc_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe113a025 drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13cd723 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe17133cc drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1dbff2f drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe30af850 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3764a12 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3baac88 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3bb44e3 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3f35835 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4e44932 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe54d5d61 drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5be7130 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe787dab7 drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82cf6ed drm_bridge_remove +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 0xe8cd89c5 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e5cad1 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe95d88d3 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9f5d66c drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecc1fc97 drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed09e4f5 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb41e20 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe48836 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00673ba drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf00d5493 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02101dc __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf02a79be drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0616fe5 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0be25b8 drm_crtc_accurate_vblank_count +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 0xf1d01e07 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2539ceb drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf359ea29 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41435e6 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4556496 drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5fa442b drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf93f7c11 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9cf203f drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa541a3f drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa7922a1 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb133f91 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfba18908 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd86521 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd1cb80d drmm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd23dcec __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe7d4431 drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff33161c drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff7636be drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x031b9254 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x1d4b3e59 drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02588d5b drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04248576 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05aa66d2 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07202d89 drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07c3b62a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09a075b3 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b158297 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cd4131c drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d1df818 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ef51276 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f23a002 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f59f93c __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13264906 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x133b5301 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x134f3b2b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17ab270c drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17b861ec drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a0d709d drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1aa457dc drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e6631cb drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fd75731 drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22747fb6 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c178c2 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x242561e6 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x249a19de drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25ddb8a8 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x268799d0 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28f8af29 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29cf8f3d drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b8425b6 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30396958 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x307d93ac drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x308086c6 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30a5a207 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30d0700b drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31eec667 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x327df66d drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36cc00d6 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3748dd50 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38099bfb drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x381a678e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38d64e69 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ddc6ee drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39ae3f44 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c61f01a drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3eef1430 drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f2aced0 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40b6156e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x414b79b9 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4531cb14 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46d724b9 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47a46a7e drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c67a9c drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ad29d9a drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4be5203e drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c0ce734 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4de1bc9d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4df7044f drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512570a5 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51cce9d4 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56a6199d drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5770ee52 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x586718da __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59c430a5 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59eb3bf2 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c05f941 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6664fd drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e855bf0 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x668fa9c8 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67a53e8d drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a2af940 drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b33eaa6 __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d4df580 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e0628ed drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e407547 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ef85b03 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f71e575 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7148089c drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719d4bef drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73754d48 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73c9c85a __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73d0d02e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7599b0e8 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75dce8cd drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7695c274 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77144917 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78257114 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7844e0ad __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x789dacd6 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a37705a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b1e7561 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce5481b drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d3aba67 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e3dd1a4 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e525755 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b9f024 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86878669 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86a88d79 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x879ac34f __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a75d1ae devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9283c3d4 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x930bb5f8 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94d82a8c drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0b6380 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d9742c2 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db3bfbe drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eea8645 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f1cd507 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f7d2bcb drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11fd039 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1aa1e2a drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1efe23c drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2185fbc drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4da96b8 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa57044fa drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa59c82fa __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6896f88 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b26100 drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7113b0f drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9f114cd __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaa88130 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaade6c69 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab65a35b drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf8917f drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb083e5be drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1161530 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d08c7c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb340ad86 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb387de94 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a27156 drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb696f409 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7ae9388 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9ee985f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbbba434 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf94a8d9 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf9be46f drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbd9de6 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfbf6a15 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc02dc0a8 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc111943f drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1cb410c drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc211dce9 drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc29a276c drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2eb7bd7 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc48b727b drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc595ec93 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6de42c9 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7233146 drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc76d928d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc835b9b9 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e063d2 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca0da6c3 drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc5ba6db drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd85fcf0 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf154576 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd037d43f drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0581151 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd222014c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd25cb207 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3dd25df drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd483fb76 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6247794 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd689eec0 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdaaaa789 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde760ffa drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3a009b1 drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe649bd88 drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9508cd1 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed2caea3 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee6c677e drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef23122a __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef5ee88f drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeff73318 drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf095ea31 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0fd1cc2 drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6e428cc drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf763ff74 drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82b1650 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9d35eeb drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa90426d drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc210643 drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfca0888c drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd72bb96 drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffcee220 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x02a1a142 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x05603b5e mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x1989ccb8 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x22b89725 mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x4e968edb mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x569d9fc2 mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6310d2e8 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x6f0e9e7f mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x74a31d17 mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x86881ce6 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x86f730ce mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x9278e2c3 mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa71a2486 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xadb5ea70 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcd6906a6 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe4ea20a9 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe516f90f mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x20988e63 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x55c0ea49 drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5917b438 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x82fc0722 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x86727144 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x95282792 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xa9f285dd drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xabbfe08b drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xea7dabdb drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xfffcea2b drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x22c00b97 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x4e0daf34 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x92ba8fa3 drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x949d9b24 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xc1f4d7e5 drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2c6ece17 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x2d579b54 drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3074dacf drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x3b62c9fc drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6f673a38 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7f5a44e9 drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x813eb6be drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xb1aee917 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xc148861a drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xcb36879c drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd370acab drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xd78d7cb7 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe09939eb drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe352b4f2 drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xe7478a91 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xf71d342d drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0x9e30c7f8 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0ad0bf2c drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x0e2fcbc6 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x16d17af9 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x17a8d5b8 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2319841b drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x272856fb drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3827a9b2 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3dd28662 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3f1f0a76 drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4ed1434f drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4efc0f18 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x56e71b32 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5c5e8754 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x5e9d3588 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6a7f8862 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x773310c9 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b333878 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7e62b0d0 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88693467 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88b70ceb drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x93cf96e1 drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x9cdcf2db drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa170462c drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xbc9ce1ec drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb0d5dc7 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdf42cbfe drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe55f01b6 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x2326454c sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x521451be sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x76b4f215 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x7bd727cd sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x96413fdb sunxi_bt601_yuv2rgb_coef +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x9b9cbe45 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xa1090131 sun4i_frontend_init +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-tcon 0x25e142fc sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x267aa23c sun4i_tcon_enable_vblank +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3dd72aa7 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3e2c13ba sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x40bc4020 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x870a8a94 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0x350e5dcd sun8i_tcon_top_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xd25ea6a3 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xd62ffb74 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0697f1d1 ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x092c19ef ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b22528c ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b8169c1 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c790521 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ebdeb13 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18b5456e ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18f49cd5 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bd025c0 ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d421593 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x244440aa ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2930d76d ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7b10ef ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ff73959 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x337537d0 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3572f174 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a0ad887 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a20dc88 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x45d7bf7a ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2edec6 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x524a7578 ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x542105d0 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c8f8638 ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5d815475 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ffaba2e ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x693afa2c ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x69f6be7b ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f0c5714 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70150fef ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x707e7706 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x715cfc3b ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x72d6e9ca ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x785c42d9 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x804d0506 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82ff53c5 ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x884035bb ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8c7b0f52 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x931bb82e ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9f23a398 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa7390c57 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac708c50 ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5480983 ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb601943b ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc25dda4 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc0df83ba ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc34d4ba1 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6885f9f ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9727945 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca7413ca ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd064eb97 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0d8a58d ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3658dee ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd52fc5cd ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd88d2921 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb91427b ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf504dcac ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf80c982f ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfac083cd ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe6a75f1 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff3f64eb ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0242b227 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x02a7da0a __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x048fa9ce host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0c9782c6 host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x10293175 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1be3ed13 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2e8977c2 host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x492fbf28 host1x_device_exit +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 0x575ad4e8 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x613e1c84 host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6ce68789 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x70be122f host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x76cf1bd4 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7725b05c host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7a1b7178 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8110a4c9 host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x82985fd1 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x84d9f784 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8be6727c host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x93a1437d host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x99b3d80e host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e29fc79 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa8e1a24d host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xafdcab44 host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb20f01b6 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb341f0b9 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc1c48738 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc665c37c host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xceef319d host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1613ada host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1632e8b host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd1d76da0 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd41df4c9 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd4848428 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xdec250e8 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe6a7738c host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xedca111a host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf24e3a6e host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf4164461 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf4e50b4d host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xffad0d16 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/hid/hid 0x47f4ffec hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa936636f vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xc32b73b7 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe688fc4d 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 0x2374022e 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 0x01166377 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x2543a0d3 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc989d3b9 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x46d31beb i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xb8e78555 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xadb78134 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0xb948415d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbcec5d74 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3e5d6b68 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9f2b8542 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x4d0dcc24 mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x81f5a2c9 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x857135a1 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x4d8af8ca hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x726e877b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xdc588e1e bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x7bab6050 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xbe1f20e2 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0xd5862c8b st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x050cf347 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x072cfe52 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x14d8887e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x281d362f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2ba613cb iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2ef215dd iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x3d23687d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x439001e1 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x490a4aeb iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x50bfb107 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x60b2fa9e iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8dcf25df iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x8f43b1d7 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9413658a iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa235fb02 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xb50601bc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xb6dae513 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xd3248eb8 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xd418fdd4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdac70d6f iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe151d467 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xea203f7f iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xef2fcd2d iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x158cf8c7 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x56bdada9 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x64d751df iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xdcd95c6e iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xeb09cdbe iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x49c5d13c iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x648be5bc iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x65a93b7e iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf97ea085 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdd744397 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdf7a81a8 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x03f58472 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x17b018d7 bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe498d00c bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe9735910 bmp180_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1abec2d2 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1c70584b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x48a607e8 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7fe06b75 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f4d11b8 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x98f8a96c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6adbb8a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xad8574e7 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb41b2ac8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc564d1c1 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcaf17fc9 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd270ec50 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe05c7c30 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xec9b5c5d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf0663efe ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x031dc35d rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05760575 rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06200343 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0743e353 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x081242b7 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b9e9c6d ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fbcbc22 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13cde3b0 ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1437cfb5 __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x147839da ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14eff381 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16386b07 rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1793ba27 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b94fccc ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1de8b755 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20295421 rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20b84be2 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21af61da ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x230bb733 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d2df75 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2547e5d4 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x261b2323 ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26ba9b94 rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x278be23d ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27b19f67 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2874c68d ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x297fa33b rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a7e5f22 ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af2bb4e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bb93a1c rdma_nl_unicast_wait +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb76e92 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ebd063f rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f0759c7 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f548c29 ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fc55e27 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x303bfbbf rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33e1e815 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34206d7e ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x344e3681 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x366736fe ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a30ff8 ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36edb4e2 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x374da295 rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38505c45 ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3905796c ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3955f850 ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b09769c rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b4d4f61 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e9c6a5b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fab39f9 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x412a0deb rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e452c1 ib_attach_mcast +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 0x47b18072 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47cb81c5 ib_destroy_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x499a6841 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a2b84c7 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a9d8bb4 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc8973f ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dbd5478 ib_unregister_device_and_put +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 0x4f9c5ec7 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ff3e8ed ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x511e23f3 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53e5e2b8 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54347048 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55dbd04a ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a106bc __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59cf50ad rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ad716e1 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60ba36cc rdma_find_gid +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 0x66c681a8 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66e7e5f8 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x673f7e27 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x692f6f53 rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69bf5bb5 rdma_restrack_add +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d223bde ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7093710e rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70e5fedd ib_cq_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x730e598b ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75131a46 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75a729a0 rdma_nl_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x763bb93c rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x76f4f6fd ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7742c627 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77cbf8c0 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77d14fa9 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x787ccc4c ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c7f53d5 __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c920b74 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81e450dd rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8292d8b2 roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85971220 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x865c1726 ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d27d25 ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0ffb7f ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bbea54f rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c94d5a1 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d36fc47 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e0a5faa rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e5827dd rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8eabe7ff rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x901a5b96 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x919836b6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92127309 ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x945aa92c ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c64a46 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x983f648a rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98e6c6c7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9dc66d57 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ea7176c rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9eb54da9 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa23f4b15 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4fc808b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5c3d85d rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5d8c539 rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa640ef90 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6797ae5 ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6d6d572 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa922c64b rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0aab07 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabb8c320 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xada4a4c7 rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae907b89 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb02c5c5c ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c35414 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1f7ae20 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb320c978 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36eefb6 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb44ac249 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb677241e rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb686a17c ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb6f98ea7 rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb75d4ef9 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb989c5cc ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbecb84a ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdeb8cb1 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe465675 rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe47c6a5 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe72f706 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbea69b1d rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc07e02ba rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0a8c3ec ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc0ed5a8a rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1070bfe rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc158f2f0 ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1d23ce8 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1d45fb3 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2842247 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2b80055 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3cb8273 ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3da7568 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc50535ab rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc78f2b5a ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc9c1ac1f rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc065130 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc826a07 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcedf67f1 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2640e76 ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2e1db3f ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd56e2ab8 rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd57d3793 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5edc282 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd82c6334 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa52814 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc8d3a07 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd2fd8e4 ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde436d32 ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1609a13 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe51d4909 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe559e81a rdma_init_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 0xe68cdcf3 rdma_nl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7b52e5f mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8202963 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8823b10 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec8ee6bf rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda288ab rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef00f4d4 ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef2e0fbf ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf081a87d ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0ab4858 rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf17d9a41 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1f5035f ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2874923 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf32af1f4 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf581b23a rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c483ed ib_create_qp_kernel +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 0xf72dafbe ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa480f67 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff704f4a ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffb26a8d ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x00e75654 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0574cd9e ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0de2ee19 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x191402f9 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1a40924b ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1d8a47f4 ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1e297671 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x268adf33 uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2b4a5c19 ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2fcc946c uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x33bc2a69 uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3405a8e7 ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x38cd757e ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3a1d284f ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x431dc514 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51b49c75 ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x51bb120f uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x53f719d8 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x544d4796 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d1a989b flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x679ec5ae ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x7411d76a ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x743c8aa4 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x755cb201 uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x825f6b04 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x86c8031a ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x94a59e05 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x984b354e uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9c7977ac ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9e035b51 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xaa4d457e uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xca622cf9 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xcb51cff4 uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd101e69a _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe0a11011 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeba86686 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xeedc2cfa uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x022c2d27 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x10e29c1e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x693836c4 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x786f902d iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8edf78ca iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb40a02e5 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xea7e5037 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfeb84048 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03dfa776 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d480238 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c7f6ffe rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x20a548d9 rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x227a23f0 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x24481ca8 rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28a877b2 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2bf9388f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c2a9a22 rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3016043b rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3959af62 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3a606905 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3ef05265 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b1543e6 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b540d08 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4dbbd5ac rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58f90caa rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63b2df04 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x69bbf5e6 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6ff131aa rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x703c34e2 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7043def3 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7bf9787f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8167417a rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81d28518 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8a37d959 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e38bc0b rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5f9941e rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb189992c rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc1a5fb6 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce387ccd rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe247c155 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeac3674c rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe73796f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3da208d7 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x3ef71961 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4c568867 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x55853efc rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x7e600224 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x83a68eff rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0xde27b8ab rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x065cbf9f 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 0x29792b67 rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x41f8a2bf rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x5b01e41d sockaddr_to_str +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x887302f3 rtrs_addr_to_sockaddr +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0xa05150aa rtrs_rdma_dev_pd_init +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x63d567e3 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x934d86ad rtrs_srv_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb5b4299f rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xc8ba2929 rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd346b36b rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xd7511247 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0c392383 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70c61974 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8dedac36 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xac9ab650 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1267d1d gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbdd3adf9 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc13fbd03 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7c1eb97 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf7002eb8 gameport_close +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x88bcab09 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9d4f9d85 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa69f04b4 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xbf0a5e98 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x082453c9 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xefdb6ef4 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf2975486 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x34ecce2f 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 0x124d9817 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a3a6ce0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x647161da sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7a435249 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcfdb48c5 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd77b7b74 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5838ebaa ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa7ebed1c ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7bc66082 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc601b395 qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x153f0bbd attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f391b6c capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc895ec33 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcc29a7a9 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xef5b67a0 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 0x21379ce3 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x4d66ad70 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x7a8fca41 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb9c21e36 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xacfb0106 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xee0b91fa mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x15e616b1 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17c8d38c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x17ec7506 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x340b2b31 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3de122a0 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4f1f84de bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x627a6bfa queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6c3fedf7 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d56da87 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f47008f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8be87202 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x98ba2779 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa7a3c128 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab97b4d8 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xabae6f10 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae6abe8f mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbc869946 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbec05011 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc09a12a4 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd10dafe1 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1290388 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd27a0bd mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe040641 mISDN_initbchannel +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 0x0ddc2566 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 0xb9cd372a 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 0xae1aa726 cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2c0ed1e4 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x38ccd65b omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xb1b06efa omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x2d6b95ef dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x5249dd7c dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x5f7aae6d dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcdc42b2f dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x48a2b03a dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x564650dc dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c17188c dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x807e747b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa54badf6 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xda8305f7 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x6b1e2e51 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0xa405d5b2 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x04c9fcdb flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0e6810c1 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b0025de flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1b982ae5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x23ed26a3 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f8f6e41 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5cc1fd49 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7812e86e flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb11642fd flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc784f76d flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcdc0c1d3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xda6b0274 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe9227ffb flexcop_dump_reg +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 0x2afe2969 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x441df247 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa65d6225 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 0xf648e380 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9911485c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x693e74ba ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0xcab13080 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0dbf0296 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x94106282 tveeprom_read +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x065246b8 frame_vector_create +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1ac780ac vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1b700d37 put_vaddr_frames +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x1d5f9555 frame_vector_destroy +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0x3378aefe 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 0x0c2ae60d vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x17ddb2a0 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x3fde4511 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x6fdef869 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x98d15e9e vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x9e930db4 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 0x12d432e5 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b4d04e3 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x226e0c3d dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x244120cb dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33512c46 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x479ada9a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x54abe4ff dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5f2b1d95 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6181aec0 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x61b8c05e dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x645fcf61 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a9f708a dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6e22adb6 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7597c206 dvb_frontend_suspend +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 0x93a09806 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9969ed89 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa6bcd539 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb4ca8be5 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb887687c dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb5ac913 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdba8892 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbffd6cc3 dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcaa69017 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd0cf414a dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe78712d2 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xead2c8fd dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf38da0e5 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf629db68 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf82f6100 dvb_net_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 0xa856f98b ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x1f677b7f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f698358 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x82e3053f au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x87513eed au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x898c3241 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa6e0ee02 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xae5799b6 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc5b9b6ee au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcfd1a776 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef8c037b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x3b1c7707 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xd62da0d7 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x67ff40d2 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5ebd4bc6 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x7cef0abd cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x8d36b8aa cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xf39ab509 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x4f24939d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xdfb713a9 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x197fa107 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xd9cb1e02 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xbf3aa7d4 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2facd274 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x3c572a4e cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x7631154e cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x85c9c486 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xca4b3d8b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd454b55e dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfaf0d8c4 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xff10b39c dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x237354d1 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x32c803ed dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x37401a9e dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b3bb127 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x72c1aa32 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7a2a532c dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7b17ba85 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8012437f dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa2224517 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa77a1e20 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb0b7dad0 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb69b95fd dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc0351b31 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xecf1afb7 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf6253a7e dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x5f0ba766 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x347724bc dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3494d566 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x63725c5a dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc6afa80f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xd8b9a0ad dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfe9d358e dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x230afccc dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6ca7cbdb dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xab121aa8 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe47b3cda dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xa9fe01db dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x6f02f49c dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x0b67aa67 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1d4aa142 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x39a6e296 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x64d68c69 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x6d83165e dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x7b873593 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x8d37550c dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9c3e45aa dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9d5cc95c dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x9e19f522 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xdc6a0f5e dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf0c1119e dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf7f13ccf dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x02a9a044 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0e90e2a3 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x55eb80af dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xb40e50c7 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd61f5895 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6c24fc7e drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xe4ae5768 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x4d9015fc drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xed4b0a87 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x2c9f2da8 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x3b574f0c dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x6cb72998 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x90996b64 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xcd469b7f ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x20f55803 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x8509dcaa helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x17c49380 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x84b66de5 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf3a47064 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xd7fb9040 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x2a025e99 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x5cb0c984 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x08ab8c16 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xf4a6be27 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xb3648bfc lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7c4b8979 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa007e8fc lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0x3e075c5e lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xac629d9c lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x88bd46e8 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0x60d31cb0 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd6142eac lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xfdae2340 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x5b5c1a69 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa1a5f6b2 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xf073dd22 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2f6cda96 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xf9e0d80d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x7d1bed68 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3c18ad24 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xd4f31a5a mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xbeb4d4d3 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8533add6 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x5c07a40f or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x92833a14 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xeb9e291b s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf73718da s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x04973408 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x6d34532c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0xf9863506 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa373cb16 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5056874c si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x106b761d sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xcef84435 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x9adc0951 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x1a481847 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xe5272aaa stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x74f1c677 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xe3914c8a stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5cbc0a1c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6c4c1426 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xdd8ef071 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xeca7c212 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb4d5c9d3 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbdf5cb86 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x371f607b stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd6fca57b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xbfa06efc tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xc6974190 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x453958b1 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x7eb447c5 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xa1e9ffb5 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x7c8cad6e tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x08feb494 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xdcc001eb tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x79a47d7b tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xcf0b946e ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x081039b5 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xdf945963 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x68a4d62f ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x3c85fe7f zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xba148a2e zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xdac68b3c zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x116fc39a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xdf1f918c zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0234d7b4 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0dfe2a66 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x113c95d1 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1a3505f3 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7bfb282b flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9564bfd5 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb8c8572f flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x40aef500 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9dd510be bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xbe2efa29 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd889f8c4 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x06083b86 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x397584db bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x846e654d 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 0x17199410 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x38800f92 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3afc9e3b dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x449c3dd6 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x704f7427 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x956e66f1 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa75e32e1 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd0fbac82 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xfa55000c dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xfb522c8d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4915f826 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x87b38ee8 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xaa749005 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbad5c6d2 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfc004e76 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 0x05ed293f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1d963ffc cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x354bfe07 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86984251 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa907f0d1 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xcf5761b4 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xea2410dd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x1a60350f vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd75eae95 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x10d16c30 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x3aa376bc cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe23b2ab1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xec6137f3 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x15da9d38 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1fa90779 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2b91bd09 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4c677fbf cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x551ab620 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x75b12696 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd9421848 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1cc0aa45 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2b60e57c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x371f5a33 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3b1b103e cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x421e2c5e cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x45429696 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x51455944 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5acabb45 cx88_newstation +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 0x66bf5376 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x87a62761 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8d88137a cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x91dc7583 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93141c55 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93cd5f8a cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb119b408 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb128f6ca cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbee9e706 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc92d3e45 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7180399 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4e95fa8 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf66e623a cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x22c9c03e ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x07cb91f9 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17a28a12 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e7a12de ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35b4fb8f ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3b14000f ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49e98a1b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x51826e5e ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ef52cad ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6d651dbd ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7314c6cd ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8a309946 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb2803c0c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb3ceed95 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc6b089c7 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd686bc57 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd77b8de0 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdd6d6144 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1004548c saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x38282d0d saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b46534f saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b5aea6e saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x73bfa85f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x87b32d2f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa931aa58 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd9faba22 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdb94e682 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe06c321c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfa145074 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x24be116c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x79dfbb07 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb5626d22 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbe85bab3 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd64355c6 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdea93436 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf88cbe08 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5a0c5745 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe4df7535 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x5d346bd9 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xd042e483 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4d66d359 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x89a55354 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd90549f9 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x585e6c8b max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xb884aba2 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x2ac852b4 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x3754c0bc mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xd0201857 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x73a7ecbd mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7d364b53 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf8de04f4 tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x42942be9 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7d11a131 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x51c911cf xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb1a33477 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf3457aef cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x01477e8a dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x14e2920e dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2cb21ba5 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x47b1bb19 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5a9e1148 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xad7ee457 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xbe8f57ee dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc91f0e8f dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf54d61c8 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x08dd3e10 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x408756e0 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8b6f5395 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb2b3b5f5 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc0cb892f dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc1fbe549 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcbd4af62 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 0xee79ed4f af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1d5e655e dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x370f794a dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4930c31d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6ae0e1bb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x79ec7c75 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x93822ecb rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa3773bb5 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc0e05e4d dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5007045 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd66d1459 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x50dd5ee7 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0xc34118fd dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x807cf09d em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x85df6c6e em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x40ae4366 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x510749dc go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6bd84138 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7ea5522a go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x839ad747 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x851f399a go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb64c2ae2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc1c74945 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xef8dbd49 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x21b3911a gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x25977e7f gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x369fcbfe gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9710547d gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9fed2a61 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaa99296e gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc127a3c0 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc94cdcec gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xed9c4676 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf050cfe9 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xfa06f23d tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x897b56f8 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa2bc5732 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x2f70d515 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x73e25cf6 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x9f0c7d06 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xbac126d3 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xc44b5011 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xdcf5e712 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x15befc11 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2f7fd1d2 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x31be3d97 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 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf7df0485 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x039b11b7 v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0483ca0e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x081c8986 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +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 0x220b81dd v4l2_ctrl_handler_log_status +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 0x2af8f45f v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c8aa2fe __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30ffcf43 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312b9ba8 __v4l2_ctrl_grab +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 0x3649a16f v4l2_ctrl_new_std_menu +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 0x472a6aa2 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47424b7a video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4a2b90c4 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f3250ad v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x516ae3de v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58277eaf v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58473476 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58960c89 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cda84de v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df357b6 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e0847fe __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e0c08c5 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b9ab88c v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c36547d v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x735286a1 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x743e927c v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8326672b video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87ae6c63 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89025d6b __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ac3a42d video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9df2bfac v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fde45fa v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa52d3293 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa89f9558 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9d87632 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae9f55ef v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb31cdd60 v4l2_ctrl_new_custom +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 0xc053b200 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc50715e3 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc81efb3a v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc971e618 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd16d9c01 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd42bc2e8 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb183647 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe371df31 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3be89af v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6dc654f v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9bdeadc v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeab67894 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb3e9861 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3d791d8 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf906231d v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe37c602 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x0557e452 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x28f181e2 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3f4575de rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdbbd3cf8 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xde608e90 rpcif_sw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e309417 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1c9267dd memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3ccebf82 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4921b964 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f508091 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x916b6049 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa839f5cd memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab890f4a memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9285c2f memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbc14d1b3 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1cf82ca memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee0419d0 memstick_add_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0894c080 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10deb6e3 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x12eb5044 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1846d430 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37d6ff36 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x49d60e47 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad27296 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x54362e4d mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x563f6bad mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67db465d mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e27a335 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d98c5a6 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8de74185 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9059ba75 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x90be24df mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa07246b3 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac981f63 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7303390 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc11a615a mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc4f46d79 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd358b8a8 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd59e115a mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd98850b2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9ba52e9 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddc70644 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xea3ac911 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4a48dcc mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf82c15ce mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb6ce4fd mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x00b34b43 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x031f402d mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x040d2b8c mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x085c2ff8 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0fc5aa50 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1564796b mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x34c37ea2 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x392ef46b mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x421000f3 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44620c55 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4fb5527d mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63e223ba mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73919458 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f17136a mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8333cc51 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9096d96c mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95973856 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x986cbf6b mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c606057 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaaaad288 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc56f1f1a mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc9ccd5c7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcff70c35 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd0798cbb mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd6ffa2b3 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf70c7156 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf7d60124 mptscsih_resume +EXPORT_SYMBOL drivers/mfd/axp20x 0x19796b8d axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x1d7aa03d axp20x_match_device +EXPORT_SYMBOL drivers/mfd/axp20x 0xdc0a7f14 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/dln2 0x28a0440f dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x897dde13 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbb3f5b20 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xca2ee190 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd7cd4874 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x04e8928c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b97a25e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x13214da7 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14ee9700 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x161dea74 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x174fcff4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4262541a mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4af9992c mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa96616c2 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa96b62dd mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba2285a1 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 0x1cd09afc wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x45a52665 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x8508fdab wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xdac72448 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe8fd9fd1 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xed4decbe wm8994_irq_init +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x54eacc79 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe5f4402e ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3a5a036e c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x63ca46ca c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x16bb4425 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x1869a806 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5854bfe5 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xb47f4c66 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xb58ddd97 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc1fa1409 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xc37523be tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd09c32a7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xd1cc26cf tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xdb1f66a8 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xe142d5b5 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf89ba8ee tifm_unregister_driver +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x162c893a cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x5b939d63 cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x60735d7b cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xaa6269c7 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xeed4461b cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x84d852e1 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xb5ea068b dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xbe5c162f dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xe4495cac dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb4f7d47c mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xbbad006f mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2f596fef cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3c7bcea4 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3fcecc9e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x754c34c3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8f134b43 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc57cdb28 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xedfa272f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3bc62068 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa3ad2cb9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa5f5eaf7 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaf86a322 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xfef3a6c1 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x981a034b lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xe5c17068 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x4dac0b5e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb6b8c3e1 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x42a81bbb of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1f221682 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3052359f nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x32a53aa2 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x45d0422f nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a7b2903 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61f61e27 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ce81870 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8807a6bd nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x91b7711a of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x979ea528 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99c6b798 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9eebabb6 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4317fbd nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcb8396a9 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd6c6749c nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdccdd222 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe10450f5 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1730f72 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4302ee5 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe48d1d7c nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6e7e9fb nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf51476cc nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x4ee632ce flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb6e3ac45 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x5a8ebed1 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x7fd0c046 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x2bd1bf4b rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x33e93573 rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x590cb5ef nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x657678e0 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x6825d4da nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x72d11b19 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7f86878a nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8aec108e rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9ae29fbd rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x9b77d350 rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc9f2971d nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xd74d7d94 rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xda6370b1 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe9491739 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xedf8fa64 nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xf1761c5b nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfc5d5d16 rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x78e0f1bd elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xca4d86e4 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1dbda654 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x239f4fd5 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29271a33 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x45fb09f6 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4cbf07de alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x58564b63 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6940316e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x756ff3df arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb2c403e9 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc83a9a16 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeef43ce0 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x8cb44b96 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb2bbcf22 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb8761e14 com20020_found +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x3bdbd864 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xbd2d1562 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xfd1fd0bc ctucan_probe_common +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x03ae18a4 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x054d5623 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x149aeebb b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x169e2cd4 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23b76cf6 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x23c7dc6b b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2bd198dc b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e245e8a b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x2e80d62c b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x34c9b26a b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3ff5cd86 b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x47aadfa4 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4f0b7c1c b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5b2939d1 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x62a47450 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x63b8717f b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x6de465cc b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x90724d1e b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x923a2dfc b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x947c0756 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9cf6191e b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa7f2e3e7 b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa8fdf584 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb27fe037 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb2f69efe b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb50f878d b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb63694ab b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb9d002cf b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xbb4712fd b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc5a96dbf b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xcee41159 b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd0e31b15 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd7e2e754 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd8590a5a b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xdad9e49b b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe0b8ca1c b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe2ff3fb4 b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf342c416 b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x54c63832 b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xa288750f b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xb16e5fc2 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xf2cc0bc5 b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x30668688 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x33a51d04 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xbb8e3cd6 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x501bc83c ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x358baa1a ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x20c70395 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3679acaf ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xe45f44c8 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x51165d3d vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x999ad112 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0xa4527c4c vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x48c3349a 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 0x92c5f8bd xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xbfff2248 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xd37e75d1 xrs700x_switch_register +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17827392 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x17dcbbdb ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x34544864 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x47221fb4 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8aee4286 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x99e466cb NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9f6fdbb3 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa2bfddab ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xab50e9bf __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe92f79d0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x0b0e4b9c bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd0b5de8a cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x99b0ecf2 cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xbb0461e9 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 0x21b207c5 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x222f419f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x41bf86e8 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4e27d218 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6a292294 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70798893 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75588547 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7796f8d8 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7cfa95c4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b3c8b95 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9dfc9c6a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0292c90 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa34cf03c t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xccc4980a dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6e844af t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc67d301 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03b6f924 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06886805 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0e493f29 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1127eb45 cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x11381069 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18674429 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b62f8db cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1dcb75f3 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x220d07aa cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e15ac54 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x344fd211 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a651322 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x42cb3ecf cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x462ec32d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a337b0a cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b01b9bb cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ef62008 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x51ed92d2 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x58c9b194 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x602775ff cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c33b9ef cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71f529b2 cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77ada4c2 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7993de35 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x887c3edc cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fa5d9ff cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90e67ed4 cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9103e6b8 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x919610ba cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e5502bd cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb7651ba4 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc28b759b cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9bbf9db cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc967f78 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd892c8f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce2bfd6a t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd2e47c9e cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe227e267 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe438e823 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6293995 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6732517 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe9e13b3e cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeadfec9c cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeeabaf70 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeee7fa38 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef5f167a cxgb4_alloc_stid +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 0x286c6b37 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x4c3f2ce5 cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x6aae3db4 cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x79956065 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xae09b1e2 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xc7a148c8 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xf6d4755f cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x09b755a5 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0f916c90 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x0fb49a89 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x31885856 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x72094464 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x784bf642 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x10c90e71 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 0xf1133bcb 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 0x8e26fd87 dpaa2_ptp +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ierb 0x10352c50 enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x01e30210 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x16aa828f fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x5282194c fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x98dc97b2 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x584e118d hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x6c1d0440 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xae9e120d hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdc8475da hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xfa55eef9 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0x7b0f1f1e hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x5512112b hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x65ca52c5 hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6a9bad9d hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6ca4ede4 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x739f327e hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x7bae57a0 hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xe7a7fdce hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf89c2254 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xbc19d306 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0xcf3c50b8 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0f37d9eb __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x1515d25f otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x249a3a37 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x33188b8b otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x337e3cbc otx2_mbox_check_rsp_msgs +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 0x46ba9575 otx2_mbox_wait_for_rsp +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 0x55404020 __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 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x997cb169 otx2_reply_invalid_msg +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa1d6f93a otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xaf4dcf37 __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 0xb1dd28d4 otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb3a6068f otx2_mbox_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc06a4777 __traceiter_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 0xd7701e9d otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xe0a60eea otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xfd9b11d1 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x11cc00e1 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1fb13d8a otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a860b6a mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2e0eb7b4 otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x33632d1c otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x36ef4f4f otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3e360e98 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x419bd338 otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4e6305a5 mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x4ecdcdd0 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5835f158 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x59354424 otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x60b3283b otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6df6cb25 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x6fa24bed otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x86997dde otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x88500ac0 otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x93135205 otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9a7437f5 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9db93343 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa131a289 otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa1911b43 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa83d040e otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa9ee495e otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc1df984f otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc58f7162 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc5f624fb cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd1eb0ecd mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xda4ba676 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xdb147a24 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xe21f5637 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x015a9d52 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x7535c54e prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07ca585b mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d78eea7 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24a58c92 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d026a22 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f2f2663 mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x303f38aa mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31397289 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e1439c mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46881384 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47b34e5a mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4e5b3e mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e1ae6fd mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5022bda5 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5316b45f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x533c2dd5 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x577a4e07 mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5935bd1e set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ac0272d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f178ee1 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fdde0b4 mlx4_handle_eth_header_mcast_prio +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x897375d0 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a472544 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9785feeb mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99a9066e mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e50239a mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa14b415d mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa16c6821 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5d415c7 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7077e6e mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa80959f6 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xacb46251 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb293b427 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb924e7f9 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe1c0daf mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc35ff546 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0064f37 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd37d8056 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd409e745 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd931eacf mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1101a59 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe21bc84f mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf44280ba mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50a2517 mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50d6249 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa78d343 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01549769 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01edb08e mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06863236 mlx5_rl_remove_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06aab61b mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08442f49 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c13a3e9 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c9c25e3 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ca4a025 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fe6a155 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12bc6345 mlx5_modify_header_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137dd36a mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13f65ba6 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1772ec17 mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1af521ff mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c57c524 __traceiter_mlx5_fs_add_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c746ada mlx5_core_modify_cq +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 0x20609d05 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a0522b mlx5_query_ib_port_oper +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 0x23a54efc mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x241751d5 mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c06940 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25ae9e46 mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2990e026 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c7226da mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d061f43 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e1c5e03 mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x303ba9f2 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x325829c8 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x329102f9 mlx5_fpga_mem_write +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 0x374fb1d8 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c14db4a mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c2642f0 mlx5_core_create_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df55a3f mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e8de5db __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fd96644 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41531d71 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4180c88c mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45010603 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47b3e4fb mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49af7d8e mlx5_packet_reformat_alloc +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 0x4da834da mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4def8d64 mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x553bd310 mlx5_core_query_sq +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 0x57a5208b mlx5_core_destroy_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58bd6492 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x597ad2ae mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62aeab70 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ab90748 mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b78262f mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e6a5452 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f0d5db4 mlx5_fpga_get_sbu_caps +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 0x7476aece mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75181302 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x752470f3 mlx5_cmd_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7678977f mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7775ba44 mlx5_eswitch_add_send_to_vport_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b0cdc2 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ad14fce mlx5_core_modify_rq +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 0x7e4c3dc4 mlx5_fs_add_rx_underlay_qpn +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 0x80c42120 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8243372a mlx5_eswitch_reg_c1_loopback_enabled +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 0x887b611b mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8995f57f mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8be05a9e mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d7fe40e mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eafcbcb __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x905cf11f mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9518c06d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95f66eb3 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9663a2d0 mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97fb1fb1 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x985a7312 mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a217fd4 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a99156c mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cbddf20 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ce854d6 mlx5_core_modify_cq_moderation +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 0x9dc11529 mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f4d9623 mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa722aa3c mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88cdc3b mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf720b07 mlx5_fc_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb02bee25 mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c6bc31 mlx5_core_destroy_psv +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 0xb2d39b16 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3f2f365 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb45c5dd3 mlx5_rsc_dump_next +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 0xb80e18f5 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94632b5 mlx5_fc_destroy +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 0xbac65c47 mlx5_alloc_bfreg +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 0xbe854bd2 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfcfeef5 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd97ef7 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1744cef mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26e9f6c mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc534fc47 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58b2684 mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5940229 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc83da668 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca84c2d8 mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc26e034 mlx5_rl_add_rate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccd6449c mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16aded6 mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd3b81eae mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4ca1e8f mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4d303cb mlx5_cmd_do +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 0xd7345ddc mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd9657bcf mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc2a08b5 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc7730f0 mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1af9e59 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2b45a5d mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3d54e61 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f585b9 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ddf683 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea43020b mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec9c5c8f mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedbf1ad6 mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf231a6d9 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3b1f6ca mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4043eaf mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf69ebe7e mlx5_sriov_blocking_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf78eec35 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf92c235c mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaee78bb mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb44d411 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb5c3c23 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/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x06309b2a mlxsw_core_rx_listener_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 0x087c0c78 mlxsw_core_port_clear +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 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x21e80a21 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x23eddc68 mlxsw_core_cpu_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x27ac5e97 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2a87b2c0 mlxsw_afa_block_append_mirror +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2af08ae2 mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b1cf687 mlxsw_core_traps_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 0x38185d87 mlxsw_afa_block_append_qos_ecn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x406b4614 mlxsw_afa_block_append_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x43a9b87e mlxsw_afa_block_terminate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x47041e4e mlxsw_afk_key_info_blocks_count_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x484489a4 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5cf3dd79 mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5f017bc3 mlxsw_core_ptp_transmitted +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5ff17b5c mlxsw_afa_block_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x61158fd1 mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x618a30ab mlxsw_afa_block_commit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x63874d4c mlxsw_core_port_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x65e16da4 mlxsw_afk_key_info_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x929dc147 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x988853b2 mlxsw_env_get_module_eeprom +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +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 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb31381ab mlxsw_core_port_eth_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6517b2e mlxsw_afa_block_append_trap_and_forward +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc4398b31 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc889dc40 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcbab836f mlxsw_core_fw_rev_minor_subminor_validate +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd28256cf mlxsw_afa_block_append_allocated_counter +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd4b53c3a mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xda3376ef mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc31781e mlxsw_reg_trans_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdc415cf1 mlxsw_afa_block_continue +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xde4e211f mlxsw_afa_block_append_l4port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdfa89760 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe0f79e4c mlxsw_core_traps_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 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xec220689 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfd06f5f4 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_i2c 0x2bb933ef mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x4d0580e0 mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xe8b6fd0e mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0xf70062b8 mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0b579c6e ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0d66f467 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0e4f2c35 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0ee42607 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x16618e09 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1d62c307 ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1db0a736 ocelot_hwstamp_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 0x281f5f1f ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x29a0fd51 ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2dce9e21 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2e3c33d7 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3063b54c ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x310f6fc8 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35f08993 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3b8cbea8 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x421a1e98 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x42f2d09f ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4572ae39 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4676c13d ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46dba1a6 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x46dedfac ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47c408a8 ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4a64d4fe ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4ae8657d ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cb6bbc7 ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e3402df ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4e977735 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x500fe338 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5c42d207 ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5f36abca ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x608c4d98 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x616635b3 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x64959b05 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6a23f9e5 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7852a42a ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bd47b7c ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80794126 ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x86a88c91 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8848f620 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a0791dc ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8ca579c6 ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x93809569 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c1ec9f1 ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9c9203e1 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa14ae1fa ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa2fb1b04 ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4401cf1 ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa4fd615 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaa89ec9c ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xacc2b888 ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xaf3f89d4 ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb278b37e ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3f3d575 ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb45fc44f ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb6b4c7a0 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbc625d2d ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc5adb9b1 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca820c65 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcc0ae589 ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0390a98 ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd13be599 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd219f056 ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd41b94b0 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd80e3631 ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcd29cbe ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdfbb5a35 ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe633e011 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe7679278 ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe94dccc4 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf1a92b0c ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa39d875 ocelot_vcap_filter_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfda8a4fa ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe49bcac ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4f264472 qed_put_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7361700a 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 0xc5978ea6 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xebc23b95 qed_get_rdma_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0xed987414 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x18479b20 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x8fb9c654 qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3ec18cfb hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6a4ddf35 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9c659702 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbc2e3300 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdcd3f18e hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x0527ba36 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0x6641aab3 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x3a9ca09c mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x05a15ee4 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x49619a44 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x954b3fb3 xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x998747e6 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xdaf5398b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x74787a35 lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x8fd43e6e lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0xb92d2eb5 bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x230392d0 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4e424bb8 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa9cb9972 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfdb9981a pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x2df55edf sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x00ec8681 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x87dd588b team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x94c8327c team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xa374a753 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xba705449 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc94b76b0 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xce9618c2 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xd4a70949 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8fec9f26 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb9ebd1c7 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe3c6840a usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0d3351f8 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x35844aa5 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3afb7a17 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4b211fec register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x907116ee detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x92dc265f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa94f7a1b hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb0077bf7 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc15f29c5 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcb029d4f hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0db900aa ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a0909b0 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1e2be0a9 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1fdd6a7d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x25dc3a1c ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41a6f054 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c911a2a ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x797476ab ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa18f224e ath_regd_find_country_by_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa9ca3a2f ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb1198f29 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb6588ba6 ath_bus_type_strings +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcd8189c0 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe235c5fe ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf191f61c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x052ed401 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x05c6e163 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x07bb4fc4 ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f6089a0 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16903e91 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1f24b87a ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24e7c9e9 ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bc6bd75 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2c28159d ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2d026f07 ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2dddcf68 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2ff1048a ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x337ee461 ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x34080cdf ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x39c63bc8 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47597e4e ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x48b4125e ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c62645d ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4e8b9a99 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x504d3c3f ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x549c1eaf ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fad1a94 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x60492556 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x65ce1be4 __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x66098bba ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6a5de21c ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7559d016 ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x794b9f25 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7de24537 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x86358634 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88c3b5d1 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d061147 ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99c543d7 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x99d167e0 ath10k_ce_completed_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 0xa2ee151d ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa35d03a8 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa72eeb32 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaea44db2 ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xaeed26d0 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbd9126b2 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbef7529e ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc164ed37 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4e45332 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc525780c ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcf1f7f63 ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2568c91 ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8992d26 ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd89bc280 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2b25ff9 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe2c5bc88 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5403b6a ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe83b564a ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe85c396f ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe8c7337c ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xecd6d730 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf62f8d34 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x10c51027 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x14b7faee ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x18c7c707 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1f1e02fa ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21a8e94f ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3686546b ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3ea9b20b ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x46ad8870 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x4a168e1f ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x53dd5c30 ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5c8db5f6 ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5db425be ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x63e3fa06 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6997c812 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6e73ac6e ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7092a2b8 ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x734a55a9 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7935035c ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x814121ed ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x854df6e6 ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x93a83132 ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x94353c48 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9d793c55 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa4fc096c ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xa90ef518 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xab6a3c33 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf40c9a6 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xb97d9edf ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbabeed43 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc074779d ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc46a917d ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc5d83122 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc648d578 ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xcee896dd ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd0cf76e4 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xeba57df6 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf4b081ec ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf7ee067d ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1354043d ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ca3814d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3502feef ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x41a7988c ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4d34009c ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5351692d ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7e67860e ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8e5f1bf9 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa45b1064 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb6746408 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 0xc0ee046c ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xca9a2660 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd2ebcaa8 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0699386a ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16465dfe ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1b7b59bb ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2801d58a ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x38bdbe4f ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43a72ed4 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x48456546 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x58071859 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5e2b4dcd ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6549209d ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x74cf47e5 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8306e18a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84a434a3 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x860043d7 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92a76fe7 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a1e4519 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d153250 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7e80e36 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xac6d3bf5 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb25371b2 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc7096217 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 0xe0f0201f ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeeef1c76 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03322c4a ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0489e908 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04d9c082 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x065188e4 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x073b36f0 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b6f83dd ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0df73417 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e322acb ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e4631e6 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 0x10aa8363 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ba9e79 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x14bfa291 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15637a1f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1589953a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16508db1 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x199ccf07 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a4c6da1 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e0d4ee0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e6b6a9e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ff0d1a3 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x245b86ed ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25c2a143 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28ee0364 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2de0fb6c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fbbad4c ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30e6ddbd ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33c71d1a ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3521e840 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36c3cd18 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3842c849 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cb49932 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cd2e9fa ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dd5b015 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4029fce0 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4093f60a ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48812bf9 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a04e91a ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a73eec5 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ade28d5 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d438f85 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f128942 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67469041 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69f31865 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f123fc0 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73aad301 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74637186 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ae38bbb ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf2366c ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dcc3ec9 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80525252 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8555869a ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x860718ee ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ab0a245 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ab9fac4 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8de2154c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x930aa190 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x931ad00d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9798cc57 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97b270ca ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9847bf07 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a3700de ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ac2a19f ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c91ff69 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d637aff ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa093a1a7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa20c3bc0 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2c22ac2 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa80089fc ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa84ee4aa ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9a19c6c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacedcdfc ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad03c10a ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad54e67e ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb16f32e0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb340a7eb ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4095c88 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8465b8a ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad0ef85 ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd484192 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc01bbccc ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3830562 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc59ef822 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7bb8eb9 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca113ebe ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd34d91a2 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6300dd8 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6506e9f ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6649b7f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9cc67b8 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda0edcb3 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda69b9ce ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaa445fb ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc27245a ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf7e9a79 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe12f7559 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe31caa49 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4feb3d4 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe88c2ecf ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaaa80cd ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee0ee45e ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefe1e229 ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ea9ab6 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ef40de ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf23b5fa8 ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a0e88c ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf703cd5e ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe2a9b7f ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x0680ad17 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x795dc17e stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0xa25ea5b7 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x104391e9 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 0x1de43100 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x1e69b1cc brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5e122151 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x5f9fa8d1 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x70e0a97b brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xa17c0ccf brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xb71b775c brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbf8e1da4 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcf8533dc brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xd6217d91 brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe0c04803 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xeb0cf96a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xefcf7c62 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xf2efc7e3 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x19ab7861 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x1b8d607d libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x201718c7 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x27ce4beb libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x32774ada libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x3dfd2981 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x424a63f6 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x4be15095 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5e1ad362 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5ff39ce3 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x636e47dd libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x82897d89 free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x86870b15 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x88549b07 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa38d9ef0 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd0ca0cd1 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xda218fbd libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xefb3fcbd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xf0f6c39d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xfcc1c37a libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x005296ef _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02e109e9 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0433e788 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0867ea56 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x09a247f2 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0a36ff15 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0de85785 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0e18770b il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f329c1e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x15ded822 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1648365b il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x164869c7 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x17d83bee il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1a779b7a il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1babb391 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1ea1c8bf il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x274cba2b il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28dd45bf il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2ac0319c il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2afd09ee il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bb7aee2 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2c6229fc il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2e81d943 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x335d4ec4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x33fb4a6e il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3679e3d0 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x383e8d1f il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3a11fe5c il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3bcea72e il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3ec0b6be il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4122c142 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x416bd26a il_debug_level +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x42445e87 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x46bbfc4f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47f4172a il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4eb1139f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51670d5b il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x54882762 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5cadabf6 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x642fe897 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x646c3d89 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x66e21319 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6af16e52 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6bb257e1 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x76cd45bc il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x77590f78 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x780669e5 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7af77036 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x7ce95ca3 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81041a26 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x824b1f1d il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x831d305e il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x84060939 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x85d5decc il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b5fa10a il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8bc77237 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8c4b169a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8fc2f0ee il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x92f926c5 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x936e4868 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x948cd471 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x94e6659e il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x95bd2aae il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x986ff08b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9886233b il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9a585595 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9b7d6e43 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9c040b75 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa06aadc9 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa344442a il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa5da2dcb il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa9af4df8 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad3c6b02 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb1cd77e7 il_get_single_channel_number +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 0xbd24ccb8 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbdb2b798 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc0595474 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc24c8d36 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc6cea89b il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8361537 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb568ec6 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb97ba0f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcdf980f7 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf4a7412 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf4b237f il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd1a3f71a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd6fb5bea il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd8e28b1b il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xda838271 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdef0c8cb il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdf57ad62 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe02cef6b il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe40641d6 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe55736f6 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe82479e6 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xec6683b0 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf2976a65 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf46cb8ef il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa790653 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x36a862e9 __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x3c36bfa1 __traceiter_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 0x68959abc __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 0xd84dd021 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1f686a59 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x242aacc3 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x42c0f133 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4815d61f prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5b70b4da hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5e152e40 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x5ffff06e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7a12e67f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x87ed94a9 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x889895de hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ae742f6 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x8ef477ab hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x95ed7162 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98053125 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x98ced422 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xa9c49850 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb182050d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb2d61c0e hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbeb76fe0 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd19366eb hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xdab2e56c hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf0cb5909 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf1285ac8 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf562e818 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xffc3cfe0 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1367932a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x261c05ee orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x285bd5c8 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2bbf7d93 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x2e0fb322 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa11a7774 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xb93367b1 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc52afaee alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xc7f5cb6b orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcbfc59db orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xcc6f45f4 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd52290a0 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd56fdb4d orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xdd26ca6f orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf0121fee orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x7ce03088 mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xd9a097dd rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a5594a9 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b1f7198 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11fe2abc rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e0673ed 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 0x28f47537 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ac7a800 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3142d6cb rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3322cdb8 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x346c46f7 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3b6ed69f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4048ea14 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x438f4800 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cdae65a _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x517e296c _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5de72937 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62910430 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64fe3cd3 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69fccdd3 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71f146c6 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79a8986c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fd8251c rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85cabbc6 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x908d30b3 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x988056f3 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98d255f6 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaab3bc26 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaaf57a94 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1eb3c23 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb4300705 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6324753 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xba39c852 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbcb3b131 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf94dbe4 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4e595f5 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd858cd0d rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdafbcf08 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde772377 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe46333a6 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeabcbf82 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf203a6c1 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6e99b18 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1478a35a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5faa7871 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x83a7d6a1 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb5c76271 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x52c453d4 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x94f0d6dc rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xac61bf9a rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdc6dc958 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03e5ec28 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10b7e555 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b151296 rtl_dm_diginit +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 0x38154d29 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3daee47d rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46214ad5 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x48f1ebd9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x50b36c7f rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x566240ad rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c9d2f5c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5cb8bb10 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e75e605 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80982765 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x897067eb rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8afd2117 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91d4c097 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9271bb27 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ee8383f rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7cd9dc7 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab1df032 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5516e77 rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8400937 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4750aad rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc4fb3c77 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc687069 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1a6415a efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd82b3a4f rtl_bb_delay +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 0xf46367b2 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6052e69 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf60bc350 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xf83fdc9a rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x65ffab17 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x13dfa628 rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xfc1dcd16 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x044afaac rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x07668ebf rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x152e6aec rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x16683c90 rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x18be3be2 rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1e1d6515 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x22c6d601 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x25b69b63 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28d23011 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29870990 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2d2cdde2 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3683f7d2 rtw_regd_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 0x3b37a7bf rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3cde177b rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3f5a4f98 rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x440b7589 rtw_phy_rf_power_2_rssi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x47a94f87 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x49133fd8 rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x51dd0f09 rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53dd4ac5 rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5c7c3d1e rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5dc0ac50 rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e55a34b rtw_tx_fill_tx_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x613afeb1 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x62f5ad3a rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x647bb3d5 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x64f566e6 rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x67895e12 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a51d814 rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6e3b2b14 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70053d77 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x70bdc375 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x71a75e58 rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x75747320 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76bb137a rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8230feb7 rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x833bd1c8 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8627dc82 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8819740b rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a217248 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x940a6109 rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9b181378 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e22fa47 rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e2f631e rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e5f4c64 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e64d42d rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9e853b4d rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2d43ab4 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa80a66b0 rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa8ef1d7f rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xaa6398cc rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb0481340 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb111c0c0 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xba78600e rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc0dd5745 rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc970416c rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xcb165b3a rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xce02c5d8 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd309def4 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd54d2ee1 rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe89515da rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x51dcd54e rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x8271864b rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x84672076 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xd711c6a7 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0xa4d50ecb rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0x48ee9054 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x07572067 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x088be14c rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x09e4e1df rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x15d54b0c rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x1d1d9cf9 rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x286b6bfe rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x29eb9201 rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2fa57732 rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3097dc91 rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3291fb6c rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3688831b rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3a41a3e4 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3e44b632 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40af1c0c rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x40b04fe1 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x436e3310 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4384dbd1 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4c47d2b2 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x4f3118a7 rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52bc8002 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5b1dbeb2 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5c64c526 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6aaddc3b rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x76e5c9e0 rtw89_core_register +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7bcd6bbb rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e152d87 rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7e88013b rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x831a6fb1 rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8461b33c rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x899f2012 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9035c4c8 rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9259510b rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9d52ef91 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa013acd9 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xabb57982 rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xac8a4c1a rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb0cccd25 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb87833d1 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xba49a734 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb62fbde rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbe995517 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc72b2fff rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc740dbe3 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcc8958b1 rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcd1bf1c1 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xcf2b7d6a rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd3e7d550 rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe3f57b04 rtw89_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe90ee21c __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe964c34d rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xead5225c rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xeadc6df1 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf1921e8a rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x09001146 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0a9bb974 rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x16e9b7a8 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x2ad9ead1 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x421bfabc rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7398134e rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x7ace68ce rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x933ae7a8 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x96c6f736 rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xa34a7f29 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xaeceec2e rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xb83a9526 rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xd501e2ff rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xdd830a30 rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xed2def91 rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xfeef11d4 rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x03822861 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x47ba856c wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe0ed1474 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf30bbaca wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8bc0e588 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xd73aaf5b fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x87c550fe microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe6d5ed8f microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x4b4a2002 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x5c162e2f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf887e75b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xbbe47560 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0cb9eedb pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x14ef6cd0 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x09a3074c s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1f87e140 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6d5a4193 s3fwrn5_phy_power_ctrl +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8f935603 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 0x482587aa st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x53d6663f ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5551447f ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x60251626 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6b26d4cb ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7254257d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8bc550b8 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xad52866b st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb6d97040 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5444c72 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02ccc3fd st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1fd99e98 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x266e422c st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3e1a8069 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x41a0d1c6 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e1501fd st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ff540db st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6fd8a658 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x79ac17d4 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaf70ebb9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb2508719 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbccae2ef st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc080f876 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4487952 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4ea0ba4 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdc430c26 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8e32eb1 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfe23ad45 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/ntb/ntb 0x148d2bc2 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x17b23e06 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x23c11bf0 ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x24678d5c ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x2c351d86 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x386fc8fb ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x41725ba9 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x670a7edc ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x975d7774 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x98387a05 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x98487cfd ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x9feaedb0 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xa7c277e4 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb3d7379e ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0xc7f92052 ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0xdaa22c33 ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0xed8730b3 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0xf075abbb ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xf56f95f8 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf9a8d030 ntb_msg_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3a1173b6 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x7d9968fe nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0a031440 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0c97f8fc parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x0e43f4a4 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x20fbe5b8 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2530f51d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x37f44046 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x3bafa308 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3ccb6c97 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3f9a3464 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3fb4b287 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4460c624 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4df1802b parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x54bf78b4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x60d9186d parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x6b63603b parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6e2e6b2f parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x6fc4881d parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x71b4673c parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x74e670c9 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9c0df52d parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9ccb1499 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa15a0155 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xafd8136e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xcc2f18cc parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xd21e9a0e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd308ee71 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd3541d9a parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xdd5d54b6 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xde6947f4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xed2e1b7b parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xeed6fbb6 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0xb0ac1527 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd068cf1b parport_pc_unregister_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x7843887d iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0xa7ed1dbe iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x424b0a3b pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x493544b9 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x67fcf0bc pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x72b9259b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8884ef1e pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94745ad5 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9a015fae pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbcbc4edc pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd7c4101d pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe54e1615 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x04545655 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x1b0c6b74 cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x652a1264 cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x913e16de cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xd893ef01 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xdf5ac5d2 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x0782d141 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x37b4702a rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xc7b84a4d rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x156199d0 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x17a97a10 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x191aca7f rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x199a18fd rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1f1b45dd rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30b65d67 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b1bbfaf rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ec4f7da rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8cd3b264 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8db70e9f rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f3c571b rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xab228daf rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2cfae8c rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbbb3c489 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc8a7ec18 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd2737188 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd8a9e513 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe64e6299 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb4af7dc rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xf2f75748 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x38fb3cba ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x502ba6eb scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5f3715db scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x61df3198 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xfb5d286c scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x254f7a9f fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4f9a9ca2 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x569df8b5 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x71172be1 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7732633a fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9212ce98 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5bd00e1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd9e997ef fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdbbdb62d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdde73928 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf46089cc fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d32c352 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d839398 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f2b3234 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0f36dacb fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x127befcf fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x143eab85 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7cffb4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20c7a4b6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20d41c69 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x255e274a fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b29ad46 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d811041 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f17d1d9 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e2ee62 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3898f42b fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39185d08 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a8b3a75 fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bab278d fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d16eb79 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42be5a33 fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54bb80db fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b4dd5ff fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d17b730 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60d54e4e fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71bb832c fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72cf7b49 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7359f1ae fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73bb6dce fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7833f505 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7862feaa fc_lport_config +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 0x932b3867 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96cb8331 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x974e2b36 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99dc5f1a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa12b10b0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa21bc99a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa88ad0e fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf128263 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf5ae10b fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc37584a0 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc86f0800 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb3ffa06 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd612e47e libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd68ced1a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6e47e78 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf429ee8 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3f5acc3 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe7e7b2cc fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb61053f fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf06209a9 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2460850 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf377ac4a fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5aa8a67 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf6f0c5e1 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf70534af fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf70ccbf6 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd594bf9 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfffa5c84 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x30fb5870 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xaf407284 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc9d071bd sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe3f58133 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x444068d7 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 0x25635591 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34d196f7 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5da4a69c qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x619c638b qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x72396bd4 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x89a9d467 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91720d48 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb25e2421 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd307a2d7 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd960edef qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe96dbfa0 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfeda3c61 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/raid_class 0x413fd06d raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xa98d4822 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xe0989b6e raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02e213b0 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x049af90f fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x13ec2caa fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x207c8485 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2097ebc6 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x23ae6c65 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3887f942 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4b955d8d fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6142f205 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c73015c fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7f52271a fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9f38d461 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa76a7d7d fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaa3c0bcd fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbc30dad5 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcd371433 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe80fdff2 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x05cf144b sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x063c0464 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f77c1ec sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x124332a0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d0a9a1f sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1ef5fa07 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x253d7466 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2843721d scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b39a932 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b3c11f7 sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2f4bcc57 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ba88473 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x46bea7db sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e589d6e sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f72a9ac sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5e009904 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69004d69 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6be4bd45 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8092882e sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x82497438 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa52420ac sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb1596b62 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbec725d2 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8de4d20 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1fc1548 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5ae767c sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdc6be316 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe586c959 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7ad70d7 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3e5152b2 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb887ed3d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc9569b05 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd82cc82c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe2ca3642 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x39dcbdf8 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3e8bc05c srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x77b09ebc srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x94292de9 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9a7f151e srp_rport_get +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x35210a1c dpaa2_io_set_irq_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb629a241 dpaa2_io_get_irq_coalescing +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/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing +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 0x344a51f6 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 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 0x82b62209 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x92ba268c cmdq_pkt_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xab2ec244 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xf72002f6 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 0x86a7d5fe 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 0x00f3f5e3 geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x2720b462 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x36ac42b2 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x3bddcb7b geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x405356c8 geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x544db598 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5709353b geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5fdf365f geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x707481ee geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x80b3ba9a geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x856bb113 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x8f950e0c geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa031a8e0 geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa036d5a7 geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa7cf5822 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xb63c56b1 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xd9279acf geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x174a1e78 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 0x0a754bc3 qmi_send_request +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 0x28069b4c qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x4a2a84b8 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x581912d5 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x62ecb31d qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x746976f3 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc05dc3f8 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xc730c42d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xe578344f qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xffa5bf60 qmi_txn_wait +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 0x73d6cb93 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x089ffd41 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1304a46d 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 0x21c59e32 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x251f5f6a sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x29c463e1 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x33148d62 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x34a30098 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x34d00c9a sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x35b7b57f sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49752896 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4ec685cc sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58a280b5 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x58d1b08f sdw_bus_exit_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x59bc4334 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5b5be7b2 sdw_stream_add_master +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 0x70061071 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7188cea6 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x830e07e5 sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x97dcc76f sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa24381d3 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa7fe9f30 sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xaa186167 sdw_stream_add_slave +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 0xc78024f9 sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf07799b3 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf743a162 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb427dd0 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1020fa91 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x1ad4be84 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x2375412d sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x37e25227 sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x42e8b526 sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x566f439f sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x62383a33 cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x66b0fecf sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa4d92a1a sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd5b285aa cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xd9f0c4b0 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe726e0dc sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xea8fbb34 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf5499bfe sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf9556f87 sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xff1f142e sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x5b8651e0 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x05711867 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x19096138 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x2fa9d60c ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x3905e68b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3a874fd2 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x58a03f78 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x5d14c78d ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x5e4ab608 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6d2d5636 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x6d6bb809 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x7a1a4ba7 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7ad5a1f9 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x931173a5 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xa061b16d ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xac9e69cf ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc5c99f98 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd647bae3 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe4c212e9 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xe6391cff ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xf4ead583 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00e8dd2c fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09344a7e fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x093f6332 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1ab36c0d fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1e9889a4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x261f10e5 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c6c4cb0 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x356c8c5c fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5796128e fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8248fbda fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x83c11895 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89489f13 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x92f18855 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98b5ba3c fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d53f4f8 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb7a6acb5 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc078dde5 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6b1a8ab fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xca0e3d59 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd43f657a fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd97c4d51 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2b31141 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xea53bed7 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf22d24cc fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf5905c55 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x62392b1e gbaudio_register_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7a9a8671 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7e79b1d7 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb39f27a5 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5aeabab1 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0xc8507dde sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc9f1ebd6 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xecf2cf37 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00c150b5 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06824b50 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c064d8f rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dd47224 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22df6dce dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x250134fc rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x291bbb8d rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c78b27b rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2dcf62e5 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f2bf97 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ba0965f notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e21ccd5 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x490ea4d2 dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4b3ac777 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f223442 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5869a701 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x68652b19 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a541c68 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71d696f4 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x824f8236 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83cf2fe6 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83d446fc rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b1a10e5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90a19933 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91ee94ab RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x926b31bb rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b4dfc39 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa2444f08 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa37935fa rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3aa64f8 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa73785db rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xab100f1f rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac55c0a3 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac812e93 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacd52bbc rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaebf4669 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0101350 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5e5deae rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb9c8958 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe3fd0cc rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc389bb40 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc837dbc0 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb47ed59 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2f9e5af rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd49c2766 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda37b3b6 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc5d6ffd rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7a5a978 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff2e9aaf rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x099d0ba6 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a9365cb ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x127ea2dd notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a1fa74b ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ad83850 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bbafb67 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d3f841b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x293ae864 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b7cce0c ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33e8d082 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4453304b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4796d6a2 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a19a0f8 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f697694 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f7a4db6 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5078d991 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x512d4710 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b9533f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58944285 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6352d902 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bef718e ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72d3d978 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77c06e74 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78cf97b4 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b355c86 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x90189a65 dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x914a0f0d ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0783416 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3c0e596 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa5860798 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad6a9c8c ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb58b7806 to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6345eff ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb789da09 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9072abc ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb95f062f ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc2557889 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc3a01aa9 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6db18da ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd71f6a72 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd887406f ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ded009 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde1eae19 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7050c09 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe82c8bad ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeab370e3 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeba65482 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf10fdd13 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf68b123d dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf77bec59 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb96b2dc ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd0183f3 dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff97774d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x13451b91 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x35853b04 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5c054645 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x70fbdac9 vchiq_msg_queue_push +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 0xac2be24b vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbe82b31e vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xf2ed2e63 vchiq_shutdown +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x017e157f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ce93fc4 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17d47e1f iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2080ace7 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24558298 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2bffbaa8 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2ef90120 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x301f4f14 iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38ba0940 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43188e3a iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4338147e iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4378866c iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x493b0fa6 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x58dc8d6a iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d12bd37 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67e082e5 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6801f35a iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a177db9 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cb60f25 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75e1265b iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x782beb18 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d7bc18a iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d7d7ac6 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85dead82 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x890ffe48 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x944696b6 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9649e7b4 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98ffaf79 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0474b19 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1a78a8b iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1e6f881 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9aa94b0 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf02d6c8 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb940e493 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb9c29fd0 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbba94fc3 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd761d4ec iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfeabff4 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe33939d9 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe58251b3 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe84439fd iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeba30ad1 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf28e7b50 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5d648fe iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7eb44f4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/target_core_mod 0x04f3e40f target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x05e5c4f1 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x078ab241 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x07f7b1b3 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x08beabd2 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x092ad695 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d458880 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x12de0c12 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x19fedad7 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b314861 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c8175d2 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x30aa1ad6 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x34864b9e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x34a991e8 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x38356807 target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x42e507ef target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x496aa617 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e5bd5fc target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x580652a0 transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x59c1dae6 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f72c55c core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6220a3b6 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x66505a6c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e53b950 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f2bec95 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x73ebbf4f core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x741ef6fa transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x753873be target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x75474efe __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x77c47306 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bc64e2f target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x81d68269 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x862e5cae transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b1c0439 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8eac31e7 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x93326688 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x9373abbd transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x94e284d1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x97a582ac passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bfeea18 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa23ccf80 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xa477e87b spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6552987 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xafaa2530 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xb04e6aab target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0525805 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2541d94 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2fcce52 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb99a038b passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe39e472 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xbea847ac target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf4a53d8 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1cddcdc target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc29b9183 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc729dd79 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8a50e2b core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9318e2e transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd464a635 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0xd93e8efd spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbc9ec4d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcef65d9 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xde037935 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xde1bdbec transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdebcff85 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xdef62cf9 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf2cfa2c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0bbf7e7 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xedf0b4b8 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1b6a148 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf33c2abf transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf45e42cc sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb42a6fd sbc_get_device_type +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x1913fe3b ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x42588be6 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x638f867d ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x82a64d71 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xc55b3d51 ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xd48cb831 ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xdc962ec8 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xe1ccb534 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xcc51f8aa tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xd877f0f6 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0x4d37cdd3 ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xcc5b0ff3 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xa2a38e1a usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x92c1ac12 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x52b74ce5 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x191af20f usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3183fb0b usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5023097e usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x83977487 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8d255d35 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa88eac44 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb24e6930 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc14c73a8 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd93e169f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe439900c usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf4851bff usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x630c7f01 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd8e18ede usb_serial_suspend +EXPORT_SYMBOL drivers/vdpa/vdpa 0x267dda76 vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x13d4b781 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x40b2a27a mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5fa6a96f mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6ce2c8f6 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6ee66faa mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x90765e16 mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd9f1e8da mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf372a8b4 mdev_register_device +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x3272223f vfio_unpin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0xa1dad4fc vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xbc205e3d vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xcf6e9481 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0xfb6cb3f0 vfio_dma_rw +EXPORT_SYMBOL drivers/vhost/vhost 0x03bbb41b vhost_chr_write_iter +EXPORT_SYMBOL drivers/vhost/vhost 0x69cdb0cb 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 0x00340e84 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7c508029 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9797efb5 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfd3622df 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 0x3a8d4a81 svga_tilefill +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 0x8904fd39 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa03fc289 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xaa6af0e2 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xabd0fadc svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb96dc694 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 0xf1cbf6d7 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x0eac8772 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x765af190 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0xd24689ad 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 0xd33939f2 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xdfe3b6e9 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xc8d1dda7 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd5aee333 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdbd909bc matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x09c2d85a matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x493dbd5a DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x7d4d4791 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf6c5d8c6 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xd33e3c64 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xb8c6198e matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6b193381 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x8c94362c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb5d960a6 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf59a076e matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x21a14c61 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xb3029f1a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0145caf8 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2ab2b3db matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9727f10d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa7b3fa9e matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc2e4940c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x4ba65606 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x550b68d2 is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x57df2568 virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5cfa8d2c virtio_dma_buf_attach +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa45b6aae w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa8439fa5 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x3b5f7333 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x41d8a83a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x4d1124c0 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x696dd1b2 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xa595523e w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc66eec06 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x024c789e fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x0d1a4c2e fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1506727a fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x18b360f6 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x197038da fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x29d0e641 __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x2e10403b __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x36c393ce fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x55bc4c6a fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x59464e07 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x59e02e0d fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0x5f29c77a __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x70add5ea __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x75d47bd7 __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x875e8419 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb1b2361a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb71f7d05 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xc463209c fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd318ec57 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdb427743 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe207eede fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0xe9f6f82c __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xee297dae __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xef3b2729 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf9e2ec57 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfa615df9 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xfb2fd35b __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0xfc5f4c2a fscache_put_cookie +EXPORT_SYMBOL fs/netfs/netfs 0x01130743 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x312d2655 netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x3f384e3b netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0xb2f74564 netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xc4823c37 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x01f3399c qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x42bae767 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x73e9bcc2 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9286795e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9a201578 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe7ea9182 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 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 0xba1e518f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xda85cfd5 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 net/6lowpan/6lowpan 0x0a70e818 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x23b4b6dd lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0x29a0e923 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x74f6efed lowpan_register_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa46d793d lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa85e9b75 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x824d3773 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xac6cb4f1 register_8022_client +EXPORT_SYMBOL net/802/psnap 0xc711dac7 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xef649f38 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0308b016 p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0x0462a2fe p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x05e2284f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x0a1da67e p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0d9d71bc p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0fb9d045 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x1c72bdef p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1ea395a3 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x1f9b4a69 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x229f668f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x295c1bab p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2bdc2207 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x44c7fd67 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x45736857 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x46cd0c50 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4ba92381 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x553f1fb3 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x5a658631 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5b9b20a3 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x647f2464 p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0x65542693 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x685b62b4 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x6e7b2a9b p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x79a3c5a1 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x7f253f98 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x8013a11d p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x89a054bc p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x991e10e8 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x9c95cf99 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x9d9162fb p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xa62da08c v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xab180d36 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb16a4de7 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb6c9f085 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xbd5b05e9 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbef694c6 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xd5e1bf88 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf215ac6a p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xf28e048e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xf383eb70 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf9cc996e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xfd3567ad p9_is_proto_dotl +EXPORT_SYMBOL net/appletalk/appletalk 0x1763b3e6 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x751acf4e atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x9c3ca193 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcfd9534a atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x0668ac1a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x1edd442d atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x21c6d477 atm_charge +EXPORT_SYMBOL net/atm/atm 0x2c1b2ca9 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3d343325 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x44c6e633 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x45c06af0 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4b64fa6f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x6f2ee862 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x73ccaee6 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x749b6859 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7825d11a atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfb3d1583 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xfef8c455 vcc_insert_socket +EXPORT_SYMBOL net/ax25/ax25 0x14cecd59 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x236eec09 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53abf5cf ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x56c77dc4 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa4774e10 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xa5f2bfcc ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xca462d73 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd9580f40 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xe5660c76 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/bluetooth/bluetooth 0x019b3119 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x128a9954 __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17949a2e __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fa162db l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fe922fe bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x215b4621 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2472b609 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2628621d l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x279a9fb7 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28c288a3 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3aaa1342 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3ec116ed hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40bedb77 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4651d50a hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x474badf0 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48c1771b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x511b0686 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55f511d1 hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57495269 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65d4b7dc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ce7cba3 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70ba645c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7137a4cb hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7343c34a hci_recv_frame +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 0x7f488f7f hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x83c66ab2 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x87575da3 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x892abf5a __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b8fdda0 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93435a16 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9820da7e bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9a419595 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c575237 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9da9d462 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9eb27a87 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa129c0a2 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0200907 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb8e21fe6 __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbc1dc5a __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc4635c9 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf715cde bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc317e536 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7667f95 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfb352c6 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc57e4c4 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe076e9ef bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe5fbd76b bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2d6dcb8 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf43f1ebb bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffc3cf33 hci_cmd_sync_queue +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2914f851 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x89554804 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xd73dcfa6 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xdc072f60 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xe54a0f0a ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xec25263c 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 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x41cf8936 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x57906c4f 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 0xc1444f7c caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xeda6f512 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xf27b086e cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x12e456eb can_proto_register +EXPORT_SYMBOL net/can/can 0x3e31e4fd can_rx_unregister +EXPORT_SYMBOL net/can/can 0x9be31b4f can_proto_unregister +EXPORT_SYMBOL net/can/can 0xdcf6133f can_rx_register +EXPORT_SYMBOL net/can/can 0xe6886474 can_send +EXPORT_SYMBOL net/can/can 0xf8dd5a9f can_sock_destruct +EXPORT_SYMBOL net/ceph/libceph 0x01978d50 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0x0445d7e6 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x04ce4d9d ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x05821b90 ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x0850f7d2 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x09e62258 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x0b34855c ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0x0ca4a407 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x0e11aa5d ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x0edf946a ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x0f2cb143 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x104df26c ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x13184724 ceph_osdc_clear_abort_err +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x14589990 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x149973cf osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x14cf40f1 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x165b1948 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x17c17611 ceph_pg_to_acting_primary +EXPORT_SYMBOL net/ceph/libceph 0x18650221 ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0x18f8136a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x1925e24a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1c300bb2 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x1d1c60ae ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0x2087719e ceph_oid_copy +EXPORT_SYMBOL net/ceph/libceph 0x2101cbc9 ceph_oid_destroy +EXPORT_SYMBOL net/ceph/libceph 0x25ca2030 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x26e79433 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2f489a0d ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2fe711b7 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x3301790c ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x34cf9fe9 ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x37d41646 ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3970442f ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x3b2c5749 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3ce5c9c5 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x3d4e4510 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x3d8aaca8 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x4198c828 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x437807ad osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x45996762 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x45be9fca osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4772deee ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x48d1cb28 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x49cb12e3 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4c507be6 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x4f65404e ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x55c5d7e6 ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0x5630a35f ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x56c86120 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x61242fcc ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x6183fd7d ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x627a7ed9 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64c9e45a ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6bc4a75f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x6f721e12 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0x6fb65321 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x7154968d ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x71e91bfd osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0x737155ca ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x75e706a7 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x77b289c4 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x7a4455e1 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x7c4ac9ab ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0x800c52f0 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x8055ffe5 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x83f4ddd1 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x8c010777 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x96591ff9 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x971b4909 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x97c57219 ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x987d3968 ceph_alloc_options +EXPORT_SYMBOL net/ceph/libceph 0x994c53fa ceph_copy_from_page_vector +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 0x9fbba67f ceph_buffer_new +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 0xa8876f62 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xaaca85aa ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xac43c59a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae6ef94f ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb12b714b osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xb2457a2f ceph_osdc_list_watchers +EXPORT_SYMBOL net/ceph/libceph 0xb2f70d82 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb3ae8b2a __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8038215 ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xb92a3651 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xbe9b2ff3 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbf38421f ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xbfa33024 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xc132bdb5 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc6a35c28 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcce52a79 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0xcd44e986 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd0194524 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xd063cb93 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7439bcf ceph_monc_blocklist_add +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 0xe6603a8c ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe70070ac ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xebb3813e osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xed00fe11 ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xee120c03 ceph_release_string +EXPORT_SYMBOL net/ceph/libceph 0xeef6cfa3 ceph_iterate_extents +EXPORT_SYMBOL net/ceph/libceph 0xef96fe9c osd_req_op_cls_request_data_pagelist +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 0xf230b516 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xf2a1fc79 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xf2b6e99f ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf36b7e2a osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xf62dac7b ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xfb9a54dd ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfc20efb4 ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xfe0fb80c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5cf36e1d dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa757418c dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x23f0c58c is_hsr_master +EXPORT_SYMBOL net/hsr/hsr 0x7eeb1b0f hsr_get_version +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1050159f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5567fa41 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x72f1aeac wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc553ddf1 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcbd4fa12 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfb29970d wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xe5a0e9fc __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xff868b3c __gue_build_header +EXPORT_SYMBOL net/ipv4/gre 0x5c311044 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x81307ae9 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x928619b3 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe6898ce0 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf741305a ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6c3f397a arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xeb75b342 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfe431cbc arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xff5a1160 arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x528da514 ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x913f1afa ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa0f4d7f0 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe1e4044a ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xe88633b8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xf2793fed xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x949e15f6 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0d913e62 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x827fea31 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9c19278d ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb47c8130 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc92e76c0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd4a23e9d ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdfa11f63 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe9e35ab6 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xef10c87e ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x12f9ceb5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x87871e19 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe974abea ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xffc50d94 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x87e912d2 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xd93cb754 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8121330f xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb8fab30a xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/lapb/lapb 0x10db6c9f lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x2cb0e17b lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x3a830f49 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x3bb6eb99 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x43d70b0f lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x886931fe lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x9a6cde97 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xae00b5e9 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x2de0c235 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x481d311b llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x4fd8a95e llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0xa04fd290 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe181c9dc llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xe88b7b1c llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xf2d53ebf llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x05874528 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x05fd2f0e ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0b37a2be __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0d00b789 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x176c16e7 ieee80211_txq_schedule_start +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 0x1c12355a ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1ec3d94d wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x24b38d34 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x2570a314 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2a5b95b9 ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x2bfdc269 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2e874048 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x2fedd820 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0x30b39f5f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x32494245 ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x32810d2c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x330ac8ea ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x34a03b57 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x35ed87f4 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x380fe3e6 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x3c68a9d1 ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x3cea5aa0 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3e757587 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x439a50c5 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0x4824f80f ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x51dec78a ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x539eca73 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x54b3ee77 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x5cb56a92 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x5d09eaa0 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0x5e8406fd ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x68e56316 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6a6d09ac ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x6cf149ed ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6f3b37cd ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x6fbe1f96 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x71ce359e ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x7264679b rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x73aa4ab7 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x7820c803 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x791e91ac ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x792d5dfb ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x7c10ccd0 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x7eeb1869 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x80867db5 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0x87282d07 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x888eff3e ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x896f262d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x89bfbe91 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x8a3451d2 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x8a34de79 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x8cc35f05 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0x8f6b8354 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x91f12dcc ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x9751d67d ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9b0c95e5 ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x9e248cdf ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa18bd399 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa21809c2 ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0xa3d88bd1 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xa420492f ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xa4504d1a ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa5af4a04 ieee80211_txq_airtime_check +EXPORT_SYMBOL net/mac80211/mac80211 0xab48f49d ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xac945482 ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xadcadc1e ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xb04339d4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb4c87304 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xb69084d8 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc031eddf ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xc224aa0a ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xc3b77281 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc962d000 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xcd41184b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd2dcf039 ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0xd472b099 ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd5988812 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xd598ba85 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xd636f1b3 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdc98c168 ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xdcd34e89 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe1d990ff ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0xe23817cc ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xe672ef85 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xe83cfb1c ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xe9415753 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe9c0292e ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0xebfa30ae ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xedf403ed ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xee10b13f ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xef7432ed __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xefa92148 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf00a471b ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xf17bb3b1 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf1c60b10 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0xf6737024 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf90801e0 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf90e5b30 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf975160d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfdacb30c ieee80211_proberesp_get +EXPORT_SYMBOL net/mac802154/mac802154 0x0179c294 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x070491c8 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x264add7c ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x2bd71897 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x44e5d033 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x572aa958 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x5e9dacef ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9de2054e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xb2e2d4b2 ieee802154_xmit_error +EXPORT_SYMBOL net/mac802154/mac802154 0xb76aab51 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfdc138aa ieee802154_rx_irqsafe +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1bdf5c5a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1de3f661 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x27e69387 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5fc23131 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67e49323 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69e27e87 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6ec6ab6e ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x71270ec1 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8991ae29 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x92855c31 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa48630d5 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa6b60fea ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcfe2e9a4 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe87c1231 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xecd96945 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7dc29a82 nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x05b38d08 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x71d4f2a3 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xd881c4f8 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe74b1ee9 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 0x30e46726 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x47914c66 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4799265f xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4bc92586 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x72a4be10 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7d358426 xt_register_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 0xb0ab14bb xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb0e6c558 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xcea431e7 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 0xf81be220 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x06a9292d nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x08db1be1 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x16576de4 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x2445cf93 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x265028f2 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2a933d99 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x2cef5742 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x3c846d82 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x48b5cda4 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4cbeed33 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x4e42a134 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x54deff07 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x56a8636e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6b5b98db nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x6b6c5d03 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x97bd6f77 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xa721f969 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb0990dec nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xc62ce6e6 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc9ac624f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xed9fada1 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0033677d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x070279da nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x07303c0e nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0x07e9efe2 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x1217d4f1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1796c96e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x24ccf068 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x273b29a6 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x381df74a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x434222c9 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x4d751c29 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x5be844a9 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x64120060 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x699d9dce nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x69c977aa nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7156401c nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x83487c19 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x882895df nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8d96a70f nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x98d8d4da nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xb6e1c147 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0984cf2 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xc808daa7 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc87b35f4 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd1f5e5c1 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd5c95dd5 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xdb527f20 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xe6f4a95a nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xf62bff34 nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x028f791b nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x0c572c95 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x137df1d7 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x2af1ac87 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3c8f0c7f nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x4a116ca7 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x4e302d74 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x5b24f702 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x620ffcb5 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x6985470b nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x6b281a5a __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x6b9ab4c0 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x78d2b134 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x7f668c70 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xac9e42a3 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xb056b252 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xb546772d nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xcba1425e nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xced8d382 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xdd836a0f nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xded84307 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xf441ca20 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf61d804e nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xfc25dcc2 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xfe5333a2 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x78ed7a65 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x795980ad nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb30154c8 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc2a75096 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x063165d8 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x48a5c50b pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6c99609b phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x7397a1ed pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xaafa87ec pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xab1bacc0 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xb16e2615 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf7e49e6f phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/rxrpc 0x0f8e2d5f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x121cb408 rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x1b166cb2 rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x328be59b rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x3bbb6616 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4598d422 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5a5ae753 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x612a92c5 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8d46cd71 rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x8dcc8c32 rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/rxrpc/rxrpc 0x9f04f562 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xabeb9ec8 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb709630d key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb85ef050 rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0xc4e51737 rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xddb249e7 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdef4ce3f rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdfade1fb rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/sctp/sctp 0x43120f3e sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x109222f4 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x1108266a __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x8f431237 __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xadd4a44b __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb427a8e1 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc4b3e101 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xdfd407dc gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1b02e479 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8c40bf59 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf7a56af6 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0x3aab8e77 rpcrdma_unregister_nvfs_dma_ops +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0xfa50d8ec rpcrdma_register_nvfs_dma_ops +EXPORT_SYMBOL net/tipc/tipc 0x9ca2fba7 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xa272323d tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xad7f5126 tipc_dump_done +EXPORT_SYMBOL net/tipc/tipc 0xee89bd76 tipc_nl_sk_walk +EXPORT_SYMBOL net/tls/tls 0x128e9a57 tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x010969a6 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x017f3f3e cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0x038ff820 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x06e63c33 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x0ae1b63c wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x10cf92e5 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x11debd21 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x15ef44b2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x16a1683d cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1a41dfbd regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x1af5464f cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x1d4fefd3 cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x1d6d825f wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x21541747 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x23f6e161 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2677bf6b __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x297e23d7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2afa0511 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x2d651f56 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x30052ea5 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x310269dd cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x314e8e05 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x3295d085 regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x392afb16 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3a234f83 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3cd52dd4 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x3f11c2d7 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x4546a0e4 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x49ec8a69 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4b6b5b76 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e1c16de ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x4eb9d674 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x4f73a794 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x514e4813 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5569c297 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x568f10fa regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x56ef6862 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0x5a6f8181 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x6063d2ca wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x64d8be48 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b7f0995 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6d92ec5b cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x70a6c3ed cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x72939d75 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x78128ba8 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0x78d435a8 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x79f7c1a8 get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7ae811bf cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x7b0f37d0 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7caf00b2 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x7d2a7ab0 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x84e776cb cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x86fa58b6 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x88f3d462 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x910abbe1 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x925bd3f4 cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0x93489db2 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9a461403 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0x9f8414e7 cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x9fdfa546 cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa70bab08 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0xaae242bc cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xab3f13a9 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xab76224e ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xb0e77257 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb6478f63 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb7930819 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xb7f6713c cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xba324318 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xbe229179 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc302c51f cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d1d8a8 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d5f0c8 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc42cae26 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc55c9cfa cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xcad1a522 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcd745c5b cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xcfd92716 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd969eae4 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xd99f1f7e cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xdaccb62b cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe1715868 cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xe226b45a cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xe2e3e714 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xe4348238 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xe7ef139c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xe8709182 cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xed6b56de cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xedfa80f8 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xef2d5871 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xef85e6f0 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xf0565960 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf294943f wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xf2e28efb cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf32dfab2 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xf39966b6 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf611cf0b cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0xf704f1b9 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xf9d21b83 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfd5a3617 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfdd83589 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/lib80211 0x7bd0a0af lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x911ff248 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa711f2da lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb439e7df lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xc501096a lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xfc7ee1db lib80211_get_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x5b980ce0 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x121a8757 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 0x30e96abc snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4a36e1f8 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc629cf83 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xda56f0dc snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +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 0x2a0fe235 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0057a915 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x01d25598 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x08eecc8a snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0c0e6c33 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0ea131ec snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x0f778288 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x17072e0c snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x18056ea3 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1e1f0521 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x1e47e6b0 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x21e67437 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2e6378ea snd_card_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3749dac9 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b4dffcb snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x3cd3f886 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5764c18e snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x6649b34d snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x6ccd5150 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x708f04e8 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x74f9905f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x76308d31 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x7b087270 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7bda2dd6 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x7cbba5ef snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x838aecd0 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8a62857b snd_card_free +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e573f41 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8f5886f0 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8ff044f4 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9743176c snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x97745287 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x98aaf334 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x9d83abf2 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa6c6e052 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xa88edf78 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xb02ae902 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc9f87238 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xcd79da4c snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xd717922a snd_info_register +EXPORT_SYMBOL sound/core/snd 0xd7407fa5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xd98fba7b snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xdeb32f16 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xdffc7003 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xe1ae1427 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xe5407bf4 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xe827417c snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xf3e23eea snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf8e5af0b snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x28692544 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0x87056213 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x595ce2a4 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 0x0d410aa3 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x114e53f0 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x1b073bf4 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20754dfd snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x28f8948f snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3896fa26 snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3e30d59a __snd_pcm_lib_xfer +EXPORT_SYMBOL sound/core/snd-pcm 0x417ba863 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x474798af snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4a965887 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5894e366 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x5bb7edde snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x5da4dbb9 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5e09f69d snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x637592ac snd_pcm_create_iec958_consumer +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 0x6eae0369 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x74608143 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x7674dcb2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7718faba snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x7d2847af snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x82a5ae50 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x84c30278 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x88ff9fdb snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x898ccec9 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x8a1af5e9 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x8b356c86 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x8d4cddc5 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x8f835ce0 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9ad72f4e snd_dma_buffer_mmap +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 0xae39537f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xafecb4a7 snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb1f12d40 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xb25cee6f snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb40e6d8f snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xb54fd8bd snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbf50a73d snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xc3476ad8 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xc548f45f snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd4d729df snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe04dd35f _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe051ce83 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe1d5a47d snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xe54b8d0a snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xf05176d5 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xf3f44561 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xf5f694f1 snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xfae6cdc8 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xfbfa88e4 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x03ae9acd snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x165a8983 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3511d85e __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3a38ed55 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5925ec60 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e58f33e snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6375dfec snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6955b26b snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7baa5099 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7dbe5b48 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x86c5102e snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x995daad5 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9b6f7bc6 snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0xae35c2bc snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0dacb57 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc5d8b80e snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbb5185d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf1028b5 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcf4c1522 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xff066df4 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 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xd81c7396 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x25f40562 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x349fdc70 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5c653dad snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x7bfaea10 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x7cd31d4c snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x7f10ab1f snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x87b78212 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x99f12266 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x9f9da68a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa952bf61 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xb8fd00ba snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc319156e snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xe345d950 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xe4001e6d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe7bf22c7 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x132c104f 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 0x34e7ea66 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38a439a6 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4284961b snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6db68762 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7206282f snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7c2e5f78 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c60299f snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb337421d snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdee811ea 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 0x4ed3384f snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d3eb5a6 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x647e8f29 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x71f65292 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x92c7b446 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9c7d2d25 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc4f65645 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd923674d snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdf1373ab snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0339259a cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0de04180 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x10032749 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x152c54ea amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x17a0aca6 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1eb178ea avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20a9c0fd fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20ee2853 cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2800a638 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x315e3f26 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36212761 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fa4e42c snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x44d9373c avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4898eacc amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x546e42ca amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5a4ba889 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x655db873 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72115a05 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97f74697 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c73edef cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa2c73836 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa9878a81 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc568897b cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf9736c4 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd217746f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8618d53 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd0835ee fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe267fc05 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe906a589 cmp_connection_reserve +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0xb7ca0275 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x75a5a7e9 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xc1060caf snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0359784c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0525777f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x12f4ee9f snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2e64a163 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x81f7a127 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x914651f7 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x94438363 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf5ede020 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x08b04ce0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28db6a74 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8b93cf7b snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa850db54 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x669307a1 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x77720b8c snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0b5696e4 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x66cb065e snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7493eb38 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x79a4f8ed snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa4f83275 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec4a2952 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1bf05e62 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3282e2c2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x431a5c1e snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x479bf3e0 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9fa2b0ee snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa8a7fdd7 snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0bc7621b snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0c41148a snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f4a092f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x11075608 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x431489c3 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d7cf447 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x584b309c snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x618bd30e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x63837206 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x70fda2a6 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7b20214f snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c9ff9b6 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89c471eb snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x90c58f39 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb54c644a snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd51afcdc snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe9d868c6 snd_ac97_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1f338b67 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x232b880e snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x339e2792 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x34d2c5d9 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4d5064a4 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5a6955f9 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc1277a09 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd745a5b9 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf1bc4f3f snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x11a26a76 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7d287dd3 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbb8b26c8 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x008f6bf2 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0fbacd1e oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b7e5438 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d1ba2cb oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d26632e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x468147fb oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b26a898 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88bd962b oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8aac21ec oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ff91eb1 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x901bc2e2 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa155c7b6 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa21f5eea oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba24215b oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1055c10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd97923e oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdb8011c0 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbd73933 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa7cbefa oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff9165d1 oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x014e1554 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1cebf483 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4beec5e0 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8a503468 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe6fc8a3f snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x6553129f snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x79db1d8d snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0xb5348f29 adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0x82ee2855 wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x327065d3 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x3cbcc1fa pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5a7d6fd4 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x83ec5e54 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x3247d639 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x492c9681 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0xfb1ef2bd aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x41b1b4af aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x6beb5b79 aic3x_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-wcd-mbhc 0x212e86d4 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 0x72f9d5bd 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 0xd0542241 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 0x0512ed9b mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x96040822 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x7422d6d4 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0xf6f6ab9b q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0x114e5fca qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0xada83e9e snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x0a5b3009 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x7787699d imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x8ac8153f imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xdaee0683 imx8_dump +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0x28180068 mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x01d41fab sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0b2028c6 sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0e08baf6 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x140bf198 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x17c6bcae snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1bc6307f sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ed774d4 snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x219d507a snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x23bf091c sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x243f6e5e sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x269ecff4 snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x28920cf2 sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x30028310 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x32c858fd snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x37855ff8 snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x382a85c6 sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3cbfc855 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3d00055a snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x4fbec096 snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x555fd167 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5a66ff0a sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x5fabc1d1 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6447c99a sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6692a41a snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x71d0d3bc snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7278f017 snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7a637198 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7b581bd8 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x81412387 snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8567a212 snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8759d47d sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x886c5d46 sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8bfdcc5b sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9e61525c snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa0eba8a2 snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa6ac6a85 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa749d263 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa95cb213 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xaba31ed2 sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3a73053 sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb48a9eb1 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb6f0062f snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbfcea983 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc06dfbc3 sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc8e47651 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd20ac711 snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdae344c8 snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xdd58a443 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xec96301a snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf2d7143b snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf3c80c3a sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf60e32cf sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf83f993f snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xf9327640 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfd1b6831 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xfff5c3d2 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x485e0190 sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x65b82ca6 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xef630c58 sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xf80cf37c sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x74ce972c snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x1618e125 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8a4fb825 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe800437d register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xec0a4f41 sound_class +EXPORT_SYMBOL sound/soundcore 0xefa0abc9 register_sound_special +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0ce7f76e 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 0x6b3879c7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8a95d9cc snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9779c38e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd88d89a3 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe118019f 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 0x8994c4ba __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 0x000500d2 __sock_create +EXPORT_SYMBOL vmlinux 0x000c643b pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x000df3b7 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x00148653 vsnprintf +EXPORT_SYMBOL vmlinux 0x0021762d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x00248409 file_update_time +EXPORT_SYMBOL vmlinux 0x002d1002 thread_group_exited +EXPORT_SYMBOL vmlinux 0x00355167 ether_setup +EXPORT_SYMBOL vmlinux 0x003998f7 dump_page +EXPORT_SYMBOL vmlinux 0x005a2be7 fman_get_revision +EXPORT_SYMBOL vmlinux 0x005fd1bb scsi_dma_map +EXPORT_SYMBOL vmlinux 0x00836128 netdev_has_any_upper_dev +EXPORT_SYMBOL vmlinux 0x00917f4e proc_create +EXPORT_SYMBOL vmlinux 0x00aeabb0 sk_stream_error +EXPORT_SYMBOL vmlinux 0x00b4bc7b dev_addr_add +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00bb351a xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x00c704e0 param_set_uint +EXPORT_SYMBOL vmlinux 0x00cd33a3 nd_device_register +EXPORT_SYMBOL vmlinux 0x00d341a4 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dbe4df vme_register_bridge +EXPORT_SYMBOL vmlinux 0x00e7ce10 mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x00f5d272 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010f2705 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +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 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 0x01a03c97 module_refcount +EXPORT_SYMBOL vmlinux 0x01a64e8e jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bdf4d8 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01c19ed1 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x01d56cc3 netdev_features_change +EXPORT_SYMBOL vmlinux 0x01eee357 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0x0206e973 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x020904a4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x02197e6b deactivate_super +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x0255114c pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x02714814 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0278ac2f xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x027cd193 proc_set_size +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029d2f61 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x02ae7a1c xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0x02b1ea8c pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02d25f28 __put_page +EXPORT_SYMBOL vmlinux 0x02e280e6 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x0315a055 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x0320d219 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x032fbe87 tcp_mmap +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0370627e vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x0374c44e tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03930dc2 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x0396b907 tcp_connect +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03a800ec dev_addr_del +EXPORT_SYMBOL vmlinux 0x03a8dc36 read_cache_folio +EXPORT_SYMBOL vmlinux 0x03aa24c1 keyring_search +EXPORT_SYMBOL vmlinux 0x03afa57d mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x03b18d39 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03d6b2fc phy_connect +EXPORT_SYMBOL vmlinux 0x03d9a730 proto_unregister +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041481f5 udp_disconnect +EXPORT_SYMBOL vmlinux 0x042b4c51 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x043461c1 sock_rfree +EXPORT_SYMBOL vmlinux 0x04352acf bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x0436eb57 unix_detach_fds +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04526dc3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x04601b83 pci_save_state +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x046e64df xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x0474edef kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x0479aac1 seq_list_next_rcu +EXPORT_SYMBOL vmlinux 0x047d5abe skb_clone +EXPORT_SYMBOL vmlinux 0x047dd103 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x0481ca39 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0x0482994f insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x0483e0dc tty_write_room +EXPORT_SYMBOL vmlinux 0x0484c6c4 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x04863e28 hdmi_audio_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x04b38a68 tty_port_open +EXPORT_SYMBOL vmlinux 0x04bee4a3 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0x04bfb0c6 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x04c3c3e8 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x04c630ec dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x04ca0375 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x04db449e pci_map_rom +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04edb615 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x04f42a37 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x04fbe083 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0509df5e pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05291076 vfs_llseek +EXPORT_SYMBOL vmlinux 0x0540030e fqdir_exit +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x05590094 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x0573e742 phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05a4f256 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x05c4e07c _dev_alert +EXPORT_SYMBOL vmlinux 0x05c50f9c neigh_app_ns +EXPORT_SYMBOL vmlinux 0x05d1e500 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x05f0f9f1 dma_supported +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06166794 phy_read_paged +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0634568d skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x06438cc6 dst_dev_put +EXPORT_SYMBOL vmlinux 0x06457f64 devfreq_update_interval +EXPORT_SYMBOL vmlinux 0x064bf330 pipe_unlock +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x067281e3 dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x067b3d2e devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x0682d3da dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x06834b00 tty_devnum +EXPORT_SYMBOL vmlinux 0x06873c29 ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x068d6fb9 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x069de4ba pci_release_regions +EXPORT_SYMBOL vmlinux 0x06a0913d blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x06afd84d vmf_insert_pfn_prot +EXPORT_SYMBOL vmlinux 0x06b8544b netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bec3f0 serio_open +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06da28cc unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x06e08aff kernel_getpeername +EXPORT_SYMBOL vmlinux 0x06f53b7a ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x070b368b migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x071087fd kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x07187dcd kill_litter_super +EXPORT_SYMBOL vmlinux 0x071e3a78 blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0730776a kill_fasync +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x07544470 sync_blockdev_range +EXPORT_SYMBOL vmlinux 0x076035ee unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x0761ac4b blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x076e8ed3 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c4f158 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +EXPORT_SYMBOL vmlinux 0x07e742e3 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x07e99673 mdiobb_write +EXPORT_SYMBOL vmlinux 0x07ebc242 rproc_get_by_phandle +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 0x080627da xp_free +EXPORT_SYMBOL vmlinux 0x08082be1 vlan_dev_vlan_id +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 0x08333014 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x08356f32 fman_sp_set_buf_pools_in_asc_order_of_buf_sizes +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0855bede load_nls_default +EXPORT_SYMBOL vmlinux 0x085b3488 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x086d206c dev_mc_add +EXPORT_SYMBOL vmlinux 0x086f75c5 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x08ad4d65 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x08c2f8c1 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f65eb1 skb_pull +EXPORT_SYMBOL vmlinux 0x0920a2f4 pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x0935d22c noop_dirty_folio +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x09507a8e super_setup_bdi +EXPORT_SYMBOL vmlinux 0x095be2ae neigh_update +EXPORT_SYMBOL vmlinux 0x0965f1b7 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x0967c4a3 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x0969b82c pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098a1bc2 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x09a16bc1 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x09b0411f generic_perform_write +EXPORT_SYMBOL vmlinux 0x09ba90b6 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0x09c16215 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09e5eef2 pci_irq_vector +EXPORT_SYMBOL vmlinux 0x09ec8d0f ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a360942 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x0a4a36c8 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x0a6fb615 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7ccf34 seq_bprintf +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0ac64e7f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0ac75b09 md_handle_request +EXPORT_SYMBOL vmlinux 0x0acdc2f7 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad396f4 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x0ad67e9c __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x0ad80095 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x0aed9cf3 vme_master_request +EXPORT_SYMBOL vmlinux 0x0aedd49c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0af41e7f tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0af7ec61 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x0b0d05b5 tty_port_init +EXPORT_SYMBOL vmlinux 0x0b19d941 fasync_helper +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 0x0b5e5437 skb_copy_header +EXPORT_SYMBOL vmlinux 0x0b71e071 dma_find_channel +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b91570c is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x0b9e2c4e regset_get_alloc +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0baa5aff dev_mc_sync +EXPORT_SYMBOL vmlinux 0x0bae6ef8 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x0bb03911 set_create_files_as +EXPORT_SYMBOL vmlinux 0x0bbfa78c set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bde75d8 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x0bf0e4a2 __SCK__tp_func_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x0bfc1d1a check_zeroed_user +EXPORT_SYMBOL vmlinux 0x0c02a40d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0c10d6ae pci_request_region +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c33d54a keyring_clear +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c5da113 register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7663fc blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x0c7bee57 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x0c95b291 set_anon_super +EXPORT_SYMBOL vmlinux 0x0cb0ce0c pci_select_bars +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x0cc244e1 tcf_block_get +EXPORT_SYMBOL vmlinux 0x0cc4b4b6 crc_ccitt_false +EXPORT_SYMBOL vmlinux 0x0cc70c44 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x0cd5835b ipv6_flowlabel_exclusive +EXPORT_SYMBOL vmlinux 0x0cd82084 validate_slab_cache +EXPORT_SYMBOL vmlinux 0x0cdce87c rfkill_set_hw_state_reason +EXPORT_SYMBOL vmlinux 0x0cf0b1a1 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x0cfa9d53 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x0d04f6d1 dquot_resume +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d1c1d32 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x0d239103 seq_read +EXPORT_SYMBOL vmlinux 0x0d26759f dev_printk_emit +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d33da84 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x0d37b1af of_match_node +EXPORT_SYMBOL vmlinux 0x0d37e4d3 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d4bc7cd elv_rb_del +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d56e962 inet_ioctl +EXPORT_SYMBOL vmlinux 0x0d59175b simple_transaction_set +EXPORT_SYMBOL vmlinux 0x0d64de1a phy_request_interrupt +EXPORT_SYMBOL vmlinux 0x0d77116e poll_freewait +EXPORT_SYMBOL vmlinux 0x0d77d7fa i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x0d7a6e9a zap_page_range +EXPORT_SYMBOL vmlinux 0x0d9264a0 bdi_put +EXPORT_SYMBOL vmlinux 0x0d9ad375 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x0da23a7f cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0da821ce input_register_device +EXPORT_SYMBOL vmlinux 0x0dab90b4 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0x0db8d2e1 __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0dd3198f get_acl +EXPORT_SYMBOL vmlinux 0x0dd3ba69 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x0df77d04 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x0e1610d1 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e408c16 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e6021ce flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x0e6f11f7 __scm_destroy +EXPORT_SYMBOL vmlinux 0x0e8df07c refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0ea7f0d5 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x0eaa1078 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecc2486 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x0ed3a41f d_find_alias +EXPORT_SYMBOL vmlinux 0x0eea044a pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x0ef28c23 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0f05b37a fman_port_bind +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f1ca22c inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0x0f1fa73a end_page_writeback +EXPORT_SYMBOL vmlinux 0x0f20f085 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x0f240c4d pci_disable_msix +EXPORT_SYMBOL vmlinux 0x0f376416 new_inode +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f62268c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f67e0cd cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x0f6f3ff2 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x0f7512ca blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f8b7cab phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x0f8e1a1f security_sb_remount +EXPORT_SYMBOL vmlinux 0x0f958eb7 md_write_end +EXPORT_SYMBOL vmlinux 0x0f9e6bb0 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb1fff3 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbe6256 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0fc175e7 vfs_create +EXPORT_SYMBOL vmlinux 0x0fd12077 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0fd8bf73 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fda188b __fput_sync +EXPORT_SYMBOL vmlinux 0x0fe5003f rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x0ff991b1 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100e5b66 dns_query +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x10300b48 skb_seq_read +EXPORT_SYMBOL vmlinux 0x103417a2 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104210f3 of_device_is_available +EXPORT_SYMBOL vmlinux 0x1053fd75 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1064c565 da903x_query_status +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1068f807 param_set_ullong +EXPORT_SYMBOL vmlinux 0x107bb9bc seq_puts +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1089d97a folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x109e765b mmc_add_host +EXPORT_SYMBOL vmlinux 0x10b14d63 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x10b83002 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x10bc9e1f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x10bd859f pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0x10d48412 _dev_crit +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x1105b65f dev_add_pack +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11101226 file_remove_privs +EXPORT_SYMBOL vmlinux 0x11372c8f phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0x115684bb flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x1158e4b1 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117b9fa7 folio_unlock +EXPORT_SYMBOL vmlinux 0x117f95e8 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x1185e537 vme_irq_request +EXPORT_SYMBOL vmlinux 0x118be4e3 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x11aa27fa gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x11b521d6 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11dcc4da __register_chrdev +EXPORT_SYMBOL vmlinux 0x11de5439 console_stop +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120e7cc5 udp_seq_next +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x12154a23 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x12155b31 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x12196e12 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0x122f19b0 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x123a1d00 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x123ee9dc xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x124c085a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x124f701f mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x12996b5c d_obtain_root +EXPORT_SYMBOL vmlinux 0x129ee430 bio_uninit +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12ad9fcb vm_map_pages +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12cf9595 dec_node_page_state +EXPORT_SYMBOL vmlinux 0x12d5eda3 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0x12d5faa2 simple_empty +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x1301ef39 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x1301fc4e dma_map_sg_attrs +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 0x13289034 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x133a64a5 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13a83f1f __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x13b1ef3b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x13bae3e3 param_ops_bool +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d850a4 timestamp_truncate +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13da74c6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x13dddf3b tcp_req_err +EXPORT_SYMBOL vmlinux 0x13f4553b pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x13f98edb remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0x13fa60b6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x13fbd6de is_nd_btt +EXPORT_SYMBOL vmlinux 0x13fcff09 mr_dump +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x1413598d unlock_new_inode +EXPORT_SYMBOL vmlinux 0x141bc944 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x141c44a4 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x142c43c8 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x145e176e __vfs_getxattr +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x1467bb5a rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x1479507b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x147e2a08 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x1485c202 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x149eb4fe posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x149ec3f5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c2269a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14d6b2fb pci_enable_device +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14f93796 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x15040c1e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x15089109 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x1518e47a __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x15339dda sk_stop_timer +EXPORT_SYMBOL vmlinux 0x15373ad5 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155d9ac0 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x1560dd6e textsearch_prepare +EXPORT_SYMBOL vmlinux 0x15638d3c tcf_exts_change +EXPORT_SYMBOL vmlinux 0x1568ce8e security_path_mkdir +EXPORT_SYMBOL vmlinux 0x156c7f9e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x157be83e vme_lm_request +EXPORT_SYMBOL vmlinux 0x1592933b to_ndd +EXPORT_SYMBOL vmlinux 0x15a74aa1 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x15ba0bcc vfs_fsync +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 0x15d9c2fb tcf_action_exec +EXPORT_SYMBOL vmlinux 0x15e8468d __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x15e84a2f jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x160a238a devm_of_iomap +EXPORT_SYMBOL vmlinux 0x1614a726 simple_release_fs +EXPORT_SYMBOL vmlinux 0x1623f468 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163b4e69 empty_aops +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x163fb9af tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x1643a5d6 phy_read_mmd +EXPORT_SYMBOL vmlinux 0x16449562 open_exec +EXPORT_SYMBOL vmlinux 0x165e066c skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0x166a95d5 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16840d1e node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x168acdda watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x168e343f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16b16b12 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d601f0 arp_xmit +EXPORT_SYMBOL vmlinux 0x16d866ac sk_common_release +EXPORT_SYMBOL vmlinux 0x16d92bf2 iput +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e6d05b copy_string_kernel +EXPORT_SYMBOL vmlinux 0x16ec8397 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x16f5f92e tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x17133feb fiemap_prep +EXPORT_SYMBOL vmlinux 0x171ca46a of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x17672697 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x1778db2f pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x179c635b twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x17a15b30 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x17a76a1a param_ops_ullong +EXPORT_SYMBOL vmlinux 0x17cc852d of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x17e2cec2 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0x17e851ed ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x17f61ad7 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x180dc0d0 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0x181517ac security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x182c7780 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1835d5bf dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0x186dc7b3 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x18752b3c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189a5b31 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x189ca422 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x18a4d73c get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18c37885 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18efa298 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x191d1d82 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x19264e67 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x19372429 skb_dequeue +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x197532f9 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x198ea49e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19ab3ab7 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c347a5 dma_pool_create +EXPORT_SYMBOL vmlinux 0x19e334b6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x19e86f92 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x19f5eadf xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x1a074beb flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x1a09cf1b tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x1a0a289b ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a60471c of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x1a621b1f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab31c3d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1abb8113 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1acafcb7 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0f4f04 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x1b1023a6 to_nd_btt +EXPORT_SYMBOL vmlinux 0x1b1c2378 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x1b2a7abc amba_request_regions +EXPORT_SYMBOL vmlinux 0x1b362bf5 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0x1b500199 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b68fd24 qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b791cfb of_translate_address +EXPORT_SYMBOL vmlinux 0x1b8a11ea tcf_idr_create +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bc41a63 param_set_charp +EXPORT_SYMBOL vmlinux 0x1bcd2000 sync_file_create +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bdb4063 seq_pad +EXPORT_SYMBOL vmlinux 0x1be7ff36 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x1c1c2d9a import_iovec +EXPORT_SYMBOL vmlinux 0x1c572880 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e2b97 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c5fce05 bio_reset +EXPORT_SYMBOL vmlinux 0x1c8195a1 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1c887322 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x1ca3dcc2 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc06640 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1cc32fa2 pci_enable_wake +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd49ce9 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cd993cc vme_bus_num +EXPORT_SYMBOL vmlinux 0x1cdc93dd flow_block_cb_free +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1cdda90c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x1ce5f479 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1cf5efa6 xudma_rflow_get_id +EXPORT_SYMBOL vmlinux 0x1cfda8b0 tcp_peek_len +EXPORT_SYMBOL vmlinux 0x1d07e365 memdup_user_nul +EXPORT_SYMBOL vmlinux 0x1d1abdf0 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d43844f generic_delete_inode +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d70e3f7 tty_check_change +EXPORT_SYMBOL vmlinux 0x1d7680d5 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1d82f014 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x1d8fc2d8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x1d921d12 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1d9fa933 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +EXPORT_SYMBOL vmlinux 0x1dc9b26b page_mapping +EXPORT_SYMBOL vmlinux 0x1dcad495 dm_io +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 0x1deea764 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e202f3e rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x1e6a13e8 vfs_readlink +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e792edd __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea9184d sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x1eb9515f pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ee2720c ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x1eea82a0 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1f02a722 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1f181cc5 neigh_lookup +EXPORT_SYMBOL vmlinux 0x1f19411f end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x1f1b70b9 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x1f2a43b9 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1f3b49ca dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x1f483bbf balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f7ee148 current_in_userns +EXPORT_SYMBOL vmlinux 0x1f7fc9e9 task_work_add +EXPORT_SYMBOL vmlinux 0x1f842e23 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x1f967cb7 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc6f9bb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fea78b7 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1ffba38a pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x20151760 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2018db83 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x201feb7e inet_add_protocol +EXPORT_SYMBOL vmlinux 0x202a5b4b elv_rb_find +EXPORT_SYMBOL vmlinux 0x20343b20 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x204186b2 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204803c4 dquot_acquire +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20593abd blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x206207ad __bforget +EXPORT_SYMBOL vmlinux 0x20798b96 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x207b2482 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x208c36a5 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2090846a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae3348 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x20ae9dfd tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x20b4c88f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x20c2c122 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x20cbb30a __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x20ced2a5 iov_iter_xarray +EXPORT_SYMBOL vmlinux 0x20d65e40 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x20e5af10 of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2145b7cf nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x215af96f pagecache_get_page +EXPORT_SYMBOL vmlinux 0x2160beff sk_dst_check +EXPORT_SYMBOL vmlinux 0x217b0224 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x217d0729 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0x2180f61c vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219519c7 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x21b2147a mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x21b701b3 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x21b9f6f7 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21d3e856 kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x21d69e96 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21eaf045 device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f2aa10 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f60fe __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2239a5ac csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x223cc2ff inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x223f3b08 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x22412bef tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2264ef64 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x2272c1bf configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x22853b43 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0x22895bc3 tcp_sock_set_cork +EXPORT_SYMBOL vmlinux 0x22ac2fa9 _dev_notice +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b76c20 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x22e37550 dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0x22e7b217 vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0x234a718f vfs_get_tree +EXPORT_SYMBOL vmlinux 0x234dbf8e devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x23628a26 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x2367f5d7 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238df75d to_nd_dax +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23a2196b set_capacity +EXPORT_SYMBOL vmlinux 0x23a81bce tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x23b43d11 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23ba7096 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23dbec69 sg_miter_next +EXPORT_SYMBOL vmlinux 0x23ea4144 ip_defrag +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24095770 __do_once_done +EXPORT_SYMBOL vmlinux 0x2412aeb6 __put_user_ns +EXPORT_SYMBOL vmlinux 0x24214ddb netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x24280c4f dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245de196 vme_register_driver +EXPORT_SYMBOL vmlinux 0x2474eaf3 drop_super +EXPORT_SYMBOL vmlinux 0x2477500a nf_hook_slow +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248eb8d9 ppp_input_error +EXPORT_SYMBOL vmlinux 0x24b1c54e vma_alloc_folio +EXPORT_SYMBOL vmlinux 0x24bda078 ps2_command +EXPORT_SYMBOL vmlinux 0x24cd10ee remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24e0580e input_register_handler +EXPORT_SYMBOL vmlinux 0x24ec17bb bio_copy_data +EXPORT_SYMBOL vmlinux 0x24f9d1bb param_get_ullong +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x25321c63 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x255b6057 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x255cb6b4 pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0x2577ef88 clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x25a356ec genphy_loopback +EXPORT_SYMBOL vmlinux 0x25a6b244 dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x25ddcf83 request_firmware +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f45ef1 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x25fa9e95 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x2603aa9a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x2630c3f4 md_bitmap_free +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x26580c74 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x266de48d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x26726407 register_quota_format +EXPORT_SYMBOL vmlinux 0x26766600 devm_ioremap +EXPORT_SYMBOL vmlinux 0x267b2a35 seq_file_path +EXPORT_SYMBOL vmlinux 0x267b3798 freeze_bdev +EXPORT_SYMBOL vmlinux 0x267e652d netdev_pick_tx +EXPORT_SYMBOL vmlinux 0x267f28f3 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x269dafcb neigh_seq_next +EXPORT_SYMBOL vmlinux 0x26a350cf mmc_remove_host +EXPORT_SYMBOL vmlinux 0x26a4f9d0 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x26a7852d dev_remove_offload +EXPORT_SYMBOL vmlinux 0x26ab25a9 mmc_get_card +EXPORT_SYMBOL vmlinux 0x26b5bf59 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x26b8e137 ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x270892bd mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270deee2 netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x27190448 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271fe759 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x27213005 ip_sock_set_mtu_discover +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 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277a5888 has_capability +EXPORT_SYMBOL vmlinux 0x277e1a5a pci_assign_resource +EXPORT_SYMBOL vmlinux 0x278042c8 set_posix_acl +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 0x278884b5 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c24ed2 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x27c3c728 qman_release_fqid +EXPORT_SYMBOL vmlinux 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27de3aab tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27ede9d9 kern_path_create +EXPORT_SYMBOL vmlinux 0x27f07be4 f_setown +EXPORT_SYMBOL vmlinux 0x27fca05a eth_get_headlen +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2830859f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x2850933f xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x28610470 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28849bfb ip_local_deliver +EXPORT_SYMBOL vmlinux 0x28a50788 mmc_request_done +EXPORT_SYMBOL vmlinux 0x28b1f2fc scsi_host_busy +EXPORT_SYMBOL vmlinux 0x28c0650d blk_integrity_register +EXPORT_SYMBOL vmlinux 0x28d71c2c km_policy_notify +EXPORT_SYMBOL vmlinux 0x28d96ca3 dev_uc_init +EXPORT_SYMBOL vmlinux 0x28f33d5c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x28fa8db7 register_shrinker +EXPORT_SYMBOL vmlinux 0x290eec14 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2916a648 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0x2937eef4 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x297a062c complete_request_key +EXPORT_SYMBOL vmlinux 0x297dda21 dma_map_resource +EXPORT_SYMBOL vmlinux 0x29c7a0fd brioctl_set +EXPORT_SYMBOL vmlinux 0x29de8eae __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e8a49a mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x29eb1df4 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x29ffcf8f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x2a025eac file_ns_capable +EXPORT_SYMBOL vmlinux 0x2a04d982 genl_notify +EXPORT_SYMBOL vmlinux 0x2a09d970 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x2a211301 ps2_init +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a400177 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x2a436686 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x2a6849f0 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x2a8559a3 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a92a687 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9b954d irq_set_chip +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ab83975 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x2ac3b75c tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x2ad26cdc node_data +EXPORT_SYMBOL vmlinux 0x2ae9ec18 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x2afc98ef lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x2b0a29f9 dquot_transfer +EXPORT_SYMBOL vmlinux 0x2b114001 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b2021a1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2b4899f1 vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b826a47 finalize_exec +EXPORT_SYMBOL vmlinux 0x2b85df50 xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0x2b88dc1f security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x2b958850 sk_wait_data +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba4be62 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bbb8c88 qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x2bc173f7 phy_detach +EXPORT_SYMBOL vmlinux 0x2bd41a8f pci_get_device +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be0e242 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c0a8dc8 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x2c14a57d of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2ed8fe dev_get_by_name +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c792739 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2caafb04 nf_log_register +EXPORT_SYMBOL vmlinux 0x2cac8c98 load_nls +EXPORT_SYMBOL vmlinux 0x2cb64df8 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cd0ae91 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x2cd9ef90 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2ceced58 md_register_thread +EXPORT_SYMBOL vmlinux 0x2cfdb201 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2cff31d2 devm_request_resource +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d289925 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x2d296362 twl6040_power +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d32efdf pci_dev_put +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4cad13 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d535fdc pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x2d72113d padata_free_shell +EXPORT_SYMBOL vmlinux 0x2d7b9d7c netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0x2d90ce96 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2d9f054a phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x2da6bd69 scsi_host_get +EXPORT_SYMBOL vmlinux 0x2db38929 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x2dccb1ed dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2de04db0 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x2de125c0 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2df63467 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2e0b1deb dma_fence_get_status +EXPORT_SYMBOL vmlinux 0x2e136302 vfs_ioctl +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2c4ddc logic_inw +EXPORT_SYMBOL vmlinux 0x2e36cbef adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e49e664 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x2e4eeae2 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e640be5 dst_release_immediate +EXPORT_SYMBOL vmlinux 0x2e66e10b mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x2e6740d5 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x2e6af971 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x2e70b3fb phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0x2e990b11 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x2ea31d89 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x2eb8c6d3 padata_alloc +EXPORT_SYMBOL vmlinux 0x2ebaf22b tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x2ec53558 inet_frags_init +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2ee6756d netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x2ee74e14 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x2efee0de __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f19bc66 pci_iomap +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f313d10 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f37a6cd mdio_device_free +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3d5509 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x2f4a0348 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x2f4c4574 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x2f653f9b seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f80fca4 seq_putc +EXPORT_SYMBOL vmlinux 0x2f83439f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x2f8b0b1a acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0x2fa0eac1 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x2fa85516 __netif_rx +EXPORT_SYMBOL vmlinux 0x2fade308 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2feeac24 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x3014967f tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x303198cb t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x303cf2d9 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3073d923 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x307a9c89 fman_bind +EXPORT_SYMBOL vmlinux 0x308ecd61 __find_get_block +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30af0f65 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x30af8497 pci_resize_resource +EXPORT_SYMBOL vmlinux 0x30b4ce76 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x30bebe04 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x30d310ad ptp_clock_index +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30edbbce fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3100aa37 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x310150ac elevator_alloc +EXPORT_SYMBOL vmlinux 0x31154a7f __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x31312423 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0x3143b18c filemap_flush +EXPORT_SYMBOL vmlinux 0x31456457 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3189ebf0 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x318a0f9d md_check_recovery +EXPORT_SYMBOL vmlinux 0x3192a4b2 seq_write +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a092a0 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31aada2c fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x31bf8a70 sync_filesystem +EXPORT_SYMBOL vmlinux 0x31cc6a33 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x31e03a52 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x31e2fa72 blk_get_queue +EXPORT_SYMBOL vmlinux 0x31fe1072 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x32007962 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3214dfca serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x3239b0f9 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x3252b28b mount_subtree +EXPORT_SYMBOL vmlinux 0x325a3fc6 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x32952de6 scmd_printk +EXPORT_SYMBOL vmlinux 0x329fa06e pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x32a654df tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0x32a927e3 __scsi_execute +EXPORT_SYMBOL vmlinux 0x32c2031d xudma_get_device +EXPORT_SYMBOL vmlinux 0x32c5891d pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32d5c2df nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x330da42a xp_alloc_batch +EXPORT_SYMBOL vmlinux 0x33202402 dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x33238fd6 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x3325d11b __post_watch_notification +EXPORT_SYMBOL vmlinux 0x3368d7b7 blk_start_plug +EXPORT_SYMBOL vmlinux 0x33701c2d __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x338b9555 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x338f6111 vmap +EXPORT_SYMBOL vmlinux 0x33951584 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x33b4ada5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x33b6d9b1 update_region +EXPORT_SYMBOL vmlinux 0x33bf4762 fs_param_is_bool +EXPORT_SYMBOL vmlinux 0x33e4de43 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fb8750 folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340133f8 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x340327b6 default_llseek +EXPORT_SYMBOL vmlinux 0x340b71e4 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x340ef257 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x342d09c6 locks_init_lock +EXPORT_SYMBOL vmlinux 0x349082b6 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34a84ec3 would_dump +EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34bac456 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x34c30bee scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34d20d7a inet_select_addr +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34f3428d mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x35005fc1 _dev_info +EXPORT_SYMBOL vmlinux 0x3505a456 phy_init_eee +EXPORT_SYMBOL vmlinux 0x3509699f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352b344e xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x352e11ba dev_get_iflink +EXPORT_SYMBOL vmlinux 0x3532c31e __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3541ac0c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x355c0c0c devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x356ccea1 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x35912382 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x35929d3e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x359413ad __scm_send +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35a9c718 noop_llseek +EXPORT_SYMBOL vmlinux 0x35b3833b param_ops_ulong +EXPORT_SYMBOL vmlinux 0x35c2380c mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0x35e27601 page_symlink +EXPORT_SYMBOL vmlinux 0x35e3659f ipv4_specific +EXPORT_SYMBOL vmlinux 0x35ecb9fb handle_edge_irq +EXPORT_SYMBOL vmlinux 0x35f71ae4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x35ffdbe9 mr_table_dump +EXPORT_SYMBOL vmlinux 0x36042a4e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x360a216b mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36473386 ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3651d15b mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x366183b6 skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x366befab kernel_connect +EXPORT_SYMBOL vmlinux 0x36729d36 d_make_root +EXPORT_SYMBOL vmlinux 0x36a8dc3b pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x36a99904 input_event +EXPORT_SYMBOL vmlinux 0x36b52ed6 skb_store_bits +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36c778d7 dev_get_stats +EXPORT_SYMBOL vmlinux 0x36d3a34d devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x36d9b0cf __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x36dbdd56 md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x36e26057 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x36e7b6c4 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x36fc6b7d free_task +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x3720ca7a phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x37264923 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x375b6ebe pci_claim_resource +EXPORT_SYMBOL vmlinux 0x375fd96b tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x37a1e8ef capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x37b322c1 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c2d984 give_up_console +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37ffdb02 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x3807af49 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382be5ef xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x3842c454 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x384d6cc7 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x3855179f kfree_skb_reason +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 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x38a5d76e sock_create +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38c4b76e proc_symlink +EXPORT_SYMBOL vmlinux 0x38d60df0 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x3905edc9 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x390912f5 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x390d19b7 sock_from_file +EXPORT_SYMBOL vmlinux 0x3910c57f from_kuid +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393a6491 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x3958660a folio_mapped +EXPORT_SYMBOL vmlinux 0x3974177d genphy_read_lpa +EXPORT_SYMBOL vmlinux 0x39801482 tty_register_device +EXPORT_SYMBOL vmlinux 0x39851e24 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x3999b6ec skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399d8453 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x39b304e2 genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c3eacb devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x3a07f7ee scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a175fe0 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x3a1904c8 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x3a1d965d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x3a1e198e vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a337d73 iproc_msi_init +EXPORT_SYMBOL vmlinux 0x3a3710d7 device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x3a4c78c9 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a631786 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x3a6ba79e xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3a915b48 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3a9dbc49 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x3aa158d5 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x3aaef829 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abe79ab clk_get +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3ad5cda3 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x3ad7a5d5 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x3ada9e06 acpi_check_region +EXPORT_SYMBOL vmlinux 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3aece849 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x3af3db8f reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x3af7f0ff dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b170540 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b23ffb4 netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x3b271289 kill_pgrp +EXPORT_SYMBOL vmlinux 0x3b2bcf8e vlan_vid_del +EXPORT_SYMBOL vmlinux 0x3b2f56c4 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b44b066 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3b475b25 skb_split +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6bc2b1 d_mark_dontcache +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b82b680 pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0x3b8b2de5 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x3b8dec74 dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x3b8fc9d6 pin_user_pages +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3bad2f8f devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x3bb2aa2f __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3bb60456 fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x3bbcd73b filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x3bdcd523 folio_alloc +EXPORT_SYMBOL vmlinux 0x3be57832 dev_driver_string +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3bea59c0 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1b8007 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3a5b8c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c495cf7 vme_bus_type +EXPORT_SYMBOL vmlinux 0x3c56f1c4 nd_btt_version +EXPORT_SYMBOL vmlinux 0x3c5f6670 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x3c6746a4 __udp_disconnect +EXPORT_SYMBOL vmlinux 0x3c6f1386 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x3c909cad devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cbd6fb4 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x3cc31bd2 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3ce06520 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x3ce066d2 kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce572cd devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3ce71b64 input_set_keycode +EXPORT_SYMBOL vmlinux 0x3cf7f22f unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3cf8a281 param_get_charp +EXPORT_SYMBOL vmlinux 0x3cfbc715 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d03b264 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0x3d0ac97f flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d210b55 request_key_tag +EXPORT_SYMBOL vmlinux 0x3d2d1080 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3d37cb70 xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x3d461242 cdev_add +EXPORT_SYMBOL vmlinux 0x3d47f9d9 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3d6f2b56 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x3d837d8d simple_write_begin +EXPORT_SYMBOL vmlinux 0x3d88cc49 pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x3d8c8a81 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3d9f91a3 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x3da19fe2 netdev_err +EXPORT_SYMBOL vmlinux 0x3da30cf8 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3dabf271 memcg_sockets_enabled_key +EXPORT_SYMBOL vmlinux 0x3dac5b35 tcp_time_wait +EXPORT_SYMBOL vmlinux 0x3dac779a bpf_sk_lookup_enabled +EXPORT_SYMBOL vmlinux 0x3dad9978 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x3db0f215 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x3dbb1a2b page_pool_put_page_bulk +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 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3dea1603 path_is_under +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0b187b iget_failed +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e55da29 ip6_output +EXPORT_SYMBOL vmlinux 0x3e6423c1 of_iomap +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e9dbacc serio_close +EXPORT_SYMBOL vmlinux 0x3ea066e0 param_set_invbool +EXPORT_SYMBOL vmlinux 0x3ea18df6 rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x3ebfd50c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x3ec70c24 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3ecdeaa3 d_add_ci +EXPORT_SYMBOL vmlinux 0x3ece2c78 __devm_request_region +EXPORT_SYMBOL vmlinux 0x3eeb1716 vfs_create_mount +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efa5883 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3f041580 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3f05494b ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f17b699 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3f27924d cdrom_release +EXPORT_SYMBOL vmlinux 0x3f29361a ip_frag_init +EXPORT_SYMBOL vmlinux 0x3f2aaa5e unregister_binfmt +EXPORT_SYMBOL vmlinux 0x3f2ec23f i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f545b43 single_open_size +EXPORT_SYMBOL vmlinux 0x3f70ef0b ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f909278 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x3f911ae4 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3f9229f3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc6aadc dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x3fc7ad98 page_pool_create +EXPORT_SYMBOL vmlinux 0x3fcf09ec blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fef67cd dqget +EXPORT_SYMBOL vmlinux 0x3ff186fa pps_event +EXPORT_SYMBOL vmlinux 0x4012e1c0 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x401d5c19 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x402be266 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x4042a58a rproc_boot +EXPORT_SYMBOL vmlinux 0x406c24b2 tty_lock +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40aa79a5 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x40bc8710 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0x40be3bee pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40db1ea5 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x40eb61f6 has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x410cce15 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x410d488b jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x410fe60b bh_submit_read +EXPORT_SYMBOL vmlinux 0x41195ad9 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x4175168d redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x41787d8b rproc_add_subdev +EXPORT_SYMBOL vmlinux 0x417f0fba vme_master_mmap +EXPORT_SYMBOL vmlinux 0x41822556 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419d8dee skb_queue_purge +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41d2a5e6 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x41d8c763 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x41e19806 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41f53b74 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x4216f834 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425123cd bpf_link_put +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x427be2be jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x428d5a48 seq_read_iter +EXPORT_SYMBOL vmlinux 0x428e361c request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x42af8759 inode_permission +EXPORT_SYMBOL vmlinux 0x42b0c34e cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42c907fd netdev_update_features +EXPORT_SYMBOL vmlinux 0x42dedc3c mount_single +EXPORT_SYMBOL vmlinux 0x42ec026e ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x42fdc714 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43053a18 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x43299231 vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0x432a48a1 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x432bce83 kthread_bind +EXPORT_SYMBOL vmlinux 0x43342af4 redraw_screen +EXPORT_SYMBOL vmlinux 0x433678ab rproc_detach +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433a964d acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x4348e0b3 padata_do_serial +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435338f8 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x435a96c1 dev_deactivate +EXPORT_SYMBOL vmlinux 0x436482d5 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439040e4 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b7eeff input_set_timestamp +EXPORT_SYMBOL vmlinux 0x43ba9745 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0x43c11206 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x43c84df3 seq_release +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d230e5 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x43e7cf45 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x43ee3119 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x43f9b324 input_unregister_device +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4400af01 blk_queue_split +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x4408a00e inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x440a16d2 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x441737d2 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4422643e fb_pan_display +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444f7bee vm_insert_pages +EXPORT_SYMBOL vmlinux 0x4461f2c1 netdev_change_features +EXPORT_SYMBOL vmlinux 0x44620fe7 d_delete +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4468cda3 seq_printf +EXPORT_SYMBOL vmlinux 0x446a583e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x44859b92 of_phy_connect +EXPORT_SYMBOL vmlinux 0x4489435c skb_pull_data +EXPORT_SYMBOL vmlinux 0x448d4be0 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44c73af2 tty_port_close +EXPORT_SYMBOL vmlinux 0x44d74fe2 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45043352 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x4528656a ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45351855 kernel_bind +EXPORT_SYMBOL vmlinux 0x4538524b __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x4539f423 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454df9e9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x455b8099 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x45649ab5 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x4564cc52 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457f150b inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x45800128 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x4583ee8c tty_unregister_device +EXPORT_SYMBOL vmlinux 0x45848736 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x458dc54d lock_rename +EXPORT_SYMBOL vmlinux 0x459c4d1e param_get_ulong +EXPORT_SYMBOL vmlinux 0x45a576ed ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x45c3e41a napi_gro_frags +EXPORT_SYMBOL vmlinux 0x45c97386 md_error +EXPORT_SYMBOL vmlinux 0x45d3236b pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x45ec75f1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x4623a216 pid_task +EXPORT_SYMBOL vmlinux 0x463d3292 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x46459512 configfs_register_group +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x466a9359 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46709cd0 security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0x467112a1 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x46781da1 sock_no_connect +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4683c33d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46abffe6 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x46ae3ff4 input_register_handle +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46ff7d12 qcom_scm_iommu_secure_ptbl_size +EXPORT_SYMBOL vmlinux 0x46ffedfa blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x470612dc fman_port_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x47065c73 cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x472b7c3f filemap_range_has_page +EXPORT_SYMBOL vmlinux 0x473bd7b6 unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0x473c605e fb_set_cmap +EXPORT_SYMBOL vmlinux 0x4749df83 file_modified +EXPORT_SYMBOL vmlinux 0x4757815c crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x4762b304 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x476afb98 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x476e2f74 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x477abcd5 key_put +EXPORT_SYMBOL vmlinux 0x478a8dd2 __register_nls +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47937a71 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x47b4a470 d_prune_aliases +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 0x47d61df4 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x47d8d301 __cond_resched_rwlock_read +EXPORT_SYMBOL vmlinux 0x47f77ffb serio_reconnect +EXPORT_SYMBOL vmlinux 0x480e6e24 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481b8e5d ll_rw_block +EXPORT_SYMBOL vmlinux 0x4821d71d ethtool_rx_flow_rule_create +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 0x485498b2 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485f4595 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x486fac86 tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x488fecd1 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x48980985 noop_fsync +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a289be migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48af5b68 inet_add_offload +EXPORT_SYMBOL vmlinux 0x48b045e1 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48be0c36 sk_alloc +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48e448ad pci_disable_device +EXPORT_SYMBOL vmlinux 0x48e681f0 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x48ffb3b5 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490acc76 dput +EXPORT_SYMBOL vmlinux 0x490e1454 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x491330a0 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x49205ea6 dev_mc_init +EXPORT_SYMBOL vmlinux 0x4926598d msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x492b4651 fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0x49327688 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x49379e2e __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x494e5711 xp_dma_map +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4958286d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x49589807 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x498390f0 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x499c8000 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x499e71dc setattr_prepare +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49a7ee98 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c2544b fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x49ccf3cb sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x49ce7ded sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x49d19a9b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x49d639eb security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x49e2bc20 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x49f46d76 mntput +EXPORT_SYMBOL vmlinux 0x49f760ae dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x49f86b37 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x49f93208 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x4a19c688 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x4a20994f sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4a27b639 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x4a280a5d tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a476579 generic_listxattr +EXPORT_SYMBOL vmlinux 0x4a595185 netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x4a728c2d md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x4a8421ed del_gendisk +EXPORT_SYMBOL vmlinux 0x4a8e8b3e __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4ab72287 of_chosen +EXPORT_SYMBOL vmlinux 0x4ac78f55 mmc_retune_release +EXPORT_SYMBOL vmlinux 0x4ac9f9fc vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x4adefe6a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4aefeb32 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b089f4c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b19ae5e mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x4b23bef2 __mdiobus_read +EXPORT_SYMBOL vmlinux 0x4b53b52f clear_inode +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 0x4b78c2ab nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0x4b866d44 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x4b9e503d add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x4ba97fab __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x4bacf494 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x4bb40ca5 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bcc5645 phy_attach +EXPORT_SYMBOL vmlinux 0x4bdd399d netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x4bdde1c4 set_disk_ro +EXPORT_SYMBOL vmlinux 0x4be0765e fwnode_irq_get +EXPORT_SYMBOL vmlinux 0x4be254f1 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x4be8c4f3 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x4bee53a1 mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf7da0c dev_add_offload +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c08358b bdi_register +EXPORT_SYMBOL vmlinux 0x4c11321c ilookup +EXPORT_SYMBOL vmlinux 0x4c180445 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4c227955 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x4c27ca1b kill_pid +EXPORT_SYMBOL vmlinux 0x4c312eca _dev_printk +EXPORT_SYMBOL vmlinux 0x4c398a74 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x4c3fef0e __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c4de600 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x4c588214 simple_rename +EXPORT_SYMBOL vmlinux 0x4c6025ea tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x4c93fcf9 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x4c97a228 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x4c9a2a70 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x4c9bdd45 io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x4c9da813 udp_read_sock +EXPORT_SYMBOL vmlinux 0x4cad4d09 sock_register +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc5a08b secpath_set +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0d7552 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4d112e97 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0x4d221960 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4d2a1dd6 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d31779f key_unlink +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d67ba36 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x4d848dc8 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x4d8e7066 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d93812a kthread_stop +EXPORT_SYMBOL vmlinux 0x4d94453a nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4db8c3d6 input_grab_device +EXPORT_SYMBOL vmlinux 0x4dc66928 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4de00cc5 devfreq_update_target +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 0x4e1412b9 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x4e1f04a1 seq_path +EXPORT_SYMBOL vmlinux 0x4e1ff9be input_get_keycode +EXPORT_SYMBOL vmlinux 0x4e20bcf8 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x4e2e74c1 qcom_scm_io_readl +EXPORT_SYMBOL vmlinux 0x4e335e8e devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e3f64dc mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x4e4b8822 dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x4e4c3ee7 fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e5449c5 vme_slave_request +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e59aa86 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x4e6888f9 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8b3d7a __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea86075 phy_init_hw +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eaf09c5 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x4eb781e4 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x4ebcee7e param_ops_long +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecc3750 xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x4ee2e2dc flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0x4efaf072 dev_set_alias +EXPORT_SYMBOL vmlinux 0x4f142157 release_sock +EXPORT_SYMBOL vmlinux 0x4f19a30d proc_create_data +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f5d7a38 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4f5f9306 sock_no_listen +EXPORT_SYMBOL vmlinux 0x4f6550fa dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f894f07 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8f91f2 page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x4f981c50 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4f9dd577 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x4fa2965b get_phy_device +EXPORT_SYMBOL vmlinux 0x4fada7fd tty_port_hangup +EXPORT_SYMBOL vmlinux 0x4fb64a18 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x4fc254d4 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x4fda88e4 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4fe9e21d mntget +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 0x5017d291 flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x50186bce filemap_check_errors +EXPORT_SYMBOL vmlinux 0x501c7611 should_remove_suid +EXPORT_SYMBOL vmlinux 0x501e1326 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0x50200556 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x502dd1ed in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x50317dc7 tty_hangup +EXPORT_SYMBOL vmlinux 0x50417b84 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0x5058d2b2 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x50693c5b kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x50764319 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x5079a0ef file_open_root +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x509e360c rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50b67f36 sget_fc +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 0x50c89212 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50ec20c9 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x50fe0eee uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x50ff3bd5 dump_emit +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x51180031 mpage_readahead +EXPORT_SYMBOL vmlinux 0x513d395b fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x513e2bb8 dev_activate +EXPORT_SYMBOL vmlinux 0x51461fca __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x514f38ac mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5158dcce pci_reenable_device +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x516a62c0 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x516c3c98 param_set_int +EXPORT_SYMBOL vmlinux 0x5194f32c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x51a341b3 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51ad7536 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x51c7f15f neigh_for_each +EXPORT_SYMBOL vmlinux 0x51ca4e05 backlight_device_register +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51f910bc kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x52034137 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x5218bb28 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x521fc340 kernel_read +EXPORT_SYMBOL vmlinux 0x52498853 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x5255746c fb_set_suspend +EXPORT_SYMBOL vmlinux 0x5263eae9 genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5279b14b find_inode_rcu +EXPORT_SYMBOL vmlinux 0x529686b7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a2aedf __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x52a6a467 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x52c867cb fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x52d0c973 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dc78c1 block_write_end +EXPORT_SYMBOL vmlinux 0x52dca13f mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e8e083 tcf_idr_release +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52f9a8cd __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530d75d1 xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x5316ad07 configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0x53279ad0 ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x534ed369 vfs_statfs +EXPORT_SYMBOL vmlinux 0x5367a596 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x53880d75 get_user_pages +EXPORT_SYMBOL vmlinux 0x5389a744 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x5398604b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x53aee849 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53bd440a iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x53bdfcbb tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x53d77c9b genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x53d8d97a skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x53dde595 xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0x53ed70f9 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x53eed79f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f4c44c wake_up_process +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x5426f1c4 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x542da2fd add_watch_to_object +EXPORT_SYMBOL vmlinux 0x5432b591 blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544af9df tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x544c1716 inode_init_owner +EXPORT_SYMBOL vmlinux 0x545afb6c page_mapped +EXPORT_SYMBOL vmlinux 0x545d98c9 blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x5462eea6 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x546b46e4 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0x546ec2c1 iov_iter_init +EXPORT_SYMBOL vmlinux 0x54982fa4 tcf_em_register +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54b57c35 flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x54bfacc8 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea6dfe xen_start_flags +EXPORT_SYMBOL vmlinux 0x54f47b73 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x54f550d5 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x54ff3060 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x5506b8f7 netlbl_bitmap_setbit +EXPORT_SYMBOL vmlinux 0x5508f28d bman_acquire +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x552dd01b nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x555fcee5 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0x55647ffd pnp_device_attach +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x557a7a04 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558d1347 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x5599a29d sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x559c4caf may_setattr +EXPORT_SYMBOL vmlinux 0x55ce2121 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x55ce4e69 imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0x55d242c4 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x55d28113 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb89e3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563703b0 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x565251ab netif_carrier_off +EXPORT_SYMBOL vmlinux 0x565c9729 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x5660f6a8 blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x56680fd5 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x5668b6dd devm_register_netdev +EXPORT_SYMBOL vmlinux 0x5671db7e tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x56a68373 param_get_bool +EXPORT_SYMBOL vmlinux 0x56a90347 tcp_poll +EXPORT_SYMBOL vmlinux 0x56b9ed99 iterate_dir +EXPORT_SYMBOL vmlinux 0x56bd93f8 sock_set_mark +EXPORT_SYMBOL vmlinux 0x56bfb9f2 dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cb29bf iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x56d1bca6 make_kgid +EXPORT_SYMBOL vmlinux 0x56d5f577 mdiobus_write +EXPORT_SYMBOL vmlinux 0x56deb496 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x5701a87e pci_match_id +EXPORT_SYMBOL vmlinux 0x571a346f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576e560e scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x577aafdb vme_init_bridge +EXPORT_SYMBOL vmlinux 0x578c2a83 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579aa9bb scsi_device_get +EXPORT_SYMBOL vmlinux 0x57ba429e tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c27ecf mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but +EXPORT_SYMBOL vmlinux 0x57c760a7 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x57ceb56a of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x57d45a17 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e6a75c ip6_xmit +EXPORT_SYMBOL vmlinux 0x57ef5ced fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x5801fe88 block_write_begin +EXPORT_SYMBOL vmlinux 0x5806be18 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581d687b copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x5828b376 uart_match_port +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x5879804d seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587e62a7 d_instantiate_anon +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x588283c3 sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5896be09 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bcf627 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x58c25408 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fd2e23 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x590209be qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x591a39da iterate_fd +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5945aa9c prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x595ad9ba pci_get_class +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596528e4 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0x5967eaa5 pci_choose_state +EXPORT_SYMBOL vmlinux 0x5972f545 ps2_end_command +EXPORT_SYMBOL vmlinux 0x597fcd9d netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x598f0c45 __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x59937779 dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0x59971ae1 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0x599a96ba devm_free_irq +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 0x59da59e7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x59dcfcb0 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x59e57de0 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x59f562f7 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x59fb1613 vme_irq_free +EXPORT_SYMBOL vmlinux 0x5a08ec21 register_qdisc +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a144f85 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x5a1b67c3 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x5a1b88c4 __bio_advance +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a322ce9 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a583105 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a62f4cd xp_can_alloc +EXPORT_SYMBOL vmlinux 0x5a8c8e69 rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a94379c dev_load +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9a38dd __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa47685 sock_no_linger +EXPORT_SYMBOL vmlinux 0x5aa9159d locks_remove_posix +EXPORT_SYMBOL vmlinux 0x5aae5c23 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5ac0a55c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x5ad28547 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae8cc53 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x5af382eb netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x5b116a36 __alloc_pages +EXPORT_SYMBOL vmlinux 0x5b1215bc devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x5b191f53 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b42382c nd_device_unregister +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5955d4 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5b6f0282 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x5b72ccfb of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x5b7918a4 fs_param_is_fd +EXPORT_SYMBOL vmlinux 0x5b79a597 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x5b7e26e5 security_path_unlink +EXPORT_SYMBOL vmlinux 0x5b8b32d3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5ba238f1 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x5bb31768 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x5bb740ec input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5bb7b6a5 __folio_lock +EXPORT_SYMBOL vmlinux 0x5bbc7813 reuseport_stop_listen_sock +EXPORT_SYMBOL vmlinux 0x5bc1d6c4 of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5bf40137 qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0x5c055cb8 rproc_report_crash +EXPORT_SYMBOL vmlinux 0x5c137661 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c409721 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5c4727ea ptp_clock_register +EXPORT_SYMBOL vmlinux 0x5c52534e __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5c5b7290 __skb_ext_del +EXPORT_SYMBOL vmlinux 0x5c63b1b6 rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x5c68e434 page_get_link +EXPORT_SYMBOL vmlinux 0x5c76c863 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x5c7d2766 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x5c99914b pmem_sector_size +EXPORT_SYMBOL vmlinux 0x5ca0d808 vfs_get_super +EXPORT_SYMBOL vmlinux 0x5cab3db8 inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x5cac3e01 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5cccecf8 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5cfee78d locks_delete_block +EXPORT_SYMBOL vmlinux 0x5d0210d2 cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d3839cc blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5d46ec04 gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d51e814 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x5d558a13 fb_get_mode +EXPORT_SYMBOL vmlinux 0x5d59e2d6 sock_edemux +EXPORT_SYMBOL vmlinux 0x5d6e1d43 rpmh_write +EXPORT_SYMBOL vmlinux 0x5d818564 napi_disable +EXPORT_SYMBOL vmlinux 0x5d825437 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x5d945a89 fget +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5db5e710 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x5db8d5cd scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5dc9c669 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x5dce0a72 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5ddefe46 mmput_async +EXPORT_SYMBOL vmlinux 0x5e051d24 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e11d5aa generic_writepages +EXPORT_SYMBOL vmlinux 0x5e2e295f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e390ea9 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0x5e50fea9 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x5e59f470 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x5e5aa867 proc_mkdir +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e78f63d tty_port_put +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e90a69f flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb58b21 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5eb6036a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x5ec05d11 inode_init_always +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efd9857 devfreq_update_status +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 0x5f0f38e5 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5f10a04f is_nd_dax +EXPORT_SYMBOL vmlinux 0x5f2b2a9e netlink_net_capable +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f37777a setup_new_exec +EXPORT_SYMBOL vmlinux 0x5f475fdf fc_mount +EXPORT_SYMBOL vmlinux 0x5f4ce0aa thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0x5f4d6253 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5f4eb1dc tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6ca4cb skb_copy +EXPORT_SYMBOL vmlinux 0x5f7d1ef8 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5faf71f4 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x5fb309fa input_close_device +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fc9713d init_net +EXPORT_SYMBOL vmlinux 0x5fed178c meson_sm_call +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x60072aa0 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x600982ce __f_setown +EXPORT_SYMBOL vmlinux 0x6010a812 xp_alloc +EXPORT_SYMBOL vmlinux 0x60141b4c dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ab3e6 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603d725c inc_nlink +EXPORT_SYMBOL vmlinux 0x60424b86 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x606443c2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x60951faa param_set_short +EXPORT_SYMBOL vmlinux 0x60983283 skb_append +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b2522a filp_open +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60c83917 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x60d4ab10 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60e4413f cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x60e6a79d phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x60eb8760 __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x60f14318 filp_close +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x611809e8 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612e785c inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x6149a9e9 param_ops_string +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x6160baab jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6173c4da kmalloc_caches +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x61815c10 rpmh_write_batch +EXPORT_SYMBOL vmlinux 0x61839f5e pci_disable_ptm +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 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c2b915 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x61c2f34c __lock_buffer +EXPORT_SYMBOL vmlinux 0x61d93c2f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x61d97997 netdev_notice +EXPORT_SYMBOL vmlinux 0x61d9e35a phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61eb4fab config_item_put +EXPORT_SYMBOL vmlinux 0x61f94197 mii_check_link +EXPORT_SYMBOL vmlinux 0x61febd04 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621d3675 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x622406de mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x62258bfd skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6249acbb __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x6254e453 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x625709a4 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x6258e91f devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x6272fd07 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627c5e93 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628aad6f udp_gro_receive +EXPORT_SYMBOL vmlinux 0x628e22a8 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6298321f dev_lstats_read +EXPORT_SYMBOL vmlinux 0x629966a5 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x62b9dd60 param_ops_short +EXPORT_SYMBOL vmlinux 0x62cc2ae0 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x62d232de fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x62d2827e skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x62d630e2 devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62e79b7b md_write_inc +EXPORT_SYMBOL vmlinux 0x62ecd83a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x62fe631d netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x63098f4f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x632182c2 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6326dba9 tso_start +EXPORT_SYMBOL vmlinux 0x633811da sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x634de96f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x6350fcc8 get_fs_type +EXPORT_SYMBOL vmlinux 0x63548409 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x635802b7 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x638158ea mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x6389212e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x638f2d85 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x6392fe53 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aaec9e mii_link_ok +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63dcb836 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ebdcd7 try_to_release_page +EXPORT_SYMBOL vmlinux 0x63f3c1ce netpoll_setup +EXPORT_SYMBOL vmlinux 0x63fc7603 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x6419ef1e devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64669e1e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x6472d3ca pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x64746712 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x648ffb7c scsi_device_put +EXPORT_SYMBOL vmlinux 0x64912eba dev_open +EXPORT_SYMBOL vmlinux 0x64a24dd1 eth_header +EXPORT_SYMBOL vmlinux 0x64a95322 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64cf1439 flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x64ec2c7f of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x650b1002 fib_notifier_ops_register +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 0x651c9fff touch_buffer +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653f83e6 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x6550e38f ipmi_platform_add +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656dec39 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x656f6213 dev_change_flags +EXPORT_SYMBOL vmlinux 0x65762a30 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658e0bea __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65b6ded3 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e06c72 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e7951c netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0x65f0757e security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0x66091140 drop_nlink +EXPORT_SYMBOL vmlinux 0x661b3e22 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x661c26e7 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x66450507 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x6665f2ca generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x668c4d81 do_splice_direct +EXPORT_SYMBOL vmlinux 0x6691c1ce fb_find_mode +EXPORT_SYMBOL vmlinux 0x669c978a kobject_set_name +EXPORT_SYMBOL vmlinux 0x66ac12a2 platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b2c5a0 dcache_readdir +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66b65984 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x66b86be8 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x66b91510 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x67217eef pci_iomap_range +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x67316d35 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x67476b7e proto_register +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x674d7a00 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x676574cf of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x67702aee skb_free_datagram +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x67937e8a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x67941a1a i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b995a5 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x67c246d6 scsi_done +EXPORT_SYMBOL vmlinux 0x67c805c3 param_ops_uint +EXPORT_SYMBOL vmlinux 0x67cde50c phy_connect_direct +EXPORT_SYMBOL vmlinux 0x67cfaa8a flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x67e7ace7 fs_bio_set +EXPORT_SYMBOL vmlinux 0x680feb7b bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x681055bd page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x68186be7 passthru_features_check +EXPORT_SYMBOL vmlinux 0x682b6ac3 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x684366aa pci_release_resource +EXPORT_SYMBOL vmlinux 0x684ab445 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x68577c65 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x68601042 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x6865b663 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x686d83ed pci_find_capability +EXPORT_SYMBOL vmlinux 0x687456a9 put_watch_queue +EXPORT_SYMBOL vmlinux 0x6874b369 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689934e6 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0x68bb5809 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x68c9dd2f flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x68d018a4 sock_i_uid +EXPORT_SYMBOL vmlinux 0x68e0280a pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690d981d tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0x6914260d config_group_init +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x691aaac1 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0x69229b81 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x693d9975 seq_vprintf +EXPORT_SYMBOL vmlinux 0x6942893d jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x6958557d vma_set_file +EXPORT_SYMBOL vmlinux 0x6965cb4a fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697a52ae dev_set_threaded +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x6988ad06 udp_seq_start +EXPORT_SYMBOL vmlinux 0x69a5e178 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x69a6065a nobh_writepage +EXPORT_SYMBOL vmlinux 0x69cfd022 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x6a016b0f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0f772f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x6a152422 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a39f202 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a4c1316 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x6a537e74 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x6a5b2a64 devm_clk_put +EXPORT_SYMBOL vmlinux 0x6a5b3137 vm_mmap +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 0x6a80fbc7 __tty_insert_flip_char +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a90b9ae mmc_start_request +EXPORT_SYMBOL vmlinux 0x6a9c45c0 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6ab00711 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6ac002bb vfs_iter_write +EXPORT_SYMBOL vmlinux 0x6ac83c62 d_move +EXPORT_SYMBOL vmlinux 0x6aca3414 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aec9a08 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0x6aeeb70a __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b1ecffb read_cache_page +EXPORT_SYMBOL vmlinux 0x6b27613b fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b294053 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x6b2a7876 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3bbe57 xfrm_input +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b840127 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b8c4a38 rproc_del +EXPORT_SYMBOL vmlinux 0x6b9aac02 param_set_hexint +EXPORT_SYMBOL vmlinux 0x6b9c5fbe pcim_enable_device +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 0x6c014ee2 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x6c019613 param_get_byte +EXPORT_SYMBOL vmlinux 0x6c021171 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x6c05e8ad gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x6c12a17c __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x6c16e173 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c3817f8 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x6c4d918f ps2_drain +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c68cb1e blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c8963ed filemap_map_pages +EXPORT_SYMBOL vmlinux 0x6ca3afb6 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb5a3ce get_vm_area +EXPORT_SYMBOL vmlinux 0x6cba094b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cc2b614 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x6cc52621 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x6cc70e5b phy_validate_pause +EXPORT_SYMBOL vmlinux 0x6ccb5581 scsi_partsize +EXPORT_SYMBOL vmlinux 0x6ccb90a5 devm_clk_get +EXPORT_SYMBOL vmlinux 0x6ce427df fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x6ce872eb sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x6ceb2431 __destroy_inode +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1d9d80 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d531428 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x6d53f567 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x6d57f680 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x6d5b653f inode_needs_sync +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d7264d3 bio_split +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d8d80f7 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x6d996712 get_task_cred +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6da6f61d __seq_open_private +EXPORT_SYMBOL vmlinux 0x6dad6dec register_netdev +EXPORT_SYMBOL vmlinux 0x6db48c31 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbcba27 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0x6dc17c5f tag_pages_for_writeback +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 0x6df17b39 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df84038 pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x6e025712 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6e1e5596 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6e29ddb2 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x6e5944ff kern_path +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e6cc69c of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72f5d2 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x6e73b8f9 skb_trim +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6ec10be1 mmc_free_host +EXPORT_SYMBOL vmlinux 0x6eeaa630 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x6ef2b15f pci_get_slot +EXPORT_SYMBOL vmlinux 0x6eff390e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6efff7b8 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0x6f056544 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x6f09ecfb inet_del_offload +EXPORT_SYMBOL vmlinux 0x6f0c86b1 ip_frag_next +EXPORT_SYMBOL vmlinux 0x6f17a081 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6f268f39 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x6f26a401 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x6f290536 pci_dev_get +EXPORT_SYMBOL vmlinux 0x6f2f59e4 skb_put +EXPORT_SYMBOL vmlinux 0x6f3cf824 flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f52961e vfs_get_link +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f6fcb6e __invalidate_device +EXPORT_SYMBOL vmlinux 0x6f78479d iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0x6f796386 genphy_update_link +EXPORT_SYMBOL vmlinux 0x6f7c1bb5 param_set_copystring +EXPORT_SYMBOL vmlinux 0x6f8f674a bpf_dispatcher_xdp_func +EXPORT_SYMBOL vmlinux 0x6f915a45 dqstats +EXPORT_SYMBOL vmlinux 0x6fb49676 queue_rcu_work +EXPORT_SYMBOL vmlinux 0x6fb61aba inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x6fbc6a00 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd8158e inet_release +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6fdacfb9 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0x6ff2ba8d netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700237f1 kobject_add +EXPORT_SYMBOL vmlinux 0x70088c81 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x70117c10 phy_device_remove +EXPORT_SYMBOL vmlinux 0x701267c6 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x702aa033 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x7038bcdf devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x70464d30 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x70466545 arp_tbl +EXPORT_SYMBOL vmlinux 0x7049f849 mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x704be3c0 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x70526ff8 param_get_string +EXPORT_SYMBOL vmlinux 0x70772f0c mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70bf1104 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x70c7d692 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70fdecae key_alloc +EXPORT_SYMBOL vmlinux 0x71094672 ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x71259d2d netif_rx +EXPORT_SYMBOL vmlinux 0x7129e547 netdev_state_change +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7137967b phy_config_aneg +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x71496d96 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x715becf4 unregister_key_type +EXPORT_SYMBOL vmlinux 0x715faa1b dquot_destroy +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7176f5e5 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x717cf2cd of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x719312cb acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bb9eab skb_eth_push +EXPORT_SYMBOL vmlinux 0x71d0621b kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71e13c4b bioset_exit +EXPORT_SYMBOL vmlinux 0x71e4bcd1 pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0x71e7b11b fb_validate_mode +EXPORT_SYMBOL vmlinux 0x71ee481f vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x71f94a86 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x71fb5072 __nla_reserve +EXPORT_SYMBOL vmlinux 0x71fb6361 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0x71fce210 dquot_file_open +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x72368f53 address_space_init_once +EXPORT_SYMBOL vmlinux 0x7268b3f7 phy_find_first +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x72839d6f ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x728c43c9 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72abf655 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc39a8 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x72bfbfb3 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x72c153e9 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x72d5f479 nonseekable_open +EXPORT_SYMBOL vmlinux 0x72d60ccf i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x72dc11e2 flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x73062f42 __sock_queue_rcv_skb +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 0x732533a8 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x732dd326 groups_free +EXPORT_SYMBOL vmlinux 0x73486410 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x734de99b mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x73587472 seq_dentry +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x7371b81f pci_restore_state +EXPORT_SYMBOL vmlinux 0x7371fc0c __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73850cb0 rt_dst_clone +EXPORT_SYMBOL vmlinux 0x738d333d napi_schedule_prep +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 0x73bdcc79 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x73d92f1b vfs_iter_read +EXPORT_SYMBOL vmlinux 0x73e2b175 md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x73e8bf08 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x73eec50d sock_pfree +EXPORT_SYMBOL vmlinux 0x740eac2e tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x741567b6 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744df1e9 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7464c501 nf_reinject +EXPORT_SYMBOL vmlinux 0x746c9efe processors +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x748556ac xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d53712 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x74d5c553 rproc_put +EXPORT_SYMBOL vmlinux 0x74d7618d __icmp_send +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74daa5f6 unix_get_socket +EXPORT_SYMBOL vmlinux 0x74df198c vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e87b41 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x74eaa9c4 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x74ede8ea twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x74ee8d18 d_genocide +EXPORT_SYMBOL vmlinux 0x74f423bf alloc_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x750059f6 set_page_dirty +EXPORT_SYMBOL vmlinux 0x75210e9a phy_resume +EXPORT_SYMBOL vmlinux 0x755b78c6 meson_sm_call_write +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x758b0213 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75cc9580 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d47e0e reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e6ae1b mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x75e6fcf4 input_open_device +EXPORT_SYMBOL vmlinux 0x75f4adc8 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x760988d4 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7617c52f vme_slot_num +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x762549d8 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x762f0c44 rtnl_notify +EXPORT_SYMBOL vmlinux 0x7641bd16 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764fdcfc dev_uc_add +EXPORT_SYMBOL vmlinux 0x7655a81d skb_tx_error +EXPORT_SYMBOL vmlinux 0x76591bc5 ip_output +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7667c912 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7674b84c devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76b545b6 skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x76c5add2 dquot_operations +EXPORT_SYMBOL vmlinux 0x76cb13a7 md_done_sync +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76da3c4f xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x76e668f0 tcf_register_action +EXPORT_SYMBOL vmlinux 0x76e9144f twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x76ec5af7 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x76f1843e dump_skip_to +EXPORT_SYMBOL vmlinux 0x7709971c _dev_warn +EXPORT_SYMBOL vmlinux 0x770e469e jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x7734356d backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77371e55 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x773feb4d fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774e7430 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x7758316f km_new_mapping +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x77860ea2 unlock_rename +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77961cb2 flush_signals +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77aa03d4 sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0x77b0dc74 __phy_resume +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bca392 vif_device_init +EXPORT_SYMBOL vmlinux 0x77c58cf7 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x77d75f39 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x77dc46c2 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x77e0c18f cad_pid +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77ee25d4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x77f124eb pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x7841bea7 dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x78441ff7 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78540d08 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7875e21b netif_device_detach +EXPORT_SYMBOL vmlinux 0x787a259d unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x787ad4d5 inet_offloads +EXPORT_SYMBOL vmlinux 0x787dd457 tcp_child_process +EXPORT_SYMBOL vmlinux 0x7880a228 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78881c3c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x78970c13 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x78997038 pci_find_resource +EXPORT_SYMBOL vmlinux 0x789f2785 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a51617 clkdev_drop +EXPORT_SYMBOL vmlinux 0x78adc259 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x78b880cc blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c17641 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x78d700cf cfb_fillrect +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ed7bc4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x7907889e memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x791bae3a ip_fraglist_init +EXPORT_SYMBOL vmlinux 0x793ca26f pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x7945cc9e tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7962c5f0 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x79691c43 inet6_release +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798ccb32 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79b10497 sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x79be3ef1 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x79c3d536 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x79d30602 vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x79facdf7 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7a01d840 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a09d7e1 d_rehash +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a334cd9 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x7a34d734 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a590ba1 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7a5f900b genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x7a7155ac vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0x7a76f27b tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7a8f432f tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4754c of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7ab47e4f netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x7ab7eb36 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5a568 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae0afd2 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7aef078b mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x7b15a008 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b5ebf47 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x7b6e9f5d inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x7b7610d4 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x7b767a64 tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0x7b829815 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b85df33 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7bab79dd blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb6cc27 sk_capable +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bc96a0f dump_skip +EXPORT_SYMBOL vmlinux 0x7bce621c genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x7bdbc743 simple_fill_super +EXPORT_SYMBOL vmlinux 0x7becfcc4 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7bffa79f I_BDEV +EXPORT_SYMBOL vmlinux 0x7c10b7a0 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c247697 cdev_del +EXPORT_SYMBOL vmlinux 0x7c33e4cc rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7c459513 nla_append +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c48661d flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x7c70bfd9 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x7c829564 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7c8988ad pcim_iomap +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cc4112c ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x7cd6ac2e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7ce822a9 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x7cebdc49 regset_get +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 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d1302ed skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x7d452ea0 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d8fe31e tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x7daab883 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7db1cb9a tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x7dc5e356 rproc_add_carveout +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dca8dd4 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de1399d framebuffer_release +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df178d5 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7df5e5bc mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7df939c0 t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x7dfc8c53 init_special_inode +EXPORT_SYMBOL vmlinux 0x7e049d6d sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x7e0cef7b misc_deregister +EXPORT_SYMBOL vmlinux 0x7e16d476 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0x7e1fc226 security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e40a85f of_clk_get +EXPORT_SYMBOL vmlinux 0x7e57c092 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0x7e5e13f0 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x7e616467 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x7e7fcd8c phy_start_aneg +EXPORT_SYMBOL vmlinux 0x7e81279b key_invalidate +EXPORT_SYMBOL vmlinux 0x7e877932 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x7e87c2b1 put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x7e8832f9 mmc_command_done +EXPORT_SYMBOL vmlinux 0x7e99abd1 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7ea56681 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x7eaa0c71 vfs_rename +EXPORT_SYMBOL vmlinux 0x7ebe6eee blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x7eceb7f2 put_disk +EXPORT_SYMBOL vmlinux 0x7edfc95c devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x7eff59de nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1b9b24 of_node_get +EXPORT_SYMBOL vmlinux 0x7f24b041 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f250a1f __bread_gfp +EXPORT_SYMBOL vmlinux 0x7f2c7b43 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x7f364a73 __netif_napi_del +EXPORT_SYMBOL vmlinux 0x7f4b96ac tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f69c0be napi_gro_flush +EXPORT_SYMBOL vmlinux 0x7f740aa8 nla_reserve +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7cf55a md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f84c700 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7fb94206 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x7fb9b213 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x7fc0a181 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd95eee fs_context_for_mount +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff2ac81 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ff6bcfe i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8000ba89 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x80015480 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x80065cd3 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x8022bd94 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x80272a48 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x8027d54b iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x80429f1b tty_unthrottle +EXPORT_SYMBOL vmlinux 0x805740c9 mmc_put_card +EXPORT_SYMBOL vmlinux 0x805ff0f5 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x8067e015 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x806ddb4a noop_qdisc +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809d3190 pci_scan_root_bus +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 0x80eac129 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80ff88ab alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x81050fba __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x810bef7e sg_free_append_table +EXPORT_SYMBOL vmlinux 0x8112b3d2 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x811491b0 igrab +EXPORT_SYMBOL vmlinux 0x81188c30 match_string +EXPORT_SYMBOL vmlinux 0x813a0df1 vfs_link +EXPORT_SYMBOL vmlinux 0x814e95ee sock_set_priority +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81641591 pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x81769302 vfs_fadvise +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818bf852 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81ac5e33 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81d19c41 build_skb_around +EXPORT_SYMBOL vmlinux 0x81d8aab7 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e1bb86 udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x81e4ae10 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ebd0ee input_flush_device +EXPORT_SYMBOL vmlinux 0x81f1aa8b truncate_setsize +EXPORT_SYMBOL vmlinux 0x81f659b4 skb_unlink +EXPORT_SYMBOL vmlinux 0x81ff720d blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x8200af34 iget5_locked +EXPORT_SYMBOL vmlinux 0x8229c654 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x8244fee8 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x82584742 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x8285b7db module_layout +EXPORT_SYMBOL vmlinux 0x8291a087 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x829f775c ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x829febab netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x82baa539 tegra_ivc_write_get_next_frame +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82e7a941 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x82f4ad06 amba_device_register +EXPORT_SYMBOL vmlinux 0x8340d0a4 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x83712f64 copy_highpage +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x837bdcad dev_addr_mod +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x83a3118c arp_send +EXPORT_SYMBOL vmlinux 0x83d550d6 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8400b173 d_tmpfile +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x841b2710 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x841d5d17 __SetPageMovable +EXPORT_SYMBOL vmlinux 0x841f6f7c amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x842d2de5 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x84717fde __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848cda43 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x849d3886 pskb_extract +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84ab40b3 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x84bd4969 vfs_mknod +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84db1eb1 inet_bind +EXPORT_SYMBOL vmlinux 0x8503cfe3 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x85244f63 request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x8529b00f read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x85372f62 posix_lock_file +EXPORT_SYMBOL vmlinux 0x853fd2ed input_set_capability +EXPORT_SYMBOL vmlinux 0x85434cf0 lease_modify +EXPORT_SYMBOL vmlinux 0x8548ff00 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x854a240b sock_no_bind +EXPORT_SYMBOL vmlinux 0x854c69a2 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x855ce7ca finish_open +EXPORT_SYMBOL vmlinux 0x855d01f8 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8563c6ad __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856e52c1 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x8574e0dc inode_get_bytes +EXPORT_SYMBOL vmlinux 0x8582174b dev_mc_del +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x8593053c zero_fill_bio +EXPORT_SYMBOL vmlinux 0x859ddfa4 dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x85a51ac9 security_path_mknod +EXPORT_SYMBOL vmlinux 0x85a5f1d3 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x85a897c5 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85c75b2d blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x85cccbb9 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x85cce13e shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e3893b __serio_register_port +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x861fa405 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x86203e04 __break_lease +EXPORT_SYMBOL vmlinux 0x8628d634 get_tree_single +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864710d9 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x8667e64d __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8692e106 netif_device_attach +EXPORT_SYMBOL vmlinux 0x869dfb8a pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x86a1ea4b sock_gettstamp +EXPORT_SYMBOL vmlinux 0x86b4e13d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x86c5e780 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0x86c7f2b2 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86f2711d PageMovable +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8706dfe5 tcp_prot +EXPORT_SYMBOL vmlinux 0x8710288b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x87263f3e scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x8768c926 send_sig +EXPORT_SYMBOL vmlinux 0x876acb74 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x876c017e kill_block_super +EXPORT_SYMBOL vmlinux 0x876e082c tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87989db4 filemap_fault +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87a54574 phy_write_paged +EXPORT_SYMBOL vmlinux 0x87ac505e udp_ioctl +EXPORT_SYMBOL vmlinux 0x87aca897 inet_rcv_saddr_equal +EXPORT_SYMBOL vmlinux 0x87af1276 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x87afc010 from_kgid +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c2e915 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x87ecdcd8 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x8801ff44 security_unix_may_send +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 0x883deacc rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x8844581f cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x884749c1 page_readlink +EXPORT_SYMBOL vmlinux 0x884d6225 sk_net_capable +EXPORT_SYMBOL vmlinux 0x88714b54 xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x88767329 flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0x8881a231 _dev_emerg +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x888cfdb5 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x8892f7de ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a90c52 tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x88ad7e41 blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x88d32812 generic_fillattr +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88ea0174 fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0x8901144c inet6_bind +EXPORT_SYMBOL vmlinux 0x891a5abf tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x891b3f96 fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0x89233f2d mpage_read_folio +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x896fb0d4 pps_register_source +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x89974dc2 gro_cells_init +EXPORT_SYMBOL vmlinux 0x89ae9ade ptp_clock_event +EXPORT_SYMBOL vmlinux 0x89c2f216 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x89c5ccf2 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x89fac846 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x8a2bc353 ppp_input +EXPORT_SYMBOL vmlinux 0x8a2f0a3d skb_copy_expand +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5048ef security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x8a63a1ff netif_skb_features +EXPORT_SYMBOL vmlinux 0x8a6b0e27 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8a6b764d no_llseek +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7d93b3 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8a84865b blk_rq_init +EXPORT_SYMBOL vmlinux 0x8a8643a3 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9fcd43 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x8ac136ae imx_sc_misc_get_control +EXPORT_SYMBOL vmlinux 0x8ac3334b net_dim_get_def_rx_moderation +EXPORT_SYMBOL vmlinux 0x8ac597f8 key_validate +EXPORT_SYMBOL vmlinux 0x8ac743de sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x8acb3049 dev_trans_start +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b3ba2c4 __mdiobus_write +EXPORT_SYMBOL vmlinux 0x8b46a34b seq_open_private +EXPORT_SYMBOL vmlinux 0x8b4d177f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x8b53ffb3 mii_check_media +EXPORT_SYMBOL vmlinux 0x8b56069a cdev_device_del +EXPORT_SYMBOL vmlinux 0x8b5cbc1a textsearch_unregister +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6facca n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b819b72 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x8b855ca0 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x8b8d7d90 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bad93eb fddi_type_trans +EXPORT_SYMBOL vmlinux 0x8baff855 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8bbd28c1 netdev_printk +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8be91e0a jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0x8c0853ca fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x8c15c84b inet6_protos +EXPORT_SYMBOL vmlinux 0x8c1a78c3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x8c1bc952 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c42f6c8 audit_log +EXPORT_SYMBOL vmlinux 0x8c4947a6 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8c5dad8b single_release +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c832676 blackhole_netdev +EXPORT_SYMBOL vmlinux 0x8c852db4 inode_init_once +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8af25f can_nice +EXPORT_SYMBOL vmlinux 0x8c93f77e scsi_remove_device +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8ca80a4b bioset_init +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cc9f360 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x8cd949ea max8925_reg_read +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cee95d7 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8cf51037 param_get_long +EXPORT_SYMBOL vmlinux 0x8d0bea8c pci_pme_active +EXPORT_SYMBOL vmlinux 0x8d33a462 tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x8d4081bd phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d48e357 d_drop +EXPORT_SYMBOL vmlinux 0x8d4cd649 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x8d4d67aa acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0x8d550270 param_get_int +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7e0bd8 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8d988800 nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8daf1fca dev_alloc_name +EXPORT_SYMBOL vmlinux 0x8dcabdae devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x8dcd733f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8de927be generic_permission +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df79fbf register_fib_notifier +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8e0a972b fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x8e16d80a inet6_offloads +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e3fbcf8 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e50f57d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8e70145e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x8e71a907 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x8e78dfd8 kern_unmount +EXPORT_SYMBOL vmlinux 0x8e82c587 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8e8a5acf tcp_check_req +EXPORT_SYMBOL vmlinux 0x8e8d5341 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea79f03 iunique +EXPORT_SYMBOL vmlinux 0x8ebb53e9 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x8eef5dc8 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f28750c send_sig_info +EXPORT_SYMBOL vmlinux 0x8f2f1531 dquot_disable +EXPORT_SYMBOL vmlinux 0x8f44a5b0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8f48cd91 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x8f644054 d_exact_alias +EXPORT_SYMBOL vmlinux 0x8f6a2602 folio_write_one +EXPORT_SYMBOL vmlinux 0x8f7c89b7 mdiobb_read +EXPORT_SYMBOL vmlinux 0x8f861086 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fadb497 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8fc41e63 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x8fc9ea11 fman_port_cfg_buf_prefix_content +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fd42b7d generic_file_fsync +EXPORT_SYMBOL vmlinux 0x8fd6c6a2 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x8fdb0752 abort_creds +EXPORT_SYMBOL vmlinux 0x8fde04e8 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x8fe365cf pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x8fe60ad0 input_match_device_id +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffd4707 free_buffer_head +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x90032aba skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x900e4c63 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x9018da66 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x90190c31 km_query +EXPORT_SYMBOL vmlinux 0x901b5770 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9056264c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x90668488 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x907b4f32 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x907fb6d0 super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x90855a9e dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x90a8d4ea set_bh_page +EXPORT_SYMBOL vmlinux 0x90adea7d bdi_alloc +EXPORT_SYMBOL vmlinux 0x90b6837e phy_device_free +EXPORT_SYMBOL vmlinux 0x90cf09ec param_get_ushort +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x90e9f196 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x91056ca2 dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x910b572c of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x915aec1d pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x91645006 __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x91876947 unregister_nls +EXPORT_SYMBOL vmlinux 0x91926726 tty_name +EXPORT_SYMBOL vmlinux 0x91926aa4 migrate_page_states +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91aaa381 neigh_table_init +EXPORT_SYMBOL vmlinux 0x91bb04d2 is_acpi_data_node +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d9db83 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x91e00c85 km_state_expired +EXPORT_SYMBOL vmlinux 0x91eb7dbe ipv6_dev_find +EXPORT_SYMBOL vmlinux 0x91edf3d2 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x92027fc8 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x92173da0 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x92231c0f phy_driver_register +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923047cd mdiobus_scan +EXPORT_SYMBOL vmlinux 0x9234717b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x926a4717 fs_param_is_string +EXPORT_SYMBOL vmlinux 0x9275cbce submit_bh +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x92836537 __devm_release_region +EXPORT_SYMBOL vmlinux 0x928d847a __getblk_gfp +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929f7f0c iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x92a13386 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x92b8a597 inc_node_page_state +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92d34dce invalidate_disk +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92d80555 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92e862ff vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92f31b08 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93420976 md_flush_request +EXPORT_SYMBOL vmlinux 0x9368f915 udp_set_csum +EXPORT_SYMBOL vmlinux 0x936c7599 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x9376ffe0 register_md_personality +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938b2b85 rio_query_mport +EXPORT_SYMBOL vmlinux 0x939984fa lookup_one_len +EXPORT_SYMBOL vmlinux 0x939dd878 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a9a2eb nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93cd529d page_pool_release_page +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93da065a of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x93f36d2c submit_bio_wait +EXPORT_SYMBOL vmlinux 0x940dbb93 fb_class +EXPORT_SYMBOL vmlinux 0x9411442d finish_no_open +EXPORT_SYMBOL vmlinux 0x94257a3d genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x942cc133 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x9452cb40 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x9479fcdb jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x94822e3b folio_end_writeback +EXPORT_SYMBOL vmlinux 0x94837125 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x948d2dcd fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949a6aea netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x94b5f72d devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x94b9815c inet_csk_reqsk_queue_drop +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 0x94f84512 proc_remove +EXPORT_SYMBOL vmlinux 0x95066170 cdrom_open +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x950d296b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x953c357b phy_write_mmd +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x95424c4d end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x954ae75a fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x9551f731 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x9593ad34 napi_complete_done +EXPORT_SYMBOL vmlinux 0x95a17137 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x95a43252 mdiobus_free +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95bdc325 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x95dbcd49 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0x95e5aec3 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x95f4a5a7 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x95f86e5c reuseport_alloc +EXPORT_SYMBOL vmlinux 0x964fbb04 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0x96509f79 kobject_init +EXPORT_SYMBOL vmlinux 0x965cc01d flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x9677e010 bio_free_pages +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x96878fdd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b34ba9 neigh_destroy +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96c21588 __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d284b6 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x970dd789 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x973b604f ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97533690 path_get +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97abebaf of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x97adb487 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x97bdfa60 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x97df265e udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x9808d3d5 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982a3cfe inet_csk_accept +EXPORT_SYMBOL vmlinux 0x982a77f2 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x982f1e9d param_array_ops +EXPORT_SYMBOL vmlinux 0x98337702 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x983efd56 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x984ee5ca module_put +EXPORT_SYMBOL vmlinux 0x985179de bio_chain +EXPORT_SYMBOL vmlinux 0x9872cba6 skb_ext_add +EXPORT_SYMBOL vmlinux 0x98766579 fb_show_logo +EXPORT_SYMBOL vmlinux 0x9882a0a2 bio_put +EXPORT_SYMBOL vmlinux 0x988386df inode_insert5 +EXPORT_SYMBOL vmlinux 0x98a98823 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x98b98ee8 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x98c01423 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d52c0c fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0x98db460e phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x9903564c scsi_print_command +EXPORT_SYMBOL vmlinux 0x990553af d_alloc_name +EXPORT_SYMBOL vmlinux 0x99078b39 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990e1701 bio_endio +EXPORT_SYMBOL vmlinux 0x99189005 kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0x9929980d tc_setup_cb_add +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 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99af0081 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x99bfe3ae __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x99ce17c6 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x99d472b1 net_dim_get_rx_moderation +EXPORT_SYMBOL vmlinux 0x99d55828 dev_uc_add_excl +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 0x9a039c47 dst_discard_out +EXPORT_SYMBOL vmlinux 0x9a07114a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a163919 bio_init_clone +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a272972 logfc +EXPORT_SYMBOL vmlinux 0x9a49b657 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9a572f4b input_inject_event +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a640eaf scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9a693f83 init_task +EXPORT_SYMBOL vmlinux 0x9a7346a1 phy_get_pause +EXPORT_SYMBOL vmlinux 0x9a7d65f6 generic_write_checks +EXPORT_SYMBOL vmlinux 0x9a88ef75 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x9a9e81f6 single_open +EXPORT_SYMBOL vmlinux 0x9aab966f __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab5c2d6 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x9ad6cfc4 netdev_info +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9aeabef1 inet_protos +EXPORT_SYMBOL vmlinux 0x9b040273 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x9b0f124c csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b1854e9 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x9b1afe09 inet_getname +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b31baf6 begin_new_exec +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b3a3d98 key_move +EXPORT_SYMBOL vmlinux 0x9b42ff10 uart_update_timeout +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 0x9bcef4a7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x9bec3f8f of_match_device +EXPORT_SYMBOL vmlinux 0x9c01a343 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x9c099dd7 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c23099a ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x9c23da3c mount_nodev +EXPORT_SYMBOL vmlinux 0x9c264220 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9c2b6ba4 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x9c2efea2 kernel_listen +EXPORT_SYMBOL vmlinux 0x9c42cd00 registered_fb +EXPORT_SYMBOL vmlinux 0x9c437e4b mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x9c5a18c3 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c7b1fe1 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9c7f0b97 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9c836a5b dma_fence_describe +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9ca1b48c sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb26a77 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x9cc9418c unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd0874f inode_update_time +EXPORT_SYMBOL vmlinux 0x9cd575a7 d_invalidate +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdbc24c pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9cef49d5 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9cf44e74 generic_update_time +EXPORT_SYMBOL vmlinux 0x9cfc50ff __netif_schedule +EXPORT_SYMBOL vmlinux 0x9d0d3686 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d188b91 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d24be10 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x9d25050f mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d4a48d3 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x9d5b4953 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d687f6a tty_port_close_end +EXPORT_SYMBOL vmlinux 0x9d75efa7 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d7d30af of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9dc0a476 make_kprojid +EXPORT_SYMBOL vmlinux 0x9dca299d xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x9dd18d46 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x9ddcbf4d audit_log_start +EXPORT_SYMBOL vmlinux 0x9de65a5b phy_attached_info +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df6bcae simple_unlink +EXPORT_SYMBOL vmlinux 0x9dfec55b mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x9e042212 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x9e0ad2f0 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e259fc0 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e414170 dma_resv_init +EXPORT_SYMBOL vmlinux 0x9e4e835e devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e52b6d1 generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6c03d3 get_cached_acl +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9333d0 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9e999004 generic_setlease +EXPORT_SYMBOL vmlinux 0x9e9eab95 devcgroup_check_permission +EXPORT_SYMBOL vmlinux 0x9e9f786c pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eacf8a5 kstrndup +EXPORT_SYMBOL vmlinux 0x9eadcf92 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9eb187fa xudma_pktdma_rflow_get_irq +EXPORT_SYMBOL vmlinux 0x9eb211b3 fman_register_intr +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 0x9edec076 __brelse +EXPORT_SYMBOL vmlinux 0x9eeb09ed blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x9eec08a7 start_tty +EXPORT_SYMBOL vmlinux 0x9eef9b47 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x9ef17fc8 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x9f2dca7b serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x9f469b2d block_dirty_folio +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 0x9f71da7b netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x9f739ebb vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f80975a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x9f90ca48 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x9f928f9f cont_write_begin +EXPORT_SYMBOL vmlinux 0x9f967332 backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fac0e0b bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +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 0xa016a9e4 mipi_dsi_dcs_get_pixel_format +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 0xa0460a5e inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa04e90b1 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xa054b2d0 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa079ec84 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa07f04e9 proc_set_user +EXPORT_SYMBOL vmlinux 0xa0843c67 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa09d5b0b pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0a7e654 sock_no_getname +EXPORT_SYMBOL vmlinux 0xa0ad7906 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xa0adbcd9 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b3b7b6 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa0c3b673 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0xa0d87339 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0db0e0e nvdimm_bus_unlock +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 0xa1083193 elv_rb_add +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10cc045 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xa113f21c xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa124bf8a d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xa1257334 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xa127b359 sock_create_kern +EXPORT_SYMBOL vmlinux 0xa129cdcc mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xa146084c skb_clone_sk +EXPORT_SYMBOL vmlinux 0xa174c871 register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xa1887c83 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xa193c1eb configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0xa19c2954 rw_verify_area +EXPORT_SYMBOL vmlinux 0xa19ec853 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xa1b22398 simple_setattr +EXPORT_SYMBOL vmlinux 0xa1cc4f53 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xa1d1886a input_setup_polling +EXPORT_SYMBOL vmlinux 0xa1e05e3d kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0xa1f145c8 __d_drop +EXPORT_SYMBOL vmlinux 0xa1f438f8 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xa1f47fec nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa1faf1ed i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa21e0ac9 phy_start +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa286ec37 xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29fcf41 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xa2a410f6 unlock_page +EXPORT_SYMBOL vmlinux 0xa2c97d75 __folio_alloc +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d3bfc3 cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2dbc71c key_link +EXPORT_SYMBOL vmlinux 0xa2e0ff95 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa2e4448c iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xa2f9342a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xa2f9f897 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xa30e1c9c seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xa30f76eb free_netdev +EXPORT_SYMBOL vmlinux 0xa313d38b blk_sync_queue +EXPORT_SYMBOL vmlinux 0xa32246fc xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa332983b tty_unlock +EXPORT_SYMBOL vmlinux 0xa3451404 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xa34895c4 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa34997cb netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0xa34fab34 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa35d74c6 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xa35d8a77 simple_statfs +EXPORT_SYMBOL vmlinux 0xa370e463 netlink_unicast +EXPORT_SYMBOL vmlinux 0xa3887bc2 tcf_classify +EXPORT_SYMBOL vmlinux 0xa3aa83ae pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xa3acf83e blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4297305 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa448e643 __neigh_create +EXPORT_SYMBOL vmlinux 0xa4563d57 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa49a41c3 mmc_release_host +EXPORT_SYMBOL vmlinux 0xa4b28d6b acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xa4b495da trace_event_printf +EXPORT_SYMBOL vmlinux 0xa4bbcb15 clk_add_alias +EXPORT_SYMBOL vmlinux 0xa4f2bcfa vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0xa4f3a2d7 d_lookup +EXPORT_SYMBOL vmlinux 0xa4f98b57 follow_up +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa4fd7aaf serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa530e07a md_cluster_ops +EXPORT_SYMBOL vmlinux 0xa53147f1 security_sk_clone +EXPORT_SYMBOL vmlinux 0xa5411686 inet_shutdown +EXPORT_SYMBOL vmlinux 0xa5428133 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55d9c63 kset_unregister +EXPORT_SYMBOL vmlinux 0xa5669d29 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xa5740deb cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa5867a6b vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5acbb2c devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xa5b28ebe skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xa5b60e22 md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0xa5b7fd45 ram_aops +EXPORT_SYMBOL vmlinux 0xa5d83e01 pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0xa5f3cebf lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0xa5fb48c9 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xa6138aac from_kuid_munged +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa6357f7a ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa6464731 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa65b490d blk_put_queue +EXPORT_SYMBOL vmlinux 0xa674c5b5 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa67664f8 poll_initwait +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68fb783 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0xa6b4fe77 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0xa6b53250 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xa6d7caaa fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xa6dfee3f crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xa6e4f385 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xa6e7ff94 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa70a55e1 fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa7186243 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa742bf2a skb_eth_pop +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7633c08 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xa76e4f0d blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xa7791c78 param_ops_byte +EXPORT_SYMBOL vmlinux 0xa779dc4e ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa77e052e tcp_disconnect +EXPORT_SYMBOL vmlinux 0xa79bf25a sock_init_data +EXPORT_SYMBOL vmlinux 0xa7a9058c param_get_invbool +EXPORT_SYMBOL vmlinux 0xa7b27232 rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xa7c7dd55 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0xa7cb4edd is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa80718f6 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xa80c96bf scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xa8170cdb max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa81d89c5 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84ce9e0 crypto_aes_inv_sbox +EXPORT_SYMBOL vmlinux 0xa853396b xa_extract +EXPORT_SYMBOL vmlinux 0xa85a3e6d xa_load +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa8707131 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xa875b319 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0xa87a00f2 dst_alloc +EXPORT_SYMBOL vmlinux 0xa897e3e7 mempool_free +EXPORT_SYMBOL vmlinux 0xa89a1cf1 ipmi_dmi_get_slave_addr +EXPORT_SYMBOL vmlinux 0xa8a19887 jbd2_journal_destroy +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 0xa8f450a2 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xa8f4fe7f __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa906c177 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90e4434 unregister_netdev +EXPORT_SYMBOL vmlinux 0xa90f467d input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa93afcc8 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xa94a09bb mem_section +EXPORT_SYMBOL vmlinux 0xa94d0061 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xa9531fea __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa96a4f11 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa982a226 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xa986d2ab set_anon_super_fc +EXPORT_SYMBOL vmlinux 0xa9a0e0fc inet_listen +EXPORT_SYMBOL vmlinux 0xa9cd0ef6 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xa9ce75bb inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xa9eacb80 blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa118254 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa285fa7 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa3ada34 md_write_start +EXPORT_SYMBOL vmlinux 0xaa3c1b25 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xaa67b3ae __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xaa6cc4da netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa6f4cc0 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa9b31a7 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0xaa9bae2b dquot_alloc +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaaa96ae4 phy_loopback +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 0xaaf1362f genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaaf6d81b dev_uc_flush +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab28958e nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab692e3e unregister_cdrom +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab721eb8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xab765417 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab96deee scsi_print_result +EXPORT_SYMBOL vmlinux 0xab9f5edd kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xab9f99cd writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xaba31446 mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0xaba8df9a tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xabb8d295 __skb_pad +EXPORT_SYMBOL vmlinux 0xabc9143b ps2_begin_command +EXPORT_SYMBOL vmlinux 0xabcdcb95 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xabe2b534 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0c1979 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xac148efb tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0xac159159 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac20b3ec xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xac29fda5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xac2ccece do_clone_file_range +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac7642ad tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0xac77613d udp_seq_stop +EXPORT_SYMBOL vmlinux 0xac860131 kobject_del +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb0a392 sock_alloc +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacddd806 ptp_get_vclocks_index +EXPORT_SYMBOL vmlinux 0xaceeeab8 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xacf07f85 set_blocksize +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf649bf audit_log_task_info +EXPORT_SYMBOL vmlinux 0xacf73830 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xacfd4d05 __alloc_skb +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad09638d xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xad09b653 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad1b0275 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xad26f0c8 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad35d965 nf_log_set +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad593320 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xad59f679 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xad682b8f xudma_rchanrt_write +EXPORT_SYMBOL vmlinux 0xad6ba40e radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xad6f7f67 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xad73041f autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xad9c755a i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada824dc pci_set_mwi +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadbdedea i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadd13989 udp_prot +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xade96222 reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae2f9d09 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae373e27 simple_rmdir +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae724fc1 tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0xae8ca8a7 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xaea472e2 pci_request_regions +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb19691 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xaeb4a977 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaebf8df0 wireless_send_event +EXPORT_SYMBOL vmlinux 0xaec9f2e3 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaee76214 inet6_getname +EXPORT_SYMBOL vmlinux 0xaee8ed1e genphy_read_status +EXPORT_SYMBOL vmlinux 0xaeef64ce tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xaeff214e vga_put +EXPORT_SYMBOL vmlinux 0xaf032c36 user_revoke +EXPORT_SYMBOL vmlinux 0xaf0dd307 simple_getattr +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf40b7d4 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xaf54754a inet_frag_find +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf64d5c8 mdiobus_read +EXPORT_SYMBOL vmlinux 0xaf710561 param_set_ushort +EXPORT_SYMBOL vmlinux 0xaf76ad67 bio_add_page +EXPORT_SYMBOL vmlinux 0xaf792763 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xaf7e08b3 napi_enable +EXPORT_SYMBOL vmlinux 0xaf81f411 sock_efree +EXPORT_SYMBOL vmlinux 0xafa6735a sget +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafdc5279 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xb0198a9d blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb020a151 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb0273844 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06a4b57 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0xb0743c72 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xb0813c2a mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0bbca57 put_fs_context +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0d2fffb iov_iter_advance +EXPORT_SYMBOL vmlinux 0xb0d75ed8 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb1130f95 security_sb_mnt_opts_compat +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 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14edd85 __pagevec_release +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1545c9b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xb18e0a0a ip6_frag_next +EXPORT_SYMBOL vmlinux 0xb1aa3462 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xb1af62fd xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xb1c2b858 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e31d32 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xb1f09790 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xb214667b truncate_pagecache +EXPORT_SYMBOL vmlinux 0xb214dd70 param_set_ulong +EXPORT_SYMBOL vmlinux 0xb2221398 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xb2236aee zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xb2277958 mpage_writepage +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb23122e3 __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xb26073c3 config_item_set_name +EXPORT_SYMBOL vmlinux 0xb26b6654 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xb2774960 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xb27a25b9 of_get_property +EXPORT_SYMBOL vmlinux 0xb281f2ee register_netdevice +EXPORT_SYMBOL vmlinux 0xb2890d7e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xb2ab053d dm_table_get_size +EXPORT_SYMBOL vmlinux 0xb2b2f300 simple_link +EXPORT_SYMBOL vmlinux 0xb2b807f5 rproc_free +EXPORT_SYMBOL vmlinux 0xb2b94d84 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2d739a7 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2edf42a splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xb2ee9a98 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0xb2f35c6a xxh64 +EXPORT_SYMBOL vmlinux 0xb2faae8a tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xb2fcb56d queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0xb2ffbcfc dcb_getapp +EXPORT_SYMBOL vmlinux 0xb308c97d wait_woken +EXPORT_SYMBOL vmlinux 0xb30b9822 vme_master_set +EXPORT_SYMBOL vmlinux 0xb320cc0e sg_init_one +EXPORT_SYMBOL vmlinux 0xb3258f79 __ubsan_handle_type_mismatch_v1 +EXPORT_SYMBOL vmlinux 0xb32728bb qcom_scm_iommu_secure_ptbl_init +EXPORT_SYMBOL vmlinux 0xb32939dd iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xb3311e48 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xb33d6540 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3561941 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0xb35c7461 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0xb36081ad mdio_device_create +EXPORT_SYMBOL vmlinux 0xb3667fe2 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb39f307b fb_set_var +EXPORT_SYMBOL vmlinux 0xb3a70787 netdev_warn +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3af04c1 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0xb3b86ebd generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e195ac block_truncate_page +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f58c31 of_get_ethdev_address +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9182a blkdev_put +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb41acde0 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43642a5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb4383195 dev_get_flags +EXPORT_SYMBOL vmlinux 0xb456daac ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb46185fb simple_lookup +EXPORT_SYMBOL vmlinux 0xb4628367 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb468cc53 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb46b6765 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb493beed nla_put +EXPORT_SYMBOL vmlinux 0xb4b07988 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xb4b52d5c lock_sock_nested +EXPORT_SYMBOL vmlinux 0xb4c2aa43 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb4e1e13e phy_register_fixup +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb4f1879d mpage_writepages +EXPORT_SYMBOL vmlinux 0xb5056857 lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xb5084e51 param_ops_bint +EXPORT_SYMBOL vmlinux 0xb51240c6 flush_dcache_folio +EXPORT_SYMBOL vmlinux 0xb5340b4b path_put +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb546b824 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb591a5d0 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xb59f56bf security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a5bf80 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xb5a65692 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b1f8ef sock_create_lite +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5c054f1 rproc_add +EXPORT_SYMBOL vmlinux 0xb5c07ca1 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e93c28 serio_bus +EXPORT_SYMBOL vmlinux 0xb5f75d79 rtc_add_group +EXPORT_SYMBOL vmlinux 0xb6100f89 current_time +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb62dbb0f alloc_pages +EXPORT_SYMBOL vmlinux 0xb62e82df ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xb63310ca genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6367b80 of_root +EXPORT_SYMBOL vmlinux 0xb64a4ee8 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xb64b951a udp_poll +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb6689060 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xb66c0f3c tty_register_driver +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a0fdfd fb_blank +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6ae0092 kernel_write +EXPORT_SYMBOL vmlinux 0xb6bd4976 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb6cb4e5c phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6cfcfcd __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6ec6f1f devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xb6fb4f8f scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7105fe8 finish_swait +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb7465e21 netdev_emerg +EXPORT_SYMBOL vmlinux 0xb7528a56 param_set_bool +EXPORT_SYMBOL vmlinux 0xb7574f38 __skb_checksum +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78ebbdb dev_close +EXPORT_SYMBOL vmlinux 0xb7a56b63 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xb7a6241e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb7a7c8e1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb7ad9b07 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f4d785 block_commit_write +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb817c6f7 pci_bus_type +EXPORT_SYMBOL vmlinux 0xb81ef63f mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xb838ad9e tcp_close +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb84338f5 __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xb84984fa dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb854aaa4 eth_type_trans +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb86ec1c5 skb_dump +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8a00945 mr_table_alloc +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b0d732 dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8cadadb pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb8cc1004 register_framebuffer +EXPORT_SYMBOL vmlinux 0xb8db9709 set_nlink +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb90811d7 jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb9215a76 rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xb93087fb tty_do_resize +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb9492748 sock_wake_async +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb96fe04d stop_tty +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb9784bdd nf_ct_attach +EXPORT_SYMBOL vmlinux 0xb97918b7 tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0xb9982d7c remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb9998805 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb99f56f7 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xb9a254a6 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb9a7ca88 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9db7069 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eae5bf bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xb9fc381a qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xba017239 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0xba0676e2 vm_zone_stat +EXPORT_SYMBOL vmlinux 0xba1008c8 __crc32c_le +EXPORT_SYMBOL vmlinux 0xba1bc960 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xba369627 copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xba3c60cb kthread_create_worker +EXPORT_SYMBOL vmlinux 0xba481ccc bmap +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba5f4376 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xba5fed66 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba820b24 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0xba8680e6 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba979f4d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xbaa58aa9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xbab4c787 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbac1ba61 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0xbac53e9a netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xbaced9a6 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24cba0 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb32cfa6 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xbb434f18 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xbb44a993 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5099b1 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xbb5749ec blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xbb669868 update_devfreq +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb7dcad0 dquot_drop +EXPORT_SYMBOL vmlinux 0xbb88c4de get_watch_queue +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba1834a stream_open +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbc0a0d6d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xbc1a5d2d pipe_lock +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc210bdb softnet_data +EXPORT_SYMBOL vmlinux 0xbc30b1d4 inet_addr_type +EXPORT_SYMBOL vmlinux 0xbc31e031 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xbc3b728e consume_skb +EXPORT_SYMBOL vmlinux 0xbc4b68b7 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xbc4beb86 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xbc4dc7c0 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0xbc550625 vfs_unlink +EXPORT_SYMBOL vmlinux 0xbc63812f dma_resv_fini +EXPORT_SYMBOL vmlinux 0xbcaa3a91 unpin_user_page +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcbed4b3 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xbcc96916 migrate_page +EXPORT_SYMBOL vmlinux 0xbd0b9fce km_report +EXPORT_SYMBOL vmlinux 0xbd139b59 dget_parent +EXPORT_SYMBOL vmlinux 0xbd1d981a __breadahead_gfp +EXPORT_SYMBOL vmlinux 0xbd28067f inode_dio_wait +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd58e1ab lookup_one +EXPORT_SYMBOL vmlinux 0xbd5ec80a mmc_erase +EXPORT_SYMBOL vmlinux 0xbd5f7d26 fs_param_is_path +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6ad478 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xbd6b8ea7 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xbd8bbe83 thaw_bdev +EXPORT_SYMBOL vmlinux 0xbd945929 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xbda00c16 genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xbda6d1a7 hmm_range_fault +EXPORT_SYMBOL vmlinux 0xbdb59b91 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xbdc7e7ba bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0xbddd0034 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xbdff74ea ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbe117955 block_write_full_page +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe15e940 netdev_alert +EXPORT_SYMBOL vmlinux 0xbe4347cd __check_sticky +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe57142d call_fib_notifiers +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe900a9e ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xbe904cbe mmc_of_parse +EXPORT_SYMBOL vmlinux 0xbe91bba4 security_path_rename +EXPORT_SYMBOL vmlinux 0xbeae8093 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xbee32a3f tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0xbeef5863 dentry_open +EXPORT_SYMBOL vmlinux 0xbef0177a devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef51f44 km_policy_expired +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbefb50be d_set_d_op +EXPORT_SYMBOL vmlinux 0xbf051d4b tcf_block_put +EXPORT_SYMBOL vmlinux 0xbf088b79 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xbf13fceb seq_lseek +EXPORT_SYMBOL vmlinux 0xbf27eb03 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbf2fff08 tty_vhangup +EXPORT_SYMBOL vmlinux 0xbf3da45a tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0xbf530a01 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf679113 phy_attached_print +EXPORT_SYMBOL vmlinux 0xbf89c502 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0xbf99a735 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa4a2ac dentry_path_raw +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfaea946 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc5d374 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfcf32d7 flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0xbfd37a94 folio_add_lru +EXPORT_SYMBOL vmlinux 0xc00f81aa inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc00fe137 try_module_get +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc03a3641 udplite_prot +EXPORT_SYMBOL vmlinux 0xc04f588e done_path_create +EXPORT_SYMBOL vmlinux 0xc059768d amba_release_regions +EXPORT_SYMBOL vmlinux 0xc05ac91a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc074856e netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc0819ab0 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0b87532 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xc0cce144 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xc0e07eba padata_free +EXPORT_SYMBOL vmlinux 0xc0e1dbbe flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xc0ed3e81 skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0xc0ef37ab tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc1108751 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc11a3b88 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0xc1427a80 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1813b86 put_cmsg +EXPORT_SYMBOL vmlinux 0xc195d8bb make_kuid +EXPORT_SYMBOL vmlinux 0xc1977012 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d917dd console_start +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1ed7249 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc1fe9c2e pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc2088936 touch_atime +EXPORT_SYMBOL vmlinux 0xc2108363 dm_table_event +EXPORT_SYMBOL vmlinux 0xc2270d65 jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc232b192 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xc232bb82 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xc25802d1 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xc26eaf44 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xc284ecfc generic_read_dir +EXPORT_SYMBOL vmlinux 0xc28817d0 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xc28c221f security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2b348b3 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xc2bdb35c iget_locked +EXPORT_SYMBOL vmlinux 0xc2d0a397 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc2d0b020 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f11eac meson_sm_call_read +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc2fe04a0 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc313469b gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xc3164c68 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc3244b1d pci_find_bus +EXPORT_SYMBOL vmlinux 0xc326f451 sock_no_accept +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc339d1dd pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc33aacef nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0xc346c74a __block_write_begin +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc378ff7e fwnode_iomap +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3995f65 dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xc3ae6be8 notify_change +EXPORT_SYMBOL vmlinux 0xc3bc72ad trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xc3c41c32 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3e38daf __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc3edabbb inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc404117e unregister_netdevice_notifier_dev_net +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 0xc43d26d6 bd_abort_claiming +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc45a9d45 phy_error +EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next +EXPORT_SYMBOL vmlinux 0xc46f001d devm_rproc_add +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc470ebef udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc4724d2e rproc_set_firmware +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc495b271 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0xc49dfcf1 folio_mapping +EXPORT_SYMBOL vmlinux 0xc4a504ed path_has_submounts +EXPORT_SYMBOL vmlinux 0xc4b0d12f __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4d153b3 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc4d7e8aa dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc4df8969 napi_build_skb +EXPORT_SYMBOL vmlinux 0xc4e2a220 register_cdrom +EXPORT_SYMBOL vmlinux 0xc503f842 build_skb +EXPORT_SYMBOL vmlinux 0xc51da8a4 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc525f01b locks_copy_lock +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc533dfb5 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc5646d3b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xc568cad2 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc5711b6e ip6tun_encaps +EXPORT_SYMBOL vmlinux 0xc57b0497 reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc57f81c1 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc594ccbb pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59d0df5 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5acdf32 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5bf6824 netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xc5c0f5dd netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0xc5c1f68f ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xc5d06f14 folio_account_redirty +EXPORT_SYMBOL vmlinux 0xc5d17426 mod_node_page_state +EXPORT_SYMBOL vmlinux 0xc5dc1bf9 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5eb25a9 ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0xc5f59bf4 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc5fda6fc try_lookup_one_len +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6132794 bpf_map_get +EXPORT_SYMBOL vmlinux 0xc619859b udp_gro_complete +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc654cb8d secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc663da58 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc67a1cf7 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xc6800f77 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xc6853afc dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0xc6858bad blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xc688f8fb sk_mc_loop +EXPORT_SYMBOL vmlinux 0xc689cd50 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc697c6de max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xc69bae90 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc69bf480 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6a74ced dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc6b87586 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0xc6b893aa __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6d23a21 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f7d6fc vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc70d611b scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc70f5423 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xc71081d9 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xc716583f __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xc719f351 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc74776ab ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc772c88f unregister_quota_format +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78e576b max8925_reg_write +EXPORT_SYMBOL vmlinux 0xc792289c sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0xc79bcb81 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ac4e54 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0xc7af7a39 config_group_find_item +EXPORT_SYMBOL vmlinux 0xc7b49ad3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7c872bc rproc_shutdown +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8230336 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xc83100a2 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc847294e phy_device_create +EXPORT_SYMBOL vmlinux 0xc8480cd5 nd_device_notify +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84c0cdd of_device_register +EXPORT_SYMBOL vmlinux 0xc857413a __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xc866396a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc867b204 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87585e9 bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0xc87993d9 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc87b532e mount_bdev +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8971a0f tty_kref_put +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc89d761b vfs_symlink +EXPORT_SYMBOL vmlinux 0xc8a01944 skb_checksum +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2dc51 import_single_range +EXPORT_SYMBOL vmlinux 0xc8b9f582 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8f4a981 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xc8f9aeaa migrate_page_copy +EXPORT_SYMBOL vmlinux 0xc9162237 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc918ce23 nf_log_unset +EXPORT_SYMBOL vmlinux 0xc92966f6 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xc92bf390 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc94d45eb __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9682a0e fman_reset_mac +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc97d102a __of_get_address +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc98a7257 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99fba91 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9fb9f79 pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xca0d1c52 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca2468e7 register_filesystem +EXPORT_SYMBOL vmlinux 0xca324fcc jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xca353422 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xca3db336 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca4de501 rproc_alloc +EXPORT_SYMBOL vmlinux 0xca582f97 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xca5a1135 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xca5dbc8a dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xca617ec1 thaw_super +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca6a449f __d_lookup_done +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xca9c2dfa inetdev_by_index +EXPORT_SYMBOL vmlinux 0xcabcac68 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xcabcd8d3 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcad836cf mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcaeec3f6 of_get_next_child +EXPORT_SYMBOL vmlinux 0xcaffb49b dquot_get_state +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb1e5a3d udp6_set_csum +EXPORT_SYMBOL vmlinux 0xcb1e767c dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0xcb2a1de7 follow_down +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb3e07b1 file_path +EXPORT_SYMBOL vmlinux 0xcb4ad26e request_key_rcu +EXPORT_SYMBOL vmlinux 0xcb53c440 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xcb635644 tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0xcb66f23e eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb7511d4 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xcb781486 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xcb95b25a ipmr_rule_default +EXPORT_SYMBOL vmlinux 0xcb9ded68 genl_register_family +EXPORT_SYMBOL vmlinux 0xcba4c2e9 unix_attach_fds +EXPORT_SYMBOL vmlinux 0xcba9cd7b __register_binfmt +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc1e329 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xcbcde30d rt6_lookup +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbd9d3ba proc_create_seq_private +EXPORT_SYMBOL vmlinux 0xcbe2809a kobject_get +EXPORT_SYMBOL vmlinux 0xcbe31acc netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcc102b8f misc_register +EXPORT_SYMBOL vmlinux 0xcc11e3bb napi_gro_receive +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 0xcc28f7fa iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xcc2ee415 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc39c217 vc_cons +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc4d4708 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc594932 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0xcc5c2df4 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc61d5a3 d_alloc +EXPORT_SYMBOL vmlinux 0xcc6bb5a9 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xcc70719b tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0xcc71715d vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xcc7e240e vlan_for_each +EXPORT_SYMBOL vmlinux 0xcc8452d2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xcc883958 skb_expand_head +EXPORT_SYMBOL vmlinux 0xcca2d172 shmem_aops +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca7b4ae i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xcca8705b ps2_handle_response +EXPORT_SYMBOL vmlinux 0xccba3f1e acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xccc01406 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +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 0xcd0cd4bf fqdir_init +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2a5df9 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xcd551db2 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xcd849315 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xcd86c9c5 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcdaed681 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xcdbb4296 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcdbfc041 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde76826 register_console +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce04af0a inet_accept +EXPORT_SYMBOL vmlinux 0xce074af2 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xce1e9db0 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce46dbe3 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xce4cdb8e fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce538e3f of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5b22db xfrm_lookup +EXPORT_SYMBOL vmlinux 0xce64c779 skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0xce72ca87 unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0xce72ff40 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce74baf2 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce80ba16 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xce9de616 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xcea814ee xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb8af00 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0xcec95920 mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceff798a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf389519 con_is_bound +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf3cabb1 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf60100d netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xcf618cfd __inet_hash +EXPORT_SYMBOL vmlinux 0xcf6d75b9 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xcf8af757 generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xcf98ecfe setattr_copy +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcfa60902 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xcfa7d1aa tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfc7238c cdev_init +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe7aa99 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xcff1e3ac ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xd01b1241 lru_cache_add +EXPORT_SYMBOL vmlinux 0xd03ba6aa devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05e4db7 phy_print_status +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06c7a3f sock_wfree +EXPORT_SYMBOL vmlinux 0xd06dc49b xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd08adb2b trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd0901c08 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd0a636b7 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0d7fdad xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xd0dfa06f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd11b9e6f migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xd1296480 km_state_notify +EXPORT_SYMBOL vmlinux 0xd12dd720 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd13eda10 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xd16a4ade iptun_encaps +EXPORT_SYMBOL vmlinux 0xd173e066 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd1754f06 genphy_suspend +EXPORT_SYMBOL vmlinux 0xd1767998 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd18b3fdc clear_nlink +EXPORT_SYMBOL vmlinux 0xd194518d nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd19e9fdd icmp6_send +EXPORT_SYMBOL vmlinux 0xd1b21c7d ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0xd1c00edb mdio_driver_register +EXPORT_SYMBOL vmlinux 0xd1c167f4 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e34378 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xd1f3c1d6 bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xd2000f8a ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd2306a39 edac_mc_find +EXPORT_SYMBOL vmlinux 0xd235ebe2 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd247ccc5 dst_release +EXPORT_SYMBOL vmlinux 0xd24f8e5a pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xd2503580 xfrm_state_flush +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 0xd261b6fb sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xd2639415 clkdev_add +EXPORT_SYMBOL vmlinux 0xd26a7113 set_user_nice +EXPORT_SYMBOL vmlinux 0xd272d3a0 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27c83e1 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd286a716 unload_nls +EXPORT_SYMBOL vmlinux 0xd2b4f8dd param_get_short +EXPORT_SYMBOL vmlinux 0xd2c29b7a i2c_transfer +EXPORT_SYMBOL vmlinux 0xd2c3bbdd input_copy_abs +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2cb16f2 dentry_create +EXPORT_SYMBOL vmlinux 0xd2d08f72 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3225e77 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xd330fe7c pcie_capability_write_dword +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 0xd36020ba fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd36ecd6b eth_header_parse +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd397b9a8 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xd3a198b1 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xd3a72795 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd3c02718 devm_ioremap_np +EXPORT_SYMBOL vmlinux 0xd3e6e653 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd4106e5d dup_iter +EXPORT_SYMBOL vmlinux 0xd41da30e mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xd43d6bc6 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xd4586878 __fs_parse +EXPORT_SYMBOL vmlinux 0xd458c8c4 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45f520f iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xd46e6020 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4885f5e xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4cda357 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4db16eb dquot_quota_off +EXPORT_SYMBOL vmlinux 0xd4dd6771 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd4eeb9df configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xd4ef52d1 ping_prot +EXPORT_SYMBOL vmlinux 0xd4f04507 fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd51db894 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd5228a08 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd549a7c8 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xd5597157 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0xd55dfa0d jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0xd57f4a3e mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xd59d5707 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xd5a26140 phy_stop +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5bf8ffa forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xd5db3991 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0xd5dd243d arp_create +EXPORT_SYMBOL vmlinux 0xd5ed37a8 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd619599c skb_find_text +EXPORT_SYMBOL vmlinux 0xd62352e0 follow_down_one +EXPORT_SYMBOL vmlinux 0xd628b41a cdev_set_parent +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd63084e9 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0xd6352c9e sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xd637a0a5 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xd63b8367 xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd6605d4b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ce621e netdev_crit +EXPORT_SYMBOL vmlinux 0xd6e8a9c2 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ec4fd0 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd703e1d6 devm_memunmap +EXPORT_SYMBOL vmlinux 0xd7050da9 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xd70c5e21 inet_sendpage +EXPORT_SYMBOL vmlinux 0xd70c6b43 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd721f918 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xd7235614 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73b3795 phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd73e4111 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd7868bfe __free_pages +EXPORT_SYMBOL vmlinux 0xd786b133 inode_set_flags +EXPORT_SYMBOL vmlinux 0xd7904b7b param_get_hexint +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7ce0835 dm_register_target +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e000d3 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0xd7e2a8e7 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e994a0 from_kprojid +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd814c6e1 key_task_permission +EXPORT_SYMBOL vmlinux 0xd8194ec7 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd81b5a83 d_instantiate +EXPORT_SYMBOL vmlinux 0xd82530ec dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd82f98c2 is_subdir +EXPORT_SYMBOL vmlinux 0xd832656c md_update_sb +EXPORT_SYMBOL vmlinux 0xd83e098c skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xd851f476 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd854184b seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xd85506a6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0xd855a69d phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0xd86b5a46 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xd8763d87 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xd8860f12 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xd88ad1b3 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd89b8786 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b049f5 scsi_add_device +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8b967f3 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8e0d5e7 generic_file_open +EXPORT_SYMBOL vmlinux 0xd8f27446 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0xd912ca70 dm_get_device +EXPORT_SYMBOL vmlinux 0xd914e661 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd931b1a7 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd9375d7d mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0xd9412793 tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd94dc126 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd973c512 sock_release +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd989c7d9 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xd98eee09 param_ops_int +EXPORT_SYMBOL vmlinux 0xd9987643 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xd99b388d ptp_find_pin +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ab595b of_find_property +EXPORT_SYMBOL vmlinux 0xd9b20976 nobh_write_end +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9bf637b unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xd9d39e6e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9dc1efe blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xd9dffa55 d_add +EXPORT_SYMBOL vmlinux 0xd9fa4c82 filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0xd9fa87e2 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xda005f8a pci_request_irq +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda26963e __mdiobus_register +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3d57bb mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xda4da4a7 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xda5b80f0 dst_destroy +EXPORT_SYMBOL vmlinux 0xda6aa74a __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xda8731e4 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xda8c7af1 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xda91a37d of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xdaa1e66d devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdabf2779 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0xdac07b2f skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaeb8930 pci_release_region +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdafdd5a6 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xdb18aa56 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xdb1e0424 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb2e351f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xdb3f20ac pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xdb49c209 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xdb621155 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb742fbb __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb80c065 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xdb831cf3 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0xdb8bdfea twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xdb95e943 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0xdbbb2206 sock_i_ino +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdc02efb4 tcp_release_cb +EXPORT_SYMBOL vmlinux 0xdc0fac51 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xdc1375e1 readahead_expand +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1e78e8 fget_raw +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48021e folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4bad37 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5a10d1 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0xdc6896be jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdc703bc9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xdc7e9817 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0xdc882d1c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xdc8a64be tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xdc8d2e94 _dev_err +EXPORT_SYMBOL vmlinux 0xdc9e2088 key_revoke +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdcafd2bc vm_map_ram +EXPORT_SYMBOL vmlinux 0xdcb57d8b seq_release_private +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcb8d395 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xdccb113f nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xdcce7371 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdcf285cb thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xdcf6e5d5 qdisc_reset +EXPORT_SYMBOL vmlinux 0xdcfe43d3 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd055e62 vfs_setpos +EXPORT_SYMBOL vmlinux 0xdd167827 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd19aba4 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd334725 phy_device_register +EXPORT_SYMBOL vmlinux 0xdd48c913 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd654dfd tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xdd6fc91c netlink_capable +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd7e41eb mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8528ff blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0xdda6410d input_get_timestamp +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xdde17f2e dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xdde7f974 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xddf6c818 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0xde14ea84 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde2b3512 sk_error_report +EXPORT_SYMBOL vmlinux 0xde46548f xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde5a7130 input_release_device +EXPORT_SYMBOL vmlinux 0xde5baf5a xattr_full_name +EXPORT_SYMBOL vmlinux 0xde65d884 fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xde948b56 freeze_super +EXPORT_SYMBOL vmlinux 0xdea6c790 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xdeadbd43 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xdeb49dac sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xdec88283 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xded69dc5 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xdedced51 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xdee20cad pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdefded52 generic_write_end +EXPORT_SYMBOL vmlinux 0xdf04a474 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xdf07e672 dquot_initialize +EXPORT_SYMBOL vmlinux 0xdf1575a9 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xdf230251 dst_init +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf2fd224 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf39c742 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xdf49adee discard_new_inode +EXPORT_SYMBOL vmlinux 0xdf49d6e2 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5ed014 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6d948c ethtool_notify +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8f4faa init_pseudo +EXPORT_SYMBOL vmlinux 0xdf8f8537 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa25d29 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xdfbad833 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xdfbd1dc0 par_io_of_config +EXPORT_SYMBOL vmlinux 0xdfbed78c sock_set_keepalive +EXPORT_SYMBOL vmlinux 0xdfbf1b97 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfdf0096 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xdfe9f516 __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xdff18063 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xdff38d36 tcf_idr_search +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xdfff442b of_platform_device_create +EXPORT_SYMBOL vmlinux 0xe018c03f __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xe01ec474 free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0xe01f9ab9 component_match_add_typed +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 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe074ab53 netif_tx_lock +EXPORT_SYMBOL vmlinux 0xe0787def __breadahead +EXPORT_SYMBOL vmlinux 0xe07c7782 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07f834d component_match_add_release +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe08f0a21 textsearch_register +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b3b193 bdi_unregister +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c45ad3 netlink_ack +EXPORT_SYMBOL vmlinux 0xe0d0349a phy_start_cable_test +EXPORT_SYMBOL vmlinux 0xe0d1d599 pci_enable_msi +EXPORT_SYMBOL vmlinux 0xe0e2a289 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe0f68c1a generic_block_bmap +EXPORT_SYMBOL vmlinux 0xe100b9fa get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xe102784a flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xe10b5b2d pci_free_irq +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe123f3d9 dma_fence_release +EXPORT_SYMBOL vmlinux 0xe1258f8b get_tree_keyed +EXPORT_SYMBOL vmlinux 0xe12bda79 vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xe138fb8c percpu_counter_add_batch +EXPORT_SYMBOL vmlinux 0xe13a537f tso_count_descs +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1458533 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xe199e0b2 phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xe1c78014 __ps2_command +EXPORT_SYMBOL vmlinux 0xe1d0acfc phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ffcfc5 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xe2172e02 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22b7ede tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe22bd182 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe2464136 file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xe260f0f4 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xe260f1d3 dqput +EXPORT_SYMBOL vmlinux 0xe26ab808 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe277ccf3 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0xe2922f43 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xe2ac4f72 __quota_error +EXPORT_SYMBOL vmlinux 0xe2b60fd5 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe2ce58a7 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dbc295 genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0xe2e3d7fb try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe31386d3 security_sock_graft +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe33abbb8 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe340e5b1 hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe355e25d locks_free_lock +EXPORT_SYMBOL vmlinux 0xe36281d5 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0xe3685b0c bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0xe37382bc simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe38f28e7 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xe39a03c0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe39f5250 set_binfmt +EXPORT_SYMBOL vmlinux 0xe3a942f1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xe3aad72f of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xe3b51018 folio_wait_bit +EXPORT_SYMBOL vmlinux 0xe3bc0c13 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xe3c3dfa2 register_key_type +EXPORT_SYMBOL vmlinux 0xe3c4951c skb_push +EXPORT_SYMBOL vmlinux 0xe3d2f7e7 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0xe3d67068 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0xe3e7bb70 blk_mq_delay_run_hw_queues +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 0xe40cb97f devm_iounmap +EXPORT_SYMBOL vmlinux 0xe417a9d9 napi_get_frags +EXPORT_SYMBOL vmlinux 0xe42046f7 neigh_xmit +EXPORT_SYMBOL vmlinux 0xe426b1bb lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0xe42a6950 xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xe430953e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe4356cbc tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0xe43fc9b4 bdevname +EXPORT_SYMBOL vmlinux 0xe4488065 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe460caa4 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xe47c1836 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xe48190e1 netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xe485e07b netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0xe4ad2ce2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe4b0d6f1 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4bd1805 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xe4c4ba88 vga_get +EXPORT_SYMBOL vmlinux 0xe4c93dff datagram_poll +EXPORT_SYMBOL vmlinux 0xe4f3a748 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe4ff0308 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xe51cc25c dquot_commit +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53fe0d8 add_to_pipe +EXPORT_SYMBOL vmlinux 0xe54f745d dma_set_mask +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 0xe5918eda qman_start_using_portal +EXPORT_SYMBOL vmlinux 0xe59d8048 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xe5ae5ebf tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe5bce164 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xe5c2f780 con_is_visible +EXPORT_SYMBOL vmlinux 0xe5c475d1 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5dbff94 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xe5dc6dcc param_ops_charp +EXPORT_SYMBOL vmlinux 0xe5e9ff6d wireless_spy_update +EXPORT_SYMBOL vmlinux 0xe5ef5765 backlight_force_update +EXPORT_SYMBOL vmlinux 0xe5fed672 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0xe60cdd75 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61a04e4 set_page_writeback +EXPORT_SYMBOL vmlinux 0xe63033f3 uart_resume_port +EXPORT_SYMBOL vmlinux 0xe644956f register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xe650d960 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe66af766 sync_blockdev +EXPORT_SYMBOL vmlinux 0xe66afd4d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe670c361 xsk_tx_release +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6d72306 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe6faf62c rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0xe7044cbb open_with_fake_path +EXPORT_SYMBOL vmlinux 0xe7169a35 pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe73a4f67 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xe73f90d6 kill_anon_super +EXPORT_SYMBOL vmlinux 0xe743e8c4 devm_memremap +EXPORT_SYMBOL vmlinux 0xe745e9d0 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xe74f8730 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe759752c key_type_keyring +EXPORT_SYMBOL vmlinux 0xe75a7aa5 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xe75b7c38 xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xe75f018d simple_open +EXPORT_SYMBOL vmlinux 0xe7633817 generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe791c53e page_cache_next_miss +EXPORT_SYMBOL vmlinux 0xe79fdd7d pci_set_master +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a987f1 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7d028a3 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xe7d3397f inode_set_bytes +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7eb807e kernel_accept +EXPORT_SYMBOL vmlinux 0xe80374cb fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xe813891e dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xe817469d iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xe828ad03 param_get_uint +EXPORT_SYMBOL vmlinux 0xe82d1ea2 genphy_resume +EXPORT_SYMBOL vmlinux 0xe82f9492 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xe832d346 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe84eac85 input_free_device +EXPORT_SYMBOL vmlinux 0xe851d6ef __module_get +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe861c3c5 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0xe86c96da vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0xe8777d1a __kfree_skb +EXPORT_SYMBOL vmlinux 0xe8b468a1 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8e0a7ac fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0xe8f5142e ihold +EXPORT_SYMBOL vmlinux 0xe8f54ecf cdev_alloc +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 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe974c2cf of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xe97d6536 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe982da3c get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xe997d64c mdio_device_register +EXPORT_SYMBOL vmlinux 0xe9a0a214 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9cad393 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xe9d08edd dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9ea1354 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffc063 down_trylock +EXPORT_SYMBOL vmlinux 0xea093d04 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xea121653 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xea1c3e3a arm_smccc_1_2_hvc +EXPORT_SYMBOL vmlinux 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea508b75 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea9213f5 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xea9f0419 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xeac1d2f7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xead6c4d7 sk_free +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeadba79b serio_interrupt +EXPORT_SYMBOL vmlinux 0xeae2026a blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaef7cb3 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xeaf3f2be put_ipc_ns +EXPORT_SYMBOL vmlinux 0xeaf65a39 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb12064d is_free_buddy_page +EXPORT_SYMBOL vmlinux 0xeb1e2cee tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb26afea user_path_create +EXPORT_SYMBOL vmlinux 0xeb2be1a9 pci_clear_master +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4581b4 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xeb69ee0a xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb7fc0dc pci_write_config_word +EXPORT_SYMBOL vmlinux 0xeb943100 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xeb9ba969 devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xebaaf172 seq_open +EXPORT_SYMBOL vmlinux 0xebc20f27 sg_miter_start +EXPORT_SYMBOL vmlinux 0xebcc38ff generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xebdb1c1a security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0xebdd73e0 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xec0522ee ip_do_fragment +EXPORT_SYMBOL vmlinux 0xec10432e dev_disable_lro +EXPORT_SYMBOL vmlinux 0xec11aa54 nf_log_trace +EXPORT_SYMBOL vmlinux 0xec169824 sock_bind_add +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 0xec3af4c3 dquot_release +EXPORT_SYMBOL vmlinux 0xec3e3dc4 submit_bio +EXPORT_SYMBOL vmlinux 0xec3fd449 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec4c91e7 iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec52d3dd simple_transaction_read +EXPORT_SYMBOL vmlinux 0xec59ba7a keyring_alloc +EXPORT_SYMBOL vmlinux 0xec6794fa generic_file_mmap +EXPORT_SYMBOL vmlinux 0xec6eeca9 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0xec84d840 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0xec930c29 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xec95aa58 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xec97c1f4 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xec97f6da mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xec97f888 amba_driver_register +EXPORT_SYMBOL vmlinux 0xec9b8f46 param_set_long +EXPORT_SYMBOL vmlinux 0xec9ca237 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xeca656ba d_path +EXPORT_SYMBOL vmlinux 0xecbae8fe unlock_buffer +EXPORT_SYMBOL vmlinux 0xeccb98ae config_item_get +EXPORT_SYMBOL vmlinux 0xece2dea9 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf3bfde phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0cbf0f touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xed0d5f00 of_device_unregister +EXPORT_SYMBOL vmlinux 0xed2296bb rtc_add_groups +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed3a0bd6 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xed3ca6c2 pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xed50e676 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed90bdee __nla_put +EXPORT_SYMBOL vmlinux 0xed96ad51 vfs_mkobj +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xedda6183 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xee0c0d04 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xee0fda81 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xee1aa8c1 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee42a7e4 netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xee51e66c bio_init +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xee624b97 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xee6fbe4e xfrm_replay_seqhi +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 0xee8efa49 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaec3f8 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0xeebd35fc dump_align +EXPORT_SYMBOL vmlinux 0xeeda53b6 inet_put_port +EXPORT_SYMBOL vmlinux 0xeee5f8c9 d_splice_alias +EXPORT_SYMBOL vmlinux 0xeee6dc04 param_set_byte +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeefc7ad6 unregister_console +EXPORT_SYMBOL vmlinux 0xef28eaf8 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xef4d3967 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xef64d833 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbfa666 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xefc0bf4f find_inode_nowait +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd2878c pskb_trim_rcsum_slow +EXPORT_SYMBOL vmlinux 0xefe3e1e6 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xefedc922 dquot_quota_on +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 0xf006964b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf006baf8 gro_cells_receive +EXPORT_SYMBOL vmlinux 0xf0142f56 phy_disconnect +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf03c6aac md_reload_sb +EXPORT_SYMBOL vmlinux 0xf068e4d4 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf06fc724 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf07cb7af alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xf0825297 devm_release_resource +EXPORT_SYMBOL vmlinux 0xf091955f __folio_start_writeback +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0a78ba7 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf0ad9bf6 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0b37992 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0xf0c4b588 uart_register_driver +EXPORT_SYMBOL vmlinux 0xf0cb75d9 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf0dfb758 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xf0e584d2 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xf0f522a1 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf1018e2b mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xf11c3037 kset_register +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf126506c vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf128ed71 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xf12bae78 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xf12fff2b __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xf136eaab __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xf13df0aa of_device_alloc +EXPORT_SYMBOL vmlinux 0xf15f21c4 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xf17b600c cdev_device_add +EXPORT_SYMBOL vmlinux 0xf180b058 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf199ceef tcp_seq_stop +EXPORT_SYMBOL vmlinux 0xf19ae3f9 fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1c2c9ea seq_escape_mem +EXPORT_SYMBOL vmlinux 0xf1c5aa39 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e5b85f dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eee684 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xf20e797e ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xf21db0a6 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf23344a0 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0xf23e3471 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24971c0 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf2731833 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xf2835b79 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf28fd751 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3265aa9 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf3287191 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf3453373 vc_resize +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf386c6b7 fd_install +EXPORT_SYMBOL vmlinux 0xf38eeca5 vfs_getattr +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 0xf3a8b125 input_reset_device +EXPORT_SYMBOL vmlinux 0xf3cfe8d8 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3f9bbc2 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf4057191 peernet2id +EXPORT_SYMBOL vmlinux 0xf414e234 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf465698c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xf46d9ab6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xf4706177 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47e6198 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xf4825e64 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0xf4853e91 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf48f56d7 dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xf494661a vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xf4a2e097 file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c64827 follow_pfn +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf502069e scsi_remove_host +EXPORT_SYMBOL vmlinux 0xf50c2343 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xf5134dad md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf543e049 pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0xf543f98b blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xf54709f2 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xf583d684 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5dc5835 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf5e1e46d blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5ffad02 _copy_to_iter +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf64f34b3 __napi_schedule +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf66622f6 tcp_filter +EXPORT_SYMBOL vmlinux 0xf66896ba mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0xf6760a94 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xf6785309 generic_fadvise +EXPORT_SYMBOL vmlinux 0xf68249fe tcp_seq_next +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6957c50 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xf6b013f1 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xf6bdd97e is_bad_inode +EXPORT_SYMBOL vmlinux 0xf6cb3bd2 nf_log_packet +EXPORT_SYMBOL vmlinux 0xf6e27f1a dcb_setapp +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fd9005 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf719c09b scsi_host_put +EXPORT_SYMBOL vmlinux 0xf71eba2b from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xf724d8f6 release_pages +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf73b9d76 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf7406c8d fput +EXPORT_SYMBOL vmlinux 0xf7507e98 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf76c0e58 mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf798af5f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xf79c7c9c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xf7a00808 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf7b9e9bc tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xf7bddb90 iov_iter_revert +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7c8c370 seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0xf7cfd0c8 mdio_find_bus +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d74d23 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7eb69a9 tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xf7edd5b6 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf7f05eb2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xf7f7e2bf page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xf80486e0 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81ee9ea watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xf8283952 do_SAK +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8389990 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf8555ecd bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf8634a87 vm_insert_page +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf89eb98b vme_dma_request +EXPORT_SYMBOL vmlinux 0xf8c48f0b dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf8ca80b5 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xf8cdf2f3 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8df5cf4 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf9165e42 serio_rescan +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf92eb8b6 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xf930fff2 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9457b74 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xf94caf6e page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf990acf4 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xf99ccfe8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b757ff xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xf9bb0c5d flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9ea0bcb pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xf9eafb88 phy_suspend +EXPORT_SYMBOL vmlinux 0xf9efeb38 netlink_set_err +EXPORT_SYMBOL vmlinux 0xf9f6ff1a blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xf9fd9e99 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08224f devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa08e45d tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0xfa0b38ad netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xfa12dd45 dm_put_device +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2dc533 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa2f375d vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xfa330c97 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xfa39ad9a max8998_read_reg +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa642ed2 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xfa67f7db dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xfa925c5b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfaad6ec1 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0xfaae34c5 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0xfac7e8bf write_inode_now +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad07d5e scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfad391d7 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xfad85dca kobject_put +EXPORT_SYMBOL vmlinux 0xfad9ef03 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0xfaed2f52 ilookup5 +EXPORT_SYMBOL vmlinux 0xfaee4ad0 netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0xfaf6bba2 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xfaf8bdb2 posix_test_lock +EXPORT_SYMBOL vmlinux 0xfaf9eba2 of_get_parent +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb34b111 vga_client_register +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb4e0d4d tso_build_data +EXPORT_SYMBOL vmlinux 0xfb4fad0c flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xfb5d235b inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb80a570 simple_get_link +EXPORT_SYMBOL vmlinux 0xfb8b10b8 md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xfb933194 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xfba0ebdb dev_uc_del +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb08e86 qdisc_put +EXPORT_SYMBOL vmlinux 0xfbb40647 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xfbb658d1 may_umount +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc88dab flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xfbdcf84d ip_setsockopt +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbf7b4b6 mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0xfc02148d tcp_add_backlog +EXPORT_SYMBOL vmlinux 0xfc31e430 rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc420c4c security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc43c081 find_vma +EXPORT_SYMBOL vmlinux 0xfc4a4f46 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xfc515f02 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc6fbf96 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xfc739ea8 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfcc392e6 ata_print_version +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd9e412 _copy_from_iter +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceccff6 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xfcedadfc __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xfcf6a1a0 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xfd2c2f38 input_allocate_device +EXPORT_SYMBOL vmlinux 0xfd4addde __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0xfd550d53 set_cached_acl +EXPORT_SYMBOL vmlinux 0xfd6c9c84 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xfd746267 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xfd7b2d86 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xfd8700d8 may_umount_tree +EXPORT_SYMBOL vmlinux 0xfd9d7372 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xfdb6b089 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xfdc6d3ff inet_del_protocol +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd3f0df device_add_disk +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfde3f9ee no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0xfdf921ec __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe183b7d vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xfe1cf743 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe2c8e8d genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe537119 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xfe568cbd vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe62da51 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xfe8c61f0 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe97a389 param_set_bint +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb3baea pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xfeb43d44 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xfeb5d0aa verify_spi_info +EXPORT_SYMBOL vmlinux 0xfeba06fe skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfebc5ed7 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfede5dee fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0xfedff839 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xfee39015 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfef56a18 skb_queue_head +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff08a23f genlmsg_put +EXPORT_SYMBOL vmlinux 0xff0ddd37 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff77c90a of_node_put +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff80580a pcie_set_mps +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xffb77ded unpin_user_pages +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffdaba87 ip_options_compile +EXPORT_SYMBOL vmlinux 0xffdb7437 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfff12d94 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xfff6bb54 put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL_GPL crypto/af_alg 0x06753c31 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x07126be5 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x0920e619 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x0ceffee9 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x310b90b7 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x46e6ab28 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x604126a8 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0x629db777 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0x7052cd74 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0x73050b29 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x8969cad9 af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0x89dd1932 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a7d5788 af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x9d1da5b5 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xa5c2c773 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xacc12371 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe99f2bf af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0xc8e1870a af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x9b5651bd async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x54b29834 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xb6a3aa64 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x31bb1e28 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf9f42139 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x524bfbc6 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc02ebb17 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xcb397d89 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfdbd14b4 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x22cbdb70 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6368f512 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7f4dbace async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xf873b745 async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x5f5f6df4 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x91d67aae cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x2ee249bf cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x0e2f8eaf cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x0febf448 cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x528febfc cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x6826da5c cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x82341eb3 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x96fe3e4b cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9c4bf26a cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb3e426ab cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc407288 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc48fc2cc cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd27ea231 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd514e65e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xf157c1ad cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ba726a3 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x15da299f crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50536c72 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61b7d8ef crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x70a43aa8 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x88f2537c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8aac55fb crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8af6a403 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8e28ea9f crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x91fcc23f crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9993321c crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2dd83f0 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbc54abae crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc17797b4 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcbb71665 crypto_engine_exit +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 0xe19755d5 serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0xdfcedee1 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x0c512521 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x356c8bf6 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x466f5eb7 synth_putwc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x4c8d6f28 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x550699bf synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6368f139 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x6ec6d273 spk_do_catch_up_unicode +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 0x867ec6f2 spk_ttyio_ops +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 0x91975e4b spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x964fe559 spk_ttyio_release +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9f67e549 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xabe4eb9f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaf94197d synth_add +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 0xe194d0ef synth_printf +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xeb817235 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf3a0e733 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xf6b5937c spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x0008139f __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 0x4c2a86ab __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x5bb3ad9a acpi_nfit_desc_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xaae6bd99 acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xafcd0370 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 0x14348b6d __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xef28b774 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/auxdisplay/line-display 0x05f7eaf9 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xf93661b7 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x0c24c564 __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x492e9302 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x9d2c5b8c __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0xd0103425 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x3d8c9f73 __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x76dd519f __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0a06951f __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5900766d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3f5bfffd __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf1f15edb __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1f66a0b2 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x76537789 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x79ce3c0d __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa8257116 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5e82603d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6c654176 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe932eb1c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf360bfd1 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8011477d __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe7c33094 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05d9cbaf __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a52c891 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x21278525 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27177528 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x363e3f47 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c8b85b9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x60e7092f bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6b4db8c6 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cff39a5 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71bf0f01 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x71f42fd1 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a8ffd77 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c900164 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7d7217a1 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x886a5461 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x89c9b0f4 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91f9e5de bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95490cda bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x981845f6 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa967c95 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc165054c bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc941cd4c bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe768d622 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf3daf9a3 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0329d0ae btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x08c371a5 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x18ce6d4f btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x28cfb52d btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2be88485 btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x53f1289f btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6574d5cb btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbe67202b btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04915851 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x06441219 btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1fc48e45 btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2d08e038 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3460d726 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4770cb84 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x633c6258 btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x667806e8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x69e5e373 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7edca8a5 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x916283b8 btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x97bb34d1 btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb03ce247 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd3685118 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdc43d7f8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe1fac299 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe6687a2d btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x13705cac btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x339b2f3a btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3495783b btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x43a91550 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x56ed091a btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5eda10ba btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x897c2324 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x90489b6c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa082997c btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcb237820 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf9af0927 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x2bb967ee btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x38a549df btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xde3e33e4 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0b305189 qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x1a6b8b97 qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2bcf0b04 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc07c0e19 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc5651f69 qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x282834ca btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6b47c7f2 btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6f3c1414 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x97067a2d btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa8d4865f btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcfc581bd btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2c6299a6 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x428df9c4 hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x4d03ea80 hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x715865b0 hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3d691f54 mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x47250ae1 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x76b4eb16 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9cc7b7f4 __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x9fd16a16 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xccbe0265 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xd2febcc1 mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xe706706d mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x048115fb mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x07272aa7 mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x0f5b8638 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x12a25b04 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x185aaa81 mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x18984bb1 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x46a615e4 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x50531464 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5219bdf3 mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5a9f32f6 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5b8ca6fd mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x615e7111 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x67e7f0f0 mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7306432f mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x834a2433 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x84a9dd92 mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x883b3916 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x98ccb597 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x9b22e314 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb3772860 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb6f3f694 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc434f0a8 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc4e73446 mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc4f73070 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc7e30b94 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc9953e0d mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd5a04ed5 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd663b0c9 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd7276458 mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf488184b mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xf97d7f0e mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x39181507 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x92ba6795 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xa2d85e6d moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xd2956e4c __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x875f2cdf sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8e5a5e14 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x08757112 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x5f70dac6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xcd141e54 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x48c2d8fa 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 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 0x0fb98b4d 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 0x1cbd386f clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x21df937d qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x30387327 devm_clk_register_regmap +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 0x3d18a052 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51f92796 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x522f0727 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x618644ff qcom_cc_register_rcg_dfs +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 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 0x70c93b81 gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x730f7541 clk_disable_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 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 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b8647a8 clk_alpha_pll_postdiv_lucid_evo_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 0xa165fbe6 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac2e73bf clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac5ef549 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd285fafe qcom_find_cfg_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 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 0xeeb435ae clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xffb740da qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3f9cac63 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cfb8aaf sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x65403409 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6e8d6840 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9eea5b1b sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa5c083a4 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa6e8951c sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb566fd94 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6410d20 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe07bb8e8 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe5e868f3 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe8ff8963 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf97d8bc9 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfa17a451 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0d291cb1 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x141d39f9 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x164b8ed4 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x190ddab2 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1f7a0bc1 comedi_bytes_per_scan +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 0x333156af comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x36be2557 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x432f0577 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x45ce04ba comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4b844ef8 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4f56d687 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x54b63c8e comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x56354b7e comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5dc63dec comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x71a82a8b comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7608517f comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7691f15a comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x80951c81 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x817ac5dc comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8506af5c comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x98cd8209 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x9e58f100 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa2946627 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xa3fc5490 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb1e7f093 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb9313029 comedi_event +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 0xc2e1116c comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc9cc58cf comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd81e7440 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe633966f __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe8dc8e46 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xea784c95 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xedb45eba comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf0c3f0a7 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc0124f4 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfc1ba719 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x223f3066 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x249c75ab comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x4098735e comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x5ecfeb68 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x69d21cfc comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x9a637b4d comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xbf9059dd comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xf6a5c64d comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x235096de comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x2373f598 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x3a70c325 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xa567e7c9 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb91ed420 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xdd7509dd comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xe2691ed7 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x15b2b68b amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xe595bf58 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0xf3c6c16a amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1366bb06 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x18ca5ee0 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x26afaa53 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x32e79390 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3b838725 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x5db05d01 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6549f034 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6e28ad39 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x86e5c6c8 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x9201c50c comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xe8aba7c6 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xeb6f9b26 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf5fb2a59 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x52b45c34 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x5e668c9d subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xd84c5a92 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x892a450a das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x015926ce mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x13bb7613 mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x30452024 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x489e7927 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x60079ad4 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x66b6e791 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x77c6ab89 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8ea01da9 mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x8fa01098 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9228e7fb mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x92874350 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9b26a708 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x9dcbb7a7 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xabb2fc1f mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xce9498b6 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xdcdaa83d mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x92dc1e22 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc3f9314b 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 0x0cd0d051 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x1db09e9e ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x27a1eaa8 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x3b194a94 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x59020621 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x647b453f ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6a8690e7 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6ed4ec8c ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6f6ef233 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa6539b3f ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc0631374 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc1ccf920 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc48975f5 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd60435b4 ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xd6cdc786 ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xef68802d ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x4f88b7d7 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x80aa03f6 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x97ff53c3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xcc226b7f ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xe544c767 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfb79a889 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1b8d497f comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x3a353e80 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x423e36fa comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x95b1c9ec comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x983b7cff comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xbd1e5cb1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf60c7e00 comedi_open +EXPORT_SYMBOL_GPL drivers/counter/counter 0x0945fef6 counter_push_event +EXPORT_SYMBOL_GPL drivers/counter/counter 0x1dc8de5c counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x242c0e18 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x2f503407 devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x89072d25 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x988783fd devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xa97491c1 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0xb8de4b03 counter_put +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x30cf3c8b ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x3a1a3979 ccp_version +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x03273e56 hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x04bfa6eb hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x07314c8a hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x22fb1b5c hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x24ab9722 hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2618b6c0 hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2d97542c hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x337db233 hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x3aa5e950 hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x433d1724 hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x44bc2a85 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x44da92e0 hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x47de20d2 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x51e75ed7 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x681ce9c3 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x74728a36 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x79da2192 hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x853b19de hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x89fc6082 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8cc9d7c9 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8ed6a89d hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x95c9aa12 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x961c771b hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa61c0b1e hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa83df849 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa8bbabb5 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc0c98e66 hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xc5d70233 hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xcffcfdb9 hisi_qm_diff_regs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xda70410d hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdb4fb8ac hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xddaecf51 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe32793e8 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf1908d6c hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf3bb8049 hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xf75f9974 hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfa32348f hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfc895cff hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfdcbc5d2 hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfeee7746 hisi_qm_diff_regs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x5f22a32f hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0xf527f02b hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0xfda2ec3d hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x1e83ed79 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 0x54f76496 dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x72d6b575 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xff9e3b4d dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0b719013 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0bf4fe80 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x322c281d do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x3ce2a936 idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x651a605e dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6d7e6a59 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x76d443bd dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x94c5e9ad dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xf3ff408f idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x24f1e98f dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x39dc7d5a dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3dbbc635 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x43f0f0a5 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x57ae9d37 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5cd9e9a8 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5cf6381c dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb7f1e252 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc9a5f701 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf1831a44 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x2deb048e fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3403b688 fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3645222a fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x48811de9 fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x49b88112 fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x57456760 fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x641cc5ad fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x70802917 fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7718e3bf fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8886a2cc fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x8b43a49e fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xb6b15e4d fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd34134a7 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xd4f733f3 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xe6878555 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xed22a542 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xf999565e fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0x1233f36e hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf4f71c22 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xff2ead38 fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x388b4278 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3dc564ba ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x421a44fc ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8ec07c2a ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9b4f5619 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0xf4b36238 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x56d3bf8d get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x002a8847 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x013779a8 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x24efa047 cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x413ada78 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x42a6abb3 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5c5bf8b1 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5de0ef99 cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5f1d719d cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5fdfe1fa cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x60780395 cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x64e8096b cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x64f5e025 cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6580f6a2 cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x668f16b9 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x68034b0f cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6e0636fb cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7024083f cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7d5d52f2 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x93e6df50 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa5136a2f cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb29f2e97 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbcef0ad8 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbf90f1e5 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfac8fe25 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x8ae07155 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x41d5ad1c stratix10_svc_allocate_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x4c73b738 stratix10_svc_request_channel_byname +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x50f5368a stratix10_svc_free_channel +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x595b630e stratix10_svc_free_memory +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0xd3df684d stratix10_svc_send +EXPORT_SYMBOL_GPL drivers/fpga/altera-pr-ip-core 0x5619c004 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x035ade0e dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0945999f dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x19b42678 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e07e53c dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x39046698 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a55bd21 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49e92efd dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d76bd5c dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57240622 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x617dd6b6 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6267bb2d dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72bed675 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d722324 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8d63e643 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x94f92d72 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9f3f9164 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaefb7f29 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbad1216b dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb3c7f0b dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4600324 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdccda2c4 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe71d3f80 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeaccea99 dfl_fpga_feature_devs_enumerate +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 0x3efa7a92 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x53441420 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x81a3a6cd of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa1cbbbec fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa7ff2232 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc57f2824 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xda279469 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe24ddd6b fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeb929a15 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x19f3f0c1 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x36d58a5e fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x491d92ea fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5745ba3a devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x57871c21 fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x6a44842a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7ff8856e fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa15a878f fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa3490da3 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd6625f60 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xdf824aa6 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xebc41a4c devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf8ab9d90 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2a3e861a fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4b1df861 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6a483e87 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6dd6eb57 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8d597eec fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x265d684f fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x2eb2fe4c fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x48f3b3ed fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x4b642a41 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5a57d574 fsi_free_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x669e258c fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x762cf7e6 fsi_device_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x78060f23 fsi_slave_read +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x90f03e47 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xa390fc02 fsi_master_register +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 0xdb0368bf fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xee7e4f99 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x3a95891b fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x0b5f34dd sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xe425fe8e sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x18e30bdd gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x194d3483 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x4667b1ce gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x7bf6d79f gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x9d38aaa8 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x0e14153b gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x94d6d300 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x9c5cb7c0 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xcc5f7231 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xf9fa7033 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x12829229 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x745f0c63 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x083a8e53 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x70c70e60 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x14d40c19 analogix_dp_start_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x3ee0dd60 anx_dp_aux_transfer +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x434ffb69 analogix_dp_suspend +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x455d5298 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x4da4a9c2 analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x7b24a0e6 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd4fe9a36 analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xd9e569d4 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xf1658bd2 analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x09340e05 dw_hdmi_set_channel_count +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x094f6fc5 dw_hdmi_phy_i2c_set_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x1461e227 dw_hdmi_set_channel_status +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 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 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x821c6ec2 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xb65f3c6d dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf93345df dw_hdmi_set_plugged_cb +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 0x1d9d131a 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 0xe2755d99 dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xe5171e7d drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x06c35463 of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x113ac151 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7ab4b546 devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x8b932477 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xe0391f43 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0a2e7f95 drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0b87c963 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1f9faced drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2783224e drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2902af95 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3f4e4a3a drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x489a4e0d drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5df1f645 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x715650cf drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7eed10a2 drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x809316e4 drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86c69137 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x86ee2db4 drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa9a48c21 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad1bc743 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 0xb08a04e3 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb740ad5e drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xccacfddc drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc482ac2 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfec83d6d drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x2bc527fd drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x31d304a4 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x5edc0352 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x6c6d4a5f drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x6e1fe93d drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x77252931 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x815369e3 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x911035df drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x9df853f1 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xa8791dce drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xdc63bab1 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe773e7af drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0f7e87eb drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x13c1fce6 drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3388784d drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x443ee3e4 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x50fedcc5 drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x59637ff6 drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x85ef0c34 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc3979bc9 drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xdc076c34 drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xeed7a673 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x74eb0f88 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x7576b3ab drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x9d90428f drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb325b1d2 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb90b9eca drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xd22f319d drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xead85754 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xeca34814 drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x1c030cd7 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x843bc32d meson_venc_hdmi_mode_set +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 0xea186705 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xeb7f982c meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xe075ae80 s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xf6d9661c s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x938bab0e pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3b9ce50e rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9d1b6562 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xcbdc6d45 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xed5a9d6a rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x4d400e30 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7481080a rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xc32ea941 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xf502f1fe rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x72c558a1 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x9af7e585 rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb03536b0 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x23325dd7 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xa4bad43d ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xcfda9119 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x04f28c01 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x05eb9bdf gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x09230d3e gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x0d60d655 __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x156260c9 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x24b03657 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x29c5786d gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2d5c3b58 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2e36c4cf gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x32f4d600 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x360e7174 gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3df5189e gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x48595e95 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49d98e82 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x583d22b6 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x58f36f0e gb_operation_get +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 0x5fc25b31 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x60652f70 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x698b53eb gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6b7d47af greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x743a01a8 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x76e284e9 __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7af963f3 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8227cf54 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x87738261 gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b0a4dc3 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x98491d8b gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9cf1b8c9 gb_operation_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9dcf2c6b gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa402411c gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabeb1d91 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb20e8031 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb3e19e2d gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc224ab4d gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xc68101ae __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd23fa579 gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdbd55616 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe156ded0 gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xe7647960 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf5f03775 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf8e81a78 gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf97263da gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfc8b7e17 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/hid/hid 0x020d7b0c hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02ce96a7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04aae24d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0ea0c291 hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10525536 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13180056 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x13eda85a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b612a58 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ce17cd7 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d6ab979 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e881aae hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26aa3355 hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b3bbffc hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3991bd33 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39e31a2c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dd93deb hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44f1c634 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x689dca4a hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7353e39c hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7cd76874 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82649f96 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x854d00b3 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8572a101 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8984c3d6 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a72427c hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d608e7d hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d60e3fa hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c8bdb98 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f6f772e hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ffb6773 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4384392 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4be7f43 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xad026df3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaeadab20 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb05ee278 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb1eb1af6 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf83f74f hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc55aa9c9 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc82a1d1f hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb73b91d __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4199fce hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd549c08c hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd5b279fc hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb89dc21 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe13e152a hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe588da78 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8cdea36 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf8c67b1d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9eece94 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x28c86de0 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1414cd34 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e9dd245 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa875348f roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf44bdc4a roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfb23a3d3 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfba712ad roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x16561034 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1af2b8fc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x47642add sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x552dd299 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8fa62900 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9dec8a47 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce3920e4 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2ca0cef sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd390a65c sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x8b5318d4 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x97677a79 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x3b49cceb i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x50378b3e i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x97ad92ad i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x993c0bc1 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xce167dda i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x224c5b78 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x63b49f65 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb9cf4c1b surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x16d9203d uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4b3758e5 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xae4bee35 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x08539286 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09c31544 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1638656f hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2c0844dc hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x57a846f0 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5bbc238b hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c21a2cd hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5f3e30fa hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8b225d79 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x94dd45dc hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3812282 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae63db40 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0e8debb hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb225d0f0 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc2d6ce61 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc81536f0 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd6357511 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf27e187f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x054ab78b vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0a3843db vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x19ecc04e vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2525296d hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2799165b vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31e2e77f vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x321055cb vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x32266663 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3301c105 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3423d97b vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3ce9a5b2 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3fc61966 vmbus_teardown_gpadl +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 0x4dfaf6ab vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x516ca244 vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b57e961 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x613279c7 vmbus_alloc_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x674e657e hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x723e9580 vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7746c20f vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d1ca5d8 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x91b2f8a5 __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa376b966 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa6df2041 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa79b716b __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac8e94be hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb6d10394 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc843b226 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd7d258bc vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdefa305e vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe52dab13 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xea534696 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf6dcc21e vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x586c4d6b adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9dad999d adt7x10_dev_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/hwmon/ltc2947-core 0xe75a3abd ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x20e974bd nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2b726a0f nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4217dac3 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x844b5c1c nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x90f8ecb7 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x950bad93 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3e1e4568 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4ece8f1f intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x82043df6 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa2abb79a intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xadb43fd5 intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb24b0c06 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb28960e1 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbdf6e3d3 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf45cb9ac intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x04e6a4ca intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x3590cdeb intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xea130db4 intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2f04dcfb stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x309db1fe to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3db917b2 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x88dc1240 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8b61f664 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x92ce6de3 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaf80a6b2 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd0a05d01 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe9a8f9e7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x983c7bd5 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2704b7eb i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xa5e3bb42 i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xaae47713 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe47a036d i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0b9cb2c4 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x31a4922b i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa44368a0 i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xedec6aa2 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x081b973d i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x09aea4ee i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0b90aef0 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0c196862 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x11e7d02e i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x24ef5e56 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x28de801c i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3a73fd19 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3b7354dc i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5c5bb62a i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x73b625a2 i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7f0f5dee i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x883f5f34 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x94673489 i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x9f402c0f i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xa10f3700 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xb29aa44f i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xbc806469 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc5f0332a i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xc94e0d44 i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xcc06ac2b i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe3cf037f i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe7ce94c4 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf95f7557 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xfd7fdb3f i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x3268abcd adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc741386f 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 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 0xa1e5f8f9 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xad9e259b iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec373a7d iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0f03f8e4 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x1dc76d31 iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x33a4dff0 iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6aad6e2a iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x706d5ab7 iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x8bc70366 iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa0b7b2a2 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xa56627f1 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb5823f87 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xbd983636 iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc0ad08a5 iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xf6ea1859 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x2bae47da 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 0x459c44b9 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x5cef3c70 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 0xc472bca9 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x9f9b6061 devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0xabaddbf5 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1b663d5b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1e7d1e0b cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x22a2c477 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2aaaa529 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4e8d2d84 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x52cfbcd8 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x620cd1c1 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x669dfdf0 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6a7b17d1 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8953128d cros_ec_sensors_core_register +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 0xa1b8c7f9 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0276dd66 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcfb75016 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xfbaaf0a4 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x0c9684ad fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x171fb9af fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x637a2709 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xab06bd68 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x892c4d6e fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0x0a32af4a inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xb09a5bc3 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xf6c56076 inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x50c0adea inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0xcf172518 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01206fde iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07c86bdb iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d34cd47 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0df76e26 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x164c8506 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x199b3faf devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b57cd88 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dd08693 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2334977a iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2465eea4 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x350dfc47 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36bca692 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x397cee20 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44bc22d9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47413cbf devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ba8d6a1 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f3331fe iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5015e863 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51be5c96 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52294016 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61eafbd0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64bf1cf7 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x686db647 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x709d1288 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7872a6e7 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84644efe iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c7de5f8 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ca5a19a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927009a2 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b2103a7 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc70f432 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc128bee3 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc180628e devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2a66ae7 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce870c6f iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd14a79aa devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd21b9c16 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd263e72b iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7d887d3 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd1dab3e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5c25f06 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6f6d898 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe79725ec iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe821ffe0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe834cd53 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe85efff9 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9fd4da6 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0f8a44c iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5071eb3 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf86dab4a iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb72aa23 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff0505e9 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x1dc9442c rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x265edc4e rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x271cef0b rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x2cd69271 rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3e0c1da0 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x7d56e0ae rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x918df8b8 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xb4646656 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xc65ab9e8 rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcc9d2b02 rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe0f964cb rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf4b74ebf rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb8fc6408 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcbe4fff0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xc3c53661 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0d456232 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x2508526d rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x351f1be6 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x35c86328 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x41b6806e rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x5c003a54 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x67586c8b rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6ab2421b rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x743de05c rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9c968b6e __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xa1a8f21d rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb6b263c8 rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xd4999f90 rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x26371ff5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3e44bff8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb0425f4f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xb1dad5ee cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf715c835 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x2fbbbc25 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xaa6348bb cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x53ee6618 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x67949f3f tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7f3adeba tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd3a29981 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a4e9de5 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x30a44eac wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3d9123c1 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x49917e10 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cd48f41 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x56519416 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6cf015fc wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7104e5c2 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x79e54c5c wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xa05a1562 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbde40838 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdcfc10f5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x75bab8d6 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbea8964f 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 0x36e4c0df of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x39b3aab9 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x75b990b1 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x91e5efd3 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9317f425 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xba00abb5 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfd169dbd qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfe064482 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 0x04d0cc22 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0706bc2e ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43ecf01a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43f54516 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4d32fb1a ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x59150200 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5b7f7743 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6ed96406 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc04438b3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0e988f7a devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x243b8fce led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3e563f1d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x999387f7 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x99ca13d2 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc587c27b devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xddda7d4c led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xedac3340 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x307c6a20 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x65f818a4 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7f52fa3a devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd291177b led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfe9e5c53 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x144c0a85 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x18c3fdda lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x48415cb7 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4c617882 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4cba9b43 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53ca278f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbae6a63c lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xce191a67 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcfbc35cc lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc12b922 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0x3bd45b0d ledtrig_audio_set +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-audio 0xce593c22 ledtrig_audio_get +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x749e05f2 ledtrig_flash_ctrl +EXPORT_SYMBOL_GPL drivers/leds/trigger/ledtrig-camera 0x7903e46e ledtrig_torch_ctrl +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0x09b58eee __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x0bc0be45 __SCK__tp_func_bcache_bypass_sequential +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x113fb840 __traceiter_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x137f0883 __traceiter_bcache_btree_read +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 0x1c839c1f __traceiter_bcache_bypass_congested +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 0x2615679b __traceiter_bcache_journal_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x2766fb04 __traceiter_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x28474d03 __traceiter_bcache_alloc_fail +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 0x3feb5756 __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 0x49e3875a __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4d2eca53 __traceiter_bcache_gc_end +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 0x592ee50a __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x5a5f96d3 __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 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 0x6ef9df98 __traceiter_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x71bd2840 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x74ba63b3 __traceiter_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x767c255d __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x79eeb380 __SCK__tp_func_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7a3c0ac3 __tracepoint_bcache_read_retry +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x80e3881d __SCK__tp_func_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x830df522 __tracepoint_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x862dfa21 __tracepoint_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x902cb523 __tracepoint_bcache_gc_copy_collision +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x96731306 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9865dbc4 __tracepoint_bcache_gc_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9a6f4d9f __SCK__tp_func_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x9ce21c84 __SCK__tp_func_bcache_journal_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 0xa1f4f8a9 __traceiter_bcache_btree_node_split +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xa5c17e62 __traceiter_bcache_bypass_sequential +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 0xb21af35f __traceiter_bcache_btree_insert_key +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 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 0xd4491755 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xda06fe86 __SCK__tp_func_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xdc4044ba __traceiter_bcache_write +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 0xeb470c3f __traceiter_bcache_btree_cache_cannibalize +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 0xfb15aff6 __traceiter_bcache_gc_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfb3d6c67 __tracepoint_bcache_request_end +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfcce1e47 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xfd6b5d80 __SCK__tp_func_bcache_btree_insert_key +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x0ecec881 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1d970a6b dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2526403a dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25da2572 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2cccc575 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x32b24356 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x38eae4d0 dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3e915c0a dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5ba3fe98 dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x67e06c17 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 0x91e26bfd dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9a399aee dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1ddbbff dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 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 0xe76f0b5f dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe8b35df4 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xedecfb7d dm_cell_lock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf2a42207 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x422a3373 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aebce95 dm_bufio_issue_discard +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x867e87eb dm_bufio_get_dm_io_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb04f56ab dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xb2438d54 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc0d7df85 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc90df7e5 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcd2ba798 dm_bufio_forget +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd991e3b9 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xed3283a4 dm_bufio_set_sector_offset +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xf241a6eb dm_bufio_forget_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x0efbca4c btracker_promotion_already_present +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5adc2807 btracker_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5de611a9 btracker_nr_writebacks_queued +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x65ee1277 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7302dd3a dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7890d535 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x87bee547 btracker_queue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x890723f7 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa2365f44 btracker_issue +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa7eadcb5 btracker_complete +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xadbefda4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 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 0x72eb2b14 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xe4c3af9c 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 0x0687aa37 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x0f5ea2ba dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x17f7fd36 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38972f23 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x44f1817a dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6b60ac6e dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d5e1815 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0xb5dc3f2f 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 0x5c4027bc 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 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 0x45d9f4a4 cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5319fe8b cec_transmit_msg +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5709e48a cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5cda4fed cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x5e837964 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x62de7d45 cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x660d1e8e cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67646535 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67f722ce cec_s_conn_info +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x6d71a8ac cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x7e587de2 cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x98ec48e7 cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa01fbb6b cec_notifier_set_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xa8400dca cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xadddb7f5 cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xae40e7df cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaebc4369 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe4de675 cec_get_edid_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbe5ff0f3 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc16f2887 cec_notifier_set_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xc2bad99f cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdade401d cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xdb953e83 cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf09946e7 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xfd638ed8 cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x09790656 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x10d777af saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1a69c30d saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x387f484d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x61177525 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6db8c5bf saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xab72cf5a saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd7bbfde8 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd98fe3f2 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfc02a188 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5909138a saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6f2b5789 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9e03b3f0 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa288a64e saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbb90bc09 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc0dde537 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf047bbed saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0029d333 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x007497cb smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x24e70cbf 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 0x37ff50bf smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x450b4b6f smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5eb4ecae sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x65ecf31f 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 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90383126 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x95c4071a sms_board_event +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 0xc62d67d9 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc664a874 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc82fe99c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcdfec867 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xddc77f9c sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe63bd314 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb4c7d08 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf233771e smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x03005a48 tpg_alloc +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x040dc7cd tpg_aspect_strings +EXPORT_SYMBOL_GPL drivers/media/common/v4l2-tpg/v4l2-tpg 0x4d1d285c tpg_init +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 0x04a967ae vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x06c6873b 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 0x14b184f5 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x1a28e38d vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2087e406 vb2_core_poll +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 0x279c39c4 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3f77d77b vb2_request_buffer_cnt +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x41d45c39 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x448493a9 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x48b14edf vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5b660d53 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5f2fd735 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x6719f7e3 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x67818900 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x796345bf vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x80b167dd vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x82ea4d8e vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8edbaf7b __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x911044b4 vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x92453b22 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9bab6485 vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7b45aa4 __SCK__tp_func_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xc7f4b437 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd8f52d0c vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xdb287e19 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xe2c29865 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xec5aa7d3 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xefd02791 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf1b9d676 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf56cfb86 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x3e16aed7 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xf7d886de vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0x13368c69 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x87e88de6 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x03cea4c5 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0e30849b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x17f68f2e vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1816993d vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1b7a3dc2 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x24ffd444 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x28e6d767 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3a9e6d20 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x3fedbc38 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x47ff35a0 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x487e5a16 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e88d4e1 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5777b59f vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a3aac17 vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5d80a5b2 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5f5d945d vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x62b0460b vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x632fb9ec vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x647da638 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x75c7bba6 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ebcd9dd vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8097cbb6 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x94d6cc30 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x9c955639 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xa47aaee3 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbf3f8695 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xc1169278 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdd62ce83 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xddb2e305 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xddd62933 vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xef0d23d3 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf5d5b288 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf7f25904 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfc3617ab vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x4da0954d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x68f66d0c dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xd981fd33 dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xe0da1a09 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa7bd6830 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb2cd6ae4 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0xa93299f5 gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0xda040e62 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x127da70e stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0xd7a6682c stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xee8c4b4b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x278cccaa aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x57ab0158 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1a0f2b51 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1b6b633d max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x37cb68d7 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x49464d9e max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x51c08f78 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5d26cca2 max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x6168aa0c max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x71493e99 max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x79aa67b2 max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ee60dcc max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x7ff3b477 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc1253bec max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf5872eee max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x02ccbead media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x05a20faf media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0f622b4f media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x194a316b media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x19fd0a3e media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x1b0f2976 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x22113bd2 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3608ad3a media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x38f63759 media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3f77f9a2 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x439fa3b7 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4cbbfd78 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bce0d3c media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7208988a media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x73178803 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x79072cb8 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a07e36d __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7dae3d52 media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x896f52f1 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8e9a6cd0 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9387dc51 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x94639e5a media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x960fea0e media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x98558a8e media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa40393dd media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa953f733 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9dfd72d media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xa9e22c22 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xb7da3086 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbc5431dd media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xbf34e4ee media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc08b33b2 media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc89cc7e3 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd0bb317b media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd24a5f61 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd419059a media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd4caa8a5 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd56c3bb2 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd6a2db80 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe1d4202e media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe36e4649 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5b3991f __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xecb5e47d __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf0f0cb9d media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7d4ac56 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf7dcf388 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf8cb5fd3 __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xe59f381c cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x08b74460 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x19ec97a5 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2e31a506 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39dcbb4a mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3bd72bf0 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x55edb871 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5d9098ee mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x66a3b3ea mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6ef0f77e mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8786d1e8 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x87d9146b mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9136cfe6 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x91cbaf0d mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x98228322 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x99c22b6c mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa2abc09d mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacd15f13 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe46fa841 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf417edac mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0c32e7c4 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2798a6dd saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2a557e46 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35e11f34 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x47080c91 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a4615bd saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x734994a7 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x774fd9f2 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79348404 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x79520361 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7f845013 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8087c8e2 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x911bad27 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x938726bd saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c72ec5b saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb1efec42 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb61f2ac3 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc80fd55d saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xceb37d35 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x032a2b85 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x310e3dbe ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x49333c7d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6bba40c6 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 0x7cabb2b8 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8f23c979 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xeb8d22fe ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x18a594ab nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x39623e77 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x44b13e06 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4f9aad70 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5aabd5d5 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x66d7844b nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8885f950 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8c184ccc nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x955867a2 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc3c6c2b1 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc74cd654 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcac962cf nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd8a04706 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd9688434 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x36bd0476 mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x3bb4eb96 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x710b1210 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xbdc0d55c mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xc7978366 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0312f586 vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x09ec0ce3 vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0da583bc vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x0de3d0ba vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x11122686 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x116602f0 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x50c9615e vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xdc9e92c5 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x03cab101 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x190251bc hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1b4b7def venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1e93c32e venus_helper_get_out_fmts +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 0x28093bd3 venus_helper_vb2_buf_queue +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 0x3c1e8870 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3cd488a5 venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x400f1d79 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x48803360 venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x49d413c6 hfi_session_continue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x63dacb31 venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x685504fc venus_helper_vb2_buf_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6c145e40 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6c825360 hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7541cab9 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7599f6ee venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x768d4c33 hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7bb3bd62 venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7c96fb49 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7dc54778 venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7dc91209 venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x82875771 venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x83b24816 venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x89c89b15 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x936d6ace venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x93c1afc0 venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x96547648 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9e958109 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa05f8b15 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa6eed17d hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xab3d1824 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xab634406 hfi_session_unload_res +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac73dadd venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xafb7b3b7 venus_helper_get_bufreq +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 0xbbd2279b venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbe082aa5 venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc0a56dd1 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc4ebf9c3 venus_helper_get_ts_metadata +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc63135f7 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xc6f35e66 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca15419d venus_helper_check_format +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 0xdb92f618 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xdf96fc31 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe947a899 venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebc86832 venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xebdf30b7 venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xedf2d88e venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf24f9dd5 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf27a883f venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf3fadbd2 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfaba62e3 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfb8a6a9b hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfc100314 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfec76971 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0xf7cf99b8 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x1e065156 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x3c57f208 vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x48c8d357 vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x57c5ed64 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x627fcba2 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x9dbce98e vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xdf6b3ca3 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x07f6b16d xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x082ffbb2 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x343ebd1b xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x43738fab xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x55625c0e 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 0xe08e6063 xvip_get_format_by_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe70754f5 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf64611b5 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf8f36dc9 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 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xed079c61 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x32ee48a1 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc7191182 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x01d50a56 si470x_start +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x295acebc si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x453baa2f si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x7ce3bc6c si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xb353b5e4 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x120d26be rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1df24379 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a183292 lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b02351e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32816eb4 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x458621f9 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5919a681 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x73d7d915 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x74fd08d6 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7f84fecb devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7fde1b3b ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9fdb5a3c ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa3d93d92 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb13b50c9 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc6f67fd6 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc7e035e6 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe03bb741 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe4d7aad9 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xe64a7d93 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7c5febe9 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x38085260 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8d461143 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf7155534 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x3b1928b2 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x763c7036 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x7fb9d8d3 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0534f6cb tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x91f804a8 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xac69e656 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x15f2ddfc tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x9e24298f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xe8e163a0 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04b8f8f7 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2569203b cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a37e66d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3e179f3c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47d99e4a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x496f27a7 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49cfd716 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4cb3e39b cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6a4ab6e5 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6ca42a88 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x737ec8f4 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x78e0e021 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x82c93402 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8ea1c82d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8f47c64d is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x98366662 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4a6eb2f cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd09f5b64 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xecc34b80 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf8ebc846 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x25855145 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x957c7038 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x074fc69b em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x211a780d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x21758d0b em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x42ad16d8 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x47d045ae em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5126ea5b em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x54061a8e em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6143ec1a em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d3d29ba em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x721f7cc7 em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7ca38147 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8d574acb em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9dfb8248 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xadf9bb56 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xae28e060 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb039aaf7 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb2697fe6 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb9ea6577 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf7873a00 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0ace7669 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x76fd7a4f tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc7e24e9a tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xffe30b76 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x26438f1e __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x5107f711 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x6ebb9a4a __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x90e7eba9 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0xea9f5759 __v4l2_async_nf_add_i2c +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 0x060ee2b4 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x4a36b1ab v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x51a5fcf3 v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x174380f7 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2ca05948 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2cb9684f v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2cfcdd1d v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x3318f09a 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 0x70004952 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8ad7a97d v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x91c89028 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xc0501e85 v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xeeefc1ed v4l2_fwnode_device_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists +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 0x00559b67 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x01ffa3c6 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x031a2d35 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0334aefc v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c6333d3 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x132c44c8 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x143c232a v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x266e96d3 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3403865f v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a78358d v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3dda08bb v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x42104424 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5009b2ea v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x57028c72 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5ef05f75 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65fecf62 v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73009829 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f879e8e v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8acf1186 v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8b005bbe v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9d834bbd v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9eadbc6a v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa15bba66 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab3b4c18 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab759079 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb306d639 v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba8c0331 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6a498d9 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc7b51e6c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9c98621 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb40ee2a v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbd345b5 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcbdb2f82 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce18080a v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xce625704 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd6267d56 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdd63dd0f v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xddb55a87 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeb6a9f80 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xee18275b v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0521029 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf10541da v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2e8a2ec v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf425d11d v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x9dec35a2 v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xb3cf2529 v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xcf15018a v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0cc4f4bb videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0f4e9d8d videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1c0d9022 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x25dc7105 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ed21f48 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x432629b9 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4a9d2198 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b2c05e6 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52f74aad videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x573449df videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5ef04487 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6c8b61a9 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6ee879ec videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7316992c videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x757de59b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85858269 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8bafe74e __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x96f306cd videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb2ae835a videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb718d49e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbcf4d0dd videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xca977bb6 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeb3fa95c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf44640b8 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x675539ff videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x79f40942 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xcb6be3e8 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xff68c609 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3c3f8b05 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xa480bd2d videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xba49e15e videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x00fd4d92 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0426fba1 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x062a2110 __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0c88b878 v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1324b688 __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1931b5bf v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x24c5d85f v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2cc0c1aa v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x325e012a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x37a69c52 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x38ed21bf v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39e8c3b3 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x442f82c4 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x469198b1 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e4fcf21 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f5e5526 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514c17c7 v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x547d9ebb v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5beab617 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d22f934 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fa2d9e9 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5fd77ed0 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6346581d v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a2de036 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6cdf545f v4l2_i2c_subdev_addr +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 0x6fe742ee __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74fdc728 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75ea6714 v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7f7d87a6 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82e8e20b v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82f14516 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x84ffb5ee v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x86707eab v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89f616df v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fce8c03 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x95957255 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x964852ec v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96898584 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c52e23d __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ee47773 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ffc12a4 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac217817 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb00f925b v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb17f3430 v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc013dc9 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc3d24ebc __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc54660e8 v4l2_i2c_subdev_init +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 0xcce36940 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf8e3cab v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd062a49c __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd465b589 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd486b629 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe04082c4 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe14247b0 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe2822320 __v4l2_find_nearest_size +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3650bd1 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4365b81 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a33113 __SCK__tp_func_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb736439 v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf3d639ef v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6479a2d v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf656f22a v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfef814ef v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff7d9357 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8d182289 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb822dbbd pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xe3422d01 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d25324f cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x13a0609f arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2e5e4198 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4bb17a03 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5c74c306 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x6d6680d4 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9035d4e9 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9ff66e81 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xa24a58f7 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 0xbf06e874 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xbf4317e4 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc2ffc351 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xcd5872f6 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd30d15a5 wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd518d213 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe411bbfe arizona_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xe58f1664 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xf5c8c007 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2a6e28fd atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xe68ac4e2 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1daab326 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x347670de da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x687338e5 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x839e93e9 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa80acb18 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb8a76ac8 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdf9b414e 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 0x03584105 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2c55b122 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4e182cfc kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x55b82cbc kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x57803dbd kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9673a834 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc4e279cb kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe9553896 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02fdff8c lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x6a156046 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xfc3b62d3 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4f7863d5 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5f54769f lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6462a51f lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7b2a3bfb lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9a72c68f lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f65469b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbde233ea lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x079316dc lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4fc4f77e lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xbfd886a4 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x09c6da0a madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x1385963f cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x13884a7f cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3463af70 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x4683c626 cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x502387f7 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x50b08b33 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x50bd5773 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8755d6ca cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x87580a8a cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a7321ff cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x9a7efdbf cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa35c3e22 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa801ba87 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa80c66c7 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0d4cd37 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb0d91177 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc460cbc6 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc46d1786 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc4748ccc madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd81d453d cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd9463cf3 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd94be0b3 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdad8d098 cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb34a78b cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xeb397bcb cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3e1d03b cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf3ec0c7b cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2174852d mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29f5da3b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3a4ec785 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x68fb79cd mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7af48ca5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8b14bc37 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cca334e pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x242e7f72 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x46fe8953 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5ec5a1aa pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6ad95419 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6add83be pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0483465 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb406b4d7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xca303718 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb7a8fd5 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf26b5f67 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x253e2cc4 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd9a9663b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0c757dd7 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7c6f6e3c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc02f0ab4 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd1946483 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe35ebe1f pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x155313cf 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 0x191eba38 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1e4d9d1d si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f3be2c2 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23ce956d si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36bcb59f si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a4de7f9 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3b3e7cd3 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4c62648e si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ea0f756 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ea8b3df si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x588a2f26 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b83c383 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d76e85a devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fb1b5f2 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x861ddf78 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x89f29915 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c16209f si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c208030 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x91bcf8b1 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x974e80c1 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6af4e64 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xabcbfc05 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6b7b8ae si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba4e5f39 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc06c012f si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc2ca7922 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc52e6cfa si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd66aa6a6 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe25e1169 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe31022b2 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6f26843 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf73cf518 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf968d9a2 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfa93ba6f si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x19d706b0 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1ad45b6d sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x34ce3882 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbb6ede6b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff2bedf1 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x0aa97cf8 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xbd9698ba stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xfe36c4ea stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2509f5ea am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4abb0222 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x926a62e5 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc99cf692 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x444ce88b tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5786b405 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x8a894fdc tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xd3972aaa tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x31a37257 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc31b5150 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xceab07aa tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x344d2830 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x383650b4 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3a18c138 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x597b60bb alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x93816f18 alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xcd9e0261 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xee8b8f2e alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xef54ead1 alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x06ba6c0e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x10e305e9 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1788967f rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1ab6a77b rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24267d60 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x24a411e6 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2625c267 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2db1b630 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x363c08d4 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x38538e2c rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x51319923 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5404cb66 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87d13fae rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9bf1e75e rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x9f03ffbb rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9df4ea4 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xad1b8b82 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb69e635c rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc59c20a6 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc8e1ea80 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xca3cc095 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd998c983 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe5be8f86 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xfe92b864 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d810ced rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3e4e508e rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5917da38 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x750dfd08 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x883f4229 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8d233dbf rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9c0cae1e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa45204b1 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb41a3e52 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc2089ba9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0ffec99 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xea282e88 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf6d365bc rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x52de143e cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x642afa91 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6b1cca33 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa6dc60de 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 0x1cb8ee1a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x327ff2f8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x395a241c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4480b781 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x58d0e6a7 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fa97d82 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3ee0d6b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe9b65721 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x06f4fc27 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c90a2d8 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x29df11ee lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x46124311 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5247de46 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc36befb1 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd2db0c89 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd35146dd lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x2376da0f devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8c795269 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xde697c01 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x2933ace1 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe871d098 uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0xe8ddf426 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x26636cda vmci_qpair_peekv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x4ba5c46b vmci_qpair_peek +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5591b58e vmci_context_get_priv_flags +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x56ed5c2f vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x5e949e0a vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x612df9ae vmci_qpair_detach +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x676bd843 vmci_qpair_consume_free_space +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 0x8d6ab889 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xb572e830 vmci_doorbell_create +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xbcb85f62 vmci_doorbell_notify +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc04c7e84 vmci_qpair_get_consume_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xc403cafe vmci_is_context_owner +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xde3abc2e vmci_datagram_create_handle_priv +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe0cc9c92 vmci_qpair_alloc +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe11895c1 vmci_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe67343c1 vmci_qpair_enqueue +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea143610 vmci_datagram_send +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xea61eefe vmci_qpair_produce_buf_ready +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x453bda7b dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x5ef85733 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8d051bbc dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x29d7f1d9 mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xa9ff2f57 mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xc53222f7 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0xd4d5a036 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x01155a63 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x1830934a renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05d1f987 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x178f2478 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1b368724 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ddaeb7e sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1eda1dc7 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24e2a6b2 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24e6fc91 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x25cf71d9 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2e141ac8 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fd5183d sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3cb9ada7 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4db7d460 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56cd0652 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5946170f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a4baaf4 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a1b201a sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6b81ee1e sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6c2d6e68 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x76238fec sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x77443be1 sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a595c5b __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80e7f817 __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x86c59f2c sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87cc3d8f sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8a27cad1 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c7476ea sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ea010e6 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x90030c7b sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x92911297 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9f6f8d59 sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa669e9ec __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa80dad11 sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacc46593 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacdea329 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaf16163d sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1cd4053 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb1ed9494 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3e24a70 sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8694bee sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xca618a85 sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcfe65731 sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd9267072 sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x111ebadf sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19e2970a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2203febb sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6b7d548a sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7f017b07 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa196d739 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa7e6413c sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe4b52dfc sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe667cf67 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1087a700 tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x2637b5f3 tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x30f5a550 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 0x632f97bb tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x7c26afd1 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8742c2f6 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8a22043e tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xc1d1607f tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe9595fe8 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/most/most_core 0x05b915ab most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11b50b29 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x16ca18cc most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x194ef2b7 most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2970909b most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5b96a4f8 most_register_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5cf9b2b2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x68c0eaca channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7acf3954 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x940a0af8 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb0bb8c71 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0xb41b3cdb most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0xd8e612e6 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0xeffee4f4 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4c440e6b cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x736d2b83 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb15a2bfd cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2d82d74f cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x53d09c9f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa0295319 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xc217fa18 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x193f3d43 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x973c90b9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xad06f807 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x065feb2d hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe1ce5a7c hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02a339f3 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0b9957ed mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e908602 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x16bb8838 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b117c5d mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1fe0dfb5 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2dc5f814 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x337ce584 mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cf3da3b mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f5ae500 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4129297d mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46b5c126 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x46fb39eb mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c55e8e7 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5652d5f4 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6398a75b mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x680803c4 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ccec770 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6d842ef5 mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x72beae74 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x746265e2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c8181fe mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91193644 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9195800c mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97aa27ea mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9abb9bbd kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9feca9be mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa11f711f mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa13fd62 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaadffaf3 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaaeba93e mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac36caa2 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba1c7768 mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd4600da mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbd638d71 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc097dfa1 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc20a46b3 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5da9074 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1f0d28a mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6271f22 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6f3862f mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9eb16c4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda337150 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdeefc66c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0648f42 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7abbd53 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe817acf4 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8f441d7 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed5a4d3d get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xefd5d06d mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf841e308 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf87f6a65 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8cb8d0e mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1cc55425 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2f08d7f9 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7ef07b95 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb48314b4 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb49153f3 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0329ae4e nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x05d0d0a4 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0acd0ed2 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0cace780 mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x115c060f nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x123abcfb nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x22b362b9 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2e52d6e2 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2fa403ec nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x302ff70b nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3a5245e4 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5487b42e nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x56174200 mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5a012e31 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e96643b nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7062afd5 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7677dba7 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x853afb6b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94017b7d nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x98c2aff8 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x9e4b73ec mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd9d0cfea nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe31d7dc9 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeb7de831 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xee867dd6 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfb08dc95 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1ad5ba39 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x91e5ee5e onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x14c572b1 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x1515b39e brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x6f56561c brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0xed65d2b9 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x10e936fc nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x11091291 nand_extract_bits +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x1672cfd9 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x19801dc2 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 0x42f5ff6c nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x451ba2ce nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x48fc4b1f nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x58503710 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5c745c10 nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6160ab72 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x65b66bfc nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x6a6cffcc nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x790ab1de nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8050c7c8 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x895efbfb nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x92c9e1f8 nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9d38a4e0 nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb165da56 nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb9f0e8dc nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3e743f1 nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xdf2701c6 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe391f251 nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xe3f92dfb nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xef9fe06d nand_change_write_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfb32abf1 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xcdc2c506 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x4791aeaa spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xe2447e4b spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x213942f1 ubi_open_volume +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 0x4d91c5a8 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x846a73fa ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8e616ae9 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa03d84d5 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa20e659a ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf2a46b4 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc17ae9f6 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc4566b53 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc85626d8 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9e5e36e ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xca254072 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd0737c56 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeefb5478 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a90af58 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1eadba33 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x81060432 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8257d90c mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b91a59d mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8f3145f0 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x91d3e211 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x92887aad devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb4bfa7af mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb6ec8010 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb87a3537 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd061d5b8 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe1da13bc devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xff7b10c0 mux_control_get +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc22856ac devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc8887764 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x191037b7 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4a68ed7e register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x60de67e3 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x70b3270e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x89a04000 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd8941f2c c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0b2c9b4a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x19c46b43 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xd28d92b1 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xeded93ce alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x22833fa2 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x35a59af1 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3d87372e can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3ff8108a can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4255c0c8 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x439b911f alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x494033bf of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x505a943f can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6001b74f 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 0x608df15c can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6490168b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6a745c81 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6e8f34f6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x7009d1d0 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x771d990a close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x78f9f25d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8425ece5 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9191e079 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9b3ef69b can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x9ee18af2 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xab862755 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xae76c4d4 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc3027bc7 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcb43210f can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd5bf19f4 can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd72e01ef 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 0xf2320835 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf8fbaf82 can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf9576659 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfd171955 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x021c2090 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x21a0d765 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x501d450e m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x71209b0f m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x9a454223 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xc0922c26 m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe80391f6 m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xe9f5ec03 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0d712519 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1e4f9154 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x90dbc827 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfca4939a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0x094e5055 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0507f6ba ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0a321715 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x123d248a ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2ed7c04b ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x394f8141 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x3fd4b63e ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x4d3c1fd0 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5c3198b0 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5d51acbc ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x72154bf9 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x84aba873 ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x894a63bd ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8b11725d ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x8b2ce417 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x968210c7 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa21fd3db ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb0be2f44 ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xce64a6d4 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xdf78d8dc ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe16e9fdf ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe5e60642 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe9af6055 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xeea2dfba ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xf73ae9f4 ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xfa468c26 ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0x1ef76e49 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x07726297 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x0affde4c rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x29185b8b rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x54678cb4 rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5a10ff2f rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x731c7f87 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x94a85578 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xa6ea43ed rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xb257faeb rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xc880689e rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd56cc52e rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xf11619a4 rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3370a96a arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x623138a8 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x0d8fa968 enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x85872a5f 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-mdio 0xfb8b9464 enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x012d21ad fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x391a05e3 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4d0f35d5 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x539c3eea fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x65ae5391 fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x65d89ecc fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x802a770f fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x89cd07b1 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8c473536 fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8ec119b5 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa64a5049 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xedcbbdd7 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xf6820ca5 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x050b6a92 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x37ded1c1 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x634eceaa ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xa68782d8 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xad893c6a ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x3e71872d otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x545fe513 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x719da3e4 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x90ab4e0d otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0068d38e mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x039adf16 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0987098c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0be85bd4 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0e0b821f mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1210cd29 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x162bbb5a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17044b93 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17da867a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3eacdf mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25bf78ab mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31506c7c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3163765b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c50be1 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3641a3f5 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39631025 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39cda745 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a90135b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b4aa401 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c1f2fc5 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf7b5da mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e160b88 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409ebc6b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4182b1be mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4465176b mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4518ba4f mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4722a7a7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48bff34e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4511bb mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c1a4b81 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e6d26cd mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f34fdd4 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f56e867 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fe87ae6 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50440cf8 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50d22b56 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e30c41 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54128d63 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54aef6d5 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591cc442 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5952d6eb mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bf7180a mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d4fd7d4 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f19f315 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f70a87f mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6073f4a2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64856677 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x680d80a9 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70380ec8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x736bf8d6 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76e5e220 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a63b6e7 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c9bb383 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85d75699 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8695b8d5 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876fd2dd mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88f13060 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fb8a707 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b12a25 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x950e35c3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95eba949 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97f63e79 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98070587 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9826007d mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98caad2b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994d6c56 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99b92a7e mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a391d8e mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b4cd7d7 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bb2a7c6 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ff7e529 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4fb5dfa mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5282811 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70461b1 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaabfb5af mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf65242a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaff9d0ea mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb16ca1c5 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb17fda7b mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2f06f76 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb35e6082 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb3d14ef5 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb501f75b mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb610f43c mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb66fb914 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb671dc05 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb888cb7b mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9295ffd mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd19d508 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6d5b4d mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0ad6554 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0fe5b4d mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc514fb21 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a3bdb9 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b32401 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9b83810 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7f6d76 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcca12d5b mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfaa418e mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd005e5de mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd02252e0 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1e3a421 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4cfec48 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd74266d1 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7e476f1 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8edc85d mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9e06406 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdaedc8cf mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdbca596f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3d8999 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd33e2b2 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1d9f842 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe574e5b9 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5dace4c mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7775b42 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea65d0ca mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf527d033 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf87af963 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf91a90a8 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbbee21b mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc2d5895 mlx4_config_roce_v2_port +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 0x0a3434d9 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0af806f3 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16adc455 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19837a82 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c185f81 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25b5d501 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26b72e8d mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2904a45e mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a3f3da6 mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cb523a2 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f250260 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e3fe484 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3f93b857 mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x47f3e9b1 mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5a288d mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50bb3617 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x51f123e4 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52bcda7d mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53094e9c mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x579053a4 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e66eabe mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x620fd9c3 mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6499e6c1 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6773a194 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c806d0a mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f4d3d9e mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70a7ed87 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7117db03 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73b38031 mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f37b6a mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a159b1f mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b85d0ee mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cfa2ff7 mlx5_ipsec_device_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f9f2aca mlx5_query_nic_vport_qkey_viol_cntr +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 0x81c81c80 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x826a19d4 mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899e9a9c mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89edc4c2 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8de01916 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9231c63d mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93546f9d mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9824be4d mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9989deac mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bea9902 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e3685b3 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa156d549 mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa943a496 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac3d73f4 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6087b7a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8e80615 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbed6836 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc038872 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd16fe34 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee73d41 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf7334e8 mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc75c5bbb mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd2b2b4c mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf1ae889 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1b336ba mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4390cf8 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda73c3ff mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde764bae mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5f7e26 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb35f085 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec4b9569 mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb1ab867 mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffcb006c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1e71eaee ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xa984d4e0 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xc35f2795 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0xd200dd18 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x854f6cb0 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 0x0d49d719 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1e275fb2 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24afaebd ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x25f8ee0b ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x28582879 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x31da7843 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3da53b7c ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3fefe139 ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x486a8941 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x49eea037 ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5ed69f6d ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x78bc0c62 ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x85f8aecf ocelot_lag_fdb_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x878c3f11 ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x95c0318e ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9801f0b1 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa5c2a25c __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb2c28554 ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd0afd2f ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0417180 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd07c4528 __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd5a89c65 ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd7367c1c ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xde72e875 ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2482aa7 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe2508da7 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeb639be5 ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf3cbae57 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf65b9352 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf9875d42 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 0x00ab70b8 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2110bda7 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2b568454 stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x3391520d stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9945b746 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa0d80e4f stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x1e206527 stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8f1a7f88 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xabf52ec6 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xaf9befe6 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc070266e stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x0c981900 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 0x47dddb5f am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x7ed84157 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/wiznet/w5100 0x04c63025 w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x2fd40c43 w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x34fbd738 w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xf76e29cc w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3d0a2d4c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7aeca6a4 ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x7c09d3f4 ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x85039b33 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0x8ce60f47 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc0db96a0 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macsec 0xbfaac01a macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2bba57d3 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3781145a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x52a035f9 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x54e2942a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x322b2740 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x017e5835 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xfd76b7ec net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x0d557cdc xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x3075c7f2 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x4802a652 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8e539379 xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xddbeb3e4 xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xf05914da xpcs_create +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x06587d74 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0941954a bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x098659f2 bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e0295ad bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x13d7a327 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x158d509b bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1857a259 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24648313 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25197462 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x25411d8f bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28299707 __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3e098199 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x44d24d8f bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4c0265d3 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fccb9d9 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5062fb9f bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5f71913c bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5fc2892b bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x618b2817 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6a296779 bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x76ad58fb bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79007db7 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x793a42d1 bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8828923e __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9948da1d bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaec126b3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4976752 bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc041a075 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc5cf7418 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd061effc bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdb9cbea7 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdfa020e6 bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe63cf546 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf65a50a8 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x08213956 phylink_ethtool_get_wol +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x0828a7e4 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x12135396 phylink_mac_change +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 0x17d14ce1 phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2790b5da phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2e649b02 phylink_mii_c45_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x53e0fdd4 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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x7cc78854 phylink_mii_c22_pcs_an_restart +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x874a3831 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_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 0xb384c13e phylink_ethtool_ksettings_set +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xba06f014 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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xd2eeaafb phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xdcb0a2c0 phylink_stop +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xde66f4a7 phylink_mii_ioctl +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 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 0x307a4884 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x41ce9633 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0x67df6a48 tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x72951fec tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x892d868f tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0x97fb2ed2 tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xac2e6b77 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xd18088e2 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdac39ce7 tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x218269db usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x48979eea usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4f1bbdf6 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x73db8b72 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb5c7d6ff usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdf07204f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe3d9bd35 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x016fa847 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0ae29b83 cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x152dd551 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2083120f cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x310ebfa4 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x35848606 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6c9099c0 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x89e79b12 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd2879837 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe4c2a180 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe77ce233 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xd338e556 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x08bc8b5e rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8c291d12 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xacf0f23c rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd1a0673d rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd5af19c0 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf7e31355 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04ad1cce usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06aebb44 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x169f4770 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e3112e3 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2880fbbf usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30a3a96c usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x398bef9a usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5200c229 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x537dba6f usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c5da6af usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63c9818f usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x665b9efc usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67e9f05c usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ab5e207 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b1b4ce0 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b61d394 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x819e40e3 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x828b2ba1 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88920cae usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9672fd20 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadb73674 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0f9abb5 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb28d3aee usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3065b86 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0777485 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc07b04e3 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc7308aec usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd181e2f2 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8caf4f1 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddea3a38 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee65a1a6 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf22fb747 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc8f17c9 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfdb5c643 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x50bc68ad vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x8b0dec9a vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xb49391a9 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xbb325de3 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x2b61ec06 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x02b2c60c il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1f12a490 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3aa5ebbe _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x482a89d6 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x885a6774 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x06bc0317 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x08482412 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x0b81a265 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x54015f6f p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x6b9eaa41 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x736055ef p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x75c11cda p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xde88e1b3 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xe945b53e p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x34a7ecac lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x35179a85 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x40ee724c lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x438d2b1c lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x96bad7ad lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9ccbc097 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xac9087cb lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xb63c1bed lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc2bb3c69 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xc8bf444f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcb57671e lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xcd4fc98e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd7368894 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xe044a550 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf97197fe lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xfef91dc7 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2b324269 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4e20e5e4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x6cabb32c lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x9a72d539 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xac4d2da8 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xbab65bf3 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xe0e5ea46 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xeced8c65 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x03f0a2df mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b8b78eb mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2536a22e mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x312da0ce mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x313ba123 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3366aa61 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4a950aca mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4f29bd82 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x60973c2f mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x6aca8920 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7c736f7c mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x947d4d02 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x98bdd855 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x9f58ef4b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xab2ede5f mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb11156b3 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb5324659 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd2ef5063 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 0xd7264fb5 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe4e59187 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe54b30d9 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xe7808d63 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xee7350a7 mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xf3902521 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09495d83 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x09f754cf mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ae2ee86 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0e8dabf5 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x10373f4f mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x116e84b4 mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15d1d5ad mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x177693f4 mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1dff08db __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 0x22e29738 mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23323380 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x23c08c75 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2654a01a mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2dadcefe mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30971084 mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3a7aef9a mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3c7fe027 mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x47e11d73 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4a428d14 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4baf2eae mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4da8c12b __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4e028584 mt76_csa_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4fd4d7bf mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5026f464 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5149bd20 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x574469f0 __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ba4d3cb mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5ff44552 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x633fbc40 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x65bb3131 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x67db36f9 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b7a4122 mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6ba5f963 mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6f3d5ea8 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x74465b22 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78bf58fe mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x78f8cb22 mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x79d0773b mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7bf3e5dc mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7f040d38 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8393aec5 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x861edbeb mt76_dma_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x86263ddb mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x869c68f2 mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x88b923e0 mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8dd9eba1 mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x92e2173d mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x95c9dbc9 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x963593fb mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9b0be4e2 mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9e091b7f mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa089d38f mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa300b184 __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa39bbad9 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5a812da mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb0319eb5 mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb07520b0 mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb471aaca mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbca14fd1 mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbe026db4 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc05ce036 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc5ebe017 mt76_unregister_device +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 0xc929b985 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc98441c2 mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xca0a8f2a mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd1bed18d mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdda003eb mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe0959f8e __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe23b7604 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe49dd349 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xeac690f9 mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed84717c mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xef42f114 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf0b11bce mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf2ea38a2 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf5129673 __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf69bfa7a mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf714c32a __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf7737f6d mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x085ba518 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1779544a mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x196ab091 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1dd34a9a mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1f75c3e8 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2042b600 mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x222af44f mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2c80a594 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2d6e38e0 mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x2f5e3cae mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x36576cd4 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x380007ea mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3b7cb687 mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x3c91df76 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4132598b mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c267b60 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4c84750b mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x59ea9415 mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6183cdb4 mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x72833dd7 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75813830 mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x75d0b4e8 mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7762216e mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7a431648 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b5236f9 mt76_connac_mcu_set_deep_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7be21466 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x85a76b1f mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x894d036d mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8b471fbc mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8f28117c 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 0x951a9913 mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9a52b60e mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x9ef948f8 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa586f34a mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa6da835f mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb1dfbe4a mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb3a43f16 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb9d3aaf2 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xba99dde8 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb55028a mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb5b7e33 mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbdc8e4be mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbf4dc81c mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3423b48 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc3532a80 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xc7cd97a3 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xcb54e474 mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xccf67b72 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xceb39964 mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd2a49499 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd917b81c mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf33ec24 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe9f84554 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xedb9bbb4 mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xee638301 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf1acc906 mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf730f410 __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf8683dce mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfecf7bed mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x01509944 mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x12dfc3bb mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x1e0141ef mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x31884fdf mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x36530c71 mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x447ae869 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x50a85381 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x523c19d1 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x5c2fcb95 mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x65f881b3 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x71734a68 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7c789448 mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x960c165e mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbb21c55e mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xbfcc6e6b mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xf669d209 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0cc7d572 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x0f4085fb mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x18073f93 mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x26cc1c4d ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x58614783 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5d3ed69c __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x69b526b2 mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x8938e332 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa4c9191e mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xa8405475 mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xbdce5d4c mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xdc0cd441 __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xf1d8d15b mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfe08f569 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c2fc098 mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0c4d21c9 mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0fe88e03 mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1127e196 mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x11c0feab mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1a639ed0 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1f890ccf mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x35f00582 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x4e33aa45 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x579e316b mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6198f002 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x745db986 mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x765004c1 mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x77a06882 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x79cf11be __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7cef697b mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x7db7b090 mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x86b4c177 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8cdc8f00 mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa3fd13e2 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xae55c2ea mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xba2b425f mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xbf598ea2 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc5281200 mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xcc492622 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xeafe13c7 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfbde574b mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfcd8603b mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xd64c7be6 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 0x48999ccf mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x534b9509 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xaa8f7a25 mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xb3e9d080 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x433dd494 mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x800059b1 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x9a2c3c45 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xa20c1543 mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xb0508841 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xbdde1581 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xef63c925 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00c19843 mt76x02_remove_interface +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 0x04cfb1f2 mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x091486a7 mt76x02_mcu_function_select +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 0x119f40ac mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x169c5d0b mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1ba94e05 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c8e04de mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1f786ddd mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x20ad1b6f mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21151ee4 mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x24af2a41 mt76x02_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x25fc3fb0 mt76x02_mcu_set_radio_state +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 0x3a9abad9 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x42fb6bb2 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x43775349 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4398b6f4 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c7e7ef7 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x53ed3193 mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x561b1e57 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 0x5f7b5d0c mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x64f79630 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x681018ac mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a4f03e0 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6a9777d5 mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6c341c57 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x6eb7a8e0 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x70c0740b mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75b0f759 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7c5107cf mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f6d37e6 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x84965b52 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86055a8d mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x946523b1 mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x988725e8 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x988fb9ff mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x99c1b28f mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9a826060 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa2149bc3 mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa7643834 mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xafdcb475 mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb0d8d45d mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb68b122c mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb8830747 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb88a9209 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb9c7891b mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xba2f1b29 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc20f72eb mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc32695d6 mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc8e51008 mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc9d15794 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcd626c8b mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xce9027b8 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xcff1ef0a mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd04e7c54 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd0b3ae4c mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd276ce2b mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd47c21bb mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdb706bc7 mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd43052a mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdf06122f mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe12773ae mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xe64d3b4d mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xea517e1b mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3aa0103 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3ac8284 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfe6674d5 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x0b5f1f3e mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x2d643827 mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x548f6fa3 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x5e190876 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x7c0b02a4 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x884a6275 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x98962a15 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xc39a1bd5 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0ada2ce6 mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0c5d4387 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x16de4b64 mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x223c6d75 mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x29816e38 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x2bdc5e9e mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x331a7a04 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x55a63cce mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5614cbb6 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x6949b29f mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x706e5f50 mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7656fc8c mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7ee555ca mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x90110cf3 mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x9387d809 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbd336352 mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xbe3dd7e1 mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xdf4b6c68 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xed9a63e0 mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xff126299 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x088fe0a6 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x092b8ac3 mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1ad053e9 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2d78e1d1 mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x2eb99917 __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x384ac175 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3cf7625d mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x443bfe09 mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4a080e88 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4be6db9a mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x4cf5893f mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x58275cef mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7c0cc113 mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x85ba2b49 mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x86a9cb9b mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8aeff4fd mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x8ecedd51 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x93458c3b mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x94276695 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb2b97b9f mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xb654b8ee mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xc55a963d mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xd9f9c508 mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xea16b6f5 mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xef20310f mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x078156b2 host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x858a87ba wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x859349a5 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x8c357e56 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xaa8ad069 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xdacc6c72 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xed12d750 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x1f4d20cd 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 0x427402a5 qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x580de3ee qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9d004bae qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9f09a5f2 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xe50c24e5 qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x06b68cc3 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x07cb32b0 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x090803f2 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0c3e1a40 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0ce2d339 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1763ef41 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x17d7fab1 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x199fb07f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b2dc650 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1b528b78 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x267f6923 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x2c7fd476 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4af53db8 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x57885690 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5c71b3c5 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5ebeb3c9 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x67d47340 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7871583e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7b075113 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x853bd650 rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x876c2954 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8a26a8bd rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8aa34861 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x913b4e52 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x942fb1ad rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9af2255e rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa072320e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb0db11fa rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb7b7973f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb9035cee rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbc173617 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xbe545551 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc19555ed rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc38a8f92 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xca8d34fc rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcaa4ffa9 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb2daa3d rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcb313b69 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6f43e23 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xda3ed2ea rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe62806f8 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7717da1 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf8e7b42f rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xfdd00fde rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x03b1d3ee rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x17cf3b81 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x1d1cfc81 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x22348b0e rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x25e3f727 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d8c7786 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3e5679b6 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x50a05062 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x56d299d6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x63a43141 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x7faa5dcf rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x863a2e71 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 0xb8835783 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xed18ef0e rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xef5926a7 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xf3a1aafa rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x00339531 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x02f685a3 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x031b7dcb rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x065ad78f rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1104e1c8 rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x13814cea rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e7db020 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x25a7425a rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x26d0c438 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2edf77c1 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x303a440f rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x3bc2a9ab rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4596de9e rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4aed5cb9 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x4cb350b7 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53810517 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5466b310 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x54d35f2e rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x592b303f rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x68acc6d0 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x73382bdc rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x740f9ccb rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x75d79940 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x770a9f02 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8c302ac2 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8ec75e4a rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8f60470f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x90956759 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95c1ca1b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9e255a1e rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ea63217 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9f565136 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa42ff964 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa9759888 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xaf75b358 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb3b2017a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb9b833bb rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc552f19 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbc8bb693 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xc6a04ea7 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd91f9d70 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xde3e788e rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdee84560 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2408e2a rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2b8fcd0 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf4724427 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xffd2f9e8 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x397fcc56 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x409c5160 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x4bbecab2 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x92a3927e rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xe7f33713 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x1b37f67e rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x79b7631b rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x7c76b885 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x119a2bca rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2b175cce rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x51ac9699 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5deabcc6 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x61689ea8 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x6d616fa6 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x8748b4ea rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x96239129 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x9b2ed56c rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xabe58b31 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xafaa789f rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc8664fc9 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xca4df692 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xd5639b3f rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6a241a9 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xff1ffc8e rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3407bb90 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x77af9bef dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2644ab1 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf32c9e12 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07b1b511 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x119a375a rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x26e607b8 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29af9bf2 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3f5bf9c0 rtl8723_phy_calculate_bit_shift +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5aab78b2 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f4779c3 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x671ed007 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6d8cc066 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7a379d4c rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7c6d2040 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7da93dd8 rtl8723_phy_query_bb_reg +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 0x8d0035ee rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fd71f8b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa51b8e9c rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaecf669c rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xafb62c6c rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb475910b rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbba093db rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbe49d358 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc24196a6 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd356bc47 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd693bb8d rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7e2b808 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe10afce1 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf565f945 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1198634f rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x26498096 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28500d5c read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2950e6d0 rtl_beacon_statistic +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 0x37559e43 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x44f06598 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4c645239 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 0x5648a97c rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e5fede8 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6db3ba37 rtl_update_beacon_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x706628e1 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x749586c5 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x91f51e8a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9625c339 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 0xaf4682b9 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb33cf0ee rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5a26d5b rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8596945 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7fca457 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc879795a rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd719306d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd4a9aba rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf0b36b2 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe21e7f31 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe58faa6d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7ee586d rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x178e7a3a rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4850d5ea rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x72880a71 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x9bc60321 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xff45a03b rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x67cce395 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x779ca90c cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x7e13bbe1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xbc2c5663 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x05b54386 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x28634c80 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x98bd560e wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x026f2856 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 0x11a107dc wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x132601da wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2793f1f5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29047e70 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2c43e592 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dbff47c wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3605ed97 wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3687cd02 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39f570da wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3c62f3ae wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e75d890 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x545a62f3 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x56bd2faa wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5778936a wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f9cc882 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x771d3dfa wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x78f51cb5 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x798bf08c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x849fbc59 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x880659df wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88109581 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88edd89a wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x890b2921 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8f1cbb0e wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fda4c98 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93cf2a65 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b82eb95 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa06bc2c2 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa845d996 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xab07b316 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xae502e4f wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2ccefff wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb47af33a wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9d25ef0 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbdf8cd46 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbe1e2318 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc04979c1 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc60b00ea wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9e704fc wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0c9e19f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9506f9c wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2e94212 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x03f17e7b nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x76ba4c22 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x844470aa nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe10ddffd nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x0aef8973 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x1358aac7 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x2416de4f pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x661c1002 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x6ffba99b pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xafad6a48 pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xf0852f5a pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x19146a5f st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x33a6e14a st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3907b3dc st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x3f38cea2 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x65b71e00 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x706e3f92 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbe79810a st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf3f3d72e st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x094e0856 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x403ae8ba st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xeeeaeb2c 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 0x30d74c38 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x61b69b72 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7031400a 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/nvdimm/nd_virtio 0xc3e8723f async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0xe76bf671 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0044ab04 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x02540864 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x117f831c nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x11abc494 __SCK__tp_func_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1851389c nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1b105216 __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1d48c9ca __nvme_check_ready +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2839d78f nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2ab4c2d9 nvme_init_ctrl_finish +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2c694d1c nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x308b2e4b nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x36210a53 nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4ef1dc19 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x51aaddc7 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5591a2cd nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5b30aadc nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x708b01f6 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x719929c2 nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7410511b nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x786e8aaa nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x79d525fd nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7d20cfc5 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x835670ba nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x864aeba9 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8d25b9e3 nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e735aaa __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x90f2cf34 nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa25979c9 nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaa2c875c nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xad144c59 nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xadafe23c nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xaf94e1a5 nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb796010e nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb7f344e6 nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xba8718ce nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc21bece nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbc34246e nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc69e8c92 nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7dd201d 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 0xdc8bb2b5 nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xddfdf083 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe1d35e71 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe8ba9020 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf274ae6c nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xf3938d1d nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x27bf4403 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x375b5a26 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3d366956 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5badd148 nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x82ba10f4 nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x968f97cf nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xad18c577 nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xae23133b nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xbe472799 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc1bb55a0 nvmf_reg_write32 +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 0x58e312f7 nvme_fc_io_getuuid +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 0xed7bf3e0 nvme_fc_register_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0xfca9dc99 nvme_fc_unregister_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x1420bc4b nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x38c220ec nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x5713df9e nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x63f58e37 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7e891db6 nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8273041c nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbee8fff9 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xc327c010 nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xd68ee334 nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe2ccd270 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xe2f5de03 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 0x0eae788d nvmet_fc_register_targetport +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/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/controller/pcie-iproc 0x45b8b8ce iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x818c4339 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x146f4e2c hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4428ce8e hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7adf9f96 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x801fb47d hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x8502133a hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x96d901a6 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xb57eaf66 hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xbdf9fb71 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc789a594 hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xc992fbe9 hisi_uncore_pmu_disable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xca665d59 hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xce6a79b8 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe37ec075 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xf11ef80a hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb2a86c2 hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfb6373d1 hisi_uncore_pmu_offline_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xfc3ebbe2 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/phy/allwinner/phy-sun4i-usb 0xda46529a sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x00fd03f7 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x07aa1f92 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x31292e4f tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x361d3329 tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3f51ae6d tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x4eb50942 tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x70e78dab tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x73494150 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x783c7300 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7ae4fae9 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x7e2a0717 tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa090351f tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaa0a98db tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xaeda6b2d tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xb5af9e0e tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc864ba5b tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd3a47058 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x10f4daf5 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x208f7e1a mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x45f700d4 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x4a9ed254 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xea7061bd lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x22c0fedb cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x9156067d 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 0x0c49cba0 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0c726f2c ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11a9c7fe ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x11b347ea ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x125fca2e ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x13e8cd81 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x22081baf ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x23522066 ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x38f78180 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x5be2e578 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x67710a81 ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x6ce1ff7f ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x79ba48bf ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7a556fec ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7af5c0b7 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7bdb592c ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7fada322 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7ff407c0 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8e6219b1 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xa567780b ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xadd7c83b ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb3d1c85f ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbbdce3ac ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbe170d4d ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc1ac2197 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc243817a ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xd3f961ce ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeb2e0f13 ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xecdd4644 ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xf52e3fb3 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xfbb6e46b ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x95b2ce2a 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 0x2f8538ad devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x443220c6 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x879019a4 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc5707a6b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x370823da bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88a92d95 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb7e18ce0 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x4c322f80 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x87f132db pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x9f5cacc5 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x10466213 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x48b693f8 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x507b8ee8 ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5ad50592 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x96bafc38 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xab1c47ba ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xaf2511b7 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xe2f7338a ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa072c310 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb34f368a mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb6be696c mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf8635f3b mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf939e306 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x48483c75 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x000df715 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x401c9e22 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f0deb5b wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x86785762 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x92b29edf wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa614ba94 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x54f51120 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x25630de5 scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2f7be1a3 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x3fcf4858 scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x4fadc578 scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x72dd815a scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x8a38a9bf scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x9773b629 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x2efed121 scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x7ca77354 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8efb26ae scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xbe2fa260 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xc0829560 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x138046f9 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x46be00d6 qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x4b781ed4 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x5f1472a9 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd08ad7e8 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xdf7533d1 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe59e50a2 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xf24449a1 qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x2928a10f qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x31569379 qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x49f775d2 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5617c233 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x6585bf3a qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9c681eb0 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x9cb9fda6 qcom_q6v5_deinit +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 0xfbbcde8c qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x2795bb5d 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 0x15820d42 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 0xeb80fad7 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05fe61c1 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x17869fa3 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2382f221 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28fd5821 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3118df80 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35df1a25 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42caca9c cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4634ff6c cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x493f9b02 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x499a590b cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a2ec63e cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50c81f31 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51718164 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59208daf cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x640e6351 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67918bac cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x680299ae cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cea816e cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7497a3de cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x771e1811 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a2dca5a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c693b10 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x834ffe71 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86fbd3b8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b875d67 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9da8dab5 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f4f372b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa2d696c9 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab593bce cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac10ba40 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3e64c84 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4a5eefe cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc04fd2f1 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc516c1de cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6025ab9 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcd74db55 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd351b248 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd94656d1 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9bcc68e cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9fcd607 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe18d0662 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe335f3f5 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe439a16b cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9c5ee9f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08a4b051 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0a152865 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x18a60f99 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x24c01866 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x32c9f541 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b26fedc fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7eec4046 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x862fbc98 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa1bab2b8 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbdd5badf fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc2f240d3 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc42ae24b fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd63abe94 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd9b51ded fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf169acb6 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc3101c7 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x24d2533f fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xcc1800e1 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x03de51eb hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x069d907a hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x2bbeb220 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4738fe1d hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4bdf11c8 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5044027f to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5bb57e56 hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x5c79c2cc hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x62bb6d43 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x66a5b40b hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7e98aec5 hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9197ebdf hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9b0376fa hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xac020703 hisi_sas_phy_enable +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 0xb078b795 hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xbda5722e hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc2cb214c 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 0xccffc291 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 0xe6407cfb hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xecee2d53 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xeee25bb0 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf0d38156 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf1c97fd5 hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf3e83755 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1f9d376e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3e9bfc5c iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x58f7d929 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa6b4aad6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe4f40d40 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf7118bbd iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfee54bb7 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x344f6528 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0187d647 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02f8d61a iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x036c0486 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x073d465b iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x07fea0c2 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dc0f88f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x130c23a4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x185e051e __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x197cae58 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a626a9e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20626c19 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b7d101a iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x318684fd iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36d11167 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3846ab5b iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x465ff965 iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a59f70b __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d37cdb4 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5eda07fe iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61bc1f6a iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d4a3124 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x733ea73b iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7852f72d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b5cf286 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c272c8f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8152dd3c iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f4bbdfc iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a17553b iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9db32af4 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa02d758d iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1e68b63 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa681496e iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa71ef3a2 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa93dfe91 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa96d6c4d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac4280dc iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1082831 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4bce56a iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xba70c8e4 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc82fdf6f iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0ff4b12 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6ddb91f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd91de93b iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeddf30f2 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf61b2daf iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf827158a iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfed1e460 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff6978db iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04ea3a80 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d9ece7f iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1d706ad5 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1da3c3cc iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3857ffd1 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3eb739a6 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x427d66e8 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f728f56 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54e3b7aa iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x639f9e19 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x66a13bc0 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x88e19257 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d9ff975 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9b297349 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd02373cd iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf3dc0cd4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xffa715f2 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x010dee5a sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05d2b5b2 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x22c5d881 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3181d0d0 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32977d75 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x398adfb2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d577601 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e73ef92 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x42680e4f sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47226253 sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f228479 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f6d1ae6 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5531d820 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67abacbc sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x693b8237 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6f6656b9 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76cc252a sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7da28390 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d16f7b6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8f301c86 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92af77c1 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9aebbbec sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9ea21712 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa231fa4f sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2819641 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa9e8ae05 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad0fea5a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb6cbc2aa sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbb462121 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc0a2a629 dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc42189c7 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcfbcf587 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc5e2765 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe51ad7e7 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8c58026 sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeecc5083 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff559bd3 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0xb32ea27f fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x04cfd196 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x053a60d0 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06fce22c __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09ffc543 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x169f19a5 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a0a199e iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1be39fb8 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e717688 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3269dbac iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32bdba8e __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3684f139 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 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 0x5cc92f21 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5fd6ca26 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63bc7dcf iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6427ecf2 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6e4a130e iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x719552e5 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74a82f4d iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7b982b63 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c056a48 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d2e3fa1 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d61cb40 iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82075124 iscsi_add_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 0x8aedcb1b iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x903958ec iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x914d5b40 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95a40f46 iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95c91481 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e33fa68 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa41bdaa7 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9432d36 iscsi_is_session_online +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 0xad14851d iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3417d53 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb456efc2 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc144d0b iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc63868bb __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8813a11 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd23ae395 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd5a37969 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc0cc66d iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdf484b93 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3a48c81 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeaf58830 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xebeea3b4 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf02fdc03 iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf80b9538 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfec04d61 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfff2bc03 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3c53b18b sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x695cbdea sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x95b64429 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf6fac448 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 0xd8465c3e spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x37894c9d srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4fa454e6 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x53172917 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9120a4bb srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb6d2440e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ab5be3 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x37f869a0 siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4975241e siox_device_connected +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7e3dad9e siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x88aa1452 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xc8ac0068 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0xd1a6e672 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x04da47cf slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a04c490 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1cf20ad9 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x21131209 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x333dc666 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x36d3896e slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x383be6f1 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4436357b slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4da766b1 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5003f99e slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x556ffa8b slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x591747db slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d64a961 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6f441cfa slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c5cb0ff slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x84c38b38 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f6a8bdd slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x984d44ef slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9bb72522 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa10b698d slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa455b0c7 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaed45775 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb67ca09f slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1acd7b6 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf2c93101 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc09040f slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x625ac0d1 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x2d181abf apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x4316905c apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x436c655f apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x54474823 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x5efa7fb8 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x79874c4b apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa5867585 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb9779ee8 devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xd9b26392 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe069e739 apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe1af0f65 apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x453a3e93 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 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 0x25559b53 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 0x67358912 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 0x8edafa55 dpaa2_io_query_bp_count +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb12c15ab 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 0x13470418 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5fd00873 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7f32ca25 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8d2dd6d9 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xaad65551 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb51b1e55 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe5d42e98 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfea759b3 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 0x30ca021c qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x796011b3 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 0xf7a43700 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf90e9990 qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4a148073 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x82747bc4 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbeb27871 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0xa1060007 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x7cbf025e altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x496d74d8 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x49950995 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xf8200312 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x474bcc59 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5efe8208 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x64495fe2 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6df8e0f1 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcb0938bf spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcc3abfc6 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5c82491b spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x5e589b5e spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xcaf016d5 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09444018 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1177b900 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x26b40481 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b9677a7 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x34f81546 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x422c0b13 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4566895a spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4bbb1047 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65e120b2 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6c27c8f2 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xae4eecca spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbaca19ef spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd18538d6 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd84ccf58 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe36a64a8 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe6033625 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf38be7d0 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf64b2bd6 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x5d4b3f44 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0a9af9f9 anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x119c6377 anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2782a9cb anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2e14bf9a anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x4f57ef12 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5f653650 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6f32e379 devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xa8631df0 anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xafe83252 anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xbf03195f anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd42169ba anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xd8a573c0 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xedbd3135 anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x15172b5c fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x46c491c8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x52bade7c fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd287032c fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x071d21bd gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x279a70cf gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x3e556255 gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x47d2ff27 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x4cdbc259 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x50ab0f15 gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x96337941 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x96b472e1 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x9a45f60c gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xa38e73b9 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xb6b42833 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xed2610e1 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf67bf6a9 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x06f81235 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0d475921 gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x19dc49f2 gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x2655f057 gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x477277c7 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x71aa8893 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x79b7831a gb_audio_gb_get_topology +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x81235b16 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9e0700d1 gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb960c661 gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd8f9188a gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xe799cc05 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xf4fce587 gb_audio_gb_set_pcm +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 0x3902a022 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xb16e612a gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x8f78b040 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xd5c30d38 gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x0ceda64c gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x4e42728f gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x2f571368 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1801de1e imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x20302d33 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3a3eefeb imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3afc4948 imx_media_find_pixel_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3c8f26ba imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x3df05cba imx_media_dev_notifier_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4624d985 imx_media_init_cfg +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4789c270 imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4a22453a imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5249456a 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 0x59d22bec imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x83c17857 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x9d4f6a9d imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xa39cc0e6 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 0xa8d626e4 imx_media_pipeline_subdev +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 0xb001d0c5 imx_media_capture_device_remove +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 0xbe8d1b3f imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xbf9c18ba imx_media_capture_device_unregister +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 0xc219b368 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xca852007 imx_media_find_subdev_by_devname +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xced0b24b imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd4e45b7e imx_media_try_colorimetry +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd979141e imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xda772751 imx_media_get_pad_fwnode +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 0xfac70132 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x0a505454 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 0x28bd20a8 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x58652ae0 amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x58912bee amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x58bfba47 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5bd22768 amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x5c4dd35f amvdec_write_dos_bits +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 0x6491bfee amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6652d4bf amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6dbd6e56 amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6f3197be amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x891f442a amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xa801f83a amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xafafeb4e amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xb173efb8 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xbd7258cb amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc362d151 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe374a581 amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe79f7387 amvdec_read_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf3018815 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xfc4c9f03 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x6397f076 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x6ca8f01c nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xe7bf35c2 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x09b14ac3 vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x2330f4c6 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5035773a vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x50b67dbd 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 0x75f6b415 vchiq_mmal_component_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x814337e6 vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xaca4dd80 vchiq_mmal_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xb3bde499 vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xbecb7d65 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xc7ebc77f mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xdf9bf14b mmal_vchi_buffer_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf47963bb vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf55d6df5 vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xfaaaa646 vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x2ff81955 target_queue_submission +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x3d189b72 target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x77b5afcc target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xdf1f316c target_submit_prep +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c89a113 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15de87b3 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a4d0d6c tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b145bea tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x20c16192 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x31aca2d1 tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x39d42df2 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x450ad29d tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5144a343 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5152c602 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x54d6bcc4 tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e14f8e8 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6e209152 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85ffc680 tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x92fb2139 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaf7588d9 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb276a4fb tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb516e6ec tee_client_open_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0xbbc53500 tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc4664b96 tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0xc9c50c88 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xffead802 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x086cadd6 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x209a3150 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x2151b41d tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3cdfb398 __tb_ring_enqueue +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x3e1fc2fb tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x4d6b1d39 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 0x56c4c27f tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x5ef1d234 tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x603249ed tb_unregister_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x63ca8611 tb_xdomain_find_by_uuid +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 0x785eb82c tb_property_remove +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7aaea3a2 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7e666ea4 tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8efa0e5f tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x97566945 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa31ee8d4 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa9464ea1 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xae1d048f tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xaf931c13 tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb3a1d2be tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb99d03cc tb_ring_alloc_rx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd04028ce tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xd9782f2e tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xec634e77 tb_ring_alloc_tx +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 0xf8dff948 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xfa1322b2 tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x07ee27ce ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0e125e5d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x15a10ac2 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x311dbe56 ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3ab4efb9 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4440f1c1 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4b32507c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4bf9f829 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5254cf17 ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x538a2aa9 ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5eba2877 __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7d92d7df ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x83566b0d ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8a2a2966 ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x8ab1f9d8 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xad5567fe ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xb436d49f ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdbb40b98 ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xece95c21 ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xece9e34c ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xf19fdc1e ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xfa3bc801 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xff79fd86 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x35437431 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x6ca0d040 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4080780c uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x77ac0a0a uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x8268fa60 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcd6149b6 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x181b853a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe0a0bdea usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x03d2db69 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x4abaeba5 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x6d721d4b cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x7a896ab9 cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x9212c768 cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xa5438e61 cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xac46e9fe cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe21ab97d cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xea63a1a7 cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x0fca7da6 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x37a4922d ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8917de33 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9b6f49fd ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x040def2e imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x37fe4772 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x47dd754e imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xa8449e27 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xadb5e5cc imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb5e2052e imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x001ac13f ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2b2908c4 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x42d9b59a __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x59975bf2 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdba3f2df ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xeca63d21 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1261b620 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x1edda006 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x2458e213 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x30fdb974 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x31d6df40 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x696ec792 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x69fe04ef u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8590a612 u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8e3eb92a u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaab850c3 u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xaf872952 u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbe3b8d70 u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbe49d19f u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc67fe09c u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xfa32092e u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x07c3a2c9 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1c5c612a gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x37a421ff gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4978f328 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4af2815d gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x58c23459 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5ae578bd gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6bdc2954 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6ef1a5d9 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x76975a37 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 0xa439bde0 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xae688236 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbdcb3ddd gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc1fe018f gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc8c5c56b gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed8e90b5 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x300ffafd gserial_resume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x3fe005e4 gserial_disconnect +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 0x6c78bcea gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb5221f6e 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 0xe89dc424 gserial_alloc_line_no_console +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x1d3791f5 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x68a9e348 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 0x02472908 fsg_show_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 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1aa01a9c fsg_show_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x339064cc fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x371f6e12 fsg_store_ro +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 0x432384c1 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4976bad9 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 0x57f9eeee fsg_store_cdrom +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 0x7857a0ad fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7b226e72 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7ba96683 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e089a68 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7e26d4a5 fsg_common_set_sysfs +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84a56587 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 0x91ac6591 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 0xb1bbebc6 fsg_common_remove_lun +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 0xb765e654 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 0xe46edbae fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf3b46a21 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x205dbf96 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x20b6dc47 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x417b0d36 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x545fde42 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x58313096 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x62e718d7 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x66979e33 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d83779c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x97af3fb0 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa7893a95 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa2dc5dd rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3d09b35 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6da01cc rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6e721b2 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf8bd2ebf rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x058fef78 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 0x185ed1a0 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d9d33da usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1eb22e17 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ef8f9b0 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x257851f1 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27efe060 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ede6843 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3f90d473 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x41dd172a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4268914e usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44730f1a usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4938ae75 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b589e2e usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c0f23b9 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51687448 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c5ef24e usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d73d7df usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x608e4cf0 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f11db20 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f39b47f usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x713987db config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71c19b52 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x71d6b31d usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8eab1158 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93e8d583 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb046819d usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb060e6c1 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbea270ad usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd970fdf4 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdcda473e usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x0d7ffcb9 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x3af85843 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x564f5b2e free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x57a281b6 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 0x97dffa75 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xafe0f817 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xd858a5e7 init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xdf303450 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xf0de77ed gadget_release +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 0x0d90d784 usb_ep_fifo_flush +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0ec1a070 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1055d4d1 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x25c6fb94 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x38b0d76b usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3941595e usb_gadget_frame_number +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x491277dc usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49d9f030 usb_ep_fifo_status +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ffc93b1 gadget_find_ep_by_name +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 0x59e34a97 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 0x6d4fc4dc usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6efaf670 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x727738da usb_add_gadget_udc_release +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 0x85f8327e usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x895883b7 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x992c9e92 usb_gadget_check_config +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 0xab3cf881 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaddcc217 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaf201fa6 usb_ep_enable +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb0920149 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb09e7f5b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb30360e7 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb84e6a7c usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe7adc8d usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc1233020 usb_gadget_wakeup +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc3e369bd usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc7e556e5 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcefe549c usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd4f6ec28 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd9d48ab4 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf1dc03e9 usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xfd3b0019 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x1e1713f5 renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x607e5687 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xffe8dc1a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x12c77dc6 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ad85e58 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x21b0145c usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x244d1a73 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a143b6c ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x40cdcf36 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x69d2aa14 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8a884361 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0182719 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x084a7ab8 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 0x2734197f musb_readb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x4a96cafb musb_set_peripheral +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x669594ad musb_clearw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x6a4d8c85 musb_get_mode +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 0x914d42f3 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x9b01b81f musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xb837d51b musb_interrupt +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 0x0cce8c4b usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x20dcdf88 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x40991e3c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x7e3b9b3f usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xd081447b usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xf84d47cf isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x602ae141 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x74c58308 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x82278620 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x99129875 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe842025e usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c9f5917 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x40509f13 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4a14f59f usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a56377c usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8130cb05 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ae71b9f usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9b2ba1f8 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9c001a04 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9cb040d0 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabf55e4e usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xace602d5 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2447964 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2ac12ab usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb5f4a92c usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb973b191 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca7c9aa5 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7fd07cd usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd836af1 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe892db92 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfe8ea499 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x15c8f80a dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0xea9fabbc dp_altmode_remove +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x6f497a3c tcpci_irq +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpci 0x9b3cf064 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 0x3555dd8a 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 0x0308b06e typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x094c75dc typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a10d5c2 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c95fe97 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ffa3c53 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x123a72fa typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2417ef72 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27e67d09 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30998e9b typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x379973b2 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38113612 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x396cba98 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40c8cf42 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44975079 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45bb849d typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x464dbe1d typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c76ad37 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x503b01fe __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x512fc3a0 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54ea966d fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x627104c6 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63a1ffaa typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x663910e4 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67449ff7 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dad88db typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f6cf3c5 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x776910c8 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8039d990 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80a884e6 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x83b87b6e typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86244722 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bb9f3fa typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x961d4565 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96fbe4fd typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x991e7aab typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ade520a typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9efa9ee6 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f7235ef typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0a24639 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1e57bf1 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5d9d1c9 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba70b6b3 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfdc7f3e typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5ef8a8b typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3d81532 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd624ad5c typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7248a70 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdba42eeb typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc9e32a1 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2eef3f7 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 0xebb3da7b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed25daa3 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xedac5997 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3252992 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf981e02a typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0ffb31de ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2b3d831a ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x589bdb60 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d3977c5 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7e4d7c87 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xba735d3f ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda10229b ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf888ecbe ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xffdb0d70 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x08824752 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0aac2c3f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2562bfe3 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5921c744 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7031683f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8af10c0b usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8f093524 usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa22c170d usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb0ec59c3 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb359301e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb62e24ed usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1b98db5 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf905aea9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x026109fd __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x2bbad956 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x561be09a vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x620a2603 _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x66e4aac5 vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x9d725040 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa5227de0 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb2666757 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xd177d5a1 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe9b0caa1 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xf8fc7747 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x3875ed01 vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0x2643498f mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x0024fb62 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1bd63853 vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x1fbdd706 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x21a625d6 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x22276c28 vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x234fe547 vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x258fe060 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x38648a50 vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x526c0a3b vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5f3a2bcd vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x6a986c17 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x84380135 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xa5f8148f vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xab23bcf9 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb3cfdd9a vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xc67436c8 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xd827b9dd vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfb42cd4d vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfe0d7487 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x0f2c4b44 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x22dfabf6 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xad264e1f vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xbbd712a0 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x01892d93 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x11d2f98e vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2768f5b4 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x41eae4b3 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x454607dd vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x47fd35e2 vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5bca760f vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d7d01cf vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa0afa723 vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xac00dde0 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd209156a vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd254686f vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xea23beb5 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x16545e4f vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x2983c28a vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x02586e9d vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x07f4dcc6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09b64716 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bf5d154 vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1584be10 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x15e1cfc7 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1b89fd92 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e9b860a vhost_dev_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c8f0fb8 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x30bf2f10 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3ed59dd9 vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x50316d8e vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5ee7ec4d vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x63567c2d vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6aa282bf vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79b47346 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x81fffa96 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x85fb8718 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x94689cdd vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x96c286eb vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9716a754 vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa1e96099 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4324695 vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa95c64ea vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabc720e2 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac69e08f vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf65c5ed vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0d7d636 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb96e877e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb9e2e4e7 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8061a3c vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcb311dab vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc8e6689 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd01d3cdb vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec040455 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec70795d vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xedfc4eaf vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf5f8bfac vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe316acf vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xffe5120d vhost_vq_init_access +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 0x8a7d8ee9 vhost_iotlb_init +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 0x2d11efa1 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2e2b3c5f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x64c6ff83 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb26aae41 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc09f850e ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf3692b98 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf4074e5a ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x5c7158f3 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x130277e3 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3c27ab2b fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x077cba1d sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x164e1d0d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bfccf09 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1ce0c029 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5bc7ad04 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x82b3ebc2 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa0b4d4ee w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb3574c14 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6a7b407 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9514cf5 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd017343 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd923eb10 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfd43b4a8 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1dbcd4e0 xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x3cbbbee0 xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x6eaee45e xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xa3b24986 xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xd9e13a36 xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x2ffece6e xen_privcmdbuf_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x51ca69ae 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 0x75864e51 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb015a179 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc66b8b23 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x13addfcc lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x15987726 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6d5aeaaf nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc8679c3d lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdcfa5b51 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5efea52 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xed0d6121 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01b25afa nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01d3e04f nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01ffdcf3 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02944c4e nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03464bdc nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0575ee8a nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ff9125 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06d8ed88 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x074e71d4 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09539f05 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09727ceb __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b85b9d7 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e662e39 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x137a2c7a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17747e01 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19857977 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c1897e5 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f574a2f nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20690dc4 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22809e54 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2592fc78 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26895f5e nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x269096d4 nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28894bfe nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d0b5f16 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x324f173c nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x329b1d7c nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34695fcc nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3abbe26a nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b1431ac nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d26dc03 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d41d9e5 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d5c7e29 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e793ca0 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x408f21a7 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d7dec8 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43e356bc nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x442f3e53 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x444e4fa4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44e61d7a nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46f86e15 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c486de0 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d902aae nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa4da6e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54920e6f nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x550a79e2 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x561e4d4b nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x583eda1f __traceiter_nfs_fsync_exit +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 0x5a512969 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bb53ad6 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fba6715 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6338d2e7 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x634b24a7 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63b0a987 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65229ca1 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a8cf0ca nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b380e30 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6b986191 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c0bf6b3 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7151c848 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73971ab5 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74849366 nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76acd1f2 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x771568c0 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77220589 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x79064ead nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ceb21b6 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d5d5a6d nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7e62fa9f nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84a9a5dc nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x868cec95 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86b8aa02 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87ea08b5 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89a0a3cc nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc2d168 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bcb9047 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d599bb9 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1757a8 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90827d4a nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98cae1cc nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1d2e91 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bdf6100 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9de2aafb nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1ec9603 nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3a547e4 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa585772e nfs_client_init_is_complete +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 0xad8d7a39 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf441573 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1baf2eb nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2860500 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb335d4d1 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5afdc54 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba92bfe6 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbdd38630 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf3ed250 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3256adf nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3532843 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3c3f664 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4aef8ad nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc61fbbe7 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8676fbd nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb90feeb nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1636c0 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd15ee46f nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4483c33 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c0edef nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd550d9e6 nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6dc3065 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd75850dc __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd894d88f nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcad38dc nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd63df72 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdea271fa nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xded0302c nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfe87da0 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe24d83c7 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4933c48 nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe54cd238 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe62554cd __traceiter_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9f930de nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea0099bf nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed246768 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee7c6882 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf20f97ac nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf33bbac3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf381dbd6 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf48ecc49 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6501a4b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf67712f7 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf690ef0f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7140db2 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8697715 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf98ec651 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb0cef42 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7adfd8 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x17909474 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x019c4d82 __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x03ff619f __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05fc5d59 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07822b63 nfs4_pnfs_ds_add +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 0x0f01076e __tracepoint_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f6ef1a6 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x145dd63b pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x174fa503 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x175b7bc0 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x19153ec9 nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x195cd2a3 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b53cf65 pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dc0e3e3 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x246c2ceb pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x247fc5d2 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25fe0a92 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2691e389 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28066ed6 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e7cff07 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2ff86076 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30f81566 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32d6f0ed nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x333ebaad nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c2108d pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33d45d0c pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c9d626e __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3dfdeaeb pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533dcc4a __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x57768f91 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a4314e9 __SCK__tp_func_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ce462a3 __tracepoint_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5d940aaa pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60cf95e9 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6316d9f7 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66195091 nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x672fb8c6 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fde02e4 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x722cc4b8 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7376629d __traceiter_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74dbc042 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x785c06ab __SCK__tp_func_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79c44036 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a2ee4b5 nfs4_test_session_trunk +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 0x8044255d pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82c73939 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82d75dee nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x899501e7 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91cbde19 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93cdcae8 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x945c52cd nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x971cc3d0 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99124f63 pnfs_generic_pg_check_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a086631 pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8cabcfb nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadfaa5b6 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf7ef079 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb86ef56c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb935bfcb 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 0xbb53ac12 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc02a01de nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3ab4033 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf29b95f __tracepoint_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcfc78771 __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd098ce8a pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0ecfaad __tracepoint_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd338fd1b nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd45a0561 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb0eec2c pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd159dc0 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7bdd7a pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddab3f5d pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf96e69c __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0022116 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe87623fc nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe915c09d nfs4_init_deviceid_node +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 0xef1c1715 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf169e35d pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf2337f2c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3563f77 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3c97f36 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf47898c5 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7fcba0d nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa5676a8 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe73706c pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe9739e2 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1192568f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b4075ba locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc41d8499 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5b6a49a4 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xa7f371e8 nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd94ce0db nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf22466a1 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x3bcba199 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 0x2059ebb9 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x3a919302 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8a179a1d o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9441b6d8 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa049e02f 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 0xcf844b2c 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 0xf87dff42 o2nm_node_put +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 0x0b9d94a2 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 0x7d5192df dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa3574031 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae28c174 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc2930a35 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 0xeccf2ffd dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0a726931 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0cfd3fc5 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1475f64b ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5a148855 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8bc0db6f 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 0xb840cce6 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbe628e80 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x7434778c unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xcf112590 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xb645175a unregister_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0xe62f903b 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/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb8f0a417 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd619f9df notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0x2ade9a87 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xb4c70494 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x0320854a garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x07906bad garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x31dff260 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x4eac3a88 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xb7c2c3b9 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xf9436ab1 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x012ad6b9 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x4eb648cc mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa18728f6 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xaabac907 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbeade092 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xeb0658dc mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0xe7076bb8 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xe8ef3c71 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0071a786 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5220102c 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 0x9055b912 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 0x2b40c33f l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4acafba8 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5c5551dd l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x646265cb l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x69688f55 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7876f6e9 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83c9593f l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8f9d211f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa6e3e35f l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x6f0983c2 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0120b92d br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x01abfcdb br_forward +EXPORT_SYMBOL_GPL net/bridge/bridge 0x117cb83d br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x151472fa br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x246b2512 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0x28714884 br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2fb459c4 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x49688383 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x608ac979 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0x62c5acb7 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x74a5766b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x78d7031d br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x8967b824 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96a9e97b br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x999facb0 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa6601b82 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb2809297 br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb6eb8446 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbaee3ac9 br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc5357e77 br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc79f7825 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0xccb08956 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd80819d5 br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0xda154531 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfe560763 nf_br_ops +EXPORT_SYMBOL_GPL net/core/failover 0x20481bda failover_slave_unregister +EXPORT_SYMBOL_GPL net/core/failover 0x77f9e6fb failover_register +EXPORT_SYMBOL_GPL net/core/failover 0x92c27ed5 failover_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x07126e8d dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09d6b47b dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1149c62f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x19a8c3f5 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b3b6fd5 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c05eed2 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c1ec6cc dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1c87fdbf dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x20ab8a4a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2d0124cd dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3af0fdae dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45618ad6 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46da5565 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e583241 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f1e7279 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6afc69dd dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x785e0910 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c3ed89d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8374fb4c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8589ea76 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98383607 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f5a7127 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa15f8fcf dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad32aabb dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xadca7ee6 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb459aad8 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbddcfad9 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xccd3491a dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd17c62c4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdad758ea dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf56d5638 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x29051133 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3c7f206f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3de3eb27 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x463d868f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67047285 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb7a3d0c3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1145a537 dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x122e8342 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x14acc563 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1d7570f5 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x21346944 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2e8637ed dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x32225525 dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3235c84e dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45c0aaf5 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45f6baab dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4681e338 dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48eebaa1 dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x55b29427 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6f9827d6 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x940d6d2b dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x94366e5c dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x95246b89 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9c95f6d4 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xafcc952b dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb04de9a9 dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbaaf5253 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbf4471fe dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc28a6457 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd6b00747 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd8ab16f7 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdbc2bb76 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe539e364 dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe897a842 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf189898d dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfbb9ddd5 dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfc5cd1ed dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x002fc2eb ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x5ec9f65d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb823fa59 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc3a12629 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ife/ife 0x0aafaeb1 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0x6210e871 ife_tlv_meta_next +EXPORT_SYMBOL_GPL net/ife/ife 0x67db2029 ife_tlv_meta_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xb040fe5d ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x378f279f esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x687f9e67 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0xe29d8fe7 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb4433321 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe8ec3cd2 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x301d200f inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d08fc82 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3f8aa114 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x542ab53c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5f053b0e inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x62dc7101 inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd6f95e7f inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd989c5d3 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf7cc9318 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xaa190b1d gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x07b92c84 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1167c006 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17ec7fa9 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c17021f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2044ebb9 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x246bcb29 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x52a51dc0 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58c74aaa ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x606becff ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7d4e7c87 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85e8b2c5 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa0b5ac76 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xadc11765 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4ab133d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb62c7302 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8361287 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfe3640ec ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc392060b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4d93f4f7 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x3204e766 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xfbbdf5c1 nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0x5ad97791 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4d1b1f56 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa2253842 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xafcdeeab nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcb4062ed nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xec8005c2 nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xec9c5a58 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb710da1 nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x698899d9 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x04b06594 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1277918d nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0x1d459e4a nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x6e2f99fa nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0xe01b149d nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6c33fb5a tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9f302cdc tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa41cecec tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xad464b0d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbd376172 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2b693968 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x60763640 udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x7b905b55 udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x82401ee0 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xac191ef2 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdfbe57b8 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe2c5b68e udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf4f2bc65 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x18bf2f75 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4bbfd43d esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xa7de2a24 esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x68387c61 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x99f989a3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe3f37803 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x74c4ae45 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xe21398c6 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x376283df ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x75026b07 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xb7d3dbc8 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf53b69bb nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x09714071 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x212cb0c0 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x56181801 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x86c8077d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x87bc68ad nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x99f81531 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe12459b3 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe2c814fc nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xeeef38b0 nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x7888b1c8 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xc75d166d nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0xff0ca8de nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x79194b6e nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x839f83c7 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09f17087 l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0e8f0906 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ead77cd l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0f38628d l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2dd74723 l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6ba2ff13 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6caee4a0 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8398d06e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x875d9238 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x890c69e4 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9644bc0c l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x988bab27 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa544aebf l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6562d31 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb42c4a6e l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb8485f7d l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd46500d0 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe0f1025c l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf91d648c l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa358ac7 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xff7d8374 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x1c3d219b l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xf682d04c l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03d4025d ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x12a05041 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x226823c2 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x265647b7 ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b28a165 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x352ac882 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ce9e5e1 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6e1c2a9a ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x86f31f13 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8b25da4d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x96ae7aa9 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x99f783f1 ieee80211_iterate_stations +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 0xa7a6a7ff ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb0485140 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc881bb00 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xccec9df0 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd0faa581 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd106262e ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe4e4630e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefe57340 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf75c28ce ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf902e78a ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x26c481b9 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5063e772 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x675ee72a mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbf6ae81c nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd494dd68 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02b91b96 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x18ccf17a ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22d966c6 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x336005f4 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66f4ddd3 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x75d60a3a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88799f90 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8c4eb15e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f03e0c5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa50dd6eb ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa6de8d93 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb4b92113 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb623016d ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb921d42e ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc7350e94 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcfd96cf9 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5c3dae5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd9f8a8db ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda9b85bf ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9e70ee6 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x53d12609 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa94ddd01 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb31b6e5e ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf8d7b9cd register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x7fdcfcda nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x8406224b nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x882e1ffc nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xabb4a241 nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xd4854982 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x053cf0cb nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08e598a8 nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c51d6f6 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0dd49d11 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11ec2865 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142c14f4 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x161c5d19 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a878ec0 nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bfc2ce4 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20ff9fea nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23310b1d nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x233164b6 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2422c2ff nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27ae0404 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28eff409 nf_conntrack_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a1faa66 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32c7a5c3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x348cbdb5 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3954a9dd nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4031b761 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x448e7e70 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45a89240 nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49fcdcfe nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x51cc93a9 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d36d51f nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e70163e nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b63993c nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6be46b83 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x70495cbc nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x780e5aa6 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78258230 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c619d80 nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ddd8c2a nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e59cf5d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81787fec nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84b70cd8 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x883f36f0 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x961d1511 nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9728a63a nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9865aae6 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4d7152d nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4fb580d nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa50cad21 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5e989d1 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa6e6424c nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8ad6b3c nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8b63211 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad55be6e __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf0847f0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafbd6cf5 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1fe5e1e nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb48ac96b nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbae4ce01 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc701570 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdb88061 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbde9dd32 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe4a2628 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc04dd020 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0b62b5e nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1e7aa0f nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc630e254 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc7d1d676 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9922e31 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccb6c825 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd832aa2a nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd93ca06b nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb74a2bd nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdba7326b nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbf26da2 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcf2c443 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd4d6746 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf0aed48 nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf47165f nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfdfa494 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2df0343 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6212aa9 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea6d8d3f nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed4b4f23 nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0107d46 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf21d5074 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5db3ee5 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa583321 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbc7b908 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfef2b11f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xa25bfe67 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7557ae26 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xf7a78b82 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x398e6c5e nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3cb101c2 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x47ea4648 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4f99ba1b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x756a2272 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb21efed4 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb9d89627 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe90d94d6 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xefe30ac2 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf8441a80 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x502f118d nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7d8cd92a nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1ba10183 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c893287 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x67720022 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x81aba175 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x95b9a099 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe6516c48 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7eccd68 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbb3fed45 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x6ee88533 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x2947d20d nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5d906c27 nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbc6e03a9 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x0916c263 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x16790761 nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x20a0cc32 nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3e96ef22 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x3ea79d8e flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x436cc310 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x5fbda41a flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x8865d2d4 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x91e9841d nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x94f7e6fc nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x9cd67a61 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb6eb4174 nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xbf4ca75a nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xc22699c2 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd22b60e7 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe236a4e6 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xe5fb473c nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x28dae800 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x477def06 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x485a069f nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x56ed8bfb nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x61c37a84 nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6aec89ed nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x70480145 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x90f973c1 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa48c0bcf nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa66854ef nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc29a8a2e nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc4f2c897 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc5ef8bff nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc666f39c nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd7bea0bd 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 0xff6849b4 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x1f099794 synproxy_init_timestamp_cookie +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3a18b74e nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3f396d38 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x57f5fdd9 synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x59b13604 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x62412f10 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x6e6cf051 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x7af4c831 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8770ff1f nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd4eb277d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd630820a synproxy_send_client_synack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdf296741 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1daeb70b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21c511e1 __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x272f122d nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2790388f nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2dccc41b nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ef30c91 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2fbf57b9 nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x34941dfa __nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x419e5916 nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45f9a575 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5023bbe6 nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x52a0b58a nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e019dca nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fbf3b2c nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x647f2e21 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e6e2f92 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x70ad3d74 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7651a0a6 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78d52643 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x85de11a9 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9231db59 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9404174f nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96a0f323 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9ac6f179 nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9c499ac8 nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa677b4a3 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xad5ad9ab nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbd1627b3 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe61d89f nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2ecdc57 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3b2d9de nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc439fb96 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc87924dc nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd7b4db75 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xde57b5f5 nft_parse_u32_check +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdf6235cd nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2b8cc13 nft_parse_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe4de5f80 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe5a57111 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed6aff6d nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf5e65f61 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf6df9d42 nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0415d6a4 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x29234c7a nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x45dc6891 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8d662f26 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbdbe6221 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcc6275c8 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfec94c83 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4cfc5b40 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x56219ce0 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7c0ed443 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x2515e0be nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xa442ecd8 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x2d1f36cb nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4d2c828a nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x60328056 nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x9f9047c8 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xbd978f63 nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4233b1ee nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x8518dc3a nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa0390c05 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe2c84666 nft_reject_icmp_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04984d04 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x04e27719 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0560746f xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0c68ab47 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0fb5808b xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1cbf6098 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4074f7d3 xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x43b5054a xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4506840a xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a08b043 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4a3437bf xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5897c22c xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5df87b63 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5fb3609a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6db98537 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7bce4603 xt_data_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7dc1aebe xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x823edea5 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83b4d3b8 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92c5f486 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d95451e xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa8bdc996 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4a8fa93 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc7fae024 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1e246a2 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd3fcc511 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6abdc15 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd9bb821b xt_copy_counters +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdacd0645 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xddf68fc6 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf54aa597 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x291cbe14 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf70ec24b xt_rateest_put +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x558e1cc4 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xecf442ad nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xed022dc5 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x85eb223f nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb31892c6 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd4a500d2 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x8d187f34 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0xa1d61486 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x077d55e8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x49098512 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e54cfca ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x70bf98cc ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x71616de8 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa9a4f1e3 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/psample/psample 0x426c6c95 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x73e388af psample_group_put +EXPORT_SYMBOL_GPL net/psample/psample 0x98e68302 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0xad45eee8 psample_group_get +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x0ae86563 qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x381f21a0 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x4d4bf0ab qrtr_endpoint_register +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x8d25501f qrtr_ns_remove +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0xa47e91ba qrtr_ns_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0060490c rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x019baab3 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x027717b9 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x10734037 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x19de8329 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1fda4d1f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x21e385e8 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2936b475 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2cc3a7b4 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x31e6d023 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x36aeda80 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x406cfb20 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x445f69d3 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x51cfe96f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5491c0bf rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x573fbcff 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 0x626a29a4 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x65e70aea rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x7a2ee981 rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x7cb6f421 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x875a7767 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x97872d74 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa6f5b655 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc1970571 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xc1d5ebf6 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2096e45 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xf52fc7b4 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf710b58d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xfd22dd56 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x43794fa5 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_pie 0xdb32dc04 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 0x3e3dfb19 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xc7ebc607 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0xd62f2cbf sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0xdba469aa sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x1be3a337 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0x2ead7986 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x37c7193c smcd_alloc_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x3d987def smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x526ee4af smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x70f49ad5 smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0x83fddedb smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xa5946706 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xe2cac22a smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0xe8d259aa smcd_unregister_dev +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x152ef552 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38d3dce5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x482ac5a4 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x51ac1315 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc446e30b gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd69044a8 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7673035 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00238610 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01595ddc rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x018c5959 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x033317c0 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03be21ac xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x060f5f8c rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x074115ed xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08736d98 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x092e5938 xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09f010b3 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a1635f8 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c512c89 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d4c0fbd xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e1177e2 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e164584 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ea09309 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10eace9b xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x111116d5 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13159d2c rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14a04ba9 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173dd98c rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18349c74 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c92977 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x196261d5 xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x197a8e3e svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19971025 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a02ba52 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b40510f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce879d4 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1df4282f rpc_put_task +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 0x218881df rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x229f19f7 xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a3de4e rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24f50459 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25071b0a rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26bd10fd rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x276984a0 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2824aa0f rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294e0b70 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29e2e0e3 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ae245e3 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7e792f xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d4f59c5 rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9e9846 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2db9832c svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f0cd1d1 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f356149 rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f449d22 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f4cfaa7 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300ea280 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x300fac93 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31955826 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3258c91e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32c2840a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34831a5a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35102f40 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35e1c68b rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c48d62 svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x382b2d4f rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3850b12f rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x385f37f4 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386189f7 rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a73986f svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b28fd89 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bbfb06a svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8c7cae svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40100d0c svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x407ba796 xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x408e7454 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416468e1 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x461ce744 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49794197 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c0def5c rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc6f2f2 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea486f7 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f5bab3c rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55cb223e xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55d1043f svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56ff8c19 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x582f3b23 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59bd0dc2 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bcc4ab5 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dac3b6a svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61467d60 rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6274da29 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x627be9c0 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x630f7a98 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x640c77aa rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6704d9b4 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6711019a rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68e74b5d svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68ffad96 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69e004cb rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bf1da8c svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e52869a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9c511b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f7d46df xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70d18fe3 rpc_clnt_add_xprt +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 0x72dffa08 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740132c7 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b40a44 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74f4adf6 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x759b577c svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767d0ef7 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77073b66 xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x776ea512 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cbd330 xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a8b55be rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b76da3a svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ce8dd8c rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d8deef3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x802b8f52 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82c295bc rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x835be94b xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83e39587 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x840dc8d7 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84c8e9b3 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85011d4d xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x880878cb rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b88e81b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ceaa0cc xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ea8c7cf rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec5a980 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f45b1f3 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x923680c2 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9419b04a rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9423a66d cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95df881e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9629f85b xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97d523b2 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98af2cbe rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99509101 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c3f073b svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd2a6b8 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f9386b0 xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10c656a xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1da7020 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa363f203 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6146de6 xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa77a5bbd svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80a2e41 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa84fe975 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa260c4f rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa27a4dc xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa920f06 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaad23406 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab05310a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac7a4d6b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad6ddc8a xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadcf420b xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf998555 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb02d691e rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb056d2b4 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1235c4f csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb15f4d83 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1ff15f8 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb47b95f2 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e0ea57 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb73b020b auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7ba58b5 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba6fe499 sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe4b660c rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbff33e3b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc063b9d2 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0a2aa7b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc180bb4f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc44b839d xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc578f4cd xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9bd9472 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb40decd svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb84e740 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbfd8361 xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf994f61 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0f13925 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2f152d3 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3f53a29 sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd535865a rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd63f862a cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7934263 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b1f56c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8604989 __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8df9e24 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9cc93b4 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb0d2127 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb48f2e7 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbb34fac xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc3d2c8 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcccc80c svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcffb788 sunrpc_cache_unhash +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe031f4a5 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0372aea rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0855325 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1126f0b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1652541 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36bae28 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3d3e47e write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe41555d1 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4668c44 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe68b2d4f rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ad5dc3 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6d6a4fc rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8a5a0f4 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e43aa1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9f1dc51 rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea3e0895 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb17b153 svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5d4a9e rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd685bb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0345b5c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0411647 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43b2bd8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57d9d9b rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5f88005 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ee3363 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf73a0718 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f81dd3 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fd85b2 svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a49c85 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9c1741e rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbb480d4 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc25ed6e rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdd8b7ce xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0b6823 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe0d98a2 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2cdf3b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe5cafa1 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfeba6570 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/tls/tls 0xad5066b1 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xb123b03b tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xbd2d7de4 tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xbf954db2 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 0x0c79232b virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e4e9ec7 virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0e986b26 virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10384474 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x135e6bfa virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x187c0328 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1a3457dc virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x1c7e9680 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x27a6d310 virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x30098aca virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x39636b26 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3c14a1e7 virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x41b73803 virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x47ed15e2 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4c7d56e3 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x551522ca virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x558ab88f virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6567c483 virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6898b0a6 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9a271458 virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9cac67c9 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa4009d37 virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa760e648 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xa91e6582 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xade88cfe virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb3e15f72 virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xb56e3eb2 virtio_transport_notify_send_pre_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 0xbb10bcaf virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xcbd0d6d7 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd43ff221 virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe43648b6 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe4434d66 virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xfb2edace virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xff660e26 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00175079 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x00488b37 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01d7f6b9 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x280ca4c9 vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38535a0e vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d0905e3 vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3d4b0fca vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4615be11 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b99648c vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56bc3bbd vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x57016239 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6ce23ea7 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x72acae83 vsock_deliver_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x76ddab12 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7ee3019b vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8c12a5ee vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9077f4b6 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa30952ed vsock_create_connected +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 0xd094d2b1 vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdc22beec vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe63c50fd vsock_remove_sock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf33ad6b0 vsock_insert_connected +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d3edc73 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2f024f7e cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x477da812 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5417f31e cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x689a9049 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69b6eccf cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6c01d1ac cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f200cfa cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x77162ef3 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8072e0ed cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa81b75ed cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc4ed4e3e cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdb14078b cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe381ef09 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xec3889b2 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf85de16e 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 0x411970a5 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6774c22d ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc2cb9d8d ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xda983930 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 0x2773157f 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 0x07e1066a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x103a18b0 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x19ae4def snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x1c9814de snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x20ba1dc9 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x33b9bf68 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x3a030884 snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x3c7110f1 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x4729b20f snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x7b0cb6a2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x825bc0db snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x8e8220e4 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x9d51c03e snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xa27f2a89 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xc29d96c5 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0xd828893d snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd992a501 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xdf5314d3 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 0x2d64f627 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x35c9fb90 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x00f7365f snd_pcm_fill_iec958_consumer +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 0x2ce8375d _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x33a51494 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x3d33a360 snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4c1729c8 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x53756393 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 0x7a4df388 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x891c3cb5 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 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa9c0952d snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb5d1c50c snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbae0cfe4 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd0d46131 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd259585c snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec4fd8f5 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x26912602 snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3a3de5ca snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x53f2db3c snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c9b0d0e snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5d3b87e5 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x651a2f9e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6a93fb4c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7154298a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8dbd8dfa snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa9ced984 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd21a277f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb762a37 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x11d1cebe snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x2189d71b __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x105f1a0c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x296ca465 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3441c025 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3f19686e amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x574e94fa amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5eb0a43e amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x65793673 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x77d7e781 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x95e49203 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x983bc921 amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaa2f47a5 amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd7216789 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf2c53b0e amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x031a3e31 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x039913a9 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x156be0bf snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17e8c202 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a459380 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b61ff29 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c053542 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c708e9f snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x234e4733 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba9cd06 snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c3d65bc snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2cb79388 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x301b9118 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x305cd03e snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32064ca8 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3228615c snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x361ee967 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3fb2bfed snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x402dfbaa snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x40a026a5 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41191109 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42bfb119 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x471c46e6 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48e203a3 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 0x4c838683 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4cc9855e snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50aff6f4 snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53548315 snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53db1324 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5aba500b snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c07cb49 snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c929939 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6521cfbd snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x657723f6 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67d6149d snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x687f1c45 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69ffe6a3 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72bfc8b1 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x770be52e snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7796459a snd_hdac_bus_enter_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 0x77d88cb1 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7bd0aaad snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c686753 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ed974b0 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8050e3de snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81f6aadf snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x824c127e snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x847910e1 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86e7aa74 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x896661ff snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f522df8 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fa59e5f snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fc02923 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fda574c snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x913a96d1 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94b6a5b7 snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x959dbbe4 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a4d34b5 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bf5d031 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0fbbca6 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3c2765b snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8a94e17 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa61a51f snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacda520f snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadba424f snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaea23fc9 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb44c31df snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc4fe457 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd46d380 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf6e02af snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc381668a snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc674b37d snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca6571e8 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd804f6a snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xceca9a0f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd41da2ba snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd905e9d9 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb903f1b snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xded05e7c snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe024bd41 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5d7c014 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe93d89e7 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3e16d43 snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3e5c5ce snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7f1ef89 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfdbe5cfd snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x32bcb46b 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 0x6fd3a4d4 snd_intel_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x8bda6202 snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xdfed3529 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2ae77e0f snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3fc751a2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x577f6cf6 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9bc474f7 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb7b17690 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf4009910 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0076870b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0431b635 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a17fae snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04a8d458 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06451aa2 snd_hda_create_spdif_share_sw +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 0x09627f1b snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a9af591 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ac334d2 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cb74edd snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x146b2353 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18df4329 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a290cbd snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1df46684 snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e4f4125 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f318c44 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23d29095 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24b94112 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27030811 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27501646 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28ca0691 snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a3aa544 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ae9d83b snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c3da190 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c585107 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d2e15d6 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d6ef557 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3020af97 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x346e5c27 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3800792f snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38fe9dfc snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e2bf84d snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f9a2ad2 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40b7527e snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40e28b09 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ef487c snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43870a65 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463ef817 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4aaa07f7 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5507fa82 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x551e01a9 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5536fa3e snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55daf2cd snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ba83b3a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c4b8b4f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f5c3acd is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64469b14 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67470ffc snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d8ea189 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fb966cb azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x706c09ee snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x728924e7 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a23ff74 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b8c5f49 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d0529fa snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fc5dc15 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x805f1833 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83500d3a snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8438ec3c azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x845296b6 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a0f6e71 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d92eeb1 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f2f389a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90071615 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9043256d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906fe1ed snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a1fa34 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x938983e3 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9690e9f6 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96fd2fdb azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9719a486 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ee74e2 snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98f3a12d snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98f82294 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b110ec1 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9beb8370 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa18650ae snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa41df084 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa52bc42e snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8991153 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaca20426 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad93b194 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae210a8f snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb06fef68 snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2998d3d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb33ddb3c snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3f95017 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9a80967 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9affabf snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba863df6 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc267b596 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3837858 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3ae525c __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc549bb09 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e4552c snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc22d505 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc60daa4 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcca21455 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce26fc70 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd066b417 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd457d46a snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4bce976 snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5f124c4 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8848911 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcaf9200 snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf8756e snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde55d0fe snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf9f9c64 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe07c550b snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0cebd4c __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 0xe1c63099 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe27f971c snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6ce2da3 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe717a146 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7831231 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe868b850 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea10956d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea67ad1c snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebf86d32 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec72e075 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee26738b snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee5a1a9d snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee883475 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef1af513 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf09cff01 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0bfbe13 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3e6739a snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4020c7d snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5af0e97 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 0xffb0c269 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x14e98c98 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x15378eb9 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x244f71e8 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x268a0edf snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30d98ab4 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x45515aad snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52847a6f snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x627a3144 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6746fd2b snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x674e5856 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a17876f 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 0x7da3f4c0 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8680e183 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8c6763aa snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x97bc0f1b snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb0c871d3 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcf4721b8 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdd0592e2 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdec86aa2 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7ec8de9 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf97f153d snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0xdec71001 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 0xde290dbb adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x472aad7b adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x8d430911 adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x0def3f9e adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x11d2a475 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x4414e3aa adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x633d6c01 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x788bf0ac adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x7a6e6734 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x989b7d17 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x9eaff49e adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xc9f4108e adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xefd3ecea adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xe358690e adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x88bd2168 cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x9856d9c7 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xb5e06ca3 cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x0dccfac4 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x21e30716 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x307129b7 cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x417fda8d cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x72d987ca cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x78c14dbd cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x81eede3a cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb1f60fb7 cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xe46d4376 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xee8e00bd cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf10af07b cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf6a3a564 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xf72adc52 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 0x88774366 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xf62c8c0e cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d4614f6 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x90f22ad5 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xbbcec6f8 cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcddb29dc cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcf7bc493 cs42l51_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x36182587 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4431fd3b cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x4574bb75 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-da7219 0x2a8e59d6 da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x656f368b da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xd9b6b59a da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xe483eac9 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3bfaddee es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xfa2a855a es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4583b543 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xc41f3683 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xca5b2812 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x8068cc39 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x98f306f6 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9b2519d3 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x9fba1fd6 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x02026ae4 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x71c8e6b5 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xc722cf06 mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xd6512fa4 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x50646fa2 mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x703c1457 mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xa46f5117 mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xe330019b mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xe30e55f6 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0x425e0185 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x530a0649 pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x54430220 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb9ce0b16 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xbe7ea73e pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xc2a6fd98 pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x5696af16 pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xbd2b857b pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x2b12f870 pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xa920de6e pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xae92f56a pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xeb2c43f8 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0c4c46d5 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x27360a96 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x470377a7 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb924cb00 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 0x43f67d9b rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x68e366c3 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x6e82626d rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8856b3f8 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe8625aa8 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf86ac643 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x9c2b03d6 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xe5df2d2c rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x61238f86 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0xb99432e4 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x07be16c9 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 0x14b4f818 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x21d93b22 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x28730696 rt5682_supply_names +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x38f71a69 rt5682_register_dai_clks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3a3ab523 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x3af83662 rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x4a0b3b7b 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 0x6f445da3 rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x8473e6a0 rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x903be887 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x98d8ac9b rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb897de56 rt5682_reg +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd5a78a97 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0x83017c05 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x1fe301da sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x23c03761 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x32304fca devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x65626aa5 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7d65037 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x92673db7 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x1c4cfd07 devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2d013063 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3b9de0d1 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5f53065a aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xfff71dc9 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xec5cfc71 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 0x500232bd wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x623dbfe3 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x6dfe1bb2 wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xb03efd5b wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xd2136b4c wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0548db72 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x062b58b5 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0a84b9e4 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0bcf4758 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x1760ef1e wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x17cf7a20 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x438640bd wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x454e7ae0 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4e32fadc wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x52c16479 wm_halo_wdt_expire +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c7b7e03 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x612eda50 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x6b045cda wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x72dc0ea9 wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7651f982 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7b96ac9d wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x8f768c9d wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x988ffab0 wm_adsp2_preloader_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa0745c42 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb7372683 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xb845e8b6 wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc1bc5fc1 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc6cab633 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd3c83cf1 wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd4f4eaaf wm_adsp2_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 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xf3ff615c wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0d0e7d52 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x54c5201f 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 0x6342327d wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x6d1943f4 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 0x7723713d wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x8a8b2b91 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x931c875e wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd6432c0f wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x0219ab96 wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0xda519f3a wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x01fc2044 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x10df7d78 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x22fd46e8 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3fa84931 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x584698c3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5c0aa9a4 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xabb9cb78 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xf213fb32 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x95e36e64 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xe7d90719 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 0x635f0c72 audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x3e9b8b63 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x60030d02 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xc6dfab95 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0xec4cb780 audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x027a96a6 asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x03383f71 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1a6891a4 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x36404364 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3c51fe4f asoc_simple_dai_init +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4dd1e1ef asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x60c10a77 asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x75de29e8 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x7f94649a asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x91e150ca asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa12b95e6 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa4493220 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xab294aa2 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb420fc5a asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xbe31f38e asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xcf8bc683 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xd584fb99 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe97519b7 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf0efcbb2 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xf1778baf 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 0xf8fa4f77 asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xff70c2a9 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1c1a8c4c mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x1edea025 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x20420e04 mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4238774c mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4532538a mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4bacaec2 mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4d9e3d85 mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x53f36a3b mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x5e8a99a2 mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x68964278 mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88e39860 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x89b7ae77 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x8ae00847 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x96887618 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa686af3e mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb32e82df mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbefd5946 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbfc402ac mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc68d6cb3 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc73b53be mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xcd3f34b5 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xd92aa7d0 mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xec040c2c mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xf60ae03b mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x42ed45ea mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xd382b275 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x08802145 axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x32b73768 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8217fced axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x8aa7448e axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x945319e6 axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xb3c49089 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xc571760b axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xcf0e9a5a axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe37c9ff9 axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x2c2be15b axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xd030e176 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 0x908ef811 axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x02ecbbf5 meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x2b2654dd meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x62c6c5c7 meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x7c77dd06 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xb071376a meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xc60eacec meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xcd22add7 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf6946717 meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x00f5aca8 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x4932e711 meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x5a409785 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x96d2dbcf meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa688d004 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0xa6c5ff09 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x4b767d81 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb8a6727f q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xc2342057 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x7df60063 q6afe_port_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0xae44987c 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 0xf49483ef q6afe_set_lpass_clock +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 0xbad777de 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/q6prm 0x1561a6af q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x22c78a84 q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x8c694ada q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x05a96f00 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0d970d23 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x1995d731 q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x26233c53 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x36485b15 q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x37e0c4d7 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x3fa9785d audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x43b726a3 q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x455fe6bc audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5725cee6 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x6effa087 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x726756da q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x755de46c audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x9cf6202f audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xb72ad810 audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbe12d5dc q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc10ed881 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc2c3763d q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc8617a4c q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd2fbff15 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xd8d38b15 q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xdbabba1a audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe269aa77 audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf0f7ba64 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xf394f2dc audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x392ac6f6 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x5e15249a q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xde27c833 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xffadf7a2 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x2da9924f asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4806921f asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6a29448f asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x6f3fabf5 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa8e60543 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc20d5216 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0xbbb67caa asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xa9d1895c asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00cb8811 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00f788e1 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01df350b snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0269d0a7 snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0393d1fa snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x055be353 snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x063b8667 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07078900 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b4bd7db snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d25eda3 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f7feb11 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1059ca2a snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10655b1b snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1170e4fd snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x167d2682 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18031311 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18132ae1 snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18896798 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1897ac15 snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b606b62 devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e793ce5 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fdb057e snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x202c17ae snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20b937f5 dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211c6d36 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22e1d906 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23d6950a snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2484ce42 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x256859b5 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25f15e86 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b2439e8 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b45d5e5 snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2db88812 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dd1a28d snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30c945a4 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x332b1ef5 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b0feb9 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x377b02cd snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a74547 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38c719c4 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39005664 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a76a615 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eaef75d snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3efbf66e snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f3f4bce snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x406f9b21 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x407b4dea snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42555967 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x439026a5 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44dbef7b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x457cf730 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x457dac9a snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45a9ec11 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x460150a3 snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47c2e745 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x484433c6 snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48759c17 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48bfdb48 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4921da63 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x496c6f0f snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49b48d89 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab638a5 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac9ac4d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4adcf35b snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b07fdce snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b0bb968 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c29a96a snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d0fef1e snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e3d6b9b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50a3f378 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51aac9c1 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5462282f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x579b1b83 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58a80062 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x596c2669 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ebc7cb0 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x611670b4 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x649bf9ec snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65c34527 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x660511ce snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6611a69a snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f91794 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e9da48 snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69d163d9 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6aa7c0aa snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d543f3b snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6db5905b snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e3f0907 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e68d047 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x702ad33d snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x707b6924 snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70eacc97 snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x716e42c4 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73d15199 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75c1f817 snd_soc_link_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75efafb8 snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x775c9116 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78d5e3ec snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a97fde4 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d47cba7 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dd0ddda snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83600db6 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84235b37 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x853abc6a dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87173baf snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87957d60 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x881bec4a snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8822e927 snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x885d09e7 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x886ac0d2 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88f6a7d3 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8928d0ca snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dcb1afe snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa8ba20 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90cbcda2 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91c319e6 snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x923158ad snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92b6e956 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92f01799 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x945830af snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x969898a8 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a73ec4 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97b3e41a dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99bde0a5 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a04d6cb snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ad08146 snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b54994b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bcad726 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9caa7a16 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cf3dd28 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9d50c116 snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e556e87 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e701c66 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f0d08c5 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f36036d snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f47cbfa snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa039a3a6 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2187ac9 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2aab12d snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44b8e07 snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8e1c02c snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab815fec snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac618247 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacd6cf8d snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadd33cfe snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xade12cc9 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadf79961 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae54d557 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaeccb1e6 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafb92122 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb037bfcb snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2dbc26e snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb61a0864 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9cd60d0 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb5395cc snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbf2e722 snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc005c93 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcf55531 snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbebf53fc snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc05e368d snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3140e0e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc33c5e48 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc34d94b1 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3b5dbcd snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3d640f9 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4652f5a snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc52cd09a snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc62fc1e0 snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6ef239b snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc921328e snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb2655ba snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xccd64d12 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf224bab snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0570eab snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0c71d44 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd28e7d33 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd40fa9d4 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd50801aa snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd725ee08 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9621029 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9a3696e snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda9cd1de snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdadef079 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdae14a06 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd10661f snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddfccec8 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0c4645c snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1aa6309 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe26f72da snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3d0a718 snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe42ecc59 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5b53fa4 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe84bc526 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9c5a298 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecee7e1c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecf067de snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed6ef374 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee1b691b snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef79196 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef9f3014 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf076fd1e null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12a250c snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf172f7e0 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7509923 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8a39915 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9622dd1 snd_soc_daifmt_clock_provider_from_bitmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98f656a snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9d6080c snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa5c455b snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa962cfa snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaa4f010 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb872680 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc0d2a3a snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc267f9a snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x4e85b847 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x6e0d391c snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9d23dc32 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xcf7781de snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xd3d2e3f0 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 0x530f9999 tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xbda7c05b tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0474adf4 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x143c0009 tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x403b4099 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6266ead5 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x6ebf53ce tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xb1518b5d devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc7bdd3dd tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xcaa4e87d tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xccc7c6d3 tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +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 0x350eb365 edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xea95eef6 sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0x84601e95 udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x08be2a82 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 0x5af63901 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5c1d57fd line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x63dd5330 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x657e677d line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7a7d0dd4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x82012aaa line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8e921cb6 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9a4384d4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2deb007 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4e6d652 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbeec4420 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc1b331f6 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xda6266f3 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xec5667d7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf5bffa54 line6_init_pcm +EXPORT_SYMBOL_GPL vmlinux 0x004cae2c component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005399b8 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005a59da usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x0067d458 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x007e265b vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x007f091b dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x008ab1d8 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x00a34f46 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x00a7ba8b lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00a7e2e8 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x00b01812 devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0x00b193bc proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x00ca95c7 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x00d35594 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d560cd fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00d76402 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x00db892e gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00ea83ce dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x00eb2e16 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x010b5ad1 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x013948f1 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x01427dd2 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x015fa901 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x0161f7e4 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x016afa87 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x018441de rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018782a7 iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01a18e29 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x01aafaab sk_msg_trim +EXPORT_SYMBOL_GPL vmlinux 0x01afedcd wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x01b4d2b3 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x01c08d03 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01db93b4 sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f4a67b __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x01f4c27b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x0245be25 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x02476442 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x0270a707 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x0292d98b pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x029dc23c gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0x02b24cce device_add +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02db6777 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x03014f73 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x03140f54 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0x031f2dfa bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032e4a6e gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x03340df7 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03403ff2 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x03406efa init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03470ae8 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x03589d46 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x036321c0 securityfs_create_symlink +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 0x03747c8b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x037a4e2b skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x038e1b7d devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03b9ec96 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c93b6a kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03e25fe9 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x03e2650f stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x03f4547f dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x04309df7 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0450d178 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x045dabe5 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046ee4d8 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x04725b71 device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04753b3f driver_find +EXPORT_SYMBOL_GPL vmlinux 0x04766502 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x0478cbd8 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x047c2fd7 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x0496899a fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04bf1789 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c56185 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04caf618 fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0x04cf8c4a __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04dbc844 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04e76d27 tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x04f01d68 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0512289b skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x05183128 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x051b1537 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053afc12 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x053b0952 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x05491ee5 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0551d7f4 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x055c14f9 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x056197fb pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x056f023e blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0589bc80 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05917b0a dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x05a296ba rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0x05b795c9 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x05ba3d7d receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x05bb97d6 spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0x05bda9a9 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05c8cefd serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0x05ec9e73 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x05ef2dd4 crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x05efd07d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x05f55816 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063252a4 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x0636cd18 alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x063d2af6 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065e5df9 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x067a235d driver_deferred_probe_check_state +EXPORT_SYMBOL_GPL vmlinux 0x0681198c spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x06863604 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0x06872ad0 xhci_drop_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x06894320 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0x068d8eef __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x06af5da5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06bd62f1 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x06c872e2 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x06cbf592 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06e25b7e device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e646a5 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x06fb257b acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x06fb5132 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x06fc2688 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x06ffd9ed __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0707453b genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x0710dd9c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x0731ffae phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x073d73ae ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0x07437491 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x07469308 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0755e0f1 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07705bac of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x07726a2b nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x0772b2a7 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0777c6c6 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x0784a962 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x07962267 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x07a336dd gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0x07b0f2e3 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b6d46c devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07beec59 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x07c6b612 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x07cd8997 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0x07d4b00b ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x07f7d6e5 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081e6377 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x0825f554 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x083c79a6 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x0842b72a dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x084a35c3 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x0854b1f7 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0866e9cc genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0x086aacca crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x086c348d perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x08963e3b k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08b923ba noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08e4c254 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x08f74459 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x0907a9d2 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x091faa30 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0x0927636f input_class +EXPORT_SYMBOL_GPL vmlinux 0x09279ec0 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x09515200 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x095681ed pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x09630c09 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x09648d8b dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0x096d6906 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x097e88e4 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0x0994d15b bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09957c0c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x099e58ce usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x09a312c1 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x09a50ecc vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c8d6fa handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x09ca7218 uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x09d971d1 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x09f32f4f cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a03f230 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0a0fa31f device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a19ae80 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x0a3e6a42 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a55b62a user_describe +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a83aa57 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0aa5a774 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x0aace703 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x0aafed76 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x0ab1d2d9 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x0abbe27b subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0abf19c6 gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0acd5277 bio_clone_blkg_association +EXPORT_SYMBOL_GPL vmlinux 0x0ad665c3 k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0ae4e044 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af5ef66 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0af9d8f0 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x0b0412bd devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b179ed8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b1e17d8 pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x0b21f156 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b279ebc __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x0b2bb5a1 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b37cdb2 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b3a659e ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0b41f6b5 dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0b4762de ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0x0b4d4ead pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b812d85 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0ba32c9f kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bb9180a rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bc26973 rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x0bcbe6fa hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0aca0c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0c0e6bac restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0c104c39 split_page +EXPORT_SYMBOL_GPL vmlinux 0x0c1b090d xdp_convert_zc_to_xdp_frame +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 0x0c401a8f pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0x0c5db6b6 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x0c62c720 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x0c64efa9 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0c765493 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c79de72 blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c8acbee switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x0c909c57 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x0c9b444f sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x0cb37807 ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0x0cb5b7c0 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cca1524 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0ccf9a50 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0cfe9d35 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d035427 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0x0d1433d3 iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x0d22f8db sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x0d3135ea regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x0d3807d8 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x0d3dd345 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0d3fa293 devm_regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d44468e pci_disable_ats +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 0x0d4f7d02 __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d65f421 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x0d6f5d2f wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x0d78952a dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x0d93bc2e devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0d947baf netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0d95033e iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0x0db50471 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x0dbaaa3b led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x0dd4a74f clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dda7870 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dedfc3f sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x0df39950 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0x0dfab90e ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e02cfca add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e14c930 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0e27885b set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x0e297800 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0e3b5f05 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0e445f14 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0e456c6d sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x0e4dde0f fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0x0e4f9cb9 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e62fe47 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x0e67a7e3 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e6c83fb uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x0e8e53a8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0e8eb9f8 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0e968f9f misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0ea348e8 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ece140d pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x0eedea08 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f18a7ab devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0f2291cc fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x0f2611ae bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f2d34ab fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0x0f34a977 mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x0f51dba4 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0f55a119 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8334da fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0x0f96c8e8 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x0fa3869f clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fcbd236 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0fcef01c tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x0fcfb7d6 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd588c1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0fedba38 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x0ff9fe3a vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x100ae5c8 nf_nat_hook +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10195e53 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x101c5e3f genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x10203e3b fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x1048bbdf gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x10549d58 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x10649c34 tcp_get_syncookie_mss +EXPORT_SYMBOL_GPL vmlinux 0x1065ec62 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x1083f7a4 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108fdabd devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x109a7adb dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x109ba288 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x109d8fdd ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x10a7606d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x10b77844 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x10bc5921 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0x10bdcad5 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x10c199d5 fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0x10c41eae pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x10c567b5 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x10d9724f ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x10d97736 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ee0d53 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110616d0 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x110dcc45 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x115a169f folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x115efb5f crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x11685b4e to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x1176f942 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x11a728e7 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x11b4caff uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x11c8bb54 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x11d82766 pci_host_common_remove +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 0x11f2193b cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x11f9f0ac spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x12134923 __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12219a63 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x122331bf ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x1229be53 __scsi_init_queue +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 0x125dc6df component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x126327d0 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x1297b217 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x129ba1ad strp_done +EXPORT_SYMBOL_GPL vmlinux 0x12ba082b virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x12bd334f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x12c10e0a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12c2b36c tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x12c87211 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x12cf2138 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x12db96ed sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x12e2df89 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x12e3e65c irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13081dad sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1326b03f of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x13319a78 of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x13369cdc __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13424f76 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x1347005a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x135650c7 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0x1356c137 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x135dbf88 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x135f13af __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13640660 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x13790b58 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138d08dd thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1390cc18 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x1393fafe extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x13984b3e hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13a3ae48 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x13bd623a pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x13bf6625 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x13c08136 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x13c80926 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d36c0d icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13dc01f4 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x13eb6880 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x13ed844d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f8c793 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x13fdc419 devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14382b18 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x143ee27d register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x144ee380 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x144fba8a em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x1460408a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x1460b7ae param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x14987614 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x14c198bd sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x14c23e9a umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x14cd5470 i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0x14d4c33c pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x14ddd488 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x14edfb79 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x14f0c556 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x1515910c kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x151ba269 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x152094a2 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x152f8259 iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1546b809 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x1557f820 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x15690a9f rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x15701366 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x159e36ac ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15c24f77 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15d8a98a thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x15e7de26 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x16150452 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x162289ab ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x1626de13 fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x165abac3 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x166140ea dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x1677b3e6 bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +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 0x16a3763b fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x16a46eae mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x16d1fa97 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x16d5f51d regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16e13565 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x16ed1abe pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x17022b01 blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x17154792 usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x171c8503 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17310258 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1736aba3 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x1737d313 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x173d7712 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x1741ddee trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x174c6274 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x1751dbe3 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0x17591ecd zynqmp_pm_write_ggs +EXPORT_SYMBOL_GPL vmlinux 0x175f18cb pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x176031a7 devlink_fmsg_string_put +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x1769930f crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x176c6cb3 pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x176cc5b0 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x177b674f sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178e1ffa ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0x17ac9bc5 __irq_resolve_mapping +EXPORT_SYMBOL_GPL vmlinux 0x17c2eca5 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0x17d90ee7 thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e21331 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x17e8acee dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x17ef1906 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1802462f of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x180fde82 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x1830af50 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x1841f289 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x185be6b9 k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x1864bcd2 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x186ed282 crypto_register_kpp +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x188309cb blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x1891c7f6 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x189c8f98 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x18a203f8 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18bd471d auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x18dd5beb usb_disable_xhci_ports +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 0x18f5a815 led_trigger_write +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1904f932 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x19170880 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x192af681 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x192f2f2f pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0x19430d79 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x194a75f1 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x1954d32c md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x195faf09 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x196208d2 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x19645b1c tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x1973d139 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x1989ee1e __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x19a25d19 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b621b1 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x19ba1dd0 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x19bae643 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19e7e216 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x19ef5a08 __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x19f1f598 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x19fe6003 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a1ce1b1 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0x1a256e9d platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a794a40 phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0x1a79f359 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x1a86d673 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a88ee73 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x1a89d28d usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x1a9dbca0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x1aa5a4fb devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1aac3f23 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1ac4031a phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x1ac426b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad78614 xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1ada7f21 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1adf5079 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b19ce04 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0x1b1b6e88 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1b1f009c meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x1b28718d spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b2cb22a fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x1b3b1182 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x1b420e16 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x1b49412e tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b5ac384 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x1b5f4377 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1b655954 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1b6a6bfd usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b6c3412 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x1b6f216b dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x1b85738b rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8aede1 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x1b8b2fd6 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b9a20d3 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x1b9e81f0 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x1bb33eb0 iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0x1bb35b44 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1bbbb2b9 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc4fb97 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1bc89ae1 __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1c015d37 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x1c05e2f4 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x1c0bc752 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x1c179715 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x1c1e91cc vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x1c212314 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1c2e825b nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x1c397879 devm_regulator_bulk_register_supply_alias +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 0x1c78ac3b devl_assert_locked +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 0x1ca47ab5 gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x1ca8f425 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1cb7c983 apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x1cb9a1c8 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0x1cbd90f7 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x1cbd92b0 cpu_mitigations_off +EXPORT_SYMBOL_GPL vmlinux 0x1cc41351 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x1cca243b devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cd1e0da crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x1cd3e130 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x1cde06b0 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1cff7312 regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d07a147 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d296974 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x1d43c7b2 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0x1d4be52f devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1d5076cf hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x1d62b5e8 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1daeeb37 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x1db6251d watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1dc7c175 of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1ddbe946 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1de2b8d9 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x1de6a737 kstrdup_quotable_file +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1deda7c4 dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e1a18ad of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3f26c2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e41f6d0 __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e5272ce ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e5ed302 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x1e7914b4 to_of_pinfo +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 0x1e9146ac add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea85f0b dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebd13e4 spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ebf9439 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x1ecda06b crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ed5b1d6 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x1eddee7b phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x1ee1bbfd clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x1ee1d5bd ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1ef9405d dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x1ef9fba3 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f12e35d wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x1f1af711 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f346028 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x1f36b216 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f406034 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f496a41 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f586cfd xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0x1f70c811 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0x1f79b2fe get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f86eb5e rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x1f949b0a sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fa59832 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x1fca1e9e pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1fcd7e9f init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1fd7358c ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1fdc434e dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0x1fe6bdc0 fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fe98b21 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x20168e45 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20400b1a PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20509b3f reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2051dd27 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x2062accd clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2064573b xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x209453b0 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a2e6f4 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0x20b7507d dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x20b91449 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x20cc3a69 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x20e4ee3f sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x20eb459b tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x210aa9ac vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x210cba24 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x210e29a7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2117b3da transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2119f6cf blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x21269a9f devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2130e576 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x21319f86 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x2136dc50 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x213cb09e rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x213ecd59 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x2159c27a ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x2188d472 put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x218b9d67 __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0x21a4e175 nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21ae3ddc udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0x21c290f7 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d565a0 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x21da0eaa ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x21f4aaaf pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +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 0x2222d3af serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2232be85 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x22365e0f iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x223db758 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x22427575 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x2248c6a3 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2259b3d9 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x225b5301 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x225feeb4 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x226d2a2b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x22904c6e crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x22932f37 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22a22e5f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x22a7472a battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22bd36c5 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x22c5ec0b perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22e00287 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x22e127a6 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x22e3d117 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x230a11f7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2345297b of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234ee443 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x2352867d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x235df72f perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x238477b0 dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23865a43 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x238c3063 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x23947535 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a195a7 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x23abe57f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x23bf6b2f usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c81ea0 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x23d0b47c led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x23e50cfd __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x23e6f3d5 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x23e9dddc usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x23f51b41 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x23f6fe23 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x23fa2c73 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2400853e genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x2424a41e led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2447396e cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2448386f of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x2458fc09 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0x246181aa validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246f09a8 nvdimm_has_cache +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 0x248dc0fd rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24bcccd7 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x24c5f8ca skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e04076 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x24e84cd3 fb_bl_default_curve +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 0x25009ecb devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x2503447c netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0x250ed361 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x252aed03 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2530c3d6 udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x2536d474 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25436638 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x257e3247 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x257ee401 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0x258284dd serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x258ada6c nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x25904c59 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x25983b8f usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x259c6932 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0x25a826db ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x25a871cd dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x25af26b4 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x25b1b889 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25d33a75 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x25f04eb4 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x25fa631c __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x260a5019 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x261eb766 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x262b0f4b edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x262db7a6 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x2638a629 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x265173f0 serial8250_update_uartclk +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2652d5e5 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x265567b6 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2656fa30 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2676236f housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x26860e16 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x26a4da39 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26adbc4e iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x26baf7cd rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x26c32801 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x26c7767d ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cb343e mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x26e2fd95 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27313101 pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x27320de4 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x27445a0b stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x275e3981 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x2766e722 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x27682854 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x277e7f74 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x27826150 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x27827750 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2789a72e pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x278dcf50 xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x279a3b4d ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x27a850fe netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x27aaf49b spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x27c7dfb4 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x27cac6f2 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e20d34 inode_dax +EXPORT_SYMBOL_GPL vmlinux 0x27ed5be7 devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x27ee2624 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0x27efc136 xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x27f4118e device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28097df5 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x28299978 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x282d471f crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x284fa034 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286acd2a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x288bf9b9 dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0x2892e750 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x289a3a39 device_property_read_u16_array +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 0x28b5e4e8 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x28befbf8 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x28c21737 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x28c4f231 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x28d73c12 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x28d8b4b3 pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x28deb4df of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x28e80aa0 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x28f37b41 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x28fe9c2d platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x29137062 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x29327a07 crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x2938b851 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x294db4aa crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x295215eb irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x2956e1e2 serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x295f897e tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x295ff522 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x2964b141 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x2975d7ad nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0x297e4c83 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x298dbfe8 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x299149b0 __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x299185c1 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x29954141 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0x2997ff3e __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x29a8bbfd debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x29a9dc06 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x29d23f6c trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x29d3ecc4 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29d83df9 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x29db3cd0 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x29e0f957 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f349ec ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2a0d7b5f of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2a105f4e power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x2a1d7719 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2a2c1e5c mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a2c49cf fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0x2a3202cb __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a5df1dc nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a72a66d fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2aa07f35 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2aa41b98 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab7eebc pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x2ac3e7e0 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x2aca6bb8 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x2adb1504 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2b087305 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x2b095cdb kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b0f9d68 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b13ca45 md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x2b31c062 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6c048e wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7030fe dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +EXPORT_SYMBOL_GPL vmlinux 0x2b8d1cf3 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x2b938a3e __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b960b66 qman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x2b966e2d rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2b99708a devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2b9997fb atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2bac4d2b scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x2bb4cee5 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x2bbdcba0 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0x2bcbeea1 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x2bcf2c4d call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x2bd109a5 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be26a7d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2bf03c1d __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x2c0c0335 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2c0cdbf8 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c18d1ec tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c295e1b uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x2c2b189f dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c3991a7 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x2c3a70e6 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c651779 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c68254f dma_resv_get_singleton +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 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca12932 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x2ca494c7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x2caa87e0 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0x2cae01ea mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x2cb0559d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2ccd441d pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2ceddf93 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0x2cf944e0 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x2cfbc0a2 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x2cfcf96e usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d20046e led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x2d29c34b thermal_zone_get_offset +EXPORT_SYMBOL_GPL vmlinux 0x2d2c902f perf_trace_buf_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2d2dd36f kobj_ns_grab_current +EXPORT_SYMBOL_GPL vmlinux 0x2d41b2f8 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d43f39b of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x2d44e82d pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x2d518a2b __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x2d59e8b6 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d75432b stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d79e3b7 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x2d801159 pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0x2da63ea3 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x2da96a33 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2db7748d fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x2dd8715b mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2ddf8628 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x2deb8729 skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x2df33edf iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2dfe9a1b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e0fd583 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x2e159896 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2ee903 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x2e4685b6 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2e552526 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x2e5dfd56 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e71f635 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2e7307f2 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x2e886544 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e8b9e79 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x2e99d645 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x2e99ef70 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec159ed irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ed13f50 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2edb40cb iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x2ee332ab crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2eec6e1c acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x2ef0f9f9 blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x2f03bc76 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2f07a3ed regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f1e2250 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f25b4a7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2f2b8367 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3408a8 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x2f34d633 mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x2f3cb3ed pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2f410ee6 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2f45bb4b edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0x2f47b970 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f662494 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0x2f6a05bf crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0x2f819fcc __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x2fa08a11 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fc7a136 irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0x2fdf91be devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2fe11374 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x2ffbde90 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0x3006d1f7 dev_pm_domain_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x30187b4c devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x3018ba14 acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x30344b94 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x3044a9c2 fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3067edc3 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x3075d25b tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0x30a62fc4 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x30b51525 __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x30b5281f xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x30bdaecf __put_net +EXPORT_SYMBOL_GPL vmlinux 0x30bf87fe clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0x30d1f14e dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x30d9285a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30e60a08 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x30ed6130 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x30fb4d7d fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31170174 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x3121aa66 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3121c7e0 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313a11be mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3148c076 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0x3157939b devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x315bec92 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x3162b3b2 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x31693daa alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x316cbcf8 ata_acpi_stm +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 0x3189fbe3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3192d768 cpufreq_remove_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31b6c41c devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x31c0ec2e ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x31c12ee2 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x31c4550f tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31ce484f fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x31ce4f86 i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d8b702 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x31da9e4b pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31eb7380 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x31ef8162 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x3226c7e4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x324a8b4b ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x32607239 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL vmlinux 0x3261d38d fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3268f625 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x3269776b platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x3279cbb9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3286e6e9 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x32a6afb6 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32aefd61 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x32afa144 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c078c9 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c7eeb4 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x32cecd75 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x32ddfae9 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e319d7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x32f4831b finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x32f960f9 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3303c754 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3307abb8 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x3309ba82 bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x33254e25 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3330d221 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3334ffa2 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x33410e57 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x334acfe8 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3363872e efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3364d01f page_endio +EXPORT_SYMBOL_GPL vmlinux 0x338d7898 i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x339625e8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x339638f1 scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x339a8984 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x33a775fd cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x33b5b8d0 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x33b86b47 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0x33c43b85 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x33c618b9 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33c9f8b8 __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0x33e16925 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x33f479f5 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x340477e5 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x341a1d92 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x341ff8dd pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x3432e917 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x34407691 crypto_has_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3441b3f6 dev_pm_opp_register_set_opp_helper +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 0x34636bb9 pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x346639e9 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x346f9762 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x347ae2ea __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x348413b1 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x3488a593 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x348b11ee dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0x348f62de regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x349590c5 dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x349c33e2 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b3c441 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b8b755 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x34be30f3 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x34cf74e6 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x34e4bf70 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x34fe88b3 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0x34fea373 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x34ffa617 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352c56f0 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x352fad75 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x3533aa21 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x35427b5c ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x354c7f11 eventfd_ctx_fileget +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 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x357a8c8c pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x357ab976 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x357d7606 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3586febe devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359ed25b wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0x359f2ee4 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35b6fa69 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x35b824d5 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35dc297d crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x35f92407 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x361cb96c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x361d2dad invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3622a000 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362b653f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x362b9bd3 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x362e2fbf fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x363326ed pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x364a6f0c phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x36517745 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x3666d674 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x36756bd2 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x367adaf8 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x368ec588 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a10d04 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0x36a9b849 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x36a9ddf8 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b77646 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x36cbd0c7 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x36d4f106 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x36d63776 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36dd2577 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x36e569dd bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x36f7e56c rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x3708f1a8 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0x370d595d dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x3710f19c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x371e7abd spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x374704b0 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x37599ba3 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x375f6916 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x376e4a1b extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3772e16c devm_hwrng_register +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 0x378023c9 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x378adfb7 zynqmp_pm_sd_dll_reset +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x37a035a5 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c75809 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x37c76b93 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x37cbabc7 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x37cc03d6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x37e6fd62 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3805a3cc clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x380c8293 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x38196e78 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x381fb597 strp_init +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38271352 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x3845de02 skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x3861e3b7 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3863ae80 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38783ab9 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x387da543 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x3889afe5 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x3891496a serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a4bea6 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38b30130 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x38b64d02 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38cb8292 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x38d13ea7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ecff9f fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x38ed8a5c fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x38fcc738 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3913630f smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x39291dbc regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x394c022e nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0x3967c308 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x397c012f platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x398c794a exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x399f7856 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x39a562b8 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39a889b2 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39c0cdf4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x39c1264b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c60a48 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39d184b1 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x39db4a04 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x39dd4a88 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39ec0123 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x39ffe839 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a2bad55 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x3a4347ed phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a456670 fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x3a47b6f6 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3a4b6174 rtnl_af_unregister +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 0x3a5edcb4 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x3a606d12 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3a6694a5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3a67c720 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x3a6b708c regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a85c942 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa41008 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3aa7a3a1 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x3ab7d187 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0x3ab804ab kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x3ab95551 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acb880f dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad1607e __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x3ad81a64 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ad8ba52 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3ad9a5ce bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x3ae1901e tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x3aec0fcb crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3afcdc6f ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x3afe4db5 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x3b1311d5 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x3b22c04b fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x3b336e7a crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b560ceb register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3b5fdcdc md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b616fa1 of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x3b6217b8 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b8142b6 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3b8bd4e7 fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0x3b9fe948 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bb7cedd platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0x3bbdc4d3 scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x3bccb747 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x3bcd21b4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3bd3618b mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3be91906 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bff34f7 tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0x3bffe10a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x3c0a11f8 gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c0af0fa crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3c0dbc0e xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c194ff0 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c48b647 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c7ea4fc dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x3c7ec0f9 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3cae5719 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x3cb2e5ab dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x3cb429f6 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3cc57fe5 regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0x3ccd8b46 zynqmp_pm_clock_getparent +EXPORT_SYMBOL_GPL vmlinux 0x3ccf3a4f led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd17d9d efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x3cd1b510 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x3cd22d10 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x3ce4e07e blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ceb07b4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x3cee4df6 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x3d049d78 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d0e918d i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3d1e4dcb file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x3d240438 dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x3d243a08 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3d2660b8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b979a genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x3d49644c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d5a3b9c pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x3d6012db kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x3d843632 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d8fa228 spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3d9cb119 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x3da7f8b4 scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dd6790d crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0x3ddcd7ca nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e11932e serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e312794 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e326c66 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3e4f4108 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0x3e575954 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x3e65c62a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e74f60b kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0x3e7a898f device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3e8507b1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3ea419a3 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea7e963 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3eacb2e5 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3ebbda2a rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef60c99 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x3ef9c397 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x3f0adc04 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x3f2577f1 tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x3f260958 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3f270a77 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x3f439ced regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f5242ba pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x3f533ddc find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x3f55a9b1 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0x3f5d7eb4 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f8c13b1 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3f90e8b3 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x3fa8662a ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0x3fa93a72 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb66e52 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x3fc5660d edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0x3fcdf8a9 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x3fcee73a serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x3fd385b8 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x3fd3c4f2 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe49cae gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x3fe49f65 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe97494 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff77cd4 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400cc6b2 gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x402431b2 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0x4024fde3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x4025b086 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x405fb8a7 i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x40638562 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4064e9af msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x40656dae of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406aa3ea device_move +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 0x408398d3 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a6a483 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40f056a1 vcpu_load +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 0x4104405e devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4107602a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x41160c10 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x411893ab pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x411983b3 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x41253db9 trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x41268b87 page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x412e06af fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x415719ff unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x415ced86 arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x419021ca edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41931abc __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x419f83da mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x41a37e72 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x41aab6c4 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c0c031 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x41c82a7a iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x41cdd954 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41e31e1b gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x41ed0551 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f042fd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x41f19437 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x41fd8f1f replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4210811e nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x4214d981 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4220d39f tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x422b6888 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0x423ddbd6 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x4272254b fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x427c05ec regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x428030ae sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x428031d7 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4289839d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4297d34b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x42a1150e tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x42a43972 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x42b6d3b7 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42cb3011 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x42cdcd8f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x4317a728 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x431fbb0e devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4329a6ab da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x433f958e acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x434a28f2 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x434f6f32 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x4358c951 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x435af040 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x4362b4e2 irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x4375870b devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4375ade0 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x438068a0 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x4381c416 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4383b29d xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x438a86a0 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x43a5850e blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43c172ce mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x43c2b49a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x43d17ad5 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x43d48e35 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd71 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x43e844f7 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x43e99ee4 regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0x43f4bfc0 fsl_mc_object_free +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 0x44170596 perf_aux_output_begin +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 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4464e0ab fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x4471b43e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x447f4471 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4482066e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448e7c98 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x44924ac1 blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x4494bdee crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x449e8a9b get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44b70b47 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bd818a regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x44ce4b56 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d0efd1 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x44d1161b kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x44d8472f nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44fa230d msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45115327 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4511b082 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x45314c09 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x454b84c8 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x4553b618 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455ab5bc divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x45645772 dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x456987fc ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4579ff9f usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0x45800bf0 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0x4584c8e9 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x45959eb3 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45ab149c usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x45c6ba63 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x45cf467f pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x45d3a1ac device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x45d63ca8 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x45deb8ee usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x45f038bb devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460ca2c4 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x460e4f21 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x46141869 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4634e33c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x46545d01 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x465bb205 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x46766e68 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x4683dbf3 phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x4684dc5b clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468de349 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x46901b10 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x46a14092 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46b0059e sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x46be6552 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46c64458 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x46d541b0 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x46d78ab9 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46fc03ac of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x4710d858 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4712b9ca devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x4722816c vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4725f399 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x472ea30e dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x474a002f xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4750fb48 rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x475eb2a4 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476d1356 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x476e3134 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x476e511f of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x47830408 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e74d6 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x479ef802 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a41101 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b6a2d5 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d831f2 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x47d8b5c4 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x47db8960 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47ffb99c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x4809ad92 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x480ee45a device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4822d138 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x482f62e1 kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x48333145 dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x4838a56f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x48424cf6 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x484ad9e0 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x485bded7 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48688af6 i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x486f9148 __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x487ce02f ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x487e6028 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4885afff xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x48877c35 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x488f9e10 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4891d7fb dm_put +EXPORT_SYMBOL_GPL vmlinux 0x48a2b06f devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48a9934c ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48ded158 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x49072f4e dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x490d065e ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x490ecb8f devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4917af18 device_for_each_child +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 0x494913b0 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x495158f0 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x49593e22 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x49730ce0 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x497f6e1e ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x498ae363 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x498d1bfb ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a01a6a switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x49b853a0 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0x49c9b77f ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d66c80 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea931c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x49ef23a5 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x49f2239e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x49f98510 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x49fa0368 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4a06ea7f dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x4a10deff acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a1cbd5f __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x4a2c291e irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4a2d7ffd pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x4a2da796 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x4a34d162 __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4384d0 vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x4a9013ac blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x4aa863a8 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x4aaa275c fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0x4aaa939f tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x4ac6dfa3 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x4ac76ee1 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4ac7acb7 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0x4acdec91 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ad314b7 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x4ae16d91 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x4ae20df4 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x4aed9940 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x4af3e4db phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x4af938af posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x4afaebcf bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x4b024ed4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x4b07f337 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x4b09adc9 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0x4b20e011 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x4b2f2c44 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4b31c850 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x4b327e78 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4b32a9d7 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0x4b50d3b2 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b60d996 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x4b721a20 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4b95a58f tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0x4bafbee7 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x4bb1f050 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x4bc69b30 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bd80838 device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4be10862 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x4be6a966 blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x4bebb77e __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c023d33 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4c02dcc4 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x4c04deb5 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4c0bf855 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x4c0fa999 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4c272170 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4c2a3910 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c2e4970 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c41ec91 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x4c4e743e platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c7471c6 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4c7a8752 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4c80f690 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x4c828d32 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x4c86489d sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c89d1ce ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c90caa7 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4ca05896 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x4ca6f4ad of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb310a0 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cd49fee __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4cdb0f16 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4cdb978f tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x4cdf18ce input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x4ce3ae33 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1923bb devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x4d26b884 set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d30683c debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d639ae3 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4d69e42c rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d88436c thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x4d885656 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4d9a2bbd xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x4da53d3e spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4daa84b2 gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4dae16e4 i2c_put_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x4dbd1ce9 tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0x4dc260e1 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0x4dcb2f8d fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x4dcfcfed genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4dd9d14d cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dee0bc3 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x4dfe9b0b xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e0b6b76 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x4e1632e9 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e1f3e77 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x4e2e00a7 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e45b7b9 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53de65 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e683293 devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4ea0d389 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x4ea95e77 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb118ca crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb93aa3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4ec380dc fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4ecbcf22 pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed86972 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x4ee8facd crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef758fa hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f0c4040 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f2fa09f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4f538089 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4f5ba005 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x4f5d2f57 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x4f605859 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f726b11 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f7ac96b blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f9f90f7 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4fa3a70d xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4faa3aab crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x4fc2ac03 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4fd1321d crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x4fd92625 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4fdbccf3 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fec7f1d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4ff0f33c ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x5004c844 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5005a4ee __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x500a55a2 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500d7321 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x50108193 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x50196575 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502879db clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x503bda27 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x504750e8 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x50499db2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50706cd3 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0x5090a325 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b99026 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e10d1d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x50e5ab5e usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f20acf __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x50f70e40 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd49ae clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x50ff729a ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x510a912e get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x511fb060 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x51219e43 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x5127748e tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x5141c6c6 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0x5151667d ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x517e592a dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x51878601 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51bca51d iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x51bf963b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51c10242 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x51cff90e mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d7b472 bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x51eeb3bc phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x5226a3ee unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x52272fa8 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x5229a733 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x52433d18 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5243d119 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x5252d830 iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x52540a6e pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x525d0aa3 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x52711b23 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x527f677e regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x52a1c898 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x52b10b9f device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b26925 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c44d98 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d1d250 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dd541b rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x52f2c9f8 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x52f79e99 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53098cd8 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x531ea769 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x533a88d1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x534716fb xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x535c8194 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0x535cd953 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0x53639db6 devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x5367e971 relay_close +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 0x539b7b4b nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53c1bfeb wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x53c8bc05 sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x53cf5391 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53e20c2d phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0x53e48acd call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x53e89ffe edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x53f285a6 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x53fa51b9 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541ee7fc of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542e668b ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5435f93c devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5436920b devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x5477de47 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x54787ae8 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x548471eb edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x54875f07 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x54877d30 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5495fa7a regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54dc1f83 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x54e1d415 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x54e4cfa4 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5503e96c crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x550aecfe xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55139bb1 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55174d9a icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0x551c31b6 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x552f3f98 dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x55349d68 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x553d869e ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5548eaef cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x5550fde2 fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0x555b6321 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x556d88ea phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55745d36 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557b841d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5589f2db crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x558aa01f cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0x5596e7ba fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x55a0465e regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x55a7a786 ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0x55af0cc5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x55ba5652 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x55ba9ae2 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55d01bbe gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x55e184a5 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x55e3b33f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f1fc67 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x55f69da1 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5615940a blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562a97fe fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5645ee03 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x5652827a iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x5674844e acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x5674be18 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x5690e06e net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x56a6e015 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x56ab73f5 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x56ad02c1 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x56b0fdfc fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x56b82f70 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f26129 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x56f3f390 bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x570189c2 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x571f21fe crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x573de26f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x5742eb78 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x5751a9ea pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x57557e1a kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x575852be edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x57662993 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x57664a61 phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x5775ef4f pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x577ab992 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x577f0a68 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x57811d30 dpcon_reset +EXPORT_SYMBOL_GPL vmlinux 0x57814d2e generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x578a6495 of_dma_xlate_by_chan_id +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 0x57afd156 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x57b87ee3 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x57bd82f2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x57c7b00e regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d618f7 phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0x57daaa80 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x57e52a84 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x57f0482e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x57f9c3cc peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0x580ef082 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x58169b09 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x581909de vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x58280041 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x582f404f thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x58315632 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58351e94 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x58468fbf fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x58575650 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x585b1fa4 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x5862df41 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x586aa682 gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5875f466 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x587c257f noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x58872143 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x588f0be5 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x589f8e8c __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x58a7edd4 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x58a7f391 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x58b153dd blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x58ccbe99 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x58d20c28 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x58d2776d dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x58d87b73 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e734ae shake_page +EXPORT_SYMBOL_GPL vmlinux 0x58f8b6ec i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x58fa6dcb dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0x59013dcf __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x5902d811 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x5913ebdd usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x59179119 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x591d179b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x591f1995 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x5947b0cd pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x59482bcc validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0x594c64a4 fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x594d11d3 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x59623795 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x596f31e2 fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59c293e9 iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59ce3c3f icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f665af cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x5a0766f5 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a125ce7 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1b8f8b gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a2ba353 fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0x5a3ed221 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a42f88f __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a49f6d1 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5a58b6be switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x5a5ea7f8 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x5a63ae29 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5a681240 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x5a68471f pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a6f373a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a90dd4c nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x5a90f4c6 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5aa780cc aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac06de5 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5adc73a4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x5ae4bfda iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5aecef44 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x5aee8957 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b02a0b6 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x5b085c23 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x5b13ae45 __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0x5b179050 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b20d26d fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b39c930 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x5b3a5c19 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5b5dad60 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b746ab6 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x5b76f1fd file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5b95524a sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5b998bca nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bad1733 pm_generic_suspend_late +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 0x5bec6231 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5bfacf7d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c160e74 dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c179389 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x5c1afe1f devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x5c20521e regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63c46e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5c7dc2e9 devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c920ee8 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x5c9625ef dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x5c98e062 bpf_offload_dev_match +EXPORT_SYMBOL_GPL vmlinux 0x5c9a2c73 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x5c9f1579 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5ca45faa usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb60dfc usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5cc40b84 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x5cd80eee srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5cdcdb73 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x5cde4415 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5ce3b753 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5cf58946 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5d0413c4 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5d06618e balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5d06dbb9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5d0ca1db nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0x5d128424 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d17291a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d1a45dd pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d1b2f80 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x5d2859e3 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d2e3f6b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d3b6bff bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x5d585703 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x5d630f03 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5d6d2235 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x5d79487d ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d861a85 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x5d879802 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5d8b7556 bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x5d8e39cf dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x5d8fc47a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d93d9ae ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0x5d98ea56 genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da5d177 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dc60bc7 iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5dcf0ab5 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x5dd1d841 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5defe571 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5dfa8829 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x5dfc8b1a mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e32e906 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5e352f46 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x5e4fa7d2 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x5e505c82 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e58694e xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x5e5c3e8d __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5e62ea78 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x5e62fea6 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5e69681e blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e7ab9b3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x5e83e8e3 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e8eaaf5 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5ea08a71 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x5ea4f26c set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x5ea59402 nvdimm_clear_poison +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 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5ef1eacc fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5ef59105 skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5f032eec vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x5f0f4c1d fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x5f14ce60 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5f17ca27 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f4276fd __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x5f45e4d4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f73d3aa acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0x5f7434e6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5f75ed15 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5f7c18d6 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x5f7f2ec9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5f81458f __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f9b2a05 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5f9b8ef4 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fb6c87f gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fbfb408 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x5fd1373a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe21b51 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x60000010 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600b508f devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x6015d0b7 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x601adbbe pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x602920a3 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x603671a1 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x603c5147 fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x603d0157 rtnl_link_unregister +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 0x606a6f2e sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606dd19a irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608b0953 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609a3557 disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x60a0aca2 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60aa9313 tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x60aaf42e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x60adfc8a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60aea696 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x60c4e332 tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x60d3ad3e gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x60d78511 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x60dde911 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x60e715a0 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x60ebb70e bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60ec5574 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x60ef748c sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x60f09957 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x611640b6 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x6119cc0f devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x611cfa85 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x6129f34d __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0x6129fb93 sfp_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x612bfd89 errno_to_blk_status +EXPORT_SYMBOL_GPL vmlinux 0x612de4e2 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61444e80 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x615abe94 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +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 0x619c4629 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0x619d2eca acpi_gpio_get_irq_resource +EXPORT_SYMBOL_GPL vmlinux 0x61a170df led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x61ad7530 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61de140c crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x61de6398 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x6209f84c usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x621ff9ea nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x6245915a __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6251b5b3 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x629bcd99 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0x629cc53c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x62ba4ff6 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c83531 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x62d022d9 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x62de3fcd subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x63106109 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x6310e2e6 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x63121266 dev_attr_link_power_management_policy +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 0x6327987d clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x63282e63 inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0x633267ea thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x633c712f skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x634b0870 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x63552b34 i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x637a6636 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x637d024b device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6380c0df pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x63860da7 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x639e560d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x63aa98d8 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x63ab374c iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x63ad1d38 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x63c04ac9 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c1306e acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x63c45bd1 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x63c57ea2 ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x63caf508 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x63d31d11 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63ec0dc6 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x6405aabb pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x6409666c shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x642a85eb xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x642deeb6 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x643cc408 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x646853d1 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x6473a334 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x6474dac3 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64763ddc shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x647d3666 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x649175af crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a54827 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x64c4de63 ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x64c5a8bd metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e53dd2 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x64f0990b fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64f85c9e kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x6507b558 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x6509699d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x6511e5eb find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x65131c14 uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x652d0f06 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x65392c7a led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x653ed5ad fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x653f1089 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x654d8ef7 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x65516e21 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x655d93bb msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0x657a3f66 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x657c30c1 crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x65acdd42 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65b37dae blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0x65c62492 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cd945f dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x65da3248 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65fd6e7c ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x65ff44a2 skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66233aea is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6635ff1c acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x6649ef86 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x664d78d3 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666aeac8 clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x666dbd4e wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x6677b1b0 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x66798b85 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x667c65e5 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x6682436d spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668ba2ab pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x669c0229 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x669c134c uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x669e07ef blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0x66ab7b52 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66bd9dd7 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x66cbcb14 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66d079b9 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66df721b rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66e2df2e em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x670272bc trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0x670dc6f2 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x6727e559 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x67585d38 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x6761c06a of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x6773ee39 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x678e86b5 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b638bc ethnl_cable_test_pulse +EXPORT_SYMBOL_GPL vmlinux 0x67c048f1 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x67c9a341 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67dd0acc vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x67e8213b topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x67f84b9f phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x67fb98b8 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x6803eb0a pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6808cd40 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x6817b103 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x6828a748 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6829cbee mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x682dec34 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6832bed8 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x68353656 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x683bbf56 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x6841a8be sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x68447bc7 devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x6850a0d6 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x687f7956 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0x6880063a pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0x6889ffb3 sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x689d683c iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0x68c100a2 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x68ca1b9e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x68da2dfb usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x68e96145 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x69027c67 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x69101ae4 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x69184ede genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x69396eb3 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x694e4467 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x6958b559 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x6961f166 sysfs_create_mount_point +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 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697f5dd9 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x699ec4a6 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x69a2ac6d usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x69afcc88 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x69c2a3e5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69e855a8 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a48883d phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a501ab1 inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6a51a316 __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6a52b2eb uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6a69b47d fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x6a69f62f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x6a75c254 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6aa07e85 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aa983bd pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x6aac11a2 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0x6aac8dc9 __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ab7d8c6 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6ae8b70e dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x6aed4d11 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b18f916 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1ccf5c usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x6b1e20dd acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b429153 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b6bcbca skcipher_walk_async +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 0x6b9204ab kthread_func +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6baca976 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bce27f1 genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd2b1fb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6bd6cb55 virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x6bda952f blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6bf9868e pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x6c055bb9 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x6c1ba47a devm_of_pwm_get +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 0x6c40c556 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x6c474354 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c552492 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c5c0f36 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0x6c5d518e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x6c6119c9 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c76108c crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x6c79c0d7 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cb03190 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6cbc06e8 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cc0d615 __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x6cd85e00 meson_sm_get +EXPORT_SYMBOL_GPL vmlinux 0x6cded231 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6ce659ce serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0x6ce9cacd reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x6cfa2f20 regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6d034ac8 simple_attr_read +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 0x6d12b8cd __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6d17ba7e bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d23cc21 device_set_node +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3e6c07 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d4b94be show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x6d4e9cca ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d79e21e put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d82ddda scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6d9651f2 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x6db1e870 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x6db79283 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbad3e8 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd5b808 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6dd60825 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x6ddddcc0 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6dea687f debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0ae173 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x6e32dc31 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e3371ee metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e38f8d1 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e45aa46 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0x6e488c30 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e546c39 synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0x6e553d76 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x6e58e592 tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5e71f4 __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x6e64bef9 raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x6e7829ca debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e857d1e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e932215 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e980bb9 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6eb51e41 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6ebb8ebe pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ec0936d of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x6ee5a3f4 virtqueue_kick_prepare +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 0x6ef75d69 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x6f03ac9c device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f1b18af usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6f1c7dc1 genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x6f1ff159 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f4c9423 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6f4e19cc of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x6f5e2bab regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x6f66e07c scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6f1cf3 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8493b5 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fa22b1b __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6fa4e19c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6fa68cc5 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x6facaaef iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x6fc12503 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x6fc3ca19 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fd1482e bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x6fe6f345 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6febbb8d __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x700c5999 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x70248979 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7028eefe of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x702b1230 devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x70562010 vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0x705869c1 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0x706918f8 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x70692c51 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x70932102 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0x709cc7e2 ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x709f4acf of_genpd_remove_last +EXPORT_SYMBOL_GPL vmlinux 0x70a52218 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x70af02b6 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x70bb2dfe iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x70c220a2 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x70c2c7ea pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c5e82b ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x70c5ff80 irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d58ab8 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x70d8cd73 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x70f5a052 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x70fc8273 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x70fcbe5b dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x70fdc0df __class_create +EXPORT_SYMBOL_GPL vmlinux 0x71065e7b wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x71361463 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7145d65a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x714f0132 dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x71763a3d ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7184422b mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x71865ec8 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x718cd0a4 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +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 0x71b79065 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c7b85a gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71da63a3 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x71e1081e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x71f33a49 fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x71fc2b66 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7220a265 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7233024a ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x724dcf8b xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x725e3ebd debugfs_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 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279ffa1 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x727f557c devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x7286a843 iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x728887d2 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x728f068e usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x72a4dd8b i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x72bfb001 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x72c1987d devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x72cd06a1 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72e7d628 dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x7306569b spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7318ea76 copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x732dedf6 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x733237ca rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x73505f6c clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7362bf24 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x736623b0 pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x7381287f trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x738567bb rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x73897338 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x739a8f82 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a83cc0 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x73abcf75 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73e20cc9 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x73e41b02 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x73f4e5f1 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x74000572 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x74006b85 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7407daed dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x7414d0c0 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x7422c4ef bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0x74397719 cookie_tcp_reqsk_alloc +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 0x74592c1b crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0x74687ad9 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7481959f PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x7488cbcc tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74a27cc9 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x74aaae8d tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bc356d cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x74c5886b device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74cf65fc rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74e7dc6f ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x74ec7ae2 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x74edd56a __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x74ef60f1 icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0x74f3b697 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x74fd5dc9 akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752dabd7 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x75411fb4 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x7550019e __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x755697d1 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7582efe2 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x7584af04 dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x758a43fe k3_ringacc_get_ring_irq_num +EXPORT_SYMBOL_GPL vmlinux 0x758dce16 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x75dd4ebe of_overlay_remove +EXPORT_SYMBOL_GPL vmlinux 0x75e11332 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x75e51945 __SCK__tp_func_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x75e9c735 pci_ats_disabled +EXPORT_SYMBOL_GPL vmlinux 0x75ec073a kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x75f144c0 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x75f33ded device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761d5927 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x762396d4 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x762d8d04 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7656be91 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7663be42 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x76687108 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x766c1a52 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0x766e7956 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x766ed371 mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x7673beee do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x76759b4c gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769452b4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76bad21c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x76bcaba9 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e3439c platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x76e63969 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76e8fdd7 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x770e2620 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x770fbf60 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77180269 __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x774af2ad sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775babd4 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x77691e9a dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c43ae4 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x77c9e15a skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e8c846 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x77fbad93 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7816c334 ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78318315 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x784523f3 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x7855a6c8 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7863ab07 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x7867e4e1 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x78746daf clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788a8992 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x7893975e bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x789f9d8b virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x78adb187 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0x78aeecc1 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0x78bca1b4 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x78d9dbac acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78f20186 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0x78f50753 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x78f7fc92 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x7905fccd skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x7920b5b9 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x79235e07 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7933657a ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x79345cb9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7934aa08 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x793f3fab rcuwait_wake_up +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 0x795d90a0 addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0x796a67b2 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x79879c0f dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79ac7e53 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x79b0849d fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x79bab692 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79beaede xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x79cafa98 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x79deb360 usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79eaa537 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x79ecd307 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f2d8a6 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x79f54ed9 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f81f81 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x7a0021c0 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x7a021158 usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0x7a17c76e mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0x7a1d7283 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x7a2d5637 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x7a5b76fe iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0x7a619ec3 devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0x7a6a428f class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a6d0431 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a8a0df4 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a949ef7 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9c86e4 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7a9d37fd __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7aa9f7e4 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7aab66a3 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x7aac952e switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x7abee0aa public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac46420 cpuidle_get_driver +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 0x7ad5561c ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x7ae8286d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7aff0121 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7b002fbd fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7b11d84c rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b1952d3 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x7b2104ba ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7b2395bb blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b580c10 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b5e63ed debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b7aa6e4 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7b8017aa devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b90f1c6 xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7bac1001 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb3219f serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x7bbe836a dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7bc04e7c devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bc5f597 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x7bcb1465 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7bd47228 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x7bdf187d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x7be0e0cf debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x7bf7c23f open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0x7bf9301e ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7bfec5d8 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x7c0df9a1 nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7c133dbe acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2ce364 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c5b751a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7c5dcb6a strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c693393 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x7c6c6efc usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x7c6e55c4 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7c8695de usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7c8b6106 clk_hw_unregister_composite +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 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc59b03 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ccf206a acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x7cd246d6 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdca1ba sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x7ce028c8 vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x7ce067f2 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7ce54c16 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf43669 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d00f542 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x7d010461 dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x7d090a51 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d11a937 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d31e85f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d489856 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7d49964c trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7d562c05 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5fb289 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x7d61f03d dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x7d6c0adf perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x7d6e371f dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7d769b24 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7d8423be power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7d92c14f syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7d9c586c efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x7da41e1c blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x7dafdc51 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7dc1c333 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x7dd1040c blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7deac07d cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7df23e16 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7df4b5d6 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x7df4f1bb of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x7dfc6c0c usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x7e13743d xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x7e13f7e5 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7e390ecf icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x7e3b3ad4 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7e3b4a1c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e465095 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x7e4664bd regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7e4e58e2 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x7e507b7f crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e74ac03 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x7e7926c0 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e9155cd bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7e975c0a kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x7e980710 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x7e9d84bf alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7ea66bdd page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eae2548 vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb1cc0d spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7ebbb684 fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x7edf51bb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7ef600f9 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7ef632be scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x7ef69ca9 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x7efdefc9 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f1f78bd blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x7f1fbfb7 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x7f22d119 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7f25f70b da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f2f30fb software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7f311b3e crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7f318002 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7f335e85 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f37a882 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x7f3d3b5c gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x7f4dfa5e elv_rqhash_del +EXPORT_SYMBOL_GPL vmlinux 0x7f5603fe securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x7f57a682 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f705f50 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x7f7a63b6 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f81bde5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f854c89 dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0x7f86150c serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x7f8c149d mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x7f964b23 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x7f97e1bc of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x7f99777a bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x7f9ac898 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7f9cd6a2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7fa306fe gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fac27a3 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x7fb1ddec gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x7fc0d273 serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x7fdb0e04 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x7fdd9e2a ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x7fddc411 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x7fe52e0d alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ffb776c xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x7ffe1b18 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801acd58 imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x8024f8f1 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x80382ba0 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x803e220e fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x805234c1 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x805922c5 acpi_subsys_poweroff +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 0x80915101 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x809f1092 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x80a21cfc cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80be2e0d pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d10c75 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e094b0 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x8112d94d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x811cd11f filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0x811d6a23 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x81369148 sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x813a22b1 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x81417ebc kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x814fbce3 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8155c7b5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x815f1515 devm_spi_register_controller +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 0x8183892c crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x8185ab5b dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8196fd2d kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81b4a44e cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x81b6c66c posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81bfac44 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x81c18821 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x81c6c3bf topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x81c771ae device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81e1757a gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f28a2c nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x82165d6e dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x8216dfc2 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x821ac97f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8234b641 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0x82398abd sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x823a3f47 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x82443272 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x824ceab8 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x824e6a5b hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x8259f871 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x826c78ff __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x82796a8c fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x828ff603 skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x829709f9 debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x829a3678 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x82a752db dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x82a7a0ce icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x82a7cca9 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b50e4f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x82b717c2 crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x82b90238 vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82c86228 kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x82d2a7d2 md_start +EXPORT_SYMBOL_GPL vmlinux 0x82d2d07b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x82d308c7 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x82d493c2 blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82df8104 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x82e1cd33 simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0x82e8e39f device_driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x82eb2b2a pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x83382d25 blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8346fb36 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x83513092 tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x835e32dc of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x835f3c37 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0x835f69ac iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0x8379d0e6 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x837df9af dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x8380563c devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x838d821a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x83bfd551 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x83cc3738 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x83d47f69 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x83e97610 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x84018892 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x84103f72 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8423457f sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x842fa944 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x8432b757 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x843e81b1 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x84450d02 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845a1161 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8463fbcf __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x84747030 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x847afcae dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0x84842ae3 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0x84845bfe usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8492af04 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8493f44f netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x849d280c dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84ac1cf3 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x84af78ab register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x84b08716 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x84b4791c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x84b9eba0 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0x84c6ddea ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x84d37580 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x84dda162 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0x84e3f36a pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f06128 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x84f72614 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x84f896ef netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x84fe0d31 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x85030a55 devm_pm_opp_set_supported_hw +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 0x8532db70 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x85425d1d pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x855a3020 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8574879b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85951c0b __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85aa218f tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x85adb1f6 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x85ba84aa rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85ca5fb1 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x85cfec00 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x85e55824 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x85ed1598 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x8601fc10 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8606c6e3 bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x860ee767 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x861098af dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x861c3ebb of_genpd_add_provider_onecell +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86248f55 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x862e48ae pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x86320024 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x8636388a dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x86539c21 folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x86549cc7 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865ea094 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x86615bf5 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866621d1 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x866982e0 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8675079b pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a3e460 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86bd37d1 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86c2915f clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86cb2b75 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x86d8b3dd dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x86fed490 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x870a5a16 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x870e187e get_device +EXPORT_SYMBOL_GPL vmlinux 0x871136bf blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8724c8cb devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87485eea ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x874eac5b sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x8763dc3c __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x876bd13a do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x8776d9e2 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x8777700a ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x877aac4c fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8783c10c mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87905ef4 devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x879703bf inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x8798490a __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x879ab7c5 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87b01f6f trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x87c6bfba class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x87d297eb of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x87e3b53c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x87e446cd led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x88021db0 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x880caaff pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x8824d499 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x8829293b mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x88484a9d devm_create_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x88823de4 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x8883da87 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888e466a devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x888ef7bc iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x889022b0 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x889eb5df extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88d12106 pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88e341ec __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x88f0b5ec fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x890d5cb3 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x890f4f97 __kprobe_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x890fa0fa btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x8917bb4e balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x891c2f3e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x891e1d16 tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892e6750 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x8932b682 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x8943c169 blk_queue_required_elevator_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 0x8955919a umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x895a9441 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x896aad2a proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0x896e6ff6 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x897d56ab device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x8987f805 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x8996a627 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x899b0a30 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89acb01c devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bb020b sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bddcba bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c3ca60 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89dc5cf8 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89e61fcc find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x89fa517c devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a0651c4 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x8a1e427e edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8a246378 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a32da2d iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8a38bcc1 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a431f7a __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x8a4432c5 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8a4522b0 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a51cb8c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a68f18c fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x8a69867c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a706baa dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x8a7f0f29 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a829976 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8abe35 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x8a97bba2 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8aa06353 gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0x8aa0f9b4 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8aa4c0cd dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x8aace318 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x8ab168db dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0x8ab25271 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abc1873 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x8ad61fd7 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x8af22e4c regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x8b06ea3c psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x8b0aef4c regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b196c8d usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x8b208304 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b22eb6f nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8b28d6f8 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8b3795e6 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0x8b4b6112 __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x8b50e094 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x8b606efb bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b706cbb nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b88281d cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8b8ddb8c dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8b90db03 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba26ae5 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bd17eb7 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x8be6b81d dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8bfc1cd4 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c080486 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1059e8 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x8c1e6856 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8c2440e3 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x8c3aa871 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8c3ffe86 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c41b1f5 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8c44ba4b ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c575e17 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8c5a68d0 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x8c6c7e2d __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c77c92d devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x8c826562 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8c889d40 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c8fd4f1 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8caf4988 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8cb472ae irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbaf31d usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8cc792fc tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x8cd4175f reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cff6ba6 skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0b9f34 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8d0d0742 fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3291ee irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d401611 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8d469dee xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x8d474b43 regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x8d50990c sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x8d5172af wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d653771 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x8d665ae2 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x8d6be2a6 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d92b1ee fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x8da00ff6 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x8dad9fdb imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8dbdcbea acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc5a116 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8dca5af1 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8de83fa8 thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x8debb369 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x8df607c1 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x8df77b91 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8dfaea74 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x8dfb154a __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x8e0d9697 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x8e155c8d of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e1d0901 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x8e1f8045 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x8e2aff6b serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x8e2e8120 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e323ccc ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8e335b43 crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e53a471 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x8e61feec pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x8e6456b3 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x8e6a82b3 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7cbc0c debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e831f51 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e96ffc8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8eab1dd6 firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0x8eab69ab regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ec1b78f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8ec7726e xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8ecda0ba ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x8ed11340 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x8ed4595e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8edb93d4 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f04573a udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f0ca915 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f0cebe5 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8f256491 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x8f2a5ba3 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x8f329946 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f32cd62 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x8f362e2c regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate +EXPORT_SYMBOL_GPL vmlinux 0x8f3c6a36 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8f3ef7ac fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8f6066fc bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x8f647d11 iommu_register_device_fault_handler +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 0x8fc16687 dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x8fc99f92 iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8fcc66e5 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x8fd8f8b2 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8fe26c43 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x90071611 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x9020488d mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x9025443e metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9027c66f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x904cf8dc of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x90511f15 __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0x905396e3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x90567f0e device_rename +EXPORT_SYMBOL_GPL vmlinux 0x905905d2 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x905f3bd0 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x90685aaa dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x906c453f __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9082a8e0 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x908b2e95 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x909218b7 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9098d0a2 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x90a04498 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x90a2a244 devm_clk_notifier_register +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 0x90b9ea0d __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x90bc7d26 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x90c02246 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x90c74b73 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d557b6 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90f28252 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x90fbfed8 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x91023e2b md_run +EXPORT_SYMBOL_GPL vmlinux 0x910bdf6b trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x912d5437 xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0x912dfb83 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x91384905 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x9151832e pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x915490f2 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x9154cc1f clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x917daaf5 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x917ffcce __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919916e6 ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x91999a90 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x919a6abb synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x919c614c power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x919dec4d kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x91a55c8b mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x91a9a024 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91b871af bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c71968 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d42fce swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0x91e1f76a amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91f2dac5 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x91fd9c4d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91fe160f pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9210caef clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x9211bb1c crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x921c9866 dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x9242e97d gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x924ae339 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9253e0a3 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x925c898e ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x92606f78 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x926811a3 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x927a567f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x92872dfc acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x928abfa7 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x92936685 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x929f12c7 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92c3ce0c acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x92cd923f vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x92ced560 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x92cfc81f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d9563a regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dc0b76 edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0x92e6daa9 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f79bdb mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x930654ad __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x931db0f2 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x93255b2b ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x932c8d7a linear_range_get_value_array +EXPORT_SYMBOL_GPL vmlinux 0x93374da9 serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x933f75e0 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9346292a con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x934a7122 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x936203a5 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9367f218 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x936bf008 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x93806ecd thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x93992700 sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x93aa5e22 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x93add720 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x93b730d0 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d0e96c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93e94da6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x93e95040 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f22576 nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x93f9bb76 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x93ffa26b clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x94280688 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x942d5ec1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943b0db2 tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0x943bf19e fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x945709e0 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946d4e4b perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x949859b6 pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a2af60 iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x94a3b5ef dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x94a7ac90 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x94bcf60f fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x94d67357 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950a5f92 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x952a2eb4 scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954ac456 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x954f5c99 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x95501e67 kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95619d61 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x9582d8ab icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958d2794 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958fe9c5 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x959fa7f0 iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0x95b4bbe1 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c8638a perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x95d3ff48 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x95dd9f3e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95e56745 tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95fa17b8 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96145b48 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962b2c80 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9632cebd list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x96341a78 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x963bd1ff nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x96401549 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0x9641e030 tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x9644f2e5 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x964fef2b devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x96527646 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x966aef52 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x96708c8f regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x96775b40 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96afbdd1 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0x96c19c82 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x96ddb087 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x96ec0782 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x96f715af scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x970cba34 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x972433d9 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9724afdf get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x97336fb3 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x97340be1 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x973849d4 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976548e5 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x97752983 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x97843a6d skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x9789c7ed follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x978def96 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x9790f7d7 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x979e9a24 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x97a3ff41 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x97ac218c iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0x97ada49e lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x97b0d1d1 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x97c7ce56 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0x97cfcaf0 fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x97d6b57c gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x97d9479e __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e33cc9 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x982fe244 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x9831fa3d trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98369bd7 crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x983a9925 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984e8f88 spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98648565 arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98883dc3 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x989af546 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x98a403ff tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x98a44c18 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x98adcbf9 kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c28a16 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98cec44e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x98d7f2e0 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x98e97c69 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98f75cde usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98ff2c76 kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x990b1924 debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x990b435f thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99300685 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x9936f780 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x99416fa2 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x99466a90 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x994ac858 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x995aef77 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995e33ff ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9960d0fd ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x99668dc7 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9968f33d hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x999ec99a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x99a22e07 xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x99a42bfa folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x99a57c93 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x99aeac7d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99bc31da devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99dfea2c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x99e544f5 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x9a00c3fc handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x9a081e0a regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a171533 blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x9a196c9a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x9a209f89 icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0x9a22866b irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x9a229a34 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a576430 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x9a58dd2d trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a61013f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9a634695 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9a6bf241 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x9a6e145c ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x9aa8abe2 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ae9cedf __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9b09c0d4 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0x9b0d240b class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b0dbb8a __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b109e5c of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b22e5d2 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x9b25de69 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x9b379991 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x9b3ce2d0 get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0x9b3da098 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x9b3e9359 devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b4c6cf2 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5b4b22 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6c0f36 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b813540 trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9b85547e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b96be22 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x9b97649c regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x9b99a20a pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9b9fa69b disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x9ba25f1e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba69d6f of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9bb14fa1 sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0x9bd43f0a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x9bd444f7 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee6142 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9bf903aa pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x9c0f7f9f anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c20216c usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x9c2e5bdf ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c3d9e9c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c4884a2 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9c63ff9d of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c84d88d security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9c89578a crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cca16cd blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x9ccee9ac ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9cd5e2db fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce151aa blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x9cf36566 kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfca817 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9cfd788c devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x9d09da1a pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0e5a1e phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x9d16a6d6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x9d1ef400 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9d1fe9bf crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9d2b2187 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d30fa39 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9d57d773 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9d617d58 __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x9d6714d5 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x9d6ef179 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9d70678b pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x9d7098d3 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9d7deac9 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9d8332c6 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9da01555 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x9da3e58f wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9dac2e44 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0x9dae8f2c fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9db3853b tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x9dc3f2cd xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9df13bf5 kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x9df1f970 blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x9df955b5 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x9df9f08e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e0aac95 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9e26535c usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x9e34ec37 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x9e4308f0 scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e489e63 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9e4a8ed9 pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x9e50ce95 rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0x9e553f5a scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x9e842b48 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eaef356 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9eb37624 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x9ebdabbd vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x9ebdfe74 ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0x9ecbead9 of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee49c03 iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9f05a1ec clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9f07db22 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x9f1216d3 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x9f143572 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x9f14f978 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x9f363968 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9f3f2891 net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x9f43d47e of_k3_ringacc_get_by_phandle +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 0x9f795f88 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0x9f9b15b9 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9fb0a9aa led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd98180 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9fdee178 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea8045 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff4143b dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa00550f7 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa01923b3 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01c215a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0262836 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0516f68 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xa05959d1 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa082ba7d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xa08c34ae get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xa0c3501b bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xa0c469f9 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xa0cf80a9 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0db7169 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xa0e0c1e3 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0xa0e60018 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0xa0f87555 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa101ba9b skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa119de7e pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xa1222e5f dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xa1390dc3 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xa15572c2 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa16ee30b i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xa1712520 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa1713053 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xa1734cf3 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa18e6760 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xa18f9a49 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa1998056 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0xa19aaa22 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa19bbce4 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0xa19db6ad mmput +EXPORT_SYMBOL_GPL vmlinux 0xa1a833be xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0xa1b40a63 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xa1ba4484 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1c2f736 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1cc04d1 crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa1d37e29 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1d8c886 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa1e1d220 crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0xa1ec6799 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1ef8494 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xa1fc0a9d ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa1fd68e2 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa22c9b99 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xa2382cb2 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa241d148 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa255563d imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27e1689 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xa2877e96 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xa28f2f70 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xa28fa8d2 ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0xa293d391 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa2a296a9 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa2ad338b fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa2ad6b61 kset_find_obj +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 0xa2bf7a5e __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xa2c17394 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xa2c28201 vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0xa2c567c5 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e3c04e meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa2f164a7 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xa2f39c3a efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa2f48231 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa2f9507f spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa2f9fbfd debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa2fb8f0a phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xa3054d87 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa31e9b40 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa328ae7b rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa34e37ab blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0xa353d6df __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0xa359ba39 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38cb4d1 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a1cd04 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xa3b161e1 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc3dda mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3dd2f70 __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3ea9e05 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f0cef2 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa414d209 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xa416b494 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa42f903a skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xa4388896 gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0xa44a1307 interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xa452322a regmap_reinit_cache +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 0xa465d1be devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa46ecdab clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa473c315 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa48002ca __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa4818bff __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48243d8 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xa494a712 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa4989f8a device_del +EXPORT_SYMBOL_GPL vmlinux 0xa4a3cfaa regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0xa4a40df5 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4a5913a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa4a96026 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4ad8fc8 mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b3c683 __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4bf7509 lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4c77fe0 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa4ca480c blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0xa4d4db4a phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa4d923f4 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4e4ad76 devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa504c3a8 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0xa509a733 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa5142680 xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xa517e6ed crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa535950f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa55caf76 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xa56664ef poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa56687c3 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa567644b pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa568f26f scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0xa573dac8 tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0xa574a308 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa58b37b4 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xa596009b meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xa5ab790c led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa5b7074d i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5bc443a nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e57e8a dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6005459 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xa610a185 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa61db438 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa62aa5f3 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xa64549b4 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa64d79a7 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa64f868b cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa66060ad tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xa665feaa mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa67d05c9 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa67fb979 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xa69db7ca ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa69e5893 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xa69f3c00 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +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 0xa6b5c233 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6b5ee5b __SCK__tp_func_block_split +EXPORT_SYMBOL_GPL vmlinux 0xa6d17d5a crypto_register_alg +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 0xa6ee44ce devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa6f337c8 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa744da6b br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0xa749f3c6 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa7702170 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa78caa24 ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xa7a8b5fb skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa7b68afa __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xa7d4ae55 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0xa7e923b3 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xa83c7047 perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0xa849c262 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa84cf464 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa86ccf46 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xa8774622 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa87e5e34 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa8863dcd pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a4a858 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8c6d2b1 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa9142045 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa91de6e4 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xa93064c9 acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa931db5a meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa933754f rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa934557d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xa937cc5b platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0xa9416318 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9490689 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa94d1c99 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xa9583541 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa963cf54 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa966f030 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa979d7a8 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa97b79c9 get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xa98a23fa bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0xa995b430 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9bddc1f devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa9c6d48a devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa9cb382b fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa9e79439 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xa9f50ca9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xaa181403 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xaa31faac __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xaa3a9d21 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa490198 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa8b4e02 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaa98f4a4 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0xaaa37d20 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xaaa4ca74 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xaaa5ca8b pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabb34b5 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xaacb5d9e fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0xaad980bc dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xaaefa007 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0xaaf5afad tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab1d2022 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab421c3b cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xab42c95d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xab4e2414 dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xab5c761d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xab5e28d2 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xab62329a ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xab64b0ce crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0xab69bcd2 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xab7d0744 icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab81fa16 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xaba4ae19 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0xabb3e2e3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabb44d07 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xabbb4551 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xabbdcb1a usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda50a9 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0xabe502f7 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xabe77f32 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xac006bb4 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0xac1410d6 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xac371b60 static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xac3cc2a9 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xac581955 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xac59ad4f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xac654996 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xac65a64a gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0xac6ebdfa irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xac774b29 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0xac7cc1c5 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xac7e1a8f ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xac89e44d dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0xac9a688c regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xaca369cd fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0xaca4cc4e tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0xaca68205 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xacb39ddf pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacbe0805 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xacc42277 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xacc439d8 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xaccfe937 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0xacde2794 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0xace140e4 espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0xacf321e6 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xacf4b044 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xacfdd9d2 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xad1a39d4 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad28b9dd devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0xad388497 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xad391309 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad3da712 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad44d397 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad56cf6c dev_pm_opp_find_freq_exact +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 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad8c8599 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xad9ac5c1 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xad9fc4e7 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb53934 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xadbb573e devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xadc64346 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xadd72ee2 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xade147e8 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadea92e3 clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xadf55f83 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xadfa0985 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xadfaab05 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xae05fa44 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xae08524d pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae336f2a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xae3919d1 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae4a5855 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +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 0xae8d1891 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaeafe361 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xaeb9894e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xaec5369f od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xaede016c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xaeef1d8a blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xaef79e74 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaf014703 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf16a511 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0xaf231422 sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaf24e677 acpi_dev_get_first_consumer_dev +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 0xaf4201a3 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xaf489b02 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xaf55345a bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0xaf6fe69c led_put +EXPORT_SYMBOL_GPL vmlinux 0xaf7823a1 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf8358a5 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf9797a1 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xaf9e9b0c task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xaf9fe0e8 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xafa307d9 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafd28155 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xafd99b4b crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xafec3fdf sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xb00196bf dev_pm_opp_put_clkname +EXPORT_SYMBOL_GPL vmlinux 0xb00f1f92 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0426b1b fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xb049a294 __SCK__tp_func_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0xb049df6d dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xb05240ee crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xb05b68d5 zynqmp_pm_reset_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb05cf332 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb076926c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb0774b01 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb079877d hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb07d451f dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xb087ba9f md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xb0896a73 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0b530f9 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b87da3 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0xb0c44977 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb0c6ae28 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d2afd4 bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0xb0de278a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ef9cc3 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb11270ac page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xb114548a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb12f0a41 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0xb13dfc07 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xb14765e8 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xb14a4738 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xb14ccac6 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xb1525a39 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xb1544e9f bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0xb156e8d5 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0xb1595dc6 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0xb15ac762 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb162c32f kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb17312ca cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb191c4d6 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xb19c72a8 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xb19eeeab unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb1a9d35a fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bb95a1 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bf7f72 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xb1cadcec shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb2008a53 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2047908 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xb20ff052 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xb2114c2f dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0xb213562f kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xb21af362 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb21f770c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2382491 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb25cfb66 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27ab2a8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb2949891 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2a02844 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xb2bd0a61 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2bd7d18 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2cde89f trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xb2d39f40 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb2d8948e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xb2e554e5 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f6c947 serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xb303bf65 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb30f48b9 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb311041b devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xb317ac91 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xb3212067 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb33d3f05 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xb3402371 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb34f2c9b imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xb3562f4e bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xb36b26bd of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xb37b3a14 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb383be5e nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xb386a545 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb39667fc adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb39ee02a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb3eeaa40 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xb405f58a vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xb40ac6f3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb40e5bfa phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb411e039 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb426516b iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0xb42e7f46 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb44145a0 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44d00f5 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb4572aa7 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb4584fd2 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xb45d65eb pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0xb461d957 tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0xb467edc7 phy_configure +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb4a62d8c icc_get +EXPORT_SYMBOL_GPL vmlinux 0xb4a64f5e of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xb4aaf543 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb4b5c59e kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xb4b6850c fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bdb8b8 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0xb4d61165 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f119ac evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb4f1438e mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xb4f832de tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xb4fce144 iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb50402be bpf_prog_get_type_dev +EXPORT_SYMBOL_GPL vmlinux 0xb504fc1e dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xb50b8fca skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xb512fe04 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5229cd3 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xb53001e3 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb532fc87 devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0xb5407957 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0xb545e348 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb573527e register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb575b86e of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb5775537 xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xb58bf65f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb5931df9 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5a8eafe task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5d652d6 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb5d7e1df fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0xb5eaf219 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0xb5f70500 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0xb60dad74 disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62bf003 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb63ff517 pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0xb640fd2c crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb641694e scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb64abdaa acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb659e18d mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb67e34c7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb6821004 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xb69aa57e tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6b0d4e9 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xb6bd03b5 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d8e29c dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0xb6de0bef tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f42298 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb6f7d1b9 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb6fe31c8 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xb713dc21 _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0xb7146218 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0xb7195bb0 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xb7260ebb subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb72ce24d of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xb72d91f3 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xb7321cd1 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb737ccdb dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb75b8486 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb76ce571 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xb77c3b67 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb792aaa1 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xb7a14f3b sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b46549 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb7c692d3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7d9934a clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0xb7e719d1 skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0xb7eb800d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb7ff2e7e tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb8114057 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb83f40fb __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb84ba287 nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xb84e00a4 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb84e9d77 dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xb84f47ec crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb8555e78 fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0xb86177a2 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xb86d62da of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xb879f62a dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb883548c vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88cda64 vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb892762f ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xb892afaa nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89a1176 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8a1905c tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xb8a8e365 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8afb7e3 strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xb8b09bcd sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb8b2beef vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d52827 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb8d766ae power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb8e23175 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb8e2c1c5 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xb8e437a8 device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0xb8e9b9a2 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb8eb2a31 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8fd4ce2 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb90ba89b pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb91467f7 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xb914f52c of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb937139d acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb94245ce blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0xb9476820 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0xb94fee26 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xb959dddf ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb96bffbd dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xb96d5e42 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xb979b6d7 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb98dde07 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xb9a582d1 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb9a8c32b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb9aebc7c dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xb9b021db crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9ba2370 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c36ff8 devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d3c4d5 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xb9db2624 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xb9df39bb serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xb9fb8afb irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xb9fc6b03 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb9fd8cf9 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0xb9fe516a alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0xba004141 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xba052104 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba1adedc dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba373fcc devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba404d3e ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xba498eda pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xba7fee2b gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xbab83e65 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacc3508 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbad680d9 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xbae09d58 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xbaec573d mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb17ecf5 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbb1a9dbb crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0xbb1bc987 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb302fb3 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xbb398f36 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xbb481418 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0xbb4a769b acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb5969e7 acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb6a3cbd devlink_fmsg_arr_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xbb6cbc15 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7195a5 xdp_warn +EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb98f3a6 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xbb9f87d8 wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xbba7adab kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xbba99632 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbb3b18e decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xbbb3f206 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbb778df strp_stop +EXPORT_SYMBOL_GPL vmlinux 0xbbc4b00f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xbbd2c165 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbe2d205 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbc140ae3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbc2db253 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xbc2eb2c6 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc307fc8 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbc35e515 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xbc3773d5 serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0xbc38f6e6 devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0xbc3d9fc9 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc5361a2 virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xbc57eac2 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbc59a92f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xbc5ce5d3 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc629c02 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc714b9a extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xbc74c4da ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xbc8715cb edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0xbc8a7d6f devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbc8f357f elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbc90f931 bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbcbcf661 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc0b744 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbcc0e91a pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcefb7db blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbcfac094 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd097dae do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd46f3c4 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xbd4f5255 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd63bae6 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xbd65fef2 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd825e57 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0xbd8c0898 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0xbda3b248 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xbda3b97a usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc11d5a mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xbdd3ec03 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde8caf6 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbdf88a71 xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0xbe04bd1c mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0xbe0c5b4c msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe14b80b virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xbe249509 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbe295907 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xbe2b356b fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xbe2d752e gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbe3a357b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe4cc090 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0xbe4f41fc create_signature +EXPORT_SYMBOL_GPL vmlinux 0xbe5c888b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xbe5e3414 k3_udma_glue_reset_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xbe659542 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe7110b9 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbea1ff3a serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea853bd kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbec8f007 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbecf1d8c ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xbed42e64 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xbedd8761 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbee86381 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xbef16b02 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xbef547f2 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbefb39fd usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xbefd801b virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf081bb5 devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf359d63 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf585666 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xbf62a3e2 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xbf8ea2e7 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcc9b5c dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xbfd09bc0 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xbfd8bcca mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xbffcc708 irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0xc0061aa5 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc01e88ed dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0xc0245fd7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xc0256749 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0292a08 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xc038ad1f nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0xc03cc42a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc058fd39 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc06ad19e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xc07300c9 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xc07b300c tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xc08ff36b regulator_sync_voltage +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 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0b99c55 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xc0bb4660 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xc0d166d4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc0d2cb5f xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0deff06 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0e34880 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0e50214 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f6f243 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc10c50a4 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc113d91b of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc11b72f9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xc13bf703 devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xc14acea4 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xc160bd33 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0xc166298f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc16bb6c3 relay_file_operations +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 0xc180cef1 fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0xc18846df tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0xc1b65c44 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xc1cb9e8b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1eef053 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xc1f95ea6 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0xc1fbd0f6 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc1fd3cbf irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc21101f0 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xc223a047 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xc2276909 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2308a26 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc2585b67 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc26d5a52 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc28225fb udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xc282d0dd tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc29c6a49 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0xc29e9dcf devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2a90b9d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc2aa2ae8 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc2b46dd6 devm_hwspin_lock_unregister +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 0xc2cb9ca1 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2ec3b8c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc2eeb365 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc2f09dfd pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0xc30c16f1 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc33d497e sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3497b63 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc34b4040 devm_memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xc34ec702 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xc35eb654 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc3873842 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38959d7 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc38af3c5 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xc397641e usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0xc39791c8 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc397fd78 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xc3a6eae4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc3ac735c kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xc3ae500f iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc3b31ea2 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc3b68a05 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc3c4a25e ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3cff0b3 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3dabc44 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xc3dc05fe phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0xc3de61bd fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc4071d4b xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xc40a3e3a serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0xc414d7a5 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4208a31 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xc42628f3 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4380601 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xc4386a9c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc43e92b9 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xc44831da dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc48877ea dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a627ca dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4d60d16 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xc4da8a19 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc4f750df usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc50acd08 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xc5109814 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xc512c8ab i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc51e81e4 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xc522d431 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc5478a60 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc54f49d4 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xc55b4a24 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc562c717 icc_put +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc571193c fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc57eb0c3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc5810ea7 umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0xc58689a7 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc59ed1f8 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xc5a4ba38 ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5ac2e7a fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0xc5cefdfb pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc5d1b516 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xc5d6c36d dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc6068d32 synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xc60970c7 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0xc613611e bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc620bb3d irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0xc638799a __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc64ba1a3 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xc65624b6 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xc6572a90 xenbus_read_unsigned +EXPORT_SYMBOL_GPL vmlinux 0xc65c509a ata_scsi_unlock_native_capacity +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 0xc67a7f37 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc67fad09 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc69139a2 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xc6915625 acpi_dma_controller_register +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 0xc6b1b232 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc6bb3d8d tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xc6bc225d skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc6bdae40 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xc6bf9ac1 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc6c91926 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc6d33b29 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc6d4d144 acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e38646 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc6f76ee8 fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc7100f05 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xc7245059 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc72e6792 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc74c30d8 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc758bd6c of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xc775114c ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xc77b168f rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xc780450f genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc7898e90 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7aa6d66 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b2d572 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xc7bbae3b vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7e46365 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fd5690 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc8012582 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc815c7f0 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82f3524 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc839c1ce trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc83e5190 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xc84e1770 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc85b8707 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc861000b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc87c9002 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc8846a0e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc8885c30 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc89fb8ba rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc8b48a8b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8c7f9f0 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xc8c86fb2 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xc8daff3a register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8ddea6e debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc900df2c virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xc9012069 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xc90789a1 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0xc908a058 i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xc90a0266 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xc911ec89 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0xc917f6bf meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xc91c986e of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc91d77e7 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9243954 phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0xc924dc40 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0xc92c1d84 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9377098 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc938ee28 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc946eb65 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc94f9651 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc951439e pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95e3c5c gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc960e4ca nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96a2ab1 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc984736c i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc987936e bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9975bfa max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc99fe75f sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc9b53a3e i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xc9cf371a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xc9eb0ba3 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9edd51d filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xc9f2c7f0 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca0c51c5 inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xca1bbc0d usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xca24768c acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xca2a20f4 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca46a155 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca4ecf43 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xca5d1481 device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xca5fddb3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xca623b9d regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca74a658 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xca76a47a __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7d8a2f of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xca92b7f2 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xca9b4436 tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcaa01099 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xcaa8f220 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xcaaf382c devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xcab2c680 dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0xcabcd302 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabe5a9d hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0xcac3d02d devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xcad4dc6a bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaee9814 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xcaf0b8c6 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcafbd2b7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xcb014bc0 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcb01e1ac i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xcb0db828 crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb19a6ad pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xcb2bf4be __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb40da73 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xcb51c9d7 fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5c7ec7 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xcb7c686b blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0xcb84abc1 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xcba72840 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xcbe0abf4 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe9bdc5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcbfe4d55 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc4852b2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcc5f72f8 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0xcc6010d8 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc8c4f08 gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xcca133b3 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xcca1ef6b pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccaec4e9 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xccbd526c xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0xccc5d08f gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xccc81979 wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd1c5e7 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce4a850 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfd2d6f ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xcd02a656 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2589bc hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xcd2780e4 __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0xcd28532e __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcd36a9e8 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xcd4ffc8c blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0xcd60cf8c mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd74475d platform_msi_domain_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcd759b82 k3_ringacc_ring_reset +EXPORT_SYMBOL_GPL vmlinux 0xcd790011 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xcd80e5f6 devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xcd8a33cf bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcd8ed7a8 tpmm_chip_alloc +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 0xcdb328ad acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adf0 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xcdc0b06f pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xcdc63572 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd002a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xcdd97130 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xcddba4db dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdf0873f tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xce03ea7c xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0c1eec pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xce14b5f2 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xce18d2e5 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xce1a5e62 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xce1eb373 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xce2e19a1 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xce310f4f meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce3a0b9e led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xce3cc974 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xce5681e3 uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce5f6501 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0xce63e577 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce787d68 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xce7922f8 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xce8b689b __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xce8bbb98 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xcea5c9ec usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcebb692a phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xcedd13e8 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee21fe8 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xceee7350 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcef486e1 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0xcf033260 serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0xcf0f2cce of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xcf0fcb73 fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf16a0a0 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcf177abe generic_device_group +EXPORT_SYMBOL_GPL vmlinux 0xcf239bba pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcf371347 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcf3a09b8 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xcf3a524c of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcf5749dc __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xcf5cb68c regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcf6cf963 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf7517f0 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcf9d3c07 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xcf9dfedf usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xcfaa7e3d memunmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xcfb1e811 virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xcfb8d010 __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xcfc5108a devlink_fmsg_u8_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xcfc7b4e4 rcu_barrier_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0xcfcef4a5 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcfd30d71 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xcfd6d06a devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xcfea3599 mmu_interval_read_begin +EXPORT_SYMBOL_GPL vmlinux 0xcff63b5b blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xcfff8ffe mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xd020e1dd kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02adac1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xd02b239f rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd02d31a0 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd03df841 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd03f8dce dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xd0401231 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0xd04040f0 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd05f8bed __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07ad444 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xd083f9bf gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xd086b8b8 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd0931ccd ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd095be4c __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd0a01828 acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0a8ca86 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd0abb3e6 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xd0ae8fd6 fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0xd0b5cb2c gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd0bcd38a rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c8044a srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xd0d156e9 __rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xd0d3f0a4 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xd0d827d4 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd0db0f12 run_dax +EXPORT_SYMBOL_GPL vmlinux 0xd0efe35b sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd1000dc6 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0xd106bf25 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xd1084f8a meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xd11254d3 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd13110d5 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd13f29f3 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd154e83b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd1630d98 blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0xd164fcd1 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd18c05cf clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xd18c58d7 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b8bf6c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1d6302f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd1e8be9f __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd1ecc3f1 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f5e32d tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd2007c94 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xd2068475 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd216ca74 pinconf_generic_dump_config +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 0xd224275a dprc_close +EXPORT_SYMBOL_GPL vmlinux 0xd22ed1fa meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2357320 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd2372228 security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0xd23cab03 acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd24fba34 dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0xd25f00a6 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd26b0e31 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd2825a30 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xd2964d37 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd2a7b0c6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd2a963b3 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0xd2ac0946 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd2adf036 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b4190d __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2ee09c6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +EXPORT_SYMBOL_GPL vmlinux 0xd31a2ac5 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xd31ebb75 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd31fa145 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xd320ebaf pci_epc_get_first_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xd3212a43 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd3253bd8 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xd32a731b gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd33412fa hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd342b9eb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xd34d04e7 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3594aa2 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd35d43ca i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3676752 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xd3732c21 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd382314e dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xd384f80e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd38778c4 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3b60305 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd3bb3d87 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xd3d8f959 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xd3decc02 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xd3e19d03 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3f5c514 gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xd3f69dd6 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd3fb75aa inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd3fba03e is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40f4284 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd430057d devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd43f80c8 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xd447046c virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd456e5c8 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xd45862aa of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xd45d8edd device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd4718a2e efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0xd4729da0 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xd48bbbbc inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xd48d5628 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0xd48e4db8 mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4953942 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xd4a19e3b devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xd4a1a2c3 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd4a2dca8 bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0xd4a562fd vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4dcfb89 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xd4e2b18d tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f1afc3 i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd4f720cc xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xd5098cb8 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xd50c9100 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5353e43 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd5457a4c ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd552978b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd5580a09 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56aa48f extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd57161f5 user_read +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd588c382 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd58cb75d gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd58d927e __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd59251e9 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0xd5995617 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd5a33245 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xd5a3569d blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xd5afc338 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xd5b92077 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd5d7f2e3 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd5db0f7f fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5edffd5 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xd5f59c34 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd6027886 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xd6046678 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xd60ab229 regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd610e5ca usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd611ea7e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd63ccf0c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xd63eb831 acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0xd6409990 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0xd647310a devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xd64cfa5e regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd67020bb rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd671d1ab perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xd672ca9e msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67deeec sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd689008e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd6985429 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xd69d4003 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6b2d708 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6c02b8f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd6c04294 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xd6ce036f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd6e615aa imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6e89632 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd6fab1e3 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd7135f84 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7488800 put_device +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd753e446 nf_route +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 0xd77e65f3 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0xd7823b7c dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xd7b11040 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7b4aa30 usb_ifnum_to_if +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 0xd7ee7990 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0xd7f9d178 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd7fa663b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd8285bcf pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd834a7fe crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0xd8400cf1 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd863ecdc crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd878d5f8 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd880892e led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0xd899b025 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0xd8b20595 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xd8d4935d pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8d9a24b acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xd8da858d extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8dd30cf devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xd8e3ce11 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0xd8e9d3e3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd8f42d15 compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd8f68964 gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb14d net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd90a93a7 k3_udma_glue_rx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd91dbd1f xdp_alloc_skb_bulk +EXPORT_SYMBOL_GPL vmlinux 0xd92ef192 security_kernel_post_load_data +EXPORT_SYMBOL_GPL vmlinux 0xd92f0791 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd93a5cb1 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xd94bc298 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xd9516644 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xd95324a9 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96ee53d bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0xd9723732 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd98a3c2e yield_to +EXPORT_SYMBOL_GPL vmlinux 0xd98f3574 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9a65771 serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0xd9c86882 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd9cae2df kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9d3a956 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e67541 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0xd9f62e0b dev_pm_opp_unregister_set_opp_helper +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 0xda139a05 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xda19673f ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xda1b9f14 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda23112b of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xda253aa5 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda329f16 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xda374f0e rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xda3b2f85 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xda446ffb __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0xda46ee98 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda499b09 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xda4ece88 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xda50ff87 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xda5a6444 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xda616298 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7b266d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda9088dd irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xda92bfde mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa95261 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab68aa5 genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0xdab76706 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xdac3416d tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0xdace9722 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xdad2757b __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0xdada6add __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf6c82b mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xdaf6dd91 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xdb126afe dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xdb1d050f pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xdb1e360c transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb241945 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb245b35 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb272350 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0xdb273182 dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdb2843cf acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb32f900 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0xdb396c05 fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xdb50e97c pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0xdb5423e0 kill_device +EXPORT_SYMBOL_GPL vmlinux 0xdb583a5c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xdb5d3490 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb658aa6 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb806a35 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdba652be securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xdbb1784c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xdbc6916d virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xdbcc5980 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xdbcca306 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xdbcd7893 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbe7a759 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc03e9a0 regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdc0a4154 crypto_stats_akcipher_decrypt +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 0xdc188b06 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc2dd69a __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xdc330eed serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc47c2e1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc61ae49 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc663501 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc73bff0 blk_queue_zone_write_granularity +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 0xdc8e7187 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9e111a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca14cbc blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0xdcde67df ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xdce0dd74 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xdcf1642c ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdd05003b device_register +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd0bfe60 __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xdd39f81c dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd4d9def regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xdd518a37 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xdd599036 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd67709b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xdd68274a fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd74734e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xdd77dcf3 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdd7d8ce4 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd7d8fe5 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd862c1d pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd88d092 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xdd9da219 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xdda27a3c kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xddadb6b4 i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc7629f pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xddc79e3f gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xddc90ca8 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0xddd6967b tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xddd7d76c tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xddec09c0 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde1b7dc3 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xde24a173 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde46db91 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0xde496bca blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xde582385 netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0xde6302cb spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xde6dcbf9 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde790a46 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xde8677a1 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xde928e22 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xde98e8d9 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xde99ddc1 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea4f1fa rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdec6babe genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0xded3286e ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xdee2a76c __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeea127b clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0xdeedaf8a irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xdefc365c dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0886f4 spi_mem_dirmap_write +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 0xdf11d06d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdf14588f fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2a6f04 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xdf323ac7 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf457695 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xdf5ec14e driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdf7609ff serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf901e53 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xdf9c3548 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfa90a72 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xdfaff36c usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xdfc88353 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe4936a mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xdfe51be8 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xdfedbf51 component_del +EXPORT_SYMBOL_GPL vmlinux 0xe0176331 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xe017a871 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe0408bfb user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0597b0d xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe06ab91d mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0xe0850533 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xe09450c6 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0xe0967f6a component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xe097714c __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b433eb spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe0b7a287 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0c6755f vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe0dd0a39 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0e5c82b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe0f53a96 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xe0f7542e platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0xe0f87d15 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe0f9c044 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe0ff30ad __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10eaded tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0xe10fec29 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe11da55f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe11f1e20 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe120eece devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe142f320 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe147a6b3 trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xe1507871 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe1634d36 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1677bea virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe16ac541 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xe16d1262 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xe176f2e0 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17c8963 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe18a7af4 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe18a819a devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1ac40a4 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c19039 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1e07720 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe1e2ebbf sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xe1f0bf19 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xe1ff0380 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe212514e screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0xe21496a9 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0xe21666dd of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xe2267f6d fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23ef00d cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xe23fc80a usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xe2477f3b __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe250f96d virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe25d1217 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe2832149 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xe288ead1 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xe28f4f36 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe293a5b3 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xe299367e __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xe2b2c9e0 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b65040 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe2c7e82a tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xe2c8a556 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2e08ee6 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0xe2e94b3d clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2eca9eb pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2f66908 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe302a7bd pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe315bd15 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xe315cc61 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe318dd24 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0xe3305bef check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0xe3345cdf __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xe336d16b fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xe3452f51 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xe354d717 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe3562624 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xe36d1582 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xe3722552 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe37ae62f amba_bustype +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 0xe3a75c57 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3c0ba2e regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0xe3c35e69 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3daf159 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe3dec172 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3efdf9c unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe3f8b68b sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0xe3fae190 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe426dc23 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44b52db devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe451972a scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xe4526f44 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe456f547 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xe46f55ca set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xe4732b93 led_set_brightness_sync +EXPORT_SYMBOL_GPL vmlinux 0xe47c33d5 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe47ff695 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe484ee65 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xe487c7b4 pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0xe491e700 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4989c32 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe49f9610 edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xe4a6377e iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe4b064f9 pcie_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4bc806d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4c7dc23 fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xe4d0d131 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xe4d6f2a7 msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe5102249 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xe513c479 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xe516a6f8 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0xe519d264 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xe52c1139 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe52dcdab divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xe53e3258 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe545154a sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe56912cb simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe588d118 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe59ad384 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe5a54327 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe5a91931 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5a9ad59 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xe5bc1838 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0xe5bd01cb fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c1e123 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xe5c3974f of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5fa7c35 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe619eda5 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe622d33b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe62a04c4 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xe63da867 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe6501dc6 pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0xe6613f77 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe6618da5 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0xe66922a7 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6aeddd8 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe6b66987 ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xe6b8606e hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xe6bb0ab2 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6be96ac sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe6bfec30 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xe6cc6bf5 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe6ce34f7 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0xe6d3f853 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe6debd78 balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe6e02efe tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e5ff74 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6e9b480 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fe83b7 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe710222c ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe716827b pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xe71b4433 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xe7212871 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0xe72c8491 devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xe73b8c58 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe7581247 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xe7663a3b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76f9728 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0xe774b630 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe792d608 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe79734b7 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe79aa902 __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xe7a6b7bd qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe7a78cf4 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe7bb8688 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe7c93efe ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe7d10475 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xe7d32461 cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e03226 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xe7e203b4 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0xe7e5a136 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe7e694b8 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0xe80dedcc usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe847c92e inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe84be495 tty_ldisc_deref +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 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe868f372 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xe870033f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe8711a11 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xe872b8da acpi_irq_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe87cd751 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xe898ac5a pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xe8a0bb6e pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe8a13bd4 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8ab5871 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe8ad0a40 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xe8b23adb __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xe8b37491 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xe8b4a721 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe8b8a5e7 of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8d3f40a spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xe8de179d __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xe904246d find_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xe9072df3 regmap_async_complete_cb +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 0xe9201400 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe92f6df2 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0xe937bd87 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe9489dc3 fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xe94f8a0d irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xe95630bf dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe95d46de tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0xe95db091 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0xe962a0ea pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xe96673e9 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe96c09c4 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe9aa0f81 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe9b18015 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0xe9b1f842 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0xe9c1c5b0 blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9e88600 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xe9e96564 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xe9eb6f6c usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f61e89 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea0aca8f bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xea11d3f3 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1f0a8c xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3ca3a8 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xea3e7163 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea8e0472 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xea968d87 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xeaa1d945 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xeaa279d1 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0xeab89c1e clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xeac609fe ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0xeac9846b clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xeacb2b25 __sock_recv_wifi_status +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 0xeada0cbb pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0xeadac472 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xeadc932c fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeae46537 of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xeaf05abf iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeafd41d7 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb04ffdb rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xeb0b4bed kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xeb14cae7 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xeb36d237 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb43493f to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xeb46fe63 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xeb51af6e iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb573fff evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xeb5cd8fd trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xeb645823 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xeb6f436f usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb865d58 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0xeb8d990d irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xeb9ca6a4 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xeba869ea of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xebab839d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xebb4b75e perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xebc3ade2 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebcb05e3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xebccf8d9 component_add +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebe28149 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xebe79147 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xebf222bc rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xebf40aa6 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xebfa0649 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xec00fdf9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xec099f5a icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xec256221 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xec398c0d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec5ad73b trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xec629a74 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xec63c9d5 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec84b6db pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xec98587b fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xec99d650 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xeca5955c clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xecaaa2dd srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xecb13c25 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecbaf0dd tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xecc904ec fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xeccb3218 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xecd00516 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecfd054e mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0xed25ebde __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xed2ba03f ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2d3739 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed3f68a6 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0xed470892 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xed5535e2 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xed5cb2e1 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xed72a39b tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xed77e009 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xed78b108 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xed8ab865 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0xed8b1424 nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xedac1b95 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xedb1fbca vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedd3a1c0 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0xeddfe86e ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xede6c08d fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedf5b9ad mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xee069884 register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xee0a2eba ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xee1b91e0 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee28bdc5 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xee28ca43 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0xee31911a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xee354f53 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee3cf107 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xee42da0e tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee57543f iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0xee62e496 arm_cspmu_sysfs_format_show +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 0xee6d3e70 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xee72a6f3 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xee72c7fe serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0xee75aa69 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xeeb2080e ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xeeb9296d regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeed3e081 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeee0f6e9 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeefbfa00 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef30d946 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xef3117a2 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xef32c3b9 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4a1317 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xef4baecd k3_udma_glue_rx_get_dma_device +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 0xef7f3e30 fsnotify_init_mark +EXPORT_SYMBOL_GPL vmlinux 0xef805538 mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef846d0c uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef91cb4d extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa2e9dd acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xefd4ccf2 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xefe052ea ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xefe66c60 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee4711 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xeff6bcd9 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xf00054f6 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xf00c5af5 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xf00ef9db __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xf0121a1e blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf01ba9a1 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf02d6fbe usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xf0371d53 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf03e12b7 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +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 0xf06c8d72 blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0afe504 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xf0be3052 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xf0cb345a acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xf0d88bfb ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf0dd3ea9 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf1005db5 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xf10c656f regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf123a1c5 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xf123ca78 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf1301843 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xf13bd9dd pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0xf13c0c95 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf1539814 i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0xf159d956 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xf162affc dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xf16b6608 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf174e4c0 devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0xf177fbdd __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf19e3a24 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1ac34a4 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf1b8c191 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xf1bda7a8 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xf1d5cb28 tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0xf1d94cf2 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf1e33ecc wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf1e643f7 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1fa4e2e smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf205d169 regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xf20de43e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xf21b5b55 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2258b69 tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xf2287148 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xf235aa8e virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0xf23cbb2e bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf24289c2 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xf262c85c ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xf2668628 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xf2789409 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf2870506 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf2944669 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf2950ce1 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf2a97942 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xf2b0e689 dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2b9621a regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xf2ba296c regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf2cc9b19 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2f2a428 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3022b75 blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30ef240 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b29b9 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3234eaa dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf334a7d5 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xf335c17e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf353f682 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf360727b regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xf370e7db register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf3783d4c i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38e9a7b regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf396737b class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3c814c0 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf3d5e67b clk_register +EXPORT_SYMBOL_GPL vmlinux 0xf3d91a05 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0xf3ff26d6 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xf4028eda balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xf414dce6 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf42aca39 blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0xf42ece12 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf43355e1 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xf43fb733 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf444215a sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf44910b3 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xf4559099 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf46a2fae switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf49d1374 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xf49f8765 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4a67a0a sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4b3d3de fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf4b6ed51 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4c41c5b pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4e08e96 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0xf4e4d6ec sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xf4f11a83 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4f2b3b1 rdev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf4f3fec5 irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4fe0c3f bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0xf5085db9 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf52601f7 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf52c6a44 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xf52f6fbc vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf555ade1 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0xf55fbd2b mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf5624231 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xf5628e06 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xf5787bd0 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xf581322c skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf590018a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf596ae46 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xf59797bb mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a2cede fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b34a69 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xf5b9c591 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf5c10e97 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xf5e0ea8a hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xf5e9c222 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f4c341 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xf601d20a vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xf605d4ca fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf60b45c1 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf6216658 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf62ea5ae regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xf647b7b0 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf651c0a0 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf67d8388 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6a33357 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf6aa27a3 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xf6af5163 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xf6b9b39d __rio_local_read_config_8 +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 0xf6dc9a25 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf6e0062d rio_unlock_device +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 0xf6f9e169 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xf6fca765 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf6fe8530 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf71752b7 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0xf71ce506 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf71ec47f rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72aff90 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf72f3c8c sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf730e32c __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74c6189 iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf750aaa8 clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xf75ada14 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xf7651e60 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xf77281b0 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf780be79 rockchip_clk_register_plls +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 0xf78ed603 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xf793e799 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0xf796d4da mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xf7acf4b5 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xf7aec07d fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bb2c17 kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c63914 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xf7e56389 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xf7e73517 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xf7f55c8e regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf802921f mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf806b7e4 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xf80a069c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8419cde md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xf842036d __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0xf844f29e devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf86a9b10 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0xf8718b3e dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf87ab044 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf883fff0 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf890e5d4 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xf89bd517 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xf8a0579c fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xf8a1668e l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xf8ada4da dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8ba3ffa dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xf8cc9bad mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xf8d6aff7 dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xf8e50084 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xf8ea2a3b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf949f824 rio_mport_write_config_16 +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 0xf9695535 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0xf972cbb3 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xf97e41b6 fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0xf980ae3a mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xf98c6bb8 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0xf98e8ba7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf98fedef class_destroy +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 0xf9bb7ec5 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf9ded88d dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xf9f3afb4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfa068dc4 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfa1d271f xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa46c7a5 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa4d0199 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xfa5a7f7e tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xfa612c15 sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa6826aa of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfa6840c6 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfa73cf7e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xfa79dd6e devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xfa85a148 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xfaae3060 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfac0bb7e i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xfad28b50 param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfadec80e crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xfaf9f075 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb43b48b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xfb4d1f2e device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xfb56b0fb i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0xfb5ceacb __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xfb5d6ca0 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xfb674b8c __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb882fc7 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xfb9bb34d security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xfb9c0868 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfba8b2d2 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xfbab48ad debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbdd404a tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xfbe2bfdf ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfbe2f2c2 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbe4d7d1 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xfbe89d69 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xfbea0b54 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfbf2f401 rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xfbf52289 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xfbffd601 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc01219f gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0xfc03a4ca proc_dou8vec_minmax +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc15bc9a pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2e443c spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0xfc370a45 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc4b2e95 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfc5ae90f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfc624907 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xfc8097b4 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xfc839924 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xfc8598ff unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfc8bbe24 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcb8e5c7 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc317d1 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfcd499c0 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xfcdf1087 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xfcea0b19 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0xfced36b9 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xfcf425d4 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfcfa91ab kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xfcfcef1a acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfcff308d gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd072490 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xfd0881b9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfd0fdd28 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd1e3839 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xfd26b7b4 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd31bbec gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xfd4cdcb6 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd5bbc96 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7fc3dc mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xfd8ccbd2 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xfd8d979a serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfd981938 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xfd99ee13 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfd9a0b8b relay_open +EXPORT_SYMBOL_GPL vmlinux 0xfda3ed7f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xfda80836 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xfdb905c8 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdc7aca5 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdcc9de6 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfdd42aee ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdec1e24 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdfef114 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe0f14e5 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe37ec03 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe3a9cd6 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xfe3d9bb0 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0xfe41e230 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xfe471f0d sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe51ca98 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xfe52f40f ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xfe561464 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xfe5acd9f pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfe5c4ae2 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xfe654ecf dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfe705bb0 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xfe7298e1 kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfe7e817c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xfe823183 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xfe864d0a nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xfe87c8b4 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe984120 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe9b89a3 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xfe9f9812 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xfea43fc7 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xfeb0795c crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xfec15841 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xfec1b3e5 devm_pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xfec3bf84 icst_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0xfed06b54 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed81342 shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xfede9222 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xfee5e1d7 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0xfee76c67 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xfeeecd05 apei_read +EXPORT_SYMBOL_GPL vmlinux 0xff02aec5 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xff0341fb pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0b8f6b device_link_add +EXPORT_SYMBOL_GPL vmlinux 0xff158b5f genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff257d55 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3a9b2e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xff3d22c4 of_css +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff57a179 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xff5abe2c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff802157 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffd26e44 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xffd32042 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xffd8cb61 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffda0a59 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xffe1de2e stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xffe3ae3b debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xfff3b8c4 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xfffb54b9 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0xfffebf1b shash_ahash_finup +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0xb471537c hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0x6809b761 ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xedb156e2 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0xc48cac94 ad5686_probe drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xc987864e ad5686_remove drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x85adf9c8 ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xd82bfc31 ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0xb108a5b8 ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xb4f3e3a9 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0x0a7569aa adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xbc49ec5a __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x0dea4294 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x23a08dee adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x28a36461 __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3484c726 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x3f7b1b2f __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x5c544a7f __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x6708edb8 adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x97b3ec89 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xc144bdbf devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xe220d080 __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x023e7a66 __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x829e7cdd adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4568b61c adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0x00030441 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x3ca28eeb adxl372_probe drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x46fcfef3 adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x482475aa ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x48f3380d ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x5e3de7ff ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x752ec95e ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8466b533 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x86960e80 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x8a71787a ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x938ac821 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xb75ed770 ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd77a8410 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x7a5cf8f1 bma400_probe drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0x96374574 bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x0551b528 bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x0671239c bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x8ca301c3 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xc093ec3f bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x7768dcca bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x8e98a87d bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x93c24665 bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xe050290f bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0x528e7d82 bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0x16287826 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x074dca94 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x768bf9f5 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x77bd21d0 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd2c117bf bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0311bd07 fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xa1cf29c2 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xc5c4657a fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xdde6d0f2 fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x2b3d3694 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2eabe71f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x34a7bed8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x48789b43 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x6759d788 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9a323561 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9bf7636c hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9c83e3aa hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb7673a7d hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xb88505f8 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xbb7b3957 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf5db2705 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6f0aecd9 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa4c784bd hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf1a797a3 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf399c3b2 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x33a2f432 hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xa92538e1 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xadf4b2b8 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xaf2d8d65 hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x0930cde8 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xd9e68c69 kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xea38c2d5 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2282b264 ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x267f713e ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x393ca94d ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x4d6d48eb ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x70570af8 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7c733341 ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x8c974707 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc0503598 ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xdf5d771a ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x47f233ca mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb42df964 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xcee376a2 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x08ce0b60 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1c034c51 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x23c19dd3 mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x35fd3cb8 mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x40d03413 mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x4eba1ba4 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x53d2d724 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x82e6f8cf mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x8e6f290d mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x92590baa mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x9dd637e8 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xa25eb2ac mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xb5da79b8 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xda9e4a12 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xe71753d0 mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfde7054b mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x6f411de0 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0x3f9e7034 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0x59ae2bec ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x4f47f54f rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x2227be3a scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xfc6723a2 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x16425b24 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x745c7167 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7ac8f834 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x8d2f4d01 ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xa77a6112 ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xbb0910f3 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd4553b3f ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe8f55ac4 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_ST_SENSORS EXPORT_SYMBOL 0x07476dbe st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0feb952a st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1d15a6b7 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x354b9cee st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4018c7b8 st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x537535ef st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x54ab138a st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x55111fa1 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x55af32b6 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0x58cc9da1 st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6c11a257 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x6c7c812d st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x73a772f8 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x795f910c st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x869bfbd8 st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x8de3fef2 st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x8ee25011 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xa532f675 st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xbca7df29 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0xc51988e4 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc8e40c1f st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0xcc616981 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd1ec0c19 st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0xe092bd9c st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xea519a97 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf8247664 st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0xfdd55dcd st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x0cf5effe st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x6f037775 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x3c9ceba8 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x80a99e90 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa27451df zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xa366004c zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xcc247773 zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xe2339f17 zpa2326_remove drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x0125ed7a iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0e3c8ba8 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x17977fb3 iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x194a9209 iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1bdaf113 iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x21df7952 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x224a7f85 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2559b2c2 iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x26a763be iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b3fe9be iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c8c885a iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2fb3de76 iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x310a56b9 iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x32b32e1d iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x34e3530b iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x350ae10a iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x361cab1f __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f08d51b iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f9f57a8 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x41837830 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x436632a6 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x45d3f8b1 iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x463e799f iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5520cce3 iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58042f73 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5b9ec5dd iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5d043bb9 iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x60dc2d18 iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x638f7c99 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a413e60 iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6d01967f __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7229850c iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x744c60fb iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7468e09c iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x786ae086 iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x79917c70 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7c6829d6 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x884c54fb iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a3bf63c iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8a448626 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9647b063 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa01e6382 iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa18e70d3 iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa70ad044 iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa9bb4890 iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb0345b1d iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb1a32919 iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb1b9921b _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb6acc49f iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbadb843c iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbaf05fc9 iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbb0569d4 iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbbd203a4 iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbcdde957 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce85afc3 iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd813ba63 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdb4e2d33 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdba87025 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdd81f3e7 __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdee5d51f __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xdfd3ba5d iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0804e53 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe564ad40 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe72cf8a3 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe81016fc iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xead7d4b0 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xedd65779 iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xee0ddc97 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf1962dde iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf230cee6 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf239bd21 iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf3cbad08 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf874887a iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfd3403a4 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfe57a2da iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x8ba7ff9c ltc2497core_probe drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xe8b58ed8 ltc2497core_remove drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0d1cdac7 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0e9b2404 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c962392 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x37d1e179 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e9aec24 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x521da8ca mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5b5e6f2a chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x82fbe2c5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x86fc8656 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9792dab5 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb7aa666b mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb8242ea8 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc815384b mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe8cd7799 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3f3585a2 nvme_find_get_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x4525cc31 nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x7ba355be nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9cf51398 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb20b7367 nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xcd70aa43 nvme_ctrl_from_file drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0592c72a peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0705f01c peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0fdb111f peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x10667afe peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x2ea49a9a peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x37fd9a33 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3cd780a6 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3d2929a4 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x46938477 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x52607945 peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x55b74508 peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x73ec893a peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x74174ee9 peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7557e35e peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x82f199f1 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8b332f18 peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9817ee67 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9c55ec6b peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9f449b37 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xa18f6ef2 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaf746d8e peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb44ded91 peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbc5ffa75 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc8326c45 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc9a71590 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xcbcfe8cb peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd564521a peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe4a12da2 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xe83c89f4 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x1d84d281 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x1e355b92 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2e7af490 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8527c218 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa495eff4 peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x0270b3e5 pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x06b73e86 pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x084ebf06 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x0b085d49 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x2dc17be2 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3a0bb976 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x55871c7e pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x679cff12 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9ad8af8f pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb3c2e4a0 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xbaca3aa2 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xc827a970 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xce3558b5 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd2a1ecb1 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd94323ef pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xd9b1f0d9 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe04b7011 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe66c17a8 pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf2bc9e83 pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x3917d489 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x4488968a sx_common_probe drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xb3cdf75a sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe79b4a2e sx_common_read_event_config drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x01fd5e77 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x07296348 hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x324a96d8 hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x5e542b60 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x2ceadcb1 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x4aa38042 cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x6d08f912 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xca4d1515 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xe80c3daf cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xebb8abce cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x676d1cdd cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xb6434b7a cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xf57b8a36 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x180d60d6 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x314444e6 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 0x745d83fd sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x954316a5 sdw_intel_exit drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xaa52eba1 sdw_intel_thread drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xdab35e51 sdw_intel_probe drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x26eef738 dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x3653ba54 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x5826109b dw_spi_resume_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x80bf271f dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x85d6a8c9 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xac028adf dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xb259d0da dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xe7e214a4 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xecb8172c dw_spi_check_status drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x089f7305 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x19212eb4 ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x215acb3b ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x33527173 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x34a796c2 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x376eebe1 ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3cca3c4e ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5087807a ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x553cf6ba ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x60e84cc1 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x66ae640a ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x67b4f375 ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x83c753fd ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x87fcecc6 ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8cdb1752 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8d7438cc ccu_gate_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x9a7239d2 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xa0f4dce8 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba079d1a ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbb6e851f ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbedab8d5 ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc2378215 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc8f1374b ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xcdae8a96 ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd35244af ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd7ee688c ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdc3ef86e ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xde8a0571 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdee13cf4 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe2fe75df ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe395e8eb ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeca4e8ed ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf0423116 ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf1d63af5 ccu_sdm_helper_get_factors vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x039c89d6 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x13567a8a 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 0x1e0c7a3a usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x203d9c26 usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x24e5c46d usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x3d03b63f usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x45f1e059 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x48c71fbc usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6b4b033e usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6c678490 usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x6ecf50e0 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7ce40259 usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7df7788a usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7f05c913 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9c6e7e60 usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9d0783ec usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9f555779 usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc0a3ad62 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xc4d11d0e usb_stor_reset_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd0669612 usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xdcb6fac2 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe76a7482 usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf40c8bc0 usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf6984df6 usb_stor_suspend drivers/usb/storage/usb-storage diff --git a/debian.nvidia-5.19/abi/arm64/nvidia-64k b/debian.nvidia-5.19/abi/arm64/nvidia-64k new file mode 100644 index 000000000000..44a9cc052233 --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia-64k @@ -0,0 +1,27406 @@ +ACPI EXPORT_SYMBOL_GPL 0xc331c3c7 acpi_table_parse_cedt vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x1ae7bf58 crypto_cipher_setkey vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3a80c342 crypto_cipher_decrypt_one vmlinux +CRYPTO_INTERNAL EXPORT_SYMBOL_GPL 0x3de51280 crypto_cipher_encrypt_one vmlinux +CXL EXPORT_SYMBOL_GPL 0x055c6ee3 cxl_mem_active_inc vmlinux +CXL EXPORT_SYMBOL_GPL 0x05ba1b2f find_cxl_root drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x100f938a devm_cxl_register_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x111999a0 to_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x11351855 is_cxl_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x14f6b784 cxl_port_to_pci_bus drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x153597e9 cxl_driver_unregister drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x169ea4f0 cxl_find_dport_by_dev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1ae2309d cxl_root_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1da1efff cxl_decoder_add drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x1f584d0a devm_cxl_add_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x24a42cdb cxl_dev_state_create drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2aeb746d cxl_bus_type drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2c05a357 devm_cxl_add_memdev drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x2e8df450 devm_cxl_setup_hdm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x31fc64d2 cxl_bus_rescan drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x33e2aa93 cxl_mem_active_dec vmlinux +CXL EXPORT_SYMBOL_GPL 0x45abe271 is_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x4d9fe003 devm_cxl_add_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x60628f2d schedule_cxl_memdev_detach drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x61a7c109 clear_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x61bcad57 is_cxl_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6495699a cxl_probe_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x689a3918 cxl_hdm_decode_init drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6daa6571 cxl_mem_create_range_info drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6eed74e2 cxl_endpoint_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x6f63847f cxl_find_regblock drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x78da5313 devm_cxl_add_dport drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x7ed9fcab cxl_switch_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x844ba8f6 is_root_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x85ce87d3 cxl_dev_state_identify drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x89c3fc1f devm_cxl_enumerate_decoders drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x903b1468 devm_cxl_add_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0x920db1e5 is_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa0dc1a72 set_exclusive_cxl_commands drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xa86a4071 cxl_decoder_add_locked drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xadd95fab cxl_mem_find_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xb9166113 cxl_find_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xba440a76 cxl_enumerate_cmds drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc95e1029 cxl_map_device_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xc9acd5e6 cxl_endpoint_decoder_alloc drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcbb2cba6 cxl_await_media_ready drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xcdef19e7 devm_cxl_enumerate_ports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xceddf535 is_cxl_nvdimm_bridge drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd540d81b devm_cxl_port_enumerate_dports drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xd9beec12 to_cxl_port drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xdae7cecd cxl_probe_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe0c04691 to_cxl_nvdimm drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe3686bc7 devm_cxl_add_passthrough_decoder drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe48c4911 __cxl_driver_register drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xe5eda302 cxl_decoder_autoremove drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xecc66203 cxl_map_component_regs drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xf78400e2 cxl_mbox_send_cmd drivers/cxl/core/cxl_core +CXL EXPORT_SYMBOL_GPL 0xfaee7b6c to_cxl_decoder drivers/cxl/core/cxl_core +DMA_BUF EXPORT_SYMBOL_GPL 0x0983695d dma_buf_vunmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x11646183 dma_buf_dynamic_attach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x165e7ab4 dma_buf_mmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2424c524 dma_buf_move_notify vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x2aa8be5b dma_buf_begin_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x3481304d dma_buf_map_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x423aaa57 dma_buf_put vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x493f6ebf dma_buf_detach vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x65a57942 dma_buf_pin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0x797bc228 dma_buf_vmap vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xad6db3d5 dma_buf_unpin vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xc57fc3e8 dma_buf_export vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xca4f034b dma_buf_end_cpu_access vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xcbb3d26a dma_buf_fd vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xd558e9f1 dma_buf_unmap_attachment vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xe32c9224 dma_buf_get vmlinux +DMA_BUF EXPORT_SYMBOL_GPL 0xffe4fdd9 dma_buf_attach vmlinux +DRM_SSD130X EXPORT_SYMBOL_GPL 0x33cf1f58 ssd130x_variants drivers/gpu/drm/solomon/ssd130x +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x68f275ad ce_aes_expandkey +EXPORT_SYMBOL arch/arm64/crypto/aes-ce-cipher 0x773a2d37 ce_aes_setkey +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0x52d67a4e neon_aes_cbc_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xb8c706a6 neon_aes_ctr_encrypt +EXPORT_SYMBOL arch/arm64/crypto/aes-neon-blk 0xd5f41819 neon_aes_ecb_encrypt +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 0xdb786e41 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 0x8e688192 ecc_alloc_point +EXPORT_SYMBOL crypto/ecc 0x90cdc197 ecc_free_point +EXPORT_SYMBOL crypto/ecc 0x9263b417 ecc_point_mult_shamir +EXPORT_SYMBOL crypto/ecc 0x92668805 vli_cmp +EXPORT_SYMBOL crypto/ecc 0x932b6ff7 vli_num_bits +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 0xd94c8eb5 ecc_point_is_zero +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 0x24191825 crypto_nhpoly1305_final +EXPORT_SYMBOL crypto/nhpoly1305 0x321c6104 crypto_nhpoly1305_setkey +EXPORT_SYMBOL crypto/nhpoly1305 0x3f3b9e10 crypto_nhpoly1305_update_helper +EXPORT_SYMBOL crypto/nhpoly1305 0x9159c72c crypto_nhpoly1305_final_helper +EXPORT_SYMBOL crypto/nhpoly1305 0xd44d1470 crypto_nhpoly1305_init +EXPORT_SYMBOL crypto/nhpoly1305 0xf991fc2a crypto_nhpoly1305_update +EXPORT_SYMBOL crypto/sha3_generic 0x7cb4fc99 crypto_sha3_init +EXPORT_SYMBOL crypto/sha3_generic 0xa0d48762 crypto_sha3_update +EXPORT_SYMBOL crypto/sha3_generic 0xfa035299 crypto_sha3_final +EXPORT_SYMBOL crypto/sm2_generic 0x30bd1792 sm2_compute_z_digest +EXPORT_SYMBOL crypto/sm4 0x2b098da5 crypto_sm4_ck +EXPORT_SYMBOL crypto/sm4 0x7931a202 crypto_sm4_fk +EXPORT_SYMBOL crypto/sm4 0xf4fd3bd2 crypto_sm4_sbox +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/nfit/nfit 0x06848c60 to_nfit_uuid +EXPORT_SYMBOL drivers/atm/suni 0x6885dddf suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x9a86d9cf bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xbac9b47b 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 0x00604c76 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x009de1ad pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x07940f3c pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1fca7075 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x2b1891cd paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x3f8441e3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4f82f7be pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x71f98774 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x7400dd3b pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x78f32118 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9798958a paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe7d46caf pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x1f4e6fa8 btbcm_patchram +EXPORT_SYMBOL drivers/bluetooth/btrsi 0xd095b979 rsi_bt_ops +EXPORT_SYMBOL drivers/bus/mhi/host/mhi 0xd6e5d832 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 0x0e7a4c92 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x12dd1e77 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f65170f ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x230094ac ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x413e6f74 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c2054d7 ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x50f65edf ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67369b42 ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 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 0x943ba9bc ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96a6e5e8 ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xaca90ebd ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xae71627d ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcab4d9ad ipmi_add_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd54a5050 ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4330a39 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98c507d ipmb_checksum +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 0x0e090c51 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xabc5cf94 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xb5616cc4 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe27f600d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x228dbe5d xillybus_cleanup_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0x8d2a01b7 xillybus_init_chrdev +EXPORT_SYMBOL drivers/char/xillybus/xillybus_class 0xa45d83ef xillybus_find_inode +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x581fc36b xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6e39765e xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb6949fcd 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 0x3ba9e03f atmel_i2c_enqueue +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x5049e019 atmel_i2c_send_receive +EXPORT_SYMBOL drivers/crypto/atmel-i2c 0x70391bc4 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 0xc80f14e8 atmel_i2c_flush_queue +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 0x2bbcd6ff caam_drv_ctx_update +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 0x93aec9cb caam_drv_ctx_rel +EXPORT_SYMBOL drivers/crypto/caam/caam 0x990c371c caam_drv_ctx_init +EXPORT_SYMBOL drivers/crypto/caam/caam 0xc0eaa792 qi_cache_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam 0xf4ee8b41 caam_qi_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x27492069 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x356953b3 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x6569343d caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x7e3367bf split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xf56209dc gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x2e152bb7 cnstr_shdsc_xts_skcipher_encap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x3b54a9ad cnstr_shdsc_aead_decap +EXPORT_SYMBOL drivers/crypto/caam/caamalg_desc 0x76a68e3e cnstr_shdsc_chachapoly +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 0xe96c4b5a 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 0xdd526356 caam_strstatus +EXPORT_SYMBOL drivers/dma/xilinx/xilinx_dma 0x1645661b xilinx_vdma_channel_set_config +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0190025b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0bc6094c fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8a137 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f6eaf23 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31b83913 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x39c1cc79 fw_iso_context_start +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 0x40f131cc fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x424d330e fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d962645 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5918ab97 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61bfe594 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6906c201 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc50487 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7da23b7a fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x805b2106 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8221a6bd fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x865d7fd2 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8de4b4f3 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9415fbd5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa5fa025f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6075281 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa8819b35 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaedf84ce fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb80e13b fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce5706ee fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd039f310 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe39f02ec fw_send_request +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 0xf7d68ff5 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xff37776f fw_iso_context_queue_flush +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 0x51ebdd42 imx_dsp_free_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0x6af78dda imx_dsp_request_channel +EXPORT_SYMBOL drivers/firmware/imx/imx-dsp 0xc7e223de imx_dsp_ring_doorbell +EXPORT_SYMBOL drivers/fpga/dfl 0x15331608 dfl_driver_unregister +EXPORT_SYMBOL drivers/fpga/dfl 0xb3bf1e42 __dfl_driver_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x01c4bba9 drm_dp_lttpr_max_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0312d7ae drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x049acab9 drm_dp_lttpr_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x06c49551 drm_dp_dsc_sink_line_buf_depth +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x09de57c7 drm_dp_pcon_pps_override_buf +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0b7e7409 drm_dp_read_desc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x0c853226 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1276df64 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x146e13c1 drm_dp_get_vc_payload_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1605d0ed drm_dp_lttpr_max_lane_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1693c570 drm_dp_mst_topology_state_funcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1709ddcf drm_dp_lttpr_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x17669d69 drm_dp_mst_connector_early_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1a5bf3ca drm_dsc_dp_rc_buffer_size +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b0a1fdc drm_dp_lttpr_voltage_swing_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x1b7aae3a drm_dp_mst_dsc_aux_for_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x23961837 drm_dp_downstream_max_bpc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x258219a9 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x26815dbc drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x294586b6 drm_dp_set_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x29497daf drm_scdc_set_high_tmds_clock_ratio +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2984fe79 drm_dp_read_sink_count_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a166717 drm_dp_read_lttpr_phy_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2a5e944d drm_hdcp_update_content_protection +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2c9a0ef4 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2e2c355b drm_scdc_set_scrambling +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f3e0186 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2f7714de drm_hdmi_infoframe_set_hdr_metadata +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2fa94ef2 drm_dp_downstream_444_to_420_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x2ff8c2a4 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x30a2aaf0 drm_dp_atomic_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x33e5b38e drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34b46114 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x34bfc567 drm_dp_mst_atomic_enable_dsc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x392a838b drm_dp_downstream_max_dotclock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3a8063f3 drm_dp_dsc_sink_supported_input_bpcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3bef9f0a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3e6295be drm_dp_read_downstream_info +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x3ec7e8bb drm_dp_pcon_convert_rgb_to_ycbcr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x40b945db drm_dp_send_query_stream_enc_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x42e023f7 drm_dp_pcon_hdmi_link_active +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4603c416 drm_dp_pcon_dsc_bpp_incr +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49b13e87 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x49efcc59 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4b1eb51e drm_dp_remote_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4cd6813f drm_dp_mst_connector_late_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x4e26171a drm_dp_stop_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5731880b drm_dp_mst_update_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x582f248e drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x58d8fcaa drm_dsc_pps_payload_pack +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x59f27ed7 drm_dp_pcon_enc_is_dsc_1_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5da99c1e drm_edp_backlight_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5e720cc6 drm_panel_dp_aux_backlight +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x5edbbdbd drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x60c71b12 drm_dp_vsc_sdp_log +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6188d30a drm_dp_read_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x62649321 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x63a477fb drm_dp_downstream_min_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x648d953b drm_dsc_dp_pps_header_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x65e13f05 drm_dp_dpcd_read_phy_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6615069e drm_dp_dsc_sink_max_slice_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6616a3a7 drm_dp_pcon_is_frl_ready +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x67a8bb55 drm_dp_pcon_frl_enable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x68d8dce7 drm_dp_downstream_is_tmds +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a4df8c5 drm_dp_128b132b_eq_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6a74b5db drm_dp_read_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6aacee47 drm_dp_128b132b_link_training_failed +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x6b53e216 drm_dp_downstream_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7053fa72 drm_dp_get_pcon_max_frl_bw +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x73011db0 drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7582b009 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x75932728 drm_dp_read_lttpr_common_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76427cc2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x76ff6644 drm_dp_lttpr_pre_emphasis_level_3_supported +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x7ff8d752 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x80fd146e drm_dp_mst_add_affected_dsc_crtcs +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x860acaac drm_dp_pcon_frl_prepare +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x86e672b6 drm_dp_read_mst_cap +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x88c2b7b3 drm_dp_atomic_release_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ab8adae drm_dp_downstream_id +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8b34326b drm_dp_mst_get_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8ca2d9e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8d701329 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e39eeb8 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x8e7a0ec2 drm_dp_pcon_frl_configure_1 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x92b9835e drm_dp_128b132b_cds_interlane_align_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x93e39f33 drm_dp_send_real_edid_checksum +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9846201b drm_dp_read_sink_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9d74a54c drm_dp_cec_set_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0x9eb16219 drm_hdmi_avi_infoframe_bars +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa1fefe6a drm_dp_psr_setup_time +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa28487c3 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa45b90ff drm_dp_read_dpcd_caps +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xa93e8540 drm_dp_pcon_hdmi_link_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaa778af0 drm_dp_cec_unregister_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaacf855a drm_dp_pcon_reset_frl_config +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xad0d3c4b drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf267620 drm_dp_lttpr_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xaf9c0595 drm_dp_cec_register_connector +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb23938a8 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb3643b46 drm_dp_pcon_frl_configure_2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb43f3119 drm_dp_pcon_pps_override_param +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb4dea352 drm_dp_get_phy_test_pattern +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6684ac7 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb6e18950 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb7af9fd4 drm_dp_downstream_debug +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xb85cad71 drm_scdc_get_scrambling_status +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbcbc27ee drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf0b8261 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xbf4f1c1b drm_dp_mst_put_port_malloc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc020c0c1 drm_dp_pcon_dsc_max_slice_width +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc04d20af drm_dp_cec_irq +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc204e43a drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc53538b5 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc5c99a79 drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc79ecffb drm_dp_downstream_is_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc7b3a9ca drm_dp_downstream_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc83a021a drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc8b6a8ae drm_dp_128b132b_lane_channel_eq_done +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xc9ca09f3 drm_edp_backlight_set_level +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xccf54d5e drm_dp_get_adjust_tx_ffe_preset +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd05db687 drm_dp_aux_init +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd112cfd4 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1406b33 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd1e74b2c drm_hdmi_avi_infoframe_colorimetry +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd5a95eae drm_dp_128b132b_lane_symbol_locked +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xd91fc3bc drm_dp_dpcd_probe +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde0f5e46 drm_dp_start_crc +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xde54ea79 drm_dp_mst_atomic_check +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xdf1fbc0b drm_scdc_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe5360b84 drm_dp_pcon_dsc_max_slices +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xe567e46f drm_connector_attach_content_protection_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xeb6a1582 drm_hdmi_avi_infoframe_content_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedcf81ce drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xedf1deaf drm_dp_pcon_pps_default +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf0e56254 drm_edp_backlight_disable +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf17b925a drm_atomic_get_mst_topology_state +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf1fed20b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf41a7b4c drm_dp_pcon_hdmi_frl_link_error_count +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf68741fb drm_dp_subconnector_type +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf689ad25 drm_dp_downstream_420_passthrough +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xf8321d2f drm_dp_send_power_updown_phy +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb15915e drm_dp_cec_unset_edid +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfb1a7a5a drm_dp_downstream_rgb_to_ycbcr_conversion +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfe12bcb9 drm_dsc_compute_rc_parameters +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfea5da5e drm_dp_128b132b_read_aux_rd_interval +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfebac8a1 drm_dp_set_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xff6ecce2 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfff40deb drm_scdc_read +EXPORT_SYMBOL drivers/gpu/drm/display/drm_display_helper 0xfff5193c drm_edp_backlight_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0065974a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0143cbd7 drm_dev_has_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x017325b3 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d0d044 drm_print_regset32 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x021296bc drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022181bb drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x022fe301 drm_connector_set_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c63897 __drm_get_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03c709d2 drm_vblank_work_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04826670 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x055afbbb drm_panel_of_backlight +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056749e1 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x061b3614 drm_bridge_chain_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06533a8f drm_connector_attach_privacy_screen_provider +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06625c4d drm_connector_list_iter_begin +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070397ae drm_writeback_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fb449a drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x098e99ec drm_gem_dmabuf_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bc822e5 drm_bridge_chain_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0beaa5ef drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7d627e drm_gem_prime_import_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb656d6 drm_client_modeset_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d1ef2a5 drm_connector_init_with_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9b4753 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e0ea76a drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2b0c74 __drmm_crtc_alloc_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ea971df drm_mode_create_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb7f5eb drm_privacy_screen_lookup_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f58032d 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 0x100041b5 drm_plane_get_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0x101b9782 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10503c3d drm_crtc_set_max_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10e3fce9 drm_event_reserve_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x111c98be drm_get_edid_switcheroo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114b8420 drm_add_override_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c1e22d drm_client_modeset_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x161c83cf drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162df9c5 drm_mode_is_420_also +EXPORT_SYMBOL drivers/gpu/drm/drm 0x162f7552 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166aeb45 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1681dba7 drm_aperture_remove_conflicting_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x168ddbeb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x174364f4 __drmm_add_action +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1805608d drm_connector_set_panel_orientation_with_quirk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194df864 drm_plane_create_zpos_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1980995b drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a411479 drm_syncobj_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b0aff7e drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d83c926 drm_vblank_work_cancel_sync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e2e6583 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e65797c drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1facf739 drm_vblank_work_schedule +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20cf2193 drm_gem_map_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2170b36c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2183c08c drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x218e3c75 drm_property_blob_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e32e42 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22389773 drm_gem_unmap_dma_buf +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23ab94da drm_atomic_nonblocking_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24993e50 drm_edid_are_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24cf437a drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24d124ac drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25999ecb drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25ae460a drm_privacy_screen_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25daad93 __drm_mm_interval_first +EXPORT_SYMBOL drivers/gpu/drm/drm 0x263b7bd9 drm_mode_create_dp_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e3cd32 drm_send_event_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f6c48a drm_mode_create +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 0x28b00874 drm_gem_lock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c48eee drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x290c4399 drm_connector_attach_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f078d1 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a676346 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a962499 drm_mm_scan_init_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa44c5a __drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1a8fe2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b93cff9 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bfe8f68 drm_client_framebuffer_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cbd4ad3 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d6b73f0 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d841434 drm_crtc_vblank_helper_get_vblank_timestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d994435 drm_connector_update_privacy_screen +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2deefa09 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebd3289 drm_modeset_lock_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed3c600 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f35fbb9 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f476172 drm_privacy_screen_lookup_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x302e8453 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x319ad42c drm_connector_attach_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a53329 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31b8a5e3 __drm_set_edid_firmware_path +EXPORT_SYMBOL drivers/gpu/drm/drm 0x329ac407 drm_atomic_bridge_chain_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32a0cc37 drm_print_bits +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33292776 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x340f5508 drm_syncobj_get_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34166571 drm_release_noglobal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35f7c452 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3632b4e7 drm_send_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x366a3f86 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36d86512 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37c34273 drm_client_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38690d99 drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a15f3b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a16fc16 drm_mode_validate_driver +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ab87110 drm_mode_equal_no_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b054b8e drm_of_crtc_port_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0e5e9c __drm_puts_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b17bc12 drm_client_rotation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4b1ef1 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b82b1f4 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c22a4d8 drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdc37e9 drm_edid_to_speaker_allocation +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e1eff87 drm_client_modeset_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e238080 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f405489 __drm_printfn_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f8c9b6d drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fed8503 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4122113d drm_dev_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41bb6913 drm_state_dump +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41cbae5c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420cbfed drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42508374 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4301abb2 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4403a9c3 drm_mode_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4462cac0 drm_property_replace_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44820a0f drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a2cadb drm_prime_sg_to_dma_addr_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44bce638 drm_panel_unprepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4545c7ee drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4575a0ca drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831da6e drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bb889d drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49391556 drm_event_cancel_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49cc92b7 drm_connector_attach_content_type_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a0cf6ae drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a2b9a21 drm_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a35d30d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae041ec drm_plane_create_zpos_immutable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7ebf95 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b994fff drm_gem_map_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4be8c7ae drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c3f6f7e drm_mode_object_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfa0721 drm_writeback_queue_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6d430c drm_client_buffer_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3647bc drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e70e9be drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ec3ed4d drm_sysfs_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f11006c drm_atomic_private_obj_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f18a150 __drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500d7a34 drm_encoder_init +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 0x5279d1aa devm_aperture_acquire_from_firmware +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53ce3d9d drm_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5490e080 drm_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x551dd703 drm_writeback_get_out_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56b5ab9c drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56e09f50 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57698a50 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5772656e drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58bdf037 drm_gem_dmabuf_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59056243 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x591c5cf2 drm_edid_get_panel_id +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593b5384 drm_plane_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a77608f drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad476c9 drm_hdmi_avi_infoframe_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bfc4ebc drm_writeback_cleanup_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c12d934 drm_crtc_accurate_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6fc009 drm_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dd8987e drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f7985a5 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fa6b800 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ffb109d drm_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x604517f8 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6192a8b8 __drmm_add_action_or_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x619d812d drm_client_modeset_commit_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x620777a8 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x626895ec drm_bridge_chain_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fcc570 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6420094e drm_gem_map_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cd2bfe drm_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65702bd6 drm_default_rgb_quant_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65db17da drmm_mutex_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6661677f drm_display_mode_from_cea_vic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6671bb7e drm_gem_dma_resv_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0x681b62b2 drm_atomic_get_old_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x687a8214 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a0885ce drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1a0f74 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a558566 drm_send_event_timestamp_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac01ea8 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca64f82 drm_writeback_signal_completion +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de52e12 drm_framebuffer_plane_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e44a05c drm_connector_attach_hdr_output_metadata_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e78e5ea drm_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9b2dc4 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef2f78e drm_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70080bbe drm_mode_create_hdmi_colorspace_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b053d3 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x713980e2 drm_writeback_prepare_job +EXPORT_SYMBOL drivers/gpu/drm/drm 0x726af8b0 drm_dev_enter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f32149 drm_connector_list_iter_end +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73eea4e3 __devm_drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73f5bbf0 drm_connector_attach_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7447a58d drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74648ad9 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74664bc0 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x747a3e57 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x754e074c drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b60a42 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76dcb45e drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773cc738 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x775ee880 drm_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77f359b4 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786d25e3 drm_client_modeset_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78fdb9f4 drm_writeback_connector_init_with_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a28e336 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b2e2166 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c545285 drm_edid_get_monitor_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d819642 drm_syncobj_get_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd01cdd drm_connector_create_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5f836c drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e65b3f2 drm_mode_is_420 +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ead14ff drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7edf470b drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fc4fa75 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fd8b5da drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80de3684 drm_atomic_add_encoder_bridges +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811d8ea6 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8121aa6b drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82b71009 drm_privacy_screen_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bf89b6 drm_privacy_screen_set_sw_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c0809e drm_any_plane_has_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85056838 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x850700a3 drm_gem_objects_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85976eb4 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a9c2be drm_plane_create_alpha_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8683466d drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8710f24d drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87359ab5 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8746b001 drm_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87755616 drm_dev_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88169891 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x888367ed drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89357816 __drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8940f446 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89acc6fa drm_crtc_vblank_waitqueue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89b20f8e drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8add222e __drmm_universal_plane_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af66a46 drm_ioctl_kernel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd66fa1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bdd4a2b drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d72789e drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd347e5 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de9cece drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f31c82e drm_syncobj_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90cd01c0 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x927b485a drm_color_lut_check +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9522a0e8 drm_syncobj_add_point +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952a9d54 drm_privacy_screen_register_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96844039 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97072605 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a6ac66 drm_privacy_screen_call_notifier_chain +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98296e57 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99130fa3 drm_gem_dmabuf_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x999aa9e2 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ecd635 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a9165ba drm_privacy_screen_get_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b11d751 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b285573 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b95c885 drm_mode_match +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9de1c1 drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c144d40 drm_gem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc921a7 drm_privacy_screen_unregister_notifier +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce050be drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ce3609e drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d7c89c0 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d918b98 drm_atomic_get_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb4dd9a drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ecc7d68 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f776b19 of_drm_get_panel_orientation +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa070e2cf drm_crtc_vblank_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa16cfae2 drm_mode_object_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1e6a8f6 drm_atomic_print_new_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa248afde drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2a8e3ea drm_connector_oob_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2c10670 drm_atomic_normalize_zpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa314ff3f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa31a25a9 drm_atomic_get_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3708477 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa38c4c94 drm_memcpy_from_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ccddc6 drm_modeset_lock_single_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5ae1efb drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5debe4d drm_client_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a6a8dc drm_is_current_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa869707c drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8cd6373 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa906372a drm_connector_attach_dp_subconnector_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa93ea3cf drm_atomic_get_new_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa7e78c6 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa97f291 drmm_kfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab09cfd0 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacd293d9 drm_atomic_private_obj_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad4e902b drm_color_ctm_s31_32_to_qm_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad75cef8 drm_gem_dmabuf_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae164493 drm_atomic_get_old_connector_for_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae277372 __drm_crtc_commit_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae45c881 drm_object_property_get_default_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae63d642 drm_dev_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7876b7 drm_property_blob_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0b05ff5 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb119a5c0 drm_atomic_get_new_private_obj_state +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 0xb293f393 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2962eb1 drm_privacy_screen_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2bd091a drm_atomic_get_new_bridge_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3a24580 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3de3219 drm_panel_get_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4032484 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4065ce3 drm_vblank_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb48411c3 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6127243 drm_need_swiotlb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb62dc7cb drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb631429c drm_atomic_get_old_private_obj_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f969ab drm_syncobj_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8276664 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83c51c1 drm_gem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9cad492 __drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4171f6 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb69f3d8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd06c712 drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe1a1b9a drm_crtc_commit_wait +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00636df drm_atomic_bridge_chain_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1642c4d drm_connector_attach_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1da2f0b __drmm_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b29a76 drm_connector_list_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3a90b70 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4668b54 drm_connector_set_vrr_capable_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b3eed5 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5b44534 drm_connector_has_possible_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6491659 drm_mode_create_tv_margin_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc69aa9c8 drm_panel_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e2d05a drm_master_internal_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e4c07f drm_plane_from_index +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 0xc82982eb drm_get_format_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8a2fac9 drm_connector_atomic_hdr_metadata_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8d71ad0 drm_connector_attach_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9365e45 drm_plane_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc96b8535 drm_plane_create_blend_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc99e76c6 drm_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9cf414d drm_client_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca190085 drm_format_info_block_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcac2685d drm_mode_is_420_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc59bdb4 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccc59759 drm_format_info_block_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdb99cc9 drm_mode_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce3fc54a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf3df047 drm_plane_enable_fb_damage_clips +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdb9b7c drm_connector_attach_privacy_screen_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd01d382c drm_crtc_from_index +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 0xd23f4f8d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd31d6a19 drm_aperture_remove_conflicting_pci_framebuffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46fafb9 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd53117b7 drm_dev_unplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5a49ce1 drm_framebuffer_plane_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd680a377 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd75c9e84 drm_plane_get_damage_clips_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7a9cf42 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7cd6b2d drm_client_framebuffer_flush +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8443466 drm_syncobj_find_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84bbf50 drm_property_replace_global_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd853fd72 drm_event_reserve_init_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdaf54cb1 drmm_kmalloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb7fb207 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbce08f7 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc2cc90e drm_plane_create_color_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc376a97 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc90cc86 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd94e7ab drm_client_buffer_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde276b8a drm_prime_sg_to_page_array +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde2ff838 drm_atomic_bridge_chain_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde9b58ae drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf3f760d drm_mm_scan_color_evict +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf8538e8 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfd7ba27 drm_mode_put_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfdf3197 drm_master_internal_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe00c8615 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04f04f2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe057230a drm_sysfs_connector_status_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1477a5f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe170c397 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1a142b0 drm_syncobj_replace_fence +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c1c757 drm_atomic_bridge_chain_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2828e9c drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2dc3592 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe317082a __drm_printfn_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33b0174 drm_crtc_create_scaling_filter_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe81f1422 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8470101 drm_mode_validate_ycbcr420 +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 0xe8aa3f38 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9cec4e8 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea00fe81 __drm_printfn_coredump +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb5e12fe drm_panel_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb6bdbae drm_atomic_bridge_chain_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf2997c drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec12af74 __drm_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9e4947 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6ed54b drm_connector_attach_max_bpc_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef5b2ae5 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefe328d1 drm_crtc_vblank_helper_get_vblank_timestamp_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0517d7a drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf052d3c4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e5c4be drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf13a3eeb drm_panel_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1659461 drm_client_dev_hotplug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1b5340a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1fa37ba drm_connector_set_link_status_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dfe08e drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf406e46a drm_get_connector_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4de89c9 drm_file_get_master +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65d6a50 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf824c7db __drm_printfn_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf850f333 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9143ba0 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9625300 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9addf7f drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9cf203f drm_dev_dbg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb62d0f4 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8d5504 drm_privacy_screen_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc7cc497 drm_gem_unlock_reservations +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdb2764f drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdda2a55 drm_driver_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe727ad4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeab6da2 drm_client_framebuffer_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfeb953b1 __drm_printfn_seq_file +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff0b8d75 drm_gem_prime_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff3e9cf1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0x032f9459 drm_gem_cma_prime_import_sg_table_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_cma_helper 0xa670a37d drm_gem_cma_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00caa0a6 drm_gem_fb_create_handle +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e28ba3 drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03934ddd drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f8b8c1 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07160478 drm_atomic_helper_async_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07ed42b5 __drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09f1a6f8 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b02c208 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b4d1f92 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d9af819 __drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e92b284 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f7966c6 drm_atomic_helper_commit_tail +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x127a8c6b drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x145832fe drm_self_refresh_helper_alter_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16dade2e drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x173dede2 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18f49f37 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b1c84e8 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c20bf28 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c4b6bae drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2111ec04 drm_connector_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21d541eb drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22d92893 drm_fb_helper_fill_info +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23102be6 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23c178c2 drm_fb_xrgb8888_to_rgb888 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23dcc4ad drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25057593 drm_atomic_helper_fake_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25331f09 drm_helper_probe_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x263360c0 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27d20cd7 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc20ead drm_fb_helper_set_suspend_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc2e36b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e9079d8 drm_fb_helper_output_poll_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f89fe88 drm_panel_bridge_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x320377e3 __drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325bc127 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33ce8531 drm_helper_force_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34deaddf __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37bd6024 drm_atomic_helper_bridge_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39ae3f44 drm_fb_xrgb8888_to_gray8 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39c6f5af drm_self_refresh_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dc1958e drm_gem_fb_end_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x410fe194 drm_gem_simple_kms_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4161f84f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4255e5b6 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x427f81d8 drm_kms_helper_connector_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4385d99b drm_atomic_helper_commit_tail_rpm +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44294854 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4435d7df drm_simple_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x456a3fb7 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c67a9c drm_fb_blit_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x480e3884 drm_gem_fb_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4991cc68 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49efe1e6 drm_gem_fb_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd0b0fe drm_atomic_helper_wait_for_fences +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5004c1e5 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x508d6e0a devm_drm_panel_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512570a5 drm_fb_xrgb8888_to_rgb565_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5542443b drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x559d5120 drm_atomic_helper_disable_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5773ce76 drm_simple_display_pipe_attach_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57be9904 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58f5cb41 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x598aebe3 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a254c88 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a4734d1 drm_kms_helper_is_poll_worker +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8c4bb6 drm_atomic_helper_wait_for_flip_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d63b0be __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6112a84b __drm_atomic_helper_private_obj_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63712229 __drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6425e905 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6547a405 __drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x682bf749 drm_fb_helper_lastclose +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6918bdeb drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a7571f7 __drmm_simple_encoder_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b5c2b06 drm_atomic_helper_damage_iter_next +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cc7037c drm_fbdev_generic_setup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d4cde55 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e2e0e16 drm_atomic_helper_commit_hw_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e875740 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x718f90a1 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x719dc59a drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7238f4be drm_atomic_helper_connector_tv_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72b020c8 drm_atomic_helper_shutdown +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73af7c7e drm_gem_simple_kms_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ac15bf drm_atomic_helper_check_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74c6b15f __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74f5c4f3 __drm_atomic_helper_connector_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776e7f2c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77b95247 drm_atomic_helper_commit_duplicated_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78b18e63 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a047569 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c285e0e drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cf479eb drm_gem_simple_kms_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7fc5f193 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81256a71 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8345ccb2 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83a7f6e1 devm_drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x842dd90c drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86833c05 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86878669 drm_fb_memcpy_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883fdb85 drm_atomic_helper_bridge_propagate_bus_fmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88bb2409 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ab7a398 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b8e7a43 drm_gem_simple_kms_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c2eaec0 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e716069 drm_panel_bridge_add_typed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9042a950 drm_mode_config_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92f55b4c drm_atomic_helper_commit_cleanup_done +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ac0bba drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c96dfd drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x941dfb97 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x946cc43a drm_panel_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a6d552 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95816103 drm_atomic_helper_bridge_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96476eeb drm_gem_simple_kms_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9706f5f4 drm_atomic_helper_damage_merged +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x972a6b0a drm_atomic_helper_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9811d1a6 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99fd20aa drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cdc633e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d009ec5 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e9b866c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6249bbd drm_self_refresh_helper_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa93e81bd drm_atomic_helper_dirtyfb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9cf5fca __drm_gem_destroy_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf22a17 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf8917f drm_fb_swab +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb173f0f8 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2209286 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb466be13 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4b76603 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb579b636 drm_simple_display_pipe_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5ba3d33 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb738d7ef drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7ae9388 drm_fb_xrgb8888_to_rgb332 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb870f6f8 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbabda6cd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb2a3293 drm_gem_fb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb9bd066 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc3e22f1 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd767f4f drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe84097d drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf2db208 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc03a514c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0808c36 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0dd2197 drm_gem_prepare_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1134d10 drm_gem_cleanup_shadow_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc170024b drm_atomic_helper_check_plane_damage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc250ffec drm_mode_config_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc25ac11b drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc29a276c drm_fb_memcpy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2dc53a9 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc35f5d15 drm_gem_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc37a6af1 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6323239 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc80d8bc0 drm_atomic_helper_page_flip_target +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e3ce7f __drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc5ba6db drm_fb_xrgb8888_to_rgb565 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcde87064 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xceaec52e drm_atomic_helper_damage_iter_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf11a549 drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfd4352d drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd037d43f drm_fb_xrgb8888_to_xrgb2101010_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd06c29ce drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd380aea4 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4652c08 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd56060ec drm_atomic_helper_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd855e9dc drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd879c613 drm_atomic_helper_setup_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8e007a6 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9e5cdcb drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb05a88e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbeb653c drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcf0e2b7 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde760ffa drm_fb_xrgb8888_to_mono +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdf9a8341 drm_self_refresh_helper_update_avg_times +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe015f48d drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1e90f05 drm_fb_helper_deferred_io +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe27a53e5 drm_gem_reset_shadow_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6348386 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6b1f109 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe83b8438 devm_drm_of_get_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9eee187 drm_gem_duplicate_shadow_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea48fe8b drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeae8e437 drm_fb_helper_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee7deef0 __drm_atomic_helper_crtc_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeec05725 drm_atomic_helper_wait_for_dependencies +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1a5a639 drm_atomic_helper_bridge_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2a1c430 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf30db916 drm_fb_clip_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d85e51 __drm_atomic_helper_plane_state_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd72bb96 drm_fb_xrgb8888_to_rgb888_toio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfea98788 drm_gem_fb_begin_cpu_access +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x0cd101c3 mipi_dbi_pipe_update +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x2264c7fa mipi_dbi_command_read +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x52f5c9a1 mipi_dbi_display_is_on +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x8f389df4 mipi_dbi_spi_cmd_max_speed +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0x98800521 mipi_dbi_poweron_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xa1c49520 mipi_dbi_poweron_conditional_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xac935b8e mipi_dbi_command_buf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xae45c7d1 mipi_dbi_buf_copy +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc80467de mipi_dbi_command_stackbuf +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xc92c28f1 mipi_dbi_hw_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xcdefc53f mipi_dbi_dev_init_with_formats +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe78af8f5 mipi_dbi_spi_transfer +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xe932c427 mipi_dbi_spi_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xef84f646 mipi_dbi_pipe_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf553c262 mipi_dbi_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xf90e3991 mipi_dbi_enable_flush +EXPORT_SYMBOL drivers/gpu/drm/drm_mipi_dbi 0xfa954d6a mipi_dbi_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x0a40b413 drm_gem_shmem_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x12edcd04 drm_gem_shmem_unpin +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x4d4d8d4a drm_gem_shmem_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5367af01 drm_gem_shmem_madvise +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x5b06248f drm_gem_shmem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x7dcea958 drm_gem_shmem_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0x95a93564 drm_gem_shmem_purge +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xc341df62 drm_gem_shmem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xcc1b1929 drm_gem_shmem_purge_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_shmem_helper 0xe9058111 drm_gem_shmem_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x2c4e0dc5 drm_gem_ttm_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0x7b39cd8a drm_gem_ttm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xd514886a drm_gem_ttm_print_info +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe16a7717 drm_gem_ttm_dumb_map_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_ttm_helper 0xe3038f15 drm_gem_ttm_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x074fd883 drm_gem_vram_put +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x0785fe02 drm_gem_vram_pin +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x19973b4a drm_vram_mm_debugfs_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x23e05d9f drm_gem_vram_offset +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x26306df9 drm_gem_vram_vunmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x34367dde drm_gem_vram_vmap +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5605a484 drm_vram_helper_mode_valid +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x5bb08e35 drm_gem_vram_plane_helper_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x60b8a846 drm_gem_vram_plane_helper_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6a31993f drm_gem_vram_driver_dumb_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x6b437363 drm_gem_vram_create +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x77b7b27c drm_gem_vram_simple_display_pipe_prepare_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x7953cda3 drm_gem_vram_simple_display_pipe_cleanup_fb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0x9ef9f969 drmm_vram_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xa7e9f71b drm_gem_vram_fill_create_dumb +EXPORT_SYMBOL drivers/gpu/drm/drm_vram_helper 0xacaf48eb drm_gem_vram_unpin +EXPORT_SYMBOL drivers/gpu/drm/rockchip/rockchipdrm 0xb6525268 rockchip_drm_wait_vact_end +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x18fd93cc drm_sched_pick_best +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2319841b drm_sched_entity_flush +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x24c66e29 drm_sched_job_add_dependency +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x272856fb drm_sched_entity_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2cf9f73a drm_sched_suspend_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x2fe98c48 drm_sched_start +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x32b9849d drm_sched_job_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x3827a9b2 drm_sched_entity_set_priority +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x422fba58 drm_sched_dependency_optimized +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4d3e3bf5 drm_sched_resubmit_jobs +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x4efc0f18 drm_sched_entity_push_job +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x6dca0afa drm_sched_increase_karma_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x70d6ea88 drm_sched_resume_timeout +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7a540973 drm_sched_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x7b333878 drm_sched_entity_init +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0x88693467 drm_sched_entity_destroy +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xa0ec4358 drm_sched_resubmit_jobs_ext +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xad48ca30 drm_sched_reset_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xc3739761 drm_sched_job_add_implicit_dependencies +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd16557f7 drm_sched_fini +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xd3a3b577 drm_sched_increase_karma +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xdb0d5dc7 drm_sched_entity_modify_sched +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xe55f01b6 to_drm_sched_fence +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xeb8ac8a9 drm_sched_stop +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xfb49f4b7 drm_sched_fault +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xffd6c575 drm_sched_job_cleanup +EXPORT_SYMBOL drivers/gpu/drm/scheduler/gpu-sched 0xffdf552a drm_sched_job_arm +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x1bf57fb0 sun4i_frontend_enable +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x2bf4581c sun4i_frontend_update_coord +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x4affb011 sun4i_frontend_update_formats +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x6722b0b3 sun4i_frontend_update_buffer +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0x692f1d46 sun4i_frontend_init +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 0xb84ba5e1 sun4i_frontend_exit +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-frontend 0xe13164ef sun4i_frontend_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x2ce817a4 sun4i_dclk_free +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x3766644e sun4i_tcon_mode_set +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x6c10c7a7 sun4i_tcon_of_table +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0x97d82aa5 sun4i_lvds_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xbd8c6ae1 sun4i_rgb_init +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xdd0c9ad6 sun4i_dclk_create +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun4i-tcon 0xebe10a18 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 0xd25ea6a3 sun8i_tcon_top_set_hdmi_src +EXPORT_SYMBOL drivers/gpu/drm/sun4i/sun8i_tcon_top 0xd62ffb74 sun8i_tcon_top_de_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04cf1105 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05f9b25d ttm_device_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05fdba56 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0ffbe710 ttm_bo_vunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16d34814 ttm_bo_set_bulk_move +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a71d30c ttm_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bf08618 ttm_bo_init_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25dcd613 ttm_pool_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x281e87b5 ttm_pool_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3250f36f ttm_bo_vm_access +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33f6438d ttm_lru_bulk_move_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x371c18c7 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3ef63240 ttm_bo_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3eff2cc9 ttm_resource_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x424f4cdf ttm_range_man_init_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x490549e1 ttm_bo_vm_fault_reserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49b84bcc ttm_bo_vm_close +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e528555 ttm_bo_vm_open +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50dc21e3 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53c62c95 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58726314 ttm_resource_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5933f8bd ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62ec60eb ttm_kmap_iter_iomap_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x655399f4 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65a32e86 ttm_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6789b306 ttm_lru_bulk_move_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6862e3fe ttm_bo_vm_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fc3dc3f ttm_bo_pin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a4efb38 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a50ac93 ttm_bo_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d625a98 ttm_glob +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x82c8a9ef ttm_global_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84344acb ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9378b86f ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x967a803e ttm_resource_manager_create_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x969d77eb ttm_bo_vm_fault +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d27b4f6 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0541a22 ttm_bo_eviction_valuable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1ec6b26 ttm_bo_move_sync_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xabc32eb0 ttm_resource_manager_debug +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae3447de ttm_resource_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb12eff48 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb22989d6 ttm_device_swapout +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3fc6cb5 ttm_pool_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb786deb6 ttm_bo_unpin +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7a01570 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4129d73 ttm_resource_manager_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6163c1a ttm_resource_manager_usage +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfa88e46 ttm_sg_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd490b1c7 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd615270d ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd651dbf2 ttm_resource_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd700b6ef ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7a213e4 ttm_bo_vm_dummy_page +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd850cfb3 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8871d0a ttm_device_clear_dma_mappings +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe0d0edb2 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1655082 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee2cd382 ttm_kmap_iter_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee783f69 ttm_resource_manager_evict_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf53cecda ttm_range_man_fini_nocheck +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5c9a981 ttm_bo_vmap +EXPORT_SYMBOL drivers/gpu/drm/vmwgfx/vmwgfx 0x1984f833 ttm_base_object_noref_lookup +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1241cf30 host1x_syncpt_release_vblank_reservation +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x17b2c704 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x27a0fc97 host1x_syncpt_get_by_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x30e36fc7 __host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3af391c5 host1x_bo_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x3b44496a host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43bc191c host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4ca15839 host1x_client_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4f42b609 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4fd3948d host1x_fence_create +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5174ef5b host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x51de13ce host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x5559cd48 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x574df9ad host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x586ecb3d host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x61e99816 host1x_job_add_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x62dde1b1 host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x637aa3d9 host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6d95a312 host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x700555d1 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x72e78e54 tegra_mipi_start_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x73076110 host1x_channel_stop +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x778375dd host1x_client_suspend +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x7e9fefc7 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x87505168 host1x_client_resume +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x98c79938 host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9e2cb810 host1x_job_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa2308fe1 host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa25ff9eb host1x_syncpt_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa41c48ec host1x_bo_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa733ff60 tegra_mipi_disable +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa9c76c1c host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xacfb212d host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb2bd6806 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbcbe65a0 tegra_mipi_finish_calibration +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc03ca0ff host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc1ae2038 host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc3937ef1 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc46e1d7b host1x_syncpt_get_by_id_noref +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca10c913 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca63fc16 __host1x_client_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xca997367 host1x_get_dma_mask +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcbe81f13 host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xce38ff49 host1x_syncpt_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xd81d98e6 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe6dda790 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf8a79b19 tegra_mipi_enable +EXPORT_SYMBOL drivers/hid/hid 0x833f5de1 hid_bus_type +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x4ce4a1de vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x6dc4f2a0 vmbus_sendpacket_getid +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9ce18bf9 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 0x5220204f 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 0x2b247c6f i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x70b44a43 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x8eb94907 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x069e0121 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3e6db690 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x180ddff4 amd756_smbus +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x10a4c688 qcom_adc5_hw_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x1fcd0103 qcom_adc_tm5_gen2_temp_res_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x39885d6b qcom_adc_tm5_temp_volt_scale +EXPORT_SYMBOL drivers/iio/adc/qcom-vadc-common 0x401dc869 qcom_vadc_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 0xb948415d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbcec5d74 iio_triggered_buffer_setup_ext +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x321eb965 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5ed52506 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0x47377ee1 mpu3050_common_probe +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xe7f34ded mpu3050_dev_pm_ops +EXPORT_SYMBOL drivers/iio/gyro/mpu3050 0xf3ca0663 mpu3050_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x363a8e11 hts221_pm_ops +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x457cc718 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0x0fe190a7 bmi160_regmap_config +EXPORT_SYMBOL drivers/iio/imu/bmi160/bmi160_core 0xca19cfae bmi160_enable_irq +EXPORT_SYMBOL drivers/iio/imu/fxos8700_core 0x67575cf1 fxos8700_regmap_config +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x3c240c94 st_lsm6dsx_pm_ops +EXPORT_SYMBOL drivers/iio/imu/st_lsm6dsx/st_lsm6dsx 0x44f50cc8 st_lsm6dsx_probe +EXPORT_SYMBOL drivers/iio/industrialio 0x050cf347 __iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x072cfe52 iio_trigger_using_own +EXPORT_SYMBOL drivers/iio/industrialio 0x14d8887e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x281d362f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2ba613cb iio_get_time_ns +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2ef215dd iio_trigger_validate_own_device +EXPORT_SYMBOL drivers/iio/industrialio 0x3d23687d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x439001e1 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x490a4aeb iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x50bfb107 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x60b2fa9e iio_device_get_clock +EXPORT_SYMBOL drivers/iio/industrialio 0x8f43b1d7 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x9413658a iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xa235fb02 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xb50601bc iio_trigger_set_immutable +EXPORT_SYMBOL drivers/iio/industrialio 0xb6dae513 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xd3248eb8 iio_get_time_res +EXPORT_SYMBOL drivers/iio/industrialio 0xd418fdd4 iio_device_set_clock +EXPORT_SYMBOL drivers/iio/industrialio 0xdac70d6f iio_read_mount_matrix +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe151d467 __iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xea203f7f iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xec1c827f iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xef2fcd2d iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio-configfs 0x158cf8c7 iio_configfs_subsys +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x56bdada9 iio_sw_device_create +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0x64d751df iio_register_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xdcd95c6e iio_sw_device_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-device 0xeb09cdbe iio_unregister_sw_device_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x49c5d13c iio_register_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x648be5bc iio_unregister_sw_trigger_type +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0x65a93b7e iio_sw_trigger_destroy +EXPORT_SYMBOL drivers/iio/industrialio-sw-trigger 0xf97ea085 iio_sw_trigger_create +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdd744397 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xdf7a81a8 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x03f58472 bmp280_regmap_config +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x0ed3132e bmp280_common_probe +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0x66a3fc7a bmp280_dev_pm_ops +EXPORT_SYMBOL drivers/iio/pressure/bmp280 0xe9735910 bmp180_regmap_config +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0b93851f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2b62b4c5 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3b4ff5d8 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e2ccd21 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4873123a ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5f599ebd ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x69824a14 ibcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b8969e3 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7466f71c ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x81ac614d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8dda72f6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdaa4a1eb ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdea616d5 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdfa4f5f3 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe1cc419a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe723777a ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00cd25ea ib_get_rdma_header_version +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0154534a ib_init_ah_attr_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03d3a705 ib_get_device_fw_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x042a16ef __ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04515c0f ib_get_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05a3df7f rdma_rw_ctx_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x070002e3 ib_mr_pool_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x07e267cb ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08435beb ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08b38a72 rdma_link_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08e8ea96 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c86f5cb ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ceecf26 ib_get_eth_speed +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d3354a6 rdma_alloc_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d47b661 rdma_rw_ctx_post +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ed55fcd ib_mr_pool_destroy +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1102746f ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x132749f7 ibdev_crit +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x151525c8 ib_device_get_by_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1536297b rdma_nl_stat_hwcounter_entry +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16efb09e ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x18afa1e5 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b037462 __rdma_block_iter_start +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1babdb00 rdma_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e65ceef ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f15fa25 rdma_set_cq_moderation +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb053c7 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2244a4f9 rdma_hold_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x224838a5 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f13e85 ib_destroy_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23d765a9 ib_drain_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25001e70 ibdev_warn +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2675058b rdma_rw_mr_factor +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x274cf033 rdma_rw_ctx_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27e1d12d ib_create_qp_kernel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a1c697c rdma_restrack_set_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2aa9a280 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b63d1e5 ib_modify_qp_with_udata +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bcc8055 rdma_restrack_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c70eee9 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2dbbb16b rdma_read_gid_attr_ndev_rcu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3019abe6 rdma_user_mmap_entry_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x305e5701 rdma_addr_size_kss +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31917d6e ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31e1317c rdma_restrack_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31f38edb rdma_dev_access_netns +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32c83f10 rdma_rw_ctx_signature_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34d3536c rdma_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3964d358 rdma_find_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d5fe83c ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d635f32 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d6a9bca ib_advise_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3daff9f2 rdma_rw_ctx_destroy_signature +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3e86185e rdma_rw_ctx_wrs +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fc2387c ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x408e9eec rdma_umap_priv_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40aa0dc9 rdma_nl_unicast_wait +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 0x440e9a54 ib_dereg_mr_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44993287 rdma_move_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b59aed ib_dealloc_pd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45180a96 ib_process_cq_direct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45f1adca ibdev_err +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb8985 rdma_nl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47668682 rdma_query_gid_table +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4792488b ib_device_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47eeed2c rdma_user_mmap_entry_insert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49a99bbf ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b07a855 rdma_get_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bdab615 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c31e663 rdma_roce_rescan_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c36ea33 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4d99fe61 __ib_alloc_cq_any +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e155af0 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e15b031 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e75f884 ib_drain_rq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e90435c ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51b47670 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52f48cd8 rdma_nl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5474cf47 rdma_nl_put_driver_u32_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55bb02f3 ib_cache_gid_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56667918 rdma_nl_put_driver_u64 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56720f6e ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57a75838 rdma_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57bb79fa ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5840c73a ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58df5b94 ib_get_gids_from_rdma_hdr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59928b20 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5997c215 ib_drain_sq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bdeeee3 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5eee6fbd rdma_user_mmap_entry_remove +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60f7682e ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x610347e9 ib_destroy_srq_user +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 0x6987db5c ib_device_get_by_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a1a696d ib_reg_user_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a69c671 _ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ad9d1bc ibdev_emerg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6aff5ae7 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b9278dc ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b958320 ib_ud_ip4_csum +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ba81ade ib_get_vf_stats +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c66aee4 ib_set_vf_link_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c6e3d32 ib_dealloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f3614b6 rdma_is_zero_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7170be4e __ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73359f45 rdma_restrack_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73baf9a2 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74a58f70 rdma_nl_unicast +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 0x78e54478 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a077a4c ibdev_info +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a2bd61e ib_port_register_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5160f3 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7e2b3ea6 rdma_restrack_parent_name +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7eefdeca ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ef60eab ib_dma_virt_map_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f049ace ib_qp_usecnt_inc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8034af5e rdma_restrack_new +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82595490 rdma_nl_register +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82808834 ibdev_notice +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x841b8eb4 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84de633d ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86cef180 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86f61a1a roce_gid_type_mask_support +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87e06903 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890b2ca7 ibdev_alert +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8caf1038 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cb4de87 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d5007af ib_rdmacg_try_charge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d7471d5 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e7528da __rdma_block_iter_next +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f274d99 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90e807c7 ib_cache_gid_parse_type_str +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91871f75 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b9e7d3 ib_get_cached_port_state +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x948eab05 rdma_nl_put_driver_u32 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9517173e ib_mr_pool_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9551e621 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x958959f4 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97d789df ib_port_sysfs_get_ibdev_kobj +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97dac57b rdma_alloc_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9de2879b ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4e6b23 ib_port_unregister_client_groups +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fe6cc6d rdma_link_unregister +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0c026ec ibdev_printk +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa62443ae ib_init_ah_attr_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa93a60db ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac03f585 rdma_restrack_get_byid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac17a397 ib_mr_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae85671f rdma_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae956dce ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb161bc0d rdma_read_gid_l2_fields +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1de3acf rdma_move_grh_sgid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb222903d ib_set_vf_guid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb35c1dc1 rdma_copy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb36e4148 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3fb40e0 rdma_destroy_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb61f305c ib_destroy_cq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7852a05 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba076a88 ib_cq_pool_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbabdf299 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb73fdda ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbced508c rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdb95f5a rdma_create_user_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbea5c2e3 rdma_nl_put_driver_string +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04655fe rdma_replace_ah_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc19eea3a ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc2fb4179 ib_get_vf_config +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc35b1b56 ib_alloc_mr_integrity +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8d38664 rdma_free_hw_stats_struct +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc994aebf ib_free_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca2cc66a ib_rdmacg_uncharge +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc4713c8 rdma_read_gid_hw_context +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccee1f73 rdma_put_gid_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcdd856ed ib_device_set_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce6ab305 __ib_alloc_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf00d8d1 ib_alloc_xrcd_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfbc053b ib_unregister_driver +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd08efbe1 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6636ca6 rdma_addr_size_in6 +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd756e25e rdma_copy_src_l2_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7932a08 ib_create_qp_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd820b941 rdma_restrack_del +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd83064f3 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9837922 ib_unregister_device_queued +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb9d69f6 rdma_init_netdev +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd1198d7 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd4b6777 rdma_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde7f84d2 ib_create_qp_security +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf110c4c ib_create_wq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf167117 rdma_user_mmap_entry_get_pgoff +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf1bed00 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf22890a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe03d8337 rdma_user_mmap_entry_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe16339ee ib_unregister_device_and_put +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4eedc32 rdma_restrack_add +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 0xe825efe9 rdma_destroy_ah_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9e799fc ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb14bca5 ib_destroy_wq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec6b4f08 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed1e57b8 ib_qp_usecnt_dec +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea95f9e ib_create_srq_user +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf083dd90 ib_map_mr_sg_pi +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf29f63ed rdma_user_mmap_entry_insert_range +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3c78ebc ib_port_immutable_read +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf42ead6a ib_get_cached_subnet_prefix +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf483b0d3 ib_cq_pool_put +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 0xf94f341c rdma_user_mmap_io +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9ad3211 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab4e747 rdma_nl_put_driver_u64_hex +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb5762a2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe4fc170 ib_set_device_ops +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02bf6ea5 ib_register_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0cbfefed uverbs_uobject_put +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b1607a6 _uverbs_get_const_signed +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1b54bd5d ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x20d8d983 _uverbs_get_const_unsigned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x23af7ddd ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x246279dd uverbs_idr_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x2af77f3a ib_uverbs_flow_resources_free +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x31351932 uverbs_get_flags64 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x341234c8 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x349c2fcf ib_umem_stop_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3d0a9421 ib_umem_dmabuf_unmap_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x462163f2 uverbs_fd_class +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x495c5b66 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4ae0f253 flow_resources_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x4c7be5d5 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x55419a8d uverbs_copy_to_struct_or_zero +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x56ee81e6 ib_umem_dmabuf_get_pinned +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5d940dd2 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5f756f5d ib_umem_odp_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x615b5721 ib_umem_odp_alloc_implicit +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x615cf846 uverbs_destroy_def_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x63057f4b ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6ac75360 _uverbs_alloc +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x6d3b7789 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x857c67e3 ib_umem_dmabuf_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x95170eb3 flow_resources_add +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x9cac661c uverbs_copy_to +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa2dc7d5b ib_umem_find_best_pgsz +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xa5b08230 uverbs_get_flags32 +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xafac37bc ib_umem_get_peer +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb4424d3e ib_umem_odp_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xbde5c050 ib_unregister_peer_memory_client +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xc9b1d9f0 ib_umem_dmabuf_map_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd410d3ed ib_umem_odp_alloc_child +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd857ecab ib_umem_odp_map_dma_and_lock +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xdff82231 uverbs_uobject_fd_release +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xe2c0ccbf ib_uverbs_get_ucontext_file +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xec589fab uverbs_finalize_uobj_create +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xecb0d97a ib_umem_activate_invalidation_notifier +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x02081cdd iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4202ba1a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8befe2ca iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa63a908d iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad708146 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd0173e95 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf31736a1 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf3df871f iwcm_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf92dead8 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x08452692 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0ba8da0a rdma_connect_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0c0632e3 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0efc5b08 __rdma_create_kernel_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x18bba2da rdma_set_ack_timeout +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x19121b21 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x192da7bf rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x36731867 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f366d6c rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40bd2e2c rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46ac108c rdma_iw_cm_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4994c8d5 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4d854ccb rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x533e1d3b rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56cb99eb rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f95e0c0 rdma_lock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x696f51a4 rdma_read_gids +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x70654f36 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76d961ce rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78e1368b rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x829541b6 rdma_set_ib_path +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x852638ee rdma_unlock_handler +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x903d1882 rdma_reject_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x913c63ae rdma_consumer_reject_data +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa29fdb3e rdma_set_min_rnr_timer +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaa661956 rdma_create_user_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb9ce8c13 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbdfb47b5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc40a7b17 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd7f7cb57 rdma_accept_ece +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd9302f16 rdma_connect_locked +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe640adab rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2e9fbe9 rdma_res_to_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf8fcdb02 rdma_reject +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x0718d226 rtrs_clt_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x170ff3e8 rtrs_clt_request +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x194ea7ce rtrs_clt_get_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x33e834f9 rtrs_clt_rdma_cq_direct +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x450b8240 rtrs_clt_query +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x4fa09f75 rtrs_clt_open +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-client 0x9056dba6 rtrs_clt_put_permit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x1ac048ee rtrs_rdma_dev_pd_deinit +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-core 0x21714396 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 0x606324fa 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 0xb9e26149 rtrs_ib_dev_put +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x0290d231 rtrs_srv_resp_rdma +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x17c4c914 rtrs_srv_set_sess_priv +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0x2bbc216a rtrs_srv_get_path_name +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa3484040 rtrs_srv_close +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xa67faa24 rtrs_srv_get_queue_depth +EXPORT_SYMBOL drivers/infiniband/ulp/rtrs/rtrs-server 0xb8c9c41f rtrs_srv_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0c392383 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x70c61974 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8dedac36 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xac9ab650 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb1267d1d gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbdd3adf9 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc13fbd03 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc7c1eb97 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf7002eb8 gameport_close +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x88bcab09 iforce_init_device +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0x9d4f9d85 iforce_send_packet +EXPORT_SYMBOL drivers/input/joystick/iforce/iforce 0xa69f04b4 iforce_process_packet +EXPORT_SYMBOL drivers/input/matrix-keymap 0xbf0a5e98 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x082453c9 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xefdb6ef4 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf2975486 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x34ecce2f 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 0x2e881051 rmi_unregister_transport_device +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a3a6ce0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x647161da sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7a435249 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcfdb48c5 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd77b7b74 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5838ebaa ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa7ebed1c ad7879_pm_ops +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0x7bc66082 qnoc_probe +EXPORT_SYMBOL drivers/interconnect/qcom/icc-smd-rpm 0xc601b395 qnoc_remove +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x66e55971 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x93ad7325 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcebbdc62 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcf1fa6ee detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe5558989 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 0x2721c08d mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x96871d70 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xba174f69 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd4ab924e mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x064fe993 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x42e4ec11 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03a68066 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x07b88e9d get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x182ae918 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26236de8 mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x30d25b0d mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x313b1fde mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35270f51 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36aff79d bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44f1b4e3 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4bcb9591 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 0x5a035fbf mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6047df40 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6e5c5958 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6ed268e4 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7769935d mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x79f32a64 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x996fa8a8 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9c928457 mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9dfdfd07 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab0a4046 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xab614140 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6d9b127 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc40d57a8 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcee29961 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf8ce842 recv_Echannel +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 0xe6b05500 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xedf1093f mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef6af12d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb9b6aca 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 0x0ddc2566 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 0xb9cd372a 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 0x0986d00a cmdq_get_shift_pa +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x0d2d0aa9 omap_mbox_enable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x2af4cc8c omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xad5f4d0e omap_mbox_disable_irq +EXPORT_SYMBOL drivers/md/dm-log 0x56e5ac87 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x6e698fa8 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb5447751 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xdac1e7b5 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x11e24f64 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x306e9ac3 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4059da30 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4c0aeb1b dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5c927c37 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf0f0255a dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x0589c569 r5c_journal_mode_set +EXPORT_SYMBOL drivers/md/raid456 0x6b74b6c5 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x01c7b57d flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1ce0e2d8 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x25f3cc85 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x41135bbd flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x59c9b83a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x67799d23 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7003f03a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x82801a58 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x866b481c flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc25a7162 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc42ba498 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd4419d2f flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf1f5459a 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 0x539ac871 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x55aa7c5f cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x695f6bea cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6a657b05 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7b4dd2cb cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb1550264 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xd1d6b8ea 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 0x9911485c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/ttpci-eeprom 0x2566a3ee 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 0x35485d9e 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 0x6e5ad72a vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-common 0xa1e30118 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 0x51ff9729 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x723d91ba vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x7f5f1f1f vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x86bf9465 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0x93ab88fa vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/common/videobuf2/videobuf2-dvb 0xe1c58696 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 0x2c4446d5 vb2_querybuf +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08733236 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x146512ec dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x18acd31f dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23018a43 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2ec148b6 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2edcc563 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2f5cdf80 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x336363ca dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x35af92b6 dvb_device_get +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3b93d71a dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50fee0c7 dvb_frontend_suspend +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 0x6bcf1109 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x71233cd3 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7fd7a41d dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8125be77 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8c54b0f8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x91a6794b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9263a063 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x96906496 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa160fd8d dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4235824 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae9b1613 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb05c4059 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb074cee2 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3352dd2 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb3a8cc3b dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb82aa6c3 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc278766d dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3f679f9 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc831cdf9 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcda9f157 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce2ee365 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe138ce6b dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe1cd135b dvb_remove_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebbc2d9b dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf04a9e43 dvb_frontend_resume +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 0x69493cf7 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xf2a82e0b atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1d3f663d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x389386b9 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3a1fa106 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3ab5ed12 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x420af4e8 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7d5a975a au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ee55787 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb15780ea au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xefe3602e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x77e9aaeb au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x86c45a7e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xb1f2b78e cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x5f646443 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xaae2fde1 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0f0e6cba cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x4ec8fe8e cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x78b24531 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x27b559d3 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x55c48a58 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x911b1c58 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x6d3f96af cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0430acd7 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8bf4fd55 cxd2841er_attach_t_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2880/cxd2880 0x6900c813 cxd2880_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5a340c0f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x95371cff dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb0f82486 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xddbb8ed6 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe8bae938 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x00f9e1f8 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0807ccf3 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0aa4a314 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3761732c dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3a8089f2 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x61bc01ff dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa5fe1d5c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaed18158 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc483c0cd dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd18c800c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd819f4f4 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf4ab534 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe2e2ddb6 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xeb157b09 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xff36760b dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x219d099a dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9b77c533 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa1b5fc21 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xa2736506 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc2bf5aea dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xec338a0e dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xfc34dc53 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3e4fb50b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x941f4579 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe23cd5f2 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf0ad20a3 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xd3088591 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc4f2396f dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x180363ef dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x1b9281d6 dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x2dd49c05 dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x42586d60 dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x53278770 dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x60f9f935 dib9000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0x636e5926 dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa3d74223 dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xa81bd67d dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xb3b58824 dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xbead19cb dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xc80f44c1 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib9000 0xf478c4b4 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4c6b007f dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7d157864 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8d92e112 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xcf127504 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xf952e8f9 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xbf2b5652 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x7c84a884 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xce8a6283 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x33b2ae7d ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x24697366 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x427057be dvb_dummy_fe_qpsk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0x97173f91 dvb_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb_dummy_fe 0xe9be73d6 dvb_dummy_fe_ofdm_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xcc998dd2 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x564845eb helene_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/helene 0x9f96b708 helene_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xd6db56fc horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xa3dc8851 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8f70698d isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x34ee5661 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x285cddd8 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x4279cbd6 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe7d6fa3c l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x9fa5bd90 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x6f796d18 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf80dc59e lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x2f43dc67 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gl5 0xe80aab02 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc5faca75 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xdb9d9017 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh29 0xf396d342 lnbh29_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x1389380a lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xbeb030dd lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x49fe7420 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x90a1e8a2 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcbb72cb6 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x63a192e7 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0c520893 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x312b82e5 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x6f387bdb mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x33088267 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x29867f1d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xaf4c0b4a nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xcb350fc1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x172ecbc5 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x69296b38 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x2be47cb2 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x8cd14d23 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe13bc776 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1432 0x2555516e s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x1ffe9f90 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x518fa8c9 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xf80c20dc sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xe87bf4ec stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x89460433 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5460220d stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x417f058b stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9483807c stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x76a76156 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x283c20ef stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x99fec4b8 stv0367ddb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xa90eda82 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x44d56ed2 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xa4a669f0 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x1a5ade8c stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x8869b467 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x3bd9f5f5 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xf36d268d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xa051432c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x111e92c0 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2a938db4 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xbf20fde7 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x88810f49 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xdef343c8 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x279c2933 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x08950b72 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x4c11e311 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x1b8a34d7 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x67e61c29 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x2494b9a2 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0x0ebc4f8a zd1301_demod_get_dvb_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/zd1301_demod 0xee5d3fa7 zd1301_demod_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x8016250a zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xe7faf782 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x67358034 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x16525db9 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x23ad3951 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x29bda4af flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3da1f530 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x59c1e24a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7be54952 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9a6938e9 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0a8a74ec bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdfd90977 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf1e2061f bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xfb0e95c1 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x85a3286d bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x88049375 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x9ea48631 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2015ca07 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x41c2a5bd dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x43a983fd dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x46fa22af dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5713b36c dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a23c24d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaeb6ef74 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb2a7364a rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd898ec78 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe0da317c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xa421ac56 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x279e2c45 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x400fe2c5 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x60d1a998 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7264fc68 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1be767d 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 0x1c718cee cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44ac9863 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x44b517f5 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x671481d4 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xac1ed855 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xbd085e26 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd5b3c620 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe8d39c1c cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe9050411 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x18d35434 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xb82d318e vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x240a5c0c cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x4c4ef741 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7ecfb0aa cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe7296e52 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2ab8755a cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x93965339 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x9b33ae26 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb316a5ff cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe46f373d cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf2bb20ce cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf7b13815 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x071ef8a8 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1dae0261 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d1f461e 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 0x668f465d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c0a46a0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83ad5f67 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 0x9f8ce432 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa74db808 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xaf6acf21 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc2eadaf cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc9ddd49 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc6a82140 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1fed6aa cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd75e1651 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdc3e64d0 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5d26277 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf7634851 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfcfe137e cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xff5b3411 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfff9bd4a cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ddbridge/ddbridge-dummy-fe 0x749bcf1a ddbridge_dummy_fe_qam_attach +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d2ddf3f ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2439490e ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x465ff1be ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x50516b4f ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x53d56eb1 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x606f2e9c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x710ef12e ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8931c98a ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ae2c680 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9cb80e76 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9ea168c6 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc15df490 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc2864b74 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc312afa1 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8400dca ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xccb7216b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf1ea092d ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x138d4157 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1dfeafd4 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x317c4d14 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31e92086 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4b3c8857 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5f508bcb saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x730c4be3 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8bec8bf6 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8f1ad46b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9da5c691 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb135858c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc5a1a31e saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdbfac1ba saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/platform/allegro-dvt/allegro 0x2c79d0f2 msg_type_name +EXPORT_SYMBOL drivers/media/radio/tea575x 0x09781356 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x22ffa05c snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6143ec83 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x670ea0e9 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa8caef4f snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc70444a9 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xcb7f3f96 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/rc-core 0x01098f88 ir_raw_encode_scancode +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2ea362fa ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2fe55cf5 ir_raw_gen_pd +EXPORT_SYMBOL drivers/media/rc/rc-core 0x546a9bc0 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7a02ee87 ir_raw_gen_pl +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb5516017 ir_raw_encode_carrier +EXPORT_SYMBOL drivers/media/rc/rc-core 0xce3696f3 ir_raw_gen_manchester +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x57d9e0ae fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x51e001c0 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x42bd88ad fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9590323f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x9dd844c6 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x0121bfaa max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x2bc16450 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x785c245b mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x65c0b653 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xc3763e3a mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xf0bd9bc2 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x6e606d3e qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x5f7111fe tda18218_attach +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0x4c48939e tuners +EXPORT_SYMBOL drivers/media/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/tuners/xc2028 0x4b6abc01 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa1c2c559 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd98f68e4 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x03d225d8 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc72e0568 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x02ca72af dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0359ec7f dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x11f2452b dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3170c4d6 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5a8719a3 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x71e2c998 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa8661f94 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xacfe0c33 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xca51ec4d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3046e574 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x31bf27a2 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 0x9ff7f60b dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc2471203 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd3d86f40 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfa844d59 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 0xbf0bd082 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 0x049a3c0a dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x129fe114 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2d45b5a9 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4413fd63 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x45af6a97 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7d464d3f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7f407d0f 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 0x9b652ac1 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb0a8ed87 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x14a16cbd dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-mc-common 0x88a7ea20 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x692ce3af em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa336ce52 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x06645449 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x147f7a33 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x158ec0e3 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x85c6df87 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9a5e6612 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xadebed8c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xba835df3 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbdb5275c go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd5634566 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x25372924 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x53c9d583 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x751f853e gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x828e2b70 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb2a27b48 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbc90997a gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcf3b96a3 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf48c4451 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x43b1b201 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x558e717c tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd7f531a5 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc78e3346 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xec49328c ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x37ee2d35 v4l2_async_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x7040d0a3 v4l2_async_nf_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0x8ec89043 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb31bf1a0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xb41c98d9 v4l2_async_nf_init +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-async 0xde0fbc20 v4l2_async_subdev_nf_register +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x1a9182f7 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x305c3d9b 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 0x65c763fd v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbe43cc41 v4l2_m2m_buf_done_and_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xf626dd03 v4l2_m2m_suspend +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x066123a8 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082737e8 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b07127d v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12b0e06f video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e0ff3cf v4l2_ctrl_sub_ev_ops +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 0x2e454703 __v4l2_ctrl_s_ctrl_int64 +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 0x3488721d v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38a66441 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 0x3f5f32ed v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x404e7ca0 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x40ee2c6d v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4774b838 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e4cac7d v4l2_ctrl_new_fwnode_properties +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x537c939f video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5472f1d3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5744aec2 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x598b69e9 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x659d4694 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76a351dc v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78f06bbf v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7cc791eb v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f968e3a v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fc59c3b v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81a63320 __v4l2_ctrl_s_ctrl_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8665d2f8 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89e3897d v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8d04cfca v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8efa44c7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90a10f8e v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92070526 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93693901 v4l2_ctrl_request_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94efd509 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95203bfb v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f35d641 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa0291110 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3ac54e7 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5566f43 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5f3196b v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xada0867a v4l2_ctrl_new_std_compound +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb390e15a v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbd5f4d59 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe23c6b4 v4l2_subdev_call_wrappers +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf5b6791 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbfda17a6 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca3cbd82 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc8029f0 v4l2_ctrl_handler_init_class +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 0xdee151c6 v4l2_ctrl_request_complete +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe241b75f v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4f81b8b v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8cfe677 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea3fea6d v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1f5bdb3 __v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf390253d v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf50fecbc v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf80290b4 video_device_alloc +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x0557e452 rpcif_manual_xfer +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x28f181e2 rpcif_prepare +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0x3f4575de rpcif_dirmap_read +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xdbbd3cf8 rpcif_hw_init +EXPORT_SYMBOL drivers/memory/renesas-rpc-if 0xde608e90 rpcif_sw_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f3136f0 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x10f766d9 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x193a3a06 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2db024bb memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2fa42881 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3236885b memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4a4e5778 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x510024d1 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae50437c memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7927c3b memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbe42243d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc592ee4e memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcb4ab175 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd0f758c6 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02937af2 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0aaa98e3 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1aa795c1 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21c64d85 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2b1dcf46 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x38cc9e52 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a68b75d mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3d6c195d mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4401ab0a mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x52c22b4b mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x533a2e2b mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x610b257e mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68ab76dc mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ca1705b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73891569 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74a0134a mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x913756cf mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x94ca0451 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x956961d7 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x981efe92 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99ea7f68 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x99ff4c63 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b089a31 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa69974b9 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabca3223 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf73f174 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5c0ddd5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddad2969 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe626bbee mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6c1e126 mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe6f973b0 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf555b8b1 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7a33654 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05258287 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08174616 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0afb1063 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x16990aff mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23d009b9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x44d9532b mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a556b75 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c8a868b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66235d7b mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a32ab30 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6d1a1e47 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74bc8318 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c8fd79b mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x870e1c90 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x90223236 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91c9a2ca mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98e3182c mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d4ab388 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3ce9b59 mptscsih_host_attr_groups +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacacf050 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xafcdcd92 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd47f167 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc721375a mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd285e6d8 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd31286bf mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0dbf443 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfab07540 mptscsih_show_info +EXPORT_SYMBOL drivers/mfd/axp20x 0x0698b271 axp20x_device_probe +EXPORT_SYMBOL drivers/mfd/axp20x 0x39e104d8 axp20x_device_remove +EXPORT_SYMBOL drivers/mfd/axp20x 0x7254ceba axp20x_match_device +EXPORT_SYMBOL drivers/mfd/dln2 0x583c04d6 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x7fa6d5fa dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x85adb328 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xca2ee190 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd7cd4874 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x04e8928c mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0b97a25e mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x13214da7 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x14ee9700 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x161dea74 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x174fcff4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4262541a mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4af9992c mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa96616c2 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa96b62dd mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xba2285a1 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 0x1cd09afc wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x45a52665 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0x7092a520 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994 0x809f92a0 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994 0xdac72448 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994 0xe8fd9fd1 wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x54eacc79 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xe5f4402e ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x5bafa76e altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3a5a036e c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x63ca46ca c2port_device_unregister +EXPORT_SYMBOL drivers/misc/tifm_core 0x0920e6fd tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x0ffb277f tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x22eb5f39 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x79bd6462 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x94995002 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x96e23399 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8aae2a7 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xc2a2b0a7 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xdcd23dfd tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xde204412 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xed3ce12e tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xf0770e3b tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf08e51bb tifm_free_device +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x206f804b cqhci_deactivate +EXPORT_SYMBOL drivers/mmc/host/cqhci 0x34edb78b cqhci_pltfm_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd190630f cqhci_init +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xd4a84142 cqhci_irq +EXPORT_SYMBOL drivers/mmc/host/cqhci 0xde39981b cqhci_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x0f92e509 dw_mci_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x47252e72 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x4e207249 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x56d2e740 dw_mci_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x02e4f910 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xb5cb28e5 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2f596fef cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3c7bcea4 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3fcecc9e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x754c34c3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8f134b43 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc57cdb28 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xedfa272f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3bc62068 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa3ad2cb9 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa5f5eaf7 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaf86a322 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xfef3a6c1 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x981a034b lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xe5c17068 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x047f7f4a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x8d885af7 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x102603bc mtk_ecc_get_parity_bits +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5437e775 mtk_ecc_disable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x5de55d81 mtk_ecc_get_stats +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x6df58afb mtk_ecc_release +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x76e53683 mtk_ecc_wait_done +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0x8dcc87d2 mtk_ecc_enable +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xda64ef4a mtk_ecc_adjust_strength +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xec8b9207 mtk_ecc_encode +EXPORT_SYMBOL drivers/mtd/nand/ecc-mtk 0xecbeba47 of_mtk_ecc_get +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x1f221682 nand_ecc_sw_bch_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x3052359f nand_ecc_unregister_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x32a53aa2 nand_ecc_put_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x45d0422f nand_ecc_sw_bch_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x4a7b2903 nand_ecc_sw_hamming_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x61f61e27 nand_ecc_is_strong_enough +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x7ce81870 nand_ecc_get_on_die_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x8807a6bd nand_ecc_prepare_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x91b7711a of_get_nand_ecc_user_config +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x979ea528 nand_ecc_init_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x99c6b798 nand_ecc_get_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0x9eebabb6 nand_ecc_sw_bch_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xa4317fbd nand_ecc_sw_hamming_get_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xcb8396a9 nand_ecc_finish_io_req +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xd6c6749c nand_ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xdccdd222 nand_ecc_register_on_host_hw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe10450f5 nand_ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe1730f72 nand_ecc_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe4302ee5 nand_ecc_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe48d1d7c nand_ecc_sw_hamming_cleanup_ctx +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6db989b ecc_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xe6e7e9fb nand_ecc_sw_bch_calculate +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xf51476cc nand_ecc_get_sw_engine +EXPORT_SYMBOL drivers/mtd/nand/nandcore 0xff4351b0 ecc_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0x4ee632ce flexonenand_region +EXPORT_SYMBOL drivers/mtd/nand/onenand/onenand 0xb6e3ac45 onenand_addr +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x30db096f denali_calc_ecc_bytes +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0x4fdf51a8 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/raw/denali 0xa112de95 denali_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x00ce8e0c rawnand_sw_bch_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x15c422bd rawnand_sw_bch_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x32edb4f5 rawnand_sw_hamming_correct +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x36c5c944 nand_monolithic_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x52b0b6f4 nand_read_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x657678e0 nand_get_set_features_notsupp +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x7883d120 nand_scan_with_ids +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8e6e20cf nand_write_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x8ed2dddf nand_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x930fac0f nand_monolithic_read_page_raw +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0x961cdc3c rawnand_dt_parse_gpio_cs +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xa4622c0e rawnand_sw_hamming_init +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xc5ff123d rawnand_sw_bch_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xddc6f638 rawnand_sw_hamming_cleanup +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xe9491739 nand_create_bbt +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xef4e7b36 rawnand_sw_hamming_calculate +EXPORT_SYMBOL drivers/mtd/nand/raw/nand 0xfe0fe2b8 nand_write_oob_std +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0x78e0f1bd elm_config +EXPORT_SYMBOL drivers/mtd/nand/raw/omap_elm 0xca4d86e4 elm_decode_bch_error_page +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2af88187 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3fdd6786 free_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x454fe3c7 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x53bc09d7 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c55bdde arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6358ac18 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x81ec871b arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x89a4fed8 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdd836930 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe57765ac arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf01eb0f3 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x22643144 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x233e9c4d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x29e83bb9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0x0a4b08c5 ctucan_resume +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb0f97530 ctucan_suspend +EXPORT_SYMBOL drivers/net/can/ctucanfd/ctucanfd 0xb5d07a78 ctucan_probe_common +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0a3d8fc5 b53_disable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0bf7ae15 b53_enable_port +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0d622bda b53_br_flags +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x0fc84cae b53_switch_detect +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x1c372a05 b53_br_flags_pre +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x22ec6484 b53_imp_vlan_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x29876501 b53_vlan_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x36fcd66c b53_br_join +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x373981d3 b53_get_ethtool_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3be0c087 b53_brcm_hdr_setup +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x3c97edf1 b53_get_ethtool_phy_stats +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x400e2339 b53_mirror_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x497fb72b b53_vlan_filtering +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4a5f545c b53_vlan_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4b0601b2 b53_br_fast_age +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c72e6d6 b53_br_leave +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4c9bb060 b53_set_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x4e8c5d9e b53_mirror_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c2615b1 b53_phylink_mac_link_down +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5c970b1f b53_mdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x5f024bd4 b53_phylink_mac_link_up +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x67964a7e b53_fdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x73df43a9 b53_port_event +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x78b074a8 b53_mdb_add +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x7ae906be b53_switch_register +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x81226776 b53_configure_vlan +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x81422ab9 b53_fdb_del +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0x9b2fda64 b53_eee_init +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xa87dc1b8 b53_eee_enable_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb1e15fbb b53_get_strings +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xb89b7c5c b53_fdb_dump +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc11d6443 b53_get_sset_count +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xc6c16969 b53_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xd085ccba b53_get_tag_protocol +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xe039bd3a b53_br_set_stp_state +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xeddeadda b53_phylink_mac_config +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xf35dc956 b53_setup_devlink_resources +EXPORT_SYMBOL drivers/net/dsa/b53/b53_common 0xfc0cb94c b53_get_mac_eee +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x6864c20c b53_serdes_phylink_get_caps +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x776e914b b53_serdes_phylink_mac_select_pcs +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0x989b3b1e b53_serdes_link_set +EXPORT_SYMBOL drivers/net/dsa/b53/b53_serdes 0xbaa498a0 b53_serdes_init +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0x9c819359 lan9303_remove +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xada83f40 lan9303_register_set +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xc68ec393 lan9303_shutdown +EXPORT_SYMBOL drivers/net/dsa/lan9303-core 0xcaae37d5 lan9303_probe +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz8795 0x4d3dee0a ksz8_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz9477 0x9a505518 ksz9477_switch_register +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0x3a137589 ksz_switch_remove +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xd27e0633 ksz_switch_alloc +EXPORT_SYMBOL drivers/net/dsa/microchip/ksz_common 0xfdf0d09d ksz_switch_register +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x2d82e3cb vsc73xx_probe +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x3216b65f vsc73xx_remove +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x4ed3ea59 vsc73xx_shutdown +EXPORT_SYMBOL drivers/net/dsa/vitesse-vsc73xx-core 0x99d242fe vsc73xx_is_addr_valid +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x06d11e3a xrs700x_switch_shutdown +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0x6d8f848b 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 0x9583df26 xrs700x_switch_remove +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb25facfa xrs7003e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xb89aa5e3 xrs7004e_info +EXPORT_SYMBOL drivers/net/dsa/xrs700x/xrs700x 0xf3b17410 xrs700x_switch_alloc +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c1e98eb ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2269e4a4 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x42b5aad1 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x464df404 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7b300b76 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8a47ead9 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x95f1b61c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9bb8e096 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb014a475 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd2e2d205 ei_close +EXPORT_SYMBOL drivers/net/ethernet/aquantia/atlantic/atlantic 0x9b089d76 aq_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnxt/bnxt_en 0x48086819 bnxt_ulp_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xe7334625 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0x6ac0e51a cavium_ptp_put +EXPORT_SYMBOL drivers/net/ethernet/cavium/common/cavium_ptp 0xed055f97 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 0x0a7b835f t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x17513a3d cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x24a7b705 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x312a07cd cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x529feab6 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x70b550b4 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75bb0cf9 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9492dced cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x95b44e99 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9035861 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe95051b2 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe97c14c2 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xea51d093 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee69a112 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xee82c8e6 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4df95a3 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0515741a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x06409393 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a01b35b cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a057a33 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0bbf4dfd cxgb4_inline_tx_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0bdc6be9 cxgb4_get_srq_entry +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0f1a5528 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1249c852 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x156e1a66 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15defa5f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c08f963 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ec9053a cxgb4_write_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1efbdec9 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33c4f57d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d11dbde cxgb4_smt_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f1c7e66 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f32f93d cxgb4_check_l2t_valid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x614d7550 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6173d60f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ab3a37d cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6b743e12 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6da6be09 cxgb4_map_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x72bb39ef cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7cfe64ad cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8001032c cxgb4_port_e2cchan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x835ea233 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x84c2ae58 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x870ba493 cxgb4_immdata_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x874dbb80 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8c425876 cxgb4_reclaim_completed_tx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8db93c9f cxgb4_write_partial_sgl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f5271c4 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa53eb8ab cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8db193f cxgb4_smt_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xafc8bd2e cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb8a32ede cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb91bfe11 cxgb4_crypto_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9452876 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfeba28c cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc2a786e5 cxgb4_l2t_alloc_switching +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5472f9c cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7aad1e8 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xca80a526 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xced13110 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd231147d cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd8cdb282 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdb93fcaf cxgb4_ring_tx_db +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf926d7fe cxgb4_create_server6 +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 0x6657204b cxgb_find_route +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0x9da4c9de cxgbi_ppm_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xa8e05587 cxgbi_ppm_ppod_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xb6c43af0 cxgbi_ppm_ppods_reserve +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xbfe41bdc cxgbi_ppm_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xcbaed901 cxgb_find_route6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/libcxgb/libcxgb 0xfe3ef5f8 cxgbi_ppm_make_ppod_hdr +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3be62141 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa305f2f3 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc156ecbc vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc48a99ea vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd82556dd vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xefef98ea enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4e2e10d2 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6e27cb3d be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xcd111e74 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/dpaa2/fsl-dpaa2-eth 0x2f20babd 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 0x1b6508cc enetc_ierb_register_pf +EXPORT_SYMBOL drivers/net/ethernet/freescale/enetc/fsl-enetc-ptp 0x5431a304 enetc_phc_index +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x218c3404 fun_dev_disable +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x2b1a8a61 fun_release_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x773666b9 fun_reserve_irqs +EXPORT_SYMBOL drivers/net/ethernet/fungible/funcore/funcore 0x9ab6db76 fun_dev_enable +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x31c9edd0 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x322b8216 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5f861b92 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xcf000afe hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xf616ffb2 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hns_dsaf 0xa9461b38 hns_dsaf_roce_reset +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x1c1bc343 hnae3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x58abfb7c hnae3_unregister_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x62c6ba03 hnae3_register_ae_algo +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x6d99e2b4 hnae3_unregister_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0x80372232 hnae3_register_client +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xcf90e8f4 hnae3_set_client_init_flag +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf1b503c5 hnae3_register_ae_dev +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns3/hnae3 0xf3a4bf3e hnae3_unregister_ae_algo_prepare +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x0d1ec062 iavf_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/intel/iavf/iavf 0x917a02e3 iavf_register_client +EXPORT_SYMBOL drivers/net/ethernet/intel/ice/ice 0x965ff908 ice_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/intel/ixgbe/ixgbe 0xbaa35511 ixgbe_xdp_locking_key +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x0716e57e 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 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 0x543cf663 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 0x6f0eded2 __traceiter_otx2_msg_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x75d4d6e2 otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x78c58786 otx2_mbox_destroy +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x82b8d225 otx2_mbox_alloc_msg_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8cd2cf6b otx2_mbox_get_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8e0bb24c __traceiter_otx2_msg_interrupt +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0x8f772a3f otx2_mbox_id2name +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xa7494c30 otx2_mbox_wait_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb150b38c __tracepoint_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb230126c otx2_mbox_msg_send +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xb9fc8175 otx2_mbox_nonempty +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc2dc054b __otx2_mbox_reset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xc43cd835 otx2_mbox_check_rsp_msgs +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 0xd3c764af __traceiter_otx2_msg_process +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xdb6bff82 otx2_mbox_regions_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/af/rvu_mbox 0xf8937d89 otx2_mbox_busy_poll_for_rsp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0c92611e otx2_get_stats64 +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x0fb79a3d mbox_handler_nix_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1d0c5148 otx2_tc_alloc_ent_bitmap +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x1d7dbe03 mbox_handler_nix_txsch_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2230dabc otx2_sq_append_skb +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x2a6dbad4 otx2_get_mac_from_af +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x301edb05 otx2_ioctl +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x323e9dcd otx2_shutdown_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x3ea99512 otx2_mbox_up_handler_cgx_link_event +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x42803522 otx2_setup_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5040aef7 otx2_alloc_mcam_entries +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5b69a149 otx2_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x5dad0b99 otx2_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x8bd0136e otx2_config_hwtstamp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0x9665b98f otx2_config_pause_frm +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa3c81a1e otx2_mcam_flow_del +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xa46aa7d9 otx2_init_tc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xae0ccc3a otx2vf_mcam_flow_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xae54c6fa otx2vf_set_ethtool_ops +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb25a2f5e otx2_open +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb52d7150 mbox_handler_npa_lf_alloc +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb5c17247 otx2_set_real_num_queues +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xb8391a08 otx2_handle_ntuple_tc_features +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xbaf5bb4e otx2_stop +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc0275c26 mbox_handler_nix_bp_enable +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xc4181ec9 otx2_nix_config_bp +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xcdf5fab7 otx2_detach_resources +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd4b127e8 cn10k_lmtst_init +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xd971d9eb mbox_handler_msix_offset +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeae7c8e5 otx2_attach_npa_nix +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xeffd130b otx2_get_maxflows +EXPORT_SYMBOL drivers/net/ethernet/marvell/octeontx2/nic/rvu_nicpf 0xf9944970 otx2_set_mac_address +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0x0b76f37b prestera_device_register +EXPORT_SYMBOL drivers/net/ethernet/marvell/prestera/prestera 0xab671b55 prestera_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07af7626 mlx4_test_async +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x086e9367 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1141f46e mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14dfa47a mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15738e91 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c65de82 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3ed74f mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20aaa273 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21c69980 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2865faca set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x306e56b6 mlx4_SET_PORT_user_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x327defba mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32da704f mlx4_SET_PORT_user_mtu +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bfc5ee6 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c7b1402 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d6a4314 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4122f3b3 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42f15276 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4791ca07 mlx4_test_interrupt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x483e64e9 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c5da745 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e7e6d28 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6db35524 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7677435a mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x777c1cb9 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a24912a mlx4_SET_PORT_PRIO2TC +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 0x856d5588 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabc2314e mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad347e69 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb755f359 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb99a98fc mlx4_get_is_vlan_offload_disabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf920a93 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4929b43 mlx4_max_tc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd743b7bf mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd5391e4 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde15ad46 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebd410c7 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeda71245 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee5e566d mlx4_query_diag_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf63ef55b get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a00fd5 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6e169b9 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf74b8487 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb72dc4c mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04441ffa mlx5_fpga_mem_read +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0697c593 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x089c8dc1 mlx5_eq_create_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08c68f29 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a21b020 __traceiter_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0bb3d42d mlx5_vf_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0fa26d46 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14246a6c mlx5_core_query_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15c73434 mlx5_rl_remove_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16541812 mlx5_add_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1748662e mlx5_core_modify_cq_moderation +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x178556c6 mlx5_rl_remove_rate +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 0x1cff8a1b mlx5_lag_is_master +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e1eebf4 mlx5_cmd_check +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 0x1ecb5d44 mlx5_cmd_out_err +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x217aca17 mlx5_modify_header_dealloc +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 0x23c5eebd mlx5_fs_remove_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x287f4a20 mlx5_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b2aaece mlx5_eswitch_reg_c1_loopback_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b3aa71c mlx5_fpga_get_sbu_caps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d0d4a1d mlx5_fpga_mem_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f0bc9f0 mlx5_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x312e025f mlx5_rl_is_in_range +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x313394de mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c83e33 mlx5_core_modify_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32fc77d1 __tracepoint_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3475821f __SCK__tp_func_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36274f6d mlx5_core_destroy_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3737089d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37c2f16b mlx5_packet_reformat_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38d15cb3 mlx5_lag_is_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3956791e __traceiter_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df8aa25 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d5f5c07 __SCK__tp_func_mlx5_fs_del_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e376b9b mlx5_sriov_blocking_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5335acab mlx5_core_create_tir +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 0x594179e2 mlx5_cmd_create_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b6994df mlx5_del_flow_rules +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6e2b0d mlx5_create_flow_group +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f2222da mlx5_nic_vport_disable_roce +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6080892c mlx5_lag_query_cong_counters +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x60f35293 mlx5_eswitch_vport_rep +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61492bb7 mlx5_rl_are_equal +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x627d5664 mlx5_modify_header_alloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63a008f5 mlx5_packet_reformat_dealloc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x666578bf mlx5_cmd_destroy_vport_lag +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66a7ac6d mlx5_mpfs_add_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66e4e4cd mlx5_lag_get_num_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a2abcea mlx5_lag_get_slave_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7261330b __SCK__tp_func_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72c226a6 mlx5_eswitch_get_vport_metadata_for_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x72cac69c mlx5_eswitch_register_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x770c4636 mlx5_eq_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78af7354 mlx5_cmd_do +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 0x7c7fab08 mlx5_lag_is_shared_fdb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d9fe3f0 mlx5_debug_qp_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7deab691 mlx5_rl_add_rate +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 0x80690f88 mlx5_core_query_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8082402b mlx5_eswitch_vport_match_metadata_enabled +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x80aab2b9 mlx5_lag_is_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82eefa38 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85626535 mlx5_alloc_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85b132f0 mlx5_eswitch_add_send_to_vport_rule +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 0x897bd9a1 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b0da535 mlx5_put_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b6f0fb7 mlx5_eswitch_uplink_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ed93629 mlx5_eswitch_unregister_vport_reps +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8fcf26a8 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x908c917a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91fafe62 mlx5_core_destroy_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96eb2c99 mlx5_fc_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97721c21 mlx5_core_create_rq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98bd94bf mlx5_lag_is_sriov +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b78daa7 mlx5_comp_irq_get_affinity_mask +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cae2828 mlx5_mpfs_del_mac +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d6135dc __SCK__tp_func_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9da6528e mlx5_eswitch_get_vport_metadata_for_match +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e628e25 mlx5_eswitch_get_encap_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0cc6a76 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2e68f04 mlx5_eswitch_get_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa376089e mlx5_create_auto_grouped_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3b49402 mlx5_rdma_rn_get_params +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa5ec90ae mlx5_cmd_init_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa6855bd7 mlx5_core_modify_sq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7566078 mlx5_cmd_exec_polling +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa98a2c8d mlx5_vf_put_core_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaaf1af81 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab521f6e __traceiter_mlx5_fs_add_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad6815cd mlx5_rsc_dump_cmd_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xadca5574 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf054a5b mlx5_core_create_rqt +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaf3af179 mlx5_eswitch_get_proto_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafa9c04b mlx5_fc_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1cdd9ab mlx5_qp_debugfs_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1d9c573 mlx5_rl_add_rate_raw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ebe971 mlx5_fc_create +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 0xb29958fb mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb38f2c3e mlx5_core_roce_gid_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6c30129 mlx5_sriov_blocking_notifier_unregister +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 0xb914cbcc mlx5_rsc_dump_next +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 0xbd082e24 __traceiter_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf0848af mlx5_core_dealloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1285296 mlx5_fs_add_rx_underlay_qpn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5e77f80 mlx5_fc_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc65cba58 mlx5_eq_disable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc704064d mlx5_fpga_sbu_conn_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbd29799 mlx5_get_flow_namespace +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc002b85 mlx5_destroy_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf3258b0 mlx5_core_destroy_tir +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd020dd1f __traceiter_mlx5_fs_del_ft +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6c3be3d __tracepoint_mlx5_fs_del_fg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7a8efa6 __traceiter_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdc3669f1 mlx5_cmd_cleanup_async_ctx +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddce7050 mlx5_get_uars_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde5e00e6 mlx5_core_modify_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde76a719 mlx5_core_alloc_transport_domain +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdece3d31 mlx5_comp_vectors_count +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf2252ea mlx5_fpga_sbu_conn_sendmsg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe113cc82 mlx5_eq_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe20f18fb mlx5_free_bfreg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4e09c2b __tracepoint_mlx5_fw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5ad0cad mlx5_create_lag_demux_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8d19aa6 mlx5_fpga_sbu_conn_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea5c02f3 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb9a8bcf __SCK__tp_func_mlx5_fs_del_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xebeb3b7c mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed8f0a9e mlx5_eq_update_ci +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee60a126 mlx5_eq_notifier_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeec6576b mlx5_qp_debugfs_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefcde3c6 mlx5_debug_qp_remove +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf05be7ae mlx5_eq_destroy_generic +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0d2e104 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4027f02 mlx5_lag_get_peer_mdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf40ed546 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf4c6c7af mlx5_core_create_tis +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf531a452 mlx5_lag_get_roce_netdev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf54aed9f mlx5_get_fdb_sub_ns +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6c58e09 mlx5_debugfs_get_dev_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf88d57b1 __SCK__tp_func_mlx5_fs_add_rule +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa884d0a mlx5_notifier_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfc7a56bc 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 0xfcb4cf83 mlx5_eq_get_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd43f351 mlx5_is_roce_on +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfea9bd38 mlx5_query_ib_port_oper +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfeb8871e mlx5_rsc_dump_cmd_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff44cf4b mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xffb79b65 __traceiter_mlx5_fs_set_fte +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxfw/mlxfw 0xaf1a42d8 mlxfw_firmware_flash +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0137f952 mlxsw_afk_values_add_buf +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02815b77 mlxsw_env_module_port_up +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x02dfd3d0 mlxsw_afk_key_info_block_encoding_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x07abcc0c mlxsw_afa_block_append_trap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x087c0c78 mlxsw_core_port_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0c5e3d2d mlxsw_core_trap_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ca34ccf mlxsw_core_max_ports +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0e81c09c mlxsw_afk_destroy +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x10d3c264 mlxsw_core_port_is_xm +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x14e17bb4 mlxsw_linecards_event_ops_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x15801382 mlxsw_afk_key_info_put +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x208be038 mlxsw_env_get_module_eeprom +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 0x2a4ddd44 mlxsw_env_get_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2b68f68b mlxsw_core_trap_state_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c68ced3 mlxsw_core_read_frc_h +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2e799c9c mlxsw_afa_block_append_mirror +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 0x39e1ef91 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4036254f mlxsw_linecards_event_ops_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0x4b0bae55 mlxsw_core_kvd_sizes_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4e6be521 mlxsw_afa_block_append_fwd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x508923e3 mlxsw_core_port_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x51b5769d mlxsw_env_module_overheat_counter_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x55a65610 mlxsw_core_res_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 0x5a939205 mlxsw_afk_values_add_u32 +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x5bd0e7cb mlxsw_core_port_eth_set +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 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 0x6929f2b4 mlxsw_env_module_port_map +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6e16b7a3 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x73489011 mlxsw_afa_block_append_ip +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x749556a2 mlxsw_afk_key_info_subset +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x75339042 mlxsw_core_lag_mapping_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x77d83398 mlxsw_core_read_frc_l +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7b0bfeec mlxsw_core_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7ca5b4d4 mlxsw_afa_block_append_sampler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7e08c6e0 mlxsw_core_event_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 0x83fb69af mlxsw_core_lag_mapping_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x858c30d0 mlxsw_afa_block_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x87c1da7a mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8854d198 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8987b6b0 mlxsw_core_traps_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x902c3533 mlxsw_core_schedule_dw +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x963cfb6a mlxsw_core_resources_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x96d05f5e mlxsw_core_traps_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 0x97e62e6e mlxsw_env_get_module_eeprom_by_page +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x98bfa19b mlxsw_env_set_module_power_mode +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x996c5d6d mlxsw_reg_trans_bulk_wait +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9c9b1cdc 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 0xa3c14b2a mlxsw_afa_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa3ce7043 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa7765e88 mlxsw_reg_query +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa8cccf0b mlxsw_core_port_devlink_port_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac0f98dc mlxsw_core_trap_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac1074a5 mlxsw_core_skb_transmit_busy +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 0xb664603b mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb68e9fa8 mlxsw_env_module_port_unmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xb6b40684 mlxsw_core_res_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xba05b3b0 mlxsw_core_emad_string_tlv_enable +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbc222a8d mlxsw_afk_clear +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbfb7df3c mlxsw_core_driver_priv +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 0xd2274c2a mlxsw_core_rx_listener_unregister +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 0xd71566b9 mlxsw_core_schedule_work +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd7a93413 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 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 0xdeab0691 mlxsw_afk_create +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xdeb1dc2e mlxsw_afa_block_first_kvdl_index +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe16986dd mlxsw_afa_block_activity_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe5540be5 mlxsw_core_port_ib_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xebd226e0 mlxsw_env_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xecab212a mlxsw_afa_cookie_lookup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed2801d4 mlxsw_env_module_port_down +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xeda7a5d0 mlxsw_core_port_type_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf21dd7ed mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf82bdc70 mlxsw_core_lag_mapping_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfc140b71 mlxsw_env_reset_module +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xff007c25 mlxsw_core_cpu_port_fini +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0x7d571b4f mlxsw_i2c_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_i2c 0xcca6789e mlxsw_i2c_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x684c9ebe mlxsw_pci_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_pci 0x8b45602b mlxsw_pci_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0206631c ocelot_ptp_adjfine +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x04404865 ocelot_init_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0a711648 ocelot_vcap_filter_replace +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0f85c46c ocelot_mact_forget +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x108dd525 ocelot_mrp_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x19453204 vsc7514_vcap_is1_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x1ffe3ea0 ocelot_port_bridge_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x200d6d78 ocelot_port_txtstamp_request +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x203c72ae ocelot_deinit_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x24329433 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 0x2cf59ce2 ocelot_hwstamp_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x2ee2eeab ocelot_vcap_block_find_filter_by_id +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x34858055 ocelot_ptp_settime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x35552491 ocelot_get_ts_info +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3733d858 ocelot_bridge_stp_state_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3c7d4680 ocelot_port_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x3ce27da7 ocelot_set_ageing_time +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40d3c333 ocelot_devlink_sb_unregister +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4271543f vsc7514_vcap_es0_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x47a55d78 ocelot_port_lag_leave +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4cdbfcd9 ocelot_port_inject_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x538212eb ocelot_port_lag_change +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5645ef77 ocelot_mrp_add_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x5fd0248d ocelot_mrp_del_ring_role +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x636a6186 ocelot_devlink_sb_register +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x673d7d7b ocelot_ptp_rx_timestamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6ba9e5bc ocelot_deinit_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6be8bb5c ocelot_vcap_policer_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x738040df ocelot_get_sset_count +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73d71bc8 ocelot_vlan_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x73de26fb ocelot_get_txtstamp +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7462c570 ocelot_mact_lookup +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x748e923c ocelot_vlan_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7bda6b2a ocelot_deinit +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x80a75405 vsc7514_vcap_is2_keys +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x84539819 ocelot_port_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8576da98 ocelot_sb_tc_pool_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8affe8e5 ocelot_init +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x90cbb220 vsc7514_vcap_is2_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x91592223 ocelot_mact_learn +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x937c3ddb ocelot_get_ethtool_stats +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9381969d vsc7514_ana_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x958c4784 ocelot_hwstamp_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9d442141 vsc7514_rew_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9e6dda4a ocelot_port_mdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x9f4b6d12 ocelot_fdb_dump +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa00b8898 ocelot_fdb_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa1b40f80 ocelot_ptp_verify +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa4e4bdfa ocelot_init_port +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa72d34bc ocelot_sb_occ_max_clear +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa8413d7e vsc7514_sys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac973253 ocelot_sb_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb03317d9 ocelot_fdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb0e0ccf9 ocelot_port_vlan_filtering +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb30c4b92 vsc7514_ptp_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb3bfe5e4 ocelot_mact_learn_streamdata +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb5a56331 ocelot_port_set_maxlen +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb659ec8d ocelot_vcap_policer_add +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb7f84565 ocelot_sb_tc_pool_bind_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbba17367 vsc7514_qsys_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbd0987f5 ocelot_drain_cpu_queue +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbe3266de ocelot_port_lag_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf1e0439 ocelot_can_inject +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf48ddc1 vsc7514_qs_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf982e58 ocelot_sb_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc4ca0000 ocelot_xtr_poll_frame +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xc99fc51f ocelot_sb_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xca102235 ocelot_sb_occ_snapshot +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcbcfef3d ocelot_port_mdb_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xceed5e7e vsc7514_dev_gmii_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd0ebefd9 ocelot_ifh_port_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd388647f ocelot_sb_port_pool_set +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd687a545 vsc7514_vcap_es0_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdc1f5df3 ocelot_ptp_adjtime +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdcdfd8d8 ocelot_sb_occ_port_pool_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe6eda765 ocelot_vlan_prepare +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe87f7698 ocelot_get_max_mtu +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe8daff5f ocelot_ptp_gettime64 +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea06ee71 ocelot_ptp_enable +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xea1b5ac9 vsc7514_vcap_regmap +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecaa97fb vsc7514_vcap_is1_actions +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xecde8bad ocelot_mrp_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xed8a52f5 ocelot_port_bridge_join +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xeeb32500 ocelot_policer_validate +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf6d6d891 ocelot_sb_occ_tc_port_bind_get +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfa532a9b ocelot_port_pre_bridge_flags +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfb596a36 ocelot_get_strings +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfbcbbb2e ocelot_vcap_filter_del +EXPORT_SYMBOL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfcc330dd ocelot_port_policer_del +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x4b5a48c8 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 0x810814d6 qed_get_iscsi_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x89a1ae13 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 0xf0879b38 qed_get_fcoe_ops +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0x7be74d3a qede_rdma_register_driver +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qede/qede 0xc9bea828 qede_rdma_unregister_driver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x057fc96c hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x130bbd00 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5ae98f88 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x85ef1ec6 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe839e483 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/mdio 0x3e17f466 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0x60443957 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0x63e0fee5 mdio45_links_ok +EXPORT_SYMBOL drivers/net/mdio 0xaadfd1af mdio45_ethtool_ksettings_get_npage +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 0x409397f6 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/mdio/mdio-cavium 0xa17ae2f7 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/mdio/mdio-mscc-miim 0x4ff6816d mscc_miim_setup +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x4c8efb88 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0x74a64ae5 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xc6b0a156 xgene_mdio_wr_mac +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xe684ed94 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/mdio/mdio-xgene 0xf895e20a xgene_mdio_rd_mac +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0x3c6ef7cd lynx_pcs_create +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xa6bf0e9e lynx_pcs_destroy +EXPORT_SYMBOL drivers/net/pcs/pcs-lynx 0xc38c3e7e lynx_get_mdio_device +EXPORT_SYMBOL drivers/net/phy/bcm-phy-lib 0x8fd274ee bcm54xx_auxctl_write +EXPORT_SYMBOL drivers/net/ppp/pppox 0x186b0af7 pppox_compat_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x50c0b9d8 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x572fea7b pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xca1887c6 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x79c04b3a sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x121dad7b team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x143ebfe9 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x2d644920 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x58d3672d team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7fb95724 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x816f628a team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xc5a0d702 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf0823579 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1fd69442 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa6a1d1f6 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdb675034 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0eea79ef detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1042e0e0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a1e03f3 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a55cd46 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x52a70645 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60abca98 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x93cad62e unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa64e0353 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc7cbb15e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc9d953f8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0b1ab353 ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x108b188f ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x29cb6acc ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b6532d7 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3b745221 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ee4f422 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4239ab38 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4571aea8 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7f483342 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x98760dc3 ath_hw_keysetmac +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9a4af5e4 ath_hw_keyreset +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 0xcd723ca7 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdd075fdb dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0f21271 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf251bd52 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4d1d502 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x015e5db2 ath10k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x059ad1e3 ath10k_ce_completed_recv_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x09e3955a ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0effe289 ath10k_bmi_read_memory +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x197165ce ath10k_ce_completed_send_next_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1b8f9bbf ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e3fc481 ath10k_htt_rx_hl_indication +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x21093a70 ath10k_ce_send +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x265d3b71 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x267fce75 ath10k_ce_per_engine_service_any +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a3de5e1 ath10k_ce_init_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bc6ad4d ath10k_htt_txrx_compl_task +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37496198 ath10k_ce_enable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x37577baa ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3b9e5d00 ath10k_ce_free_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50069271 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51157767 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x52bcd7eb ath10k_ce_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x58418e0b ath10k_core_napi_sync_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x591d7820 ath10k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5afb96cc ath10k_core_free_board_files +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5baf5f68 ath10k_ce_deinit_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f2c13ff ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x631372ef ath10k_htc_process_trailer +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6c9b5b0b ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6ebe497e ath10k_htc_notify_tx_completion +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7a644ccd ath10k_coredump_new +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7abb0594 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ce74efe ath10k_htt_rx_pktlog_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x81873c6e ath10k_core_check_dt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x89c49dbb ath10k_core_start_recovery +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8cebf973 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x97020827 ath10k_mac_tx_push_pending +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9acb88f0 ath10k_core_fetch_board_file +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f210323 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa1e4849a __tracepoint_ath10k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa31b9f5f ath10k_ce_revoke_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac62718d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xad492d33 ath10k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xafc0eff1 ath10k_coredump_get_mem_layout +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb141fa0a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb3e42df9 ath10k_ce_cancel_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbbb14755 ath10k_ce_dump_registers +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc85f9c2d ath10k_ce_free_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd2019570 ath10k_core_napi_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd3ca7941 ath10k_ce_num_free_src_entries +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaf50c29 ath10k_ce_rx_update_write_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc3f2717 ath10k_ce_completed_recv_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdc7a8ad0 ath10k_ce_send_nolock +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdcc25eb2 __ath10k_ce_rx_num_free_bufs +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf02b9988 ath10k_ce_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf117848b ath10k_ce_alloc_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf22edc45 ath10k_ce_alloc_rri +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf25ffc80 ath10k_bmi_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf5df928f __ath10k_ce_send_revert +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf67d3315 ath10k_ce_disable_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8cf459d ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdedcd3f ath10k_ce_completed_send_next +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x078f8b86 ath11k_ce_get_attr_flags +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x0f8aa7dd ath11k_pcic_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x16f58074 ath11k_hal_srng_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x19034094 ath11k_ce_cleanup_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1b055f3b ath11k_debugfs_soc_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1be75fc7 ath11k_pcic_write32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x1d3103a5 ath11k_ce_rx_post_buf +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x2193bba9 ath11k_pcic_ce_irq_disable_sync +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x21c91cfc ath11k_ce_get_shadow_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x257eca7d ath11k_pcic_config_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x279c0e34 ath11k_hal_srng_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x3b975824 ath11k_pcic_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x44566fdc ath11k_ce_free_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x49782a0b ath11k_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x5ddaa205 ath11k_pcic_ce_irqs_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x600e8b57 ath11k_pcic_map_service_to_pipe +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x606a5b5a __tracepoint_ath11k_log_dbg +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x61f0b4b0 ath11k_pcic_register_pci_ops +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x67fcb0d2 ath11k_pcic_ext_irq_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x6f0ad077 ath11k_qmi_deinit_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x74adb0f4 ath11k_pcic_init_msi_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x779a9fe5 ath11k_pcic_get_user_msi_assignment +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x7eade80a ath11k_core_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x83a43408 ath11k_dp_service_srng +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x8d27b614 ath11k_pcic_read32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x936c6634 ath11k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x949b3b0b ath11k_pcic_free_irq +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c2d81f8 ath11k_core_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9c51bcc4 ath11k_debug_mask +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0x9e38b6a6 ath11k_core_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xaf8670c2 ath11k_pcic_get_msi_address +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xbd9e4d11 ath11k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xc34c9903 ath11k_ce_alloc_pipes +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd1326e82 ath11k_core_pre_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd9ab1f24 ath11k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xd9ca209e ath11k_pcic_get_ce_msi_idx +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xddb439c4 ath11k_core_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5207d1a ath11k_core_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xe5a9b3eb ath11k_ce_per_engine_service +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf0197188 ath11k_cold_boot_cal +EXPORT_SYMBOL drivers/net/wireless/ath/ath11k/ath11k 0xf13b2411 ath11k_pcic_ext_irq_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0821e302 ath6kl_core_tx_complete +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 0x3b446058 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3c186b5c ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x57ec2932 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5d840517 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x8ec7226d 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 0xd91a4e7c ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xdf739224 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe99e770b ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf1aaad17 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfd85ae2d ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16cd3103 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18c2e018 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3978a8b8 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41aae67b ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4493bb9c ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4ceb3833 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6509f1b4 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x684b8801 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d525731 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x71a92213 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x79c9874d ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7f2c1e1c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x81f38c3d ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x93e69ddf ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x946f120f ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a425f1f ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb492557d ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe50ed56 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xca67febf ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb66a41b ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4383552 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea89e20a ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3ceb427 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfdd81dcd ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01575af5 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01953328 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x036b99e6 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07937fce ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0828f5bb ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b123245 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f77dafc ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c91ddb ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12132fe3 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c1dd97 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c8a5c75 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1de04347 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x201bf8fb ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2095f113 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20e181ea ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24004778 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c6978aa ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f166594 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x300ed0ba ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x339bb82a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34173a2e ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c2bb945 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cc181f2 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3f4eb9de ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fabfb3c ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42d54c2c ath9k_hw_btcoex_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43a780fd ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x457ce8b4 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x464263ec ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x492ab50b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aa1068b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4beaea69 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x502f5714 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53e960b8 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56487afa ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56c05d5b ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57b6ff2b ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57bd32c4 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x581b66e0 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e04e8d0 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61b00ff3 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6845330c ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68c2a669 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x697a7adf ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c4a822e ath9k_hw_gpio_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f454ada ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71eac7c6 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72b87ff8 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73c46d53 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73d15e2f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74c341cf ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x758d6ec9 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76f734dd ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba4f5cb ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d51a7d1 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d6f95aa ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81abb102 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x873a984a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cdd24d8 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ed157fa ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fc6ae68 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x921fa0f2 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9994bc8b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a471209 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a7dbb74 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa425da3b ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7055919 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa75ef12e ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7f74de5 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa957fe71 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa88685e ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae6a9d3b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaee31570 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf786663 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb238daa9 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb54d2e49 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb877355 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc1ec1b6 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe5b5920 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc06d868f ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4266830 ath9k_hw_loadnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91c4f77 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc2cd8b3 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd72c815 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd01cd345 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd042729a ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1beece6 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4dfded5 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfc3662f ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe046636e ath9k_hw_gpio_request_in +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe31c2cc8 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe632be9a ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe731a517 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7698593 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8969b3b ath9k_hw_gpio_request_out +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb004ad7 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec1d6869 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef186ac3 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf24b6593 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3462170 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf355de79 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3d37231 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf457046b ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8fe3379 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb56f1f5 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd04ca13 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff573530 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfff5630a ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x1ddcd3db stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x3eb1a9a8 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel/atmel 0x482e6e95 atmel_open +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x00ef7cd5 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x04fadf3e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x062a3153 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 0x1f52f5be brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x20e59fd4 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x81f03264 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x92b142f7 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0x99b491b2 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 0xb500ef50 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xbef6f353 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xcaed4227 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 0xd962339e brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/broadcom/brcm80211/brcmutil/brcmutil 0xe971b341 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x00c7ecfe libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x0ce93fc1 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x2bbc3e6f libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x5a2b2bde free_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x75c3da41 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x7f1ebd1e libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8031516f libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x8d361d69 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x95a0f23d libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x99ff6747 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0x9d1d8a1d libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xa9612c2e libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xaf8d6e1f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xd57b7acd libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xdad8d594 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xde49a6df libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe5147ff3 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe54ce00a libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xe8775be2 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/intel/ipw2x00/libipw 0xecbdc90f libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0552a5e1 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b0dbaa6 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0b3894d7 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0eaf940e il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f397e1c il_set_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x0f691f9c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1091b198 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x120f5134 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x177eb2c4 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x1d06e24d il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x232e8f6a il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x261a6fc0 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x28cc6aac il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2be597be il_leds_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2bf7eea6 il_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x2db7dcf2 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x337b4696 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x38c267ee il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x3df31a62 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 0x43512347 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4dbe1773 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4ed6edf3 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f52d180 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x4f85dd2c il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x51426d5d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x543cdec3 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x55046cd6 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56accb4b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x56de6372 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x584a7939 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x596a531e il_mac_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5a7e05af il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b398094 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5b98a9a7 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5df4f3ea il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x5fe22a37 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x60c631b6 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x62357e08 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x64c6e62c il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x65102f4c il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x680b1763 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x691ee53d il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6a484455 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6b05b80f il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6d84c606 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x6e032d50 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x79751820 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x815a18dc il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x81fc1ba7 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8272ce08 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x87ae6edd il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x895aff15 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8da8a088 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x916fb32b il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9560b31a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96379e77 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x96ab4a50 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x97e17f61 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cad4401 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9cc714af il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d04e79e il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x9d91757d il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa0c46c2a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa2e328f9 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa4d6d786 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa51f0d80 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xa894735a il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xac7dfd52 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xad8b9f04 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xaf985ebc il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb65510a3 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xb957a59b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbbbf9985 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbd46303f il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xbfea47dc il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc3fb3bd9 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc48dfea9 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc7a407c6 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc8c8a4bb il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xc97997f6 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xca14411d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcb660c2a il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcc2cb7f6 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcd32d9a1 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcda6d6e3 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xce3ad7a3 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xcf1bd320 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd20692fd il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd576588d il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd5c179e9 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xd9cc5ac6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xdd7bb454 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe187ee25 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe3177165 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xe382b8eb il_free_geos +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xee43b0db il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef31a5ad il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf27f8613 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf70a693b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xf8153c9d il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfa1e4d14 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xfe11dbe3 il_force_reset +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 0x71a730f9 __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 0xdecd232d __traceiter_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/intel/iwlwifi/iwlwifi 0xf09b4604 __traceiter_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1885b1b0 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x1b41a8b2 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x2077764b hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x315b1d08 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x315b53c7 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x320a5b8a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x4751e4e5 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x535fd1f0 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x55fc3b04 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x643ae99b hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x6bc76aa9 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x70928195 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x75934c58 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7807b446 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x7fb75891 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x90c7eafe hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x91e1e845 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0x92012f81 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb510c6e7 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xb91ff230 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xbc276a82 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xc5487a62 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd1a21c64 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd4583fcb hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xd6a05106 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xe827950f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xefed9df8 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/intersil/hostap/hostap 0xf91c03e2 hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x157ccfa1 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x17aefd44 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x1c65aa33 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x22e406a5 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x38e86786 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x41142c0f orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x6d75b1fa orinoco_down +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x73ec7a26 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0x79eb094a orinoco_up +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa58cd53c orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xa74c2dc5 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd620563c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xd92a37ff orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe5fb3ae6 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xe80fbe07 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xf48fb5c3 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/intersil/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/mediatek/mt76/mt76 0x5d12957f mt76_wcid_key_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x44fe9e6f rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03846229 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09cd72b6 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0a5e347d _rtl92c_phy_rf_serial_write +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 0x309a6198 _rtl92c_store_pwrindex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35fa5f8f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45dfdc91 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4635756e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x552cba01 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x563940f8 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x65ef33a1 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x68285217 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73d085e3 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83710904 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x84c03464 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x874cfcae rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x898fb2ed _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f94c411 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x92e6a276 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9380e1cd rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9432cc94 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x965182ed _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a9cb88e rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa51c9d8e _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5303e1c rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabb05312 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xabfd9451 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacb8861b rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb2e050b8 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8ce3b38 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc56bb2e _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcdfeeda2 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce18c6f2 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcfabbc04 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe42f3114 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9424889 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf22532c9 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf28ed5c2 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf36110d8 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4c8ea58 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfc906e85 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfd636c5a _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09ae7648 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09f5871e rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa14811f3 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xed143d9e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x5998f9fe rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xcb291e86 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe65352ef rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe738235e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x031867de rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b038e24 channel5g_80m +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14750bc6 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b945315 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2592d0a7 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x269ec41f rtl_rx_ampdu_apply +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ee0317f efuse_power_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x30a956d7 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4670c5db rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53378b47 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x53a1363c efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54824f58 channel5g +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a7de6b3 rtl_mrate_idx_to_arfr_id +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d54947e rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6053ab95 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61bb997d rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75f77dc6 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8223c61b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86bad71a rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89572224 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e7b65ac rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8ea60059 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9511ecd4 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9be2763b rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e044cc2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa62c4148 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae251b99 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1ed3941 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4cc8c4c rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbec55097 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbee8ce1 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce262f3b rtl_collect_scan_list +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xddca16b0 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe76b0a31 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xebedfe5f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xed7c8cf2 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4bc39f4 rtl_c2hcmd_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8723d 0xcc67234f rtw8723d_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8821c 0x51a754c2 rtw8821c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822b 0x278759fd rtw8822b_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_8822c 0xc84532c3 rtw8822c_hw_spec +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x082fab44 rtw_fw_do_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x142c5291 __rtw_dbg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x1875467d rtw_fw_c2h_cmd_rx_irqsafe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x28ae8144 rtw_bf_enable_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x29b042a9 rtw_parse_tbl_phy_cond +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x2aaa0522 rtw_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x3010f4f2 rtw_phy_cfg_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x315cf897 rtw_tx_write_data_h2c_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x319414e9 check_hw_ready +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33a6f7d7 rtw_tx_write_data_rsvd_page_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x33b3f3c0 rtw_debug_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x343b0840 rtw_phy_pwrtrack_get_delta +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36c5bfca rtw_disable_lps_deep_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x36cae054 rtw_coex_read_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x38d8bc38 rtw_set_rx_freq_band +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x429f5ccb rtw_tx_fill_tx_desc +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 0x482ea279 rtw_fw_c2h_cmd_isr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x48e6d980 rtw_phy_cfg_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4a5609e6 rtw_restore_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4d25d49a rtw_bf_cfg_csi_rate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x4ee8e783 rtw_phy_pwrtrack_get_pwridx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x519c8ba9 rtw_rate_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x53803ab5 rtw_phy_set_tx_power_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x58210e60 rtw_rate_section +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5b31045d rtw_unregister_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e16f369 rtw_parse_tbl_bb_pg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x5e34eee5 rtw_phy_get_tx_power_index +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6034e912 rtw_set_channel_mac +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x6a13a7cf rtw_coex_write_indirect_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7328c1eb rtw_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x76ddc8ba rtw_coex_write_scbd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x77724a2d rtw_phy_config_swing_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x7b97c56d rtw_phy_set_edcca_th +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x804b9667 rtw_bf_enable_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x88c25145 rtw_phy_cfg_agc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8a56bd39 rtw_phy_pwrtrack_thermal_changed +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8acc0ed7 rtw_phy_load_tables +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8b25fed1 rtw_read8_physical_efuse +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x8d830173 rtw_bf_set_gid_table +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9096fc5d rtw_regd_get +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x91306181 rtw_parse_tbl_txpwr_lmt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x97dd0e04 rtw_dump_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99541d46 rtw_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x99d915a5 rtw_rx_fill_rx_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0x9f9427ae rtw_tx_report_enqueue +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa1656e8a rtw_phy_write_rf_reg_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa2a6575f rtw_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xa54c5de6 rtw_power_mode_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xad609662 rtw_phy_pwrtrack_need_lck +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xb1e3ccc9 rtw_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xbbef1dec rtw_phy_pwrtrack_need_iqk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc2c79830 rtw_phy_read_rf_sipi +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xc960ceb0 rtw_register_hw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd5deeeba rtw_rx_stats +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xd9ae7c85 rtw_phy_pwrtrack_avg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe428d0be rtw_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe4591776 rtw_dump_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe52db133 rtw_phy_cfg_bb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xe6ec63c0 rtw_bf_remove_bfee_mu +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xecb0804c rtw_bf_phy_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf31de95c rtw_phy_parsing_cfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf424d71b rtw_phy_write_rf_reg_mix +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xf45f831e rtw_bf_remove_bfee_su +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_core 0xfd19f1df rtw_fw_inform_rfk_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x288c69e9 rtw_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x3b4d4638 rtw_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0x9714fe69 rtw_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw88/rtw88_pci 0xb56b4b03 rtw_pci_shutdown +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852a 0x05136a28 rtw8852a_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_8852c 0xe928f4b7 rtw8852c_chip_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x05a015a7 rtw89_core_napi_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x124eba88 rtw89_mac_cfg_ppdu_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x13dd34e1 rtw89_core_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x147e9afc rtw89_rs_nss_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x188a5218 rtw89_mac_get_txpwr_cr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2566a657 rtw89_core_napi_start +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x25a64e28 rtw89_phy_load_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x2a9b898a rtw89_phy_tssi_ctrl_set_bandedge_cfg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3158c856 rtw89_phy_write_reg3_tbl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x38ca2acf rtw89_phy_fill_txpwr_limit_ru +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x3e5258bd rtw89_phy_get_txsc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x41c30521 rtw89_mac_get_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x42502fc3 rtw89_phy_write_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x480d1bda rtw89_phy_fill_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x485cedf6 rtw89_mac_resume_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x52af116b rtw89_core_unregister +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x566be999 rtw89_core_napi_stop +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x576bacbe rtw89_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x576dfd48 rtw89_rfk_parser +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x5ad78d5b rtw89_core_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x65f7a1ab rtw89_mac_enable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x68bafb08 rtw89_mac_set_err_status +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6b3e2831 rtw89_mac_resume_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x6e8f5a63 rtw89_mac_size +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x701b898d rtw89_mac_cfg_gnt_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x713d4016 rtw89_phy_write32_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x7b42c581 rtw89_fw_h2c_rf_ntfy_mcc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82004b76 rtw89_btc_ntfy_wl_rfk +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x82411d2e rtw89_mac_cfg_ctrl_path_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x8867088d rtw89_phy_read_txpwr_byrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x89d36d49 rtw89_phy_config_rf_reg_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x902aca88 rtw89_phy_read_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9a354f77 rtw89_core_napi_deinit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0x9e7fd0d9 rtw89_core_fill_txdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa12efd7b rtw89_mac_stop_sch_tx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xa16f1f57 rtw89_phy_write_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xaaf6bffb rtw89_mac_cfg_ctrl_path +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb247c33f rtw89_fw_h2c_dctl_sec_cam_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xb470194a rtw89_core_fill_txdesc_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xbb588f7f rtw89_phy_read_txpwr_limit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0b7c7d5 rtw89_core_rx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc0fa1d42 rtw89_core_fill_txdesc_fwcmd_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xc95534b0 rtw89_rs_idx_max +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xca2438e1 rtw89_mac_cfg_gnt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xd02fe84e rtw89_mac_stop_sch_tx_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdbc03093 rtw89_core_query_rxdesc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xde302c8e __rtw89_debug +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xdfec69b5 rtw89_mac_disable_bb_rf +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xe067cca8 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 0xe572ca89 rtw89_chip_info_setup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf1b22c20 rtw89_ser_notify +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xf86a8a05 rtw89_mac_write_xtal_si +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfafb513e rtw89_phy_read_rf_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xfb32e929 rtw89_mac_coex_init_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_core 0xffb32752 rtw89_mac_coex_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x017379e6 rtw89_pci_recognize_intrs_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x0b61e7cb rtw89_pci_ltr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x112a26b7 rtw89_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x1fef1f87 rtw89_pci_disable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x31b81378 rtw89_pm_ops +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x40fc7f62 rtw89_pci_fill_txaddr_info_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x43121acf rtw89_pci_disable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x45fc5aec rtw89_pci_enable_intr_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x50b50b44 rtw89_pci_recognize_intrs +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x64215d95 rtw89_pci_config_intr_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x825afda8 rtw89_pci_fill_txaddr_info +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x914bb7a8 rtw89_pci_config_intr_mask_v1 +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0x9ce0961b rtw89_pci_ch_dma_addr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbb6a739f rtw89_pci_ltr_set +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbdcc8d02 rtw89_pci_enable_intr +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xbf5345dc rtw89_pci_remove +EXPORT_SYMBOL drivers/net/wireless/realtek/rtw89/rtw89_pci 0xf630d9a9 rtw89_pci_ch_dma_addr_set_v1 +EXPORT_SYMBOL drivers/net/wireless/rsi/rsi_91x 0xe43df31f rsi_config_wowlan +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x05948775 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0abfc09b wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1366532d wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x7dfa65b8 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4ac8a76d fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9fc2b492 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x24a5dc93 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8b4d672b microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x35eae7bd nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x41762fa5 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xa9ac9d4b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn533/pn533 0xd961b822 pn533_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0e413083 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x96492a69 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x54fb6d03 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x774203fc s3fwrn5_phy_set_wake +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa3045bdb s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xce4cc6e5 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xda20aa39 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 0x034d23c7 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b7ec2fc st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41600d06 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4595c562 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4a27b3b3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4c0ea6f7 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7cde6e8e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa5249bd9 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf2e8f71 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb30893e ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x02abe18b st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0c16e6d3 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1857f153 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e73b03d st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1fead0f2 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x365e9f6c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b6293f7 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4b461cf1 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x58a91489 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5e04f06b st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6d0a76da st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6e8f6888 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9e1ddfa3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4de84f9 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb35a4156 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc87ac03e st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdced06b0 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xde1a0ae4 st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x0309f91b ntb_default_peer_port_count +EXPORT_SYMBOL drivers/ntb/ntb 0x0a5ab997 ntb_default_peer_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x0be8430c ntb_msi_peer_trigger +EXPORT_SYMBOL drivers/ntb/ntb 0x32471f82 ntb_default_peer_port_idx +EXPORT_SYMBOL drivers/ntb/ntb 0x3cc2cafe ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x438c9569 ntb_msi_clear_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x4acd7a3d ntb_default_port_number +EXPORT_SYMBOL drivers/ntb/ntb 0x4fd43bec ntbm_msi_free_irq +EXPORT_SYMBOL drivers/ntb/ntb 0x766d0c0d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x76f7ed71 ntb_msi_setup_mws +EXPORT_SYMBOL drivers/ntb/ntb 0x7ba60551 ntb_msi_peer_addr +EXPORT_SYMBOL drivers/ntb/ntb 0x80cece79 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8141af7d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa6a2845f ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb2a8b09c ntb_msg_event +EXPORT_SYMBOL drivers/ntb/ntb 0xd03db86a ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd20ac168 ntb_msi_init +EXPORT_SYMBOL drivers/ntb/ntb 0xd25a8a05 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xdbd4b108 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xfb6fd1b3 ntbm_msi_request_threaded_irq +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xbedb8ba9 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe514b5a3 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/parport/parport 0x0a031440 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x0c97f8fc parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x0e43f4a4 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x20fbe5b8 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2530f51d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x37f44046 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x3bafa308 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3ccb6c97 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3f9a3464 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3fb4b287 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4460c624 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4df1802b parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x54bf78b4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x60d9186d parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x6b63603b parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6e2e6b2f parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x6fc4881d parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x71b4673c parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x74e670c9 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x9c0df52d parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9ccb1499 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa15a0155 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xafd8136e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xcc2f18cc parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xd21e9a0e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd308ee71 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xd3541d9a parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xdd5d54b6 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xde6947f4 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xed2e1b7b parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xeed6fbb6 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x6f0999a6 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd471bd86 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x4bb1b1d0 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/controller/pcie-iproc 0x80ac5252 iproc_pcie_remove +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x07c69f27 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x09454882 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x123d711a pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2276281d pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3377051d pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3d2e6dde pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x50c7d62e pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6606769d pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8194adb8 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd21926b2 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf942709b pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x0e28ee47 pccard_static_ops +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x06acbb30 cros_ec_resume +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x70bf4c1a cros_ec_suspend +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0x9302fc1d cros_ec_unregister +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xe1beb8c0 cros_ec_register +EXPORT_SYMBOL drivers/platform/chrome/cros_ec 0xf25aacf5 cros_ec_irq_thread +EXPORT_SYMBOL drivers/regulator/rohm-regulator 0xa50885b9 rohm_regulator_set_dvs_levels +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x0782d141 qcom_smd_register_edge +EXPORT_SYMBOL drivers/rpmsg/qcom_smd 0x3330a1c8 qcom_smd_unregister_edge +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0x61294219 rpmsg_chrdev_eptdev_create +EXPORT_SYMBOL drivers/rpmsg/rpmsg_char 0xe69ec611 rpmsg_chrdev_eptdev_destroy +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x156199d0 rpmsg_class +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x17a97a10 rpmsg_unregister_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x191aca7f rpmsg_trysend_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x199a18fd rpmsg_trysendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x1f1b45dd rpmsg_get_mtu +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x30b65d67 __register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x6b1bbfaf rpmsg_send_offchannel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x7ec4f7da rpmsg_find_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8cd3b264 rpmsg_register_device +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x8db70e9f rpmsg_create_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0x9f3c571b rpmsg_register_device_override +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xab228daf rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xb2cfae8c rpmsg_sendto +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xbbb3c489 rpmsg_trysend +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xc8a7ec18 rpmsg_release_channel +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd2737188 unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xd8a9e513 rpmsg_send +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xe64e6299 rpmsg_poll +EXPORT_SYMBOL drivers/rpmsg/rpmsg_core 0xfb4af7dc rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/rpmsg_ns 0xf2f75748 rpmsg_ns_register_device +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x38fb3cba ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8a1ff422 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8a9a5afc scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa30f0e12 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe0bfdc40 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x04f65993 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x10c926dd fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x191a3288 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x24918a7b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x35510d6e fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x529fefcc fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x634af2b7 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa62e8b52 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc7484483 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe46bc29b fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf1a61b10 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0caa0e7e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d32c352 fc_seq_set_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x177ca5b0 fc_rport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1988cca6 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1f7cffb4 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22d03871 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a0cfe70 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b741736 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c12b213 fc_exch_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e38dd62 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e2ee62 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d16eb79 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41a2f8b5 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49d5ff20 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5171a010 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5304fc58 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5868b95d fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59ea9930 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c1b3870 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ed36c7b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60f4238d fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63bf1fb0 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x681a979c fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x72e7abea fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7833f505 fc_frame_alloc_fill +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 0x8284b16a fc_rport_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83bbf3b7 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88b0d755 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8df18b4d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x932b3867 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96cb8331 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d50ed7e fc_rport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa05b5ee5 fc_rport_recv_req +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0c8432d fc_rport_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa12b10b0 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1bcd198 fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa541ba04 fc_seq_assign +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa8e5235c fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac6d9f15 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac7a2a6f fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac7c2e7d fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xadc7c823 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0ddd5a1 fc_rport_flush_queue +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb28ee8be fc_seq_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4bae78e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8ba7986 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc51c901 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd279da4 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbf98d200 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc183dc39 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb163d10 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc52fba3 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf163472 fc_rport_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd87f15fd fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdb8dfa9d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5cf06b5 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee2aeaed fc_lport_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf3bb45e1 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa4667d1 fc_seq_release +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcd9a8de fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfe39abe2 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xff21bac7 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffeef6c6 fc_linkup +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x356c6352 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x43a5941b sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4a8e3d34 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb7e79e35 sas_resume_ha_no_sync +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xd98cf4f3 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x4afd6ecf 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 0x0d2ea513 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18e775b1 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45ac8181 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x45b9af66 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5b4ea94a qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x821bb8a8 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84cd845c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93dc3264 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa8e6cd2c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbd186f4e qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcac599b0 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdfabe9a5 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x43cc2f88 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xaaabc67c raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xbeafa285 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03e7c391 fc_host_fpin_rcv +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0553d827 fc_block_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1c8861cb fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29da3a48 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x375f8bbd fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x532b7c0b fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65d3b0ba fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7392069b fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x74e3a46a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x74fcc917 fc_find_rport_by_wwpn +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x76db2c2f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77b83ad1 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8fa2e798 fc_eh_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xba8a2198 fc_host_post_fc_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbd1ee95b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd07a9338 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdaff34ab fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf6b76dc4 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x085f09aa sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20a76e10 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x263f1147 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2fac508b sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39ea667c sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a265921 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bca2ac4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x400acb13 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x489d7cc9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4c2c0fdb sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dddd15e sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4de2a551 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x549f2d9a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6279fca5 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64f7e50d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e263961 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x737771ea sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x77888734 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80b262df sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a6089ee sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa3a9c93d sas_get_address +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8c18f6e sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafb9f38c scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1db63c8 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc512f640 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd5fe9c7b sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdac699a7 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec1c95e6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc08d448 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29af804f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2d911552 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x60246b21 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6d381cf6 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa35f30e6 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x1a6282e5 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x3b985498 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4201c5b0 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x4258f523 srp_timed_out +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe3382cb6 srp_reconnect_rport +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x030f2d6c dpaa2_io_service_enqueue_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x21e76a68 dpaa2_io_get_adaptive_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x2bc276ca dpaa2_io_update_net_dim +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x35210a1c dpaa2_io_set_irq_coalescing +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0x3d01f417 dpaa2_io_service_pull_fq +EXPORT_SYMBOL drivers/soc/fsl/dpio/fsl-mc-dpio 0xb629a241 dpaa2_io_get_irq_coalescing +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/fsl/dpio/fsl-mc-dpio 0xfa0aedff dpaa2_io_set_adaptive_coalescing +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 0x1dabf87e 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 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 0x3dba770a 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 0x60d82416 cmdq_mbox_create +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x62622035 cmdq_pkt_write_s +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x6482132a cmdq_pkt_poll_mask +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x81232e95 cmdq_pkt_assign +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0x91e6f300 cmdq_pkt_clear_event +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xa644a9a6 cmdq_pkt_write +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xab2ec244 cmdq_pkt_flush_async +EXPORT_SYMBOL drivers/soc/mediatek/mtk-cmdq-helper 0xc245a913 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 0x86a7d5fe 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 0x09062db4 geni_se_tx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x49102a47 geni_se_clk_tbl_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4a8a2062 geni_icc_enable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x4b45df79 geni_se_init +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x5e195f3e geni_icc_set_tag +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x6e1555ec geni_se_rx_dma_prep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x925b0eae geni_icc_set_bw +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0x99e88006 geni_se_select_mode +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xa1bddf97 geni_icc_disable +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xaf190fef geni_se_resources_on +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xba2aca00 geni_icc_get +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc37a197c geni_se_clk_freq_match +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xc4f69f7f geni_se_resources_off +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xda3da956 geni_se_config_packing +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xe93607f7 geni_se_tx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xebbb7e39 geni_se_rx_dma_unprep +EXPORT_SYMBOL drivers/soc/qcom/qcom-geni-se 0xf1fc025e geni_se_get_qup_hw_version +EXPORT_SYMBOL drivers/soc/qcom/qcom_aoss 0x174a1e78 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 0x1a6bd4a4 qmi_add_lookup +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x21ce5888 qmi_response_type_v01_ei +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x23085ca1 qmi_txn_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x31e5321e qmi_send_request +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x378ea1fa qmi_handle_init +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x5828041d qmi_add_server +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x68772745 qmi_decode_message +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x74ee3375 qmi_txn_cancel +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x88224abf qmi_txn_wait +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0x892e6038 qmi_handle_release +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xa8be0c21 qmi_send_response +EXPORT_SYMBOL drivers/soc/qcom/qmi_helpers 0xff24220c qmi_send_indication +EXPORT_SYMBOL drivers/soc/qcom/smd-rpm 0x3abef80b qcom_rpm_smd_write +EXPORT_SYMBOL drivers/soc/qcom/smem 0x34b57571 qcom_smem_alloc +EXPORT_SYMBOL drivers/soc/qcom/smem 0x5a710273 qcom_smem_get_free_space +EXPORT_SYMBOL drivers/soc/qcom/smem 0x9979b76e qcom_smem_virt_to_phys +EXPORT_SYMBOL drivers/soc/qcom/smem 0xeeffa750 qcom_smem_get +EXPORT_SYMBOL drivers/soc/qcom/wcnss_ctrl 0x73d6cb93 qcom_wcnss_open_channel +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x16d1706b sdw_prepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x1deee061 sdw_find_row_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3a9f6ee7 sdw_read_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x3b0a8582 sdw_startup_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x49752896 sdw_slave_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x4cde88bf sdw_disable_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x5025e164 sdw_write_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x54966adc sdw_bus_master_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x60e31fbb sdw_find_col_index +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6dc95c28 sdw_update +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x6f95b16b sdw_shutdown_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71891d59 sdw_deprepare_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x71ce0ca5 sdw_update_no_pm +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x7631271e sdw_bread_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x77199465 sdw_extract_slave_id +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x80defda7 sdw_stream_add_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x83302079 sdw_nread +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x906a0ff9 sdw_write +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9d4cb168 sdw_bwrite_no_pm_unlocked +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e094c4d sdw_stream_remove_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0x9e122d79 sdw_alloc_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa37afb83 sdw_slave_add +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xa87dfb9c sdw_handle_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xb0976b7e 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 0xbd90f158 sdw_nwrite +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xc1d29f33 sdw_clear_slave_status +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcda67fb8 sdw_read +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xcfa8febe sdw_stream_add_slave +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xda5bce09 sdw_release_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xdaf6d7c0 sdw_compare_devid +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe27af2ab sdw_bus_prep_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xe7d8b5a7 sdw_bus_master_delete +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf4cde400 sdw_stream_remove_master +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xf53ba0b8 sdw_rows +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfb427dd0 sdw_master_read_prop +EXPORT_SYMBOL drivers/soundwire/soundwire-bus 0xfd4499a2 sdw_bus_clk_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x01f0a8f9 cdns_reset_page_addr +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x0ea7fdd0 sdw_cdns_pdi_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x24f919bf sdw_cdns_check_self_clearing_bits +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x34712074 sdw_cdns_irq +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x3d4990ee sdw_cdns_probe +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x41871125 sdw_cdns_exit_reset +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x56f71020 sdw_cdns_clock_restart +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x59eb3d6f cdns_xfer_msg +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0x8289fafd sdw_cdns_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xa42b1338 cdns_xfer_msg_defer +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xaf910044 sdw_cdns_enable_interrupt +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xb1498aa0 sdw_cdns_init +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xba28e9d7 sdw_cdns_is_clock_stop +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xc51687af sdw_cdns_config_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xca423285 cdns_set_sdw_stream +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xe506084a sdw_cdns_alloc_pdi +EXPORT_SYMBOL drivers/soundwire/soundwire-cadence 0xf548a603 cdns_bus_conf +EXPORT_SYMBOL drivers/soundwire/soundwire-generic-allocation 0x5b8651e0 sdw_compute_params +EXPORT_SYMBOL drivers/ssb/ssb 0x07aafe22 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x0878f878 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x12c8f058 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x13094e84 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x18671393 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2804786b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x3e9dc735 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x41739f4f ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x4d51d422 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x50f21f62 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x72a73781 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x77385f42 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x78cd99d7 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x906da0d6 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb8f42868 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcb17f1cb ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbeec510 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xdfc7c6ef ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xf3d06d3f ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf42e6f2f ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xf47e7bb8 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xfefe1885 ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c79b589 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10ddddfd fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1fabfbbd fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x285d5697 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a9a9920 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47c141d6 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4cb1d06d fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ea70758 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x675cd712 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x69858ee3 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6a25dd20 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7478a8aa fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77dcd700 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x86538b9e fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8aecdfc7 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x97750bf2 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb47a2069 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb9537ecc fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcb92b9c7 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd072d326 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd0a35e09 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4beb5a3 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe32ff027 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe37bbd0d fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe49174f7 fbtft_write_buf_dc +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x66d55eb4 gbaudio_unregister_module +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0x7bb800a8 gbaudio_module_update +EXPORT_SYMBOL drivers/staging/greybus/gb-audio-codec 0xcbc3b156 gbaudio_register_module +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x6d2a2b03 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x5aeabab1 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/av7110/sp8870 0x20372b1f sp8870_attach +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xc9f1ebd6 nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xecf2cf37 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0904446b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0f38ab72 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d479bb1 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x22166084 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2338a7ce dot11d_channel_map +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x240658e1 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x34f4d47b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3adf4ae7 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c8d0dd8 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x407e76c5 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4162f776 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d8a1356 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ea33604 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5198340b rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x542bc42b rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5545e4a8 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57e75d5c rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5e07d3bc rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62dae431 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6328ec2a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64f4b66e rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ffc2ad3 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72415c2b rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76cb42af rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77476336 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81d0477f rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x849ba149 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87bce9a4 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91287ad6 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x92bade67 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9983dc1d rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a6a4dc2 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9f5fdc5b rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb24d4829 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9657319 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd69da15 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0c06cf9 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4732d78 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd4d4d7fc rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe352f58e rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7e140a7 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe985e303 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf0994a05 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1829cd6 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf2e413a1 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf61bc6d3 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf65b3a0a rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf990bd6b rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa9ddbeb rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe30d558 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03f348d0 is_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x065c182d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fc69d6b ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x137f3a43 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c3885a8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d3e1e07 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d66a0ff ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1dfb3d7f to_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2695b64a ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39bf0c74 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4254455a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x448d25ad dot11d_update_country_ie +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4913375e ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b3ac775 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f53708c ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x537cf9a8 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d5bdbfe ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x658ebd92 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68449b2f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ba4285a ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e708a68 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71202e2f ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8049e270 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8dc85b1c ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x934e96b1 dot11d_get_max_tx_pwr_in_dbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94364c6a ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x95d8ef69 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b7f89d5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f0381b5 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa14239cb dot11d_reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xab343b78 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac550226 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb68676a9 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb75e73b1 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7cae109 rtl8192u_dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8586c32 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb85c109c ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc1901b5 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfca2fd2 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc78fc472 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8b33706 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca236030 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb2857b9 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0433fbf SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2655eed ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd69e3df4 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb00791f ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdd3f2a81 dot11d_scan_complete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7aa4d34 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xecc5fb1b ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee94329f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7798a76 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfa093b6d ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc1b458c ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff45a027 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x01eb6ead vchiq_open_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x02f8c431 vchiq_queue_kernel_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1bd51e32 vchiq_shutdown +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x1c60d406 vchiq_get_service_userdata +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x35853b04 vchiq_release_message +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x582ed8ca vchiq_bulk_receive +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x5c054645 vchiq_msg_hold +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0x70fbdac9 vchiq_msg_queue_push +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 0xb05b02ae vchiq_release_service +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xbca0c1c0 vchiq_add_connected_callback +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xc66ce105 vchiq_connect +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xcf9f8d26 vchiq_initialise +EXPORT_SYMBOL drivers/staging/vc04_services/vchiq 0xe95e0941 vchiq_close_service +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x005d794e iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05b7f0bf iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05daa3c5 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07832d89 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1f6773ee iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2b8b8882 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35096a36 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3e6269c4 iscsit_thread_check_cpumask +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x45e83584 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x464707f2 iscsit_free_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ef2d91c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x537aceb5 iscsit_add_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54d58962 iscsi_target_check_login_request +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x661d3d21 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6ccf4993 iscsit_handle_snack +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6dead6d6 iscsit_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7eb24a02 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9a79e894 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1021a57 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa1d646ce iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa437248f iscsit_build_datain_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa87fb4b0 iscsit_find_cmd_from_itt_or_dump +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa91a4e7d iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9872ab5 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9f370c4 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab48b491 iscsit_aborted_task +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb143cb07 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1d55e04 iscsit_reject_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb29bcfcc iscsi_change_param_sprintf +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbceed7f2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc01037bd iscsit_queue_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc13ff5ca iscsit_set_unsolicited_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc43ff348 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29a2411 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd38f8a19 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd955aa98 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda1a8517 iscsit_response_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdf4a0d7c iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdfdbe954 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe4bc5348 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6a95cd1 __iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xecd03ffb iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf2e1340b iscsit_add_cmd_to_immediate_queue +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf34332f0 iscsi_find_param_from_key +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfbeb3689 iscsit_get_datain_values +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xff5308a2 iscsit_build_r2ts_for_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x054305db target_show_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0871ffd6 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x093d7fbd transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x097edb85 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d219cb8 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d63bd07 target_remove_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x142072c0 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x1580e2cb transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x186eb10a core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c3a9592 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c77dda8 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x270c1eb8 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x28f83a44 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c56c966 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x300fb751 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x30ab55ac transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x33808447 target_send_busy +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a20a9d7 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dbe2c02 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3dee0151 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x4163bd28 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x4277b34a target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x42f6c463 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x49b92bd9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b237c19 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b43b250 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dc67b27 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bcd8eab transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5eb977d2 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x611d0cfc spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x638bffb7 target_free_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x659fe4bd target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a43ee17 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f3d5ecb target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f787ef0 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x71cd69b0 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x71f23a0c sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x77b99a94 passthrough_pr_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a1d0d3c target_alloc_sgl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e689164 target_set_cmd_data_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x825a2b7f transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a19904f core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fa96337 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x90ebf4e0 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x9186fb56 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x925fe70c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x967f066d sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x98ddc21c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e20c27d __target_init_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa012a7a4 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2101b2d target_cmd_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa37d30e3 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9726a47 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2541d94 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7273ee7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbef7a54 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbf08362 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc664eea target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdd473c1 target_cmd_init_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0d6a568 target_complete_cmd_with_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6521793 target_setup_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd918aae9 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xd91d8775 target_stop_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd95aa7f2 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xda1005bc transport_copy_sense_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xddb96ea4 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xdf507004 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xe3af3276 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xe541da0f transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5a79dce target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7f6c377 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe95cde9c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf257d121 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3c2dfe0 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf960d02c target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa6e4c0c target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbb4d580 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc30003d transport_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcedd155 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x126a3784 ufshcd_system_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x37c80812 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x407c60b3 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x43d4e4ea ufshcd_system_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x489b2b0c ufshcd_map_desc_id_to_length +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x5a9d70a4 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0x6d40bef8 ufshcd_get_local_unipro_ver +EXPORT_SYMBOL drivers/ufs/core/ufshcd-core 0xbe71cf02 ufshcd_shutdown +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0x3c537e21 tc_dwc_g210_config_40_bit +EXPORT_SYMBOL drivers/ufs/host/tc-dwc-g210 0xddb95628 tc_dwc_g210_config_20_bit +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xeb11d6d8 ufshcd_dwc_dme_set_attrs +EXPORT_SYMBOL drivers/ufs/host/ufshcd-dwc 0xf40cc9ca ufshcd_dwc_link_startup_notify +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xff02bb6f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x17bfa9d0 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x52b74ce5 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x00ae2822 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x04e8dc07 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x08570776 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x18b32520 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x62795309 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x688041ad usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89bda6b6 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92186998 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaaa93b2c usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc28d3f4f usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd969388e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4d4960d1 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe42a16f0 usb_serial_resume +EXPORT_SYMBOL drivers/vdpa/vdpa 0x543d3ace vdpa_set_status +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x40b2a27a mdev_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x58ffced9 mdev_register_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x5fa6a96f mtype_get_parent_dev +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6ce2c8f6 mtype_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0x6ee66faa mdev_get_type_group_id +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd7ce5dbf mdev_unregister_driver +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xd9f1e8da mdev_unregister_device +EXPORT_SYMBOL drivers/vfio/mdev/mdev 0xf372a8b4 mdev_register_device +EXPORT_SYMBOL drivers/vfio/vfio 0x19567d06 vfio_info_cap_shift +EXPORT_SYMBOL drivers/vfio/vfio 0x1f8299de vfio_dma_rw +EXPORT_SYMBOL drivers/vfio/vfio 0x37f574ed vfio_register_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x395ae4a0 vfio_unregister_notifier +EXPORT_SYMBOL drivers/vfio/vfio 0x6c28be5a vfio_info_add_capability +EXPORT_SYMBOL drivers/vfio/vfio 0x7051bd44 vfio_pin_pages +EXPORT_SYMBOL drivers/vfio/vfio 0xadc044b7 vfio_set_irqs_validate_and_prepare +EXPORT_SYMBOL drivers/vfio/vfio 0xc6831a4a vfio_unpin_pages +EXPORT_SYMBOL drivers/vhost/vhost 0xb757c7b3 vhost_chr_poll +EXPORT_SYMBOL drivers/vhost/vhost 0xe558728e 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 0x581ae9bf lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x58f89452 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x84a394e4 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf7e2ca29 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 0x504a94ed svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5208500d 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 0x995e2928 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb0ab2b2e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb44155a2 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc02cff75 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc979235e svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd6ec2c44 svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdcc5a013 svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf3bbd3dd svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xbcdbe7e3 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xc84d200e sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x5f1092ce 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 0xa849129a cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x1ad0eaf1 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 0x1431ce06 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x987212b6 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd8d499b3 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x50a27378 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x541395af DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb403dd11 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xe27431f9 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x7d36ad9b matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0e1773e5 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0c0a8f54 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xafc98b23 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xbbd934a9 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf733061a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2353e5c8 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x31ca87fb matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x09ab5b8c matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x1af6596d matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x4e62c79d matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x9b4cb86d matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb22bbad9 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/fbdev/sis/sisfb 0xfe963115 sis_free +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x49f0fc1d is_virtio_dma_buf +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x597ba7e7 virtio_dma_buf_attach +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0x5a9927cb virtio_dma_buf_export +EXPORT_SYMBOL drivers/virtio/virtio_dma_buf 0xb45d9eb1 virtio_dma_buf_get_uuid +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa45b6aae w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa8439fa5 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x3b5f7333 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x41d8a83a w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x4d1124c0 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x696dd1b2 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x9eabffea w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe6eebd83 w1_remove_master_device +EXPORT_SYMBOL fs/fscache/fscache 0x01488109 __fscache_clear_page_bits +EXPORT_SYMBOL fs/fscache/fscache 0x02b330d6 __fscache_unuse_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x04a9a2bb fscache_put_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x16ded770 fscache_dirty_folio +EXPORT_SYMBOL fs/fscache/fscache 0x1a0d09e7 fscache_n_write +EXPORT_SYMBOL fs/fscache/fscache 0x1a25cfa0 __tracepoint_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x1acf3ffe fscache_end_cookie_access +EXPORT_SYMBOL fs/fscache/fscache 0x1cd23b36 fscache_resume_after_invalidation +EXPORT_SYMBOL fs/fscache/fscache 0x234a140d __traceiter_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x2bf87528 fscache_wait_for_operation +EXPORT_SYMBOL fs/fscache/fscache 0x306805d3 __SCK__tp_func_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0x36d39995 fscache_caching_failed +EXPORT_SYMBOL fs/fscache/fscache 0x39674879 __tracepoint_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3a968062 __fscache_acquire_volume +EXPORT_SYMBOL fs/fscache/fscache 0x3aa67935 __fscache_begin_write_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4404d2aa fscache_n_no_create_space +EXPORT_SYMBOL fs/fscache/fscache 0x48e6431d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4996bd29 fscache_n_updates +EXPORT_SYMBOL fs/fscache/fscache 0x4b8775de __fscache_write_to_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4bd084ba __SCK__tp_func_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5202b03e __fscache_relinquish_volume +EXPORT_SYMBOL fs/fscache/fscache 0x557a775f fscache_addremove_sem +EXPORT_SYMBOL fs/fscache/fscache 0x58c5bb8b __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x689f0614 fscache_get_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6c5e41e7 __tracepoint_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6e416521 __SCK__tp_func_fscache_access_volume +EXPORT_SYMBOL fs/fscache/fscache 0x6f3c9baa __fscache_begin_read_operation +EXPORT_SYMBOL fs/fscache/fscache 0x72f3eadc fscache_cookie_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x7551a69c fscache_withdraw_volume +EXPORT_SYMBOL fs/fscache/fscache 0x8c2d6da7 fscache_clearance_waiters +EXPORT_SYMBOL fs/fscache/fscache 0x90d447f3 fscache_n_culled +EXPORT_SYMBOL fs/fscache/fscache 0x9c3e5c6a fscache_withdraw_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9ffefcb2 fscache_n_read +EXPORT_SYMBOL fs/fscache/fscache 0xae6040a5 __traceiter_fscache_access_cache +EXPORT_SYMBOL fs/fscache/fscache 0xaea48997 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb473b01c __fscache_use_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xbb23d03f fscache_relinquish_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbca46908 fscache_wq +EXPORT_SYMBOL fs/fscache/fscache 0xbdf34404 fscache_end_volume_access +EXPORT_SYMBOL fs/fscache/fscache 0xc5325c68 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcce11a60 fscache_n_no_write_space +EXPORT_SYMBOL fs/fscache/fscache 0xd87029a4 fscache_acquire_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdae76f53 __fscache_resize_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xdcb87498 __traceiter_fscache_access +EXPORT_SYMBOL fs/fscache/fscache 0xe6e982b0 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xed5d9e1e fscache_io_error +EXPORT_SYMBOL fs/netfs/netfs 0x1ad6e1a2 netfs_subreq_terminated +EXPORT_SYMBOL fs/netfs/netfs 0x4a5333a8 netfs_write_begin +EXPORT_SYMBOL fs/netfs/netfs 0x4cc331ca netfs_read_folio +EXPORT_SYMBOL fs/netfs/netfs 0x7b492d1c netfs_readahead +EXPORT_SYMBOL fs/netfs/netfs 0xb3898761 netfs_stats_show +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x01f3399c qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x42bae767 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x73e9bcc2 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x9286795e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9a201578 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe7ea9182 qtree_get_next_id +EXPORT_SYMBOL lib/crc-itu-t 0x09a34a2b crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd819a524 crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0x65aaf037 crc7_be_syndrome_table +EXPORT_SYMBOL lib/crc7 0xba55d23e crc7_be +EXPORT_SYMBOL lib/crypto/libarc4 0x2bb32ad1 arc4_setkey +EXPORT_SYMBOL lib/crypto/libarc4 0xcd47fcc4 arc4_crypt +EXPORT_SYMBOL lib/crypto/libchacha 0xcec122d7 chacha_crypt_generic +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x147c3f2e chacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x37b34b92 chacha20poly1305_encrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x521c7102 xchacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0x5b19e187 chacha20poly1305_decrypt_sg_inplace +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xc20134e7 chacha20poly1305_decrypt +EXPORT_SYMBOL lib/crypto/libchacha20poly1305 0xce15a526 xchacha20poly1305_encrypt +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x12627f15 curve25519_generic +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x4a5a8811 curve25519_null_point +EXPORT_SYMBOL lib/crypto/libcurve25519-generic 0x7e6fdbfc curve25519_base_point +EXPORT_SYMBOL lib/crypto/libpoly1305 0x021f3700 poly1305_core_blocks +EXPORT_SYMBOL lib/crypto/libpoly1305 0xbcb90cb3 poly1305_core_emit +EXPORT_SYMBOL lib/crypto/libpoly1305 0xd45b9cf4 poly1305_core_setkey +EXPORT_SYMBOL lib/libcrc32c 0x89a0cd52 crc32c_impl +EXPORT_SYMBOL lib/libcrc32c 0xb15b4109 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0641307b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x098d2ed9 lc_try_get +EXPORT_SYMBOL lib/lru_cache 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 0xba1e518f lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbfbe53d5 lc_get_cumulative +EXPORT_SYMBOL lib/lru_cache 0xc3a98c1d lc_try_lock +EXPORT_SYMBOL lib/lru_cache 0xcc979a91 lc_set +EXPORT_SYMBOL lib/lru_cache 0xda85cfd5 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 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 net/6lowpan/6lowpan 0x0bc0944d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x264e0509 lowpan_unregister_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0x2c72d2d3 lowpan_register_netdevice +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa2f3e943 lowpan_unregister_netdev +EXPORT_SYMBOL net/6lowpan/6lowpan 0xbf9f21a5 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xcde63ca0 lowpan_register_netdev +EXPORT_SYMBOL net/802/p8022 0x34bb8b70 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe9b36941 register_8022_client +EXPORT_SYMBOL net/802/psnap 0x1084d0bc unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x80fd52d9 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x00520b36 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x02126cc8 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x045b8996 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x05811c63 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x05e2284f v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x09815ac2 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x12c32de3 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x173a7676 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x1ea395a3 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x2139015d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x21a04ed1 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x270afcce p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3850a6d9 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41ce9823 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x43d1431a p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x4ab159a2 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5bf68549 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x6124971f p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x67615eda p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x683a7c07 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x6c582447 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x72b78acb p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x7922cbae p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x83241c0b p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x8404e68c p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8a175e4a p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x95bd8f96 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x984c5e73 p9_fcall_fini +EXPORT_SYMBOL net/9p/9pnet 0x99e1561e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x9f8c6564 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xa62da08c v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb0fa4033 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb79f25fd p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xba3a134e p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc6066c8f p9_req_put +EXPORT_SYMBOL net/9p/9pnet 0xcd03d2a1 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd384c683 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xde32616b p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xdf2f042b p9_client_read_once +EXPORT_SYMBOL net/9p/9pnet 0xdfeef4b9 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xe1264eb4 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8d1fafc p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xec80f28d p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xee80e61d p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xf8daa397 p9_show_client_options +EXPORT_SYMBOL net/9p/9pnet 0xf9cc996e v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xfa4c1c79 p9_tag_lookup +EXPORT_SYMBOL net/appletalk/appletalk 0x1eb31342 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x60c0cacb atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x826c57ae atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xfd33e2f0 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x079592d1 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x1bcf1dcc atm_charge +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 0x4cb1c337 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x56a9b8ad atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x5ea66459 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x6541cda2 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6c30af0b vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x853d9ce0 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x948b704e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xabd8991d atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xc913641e atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xd9baa23e atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xec2bf621 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x006c3b51 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 0x38690912 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8acb645e ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa6d4ddf4 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xb0e518fa ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc26eff78 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe5743a1b ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xee02e420 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0xfd9465b6 ax25_listen_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0015dc61 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x002de51e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0481af93 hci_set_fw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0718b8b7 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09b5d96b __hci_cmd_sync_status +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e97ed70 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x111975c4 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x113febfe bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1209557e hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x13a2c952 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x146c9cb0 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x18635d64 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1bfdec81 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1dc05f3f __hci_cmd_send +EXPORT_SYMBOL net/bluetooth/bluetooth 0x214e4265 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21695ed5 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b218721 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2faa4db5 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32abcd27 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3736f5ee bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a496421 hci_alloc_dev_priv +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3df84358 __hci_cmd_sync_status_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47d3a784 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49872880 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4db79ca0 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5b371af5 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bb57a50 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5cf5c581 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x612c87cc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65c58aff hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6ac11b9a hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f570362 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7aad008b bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b5ce5c3 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b8c32f1 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d74eeac l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f998973 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x808dad7c l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x819ff4e6 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x887334ec bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88c89049 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99456358 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b2e70d5 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa812e33c __hci_cmd_sync_sk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2fcc686 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4fb7637 hci_set_hw_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9a1c6ac hci_cmd_sync_queue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc2ee879 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe4c7b50 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7613212 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdbd88843 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc1eb49d hci_cmd_sync_cancel +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdcabdd58 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddacccf6 bt_warn_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0a37b0a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeee6c1a2 hci_release_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xffe71bd1 hci_mgmt_chan_register +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2ddaa2b7 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3acaf9b4 ebt_register_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa2ff3153 ebt_unregister_template +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc318d40c ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf870ce40 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf8cdcb44 ebt_unregister_table_pre_exit +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x22d8eeab caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2dc77d80 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x329dbd06 cfpkt_info +EXPORT_SYMBOL net/caif/caif 0x38701a7c cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x3fa84493 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x40babbe0 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x55a8e0de 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 0xa7ef3b76 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xaf9ec5f0 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x31a2a6ff can_send +EXPORT_SYMBOL net/can/can 0x74ee33a2 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x9fda65e2 can_proto_register +EXPORT_SYMBOL net/can/can 0xd725cace can_rx_register +EXPORT_SYMBOL net/can/can 0xe4b4b0c0 can_sock_destruct +EXPORT_SYMBOL net/can/can 0xfac0b598 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0172097b ceph_osdc_watch +EXPORT_SYMBOL net/ceph/libceph 0x0248c853 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x035fbe1f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x04cad6f0 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x05476ddd ceph_auth_handle_svc_reply_more +EXPORT_SYMBOL net/ceph/libceph 0x0a9fae46 ceph_auth_handle_bad_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x0be22d71 ceph_osdc_unwatch +EXPORT_SYMBOL net/ceph/libceph 0x0c6ed133 ceph_monc_get_version +EXPORT_SYMBOL net/ceph/libceph 0x1378aba3 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x137960f0 osd_req_op_extent_osd_data_bvec_pos +EXPORT_SYMBOL net/ceph/libceph 0x13e50ec5 ceph_osdc_list_watchers +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 0x187abdd0 ceph_osdc_abort_requests +EXPORT_SYMBOL net/ceph/libceph 0x1ccf8667 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x1e6dcd25 ceph_release_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 0x215b89ea ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x21efdfc0 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x22633c08 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x22b2762f ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x22c31df6 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x239d5d0c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x28cb7dab ceph_monc_blocklist_add +EXPORT_SYMBOL net/ceph/libceph 0x2a983d26 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2b3d2f18 ceph_cls_set_cookie +EXPORT_SYMBOL net/ceph/libceph 0x2e1b31d3 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x2e3563d7 ceph_parse_mon_ips +EXPORT_SYMBOL net/ceph/libceph 0x31298368 ceph_osdc_call +EXPORT_SYMBOL net/ceph/libceph 0x31449990 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x38f2d94e ceph_file_to_extents +EXPORT_SYMBOL net/ceph/libceph 0x3a0ae582 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x3a21f2fc ceph_osdc_update_epoch_barrier +EXPORT_SYMBOL net/ceph/libceph 0x3ae87d51 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x3b57d57d ceph_cls_lock +EXPORT_SYMBOL net/ceph/libceph 0x3c8d7111 ceph_get_num_objects +EXPORT_SYMBOL net/ceph/libceph 0x3d9b0e40 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x417a9131 ceph_oloc_destroy +EXPORT_SYMBOL net/ceph/libceph 0x428134bd ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x4349e3bf ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x4509ae39 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x454e3ddc osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x462cde35 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4af0b305 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4affd6c2 ceph_parse_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50603ce3 ceph_decode_entity_addrvec +EXPORT_SYMBOL net/ceph/libceph 0x54928de8 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x562d16bc osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5938413d ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x5940f03f ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x59bff828 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5aeeee62 ceph_oid_aprintf +EXPORT_SYMBOL net/ceph/libceph 0x5cba52d0 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6a7a38a0 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x6ae28ab9 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6c5ed570 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x6d042932 ceph_client_gid +EXPORT_SYMBOL net/ceph/libceph 0x70281a11 ceph_auth_add_authorizer_challenge +EXPORT_SYMBOL net/ceph/libceph 0x71d7249c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x7440ff21 ceph_osdc_notify +EXPORT_SYMBOL net/ceph/libceph 0x7599bb5d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x75f669da osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x77f4f11a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x78c071bb ceph_osdc_alloc_messages +EXPORT_SYMBOL net/ceph/libceph 0x7c7342e3 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x7ec0ce95 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x82125e18 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x84a3fd9c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x85b66b3b ceph_wait_for_latest_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x86114124 ceph_reset_client_addr +EXPORT_SYMBOL net/ceph/libceph 0x86fca7e4 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x89809eb5 ceph_cls_assert_locked +EXPORT_SYMBOL net/ceph/libceph 0x902ad4cc osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x92b7b4ce ceph_pg_pool_flags +EXPORT_SYMBOL net/ceph/libceph 0x93ae5854 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x9550b2ae ceph_monc_got_map +EXPORT_SYMBOL net/ceph/libceph 0x96d9c37a ceph_copy_from_page_vector +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 0x9e9092f3 ceph_osdc_clear_abort_err +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 0xa3b4b617 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa48763cb ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xa4a3efe4 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa66e6ac9 ceph_monc_get_version_async +EXPORT_SYMBOL net/ceph/libceph 0xa698f998 ceph_free_lockers +EXPORT_SYMBOL net/ceph/libceph 0xa7e9f6ae ceph_osdc_maybe_request_map +EXPORT_SYMBOL net/ceph/libceph 0xa8bb9dba ceph_cls_break_lock +EXPORT_SYMBOL net/ceph/libceph 0xaa59692a osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xac1896d9 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xad703657 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2984887 osd_req_op_extent_osd_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb72c162e ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xb8a37a03 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbb21d1bc ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xbc28efcc ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xbd2f79ae ceph_oloc_copy +EXPORT_SYMBOL net/ceph/libceph 0xbd75bb6f ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xbe3879aa ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xc0cfd21e ceph_monc_want_map +EXPORT_SYMBOL net/ceph/libceph 0xc1a851a5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xc366bfa1 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xc47f88f4 ceph_client_addr +EXPORT_SYMBOL net/ceph/libceph 0xc4b600d6 osd_req_op_copy_from_init +EXPORT_SYMBOL net/ceph/libceph 0xc5d1e588 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xc7590903 ceph_auth_handle_svc_reply_done +EXPORT_SYMBOL net/ceph/libceph 0xca80437b ceph_extent_to_file +EXPORT_SYMBOL net/ceph/libceph 0xcbd4fcaf ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xd0b5aebc ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xd4d736db ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xd4eb7735 ceph_decode_entity_addr +EXPORT_SYMBOL net/ceph/libceph 0xd7e4366a ceph_msg_data_add_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xda56d6fa ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xda8f05f7 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xdf6ef4a1 ceph_oid_printf +EXPORT_SYMBOL net/ceph/libceph 0xdfc091f9 ceph_entity_type_name +EXPORT_SYMBOL net/ceph/libceph 0xe2861b77 __ceph_auth_get_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe2eb8c70 osd_req_op_extent_dup_last +EXPORT_SYMBOL net/ceph/libceph 0xe34a59f2 ceph_object_locator_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xe46b1942 ceph_msg_new2 +EXPORT_SYMBOL net/ceph/libceph 0xe76e7226 ceph_pagelist_alloc +EXPORT_SYMBOL net/ceph/libceph 0xeaa3c51e ceph_osdc_put_request +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 0xf0c3a232 ceph_parse_param +EXPORT_SYMBOL net/ceph/libceph 0xf1b08798 ceph_cls_lock_info +EXPORT_SYMBOL net/ceph/libceph 0xf20d1364 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf2dfa846 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xf500991c ceph_monc_renew_subs +EXPORT_SYMBOL net/ceph/libceph 0xf8bcdda8 osd_req_op_cls_request_data_bvecs +EXPORT_SYMBOL net/ceph/libceph 0xf8f5002d ceph_osdc_notify_ack +EXPORT_SYMBOL net/ceph/libceph 0xfc554c3e ceph_cls_unlock +EXPORT_SYMBOL net/ceph/libceph 0xff35cb7a ceph_create_client +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x63564155 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb8b47d5d dccp_syn_ack_timeout +EXPORT_SYMBOL net/hsr/hsr 0x5b566d00 hsr_get_version +EXPORT_SYMBOL net/hsr/hsr 0xe80b172d is_hsr_master +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0c4f45ab wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0e0dc1a2 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x146b78e8 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa9e3fdf1 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb510b74c wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe1ac65b2 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x042f73e0 __fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x1757d1a4 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x27ea6f0e __gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xf13914b3 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/gre 0x2618d523 gre_parse_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0535482b ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4c36042d ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3363f0d ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeb6765e8 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1c85e4d2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe8849c3e arpt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf382b0c5 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf663def5 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1d61bfdd ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x1fec029c ipt_unregister_table_exit +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x611ef695 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe59cb13a ipt_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv4/tunnel4 0xb87135ef xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xfe54a1d4 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x8b00fff3 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0f4d9c97 ip6_tnl_rcv +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x26dcd27c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3278c1a3 ip6_tnl_encap_del_ops +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3c1c8b96 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4ab117bf ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x55d31827 ip6_tnl_xmit +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbef4ae21 ip6_tnl_change_mtu +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc33c6598 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xde0dc7b3 ip6_tnl_encap_add_ops +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x69224c08 ip6t_unregister_table_pre_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x93bee664 ip6t_unregister_table_exit +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb4f587b3 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd646dd0e ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x911eeed7 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xb8006bba xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x11ca127b xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x64fd70c3 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/lapb/lapb 0x14689b63 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x37a2a05f lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x3a75cad8 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x441ace4d lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x76732e10 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x8845c602 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x98469962 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xdc6213c7 lapb_setparms +EXPORT_SYMBOL net/llc/llc 0x183c61cf llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x32f2153d llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x6ee72edf llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x7dcbf3d3 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x815e2479 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xa23ef9f3 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfeacb5e2 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x02cbebbe ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x059c5143 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x063f5308 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x07d9309e ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0a773643 ieee80211_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x0ad9d194 ieee80211_manage_rx_ba_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x0ccda2b3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x105daebf ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x11141706 ieee80211_sta_pspoll +EXPORT_SYMBOL net/mac80211/mac80211 0x15bc900b ieee80211_tx_status_8023 +EXPORT_SYMBOL net/mac80211/mac80211 0x165e929e ieee80211_mark_rx_ba_filtered_frames +EXPORT_SYMBOL net/mac80211/mac80211 0x16abc42c ieee80211_next_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x17d7e7c9 ieee80211_txq_airtime_check +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 0x1b2501aa ieee80211_tx_status_ext +EXPORT_SYMBOL net/mac80211/mac80211 0x1b988c8f ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1da51998 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x1de5ac23 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1fafcd83 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x205c46cd ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x26294085 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x29ee7692 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x2c3618d5 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x2cbe9ea2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2d1d3086 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x2ebdd92c ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3736b1cb ieee80211_beacon_cntdwn_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x37666463 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3a989515 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x3ac9e705 ieee80211_sta_register_airtime +EXPORT_SYMBOL net/mac80211/mac80211 0x3b67b66f ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3d197943 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x40dcf579 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x41f0ca17 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x44dcac47 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x46ac56ba ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4955fa0b ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x496cf82c ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4a11dd84 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x4ab81332 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x4e12dffe ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x500aac45 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5318ad3a ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x532d7642 ieee80211_iter_keys_rcu +EXPORT_SYMBOL net/mac80211/mac80211 0x56b7c68c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x5a661a8d ieee80211_schedule_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x5d9cf82c ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x638e672a ieee80211_return_txq +EXPORT_SYMBOL net/mac80211/mac80211 0x66db8360 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6bb31fb1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6c67008e ieee80211_get_unsol_bcast_probe_resp_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x6d15ebe2 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6d444858 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6dd224df ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x722e948c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x74fe8d67 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7535baac ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x76f82252 ieee80211_channel_switch_disconnect +EXPORT_SYMBOL net/mac80211/mac80211 0x7aa0e5e3 ieee80211_txq_get_depth +EXPORT_SYMBOL net/mac80211/mac80211 0x7b3bb611 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x7cdbf74f ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x7e7f9958 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x805240ca ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x84fe990c ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x8a23ace5 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x8b15ade1 ieee80211_get_fils_discovery_tmpl +EXPORT_SYMBOL net/mac80211/mac80211 0x8b8ea6c5 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8d21d00f ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x8f9089d4 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x905970e7 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x92ab6103 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x945cbd3e ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x97959c00 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x991a0ca0 ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x9ee74666 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa5f1c7d7 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa6e01d28 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa8bf8d74 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xab2affdc ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xab514b4d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xb01ad991 ieee80211_rx_list +EXPORT_SYMBOL net/mac80211/mac80211 0xb342a9f4 ieee80211_rx_ba_timer_expired +EXPORT_SYMBOL net/mac80211/mac80211 0xba9486fa ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xc4d8ebc3 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xc9588542 ieee80211_txq_may_transmit +EXPORT_SYMBOL net/mac80211/mac80211 0xca441cfb ieee80211_beacon_update_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xcb7569f2 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xcbad7a0c __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xcc417d51 ieee80211_nan_func_terminated +EXPORT_SYMBOL net/mac80211/mac80211 0xd0927199 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd1904d27 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xd51b2c27 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xd9fc7adb ieee80211_sta_uapsd_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xe0ca4eef ieee80211_beacon_set_cntdwn +EXPORT_SYMBOL net/mac80211/mac80211 0xe2986503 ieee80211_send_eosp_nullfunc +EXPORT_SYMBOL net/mac80211/mac80211 0xe5752af3 ieee80211_get_bssid +EXPORT_SYMBOL net/mac80211/mac80211 0xecf1fefa ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xf1f94a11 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xf3ad6672 ieee80211_nan_func_match +EXPORT_SYMBOL net/mac80211/mac80211 0xf5a6103e ieee80211_tx_rate_update +EXPORT_SYMBOL net/mac80211/mac80211 0xf6509476 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xf77e33a9 ieee80211_txq_schedule_start +EXPORT_SYMBOL net/mac80211/mac80211 0xf8282907 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xfb980456 ieee80211_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x0824bc09 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x14644f21 ieee802154_configure_durations +EXPORT_SYMBOL net/mac802154/mac802154 0x1a2c74af ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x255d2890 ieee802154_xmit_hw_error +EXPORT_SYMBOL net/mac802154/mac802154 0x2c3e0606 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x30c3ba62 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x5360753c ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7c6feab3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xac889866 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xbee4b76a ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xdfcb4f4d ieee802154_xmit_error +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x14437464 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x150870db ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15a37a3e ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3cad1f4f register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x496e1417 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x67921da5 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x861e10ee ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8cc45009 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96453b85 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f7e8383 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9f957a0e ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc51c30c6 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda0045d5 ip_vs_new_conn_out +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf454f4b7 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xffbd9047 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3b08a8f0 nf_ct_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3f9f195c nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x89d99ee1 __nf_ct_ext_find +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0xf2a36612 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x6f8acb64 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xdae98338 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdcb07885 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xea67cfc6 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 0x25114051 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x255c91b2 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3bf9d084 xt_check_table_hooks +EXPORT_SYMBOL net/netfilter/x_tables 0x48012e28 xt_check_proc_name +EXPORT_SYMBOL net/netfilter/x_tables 0x4ed83194 xt_find_table +EXPORT_SYMBOL net/netfilter/x_tables 0x50873741 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x6a78c286 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x732460d1 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 0xb0f6fc9b xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb46a297b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xb852c12e xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbbc983cd xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xcb3e91cc xt_counters_alloc +EXPORT_SYMBOL net/netfilter/x_tables 0xd84bdbad 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 0xfef779fa xt_find_jump_offset +EXPORT_SYMBOL net/nfc/hci/hci 0x16120c87 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1c145c81 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x26b952ab nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x29197859 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x5ecd1792 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x73ffe6db nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x74fe3670 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x76a3b63c nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x80df929d nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x8be5965c nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x8fcbf8b8 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x969e8f47 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xa271db3c nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xab69b7a0 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xb708cead nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb898fc0e nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xda96c8f6 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xdd231c55 nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe04ec9e5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xe4515a92 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf146bfee nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xf1d9de6b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfff62cfa nfc_hci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x04b5f16b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0e731129 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1095c508 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x15356fbc nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x21db82ac nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x232fbaf2 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x27b7ba00 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x32e2ba08 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x36c6da96 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3834b2ab nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x4cd072a8 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x56b71933 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x616be46f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x63d1b6f1 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6bc4b19a nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x72c1ceea nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7361ea3b nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x7ef15545 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x9a4a8900 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xb9e58683 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbe4ca805 nci_nfcc_loopback +EXPORT_SYMBOL net/nfc/nci/nci 0xc01b809f nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xc171a9bc nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd23f2dbd nci_get_conn_info_by_dest_type_params +EXPORT_SYMBOL net/nfc/nci/nci 0xe48780e3 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe518de7a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xeb5e51a9 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xf7ebb496 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfbd86807 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nfc 0x0d3de45c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x121e2216 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x19c3f580 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x1dfd264a nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x277faf2e nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2d5c2255 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x61364f9e nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x65257f6e nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x6d791f81 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x787be09d nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x7deed719 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x84609b10 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x84767bf7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x8841673e nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x97430801 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x9d2724ac nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa6567ab3 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xa6e8bcc5 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xabd747e1 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xd1a81b26 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xd3ee6d7d nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xd7ff46f9 nfc_se_connectivity +EXPORT_SYMBOL net/nfc/nfc 0xe5a7b200 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xeeb890d7 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xf697ce25 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc_digital 0x1a82dfde nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x47a13e3a nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7d311870 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x857a10b2 nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x00047696 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x0172cc39 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x21c05638 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x25062fc1 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x6a3f78c6 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x76674639 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x85162491 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xfe701d8d pn_sock_hash +EXPORT_SYMBOL net/rxrpc/rxrpc 0x2e931d90 rxrpc_kernel_new_call_notification +EXPORT_SYMBOL net/rxrpc/rxrpc 0x31bf3ca3 rxrpc_debug_id +EXPORT_SYMBOL net/rxrpc/rxrpc 0x488b9769 rxrpc_kernel_get_srtt +EXPORT_SYMBOL net/rxrpc/rxrpc 0x4ffdc296 rxrpc_kernel_get_epoch +EXPORT_SYMBOL net/rxrpc/rxrpc 0x545ba2bb rxrpc_kernel_get_reply_time +EXPORT_SYMBOL net/rxrpc/rxrpc 0x5d23041c rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x60ddcdc3 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0x6bd78455 rxrpc_kernel_set_tx_length +EXPORT_SYMBOL net/rxrpc/rxrpc 0x833039a9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0x850310af rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0x88febfea rxrpc_kernel_check_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0x99abec2b rxrpc_kernel_set_max_life +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa6ec0300 rxrpc_sock_set_min_security_level +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9c0df81 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/rxrpc 0xa9c6bc58 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/rxrpc 0xb43575dc rxrpc_kernel_recv_data +EXPORT_SYMBOL net/rxrpc/rxrpc 0xdc59d38e rxrpc_kernel_get_peer +EXPORT_SYMBOL net/rxrpc/rxrpc 0xe28d6c69 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/rxrpc 0xf275f28e rxrpc_kernel_charge_accept +EXPORT_SYMBOL net/sctp/sctp 0xaa91e021 sctp_do_peeloff +EXPORT_SYMBOL net/smc/smc 0x1b1e06e1 __tracepoint_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x2be1f42f __traceiter_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0x3153cc92 __SCK__tp_func_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x3d2d2e9c __traceiter_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x728d3756 __traceiter_smc_rx_recvmsg +EXPORT_SYMBOL net/smc/smc 0x8989d6ae __tracepoint_smc_switch_to_fallback +EXPORT_SYMBOL net/smc/smc 0x99bf1b00 __tracepoint_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xb3f2d173 __SCK__tp_func_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xcd9701fe __tracepoint_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xe7dacb8d __SCK__tp_func_smcr_link_down +EXPORT_SYMBOL net/smc/smc 0xef0baa8a __traceiter_smc_tx_sendmsg +EXPORT_SYMBOL net/smc/smc 0xfb8cae0f __SCK__tp_func_smc_switch_to_fallback +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5d1095bb gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7720c5c3 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe015f9f4 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2124795d svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2fffe0bb xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbf2cd1f0 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0x3aab8e77 rpcrdma_unregister_nvfs_dma_ops +EXPORT_SYMBOL net/sunrpc/xprtrdma/rpcrdma 0x3d050f5a rpcrdma_register_nvfs_dma_ops +EXPORT_SYMBOL net/tipc/tipc 0x00decade tipc_nl_sk_walk +EXPORT_SYMBOL net/tipc/tipc 0x76048582 tipc_dump_start +EXPORT_SYMBOL net/tipc/tipc 0xe2facc3d tipc_sk_fill_sock_diag +EXPORT_SYMBOL net/tipc/tipc 0xecb12a5a tipc_dump_done +EXPORT_SYMBOL net/tls/tls 0x161d183a tls_get_record +EXPORT_SYMBOL net/wireless/cfg80211 0x00f17011 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x0391ee40 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x05cc588f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x06ca71fd cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0x09dd27ce wiphy_read_of_freq_limits +EXPORT_SYMBOL net/wireless/cfg80211 0x0adadd37 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x0cc95bc2 ieee80211_s1g_channel_width +EXPORT_SYMBOL net/wireless/cfg80211 0x117aca91 cfg80211_merge_profile +EXPORT_SYMBOL net/wireless/cfg80211 0x1523f21d cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x16c86717 cfg80211_nan_func_terminated +EXPORT_SYMBOL net/wireless/cfg80211 0x17433a79 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19333ea0 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1adc6387 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x1b5a3a7e cfg80211_sinfo_alloc_tid_stats +EXPORT_SYMBOL net/wireless/cfg80211 0x1c57f940 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x1ce2497f reg_query_regdb_wmm +EXPORT_SYMBOL net/wireless/cfg80211 0x225785d7 cfg80211_connect_done +EXPORT_SYMBOL net/wireless/cfg80211 0x274bb411 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x275269b3 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x275c97f0 cfg80211_get_ies_channel_number +EXPORT_SYMBOL net/wireless/cfg80211 0x286ff702 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x2b585953 cfg80211_sched_scan_stopped_locked +EXPORT_SYMBOL net/wireless/cfg80211 0x2b64bd8b cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x2e8b38c6 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2f792ec7 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x2fc91be9 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x33623c80 cfg80211_bss_flush +EXPORT_SYMBOL net/wireless/cfg80211 0x362b3a00 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3643b80f ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0x36aaedaa cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x3868d3a9 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x402bba13 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x41aa7345 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x429c0c31 ieee80211_bss_get_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x43afadee ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x46ff300c ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a5a5b8b regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4b088748 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4b644aa8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x4ca12a12 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x4d4f1565 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x4d888bc1 cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x50bf9f48 cfg80211_any_usable_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x555c4220 cfg80211_sta_opmode_change_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5584448a ieee80211_channel_to_freq_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x582b9314 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x58cfc951 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x59bb64a7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5bdf4d97 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x60066ca4 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x609effe9 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x61a8b9e4 cfg80211_update_owe_info_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6733b6d8 cfg80211_report_obss_beacon_khz +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a6be49e cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x6bedf402 ieee80211_freq_khz_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x71317c41 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x7303836f get_wiphy_regdom +EXPORT_SYMBOL net/wireless/cfg80211 0x75ee18ae cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x76103332 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x79b82a71 cfg80211_find_vendor_elem +EXPORT_SYMBOL net/wireless/cfg80211 0x7a75ae6b __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7acb86ed ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x7b6e731a cfg80211_control_port_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7c3ac925 ieee80211_get_vht_max_nss +EXPORT_SYMBOL net/wireless/cfg80211 0x7c59e0b2 cfg80211_assoc_comeback +EXPORT_SYMBOL net/wireless/cfg80211 0x7db29642 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x7e0daa9e regulatory_set_wiphy_regd_sync +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fdc4960 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x88ada8ba cfg80211_port_authorized +EXPORT_SYMBOL net/wireless/cfg80211 0x8948218e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8958e055 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x895e4684 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8ae0743a cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x8de70a8c cfg80211_tx_mgmt_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x8fa02936 cfg80211_free_nan_func +EXPORT_SYMBOL net/wireless/cfg80211 0x946d39e8 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x959f908d wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x96115b9d cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x96bd42b0 cfg80211_bss_iter +EXPORT_SYMBOL net/wireless/cfg80211 0x97b516c7 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x9a4470c3 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6cba30 cfg80211_find_elem_match +EXPORT_SYMBOL net/wireless/cfg80211 0xa036bee0 cfg80211_bss_color_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa18ad14d cfg80211_iftype_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xa5a46071 __cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xa5daf7d8 cfg80211_send_layer2_update +EXPORT_SYMBOL net/wireless/cfg80211 0xa87da166 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa8c95b63 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xaaeea651 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xab235be1 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xae7d1e1d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xaf698966 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb27a970e cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb7989521 cfg80211_external_auth_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb89247f6 ieee80211_get_channel_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xbb381d0a wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xbc67daed regulatory_pre_cac_allowed +EXPORT_SYMBOL net/wireless/cfg80211 0xbe7c5ab9 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xbed95ba9 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xc3e9d292 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xc4b4fc27 cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0xc7eba2fe cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xc82b5a41 cfg80211_nan_match +EXPORT_SYMBOL net/wireless/cfg80211 0xcb67251d cfg80211_rx_mgmt_khz +EXPORT_SYMBOL net/wireless/cfg80211 0xcb921ba9 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcc1a7c48 cfg80211_is_element_inherited +EXPORT_SYMBOL net/wireless/cfg80211 0xcc27f82e cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcd60bebc cfg80211_rx_control_port +EXPORT_SYMBOL net/wireless/cfg80211 0xce6ff44a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd2f4d81c cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd3ad0182 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd4399d57 ieee80211_data_to_8023_exthdr +EXPORT_SYMBOL net/wireless/cfg80211 0xd56d55f3 ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xd97eaad4 cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc133002 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xddadfab5 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xde877a98 wiphy_rfkill_set_hw_state_reason +EXPORT_SYMBOL net/wireless/cfg80211 0xe561d1e8 wdev_chandef +EXPORT_SYMBOL net/wireless/cfg80211 0xe9b4fd70 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xea5e6028 cfg80211_background_cac_abort +EXPORT_SYMBOL net/wireless/cfg80211 0xebf76adc cfg80211_register_netdevice +EXPORT_SYMBOL net/wireless/cfg80211 0xee96600d cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf40bc2f5 ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0xf4f1aae5 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xf5596d89 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0xf6f37159 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xfe3f9f28 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/lib80211 0x0bd9bd17 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x69735beb lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x739eaaf3 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xcaf58ed9 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe5fc8176 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xffe7a509 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x447b5353 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x121a8757 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 0x30e96abc snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4a36e1f8 snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc629cf83 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xda56f0dc snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +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 0x2a0fe235 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0057a915 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x0099c019 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x01d25598 _snd_ctl_add_follower +EXPORT_SYMBOL sound/core/snd 0x0355d666 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x08eecc8a snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x0adc7d4a snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x0afe0263 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0dbcc128 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x0f778288 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x14267c53 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x17072e0c snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1e1f0521 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x1e47e6b0 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x21e67437 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2e6378ea snd_card_register +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3bd8b9a7 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5b84672b snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x5fd5e825 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x679e78e0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x6ccd5150 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x6ec3aca1 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x708f04e8 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x73076315 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0x7b087270 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x7bda2dd6 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x838aecd0 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8a62857b snd_card_free +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9743176c snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x97745287 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x9d83abf2 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa14de6f8 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xa6cf87b2 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb499cd34 snd_ctl_notify_one +EXPORT_SYMBOL sound/core/snd 0xb841eb02 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xb8e0180e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xb9fdc9a4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xbcfb8130 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xc05fd8d4 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xc305235f snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc3b58f65 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xc5a6d10b release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xc8258009 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xcc6a729f snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0xd23b1ba0 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd3b3cd76 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xd7407fa5 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xf29e48e8 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xf3486810 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf3e23eea snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xf4d6d301 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xff33fb6c snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-compress 0x46894d11 snd_compr_malloc_pages +EXPORT_SYMBOL sound/core/snd-compress 0xc5550468 snd_compr_free_pages +EXPORT_SYMBOL sound/core/snd-hwdep 0x595ce2a4 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x048b1f72 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0b5cf1bf snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x10043245 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x11eba48e snd_pcm_create_iec958_consumer_hw_params +EXPORT_SYMBOL sound/core/snd-pcm 0x186cb476 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x1ae02a94 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x1ccc92de snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2aae677d snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x2aae9fe7 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x326c2c9c snd_sgbuf_get_addr +EXPORT_SYMBOL sound/core/snd-pcm 0x35fffe4e snd_pcm_set_managed_buffer_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3670b6c3 snd_dma_buffer_mmap +EXPORT_SYMBOL sound/core/snd-pcm 0x36b3bde2 snd_pcm_lib_free_pages +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 0x39ef78b4 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x3ada462a __snd_pcm_lib_xfer +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 0x5364ad9c snd_sgbuf_get_page +EXPORT_SYMBOL sound/core/snd-pcm 0x55ad38a7 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x55f4891e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5778d3d0 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x5d09c192 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5f690a37 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x69255f54 snd_pcm_hw_limit_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x726177e0 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x7b6f75fe snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7d84a1e0 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x7f7d3ccd snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x813cd59f snd_pcm_create_iec958_consumer +EXPORT_SYMBOL sound/core/snd-pcm 0x826735f2 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x82db0d6b snd_dma_alloc_dir_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x842eb100 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x843250bf snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x8f44ca58 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x924a9c39 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x93219228 snd_pcm_set_managed_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x93cbc97d snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x94018afe snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa5579c6f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6921587 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xaa6b65ab snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xaee7fb6b snd_pcm_period_elapsed_under_stream_lock +EXPORT_SYMBOL sound/core/snd-pcm 0xb0e334a2 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb576127a snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9fcdaa1 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc4a67f14 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xd7f40400 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe2e4525b snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe61865ed snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xe8dd8869 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xeff6c349 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xf7d315d3 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07394ef0 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x176c0c32 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x17ed1460 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x17fd3099 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2a7069ad snd_rawmidi_proceed +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4418b95a snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44632458 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x49325659 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c86182b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x51d4ab3f __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a47dfcd snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a1f726f snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e3b9b90 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x81d16613 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x99d55323 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1c0531d snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd202d7a4 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd6918231 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf1f07884 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5b0d7b3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-seq-device 0x091def1c snd_seq_autoload_exit +EXPORT_SYMBOL sound/core/snd-seq-device 0x370a0736 snd_seq_autoload_init +EXPORT_SYMBOL sound/core/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/snd-seq-device 0xd81c7396 snd_seq_device_new +EXPORT_SYMBOL sound/core/snd-timer 0x25f40562 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x349fdc70 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5c653dad snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x7bfaea10 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x7cd31d4c snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x7f10ab1f snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x87b78212 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x99f12266 snd_timer_instance_free +EXPORT_SYMBOL sound/core/snd-timer 0x9f9da68a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa952bf61 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xb8fd00ba snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xc319156e snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xe345d950 snd_timer_instance_new +EXPORT_SYMBOL sound/core/snd-timer 0xe4001e6d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe7bf22c7 snd_timer_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x132c104f 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 0x34e7ea66 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38a439a6 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4284961b snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6db68762 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7206282f snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7c2e5f78 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c60299f snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb337421d snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdee811ea snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x016eb531 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0a51db97 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1180f209 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 0x562377f9 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8bcdbd62 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa93cd7ee snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc3fa90e3 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdd12b566 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe7a781f1 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 0x044df9fe fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19e12580 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a1a4956 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20d9a0a4 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x22b9749f cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2385f1ea cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2a84762d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2ae93bf8 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f3d0065 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3167f0f4 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c1ce531 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5555b574 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x58ee0721 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f42d342 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6535d830 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ddca336 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x72225239 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x82cbc8e3 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97331771 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf5f8f0a iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb9d50c08 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba9666c8 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbe61247d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe674a129 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef635470 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf12b6d6e cmp_connection_release +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf6f9a305 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfbb08f88 cmp_connection_reserve +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xff22a8fd snd_fw_transaction +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x0d50b302 intel_nhlt_get_endpoint_blob +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x41a05c36 intel_nhlt_has_endpoint_type +EXPORT_SYMBOL sound/hda/snd-intel-dspcfg 0x66fd6169 intel_nhlt_ssp_endpoint_mask +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5dfc2202 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x6d79c588 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x22e4813f snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x37427236 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5d42408b snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x786aedb0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x92efdbdf snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8bd95bd snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe02c33a0 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xec8aa2b8 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x08b04ce0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28db6a74 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8b93cf7b snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa850db54 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x669307a1 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x77720b8c snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x06efb32c snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x18ab1dff snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x377ecf61 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc897b920 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe0a6896e snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe4f6b9a6 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1bf05e62 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3282e2c2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x431a5c1e snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x479bf3e0 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9fa2b0ee snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa8a7fdd7 snd_i2c_bus_create +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x16046d87 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d67311b snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4b89d68e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5b03bd34 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x78ce4197 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7cc764db snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x995ee6ad snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb6a1b8d5 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbdf14931 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc60449e1 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc77ecc87 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc9dfb05f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc6f633f snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd408d36f snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdb8b7fee snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe061d34e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6bc88ed snd_ac97_update +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0e9e59d7 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x26dab702 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x81ee66dc snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9b496165 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb249f5f5 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb6aba87e snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb779866b snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbf654dee snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc9b45a6b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2f366696 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x92ca7ed6 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xdada7daf snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x008f6bf2 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x038a9ad7 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0fbacd1e oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23adc62c oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b7e5438 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ba34c32 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d1ba2cb oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d26632e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b26a898 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8aac21ec oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ff91eb1 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x901bc2e2 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa21f5eea oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba24215b oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1055c10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc7715c33 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcd97923e oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbd73933 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa7cbefa oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff9165d1 oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x06ed7e13 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x12bdfb70 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x91902a9f snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe36df2b5 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xef3cebdb snd_trident_free_voice +EXPORT_SYMBOL sound/soc/amd/acp_audio_dma 0xf2cc2cce acp_bt_uart_enable +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x40bfd8ce snd_soc_acpi_amd_sof_machines +EXPORT_SYMBOL sound/soc/amd/snd-acp-config 0x510cf79c snd_amd_acp_find_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-adau1372 0x0d57db2a adau1372_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-lpass-wsa-macro 0xd3447e2f wsa_macro_set_spkr_mode +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0x15ed0049 pcm3060_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-pcm3060 0xe6e57ed8 pcm3060_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-rt715 0xed2acb24 hda_to_sdw +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x475440e5 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x933b6c9b tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x43f193b5 aic32x4_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x470d9271 aic32x4_regmap_config +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic32x4 0x647ec451 aic32x4_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0x4fb8aa15 aic3x_remove +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic3x 0xa1eb1ee0 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 0x5281f03f 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 0xbd2861c9 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 0xfdc6ea97 wcd_dt_parse_mbhc_data +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0x383185f9 mt8192_afe_gpio_init +EXPORT_SYMBOL sound/soc/mediatek/mt8192/snd-soc-mt8192-afe 0xbe8d05e9 mt8192_afe_gpio_request +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x3e92ea80 q6afe_vote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/qdsp6/q6afe 0x534b2273 q6afe_unvote_lpass_core_hw +EXPORT_SYMBOL sound/soc/qcom/snd-soc-qcom-common 0xb7b5797d qcom_snd_parse_of +EXPORT_SYMBOL sound/soc/snd-soc-core 0x22cc10ad snd_soc_alloc_ac97_component +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x0aa2ee4a imx8_parse_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0x588a1afb imx8_dump +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xcff65402 imx8_disable_clocks +EXPORT_SYMBOL sound/soc/sof/imx/imx-common 0xeff72b52 imx8_enable_clocks +EXPORT_SYMBOL sound/soc/sof/mediatek/mtk-adsp-common 0xae0b7e0e mtk_adsp_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0383a2be sof_io_read64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x0d4c89a1 snd_sof_device_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x10127db2 sof_stream_pcm_close +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x116bc2a3 snd_sof_dsp_update_bits64_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1588f04d sof_mailbox_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x169d478b snd_sof_runtime_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16ae4380 snd_sof_load_firmware_raw +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x16cb385f snd_sof_dsp_panic +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18a5a354 sof_widget_setup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x18da410d snd_sof_load_topology +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x19974132 sof_print_oops_and_stack +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1ad748da snd_sof_resume +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x1dfbe969 snd_sof_device_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2080f0cb sof_machine_register +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2134781d sof_io_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2192e625 sof_io_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x26e3413c snd_sof_ipc_get_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x2e4c66c2 sof_mailbox_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3132f9d4 sof_pcm_dai_link_fixup +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x318a503e sof_dai_get_bclk +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x34852d41 snd_sof_dsp_update_bits_unlocked +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x368c6727 sof_debug_check_flag +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x390c300f snd_sof_fw_unload +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x394088ee snd_sof_ipc_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x3a6d5638 snd_sof_complete +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x42141308 snd_sof_runtime_idle +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x429a95bf snd_sof_device_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x48bf4b24 sof_set_stream_data_offset +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x59604f2f snd_sof_prepare +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6302fcde snd_sof_ipc_reply +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6602891f sof_machine_unregister +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x67dabb7c snd_sof_ipc_init +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x6ca22846 sof_io_write64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x75566f5a snd_sof_load_firmware_memcpy +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x76ab809c sof_stream_pcm_open +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x79a37d64 sof_ipc_tx_message_no_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x7f8c82bc sof_compressed_ops +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x807fe97e snd_sof_dsp_update_bits64 +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x84bf8bc7 sof_widget_free +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8b807919 sof_block_write +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x8c9d5066 snd_sof_dsp_dbg_dump +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x97f0eb10 snd_sof_pcm_period_elapsed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x98582d2e sof_ipc_msg_data +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9ee458ba sof_set_fw_state +EXPORT_SYMBOL sound/soc/sof/snd-sof 0x9f5c9dcb snd_sof_dsp_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xa8dca0a0 snd_sof_runtime_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xabebf908 sof_block_read +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb1bc4134 snd_sof_dsp_only_d0i3_compatible_stream_active +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb3e23307 snd_sof_run_firmware +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xb4bc8bcd snd_sof_suspend +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xbf358d27 snd_sof_device_probe_completed +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc46a0cc7 snd_sof_handle_fw_exception +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xc5c75d7f sof_machine_check +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xcc9a6f10 snd_sof_pci_update_bits +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd3606c81 sof_ipc_tx_message +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd5f58061 snd_sof_dsp_update_bits_forced +EXPORT_SYMBOL sound/soc/sof/snd-sof 0xd6280c83 sof_dai_get_mclk +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x1b7f3fad sof_of_probe +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x41d6f5d6 sof_of_remove +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0x911124bf sof_of_pm +EXPORT_SYMBOL sound/soc/sof/snd-sof-of 0xd71f7a80 sof_of_shutdown +EXPORT_SYMBOL sound/soc/sof/snd-sof-utils 0x74ce972c snd_sof_create_page_table +EXPORT_SYMBOL sound/soundcore 0x1618e125 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8a4fb825 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe800437d register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xec0a4f41 sound_class +EXPORT_SYMBOL sound/soundcore 0xefa0abc9 register_sound_special +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0ce7f76e 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 0x6b3879c7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8a95d9cc snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9779c38e snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd88d89a3 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe118019f 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 0x8994c4ba __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 0x001f94e4 qman_get_qm_portal_config +EXPORT_SYMBOL vmlinux 0x0030afb6 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x003dc732 key_unlink +EXPORT_SYMBOL vmlinux 0x0046c8e8 netdev_unbind_sb_channel +EXPORT_SYMBOL vmlinux 0x004fd8c1 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x005a2be7 fman_get_revision +EXPORT_SYMBOL vmlinux 0x0063f4d9 block_dirty_folio +EXPORT_SYMBOL vmlinux 0x00660a4c scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x00687b40 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x006bb7e8 neigh_destroy +EXPORT_SYMBOL vmlinux 0x008729a1 param_set_hexint +EXPORT_SYMBOL vmlinux 0x00928200 trace_print_hex_dump_seq +EXPORT_SYMBOL vmlinux 0x00934c94 sk_stop_timer_sync +EXPORT_SYMBOL vmlinux 0x00b4e615 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00b888c2 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x00bbe327 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x00d55b56 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00db77d1 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x00e2bb0d ethtool_rx_flow_rule_create +EXPORT_SYMBOL vmlinux 0x00e523de tegra_ivc_init +EXPORT_SYMBOL vmlinux 0x00ea0738 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0106d9bd neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x010abaa5 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x010dec92 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x01120ead mmc_add_host +EXPORT_SYMBOL vmlinux 0x01124ce6 netdev_notice +EXPORT_SYMBOL vmlinux 0x01145d6c devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x01156ae4 utf8_strncasecmp_folded +EXPORT_SYMBOL vmlinux 0x011bab86 prepare_creds +EXPORT_SYMBOL vmlinux 0x0129c4f8 par_io_data_set +EXPORT_SYMBOL vmlinux 0x012de2ea xudma_rchanrt_read +EXPORT_SYMBOL vmlinux 0x01387529 dcbnl_cee_notify +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 0x015d9eb4 is_subdir +EXPORT_SYMBOL vmlinux 0x016eaf4c sget_fc +EXPORT_SYMBOL vmlinux 0x01757935 rdmacg_register_device +EXPORT_SYMBOL vmlinux 0x01759899 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x017de3d5 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x017df807 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x0184d8e4 d_alloc_anon +EXPORT_SYMBOL vmlinux 0x018574a1 mb_cache_entry_delete +EXPORT_SYMBOL vmlinux 0x0188cd88 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x01967d8d passthru_features_check +EXPORT_SYMBOL vmlinux 0x01aaad90 netif_napi_add_weight +EXPORT_SYMBOL vmlinux 0x01b6865c xa_get_mark +EXPORT_SYMBOL vmlinux 0x01bf55fc paddr_vmcoreinfo_note +EXPORT_SYMBOL vmlinux 0x01d67adc i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x01e0212c md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x01e5c2fa sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x01ebad1a nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x0201e2fd __skb_ext_del +EXPORT_SYMBOL vmlinux 0x0209f3a7 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x020dbf27 bitmap_alloc +EXPORT_SYMBOL vmlinux 0x021a9846 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x02293ac3 dma_fence_chain_ops +EXPORT_SYMBOL vmlinux 0x023387e9 seq_puts +EXPORT_SYMBOL vmlinux 0x0241002d skb_pull +EXPORT_SYMBOL vmlinux 0x02423442 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x02461ef6 phy_print_status +EXPORT_SYMBOL vmlinux 0x0248efd3 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x024a9de0 dst_dev_put +EXPORT_SYMBOL vmlinux 0x025c757a dma_fence_describe +EXPORT_SYMBOL vmlinux 0x027187a8 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02787f88 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x0296695f refcount_warn_saturate +EXPORT_SYMBOL vmlinux 0x029a98d1 jbd2_wait_inode_data +EXPORT_SYMBOL vmlinux 0x029d2f61 dma_fence_chain_init +EXPORT_SYMBOL vmlinux 0x02a51d65 xsk_set_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x02b2d7ca device_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x02b8ab42 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x02c065f8 ucc_set_qe_mux_mii_mng +EXPORT_SYMBOL vmlinux 0x02c0bb1d timestamp_truncate +EXPORT_SYMBOL vmlinux 0x031d5d73 pci_write_config_byte +EXPORT_SYMBOL vmlinux 0x031f9e52 folio_end_writeback +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033e153b no_llseek +EXPORT_SYMBOL vmlinux 0x033ee0ab qdisc_hash_add +EXPORT_SYMBOL vmlinux 0x03565f20 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x035cc32d ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x036019e1 page_pool_put_defragged_page +EXPORT_SYMBOL vmlinux 0x0360d67f make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036ee271 skb_dequeue +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d569e tty_port_put +EXPORT_SYMBOL vmlinux 0x03815f35 ledtrig_disk_activity +EXPORT_SYMBOL vmlinux 0x03907fa8 page_pool_release_page +EXPORT_SYMBOL vmlinux 0x03930dc2 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x0397edd5 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x03afa57d mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x03bc5835 make_kgid +EXPORT_SYMBOL vmlinux 0x03bf0e5a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x03c984c5 security_sb_mnt_opts_compat +EXPORT_SYMBOL vmlinux 0x03dde039 security_inet_conn_established +EXPORT_SYMBOL vmlinux 0x03fb5e82 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0405b09a netdev_alert +EXPORT_SYMBOL vmlinux 0x042eb6a1 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x044154c6 tc_skb_ext_tc +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04649398 rproc_coredump_add_segment +EXPORT_SYMBOL vmlinux 0x04673adb qman_ip_rev +EXPORT_SYMBOL vmlinux 0x04707fc3 fs_param_is_bool +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 0x049a9572 tcp_stream_memory_free +EXPORT_SYMBOL vmlinux 0x049c0cd0 fwnode_mdiobus_register_phy +EXPORT_SYMBOL vmlinux 0x04a32b55 build_skb +EXPORT_SYMBOL vmlinux 0x04b1a340 skb_copy_and_hash_datagram_iter +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fa5c84 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x051c17f1 __destroy_inode +EXPORT_SYMBOL vmlinux 0x051d58e8 dma_fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054496b4 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x054e10ac pci_get_slot +EXPORT_SYMBOL vmlinux 0x055e77e8 jiffies_64 +EXPORT_SYMBOL vmlinux 0x05632f63 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x05789a9f generic_block_bmap +EXPORT_SYMBOL vmlinux 0x058d69cb alloc_fcdev +EXPORT_SYMBOL vmlinux 0x059823b5 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x059e1482 __traceiter_dma_fence_emit +EXPORT_SYMBOL vmlinux 0x05bbc309 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x05cc0843 flow_indr_dev_register +EXPORT_SYMBOL vmlinux 0x05d1e500 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x05f04641 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x05f37b23 get_tree_nodev +EXPORT_SYMBOL vmlinux 0x060a1508 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x060b2fd9 pci_map_rom +EXPORT_SYMBOL vmlinux 0x060ba97c gen_pool_free_owner +EXPORT_SYMBOL vmlinux 0x060d72f8 filemap_flush +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06430ed4 of_translate_address +EXPORT_SYMBOL vmlinux 0x0646d351 fs_param_is_enum +EXPORT_SYMBOL vmlinux 0x0655f838 udp_gro_receive +EXPORT_SYMBOL vmlinux 0x066507b7 folio_wait_private_2 +EXPORT_SYMBOL vmlinux 0x0668b595 _kstrtoul +EXPORT_SYMBOL vmlinux 0x06693583 backlight_device_get_by_name +EXPORT_SYMBOL vmlinux 0x066fefa1 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x0681b26a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x06852d4f kfree_skb_list_reason +EXPORT_SYMBOL vmlinux 0x068bb321 __put_devmap_managed_page_refs +EXPORT_SYMBOL vmlinux 0x0698e664 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x06ac7c7e path_put +EXPORT_SYMBOL vmlinux 0x06bd88b5 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x06bec3f0 serio_open +EXPORT_SYMBOL vmlinux 0x06d11488 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x06dc384d __icmp_send +EXPORT_SYMBOL vmlinux 0x06e12776 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x06e2ad84 register_filesystem +EXPORT_SYMBOL vmlinux 0x06f34a52 ip6tun_encaps +EXPORT_SYMBOL vmlinux 0x07098248 xz_dec_microlzma_alloc +EXPORT_SYMBOL vmlinux 0x071087fd kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x0711edc8 xudma_dev_get_tisci_rm +EXPORT_SYMBOL vmlinux 0x0712f00e register_cdrom +EXPORT_SYMBOL vmlinux 0x071f4ace max8925_set_bits +EXPORT_SYMBOL vmlinux 0x071f4deb mmc_command_done +EXPORT_SYMBOL vmlinux 0x0722e691 vfs_link +EXPORT_SYMBOL vmlinux 0x072d8c85 set_page_writeback +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07351f69 udp_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x0741fd8c get_unmapped_area +EXPORT_SYMBOL vmlinux 0x0745a981 xa_erase +EXPORT_SYMBOL vmlinux 0x0781ec97 logic_insl +EXPORT_SYMBOL vmlinux 0x07842b3a genphy_suspend +EXPORT_SYMBOL vmlinux 0x0785d0ac seq_read +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c4a43e forget_cached_acl +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07ceeac9 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x07db17be qman_create_fq +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 0x080d012c tcp_connect +EXPORT_SYMBOL vmlinux 0x08129f6b napi_gro_receive +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 0x0836401d ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x08373df1 tcp_add_backlog +EXPORT_SYMBOL vmlinux 0x08385f09 poll_freewait +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0847e47f tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x0855bede load_nls_default +EXPORT_SYMBOL vmlinux 0x0867b93e page_pool_put_page_bulk +EXPORT_SYMBOL vmlinux 0x0882a449 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x089018b5 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x08e39398 cmd_db_read_addr +EXPORT_SYMBOL vmlinux 0x08f0337e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x09138bd3 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x091e6f08 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x091f08b2 set_page_dirty +EXPORT_SYMBOL vmlinux 0x092e26bf acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x093712e5 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x09656931 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x096704e8 trace_event_printf +EXPORT_SYMBOL vmlinux 0x09769037 dmt_modes +EXPORT_SYMBOL vmlinux 0x097af021 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x098346db jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0998424f of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x0998cc3c hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x099fc2f4 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x09d30333 d_alloc_parallel +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d651ec submit_bh +EXPORT_SYMBOL vmlinux 0x09da0ba4 xa_set_mark +EXPORT_SYMBOL vmlinux 0x09eb365c blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x09f1548d vm_insert_pages +EXPORT_SYMBOL vmlinux 0x09f9b261 xudma_rchan_put +EXPORT_SYMBOL vmlinux 0x0a012f73 mb_cache_entry_touch +EXPORT_SYMBOL vmlinux 0x0a05e2c8 skb_udp_tunnel_segment +EXPORT_SYMBOL vmlinux 0x0a0ebc08 __xa_cmpxchg +EXPORT_SYMBOL vmlinux 0x0a112105 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0a1cda7e inet_sendmsg +EXPORT_SYMBOL vmlinux 0x0a1e8769 utf8_casefold_hash +EXPORT_SYMBOL vmlinux 0x0a28a57b of_iomap +EXPORT_SYMBOL vmlinux 0x0a423644 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0a72b415 scsi_add_device +EXPORT_SYMBOL vmlinux 0x0a73c237 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7c241a file_path +EXPORT_SYMBOL vmlinux 0x0a82b932 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x0a8449e3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x0a84b15d zstd_init_cctx +EXPORT_SYMBOL vmlinux 0x0a9125f4 mmc_cqe_recovery +EXPORT_SYMBOL vmlinux 0x0a9c639c blk_stack_limits +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa67366 rproc_coredump_add_custom_segment +EXPORT_SYMBOL vmlinux 0x0aaccc92 pci_remap_iospace +EXPORT_SYMBOL vmlinux 0x0abe27ea tcf_idr_check_alloc +EXPORT_SYMBOL vmlinux 0x0ac64e7f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0acdc2f7 devm_clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ada6078 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x0ae34fd7 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x0aedd49c nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b21cf15 dquot_destroy +EXPORT_SYMBOL vmlinux 0x0b251d47 fscrypt_decrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x0b26b8c8 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x0b290ada dma_fence_chain_walk +EXPORT_SYMBOL vmlinux 0x0b3ac125 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0x0b3bd778 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x0b3c89e3 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x0b403236 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0b4944b7 tcf_register_action +EXPORT_SYMBOL vmlinux 0x0b571126 unix_get_socket +EXPORT_SYMBOL vmlinux 0x0b5d5d7d __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0b667183 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b77f560 get_vm_area +EXPORT_SYMBOL vmlinux 0x0b981dab thaw_super +EXPORT_SYMBOL vmlinux 0x0b9e2c4e regset_get_alloc +EXPORT_SYMBOL vmlinux 0x0ba0b938 vm_brk +EXPORT_SYMBOL vmlinux 0x0bbd514a of_get_ethdev_address +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 0x0c02a40d mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0c0aa669 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x0c185e66 xsk_clear_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x0c23fa3b PageMovable +EXPORT_SYMBOL vmlinux 0x0c25ec48 secure_tcpv6_seq +EXPORT_SYMBOL vmlinux 0x0c27a97f mmc_retune_pause +EXPORT_SYMBOL vmlinux 0x0c35c4e1 netpoll_setup +EXPORT_SYMBOL vmlinux 0x0c3690fc _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x0c3f7acb generic_write_end +EXPORT_SYMBOL vmlinux 0x0c4608e6 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x0c575719 __cond_resched_rwlock_write +EXPORT_SYMBOL vmlinux 0x0c66f357 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c8cde75 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0c8f77da sock_bind_add +EXPORT_SYMBOL vmlinux 0x0c968f6e no_seek_end_llseek +EXPORT_SYMBOL vmlinux 0x0caa2691 tcp_filter +EXPORT_SYMBOL vmlinux 0x0caca48a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x0cb11bc7 __SCK__tp_func_dma_fence_enable_signal +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 0x0ce3a830 cad_pid +EXPORT_SYMBOL vmlinux 0x0ce3e85e pagevec_lookup_range_tag +EXPORT_SYMBOL vmlinux 0x0cee0165 tty_port_open +EXPORT_SYMBOL vmlinux 0x0cf0b1a1 cpu_hwcap_keys +EXPORT_SYMBOL vmlinux 0x0cf1765a tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x0cf61eda jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x0d07f543 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x0d0f2d98 vfs_mknod +EXPORT_SYMBOL vmlinux 0x0d2be38c vga_client_register +EXPORT_SYMBOL vmlinux 0x0d2ca20f ucc_fast_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0x0d31f748 seg6_hmac_info_del +EXPORT_SYMBOL vmlinux 0x0d333b64 zstd_end_stream +EXPORT_SYMBOL vmlinux 0x0d37b1af of_match_node +EXPORT_SYMBOL vmlinux 0x0d3f5c1a fman_get_max_frm +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d636eff neigh_direct_output +EXPORT_SYMBOL vmlinux 0x0d7445ee fs_param_is_string +EXPORT_SYMBOL vmlinux 0x0d7a1b08 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0d7c6f68 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0d82db44 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x0da821ce input_register_device +EXPORT_SYMBOL vmlinux 0x0da9947b tcp_peek_len +EXPORT_SYMBOL vmlinux 0x0dae2e34 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0dbdaf2c add_watch_to_object +EXPORT_SYMBOL vmlinux 0x0ddaa687 dentry_open +EXPORT_SYMBOL vmlinux 0x0de40794 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x0de40e35 configfs_undepend_item +EXPORT_SYMBOL vmlinux 0x0deb8af7 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x0df8d30e phy_init_hw +EXPORT_SYMBOL vmlinux 0x0e0bcc76 kernel_bind +EXPORT_SYMBOL vmlinux 0x0e17678a siphash_4u64 +EXPORT_SYMBOL vmlinux 0x0e2338b6 phy_start_cable_test +EXPORT_SYMBOL vmlinux 0x0e309eb0 tegra_dfll_resume +EXPORT_SYMBOL vmlinux 0x0e3564de mr_mfc_find_any_parent +EXPORT_SYMBOL vmlinux 0x0e3916d9 dqput +EXPORT_SYMBOL vmlinux 0x0e4262c6 __siphash_unaligned +EXPORT_SYMBOL vmlinux 0x0e5f005f vfs_fileattr_get +EXPORT_SYMBOL vmlinux 0x0e6b8193 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0e7ad4e7 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x0e90ed44 configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0x0e947850 bio_alloc_clone +EXPORT_SYMBOL vmlinux 0x0ea0c42f jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x0ea3c74e tasklet_kill +EXPORT_SYMBOL vmlinux 0x0ea593f6 hdmi_drm_infoframe_init +EXPORT_SYMBOL vmlinux 0x0eae802d netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x0eb6eb87 add_taint +EXPORT_SYMBOL vmlinux 0x0ec0b20f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed2f2dd rproc_get_by_child +EXPORT_SYMBOL vmlinux 0x0edaad56 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x0ee79d72 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x0ef90426 devm_of_iomap +EXPORT_SYMBOL vmlinux 0x0f058ce4 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x0f05b37a fman_port_bind +EXPORT_SYMBOL vmlinux 0x0f09cc34 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x0f1a23c7 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x0f1ad8e2 seq_list_start_rcu +EXPORT_SYMBOL vmlinux 0x0f348cb1 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0f37ca89 lockref_put_not_zero +EXPORT_SYMBOL vmlinux 0x0f404b9c i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x0f512f67 sock_alloc +EXPORT_SYMBOL vmlinux 0x0f59294d __folio_cancel_dirty +EXPORT_SYMBOL vmlinux 0x0f5c3d01 tty_port_init +EXPORT_SYMBOL vmlinux 0x0f630261 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x0f67e0cd cros_ec_get_host_event +EXPORT_SYMBOL vmlinux 0x0f6d0a26 default_llseek +EXPORT_SYMBOL vmlinux 0x0f85ae9a tcf_exts_validate_ex +EXPORT_SYMBOL vmlinux 0x0f86f560 kthread_delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x0f89d60c skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x0fab1ab0 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd64707 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x0fd902db mb_cache_entry_create +EXPORT_SYMBOL vmlinux 0x0fe55ec6 phy_attached_info +EXPORT_SYMBOL vmlinux 0x0fff5afc time64_to_tm +EXPORT_SYMBOL vmlinux 0x100e5b66 dns_query +EXPORT_SYMBOL vmlinux 0x101aabbc __sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1021aed0 __kfree_skb +EXPORT_SYMBOL vmlinux 0x1025009a cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x102936ec qe_clock_source +EXPORT_SYMBOL vmlinux 0x103140c1 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x103185e8 tcf_idrinfo_destroy +EXPORT_SYMBOL vmlinux 0x1035c7c2 __release_region +EXPORT_SYMBOL vmlinux 0x104210f3 of_device_is_available +EXPORT_SYMBOL vmlinux 0x104e29b3 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x1057a279 bsearch +EXPORT_SYMBOL vmlinux 0x1068004b gf128mul_bbe +EXPORT_SYMBOL vmlinux 0x1074ffef dm_table_event +EXPORT_SYMBOL vmlinux 0x107be0b0 percpu_counter_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10959ae9 neigh_carrier_down +EXPORT_SYMBOL vmlinux 0x1098197a generic_fill_statx_attr +EXPORT_SYMBOL vmlinux 0x10a18b2e locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x10b9faff vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x10bc9e1f mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x10d9f885 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x10e6f74a free_contig_range +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110d18c4 netdev_state_change +EXPORT_SYMBOL vmlinux 0x1116b64f genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x111feec7 cont_write_begin +EXPORT_SYMBOL vmlinux 0x1157b299 of_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0x11590ada ip_sock_set_freebind +EXPORT_SYMBOL vmlinux 0x11613509 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118be4e3 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x1195d40e inet_accept +EXPORT_SYMBOL vmlinux 0x119638c5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x11b4df1f pci_dev_driver +EXPORT_SYMBOL vmlinux 0x11b82a1b mmc_gpio_set_cd_wake +EXPORT_SYMBOL vmlinux 0x11c1e1fa vme_master_request +EXPORT_SYMBOL vmlinux 0x11c94160 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x11d189b1 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x11e0ec41 dm_read_arg +EXPORT_SYMBOL vmlinux 0x11e296a8 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x11e30762 chacha_block_generic +EXPORT_SYMBOL vmlinux 0x11e93aad seg6_hmac_net_exit +EXPORT_SYMBOL vmlinux 0x11ffdfee ucc_slow_stop_tx +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120e3140 __netif_rx +EXPORT_SYMBOL vmlinux 0x120ff8e1 xudma_get_rflow_ring_offset +EXPORT_SYMBOL vmlinux 0x1214717e netpoll_send_skb +EXPORT_SYMBOL vmlinux 0x122ba04a phy_support_sym_pause +EXPORT_SYMBOL vmlinux 0x123abcab con_is_bound +EXPORT_SYMBOL vmlinux 0x1240ac2b module_layout +EXPORT_SYMBOL vmlinux 0x124bad4d kstrtobool +EXPORT_SYMBOL vmlinux 0x12a4e128 __arch_copy_from_user +EXPORT_SYMBOL vmlinux 0x12b13c91 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x12c8ca50 release_sock +EXPORT_SYMBOL vmlinux 0x12cabc89 siphash_2u64 +EXPORT_SYMBOL vmlinux 0x12d64924 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x12ebb3f0 eth_header_parse +EXPORT_SYMBOL vmlinux 0x12f6f69c fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x130afd75 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x13110126 request_resource +EXPORT_SYMBOL vmlinux 0x131a6146 xa_clear_mark +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132575ab __skb_checksum +EXPORT_SYMBOL vmlinux 0x13261032 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x13289034 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x132eb09c tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x1332fda7 add_to_page_cache_lru +EXPORT_SYMBOL vmlinux 0x13359fb5 seg6_hmac_validate_skb +EXPORT_SYMBOL vmlinux 0x1341c441 skb_checksum +EXPORT_SYMBOL vmlinux 0x1344d040 vlan_filter_push_vids +EXPORT_SYMBOL vmlinux 0x134cdd34 inet_frag_rbtree_purge +EXPORT_SYMBOL vmlinux 0x1361226a validate_slab_cache +EXPORT_SYMBOL vmlinux 0x13663618 rproc_coredump_set_elf_info +EXPORT_SYMBOL vmlinux 0x138cb941 of_device_register +EXPORT_SYMBOL vmlinux 0x139a7308 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x139f2189 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x13c3d707 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x13cead77 __SCK__tp_func_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x13cf4c8f pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d928f5 __SCK__tp_func_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x13e7ec97 skb_dump +EXPORT_SYMBOL vmlinux 0x13fa60b6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x141271bf acpi_dev_found +EXPORT_SYMBOL vmlinux 0x141a3057 security_inode_copy_up +EXPORT_SYMBOL vmlinux 0x142c43c8 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x1435c5ce __SCK__tp_func_kmalloc_node +EXPORT_SYMBOL vmlinux 0x14373914 netdev_next_lower_dev_rcu +EXPORT_SYMBOL vmlinux 0x144daf1e devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x14605535 dma_fence_context_alloc +EXPORT_SYMBOL vmlinux 0x1460bdc3 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x146289b7 crc16_table +EXPORT_SYMBOL vmlinux 0x147189c4 ipv6_dev_mc_inc +EXPORT_SYMBOL vmlinux 0x147a447c phy_set_sym_pause +EXPORT_SYMBOL vmlinux 0x1486ded2 dma_fence_allocate_private_stub +EXPORT_SYMBOL vmlinux 0x148c7a55 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x14955ac4 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x149add65 vlan_for_each +EXPORT_SYMBOL vmlinux 0x149d7348 block_write_full_page +EXPORT_SYMBOL vmlinux 0x14a23bd8 gpiochip_irq_relres +EXPORT_SYMBOL vmlinux 0x14a838b0 sock_no_connect +EXPORT_SYMBOL vmlinux 0x14adb67e nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x14b89635 arm64_const_caps_ready +EXPORT_SYMBOL vmlinux 0x14c45a3e ip6_dst_alloc +EXPORT_SYMBOL vmlinux 0x14c67e3e tcp_tx_delay_enabled +EXPORT_SYMBOL vmlinux 0x14c9ab19 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x14cf217e blk_mq_run_hw_queue +EXPORT_SYMBOL vmlinux 0x14cf831e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x14e78ee5 xattr_supported_namespace +EXPORT_SYMBOL vmlinux 0x14f45fcc bman_free_pool +EXPORT_SYMBOL vmlinux 0x14fd1ac2 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1506cdba scsi_print_result +EXPORT_SYMBOL vmlinux 0x15089109 of_node_name_eq +EXPORT_SYMBOL vmlinux 0x151f4898 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x152173ae insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x1526b301 unix_tot_inflight +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x15566f28 dev_add_pack +EXPORT_SYMBOL vmlinux 0x1557666f eth_type_trans +EXPORT_SYMBOL vmlinux 0x1560dd6e textsearch_prepare +EXPORT_SYMBOL vmlinux 0x156906f6 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x1569ceb9 mount_bdev +EXPORT_SYMBOL vmlinux 0x156d54f7 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x157ddb3f generic_read_dir +EXPORT_SYMBOL vmlinux 0x158b0e9d mr_table_alloc +EXPORT_SYMBOL vmlinux 0x158f7684 follow_up +EXPORT_SYMBOL vmlinux 0x15938928 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x1595fabf flow_rule_match_enc_control +EXPORT_SYMBOL vmlinux 0x15ad97ec iommu_get_msi_cookie +EXPORT_SYMBOL vmlinux 0x15adc379 alloc_mdio_bitbang +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 0x15da9c2c tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x15e17ee8 security_socket_socketpair +EXPORT_SYMBOL vmlinux 0x15e2a339 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x15eb4f7f set_capacity +EXPORT_SYMBOL vmlinux 0x15f67eaa __skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x15f8c130 phy_validate_pause +EXPORT_SYMBOL vmlinux 0x15f90688 slhc_init +EXPORT_SYMBOL vmlinux 0x161f3584 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x162893fd hashlen_string +EXPORT_SYMBOL vmlinux 0x1628e1f3 security_lock_kernel_down +EXPORT_SYMBOL vmlinux 0x162db346 param_ops_long +EXPORT_SYMBOL vmlinux 0x1632bc21 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x163d2417 tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x165ad395 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x167a2688 netdev_txq_to_tc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16805ac1 md_done_sync +EXPORT_SYMBOL vmlinux 0x1680a0c9 alloc_file_pseudo +EXPORT_SYMBOL vmlinux 0x16840d1e node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x1686c3db devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x168acdda watchdog_register_governor +EXPORT_SYMBOL vmlinux 0x168c4a7e sock_setsockopt +EXPORT_SYMBOL vmlinux 0x168e343f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x169938c1 __sysfs_match_string +EXPORT_SYMBOL vmlinux 0x16b413dd mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x16c7686a tty_do_resize +EXPORT_SYMBOL vmlinux 0x16cdc340 acpi_get_table +EXPORT_SYMBOL vmlinux 0x16d08016 tcp_sock_set_user_timeout +EXPORT_SYMBOL vmlinux 0x16dee44d dma_fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e2abf6 path_has_submounts +EXPORT_SYMBOL vmlinux 0x170ddf79 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x1716377c arp_tbl +EXPORT_SYMBOL vmlinux 0x171ca46a of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x17252b6d touch_buffer +EXPORT_SYMBOL vmlinux 0x17254c54 sock_i_uid +EXPORT_SYMBOL vmlinux 0x17398886 stream_open +EXPORT_SYMBOL vmlinux 0x17825d3f xudma_rchan_get +EXPORT_SYMBOL vmlinux 0x178c4894 qe_upload_firmware +EXPORT_SYMBOL vmlinux 0x17932101 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x17a964c4 netdev_offload_xstats_enabled +EXPORT_SYMBOL vmlinux 0x17b65944 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x17ba702f scsi_remove_host +EXPORT_SYMBOL vmlinux 0x17cc852d of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x17d6275a put_cmsg_scm_timestamping +EXPORT_SYMBOL vmlinux 0x17eecb62 jbd2_journal_finish_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x18196e47 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x181b6c02 tcf_block_put_ext +EXPORT_SYMBOL vmlinux 0x18345b8e __bitmap_replace +EXPORT_SYMBOL vmlinux 0x1834d027 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x186625a0 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x1866a43f __netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x186b39ca ppp_input_error +EXPORT_SYMBOL vmlinux 0x187884a8 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x18888d00 downgrade_write +EXPORT_SYMBOL vmlinux 0x1889ca36 pci_write_vpd_any +EXPORT_SYMBOL vmlinux 0x188d26f3 inet_protos +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18a00f0f d_set_d_op +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18d2c576 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f7f3c2 __filemap_get_folio +EXPORT_SYMBOL vmlinux 0x19208d4e genphy_c37_read_status +EXPORT_SYMBOL vmlinux 0x19264e67 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x192a79c4 prepare_to_swait_exclusive +EXPORT_SYMBOL vmlinux 0x19481bf4 phy_modify_paged_changed +EXPORT_SYMBOL vmlinux 0x1953c958 mempool_create +EXPORT_SYMBOL vmlinux 0x19594bc6 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x1968903f inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x196a9d63 find_inode_by_ino_rcu +EXPORT_SYMBOL vmlinux 0x1972df4b pci_read_config_dword +EXPORT_SYMBOL vmlinux 0x1976e070 folio_mark_accessed +EXPORT_SYMBOL vmlinux 0x197e91b0 xfrm_input +EXPORT_SYMBOL vmlinux 0x1984d421 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x1985b98a secpath_set +EXPORT_SYMBOL vmlinux 0x1989db44 sock_no_accept +EXPORT_SYMBOL vmlinux 0x1995fdab tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x199afe30 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x199eda9b skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x19a93936 skb_push +EXPORT_SYMBOL vmlinux 0x19adc45e ip6_err_gen_icmpv6_unreach +EXPORT_SYMBOL vmlinux 0x19b4e8c5 vfs_readlink +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c5fe44 nf_ct_get_tuple_skb +EXPORT_SYMBOL vmlinux 0x19c9934a ip_sock_set_mtu_discover +EXPORT_SYMBOL vmlinux 0x19d55f75 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x19e2b39f devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x1a01218f put_cmsg +EXPORT_SYMBOL vmlinux 0x1a1052ba tcp_sock_set_quickack +EXPORT_SYMBOL vmlinux 0x1a1aaf71 tcp_sock_set_nodelay +EXPORT_SYMBOL vmlinux 0x1a29358e pci_irq_vector +EXPORT_SYMBOL vmlinux 0x1a2d4ad1 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1a383ec5 mdio_device_reset +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4c0b41 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x1a535c86 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x1a561021 param_set_short +EXPORT_SYMBOL vmlinux 0x1a58ed6f __d_lookup_done +EXPORT_SYMBOL vmlinux 0x1a60471c of_get_compatible_child +EXPORT_SYMBOL vmlinux 0x1a63e3c2 filemap_fault +EXPORT_SYMBOL vmlinux 0x1a677ebf of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1a6fcc4b free_netdev +EXPORT_SYMBOL vmlinux 0x1a7f138f genphy_loopback +EXPORT_SYMBOL vmlinux 0x1a87f210 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x1a9a433c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x1ab31c3d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x1ab72b3f dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad21d07 tcf_action_set_ctrlact +EXPORT_SYMBOL vmlinux 0x1adc022d iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x1adff168 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b122b11 pci_iounmap +EXPORT_SYMBOL vmlinux 0x1b17d5bc netif_device_attach +EXPORT_SYMBOL vmlinux 0x1b2caccf sock_no_listen +EXPORT_SYMBOL vmlinux 0x1b359b26 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x1b4050b7 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x1b48a0dd single_open_size +EXPORT_SYMBOL vmlinux 0x1b5196fc xudma_tchan_put +EXPORT_SYMBOL vmlinux 0x1b597b7a swake_up_all +EXPORT_SYMBOL vmlinux 0x1b5cc9d8 dma_fence_array_first +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7683a6 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1b777357 rdmacg_unregister_device +EXPORT_SYMBOL vmlinux 0x1b7eedd7 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x1b908d85 _raw_write_lock_nested +EXPORT_SYMBOL vmlinux 0x1ba59527 __kmalloc_node +EXPORT_SYMBOL vmlinux 0x1bb51249 tcp_have_smc +EXPORT_SYMBOL vmlinux 0x1bb67920 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x1bb86b9a xen_start_info +EXPORT_SYMBOL vmlinux 0x1bc0d3bc sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x1bc1633d inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x1bc84696 generic_write_checks +EXPORT_SYMBOL vmlinux 0x1bcd2000 sync_file_create +EXPORT_SYMBOL vmlinux 0x1bd59dbe vme_free_consistent +EXPORT_SYMBOL vmlinux 0x1bd6ca4e submit_bio +EXPORT_SYMBOL vmlinux 0x1c0836a0 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x1c0b9cee md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x1c141bda should_remove_suid +EXPORT_SYMBOL vmlinux 0x1c4bca3d kill_pid +EXPORT_SYMBOL vmlinux 0x1c55a989 udp_poll +EXPORT_SYMBOL vmlinux 0x1c58427f acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x1c5e2b97 of_graph_get_port_parent +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c8bf92d __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1c9e308e __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x1cb11044 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x1cc11154 __SCK__tp_func_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0x1ccefca5 ethtool_intersect_link_masks +EXPORT_SYMBOL vmlinux 0x1cd8438b pxm_to_node +EXPORT_SYMBOL vmlinux 0x1cdd39ba logic_outsl +EXPORT_SYMBOL vmlinux 0x1ce6a164 __bforget +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 0x1d1c47d9 elevator_alloc +EXPORT_SYMBOL vmlinux 0x1d2026c2 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x1d24c881 ___ratelimit +EXPORT_SYMBOL vmlinux 0x1d2e387e bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1d3f427f init_net +EXPORT_SYMBOL vmlinux 0x1d40b6f3 idr_for_each +EXPORT_SYMBOL vmlinux 0x1d4f1f22 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x1d4f6751 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x1d5a69c4 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x1d5cedae __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1d6e0537 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x1d7b07ca bio_init_clone +EXPORT_SYMBOL vmlinux 0x1d85fa4e vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x1d8e5959 tcf_chain_get_by_act +EXPORT_SYMBOL vmlinux 0x1d906e8f dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x1d9672bd fault_in_subpage_writeable +EXPORT_SYMBOL vmlinux 0x1dbef1c1 dma_resv_reserve_fences +EXPORT_SYMBOL vmlinux 0x1dc6c93b lookup_user_key +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 0x1de9aaf8 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x1df01ca5 flow_rule_match_vlan +EXPORT_SYMBOL vmlinux 0x1dfaa4dd efi +EXPORT_SYMBOL vmlinux 0x1e0373fc imx_scu_irq_group_enable +EXPORT_SYMBOL vmlinux 0x1e0a0c24 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x1e0cd7fe acpi_detach_data +EXPORT_SYMBOL vmlinux 0x1e0fe545 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1e1e140e ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0x1e202f3e rdmacg_uncharge +EXPORT_SYMBOL vmlinux 0x1e3e944d kernel_getsockname +EXPORT_SYMBOL vmlinux 0x1e4d3f23 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x1e6adaa0 bitmap_print_bitmask_to_buf +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e74b2ce pci_enable_msi +EXPORT_SYMBOL vmlinux 0x1e7fb01a blk_mq_rq_cpu +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea96b93 dev_addr_add +EXPORT_SYMBOL vmlinux 0x1eb1faf6 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x1eb9515f pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1ec5a326 rproc_shutdown +EXPORT_SYMBOL vmlinux 0x1ed7eb60 __sg_free_table +EXPORT_SYMBOL vmlinux 0x1edb69d6 ktime_get_raw_ts64 +EXPORT_SYMBOL vmlinux 0x1ef3366c mini_qdisc_pair_swap +EXPORT_SYMBOL vmlinux 0x1ef41b7e qcom_scm_iommu_set_pt_format +EXPORT_SYMBOL vmlinux 0x1f09af9e tcp_shutdown +EXPORT_SYMBOL vmlinux 0x1f0d9ad5 tcf_qevent_dump +EXPORT_SYMBOL vmlinux 0x1f1657a0 unregister_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x1f2cc091 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x1f2f9cea sock_set_mark +EXPORT_SYMBOL vmlinux 0x1f40a735 __block_write_full_page +EXPORT_SYMBOL vmlinux 0x1f4121e5 mpage_read_folio +EXPORT_SYMBOL vmlinux 0x1f557414 gen_pool_has_addr +EXPORT_SYMBOL vmlinux 0x1f89894e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x1f91a476 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x1faf493c netdev_set_sb_channel +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1fd40 simple_fill_super +EXPORT_SYMBOL vmlinux 0x1fd5da89 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x1fea78b7 get_tz_trend +EXPORT_SYMBOL vmlinux 0x1ff2a6fb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2020a145 do_clone_file_range +EXPORT_SYMBOL vmlinux 0x20340844 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x203fba80 mpage_readahead +EXPORT_SYMBOL vmlinux 0x20463df4 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x204a5c3e unregister_mii_timestamper +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5067 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x20798b96 clk_hw_register_clkdev +EXPORT_SYMBOL vmlinux 0x2086a66b kernel_accept +EXPORT_SYMBOL vmlinux 0x208d7c9a seq_bprintf +EXPORT_SYMBOL vmlinux 0x209337e8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x20990b82 ethtool_rx_flow_rule_destroy +EXPORT_SYMBOL vmlinux 0x209fc734 param_ops_int +EXPORT_SYMBOL vmlinux 0x20a2a2d0 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x20a720ef redraw_screen +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20a8823a simple_transaction_get +EXPORT_SYMBOL vmlinux 0x20bfd77b security_path_mknod +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 0x20eec650 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x20fcc371 dquot_load_quota_inode +EXPORT_SYMBOL vmlinux 0x21277b13 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x2128a262 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x212a0469 tso_count_descs +EXPORT_SYMBOL vmlinux 0x2134a657 genphy_config_eee_advert +EXPORT_SYMBOL vmlinux 0x21394ce1 inet6_getname +EXPORT_SYMBOL vmlinux 0x213a04d0 fman_get_pause_cfg +EXPORT_SYMBOL vmlinux 0x213a738d memregion_alloc +EXPORT_SYMBOL vmlinux 0x213e4965 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x2156d29a skb_checksum_help +EXPORT_SYMBOL vmlinux 0x215efc69 pci_select_bars +EXPORT_SYMBOL vmlinux 0x21761740 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2178654b key_invalidate +EXPORT_SYMBOL vmlinux 0x218e600b pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x219878c5 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x21b2147a mipi_dsi_device_register_full +EXPORT_SYMBOL vmlinux 0x21b55193 tcf_classify +EXPORT_SYMBOL vmlinux 0x21bdb523 errseq_check_and_advance +EXPORT_SYMBOL vmlinux 0x21be37e1 hdmi_avi_infoframe_check +EXPORT_SYMBOL vmlinux 0x21e13cb3 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x21ef374c try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x21f69b53 mmput_async +EXPORT_SYMBOL vmlinux 0x2201d3c4 devfreq_get_freq_range +EXPORT_SYMBOL vmlinux 0x2202aa92 bdev_check_media_change +EXPORT_SYMBOL vmlinux 0x220c7021 tegra_io_pad_power_disable +EXPORT_SYMBOL vmlinux 0x221db13e skb_copy_bits +EXPORT_SYMBOL vmlinux 0x2226bf22 skb_seq_read +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2234ca51 acpi_match_platform_list +EXPORT_SYMBOL vmlinux 0x2237e688 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x224ce651 xudma_free_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x22808c2f fb_pan_display +EXPORT_SYMBOL vmlinux 0x228cba04 bdi_put +EXPORT_SYMBOL vmlinux 0x22a5d90b unregister_filesystem +EXPORT_SYMBOL vmlinux 0x22abbb2f devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c0ee94 vfs_parse_fs_param_source +EXPORT_SYMBOL vmlinux 0x22c28090 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x22ca135e gro_cells_receive +EXPORT_SYMBOL vmlinux 0x22d4393c bioset_exit +EXPORT_SYMBOL vmlinux 0x22fc6d33 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x2319a203 path_is_mountpoint +EXPORT_SYMBOL vmlinux 0x2340576f mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x234f2006 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x23559c51 qman_oos_fq +EXPORT_SYMBOL vmlinux 0x235711b3 xsk_set_rx_need_wakeup +EXPORT_SYMBOL vmlinux 0x23591f53 md_integrity_register +EXPORT_SYMBOL vmlinux 0x2364c85a tasklet_init +EXPORT_SYMBOL vmlinux 0x23660502 param_set_long +EXPORT_SYMBOL vmlinux 0x237432e5 file_fdatawait_range +EXPORT_SYMBOL vmlinux 0x237a0b5c __traceiter_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0x238ae121 rproc_elf_find_loaded_rsc_table +EXPORT_SYMBOL vmlinux 0x238b099f mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0x238e4396 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x2391f725 irq_stat +EXPORT_SYMBOL vmlinux 0x23aad855 nobh_write_end +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23cabbb1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x23daa989 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x23f1d7a6 page_pool_ethtool_stats_get_count +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24095770 __do_once_done +EXPORT_SYMBOL vmlinux 0x24280215 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x245643c5 blk_queue_split +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2474e02d inet6_ioctl +EXPORT_SYMBOL vmlinux 0x247cab3c pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24851198 misc_deregister +EXPORT_SYMBOL vmlinux 0x24bda078 ps2_command +EXPORT_SYMBOL vmlinux 0x24ce2053 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x24d273d1 add_timer +EXPORT_SYMBOL vmlinux 0x24d3f933 ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x24dd6db2 alloc_pages +EXPORT_SYMBOL vmlinux 0x24e0580e input_register_handler +EXPORT_SYMBOL vmlinux 0x2502aa3e blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x2504a349 phy_config_aneg +EXPORT_SYMBOL vmlinux 0x2505bf18 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2517942d dma_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x252332f1 __SCK__tp_func_mmap_lock_released +EXPORT_SYMBOL vmlinux 0x2533a72a tty_register_driver +EXPORT_SYMBOL vmlinux 0x2537a48c cdc_parse_cdc_header +EXPORT_SYMBOL vmlinux 0x2548c032 __cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x255b6057 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x257740cb from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258a2c02 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x258d2f76 net_dim_get_tx_moderation +EXPORT_SYMBOL vmlinux 0x25974000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x259e4c5c fwnode_iomap +EXPORT_SYMBOL vmlinux 0x259eff01 reuseport_alloc +EXPORT_SYMBOL vmlinux 0x25df568f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x25e11d7c flow_rule_match_control +EXPORT_SYMBOL vmlinux 0x25e58a09 hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ff7499 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2602877b netdev_offload_xstats_push_delta +EXPORT_SYMBOL vmlinux 0x260417f0 wake_up_process +EXPORT_SYMBOL vmlinux 0x260a095a __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x260bb069 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x260d0050 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x260e52ee dynamic_preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x262a2597 ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x26301a84 blk_mq_destroy_queue +EXPORT_SYMBOL vmlinux 0x26337647 nvdimm_namespace_locked +EXPORT_SYMBOL vmlinux 0x263afa96 seq_putc +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c3152 bcmp +EXPORT_SYMBOL vmlinux 0x263f0d1f qman_portal_set_iperiod +EXPORT_SYMBOL vmlinux 0x2641cc64 netdev_set_tc_queue +EXPORT_SYMBOL vmlinux 0x265aadb0 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x2660d5c9 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x266a0ed5 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x267f28f3 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x2688ec10 bitmap_zalloc +EXPORT_SYMBOL vmlinux 0x26897b52 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x268bf0e7 tcp_seq_start +EXPORT_SYMBOL vmlinux 0x269691a2 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x2696b06b generic_delete_inode +EXPORT_SYMBOL vmlinux 0x26ab719b splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x26c09eee of_phy_get_and_connect +EXPORT_SYMBOL vmlinux 0x26c8ebd7 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x26cac7ee flow_block_cb_priv +EXPORT_SYMBOL vmlinux 0x26cfe31b devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x26dbad5c generic_write_checks_count +EXPORT_SYMBOL vmlinux 0x26de7f02 key_validate +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e3244e register_console +EXPORT_SYMBOL vmlinux 0x270892bd mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x270cf88f dump_stack_lvl +EXPORT_SYMBOL vmlinux 0x270d9657 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271f8f6e mr_table_dump +EXPORT_SYMBOL vmlinux 0x272312de rproc_put +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 0x274f0a3d tty_unthrottle +EXPORT_SYMBOL vmlinux 0x275c1403 __phy_read_mmd +EXPORT_SYMBOL vmlinux 0x275dfee4 ucc_slow_free +EXPORT_SYMBOL vmlinux 0x275f3d49 hdmi_vendor_infoframe_check +EXPORT_SYMBOL vmlinux 0x276b0095 fscrypt_decrypt_bio +EXPORT_SYMBOL vmlinux 0x27756bc8 scsi_sanitize_inquiry_string +EXPORT_SYMBOL vmlinux 0x277a55a6 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x27804ee0 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x27810361 acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0x2782b393 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x2783c3c0 sk_alloc +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278cd4d3 mount_subtree +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 0x27cdca93 pci_add_resource +EXPORT_SYMBOL vmlinux 0x27e091d9 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x27e0dd0a qcom_scm_pas_init_image +EXPORT_SYMBOL vmlinux 0x27ea35a2 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x27fcca55 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x2803d6c2 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28609cd0 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x286b1cef t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x2875a315 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x28952e85 param_set_byte +EXPORT_SYMBOL vmlinux 0x28985d35 mr_mfc_seq_idx +EXPORT_SYMBOL vmlinux 0x28abd54c __alloc_skb +EXPORT_SYMBOL vmlinux 0x28d82b55 sync_blockdev +EXPORT_SYMBOL vmlinux 0x28ef6208 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x28f44685 finish_open +EXPORT_SYMBOL vmlinux 0x28f94604 __ubsan_handle_builtin_unreachable +EXPORT_SYMBOL vmlinux 0x2909fa79 dev_addr_mod +EXPORT_SYMBOL vmlinux 0x29224b78 noop_llseek +EXPORT_SYMBOL vmlinux 0x29295043 security_sk_clone +EXPORT_SYMBOL vmlinux 0x29550942 __sk_queue_drop_skb +EXPORT_SYMBOL vmlinux 0x2957419a skb_tunnel_check_pmtu +EXPORT_SYMBOL vmlinux 0x29604158 napi_busy_loop +EXPORT_SYMBOL vmlinux 0x29676fe3 napi_build_skb +EXPORT_SYMBOL vmlinux 0x29677cd4 inet_shutdown +EXPORT_SYMBOL vmlinux 0x2970419f pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x297d8775 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x298068c5 ethtool_virtdev_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2981caae netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x298e7569 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x298ffb8c phy_suspend +EXPORT_SYMBOL vmlinux 0x2999dd2b ethtool_notify +EXPORT_SYMBOL vmlinux 0x2999e799 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x29be2d98 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x29c2bf43 shmem_aops +EXPORT_SYMBOL vmlinux 0x29c8149e __pagevec_release +EXPORT_SYMBOL vmlinux 0x29ce7fe1 pci_read_config_word +EXPORT_SYMBOL vmlinux 0x29e1e204 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0x29e8a49a mipi_dsi_shutdown_peripheral +EXPORT_SYMBOL vmlinux 0x29f79a80 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x29ffcf8f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x2a0c2f82 dma_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x2a211301 ps2_init +EXPORT_SYMBOL vmlinux 0x2a239320 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a33d0f6 pci_release_resource +EXPORT_SYMBOL vmlinux 0x2a3bfbac deactivate_super +EXPORT_SYMBOL vmlinux 0x2a455f9d file_open_root +EXPORT_SYMBOL vmlinux 0x2a6b2a77 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x2a8a0b96 page_frag_alloc_align +EXPORT_SYMBOL vmlinux 0x2a928918 slhc_free +EXPORT_SYMBOL vmlinux 0x2a9a3905 vme_master_get +EXPORT_SYMBOL vmlinux 0x2a9a6a7d netif_set_real_num_queues +EXPORT_SYMBOL vmlinux 0x2a9b954d irq_set_chip +EXPORT_SYMBOL vmlinux 0x2aa0843e mempool_resize +EXPORT_SYMBOL vmlinux 0x2aabaf9d xudma_tchan_get +EXPORT_SYMBOL vmlinux 0x2aabcdc8 vmalloc_array +EXPORT_SYMBOL vmlinux 0x2ab2ee91 brcmstb_get_product_id +EXPORT_SYMBOL vmlinux 0x2ac3929f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x2aca7017 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2ad69e4f kmem_cache_create_usercopy +EXPORT_SYMBOL vmlinux 0x2add06bc __netif_napi_del +EXPORT_SYMBOL vmlinux 0x2ae274fa mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x2ae87f2d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x2b0577b5 nd_dax_probe +EXPORT_SYMBOL vmlinux 0x2b0a867d blkdev_put +EXPORT_SYMBOL vmlinux 0x2b0b8549 page_pool_return_skb_page +EXPORT_SYMBOL vmlinux 0x2b0ffd44 vfs_get_fsid +EXPORT_SYMBOL vmlinux 0x2b1abce3 fman_has_errata_a050385 +EXPORT_SYMBOL vmlinux 0x2b1d49c0 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x2b2b2eca wireless_spy_update +EXPORT_SYMBOL vmlinux 0x2b593aa8 gen_pool_alloc_algo_owner +EXPORT_SYMBOL vmlinux 0x2b64e71e pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x2b65144b pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x2b68bd2f del_timer +EXPORT_SYMBOL vmlinux 0x2b87cb9d scsi_host_get +EXPORT_SYMBOL vmlinux 0x2b9b93eb vme_irq_handler +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2baa0029 follow_pfn +EXPORT_SYMBOL vmlinux 0x2bb6099e dq_data_lock +EXPORT_SYMBOL vmlinux 0x2bb7f378 udp_pre_connect +EXPORT_SYMBOL vmlinux 0x2bbb8c88 qman_affine_cpus +EXPORT_SYMBOL vmlinux 0x2bd60ab9 acpi_reset +EXPORT_SYMBOL vmlinux 0x2be398c6 __lock_sock_fast +EXPORT_SYMBOL vmlinux 0x2bf63013 pmem_sector_size +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2c0fe372 inet6_protos +EXPORT_SYMBOL vmlinux 0x2c18dacd device_match_acpi_handle +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c329e54 tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2c3a7336 devm_of_clk_del_provider +EXPORT_SYMBOL vmlinux 0x2c4e6df1 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2c541e7b radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x2c5dabcf devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x2c5dcdc2 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x2c71fbfb proc_dobool +EXPORT_SYMBOL vmlinux 0x2c73a4a8 __ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2c75de79 skb_copy_header +EXPORT_SYMBOL vmlinux 0x2c82c36a security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x2c844ae5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x2c91e17c vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x2c972d0c skb_csum_hwoffload_help +EXPORT_SYMBOL vmlinux 0x2c9be337 proc_create_single_data +EXPORT_SYMBOL vmlinux 0x2ca65c4b devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x2cac8c98 load_nls +EXPORT_SYMBOL vmlinux 0x2cb555bd fs_param_is_u64 +EXPORT_SYMBOL vmlinux 0x2ccd059a dim_on_top +EXPORT_SYMBOL vmlinux 0x2cdb7271 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x2cdc113d capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x2cdf87a1 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x2d0ec662 amba_release_regions +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d14983b proc_create_seq_private +EXPORT_SYMBOL vmlinux 0x2d192c70 sg_zero_buffer +EXPORT_SYMBOL vmlinux 0x2d2d4a36 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x2d2de616 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d39b0a7 kstrdup +EXPORT_SYMBOL vmlinux 0x2d4c15df phy_set_asym_pause +EXPORT_SYMBOL vmlinux 0x2d4c773a hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0x2d4daef5 find_font +EXPORT_SYMBOL vmlinux 0x2d535fdc pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x2d57ab62 jbd2_journal_invalidate_folio +EXPORT_SYMBOL vmlinux 0x2d6e91ce uart_add_one_port +EXPORT_SYMBOL vmlinux 0x2d72113d padata_free_shell +EXPORT_SYMBOL vmlinux 0x2d7d4340 __bread_gfp +EXPORT_SYMBOL vmlinux 0x2d912bca dmi_get_bios_year +EXPORT_SYMBOL vmlinux 0x2d9688f0 phy_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0x2d994605 security_inode_copy_up_xattr +EXPORT_SYMBOL vmlinux 0x2daadefd kthread_bind +EXPORT_SYMBOL vmlinux 0x2dbcdcab devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x2dccfcd2 tcf_block_netif_keep_dst +EXPORT_SYMBOL vmlinux 0x2dce2f1c __irq_regs +EXPORT_SYMBOL vmlinux 0x2dd6e4ab dev_pm_opp_register_notifier +EXPORT_SYMBOL vmlinux 0x2ddc06ae ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x2ddca5e0 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x2de2488d dev_pick_tx_cpu_id +EXPORT_SYMBOL vmlinux 0x2dea52b0 xsk_clear_tx_need_wakeup +EXPORT_SYMBOL vmlinux 0x2dfe48d5 bio_kmalloc +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 0x2e3aeff5 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x2e3bcce2 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x2e42024a netif_receive_skb_core +EXPORT_SYMBOL vmlinux 0x2e439142 drm_get_panel_orientation_quirk +EXPORT_SYMBOL vmlinux 0x2e5b27da xudma_alloc_gp_rflow_range +EXPORT_SYMBOL vmlinux 0x2e79555f md_bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x2e889d13 skb_headers_offset_update +EXPORT_SYMBOL vmlinux 0x2ea1dbda copy_highpage +EXPORT_SYMBOL vmlinux 0x2ea45fc2 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x2eb50587 mini_qdisc_pair_init +EXPORT_SYMBOL vmlinux 0x2eb8c6d3 padata_alloc +EXPORT_SYMBOL vmlinux 0x2ec6bba0 errseq_set +EXPORT_SYMBOL vmlinux 0x2ec6c7a7 get_user_pages +EXPORT_SYMBOL vmlinux 0x2ecb4d8f processors +EXPORT_SYMBOL vmlinux 0x2ee4c2b1 hdmi_avi_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f0d7b65 genphy_c37_config_aneg +EXPORT_SYMBOL vmlinux 0x2f1254d1 ucc_tdm_init +EXPORT_SYMBOL vmlinux 0x2f2e91b2 security_ib_alloc_security +EXPORT_SYMBOL vmlinux 0x2f333aab imx_scu_get_handle +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f39d4df dquot_resume +EXPORT_SYMBOL vmlinux 0x2f435c2d ip_output +EXPORT_SYMBOL vmlinux 0x2f6bcbec call_fib_notifiers +EXPORT_SYMBOL vmlinux 0x2f6fbede mii_nway_restart +EXPORT_SYMBOL vmlinux 0x2f7754a8 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2f7b38bf vga_remove_vgacon +EXPORT_SYMBOL vmlinux 0x2fa0eac1 of_graph_get_endpoint_count +EXPORT_SYMBOL vmlinux 0x2fa16d11 set_anon_super +EXPORT_SYMBOL vmlinux 0x2fa18628 dm_get_device +EXPORT_SYMBOL vmlinux 0x2fba3d09 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe3fc49 do_splice_direct +EXPORT_SYMBOL vmlinux 0x2fe5b535 qcom_scm_assign_mem +EXPORT_SYMBOL vmlinux 0x2fe9cad3 scsi_partsize +EXPORT_SYMBOL vmlinux 0x300aef60 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x300b0fb6 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x3046d805 mptcp_subflow_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x305f3178 cdev_device_del +EXPORT_SYMBOL vmlinux 0x307a9c89 fman_bind +EXPORT_SYMBOL vmlinux 0x3085e180 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x3086baca reuseport_attach_prog +EXPORT_SYMBOL vmlinux 0x30958b71 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8c04d xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x30acfde9 hsiphash_2u32 +EXPORT_SYMBOL vmlinux 0x30c72a48 mmc_run_bkops +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f27c33 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x310471c9 copy_string_kernel +EXPORT_SYMBOL vmlinux 0x3105d2fb secure_tcpv6_ts_off +EXPORT_SYMBOL vmlinux 0x310e9d28 tcp_poll +EXPORT_SYMBOL vmlinux 0x31133bd1 audit_log +EXPORT_SYMBOL vmlinux 0x3126a9e8 siphash_1u64 +EXPORT_SYMBOL vmlinux 0x3141cc1b blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x316a6fc0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x31796148 flow_rule_match_enc_opts +EXPORT_SYMBOL vmlinux 0x3183244c tcf_idr_search +EXPORT_SYMBOL vmlinux 0x318be6e6 drop_super_exclusive +EXPORT_SYMBOL vmlinux 0x31979847 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x319d493d proc_dostring +EXPORT_SYMBOL vmlinux 0x31a092a0 of_get_next_parent +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a533d8 iommu_dma_get_resv_regions +EXPORT_SYMBOL vmlinux 0x31a912eb try_to_release_page +EXPORT_SYMBOL vmlinux 0x31bacbb0 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x31c335b7 noop_qdisc +EXPORT_SYMBOL vmlinux 0x31dac66e ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x31fe1072 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x320154a1 clean_bdev_aliases +EXPORT_SYMBOL vmlinux 0x32059682 md_register_thread +EXPORT_SYMBOL vmlinux 0x321076cf md_bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x3213f038 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3214dfca serio_unregister_port +EXPORT_SYMBOL vmlinux 0x32170499 pci_bus_claim_resources +EXPORT_SYMBOL vmlinux 0x321b01f3 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3221df67 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x322ac659 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x32394d4b qe_issue_cmd +EXPORT_SYMBOL vmlinux 0x324068d9 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x325a3fc6 clk_bulk_get +EXPORT_SYMBOL vmlinux 0x32778336 __breadahead_gfp +EXPORT_SYMBOL vmlinux 0x32787823 __skb_ext_put +EXPORT_SYMBOL vmlinux 0x327c84bf vme_lm_attach +EXPORT_SYMBOL vmlinux 0x3283e6b0 prandom_seed_full_state +EXPORT_SYMBOL vmlinux 0x329e0cf3 sg_alloc_append_table_from_pages +EXPORT_SYMBOL vmlinux 0x32bd2079 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x32be77dc __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x32c21768 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x32c929b4 __cgroup_bpf_run_filter_sock_ops +EXPORT_SYMBOL vmlinux 0x32ce3777 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32e73b5a skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x33037fd8 logic_outl +EXPORT_SYMBOL vmlinux 0x330ba2e1 try_lookup_one_len +EXPORT_SYMBOL vmlinux 0x3313e038 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x336e29a7 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x33736a1d __genradix_ptr_alloc +EXPORT_SYMBOL vmlinux 0x3380795c single_release +EXPORT_SYMBOL vmlinux 0x33843aad blk_queue_flag_clear +EXPORT_SYMBOL vmlinux 0x3395738b pci_dev_put +EXPORT_SYMBOL vmlinux 0x339d34a8 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x33bad0ee blk_set_queue_depth +EXPORT_SYMBOL vmlinux 0x33becc0c blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x33c8cb6a udp_skb_destructor +EXPORT_SYMBOL vmlinux 0x33cbff3b genphy_read_status +EXPORT_SYMBOL vmlinux 0x33da4540 nf_log_packet +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f38a81 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x33fc2a31 get_user_ifreq +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33ff3390 xfrm_if_register_cb +EXPORT_SYMBOL vmlinux 0x3402dc8b __write_overflow_field +EXPORT_SYMBOL vmlinux 0x341b00bd phy_device_remove +EXPORT_SYMBOL vmlinux 0x341eb6b9 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x3424daf8 __traceiter_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0x34352a2b napi_gro_frags +EXPORT_SYMBOL vmlinux 0x343663b4 md_write_inc +EXPORT_SYMBOL vmlinux 0x343843b0 page_get_link +EXPORT_SYMBOL vmlinux 0x347beba6 security_path_unlink +EXPORT_SYMBOL vmlinux 0x34976164 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a1f7e3 acpi_processor_get_psd +EXPORT_SYMBOL vmlinux 0x34b16334 __next_node_in +EXPORT_SYMBOL vmlinux 0x34c7cdbc lookup_bdev +EXPORT_SYMBOL vmlinux 0x34d4a041 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x34db050b _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x34eab452 param_get_byte +EXPORT_SYMBOL vmlinux 0x34f0f696 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x350ea558 dma_fence_default_wait +EXPORT_SYMBOL vmlinux 0x350f101d mii_check_link +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x352a270d pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x352e1eee pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x352faaef cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x3534be56 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x35600651 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35679abf vmf_insert_mixed_prot +EXPORT_SYMBOL vmlinux 0x35771003 mmc_card_is_blockaddr +EXPORT_SYMBOL vmlinux 0x3578e614 register_netdev +EXPORT_SYMBOL vmlinux 0x3585ea0b dst_destroy +EXPORT_SYMBOL vmlinux 0x358d9a41 tty_register_device +EXPORT_SYMBOL vmlinux 0x3590acc9 cpumask_any_distribute +EXPORT_SYMBOL vmlinux 0x359b7e83 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b6f4e7 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x35d79a39 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x35ddbc27 netif_rx +EXPORT_SYMBOL vmlinux 0x35ea2ba7 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x35ecb9fb handle_edge_irq +EXPORT_SYMBOL vmlinux 0x35edca62 mdio_device_create +EXPORT_SYMBOL vmlinux 0x36060086 flow_rule_match_basic +EXPORT_SYMBOL vmlinux 0x360a216b mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360d8717 jbd2_journal_inode_ranged_wait +EXPORT_SYMBOL vmlinux 0x36113307 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x36196260 __vfs_setxattr +EXPORT_SYMBOL vmlinux 0x3629cfca has_capability_noaudit +EXPORT_SYMBOL vmlinux 0x362b0e46 dma_resv_copy_fences +EXPORT_SYMBOL vmlinux 0x3643acb6 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x364850b1 down_write_killable +EXPORT_SYMBOL vmlinux 0x364ac574 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x364c23ad mutex_is_locked +EXPORT_SYMBOL vmlinux 0x3651d15b mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x365acda7 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x365e7911 kstrdup_const +EXPORT_SYMBOL vmlinux 0x3678b671 register_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0x3686d720 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x36a99904 input_event +EXPORT_SYMBOL vmlinux 0x36b3f40e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x36b5cba0 folio_write_one +EXPORT_SYMBOL vmlinux 0x36b6ebbf down_killable +EXPORT_SYMBOL vmlinux 0x36bc73a6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x36be68bf unlock_page +EXPORT_SYMBOL vmlinux 0x36c26ebd platform_get_ethdev_address +EXPORT_SYMBOL vmlinux 0x36cc6c53 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x36d11006 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x36d3a34d devm_get_clk_from_child +EXPORT_SYMBOL vmlinux 0x36d516b9 i2c_transfer +EXPORT_SYMBOL vmlinux 0x36d9b0cf __of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x36eae012 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x36f8b30e key_revoke +EXPORT_SYMBOL vmlinux 0x36f99a5a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x37048e42 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x370c6f79 xp_dma_sync_for_cpu_slow +EXPORT_SYMBOL vmlinux 0x37110088 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3717896b alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x37184a39 kill_block_super +EXPORT_SYMBOL vmlinux 0x371e1953 __printk_cpu_sync_wait +EXPORT_SYMBOL vmlinux 0x3728c3c7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3730889e security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x3735515f ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3744da58 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x3749111d phy_start +EXPORT_SYMBOL vmlinux 0x3751fd1c flow_indr_dev_unregister +EXPORT_SYMBOL vmlinux 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL vmlinux 0x3774218c pci_find_resource +EXPORT_SYMBOL vmlinux 0x377d8004 acpi_error +EXPORT_SYMBOL vmlinux 0x378863c6 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x378e3061 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x37a046fd scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x37b3d655 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x37b44251 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c59471 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e3dc12 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x37ffdb02 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x384fdbb9 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3854774b kstrtoll +EXPORT_SYMBOL vmlinux 0x385505d2 param_get_short +EXPORT_SYMBOL vmlinux 0x386df71f address_space_init_once +EXPORT_SYMBOL vmlinux 0x387d0892 ip6_output +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 0x3898563a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a78464 nf_reinject +EXPORT_SYMBOL vmlinux 0x38a917af i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ba9d96 unregister_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0x38cc4afb ipv6_push_frag_opts +EXPORT_SYMBOL vmlinux 0x38d969bf vme_register_bridge +EXPORT_SYMBOL vmlinux 0x38e46431 mempool_exit +EXPORT_SYMBOL vmlinux 0x38f48af7 put_user_ifreq +EXPORT_SYMBOL vmlinux 0x3905edc9 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x390c7e42 current_time +EXPORT_SYMBOL vmlinux 0x391df80a netstamp_needed_key +EXPORT_SYMBOL vmlinux 0x39213988 fsync_bdev +EXPORT_SYMBOL vmlinux 0x3923f0a9 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x392b1fea wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x39386ba6 dev_get_stats +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394a1e11 phy_sfp_attach +EXPORT_SYMBOL vmlinux 0x3953488f __ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395ca752 tcp_ld_RTO_revert +EXPORT_SYMBOL vmlinux 0x399112c5 tcf_action_update_stats +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39ac5028 blk_rq_append_bio +EXPORT_SYMBOL vmlinux 0x39b3ef06 bio_uninit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b7c784 vme_bus_type +EXPORT_SYMBOL vmlinux 0x39be4b8e qman_volatile_dequeue +EXPORT_SYMBOL vmlinux 0x39c83688 skb_eth_push +EXPORT_SYMBOL vmlinux 0x39d95ca4 zstd_reset_cstream +EXPORT_SYMBOL vmlinux 0x39e13ed0 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x39fc610f tc_setup_cb_reoffload +EXPORT_SYMBOL vmlinux 0x39feea48 dquot_load_quota_sb +EXPORT_SYMBOL vmlinux 0x3a10bd5d blk_mq_delay_run_hw_queue +EXPORT_SYMBOL vmlinux 0x3a13f54a sgl_alloc +EXPORT_SYMBOL vmlinux 0x3a2f6702 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x3a30d181 vga_get +EXPORT_SYMBOL vmlinux 0x3a3fb96b pldmfw_flash_image +EXPORT_SYMBOL vmlinux 0x3a4f9d28 rng_is_initialized +EXPORT_SYMBOL vmlinux 0x3a51baf6 d_invalidate +EXPORT_SYMBOL vmlinux 0x3a57c0f8 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x3a802213 __blk_alloc_disk +EXPORT_SYMBOL vmlinux 0x3aa78472 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x3ab7b1cc scsi_set_sense_field_pointer +EXPORT_SYMBOL vmlinux 0x3abe79ab clk_get +EXPORT_SYMBOL vmlinux 0x3abfdfa1 mpage_writepage +EXPORT_SYMBOL vmlinux 0x3aca0190 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x3acbfd77 kernel_recvmsg +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 0x3ae34aeb zstd_init_dctx +EXPORT_SYMBOL vmlinux 0x3af7d4d3 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x3aff3200 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x3b052e2b nonseekable_open +EXPORT_SYMBOL vmlinux 0x3b0f23d2 xudma_is_pktdma +EXPORT_SYMBOL vmlinux 0x3b20fb95 dma_fence_remove_callback +EXPORT_SYMBOL vmlinux 0x3b321462 LZ4_setStreamDecode +EXPORT_SYMBOL vmlinux 0x3b38bf9f noop_fsync +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6c41ea kstrtouint +EXPORT_SYMBOL vmlinux 0x3b707ad5 imx_sc_rm_get_resource_owner +EXPORT_SYMBOL vmlinux 0x3b8287e2 mmc_can_gpio_cd +EXPORT_SYMBOL vmlinux 0x3b9144c9 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x3b918b9d pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3b99c0e6 __lock_buffer +EXPORT_SYMBOL vmlinux 0x3b9c135f mdiobus_is_registered_device +EXPORT_SYMBOL vmlinux 0x3babfc82 genphy_resume +EXPORT_SYMBOL vmlinux 0x3bba9d03 devm_of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3bcd46e3 of_match_device +EXPORT_SYMBOL vmlinux 0x3bceda8e __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x3be3765a lookup_one_len +EXPORT_SYMBOL vmlinux 0x3be7643e security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0x3c0505c0 phy_free_interrupt +EXPORT_SYMBOL vmlinux 0x3c069c38 fs_lookup_param +EXPORT_SYMBOL vmlinux 0x3c0dab95 tcf_em_register +EXPORT_SYMBOL vmlinux 0x3c0e1620 qcom_scm_pas_metadata_release +EXPORT_SYMBOL vmlinux 0x3c185c61 page_put_link +EXPORT_SYMBOL vmlinux 0x3c1c96d0 neigh_table_init +EXPORT_SYMBOL vmlinux 0x3c3215c4 qe_immr +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c3ff9fd sprintf +EXPORT_SYMBOL vmlinux 0x3c4294b7 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x3c5f6670 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x3c66f1cc inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3c772c68 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x3cb0f7a3 simple_recursive_removal +EXPORT_SYMBOL vmlinux 0x3cb5058d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x3cbb940b zstd_init_dstream +EXPORT_SYMBOL vmlinux 0x3cc53e4f of_phy_deregister_fixed_link +EXPORT_SYMBOL vmlinux 0x3cd9ed83 logic_insw +EXPORT_SYMBOL vmlinux 0x3cdbc63b from_kgid_munged +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce572cd devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x3ce71b64 input_set_keycode +EXPORT_SYMBOL vmlinux 0x3cfae5d8 ndisc_ns_create +EXPORT_SYMBOL vmlinux 0x3cfb5b88 fuse_dequeue_forget +EXPORT_SYMBOL vmlinux 0x3d02cd70 dma_fence_signal_locked +EXPORT_SYMBOL vmlinux 0x3d210724 gen_pool_dma_zalloc_align +EXPORT_SYMBOL vmlinux 0x3d365612 folio_redirty_for_writepage +EXPORT_SYMBOL vmlinux 0x3d6355e0 configfs_depend_item +EXPORT_SYMBOL vmlinux 0x3d68017d add_to_pipe +EXPORT_SYMBOL vmlinux 0x3d6fac81 devm_pci_remap_cfg_resource +EXPORT_SYMBOL vmlinux 0x3d8298de free_mdio_bitbang +EXPORT_SYMBOL vmlinux 0x3d9101c1 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x3d93c7c2 __arm_smccc_sve_check +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da6a164 devfreq_update_interval +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 0x3db150cd xsk_tx_peek_release_desc_batch +EXPORT_SYMBOL vmlinux 0x3dc54874 __tty_insert_flip_char +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 0x3dd9b230 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3df3cb44 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x3df64c92 param_set_ushort +EXPORT_SYMBOL vmlinux 0x3dfa427a mod_node_page_state +EXPORT_SYMBOL vmlinux 0x3dfb86b9 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfd8611 configfs_register_group +EXPORT_SYMBOL vmlinux 0x3e0b187b iget_failed +EXPORT_SYMBOL vmlinux 0x3e3bad0a __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x3e6f0161 __dynamic_ibdev_dbg +EXPORT_SYMBOL vmlinux 0x3e70a468 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3e79fb00 arm_smccc_1_2_smc +EXPORT_SYMBOL vmlinux 0x3e7f67a1 tc_setup_cb_replace +EXPORT_SYMBOL vmlinux 0x3e827cdc devm_rproc_alloc +EXPORT_SYMBOL vmlinux 0x3e9dbacc serio_close +EXPORT_SYMBOL vmlinux 0x3edbf4f4 sock_set_keepalive +EXPORT_SYMBOL vmlinux 0x3eeb2322 __wake_up +EXPORT_SYMBOL vmlinux 0x3efc6743 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3efe1703 phy_unregister_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3efedb5e scsi_done +EXPORT_SYMBOL vmlinux 0x3f0288ca pci_restore_state +EXPORT_SYMBOL vmlinux 0x3f041580 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3f0eabd2 xxh64_update +EXPORT_SYMBOL vmlinux 0x3f145640 phy_start_cable_test_tdr +EXPORT_SYMBOL vmlinux 0x3f1ae385 security_sctp_assoc_request +EXPORT_SYMBOL vmlinux 0x3f298f02 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x3f34644d zstd_dstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x3f35832c pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4bd846 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0x3f5958fb param_ops_uint +EXPORT_SYMBOL vmlinux 0x3f683ae1 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x3f7c9fce pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x3f89071b security_ib_pkey_access +EXPORT_SYMBOL vmlinux 0x3f9229f3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x3f9f121b sock_kmalloc +EXPORT_SYMBOL vmlinux 0x3fa690b8 open_exec +EXPORT_SYMBOL vmlinux 0x3fbf3c89 vme_slave_set +EXPORT_SYMBOL vmlinux 0x3fc861a7 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x3fd0ebdd skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3fd78f3b register_chrdev_region +EXPORT_SYMBOL vmlinux 0x3fde700a find_vma +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3ff186fa pps_event +EXPORT_SYMBOL vmlinux 0x3ffde02d dev_pre_changeaddr_notify +EXPORT_SYMBOL vmlinux 0x400a3d80 finalize_exec +EXPORT_SYMBOL vmlinux 0x402054e1 proc_set_size +EXPORT_SYMBOL vmlinux 0x40235c98 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x402e9818 devm_ioremap +EXPORT_SYMBOL vmlinux 0x405a7764 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x405a9ad2 devm_of_find_backlight +EXPORT_SYMBOL vmlinux 0x40628af5 would_dump +EXPORT_SYMBOL vmlinux 0x40629637 rproc_set_firmware +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409a9271 pci_choose_state +EXPORT_SYMBOL vmlinux 0x40a0b564 no_seek_end_llseek_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c4ce02 device_match_acpi_dev +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cf28d2 jbd2_transaction_committed +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e521bd block_truncate_page +EXPORT_SYMBOL vmlinux 0x40e93924 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x40f33383 param_get_string +EXPORT_SYMBOL vmlinux 0x40f76a86 __vcalloc +EXPORT_SYMBOL vmlinux 0x410c362a scsi_scan_target +EXPORT_SYMBOL vmlinux 0x41192489 ram_aops +EXPORT_SYMBOL vmlinux 0x412f893c page_offline_begin +EXPORT_SYMBOL vmlinux 0x41386613 flow_rule_match_enc_keyid +EXPORT_SYMBOL vmlinux 0x4143efbb mark_info_dirty +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414da5e5 qman_enqueue +EXPORT_SYMBOL vmlinux 0x41787780 qman_start_using_portal +EXPORT_SYMBOL vmlinux 0x41821af9 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418c61ba blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x418da0b8 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x4197f907 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x419e3c91 ip_tunnel_parse_protocol +EXPORT_SYMBOL vmlinux 0x41b3ab34 tcp_mtu_to_mss +EXPORT_SYMBOL vmlinux 0x41bc3eef vfs_create_mount +EXPORT_SYMBOL vmlinux 0x41c760fe dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x41c8ee70 kern_sys_bpf +EXPORT_SYMBOL vmlinux 0x41ed3709 get_random_bytes +EXPORT_SYMBOL vmlinux 0x41efdeaf radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x41fa8560 sock_create +EXPORT_SYMBOL vmlinux 0x420964e3 __nla_parse +EXPORT_SYMBOL vmlinux 0x42183aee ip_frag_next +EXPORT_SYMBOL vmlinux 0x422a2116 pipe_lock +EXPORT_SYMBOL vmlinux 0x4230a8d7 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x4235d5a1 __blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x423e561f max8998_write_reg +EXPORT_SYMBOL vmlinux 0x42469ffe done_path_create +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424d3e55 request_firmware +EXPORT_SYMBOL vmlinux 0x42565387 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x42578e80 acpi_get_type +EXPORT_SYMBOL vmlinux 0x4257a6cc bioset_init +EXPORT_SYMBOL vmlinux 0x425892fc tty_hangup +EXPORT_SYMBOL vmlinux 0x42777c2f scsi_register_interface +EXPORT_SYMBOL vmlinux 0x429534dd pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x42b0c34e cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x42bed8d4 unix_gc_lock +EXPORT_SYMBOL vmlinux 0x42ca7688 folio_account_redirty +EXPORT_SYMBOL vmlinux 0x42cff64d dev_activate +EXPORT_SYMBOL vmlinux 0x42d0369f __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x42e445be dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x42f1b900 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4307439a nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x4312c094 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x431ec3a9 __nla_validate +EXPORT_SYMBOL vmlinux 0x43241076 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x4336fcca ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x433cabfb acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x434322cc skb_eth_gso_segment +EXPORT_SYMBOL vmlinux 0x4348e0b3 padata_do_serial +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435f7e22 dev_add_offload +EXPORT_SYMBOL vmlinux 0x437a0d6d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x438297ed inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439cecee request_partial_firmware_into_buf +EXPORT_SYMBOL vmlinux 0x43aa7144 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x43af4811 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x43affc3d do_SAK +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b60fd2 security_sctp_bind_connect +EXPORT_SYMBOL vmlinux 0x43b7eeff input_set_timestamp +EXPORT_SYMBOL vmlinux 0x43c056db blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x43c16f55 kmem_cache_alloc_lru +EXPORT_SYMBOL vmlinux 0x43d22fb9 groups_alloc +EXPORT_SYMBOL vmlinux 0x43d36f13 tcf_action_check_ctrlact +EXPORT_SYMBOL vmlinux 0x43db83f3 tty_devnum +EXPORT_SYMBOL vmlinux 0x43dd9b9d tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x43e508c6 cdev_device_add +EXPORT_SYMBOL vmlinux 0x43e5774c page_mapping +EXPORT_SYMBOL vmlinux 0x43e9e029 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x43f5cdb5 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x43f9b324 input_unregister_device +EXPORT_SYMBOL vmlinux 0x43f9ebc8 slhc_remember +EXPORT_SYMBOL vmlinux 0x4403bbd0 imx_sc_misc_set_control +EXPORT_SYMBOL vmlinux 0x443f6044 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x44469a76 crc_ccitt_false_table +EXPORT_SYMBOL vmlinux 0x444bf861 dquot_disable +EXPORT_SYMBOL vmlinux 0x444fffb9 folio_end_private_2 +EXPORT_SYMBOL vmlinux 0x445464d5 xp_can_alloc +EXPORT_SYMBOL vmlinux 0x4462d35e cpufreq_get_hw_max_freq +EXPORT_SYMBOL vmlinux 0x4486d4a7 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449cc0f0 rproc_del +EXPORT_SYMBOL vmlinux 0x44a6e90a irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x44bbe8e5 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x44e8d306 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45006cee default_red +EXPORT_SYMBOL vmlinux 0x45079638 get_watch_queue +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450d9a35 cmd_db_read_slave_id +EXPORT_SYMBOL vmlinux 0x4515ea1b dev_uc_init +EXPORT_SYMBOL vmlinux 0x45212a3d jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x452413a1 qman_alloc_pool_range +EXPORT_SYMBOL vmlinux 0x4526ca70 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x452ba683 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x45398896 register_quota_format +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45484e3b phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x455299d8 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x45535485 xxh32_update +EXPORT_SYMBOL vmlinux 0x4556853d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x455ac5ee __module_get +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459298c1 cdrom_release +EXPORT_SYMBOL vmlinux 0x459928bb cfb_imageblit +EXPORT_SYMBOL vmlinux 0x459aa6b4 param_get_ulong +EXPORT_SYMBOL vmlinux 0x459b630e inet_frags_fini +EXPORT_SYMBOL vmlinux 0x45b08b14 param_get_long +EXPORT_SYMBOL vmlinux 0x45b8b0ce backlight_device_register +EXPORT_SYMBOL vmlinux 0x45b9715f flow_indr_block_cb_alloc +EXPORT_SYMBOL vmlinux 0x45be555b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x45d18c5b vfs_ioctl +EXPORT_SYMBOL vmlinux 0x45dba088 netdev_bind_sb_channel_queue +EXPORT_SYMBOL vmlinux 0x45f8edc5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x45fbc690 netdev_core_stats_alloc +EXPORT_SYMBOL vmlinux 0x45fbd984 of_clk_get +EXPORT_SYMBOL vmlinux 0x460f4a34 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x461d16ca sg_nents +EXPORT_SYMBOL vmlinux 0x464444c1 pci_enable_ptm +EXPORT_SYMBOL vmlinux 0x46451cee zstd_get_frame_header +EXPORT_SYMBOL vmlinux 0x4657ab9a pci_disable_msi +EXPORT_SYMBOL vmlinux 0x465e24ff ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x4664b7ee mfd_add_devices +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x4683c33d of_find_mipi_dsi_host_by_node +EXPORT_SYMBOL vmlinux 0x4698fe8a bman_release +EXPORT_SYMBOL vmlinux 0x469a6ec7 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0x46a6f2fd of_platform_device_create +EXPORT_SYMBOL vmlinux 0x46ab6f16 pci_free_host_bridge +EXPORT_SYMBOL vmlinux 0x46ae3ff4 input_register_handle +EXPORT_SYMBOL vmlinux 0x46b2eba8 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46cf32cf ip6_xmit +EXPORT_SYMBOL vmlinux 0x46dc0efe mmc_retune_unpause +EXPORT_SYMBOL vmlinux 0x46eabc04 d_make_root +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 0x470eb181 dquot_alloc +EXPORT_SYMBOL vmlinux 0x471385fd ip_do_fragment +EXPORT_SYMBOL vmlinux 0x4715a909 acpi_load_table +EXPORT_SYMBOL vmlinux 0x473e2c91 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x474ed90d dev_disable_lro +EXPORT_SYMBOL vmlinux 0x475d7427 fman_get_rx_extra_headroom +EXPORT_SYMBOL vmlinux 0x47603bf8 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x4762068b arp_xmit +EXPORT_SYMBOL vmlinux 0x47644fee dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x47709e42 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x4775b0f2 pci_release_regions +EXPORT_SYMBOL vmlinux 0x47784d25 phy_get_c45_ids +EXPORT_SYMBOL vmlinux 0x477a6104 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x47828b7c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x47840493 keyring_clear +EXPORT_SYMBOL vmlinux 0x478a8dd2 __register_nls +EXPORT_SYMBOL vmlinux 0x4790bae7 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x479137ca imx_scu_irq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x47960bc4 proc_do_large_bitmap +EXPORT_SYMBOL vmlinux 0x479610a3 xsk_tx_release +EXPORT_SYMBOL vmlinux 0x47b6d0bd xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x47c026af set_posix_acl +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 0x47de8e6f pnp_possible_config +EXPORT_SYMBOL vmlinux 0x47e2ad8f notify_change +EXPORT_SYMBOL vmlinux 0x47ec0fc2 pci_get_device +EXPORT_SYMBOL vmlinux 0x47f77ffb serio_reconnect +EXPORT_SYMBOL vmlinux 0x47ffe610 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x4808d2bb phy_queue_state_machine +EXPORT_SYMBOL vmlinux 0x480e6e24 of_get_cpu_state_node +EXPORT_SYMBOL vmlinux 0x48112d76 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x481814c4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 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 0x4854b52b bd_abort_claiming +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486075c8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x489689e3 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x489eda10 memset32 +EXPORT_SYMBOL vmlinux 0x489f6e0b rdma_dim +EXPORT_SYMBOL vmlinux 0x48a91171 string_get_size +EXPORT_SYMBOL vmlinux 0x48b4c2c5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bedf65 first_ec +EXPORT_SYMBOL vmlinux 0x48c093fb _atomic_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0x48c320ab __bio_advance +EXPORT_SYMBOL vmlinux 0x48d27375 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x48e163d3 refresh_frequency_limits +EXPORT_SYMBOL vmlinux 0x48e1d090 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x48e94d1b fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x48fc48d3 simple_rename +EXPORT_SYMBOL vmlinux 0x49018036 pci_dev_get +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491330a0 ucc_of_parse_tdm +EXPORT_SYMBOL vmlinux 0x4926598d msm_pinctrl_dev_pm_ops +EXPORT_SYMBOL vmlinux 0x49298311 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x492a18ae rproc_coredump_using_sections +EXPORT_SYMBOL vmlinux 0x49456786 invalidate_disk +EXPORT_SYMBOL vmlinux 0x495231ea mul_u64_u64_div_u64 +EXPORT_SYMBOL vmlinux 0x4958286d devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x4967e79f radix_tree_iter_resume +EXPORT_SYMBOL vmlinux 0x498390f0 fman_port_get_device +EXPORT_SYMBOL vmlinux 0x498d7220 sock_set_priority +EXPORT_SYMBOL vmlinux 0x49953ba8 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x499f0ecf nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c15aa9 devm_memremap +EXPORT_SYMBOL vmlinux 0x49c824e2 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x49c953b0 __folio_lock +EXPORT_SYMBOL vmlinux 0x49d19a9b input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x49d80b65 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x49ddd985 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x4a1e2d03 sock_set_sndtimeo +EXPORT_SYMBOL vmlinux 0x4a2cba8f __quota_error +EXPORT_SYMBOL vmlinux 0x4a328e1c tcp_sock_set_keepidle +EXPORT_SYMBOL vmlinux 0x4a3ad70e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x4a4c361d scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4a645c42 nvdimm_check_and_set_ro +EXPORT_SYMBOL vmlinux 0x4a80c44a mroute6_is_socket +EXPORT_SYMBOL vmlinux 0x4a84c565 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4a93576a ucc_fast_free +EXPORT_SYMBOL vmlinux 0x4a96a8eb xxh32_digest +EXPORT_SYMBOL vmlinux 0x4aacbab7 mdiobus_read +EXPORT_SYMBOL vmlinux 0x4ab72287 of_chosen +EXPORT_SYMBOL vmlinux 0x4ae22723 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4ae3f4a3 param_ops_short +EXPORT_SYMBOL vmlinux 0x4aea463f crc32_le_shift +EXPORT_SYMBOL vmlinux 0x4af6ddf0 kstrtou16 +EXPORT_SYMBOL vmlinux 0x4afb2238 add_wait_queue +EXPORT_SYMBOL vmlinux 0x4b0a3f52 gic_nonsecure_priorities +EXPORT_SYMBOL vmlinux 0x4b2bbedb param_ops_bool +EXPORT_SYMBOL vmlinux 0x4b4beaa9 vm_map_ram +EXPORT_SYMBOL vmlinux 0x4b4c6a5c filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x4b5d0aa3 pskb_trim_rcsum_slow +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 0x4b9e5278 eth_header +EXPORT_SYMBOL vmlinux 0x4ba3efbd xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x4ba940b8 put_fs_context +EXPORT_SYMBOL vmlinux 0x4bc4c6e7 phy_init_eee +EXPORT_SYMBOL vmlinux 0x4bcc2662 mempool_init_node +EXPORT_SYMBOL vmlinux 0x4bd1c1b5 flow_rule_match_cvlan +EXPORT_SYMBOL vmlinux 0x4bd7d644 drop_super +EXPORT_SYMBOL vmlinux 0x4bec5a6a sg_miter_next +EXPORT_SYMBOL vmlinux 0x4bed906e unregister_key_type +EXPORT_SYMBOL vmlinux 0x4bef1c67 empty_name +EXPORT_SYMBOL vmlinux 0x4bf3ce6f qman_release_cgrid +EXPORT_SYMBOL vmlinux 0x4bf92401 bdi_register +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c149f5e xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4c293f96 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4c3ad55a mmc_can_gpio_ro +EXPORT_SYMBOL vmlinux 0x4c416eb9 LZ4_decompress_fast +EXPORT_SYMBOL vmlinux 0x4c62e2c7 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x4c7fe82f i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x4c9e958e iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4cba441d iwe_stream_add_event +EXPORT_SYMBOL vmlinux 0x4cc64686 fscrypt_encrypt_block_inplace +EXPORT_SYMBOL vmlinux 0x4cd59356 register_shrinker +EXPORT_SYMBOL vmlinux 0x4ce94fa2 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x4cee4e9f __skb_try_recv_datagram +EXPORT_SYMBOL vmlinux 0x4d07d853 vfs_iocb_iter_write +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d154513 skb_flow_dissect_hash +EXPORT_SYMBOL vmlinux 0x4d2a1dd6 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4d2c7133 acpi_info +EXPORT_SYMBOL vmlinux 0x4d3202e7 netdev_offload_xstats_get +EXPORT_SYMBOL vmlinux 0x4d349b93 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x4d3c5135 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x4d63a993 pci_alloc_irq_vectors_affinity +EXPORT_SYMBOL vmlinux 0x4d65cbd5 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x4d6bcad2 __i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4d709ecb ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4d786b55 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x4d924f20 memremap +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da596e6 qman_retire_fq +EXPORT_SYMBOL vmlinux 0x4db8c3d6 input_grab_device +EXPORT_SYMBOL vmlinux 0x4dc11658 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x4dca08ee sync_file_get_fence +EXPORT_SYMBOL vmlinux 0x4dd11427 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x4dd7b78a inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x4de254a3 jbd2_journal_release_jbd_inode +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 0x4df3331c __scsi_execute +EXPORT_SYMBOL vmlinux 0x4dfa8d4b mutex_lock +EXPORT_SYMBOL vmlinux 0x4e1ff9be input_get_keycode +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 0x4e364c18 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4e36cdc4 __ubsan_handle_divrem_overflow +EXPORT_SYMBOL vmlinux 0x4e39e6ff datagram_poll +EXPORT_SYMBOL vmlinux 0x4e4f0f16 dma_fence_chain_find_seqno +EXPORT_SYMBOL vmlinux 0x4e547048 __kmalloc_node_track_caller +EXPORT_SYMBOL vmlinux 0x4e60c35d nf_hook_slow_list +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6ca17e fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4e6e4b41 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e704b0b locks_free_lock +EXPORT_SYMBOL vmlinux 0x4e7ee2f8 qdisc_offload_graft_helper +EXPORT_SYMBOL vmlinux 0x4e8e6f44 vlan_filter_drop_vids +EXPORT_SYMBOL vmlinux 0x4ea0148e twl6040_power +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eada8f7 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x4eb781e4 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x4ec54e78 bitmap_to_arr32 +EXPORT_SYMBOL vmlinux 0x4ecdc2dc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x4ed14f03 proc_symlink +EXPORT_SYMBOL vmlinux 0x4ed6afae alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x4ef44cbd kernel_sendpage_locked +EXPORT_SYMBOL vmlinux 0x4ef73b7b kfree_skb_reason +EXPORT_SYMBOL vmlinux 0x4f1cc3ee proc_remove +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f20d80b zstd_min_clevel +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f3ac1f0 mr_fill_mroute +EXPORT_SYMBOL vmlinux 0x4f3b29f6 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x4f428771 dev_mc_init +EXPORT_SYMBOL vmlinux 0x4f55166f acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x4f5620f2 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x4f582341 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x4f5b9f45 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x4f5d7a38 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x4f63737c __put_page +EXPORT_SYMBOL vmlinux 0x4f6de2e7 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f709989 security_binder_transfer_binder +EXPORT_SYMBOL vmlinux 0x4f76d698 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4f826f6e create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4faaea24 tty_unlock +EXPORT_SYMBOL vmlinux 0x4fb147a3 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4fd39835 kill_fasync +EXPORT_SYMBOL vmlinux 0x4fe28ad5 netdev_name_in_use +EXPORT_SYMBOL vmlinux 0x4fe8093a neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4ffad159 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x4ffb59bf __SCK__tp_func_kfree +EXPORT_SYMBOL vmlinux 0x4fff955a dma_pool_create +EXPORT_SYMBOL vmlinux 0x5008b46f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5009c71d glob_match +EXPORT_SYMBOL vmlinux 0x500dee84 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5014f461 mdio_driver_register +EXPORT_SYMBOL vmlinux 0x5021bd81 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x5025c935 __f_setown +EXPORT_SYMBOL vmlinux 0x5027bde2 acpi_acquire_mutex +EXPORT_SYMBOL vmlinux 0x5038f374 scsi_done_direct +EXPORT_SYMBOL vmlinux 0x50462d52 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x50616112 __ip_options_compile +EXPORT_SYMBOL vmlinux 0x50624917 sha1_init +EXPORT_SYMBOL vmlinux 0x506dff1a __genradix_free +EXPORT_SYMBOL vmlinux 0x5078d7f4 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x5089f45f ip_send_check +EXPORT_SYMBOL vmlinux 0x508fce92 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x5092e84e __read_overflow2_field +EXPORT_SYMBOL vmlinux 0x50944630 seq_list_start_head_rcu +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4698c fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x50ae895d edac_mc_find +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 0x50c89212 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x50cf7585 hex2bin +EXPORT_SYMBOL vmlinux 0x50d035c2 vsscanf +EXPORT_SYMBOL vmlinux 0x50ec20c9 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x50f85302 __arm_smccc_hvc +EXPORT_SYMBOL vmlinux 0x50f91491 __genradix_ptr +EXPORT_SYMBOL vmlinux 0x51000965 is_nd_pfn +EXPORT_SYMBOL vmlinux 0x5102a30b do_wait_intr_irq +EXPORT_SYMBOL vmlinux 0x511ce9e6 udp_ioctl +EXPORT_SYMBOL vmlinux 0x512eca0e zpool_register_driver +EXPORT_SYMBOL vmlinux 0x513d395b fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x51473316 __cpu_present_mask +EXPORT_SYMBOL vmlinux 0x515083bf acpi_release_mutex +EXPORT_SYMBOL vmlinux 0x5150c608 page_cache_next_miss +EXPORT_SYMBOL vmlinux 0x515818eb nobh_writepage +EXPORT_SYMBOL vmlinux 0x515f520b qman_portal_get_iperiod +EXPORT_SYMBOL vmlinux 0x51641162 opal_unlock_from_suspend +EXPORT_SYMBOL vmlinux 0x5175fb47 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x517b240c skb_queue_head +EXPORT_SYMBOL vmlinux 0x518d428e sock_gettstamp +EXPORT_SYMBOL vmlinux 0x51a341b3 rdmacg_try_charge +EXPORT_SYMBOL vmlinux 0x51a511eb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x51b40718 trace_seq_hex_dump +EXPORT_SYMBOL vmlinux 0x51d0b92a security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d92b6f scsi_device_resume +EXPORT_SYMBOL vmlinux 0x5203d176 cmd_db_ready +EXPORT_SYMBOL vmlinux 0x52305a5a pci_read_vpd_any +EXPORT_SYMBOL vmlinux 0x523bf162 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x52498853 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x5259f52a inode_set_bytes +EXPORT_SYMBOL vmlinux 0x526eef2c hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x528e5794 key_task_permission +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a2aedf __nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0x52b58fd3 devm_pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0x52beb6cf tcp_release_cb +EXPORT_SYMBOL vmlinux 0x52c26097 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x52d717da xz_dec_init +EXPORT_SYMBOL vmlinux 0x52dcb85b __traceiter_kmalloc +EXPORT_SYMBOL vmlinux 0x52e239c1 sock_edemux +EXPORT_SYMBOL vmlinux 0x52e49f53 dquot_get_state +EXPORT_SYMBOL vmlinux 0x52e4d76a rproc_report_crash +EXPORT_SYMBOL vmlinux 0x52e763c9 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x52ecbc75 crc_ccitt +EXPORT_SYMBOL vmlinux 0x52ee1d7c skb_put +EXPORT_SYMBOL vmlinux 0x52f2850a imx_sc_pm_cpu_start +EXPORT_SYMBOL vmlinux 0x52fd1fb5 fib_notifier_ops_register +EXPORT_SYMBOL vmlinux 0x53033725 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53126ecc __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x53198cf1 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x5338184f ethtool_sprintf +EXPORT_SYMBOL vmlinux 0x5343ee08 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x5367a596 mipi_dsi_dcs_set_tear_scanline +EXPORT_SYMBOL vmlinux 0x5385e68c dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x5389a744 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x538e12d9 tcp_seq_stop +EXPORT_SYMBOL vmlinux 0x53909439 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x53a5b960 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x53aee849 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x53b954a2 up_read +EXPORT_SYMBOL vmlinux 0x53c294aa pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x53e96524 blk_mq_delay_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x53eed79f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x53eff192 tegra_ivc_align +EXPORT_SYMBOL vmlinux 0x53f8ced7 page_pool_ethtool_stats_get_strings +EXPORT_SYMBOL vmlinux 0x5402da9f xudma_navss_psil_pair +EXPORT_SYMBOL vmlinux 0x540c0b6e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x540d7e90 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546337c7 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x5469b3d3 mdio_driver_unregister +EXPORT_SYMBOL vmlinux 0x54754ddb pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x548c3f38 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x54b1fac6 __ubsan_handle_load_invalid_value +EXPORT_SYMBOL vmlinux 0x54bfacc8 devm_extcon_unregister_notifier_all +EXPORT_SYMBOL vmlinux 0x54c60ba1 register_fib_notifier +EXPORT_SYMBOL vmlinux 0x54da920e scsi_remove_target +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 0x5519d539 __netif_schedule +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5521bf12 inet_pton_with_scope +EXPORT_SYMBOL vmlinux 0x552db3aa qman_query_cgr_congested +EXPORT_SYMBOL vmlinux 0x55336fbb neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x5541dd84 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x554ae3a4 irq_poll_sched +EXPORT_SYMBOL vmlinux 0x55647ffd pnp_device_attach +EXPORT_SYMBOL vmlinux 0x556b5d62 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x558b281d aes_expandkey +EXPORT_SYMBOL vmlinux 0x558d1347 input_get_poll_interval +EXPORT_SYMBOL vmlinux 0x55be469f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x55c604eb pci_free_irq +EXPORT_SYMBOL vmlinux 0x55d242c4 devm_clk_get_optional +EXPORT_SYMBOL vmlinux 0x55e31703 ethtool_convert_link_mode_to_legacy_u32 +EXPORT_SYMBOL vmlinux 0x55eb89e3 input_set_poll_interval +EXPORT_SYMBOL vmlinux 0x5604f67e scsi_device_get +EXPORT_SYMBOL vmlinux 0x56071fbd simple_link +EXPORT_SYMBOL vmlinux 0x560db7bb inet_sendpage +EXPORT_SYMBOL vmlinux 0x5614f48a qman_dqrr_get_ithresh +EXPORT_SYMBOL vmlinux 0x56160443 devm_arch_io_reserve_memtype_wc +EXPORT_SYMBOL vmlinux 0x561a8c24 keyring_search +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563bd9a2 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x563c9f8f dev_trans_start +EXPORT_SYMBOL vmlinux 0x564405cb __cpu_online_mask +EXPORT_SYMBOL vmlinux 0x56470118 __warn_printk +EXPORT_SYMBOL vmlinux 0x564f7608 acpi_reconfig_notifier_register +EXPORT_SYMBOL vmlinux 0x5658f238 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x56802ae8 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x5682b58b inode_update_time +EXPORT_SYMBOL vmlinux 0x56999a8f xp_raw_get_dma +EXPORT_SYMBOL vmlinux 0x569d93d1 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x56c3db64 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56dd7eae io_uring_get_socket +EXPORT_SYMBOL vmlinux 0x56e08593 tcp_sock_set_keepcnt +EXPORT_SYMBOL vmlinux 0x56e9033b devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x56f21652 netdev_emerg +EXPORT_SYMBOL vmlinux 0x571a346f devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x5736997e dma_resv_iter_next_unlocked +EXPORT_SYMBOL vmlinux 0x5736c8a6 tcf_block_put +EXPORT_SYMBOL vmlinux 0x57404686 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5753b1a4 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575d54eb phy_connect_direct +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57708ee4 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x5776f37e pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5780e0e0 console_start +EXPORT_SYMBOL vmlinux 0x57900416 gen_pool_fixed_alloc +EXPORT_SYMBOL vmlinux 0x57912b82 vm_map_pages_zero +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579da22f unregister_qdisc +EXPORT_SYMBOL vmlinux 0x57aea138 blk_start_plug +EXPORT_SYMBOL vmlinux 0x57bc19d2 down_write +EXPORT_SYMBOL vmlinux 0x57c615ec cpumask_any_but +EXPORT_SYMBOL vmlinux 0x57d43e2f dma_unmap_resource +EXPORT_SYMBOL vmlinux 0x57db8fd6 utf8_normalize +EXPORT_SYMBOL vmlinux 0x57e0da2b qdisc_reset +EXPORT_SYMBOL vmlinux 0x57ef5ced fman_get_mem_region +EXPORT_SYMBOL vmlinux 0x57f0c2e3 iterate_dir +EXPORT_SYMBOL vmlinux 0x57f38cdc qe_get_firmware_info +EXPORT_SYMBOL vmlinux 0x5818fe3c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582606eb xudma_rflow_put +EXPORT_SYMBOL vmlinux 0x5829ef6d netdev_features_change +EXPORT_SYMBOL vmlinux 0x582b6275 xfrm_if_unregister_cb +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583acc79 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x585ae877 nmi_panic +EXPORT_SYMBOL vmlinux 0x587b0954 kvasprintf +EXPORT_SYMBOL vmlinux 0x587b892e qe_get_num_of_risc +EXPORT_SYMBOL vmlinux 0x587f22d7 devmap_managed_key +EXPORT_SYMBOL vmlinux 0x5880ce9e dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x589180d6 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x5892d50a nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x5897f882 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x58acf24b mdiobus_register_board_info +EXPORT_SYMBOL vmlinux 0x58b4645c dev_close_many +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58d56930 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x58d8f1da blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x58da0420 mr_vif_seq_next +EXPORT_SYMBOL vmlinux 0x58da7785 netdev_set_num_tc +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e65e9f tty_name +EXPORT_SYMBOL vmlinux 0x58ffa8b3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x5925ff7b filemap_dirty_folio +EXPORT_SYMBOL vmlinux 0x592b06f1 flow_rule_alloc +EXPORT_SYMBOL vmlinux 0x5931b9c9 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5934b5a9 qman_destroy_fq +EXPORT_SYMBOL vmlinux 0x5939f5ec sock_efree +EXPORT_SYMBOL vmlinux 0x59484c99 tegra_dfll_suspend +EXPORT_SYMBOL vmlinux 0x594f6f0c fs_param_is_s32 +EXPORT_SYMBOL vmlinux 0x595367fb vfs_dedupe_file_range +EXPORT_SYMBOL vmlinux 0x59573a3b blk_finish_plug +EXPORT_SYMBOL vmlinux 0x595d8002 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x596b9e21 simple_open +EXPORT_SYMBOL vmlinux 0x59720902 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5972f545 ps2_end_command +EXPORT_SYMBOL vmlinux 0x5979ef1c netdev_update_features +EXPORT_SYMBOL vmlinux 0x5980a72c __filemap_set_wb_err +EXPORT_SYMBOL vmlinux 0x598757d9 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x599a96ba devm_free_irq +EXPORT_SYMBOL vmlinux 0x599b4888 qe_setbrg +EXPORT_SYMBOL vmlinux 0x599eb2e1 dma_supported +EXPORT_SYMBOL vmlinux 0x599fb41c kvmalloc_node +EXPORT_SYMBOL vmlinux 0x599fbdcf dma_get_sgtable_attrs +EXPORT_SYMBOL vmlinux 0x59a2f0ee packing +EXPORT_SYMBOL vmlinux 0x59b4ac3e tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x59b5cc10 bh_submit_read +EXPORT_SYMBOL vmlinux 0x59d5c65b __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x59db6b91 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0bde13 page_pool_alloc_frag +EXPORT_SYMBOL vmlinux 0x5a290250 hdmi_drm_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x5a349d28 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x5a44f8cb __crypto_memneq +EXPORT_SYMBOL vmlinux 0x5a4d313e gf128mul_4k_lle +EXPORT_SYMBOL vmlinux 0x5a53150c backlight_device_set_brightness +EXPORT_SYMBOL vmlinux 0x5a60b950 qm_channel_pool1 +EXPORT_SYMBOL vmlinux 0x5a694316 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x5a73d3fb fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5a8d0660 kernel_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a956b5b empty_zero_page +EXPORT_SYMBOL vmlinux 0x5a95c2f4 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x5a99a0d7 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ab5b390 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x5abb7959 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5ac09016 mmc_request_done +EXPORT_SYMBOL vmlinux 0x5acd3c71 flow_block_cb_setup_simple +EXPORT_SYMBOL vmlinux 0x5ae1154b __traceiter_kfree +EXPORT_SYMBOL vmlinux 0x5ae261ff tcp_time_wait +EXPORT_SYMBOL vmlinux 0x5ae8b28a generic_fadvise +EXPORT_SYMBOL vmlinux 0x5aedd475 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x5aedea3b ptp_clock_event +EXPORT_SYMBOL vmlinux 0x5b191f53 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x5b205a10 iget_locked +EXPORT_SYMBOL vmlinux 0x5b21070f tcp_enter_quickack_mode +EXPORT_SYMBOL vmlinux 0x5b228166 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5b2f27fb do_wait_intr +EXPORT_SYMBOL vmlinux 0x5b3e282f xa_store +EXPORT_SYMBOL vmlinux 0x5b472181 user_path_create +EXPORT_SYMBOL vmlinux 0x5b54903b qcom_scm_pas_mem_setup +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b66fce0 get_mem_cgroup_from_mm +EXPORT_SYMBOL vmlinux 0x5b72ccfb of_get_next_cpu_node +EXPORT_SYMBOL vmlinux 0x5b7bd3b4 make_kprojid +EXPORT_SYMBOL vmlinux 0x5b7c324e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x5b99058a generic_set_encrypted_ci_d_ops +EXPORT_SYMBOL vmlinux 0x5bb740ec input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5bd4ff88 flow_action_cookie_create +EXPORT_SYMBOL vmlinux 0x5bda1837 d_path +EXPORT_SYMBOL vmlinux 0x5bdb7603 sock_copy_user_timeval +EXPORT_SYMBOL vmlinux 0x5bdf7c7a __folio_start_writeback +EXPORT_SYMBOL vmlinux 0x5be16fb4 dma_resv_fini +EXPORT_SYMBOL vmlinux 0x5be63c5b crc32c_csum_stub +EXPORT_SYMBOL vmlinux 0x5c26a53b wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x5c3435a2 dev_set_threaded +EXPORT_SYMBOL vmlinux 0x5c3c7387 kstrtoull +EXPORT_SYMBOL vmlinux 0x5c4c1bc5 jbd2_fc_end_commit_fallback +EXPORT_SYMBOL vmlinux 0x5c4e637e locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x5c4f67ae cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x5c76c863 input_set_min_poll_interval +EXPORT_SYMBOL vmlinux 0x5c7be5a6 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x5c942d38 sk_free +EXPORT_SYMBOL vmlinux 0x5ca4800f ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5cadb775 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5ce75bab neigh_seq_start +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfb26a0 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x5d0b2801 flow_rule_match_enc_ipv6_addrs +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d33abe1 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x5d49aabc init_wait_var_entry +EXPORT_SYMBOL vmlinux 0x5d5d2c9d key_put +EXPORT_SYMBOL vmlinux 0x5d6e1d43 rpmh_write +EXPORT_SYMBOL vmlinux 0x5d75fa97 vif_device_init +EXPORT_SYMBOL vmlinux 0x5d7b2b28 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5d825437 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x5d838b8e __traceiter_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x5dac4cd6 qman_dqrr_set_ithresh +EXPORT_SYMBOL vmlinux 0x5dc9c669 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x5dcdb44a qdisc_put +EXPORT_SYMBOL vmlinux 0x5dded19c iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5de31d09 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x5e06bc5c refcount_dec_and_lock +EXPORT_SYMBOL vmlinux 0x5e0ccb9f sha1_transform +EXPORT_SYMBOL vmlinux 0x5e1b87bf jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x5e1e20d5 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x5e24b3b1 vm_map_pages +EXPORT_SYMBOL vmlinux 0x5e2b44a0 phy_attach +EXPORT_SYMBOL vmlinux 0x5e332b52 __var_waitqueue +EXPORT_SYMBOL vmlinux 0x5e373fb4 gf128mul_64k_bbe +EXPORT_SYMBOL vmlinux 0x5e3d429f inode_permission +EXPORT_SYMBOL vmlinux 0x5e57f16c security_sctp_assoc_established +EXPORT_SYMBOL vmlinux 0x5e5c9487 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5e6f91f9 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0x5e82619e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x5e855e56 gen_pool_first_fit_align +EXPORT_SYMBOL vmlinux 0x5e8c75ce vme_slave_request +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9973bb phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x5e9a01ce gen_new_estimator +EXPORT_SYMBOL vmlinux 0x5e9b7bef phy_start_aneg +EXPORT_SYMBOL vmlinux 0x5e9d1eb5 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec4aee6 put_sg_io_hdr +EXPORT_SYMBOL vmlinux 0x5ec4b6f9 dquot_initialize_needed +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed90adc int_to_scsilun +EXPORT_SYMBOL vmlinux 0x5eddf693 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x5ee5b905 path_is_under +EXPORT_SYMBOL vmlinux 0x5ee5dc36 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5ef49db8 pci_iomap +EXPORT_SYMBOL vmlinux 0x5ef6a672 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x5efccb51 twl6030_mmc_card_detect +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 0x5f18122b follow_down_one +EXPORT_SYMBOL vmlinux 0x5f2ba55e security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x5f332191 folio_unlock +EXPORT_SYMBOL vmlinux 0x5f373c49 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x5f37bc89 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5f5441c8 __ubsan_handle_alignment_assumption +EXPORT_SYMBOL vmlinux 0x5f6492bc flow_indr_dev_setup_offload +EXPORT_SYMBOL vmlinux 0x5f6b889c rproc_va_to_pa +EXPORT_SYMBOL vmlinux 0x5f6dcdc9 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x5f743edd inc_nlink +EXPORT_SYMBOL vmlinux 0x5f866986 module_refcount +EXPORT_SYMBOL vmlinux 0x5f93525c acpi_extract_package +EXPORT_SYMBOL vmlinux 0x5fade863 drop_nlink +EXPORT_SYMBOL vmlinux 0x5fb309fa input_close_device +EXPORT_SYMBOL vmlinux 0x5fc1011f fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x5fc72f0e alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x5fdbcc7b shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x5fe3b0fb dcb_ieee_getapp_default_prio_mask +EXPORT_SYMBOL vmlinux 0x5fe82c9f udp_seq_stop +EXPORT_SYMBOL vmlinux 0x5ff9eb0e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6008689f kthread_complete_and_exit +EXPORT_SYMBOL vmlinux 0x60155b49 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605790dc fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x608741b5 __init_swait_queue_head +EXPORT_SYMBOL vmlinux 0x6088b342 inet_listen +EXPORT_SYMBOL vmlinux 0x608d0267 zstd_get_error_code +EXPORT_SYMBOL vmlinux 0x6091b333 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x609bcd98 in6_pton +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60aaeb4b qman_p_irqsource_add +EXPORT_SYMBOL vmlinux 0x60b3071f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x60d8ab30 vme_lm_get +EXPORT_SYMBOL vmlinux 0x60da0f5f pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x60e4413f cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x61073e4a acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x611052b6 param_set_charp +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61347034 mb_cache_entry_delete_or_get +EXPORT_SYMBOL vmlinux 0x61360647 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x613b5d33 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x613da88c ilookup5 +EXPORT_SYMBOL vmlinux 0x6140c6c4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x615911d7 __bitmap_set +EXPORT_SYMBOL vmlinux 0x61670a1a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x617c452b queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x617db6d7 dma_free_attrs +EXPORT_SYMBOL vmlinux 0x61815c10 rpmh_write_batch +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 0x619eb242 mount_nodev +EXPORT_SYMBOL vmlinux 0x61a6024e pcie_ptm_enabled +EXPORT_SYMBOL vmlinux 0x61a7c96e file_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c984ef pcie_get_width_cap +EXPORT_SYMBOL vmlinux 0x61d7dabe skb_clone +EXPORT_SYMBOL vmlinux 0x61db47ab seq_file_path +EXPORT_SYMBOL vmlinux 0x61e272c9 sha256_final +EXPORT_SYMBOL vmlinux 0x61e69441 tcp_prot +EXPORT_SYMBOL vmlinux 0x61ea189b fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x61eb4fab config_item_put +EXPORT_SYMBOL vmlinux 0x61ef6b5a follow_down +EXPORT_SYMBOL vmlinux 0x61f69bae nd_device_register +EXPORT_SYMBOL vmlinux 0x61fe4c31 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621f7a98 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x624aa681 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x624cd068 tty_kref_put +EXPORT_SYMBOL vmlinux 0x624fab2f _dev_info +EXPORT_SYMBOL vmlinux 0x62512c60 __register_binfmt +EXPORT_SYMBOL vmlinux 0x625709a4 devm_extcon_register_notifier +EXPORT_SYMBOL vmlinux 0x6272fd07 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62746d5c posix_test_lock +EXPORT_SYMBOL vmlinux 0x627af100 netdev_lower_state_changed +EXPORT_SYMBOL vmlinux 0x62805726 phy_write_mmd +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6288b110 get_bitmap_from_slot +EXPORT_SYMBOL vmlinux 0x629011fc simple_rmdir +EXPORT_SYMBOL vmlinux 0x629079b3 dma_fence_signal_timestamp +EXPORT_SYMBOL vmlinux 0x62949074 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x62aadcb8 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x62adeeb1 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x62b53028 bdev_end_io_acct +EXPORT_SYMBOL vmlinux 0x62bc8e04 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x62bd8936 _copy_to_iter +EXPORT_SYMBOL vmlinux 0x62d96443 qman_dma_portal +EXPORT_SYMBOL vmlinux 0x62f7e207 down_read_killable +EXPORT_SYMBOL vmlinux 0x6309f739 mpage_writepages +EXPORT_SYMBOL vmlinux 0x630c60ca param_ops_string +EXPORT_SYMBOL vmlinux 0x6315c42c zstd_get_params +EXPORT_SYMBOL vmlinux 0x63185ae4 flow_rule_match_enc_ipv4_addrs +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631d06aa cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x631f0d93 iov_iter_init +EXPORT_SYMBOL vmlinux 0x63233d02 write_cache_pages +EXPORT_SYMBOL vmlinux 0x632c615e get_cached_acl +EXPORT_SYMBOL vmlinux 0x6342bc23 d_instantiate_new +EXPORT_SYMBOL vmlinux 0x6361bea2 of_device_unregister +EXPORT_SYMBOL vmlinux 0x6371b0a0 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x637892d6 __module_put_and_kthread_exit +EXPORT_SYMBOL vmlinux 0x638158ea mipi_dsi_compression_mode +EXPORT_SYMBOL vmlinux 0x63931281 tcf_exts_terse_dump +EXPORT_SYMBOL vmlinux 0x6394becd ip6_frag_next +EXPORT_SYMBOL vmlinux 0x6396c479 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x639c55d4 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x639cbf75 dquot_transfer +EXPORT_SYMBOL vmlinux 0x63a58370 flow_action_cookie_destroy +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b9ff57 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x63bf0ae1 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x63c191f7 __sock_create +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c804b6 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x63ced8ad skb_flow_get_icmp_tci +EXPORT_SYMBOL vmlinux 0x63da053c i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x63e6f070 pcim_set_mwi +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f81f95 md_reload_sb +EXPORT_SYMBOL vmlinux 0x63fcb621 vfs_mkobj +EXPORT_SYMBOL vmlinux 0x63fda363 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64193f5f dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x642a5bfc page_cache_prev_miss +EXPORT_SYMBOL vmlinux 0x642eb5c6 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x643f3068 __tracepoint_spi_transfer_stop +EXPORT_SYMBOL vmlinux 0x64456996 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x646099c6 skb_flow_dissect_meta +EXPORT_SYMBOL vmlinux 0x6462dd39 bdev_start_io_acct +EXPORT_SYMBOL vmlinux 0x646b3bf6 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x646d041a simple_dir_operations +EXPORT_SYMBOL vmlinux 0x646e20df cpumask_any_and_distribute +EXPORT_SYMBOL vmlinux 0x6472d9c4 pcie_relaxed_ordering_enabled +EXPORT_SYMBOL vmlinux 0x647316c7 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x6476fb42 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x6481ffe0 hsiphash_1u32 +EXPORT_SYMBOL vmlinux 0x648eb59d gc_inflight_list +EXPORT_SYMBOL vmlinux 0x64a2833f is_free_buddy_page +EXPORT_SYMBOL vmlinux 0x64a9c928 default_blu +EXPORT_SYMBOL vmlinux 0x64b403ec ptp_find_pin_unlocked +EXPORT_SYMBOL vmlinux 0x64b8291f update_region +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64eabb7a pci_scan_root_bus_bridge +EXPORT_SYMBOL vmlinux 0x64ec2c7f of_parse_phandle_with_args_map +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65146a13 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x6514c1e6 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652032cb mac_pton +EXPORT_SYMBOL vmlinux 0x652703f9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653c3dd7 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6540b03c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x654449c3 memset16 +EXPORT_SYMBOL vmlinux 0x65479fd2 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x654d549c genphy_read_mmd_unsupported +EXPORT_SYMBOL vmlinux 0x6555ae4a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x655a6881 fman_set_mac_active_pause +EXPORT_SYMBOL vmlinux 0x655fd148 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x656dc654 mr_dump +EXPORT_SYMBOL vmlinux 0x656e4a6e snprintf +EXPORT_SYMBOL vmlinux 0x658b0dfd device_add_disk +EXPORT_SYMBOL vmlinux 0x658ce1a8 xxh64_reset +EXPORT_SYMBOL vmlinux 0x658d5566 __hw_addr_ref_sync_dev +EXPORT_SYMBOL vmlinux 0x659ded26 xfrm_flush_gc +EXPORT_SYMBOL vmlinux 0x65a13802 inet_frags_init +EXPORT_SYMBOL vmlinux 0x65a3737f fget +EXPORT_SYMBOL vmlinux 0x65a3bde4 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x65b6ded3 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x65c48c7c dev_set_alias +EXPORT_SYMBOL vmlinux 0x65d1bab2 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x65d305d7 mdiobus_write +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65db2112 bio_free_pages +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e37e90 icmp_ndo_send +EXPORT_SYMBOL vmlinux 0x65e75835 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x66001b57 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x660609e7 dma_resv_init +EXPORT_SYMBOL vmlinux 0x6609b007 fs_context_for_submount +EXPORT_SYMBOL vmlinux 0x660e32ae generic_perform_write +EXPORT_SYMBOL vmlinux 0x6626afca down +EXPORT_SYMBOL vmlinux 0x6631ae31 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x664b1e29 qman_delete_cgr +EXPORT_SYMBOL vmlinux 0x665ae33b vfs_iter_read +EXPORT_SYMBOL vmlinux 0x665e2513 zstd_max_clevel +EXPORT_SYMBOL vmlinux 0x66628bf3 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x666863dc par_io_config_pin +EXPORT_SYMBOL vmlinux 0x6673f96d xxh32_reset +EXPORT_SYMBOL vmlinux 0x667c1487 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x66826f5a xudma_get_ringacc +EXPORT_SYMBOL vmlinux 0x668b19a1 down_read +EXPORT_SYMBOL vmlinux 0x669c978a kobject_set_name +EXPORT_SYMBOL vmlinux 0x66af1fd1 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x66b4cc41 kmemdup +EXPORT_SYMBOL vmlinux 0x66c45083 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x66c94d2f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x66cb1517 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x66dd779d sock_sendmsg +EXPORT_SYMBOL vmlinux 0x66f81856 netif_set_tso_max_size +EXPORT_SYMBOL vmlinux 0x6713d74b fifo_set_limit +EXPORT_SYMBOL vmlinux 0x67150a1e md_update_sb +EXPORT_SYMBOL vmlinux 0x6719f9ae d_lookup +EXPORT_SYMBOL vmlinux 0x6721fc7c security_cred_getsecid +EXPORT_SYMBOL vmlinux 0x672d45b6 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x6738a43f uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x67412d2f ucc_slow_enable +EXPORT_SYMBOL vmlinux 0x6749d53f hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x678b96ec dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x678c62eb cpu_all_bits +EXPORT_SYMBOL vmlinux 0x679325d9 bpf_link_put +EXPORT_SYMBOL vmlinux 0x67a3701b xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x67a520a2 mmc_cqe_start_req +EXPORT_SYMBOL vmlinux 0x67b193ba dcache_dir_open +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b6e8bd neigh_xmit +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67be1611 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x67c0a300 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x67c13ea0 acpi_read +EXPORT_SYMBOL vmlinux 0x6806b6ca end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x681815e6 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x681d8b10 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x681f61ca locks_delete_block +EXPORT_SYMBOL vmlinux 0x682a636e mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x682c6836 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x683816e1 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x6851a1b5 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688b132d sock_no_sendmsg_locked +EXPORT_SYMBOL vmlinux 0x68d14c69 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x69049cd2 radix_tree_replace_slot +EXPORT_SYMBOL vmlinux 0x690b9056 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x69135156 release_pages +EXPORT_SYMBOL vmlinux 0x6914260d config_group_init +EXPORT_SYMBOL vmlinux 0x6917a77e __traceiter_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x69377f64 con_is_visible +EXPORT_SYMBOL vmlinux 0x6943a432 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x6944888c md_finish_reshape +EXPORT_SYMBOL vmlinux 0x6950822e blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x6953065e gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x69585523 __ksize +EXPORT_SYMBOL vmlinux 0x69668826 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x69700013 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6976398e pci_find_bus +EXPORT_SYMBOL vmlinux 0x697ed5f0 memcpy_and_pad +EXPORT_SYMBOL vmlinux 0x69942cbb __folio_alloc +EXPORT_SYMBOL vmlinux 0x69a2cdef dma_map_page_attrs +EXPORT_SYMBOL vmlinux 0x69adf82e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x69c57765 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x69d1519e of_phy_find_device +EXPORT_SYMBOL vmlinux 0x69d53cbc posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x69dd3b5b crc32_le +EXPORT_SYMBOL vmlinux 0x69de8757 vme_check_window +EXPORT_SYMBOL vmlinux 0x6a016b0f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x6a03751f sgl_free_order +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a07f706 kernel_connect +EXPORT_SYMBOL vmlinux 0x6a0f01a1 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x6a108c91 udp_seq_next +EXPORT_SYMBOL vmlinux 0x6a10a29e md_check_recovery +EXPORT_SYMBOL vmlinux 0x6a152422 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x6a164357 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x6a18ad52 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x6a3766b2 qman_delete_cgr_safe +EXPORT_SYMBOL vmlinux 0x6a449c4f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x6a46c3cb lookup_one_positive_unlocked +EXPORT_SYMBOL vmlinux 0x6a4d1aa5 migrate_vma_finalize +EXPORT_SYMBOL vmlinux 0x6a5b2a64 devm_clk_put +EXPORT_SYMBOL vmlinux 0x6a5cb5ee __get_free_pages +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a67b7b4 tegra_ivc_notified +EXPORT_SYMBOL vmlinux 0x6a6e05bf kstrtou8 +EXPORT_SYMBOL vmlinux 0x6a71c0e3 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x6a90663a qman_schedule_fq +EXPORT_SYMBOL vmlinux 0x6a96fc5d sk_stop_timer +EXPORT_SYMBOL vmlinux 0x6aa11aa6 sgl_free_n_order +EXPORT_SYMBOL vmlinux 0x6abd5f23 lru_cache_add +EXPORT_SYMBOL vmlinux 0x6aca3414 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6acd6fa6 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x6ad50db1 inet_offloads +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b0a3674 pci_request_region +EXPORT_SYMBOL vmlinux 0x6b0e8284 rproc_boot +EXPORT_SYMBOL vmlinux 0x6b27729b radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x6b294053 fman_get_qman_channel_id +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b36891d jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x6b453342 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x6b4b2933 __ioremap +EXPORT_SYMBOL vmlinux 0x6b55acd0 rtnl_lock_killable +EXPORT_SYMBOL vmlinux 0x6b570386 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6b6edbcd blk_mq_tagset_busy_iter +EXPORT_SYMBOL vmlinux 0x6b803508 rproc_alloc +EXPORT_SYMBOL vmlinux 0x6b853d06 ns_to_kernel_old_timeval +EXPORT_SYMBOL vmlinux 0x6b8bf149 netif_receive_skb_list +EXPORT_SYMBOL vmlinux 0x6b98de17 tcf_idr_create_from_flags +EXPORT_SYMBOL vmlinux 0x6ba370b7 rt_dst_alloc +EXPORT_SYMBOL vmlinux 0x6bab91ff __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6bc269d7 set_disk_ro +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd0e573 down_interruptible +EXPORT_SYMBOL vmlinux 0x6be1c1f8 acpi_install_method +EXPORT_SYMBOL vmlinux 0x6beb9ceb pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6bf181c1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x6bfed666 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x6c224cda gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x6c257ac0 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x6c3705aa pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6c4d918f ps2_drain +EXPORT_SYMBOL vmlinux 0x6c4d9c1a udp_read_sock +EXPORT_SYMBOL vmlinux 0x6c5dae23 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6c5f22a0 ll_rw_block +EXPORT_SYMBOL vmlinux 0x6c619c12 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7a0323 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x6c7a68ea jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6c7cbb97 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x6c8cc9e9 ihold +EXPORT_SYMBOL vmlinux 0x6ca75982 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x6cac802c param_set_invbool +EXPORT_SYMBOL vmlinux 0x6cb2aee2 param_get_bool +EXPORT_SYMBOL vmlinux 0x6cb46525 netlbl_catmap_walk +EXPORT_SYMBOL vmlinux 0x6cb77e8b __hw_addr_ref_unsync_dev +EXPORT_SYMBOL vmlinux 0x6cbbfc54 __arch_copy_to_user +EXPORT_SYMBOL vmlinux 0x6cc92012 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6ccb90a5 devm_clk_get +EXPORT_SYMBOL vmlinux 0x6cd08d22 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x6ce427df fman_set_mac_max_frame +EXPORT_SYMBOL vmlinux 0x6ce64b25 set_user_nice +EXPORT_SYMBOL vmlinux 0x6ceea444 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x6cf0d67d qe_get_num_of_snums +EXPORT_SYMBOL vmlinux 0x6cf2b75d __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6cfefa42 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x6d0d490f crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x6d16c104 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6d1b148f block_write_begin +EXPORT_SYMBOL vmlinux 0x6d25b6e2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5f5b91 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x6d6115f0 set_anon_super_fc +EXPORT_SYMBOL vmlinux 0x6d73c95f logic_outw +EXPORT_SYMBOL vmlinux 0x6d7c7dcc bitmap_cut +EXPORT_SYMBOL vmlinux 0x6d81b3db bpf_prog_get_type_path +EXPORT_SYMBOL vmlinux 0x6d8969cd phy_read_paged +EXPORT_SYMBOL vmlinux 0x6da329e8 scsi_alloc_sgtables +EXPORT_SYMBOL vmlinux 0x6da467cb pfn_is_map_memory +EXPORT_SYMBOL vmlinux 0x6dace5a2 vme_register_driver +EXPORT_SYMBOL vmlinux 0x6daf6196 sg_alloc_table_from_pages_segment +EXPORT_SYMBOL vmlinux 0x6db08ac4 qdisc_hash_del +EXPORT_SYMBOL vmlinux 0x6db48c31 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x6dba9051 xz_dec_microlzma_end +EXPORT_SYMBOL vmlinux 0x6dbbd0ab twl6040_get_vibralr_status +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 0x6dedf7d3 __phy_write_mmd +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfc02ff xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x6e1e1ccc pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x6e287664 mdio_device_remove +EXPORT_SYMBOL vmlinux 0x6e2a5991 nf_log_unset +EXPORT_SYMBOL vmlinux 0x6e2e1bab neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x6e3732b5 rproc_get_by_phandle +EXPORT_SYMBOL vmlinux 0x6e493925 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x6e57d033 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x6e5b8651 xz_dec_run +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e92c617 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9f70bd cdrom_open +EXPORT_SYMBOL vmlinux 0x6ea1a2c7 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x6ea274c7 unregister_console +EXPORT_SYMBOL vmlinux 0x6ea52b96 nexthop_bucket_set_hw_flags +EXPORT_SYMBOL vmlinux 0x6ea9363b force_sig +EXPORT_SYMBOL vmlinux 0x6eb00758 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6ebf0c69 softnet_data +EXPORT_SYMBOL vmlinux 0x6ec005dc md_bitmap_free +EXPORT_SYMBOL vmlinux 0x6eead583 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x6ef87c4d mark_buffer_write_io_error +EXPORT_SYMBOL vmlinux 0x6eff390e textsearch_destroy +EXPORT_SYMBOL vmlinux 0x6f132e7f phy_register_fixup +EXPORT_SYMBOL vmlinux 0x6f1c5c2a netif_device_detach +EXPORT_SYMBOL vmlinux 0x6f41a428 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x6f4a59e4 sort_r +EXPORT_SYMBOL vmlinux 0x6f5ab52f acpi_get_local_address +EXPORT_SYMBOL vmlinux 0x6f6c9dee simple_transaction_release +EXPORT_SYMBOL vmlinux 0x6f791d60 netdev_sk_get_lowest_dev +EXPORT_SYMBOL vmlinux 0x6f8e8126 max8998_update_reg +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 0x6fc48021 dynamic_cond_resched +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd2798d dev_addr_del +EXPORT_SYMBOL vmlinux 0x6fd9c35a __clzdi2 +EXPORT_SYMBOL vmlinux 0x6ff3a485 dynamic_might_resched +EXPORT_SYMBOL vmlinux 0x6fff261f __arch_clear_user +EXPORT_SYMBOL vmlinux 0x70002fe8 siphash_1u32 +EXPORT_SYMBOL vmlinux 0x700237f1 kobject_add +EXPORT_SYMBOL vmlinux 0x70088657 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x700ed932 remove_watch_from_object +EXPORT_SYMBOL vmlinux 0x700f0250 __neigh_create +EXPORT_SYMBOL vmlinux 0x70119fb6 ping_prot +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x702946da ucs2_strlen +EXPORT_SYMBOL vmlinux 0x704e563a begin_new_exec +EXPORT_SYMBOL vmlinux 0x70504b5b udp_disconnect +EXPORT_SYMBOL vmlinux 0x705671b0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x706ad5f9 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x70772f0c mipi_dsi_turn_on_peripheral +EXPORT_SYMBOL vmlinux 0x708443d7 simple_lookup +EXPORT_SYMBOL vmlinux 0x708deb4a ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x70a13d42 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x70a4d3f1 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x70a61b04 inode_to_bdi +EXPORT_SYMBOL vmlinux 0x70a726f3 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x70ad75fb radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x70b174eb blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x70b8fdc8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x70d1a18e qman_release_pool +EXPORT_SYMBOL vmlinux 0x70df4b56 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x70e186f5 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x70e71703 compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x70f40f57 simple_get_link +EXPORT_SYMBOL vmlinux 0x70f81494 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x7103f8c9 of_device_alloc +EXPORT_SYMBOL vmlinux 0x71153818 tso_start +EXPORT_SYMBOL vmlinux 0x71180fe3 md_handle_request +EXPORT_SYMBOL vmlinux 0x7125a4f3 flow_rule_match_mpls +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7131c07d dev_driver_string +EXPORT_SYMBOL vmlinux 0x7141b88a logic_insb +EXPORT_SYMBOL vmlinux 0x714e0b6f reuseport_select_sock +EXPORT_SYMBOL vmlinux 0x715098d1 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x715a5ed0 vprintk +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717bf78e inet_frag_reasm_prepare +EXPORT_SYMBOL vmlinux 0x717cf2cd of_graph_get_remote_endpoint +EXPORT_SYMBOL vmlinux 0x7191a26c register_framebuffer +EXPORT_SYMBOL vmlinux 0x71991937 locks_init_lock +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71cc933c devm_ioremap_np +EXPORT_SYMBOL vmlinux 0x71d6cd75 genphy_read_abilities +EXPORT_SYMBOL vmlinux 0x71dfc095 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x71fb5072 __nla_reserve +EXPORT_SYMBOL vmlinux 0x720a27a7 __register_blkdev +EXPORT_SYMBOL vmlinux 0x722ec276 block_invalidate_folio +EXPORT_SYMBOL vmlinux 0x725753df unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x726bc3c7 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x726c322e netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x726dd501 _dev_err +EXPORT_SYMBOL vmlinux 0x727124cf pci_set_mwi +EXPORT_SYMBOL vmlinux 0x72778db8 vme_dma_request +EXPORT_SYMBOL vmlinux 0x727de424 mem_section +EXPORT_SYMBOL vmlinux 0x7281f95d put_cmsg_scm_timestamping64 +EXPORT_SYMBOL vmlinux 0x72a50966 ucc_fast_disable +EXPORT_SYMBOL vmlinux 0x72b9d287 default_grn +EXPORT_SYMBOL vmlinux 0x72bc39a8 nla_put_64bit +EXPORT_SYMBOL vmlinux 0x72bdbe17 __dev_direct_xmit +EXPORT_SYMBOL vmlinux 0x72bf0ecf uart_get_divisor +EXPORT_SYMBOL vmlinux 0x72e1bc0a md_error +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee29a7 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x72f14ff7 acpi_get_object_info +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 0x734eebe1 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x735b5dd6 tegra_ivc_read_get_next_frame +EXPORT_SYMBOL vmlinux 0x735e6a81 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x737bd7c6 unlock_rename +EXPORT_SYMBOL vmlinux 0x7380dffa argv_split +EXPORT_SYMBOL vmlinux 0x73840447 set_blocksize +EXPORT_SYMBOL vmlinux 0x73998efa cpm_muram_free_addr +EXPORT_SYMBOL vmlinux 0x739fd00f __SCK__tp_func_module_get +EXPORT_SYMBOL vmlinux 0x73a0a135 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x73abb180 alloc_contig_range +EXPORT_SYMBOL vmlinux 0x73cb23e1 dquot_initialize +EXPORT_SYMBOL vmlinux 0x73da0da8 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x73dc8298 folio_wait_bit_killable +EXPORT_SYMBOL vmlinux 0x73e6b88c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x73f1a88a pin_user_pages +EXPORT_SYMBOL vmlinux 0x73f769d6 nf_log_set +EXPORT_SYMBOL vmlinux 0x73feecf6 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7412ed5b kvfree_sensitive +EXPORT_SYMBOL vmlinux 0x7419ea96 param_set_bool +EXPORT_SYMBOL vmlinux 0x741eb420 kern_unmount_array +EXPORT_SYMBOL vmlinux 0x741f7d50 __traceiter_module_get +EXPORT_SYMBOL vmlinux 0x742578a5 wait_for_random_bytes +EXPORT_SYMBOL vmlinux 0x7429e20c kstrtos8 +EXPORT_SYMBOL vmlinux 0x74317bdd xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x743f4126 keygen_port_hashing_init +EXPORT_SYMBOL vmlinux 0x744d2118 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x7453d3e8 security_release_secctx +EXPORT_SYMBOL vmlinux 0x7462d4f2 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x746dda5f register_mii_tstamp_controller +EXPORT_SYMBOL vmlinux 0x74754435 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x74795115 dev_mc_del +EXPORT_SYMBOL vmlinux 0x7483dc59 pci_dev_present +EXPORT_SYMBOL vmlinux 0x749d7ae5 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x74abbaea try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x74b8e674 slhc_toss +EXPORT_SYMBOL vmlinux 0x74b92abf vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d858a7 on_each_cpu_cond_mask +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ea1b67 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x74f591d4 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x74fa7696 unregister_fib_notifier +EXPORT_SYMBOL vmlinux 0x753c44b1 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x753c9210 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x754d0e6f dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x755f4ba3 blake2s_compress_generic +EXPORT_SYMBOL vmlinux 0x7580e229 ppp_input +EXPORT_SYMBOL vmlinux 0x75871f5e acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x75a2430b security_sctp_sk_clone +EXPORT_SYMBOL vmlinux 0x75a952d4 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x75b452f8 dget_parent +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c5245b __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x75cc9580 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x75d0deb9 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x75d499dd vmcore_add_device_dump +EXPORT_SYMBOL vmlinux 0x75e6ae1b mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x75e6fcf4 input_open_device +EXPORT_SYMBOL vmlinux 0x75fad5ef phy_write_paged +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760ff982 inode_init_always +EXPORT_SYMBOL vmlinux 0x761634ac __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7618af39 hdmi_infoframe_check +EXPORT_SYMBOL vmlinux 0x7624249e dim_park_tired +EXPORT_SYMBOL vmlinux 0x763a44f0 phy_ethtool_get_sset_count +EXPORT_SYMBOL vmlinux 0x763c2cad dquot_acquire +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764ae3a4 dev_pm_opp_unregister_notifier +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x766a0927 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x7674ec4a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x76797f5b rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7679852b forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x7682ba4e __copy_overflow +EXPORT_SYMBOL vmlinux 0x769f6e64 errseq_check +EXPORT_SYMBOL vmlinux 0x76ae3e51 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x76b97f1f ww_mutex_trylock +EXPORT_SYMBOL vmlinux 0x76b99999 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x76bc82a6 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x76cab192 filemap_fdatawrite_wbc +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x770940bc simple_empty +EXPORT_SYMBOL vmlinux 0x770e0fe1 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x771103a2 audit_log_start +EXPORT_SYMBOL vmlinux 0x7732159c free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x77358855 iomem_resource +EXPORT_SYMBOL vmlinux 0x77371e55 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x774acb16 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x774cd9e4 eth_header_cache +EXPORT_SYMBOL vmlinux 0x775cb072 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7765ed82 dev_mc_add +EXPORT_SYMBOL vmlinux 0x776bf635 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x777a47ff override_creds +EXPORT_SYMBOL vmlinux 0x778375c1 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779d6b07 reuseport_has_conns_set +EXPORT_SYMBOL vmlinux 0x779e7ef2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x77a45424 neigh_lookup +EXPORT_SYMBOL vmlinux 0x77a615ba vm_node_stat +EXPORT_SYMBOL vmlinux 0x77a6a182 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x77a73042 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x77a8bd5d kern_unmount +EXPORT_SYMBOL vmlinux 0x77b8304f jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x77bae196 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bf4b54 nf_log_trace +EXPORT_SYMBOL vmlinux 0x77ca5865 __zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x77e9eb37 aes_encrypt +EXPORT_SYMBOL vmlinux 0x77fdb041 vfs_iocb_iter_read +EXPORT_SYMBOL vmlinux 0x7800ec60 configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x7807f0f8 schedule_timeout_idle +EXPORT_SYMBOL vmlinux 0x783fc9a5 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7849c746 write_inode_now +EXPORT_SYMBOL vmlinux 0x784bbf23 skb_eth_pop +EXPORT_SYMBOL vmlinux 0x7856d238 has_capability +EXPORT_SYMBOL vmlinux 0x785fdf75 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x78739d0c ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78861d69 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x7890dd12 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x789236b0 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x78a16f48 aes_decrypt +EXPORT_SYMBOL vmlinux 0x78a51617 clkdev_drop +EXPORT_SYMBOL vmlinux 0x78adc259 input_set_max_poll_interval +EXPORT_SYMBOL vmlinux 0x78b887ed vsprintf +EXPORT_SYMBOL vmlinux 0x78c5d299 ip_defrag +EXPORT_SYMBOL vmlinux 0x78c829c9 tcf_get_next_proto +EXPORT_SYMBOL vmlinux 0x78ddad06 tcp_close +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ed1fa2 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x78f67126 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x78f92e0e mmc_get_card +EXPORT_SYMBOL vmlinux 0x78fcd4a1 sock_no_sendpage_locked +EXPORT_SYMBOL vmlinux 0x791c63e9 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x791ec380 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x792bcdd5 migrate_page_states +EXPORT_SYMBOL vmlinux 0x7935dde9 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x7937103c xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x794012b1 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x79635721 flow_rule_match_ports +EXPORT_SYMBOL vmlinux 0x797115a8 fuse_mount_destroy +EXPORT_SYMBOL vmlinux 0x7971ef78 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x79732956 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x797fac59 netdev_port_same_parent_id +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x798ccb32 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x7a0812db tcf_qevent_init +EXPORT_SYMBOL vmlinux 0x7a09a064 seg6_hmac_compute +EXPORT_SYMBOL vmlinux 0x7a156104 phy_attached_print +EXPORT_SYMBOL vmlinux 0x7a1bcd59 gf128mul_x8_ble +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2ff57e security_current_getsecid_subj +EXPORT_SYMBOL vmlinux 0x7a343452 d_tmpfile +EXPORT_SYMBOL vmlinux 0x7a3f2a10 rproc_add +EXPORT_SYMBOL vmlinux 0x7a53a06d flow_indr_dev_exists +EXPORT_SYMBOL vmlinux 0x7a5e7ebd scsi_remove_device +EXPORT_SYMBOL vmlinux 0x7a650bf2 page_pool_get_stats +EXPORT_SYMBOL vmlinux 0x7a6d4123 __of_get_address +EXPORT_SYMBOL vmlinux 0x7a84e665 dma_resv_add_fence +EXPORT_SYMBOL vmlinux 0x7a87f7c8 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a968137 ucc_slow_restart_tx +EXPORT_SYMBOL vmlinux 0x7a9d0a36 skb_find_text +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4754c of_graph_is_present +EXPORT_SYMBOL vmlinux 0x7aaac5b6 proto_register +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abc857c param_get_hexint +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adc0fbf rb_replace_node_rcu +EXPORT_SYMBOL vmlinux 0x7ae5d317 qe_get_snum +EXPORT_SYMBOL vmlinux 0x7b06b514 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x7b0a7592 vme_bus_num +EXPORT_SYMBOL vmlinux 0x7b24f024 tc_setup_cb_call +EXPORT_SYMBOL vmlinux 0x7b2ee3e0 amba_request_regions +EXPORT_SYMBOL vmlinux 0x7b35570d ip_sock_set_recverr +EXPORT_SYMBOL vmlinux 0x7b37d4a7 _find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x7b4873d4 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x7b4da6ff __init_rwsem +EXPORT_SYMBOL vmlinux 0x7b5b8f31 sha256_update +EXPORT_SYMBOL vmlinux 0x7b600dfe inet6_release +EXPORT_SYMBOL vmlinux 0x7b63a999 proc_create +EXPORT_SYMBOL vmlinux 0x7b6ba85c simple_statfs +EXPORT_SYMBOL vmlinux 0x7b6d365d user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7b7610d4 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x7b82b9a1 idr_replace +EXPORT_SYMBOL vmlinux 0x7b836740 __sk_mem_raise_allocated +EXPORT_SYMBOL vmlinux 0x7b872081 seg6_push_hmac +EXPORT_SYMBOL vmlinux 0x7ba5a3b4 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0x7ba8f566 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7bb50b88 acpi_write +EXPORT_SYMBOL vmlinux 0x7bb58eac nd_btt_probe +EXPORT_SYMBOL vmlinux 0x7bbccd05 nr_node_ids +EXPORT_SYMBOL vmlinux 0x7bcf00b1 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x7becfcc4 padata_alloc_shell +EXPORT_SYMBOL vmlinux 0x7c0ed94e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2430d0 fs_param_is_u32 +EXPORT_SYMBOL vmlinux 0x7c3b37d4 rproc_of_resm_mem_entry_init +EXPORT_SYMBOL vmlinux 0x7c41b4f9 netlink_unicast +EXPORT_SYMBOL vmlinux 0x7c459513 nla_append +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c87576c sock_bindtoindex +EXPORT_SYMBOL vmlinux 0x7c9ca58f __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x7cac5254 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x7cdb8b88 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce58981 kvrealloc +EXPORT_SYMBOL vmlinux 0x7cebdc49 regset_get +EXPORT_SYMBOL vmlinux 0x7cf0ec72 tty_vhangup +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 0x7d104326 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x7d128be0 simple_write_begin +EXPORT_SYMBOL vmlinux 0x7d12d76d acpi_get_parent +EXPORT_SYMBOL vmlinux 0x7d390803 md_bitmap_unplug +EXPORT_SYMBOL vmlinux 0x7d4b176a netlbl_catmap_setbit +EXPORT_SYMBOL vmlinux 0x7d5e1008 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x7d74d522 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x7d85c6bd pci_get_class +EXPORT_SYMBOL vmlinux 0x7d9c656d pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7dacbfe7 submit_bio_noacct +EXPORT_SYMBOL vmlinux 0x7daece67 quota_send_warning +EXPORT_SYMBOL vmlinux 0x7dbf97de dev_get_mac_address +EXPORT_SYMBOL vmlinux 0x7dc5ffa7 tc_skb_ext_tc_disable +EXPORT_SYMBOL vmlinux 0x7dc86fa3 inet_add_offload +EXPORT_SYMBOL vmlinux 0x7dca8dd4 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7dcf4135 __xa_insert +EXPORT_SYMBOL vmlinux 0x7de524ae eth_gro_complete +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5e5bc mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x7e0a1f86 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7e3191f6 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x7e33d111 block_commit_write +EXPORT_SYMBOL vmlinux 0x7e36e6e4 dma_map_resource +EXPORT_SYMBOL vmlinux 0x7e3d704a uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x7e4ffb4c __fput_sync +EXPORT_SYMBOL vmlinux 0x7e5055a4 skb_copy +EXPORT_SYMBOL vmlinux 0x7e574e23 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x7e6f6658 param_set_copystring +EXPORT_SYMBOL vmlinux 0x7e7132cf touch_atime +EXPORT_SYMBOL vmlinux 0x7e767d31 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7e7af419 tcf_chain_put_by_act +EXPORT_SYMBOL vmlinux 0x7e91525b phy_support_asym_pause +EXPORT_SYMBOL vmlinux 0x7e941bdc pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x7eb5e267 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x7ecb1364 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x7ed094c1 km_query +EXPORT_SYMBOL vmlinux 0x7edfa5b6 md_bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x7edfc95c devm_clk_release_clkdev +EXPORT_SYMBOL vmlinux 0x7eff875a flush_dcache_folio +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03b6a9 crc_ccitt_table +EXPORT_SYMBOL vmlinux 0x7f1b9b24 of_node_get +EXPORT_SYMBOL vmlinux 0x7f1da071 of_mdiobus_child_is_phy +EXPORT_SYMBOL vmlinux 0x7f24b041 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2c7b43 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x7f2d4d17 jbd2_fc_get_buf +EXPORT_SYMBOL vmlinux 0x7f345c33 module_put +EXPORT_SYMBOL vmlinux 0x7f38a858 folio_wait_private_2_killable +EXPORT_SYMBOL vmlinux 0x7f4180a9 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x7f4da437 pci_write_config_dword +EXPORT_SYMBOL vmlinux 0x7f52071a net_dim +EXPORT_SYMBOL vmlinux 0x7f5b4fe4 sg_free_table +EXPORT_SYMBOL vmlinux 0x7f664b9a nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x7f740aa8 nla_reserve +EXPORT_SYMBOL vmlinux 0x7f775920 __cpuhp_setup_state +EXPORT_SYMBOL vmlinux 0x7f7f7bb4 irq_poll_disable +EXPORT_SYMBOL vmlinux 0x7f93c66c sock_wmalloc +EXPORT_SYMBOL vmlinux 0x7fbd7724 napi_disable +EXPORT_SYMBOL vmlinux 0x7fca3ca6 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7fce778e tegra_ivc_total_queue_size +EXPORT_SYMBOL vmlinux 0x7fd64f3d skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x7fd67b4f dev_deactivate +EXPORT_SYMBOL vmlinux 0x7fe105d7 bman_ip_rev +EXPORT_SYMBOL vmlinux 0x7fe2c5dd tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff2ac81 dma_fence_array_create +EXPORT_SYMBOL vmlinux 0x7ff7c7df flow_rule_match_meta +EXPORT_SYMBOL vmlinux 0x7ffc6fb6 sock_release +EXPORT_SYMBOL vmlinux 0x80015480 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x800db208 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x8011a4f4 jbd2_submit_inode_data +EXPORT_SYMBOL vmlinux 0x8019376c complete_request_key +EXPORT_SYMBOL vmlinux 0x801d28b6 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x803cb867 devm_arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0x803ddbb6 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x8062f290 rproc_mem_entry_init +EXPORT_SYMBOL vmlinux 0x8065c0bd tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x8066abfb max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x80758eb2 mdiobus_free +EXPORT_SYMBOL vmlinux 0x80771965 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x807813a3 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x8088f934 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x808e2d2a skb_queue_purge +EXPORT_SYMBOL vmlinux 0x809712ff hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x809bbea5 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x80a717a8 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cb304f fiemap_prep +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80ddc129 mini_qdisc_pair_block_init +EXPORT_SYMBOL vmlinux 0x80e5f86f fscrypt_fname_alloc_buffer +EXPORT_SYMBOL vmlinux 0x80ec0d50 qman_init_fq +EXPORT_SYMBOL vmlinux 0x80f880f1 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x80f8d02a unix_destruct_scm +EXPORT_SYMBOL vmlinux 0x8109da44 inet_rcv_saddr_equal +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 0x813db51e xsk_get_pool_from_qid +EXPORT_SYMBOL vmlinux 0x814dbda9 inet_put_port +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8162e3e6 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x817b1c73 param_set_ulong +EXPORT_SYMBOL vmlinux 0x818416e1 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x818ad645 vme_irq_free +EXPORT_SYMBOL vmlinux 0x818b127f param_get_charp +EXPORT_SYMBOL vmlinux 0x818edf97 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x81a1eb59 utf8_unload +EXPORT_SYMBOL vmlinux 0x81b20e8b ucc_fast_transmit_on_demand +EXPORT_SYMBOL vmlinux 0x81be8c3e tcp_mmap +EXPORT_SYMBOL vmlinux 0x81cf9c8a xfrm_trans_queue +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81ebd0ee input_flush_device +EXPORT_SYMBOL vmlinux 0x81f155e7 blk_cleanup_disk +EXPORT_SYMBOL vmlinux 0x81f2e219 filemap_fdatawait_range_keep_errors +EXPORT_SYMBOL vmlinux 0x820c58be netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x820c9e42 fscrypt_setup_filename +EXPORT_SYMBOL vmlinux 0x821b46ff seq_open_private +EXPORT_SYMBOL vmlinux 0x823d3505 cmxgcr_lock +EXPORT_SYMBOL vmlinux 0x824d7a05 km_state_expired +EXPORT_SYMBOL vmlinux 0x824eb793 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x825a92e4 blk_set_runtime_active +EXPORT_SYMBOL vmlinux 0x825eefbb ipv4_specific +EXPORT_SYMBOL vmlinux 0x8263a6d9 proc_douintvec +EXPORT_SYMBOL vmlinux 0x827da191 seq_printf +EXPORT_SYMBOL vmlinux 0x828931f2 pci_request_irq +EXPORT_SYMBOL vmlinux 0x82b0199c get_tree_keyed +EXPORT_SYMBOL vmlinux 0x82b340c7 scsi_host_put +EXPORT_SYMBOL vmlinux 0x82b78eee udp_set_csum +EXPORT_SYMBOL vmlinux 0x82c87ad5 nr_online_nodes +EXPORT_SYMBOL vmlinux 0x82cffbc2 pci_clear_master +EXPORT_SYMBOL vmlinux 0x82d2ae19 thread_group_exited +EXPORT_SYMBOL vmlinux 0x82e197f7 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x8304759d amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x83308173 send_sig_mceerr +EXPORT_SYMBOL vmlinux 0x833b4e2d blkdev_compat_ptr_ioctl +EXPORT_SYMBOL vmlinux 0x834af7cc nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x834dad33 rproc_remove_subdev +EXPORT_SYMBOL vmlinux 0x83538ba9 __cpu_dying_mask +EXPORT_SYMBOL vmlinux 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL vmlinux 0x835b47df inet_select_addr +EXPORT_SYMBOL vmlinux 0x836a698a tso_build_data +EXPORT_SYMBOL vmlinux 0x837b7b09 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x838352f8 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x838d2bc8 siphash_3u32 +EXPORT_SYMBOL vmlinux 0x838de657 flow_keys_basic_dissector +EXPORT_SYMBOL vmlinux 0x8399c5a9 mmc_start_request +EXPORT_SYMBOL vmlinux 0x83a36938 xfrm6_rcv_tnl +EXPORT_SYMBOL vmlinux 0x83ae669a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x83b45dfb vmf_insert_mixed +EXPORT_SYMBOL vmlinux 0x83b7e162 vga_put +EXPORT_SYMBOL vmlinux 0x83c5eaca netdev_reset_tc +EXPORT_SYMBOL vmlinux 0x83d6c972 generic_permission +EXPORT_SYMBOL vmlinux 0x83d7c5de _dev_notice +EXPORT_SYMBOL vmlinux 0x83ed5495 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x840342c6 sgl_free +EXPORT_SYMBOL vmlinux 0x84087ed5 sk_wait_data +EXPORT_SYMBOL vmlinux 0x8409a961 vfs_get_link +EXPORT_SYMBOL vmlinux 0x84107eed ip6mr_rule_default +EXPORT_SYMBOL vmlinux 0x8427cc7b _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x8433d5be rtnl_notify +EXPORT_SYMBOL vmlinux 0x8441452f iterate_fd +EXPORT_SYMBOL vmlinux 0x8455e3a7 dma_fence_signal_timestamp_locked +EXPORT_SYMBOL vmlinux 0x8473f2c1 sock_pfree +EXPORT_SYMBOL vmlinux 0x8476cbff phy_resume +EXPORT_SYMBOL vmlinux 0x84818f57 tegra_powergate_power_on +EXPORT_SYMBOL vmlinux 0x84823cf3 nla_strscpy +EXPORT_SYMBOL vmlinux 0x848bde67 dquot_drop +EXPORT_SYMBOL vmlinux 0x84a0ca4d bitmap_zalloc_node +EXPORT_SYMBOL vmlinux 0x84a32348 sock_set_reuseport +EXPORT_SYMBOL vmlinux 0x84b4897b __dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x84c03e9a rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x84c1c552 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x84c4040c security_binder_set_context_mgr +EXPORT_SYMBOL vmlinux 0x84e8343e sk_capable +EXPORT_SYMBOL vmlinux 0x84fdd554 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8500686b skb_split +EXPORT_SYMBOL vmlinux 0x850ef1bb super_setup_bdi_name +EXPORT_SYMBOL vmlinux 0x8518a4a6 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x851b9121 xudma_dev_get_psil_base +EXPORT_SYMBOL vmlinux 0x85308039 ether_setup +EXPORT_SYMBOL vmlinux 0x853fd2ed input_set_capability +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x8561c5ce napi_get_frags +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856fe440 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x85889bf8 is_nd_dax +EXPORT_SYMBOL vmlinux 0x8591d7d5 ledtrig_mtd_activity +EXPORT_SYMBOL vmlinux 0x85b441b8 register_netdevice +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bd1608 __request_region +EXPORT_SYMBOL vmlinux 0x85d090ea jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e3893b __serio_register_port +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x862c8035 bitmap_alloc_node +EXPORT_SYMBOL vmlinux 0x86375c74 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x863a276a color_table +EXPORT_SYMBOL vmlinux 0x864a72fd neigh_for_each +EXPORT_SYMBOL vmlinux 0x866966fe put_watch_queue +EXPORT_SYMBOL vmlinux 0x866a62b2 gnet_stats_basic_sync_init +EXPORT_SYMBOL vmlinux 0x86740962 iov_iter_revert +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86c1a9a2 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x86c64d6f rproc_elf_get_boot_addr +EXPORT_SYMBOL vmlinux 0x86d52ba5 lookup_constant +EXPORT_SYMBOL vmlinux 0x86dd708d tc_skb_ext_tc_enable +EXPORT_SYMBOL vmlinux 0x86e1c90f __mod_node_page_state +EXPORT_SYMBOL vmlinux 0x86e5ae6c __devm_mdiobus_register +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fd70d7 inet_frag_reasm_finish +EXPORT_SYMBOL vmlinux 0x8710ea89 sock_set_rcvbuf +EXPORT_SYMBOL vmlinux 0x87368734 xsk_tx_peek_desc +EXPORT_SYMBOL vmlinux 0x8761c87b rps_needed +EXPORT_SYMBOL vmlinux 0x87745600 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x87761528 __traceiter_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x87a21cb3 __ubsan_handle_out_of_bounds +EXPORT_SYMBOL vmlinux 0x87ae120e kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x87b47344 inet6_bind +EXPORT_SYMBOL vmlinux 0x87b8798d sg_next +EXPORT_SYMBOL vmlinux 0x87c40e41 skb_unlink +EXPORT_SYMBOL vmlinux 0x87deb674 ata_print_version +EXPORT_SYMBOL vmlinux 0x87e5fa10 __free_pages +EXPORT_SYMBOL vmlinux 0x87e9f5f9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x8810754a _find_first_bit +EXPORT_SYMBOL vmlinux 0x8815d9c6 get_tree_bdev +EXPORT_SYMBOL vmlinux 0x881bad5e phy_mipi_dphy_config_validate +EXPORT_SYMBOL vmlinux 0x881c4413 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x8831f386 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x883ce22b fasync_helper +EXPORT_SYMBOL vmlinux 0x883dc99b consume_skb +EXPORT_SYMBOL vmlinux 0x8846fda3 fs_param_is_blob +EXPORT_SYMBOL vmlinux 0x88533dad vfs_fadvise +EXPORT_SYMBOL vmlinux 0x88537b40 skb_expand_head +EXPORT_SYMBOL vmlinux 0x8854c3a9 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x885b8743 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x8881ddf4 devm_rproc_add +EXPORT_SYMBOL vmlinux 0x88822d38 unregister_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0x8888f1fe xxh32 +EXPORT_SYMBOL vmlinux 0x889b1370 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x88a7dbf2 vfs_parse_fs_string +EXPORT_SYMBOL vmlinux 0x88c07c63 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x88d4f02a rproc_elf_sanity_check +EXPORT_SYMBOL vmlinux 0x88db9f48 __check_object_size +EXPORT_SYMBOL vmlinux 0x88dbafc1 elv_bio_merge_ok +EXPORT_SYMBOL vmlinux 0x88e1d0f0 page_frag_free +EXPORT_SYMBOL vmlinux 0x88e29c78 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x88f846e4 pci_disable_ptm +EXPORT_SYMBOL vmlinux 0x8931448e hash_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x89331dfc mmc_wait_for_req_done +EXPORT_SYMBOL vmlinux 0x89412332 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x89434b4b radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x8946ea72 fpsimd_context_busy +EXPORT_SYMBOL vmlinux 0x8957f4f1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x896a1cd4 security_task_getsecid_obj +EXPORT_SYMBOL vmlinux 0x896fb0d4 pps_register_source +EXPORT_SYMBOL vmlinux 0x89940875 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x899a1a4b truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x899f6c37 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x89c5ccf2 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x89e0a76c skb_flow_dissect_ct +EXPORT_SYMBOL vmlinux 0x89f20e5a mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8a20e23c _copy_from_iter +EXPORT_SYMBOL vmlinux 0x8a47043d LZ4_decompress_safe_continue +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a7094ba vm_brk_flags +EXPORT_SYMBOL vmlinux 0x8a77abf5 send_sig +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a8643a3 __do_once_slow_done +EXPORT_SYMBOL vmlinux 0x8a8770d2 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x8a904587 fs_param_is_path +EXPORT_SYMBOL vmlinux 0x8a96c02f filp_close +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9dfe1f import_single_range +EXPORT_SYMBOL vmlinux 0x8aa357ae amba_device_register +EXPORT_SYMBOL vmlinux 0x8ab16499 __mmap_lock_do_trace_released +EXPORT_SYMBOL vmlinux 0x8ab5e4f1 ip_route_input_noref +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 0x8ac808a3 key_type_keyring +EXPORT_SYMBOL vmlinux 0x8ad658ca set_cached_acl +EXPORT_SYMBOL vmlinux 0x8adf5cf9 pci_free_irq_vectors +EXPORT_SYMBOL vmlinux 0x8adfe5d0 ip_local_deliver +EXPORT_SYMBOL vmlinux 0x8af0a254 fb_set_var +EXPORT_SYMBOL vmlinux 0x8b0088d1 LZ4_decompress_safe_usingDict +EXPORT_SYMBOL vmlinux 0x8b04a651 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x8b0a01c1 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x8b355498 fault_in_iov_iter_readable +EXPORT_SYMBOL vmlinux 0x8b36a4c5 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x8b3991b0 pci_bus_type +EXPORT_SYMBOL vmlinux 0x8b5cbc1a textsearch_unregister +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b910be2 errseq_sample +EXPORT_SYMBOL vmlinux 0x8b94f3bc of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bbf25df phy_device_create +EXPORT_SYMBOL vmlinux 0x8bdfc47c __mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x8be0b454 sock_wake_async +EXPORT_SYMBOL vmlinux 0x8be189ab ucc_slow_disable +EXPORT_SYMBOL vmlinux 0x8bf528e3 find_get_pages_range_tag +EXPORT_SYMBOL vmlinux 0x8bf5b047 fwnode_get_mac_address +EXPORT_SYMBOL vmlinux 0x8bfff9d4 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x8c0b37f9 mmc_cqe_request_done +EXPORT_SYMBOL vmlinux 0x8c0c5ea7 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8c1a78c3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x8c1bc952 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x8c26d495 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x8c30bf67 zstd_dctx_workspace_bound +EXPORT_SYMBOL vmlinux 0x8c3109d1 backlight_device_get_by_type +EXPORT_SYMBOL vmlinux 0x8c3277a7 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x8c6267b2 generic_remap_file_range_prep +EXPORT_SYMBOL vmlinux 0x8c683fcd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8c8569cb kstrtoint +EXPORT_SYMBOL vmlinux 0x8c8b5278 _dev_printk +EXPORT_SYMBOL vmlinux 0x8c9e338f acpi_bios_error +EXPORT_SYMBOL vmlinux 0x8caf9305 uuid_is_valid +EXPORT_SYMBOL vmlinux 0x8cbe2d8e buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x8cbfb75e twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x8cc53d20 __par_io_config_pin +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdbc089 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x8d0bb19b km_new_mapping +EXPORT_SYMBOL vmlinux 0x8d1240be flow_block_cb_incref +EXPORT_SYMBOL vmlinux 0x8d4112df qcom_scm_mem_protect_video_var +EXPORT_SYMBOL vmlinux 0x8d4d67aa acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0x8d512fd3 bio_chain +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d567c69 make_kuid +EXPORT_SYMBOL vmlinux 0x8d654317 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d776e5e vfs_getattr +EXPORT_SYMBOL vmlinux 0x8d8fc9e9 __inet_hash +EXPORT_SYMBOL vmlinux 0x8d9ca0e6 dma_fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x8da6585d __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x8db74c39 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8dd0022d dump_emit +EXPORT_SYMBOL vmlinux 0x8dd3cb3f uart_resume_port +EXPORT_SYMBOL vmlinux 0x8ddd8aad schedule_timeout +EXPORT_SYMBOL vmlinux 0x8dee722d _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x8df1bd90 vfs_get_super +EXPORT_SYMBOL vmlinux 0x8df2c68b md_bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x8df4afd9 qe_put_snum +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9dd10 guid_null +EXPORT_SYMBOL vmlinux 0x8dfddf02 mmc_cqe_post_req +EXPORT_SYMBOL vmlinux 0x8e17b3ae idr_destroy +EXPORT_SYMBOL vmlinux 0x8e21c9a1 dma_fence_add_callback +EXPORT_SYMBOL vmlinux 0x8e3e0f7d fault_in_readable +EXPORT_SYMBOL vmlinux 0x8e4c60a3 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x8e70145e of_node_name_prefix +EXPORT_SYMBOL vmlinux 0x8e712a93 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x8e78c036 d_genocide +EXPORT_SYMBOL vmlinux 0x8e93bd24 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x8ea9af7a blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8eb65a38 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x8eb904e4 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x8ec2ee03 fs_context_for_reconfigure +EXPORT_SYMBOL vmlinux 0x8ee994bc tty_port_close +EXPORT_SYMBOL vmlinux 0x8eeaa18a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x8f01afd6 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x8f23c76a inet_del_offload +EXPORT_SYMBOL vmlinux 0x8f250e7e sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8f39d6e2 ipv6_dev_mc_dec +EXPORT_SYMBOL vmlinux 0x8f4cad78 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8f61ed7c bpf_empty_prog_array +EXPORT_SYMBOL vmlinux 0x8f6a8e7f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8f74fb52 inet_bind +EXPORT_SYMBOL vmlinux 0x8f752b31 vme_lm_request +EXPORT_SYMBOL vmlinux 0x8f8842fe ppp_dev_name +EXPORT_SYMBOL vmlinux 0x8f996a30 ethtool_convert_legacy_u32_to_link_mode +EXPORT_SYMBOL vmlinux 0x8fa25c24 xa_find +EXPORT_SYMBOL vmlinux 0x8fb67b85 inet_proto_csum_replace16 +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 0x8fe60ad0 input_match_device_id +EXPORT_SYMBOL vmlinux 0x8ff89ed0 seg6_hmac_exit +EXPORT_SYMBOL vmlinux 0x8ffb7ed5 filp_open +EXPORT_SYMBOL vmlinux 0x90006be6 dm_kcopyd_client_flush +EXPORT_SYMBOL vmlinux 0x9005c472 xsk_tx_completed +EXPORT_SYMBOL vmlinux 0x90211191 fscrypt_decrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0x90295f2f netlink_ack +EXPORT_SYMBOL vmlinux 0x902c50a1 nd_device_notify +EXPORT_SYMBOL vmlinux 0x902d8722 vme_slave_get +EXPORT_SYMBOL vmlinux 0x9034a696 mempool_destroy +EXPORT_SYMBOL vmlinux 0x9037dd19 set_create_files_as +EXPORT_SYMBOL vmlinux 0x9051a0c5 fwnode_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x905695ab sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x90576ec4 vmemdup_user +EXPORT_SYMBOL vmlinux 0x9061b562 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x9063d601 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x90640f81 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x907ea00e set_security_override +EXPORT_SYMBOL vmlinux 0x90a3d4a8 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x90b0b676 security_inode_invalidate_secctx +EXPORT_SYMBOL vmlinux 0x90e273e2 cred_fscmp +EXPORT_SYMBOL vmlinux 0x910b572c of_cpu_node_to_id +EXPORT_SYMBOL vmlinux 0x91105629 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9114b616 __xa_alloc +EXPORT_SYMBOL vmlinux 0x914188d6 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x914ae735 cdev_add +EXPORT_SYMBOL vmlinux 0x9158f012 d_instantiate +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9166fc03 __flush_workqueue +EXPORT_SYMBOL vmlinux 0x916aa5f3 tcf_qevent_handle +EXPORT_SYMBOL vmlinux 0x91876947 unregister_nls +EXPORT_SYMBOL vmlinux 0x9189f3d8 inet_getname +EXPORT_SYMBOL vmlinux 0x918ca584 dst_release +EXPORT_SYMBOL vmlinux 0x919c58f3 __clzsi2 +EXPORT_SYMBOL vmlinux 0x919e213d tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x91a488ac __netdev_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x91a7b1da qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x91b57259 genlmsg_put +EXPORT_SYMBOL vmlinux 0x91c0414b ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91d8bcf7 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x91e4c2cb bio_init +EXPORT_SYMBOL vmlinux 0x91f0bbdc memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x91f44510 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x91f4d6a1 security_locked_down +EXPORT_SYMBOL vmlinux 0x91f68ea1 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x920745ee discard_new_inode +EXPORT_SYMBOL vmlinux 0x922f45a6 __bitmap_clear +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923ce961 bio_put +EXPORT_SYMBOL vmlinux 0x9241d566 __brelse +EXPORT_SYMBOL vmlinux 0x92540fbf finish_wait +EXPORT_SYMBOL vmlinux 0x9258c776 hdmi_vendor_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0x92654658 page_pool_destroy +EXPORT_SYMBOL vmlinux 0x927566e3 devm_pci_remap_cfgspace +EXPORT_SYMBOL vmlinux 0x92774cf8 __kfence_pool +EXPORT_SYMBOL vmlinux 0x927c478d mr_vif_seq_idx +EXPORT_SYMBOL vmlinux 0x9287023c bmap +EXPORT_SYMBOL vmlinux 0x92895928 lookup_one_unlocked +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9293bd6c unpin_user_pages +EXPORT_SYMBOL vmlinux 0x92997ed8 _printk +EXPORT_SYMBOL vmlinux 0x929bb028 param_set_uint +EXPORT_SYMBOL vmlinux 0x92a13145 d_add_ci +EXPORT_SYMBOL vmlinux 0x92a35275 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x92a386c9 md_flush_request +EXPORT_SYMBOL vmlinux 0x92aebbd1 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x92b00775 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x92b99a33 acpi_put_table +EXPORT_SYMBOL vmlinux 0x92b9b180 slash_name +EXPORT_SYMBOL vmlinux 0x92cf3cb8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x92d15905 framebuffer_release +EXPORT_SYMBOL vmlinux 0x92d258eb set_bh_page +EXPORT_SYMBOL vmlinux 0x92d448df mdio_find_bus +EXPORT_SYMBOL vmlinux 0x92d5838e request_threaded_irq +EXPORT_SYMBOL vmlinux 0x92e683f5 down_timeout +EXPORT_SYMBOL vmlinux 0x92ec510d jiffies64_to_msecs +EXPORT_SYMBOL vmlinux 0x92edd5c5 ip_frag_init +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fa9d85 devm_mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9351a547 request_key_tag +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937867e4 dmaenginem_async_device_register +EXPORT_SYMBOL vmlinux 0x9379448c __sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x9386d616 eth_header_parse_protocol +EXPORT_SYMBOL vmlinux 0x939bbb69 mmc_free_host +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c0b07f mr_mfc_find_parent +EXPORT_SYMBOL vmlinux 0x93c63ca0 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x93d6dd8c complete_all +EXPORT_SYMBOL vmlinux 0x93da065a of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x93da85f8 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x93efdf42 jbd2_journal_grab_journal_head +EXPORT_SYMBOL vmlinux 0x93f8ebb3 dmam_alloc_attrs +EXPORT_SYMBOL vmlinux 0x940572b9 kern_path +EXPORT_SYMBOL vmlinux 0x9428f816 dim_turn +EXPORT_SYMBOL vmlinux 0x944375db _totalram_pages +EXPORT_SYMBOL vmlinux 0x94486025 blk_mq_delay_run_hw_queues +EXPORT_SYMBOL vmlinux 0x944a564d is_console_locked +EXPORT_SYMBOL vmlinux 0x945dfbcf netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x945f5695 kthread_create_on_cpu +EXPORT_SYMBOL vmlinux 0x94857315 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x9487d3e1 ns_capable +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949b866b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x94b5f72d devm_extcon_register_notifier_all +EXPORT_SYMBOL vmlinux 0x94bb7ec3 gen_pool_dma_zalloc_algo +EXPORT_SYMBOL vmlinux 0x94bf03ca utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x94cbcc06 __skb_pad +EXPORT_SYMBOL vmlinux 0x94dccfe6 xfrm_state_free +EXPORT_SYMBOL vmlinux 0x94e50ad4 call_fib_notifier +EXPORT_SYMBOL vmlinux 0x9507c90f copy_fsxattr_to_user +EXPORT_SYMBOL vmlinux 0x95216745 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x953d2426 utf8_strncmp +EXPORT_SYMBOL vmlinux 0x954cef6f init_on_alloc +EXPORT_SYMBOL vmlinux 0x954f099c idr_preload +EXPORT_SYMBOL vmlinux 0x955d56bd blk_get_queue +EXPORT_SYMBOL vmlinux 0x9563f7ad scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x957e1c9b __page_frag_cache_drain +EXPORT_SYMBOL vmlinux 0x957f8003 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x958288f8 fc_mount +EXPORT_SYMBOL vmlinux 0x958aef3c kthread_destroy_worker +EXPORT_SYMBOL vmlinux 0x95925f8d pci_scan_bus +EXPORT_SYMBOL vmlinux 0x95a67b07 udp_table +EXPORT_SYMBOL vmlinux 0x95a776af tc_setup_offload_action +EXPORT_SYMBOL vmlinux 0x95ad5cda pci_enable_wake +EXPORT_SYMBOL vmlinux 0x95af43f7 rproc_free +EXPORT_SYMBOL vmlinux 0x95b93f65 generic_iommu_put_resv_regions +EXPORT_SYMBOL vmlinux 0x95be852c md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x95d99f14 sock_no_linger +EXPORT_SYMBOL vmlinux 0x95db9b28 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x9609bc9b tegra_ivc_read_advance +EXPORT_SYMBOL vmlinux 0x961be3d1 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x963a97c5 page_symlink +EXPORT_SYMBOL vmlinux 0x963caff8 register_md_personality +EXPORT_SYMBOL vmlinux 0x96441c00 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x96509f79 kobject_init +EXPORT_SYMBOL vmlinux 0x965dcc81 generic_file_open +EXPORT_SYMBOL vmlinux 0x9666edba phy_driver_register +EXPORT_SYMBOL vmlinux 0x96846f3c inet_addr_type +EXPORT_SYMBOL vmlinux 0x96848186 scnprintf +EXPORT_SYMBOL vmlinux 0x9688de8b memstart_addr +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b6d43f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x96b72538 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x96c17136 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d28781 iproc_msi_exit +EXPORT_SYMBOL vmlinux 0x96df3cce d_add +EXPORT_SYMBOL vmlinux 0x96e48efa devm_iounmap +EXPORT_SYMBOL vmlinux 0x96e5d30f gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x96e89e1a sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x96f8aefc dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x96fab350 dim_park_on_top +EXPORT_SYMBOL vmlinux 0x96ff37b8 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x97150498 xen_free_ballooned_pages +EXPORT_SYMBOL vmlinux 0x97157cff mmc_can_discard +EXPORT_SYMBOL vmlinux 0x971acac6 mmc_of_parse_clk_phase +EXPORT_SYMBOL vmlinux 0x973658dd mmc_of_parse +EXPORT_SYMBOL vmlinux 0x973e52bf tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x973f4d68 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x973f6fc4 sock_no_bind +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974a482d ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x9750145c init_task +EXPORT_SYMBOL vmlinux 0x976dbe91 dump_align +EXPORT_SYMBOL vmlinux 0x977acaf2 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9780f90c rtnl_offload_xstats_notify +EXPORT_SYMBOL vmlinux 0x9786cf4c pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x978c67b2 kern_path_create +EXPORT_SYMBOL vmlinux 0x97934ecf del_timer_sync +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 0x97cfca19 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x97e2789a commit_creds +EXPORT_SYMBOL vmlinux 0x97ed2212 __tracepoint_spi_transfer_start +EXPORT_SYMBOL vmlinux 0x97ff36a5 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x9826db9d mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9844d416 sg_miter_start +EXPORT_SYMBOL vmlinux 0x985d437a generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x985dab2c tegra_ivc_cleanup +EXPORT_SYMBOL vmlinux 0x9871acba from_kuid +EXPORT_SYMBOL vmlinux 0x989d9fc9 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x98b6a12f unpin_user_page +EXPORT_SYMBOL vmlinux 0x98c01423 rpmh_write_async +EXPORT_SYMBOL vmlinux 0x98c039dc dma_fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x98c89ade security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98da6695 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x98e508ef ignore_console_lock_warning +EXPORT_SYMBOL vmlinux 0x98f20f22 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x9902f355 finish_no_open +EXPORT_SYMBOL vmlinux 0x9907b449 single_open +EXPORT_SYMBOL vmlinux 0x99094fb2 qcom_scm_is_available +EXPORT_SYMBOL vmlinux 0x990da6bb __blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x990f72bf __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x991f8f01 netdev_has_any_upper_dev +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 0x995af794 vma_set_file +EXPORT_SYMBOL vmlinux 0x995bfd7d mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x99704fbe pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x9975dc22 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x99996e8b __mdiobus_read +EXPORT_SYMBOL vmlinux 0x999dc9b2 of_mdio_find_device +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b92051 flow_rule_match_eth_addrs +EXPORT_SYMBOL vmlinux 0x99c9489e reuseport_stop_listen_sock +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 0x99f86387 flow_rule_match_ip +EXPORT_SYMBOL vmlinux 0x99f9638f __napi_alloc_frag_align +EXPORT_SYMBOL vmlinux 0x99fc6ca8 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9a0c3a18 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x9a0eb585 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x9a0fea8b cdev_alloc +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a22391e radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x9a44369d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x9a49b657 devm_extcon_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9a572f4b input_inject_event +EXPORT_SYMBOL vmlinux 0x9a583306 netlbl_bitmap_walk +EXPORT_SYMBOL vmlinux 0x9a5ebf2b sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x9a6fbb20 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x9a7083f9 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x9a94758b devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9aaeefce sysctl_nf_log_all_netns +EXPORT_SYMBOL vmlinux 0x9ab646f3 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x9ab9d629 iov_iter_discard +EXPORT_SYMBOL vmlinux 0x9ac762de genphy_read_master_slave +EXPORT_SYMBOL vmlinux 0x9ace5915 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9acf4dc5 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9ae47436 _find_last_bit +EXPORT_SYMBOL vmlinux 0x9af8fa27 seg6_hmac_info_lookup +EXPORT_SYMBOL vmlinux 0x9b128a66 qcom_scm_set_remote_state +EXPORT_SYMBOL vmlinux 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL vmlinux 0x9b2c04e0 jbd2_journal_submit_inode_data_buffers +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b496b21 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x9b4ccdfd vfs_statfs +EXPORT_SYMBOL vmlinux 0x9b6c724e xudma_pktdma_tflow_get_irq +EXPORT_SYMBOL vmlinux 0x9b72478f acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x9b74f1af ipmr_rule_default +EXPORT_SYMBOL vmlinux 0x9b7d148c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x9b7fc666 vfs_get_tree +EXPORT_SYMBOL vmlinux 0x9b8c1908 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x9bb036cf clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x9bcef4a7 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x9c122bcf mempool_create_node +EXPORT_SYMBOL vmlinux 0x9c1e5bf5 queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9c22879c param_get_invbool +EXPORT_SYMBOL vmlinux 0x9c277150 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x9c2e0411 dev_lstats_read +EXPORT_SYMBOL vmlinux 0x9c420e46 tc_setup_cb_destroy +EXPORT_SYMBOL vmlinux 0x9c5a2ada ucc_fast_dump_regs +EXPORT_SYMBOL vmlinux 0x9c5cbf54 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x9c5d5b94 crc8 +EXPORT_SYMBOL vmlinux 0x9c601fd0 nexthop_res_grp_activity_update +EXPORT_SYMBOL vmlinux 0x9c6c5943 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x9c6cbeef __fs_parse +EXPORT_SYMBOL vmlinux 0x9c73d06e inet_frag_find +EXPORT_SYMBOL vmlinux 0x9c86b9ab fileattr_fill_flags +EXPORT_SYMBOL vmlinux 0x9c92c0be pci_read_vpd +EXPORT_SYMBOL vmlinux 0x9c95d1a0 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc7ceab vme_init_bridge +EXPORT_SYMBOL vmlinux 0x9ccf7171 vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x9cd2bee6 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9cd36937 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9cd91791 register_sysctl +EXPORT_SYMBOL vmlinux 0x9cdf4444 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x9cdfb3f7 sysctl_fb_tunnels_only_for_init_net +EXPORT_SYMBOL vmlinux 0x9ce86438 kernel_listen +EXPORT_SYMBOL vmlinux 0x9cf9374c __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x9d073220 bio_endio +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d25050f mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x9d25e5a4 __vfs_removexattr +EXPORT_SYMBOL vmlinux 0x9d26675e zstd_cstream_workspace_bound +EXPORT_SYMBOL vmlinux 0x9d2996a3 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9d2ab8ac __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x9d2e7707 unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0x9d5bec08 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x9d61e994 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x9d7ad0c8 __cpuhp_remove_state_cpuslocked +EXPORT_SYMBOL vmlinux 0x9d7d30af of_graph_get_remote_node +EXPORT_SYMBOL vmlinux 0x9d837a39 xen_alloc_unpopulated_pages +EXPORT_SYMBOL vmlinux 0x9d92f3ad __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9da7bb14 udp_seq_start +EXPORT_SYMBOL vmlinux 0x9dda47a9 phy_modify_paged +EXPORT_SYMBOL vmlinux 0x9dda937a mdiobb_read +EXPORT_SYMBOL vmlinux 0x9ddef5a7 devfreq_update_status +EXPORT_SYMBOL vmlinux 0x9de0b8d0 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x9de53d22 qdisc_offload_dump_helper +EXPORT_SYMBOL vmlinux 0x9df21d0e qman_affine_channel +EXPORT_SYMBOL vmlinux 0x9df87114 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0fa5ae hsiphash_3u32 +EXPORT_SYMBOL vmlinux 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL vmlinux 0x9e14a9db generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x9e241fd2 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9e2737f0 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x9e2f7661 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x9e33618e vfs_clone_file_range +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e54c4b8 pskb_extract +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e817ecb vmf_insert_pfn_prot +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 0x9eb211b3 fman_register_intr +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 0x9ee04e70 filemap_fdatawait_keep_errors +EXPORT_SYMBOL vmlinux 0x9ef78ad3 irq_domain_set_info +EXPORT_SYMBOL vmlinux 0x9f06e5f1 elv_rb_find +EXPORT_SYMBOL vmlinux 0x9f27ab9f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x9f2e0c3b mdiobus_get_phy +EXPORT_SYMBOL vmlinux 0x9f395c17 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f48894c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9f4ab727 phy_remove_link_mode +EXPORT_SYMBOL vmlinux 0x9f4f2aa3 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x9f50b770 keyring_restrict +EXPORT_SYMBOL vmlinux 0x9f54ead7 gro_cells_destroy +EXPORT_SYMBOL vmlinux 0x9f5ad6d3 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x9f5cf991 udp6_seq_ops +EXPORT_SYMBOL vmlinux 0x9f76baf4 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x9f7b2a81 devm_devfreq_register_notifier +EXPORT_SYMBOL vmlinux 0x9f7d7dbb logic_outsw +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9b2e78 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x9f9e1e2d mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x9f9e2b05 clear_nlink +EXPORT_SYMBOL vmlinux 0x9fa7184a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x9fafac8b tc_setup_cb_add +EXPORT_SYMBOL vmlinux 0x9fb41842 netdev_offload_xstats_report_delta +EXPORT_SYMBOL vmlinux 0x9fc56611 arp_create +EXPORT_SYMBOL vmlinux 0x9fd45b27 dma_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x9fdbd73b md_bitmap_sync_with_cluster +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe0a2bc filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9feed7ce timer_reduce +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa013e277 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xa015b37f da903x_query_status +EXPORT_SYMBOL vmlinux 0xa016a9e4 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa01b414c seq_read_iter +EXPORT_SYMBOL vmlinux 0xa01d3df6 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0xa01d933b pci_iomap_range +EXPORT_SYMBOL vmlinux 0xa022c739 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa02aa74a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xa033d747 next_arg +EXPORT_SYMBOL vmlinux 0xa03c04a8 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa0405e7d rproc_detach +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04e33da qcom_scm_lmh_dcvsh +EXPORT_SYMBOL vmlinux 0xa04f6c5c rw_verify_area +EXPORT_SYMBOL vmlinux 0xa057df8f twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xa05b6be2 psched_ppscfg_precompute +EXPORT_SYMBOL vmlinux 0xa070fd7c xfrm_register_type_offload +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07d1b3c tasklet_setup +EXPORT_SYMBOL vmlinux 0xa0843c67 make_bad_inode +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b691f jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa08d4925 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xa08fe1ab sk_mc_loop +EXPORT_SYMBOL vmlinux 0xa095e02e generic_check_addressable +EXPORT_SYMBOL vmlinux 0xa0a15b49 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xa0ae1e73 siphash_3u64 +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d2b538 elv_rb_former_request +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 0xa0f29d88 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10a0cd0 register_mii_timestamper +EXPORT_SYMBOL vmlinux 0xa13e0f74 pipe_unlock +EXPORT_SYMBOL vmlinux 0xa190fffe amba_driver_register +EXPORT_SYMBOL vmlinux 0xa198b1f5 xfrm_replay_seqhi +EXPORT_SYMBOL vmlinux 0xa1a98155 napi_complete_done +EXPORT_SYMBOL vmlinux 0xa1aff762 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xa1d1886a input_setup_polling +EXPORT_SYMBOL vmlinux 0xa1e20c11 mmc_erase +EXPORT_SYMBOL vmlinux 0xa1f47fec nla_reserve_64bit +EXPORT_SYMBOL vmlinux 0xa1faf284 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xa2013483 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xa2060911 inet_current_timestamp +EXPORT_SYMBOL vmlinux 0xa218b881 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xa225563e vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa2326c49 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0xa235717a __skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa239e8e3 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xa23b84ef vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xa23ffc04 groups_sort +EXPORT_SYMBOL vmlinux 0xa247e738 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xa24e9286 sk_stream_error +EXPORT_SYMBOL vmlinux 0xa24f23d8 __request_module +EXPORT_SYMBOL vmlinux 0xa25a8b37 tcf_block_get +EXPORT_SYMBOL vmlinux 0xa263892b fscrypt_fname_free_buffer +EXPORT_SYMBOL vmlinux 0xa264de93 dev_set_mac_address_user +EXPORT_SYMBOL vmlinux 0xa2660e90 __tracepoint_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xa26c0fa4 security_sock_graft +EXPORT_SYMBOL vmlinux 0xa27e76e8 __genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xa28cfcc0 gen_estimator_active +EXPORT_SYMBOL vmlinux 0xa29acb3f pagevec_lookup_range +EXPORT_SYMBOL vmlinux 0xa29c960d fscrypt_put_encryption_info +EXPORT_SYMBOL vmlinux 0xa2a42004 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa2cf3649 qman_fq_fqid +EXPORT_SYMBOL vmlinux 0xa2d4b75e qcom_scm_iommu_set_cp_pool_size +EXPORT_SYMBOL vmlinux 0xa2d7ec8d __SCK__tp_func_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa2e4bad0 dma_unmap_page_attrs +EXPORT_SYMBOL vmlinux 0xa2f9f897 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xa3353cdd kill_litter_super +EXPORT_SYMBOL vmlinux 0xa33d6c80 seq_path +EXPORT_SYMBOL vmlinux 0xa3522df5 qman_query_fq_np +EXPORT_SYMBOL vmlinux 0xa3528290 phy_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xa355206e xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xa3585f72 key_link +EXPORT_SYMBOL vmlinux 0xa3777416 f_setown +EXPORT_SYMBOL vmlinux 0xa3ad331c inode_needs_sync +EXPORT_SYMBOL vmlinux 0xa3be8342 __ubsan_handle_type_mismatch +EXPORT_SYMBOL vmlinux 0xa3cefaa0 blake2s_update +EXPORT_SYMBOL vmlinux 0xa3db80de sock_create_kern +EXPORT_SYMBOL vmlinux 0xa3e86578 bpf_map_get +EXPORT_SYMBOL vmlinux 0xa3fea172 sha224_final +EXPORT_SYMBOL vmlinux 0xa40bb633 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa40ff01b acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xa4141f8f xfrm_lookup_with_ifid +EXPORT_SYMBOL vmlinux 0xa4278b8f tcp_seq_next +EXPORT_SYMBOL vmlinux 0xa448c653 qcom_scm_ice_set_key +EXPORT_SYMBOL vmlinux 0xa449ab03 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xa471126b netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xa471446f netlink_set_err +EXPORT_SYMBOL vmlinux 0xa47a31c8 security_binder_transaction +EXPORT_SYMBOL vmlinux 0xa4a888d6 netif_tx_unlock +EXPORT_SYMBOL vmlinux 0xa4bbcb15 clk_add_alias +EXPORT_SYMBOL vmlinux 0xa4f55196 __post_watch_notification +EXPORT_SYMBOL vmlinux 0xa4fca045 qcom_scm_ocmem_lock +EXPORT_SYMBOL vmlinux 0xa50a3da7 _find_next_bit +EXPORT_SYMBOL vmlinux 0xa51ffd99 __seq_open_private +EXPORT_SYMBOL vmlinux 0xa52bedf6 xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0xa5456c98 vfs_dedupe_file_range_one +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5569315 clear_inode +EXPORT_SYMBOL vmlinux 0xa55d9c63 kset_unregister +EXPORT_SYMBOL vmlinux 0xa58285d8 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xa587e47b of_xudma_dev_get +EXPORT_SYMBOL vmlinux 0xa588c4ba pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xa58af0a6 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xa5976e4f dev_base_lock +EXPORT_SYMBOL vmlinux 0xa5acbb2c devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xa5b1a0f4 mmc_retune_release +EXPORT_SYMBOL vmlinux 0xa5b35d7b mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xa5d60c4f configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0xa5f83dd8 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa5fe4ccb pldmfw_op_pci_match_record +EXPORT_SYMBOL vmlinux 0xa61ced89 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0xa6257a2f complete +EXPORT_SYMBOL vmlinux 0xa6332e7b mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa63cc08c __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xa63e3f8d vfs_fsync +EXPORT_SYMBOL vmlinux 0xa648aaa2 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xa648e561 __ubsan_handle_shift_out_of_bounds +EXPORT_SYMBOL vmlinux 0xa6499565 blkdev_issue_secure_erase +EXPORT_SYMBOL vmlinux 0xa64c7249 __printk_cpu_sync_try_get +EXPORT_SYMBOL vmlinux 0xa65a77dc __breadahead +EXPORT_SYMBOL vmlinux 0xa65dae07 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa66a1367 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a8eb44 xen_free_unpopulated_pages +EXPORT_SYMBOL vmlinux 0xa6ad8430 phy_do_ioctl +EXPORT_SYMBOL vmlinux 0xa6cda69f xfrm_unregister_type_offload +EXPORT_SYMBOL vmlinux 0xa6d7caaa fman_unregister_intr +EXPORT_SYMBOL vmlinux 0xa6e06038 vme_slot_num +EXPORT_SYMBOL vmlinux 0xa6f80212 rproc_vq_interrupt +EXPORT_SYMBOL vmlinux 0xa70bc96d qcom_scm_restore_sec_cfg_available +EXPORT_SYMBOL vmlinux 0xa71acc92 fman_port_config +EXPORT_SYMBOL vmlinux 0xa71df40b security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xa72035f9 xa_get_order +EXPORT_SYMBOL vmlinux 0xa7260809 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xa7264af3 __find_get_block +EXPORT_SYMBOL vmlinux 0xa73932c7 xattr_full_name +EXPORT_SYMBOL vmlinux 0xa74c9877 refcount_dec_and_rtnl_lock +EXPORT_SYMBOL vmlinux 0xa7530d0f copy_page_from_iter_atomic +EXPORT_SYMBOL vmlinux 0xa757a6c0 from_kgid +EXPORT_SYMBOL vmlinux 0xa7633c08 crypto_kdf108_setkey +EXPORT_SYMBOL vmlinux 0xa77615db skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xa77b3e98 can_nice +EXPORT_SYMBOL vmlinux 0xa77bfd29 register_inet6addr_validator_notifier +EXPORT_SYMBOL vmlinux 0xa780b1b2 genphy_write_mmd_unsupported +EXPORT_SYMBOL vmlinux 0xa78d97b3 xen_alloc_ballooned_pages +EXPORT_SYMBOL vmlinux 0xa79cacbd inode_init_owner +EXPORT_SYMBOL vmlinux 0xa7a2066d gro_cells_init +EXPORT_SYMBOL vmlinux 0xa7a3f133 tcp_check_req +EXPORT_SYMBOL vmlinux 0xa7a677c7 fscrypt_ioctl_get_policy +EXPORT_SYMBOL vmlinux 0xa7a8e824 peernet2id +EXPORT_SYMBOL vmlinux 0xa7c39346 scsi_device_put +EXPORT_SYMBOL vmlinux 0xa7c9af48 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xa7d5f92e ida_destroy +EXPORT_SYMBOL vmlinux 0xa7eedcc4 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xa8181adf proc_dointvec +EXPORT_SYMBOL vmlinux 0xa82e0de4 _copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xa83f1476 folio_mapped +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 0xa865b0a8 mr_rtm_dumproute +EXPORT_SYMBOL vmlinux 0xa8694ecd kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0xa87e60bc pci_find_capability +EXPORT_SYMBOL vmlinux 0xa887ec3a sock_common_recvmsg +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 0xa8c045d6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xa8caa845 clk_bulk_put_all +EXPORT_SYMBOL vmlinux 0xa8e6933a qdf2400_e44_present +EXPORT_SYMBOL vmlinux 0xa8efe74e dst_release_immediate +EXPORT_SYMBOL vmlinux 0xa8f6c843 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xa906c177 __nla_put_64bit +EXPORT_SYMBOL vmlinux 0xa909951a sk_net_capable +EXPORT_SYMBOL vmlinux 0xa90ca0de flush_rcu_work +EXPORT_SYMBOL vmlinux 0xa90f467d input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa910d2f9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9192a79 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xa91dd727 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xa924b4aa __traceiter_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xa928e26e napi_schedule_prep +EXPORT_SYMBOL vmlinux 0xa932cac1 I_BDEV +EXPORT_SYMBOL vmlinux 0xa93a3e34 cdev_init +EXPORT_SYMBOL vmlinux 0xa94513c1 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa965ca81 reciprocal_value +EXPORT_SYMBOL vmlinux 0xa9712e54 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xa9739c7b lookup_one +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97bff66 rtnl_kfree_skbs +EXPORT_SYMBOL vmlinux 0xa98bcf9a d_rehash +EXPORT_SYMBOL vmlinux 0xa99c4235 filemap_invalidate_lock_two +EXPORT_SYMBOL vmlinux 0xa9a03beb netif_receive_skb +EXPORT_SYMBOL vmlinux 0xa9a4630c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xa9aeb814 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xa9b4bb7a netdev_change_features +EXPORT_SYMBOL vmlinux 0xa9b75933 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xa9ba65f5 seq_dentry +EXPORT_SYMBOL vmlinux 0xa9d3334b sock_i_ino +EXPORT_SYMBOL vmlinux 0xa9de755d dquot_get_next_dqblk +EXPORT_SYMBOL vmlinux 0xa9ed62d2 tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xa9f41c3f seg6_hmac_info_add +EXPORT_SYMBOL vmlinux 0xaa00fdc0 ec_transaction +EXPORT_SYMBOL vmlinux 0xaa0c318b vscnprintf +EXPORT_SYMBOL vmlinux 0xaa0fa4d7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xaa10f7c4 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xaa19e4aa _kstrtol +EXPORT_SYMBOL vmlinux 0xaa1fb4af __devm_release_region +EXPORT_SYMBOL vmlinux 0xaa341905 acpi_bios_exception +EXPORT_SYMBOL vmlinux 0xaa38a9a1 inc_node_page_state +EXPORT_SYMBOL vmlinux 0xaa559900 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xaa589e5b folio_migrate_mapping +EXPORT_SYMBOL vmlinux 0xaa6be501 mmc_card_alternative_gpt_sector +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7f8397 d_drop +EXPORT_SYMBOL vmlinux 0xaa80f742 fwnode_get_phy_id +EXPORT_SYMBOL vmlinux 0xaa8106bc crc8_populate_msb +EXPORT_SYMBOL vmlinux 0xaa98f174 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xaaa4b9bc hchacha_block_generic +EXPORT_SYMBOL vmlinux 0xaaa50fb2 qcom_scm_lmh_profile_change +EXPORT_SYMBOL vmlinux 0xaabc5679 genphy_read_lpa +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 0xaaf4a334 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe1826 __skb_recv_udp +EXPORT_SYMBOL vmlinux 0xab0e6075 seq_escape_mem +EXPORT_SYMBOL vmlinux 0xab22ec4c gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xab35e1e7 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xab3697e4 irq_poll_init +EXPORT_SYMBOL vmlinux 0xab3b75ea vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0xab420b0b _dev_emerg +EXPORT_SYMBOL vmlinux 0xab5cc2b4 phy_attached_info_irq +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab63baa5 unregister_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xab67a0ac dql_init +EXPORT_SYMBOL vmlinux 0xab6a7c38 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xab6d5b3b hex_to_bin +EXPORT_SYMBOL vmlinux 0xab7132a6 phy_error +EXPORT_SYMBOL vmlinux 0xab721eb8 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xab742ecb param_set_ullong +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8d1403 d_move +EXPORT_SYMBOL vmlinux 0xaba74efd icmp6_send +EXPORT_SYMBOL vmlinux 0xabac3e8f d_alloc +EXPORT_SYMBOL vmlinux 0xabb153aa __cgroup_bpf_run_filter_skb +EXPORT_SYMBOL vmlinux 0xabbd44c4 fscrypt_free_inode +EXPORT_SYMBOL vmlinux 0xabc9143b ps2_begin_command +EXPORT_SYMBOL vmlinux 0xabf32f29 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0xac0b31a4 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xac0f4be1 netdev_printk +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac241579 sock_rfree +EXPORT_SYMBOL vmlinux 0xac2daa59 sock_enable_timestamps +EXPORT_SYMBOL vmlinux 0xac3201b0 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0xac537ac2 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xac5fcec0 in4_pton +EXPORT_SYMBOL vmlinux 0xac618d3e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xac860131 kobject_del +EXPORT_SYMBOL vmlinux 0xac88395b __check_sticky +EXPORT_SYMBOL vmlinux 0xac89715a dev_uc_add +EXPORT_SYMBOL vmlinux 0xac8f8485 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xacaa4c72 dma_fence_match_context +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb3d04e igrab +EXPORT_SYMBOL vmlinux 0xacb65c83 xfrm_dev_state_flush +EXPORT_SYMBOL vmlinux 0xacbd7aa6 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xacbdae76 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdced92 scsi_unblock_requests +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 0xad010ebc scsi_register_driver +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad128dc1 __tracepoint_dma_fence_enable_signal +EXPORT_SYMBOL vmlinux 0xad2ed1b7 flow_rule_match_ipv4_addrs +EXPORT_SYMBOL vmlinux 0xad3140d0 qdisc_put_unlocked +EXPORT_SYMBOL vmlinux 0xad357133 __traceiter_kmalloc_node +EXPORT_SYMBOL vmlinux 0xad3ea04c qman_p_irqsource_remove +EXPORT_SYMBOL vmlinux 0xad5961ae __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xad59f679 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0xad67fd97 pci_match_id +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 0xad7326e0 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xad9901ae bit_waitqueue +EXPORT_SYMBOL vmlinux 0xada31e57 gen_pool_dma_alloc_align +EXPORT_SYMBOL vmlinux 0xada3a171 phy_trigger_machine +EXPORT_SYMBOL vmlinux 0xadad1d8b tcf_idr_cleanup +EXPORT_SYMBOL vmlinux 0xadae6df8 blake2s_final +EXPORT_SYMBOL vmlinux 0xadba1051 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xadbeed61 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0xadc98714 register_netdevice_notifier_dev_net +EXPORT_SYMBOL vmlinux 0xadd139d4 rfs_needed +EXPORT_SYMBOL vmlinux 0xadd2ab89 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xadd3b862 wireless_send_event +EXPORT_SYMBOL vmlinux 0xadd3ed36 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xadda696f qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xadde2280 file_ns_capable +EXPORT_SYMBOL vmlinux 0xadf50bf7 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04012c __vmalloc +EXPORT_SYMBOL vmlinux 0xae0a9422 fscrypt_encrypt_pagecache_blocks +EXPORT_SYMBOL vmlinux 0xae0ea424 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xae2cf26f dquot_file_open +EXPORT_SYMBOL vmlinux 0xae316c11 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0xae33c403 xudma_navss_psil_unpair +EXPORT_SYMBOL vmlinux 0xae481a28 scsi_print_command +EXPORT_SYMBOL vmlinux 0xae4add44 generic_fillattr +EXPORT_SYMBOL vmlinux 0xae57f293 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xae5a04bb acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0xae64c63a simple_setattr +EXPORT_SYMBOL vmlinux 0xae66d69e get_tree_single +EXPORT_SYMBOL vmlinux 0xae7c79f7 pci_ep_cfs_add_epc_group +EXPORT_SYMBOL vmlinux 0xae994e1e find_inode_rcu +EXPORT_SYMBOL vmlinux 0xaeac049a generate_random_guid +EXPORT_SYMBOL vmlinux 0xaeb082ad _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xaeb1b226 __break_lease +EXPORT_SYMBOL vmlinux 0xaeb32d99 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xaebd12f0 acpi_get_name +EXPORT_SYMBOL vmlinux 0xaeca8967 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xaee65cae freeze_super +EXPORT_SYMBOL vmlinux 0xaeef69be ptp_cancel_worker_sync +EXPORT_SYMBOL vmlinux 0xaeff4dfc build_skb_around +EXPORT_SYMBOL vmlinux 0xaf139191 netlink_capable +EXPORT_SYMBOL vmlinux 0xaf16b9cf gnet_stats_copy_basic_hw +EXPORT_SYMBOL vmlinux 0xaf20b013 kernel_read +EXPORT_SYMBOL vmlinux 0xaf2de2d8 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf42558c dm_unregister_target +EXPORT_SYMBOL vmlinux 0xaf4b3b12 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xaf560178 register_key_type +EXPORT_SYMBOL vmlinux 0xaf56600a arm64_use_ng_mappings +EXPORT_SYMBOL vmlinux 0xaf64a09f pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xaf77af49 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xaf7882c5 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xaf7cf715 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xaf861dd4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xaf8a3c18 netdev_has_upper_dev_all_rcu +EXPORT_SYMBOL vmlinux 0xaf95cdcd dev_uc_del +EXPORT_SYMBOL vmlinux 0xafb864c1 refcount_dec_and_lock_irqsave +EXPORT_SYMBOL vmlinux 0xafc03ec8 fwnode_mdiobus_phy_device_register +EXPORT_SYMBOL vmlinux 0xafc08054 dotdot_name +EXPORT_SYMBOL vmlinux 0xafc60906 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xafc6c68e zstd_is_error +EXPORT_SYMBOL vmlinux 0xafcc2ece request_key_rcu +EXPORT_SYMBOL vmlinux 0xafd3fb48 pci_request_regions +EXPORT_SYMBOL vmlinux 0xafda8351 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xafef513a flow_rule_match_ct +EXPORT_SYMBOL vmlinux 0xaffbd815 key_alloc +EXPORT_SYMBOL vmlinux 0xb01be78e bdi_unregister +EXPORT_SYMBOL vmlinux 0xb01bebf9 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xb01fc5f2 nd_btt_version +EXPORT_SYMBOL vmlinux 0xb022a2b9 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb02bf6cc netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb0466f20 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb04a43ad __xa_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xb056ee4b xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb05c6a3b acpi_dev_get_first_match_dev +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb075375e param_array_ops +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a3971f unix_attach_fds +EXPORT_SYMBOL vmlinux 0xb0be099a rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xb0c35c73 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xb0c5e247 lockref_put_return +EXPORT_SYMBOL vmlinux 0xb0cd1aef jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb0d75ed8 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb0da2e76 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xb0db70d3 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb100ee2f proc_mkdir +EXPORT_SYMBOL vmlinux 0xb103da87 bio_reset +EXPORT_SYMBOL vmlinux 0xb10e7df4 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0xb1118893 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xb11f386b jbd2_journal_flush +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 0xb1427f8c __phy_resume +EXPORT_SYMBOL vmlinux 0xb142bfab kthread_stop +EXPORT_SYMBOL vmlinux 0xb1464526 read_cache_page +EXPORT_SYMBOL vmlinux 0xb14ab1ef hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xb14fc46a find_next_clump8 +EXPORT_SYMBOL vmlinux 0xb1657780 mfd_remove_devices_late +EXPORT_SYMBOL vmlinux 0xb17027e1 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0xb172ff9a __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb1b052b9 pci_rebar_get_possible_sizes +EXPORT_SYMBOL vmlinux 0xb1b1eda6 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xb1b2d4bc pin_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1da38d4 pci_enable_device +EXPORT_SYMBOL vmlinux 0xb1db9a69 fsl_ifc_find +EXPORT_SYMBOL vmlinux 0xb1ddf995 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xb1e03abb vfs_dup_fs_context +EXPORT_SYMBOL vmlinux 0xb1ee72d3 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xb200e15b bio_copy_data_iter +EXPORT_SYMBOL vmlinux 0xb212b29a __put_user_ns +EXPORT_SYMBOL vmlinux 0xb22e16d5 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xb23027c1 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xb26073c3 config_item_set_name +EXPORT_SYMBOL vmlinux 0xb2669d36 page_mapped +EXPORT_SYMBOL vmlinux 0xb27a25b9 of_get_property +EXPORT_SYMBOL vmlinux 0xb293575d vfs_create +EXPORT_SYMBOL vmlinux 0xb2a1252f __sk_mem_reduce_allocated +EXPORT_SYMBOL vmlinux 0xb2b969d5 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xb2b985df acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xb2bcb088 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0xb2be5a3c jbd2_journal_put_journal_head +EXPORT_SYMBOL vmlinux 0xb2dc24ec mntget +EXPORT_SYMBOL vmlinux 0xb2ead97c kimage_vaddr +EXPORT_SYMBOL vmlinux 0xb2ec790e dput +EXPORT_SYMBOL vmlinux 0xb2edf78b phy_detach +EXPORT_SYMBOL vmlinux 0xb2f01fa9 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb2f0af1e __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb2f28a43 tcp_sock_set_cork +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 0xb3126eb5 pci_resize_resource +EXPORT_SYMBOL vmlinux 0xb31760c9 node_data +EXPORT_SYMBOL vmlinux 0xb31eb368 dev_get_flags +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 0xb34d5e17 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xb34dca1c kryo_l2_get_indirect_reg +EXPORT_SYMBOL vmlinux 0xb3592199 md_write_end +EXPORT_SYMBOL vmlinux 0xb361a1a3 unregister_netdevice_notifier_net +EXPORT_SYMBOL vmlinux 0xb3667fe2 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xb367a37b d_mark_dontcache +EXPORT_SYMBOL vmlinux 0xb3687850 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xb368f438 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xb3805feb d_obtain_root +EXPORT_SYMBOL vmlinux 0xb389b8a7 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xb3943b55 filemap_check_errors +EXPORT_SYMBOL vmlinux 0xb3a82019 profile_pc +EXPORT_SYMBOL vmlinux 0xb3b8c323 fscrypt_free_bounce_page +EXPORT_SYMBOL vmlinux 0xb3c46114 md_write_start +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d6cacf bpf_link_get_from_fd +EXPORT_SYMBOL vmlinux 0xb3d74ae5 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb3ecd693 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xb3f0de55 xz_dec_microlzma_run +EXPORT_SYMBOL vmlinux 0xb3f49446 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xb3f548ad kmemdup_nul +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4043948 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0xb407a9b6 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xb409c759 ip_sock_set_tos +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4240b02 mdiobus_setup_mdiodev_from_board_info +EXPORT_SYMBOL vmlinux 0xb43642a5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb444da3d dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xb44b060c blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb4577003 acpi_dev_present +EXPORT_SYMBOL vmlinux 0xb468cc53 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb47cf49c unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xb48b0b94 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xb48d4d22 security_sb_eat_lsm_opts +EXPORT_SYMBOL vmlinux 0xb493beed nla_put +EXPORT_SYMBOL vmlinux 0xb4a80070 reuseport_detach_prog +EXPORT_SYMBOL vmlinux 0xb4b3d3ee tcf_action_exec +EXPORT_SYMBOL vmlinux 0xb4bc7e69 inode_io_list_del +EXPORT_SYMBOL vmlinux 0xb4c850a8 phy_device_free +EXPORT_SYMBOL vmlinux 0xb4cecebb xp_dma_sync_for_device_slow +EXPORT_SYMBOL vmlinux 0xb4d09d4c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xb4ef7163 tcp_fastopen_defer_connect +EXPORT_SYMBOL vmlinux 0xb4f13d2a abort +EXPORT_SYMBOL vmlinux 0xb507b783 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xb513ae4c phy_loopback +EXPORT_SYMBOL vmlinux 0xb528a428 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xb53a9c39 unlock_buffer +EXPORT_SYMBOL vmlinux 0xb53d21db sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb53f2810 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xb5458cc3 get_task_cred +EXPORT_SYMBOL vmlinux 0xb566a726 pin_user_pages_remote +EXPORT_SYMBOL vmlinux 0xb57f1e27 fman_port_disable +EXPORT_SYMBOL vmlinux 0xb58aeaab kernel_cpustat +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b1b057 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb5b54b34 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xb5b63711 fileattr_fill_xflags +EXPORT_SYMBOL vmlinux 0xb5d89b16 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xb5d973c7 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0xb5e1d2b1 folio_mark_dirty +EXPORT_SYMBOL vmlinux 0xb5e71ff9 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xb5e73116 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xb5e93c28 serio_bus +EXPORT_SYMBOL vmlinux 0xb5eb5e4e generic_copy_file_range +EXPORT_SYMBOL vmlinux 0xb5f0cab9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xb5f75d79 rtc_add_group +EXPORT_SYMBOL vmlinux 0xb61d6fc2 down_read_interruptible +EXPORT_SYMBOL vmlinux 0xb630c819 mmc_release_host +EXPORT_SYMBOL vmlinux 0xb633f115 irq_poll_enable +EXPORT_SYMBOL vmlinux 0xb6367b80 of_root +EXPORT_SYMBOL vmlinux 0xb637d304 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xb63e04e4 vc_cons +EXPORT_SYMBOL vmlinux 0xb63ef7e1 skb_store_bits +EXPORT_SYMBOL vmlinux 0xb64f6bc6 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xb654ef65 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xb65a1bf4 sock_queue_rcv_skb_reason +EXPORT_SYMBOL vmlinux 0xb666a3ea tcp_child_process +EXPORT_SYMBOL vmlinux 0xb66e96d8 netlbl_audit_start +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67c14f6 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xb67fec0e uuid_parse +EXPORT_SYMBOL vmlinux 0xb6858f4e neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6ab42d2 fscrypt_zeroout_range +EXPORT_SYMBOL vmlinux 0xb6acaa13 phy_sfp_detach +EXPORT_SYMBOL vmlinux 0xb6baf640 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb6bbb37a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xb6cb556a _find_first_and_bit +EXPORT_SYMBOL vmlinux 0xb6e36ce2 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb6fde909 close_fd +EXPORT_SYMBOL vmlinux 0xb7092e5f mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xb71589f0 skip_spaces +EXPORT_SYMBOL vmlinux 0xb71ed69f __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0xb737b185 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0xb759b086 tcf_idr_create +EXPORT_SYMBOL vmlinux 0xb7688155 ucc_slow_init +EXPORT_SYMBOL vmlinux 0xb7767e49 __blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xb78494b8 super_setup_bdi +EXPORT_SYMBOL vmlinux 0xb788fb30 gic_pmr_sync +EXPORT_SYMBOL vmlinux 0xb78debe3 LZ4_decompress_fast_usingDict +EXPORT_SYMBOL vmlinux 0xb78e78c0 migrate_vma_pages +EXPORT_SYMBOL vmlinux 0xb7a1cba9 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xb7b05bce tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb7b7fa6e node_states +EXPORT_SYMBOL vmlinux 0xb7c0f443 sort +EXPORT_SYMBOL vmlinux 0xb7c13c28 iproc_msi_init +EXPORT_SYMBOL vmlinux 0xb7c29318 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d82c0f xp_alloc +EXPORT_SYMBOL vmlinux 0xb8005247 __blk_mq_alloc_disk +EXPORT_SYMBOL vmlinux 0xb80b4a18 zstd_compress_bound +EXPORT_SYMBOL vmlinux 0xb818064e xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb81eb061 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb81ef63f mipi_dsi_dcs_set_display_brightness +EXPORT_SYMBOL vmlinux 0xb82a53a3 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xb82c86c0 netdev_pick_tx +EXPORT_SYMBOL vmlinux 0xb842716c qcom_scm_ocmem_lock_available +EXPORT_SYMBOL vmlinux 0xb8469713 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xb847e2c0 tcp_mss_to_mtu +EXPORT_SYMBOL vmlinux 0xb84ff508 __mmap_lock_do_trace_start_locking +EXPORT_SYMBOL vmlinux 0xb8605d9c qman_p_static_dequeue_add +EXPORT_SYMBOL vmlinux 0xb861680e blk_put_queue +EXPORT_SYMBOL vmlinux 0xb868ac5c register_sysrq_key +EXPORT_SYMBOL vmlinux 0xb88fd035 set_groups +EXPORT_SYMBOL vmlinux 0xb89b6e6b guid_parse +EXPORT_SYMBOL vmlinux 0xb8b043f2 kfree_link +EXPORT_SYMBOL vmlinux 0xb8b9f817 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xb8e0218c dev_pick_tx_zero +EXPORT_SYMBOL vmlinux 0xb8f5f816 sync_filesystem +EXPORT_SYMBOL vmlinux 0xb9056bb6 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb911bb58 minmax_running_max +EXPORT_SYMBOL vmlinux 0xb920db49 acpi_tb_install_and_load_table +EXPORT_SYMBOL vmlinux 0xb92b787f rt6_lookup +EXPORT_SYMBOL vmlinux 0xb92d8603 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xb93689c8 fb_show_logo +EXPORT_SYMBOL vmlinux 0xb94339c4 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xb9478d90 hdmi_drm_infoframe_unpack_only +EXPORT_SYMBOL vmlinux 0xb967dfc6 vm_insert_page +EXPORT_SYMBOL vmlinux 0xb96c4f9e audit_log_subject_context +EXPORT_SYMBOL vmlinux 0xb97220ff bitmap_parse +EXPORT_SYMBOL vmlinux 0xb988c748 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xb9a7af57 kernel_write +EXPORT_SYMBOL vmlinux 0xb9adde3f tcf_qevent_destroy +EXPORT_SYMBOL vmlinux 0xb9af1d0d __xa_clear_mark +EXPORT_SYMBOL vmlinux 0xb9bc9f9d mmc_is_req_done +EXPORT_SYMBOL vmlinux 0xb9db3ecb blk_execute_rq +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 0xba21816f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xba36f495 __inc_node_page_state +EXPORT_SYMBOL vmlinux 0xba419774 start_tty +EXPORT_SYMBOL vmlinux 0xba41c6bd blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xba49433b param_ops_invbool +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba53adab nla_policy_len +EXPORT_SYMBOL vmlinux 0xba707a78 qe_get_brg_clk +EXPORT_SYMBOL vmlinux 0xba7ece49 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xba8fbd64 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xba9932ed inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xbab5b29f tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xbacde72c is_acpi_device_node +EXPORT_SYMBOL vmlinux 0xbadd4545 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xbaede69b tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xbaf3393c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xbaf59bb4 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xbb02791c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb21260e convert_ifc_address +EXPORT_SYMBOL vmlinux 0xbb24f607 init_cdrom_command +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb687724 bman_new_pool +EXPORT_SYMBOL vmlinux 0xbb9ed3bf mutex_trylock +EXPORT_SYMBOL vmlinux 0xbba542c2 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xbbadf6d9 vmap +EXPORT_SYMBOL vmlinux 0xbbde87d8 page_pool_create +EXPORT_SYMBOL vmlinux 0xbbe80fdb kmalloc_order +EXPORT_SYMBOL vmlinux 0xbbf52626 md_bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xbc15159c inode_init_once +EXPORT_SYMBOL vmlinux 0xbc1d738f dquot_commit +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc30a710 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xbc48b19a sk_error_report +EXPORT_SYMBOL vmlinux 0xbc50265e iptun_encaps +EXPORT_SYMBOL vmlinux 0xbc699e72 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xbc743ee5 mmc_sw_reset +EXPORT_SYMBOL vmlinux 0xbca103af security_binder_transfer_file +EXPORT_SYMBOL vmlinux 0xbca5f55b tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbcab6ee6 sscanf +EXPORT_SYMBOL vmlinux 0xbcaee619 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xbcaf250c phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xbcb36fe4 hugetlb_optimize_vmemmap_key +EXPORT_SYMBOL vmlinux 0xbcf039d9 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xbcf9ae57 __mod_lruvec_page_state +EXPORT_SYMBOL vmlinux 0xbcfbc759 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xbd0b1e15 vfs_rename +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd578b25 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xbd628752 __tracepoint_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xbd647871 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xbd6841d4 crc16 +EXPORT_SYMBOL vmlinux 0xbd6ad478 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xbd7a9cea __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xbd7ab197 poll_initwait +EXPORT_SYMBOL vmlinux 0xbd879358 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xbdb20529 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbdbcc524 migrate_vma_setup +EXPORT_SYMBOL vmlinux 0xbddbe15c d_exact_alias +EXPORT_SYMBOL vmlinux 0xbddd0034 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xbdded72b dentry_create +EXPORT_SYMBOL vmlinux 0xbe00791e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbe118c52 __tracepoint_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xbe16d185 __cgroup_bpf_run_filter_sock_addr +EXPORT_SYMBOL vmlinux 0xbe29a388 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xbe2bb49d xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xbe36cf76 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xbe3ae3a3 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xbe49252c acpi_os_write_port +EXPORT_SYMBOL vmlinux 0xbe4eb6ed secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xbe50df55 lock_rename +EXPORT_SYMBOL vmlinux 0xbe53a775 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xbe561415 km_report +EXPORT_SYMBOL vmlinux 0xbe5a24e9 xxh32_copy_state +EXPORT_SYMBOL vmlinux 0xbe6a866f __wait_on_bit +EXPORT_SYMBOL vmlinux 0xbe6a8c96 zstd_cctx_workspace_bound +EXPORT_SYMBOL vmlinux 0xbe7a7e82 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xbe8e9b29 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xbe90a91d __ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xbe913fd1 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xbe963ea3 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xbea078a9 blk_mq_queue_stopped +EXPORT_SYMBOL vmlinux 0xbea8ee98 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xbeabba5a d_instantiate_anon +EXPORT_SYMBOL vmlinux 0xbeccb632 xp_alloc_batch +EXPORT_SYMBOL vmlinux 0xbeebf4bc qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef928dd blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xbefa51a3 gen_pool_add_owner +EXPORT_SYMBOL vmlinux 0xbf1a1183 udp_seq_ops +EXPORT_SYMBOL vmlinux 0xbf308519 import_iovec +EXPORT_SYMBOL vmlinux 0xbf4a02be file_remove_privs +EXPORT_SYMBOL vmlinux 0xbf515351 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xbf59c419 posix_acl_init +EXPORT_SYMBOL vmlinux 0xbf658b64 set_binfmt +EXPORT_SYMBOL vmlinux 0xbf65bba4 dump_skip +EXPORT_SYMBOL vmlinux 0xbf66f77e pci_enable_atomic_ops_to_root +EXPORT_SYMBOL vmlinux 0xbf7c8717 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xbf81a964 tty_check_change +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9be657 tcp_sock_set_keepintvl +EXPORT_SYMBOL vmlinux 0xbfae00e6 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xbfae9e07 utf8_validate +EXPORT_SYMBOL vmlinux 0xbfaebcbd md_bitmap_update_sb +EXPORT_SYMBOL vmlinux 0xbfc0d310 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0xbfc3ca09 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd422aa blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xbfe1be3a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xbfe9188d ptp_clock_index +EXPORT_SYMBOL vmlinux 0xc008cc97 fscrypt_fname_disk_to_usr +EXPORT_SYMBOL vmlinux 0xc0177fed netpoll_poll_dev +EXPORT_SYMBOL vmlinux 0xc0192454 mmc_put_card +EXPORT_SYMBOL vmlinux 0xc02b095e kernel_sock_ip_overhead +EXPORT_SYMBOL vmlinux 0xc0364007 fault_in_writeable +EXPORT_SYMBOL vmlinux 0xc0432b7f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xc047de8b configfs_remove_default_groups +EXPORT_SYMBOL vmlinux 0xc04f10c3 jbd2_journal_inode_ranged_write +EXPORT_SYMBOL vmlinux 0xc060c3f4 page_pool_ethtool_stats_get +EXPORT_SYMBOL vmlinux 0xc06860ba netdev_err +EXPORT_SYMBOL vmlinux 0xc06fc874 dm_io +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078d22c zstd_init_cstream +EXPORT_SYMBOL vmlinux 0xc07b0863 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0xc07b776a nlmsg_notify +EXPORT_SYMBOL vmlinux 0xc08202db devfreq_add_device +EXPORT_SYMBOL vmlinux 0xc091f947 dup_iter +EXPORT_SYMBOL vmlinux 0xc0afb5d7 cgroup_bpf_enabled_key +EXPORT_SYMBOL vmlinux 0xc0c00e28 phy_ethtool_get_strings +EXPORT_SYMBOL vmlinux 0xc0cce12b iput +EXPORT_SYMBOL vmlinux 0xc0d0e457 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xc0d13622 dcb_setapp +EXPORT_SYMBOL vmlinux 0xc0e07eba padata_free +EXPORT_SYMBOL vmlinux 0xc0fe9137 __printk_cpu_sync_put +EXPORT_SYMBOL vmlinux 0xc0ff12fb nla_strdup +EXPORT_SYMBOL vmlinux 0xc0ff21c1 input_get_new_minor +EXPORT_SYMBOL vmlinux 0xc111122a dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc1198662 __warn_flushing_systemwide_wq +EXPORT_SYMBOL vmlinux 0xc12f0b5d reuseport_add_sock +EXPORT_SYMBOL vmlinux 0xc13ac70c xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xc13b9918 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xc14dc168 acpi_get_data +EXPORT_SYMBOL vmlinux 0xc1514a3b free_irq +EXPORT_SYMBOL vmlinux 0xc1579516 fman_port_enable +EXPORT_SYMBOL vmlinux 0xc15804db tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xc15ce458 del_gendisk +EXPORT_SYMBOL vmlinux 0xc1611dcc to_ndd +EXPORT_SYMBOL vmlinux 0xc164a51c keygen_init +EXPORT_SYMBOL vmlinux 0xc16696aa seq_pad +EXPORT_SYMBOL vmlinux 0xc16be39d iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xc1ab7159 jbd2_fc_begin_commit +EXPORT_SYMBOL vmlinux 0xc1b39639 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xc1c97221 mdiobus_unregister_device +EXPORT_SYMBOL vmlinux 0xc1cff418 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xc1d55e31 proto_unregister +EXPORT_SYMBOL vmlinux 0xc1d5d504 scsi_cmd_allowed +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1d98cbc tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xc1e2c742 tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xc1fdf118 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc20303bd clk_hw_get_clk +EXPORT_SYMBOL vmlinux 0xc2050974 fman_port_get_tstamp +EXPORT_SYMBOL vmlinux 0xc20a1f2b fqdir_init +EXPORT_SYMBOL vmlinux 0xc21b5973 cdev_set_parent +EXPORT_SYMBOL vmlinux 0xc2310cdc logic_inl +EXPORT_SYMBOL vmlinux 0xc231409d __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc2487ad9 path_get +EXPORT_SYMBOL vmlinux 0xc2683eae __udp_disconnect +EXPORT_SYMBOL vmlinux 0xc28663f9 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xc28d3665 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2ac10b5 of_phy_connect +EXPORT_SYMBOL vmlinux 0xc2b7235d ip6_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xc2b9772a __tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xc2bcdfd7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xc2c91f19 devm_devfreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0xc2cbd1ba of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xc2e168ab caches_clean_inval_pou +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f52274 __lshrti3 +EXPORT_SYMBOL vmlinux 0xc301e28c seq_vprintf +EXPORT_SYMBOL vmlinux 0xc3055d20 usleep_range_state +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc310ca86 bio_add_page +EXPORT_SYMBOL vmlinux 0xc31db0ce is_vmalloc_addr +EXPORT_SYMBOL vmlinux 0xc31dceb1 netdev_crit +EXPORT_SYMBOL vmlinux 0xc32c71af register_inetaddr_validator_notifier +EXPORT_SYMBOL vmlinux 0xc35019f1 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc36a3bd4 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0xc3762aec mempool_alloc +EXPORT_SYMBOL vmlinux 0xc37f45fa param_get_uint +EXPORT_SYMBOL vmlinux 0xc37f9c6e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0xc38c83b8 mod_timer +EXPORT_SYMBOL vmlinux 0xc3bb2561 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xc3c8fbce pcie_bandwidth_available +EXPORT_SYMBOL vmlinux 0xc3cd034d crc8_populate_lsb +EXPORT_SYMBOL vmlinux 0xc3d5f7e2 vmf_insert_mixed_mkwrite +EXPORT_SYMBOL vmlinux 0xc3dfcee4 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc3f2881a bio_copy_data +EXPORT_SYMBOL vmlinux 0xc3ff38c2 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc401688b jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xc417fc51 tegra_ivc_write_get_next_frame +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 0xc4439410 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xc452212c utf8_strncasecmp +EXPORT_SYMBOL vmlinux 0xc46a63d4 cpumask_next +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc4777aa9 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xc4875341 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xc4b21d2f qman_get_affine_portal +EXPORT_SYMBOL vmlinux 0xc4b34ba1 __xfrm_dst_lookup +EXPORT_SYMBOL vmlinux 0xc4b6d382 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xc4c77d51 dm_table_get_size +EXPORT_SYMBOL vmlinux 0xc4dbd292 inet6_offloads +EXPORT_SYMBOL vmlinux 0xc4e648ca vc_resize +EXPORT_SYMBOL vmlinux 0xc5178e2b user_revoke +EXPORT_SYMBOL vmlinux 0xc5272a4b cfb_copyarea +EXPORT_SYMBOL vmlinux 0xc528a49a queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0xc533dfb5 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc533e7cd migrate_page +EXPORT_SYMBOL vmlinux 0xc54652dd generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc5646d3b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xc56a41e6 vabits_actual +EXPORT_SYMBOL vmlinux 0xc56c3609 xz_dec_microlzma_reset +EXPORT_SYMBOL vmlinux 0xc57c48a3 idr_get_next +EXPORT_SYMBOL vmlinux 0xc5868049 update_devfreq +EXPORT_SYMBOL vmlinux 0xc58d5a90 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a3367a __tracepoint_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xc5b6f236 queue_work_on +EXPORT_SYMBOL vmlinux 0xc5e74216 release_resource +EXPORT_SYMBOL vmlinux 0xc5f74693 tty_write_room +EXPORT_SYMBOL vmlinux 0xc5f7e801 sg_last +EXPORT_SYMBOL vmlinux 0xc60d0620 __num_online_cpus +EXPORT_SYMBOL vmlinux 0xc6185e7b get_phy_device +EXPORT_SYMBOL vmlinux 0xc622556f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc625380a folio_alloc +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc633d82d phy_unregister_fixup +EXPORT_SYMBOL vmlinux 0xc63e2943 elv_rb_add +EXPORT_SYMBOL vmlinux 0xc65e4e97 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66a8304 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0xc6746dbe d_find_alias +EXPORT_SYMBOL vmlinux 0xc67a1cf7 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xc69fce52 qcom_scm_qsmmu500_wait_safe_toggle +EXPORT_SYMBOL vmlinux 0xc6b979b1 new_inode +EXPORT_SYMBOL vmlinux 0xc6c81752 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d09aa9 release_firmware +EXPORT_SYMBOL vmlinux 0xc6e32459 seq_release_private +EXPORT_SYMBOL vmlinux 0xc6f3b3fc refcount_dec_if_one +EXPORT_SYMBOL vmlinux 0xc6f46339 init_timer_key +EXPORT_SYMBOL vmlinux 0xc6f94202 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xc6fa1244 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xc7065631 netdev_offload_xstats_enable +EXPORT_SYMBOL vmlinux 0xc708f1fe ec_write +EXPORT_SYMBOL vmlinux 0xc71cb5a8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc76e7b36 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xc77a2cd0 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7af7a39 config_group_find_item +EXPORT_SYMBOL vmlinux 0xc7b3902c skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xc7bcd544 icmpv6_ndo_send +EXPORT_SYMBOL vmlinux 0xc7c1107a LZ4_decompress_safe +EXPORT_SYMBOL vmlinux 0xc7d094b5 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xc7d35007 _dev_warn +EXPORT_SYMBOL vmlinux 0xc7d91457 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xc7dd18a8 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xc7e2cb21 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xc7f26749 ilookup +EXPORT_SYMBOL vmlinux 0xc7f4edb8 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xc80ab559 swake_up_one +EXPORT_SYMBOL vmlinux 0xc8183f00 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xc81c1126 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc82bcaa2 arp_send +EXPORT_SYMBOL vmlinux 0xc83100a2 sunxi_sram_release +EXPORT_SYMBOL vmlinux 0xc836e7ca flow_keys_dissector +EXPORT_SYMBOL vmlinux 0xc836ef85 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xc838c3f5 __ashrti3 +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc852db3f flow_rule_match_enc_ports +EXPORT_SYMBOL vmlinux 0xc8569158 vma_alloc_folio +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc879b538 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xc87f9cab sk_ns_capable +EXPORT_SYMBOL vmlinux 0xc8827b75 sysctl_vals +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89846c4 xudma_tchanrt_read +EXPORT_SYMBOL vmlinux 0xc899ab86 tc_cleanup_offload_action +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b93c38 seq_release +EXPORT_SYMBOL vmlinux 0xc8dcc62a krealloc +EXPORT_SYMBOL vmlinux 0xc8e19634 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc8edeabb vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xc8fe44d8 bio_split +EXPORT_SYMBOL vmlinux 0xc916dd46 __SCK__tp_func_kmalloc +EXPORT_SYMBOL vmlinux 0xc92f63ba kthread_create_worker_on_cpu +EXPORT_SYMBOL vmlinux 0xc935c28e request_firmware_into_buf +EXPORT_SYMBOL vmlinux 0xc93e8461 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0xc945cdb3 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xc9516a5d iget5_locked +EXPORT_SYMBOL vmlinux 0xc959683c truncate_setsize +EXPORT_SYMBOL vmlinux 0xc95b3571 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9682a0e fman_reset_mac +EXPORT_SYMBOL vmlinux 0xc96b5a7f tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc972449f mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0xc9822234 clk_register_clkdev +EXPORT_SYMBOL vmlinux 0xc99b602e end_page_writeback +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a2bc22 phy_get_internal_delay +EXPORT_SYMBOL vmlinux 0xc9a6849c keyring_alloc +EXPORT_SYMBOL vmlinux 0xc9df055a xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xc9e0eeb4 current_in_userns +EXPORT_SYMBOL vmlinux 0xc9ed0401 imx_sc_rm_is_resource_owned +EXPORT_SYMBOL vmlinux 0xc9ff8bf2 pci_save_state +EXPORT_SYMBOL vmlinux 0xca1648d4 zstd_decompress_dctx +EXPORT_SYMBOL vmlinux 0xca188ac7 tcf_block_get_ext +EXPORT_SYMBOL vmlinux 0xca21ebd3 bitmap_free +EXPORT_SYMBOL vmlinux 0xca266177 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xca431c05 wake_bit_function +EXPORT_SYMBOL vmlinux 0xca62afaf xudma_rflow_is_gp +EXPORT_SYMBOL vmlinux 0xca861f51 vfs_setpos +EXPORT_SYMBOL vmlinux 0xca8c7570 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9beaa4 __xa_store +EXPORT_SYMBOL vmlinux 0xcaa3664d tty_port_destroy +EXPORT_SYMBOL vmlinux 0xcaa82419 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xcab10f0d xp_raw_get_data +EXPORT_SYMBOL vmlinux 0xcab3829e cdrom_dummy_generic_packet +EXPORT_SYMBOL vmlinux 0xcabd81d0 cdev_del +EXPORT_SYMBOL vmlinux 0xcad1aca8 acpi_exception +EXPORT_SYMBOL vmlinux 0xcadb0117 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xcadb3bee ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xcadc6262 devm_register_netdev +EXPORT_SYMBOL vmlinux 0xcaeec3f6 of_get_next_child +EXPORT_SYMBOL vmlinux 0xcafe2139 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0c7300 rproc_elf_load_rsc_table +EXPORT_SYMBOL vmlinux 0xcb1914a7 vm_mmap +EXPORT_SYMBOL vmlinux 0xcb3ae215 call_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xcb494ec2 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xcb53607e udplite_prot +EXPORT_SYMBOL vmlinux 0xcb53c440 fman_set_port_params +EXPORT_SYMBOL vmlinux 0xcb55fd39 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb810696 xp_set_rxq_info +EXPORT_SYMBOL vmlinux 0xcb91de3f amba_device_unregister +EXPORT_SYMBOL vmlinux 0xcb975c0a fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc1e329 ps2_sliced_command +EXPORT_SYMBOL vmlinux 0xcbd4898c fortify_panic +EXPORT_SYMBOL vmlinux 0xcbde0d5b take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xcbe2809a kobject_get +EXPORT_SYMBOL vmlinux 0xcbe5e65b vfs_parse_fs_param +EXPORT_SYMBOL vmlinux 0xcbf72b2b d_delete +EXPORT_SYMBOL vmlinux 0xcbfb33e4 init_opal_dev +EXPORT_SYMBOL vmlinux 0xcbfb4cb0 pid_task +EXPORT_SYMBOL vmlinux 0xcc05ab77 netdev_adjacent_change_abort +EXPORT_SYMBOL vmlinux 0xcc06bf27 fd_install +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 0xcc2ee415 clk_bulk_get_all +EXPORT_SYMBOL vmlinux 0xcc328a5c reservation_ww_class +EXPORT_SYMBOL vmlinux 0xcc411ed1 ptp_convert_timestamp +EXPORT_SYMBOL vmlinux 0xcc445ceb __sg_page_iter_dma_next +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc57a9b1 _dev_alert +EXPORT_SYMBOL vmlinux 0xcc5d22d9 can_do_mlock +EXPORT_SYMBOL vmlinux 0xcc7aa520 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xcc7b239c phy_request_interrupt +EXPORT_SYMBOL vmlinux 0xcc836942 blk_mq_alloc_disk_for_queue +EXPORT_SYMBOL vmlinux 0xcc8452d2 pnp_is_active +EXPORT_SYMBOL vmlinux 0xcc944a4b xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcc96b4b5 dst_discard_out +EXPORT_SYMBOL vmlinux 0xcca41473 to_nd_dax +EXPORT_SYMBOL vmlinux 0xcca5839d xen_vcpu_id +EXPORT_SYMBOL vmlinux 0xcca8705b ps2_handle_response +EXPORT_SYMBOL vmlinux 0xccc256f6 kthread_associate_blkcg +EXPORT_SYMBOL vmlinux 0xccc336d8 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xccc44f17 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0xccc5ddb7 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xccd4c999 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xccd98127 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xccf4c96e block_write_end +EXPORT_SYMBOL vmlinux 0xccfb9e07 dst_default_metrics +EXPORT_SYMBOL vmlinux 0xccfd2ebc scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0xccff1541 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xcd01b8e6 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xcd0f1311 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xcd1bfa4b generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xcd256667 tcp_md5_needed +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd584fb1 blk_queue_max_write_zeroes_sectors +EXPORT_SYMBOL vmlinux 0xcd70a87c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xcd79f24c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xcd86440f param_ops_charp +EXPORT_SYMBOL vmlinux 0xcd89f0ca nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xcd8ce890 acpi_format_exception +EXPORT_SYMBOL vmlinux 0xcd994b22 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd3cbee readahead_expand +EXPORT_SYMBOL vmlinux 0xcde77bcc free_opal_dev +EXPORT_SYMBOL vmlinux 0xcdfd905f pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xce036f24 sg_split +EXPORT_SYMBOL vmlinux 0xce1a7ea5 phy_ethtool_nway_reset +EXPORT_SYMBOL vmlinux 0xce219826 seq_lseek +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 0xce538e3f of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xce5453aa jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce6ccd7f flow_block_cb_decref +EXPORT_SYMBOL vmlinux 0xce731b34 ucc_slow_get_qe_cr_subblock +EXPORT_SYMBOL vmlinux 0xce74baf2 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xce76c257 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xce807a25 up_write +EXPORT_SYMBOL vmlinux 0xce80ba16 config_item_get_unless_zero +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceadd4b3 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xceb8dedb phy_advertise_supported +EXPORT_SYMBOL vmlinux 0xced0f4d4 gen_pool_create +EXPORT_SYMBOL vmlinux 0xced5af9d to_nd_btt +EXPORT_SYMBOL vmlinux 0xcee0b733 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xcee5c2f3 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xcef3d036 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xcef71181 dec_node_page_state +EXPORT_SYMBOL vmlinux 0xcefb0c9f __mutex_init +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xceff798a msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xcf2a6966 up +EXPORT_SYMBOL vmlinux 0xcf3b69b3 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xcf4fdd4d _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xcf74d1dd ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xcf816900 dcb_getapp +EXPORT_SYMBOL vmlinux 0xcf9b558d touchscreen_set_mt_pos +EXPORT_SYMBOL vmlinux 0xcf9e2997 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xcfa34496 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xcfa7e913 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xcfb20278 vfs_tmpfile +EXPORT_SYMBOL vmlinux 0xcfc66859 netdev_get_xmit_slave +EXPORT_SYMBOL vmlinux 0xcfc9465d kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xcfc97147 fwnode_irq_get_byname +EXPORT_SYMBOL vmlinux 0xcfc9deaf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xcfd884a8 __hsiphash_unaligned +EXPORT_SYMBOL vmlinux 0xcfe0d609 filemap_alloc_folio +EXPORT_SYMBOL vmlinux 0xcff7d6c6 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xd007cf48 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xd0085af2 __sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd0340074 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xd03c0ce1 rproc_resource_cleanup +EXPORT_SYMBOL vmlinux 0xd04316cb dev_get_by_napi_id +EXPORT_SYMBOL vmlinux 0xd0480dcc ip_fraglist_prepare +EXPORT_SYMBOL vmlinux 0xd04c1a64 sysctl_devconf_inherit_init_net +EXPORT_SYMBOL vmlinux 0xd05e4176 inet_frag_queue_insert +EXPORT_SYMBOL vmlinux 0xd05fc19b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xd0654aba woken_wake_function +EXPORT_SYMBOL vmlinux 0xd06e7f99 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd0760fc0 kfree_sensitive +EXPORT_SYMBOL vmlinux 0xd0ae468c rt_dst_clone +EXPORT_SYMBOL vmlinux 0xd0b74705 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xd0b7bc91 __napi_schedule +EXPORT_SYMBOL vmlinux 0xd0dfa06f mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xd0fe8d51 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xd1363cc1 ucs2_strsize +EXPORT_SYMBOL vmlinux 0xd1464eaf fwnode_mdio_find_device +EXPORT_SYMBOL vmlinux 0xd14ea950 __traceiter_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xd151caec phy_ethtool_get_stats +EXPORT_SYMBOL vmlinux 0xd16c13cc xfrm6_rcv_encap +EXPORT_SYMBOL vmlinux 0xd186b44e set_nlink +EXPORT_SYMBOL vmlinux 0xd194ddf9 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xd1ce5b8f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1dfce26 may_umount +EXPORT_SYMBOL vmlinux 0xd1e92162 phy_aneg_done +EXPORT_SYMBOL vmlinux 0xd1f46b2a scsi_host_busy +EXPORT_SYMBOL vmlinux 0xd2051916 qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0xd2059b96 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xd212821b generic_setlease +EXPORT_SYMBOL vmlinux 0xd218d7f2 pci_write_config_word +EXPORT_SYMBOL vmlinux 0xd220c8a7 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xd2237016 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0xd231d5ab twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd23da42b is_nd_btt +EXPORT_SYMBOL vmlinux 0xd24108d4 rfkill_soft_blocked +EXPORT_SYMBOL vmlinux 0xd24cdbb8 _dev_crit +EXPORT_SYMBOL vmlinux 0xd2505118 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd2582f8f __SCK__tp_func_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xd25a0673 phy_connect +EXPORT_SYMBOL vmlinux 0xd25bbe28 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xd25bc5d4 csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2639415 clkdev_add +EXPORT_SYMBOL vmlinux 0xd2676d13 devm_pci_remap_iospace +EXPORT_SYMBOL vmlinux 0xd27264a0 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xd278a019 __devm_request_region +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2800691 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0xd286a716 unload_nls +EXPORT_SYMBOL vmlinux 0xd286d99a neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd2ba26bf netdev_offload_xstats_disable +EXPORT_SYMBOL vmlinux 0xd2c3bbdd input_copy_abs +EXPORT_SYMBOL vmlinux 0xd2c99738 __kmalloc_track_caller +EXPORT_SYMBOL vmlinux 0xd2cabd15 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd2ccf971 inode_set_flags +EXPORT_SYMBOL vmlinux 0xd2d88506 netdev_offload_xstats_report_used +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e2a9d0 hdmi_spd_infoframe_pack_only +EXPORT_SYMBOL vmlinux 0xd2ea49b8 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0xd2eb910c pci_irq_get_affinity +EXPORT_SYMBOL vmlinux 0xd2ed5784 pci_pme_active +EXPORT_SYMBOL vmlinux 0xd308f794 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd318bb98 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd35004ae vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd3543063 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd35926c1 mii_ethtool_set_link_ksettings +EXPORT_SYMBOL vmlinux 0xd35a6d31 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xd35cce70 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd36dc10c get_random_u32 +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37cbe97 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xd37cf257 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xd3ac9584 security_sb_remount +EXPORT_SYMBOL vmlinux 0xd3aeba46 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd406d266 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xd41a0e6f mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xd41da30e mipi_dsi_dcs_get_display_brightness +EXPORT_SYMBOL vmlinux 0xd42007ca is_acpi_data_node +EXPORT_SYMBOL vmlinux 0xd4214b4c uart_match_port +EXPORT_SYMBOL vmlinux 0xd4438b7a dquot_release +EXPORT_SYMBOL vmlinux 0xd445936a udp6_csum_init +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd45dd7ce logfc +EXPORT_SYMBOL vmlinux 0xd46e6f91 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd46f6298 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xd4722e58 blk_queue_flag_set +EXPORT_SYMBOL vmlinux 0xd4769098 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd47eb314 vfs_unlink +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd4952cc0 cpumask_next_wrap +EXPORT_SYMBOL vmlinux 0xd4a69d20 qm_channel_caam +EXPORT_SYMBOL vmlinux 0xd4b315d6 inode_nohighmem +EXPORT_SYMBOL vmlinux 0xd4bb4a82 inet6addr_validator_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xd4c9d01a security_dentry_create_files_as +EXPORT_SYMBOL vmlinux 0xd4ceb31b genphy_read_status_fixed +EXPORT_SYMBOL vmlinux 0xd4d1983c udplite_table +EXPORT_SYMBOL vmlinux 0xd4e4a4af skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xd4e4f79f udp_prot +EXPORT_SYMBOL vmlinux 0xd4e89174 __ClearPageMovable +EXPORT_SYMBOL vmlinux 0xd4fa5a87 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xd50e1c95 of_pci_range_to_resource +EXPORT_SYMBOL vmlinux 0xd512f3c3 give_up_console +EXPORT_SYMBOL vmlinux 0xd51ace05 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd5263820 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xd5346bfc acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0xd53b2d8e phy_device_register +EXPORT_SYMBOL vmlinux 0xd5561620 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd55cacfb init_special_inode +EXPORT_SYMBOL vmlinux 0xd5690ac3 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xd56b110f file_update_time +EXPORT_SYMBOL vmlinux 0xd598905c generic_parse_monolithic +EXPORT_SYMBOL vmlinux 0xd5b3d0d5 xxh64_copy_state +EXPORT_SYMBOL vmlinux 0xd5c08b08 __d_drop +EXPORT_SYMBOL vmlinux 0xd5c0ac29 put_disk +EXPORT_SYMBOL vmlinux 0xd5cfd665 pcie_print_link_status +EXPORT_SYMBOL vmlinux 0xd5e3cb91 netdev_adjacent_change_commit +EXPORT_SYMBOL vmlinux 0xd5ed37a8 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xd5fd90f1 prepare_to_wait +EXPORT_SYMBOL vmlinux 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL vmlinux 0xd6242d69 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xd62b1e45 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0xd62ecd49 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xd643239a acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xd64a651a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xd657cb85 setattr_copy +EXPORT_SYMBOL vmlinux 0xd66c8184 add_device_randomness +EXPORT_SYMBOL vmlinux 0xd6742a28 vm_event_states +EXPORT_SYMBOL vmlinux 0xd67f0450 setup_new_exec +EXPORT_SYMBOL vmlinux 0xd6839dac flow_rule_match_tcp +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68c5a1f adjust_resource +EXPORT_SYMBOL vmlinux 0xd6916c9a file_modified +EXPORT_SYMBOL vmlinux 0xd691c6a9 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd695ae8c fput +EXPORT_SYMBOL vmlinux 0xd6a91f54 twl_i2c_read +EXPORT_SYMBOL vmlinux 0xd6ba1876 block_read_full_folio +EXPORT_SYMBOL vmlinux 0xd6c37011 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xd6eaaea1 full_name_hash +EXPORT_SYMBOL vmlinux 0xd6ec4fd0 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f8d262 rproc_elf_load_segments +EXPORT_SYMBOL vmlinux 0xd6fde043 is_module_sig_enforced +EXPORT_SYMBOL vmlinux 0xd7012888 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xd706c44c get_fs_type +EXPORT_SYMBOL vmlinux 0xd70aa77a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd70d35a1 gf128mul_4k_bbe +EXPORT_SYMBOL vmlinux 0xd70f62b6 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xd71c2f01 cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0xd738ca1b phy_unregister_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xd73c8c2b synchronize_shrinkers +EXPORT_SYMBOL vmlinux 0xd73dc44b security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0xd745c898 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xd7482f05 vcalloc +EXPORT_SYMBOL vmlinux 0xd74b1c3e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xd74b9d5b dma_resv_iter_first_unlocked +EXPORT_SYMBOL vmlinux 0xd751a366 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xd75f95fe dma_set_mask +EXPORT_SYMBOL vmlinux 0xd76fb21f hmm_range_fault +EXPORT_SYMBOL vmlinux 0xd774a36a zap_page_range +EXPORT_SYMBOL vmlinux 0xd781a504 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd7856c46 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xd7987177 utf8_load +EXPORT_SYMBOL vmlinux 0xd7b0058a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xd7ce78c3 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xd7d280ad irq_poll_complete +EXPORT_SYMBOL vmlinux 0xd7e2a8e7 cros_ec_get_next_event +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f4fc80 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd7f6e665 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd7fdb92e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xd7ff1b8a __ashlti3 +EXPORT_SYMBOL vmlinux 0xd8054959 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd8131274 qman_alloc_cgrid_range +EXPORT_SYMBOL vmlinux 0xd81321e3 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xd828f063 xudma_tchanrt_write +EXPORT_SYMBOL vmlinux 0xd83c9120 devm_alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd8730923 unpin_user_page_range_dirty_lock +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a98c3e skb_trim +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b61304 get_default_font +EXPORT_SYMBOL vmlinux 0xd8c1c7c8 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xd8ceff1d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xd8df08ac acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xd8eae6d9 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xd919e0c8 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xd91f6ab6 strnlen_user +EXPORT_SYMBOL vmlinux 0xd92deb6b acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xd92e5eab xudma_get_device +EXPORT_SYMBOL vmlinux 0xd93737ba dcb_ieee_getapp_prio_dscp_mask_map +EXPORT_SYMBOL vmlinux 0xd9491c14 xa_destroy +EXPORT_SYMBOL vmlinux 0xd961b360 stop_tty +EXPORT_SYMBOL vmlinux 0xd9637ea6 blackhole_netdev +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9966f61 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xd9a5ea54 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xd9ab595b of_find_property +EXPORT_SYMBOL vmlinux 0xd9b3fb0a invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd9b85ef6 lockref_get +EXPORT_SYMBOL vmlinux 0xd9b8eaea __SCK__tp_func_dma_fence_signaled +EXPORT_SYMBOL vmlinux 0xd9be3f59 lookup_one_len_unlocked +EXPORT_SYMBOL vmlinux 0xd9d39e6e devm_nvmem_cell_put +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9d952d1 crypto_aes_sbox +EXPORT_SYMBOL vmlinux 0xd9e6237f rtnl_unicast +EXPORT_SYMBOL vmlinux 0xd9e6a04c tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xd9e96cda qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xd9f7518a jbd2_fc_release_bufs +EXPORT_SYMBOL vmlinux 0xda0500de skb_pull_data +EXPORT_SYMBOL vmlinux 0xda10443c xudma_tchan_get_id +EXPORT_SYMBOL vmlinux 0xda120a6c blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xda1d059c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xda2471ef netif_tx_lock +EXPORT_SYMBOL vmlinux 0xda2c79e8 km_state_notify +EXPORT_SYMBOL vmlinux 0xda3aedd1 tcp_req_err +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3d57bb mipi_dsi_picture_parameter_set +EXPORT_SYMBOL vmlinux 0xda4b02d6 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xda77321e security_d_instantiate +EXPORT_SYMBOL vmlinux 0xda84024d brioctl_set +EXPORT_SYMBOL vmlinux 0xda8e3c4e flow_rule_match_icmp +EXPORT_SYMBOL vmlinux 0xda8f8289 dma_resv_replace_fences +EXPORT_SYMBOL vmlinux 0xda961788 inet_ioctl +EXPORT_SYMBOL vmlinux 0xda9e1725 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xdaa5e463 init_pseudo +EXPORT_SYMBOL vmlinux 0xdaae20ca __scm_destroy +EXPORT_SYMBOL vmlinux 0xdab3a0dd devm_release_resource +EXPORT_SYMBOL vmlinux 0xdac1737a tcf_exts_num_actions +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdaca820e dynamic_preempt_schedule +EXPORT_SYMBOL vmlinux 0xdad1fc3f zstd_flush_stream +EXPORT_SYMBOL vmlinux 0xdaea473f fs_param_is_blockdev +EXPORT_SYMBOL vmlinux 0xdaec288d pr_flush +EXPORT_SYMBOL vmlinux 0xdaf6faa5 genl_notify +EXPORT_SYMBOL vmlinux 0xdafe6d83 dev_get_port_parent_id +EXPORT_SYMBOL vmlinux 0xdb11adf3 dst_init +EXPORT_SYMBOL vmlinux 0xdb220979 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xdb24fc4b filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xdb2abde4 __cpuhp_remove_state +EXPORT_SYMBOL vmlinux 0xdb402538 skb_flow_dissect_tunnel_info +EXPORT_SYMBOL vmlinux 0xdb462fbb udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xdb558551 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb709c28 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7d17c2 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xdb87b0bf generic_update_time +EXPORT_SYMBOL vmlinux 0xdb889252 may_umount_tree +EXPORT_SYMBOL vmlinux 0xdbcf041a acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xdbdf6c92 ioport_resource +EXPORT_SYMBOL vmlinux 0xdbeaf617 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xdbf1f59c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xdbf8c5cf get_user_pages_remote +EXPORT_SYMBOL vmlinux 0xdbfcd04b pci_ep_cfs_remove_epc_group +EXPORT_SYMBOL vmlinux 0xdc013314 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xdc06719c pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xdc11a913 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc34158f fman_port_init +EXPORT_SYMBOL vmlinux 0xdc3564b1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc49c198 reciprocal_value_adv +EXPORT_SYMBOL vmlinux 0xdc4a973f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xdc4ec0c6 pci_disable_device +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc598fe4 tcf_get_next_chain +EXPORT_SYMBOL vmlinux 0xdc65c1d3 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xdc698225 fbcon_update_vcs +EXPORT_SYMBOL vmlinux 0xdc79d74f rproc_add_subdev +EXPORT_SYMBOL vmlinux 0xdc7b38f0 phy_sfp_probe +EXPORT_SYMBOL vmlinux 0xdc8e6396 mr_mfc_seq_next +EXPORT_SYMBOL vmlinux 0xdca8c3d4 logic_outb +EXPORT_SYMBOL vmlinux 0xdca9dc70 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcc0cfaf skb_tx_error +EXPORT_SYMBOL vmlinux 0xdcd02249 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xdcdc0040 slhc_compress +EXPORT_SYMBOL vmlinux 0xdce2bce2 __traceiter_mmap_lock_start_locking +EXPORT_SYMBOL vmlinux 0xdcf285cb thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xdd00447a acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xdd18a993 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdd2c169b mb_cache_create +EXPORT_SYMBOL vmlinux 0xdd3c6ba2 dev_load +EXPORT_SYMBOL vmlinux 0xdd48c913 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xdd4d55b6 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xdd5df447 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd7e3192 qcom_scm_pas_auth_and_reset +EXPORT_SYMBOL vmlinux 0xdd7e41eb mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xdd8166a1 dma_fence_free +EXPORT_SYMBOL vmlinux 0xdd849d51 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0xdd8bceb7 flow_block_cb_free +EXPORT_SYMBOL vmlinux 0xdd97a75d ip6_fraglist_init +EXPORT_SYMBOL vmlinux 0xdda6410d input_get_timestamp +EXPORT_SYMBOL vmlinux 0xddad7952 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xddb5d792 ip_sock_set_pktinfo +EXPORT_SYMBOL vmlinux 0xddbd4dfb fb_find_mode +EXPORT_SYMBOL vmlinux 0xdde33aa3 simple_release_fs +EXPORT_SYMBOL vmlinux 0xddeaed03 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xddf6ad7a completion_done +EXPORT_SYMBOL vmlinux 0xde1b03ec free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xde233919 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xde293f9e add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xde32f80b sget +EXPORT_SYMBOL vmlinux 0xde36f56d fault_in_iov_iter_writeable +EXPORT_SYMBOL vmlinux 0xde49fd08 phy_reset_after_clk_enable +EXPORT_SYMBOL vmlinux 0xde4d4ace dim_calc_stats +EXPORT_SYMBOL vmlinux 0xde5a7130 input_release_device +EXPORT_SYMBOL vmlinux 0xde7685f4 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xde9293e5 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xde9fb549 __mdiobus_write +EXPORT_SYMBOL vmlinux 0xdea6c790 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xded09ee3 filemap_invalidate_unlock_two +EXPORT_SYMBOL vmlinux 0xded39a6b gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xdef2191a scm_fp_dup +EXPORT_SYMBOL vmlinux 0xdef7c893 fb_match_mode +EXPORT_SYMBOL vmlinux 0xdef94cb5 __dec_node_page_state +EXPORT_SYMBOL vmlinux 0xdf0b08da cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xdf1732b9 phy_do_ioctl_running +EXPORT_SYMBOL vmlinux 0xdf181bdd acpi_dev_hid_uid_match +EXPORT_SYMBOL vmlinux 0xdf256037 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0xdf2ab7c8 pcie_get_speed_cap +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2ebb87 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xdf339378 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xdf36914b xa_find_after +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf646f75 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xdf6b082f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xdf6c8c98 dma_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9f5c95 configfs_depend_item_unlocked +EXPORT_SYMBOL vmlinux 0xdfa2903f fs_context_for_mount +EXPORT_SYMBOL vmlinux 0xdfbd1dc0 par_io_of_config +EXPORT_SYMBOL vmlinux 0xdfc12ef1 zstd_decompress_stream +EXPORT_SYMBOL vmlinux 0xdfcb9e99 flow_block_cb_alloc +EXPORT_SYMBOL vmlinux 0xdfcc992c current_work +EXPORT_SYMBOL vmlinux 0xdfd96c81 key_move +EXPORT_SYMBOL vmlinux 0xdfd99bf1 dst_alloc +EXPORT_SYMBOL vmlinux 0xdfeb7240 folio_migrate_copy +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffc80fc vesa_modes +EXPORT_SYMBOL vmlinux 0xe009d169 inet_sk_set_state +EXPORT_SYMBOL vmlinux 0xe00ac9a4 param_get_ullong +EXPORT_SYMBOL vmlinux 0xe00ccf5a d_splice_alias +EXPORT_SYMBOL vmlinux 0xe0198f59 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xe01f9ab9 component_match_add_typed +EXPORT_SYMBOL vmlinux 0xe02b250a generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe02c9c92 __xa_erase +EXPORT_SYMBOL vmlinux 0xe03a689d dma_fence_array_ops +EXPORT_SYMBOL vmlinux 0xe0419ac4 kstrtos16 +EXPORT_SYMBOL vmlinux 0xe04b4cb1 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xe05c373e folio_wait_bit +EXPORT_SYMBOL vmlinux 0xe061cb78 simple_unlink +EXPORT_SYMBOL vmlinux 0xe070019a __cpuhp_setup_state_cpuslocked +EXPORT_SYMBOL vmlinux 0xe072c0d1 tcf_idr_release +EXPORT_SYMBOL vmlinux 0xe07e5f44 acpi_reconfig_notifier_unregister +EXPORT_SYMBOL vmlinux 0xe07f834d component_match_add_release +EXPORT_SYMBOL vmlinux 0xe080e8f0 set_current_groups +EXPORT_SYMBOL vmlinux 0xe082e88d acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe08f0a21 textsearch_register +EXPORT_SYMBOL vmlinux 0xe091c977 list_sort +EXPORT_SYMBOL vmlinux 0xe099131a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xe09d1085 gpiochip_irq_reqres +EXPORT_SYMBOL vmlinux 0xe0a323f6 __do_once_slow_start +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bb0756 pci_set_master +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0cbb780 blk_queue_max_secure_erase_sectors +EXPORT_SYMBOL vmlinux 0xe0edf3e6 tcp_sock_set_syncnt +EXPORT_SYMBOL vmlinux 0xe10e161f try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe1232cff napi_enable +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 0xe14115eb eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xe1490411 genphy_update_link +EXPORT_SYMBOL vmlinux 0xe1544f4e pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe16a1aba seq_open +EXPORT_SYMBOL vmlinux 0xe17059c6 phy_ethtool_ksettings_get +EXPORT_SYMBOL vmlinux 0xe17e6e84 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xe193afbd genphy_handle_interrupt_no_ack +EXPORT_SYMBOL vmlinux 0xe19cdb09 dm_put_device +EXPORT_SYMBOL vmlinux 0xe19d6630 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xe19df2dd ppp_register_channel +EXPORT_SYMBOL vmlinux 0xe1a82998 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xe1a93800 setattr_prepare +EXPORT_SYMBOL vmlinux 0xe1b4a344 fb_blank +EXPORT_SYMBOL vmlinux 0xe1bf94b1 mq_change_real_num_tx +EXPORT_SYMBOL vmlinux 0xe1c78014 __ps2_command +EXPORT_SYMBOL vmlinux 0xe1dcf64a audit_log_format +EXPORT_SYMBOL vmlinux 0xe1ffcfc5 fman_get_bmi_max_fifo_size +EXPORT_SYMBOL vmlinux 0xe2131dcc pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xe2172e02 cpu_hwcaps +EXPORT_SYMBOL vmlinux 0xe21f18ac __genradix_iter_peek +EXPORT_SYMBOL vmlinux 0xe22e1098 mdiobus_register_device +EXPORT_SYMBOL vmlinux 0xe247d2d5 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xe266a4f8 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xe273d75d alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0xe27a3bfb pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xe29f9235 d_alloc_name +EXPORT_SYMBOL vmlinux 0xe29fb55b imx_scu_enable_general_irq_channel +EXPORT_SYMBOL vmlinux 0xe2ce58a7 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d57b5d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xe30d6503 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xe31ba5f1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe31ddeea nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xe322f183 i2c_transfer_buffer_flags +EXPORT_SYMBOL vmlinux 0xe32ab4d8 xxh64_digest +EXPORT_SYMBOL vmlinux 0xe374f98d scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xe388deb0 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xe39b2ea5 sha256 +EXPORT_SYMBOL vmlinux 0xe3b0a6f3 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xe3cee728 udp_gro_complete +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 0xe4045310 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xe4095deb jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xe40976c0 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0xe40c37ea down_write_trylock +EXPORT_SYMBOL vmlinux 0xe41e87f7 close_fd_get_file +EXPORT_SYMBOL vmlinux 0xe4329092 __ctzdi2 +EXPORT_SYMBOL vmlinux 0xe452f149 netdev_warn +EXPORT_SYMBOL vmlinux 0xe46021ca _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe467b154 __skb_wait_for_more_packets +EXPORT_SYMBOL vmlinux 0xe4a05b38 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xe4a67b3d tegra_ivc_write_advance +EXPORT_SYMBOL vmlinux 0xe4bbc1dd kimage_voffset +EXPORT_SYMBOL vmlinux 0xe4bc2c2f hdmi_drm_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe4c23de0 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe4c74d73 pci_read_config_byte +EXPORT_SYMBOL vmlinux 0xe4e2b08d tcf_qevent_validate_change +EXPORT_SYMBOL vmlinux 0xe4ed7561 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xe4ef29d4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xe4fd0c2f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe4ff0308 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xe50020f3 param_ops_hexint +EXPORT_SYMBOL vmlinux 0xe504bb6e ipmi_platform_add +EXPORT_SYMBOL vmlinux 0xe50efc22 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe5152c07 jbd2_fc_end_commit +EXPORT_SYMBOL vmlinux 0xe51ba985 dma_mmap_attrs +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5304bc8 netif_inherit_tso_max +EXPORT_SYMBOL vmlinux 0xe53764fd __SetPageMovable +EXPORT_SYMBOL vmlinux 0xe57861aa sock_register +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 0xe5a25db4 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xe5a78d07 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xe5aecee1 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xe5bce164 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0xe5c5b87a security_path_rename +EXPORT_SYMBOL vmlinux 0xe5c60bd2 percpu_counter_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cb35d1 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe60fd3ce dqget +EXPORT_SYMBOL vmlinux 0xe613a798 inet_addr_is_any +EXPORT_SYMBOL vmlinux 0xe61ecb39 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe624524a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe634340e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe639ea0a task_work_add +EXPORT_SYMBOL vmlinux 0xe64c5677 nexthop_set_hw_flags +EXPORT_SYMBOL vmlinux 0xe6540346 fs_bio_set +EXPORT_SYMBOL vmlinux 0xe6550092 utf8_casefold +EXPORT_SYMBOL vmlinux 0xe68e6a8d iunique +EXPORT_SYMBOL vmlinux 0xe68efe41 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe6beae88 folio_add_lru +EXPORT_SYMBOL vmlinux 0xe6d2458e do_trace_netlink_extack +EXPORT_SYMBOL vmlinux 0xe6f9a8d4 phy_ethtool_ksettings_set +EXPORT_SYMBOL vmlinux 0xe6fa06a2 rename_lock +EXPORT_SYMBOL vmlinux 0xe711e7de blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe723b95d flow_rule_match_ipv6_addrs +EXPORT_SYMBOL vmlinux 0xe7257ab8 xa_store_range +EXPORT_SYMBOL vmlinux 0xe7306d0d pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe740b1f8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe7698027 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe769c845 scmd_printk +EXPORT_SYMBOL vmlinux 0xe76c0fb5 bdevname +EXPORT_SYMBOL vmlinux 0xe774e245 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xe786da9b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe7948fa1 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe7a02573 ida_alloc_range +EXPORT_SYMBOL vmlinux 0xe7a987f1 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xe7ab1ecc _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xe7b98195 get_tree_single_reconf +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d9f21a fb_class +EXPORT_SYMBOL vmlinux 0xe8330a5a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xe84d565b noop_dirty_folio +EXPORT_SYMBOL vmlinux 0xe84eac85 input_free_device +EXPORT_SYMBOL vmlinux 0xe85d196b rproc_add_carveout +EXPORT_SYMBOL vmlinux 0xe85f2123 acpi_tb_unload_table +EXPORT_SYMBOL vmlinux 0xe8692f2d inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe885c063 xp_free +EXPORT_SYMBOL vmlinux 0xe8870743 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xe88c685e pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xe8a029d5 sock_wfree +EXPORT_SYMBOL vmlinux 0xe8b41615 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xe8b468a1 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0xe8b5c3c3 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xe8cc2bb0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xe8d55c6b __vfs_getxattr +EXPORT_SYMBOL vmlinux 0xe8dbf57e blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe8eb140d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe8f3b30b param_set_int +EXPORT_SYMBOL vmlinux 0xe8fbf4fa __alloc_bucket_spinlocks +EXPORT_SYMBOL vmlinux 0xe8ff8027 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xe90253f0 xudma_rflow_get +EXPORT_SYMBOL vmlinux 0xe909997a bitmap_print_list_to_buf +EXPORT_SYMBOL vmlinux 0xe90ef9e7 mii_link_ok +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9219ee6 kill_pgrp +EXPORT_SYMBOL vmlinux 0xe94ec3fb kill_anon_super +EXPORT_SYMBOL vmlinux 0xe952e5fa param_get_int +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe97d6536 rpmh_invalidate +EXPORT_SYMBOL vmlinux 0xe982da3c get_ipc_ns_exported +EXPORT_SYMBOL vmlinux 0xe9897521 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xe9af7397 __xa_set_mark +EXPORT_SYMBOL vmlinux 0xe9dc12a4 zstd_get_error_name +EXPORT_SYMBOL vmlinux 0xe9e472d5 pci_alloc_host_bridge +EXPORT_SYMBOL vmlinux 0xe9e76173 freeze_bdev +EXPORT_SYMBOL vmlinux 0xe9e8faeb efi_tpm_final_log_size +EXPORT_SYMBOL vmlinux 0xe9ec2a67 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xe9ef8c20 lease_modify +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 0xea3c8e4e scsilun_to_int +EXPORT_SYMBOL vmlinux 0xea666bd2 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xea6f9a36 zlib_deflate_dfltcc_enabled +EXPORT_SYMBOL vmlinux 0xea778fab sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0xea79f2e1 dm_register_target +EXPORT_SYMBOL vmlinux 0xea8cc608 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xeab6d14d skb_ext_add +EXPORT_SYMBOL vmlinux 0xeab6f4c4 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xead8c400 bman_get_bpid +EXPORT_SYMBOL vmlinux 0xeadba79b serio_interrupt +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae406ce tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xeaf3f2be put_ipc_ns +EXPORT_SYMBOL vmlinux 0xeaf4512e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xeafb9fe0 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xeafc141f __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeb00d46b ip_fraglist_init +EXPORT_SYMBOL vmlinux 0xeb078aee _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xeb0a316c __block_write_begin +EXPORT_SYMBOL vmlinux 0xeb1e936a inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xeb233a45 __kmalloc +EXPORT_SYMBOL vmlinux 0xeb2f0c1f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb4506a9 pcim_iomap +EXPORT_SYMBOL vmlinux 0xeb4581b4 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xeb5496a3 generic_pipe_buf_try_steal +EXPORT_SYMBOL vmlinux 0xeb7312bb sock_no_getname +EXPORT_SYMBOL vmlinux 0xeb7329a2 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xeb7f6046 acpi_get_devices +EXPORT_SYMBOL vmlinux 0xeb7f61b7 uart_register_driver +EXPORT_SYMBOL vmlinux 0xeb8fc3fd dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xeb9ae72e netdev_info +EXPORT_SYMBOL vmlinux 0xeb9e913d sgl_alloc_order +EXPORT_SYMBOL vmlinux 0xeb9eef52 match_uint +EXPORT_SYMBOL vmlinux 0xeba7ee96 netif_skb_features +EXPORT_SYMBOL vmlinux 0xebac9528 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xebb09a96 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xebb8bebe scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xebcaa35f nf_log_register +EXPORT_SYMBOL vmlinux 0xebcbb86a rproc_of_parse_firmware +EXPORT_SYMBOL vmlinux 0xebdec591 page_pool_update_nid +EXPORT_SYMBOL vmlinux 0xebe8b479 register_sysctl_mount_point +EXPORT_SYMBOL vmlinux 0xebed22c8 acpi_dev_get_next_match_dev +EXPORT_SYMBOL vmlinux 0xebf4f52c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xebff023a ethtool_get_phc_vclocks +EXPORT_SYMBOL vmlinux 0xec09204f inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xec0e7367 __invalidate_device +EXPORT_SYMBOL vmlinux 0xec1c4cbc __register_chrdev +EXPORT_SYMBOL vmlinux 0xec216f59 __traceiter_mmap_lock_acquire_returned +EXPORT_SYMBOL vmlinux 0xec26ba9a blk_mq_tagset_wait_completed_request +EXPORT_SYMBOL vmlinux 0xec2b8a42 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xec2e1c8f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xec2f55c7 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xec33c668 __SCK__tp_func_spi_transfer_start +EXPORT_SYMBOL vmlinux 0xec41716a qman_alloc_fqid_range +EXPORT_SYMBOL vmlinux 0xec47b05f netdev_adjacent_change_prepare +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec8eba58 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xec916cf0 param_set_bint +EXPORT_SYMBOL vmlinux 0xec935173 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xeca6fd31 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xecbb7b77 empty_aops +EXPORT_SYMBOL vmlinux 0xecc1b5ad phy_find_first +EXPORT_SYMBOL vmlinux 0xeccb98ae config_item_get +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed00c4fb acpi_os_printf +EXPORT_SYMBOL vmlinux 0xed0cbf0f touchscreen_report_pos +EXPORT_SYMBOL vmlinux 0xed109c41 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xed2296bb rtc_add_groups +EXPORT_SYMBOL vmlinux 0xed238617 __put_cred +EXPORT_SYMBOL vmlinux 0xed30f368 devm_memunmap +EXPORT_SYMBOL vmlinux 0xed3aead2 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xed3e9ab6 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xed55f929 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0xed656e30 udp_encap_disable +EXPORT_SYMBOL vmlinux 0xed815313 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xed8999cb lookup_positive_unlocked +EXPORT_SYMBOL vmlinux 0xed8a2d95 memset64 +EXPORT_SYMBOL vmlinux 0xed90bdee __nla_put +EXPORT_SYMBOL vmlinux 0xed991369 param_ops_bint +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd17b31 sock_get_timeout +EXPORT_SYMBOL vmlinux 0xede3ac46 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xede499be netif_set_tso_max_segs +EXPORT_SYMBOL vmlinux 0xee034ce5 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xee073174 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xee07584a dcache_readdir +EXPORT_SYMBOL vmlinux 0xee11ef90 __cgroup_bpf_run_filter_sk +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee4ab5fc seq_hex_dump +EXPORT_SYMBOL vmlinux 0xee58e970 fb_add_videomode +EXPORT_SYMBOL vmlinux 0xee596ade cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xee5d2a13 free_buffer_head +EXPORT_SYMBOL vmlinux 0xee61a344 pci_release_region +EXPORT_SYMBOL vmlinux 0xee7d7deb gen_pool_dma_zalloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee838c17 param_get_ushort +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 0xeeab7433 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xeec51008 fwnode_phy_find_device +EXPORT_SYMBOL vmlinux 0xeee75d91 ucc_fast_init +EXPORT_SYMBOL vmlinux 0xeef71d7c unpin_user_pages_dirty_lock +EXPORT_SYMBOL vmlinux 0xef11c973 vmf_insert_pfn +EXPORT_SYMBOL vmlinux 0xef28eaf8 crypto_kdf108_ctr_generate +EXPORT_SYMBOL vmlinux 0xef4a7da5 skb_append +EXPORT_SYMBOL vmlinux 0xef4d3967 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xef4f1765 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xef53a17a iov_iter_xarray +EXPORT_SYMBOL vmlinux 0xef6500af flow_rule_match_enc_ip +EXPORT_SYMBOL vmlinux 0xef8ac53d qcom_scm_restore_sec_cfg +EXPORT_SYMBOL vmlinux 0xef8b07ee mii_ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xef96b03a fs_param_is_fd +EXPORT_SYMBOL vmlinux 0xef9b82dd __mdiobus_register +EXPORT_SYMBOL vmlinux 0xef9c57e3 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xefa48acc register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xefa5d3cb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xefaf1aae rproc_da_to_va +EXPORT_SYMBOL vmlinux 0xefaf2e4f tcf_queue_work +EXPORT_SYMBOL vmlinux 0xefbfa666 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xefc67050 __cpu_active_mask +EXPORT_SYMBOL vmlinux 0xefcea2e7 acpi_warning +EXPORT_SYMBOL vmlinux 0xefd2518d phy_stop +EXPORT_SYMBOL vmlinux 0xefd3731b security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xefee932c acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xefeefc09 __SCK__tp_func_dma_fence_emit +EXPORT_SYMBOL vmlinux 0xeff4290a vfs_llseek +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00ca587 posix_lock_file +EXPORT_SYMBOL vmlinux 0xf018d291 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf025b353 pci_ep_cfs_remove_epf_group +EXPORT_SYMBOL vmlinux 0xf02aa937 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xf04aa302 pci_ep_cfs_add_epf_group +EXPORT_SYMBOL vmlinux 0xf068597e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xf06bb7ce ptp_schedule_worker +EXPORT_SYMBOL vmlinux 0xf06fc724 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xf08a5456 fget_raw +EXPORT_SYMBOL vmlinux 0xf09747ea kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xf09b3505 qdisc_watchdog_schedule_range_ns +EXPORT_SYMBOL vmlinux 0xf09b5d9a get_zeroed_page +EXPORT_SYMBOL vmlinux 0xf0a6d77f try_module_get +EXPORT_SYMBOL vmlinux 0xf0a71b1b revert_creds +EXPORT_SYMBOL vmlinux 0xf0b2419f cmd_db_read_aux_data +EXPORT_SYMBOL vmlinux 0xf0b2ec5a elv_rb_del +EXPORT_SYMBOL vmlinux 0xf0ca5ae6 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xf0cc99e4 tegra_ivc_reset +EXPORT_SYMBOL vmlinux 0xf1018e2b mipi_dsi_device_unregister +EXPORT_SYMBOL vmlinux 0xf10aa816 km_policy_notify +EXPORT_SYMBOL vmlinux 0xf10aca0e tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf113e455 vfs_symlink +EXPORT_SYMBOL vmlinux 0xf11c3037 kset_register +EXPORT_SYMBOL vmlinux 0xf11dd46e _page_poisoning_enabled_early +EXPORT_SYMBOL vmlinux 0xf155b88c vfs_fileattr_set +EXPORT_SYMBOL vmlinux 0xf15e73f1 dump_page +EXPORT_SYMBOL vmlinux 0xf17543bc bdi_alloc +EXPORT_SYMBOL vmlinux 0xf18300ad logic_inb +EXPORT_SYMBOL vmlinux 0xf1954fa4 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a231dd request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf1a65f7b zstd_reset_dstream +EXPORT_SYMBOL vmlinux 0xf1a665b6 console_stop +EXPORT_SYMBOL vmlinux 0xf1a96e91 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xf1b37ee9 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf1d2c85d tcp_disconnect +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e046cc panic +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f0b09a file_check_and_advance_wb_err +EXPORT_SYMBOL vmlinux 0xf1f4630c inet_recvmsg +EXPORT_SYMBOL vmlinux 0xf1ff63eb dm_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf203adb5 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xf21c4535 proc_create_data +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf248240e tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xf254e7c8 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf2628676 zstd_compress_cctx +EXPORT_SYMBOL vmlinux 0xf2669a2c imx_scu_irq_register_notifier +EXPORT_SYMBOL vmlinux 0xf26d99d7 seq_write +EXPORT_SYMBOL vmlinux 0xf28721a7 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xf28cf0ae __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf29403e5 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xf29983e7 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf29f8515 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xf2ac5347 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf2b67714 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ccf9ba registered_fb +EXPORT_SYMBOL vmlinux 0xf2d2bbaf in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xf2d58675 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf2d95a92 phy_disconnect +EXPORT_SYMBOL vmlinux 0xf2de2e81 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf2e0dd20 devm_devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xf2e18678 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xf2e5bd87 security_free_mnt_opts +EXPORT_SYMBOL vmlinux 0xf2f3f434 ptp_clock_register +EXPORT_SYMBOL vmlinux 0xf2f53617 memregion_free +EXPORT_SYMBOL vmlinux 0xf2f6f49a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf2fefca4 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xf3107926 sha224_update +EXPORT_SYMBOL vmlinux 0xf3224572 register_qdisc +EXPORT_SYMBOL vmlinux 0xf3253ad1 filemap_range_has_page +EXPORT_SYMBOL vmlinux 0xf3327d8f qdisc_watchdog_init_clockid +EXPORT_SYMBOL vmlinux 0xf341ee35 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf343a145 __scm_send +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3619d0a mdio_device_register +EXPORT_SYMBOL vmlinux 0xf36d24d3 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xf36f42a9 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3932313 mb_cache_entry_wait_unused +EXPORT_SYMBOL vmlinux 0xf3987ef3 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xf3a57892 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xf3a8b125 input_reset_device +EXPORT_SYMBOL vmlinux 0xf3ac22b5 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xf3afd774 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf3b68543 dcb_ieee_getapp_dscp_prio_mask_map +EXPORT_SYMBOL vmlinux 0xf3c09671 thermal_zone_device_critical +EXPORT_SYMBOL vmlinux 0xf3e0e1df allocate_resource +EXPORT_SYMBOL vmlinux 0xf3eb2e43 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xf3f08cf9 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf3f8e221 iov_iter_pipe +EXPORT_SYMBOL vmlinux 0xf3fc8a70 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xf407be09 page_pool_alloc_pages +EXPORT_SYMBOL vmlinux 0xf412f61b from_kuid_munged +EXPORT_SYMBOL vmlinux 0xf415e856 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xf4241b04 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf4264866 xfrm_parse_spi +EXPORT_SYMBOL vmlinux 0xf43d2caa acpi_remove_interface +EXPORT_SYMBOL vmlinux 0xf440b590 generic_writepages +EXPORT_SYMBOL vmlinux 0xf4467d21 proc_set_user +EXPORT_SYMBOL vmlinux 0xf44a904a net_ns_barrier +EXPORT_SYMBOL vmlinux 0xf4506e92 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xf45325a4 reuseport_migrate_sock +EXPORT_SYMBOL vmlinux 0xf47050d1 page_readlink +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47e6198 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xf4807b1b mdiobb_write +EXPORT_SYMBOL vmlinux 0xf4853e91 sunxi_sram_claim +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bba0c5 phy_get_pause +EXPORT_SYMBOL vmlinux 0xf4bdc798 mdio_device_free +EXPORT_SYMBOL vmlinux 0xf4d8d24f register_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xf4db35bc stpcpy +EXPORT_SYMBOL vmlinux 0xf4eb061f sync_blockdev_range +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50c2343 show_init_ipc_ns +EXPORT_SYMBOL vmlinux 0xf529f705 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xf52ff0c3 md_bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xf537a7b0 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5562687 folio_mapping +EXPORT_SYMBOL vmlinux 0xf583e283 remove_conflicting_pci_framebuffers +EXPORT_SYMBOL vmlinux 0xf588ed65 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xf591753d nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf598d223 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xf59e3d6f mount_single +EXPORT_SYMBOL vmlinux 0xf5a1f1cb vme_irq_request +EXPORT_SYMBOL vmlinux 0xf5a20ed2 __genradix_prealloc +EXPORT_SYMBOL vmlinux 0xf5add0ae ns_capable_setid +EXPORT_SYMBOL vmlinux 0xf5b755e1 iov_iter_gap_alignment +EXPORT_SYMBOL vmlinux 0xf5cccff6 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xf5d0db43 devm_mfd_add_devices +EXPORT_SYMBOL vmlinux 0xf5da4caf copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xf5e7ea40 ktime_get_coarse_ts64 +EXPORT_SYMBOL vmlinux 0xf5ec6642 unregister_nexthop_notifier +EXPORT_SYMBOL vmlinux 0xf5ed7690 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xf616f1fd generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xf6273d65 misc_register +EXPORT_SYMBOL vmlinux 0xf62c39fe ucc_slow_graceful_stop_tx +EXPORT_SYMBOL vmlinux 0xf63afc1a tty_lock +EXPORT_SYMBOL vmlinux 0xf6427f45 genl_register_family +EXPORT_SYMBOL vmlinux 0xf643d104 hsiphash_4u32 +EXPORT_SYMBOL vmlinux 0xf665f74f sock_load_diag_module +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf684ea20 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xf6ac7c09 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf6b013f1 rt_mutex_base_init +EXPORT_SYMBOL vmlinux 0xf6bdd97e is_bad_inode +EXPORT_SYMBOL vmlinux 0xf6e95a97 tcf_action_update_hw_stats +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f9d58d init_on_free +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6febe07 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xf6ff3bd7 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xf71f0254 read_cache_folio +EXPORT_SYMBOL vmlinux 0xf722982c fqdir_exit +EXPORT_SYMBOL vmlinux 0xf7370f56 system_state +EXPORT_SYMBOL vmlinux 0xf738d1be register_blocking_lsm_notifier +EXPORT_SYMBOL vmlinux 0xf755e0f6 neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf756f34d thaw_bdev +EXPORT_SYMBOL vmlinux 0xf76843b5 qcom_scm_pas_supported +EXPORT_SYMBOL vmlinux 0xf7706367 dquot_operations +EXPORT_SYMBOL vmlinux 0xf77337a1 hdmi_audio_infoframe_check +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf77af218 sock_create_lite +EXPORT_SYMBOL vmlinux 0xf79ba179 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf7a96f02 folio_migrate_flags +EXPORT_SYMBOL vmlinux 0xf7af1d6d tcp_inbound_md5_hash +EXPORT_SYMBOL vmlinux 0xf7c48778 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xf7d31de9 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0xf7d961f0 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xf7da6e6f acpi_unload_table +EXPORT_SYMBOL vmlinux 0xf7dd58cb __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf7e08a47 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xf7ea6311 qman_p_poll_dqrr +EXPORT_SYMBOL vmlinux 0xf7f05c17 fman_port_use_kg_hash +EXPORT_SYMBOL vmlinux 0xf8025019 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xf80486e0 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf811281e fwnode_irq_get +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81c4fb0 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf81ee9ea watchdog_unregister_governor +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82b0fc1 netlbl_calipso_ops_register +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8379c56 xp_dma_map +EXPORT_SYMBOL vmlinux 0xf848b1a6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xf84bd6ee bpf_stats_enabled_key +EXPORT_SYMBOL vmlinux 0xf85c07e6 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xf866b00c tegra_io_pad_power_enable +EXPORT_SYMBOL vmlinux 0xf888ca21 sg_init_table +EXPORT_SYMBOL vmlinux 0xf8963cf2 simple_getattr +EXPORT_SYMBOL vmlinux 0xf8998e5b cpumask_next_and +EXPORT_SYMBOL vmlinux 0xf89e1820 fib_notifier_ops_unregister +EXPORT_SYMBOL vmlinux 0xf8a676cf fscrypt_ioctl_set_policy +EXPORT_SYMBOL vmlinux 0xf8ac6808 get_acl +EXPORT_SYMBOL vmlinux 0xf8b88f1a devfreq_update_target +EXPORT_SYMBOL vmlinux 0xf8c1d1fb bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf8cc9528 sock_init_data +EXPORT_SYMBOL vmlinux 0xf8d07858 bitmap_from_arr32 +EXPORT_SYMBOL vmlinux 0xf8d1419f dev_open +EXPORT_SYMBOL vmlinux 0xf8d2bc2c zstd_find_frame_compressed_size +EXPORT_SYMBOL vmlinux 0xf8edf5fa xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf8f182aa sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xf8f61ebc wake_up_var +EXPORT_SYMBOL vmlinux 0xf8f9a74a blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf90e5768 kthread_create_worker +EXPORT_SYMBOL vmlinux 0xf912fae5 free_task +EXPORT_SYMBOL vmlinux 0xf9165e42 serio_rescan +EXPORT_SYMBOL vmlinux 0xf91b89ab fman_sp_build_buffer_struct +EXPORT_SYMBOL vmlinux 0xf91e22ef devm_request_resource +EXPORT_SYMBOL vmlinux 0xf93438d9 genphy_check_and_restart_aneg +EXPORT_SYMBOL vmlinux 0xf9358cd0 inet_frag_pull_head +EXPORT_SYMBOL vmlinux 0xf93aae46 __arm_smccc_smc +EXPORT_SYMBOL vmlinux 0xf93fd09c fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xf9481dfb from_kprojid +EXPORT_SYMBOL vmlinux 0xf95d94d5 inode_insert5 +EXPORT_SYMBOL vmlinux 0xf969e188 dma_fence_array_next +EXPORT_SYMBOL vmlinux 0xf96e316a inet_release +EXPORT_SYMBOL vmlinux 0xf9722676 twl_i2c_write +EXPORT_SYMBOL vmlinux 0xf9791b26 mr_mfc_find_any +EXPORT_SYMBOL vmlinux 0xf97a689b gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xf989ac8c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xf9963280 prepare_to_swait_event +EXPORT_SYMBOL vmlinux 0xf99a9749 finish_swait +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a82a49 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c7b2ba dev_close +EXPORT_SYMBOL vmlinux 0xf9ca2eb4 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xf9d274ef xsk_uses_need_wakeup +EXPORT_SYMBOL vmlinux 0xf9fadccd sock_set_reuseaddr +EXPORT_SYMBOL vmlinux 0xf9fd9e99 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xfa042227 gnet_stats_add_basic +EXPORT_SYMBOL vmlinux 0xfa08c34a page_offline_end +EXPORT_SYMBOL vmlinux 0xfa21374c __traceiter_mmap_lock_released +EXPORT_SYMBOL vmlinux 0xfa297415 acpi_map_pxm_to_node +EXPORT_SYMBOL vmlinux 0xfa2e5f32 i2c_smbus_pec +EXPORT_SYMBOL vmlinux 0xfa40f7e3 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xfa514ee2 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5f88dd gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xfaa193e6 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfaa35073 ipv6_dev_find +EXPORT_SYMBOL vmlinux 0xfaaa12d0 _page_poisoning_enabled +EXPORT_SYMBOL vmlinux 0xfab2164f dquot_quota_off +EXPORT_SYMBOL vmlinux 0xfabb9ed3 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfad85dca kobject_put +EXPORT_SYMBOL vmlinux 0xfaf9eba2 of_get_parent +EXPORT_SYMBOL vmlinux 0xfb03691b pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xfb154e0b mii_check_media +EXPORT_SYMBOL vmlinux 0xfb331c09 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xfb348fea fault_in_safe_writeable +EXPORT_SYMBOL vmlinux 0xfb384d37 kasprintf +EXPORT_SYMBOL vmlinux 0xfb563d5e tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb97c88e kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xfba7ddd2 match_u64 +EXPORT_SYMBOL vmlinux 0xfbaaa245 dm_table_get_md +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbad3cf0 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xfbb8a761 strscpy_pad +EXPORT_SYMBOL vmlinux 0xfbbdb4b6 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbdcbe28 jbd2_fc_wait_bufs +EXPORT_SYMBOL vmlinux 0xfbe4b175 qman_create_cgr +EXPORT_SYMBOL vmlinux 0xfbe8ee28 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0xfbfa77dd backlight_force_update +EXPORT_SYMBOL vmlinux 0xfbffffdb fscrypt_has_permitted_context +EXPORT_SYMBOL vmlinux 0xfc075d0b reuseport_detach_sock +EXPORT_SYMBOL vmlinux 0xfc270680 dquot_get_next_id +EXPORT_SYMBOL vmlinux 0xfc277e97 filemap_release_folio +EXPORT_SYMBOL vmlinux 0xfc336d2e __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc346cd8 xfrm_trans_queue_net +EXPORT_SYMBOL vmlinux 0xfc4152fc ec_read +EXPORT_SYMBOL vmlinux 0xfc421e79 gnet_stats_add_queue +EXPORT_SYMBOL vmlinux 0xfc527fc0 sk_common_release +EXPORT_SYMBOL vmlinux 0xfc52abc7 qcom_scm_pas_shutdown +EXPORT_SYMBOL vmlinux 0xfc5f667e ip_tunnel_header_ops +EXPORT_SYMBOL vmlinux 0xfc881b89 fman_port_get_hash_result_offset +EXPORT_SYMBOL vmlinux 0xfc9ed8c3 qcom_scm_ice_available +EXPORT_SYMBOL vmlinux 0xfca9e5ab acpi_mdiobus_register +EXPORT_SYMBOL vmlinux 0xfcb33253 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xfcc36bc1 flow_block_cb_lookup +EXPORT_SYMBOL vmlinux 0xfcce2f7d ucc_fast_enable +EXPORT_SYMBOL vmlinux 0xfcd1819a hdmi_spd_infoframe_check +EXPORT_SYMBOL vmlinux 0xfcd4e02c blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xfce43727 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfd071ef3 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xfd2c2f38 input_allocate_device +EXPORT_SYMBOL vmlinux 0xfd332bca mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xfd3df73e open_with_fake_path +EXPORT_SYMBOL vmlinux 0xfd47b7d6 generic_listxattr +EXPORT_SYMBOL vmlinux 0xfd4b96f8 unix_detach_fds +EXPORT_SYMBOL vmlinux 0xfd58709d scsi_ioctl +EXPORT_SYMBOL vmlinux 0xfd66cca9 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xfd6d7d8f rio_query_mport +EXPORT_SYMBOL vmlinux 0xfd727696 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xfd77ada9 __mmap_lock_do_trace_acquire_returned +EXPORT_SYMBOL vmlinux 0xfd79c8c0 blk_rq_init +EXPORT_SYMBOL vmlinux 0xfd9ddd19 may_setattr +EXPORT_SYMBOL vmlinux 0xfda19eaf dump_skip_to +EXPORT_SYMBOL vmlinux 0xfdbcb3bc flush_signals +EXPORT_SYMBOL vmlinux 0xfdcb4ed3 acpi_os_get_line +EXPORT_SYMBOL vmlinux 0xfdcc6695 folio_clear_dirty_for_io +EXPORT_SYMBOL vmlinux 0xfdcc8a0e fb_find_best_display +EXPORT_SYMBOL vmlinux 0xfdd79d43 flow_block_cb_is_busy +EXPORT_SYMBOL vmlinux 0xfde05889 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0f050d ip_options_compile +EXPORT_SYMBOL vmlinux 0xfe1a29ed xfrm_state_update +EXPORT_SYMBOL vmlinux 0xfe1d2e94 key_create_or_update +EXPORT_SYMBOL vmlinux 0xfe1d5a50 tcp_set_rcvlowat +EXPORT_SYMBOL vmlinux 0xfe2b57ea of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xfe2b587f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xfe362008 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xfe487975 init_wait_entry +EXPORT_SYMBOL vmlinux 0xfe5705d5 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xfe5916d1 send_sig_info +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe76d579 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xfe8409ff __inet_stream_connect +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 0xfea9cdc3 km_policy_expired +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 0xfef216eb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xfef33348 vfs_copy_file_range +EXPORT_SYMBOL vmlinux 0xfefcb98e vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xff028329 phy_read_mmd +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff282521 rfkill_register +EXPORT_SYMBOL vmlinux 0xff34015e devm_register_reboot_notifier +EXPORT_SYMBOL vmlinux 0xff5cf1af mntput +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff77c90a of_node_put +EXPORT_SYMBOL vmlinux 0xff785103 xp_dma_unmap +EXPORT_SYMBOL vmlinux 0xff7bf9b9 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xff7e7f8d kryo_l2_set_indirect_reg +EXPORT_SYMBOL vmlinux 0xff808408 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xff8416f1 fb_get_mode +EXPORT_SYMBOL vmlinux 0xff87cd18 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xff9bdfc8 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xffa51ce3 sock_from_file +EXPORT_SYMBOL vmlinux 0xffadd7ce fib6_info_hw_flags_set +EXPORT_SYMBOL vmlinux 0xffb7c514 ida_free +EXPORT_SYMBOL vmlinux 0xffbd474b neigh_update +EXPORT_SYMBOL vmlinux 0xffc4f200 zstd_compress_stream +EXPORT_SYMBOL vmlinux 0xffcac147 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xffcc4ec7 tcp_bpf_bypass_getsockopt +EXPORT_SYMBOL vmlinux 0xffd53591 __alloc_pages +EXPORT_SYMBOL vmlinux 0xffe84140 param_ops_byte +EXPORT_SYMBOL vmlinux 0xffeedf6a delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0xfffa4690 drm_firmware_drivers_only +EXPORT_SYMBOL_GPL crypto/af_alg 0x045ec9d4 af_alg_async_cb +EXPORT_SYMBOL_GPL crypto/af_alg 0x221686a8 af_alg_get_rsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c032c38 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x72529716 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x944780f1 af_alg_sendpage +EXPORT_SYMBOL_GPL crypto/af_alg 0x9bc5b4ee af_alg_pull_tsgl +EXPORT_SYMBOL_GPL crypto/af_alg 0x9e7de08f af_alg_wmem_wakeup +EXPORT_SYMBOL_GPL crypto/af_alg 0xb4e27267 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xb9de6aec af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc849aaf8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd02ba20c af_alg_alloc_areq +EXPORT_SYMBOL_GPL crypto/af_alg 0xd24fd586 af_alg_free_resources +EXPORT_SYMBOL_GPL crypto/af_alg 0xd680f016 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xd859e493 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd95ef232 af_alg_wait_for_data +EXPORT_SYMBOL_GPL crypto/af_alg 0xeabdc2b6 af_alg_sendmsg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf5222f60 af_alg_poll +EXPORT_SYMBOL_GPL crypto/af_alg 0xf9be577d af_alg_count_tsgl +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xaad1fa45 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x351eee70 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6d22b941 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x20b07910 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xf02a41e2 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4c455d3a __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x70ae394c async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x87e8120e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfa4c7285 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7cbee2b6 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xacac1578 async_xor_val_offs +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc859bd13 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xdbbf0273 async_xor_offs +EXPORT_SYMBOL_GPL crypto/authenc 0x2479193e crypto_authenc_extractkeys +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4a037fc1 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x188d9d26 __cast5_decrypt +EXPORT_SYMBOL_GPL crypto/cast5_generic 0x91d67aae cast5_setkey +EXPORT_SYMBOL_GPL crypto/cast5_generic 0xef81a4af __cast5_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x2ee249bf cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast6_generic 0x3dbae082 __cast6_decrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xcfce512f __cast6_encrypt +EXPORT_SYMBOL_GPL crypto/cast6_generic 0xd76a5716 __cast6_setkey +EXPORT_SYMBOL_GPL crypto/cast_common 0x5609ce41 cast_s2 +EXPORT_SYMBOL_GPL crypto/cast_common 0x5b17be06 cast_s4 +EXPORT_SYMBOL_GPL crypto/cast_common 0xb9cba57f cast_s3 +EXPORT_SYMBOL_GPL crypto/cast_common 0xbd3e7542 cast_s1 +EXPORT_SYMBOL_GPL crypto/cryptd 0x1919720a cryptd_aead_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x49c4b7b9 cryptd_free_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x585d3fb6 cryptd_ahash_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0x9797f427 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb32af1ee cryptd_skcipher_queued +EXPORT_SYMBOL_GPL crypto/cryptd 0xb5cc1043 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbe56f897 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xce1d09d1 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd14c9082 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xe0cda11a cryptd_alloc_skcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xe8591dae cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xeb90e821 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf138fafd cryptd_skcipher_child +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x0ba726a3 crypto_engine_alloc_init_and_set +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x15da299f crypto_transfer_hash_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x50536c72 crypto_finalize_aead_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x61b7d8ef crypto_engine_stop +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x70a43aa8 crypto_engine_alloc_init +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x88f2537c crypto_transfer_aead_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8aac55fb crypto_transfer_skcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8af6a403 crypto_finalize_akcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x8e28ea9f crypto_transfer_akcipher_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x91fcc23f crypto_finalize_hash_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0x9993321c crypto_finalize_kpp_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xb2dd83f0 crypto_finalize_skcipher_request +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xbc54abae crypto_transfer_kpp_request_to_engine +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xc17797b4 crypto_engine_start +EXPORT_SYMBOL_GPL crypto/crypto_engine 0xcbb71665 crypto_engine_exit +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 0xe19755d5 serpent_setkey +EXPORT_SYMBOL_GPL crypto/sm3 0xa98edad1 sm3_update +EXPORT_SYMBOL_GPL crypto/sm3 0xf04338f9 sm3_final +EXPORT_SYMBOL_GPL crypto/sm3_generic 0x0bddca87 sm3_zero_message_hash +EXPORT_SYMBOL_GPL crypto/sm4 0x24e254e8 sm4_expandkey +EXPORT_SYMBOL_GPL crypto/sm4 0xfa81970e sm4_crypt_block +EXPORT_SYMBOL_GPL crypto/twofish_common 0xdfcedee1 twofish_setkey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xe22b7787 __twofish_setkey +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x07b3d216 spk_var_store +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x155cfa71 spk_ttyio_synth_probe +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x1e39eb14 synth_putws +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x3acec13b 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 0x6f5eabd7 spk_synth_get_index +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x76d40046 synth_buffer_skip_nonlatin1 +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x84dad068 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8c82dfca synth_request_region +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x8fe0db01 synth_putwc_s +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9295a8b8 synth_add +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0x9c0bcf73 synth_remove +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa16a8658 synth_current +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xa896b67c spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xaadb0612 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb68e041d spk_ttyio_ops +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xb734cb9d speakup_event +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xba02affd 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 0xcb0110b3 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xcc178b2c spk_synth_is_alive_restart +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 0xedfb5da1 spk_var_show +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xee8b1122 spk_do_catch_up_unicode +EXPORT_SYMBOL_GPL drivers/accessibility/speakup/speakup 0xfd531b41 spk_ttyio_synth_immediate +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x37107146 __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 0x549fb3de acpi_nfit_ctl +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x55d58f90 __acpi_nfit_notify +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0x73d617e1 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit/nfit 0xac601a04 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/ata/pata_platform 0x2db84e31 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x501eb9a2 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/auxdisplay/line-display 0x05f7eaf9 linedisp_unregister +EXPORT_SYMBOL_GPL drivers/auxdisplay/line-display 0xf93661b7 linedisp_register +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0x987b8a46 regmap_ac97_default_volatile +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xb5804d0b __devm_regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-ac97 0xbe1b81c8 __regmap_init_ac97 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-i3c 0x65a64190 __devm_regmap_init_i3c +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x5bda888b __devm_regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sccb 0x920f4190 __regmap_init_sccb +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x0a06951f __regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw 0x5900766d __devm_regmap_init_sdw +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0x3f5bfffd __devm_regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-sdw-mbq 0xf1f15edb __regmap_init_sdw_mbq +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x1f66a0b2 __devm_regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-slimbus 0x76537789 __regmap_init_slimbus +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0x191b8780 __devm_regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spi-avmm 0xa7f20b17 __regmap_init_spi_avmm +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5e82603d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6c654176 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe932eb1c __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf360bfd1 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0x8011477d __regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-w1 0xe7c33094 __devm_regmap_init_w1 +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06f0285d bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x150b9621 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1aa27b51 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ba56931 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e98ad0f bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x35882e48 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4e10a83e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5bab209d bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5fa39c24 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x626c9693 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6a752c7b bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6ad9c766 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x70ff25e5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73219ae1 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x95ceed5c bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa206cb33 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc33ece55 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd20341fb bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6f11cb5 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe3507f1c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8d97889 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9873602 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeb59395e bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xefcde3b5 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x042c1638 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2c2b60ca btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x377b4b8b btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4d4b9f6a btbcm_write_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x73f93af5 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x75906493 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78689973 btbcm_read_pcm_int_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9ad617ef btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0a1828a3 btintel_enter_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x108c00e4 btintel_exit_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x140b0472 btintel_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x157ea88c btintel_secure_send_result +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1ad262ef btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x53d2d48a btintel_bootup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x57d823d8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x67a98110 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6c854d1b btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6fc7ef8f btintel_read_boot_params +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa34597b9 btintel_configure_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc2272c0b btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc60e4ea1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xdab4a939 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0cef44c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf5fc18dd btintel_send_intel_reset +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf7102e5c btintel_set_quality_report +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c5ebc67 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x21645635 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4a7753ee btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4d85d904 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x900d7ffb btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x90974c12 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d15569a btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbbf9b7cb btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc8bc363b btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe96a535e btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec45daca btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0x8a44f1e1 btmtk_setup_firmware_79xx +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xda672521 btmtk_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmtk 0xf508642d btmtk_setup_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x02a74050 qca_uart_setup +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x4f577f55 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x57aba3da qca_read_soc_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6820893c qca_send_pre_shutdown_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x791df4ff qca_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x2b118d30 btrtl_shutdown_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x5a6c2ce0 btrtl_download_firmware +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x671b490b btrtl_get_uart_settings +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x9bbbaab7 btrtl_set_quirks +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa1b4420b btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xa40f1431 btrtl_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xaf78f260 btrtl_free +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x7ceb8e2b hci_uart_register_device +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x8701817f h4_recv_buf +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbc22309f hci_uart_tx_wakeup +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbff9033c hci_uart_unregister_device +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x12d9dab6 mhi_ep_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3dae38c0 mhi_ep_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x3dec7225 mhi_ep_queue_is_empty +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x5e27fa1b __mhi_ep_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0x84e58387 mhi_ep_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xc52d1b08 mhi_ep_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xed21143c mhi_ep_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/ep/mhi_ep 0xf378ed2e mhi_ep_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x03421dd3 mhi_prepare_for_transfer_autoqueue +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x08eed545 mhi_async_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x1449b0fd mhi_force_rddm_mode +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x21a80324 mhi_prepare_for_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x22529830 mhi_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x277ac4b4 __mhi_driver_register +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2b97328d mhi_free_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x2ebd2013 mhi_poll +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x317c84d0 mhi_soc_reset +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x31af3c6f mhi_download_rddm_image +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x3a1d4e48 mhi_device_get +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x4e4d40e8 mhi_driver_unregister +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x5449b562 mhi_alloc_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x604c9a2d mhi_device_put +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x699c621a mhi_get_free_desc_count +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x74152130 mhi_notify +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x7def6e83 mhi_get_exec_env +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x80405e1c mhi_device_get_sync +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8879fa51 mhi_unregister_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x8e0a79ed mhi_pm_resume +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0x959efcc6 mhi_get_mhi_state +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xab8b2f38 mhi_unprepare_after_power_down +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb081c0f6 mhi_prepare_for_power_up +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xb647dca5 mhi_unprepare_from_transfer +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xc4dbb214 mhi_queue_buf +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xcc819934 mhi_queue_skb +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xd082e22e mhi_pm_suspend +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xdd51ac6d mhi_pm_resume_force +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xe936d921 mhi_register_controller +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xeaa79c1a mhi_queue_is_full +EXPORT_SYMBOL_GPL drivers/bus/mhi/host/mhi 0xecaf14a9 mhi_queue_dma +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x4ab19e06 moxtet_device_written +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0x6a264fb1 moxtet_device_read +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xe675854f __moxtet_register_driver +EXPORT_SYMBOL_GPL drivers/bus/moxtet 0xf1dca206 moxtet_device_write +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x875f2cdf sunxi_rsb_driver_register +EXPORT_SYMBOL_GPL drivers/bus/sunxi-rsb 0x8e5a5e14 __devm_regmap_init_sunxi_rsb +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x08757112 meson_clk_triphase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0x5f70dac6 meson_clk_phase_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/clk-phase 0xcd141e54 meson_sclk_ws_inv_ops +EXPORT_SYMBOL_GPL drivers/clk/meson/sclk-div 0x48c2d8fa 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 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 0x0fb98b4d 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 0x1cbd386f clk_rcg_floor_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x20796d46 clk_trion_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x21df937d qcom_cc_probe_by_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x24a7abf5 clk_zonda_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x272f3204 clk_alpha_pll_fixed_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x27d7b1be gdsc_gx_do_nothing_enable +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x29c40ae0 clk_alpha_pll_fixed_lucid_evo_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 0x30387327 devm_clk_register_regmap +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 0x3d18a052 qcom_cc_register_sleep_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x3dfc2dc5 clk_branch_simple_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x405d394a clk_alpha_pll_postdiv_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x418e9cfd clk_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x4b0ed6da clk_ops_hfpll +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5111f2ad clk_rcg2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x51f92796 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x520df3b7 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x522f0727 qcom_cc_register_board_clk +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x57172323 clk_byte_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5a6ae327 clk_alpha_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x5e6abb22 mux_div_set_src_div +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x615dbb77 clk_branch2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x618644ff qcom_cc_register_rcg_dfs +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 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 0x730f7541 clk_disable_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 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 0x8b55eac4 clk_dyn_rcg_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x8b8647a8 clk_alpha_pll_postdiv_lucid_evo_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 0xa165fbe6 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaa403ee8 clk_alpha_pll_huayra_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac2e73bf clk_alpha_pll_regs +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xac5ef549 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xadc2751b clk_alpha_pll_postdiv_fabia_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xba961aa7 clk_dp_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc150d434 clk_alpha_pll_postdiv_ro_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc5bdfa11 clk_byte2_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc82bd181 clk_agera_pll_configure +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xcf422970 clk_rcg_bypass_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xd285fafe qcom_find_cfg_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 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 0xeeb435ae clk_is_enabled_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xffb740da qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x3f9cac63 sprd_div_helper_set_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x4cfb8aaf sprd_comp_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x65403409 sprd_mux_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x6e8d6840 sprd_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0x9eea5b1b sprd_clk_regmap_init +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa5c083a4 sprd_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xa6e8951c sprd_div_helper_recalc_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xb566fd94 sprd_mux_helper_set_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xc6410d20 sprd_div_helper_round_rate +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe07bb8e8 sprd_div_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe5e868f3 sprd_pll_sc_gate_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xe8ff8963 sprd_pll_ops +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xf97d8bc9 sprd_mux_helper_get_parent +EXPORT_SYMBOL_GPL drivers/clk/sprd/clk-sprd 0xfa17a451 sprd_clk_probe +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x031cd561 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x108a07da comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1496edb3 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x1ed89426 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x202153ff comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x26539200 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x27df191c comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2d58047d comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x417c2c92 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x47870826 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x552d26a9 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x59e9bb8a comedi_timeout +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x5e0404a2 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x63849d7e comedi_event +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x64b22239 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x68efad4f comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x697ac7cb comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x6cb551b9 comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7a15f6e0 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x7fc34315 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x82e0da49 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0x8a2bfaa0 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xabd193b0 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xac532535 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb2f0983b comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xb6f75404 comedi_buf_read_n_available +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 0xc3d52a9e comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xc53ee0c8 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xca4c08b4 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xcca9c117 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xd72ccd0f comedi_dev_put +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xdda05757 comedi_bytes_per_scan_cmd +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xe96c45a4 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xf19e689a comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xfdd247df comedi_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi 0xffac43af comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x1bfbc02c comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x73ead205 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0x99c7ff38 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xa385c163 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xd2258c06 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe476a6db comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe59caee6 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_pci 0xe8a8ce01 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x10e526ea comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x89e3b35e comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0x97813a6b comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xb5df3948 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xcd511350 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/comedi/comedi_usb 0xea50b3d4 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/comedi/drivers/addi_watchdog 0xf29b2bef addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0x1f8d60a3 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_dio200_common 0xbc141fc7 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/amplc_pc236_common 0x5c8eaf77 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x1148f619 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x12866074 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x187e4950 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x28ed215d comedi_8254_status +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3c20922d comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x3f55df61 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x6da3abb7 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0x860f8431 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xa3615557 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xced3bb72 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xdd3d2b33 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xf078c16e comedi_8254_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8254 0xfbf3afc5 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x41aed037 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0x9958b25a subdev_8255_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/comedi_8255 0xea8a4d92 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/comedi/drivers/das08 0x76abcad7 das08_common_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x04774ac8 mite_request_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x04feeb83 mite_attach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x1c2ace04 mite_init_ring_descriptors +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x258e5424 mite_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x473fca75 mite_ack_linkc +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x5f02841f mite_free_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x76ba356e mite_done +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x78440d90 mite_buf_change +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x82babb12 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0x855efff2 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa524dd27 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xa7e72c54 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xab568f1e mite_release_channel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xc61d00f3 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xeaab514e mite_prep_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/mite 0xf25e1031 mite_sync_dma +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0x45888d2c labpc_common_detach +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_labpc_common 0xc0107152 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 0x25734729 ni_tio_set_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x276b2453 ni_tio_get_soft_copy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x38bc582b ni_tio_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x4662efcc ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x672465c2 ni_tio_set_gate_src_raw +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x6f4128f5 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x7109ba5e ni_tio_set_bits +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x8b6f188f ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9dec68bf ni_tio_get_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0x9df78b9e ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa35a64d4 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xa94ecf47 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb323f634 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xb4a431e4 ni_tio_read +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xc7113317 ni_tio_unset_routing +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tio 0xef389d8f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x0b2dd797 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x7928e12e ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0x9c2d6d42 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xa097dd91 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xdf53a696 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/comedi/drivers/ni_tiocmd 0xfb99de80 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x1bf52fa7 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x4ce8f845 comedi_open +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x6cca2ef7 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x70de16b5 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0x79652e25 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xdfe0f695 comedi_close +EXPORT_SYMBOL_GPL drivers/comedi/kcomedilib/kcomedilib 0xf503d33e comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/counter/counter 0x241084d2 counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x40ce172f devm_counter_add +EXPORT_SYMBOL_GPL drivers/counter/counter 0x5735b074 counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0x6c0935d4 counter_priv +EXPORT_SYMBOL_GPL drivers/counter/counter 0x77388dc3 counter_unregister +EXPORT_SYMBOL_GPL drivers/counter/counter 0x8393e1de counter_put +EXPORT_SYMBOL_GPL drivers/counter/counter 0xabdd1fdb devm_counter_alloc +EXPORT_SYMBOL_GPL drivers/counter/counter 0xccb869f2 counter_push_event +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 0x93e6a22b ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x01b82a7a hisi_qm_reset_done +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x0407672f hisi_qm_wait_task_finish +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x04cf339f hisi_acc_free_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x116c8d8d hisi_qm_free_qps +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x139363d0 hisi_qm_diff_regs_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x20bced73 hisi_qm_resume +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x26ea3b2c hisi_qm_stop +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x2c1a4f56 hisi_qm_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x32b81456 hisi_qm_start +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x35e9427c hisi_qp_send +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x37804d39 hisi_qm_wait_mb_ready +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x48ccb1ac hisi_qm_sriov_disable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x4cde6ac5 hisi_qm_diff_regs_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x658a84ca hisi_qm_debug_regs_clear +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6ce6a704 hisi_qm_stop_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x6e9595cf hisi_qm_mb +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x72aa7d7a hisi_qm_get_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x73a5fba5 hisi_qm_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7698f7c7 hisi_qm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c215b56 hisi_acc_sg_buf_unmap +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c389916 hisi_qm_dev_err_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7c8eedc0 hisi_qm_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x7cff9014 hisi_qm_dev_err_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x80ec51bc hisi_qm_dev_err_detected +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0x8d9fb9cf hisi_qm_put_dfx_access +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa6e00d97 hisi_qm_alg_register +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xa862a7c1 hisi_qm_sriov_enable +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xab47859d hisi_qm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xacb02cf8 hisi_acc_create_sgl_pool +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xae1a253c hisi_acc_sg_buf_map_to_hw_sgl +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xafa20617 hisi_qm_debug_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xbb4abf72 hisi_qm_alg_unregister +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd006175c hisi_qm_reset_prepare +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xd800382b hisi_qm_acc_diff_regs_dump +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xdfa5712d hisi_qm_pm_uninit +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe4c108ed hisi_qm_dev_slot_reset +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe5055a45 hisi_qm_start_qp +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xe82742bc hisi_qm_alloc_qps_node +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfe29fa59 hisi_qm_pm_init +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hisi_qm 0xfea369b6 hisi_qm_suspend +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/hpre/hisi_hpre 0x627322f1 hisi_hpre_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/sec2/hisi_sec2 0xa8b1a6c2 hisi_sec_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/hisilicon/zip/hisi_zip 0x74b6e558 hisi_zip_get_pf_driver +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0x32e43048 otx_cpt_uc_supports_eng_type +EXPORT_SYMBOL_GPL drivers/crypto/marvell/octeontx/octeontx-cpt 0xe1620ab5 otx_cpt_eng_grp_has_eng_type +EXPORT_SYMBOL_GPL drivers/dax/device_dax 0x40a0b9dd dev_dax_probe +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0x4e59fd7d dw_edma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw-edma/dw-edma 0xfa0063b1 dw_edma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0547f20f dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x307ca995 do_dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5c61f77f idma32_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x76c52553 do_dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7c6d0bec dw_dma_acpi_controller_free +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x87d8d50e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8a437fac dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa93d0c0d dw_dma_acpi_controller_register +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xbdebde3f idma32_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x24f1e98f dpdmai_get_attributes +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x39dc7d5a dpdmai_get_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x3dbbc635 dpdmai_enable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x43f0f0a5 dpdmai_destroy +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x57ae9d37 dpdmai_close +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5cd9e9a8 dpdmai_disable +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0x5cf6381c dpdmai_set_rx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xb7f1e252 dpdmai_get_tx_queue +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xc9a5f701 dpdmai_open +EXPORT_SYMBOL_GPL drivers/dma/fsl-dpaa2-qdma/dpdmai 0xf1831a44 dpdmai_reset +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x004d1af7 fsl_edma_issue_pending +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x028c3dca fsl_edma_pause +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x0e3caa39 fsl_edma_slave_config +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x1f79b08b fsl_edma_setup_regs +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x203283cd fsl_edma_xfer_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x3290e86e fsl_edma_prep_memcpy +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x38a34c4a fsl_edma_free_desc +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x56391711 fsl_edma_prep_dma_cyclic +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x5660d81d fsl_edma_disable_request +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x66f7f94a fsl_edma_tx_status +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x69acb75d fsl_edma_terminate_all +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x7b69d286 fsl_edma_cleanup_vchan +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x996859aa fsl_edma_prep_slave_sg +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0x99783da6 fsl_edma_resume +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xa19558e3 fsl_edma_free_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xc2467e9e fsl_edma_chan_mux +EXPORT_SYMBOL_GPL drivers/dma/fsl-edma-common 0xceb3cdb7 fsl_edma_alloc_chan_resources +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xe3fdf321 hidma_mgmt_setup +EXPORT_SYMBOL_GPL drivers/dma/qcom/hdma_mgmt 0xf4f71c22 hidma_mgmt_init_sys +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0x234346dc fw_card_read_cycle_time +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xabb5547d fw_request_get_timestamp +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xe86fb5c7 fw_card_release +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x388b4278 ffa_device_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x3dc564ba ffa_driver_register +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x421a44fc ffa_driver_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x48fbef84 ffa_dev_ops_get +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x8ec07c2a ffa_device_unregister +EXPORT_SYMBOL_GPL drivers/firmware/arm_ffa/ffa-module 0x9b4f5619 ffa_bus_type +EXPORT_SYMBOL_GPL drivers/firmware/arm_scpi 0x56d3bf8d get_scpi_ops +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x002a8847 cs_dsp_find_alg_region +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x013779a8 cs_dsp_stop +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x144d6986 cs_dsp_mem_region_name +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x24efa047 cs_dsp_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x413ada78 cs_dsp_adsp1_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x42a6abb3 cs_dsp_coeff_write_acked_control +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x4e5562f8 cs_dsp_remove_padding +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5c5bf8b1 cs_dsp_adsp2_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5de0ef99 cs_dsp_get_ctl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5f1d719d cs_dsp_run +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x5fdfe1fa cs_dsp_halo_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x60780395 cs_dsp_halo_wdt_expire +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x64e8096b cs_dsp_coeff_write_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x64f5e025 cs_dsp_remove +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6580f6a2 cs_dsp_power_down +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x668f16b9 cs_dsp_init_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x68034b0f cs_dsp_set_dspclk +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x6e0636fb cs_dsp_coeff_read_ctrl +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7024083f cs_dsp_adsp1_init +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x7d5d52f2 cs_dsp_read_raw_data_block +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0x93e6df50 cs_dsp_write_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xa5136a2f cs_dsp_read_data_word +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xb29f2e97 cs_dsp_halo_bus_error +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbcef0ad8 cs_dsp_cleanup_debugfs +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xbf90f1e5 cs_dsp_adsp1_power_up +EXPORT_SYMBOL_GPL drivers/firmware/cirrus/cs_dsp 0xfac8fe25 cs_dsp_adsp2_init +EXPORT_SYMBOL_GPL drivers/firmware/mtk-adsp-ipc 0x8ae07155 mtk_adsp_ipc_send +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x0e7b7015 stratix10_svc_done +EXPORT_SYMBOL_GPL drivers/firmware/stratix10-svc 0x1714cd7c 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 0x5619c004 alt_pr_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x035ade0e dfl_feature_ioctl_set_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x0945999f dfl_fpga_port_ops_get +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x19b42678 dfl_fpga_dev_ops_unregister +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x2e07e53c dfl_fpga_port_ops_add +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x39046698 dfl_fpga_enum_info_add_dfl +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x3a55bd21 dfl_fpga_enum_info_free +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x49e92efd dfl_fpga_cdev_config_ports_vf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x4d76bd5c dfl_fpga_dev_ops_register +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x57240622 dfl_fpga_cdev_config_ports_pf +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x617dd6b6 dfl_fpga_dev_feature_uinit +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x6267bb2d dfl_fpga_cdev_release_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x72bed675 dfl_fpga_enum_info_add_irq +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x7d722324 dfl_feature_ioctl_get_num_irqs +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x8d63e643 __dfl_fpga_cdev_find_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x94f92d72 dfl_fpga_check_port_id +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0x9f3f9164 dfl_fpga_cdev_assign_port +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xaefb7f29 dfl_fpga_enum_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xbad1216b dfl_fpga_port_ops_put +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xcb3c7f0b dfl_fpga_feature_devs_remove +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xd4600324 dfl_fpga_port_ops_del +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xdccda2c4 dfl_fpga_set_irq_triggers +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xe71d3f80 dfl_fpga_dev_feature_init +EXPORT_SYMBOL_GPL drivers/fpga/dfl 0xeaccea99 dfl_fpga_feature_devs_enumerate +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 0x3efa7a92 of_fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x53441420 fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0x81a3a6cd of_fpga_bridge_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa1cbbbec fpga_bridge_get_to_list +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xa7ff2232 fpga_bridge_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xc57f2824 fpga_bridge_disable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xda279469 fpga_bridge_enable +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xe24ddd6b fpga_bridge_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-bridge 0xeb929a15 fpga_bridge_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x05154574 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0c0c80bf devm_fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1628f92f fpga_mgr_lock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x17a9c0ee fpga_mgr_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x23238c49 fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4ecb072e fpga_mgr_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x52127ffb of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x61c9ba3a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xade10636 fpga_mgr_unlock +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb93a1655 fpga_image_info_alloc +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbe24d790 fpga_image_info_free +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xeed672b9 devm_fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf23bf96f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x2a3e861a fpga_region_program_fpga +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x4b1df861 fpga_region_register_full +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6a483e87 fpga_region_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x6dd6eb57 fpga_region_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-region 0x8d597eec fpga_region_class_find +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x11495d97 fsi_device_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x1f3a379f fsi_get_new_minor +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x3a93847e fsi_slave_claim_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x5061777b fsi_device_read +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 0x88926e0a fsi_master_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8e9452c7 fsi_driver_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0x8f4b27d5 fsi_bus_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xc21c1f0b fsi_driver_register +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xce22aee2 fsi_slave_release_range +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd5f3d76f fsi_master_rescan +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xd942f235 fsi_slave_write +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe4422bfe fsi_cdev_type +EXPORT_SYMBOL_GPL drivers/fsi/fsi-core 0xe74a2e72 fsi_master_unregister +EXPORT_SYMBOL_GPL drivers/fsi/fsi-occ 0x735d3193 fsi_occ_submit +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0x476186c6 sbefifo_parse_status +EXPORT_SYMBOL_GPL drivers/fsi/fsi-sbefifo 0xd3439027 sbefifo_submit +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x05f67b04 gnss_deregister_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x361c48b2 gnss_insert_raw +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x3b980c49 gnss_put_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0x6e6bc190 gnss_register_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss 0xdf7b9c92 gnss_allocate_device +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x05f65662 gnss_serial_pm_ops +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x8e304aa9 gnss_serial_deregister +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0x981e41f8 gnss_serial_allocate +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd0557fa8 gnss_serial_register +EXPORT_SYMBOL_GPL drivers/gnss/gnss-serial 0xd0867797 gnss_serial_free +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x12829229 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x745f0c63 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x083a8e53 devm_gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x496ce291 gpio_regmap_get_drvdata +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0x70c70e60 gpio_regmap_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-regmap 0xb7066570 gpio_regmap_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x293ed1c9 analogix_dp_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0x35db934d 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 0x54196dad analogix_dp_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xab987625 analogix_dp_stop_crc +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xaf356e2e analogix_dp_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb47b95d4 analogix_dp_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xb8ad2c4c analogix_dp_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/analogix/analogix_dp 0xcdfaa51a analogix_dp_start_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 0x26d629cd dw_hdmi_phy_gen2_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2d1c0e80 dw_hdmi_setup_rx_sense +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fac9436 dw_hdmi_set_channel_allocation +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x2fcc8420 dw_hdmi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x316212a8 dw_hdmi_unbind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x42926f4a dw_hdmi_resume +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x4a9b174f dw_hdmi_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x5665b64f dw_hdmi_set_high_tmds_clock_ratio +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x56f72e25 dw_hdmi_set_sample_non_pcm +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x6712b5a7 dw_hdmi_phy_gen2_txpwron +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x7d8a3aee dw_hdmi_phy_i2c_write +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x8dcd6f43 dw_hdmi_set_sample_rate +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x96f3e250 dw_hdmi_set_sample_width +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0x9b44a60b dw_hdmi_phy_gen2_pddq +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xa248c39a dw_hdmi_set_plugged_cb +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xc59f9e6f dw_hdmi_phy_gen1_reset +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xce27012a dw_hdmi_audio_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd6968220 dw_hdmi_phy_setup_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xd8fe547b dw_hdmi_audio_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xdafa1790 dw_hdmi_phy_read_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xf5922009 dw_hdmi_phy_update_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/synopsys/dw-hdmi 0xfcf3f3ce dw_hdmi_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 0x2dab59dd 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 0xecd22d2f dw_mipi_dsi_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_display_helper 0xc7e6f84a drm_hdcp_check_ksvs_revoked +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x3a4b5e4b of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x48293e99 dp_aux_dp_driver_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x4d834a6a devm_of_dp_aux_populate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0x7bafecd1 of_dp_aux_depopulate_ep_devices +EXPORT_SYMBOL_GPL drivers/gpu/drm/display/drm_dp_aux_bus 0xb94f3fe6 __dp_aux_dp_driver_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26065402 drm_of_lvds_get_dual_link_pixel_order +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x26069d88 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3c099845 of_get_drm_panel_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x40183986 drm_of_component_match_add +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x54e33b21 drm_bridge_detect +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6133e062 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66cf2f64 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e6824c7 drmm_kstrdup +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6f1d1be4 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7f1cf150 drm_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9bd6fd8b drm_bridge_hpd_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa7ad621c drm_bridge_hpd_notify +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xad885165 drm_bus_flags_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb37179de drm_of_find_panel_or_bridge +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd4274bbb drm_bridge_get_modes +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd67445cd drm_crtc_add_crc_entry +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5334311 drm_of_lvds_get_data_mapping +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5498046 drm_of_encoder_active_endpoint +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe6d82d3a drm_gem_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xebfb1928 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xee4c3abe drm_bridge_hpd_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xf2407ec5 drm_bridge_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfe9f72f3 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x0b84800c drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x333f0a44 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x4abb0ef6 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x55f56738 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x6e4b7218 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0x7594d739 drm_gem_cma_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xae60c99f drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xd7d9826c drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xdd073870 drm_gem_cma_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe21caa86 drm_fb_cma_get_gem_addr +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xe7dee32d drm_fb_cma_sync_non_coherent +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_cma_helper 0xf5a39bbd drm_gem_cma_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x048fdfbe drm_bridge_connector_disable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x058549bb drm_gem_fb_afbc_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x63b7aee1 drm_bridge_connector_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x8cd5fbc7 drm_gem_plane_helper_prepare_fb +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x93838341 drm_bridge_connector_enable_hpd +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xa074c8ca drm_gem_fb_init_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc122980b drm_gem_fb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xc94d056c drm_gem_fb_create_with_dirty +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xd2828344 drm_gem_fb_get_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xf26ea7db drm_gem_fb_create_with_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x1fcd4479 drm_gem_shmem_free +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x49f14f5a drm_gem_shmem_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x503a6e4e drm_gem_shmem_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x6362f160 drm_gem_shmem_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0x8d317811 drm_gem_shmem_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xb74dbc31 drm_gem_shmem_get_pages_sgt +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xc26e4f56 drm_gem_shmem_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_shmem_helper 0xea7de537 drm_gem_shmem_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x2c73cfcf meson_venc_hdmi_venc_repeat +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x5930b381 meson_vclk_vic_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x7d4a07aa meson_venc_hdmi_mode_set +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x892dd525 meson_vclk_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0x94a785f8 meson_venc_hdmi_supported_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xab5bee2f meson_venc_hdmi_supported_vic +EXPORT_SYMBOL_GPL drivers/gpu/drm/meson/meson-drm 0xcc57b392 meson_vclk_dmt_supported_freq +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0x152cbb9a s6e63m0_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/panel/panel-samsung-s6e63m0 0xaeeb14ca s6e63m0_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/pl111/pl111_drm 0x3f49739a pl111_versatile_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x3b9ce50e rcar_cmm_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0x9d1b6562 rcar_cmm_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xcbdc6d45 rcar_cmm_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_cmm 0xed5a9d6a rcar_cmm_setup +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x7279dd97 rcar_lvds_is_connected +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x8a01e808 rcar_lvds_dual_link +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0x9994c42e rcar_lvds_clk_disable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rcar-du/rcar_lvds 0xc8b88ab1 rcar_lvds_clk_enable +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2be5a675 vop2_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x371ec18e rockchip_rgb_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xc6972d61 vop_component_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xfead7585 rockchip_rgb_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x04a72819 ssd130x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0x2c4486a6 ssd130x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/solomon/ssd130x 0xe88d69b6 ssd130x_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x02f46d26 __tracepoint_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x11af0f7b gb_hd_shutdown +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14028e17 __SCK__tp_func_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x14c83034 gb_operation_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x15d1942f greybus_disabled +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x1629426f gb_operation_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x2076a80d gb_connection_disable_forced +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x382500c8 gb_connection_enable_tx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x395c07b3 greybus_data_rcvd +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3bb4b3b8 gb_connection_latency_tag_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x3c29dd70 __traceiter_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x413f413c gb_hd_output +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x41fb22f4 greybus_register_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x49055b01 gb_connection_destroy +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x512b4ef9 gb_connection_disable_rx +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x524dac8d __traceiter_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5ad3f2d7 __tracepoint_gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5b03a44c greybus_message_sent +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5c0a8043 __tracepoint_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x5fa9bc9f gb_hd_add +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6213634d __tracepoint_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x62c97da9 gb_debugfs_get +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x65e548c3 gb_hd_cport_reserve +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6c6addc6 gb_connection_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6d3bb9ec __SCK__tp_func_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x6fb784a4 gb_hd_cport_release_reserved +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x75c6a686 __traceiter_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7b7133e2 gb_operation_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x7fe955c9 greybus_deregister_driver +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x81e221fb __SCK__tp_func_gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x89f514a1 __SCK__tp_func_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x8b389588 gb_operation_result +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x90235735 gb_interface_request_mode_switch +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x94414317 gb_connection_create_flags +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e011d5e gb_operation_request_send +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0x9e3dedd3 gb_svc_intf_set_power_mode +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa3521ad6 gb_connection_create_offloaded +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xa416e2da __tracepoint_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xabeccb81 gb_operation_get_payload_size_max +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xb89d48ec __traceiter_gb_hd_in +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xbc8453f4 gb_connection_latency_tag_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xcb1b3e97 __traceiter_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd0b85398 gb_operation_unidirectional_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3c21f1b gb_connection_enable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3ca0c22 gb_hd_create +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd3e646d9 __tracepoint_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xd47b9ae9 gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xdab6b770 gb_operation_request_send_sync_timeout +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xea9a209b gb_operation_cancel +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xeac79e1a __SCK__tp_func_gb_hd_del +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed010d1b __traceiter_gb_message_submit +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xed0aa137 gb_connection_disable +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf107a122 __SCK__tp_func_gb_hd_release +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xf3677e3e gb_hd_put +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfa3efe85 gb_operation_response_alloc +EXPORT_SYMBOL_GPL drivers/greybus/greybus 0xfe7ca000 gb_operation_put +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0228cd84 hid_setup_resolution_multiplier +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02ce96a7 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x04aae24d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05eff8fe hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09d72c98 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d6e0783 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x10525536 hid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/hid 0x168f5076 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19d52f1f hid_quirks_exit +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ae7053b hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2584a17f hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bef368b hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c23c106 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d7cd9cf __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32788669 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x39e31a2c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a5072c5 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b69a382 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4d151345 hid_hw_close +EXPORT_SYMBOL_GPL drivers/hid/hid 0x532eb5ec hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x567cda70 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x669e5943 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x689dca4a hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6dd47ed6 hid_hw_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fce7db4 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x741d9e57 hid_hw_start +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7709862f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f70dbe5 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x80b6ac4d hid_hw_stop +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84193e1e hid_driver_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b13a8b8 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b6ac5c6 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ca1b89f hid_driver_suspend +EXPORT_SYMBOL_GPL drivers/hid/hid 0x963025d3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b266f3a hid_hw_raw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ee111c2 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa033aaee hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa08cb7b2 hid_hw_open +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa5712728 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf15dedf hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc2d8961 hid_match_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc54e56f4 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc78bd073 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd15e8c88 hid_hw_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda92423c hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe4967171 hid_compare_device_paths +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe8c1da6b hid_driver_reset_resume +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeb219386 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebfa29e4 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec433d7f hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa355613 hid_quirks_init +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfba1d81f hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x28c86de0 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x3e4427c8 roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1414cd34 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2e9dd245 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa875348f roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf44bdc4a roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfb23a3d3 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfba712ad roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x16561034 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1af2b8fc hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x47642add sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x552dd299 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8fa62900 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9dec8a47 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xce3920e4 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd2ca0cef sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd390a65c sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x8b5318d4 vivaldi_input_configured +EXPORT_SYMBOL_GPL drivers/hid/hid-vivaldi-common 0x97677a79 vivaldi_feature_mapping +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x1d28fb31 i2c_hid_core_shutdown +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7440ab7d i2c_hid_core_pm +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0x7df4e3ad i2c_hid_core_remove +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xbf8949fe i2c_hid_core_probe +EXPORT_SYMBOL_GPL drivers/hid/i2c-hid/i2c-hid 0xe58e0df9 i2c_hid_ll_driver +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x224c5b78 surface_hid_pm_ops +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0x63b49f65 surface_hid_device_destroy +EXPORT_SYMBOL_GPL drivers/hid/surface-hid/surface_hid_core 0xb9cf4c1b surface_hid_device_add +EXPORT_SYMBOL_GPL drivers/hid/uhid 0x16d9203d uhid_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x768cd4d5 usb_hid_driver +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xae4bee35 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x092e2a95 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x222e1bc6 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4e4d3fd3 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58c2bc3a hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7085d85f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72ca8e46 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x77216697 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x817057cc hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x849476fe hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x87403bd6 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa1b929e9 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa6562cba hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb0bfacfe hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb27bef50 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbca1e13c hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd413e694 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe1fa9e72 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe223c154 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x04c8499f vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0b2a1f17 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0f5815d1 hv_pkt_iter_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1135e6e4 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x2bb143bb vmbus_alloc_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 0x3a71f1e9 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3a93b15d vmbus_request_addr_match +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 0x548521b1 hv_ringbuffer_get_debuginfo +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x68d385a1 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a975e65 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6fbc65ee hv_pkt_iter_first +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x764cfd68 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86e2448a vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88a3a998 vmbus_request_addr +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8a2e54c2 hv_ringbuffer_spinlock_busy +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8ac76a66 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99ba633d vmbus_connection +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa52d5b17 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb0b55ddf vmbus_next_request_id +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbac14217 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc87db02 vmbus_connect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbd00905d vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc3016bbd vmbus_send_modifychannel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd7306bd2 vmbus_disconnect_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd88bad5b vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed99b790 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf1bf4e1f vmbus_free_ring +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf41d801f vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf50423ff __hv_pkt_iter_next +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xfb98f343 __vmbus_request_addr_match +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x586c4d6b adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9dad999d adt7x10_dev_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/hwmon/ltc2947-core 0xe75a3abd ltc2947_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x20e974bd nct6775_reg_is_word_sized +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x2b726a0f nct6775_show_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x4217dac3 nct6775_store_beep +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x844b5c1c nct6775_probe +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x90f8ecb7 nct6775_show_alarm +EXPORT_SYMBOL_GPL drivers/hwmon/nct6775-core 0x950bad93 nct6775_update_device +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x34332de4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3cbf9129 intel_th_trace_switch +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x62feb336 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6e090f95 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9dac54b3 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc5c7cfca intel_th_output_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd10eda37 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd4cf9bae intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf28432e1 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x18f1bd88 intel_th_msu_buffer_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0x504811ef intel_th_msu_buffer_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th_msu 0xa9f89c4c intel_th_msc_window_unlock +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0b28e1f3 stm_unregister_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x309db1fe to_pdrv_policy_node +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x47688119 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6c5fa319 stm_register_protocol +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x7cffe45b stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa95b18ce stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xaf4a2b68 stm_data_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc6a5f0a4 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf8df602f stm_source_write +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-ccgx-ucsi 0x763d7af7 i2c_new_ccgx_ucsi +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x22c19965 i2c_mux_alloc +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x9b85ca32 i2c_mux_del_adapters +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xbea37c82 i2c_mux_add_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc308208f i2c_root_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x28516e22 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4e1ef53f i2c_register_spd +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x62738f23 i2c_new_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6f3f29c2 i2c_free_slave_host_notify_device +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x0493933a i3c_generic_ibi_recycle_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x07e02831 i3c_device_get_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x085ff966 i3c_master_register +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x1536375a i3c_master_defslvs_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x159150c8 i3c_driver_register_with_owner +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x183709a2 i3cdev_to_dev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x22828722 i3c_device_free_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x26216358 i3c_master_enec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x2a6367a0 i3c_master_disec_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3102d7a2 i3c_driver_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x378546f6 i3c_device_request_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x3be6d55e i3c_generic_ibi_get_free_slot +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x4119093f i3c_generic_ibi_alloc_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x5ec088b3 dev_to_i3cdev +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x6595d508 i3c_master_entdaa_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x76fe3e05 i3c_generic_ibi_free_pool +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x7895eb1a i3c_master_set_info +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x893384a9 i3c_device_match_id +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0x898f66fd i3c_master_add_i3c_dev_locked +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8e72ce0 i3c_master_queue_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xd8f17bb2 i3c_master_do_daa +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xe64cfbef i3c_device_disable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xea629c03 i3c_device_enable_ibi +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xebf8cb49 i3c_master_unregister +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xf2f3b65f i3c_device_do_priv_xfers +EXPORT_SYMBOL_GPL drivers/i3c/i3c 0xffbf9635 i3c_master_get_free_addr +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0x3268abcd adi_axi_adc_conv_priv +EXPORT_SYMBOL_GPL drivers/iio/adc/adi-axi-adc 0xc741386f 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 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 0xa1e5f8f9 iio_channel_cb_get_iio_dev +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xad9e259b iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xec373a7d iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x0f4a8a7c iio_dma_buffer_block_list_abort +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x2c9c5881 iio_dma_buffer_set_length +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x44efd483 iio_dma_buffer_exit +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x4e389f4c iio_dma_buffer_enable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x66af89bc iio_dma_buffer_block_done +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x677eefd3 iio_dma_buffer_set_bytes_per_datum +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0x6ebe9ea5 iio_dma_buffer_read +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xad0be2e5 iio_dma_buffer_disable +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xb37e5e4b iio_dma_buffer_init +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xc82bc9a0 iio_dma_buffer_release +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xcc88977c iio_dma_buffer_request_update +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dma 0xe2eda6eb iio_dma_buffer_data_available +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-dmaengine 0x84fd7798 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 0x459c44b9 iio_hw_consumer_alloc +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-hw-consumer 0x5cef3c70 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 0xc472bca9 devm_iio_triggered_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/buffer/kfifo_buf 0x1e362d4d devm_iio_kfifo_buffer_setup_ext +EXPORT_SYMBOL_GPL drivers/iio/chemical/sps30 0x2d2a21d1 sps30_probe +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1b663d5b cros_ec_sensors_core_write +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x1e7d1e0b cros_ec_sensors_core_read_avail +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x22a2c477 cros_ec_sensors_read_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x2aaaa529 cros_ec_sensors_core_read +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x4e8d2d84 cros_ec_sensors_read_lpc +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x52cfbcd8 cros_ec_sensors_push_data +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x620cd1c1 cros_ec_motion_send_host_cmd +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x669dfdf0 cros_ec_sensors_core_init +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x6a7b17d1 cros_ec_sensors_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/common/cros_ec_sensors/cros_ec_sensors_core 0x8953128d cros_ec_sensors_core_register +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 0xa1b8c7f9 cros_ec_sensors_ext_info +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x14eaf9d7 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x411196c6 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdb4871c3 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x87ac31e7 fxas21002c_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0x952495d9 fxas21002c_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/fxas21002c_core 0xc03a91d6 fxas21002c_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/bmi160/bmi160_core 0xdc639da5 bmi160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/fxos8700_core 0x7e7a7b75 fxos8700_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xbd3abae4 inv_icm42600_regmap_config +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xbd7850de inv_icm42600_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_icm42600/inv-icm42600 0xe6a0cece inv_icm42600_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x1b8ecae8 inv_mpu_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/inv_mpu6050/inv-mpu6050 0x8c706eb8 inv_mpu_pmops +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x01206fde iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07c86bdb iio_push_to_buffers_with_ts_unaligned +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0d34cd47 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0df76e26 iio_device_id +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x164c8506 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x199b3faf devm_iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b57cd88 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1dd08693 __devm_iio_trigger_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2334977a iio_write_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2465eea4 iio_write_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x350dfc47 iio_pop_from_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x36bca692 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x397cee20 iio_read_avail_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44bc22d9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47413cbf devm_of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ba8d6a1 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4dce7dd4 iio_format_value +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4f3331fe iio_read_channel_ext_info +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5015e863 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51be5c96 iio_device_get_current_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52294016 __devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61eafbd0 iio_read_channel_attribute +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x64bf1cf7 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x686db647 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x709d1288 iio_get_channel_ext_info_count +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7872a6e7 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x84644efe iio_device_release_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c7de5f8 iio_device_attach_buffer +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8ca5a19a iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927009a2 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b2103a7 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbc70f432 of_iio_channel_get_by_name +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc128bee3 iio_read_avail_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc180628e devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2a66ae7 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xce870c6f iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd14a79aa devm_iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd21b9c16 iio_show_mount_matrix +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd263e72b iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7d887d3 iio_buffer_enabled +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdd1dab3e iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe5c25f06 iio_device_claim_direct_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6f6d898 devm_iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe79725ec iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe821ffe0 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe834cd53 iio_read_max_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe85efff9 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9fd4da6 iio_read_channel_processed_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf0f8a44c iio_read_channel_offset +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5071eb3 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf86dab4a iio_get_debugfs_dentry +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfb72aa23 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xff0505e9 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x110d974e rtrs_stop_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x24de190f rtrs_post_recv_empty +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x32ee367f rtrs_iu_post_recv +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x3ed7baf9 rtrs_start_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x41d973a3 rtrs_iu_free +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x4e8579c9 rtrs_iu_post_send +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0x67caf802 rtrs_iu_post_rdma_write_imm +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xcc390595 rtrs_cq_qp_create +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xe621d6c4 rtrs_iu_alloc +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb3134ed rtrs_init_hb +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xeb80d8c4 rtrs_cq_qp_destroy +EXPORT_SYMBOL_GPL drivers/infiniband/ulp/rtrs/rtrs-core 0xf2f6bfcf rtrs_send_hb_ack +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb8fc6408 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xcbe4fff0 matrix_keypad_parse_properties +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xc3c53661 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xec511022 adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x00e32bf3 rmi_of_property_read_u32 +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x0dabdf84 rmi_unregister_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x145bcacf rmi_register_transport_device +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x1efbe079 rmi_set_attn_data +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3ce3b9a1 rmi_2d_sensor_of_probe +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x3d73002c rmi_2d_sensor_abs_process +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x61523a89 rmi_driver_resume +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x62159df8 __rmi_register_function_handler +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x6cf54918 rmi_2d_sensor_rel_report +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x813c7115 rmi_2d_sensor_configure_input +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0x9b83caaf rmi_driver_suspend +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xb678e73b rmi_dbg +EXPORT_SYMBOL_GPL drivers/input/rmi4/rmi_core 0xe47a1f94 rmi_2d_sensor_abs_report +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x26371ff5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x3e44bff8 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb0425f4f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x79b7e2a8 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x9cdb390d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x0563d801 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x158e837e cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x99ae771b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa00a83e0 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb95cc2cf tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf7eebc7d tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26de3c26 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x329eed7c wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x33cfd7e6 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3a8ee8eb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4d236794 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4ed416d6 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x509d7ace wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5713f2d5 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x60078365 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8189670a wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8367746e wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x899f6edf wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0x75bab8d6 imx_icc_unregister +EXPORT_SYMBOL_GPL drivers/interconnect/imx/imx-interconnect 0xbea8964f 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 0x36e4c0df of_bcm_voter_get +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x39b3aab9 qcom_icc_rpmh_remove +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x75b990b1 qcom_icc_bcm_init +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x91e5efd3 qcom_icc_xlate_extended +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0x9317f425 qcom_icc_rpmh_probe +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xba00abb5 qcom_icc_set +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfd169dbd qcom_icc_aggregate +EXPORT_SYMBOL_GPL drivers/interconnect/qcom/icc-rpmh 0xfe064482 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 0x04d0cc22 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0706bc2e ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43ecf01a ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x43f54516 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4d32fb1a ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x59150200 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5b7f7743 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6ed96406 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc04438b3 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0e988f7a devm_led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x243b8fce led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3e563f1d led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x999387f7 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x99ca13d2 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc587c27b devm_led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xddda7d4c led_classdev_flash_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xedac3340 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x307c6a20 led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x65f818a4 led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0x7f52fa3a devm_led_classdev_multicolor_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xd291177b led_mc_calc_color_components +EXPORT_SYMBOL_GPL drivers/leds/led-class-multicolor 0xfe9e5c53 devm_led_classdev_multicolor_register_ext +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x00b35882 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0534de99 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2ec03fcb lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e031b80 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x44376457 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6e582e7b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa86a106f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb5748c92 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdc7cc81b lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef85ffb9 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 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 0x10ba067b __traceiter_bcache_btree_cache_cannibalize +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x140a4f57 __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 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 0x1a1f1e1d __traceiter_bcache_gc_start +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 0x1ee1f3d8 __traceiter_bcache_request_end +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 0x3f0b6914 __traceiter_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x3f0c7cbf __traceiter_bcache_alloc_fail +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 0x46d350d8 __traceiter_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4a2d1241 __SCK__tp_func_bcache_btree_node_compact +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x4cd7b141 __traceiter_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 0x593c4ac7 __traceiter_bcache_btree_insert_key +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 0x69027c99 __traceiter_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x690dd415 __tracepoint_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6aca4c84 __traceiter_bcache_bypass_congested +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6d515ea2 __traceiter_bcache_btree_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x6e74dca7 __SCK__tp_func_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x7070e8be __traceiter_bcache_journal_write +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 0x890ef3e2 __traceiter_bcache_btree_node_free +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8ad20d61 __SCK__tp_func_bcache_request_start +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0x8f2de49a __traceiter_bcache_journal_full +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 0x98884881 __traceiter_bcache_bypass_sequential +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 0xa956b909 __traceiter_bcache_journal_entry_full +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xab24e9a3 __traceiter_bcache_read +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xad6440b4 __traceiter_bcache_gc_copy +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xaf82b741 __traceiter_bcache_btree_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb47ab4d3 __traceiter_bcache_btree_node_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb5a62a8c __traceiter_bcache_cache_insert +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb912ae0b __tracepoint_bcache_journal_replay_key +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xb925c656 __traceiter_bcache_gc_end +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 0xc260553e __traceiter_bcache_btree_set_root +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc4acf0ce __traceiter_bcache_write +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc78d7102 __tracepoint_bcache_invalidate +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xc8ae4213 __SCK__tp_func_bcache_btree_node_alloc +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 0xce48d6f4 __tracepoint_bcache_alloc_fail +EXPORT_SYMBOL_GPL drivers/md/bcache/bcache 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 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 0xf2b8e810 __traceiter_bcache_read_retry +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 0x0059cc51 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x05893266 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x07e4867b dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x084dbcac dm_cell_unlock_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1f650ca8 dm_bio_prison_free_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x33aede48 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x41d12805 dm_cell_quiesce_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5a7c2e77 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62e15c3f dm_cell_lock_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 0x7eacc497 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7f29ec27 dm_cell_lock_promote_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xace9b57b dm_bio_prison_destroy_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb85efabf dm_cell_get_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xbfa1c641 dm_cell_put_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xc23d72de dm_bio_prison_alloc_cell_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd6f66e94 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd99e003d dm_bio_prison_create_v2 +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xdde4413f dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe94144ef dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x111ab12a dm_bufio_mark_partial_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x24772bfe dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x2e0774dc dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 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 0x9cffcd6e 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 0x0a47e9d1 dm_cache_policy_register +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 0xcc3e9dc8 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 0x6bc2fb01 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xca62269c 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 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 0x46c88e10 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4ea5d95a dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x57e16c3e dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5f4a6e61 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 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 0x879c4f8f 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 0xdfbc88ec dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe7599b77 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xec2f16df dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92b8a3d dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 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 0x19f37fec dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ae16d40 dm_tm_dec_range +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1ba7cc87 dm_array_new +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +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 0x00e56b03 cec_pin_changed +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x0ac0ab3a cec_queue_pin_5v_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x116ef82f cec_s_phys_addr +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x125c88f3 cec_queue_pin_hpd_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x24b147dd cec_transmit_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2922c43d cec_delete_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x2b4fef01 cec_notifier_cec_adap_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x37b4d0bc cec_notifier_parse_hdmi_phandle +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x4d40775c cec_transmit_attempt_done_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x62bd3d8d cec_received_msg_ts +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x67c33724 cec_queue_pin_cec_event +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x86069913 cec_fill_conn_info_from_drm +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x8d8f7c4f cec_notifier_conn_register +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9108c598 cec_unregister_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9a10e188 cec_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0x9ccfd178 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 0xa28164e3 cec_s_log_addrs +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xaee236c6 cec_notifier_conn_unregister +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xb72a2d7d cec_pin_allocate_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xbb599b3d 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 0xcb35f653 cec_register_adapter +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xd904aa5e cec_s_phys_addr_from_edid +EXPORT_SYMBOL_GPL drivers/media/cec/core/cec 0xf8945384 cec_notifier_cec_adap_unregister +EXPORT_SYMBOL_GPL drivers/media/common/b2c2/b2c2-flexcop 0x66c0289a b2c2_flexcop_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x05c881ed saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x077e3ef5 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1fbee333 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x3e143eae saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x430e833b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x669e169b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6702fd5b saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc7bfa831 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdad32d5b saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfa5b0dd7 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5654e5e8 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6b097821 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6dadceab saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x75e059f8 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9013e4d3 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xebb96eec saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf2aadeec saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1253095b 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 0x4060af80 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fe7955e sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7b16b855 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x80505723 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x91c6ae93 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x99a81ab3 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9be40926 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa884aaec smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa9a461ec sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaec5e884 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcb65f3a3 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xce5512e8 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdecb0652 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe0d167e7 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe35605e6 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf4ddb311 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfca0f83a 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 0x04adec71 vb2_core_create_bufs +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 0x24451812 __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2535e041 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x2593782f __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x29fe1d43 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x3c8129b5 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x42a07f2e vb2_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x4af1f32d vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x53ffdd04 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x5bf2360a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x616122c1 __traceiter_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x630b24d3 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x632d698c vb2_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x7ebc34ee vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x835cd33d vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x8d200174 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9682cf9f vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0x9b15806e vb2_request_object_is_buffer +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xa2494142 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb2d36299 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb6f4b031 __SCK__tp_func_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb84e0d80 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xb9d2df39 __SCK__tp_func_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbeb3ed01 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xbfcbf805 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 0xcf87e277 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xd5690d53 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xda846fd1 __traceiter_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf2ce494e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf703a3f9 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf7c1fab4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xf9a6ee56 vb2_core_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd0ce961 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xfd1a6449 __traceiter_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-common 0xff007d95 __traceiter_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0x43a29000 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-contig 0xb28908c2 vb2_dma_contig_set_max_seg_size +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-dma-sg 0xaa6356a7 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-memops 0x9ef64bba vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x085cc1d0 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x09f6f348 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x0a1d0b6d vb2_queue_init_name +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x1032be68 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x104bcacd vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x13415005 vb2_request_queue +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x38051128 vb2_queue_change_type +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x4e5b4512 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x573e3aad vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x599fe9b6 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x5a9b7396 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x60013a2e vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x60c3c1ae vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x61c5baa1 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x6d6255c8 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7410983e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x74b11b38 vb2_request_validate +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x79cea7de vb2_find_timestamp +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x7ca11335 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8b2e7694 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x8f252b39 vb2_video_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x97aeb7ce vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0x98b32be6 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1b342fe vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb1e91a52 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xb7fc97b7 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xbd9040da vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd0eb5ece vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xd4ff7290 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xdbe0f5ac vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xe677aa77 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xec8a60b8 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xf6b9de22 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-v4l2 0xfe5c151e vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/common/videobuf2/videobuf2-vmalloc 0x31c52f20 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x106becf2 dvb_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0x51e034fc dvb_module_release +EXPORT_SYMBOL_GPL drivers/media/dvb-core/dvb-core 0xc61ceeea dvb_module_probe +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x5c46113c as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x64c09db8 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/gp8psk-fe 0x144464da gp8psk_fe_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/mxl5xx 0x8a56fa24 mxl5xx_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv0910 0x84cc7dc5 stv0910_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/stv6111 0x21335c34 stv6111_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x786bc4de tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/i2c/aptina-pll 0x278cccaa aptina_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/ccs-pll 0x57ab0158 ccs_pll_calculate +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x1bd867b6 max9271_verify_id +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x4937ed7a max9271_set_deserializer_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x5dc36353 max9271_disable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x622a9abd max9271_set_serial_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x75eb7ac6 max9271_configure_i2c +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x8e355351 max9271_enable_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0x922bc955 max9271_set_high_threshold +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa77ef95f max9271_set_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xa8012f6e max9271_set_address +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc6550f59 max9271_clear_gpios +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xc8225141 max9271_set_translation +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xdc72492d max9271_configure_gmsl_link +EXPORT_SYMBOL_GPL drivers/media/i2c/max9271 0xf3e2739c max9271_wake_up +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0097f5a3 media_request_object_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0776d438 media_request_object_unbind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x0d3ee33e __media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x17bc9105 media_request_object_find +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x21b672e6 media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x26094ecc media_devnode_remove +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2d5b6068 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x2ece2ae8 __media_device_usb_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x3a2b37f0 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x40520617 __media_remove_intf_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x429bf328 media_get_pad_index +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x45db66a7 media_request_object_bind +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x47604f81 media_entity_pads_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x4ed83296 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x601eb7c3 media_graph_walk_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x63cda2a3 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x64c92648 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x6bee83d7 media_device_unregister_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x739d6270 media_device_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7435ae8c media_create_ancillary_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x74ee2978 media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x761f9d9c media_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7a159f57 media_create_pad_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x7c30ea06 media_device_pci_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x818c3327 media_device_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x83dc0518 media_device_register_entity_notify +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x880c1944 media_request_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8ab31ab2 media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c3382a3 media_graph_walk_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8c5b9389 media_request_object_put +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x8fce61ea media_create_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x91980ad3 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0x9f84f4a2 media_request_object_complete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xae7c897b __media_remove_intf_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc5232089 media_device_usb_allocate +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xc964d3f6 media_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xcf63678e __media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd1b1bfa0 media_device_delete +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd879f43d media_create_pad_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xd8a4b5ba media_devnode_create +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdb99ab02 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xdda57bd8 media_entity_get_fwnode_pad +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xe5ceecd6 media_entity_enum_cleanup +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xec46807d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xeefea82d media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xf50d89d9 media_request_get_by_fd +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfba36108 __media_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xfc781c47 __media_entity_enum_init +EXPORT_SYMBOL_GPL drivers/media/mc/mc 0xff263055 media_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x697376da cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0038303d mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0400b70f mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x06bd80dd mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x12a365d9 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x39854930 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41baef72 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x573b9591 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5a279e90 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x88a13e05 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8d86a0e4 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa38712ec mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa51bdf76 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb5ec93fd mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb9010307 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc27b3ec0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcd39ce4d mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd10f0cb2 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe2085b48 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeaff1e4b mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x06d41af7 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1720f443 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f9d231f saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x252b5f79 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x28172a05 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4652f26f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4a61f58e saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x538acf1d saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6cf4a51f saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x734d4420 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7728c9a7 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x893a5030 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xabdfbe9b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb84493ab saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb990387f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc317fa19 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xce6e9276 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf07872ab saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0937937 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x217da172 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x56e6570b ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x970acb07 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc8c600cd ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xca491b73 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xce793434 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd6adefdf ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x18a594ab nal_h264_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x39623e77 nal_hevc_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x44b13e06 nal_hevc_write_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x4f9aad70 nal_h264_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x5aabd5d5 nal_h264_read_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x66d7844b nal_hevc_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8885f950 nal_hevc_read_vps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x8c184ccc nal_h264_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0x955867a2 nal_hevc_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc3c6c2b1 nal_h264_write_sps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xc74cd654 nal_hevc_write_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xcac962cf nal_hevc_read_pps +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd8a04706 nal_hevc_write_filler +EXPORT_SYMBOL_GPL drivers/media/platform/allegro-dvt/allegro 0xd9688434 nal_h264_read_filler +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x0ae1e6aa mccic_register +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x16303e67 mccic_shutdown +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0x618dbb3b mccic_irq +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xde166f22 mccic_suspend +EXPORT_SYMBOL_GPL drivers/media/platform/marvell/mcam-core 0xe11b05c0 mccic_resume +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x34445063 vpu_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x37bd20f7 vpu_ipi_send +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x651e7e14 vpu_wdt_reg_handler +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0x8432fc83 vpu_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xac93309f vpu_ipi_register +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xc95b9018 vpu_get_plat_device +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xd2f19a5d vpu_load_firmware +EXPORT_SYMBOL_GPL drivers/media/platform/mediatek/vpu/mtk-vpu 0xd4153fea vpu_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x073d5939 venus_helper_set_stride +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0889fef6 venus_helper_vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0de7c98d venus_helper_intbufs_alloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x0fe11f6d venus_helper_set_bufsize +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x13a76332 venus_helper_check_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x18f40c37 venus_helper_process_initial_out_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x19e43cd8 venus_helper_vb2_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x1dc1c08d venus_helper_unregister_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x21ba7d77 venus_helper_get_out_fmts +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x232d8d8b venus_helper_release_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x26c5fd0a venus_helper_vb2_buf_init +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 0x2ae74260 hfi_session_unload_res +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 0x2de7222c venus_helper_acquire_buf_ref +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x2e30cc56 venus_helper_vb2_buf_prepare +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d574547 venus_helper_buffers_done +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3d7cf02f venus_helper_queue_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x3ecd3e6d venus_helper_set_raw_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x410f20a2 hfi_session_abort +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x47ac2eb7 venus_helper_set_num_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4b13453e venus_helper_set_dyn_bufmode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x4efe6459 venus_helper_set_format_constraints +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5001dfde hfi_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x50a0e0ba venus_helper_check_codec +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x5413b055 venus_helper_get_bufreq +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x6d61050f hfi_session_start +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x720f140b venus_helper_set_input_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x742cdd0c venus_helper_intbufs_realloc +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7cce1095 hfi_session_create +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x7e499040 venus_helper_set_work_mode +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x859eae71 venus_helper_init_instance +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x88f2bf21 venus_helper_set_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x8e37555a hfi_session_flush +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x974c481a venus_helper_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x984554f5 venus_helper_free_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9df15228 venus_helper_set_output_resolution +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0x9e07e316 hfi_session_set_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa3934d71 hfi_session_destroy +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xa49f54b0 hfi_session_process_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xac8b1ac1 venus_helper_alloc_dpb_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xaf35df48 venus_helper_get_opb_size +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xb32649ca venus_helper_get_ts_metadata +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 0xb7dbd836 venus_helper_set_color_format +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xbf278cd0 venus_helper_intbufs_free +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xca3d77c2 venus_helper_change_dpb_owner +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xcc793d36 hfi_session_get_property +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xce51f9d2 hfi_session_continue +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 0xd39cbf60 venus_helper_session_init +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xd510c720 hfi_session_deinit +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe59df47c hfi_session_stop +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xe8d112e5 venus_helper_set_multistream +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xecf39b2c venus_helper_get_profile_level +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf15161a8 venus_helper_vb2_start_streaming +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xf3874bcf venus_helper_find_buf +EXPORT_SYMBOL_GPL drivers/media/platform/qcom/venus/venus-core 0xfed6b40f venus_helper_process_initial_cap_bufs +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x3d858696 rcar_fcp_put +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4ad5d888 rcar_fcp_enable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x4df3afb8 rcar_fcp_get_device +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x5fe6f6e8 rcar_fcp_disable +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/rcar-fcp 0x9877c29f rcar_fcp_get +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x39cb410b vsp1_du_atomic_begin +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x506ba85d vsp1_du_init +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x601ba121 vsp1_du_atomic_flush +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x7876fba6 vsp1_du_setup_lif +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0x8f2e98d8 vsp1_du_atomic_update +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xb14d13d6 vsp1_du_unmap_sg +EXPORT_SYMBOL_GPL drivers/media/platform/renesas/vsp1/vsp1 0xfc610cf0 vsp1_du_map_sg +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x32115ba7 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 0x7edf4723 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 0xb8a41bca xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xca518b17 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xccc94d66 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 0xedd08084 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xfa5002c3 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x3c16a6b1 xvtc_generator_stop +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x47d7900b xvtc_generator_start +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x812de043 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2e90a71e radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x43486548 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x0dfcf6ad si470x_stop +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x102c0071 si470x_set_freq +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0x9b30f212 si470x_viddev_template +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xa8f16ef7 si470x_ctrl_ops +EXPORT_SYMBOL_GPL drivers/media/radio/si470x/radio-si470x-common 0xae6901db si470x_start +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06181604 devm_rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x294f7d96 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2ed90ced rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x35ad3fa7 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x496a6885 devm_rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x51ca3aed ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x59d4e87b rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x704b8cc3 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x87480bfe lirc_scancode_event +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x900cb86a ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9a2cc695 ir_raw_event_store_with_timeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa0daf175 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb0a8c7df rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb960f15c rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc12a8cb9 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc046a5f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcc289122 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcda023bc ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd7254d7d rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xefb49940 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfc5d3079 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x750fb261 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xdff07190 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xd096ff61 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf7deea73 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x2917a473 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xe1212c14 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x4a7e1eb9 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xcc578344 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf3a1c2d3 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x44c843f3 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5afcd24e tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7338ec0e tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe367e9e4 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x546c3726 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x088a56a1 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b03734a cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d95d45d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x21d753f7 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x294cb24e cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2c0d36e5 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3573dd2b cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3af3d215 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x49b0c446 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b7f8f85 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x54f40e7c cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x784cd414 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95580fc6 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaafcaf56 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcaff14f2 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcde02f8e cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe1ed9def cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe795482a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf86d0914 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfc08f938 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x074a0e01 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xe68601cb mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x01ae2d93 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d467ca7 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2725e03a em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x34403213 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3de67fed em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3df1f711 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4eb40d91 em28xx_init_camera +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 0x892d979c em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x921d7c65 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb18e3882 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf9d1f4c em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc72cba29 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc96b8828 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd4ee749 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd39c40d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdd4fc909 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe37e6349 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe55c47db em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe7262c67 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x14699f94 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x283791d4 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x60bae234 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x79a8ee5e tm6000_set_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 0x25711d28 __v4l2_async_nf_add_fwnode_remote +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x2e523ab9 __v4l2_async_nf_add_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x493fdbf5 __v4l2_async_nf_add_i2c +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x68494640 __v4l2_async_nf_add_fwnode +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-async 0x9f603ee1 v4l2_async_nf_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x01612c0b v4l2_detect_gtf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x08402862 v4l2_print_dv_timings +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-dv-timings 0x0958448b v4l2_set_edid_phys_addr +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 0x06b83c99 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x1639d4af v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x179b6a3d v4l2_flash_indicator_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x11394a49 v4l2_fwnode_parse_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x190b4e68 v4l2_fwnode_connector_add_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x2a93a84f v4l2_fwnode_endpoint_alloc_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4710e59c v4l2_fwnode_endpoint_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x4a49b9b6 v4l2_async_register_subdev_sensor +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x5177a388 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 0x657010b2 v4l2_fwnode_put_link +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x681ba21a v4l2_fwnode_connector_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0x8350d1e0 v4l2_async_nf_parse_fwnode_endpoints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-fwnode 0xfe26c158 v4l2_fwnode_endpoint_parse +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x639ecc68 v4l2_h264_init_reflist_builder +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0x6a1429ff v4l2_h264_build_p_ref_list +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-h264 0xf568bf81 v4l2_h264_build_b_ref_lists +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 0x0140b5de v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0301b104 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cc620ae v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x12bbba3e v4l2_m2m_register_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20afa180 v4l2_m2m_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x232e85a3 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2f7aa06e v4l2_m2m_last_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x31b2e0d6 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32e71a42 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x416bd6ce v4l2_m2m_request_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x481153e9 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x539bfa81 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5c6cd6b2 v4l2_m2m_ioctl_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cea3a60 v4l2_m2m_ioctl_stateless_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fb92dcd v4l2_m2m_buf_remove_by_idx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x730f2eae v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x75c5ae32 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a40c281 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8131ac10 v4l2_m2m_ioctl_stateless_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x834de92d v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bf27afa v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x91daa3ca v4l2_m2m_ioctl_try_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9b81d2f7 v4l2_m2m_ioctl_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa08a114b v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4976410 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa5365bd5 v4l2_m2m_last_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa78bace8 v4l2_m2m_buf_copy_metadata +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb64636f3 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb71ce198 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8844a9d v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8ef898b v4l2_m2m_encoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xba5ecd72 v4l2_m2m_buf_remove_by_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0376961 v4l2_m2m_update_stop_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc04dcb0b v4l2_m2m_ioctl_try_decoder_cmd +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xca868c65 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd2d5fa38 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb309110 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb34c88c v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xde0c2ebe v4l2_m2m_update_start_streaming_state +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe0a0379d v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2fda981 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec8d4c26 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeec3b13a v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf13ff84d v4l2_m2m_unregister_media_controller +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1bda69e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf291dde5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x4137d90c v4l2_vp9_adapt_coef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef1a3dd v4l2_vp9_reset_frame_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x8ef25d5d v4l2_vp9_seg_feat_enabled +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0x9dec35a2 v4l2_vp9_fw_update_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xb3cf2529 v4l2_vp9_adapt_noncoef_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xcf15018a v4l2_vp9_kf_partition_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xdf6586d2 v4l2_vp9_kf_uv_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xf5c55c43 v4l2_vp9_default_probs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-vp9 0xfbf87a5e v4l2_vp9_kf_y_mode_prob +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x015d0840 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d4bbd7e videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0dc171f9 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0eb88c84 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0efc8cac videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x15902d0e videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2d88fd3b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x345cdbea videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50165c79 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x66bd3ccc videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a101fe9 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x804a7c69 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9da74bc1 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9f25ec6b videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9fb98df1 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf78b956 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb3069d76 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb609930f videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbe4465df videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcec7a166 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xddc9c9e6 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea85758e videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedf41970 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfdff338f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x2b626ff3 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 0x92641a28 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xd54e74c8 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe5b43e44 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x42b5b4b3 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x69c628eb videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x76792fef videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x04e87917 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x095dd331 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x11f3044c __SCK__tp_func_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x12da612f v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x148eaefb v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x14a9131d v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x16e4fd29 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1885c1f6 __v4l2_subdev_state_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a71aa31 v4l2_mc_create_media_graph +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1cc4fdb2 v4l2_subdev_get_fmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20298745 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x20a9cb12 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x26bd9220 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x29ddc02e v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ae0877b __SCK__tp_func_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2c21780c v4l2_ctrl_request_hdl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ce6c643 v4l_disable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d523d80 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x367d22ce v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x39b21644 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b1325ec __traceiter_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3e437ac4 v4l2_create_fwnode_links +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x423343fc v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4380abc2 __v4l2_ctrl_handler_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4487bfa7 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x452f53b1 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x465534db v4l2_event_wake_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x46ac032f __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4763b5ef __traceiter_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e249dac v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x54080969 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5d19b577 v4l2_subdev_get_fwnode_pad_1_to_1 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e83abaa v4l2_pipeline_link_notify +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5ed971f3 v4l2_ctrl_request_hdl_ctrl_find +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64965a22 v4l2_event_queue_fh +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 0x6dbd64cf v4l2_i2c_subdev_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6e9acc41 v4l2_fill_pixfmt_mp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ee756f8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a01ba11 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a8b2fe5 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7b3ac037 v4l2_pipeline_pm_get +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7dfdd96d __traceiter_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8046de6a v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9117aa24 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9187b18a v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x918e56d7 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x91a3f3d9 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9203918c v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x948ff15b v4l2_pipeline_pm_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fdf0cb8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9fef35ac v4l2_apply_frmsize_constraints +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa59eb096 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb7675e8f __v4l2_subdev_state_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb67bfb1 v4l2_get_link_freq +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbeffffa5 v4l2_g_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf32146b v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbfb15410 v4l2_subdev_cleanup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc43daa01 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc742d6e8 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcc501597 v4l2_fill_pixfmt +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdbca5b90 v4l_vb2q_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdce882fe v4l2_spi_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 0xe7b833ee __traceiter_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe8736793 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xeb9ada5d __v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2921c55 v4l2_s_parm_cap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf46d87ce v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf550899a v4l2_create_fwnode_links_to_pad +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc236b94 v4l_enable_media_source +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xffe5df64 __v4l2_subdev_init_finalize +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x64cbf634 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xb68011d5 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf0fc0c2a pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x021d137b wm8997_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x0d3d76c8 wm5110_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x21736554 wm8997_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x256dc64e wm8998_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x2b8ea72b arizona_clk32k_disable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x349f10ba wm5102_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x3878e199 cs47l24_patch +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4048fbbc wm8997_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x440e6961 arizona_set_irq_wake +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x46735098 arizona_request_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x4c087981 wm5110_aod +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x534fa8a5 arizona_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x5dccb0d4 arizona_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x77a7d1f6 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x8af485cb wm5110_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0x9e6ac8d2 arizona_dev_init +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 0xc4738298 arizona_clk32k_enable +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc81b43ab wm5110_revd_irq +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xc9cc4487 wm5110_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd19b5cf6 cs47l24_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/arizona 0xd63e61e6 arizona_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0x2a6e28fd atc260x_device_probe +EXPORT_SYMBOL_GPL drivers/mfd/atc260x-core 0xe68ac4e2 atc260x_match_device +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0c8434a7 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x60cce6fd da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x660c1775 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x73053932 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7ec4f535 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x81a38bdb da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x9616bf00 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 0x2843e5bf kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4269dec2 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8100dec7 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8e88350b kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9c0bb755 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb38bc728 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe48c98b3 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xece8f8d7 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x12605af8 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc6a7a6a9 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc7e5cac1 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4f7863d5 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5f54769f lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x6462a51f lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7b2a3bfb lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9a72c68f lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f65469b lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbde233ea lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0875ce3a lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0d8a64a3 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xd9be560d lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x0f379262 madera_of_match +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x249a409b madera_dev_init +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32b0e65a cs47l15_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x32bd3a1a cs47l15_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x3aebb988 madera_dev_exit +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x7185fb56 cs47l15_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x71882716 cs47l15_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8934cae2 cs47l85_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x893916a2 cs47l85_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x8e5dd2c1 madera_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x91e1bd52 cs47l90_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0x91ec6112 cs47l90_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa660a6af cs47l92_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xa66d7aef cs47l92_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xb70a3cf5 cs47l85_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbb46519a cs47l35_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xbb4b8dda cs47l35_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xc093b9ba cs47l15_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca01d7ee cs47l85_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xca0c0bae cs47l85_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xcd8866fd cs47l92_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd2d4a05e cs47l90_16bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xd2d97c1e cs47l90_32bit_i2c_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xdeb19c54 cs47l35_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe555bba3 cs47l92_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xe55867e3 cs47l92_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xebe384cb madera_name_from_type +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xee5fe06f cs47l90_patch +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf8734c96 cs47l35_16bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/madera 0xf87e90d6 cs47l35_32bit_spi_regmap +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2174852d mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29f5da3b mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3a4ec785 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x68fb79cd mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7af48ca5 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8b14bc37 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/motorola-cpcap 0xa226dbe8 cpcap_sense_virq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x146144eb pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3615ac3e pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4581afa4 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x473a7b69 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b9b37bc pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9913b5c6 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa09ccae8 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd7d85dac pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdad8b438 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xea8efe20 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xede51747 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x6022fe7e pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x9c307e8f pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3ae94c95 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4bb2538b pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9a73c429 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb0e7ca84 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd4965f3c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/rave-sp 0x155313cf 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 0x003ca82e si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x16062e87 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x325a9457 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3df7cc1d si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x40dc1896 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x472315e5 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4765a312 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50671d85 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x550efba3 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59ace761 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b0dbbf0 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f618462 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65a4a58a si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68bcb917 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7059bc70 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70754fd1 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x719145c9 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7400cd87 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x775b707e si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ab09827 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8503937c si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8e3d2bfa si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x93a22212 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fbfe107 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xac1bc02d si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb44beccc si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc5b140c si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7ae2144 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd7d17bb7 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb1bf5ee si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddd0f1f3 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf11b36d si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6d4d9b0 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf23406b7 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x08808674 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7c942e24 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7f303298 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9c6f3c89 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf934b4b0 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sprd-sc27xx-spi 0x9406f0c9 sprd_pmic_detect_charger_type +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xae7fc7da stmfx_function_enable +EXPORT_SYMBOL_GPL drivers/mfd/stmfx 0xe31a2837 stmfx_function_disable +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2509f5ea am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x4abb0222 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x926a62e5 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc99cf692 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x3b4dec42 tps65217_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x5e306bf1 tps65217_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0x64124423 tps65217_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65217 0xf01335e4 tps65217_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x1b3ddf42 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x21d711bf tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x24a8e495 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa37c68fe ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x3f165299 alcor_write32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x40716bea alcor_write32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0x4496b9fd alcor_write8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xa383f622 alcor_read32be +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xc1444cf5 alcor_read32 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xd7a71b97 alcor_write16 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/alcor_pci 0xea8aa68b alcor_read8 +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0798757a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0efb432c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x0f1e587b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1348130c rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x17672cfe rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x1efa48f4 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2eb45752 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x2f36fce2 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x34c6560f rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x4bdd78e5 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x55232585 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x5a2c4a50 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x6e38c5a4 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x87d7dc57 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x892fd30e rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0x956101fa rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xa9bb6513 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xadeab5df rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xb604064a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xc4c3f795 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xce6271bc rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xd1f8e70c rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xe680d768 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_pci 0xf32f1fcc rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x1d810ced rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x3e4e508e rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x5917da38 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x750dfd08 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x883f4229 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x8d233dbf rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0x9c0cae1e rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xa45204b1 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xb41a3e52 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xc2089ba9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xe0ffec99 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xea282e88 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/misc/cardreader/rtsx_usb 0xf6d365bc rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x30981e8e cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5a5d02c3 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x640cf74f cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8904e382 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 0x1cb8ee1a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x327ff2f8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x395a241c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4480b781 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x58d0e6a7 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7fa97d82 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3ee0d6b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe9b65721 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0bb89e68 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x16c0e0a6 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1909cfc9 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27c9cbef lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x33948fba lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5014c0b8 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6cbbca97 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc83b3122 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/pvpanic/pvpanic 0x35451b58 devm_pvpanic_probe +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x8c795269 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xde697c01 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x30cdd0ac uacce_alloc +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x517d6389 uacce_register +EXPORT_SYMBOL_GPL drivers/misc/uacce/uacce 0x9b53f035 uacce_remove +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x024d14bc vmci_qpair_produce_free_space +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x046dd187 vmci_datagram_create_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x056837fb vmci_get_context_id +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x1fd4782d vmci_qpair_get_produce_indexes +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x2449459d vmci_event_subscribe +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0x3a22fa8a vmci_datagram_destroy_handle +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 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 0x65296028 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 0x94514355 vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xa25084e4 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 0x54110816 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x8d58d2fe dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xa730089a dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x0fa16ac8 mmc_hsq_init +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x15c5bbf6 mmc_hsq_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x4907d9bd mmc_hsq_finalize_request +EXPORT_SYMBOL_GPL drivers/mmc/host/mmc_hsq 0x7a682a7f mmc_hsq_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x6a1a45d4 renesas_sdhi_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/renesas_sdhi_core 0x738ddcc8 renesas_sdhi_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0221056b sdhci_dumpregs +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x159129df sdhci_enable_sdio_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1805bbd3 sdhci_reset_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x209d990e sdhci_set_power +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x20bbed4a sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2fe55447 sdhci_cqe_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x32b9278e sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x36f38269 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38373e07 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3b340b2b sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c0f45ac __sdhci_set_timeout +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c818abc sdhci_set_ios +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3ec72e26 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x41d87ceb sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x425ef065 sdhci_end_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46943f59 sdhci_enable_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x47b90ba2 sdhci_set_power_noreg +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4eed7501 sdhci_set_data_timeout_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x52aa83a7 sdhci_setup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x551b7eb4 sdhci_cleanup_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x64b37d8a sdhci_execute_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6bf85fab sdhci_calc_clk +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e0407dc sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ee1fda7 sdhci_send_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7fbb5a2e sdhci_request +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x83714161 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8efa54bd sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa1ed0edb sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xac1da01f __sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbc8e7750 sdhci_set_power_and_bus_voltage +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbcd75799 sdhci_adma_write_desc +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbd24f793 sdhci_cqe_enable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1ad1358 sdhci_request_atomic +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc327843e sdhci_enable_v4_mode +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc8449f5e __sdhci_read_caps +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd201c5ce sdhci_cqe_disable +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe3e65880 sdhci_start_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec11da6f sdhci_abort_tuning +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xec85c48b sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf136f356 sdhci_switch_external_dma +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf13f25d4 sdhci_get_cd_nogpio +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfebfec5f sdhci_start_signal_voltage_switch +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x571dd835 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x63f2eb57 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x66e8cbfe sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x816dcaf3 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa1b38d95 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa5fef99f sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc2ddceed sdhci_get_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xda11c465 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdc253316 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x1eaf6f23 tmio_mmc_host_alloc +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x29c78a14 tmio_mmc_disable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x33f29e99 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x4ad2b13c tmio_mmc_enable_mmc_irqs +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0x8fe81825 tmio_mmc_do_data_irq +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xdfdf7ee2 tmio_mmc_host_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xe55c30a2 tmio_mmc_host_probe +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xf472282f tmio_mmc_host_free +EXPORT_SYMBOL_GPL drivers/mmc/host/tmio_mmc_core 0xfcdf1a2e tmio_mmc_host_runtime_resume +EXPORT_SYMBOL_GPL drivers/most/most_core 0x0944a502 most_deregister_component +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11b50b29 most_register_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0x11fc9667 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x120e2c77 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x2c2fc361 most_stop_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0x35bbba52 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/most/most_core 0x3ede134d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x4156afc1 most_register_interface +EXPORT_SYMBOL_GPL drivers/most/most_core 0x5f091d78 most_get_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x63f3de56 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0x7acf3954 most_deregister_configfs_subsys +EXPORT_SYMBOL_GPL drivers/most/most_core 0xa64b599e most_put_mbo +EXPORT_SYMBOL_GPL drivers/most/most_core 0xe56fddef most_start_channel +EXPORT_SYMBOL_GPL drivers/most/most_core 0xfc40fc58 most_register_component +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4c440e6b cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x736d2b83 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb15a2bfd cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2d82d74f cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x53d09c9f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa0295319 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xc217fa18 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x193f3d43 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x973c90b9 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xad06f807 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0x065feb2d hyperbus_register_device +EXPORT_SYMBOL_GPL drivers/mtd/hyperbus/hyperbus-core 0xe1ce5a7c hyperbus_unregister_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0af5335f mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ef515ec mtd_pairing_groups +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1af65986 mtd_write_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d9c5d15 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2282c49b mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x25c132d1 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27d4b401 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x287b8fdd mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2eecaed2 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ffa719d register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ba149d6 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c2a5cdf mtd_ooblayout_get_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cf3da3b mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3f4d6806 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44e31917 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ddbbb11 mtd_ooblayout_get_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50dabc2f mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67486e0f put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x691b0792 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6a904acd mtd_ooblayout_count_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x728e9b3e get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76d9fa32 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7bce6237 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8cd282cf mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d7a245b mtd_ooblayout_free +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8d967a80 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x96567485 mtd_ooblayout_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9d5b0677 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa5aae597 mtd_ooblayout_find_eccregion +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa69f0238 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa98d70fb mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaa6f9c89 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac36caa2 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaddd2ac0 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7075882 mtd_check_expert_analysis_mode +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb90ee4fe mtd_wunit_to_pairing_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbf8cdc11 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcce69bc8 mtd_ooblayout_set_eccbytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce750337 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd0f2f3e6 get_tree_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd11eeb10 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2c51acb mtd_pairing_info_to_wunit +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd82dd378 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9eb16c4 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdeefc66c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6de6291 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe6e98329 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8619d97 mtd_ooblayout_set_databytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe878c221 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf26f42bc mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8585080 mtd_ooblayout_count_freebytes +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf87f6a65 __register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa178435 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfa818def unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff214195 mtd_erase_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3a9edf83 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x89177ce0 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8cb6fec9 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x92e1d65f mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x99615ab0 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0329ae4e nanddev_bbt_update +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x05d0d0a4 nanddev_mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0acd0ed2 nand_get_large_page_hamming_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x0cac5418 mxic_ecc_process_data_pipelined +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x115c060f nanddev_ecc_engine_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x123abcfb nanddev_mtd_max_bad_blocks +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x22b362b9 nand_ecc_init_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2e52d6e2 nanddev_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x2fa403ec nand_ecc_tweak_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x302ff70b nand_get_small_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x3a5245e4 nanddev_bbt_set_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5487b42e nand_ecc_restore_req +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5a012e31 nanddev_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x5e96643b nanddev_ecc_engine_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x7062afd5 nanddev_bbt_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x853afb6b nand_ecc_cleanup_req_tweaking +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x90777606 mxic_ecc_put_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x94017b7d nanddev_bbt_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0x98c2aff8 nanddev_isbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xd9d0cfea nanddev_markbad +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xdc91ef0b mxic_ecc_get_pipelined_engine +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xe31d7dc9 nanddev_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xeb7de831 nanddev_erase +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xee867dd6 nand_get_large_page_ooblayout +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xef0a034f mxic_ecc_get_pipelined_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/nandcore 0xfb08dc95 nanddev_bbt_get_block_status +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x1ad5ba39 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/nand/onenand/onenand 0x91e5ee5e onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x0682e52a brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0x4a4e38e4 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/brcmnand/brcmnand 0xa515c6b8 brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/denali 0x62b19bd1 denali_chip_init +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x07ec0f07 nand_soft_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0b722bce nand_status_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x0c80d243 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 0x2ce158ac nand_read_oob_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x2d368c4c nand_subop_get_addr_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x33563ebe nand_op_parser_exec_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x41562a31 nand_read_page_hwecc_oob_first +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x440e1ea2 nand_select_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x4453d9fc nand_ecc_choose_conf +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5632e63d nand_subop_get_num_addr_cyc +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x5fb3494b nand_reset_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x65da65a4 nand_readid_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x7ca0a440 nand_reset +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x808f124e nand_read_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x8b8766c0 nand_decode_ext_id +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x93343d28 nand_gpio_waitrdy +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x960bc08c nand_deselect_target +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0x9fa10d9f nand_erase_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb1a08cdf nand_change_read_column_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xb9f0e8dc nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xba654b24 nand_write_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xbeea663a nand_prog_page_begin_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xcd104980 nand_cleanup +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd1b1c4b8 nand_prog_page_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd3c672b8 nand_subop_get_data_len +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd41ff2ac nand_subop_get_data_start_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xd7083703 nand_prog_page_end_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/nand 0xfc379ae2 nand_read_data_op +EXPORT_SYMBOL_GPL drivers/mtd/nand/raw/sm_common 0xcdc2c506 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xcf3afdda spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xf6023f6b spi_nor_restore +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x089a0229 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e20b5ae ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f2c0e14 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x185a2c96 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x462f1c02 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66011ab6 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x70084358 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x70f5f5d0 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x752eccda ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9a603df5 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xab7ec705 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb79fadb9 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd713e78e ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdf605c3e ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeff0538d ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a65c89f mux_state_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x0a90af58 mux_control_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x1eadba33 mux_control_states +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x7cf08396 mux_state_deselect +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x81060432 mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8257d90c mux_control_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8b91a59d mux_chip_unregister +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x8f3145f0 mux_chip_free +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x91d3e211 devm_mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0x92887aad devm_mux_control_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb4bfa7af mux_control_try_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb6ec8010 mux_chip_register +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xb87a3537 devm_mux_chip_alloc +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xd061d5b8 mux_control_put +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xe1da13bc devm_mux_state_get +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xfa76e911 mux_state_select_delay +EXPORT_SYMBOL_GPL drivers/mux/mux-core 0xff7b10c0 mux_control_get +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x20f78fc9 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf296537d devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x134f712b alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2a4e148b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4fd19e08 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8c8f4fa5 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa5a24f5a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd7ad1385 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0b5ce053 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x240fa50b register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x7650a9f6 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbd6f0e4f alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0d3efb72 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x0fe1ec86 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x10d892eb can_get_state_str +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x22188711 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x25e45f74 can_skb_get_frame_len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x2d322b28 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x304e8a92 alloc_candev_mqs +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x30f7faa9 can_rx_offload_threaded_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x39871b7a of_can_transceiver +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x3c32968a can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x45101a78 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x491490ec can_rx_offload_add_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x499671e8 can_rx_offload_enable +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x4c00bb3f can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x540fe487 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x6047ede6 can_fd_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x74f31411 can_rx_offload_irq_finish +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0x8860b0fa can_rx_offload_irq_offload_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa048b21d can_rx_offload_irq_offload_fifo +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa27c91b4 can_rx_offload_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xa792b927 can_rx_offload_queue_tail +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xb7c94c90 can_rx_offload_add_manual +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xba006ef8 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xc8414bfe open_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xcd5fca7e alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd16c2e52 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xd6b23c83 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xe0edf507 can_rx_offload_add_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf12d9387 can_fd_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf5bd1930 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf744c1ff can_rx_offload_del +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xf7c69dff free_candev +EXPORT_SYMBOL_GPL drivers/net/can/dev/can-dev 0xfd05b9bb can_rx_offload_queue_timestamp +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x00a392d2 m_can_class_unregister +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x00de430b m_can_class_resume +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x133684e3 m_can_class_register +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x27d7cdba m_can_class_get_clocks +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x3b2b0631 m_can_class_allocate_dev +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0x47fc982f m_can_init_ram +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd3c987a9 m_can_class_suspend +EXPORT_SYMBOL_GPL drivers/net/can/m_can/m_can 0xd7bc9536 m_can_class_free_dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x26ca226a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8e6ea3ee register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa1573368 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfabaeefe free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/dsa/lan9303-core 0xeb66ff76 lan9303_indirect_phy_ops +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x03b7ce28 ksz_port_mdb_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x0d2437dc ksz_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1f016555 ksz_port_stp_state_set +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x1f477191 ksz_port_fast_age +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x24c24bf0 ksz_port_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x26cac46e ksz_enable_port +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x2c434e04 ksz_init_mib_timer +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x42e76f72 ksz_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x57353c18 ksz_get_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5da24ce2 ksz_phy_read16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x5dcb11fe ksz_port_fdb_dump +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6994cc04 ksz_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x6ebae817 ksz_r_mib_stats64 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x7c3e8576 ksz_phylink_get_caps +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x90205dd9 ksz_update_port_member +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x96d26e71 ksz_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0x979df406 ksz_phy_write16 +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xa4722450 ksz_get_tag_protocol +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xad75c098 ksz_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb387949e ksz_port_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xb8060be7 ksz_port_bridge_leave +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xbdb9ec39 ksz_switch_chips +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd1c1ebef ksz_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd69e68d0 ksz_port_bridge_join +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xd709bfe8 ksz_port_vlan_filtering +EXPORT_SYMBOL_GPL drivers/net/dsa/microchip/ksz_common 0xe8c36047 ksz_port_mdb_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8365mb 0xd3f281f2 rtl8365mb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x19f0e551 rtl8366_enable_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x1eb46d92 rtl8366_vlan_del +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x28e52c8f rtl8366_get_strings +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x2af59d15 rtl8366_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x5829c62d rtl8366_enable_vlan4k +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x6e134c7a rtl8366_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x84bbcb34 rtl8366_reset_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x8ff07957 rtl8366_set_pvid +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0x9962630f rtl8366rb_variant +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd2382ace rtl8366_vlan_add +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xd7003f7b rtl8366_set_vlan +EXPORT_SYMBOL_GPL drivers/net/dsa/realtek/rtl8366 0xe20bddc1 rtl8366_mc_is_used +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0478cdd4 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x947f2de1 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x9bfc040b enetc_mdio_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0x9e570f1c enetc_mdio_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xcff7fba4 enetc_hw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/freescale/enetc/fsl-enetc-mdio 0xd9d61d6f enetc_mdio_lock +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x27c1dc20 fun_serv_restart +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x4fa88054 fun_get_res_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x570fb377 fun_res_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x5b484148 fun_serv_sched +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6b1d050c fun_sq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x6efdb472 fun_free_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x7c02be00 fun_submit_admin_sync_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0x8ab40380 fun_cq_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xa541e2f7 fun_alloc_ring_mem +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xcce8b020 fun_serv_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/fungible/funcore/funcore 0xdb13469d fun_bind +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xe235f601 i40e_client_device_register +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/i40e/i40e 0xfe3de796 i40e_client_device_unregister +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x0b3d49c7 ice_get_qos_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x263ae5d2 ice_add_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x389fac38 ice_del_rdma_qset +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0x599e8e4f ice_rdma_update_vsi_filter +EXPORT_SYMBOL_GPL drivers/net/ethernet/intel/ice/ice 0xbad13c3e ice_rdma_request_reset +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0x427ef7f8 otx2_ptp_tstamp2time +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xa5de17b0 otx2_ptp_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xcdb59787 otx2_ptp_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/marvell/octeontx2/nic/otx2_ptp 0xd623bac8 otx2_ptp_clock_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00ce69ff __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a7a7bf mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x063896f8 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ba32759 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ba87417 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c00bac3 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c428da6 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c5c16ca mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c776e29 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d67d277 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eb2e350 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f7a1848 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12af9c2f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1489dad8 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1c790081 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dcc1fa2 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f22fb78 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f549779 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x202445ac mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20976980 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f2e8ce1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x331a8018 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x340f54ee mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37b1058b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37d7f4f2 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c16a51f mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c1d82c9 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c224391 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f295073 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x400b3a92 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40468ff5 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40886f5b mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x439d3ebc mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48e5549f mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cc56223 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee6a346 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50b91273 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x555c677e mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56d9b168 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x572d27fd mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57e5e8d2 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58154d0b mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58183b43 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x592e84db mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a93453c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e4ee278 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609e3652 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6649d1d7 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x666264bd mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67da1690 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68f33a41 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6efdf791 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x739b5554 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7546f526 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75c2af20 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ff45e29 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80f71faa mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8474af8c mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e972fc mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87285e6b mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8915addb mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a054e89 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d931bda mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e06a0e8 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e3eb264 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f3ebde1 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90406ebf mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c03551b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa265f368 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa49c84d2 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70d254b mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7128d48 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9e8c565 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb006cfb6 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb12ee8ef mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba91bd93 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd298be0 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd62f22d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe724de0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbebe7a0a mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbed034c5 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf4f9d5f mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc09efc3e mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc365bb24 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5e5162f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5edb0c5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6649a45 mlx4_config_roce_v2_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7635301 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccad5e7a mlx4_get_devlink_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd3cde52 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce548b2b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceea1ea9 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd08e237a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd29b41f2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd33b48a1 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd53f8ef1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e138f0 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f96527 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe02017f2 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe06e943b mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe27002f8 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe30bf4a8 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe415a720 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86641a6 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe86d267a mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8858081 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8cbfde8 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeab3b3ba mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed13a76a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedac2a1e mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedd1ef48 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0174c74 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf13bd454 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf303b660 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf454f90f mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5d7d710 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6071ba0 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6bfa25f mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfadb8e34 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8a9b65 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe8cc29f mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06c392ce mlx5_ipsec_device_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 0x089fa7b0 mlx5_core_query_sq_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a051d24 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0af58f0d mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e59fe13 mlx5_query_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20c96b93 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x229174e1 mlx5_set_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23cb7957 mlx5_query_nic_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23d67999 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26f90b33 mlx5_modify_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a7b789f mlx5_frag_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4182fb37 mlx5_query_port_wol +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44fdbf65 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4545bee6 mlx5_query_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4727e8cf mlx5_query_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5195b426 mlx5_query_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x542e5c78 mlx5_dm_sw_icm_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55e666b4 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56942e9b mlx5_query_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5802b604 mlx5_query_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5981039f mlx5_eswitch_get_total_vports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5df052a6 mlx5_nic_vport_affiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f256273 mlx5_core_modify_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x660397a0 mlx5_set_port_prio_tc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6761b91d mlx5_core_query_vport_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6766823c mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67cb4a89 mlx5_query_nic_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ae7ba11 mlx5_set_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74057121 mlx5_set_port_tc_bw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bde4e8a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d833fca mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d9a0a63 mlx5_query_port_ets_rate_limit +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e0db0ab mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e62bbef mlx5_query_port_tc_group +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7e87197b mlx5_nic_vport_update_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f663020 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aadc6a mlx5_fill_page_frag_array_perm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82b6a14e mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c7229b mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x899172ab mlx5_nic_vport_unaffiliate_multiport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f6383cc mlx5_modify_nic_vport_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x976659b5 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9e21f641 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f1a214f mlx5_query_module_eeprom +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa04d0764 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2dec9d3 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa513c420 mlx5_toggle_port_link +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4cc189f mlx5_nic_vport_enable_roce +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb72a54dd mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb807c41f mlx5_query_module_eeprom_by_page +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbccc45b8 mlx5_query_nic_vport_min_inline +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdb382cf mlx5_query_nic_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1a758bc mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2ace60d mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2c56810 mlx5_frag_buf_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5b0d30d mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7476de9 mlx5_dm_sw_icm_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9d9b56a mlx5_core_query_ib_ppcnt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc16445a mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7a2fb0c mlx5_nic_vport_query_local_lb +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4410bb7 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeadd88df mlx5_query_nic_vport_qkey_viol_cntr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec3c0926 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf033ab55 mlx5_eswitch_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1fc3bbf mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf558bd6f mlx5_set_port_pfc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf99f6d33 mlx5_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfefb89a7 mlx5_core_reserved_gids_count +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x0bba9d6e ks8851_remove_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x1e46a340 ks8851_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x4b6a1cb8 ks8851_probe_common +EXPORT_SYMBOL_GPL drivers/net/ethernet/micrel/ks8851_common 0x7c2b5bd8 ks8851_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9ff1a9b1 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 0x03ec4cfa ocelot_port_add_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x0cf8b526 ocelot_lag_fdb_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x21b7e7d1 ocelot_port_set_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x23abb5ce ocelot_cls_flower_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x30d8f2bd ocelot_port_mirror_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x36b2f388 ocelot_port_readl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x381c5a03 ocelot_get_bridge_fwd_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x40ce6869 __ocelot_rmw_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x4fa932f6 __ocelot_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f24ddb5 ocelot_regmap_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x6f939f25 ocelot_port_del_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x722948fd ocelot_regfields_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x76e18198 ocelot_phylink_mac_link_down +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x7c71adcc ocelot_migrate_mdbs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x8a1251f4 ocelot_port_mirror_del +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0x953212de __ocelot_write_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa56cfdb3 ocelot_port_writel +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa7c16ac6 __ocelot_bulk_read_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa860ce56 ocelot_phylink_mac_link_up +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xa9fbbeb5 ocelot_port_assign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xac609be2 ocelot_port_rmwl +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xb290d81c ocelot_port_assigned_dsa_8021q_cpu_mask +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbb3cba4e ocelot_port_get_dscp_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xbf33a47e ocelot_cls_flower_replace +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xcf676409 ocelot_mact_flush +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xd498ae9b ocelot_cls_flower_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xdb321403 ocelot_bridge_num_find +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xe1158eb5 ocelot_port_unassign_dsa_8021q_cpu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xf130f850 ocelot_port_get_default_prio +EXPORT_SYMBOL_GPL drivers/net/ethernet/mscc/mscc_ocelot_switch_lib 0xfe0b827c ocelot_lag_fdb_del +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 0x0712fea5 stmmac_init_tstamp_counter +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x237b036c stmmac_bus_clks_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2e7b281f stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x545572d4 stmmac_set_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x92d778bb stmmac_get_mac_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd58524d6 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe8b95820 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf17f5d2b stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x19054fa4 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x330dde0e stmmac_remove_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x502ba38f stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8a381a9c stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xee762230 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0x3b06d9e2 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 0x7554d276 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 0xce11fb7f am65_cpts_tx_timestamp +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/am65-cpts 0xfca9b9d9 am65_cpts_phc_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x30cc359a w5100_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0x6c9fc6fa w5100_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xb858257d w5100_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/wiznet/w5100 0xda24d0cc w5100_ops_priv +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9c60d191 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc6f55c95 ipvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xc7a1b118 ipvlan_link_delete +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xdf70c20e ipvlan_link_setup +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xf3cc98d6 ipvlan_count_rx +EXPORT_SYMBOL_GPL drivers/net/ipvlan/ipvlan 0xfffef6cb ipvlan_link_new +EXPORT_SYMBOL_GPL drivers/net/macsec 0x8d6aa860 macsec_pn_wrapped +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x2aefd43f macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5f8d317c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x61716e9e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd7fd216e macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/mdio/mdio-i2c 0x768da2e4 mdio_i2c_alloc +EXPORT_SYMBOL_GPL drivers/net/net_failover 0x68ff7ca6 net_failover_destroy +EXPORT_SYMBOL_GPL drivers/net/net_failover 0xa01b4256 net_failover_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x15a27b17 xpcs_get_interfaces +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x30a9c1e7 xpcs_config_eee +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x49baefb0 xpcs_create +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x752a614d xpcs_get_an_mode +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8947189e xpcs_link_up +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0x8c37da87 xpcs_do_config +EXPORT_SYMBOL_GPL drivers/net/pcs/pcs_xpcs 0xdbcae28e xpcs_destroy +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x075ac0a5 __bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0b5b24c1 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0e9a484c bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1163dca8 __bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x21fbba24 bcm_phy_get_strings +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2272b01f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x247c0e71 __bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x248311fd __bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x24e46485 bcm_phy_downshift_set +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27c3bc22 bcm_phy_cable_test_get_status +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2882f599 bcm_phy_read_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c72480e __bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2f8fe6fc bcm_phy_cable_test_start_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x334a563d bcm_phy_28nm_a0b0_afe_config_init +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x42de0c4c bcm_phy_r_rc_cal_reset +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x435c04d4 bcm_phy_get_stats +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x469c034b bcm_phy_modify_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4bf1f9bc bcm_phy_cable_test_start +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b393fd3 bcm_phy_handle_interrupt +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x94f97bc2 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9b8bb990 bcm_phy_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa1e6a91b bcm_phy_write_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa4d4056f bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa420227 bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb6b3cb41 bcm_phy_cable_test_get_status_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbf10466e bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc0ac4962 __bcm_phy_modify_rdb +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc63f13ad bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcab10aee bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdeac5910 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe49addb6 bcm_phy_enable_jumbo +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xef7ee802 bcm_phy_get_sset_count +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf102ee55 bcm54xx_auxctl_read +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf6f0a8fe bcm_phy_downshift_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x003294bf 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 0x15c4e3e2 phylink_ethtool_set_pauseparam +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x16ca1a8a phylink_suspend +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x182541a9 phylink_ethtool_ksettings_get +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2651c5c8 phylink_generic_validate +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x2c8e28ee phylink_ethtool_get_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x3f5049c3 phylink_create +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x4386cacd phylink_get_linkmodes +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57727285 phylink_ethtool_set_eee +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x57b0e67f phylink_mii_c22_pcs_an_restart +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 0x6fa426d2 phylink_ethtool_nway_reset +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x78793e04 phylink_mii_c22_pcs_config +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x825c7340 phylink_get_eee_err +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x8df9a48e phylink_mii_c22_pcs_decode_state +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x911fcd6c phylink_start +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x970f2c71 phylink_connect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x983276da phylink_disconnect_phy +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0x98a3c97b phylink_of_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xb384c13e phylink_ethtool_ksettings_set +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 0xc85b7c9f phylink_mii_c22_pcs_encode_advertisement +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xce4b2977 phylink_fwnode_phy_connect +EXPORT_SYMBOL_GPL drivers/net/phy/phylink 0xcff1abd9 phylink_decode_usxgmii_word +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 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 0xfaee6ba4 phylink_mii_c22_pcs_get_state +EXPORT_SYMBOL_GPL drivers/net/tap 0x1821f44a tap_create_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0x59b29ad3 tap_get_ptr_ring +EXPORT_SYMBOL_GPL drivers/net/tap 0x70941d5c tap_get_socket +EXPORT_SYMBOL_GPL drivers/net/tap 0x71e83dab tap_handle_frame +EXPORT_SYMBOL_GPL drivers/net/tap 0x7a0569d8 tap_queue_resize +EXPORT_SYMBOL_GPL drivers/net/tap 0xa80ab213 tap_del_queues +EXPORT_SYMBOL_GPL drivers/net/tap 0xc89f63ad tap_destroy_cdev +EXPORT_SYMBOL_GPL drivers/net/tap 0xd2847442 tap_free_minor +EXPORT_SYMBOL_GPL drivers/net/tap 0xdf1666c5 tap_get_minor +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6a170889 usbnet_cdc_zte_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x70c0aa73 usbnet_ether_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x721c5d04 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x74a87fb9 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x93750c71 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9f3dcd57 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe6bf7005 usbnet_cdc_update_filter +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1f05d6da cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x3d0be94f cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4b010f8c cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x65179964 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x78a4b37d cdc_ncm_rx_verify_ndp32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaaa27597 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb5c459ac cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd71b59b2 cdc_ncm_rx_verify_nth32 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe3aafdb1 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2f1d0a7 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf999281c cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/r8152 0xd034b3a3 rtl8152_get_version +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x56bcaf50 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x715360b8 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7ff671ac rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaa1c8e53 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb71d9c98 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd0d07db1 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00149b6f usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0259be16 usbnet_get_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02b48d8f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x125f50e7 usbnet_set_rx_mode +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18555b39 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1d5a8b5c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20382e89 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21040511 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2b72bcd1 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f27d1cd usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38ba4fbc usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4186ef6c usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4d1c722c usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5757cc41 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x628f794b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6aa75544 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bf0680c usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98e75bc4 usbnet_get_link_ksettings_internal +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa63ac682 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbaafb833 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfd653bb usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc001a3a0 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc13203eb usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc165111d usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc55ddf4e usbnet_set_link_ksettings_mii +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6ce4db4 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc77eb0b5 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc8c596f8 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd8df4ac usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe02561ca usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe507b17a usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed88c708 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf98aef6d usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffc19891 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4c144167 vxlan_fdb_replay +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0x4e16a055 vxlan_fdb_clear_offload +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xa8016846 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan/vxlan 0xf6a48200 vxlan_fdb_find_uc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/ipw2x00/libipw 0x87aa0b1e libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x24ce732e _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x47a2dfb3 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x48309f01 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0x8b6b074f il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlegacy/iwlegacy 0xef62cadc il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x5987fe45 iwl_fw_lookup_assert_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x71118edc iwl_fw_lookup_cmd_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intel/iwlwifi/iwlwifi 0x74778a2f iwl_fw_lookup_notif_ver +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x474e504d p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x48a60f89 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x4ddee302 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0x775e2d9e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xac8bbc99 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xc1cbf069 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xdab8609f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xea03fbbc p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/intersil/p54/p54common 0xf1e4deab p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x07e28671 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x20008af3 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x29b38282 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x2c598a8c lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x39349d42 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x395bde5c lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x3aa627e5 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5dbd5de4 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0x9f7486c0 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xa6a8a9fc lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbda9702f lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xbe44d90d lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xd192d918 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf42502f4 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf4330002 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas/libertas 0xf8312e2d lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x0d3741f9 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x13f36e9f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x2e27070d lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x4fa60c89 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0x85784923 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xaea0033f __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/libertas_tf/libertas_tf 0xb84c4682 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 0xe2f33c30 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0b320592 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x0e49456c mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1280ef4d mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x1a58546c mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x247b39a2 mwifiex_prepare_fw_dump_info +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x274a05f2 mwifiex_reinit_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x2f02154c mwifiex_fw_dump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3d3c9014 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x3da96087 mwifiex_dnld_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x4539aefd mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x464bd124 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x52165c1b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x55a20644 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x560e2683 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x58101e0b mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7651bf02 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x7d96b367 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0x8a72af32 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb4952097 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xb71b1801 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xcf8f927c mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd03e785c mwifiex_shutdown_sw +EXPORT_SYMBOL_GPL drivers/net/wireless/marvell/mwifiex/mwifiex 0xd2257dae 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 0xdddaad11 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x00511d6e mt76_tx_status_skb_done +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x043d4610 mt76_token_release +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0a77f48c mt76_eeprom_override +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0ae40b53 mt76_token_consume +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x0d11f116 mt76_alloc_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1148ead3 mt76_free_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x133e47dd mt76_update_survey_active_time +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x13e8c262 mt76_tx_status_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x14892335 mt76_register_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x15338de5 mt76_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x17f568e9 mt76_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a72a117 mt76_set_stream_caps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1a87053f mt76_queue_tx_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x1e6608a7 mt76_dma_attach +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 0x1fc2ad99 mt76_tx_status_skb_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x27ad7edc __mt76_mcu_send_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x2bab6637 __mt76_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x30842306 mt76_mcu_get_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x333bb783 mt76_insert_ccmp_hdr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34b52ed8 mt76_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x34da9686 mt76_mcu_rx_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3df37251 mt76_tx_check_agg_ssn +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x3f55e3ef mt76_release_buffered_frames +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x40398593 mt76_set_irq_mask +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4200af24 mt76_stop_tx_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x444e261e mt76_sw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x458a3067 mt76_tx_worker_run +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4594dccd mt76_ethtool_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x465efb57 mt76_tx_status_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4759d6ed mt76_seq_puts_array +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x480b6b7b mt76_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x48c2b50b __mt76_set_tx_blocked +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x49e93dc4 mt76_queues_read +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x4d851bb4 mt76_wake_tx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5013ae6a __traceiter_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x519c3d8d mt76_get_min_avg_rssi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x52ee43cc mt76_mcu_skb_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d1b4e42 __tracepoint_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x5d36af0d __traceiter_mac_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x63d250ad mt76_rx_aggr_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x652aa507 mt76_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x698bdac3 mt76_tx_status_unlock +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6b293082 mt76_get_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x6d478c45 mt76_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x70cf7d45 mt76_mmio_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7221b63f mt76_init_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x760773dd mt76_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x774d9a50 mt76_get_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b57183d mt76_get_rate_power_limits +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x7b600748 mt76_rx_aggr_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x805fc13a __SCK__tp_func_dev_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x81fa2387 mt76_update_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x832be784 mt76_txq_schedule_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x89b9377a mt76_dma_rx_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8b347358 mt76_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8f9f9e92 mt76_has_tx_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x8fdb0281 __mt76_mcu_msg_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x90790d24 __mt76_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x957caf1c __mt76_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x996a05cc mt76_sta_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0x9f99f28b mt76_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa1873b09 mt76_sta_pre_rcu_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xa5e1ca0f mt76_calculate_default_rate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xae3db60e mt76_register_debugfs_fops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb59f0f08 mt76_skb_adjust_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xb92d615a mt76_dma_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbb30c6d1 mt76_init_sar_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbbc9f6b2 mt76_tx_status_skb_get +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbc65e07b mt76_get_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xbfa11269 __mt76_poll_msec +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xc42b113d mt76_csa_check +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 0xc8a9d46f mt76_csa_finish +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd39fbc2c mt76_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd5217244 mt76_get_of_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xd68356fb mt76_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xdb8671c0 mt76_phy_dfs_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xe40b66ef mt76_wcid_alloc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xea883962 mt76_pci_disable_aspm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xed3c1d18 mt76_unregister_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1abe212 mt76_txq_schedule +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xf1f0b872 mt76_put_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa22d221 mt76_unregister_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfa6af2d7 mt76_alloc_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76 0xfe175dee mt76_mcu_send_and_get_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x02754fda mt76_connac_sta_state_dp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x04a71010 mt76_connac_mcu_uni_add_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x08a473c6 mt76_connac_mcu_sta_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0c0a5fdd mt76_connac_mcu_sta_uapsd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x0fb6d77b mt76_connac_mcu_set_rate_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x14668c6b mt76_connac_mcu_update_gtk_rekey +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x19bd37d2 mt76_connac_mcu_wtbl_update_hdr_trans +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1a97ed53 mt76_connac_mcu_add_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1b08bca5 mt76_connac_power_save_sched +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x1d682380 mt76_connac_pm_queue_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x23d6a7eb mt76_connac_mcu_sta_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x317031df mt76_connac_mcu_sta_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4001bb31 mt76_connac_free_pending_tx_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x42a85e68 mt76_connac_mcu_update_arp_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x433aadfd mt76_connac_mcu_wtbl_ht_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44e93993 mt76_connac_mcu_init_download +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x44f40c72 mt76_connac_mcu_wtbl_smps_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x46590ece mt76_connac_mcu_sta_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x4b38508a mt76_connac_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5399e3fb mt76_connac_mcu_cancel_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x53a0149d mt76_connac_mcu_set_hif_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5460f045 mt76_connac_mcu_alloc_wtbl_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x58fc7474 mt76_connac_mcu_bss_ext_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5a25d665 mt76_connac_mcu_set_p2p_oppps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x5f7217d4 mt76_connac_mcu_sta_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x66f127de mt76_connac_mcu_sta_ba +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x6b6e72a0 mt76_connac_get_phy_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x740306d5 mt76_connac_mcu_set_suspend_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x77fb78ef __mt76_connac_mcu_alloc_sta_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x78ec2f1d mt76_connac_mcu_reg_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x79bc016c mt76_connac_mcu_sched_scan_req +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7b59c666 mt76_connac_mcu_add_nested_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x7ddea5bb mt76_connac_mcu_set_channel_domain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8417fd4f mt76_connac_pm_dequeue_skbs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x84802681 mt76_connac_mcu_rdd_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0x8ee47a62 mt76_connac_mcu_set_deep_sleep +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 0x90f8886b mt76_connac_mcu_set_pm +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa097655d mt76_connac_mcu_set_rts_thresh +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa4bf4999 mt76_connac_mcu_bss_omac_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xa5a51ca6 mt76_connac_mcu_uni_add_bss +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xaf26bf4e mt76_connac_mcu_bss_basic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb0456555 mt76_connac_mcu_coredump_event +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb368cd86 mt76_connac_mcu_start_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xb6131b8a mt76_connac2_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbb7edaab mt76_connac_mcu_sched_scan_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd2d8fb3 mt76_connac_mcu_get_nic_capability +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xbd8e43e5 mt76_connac_mcu_wtbl_ba_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xccaa33d5 mt76_connac_mcu_chip_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xd0516482 mt76_connac_mcu_hw_scan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xde9c6b27 mt76_connac_mcu_beacon_loss_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xdf6920f9 mt76_connac_mcu_set_mac_enable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe26180d4 mt76_connac_mcu_patch_sem_ctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xe8217048 mt76_connac_mcu_wtbl_hdr_trans_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xefba748b mt76_connac_mcu_reg_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf232258e mt76_connac_get_he_phy_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf60668b4 mt76_connac_mcu_wtbl_generic_tlv +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xf6d17828 mt76_connac_mcu_start_patch +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfdf13057 mt76_connac_pm_wake +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-connac-lib 0xfff4554b mt76_connac_mcu_set_vif_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x0a401366 mt76s_sdio_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x144b1740 mt76s_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x4ba97c8d mt76s_alloc_rx_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x525a31e7 mt76s_read_pcr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6aef920d mt76s_hw_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x6e7b12b2 mt76s_rmw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7a995097 mt76s_rd_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x7fb3f21a mt76s_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x833f36ef mt76s_txrx_worker +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x933ecf85 mt76s_txqs_empty +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9bf29e2d mt76s_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9e6912ab mt76s_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0x9e98bf5d mt76s_wr_rp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xa9e78e2f mt76s_alloc_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xd109ef61 mt76s_write_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-sdio 0xe2cffe35 mt76s_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x08d2ecfe __mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x17b3787b ___mt76u_rr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x25474176 mt76u_alloc_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x2d2743b2 mt76u_single_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x3133dedb mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x58fab77f __mt76u_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x5fcc96d9 mt76u_stop_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0x759343f5 mt76u_stop_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xafb45dbd mt76u_alloc_mcu_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd2472416 ___mt76u_wr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xd3376b2b mt76u_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xe4722c06 mt76u_read_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xeb8ac05e mt76u_queues_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76-usb 0xfbbff415 mt76u_resume_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x0a376811 mt7615_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1079d26e mt7615_register_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x12d3605b __mt7663_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1587c7fc mt7615_mcu_restart +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x163a4c5a mt7615_wait_for_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x18783519 mt7615_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x1c52c2d7 mt7615_init_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2a192973 mt7615_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x2fb1ceee mt7615_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x33e1ed55 mt7615_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x3eae876e mt7615_mcu_fill_msg +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x43f7316a mt7622_trigger_hif_int +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x57d83757 mt7615_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x593fe7c3 mt7615_mcu_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x6ccc217d mt7615_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x777c2630 mt7615_txp_skb_unmap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x85691ee8 mt7615_rx_check +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x8c02f2f9 mt7615_unregister_ext_phy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0x9ee0fc9c mt7615_thermal_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xa7f28fe4 mt7615_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xb66f55fe mt7615_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc7142aea mt7615_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xc7e9dd42 mt7615_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xd8630cac mt7615_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xdaf5ab78 mt7615_mac_set_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xe0a6c7d8 mt7615_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xfc53ddc1 mt7615_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615-common 0xffe36665 mt7615_tx_token_put +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7615e 0xf6173601 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 0x2555d872 mt7663_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x2891e439 mt7663_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0x3ccacbf9 mt7663_usb_sdio_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7615/mt7663-usb-sdio-common 0xc9199e0a mt7663_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x03616597 mt76x0_chip_onoff +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x22b0516b mt76x0_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x32dc7e05 mt76x0_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x6d9cb238 mt76x0_init_hardware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0x84c2b8b0 mt76x0_phy_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xc3d34aad mt76x0_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x0/mt76x0-common 0xf6c3ef02 mt76x0_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x00d59754 mt76x02_get_lna_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x01781407 mt76x02_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x02aca034 mt76x02_mcu_set_radio_state +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0454c350 mt76x02_mcu_function_select +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 0x0a8e5912 mt76x02_ext_pa_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x0beca271 mt76x02_add_interface +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 0x10303611 mt76x02_phy_set_bw +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x15b6b49a mt76x02_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1c1539dc mt76x02_rx_poll_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x1eccd6c8 mt76x02_eeprom_parse_hw_cap +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x21f632b0 mt76x02_get_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2375079c mt76x02_dma_disable +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2673c22c mt76x02_phy_set_txdac +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x2a3b424e mt76x02_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x327f7b92 mt76x02_phy_dfs_adjust_agc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x33d5be90 mt76x02_dma_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x35d2834d mt76x02_limit_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3b6f58ce mt76x02_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d25fb1f mt76x02_set_coverage_class +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x3d3d0e74 mt76x02_get_efuse_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4584c26c mt76x02_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x45c6b753 mt76x02_mcu_calibrate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4c1ca2a9 mt76x02_mac_shared_key_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x4d2b306c mt76x02_set_tx_ackto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x54fc0d88 mt76x02_update_beacon_iter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x57021ce8 mt76x02_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5a53aaaf mt76x02_mcu_msg_send +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5bd84fd5 mt76x02_rates +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5c44f8d5 mt76x02_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5cf291d2 mt76x02_phy_adjust_vga_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x5d305601 mt76x02_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x623bd195 mt76x02_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x726da9fd mt76x02_init_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7270837d mt76x02_mac_cc_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x72953978 mt76x02_phy_set_band +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x75e19d9c mt76x02_mac_set_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7bc72ef1 mt76x02_init_debugfs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x7f6437de mt76x02e_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x82654559 mt76x02_mac_setaddr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x83ba1ea9 mt76x02_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x848ccbd8 mt76x02_enqueue_buffered_bc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x86e322c2 mt76x02_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8991d679 mt76x02_eeprom_copy +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8aed3ce5 mt76x02_tx_set_txpwr_auto +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c126f6e mt76x02_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8c4b3478 mt76x02_remove_hdr_pad +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x8f295c50 mt76x02_mcu_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x91d5b9ee mt76x02_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x926b9c23 mt76x02_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x92dbe5ed mt76x02_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9b552d51 mt76x02_sta_rate_tbl_update +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9d6cb3e8 mt76x02_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f73b9df mt76x02_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0x9f9911ed mt76x02_resync_beacon_timer +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xa90ffafa mt76x02_mac_reset_counters +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xaa6eccfc mt76x02_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb1169dc1 mt76x02_edcca_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb322d898 mt76x02_init_agc_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb5e611cf mt76x02_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb67aa7e6 mt76x02_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb73c8381 mt76x02_phy_set_rxpath +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xb7fdad43 mt76x02_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xc31860cd mt76x02_config_mac_addr_list +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd88ebad1 mt76x02_mac_wcid_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xd8fde195 mt76x02_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xdd577042 mt76x02_mac_write_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xf3f0d415 mt76x02_set_ethtool_fwver +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfd5dd575 mt76x02_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-lib 0xfdaeca19 mt76x02_dfs_init_params +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x170d1d50 mt76x02u_exit_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x674e1c63 mt76x02u_init_mcu +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x82575592 mt76x02u_mcu_fw_send_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0x9c8e9ca2 mt76x02u_mcu_fw_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xb65b5010 mt76x02u_init_beacon_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xbb4692c1 mt76x02u_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xe4b75f3a mt76x02u_mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x02-usb 0xebeb8a00 mt76x02u_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0c35b9c6 mt76x2_configure_tx_delay +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x0f61bac6 mt76x2_phy_tssi_compensate +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x14f09f14 mt76x2_get_power_info +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x15166fea mt76x2_mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x1ff1417e mt76x2_mcu_load_cr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x30c4f69d mt76x2_get_rate_power +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x5518c6ea mt76x2_set_sar_specs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x731d84bb mt76x2_phy_update_channel_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7771f8de mt76x2_phy_set_txpower_regs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x7882740f mt76x2_mcu_init_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0x978e5ec4 mt76x2_get_temp_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xa3501d6d mt76x2_mcu_set_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xab4ed621 mt76x2_eeprom_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xb3a772d9 mt76x2_init_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xcf4c5756 mt76x2_phy_set_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd0b2e90e mt76x2_reset_wlan +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd245ed25 mt76_write_mac_initvals +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xd8256d3c mt76x2_apply_gain_adj +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xf572b42f mt76x2_read_rx_gain +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt76x2/mt76x2-common 0xfd920492 mt76x2_mcu_tssi_comp +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x03a5e88c mt7921_mcu_exit +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0822e518 mt7921_mac_init +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0f9ffdfd mt7921_sta_ps +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x0fb58637 mt7921_mac_add_txs +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1a96ee50 mt7921_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x1c605d47 mt7921_mcu_fill_message +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3245e803 mt7921_queue_rx_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x333be656 mt7921_mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x35c0f2d5 mt7921_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x36bcbca3 mt7921_usb_sdio_tx_prepare_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x3845ee1b mt7921_tx_check_aggr +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x38f3a76f mt7921_mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x63ddafbd __mt7921_start +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x68b290da mt7921_mac_sta_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x747a8032 mt7921_mcu_fw_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x77fb572e mt7921_mcu_drv_pmctrl +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7a782a03 mt7921_usb_sdio_tx_complete_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7cc19da7 mt7921_mac_sta_assoc +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x7d462da2 mt7921_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0x9a4e00be mt7921_usb_sdio_tx_status_data +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa292bfeb mt7921_mcu_parse_response +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xa52fa19e mt7921_register_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xabcb0c5a mt7921_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xce33d88d mt7921_mcu_set_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/mediatek/mt76/mt7921/mt7921-common 0xeade7013 mt7921_update_channel +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x023721fb wilc_cfg80211_init +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x25cd5e17 host_sleep_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0x5d6b7379 wilc_handle_isr +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xa8b79ec8 chip_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xe4696c6c host_wakeup_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xf30545d4 wilc_netdev_cleanup +EXPORT_SYMBOL_GPL drivers/net/wireless/microchip/wilc1000/wilc1000 0xfc6f6d15 chip_allow_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x31fab83c qtnf_chipid_to_string +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x4bd63a5f qtnf_wake_all_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x714733d8 qtnf_trans_handle_rx_ctl_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x8ccefcba qtnf_core_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0x9befe40d qtnf_get_debugfs_dir +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xb4581aeb qtnf_core_attach +EXPORT_SYMBOL_GPL drivers/net/wireless/quantenna/qtnfmac/qtnfmac 0xde52ab4d qtnf_classify_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x03bd0fd6 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x0d24e436 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x10d93478 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x14376ec6 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x1976c897 rt2800_txstatus_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x28acf6eb rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x29e90af1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3a7c8866 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3e1a37a9 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x3ec528fb rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4105c8af rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x450267f6 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x47e99711 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x49740534 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4a841e47 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x4d250e85 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x5248b0f8 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6afc86e8 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c3763b0 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x6c894021 rt2800_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7142c22c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x75419bf5 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x7866756a rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x786cf3c6 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x8da41d9e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x93782a1e rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0x9fb9eaee rt2800_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xa9cba0b2 rt2800_pre_reset_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb019f44d rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xb86167f0 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc03dd61c rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc058e078 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc10524fa rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc2f45ef9 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xc8374b16 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xcc14c232 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd6b75190 rt2800_txdone_nostatus +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xd8e065c7 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe791897a rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xe88074fb rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xed0a335a rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf4b621cb rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf5cb0698 rt2800_txstatus_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800lib 0xf7f8157f rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x29d0120a rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x29d5567c rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x32ac3645 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d0258e9 rt2800mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3d741c87 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x3fe4d0b4 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4e822a03 rt2800mmio_get_dma_done +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x4e861f4f rt2800mmio_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5028bbb2 rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x51437c81 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x57bbbc92 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8356c57f rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x8e0068ee rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x9411881b rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0x96df8d31 rt2800mmio_start_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 0xbb74373d rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xdd68be28 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe964f500 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2800mmio 0xe9b47060 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x08b447cd rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0ad8a61c rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x0bec7d2e rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x14cd672e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x158aab4e rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1654f54f rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x17ecc031 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1d1156b4 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x1e81e933 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x20d222e1 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x24a8a978 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x2b22a942 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x31ad29d9 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x33c01e12 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x374eb6c0 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x53a00536 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x55cb7757 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5a41c280 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x5b14565e rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x65855974 rt2x00lib_txdone_nomatch +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x66b57f7b rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x69da346c rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x774d5e67 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7b85030b rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x7cbbebaf rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x86775be1 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x870b183b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x8e814961 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x95bfaf21 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9636ebf2 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x973db89a rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x993894d2 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0x9ffdcfdb rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xa8def4f3 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb0f9ffec rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb28ed02a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xb2a1e319 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xbffddc07 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xcefdbe93 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd3923d1b rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xd407a54b rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xdb713559 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xe2bfee4c rt2x00lib_set_mac_address +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf2fd51a4 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf6be0ece rt2x00mac_reconfig_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xf7302756 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00lib 0xfc563204 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x143910be rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x8af9687a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0x9ce3a0d6 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xefb5f5a3 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00mmio 0xf76f141c rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x0542eec1 rt2x00pci_pm_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0x308a8952 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00pci 0xf7223860 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x1f46e079 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x25f27ba5 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x2eab2ca2 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x3ab1bfb0 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5c7c567c rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x5f09e72f rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x62c944a4 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x740eeed7 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0x88267509 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xa585b028 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xc670edda rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xdd7a0ded rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xe07d9f66 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xee34b82b rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xf6b82716 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ralink/rt2x00/rt2x00usb 0xfe6ac7ba rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60b5322d dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x754e5a49 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd4d296c dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2628b7e rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x04c85ef7 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07efbbfa rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0cb0ff06 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0ccbaecd rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x182fd476 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x283a4fab rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x340d4a0d rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x36e2aecf rtl8723_phy_reload_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 0x400f7cea rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4d3e28f8 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a0f2062 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x61ca1e25 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x640b8a40 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7eb2b67a rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8baf8913 rtl8723_phy_set_sw_chnl_cmdarray +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91e47fe0 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x943587a5 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94bae893 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x972fe612 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa43cc18c rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6c1b8fc rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb08ebded rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb183c0ae rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbc23bb2 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd536f78c rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf04cd04a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06714454 rtl_set_tx_report +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d32cdfc rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5382f9 rtl_fill_dummy +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3630ff0c rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37860e19 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ef6223c read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x467c6ce8 rtl_tx_ackqueue +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x49cf5775 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a110ac7 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4e94cd48 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5738590f rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x584c8872 rtl_tx_mgmt_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 0x71d81284 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x728b28c6 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x75d67407 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ad271a6 rtl_tx_report_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85348acc rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97e05663 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e826daa rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa53636d7 rtl_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab563e19 rtl_get_hal_edca_param +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb66a6dd8 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc91724a rtl_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc948f809 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfee2923 rtl_efuse_ops_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3834065 rtl_get_hwinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7e582a5 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe25c894c rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeacba6bb rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x0f5c3ce9 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x227710f7 rsi_hal_device_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x92e1606d rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xcd173710 rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd468f866 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd8e66e6e rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe88c9626 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0x2d9d3c2d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xd65ed51b cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xeda9166f cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/st/cw1200/cw1200_core 0xf4504a35 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5f4614c5 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc8a45404 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe2d8e046 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06d3b27e wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x093e803c wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10c4e0e2 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e249e00 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20351125 wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3333903d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33b1e990 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36695458 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3b9583a5 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e0cd7d3 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x52819779 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x537b1792 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6239b9bc wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x767cd777 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a53ae36 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a726918 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b56f018 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x825aee57 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82a0cd9f wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85498cd1 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x858fe491 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x941fa74d wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98e7dcfc wlcore_event_fw_logger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9f55575d wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9fb095de wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9511666 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac72a5e7 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb2bcc751 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb39cfe02 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb89cb195 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9f11641 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbed0ae0c wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4782f1e wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc95bd134 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb30d8ec wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcc1ec513 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xceda5334 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1d31178 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9c5932f wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda3b668b wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbe4357a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecd76abe wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed693f7e wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xef5dbe1d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf16139ab wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfa0be417 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4aec4893 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x50a0a023 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9c527a53 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe5da5f0e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x353bed3e pn533_finalize_setup +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x5b58f6e4 pn53x_register_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0x9519ee44 pn532_i2c_nfc_alloc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xa17df226 pn53x_unregister_nfc +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xb78562e9 pn533_rx_frame_is_cmd_response +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdb98d2a7 pn53x_common_init +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xdecfd339 pn533_rx_frame_is_ack +EXPORT_SYMBOL_GPL drivers/nfc/pn533/pn533 0xe0a02b4d pn53x_common_clean +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x04e010c3 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x082c79c8 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x34c269f0 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xac1edd5b st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb6bf7f6e st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcb4ce16d st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdbf767dd st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe946e6d0 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0996366a st95hf_spi_recv_response +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0x0e6a9794 st95hf_spi_recv_echo_res +EXPORT_SYMBOL_GPL drivers/nfc/st95hf/st95hf 0xf71b0ec3 st95hf_spi_send +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x1a9a0e0c ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x30934216 ntb_transport_max_size +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x32537aca ntb_transport_link_query +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x4c14a49d ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5e86d9e2 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 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 0x44d1b1cb async_pmem_flush +EXPORT_SYMBOL_GPL drivers/nvdimm/nd_virtio 0x7a840965 virtio_pmem_host_ack +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x00f9687b nvme_start_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x058ce043 nvme_enable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0910ed49 nvme_shutdown_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x0ad5dab6 nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x103561b1 __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 0x1455434b nvme_stop_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x1cdd0a12 nvme_set_queue_count +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x27167d6b nvme_start_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2914b3c4 nvme_cleanup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x2a0df1ba nvme_wait_freeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x399baa9e nvme_change_ctrl_state +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x3bff39c6 nvme_set_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x46cee5f4 nvme_disable_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x4844d238 nvme_uninit_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x49224181 nvme_reset_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x5a8e6b4e nvme_start_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x64b62862 nvme_wq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x673703ff nvme_stop_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x6f38395a nvme_sync_io_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x713dccb5 nvme_init_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x73ab1b12 nvme_stop_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x754e945b nvme_unfreeze +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x78f0819f nvme_complete_batch_req +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x7f9cf3db nvme_cancel_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x813cf212 nvme_io_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82ccf595 nvme_start_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x82f7339e nvme_cancel_admin_tagset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8a9c70ed nvme_sec_submit +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8b3da846 nvme_stop_keep_alive +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8be0cb6f __nvme_submit_sync_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0x8e7ec2b6 __tracepoint_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa65afd61 nvme_cancel_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa75400eb nvme_wait_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xa8e01691 nvme_delete_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb098987e nvme_init_request +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb30eeb1a nvme_try_sched_reset +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb446fc72 nvme_reset_ctrl +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xb517d016 nvme_complete_async_event +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xbebd8421 nvme_fail_nonready_command +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc100202e nvme_remove_namespaces +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc1abf572 nvme_sync_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xc7871ba1 nvme_wait_freeze_timeout +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xca52b67f nvme_host_path_error +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb0e9890 __traceiter_nvme_sq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xcb53b1a4 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 0xdc439661 nvme_get_features +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xe484166d nvme_complete_rq +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xeed919f7 nvme_setup_cmd +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-core 0xfecc4342 nvme_kill_queues +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x04f6b66e nvmf_connect_io_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a02ed93 nvmf_reg_write32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x0a1ceec3 nvmf_get_address +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x3c94f8b6 nvmf_reg_read32 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4abdd027 nvmf_should_reconnect +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x4bc5f0ad nvmf_reg_read64 +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x51c659eb nvmf_free_options +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0x5eacab42 nvmf_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc69a89fa nvmf_connect_admin_queue +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xc7ff8c2c nvmf_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fabrics 0xd5af64ca nvmf_ip_options_match +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x0d12e564 nvme_fc_register_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3884f8b8 nvme_fc_unregister_localport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x3e33ac54 nvme_fc_rescan_remoteport +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x58e312f7 nvme_fc_io_getuuid +EXPORT_SYMBOL_GPL drivers/nvme/host/nvme-fc 0x8a4d5538 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 0x062853cf nvmet_req_alloc_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x0d142f1b nvmet_sq_destroy +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x24c46a09 nvmet_req_complete +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x3e0ef07a nvmet_wq +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x47d8a0db nvmet_req_uninit +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4b6d2f7e nvmet_ctrl_fatal_error +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x4f46ef31 nvmet_req_free_sgls +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x7392efb1 nvmet_unregister_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x85875f85 nvmet_sq_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0x8e37bb0d nvmet_register_transport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xb0134b39 nvmet_req_init +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet 0xbeb69c44 nvmet_check_transfer_len +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x0b98123d nvmet_fc_rcv_ls_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x1048b92a nvmet_fc_rcv_fcp_req +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x4a013682 nvmet_fc_invalidate_host +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x7fa5302a nvmet_fc_rcv_fcp_abort +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0x9ef76d99 nvmet_fc_unregister_targetport +EXPORT_SYMBOL_GPL drivers/nvme/target/nvmet-fc 0xf4e0b81f 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/controller/pcie-iproc 0xc7627e17 iproc_pcie_shutdown +EXPORT_SYMBOL_GPL drivers/pci/switch/switchtec 0x6f94cc80 switchtec_class +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x0fded1ec hisi_uncore_pmu_event_init +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x12ce3049 hisi_uncore_pmu_del +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x140026a5 hisi_uncore_pmu_start +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x19153929 hisi_uncore_pmu_read +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1c200025 hisi_uncore_pmu_get_event_idx +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x1d1f7ffa hisi_event_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x2592612b hisi_cpumask_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x326cb921 hisi_uncore_pmu_add +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x3ec4fc27 hisi_uncore_pmu_online_cpu +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x400ecdc9 hisi_uncore_pmu_enable +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x4adf4d4e hisi_format_sysfs_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x673151bf hisi_uncore_pmu_identifier_attr_show +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x7d7c8d90 hisi_uncore_pmu_init_irq +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x87e0df31 hisi_uncore_pmu_set_event_period +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0x9d779030 hisi_uncore_pmu_stop +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xa21bc2be hisi_uncore_pmu_event_update +EXPORT_SYMBOL_GPL drivers/perf/hisilicon/hisi_uncore_pmu 0xe70891df 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 0xcb28a9d6 sun4i_usb_phy_set_squelch_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x11a2b71e tegra_phy_xusb_utmi_port_reset +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x238b68dd tegra_xusb_padctl_get_usb3_companion +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x24a969c1 tegra186_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3a4a9d3d tegra_xusb_padctl_disable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x3deb5826 tegra_xusb_padctl_set_vbus_override +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x43095f91 tegra_xusb_padctl_usb3_save_context +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5b3f0553 tegra210_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5c681936 tegra124_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0x5dd46c46 tegra_xusb_padctl_get +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xa4440d58 tegra_xusb_padctl_put +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xabb3a9ad tegra_xusb_padctl_disable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc1a904fd tegra_xusb_padctl_enable_phy_sleepwalk +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xc977ccb0 tegra_xusb_padctl_usb3_set_lfps_detect +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xd1151a6d tegra_xusb_padctl_remote_wake_detected +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xe600b8a3 tegra_xusb_padctl_hsic_set_idle +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf00ceae5 tegra_xusb_padctl_enable_phy_wake +EXPORT_SYMBOL_GPL drivers/phy/tegra/phy-tegra-xusb 0xf69f821a tegra194_xusb_padctl_soc +EXPORT_SYMBOL_GPL drivers/phy/ti/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x10f4daf5 mcp23x08_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x208f7e1a mcp23x17_regmap +EXPORT_SYMBOL_GPL drivers/pinctrl/pinctrl-mcp23s08 0x45f700d4 mcp23s08_probe_one +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0x4a9ed254 lpi_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/qcom/pinctrl-lpass-lpi 0xea7061bd lpi_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0x740ccf1a cros_ec_sensorhub_register_push_data +EXPORT_SYMBOL_GPL drivers/platform/chrome/cros-ec-sensorhub 0xcb21a1aa 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 0x04c9a660 ssam_controller_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x06cf8ccf ssam_client_link +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x0d940621 ssam_controller_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x16eab60a ssam_device_add +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2978a1dd ssam_device_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x2e974199 ssam_controller_statelock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x33046f5e ssam_request_sync_submit +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x3c6c8db2 ssam_request_sync_init +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x40dd2a51 __ssam_device_driver_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x4eaf5441 ssam_remove_clients +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x55df935c ssam_device_remove +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60b5108a ssam_controller_device +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x60ff9612 ssam_request_sync +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x68d2ffb4 ssam_notifier_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7290f6fc ssam_request_sync_with_buffer +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x73cb33b4 ssam_request_sync_alloc +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x7e812d45 ssam_controller_event_disable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x85159201 ssam_get_controller +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x8fc63c90 ssam_controller_event_enable +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x941039b3 ssam_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x955bb80c ssam_bus_type +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9d9f7deb ssam_device_get_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0x9e276794 ssam_device_get_match_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xb531cb6d ssam_client_bind +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbabccb01 ssh_packet_put +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbaf1511a ssh_packet_get +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbdcc1f60 ssam_device_driver_unregister +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xbfbae0f3 ssam_controller_stateunlock +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc0711eec ssam_request_sync_free +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xc2bd582d ssam_device_id_match +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xdc0da0ec ssam_request_write_data +EXPORT_SYMBOL_GPL drivers/platform/surface/aggregator/surface_aggregator 0xeb4d51de ssam_device_type +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0x48cf4c48 san_dgpu_notifier_register +EXPORT_SYMBOL_GPL drivers/platform/surface/surface_acpi_notify 0xb73341b8 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 0x2f8538ad devm_reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x443220c6 reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0x879019a4 reboot_mode_register +EXPORT_SYMBOL_GPL drivers/power/reset/reboot-mode 0xc5707a6b devm_reboot_mode_unregister +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x370823da bq27xxx_battery_setup +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0x88a92d95 bq27xxx_battery_update +EXPORT_SYMBOL_GPL drivers/power/supply/bq27xxx_battery 0xb7e18ce0 bq27xxx_battery_teardown +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x0cd114dd pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x30bbce59 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/supply/pcf50633-charger 0x546001f2 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x207ec3c3 extts_clean_up +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x2eae82b0 ptp_qoriq_isr +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x5191e699 ptp_qoriq_init +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x6b551988 ptp_qoriq_settime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x7ec3016c ptp_qoriq_enable +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0x83d04a35 ptp_qoriq_free +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xa2788578 ptp_qoriq_adjfine +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xb7a0f93d ptp_qoriq_gettime +EXPORT_SYMBOL_GPL drivers/ptp/ptp-qoriq 0xd87d3307 ptp_qoriq_adjtime +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x226e2a47 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2ba79080 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3508592e mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9276247c mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc56e415a mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/rohm-regulator 0x22e92139 rohm_regulator_set_voltage_sel_restricted +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x001a88e1 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x05f45912 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x564267bf wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x97423775 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9853c1b0 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb6a32cd9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x9c955e3f wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x01d8edea scp_get +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x2c9dda2f scp_get_device +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x41228484 scp_mapping_dm_addr +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x738d73e5 scp_put +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0x77869f01 scp_get_venc_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xe46e3f27 scp_get_rproc +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp 0xec6ce4fb scp_get_vdec_hw_capa +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x09313652 scp_memcpy_aligned +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x32a33578 scp_ipi_unlock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x4da73ac0 scp_ipi_lock +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x8c83e36e scp_ipi_register +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0x911d9a49 scp_ipi_send +EXPORT_SYMBOL_GPL drivers/remoteproc/mtk_scp_ipi 0xdcfa0ce6 scp_ipi_unregister +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x0fa538df qcom_register_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x21d379a4 qcom_remove_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x24ae6b0e qcom_add_ssr_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x34ef1190 qcom_minidump +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x8579ff99 qcom_add_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x91b0b416 qcom_remove_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0x9a72d5b9 qcom_register_dump_segments +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xd6cc0cc0 qcom_unregister_ssr_notifier +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xe41571aa qcom_add_glink_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_common 0xebb43812 qcom_remove_smd_subdev +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_pil_info 0x30e58241 qcom_pil_info_store +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x18d20273 qcom_q6v5_panic +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x56febec5 qcom_q6v5_unprepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0x5a4bbbfe qcom_q6v5_prepare +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xb366a0f9 qcom_q6v5_request_stop +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xc1f745cc qcom_q6v5_init +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xd9c06bf6 qcom_q6v5_wait_for_start +EXPORT_SYMBOL_GPL drivers/remoteproc/qcom_q6v5 0xe24a7e63 qcom_q6v5_deinit +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 0xeef8d668 qcom_add_sysmon_subdev +EXPORT_SYMBOL_GPL drivers/rpmsg/mtk_rpmsg 0x18d11b33 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 0x15820d42 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 0xeb80fad7 qcom_glink_smem_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x046ee39b cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ce26ff1 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e983ec7 cxgbi_ddp_ppm_setup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f959beb cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20643467 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x220080a8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x254ccb16 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a66a3c7 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x421ad295 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x48c25b91 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c7a48f0 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ec01b05 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50e16e6c cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5e7c256f cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66185139 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b71ca01 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70afb74c cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x714e1006 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x747d89dd cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x782113e9 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79637d05 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79bfb98a cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80ab3762 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x88208176 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a712c73 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x933e4237 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x940f346d cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9fd0a8f1 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa819e582 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb328f673 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3e25389 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5508f71 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd4f6a4e cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe3e5038 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbe8818fa cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc008a1d8 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc011af75 cxgbi_ddp_set_one_ppod +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd8d619e8 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdaa09331 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdab61b5f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xddbb5f63 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe0226acc cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9107092 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec737761 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf74af4d2 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12f3c40a fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x284f8492 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c53dee1 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x454136b3 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ce72d05 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59390c1b fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x71f25650 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84f52c94 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa369b63d fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xafb7aad4 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb09fc8eb fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbac58840 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbfb22c79 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3f30cc0 fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd2eb78e9 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd49c69c0 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe4f9730a fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0d1425b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf167cb7a fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0x66587a82 fdomain_destroy +EXPORT_SYMBOL_GPL drivers/scsi/fdomain 0xd3c20d28 fdomain_create +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x08adcc03 hisi_sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x1f0af6be hisi_sas_stop_phys +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x26e54052 hisi_sas_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x37a4296c hisi_sas_slot_task_free +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x409c9201 hisi_sas_sync_irqs +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x40ac648c hisi_sas_get_prog_phy_linkrate_mask +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4f80cd08 hisi_sas_get_fw_info +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x4fc22123 hisi_sas_stt +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x53532339 hisi_sas_phy_oob_ready +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x560a8d86 hisi_sas_phy_down +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x6dfb33b1 hisi_sas_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x76b28055 hisi_sas_controller_reset_prepare +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7cb277c2 hisi_sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7df0285f hisi_sas_host_reset +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x7eaa26e5 hisi_sas_debugfs_dir +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x882aedf6 hisi_sas_controller_reset_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x8d529833 hisi_sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0x9a3176d3 to_hisi_sas_port +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xaf30450b hisi_sas_release_tasks +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb03aa9c5 hisi_sas_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xb7cdc86d hisi_sas_sata_done +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc3a41131 hisi_sas_debugfs_dump_count +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc7c06f82 hisi_sas_scan_start +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xc9c2bb19 hisi_sas_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xdd9ba131 hisi_sas_init_mem +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe2c4d2c6 hisi_sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe330cb74 hisi_sas_sync_rst_work_handler +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xe987d9aa hisi_sas_debugfs_enable +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xebfae55c hisi_sas_get_ata_protocol +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xf672cf0b hisi_sas_remove +EXPORT_SYMBOL_GPL drivers/scsi/hisi_sas/hisi_sas_main 0xfe711dc8 hisi_sas_probe +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1f9d376e iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3e9bfc5c iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x58f7d929 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa6b4aad6 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xe4f40d40 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf7118bbd iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xfee54bb7 iscsi_boot_create_acpitbl +EXPORT_SYMBOL_GPL drivers/scsi/libfc/libfc 0x344f6528 fc_seq_els_rsp_send +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0861c9e8 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16836764 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1765b79a iscsi_session_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x195094a0 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c81551f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23f85ad8 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x273d4110 iscsi_conn_unbind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29a3f1aa iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f53864a iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x333e6874 iscsi_eh_cmd_timed_out +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x480e3ee9 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a561695 iscsi_conn_queue_recv +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56fece64 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x575d2402 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5cd161f0 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x669edaf3 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66cfb740 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x79f07292 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7aad004c __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7aeb8f8f iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b152017 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e1c5a86 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8136cf81 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cabd3a3 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91154fc3 iscsi_session_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9268dd0a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95fea757 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99e43567 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bbcc326 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9bd9c1bd iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa0ee8fd iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2cf9ad8 iscsi_host_get_max_scsi_cmds +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7a66203 iscsi_suspend_rx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb9984270 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe92f662 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc023c715 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc46a6277 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcacde5d1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc390406 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc4a587d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd52f7913 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9637ffe iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9a7bd46 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeab9cbd5 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf404a263 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf590205a iscsi_conn_queue_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf910509a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf99a9588 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfaad78e9 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3915b554 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3c8a1b33 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x40d00269 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x439c02d1 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x588c5c59 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e9d9549 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64155ddc iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64b71b1f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65675810 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ea9c911 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x868501c0 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9d9cd158 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa5fce6ec iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd782f0c0 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeb2811fc iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xedd4dd63 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe5669ba iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15457820 sas_ata_wait_after_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15e51cb8 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x204f8eb1 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20b223d9 sas_lu_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x234b4a06 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x298c323b sas_execute_internal_abort_dev +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x30ca61d4 sas_execute_ata_cmd +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x323f3377 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f078420 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43857db4 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x59ef8a6f sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69163b16 sas_query_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c3073df sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x770afa3b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f2b673e sas_abort_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81218948 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8179e6b5 sas_clear_task_set +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e7fe7ec sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8fe94ab3 sas_execute_internal_abort_single +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9119f34d dev_attr_phy_event_threshold +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a6d1756 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa39aec6a sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae01a106 sas_notify_phy_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2c184aa sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2d932fd sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3d2d2b5 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc5b80f21 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc772013d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd0bf1f76 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd27a7e5c sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb05ce04 sas_abort_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd8470d1 sas_notify_port_event +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0d32664 sas_eh_target_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7400561 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ad983d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfab07af5 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc35f54a sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_fc 0x0623123e fc_eh_should_retry_cmd +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x069063e4 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06e0d7e3 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0736dd10 __tracepoint_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d0e370a iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0ec659e9 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x131691f3 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17dfdbff iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x185ef30f iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b8e0fdd iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x20b95e0d iscsi_dbg_trace +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2300963a iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3043cb94 __traceiter_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32d2ec74 iscsi_remove_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3785e561 __tracepoint_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x37d560b9 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bc9aff3 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e108295 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e115435 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e8be2ce iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42fef01b iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x519bd4d2 iscsi_force_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584a31ab __SCK__tp_func_iscsi_dbg_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58da5508 iscsi_put_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ade7e8b iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bb230f3 iscsi_get_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5bfaa2c3 __tracepoint_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c8c01c7 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5cc5646b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60b8bcb1 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x693b25e5 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71b768b0 __SCK__tp_func_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79b565a9 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e0b4814 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x843be3c6 iscsi_destroy_endpoint +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 0x8998f810 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x930e60bd iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x948fdb58 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98694e92 __traceiter_iscsi_dbg_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98e0fe4f iscsi_add_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa2de06da iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa42700eb iscsi_alloc_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa58cc5bd iscsi_put_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa647c1f5 __traceiter_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa275425 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaa976bb3 __tracepoint_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab4674c8 __SCK__tp_func_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4d396e8 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb6b2eb88 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba0f06b6 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc00e130 __traceiter_iscsi_dbg_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc86afb32 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4e55f1e __tracepoint_iscsi_dbg_sw_tcp +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6293c7f iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe00b6158 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4c79fa6 __SCK__tp_func_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8a39f89 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf5a4f103 __traceiter_iscsi_dbg_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0e92fc94 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9e7f79f2 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa620b14e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xa7fb8daf 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 0xfd4ba180 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1902178a srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x525a3133 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7999374d srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8d808f72 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb6497b48 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb9d6e0ad srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf68b89d7 srp_rport_add +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x16177dba siox_device_synced +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x1ae1df9a siox_master_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x2c74c177 siox_master_unregister +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x4202d432 __siox_driver_register +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x5fa38844 siox_master_alloc +EXPORT_SYMBOL_GPL drivers/siox/siox-core 0x7af5752a siox_device_connected +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x04da47cf slim_stream_unprepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x0a04c490 slim_writeb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x1cf20ad9 slim_ctrl_clk_pause +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x21131209 slim_unregister_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x333dc666 slim_stream_enable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x36d3896e slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x383be6f1 slim_do_transfer +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4436357b slim_stream_disable +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x4da766b1 slim_write +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x5003f99e slim_alloc_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x556ffa8b slim_msg_response +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x591747db slim_device_report_present +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6d64a961 slim_report_absent +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x6f441cfa slim_stream_prepare +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x7c5cb0ff slimbus_bus +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x84c38b38 slim_readb +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x8f6a8bdd slim_register_controller +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x984d44ef slim_read +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0x9bb72522 slim_xfer_msg +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa10b698d slim_get_logical_addr +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xa455b0c7 slim_stream_allocate +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xaed45775 slim_free_txn_tid +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xb67ca09f slim_stream_free +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xe1acd7b6 of_slim_get_device +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xf2c93101 __slim_driver_register +EXPORT_SYMBOL_GPL drivers/slimbus/slimbus 0xfc09040f slim_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x494128eb meson_canvas_alloc +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x625ac0d1 meson_canvas_get +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0x673c5a86 meson_canvas_config +EXPORT_SYMBOL_GPL drivers/soc/amlogic/meson-canvas 0xfbd79150 meson_canvas_free +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x065e429d apple_rtkit_start_ep +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x09d4b07d devm_apple_rtkit_init +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x0a8340b6 apple_rtkit_reinit +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x22dfcaf5 apple_rtkit_boot +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x382b8f0b apple_rtkit_send_message_wait +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x3fbf91f5 apple_rtkit_send_message +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0x47617dc4 apple_rtkit_is_running +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xa370d2c0 apple_rtkit_wake +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xb4cd900f apple_rtkit_is_crashed +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xe5f1c330 apple_rtkit_shutdown +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-rtkit 0xff18785c apple_rtkit_quiesce +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0x453a3e93 devm_apple_sart_get +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xbaec16a4 apple_sart_add_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/apple/apple-sart 0xf2253fbc apple_sart_remove_allowed_region +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x0261cd01 dpaa2_io_store_next +EXPORT_SYMBOL_GPL drivers/soc/fsl/dpio/fsl-mc-dpio 0x12c9b630 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 0x2f37544c dpaa2_io_store_create +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 0xd1583a02 dpaa2_io_service_deregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x13470418 gpr_send_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x5fd00873 gpr_alloc_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x7f32ca25 apr_driver_unregister +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0x8d2dd6d9 __apr_driver_register +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xaad65551 gpr_free_port +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xb51b1e55 aprbus +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xe5d42e98 gpr_send_port_pkt +EXPORT_SYMBOL_GPL drivers/soc/qcom/apr 0xfea759b3 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 0x30ca021c qcom_mdt_load_no_init +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0x796011b3 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 0xf7a43700 qcom_mdt_load +EXPORT_SYMBOL_GPL drivers/soc/qcom/mdt_loader 0xf90e9990 qcom_mdt_pas_init +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x4a148073 __sdw_register_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0x82747bc4 sdw_unregister_driver +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-bus 0xbeb27871 sdw_bus_type +EXPORT_SYMBOL_GPL drivers/soundwire/soundwire-cadence 0x45de3042 sdw_cdns_debugfs_init +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0x234a8a88 altera_spi_init_master +EXPORT_SYMBOL_GPL drivers/spi/spi-altera-core 0xb9edd149 altera_spi_irq +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x4cbfb696 bcm_qspi_remove +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0x51d31ca2 bcm_qspi_probe +EXPORT_SYMBOL_GPL drivers/spi/spi-bcm-qspi 0xb9dae370 bcm_qspi_pm_ops +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0cfe8aa3 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x16b46b6a spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2d629a8a spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbc5e3004 spi_bitbang_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd2d3d957 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeddc2648 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x0377b469 spi_test_run_test +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0x6de5dac3 spi_test_run_tests +EXPORT_SYMBOL_GPL drivers/spi/spi-loopback-test 0xb55a9248 spi_test_execute_msg +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0283636f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x07410545 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x219c6a30 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2307c6d3 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x414fbd32 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ad7b8f5 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x73ea1dc6 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x78f01281 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80e7baf7 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9177624c spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9c6004c spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd058ee72 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd16d8bc6 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8fe54ef spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9b9eae5 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe3155c25 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe8fc8ef1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf37b168e spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x3485b01d ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x01a99641 anybuss_client_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0419251a devm_anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x0ddea9e9 anybuss_read_fbctrl +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1aed1e9f anybuss_recv_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x1c7f2b85 anybuss_finish_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x2aaa20cd anybuss_read_output +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x5ddcbb81 anybuss_client_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x68a5336f anybuss_set_power +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x6c9cdcfd anybuss_send_msg +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x8454c59e anybuss_start_init +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0x99768075 anybuss_host_common_probe +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xaf3bd106 anybuss_send_ext +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xe05c8d76 anybuss_write_input +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/anybuss/anybuss_core 0xfce879ad anybuss_host_common_remove +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x15172b5c fieldbus_dev_unregister +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x46c491c8 fieldbus_dev_online_changed +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0x52bade7c fieldbus_dev_area_updated +EXPORT_SYMBOL_GPL drivers/staging/fieldbus/fieldbus_dev 0xd287032c fieldbus_dev_register +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x1481f005 gb_audio_apbridgea_prepare_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x2ee55772 gb_audio_apbridgea_stop_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x64320f86 gb_audio_apbridgea_shutdown_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x78468ef1 gb_audio_apbridgea_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x818a6d15 gb_audio_apbridgea_set_config +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x844885f2 gb_audio_apbridgea_prepare_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0x96c6bc77 gb_audio_apbridgea_start_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xbe2c2285 gb_audio_apbridgea_stop_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xc6c15cca gb_audio_apbridgea_register_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xcb6cae87 gb_audio_apbridgea_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe39a338f gb_audio_apbridgea_start_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xe665a8ff gb_audio_apbridgea_unregister_cport +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-apbridgea 0xf4fb7a71 gb_audio_apbridgea_shutdown_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x0de51041 gb_audio_gb_activate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x216aaa9a gb_audio_gb_deactivate_rx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x221a245e gb_audio_gb_set_tx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x75f4bdd9 gb_audio_gb_get_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x954d35da gb_audio_gb_deactivate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0x9d0a0e7b gb_audio_gb_set_rx_data_size +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xa01417b9 gb_audio_gb_get_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xabc88794 gb_audio_gb_disable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xb9c28f01 gb_audio_gb_activate_tx +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbf072436 gb_audio_gb_set_control +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xbf587a9c gb_audio_gb_enable_widget +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xc6a0117b gb_audio_gb_set_pcm +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-gb 0xd7a77877 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 0x3902a022 gb_audio_manager_get_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x5a108b0f gb_audio_manager_add +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0x79eef2f8 gb_audio_manager_dump_all +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xaeac8ca2 gb_audio_manager_dump_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-audio-manager 0xb16e612a gb_audio_manager_put_module +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0x5e59b42e gb_gbphy_register_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-gbphy 0xf1accee0 gb_gbphy_deregister_driver +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0x59965877 gb_spilib_master_exit +EXPORT_SYMBOL_GPL drivers/staging/greybus/gb-spilib 0xaf7a7af5 gb_spilib_master_init +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf9c2d7cb adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x0980a8ed imx_media_capture_device_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1d9b94e9 imx_media_find_subdev_by_fwnode +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x1ec6089a imx_media_pipeline_pad +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x23d7c8d4 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 0x4c29d268 imx_media_capture_device_next_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x4ce52d56 imx_media_capture_device_unregister +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x534ba9e1 imx_media_find_mbus_format +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x5dc75288 imx_media_pipeline_set_stream +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x65bc81c9 imx_media_capture_device_error +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x67580ffd imx_media_pipeline_csi2_channel +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7284f557 imx_media_free_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x77152706 imx_media_add_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x77a8bdd2 imx_media_of_add_csi +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x7e8a794a imx_media_pipeline_video_device +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x93770674 imx_media_probe_complete +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0x95970b30 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 0xac25e73f 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 0xbbc7d499 imx_media_capture_device_register +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc0e6162e imx_media_init_mbus_fmt +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc4ab229d imx_media_alloc_dma_buf +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xc7129f4d imx_media_dev_init +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xcd4ee058 imx_media_pipeline_subdev +EXPORT_SYMBOL_GPL drivers/staging/media/imx/imx-media-common 0xd0b38a98 imx_media_get_pad_fwnode +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 0xe712e421 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 0xfbb5899c imx_media_add_of_subdevs +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x019a5f21 amvdec_dst_buf_done_idx +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x115655e9 amvdec_am21c_body_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x13f09af9 codec_hevc_fill_mmu_map +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x1cb1e6d9 amvdec_am21c_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2c2b2d2c amvdec_write_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x2ede7e4e amvdec_clear_dos_bits +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x507f3822 amvdec_read_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 0x67022269 amvdec_src_change +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6807fa63 codec_hevc_setup_decode_head +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x6947dee0 codec_hevc_setup_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x8869b004 amvdec_write_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x92300db7 codec_hevc_free_mmu_headers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0x9b640ecd amvdec_remove_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xaa34def7 amvdec_set_canvases +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xae0bdf67 codec_hevc_free_fbc_buffers +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xc2d67a8e amvdec_add_ts +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd1d2fd0f amvdec_abort +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd69a5c0e amvdec_dst_buf_done_offset +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xd9356816 amvdec_dst_buf_done +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xdf9641d6 amvdec_write_parser +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xe8382ee9 amvdec_get_output_size +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xeca9c5a1 amvdec_read_dos +EXPORT_SYMBOL_GPL drivers/staging/media/meson/vdec/meson-vdec 0xf277cd18 amvdec_set_par_from_dar +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x6397f076 nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x6ca8f01c nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xe7bf35c2 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x39583261 vchiq_mmal_component_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5db091a7 vchiq_mmal_port_connect_tunnel +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5e148da2 vchiq_mmal_port_set_format +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5ee7a6a2 vchiq_mmal_submit_buffer +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x5fffd439 vchiq_mmal_component_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 0x67ea2578 mmal_vchi_buffer_cleanup +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x6d6683ef vchiq_mmal_component_init +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73577d20 vchiq_mmal_finalise +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x73824099 vchiq_mmal_port_parameter_get +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0x993aa94a vchiq_mmal_component_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa18130af vchiq_mmal_port_enable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xa8f59fcd 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 0xc87136e1 vchiq_mmal_port_disable +EXPORT_SYMBOL_GPL drivers/staging/vc04_services/vchiq-mmal/bcm2835-mmal-vchiq 0xf7762d3a vchiq_mmal_port_parameter_set +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x39388edc target_submit +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0x90ced872 target_init_cmd +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xec9e91a4 target_submit_prep +EXPORT_SYMBOL_GPL drivers/target/target_core_mod 0xee0a3fa4 target_queue_submission +EXPORT_SYMBOL_GPL drivers/tee/tee 0x0c89a113 teedev_open +EXPORT_SYMBOL_GPL drivers/tee/tee 0x15de87b3 tee_client_invoke_func +EXPORT_SYMBOL_GPL drivers/tee/tee 0x199f995e tee_shm_put +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1a4d0d6c tee_client_close_session +EXPORT_SYMBOL_GPL drivers/tee/tee 0x1b145bea tee_bus_type +EXPORT_SYMBOL_GPL drivers/tee/tee 0x20c16192 tee_client_open_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x2cc2c6cb tee_shm_get_pa +EXPORT_SYMBOL_GPL drivers/tee/tee 0x333080fb tee_shm_get_va +EXPORT_SYMBOL_GPL drivers/tee/tee 0x39d42df2 tee_client_get_version +EXPORT_SYMBOL_GPL drivers/tee/tee 0x450ad29d tee_device_register +EXPORT_SYMBOL_GPL drivers/tee/tee 0x468503e3 tee_shm_pool_alloc_res_mem +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5152c602 teedev_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x5e14f8e8 tee_get_drvdata +EXPORT_SYMBOL_GPL drivers/tee/tee 0x60cdd41a tee_shm_alloc_priv_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x6e209152 tee_device_alloc +EXPORT_SYMBOL_GPL drivers/tee/tee 0x7dec224a tee_shm_get_from_id +EXPORT_SYMBOL_GPL drivers/tee/tee 0x85fd9922 tee_session_calc_client_uuid +EXPORT_SYMBOL_GPL drivers/tee/tee 0x8f6eaae3 tee_shm_register_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0x92fb2139 tee_client_close_context +EXPORT_SYMBOL_GPL drivers/tee/tee 0x95173968 tee_shm_alloc_kernel_buf +EXPORT_SYMBOL_GPL drivers/tee/tee 0xaf7588d9 tee_device_unregister +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb3063bc0 tee_shm_free +EXPORT_SYMBOL_GPL drivers/tee/tee 0xb516e6ec tee_client_open_session +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x013550b5 tb_xdomain_lane_bonding_disable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x01d23ee1 tb_property_create_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x033ac1fe tb_xdomain_request +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x03aa26e5 tb_xdomain_alloc_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x0982364d tb_service_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x157de363 tb_unregister_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x216de13e tb_xdomain_enable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x25975c91 tb_ring_poll_complete +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26941370 tb_xdomain_release_out_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x26fa6c1c tb_ring_stop +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x393b4f2f tb_property_free_dir +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 0x55e40b22 tb_ring_alloc_rx +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 0x6978b447 tb_ring_start +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x6c6e395a tb_register_service_driver +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x7123ced6 __tb_ring_enqueue +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 0x7beaf6d8 tb_ring_poll +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x8b62f95e tb_property_add_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x94ef8f7b tb_ring_alloc_tx +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0x9f4b98c5 tb_xdomain_alloc_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa3d2b403 tb_property_add_data +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xa48af458 tb_xdomain_lane_bonding_enable +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb41febec tb_xdomain_find_by_uuid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xb7c7cdce tb_property_add_text +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xceacad77 tb_xdomain_release_in_hopid +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xda622a37 tb_xdomain_response +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe7dddc78 tb_xdomain_type +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xe80d7e36 tb_ring_free +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf1cfd1ff tb_register_property_dir +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf362aed3 tb_xdomain_disable_paths +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf37766e8 tb_xdomain_find_by_route +EXPORT_SYMBOL_GPL drivers/thunderbolt/thunderbolt 0xf76028c7 tb_unregister_protocol_handler +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x0ae394dc ufshcd_release +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x15ce4367 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x1efa422b ufshcd_update_evt_hist +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x33417eba ufshcd_config_pwr_mode +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x3a26183f ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x4f464b1a ufshcd_dump_regs +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x55ed65b9 ufshcd_uic_hibern8_exit +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x5c050f21 ufshcd_resume_complete +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x63bdd4a5 ufshcd_hba_enable +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x6cf1eeb1 ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x723b1abf ufshcd_delay_us +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x7329c2d6 ufshcd_auto_hibern8_update +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x84dfdd7d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x91cbd042 ufshcd_fixup_dev_quirks +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9a7d18bd ufshcd_link_recovery +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0x9dc2678d ufshcd_uic_hibern8_enter +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbd261f80 ufshcd_dme_configure_adapt +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbd3d7584 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xbecbda0c __ufshcd_suspend_prepare +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xc2b5be39 ufshcd_init +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xd405e5cd ufshcd_clkgate_delay_set +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xdad8a56f ufshcd_make_hba_operational +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xddde60c4 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/ufs/core/ufshcd-core 0xef48be5c ufshcd_hba_stop +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x080081ef ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x33979d43 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0x54c946de ufshcd_init_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/ufs/host/ufshcd-pltfrm 0xff85cd6b ufshcd_get_pwr_dev_param +EXPORT_SYMBOL_GPL drivers/uio/uio 0x894007e0 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbdff646d uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdd2f6436 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe983cb59 __devm_uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8522006a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x85c7057c usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x02b04be3 cdns_set_vbus +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x15782d3b cdns_suspend +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5882ed61 cdns_drd_gadget_on +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x5abd1447 cdns_init +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0x8eab0b1d cdns_power_is_lost +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xad44be7d cdns_drd_gadget_off +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xb4848e6b cdns_remove +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xe23b5bb8 cdns_resume +EXPORT_SYMBOL_GPL drivers/usb/cdns3/cdns-usb-common 0xf89d62ed cdns_clear_vbus +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x5ab4e014 ci_hdrc_query_available_role +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x943cd3bd ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa980fc53 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb0682a44 hw_phymode_configure +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x083b3314 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x1698eb11 imx_usbmisc_hsic_set_connect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x186bd24f imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x40323eda imx_usbmisc_charger_detection +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xd588e3ee imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xf8af756b imx_usbmisc_hsic_set_clk +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2c429215 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x73ced3ca ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc77d21a4 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdf2e30e0 __ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe40c520e ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf1d3b228 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x0ace4b88 g_audio_setup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x22294262 u_audio_get_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x413193da u_audio_get_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x5c949d26 u_audio_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x6837cbe3 u_audio_set_capture_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x7803bc63 u_audio_start_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0x8740a5c3 u_audio_set_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xa899be24 g_audio_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xb93b7b6e u_audio_stop_playback +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xbf92e1bc u_audio_stop_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xc7fe8f3a u_audio_set_volume +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xd5600bdc u_audio_set_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xe6484782 u_audio_start_capture +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xec9fde0b u_audio_get_playback_srate +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_audio 0xffaa3ecc u_audio_get_mute +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15b13a03 gether_set_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1b5c977c gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x210556cf gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x226b97ca gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e2a6854 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x403fe0f9 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x509f7c3f gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7ed56082 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 0x97791299 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9ee597c6 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbf1f9aae gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc17d1f28 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc41665d3 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe27398b5 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf4c39e02 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7cf2e9f gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 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 0x9a1a3a01 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xa8a8100f gserial_suspend +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb18dd518 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 0xc35fe2c3 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 0x37e4438d ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x56f99256 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_mass_storage 0x0f2b4e80 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x141fce2a fsg_common_remove_luns +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1710b539 fsg_fs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x1ccb58f7 fsg_common_set_num_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2868ba78 fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2933ee1d fsg_ss_bulk_in_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x32d0f4fc fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3832b408 fsg_store_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3c6a07d0 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4db584d8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x56344daf fsg_hs_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7155c144 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x75fe66ce 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 0x7e607bf1 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x83ae24d6 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84cbe346 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x857b6dc2 fsg_hs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x912a75fe 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 0x9fe2bfad fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5cae92f fsg_ss_bulk_out_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa5f99b69 fsg_fs_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa6b55cf7 fsg_store_file +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 0xaed6715b 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 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 0xbbc936c5 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9b569da 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_mass_storage 0xfee38223 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x09f48c85 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x216f3054 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x23825c3d rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x33e64495 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x50c43e08 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5c190edc rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7445393b rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x751b5753 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x76f51f83 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8e7e0263 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c4a8e14 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xacf1be66 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc5f5b018 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd3915a5f rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf24ffd06 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x014f02ff usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0380115e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0418b973 usb_composite_overwrite_options +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 0x0ea7a491 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18d81fac usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ad1ab28 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x26b31b08 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2d9f1d25 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3c8119dd usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e6dc58c usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4beb505d usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4db04a05 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4eae322c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c45a11e usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c83b373 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6963d841 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7197ebc9 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa09feb5f usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa405499d usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb775db55 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1b97514 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc9352690 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcf627321 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda51d32c usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4e8a65f usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9779c5a usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf117f099 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4544ac6 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb201229 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfd66f09f config_ep_by_speed_and_alt +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfe42edf1 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfea1cfa2 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffb4920f usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x233ea394 free_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x28244f3b udc_basic_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x51684814 udc_remove +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5d01d078 udc_irq +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x5dea3c42 udc_enable_dev_setup_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x709d3b2d init_dma_pools +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0x7ccb85d2 udc_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xae66814a gadget_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xe2fc9ed8 empty_req_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/snps_udc_core 0xebb5eb37 udc_mask_unused_interrupts +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x01b12bfb usb_ep_free_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x021c22e1 usb_udc_vbus_handler +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 0x0be6d837 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 0x252a75bd usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2b5ffe23 usb_gadget_clear_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2f47ebb2 usb_gadget_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3b68ff33 usb_gadget_unmap_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3cf37992 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 0x501872bd usb_initialize_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x506ab3a9 usb_ep_queue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50b88f41 usb_get_gadget_udc_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5f2c4a04 usb_add_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5fc294ef usb_ep_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x60c39b06 usb_gadget_set_selfpowered +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x64682637 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7032970c usb_gadget_frame_number +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 0x7db2a674 usb_gadget_map_request_by_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x805f2337 usb_del_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x809bf716 usb_gadget_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x882077d5 usb_ep_dequeue +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x89a91448 usb_gadget_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8c2907ad usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x925e85c8 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x92dd4a86 usb_gadget_check_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x96b44148 usb_gadget_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 0xb350ccd0 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbaff7bc3 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbe31a7d1 usb_gadget_register_driver_owner +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd51a5709 usb_gadget_vbus_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdc679a4e usb_gadget_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdeab7ad0 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe010fa00 usb_gadget_vbus_draw +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe9bf3cb1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xffa57109 usb_gadget_vbus_disconnect +EXPORT_SYMBOL_GPL drivers/usb/host/xhci-pci-renesas 0x8715431c renesas_xhci_check_request_fw +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x607e5687 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xffe8dc1a ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x12c77dc6 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1ad85e58 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x21b0145c usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x244d1a73 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3a143b6c ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x40cdcf36 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x69d2aa14 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8a884361 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0182719 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 0x38bee65d 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 0x6fcaf779 musb_root_disconnect +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x719a5e41 musb_readw +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x90b17275 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xade3e56c musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd3931339 musb_set_host +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xd3e0ce94 musb_get_mode +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xe59efb0e musb_clearb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xed0c3ae4 musb_queue_resume_work +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xf0f95e51 musb_readl +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x3bd3e069 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x82b808de usb_phy_generic_unregister +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0x92b47ad5 usb_gen_phy_init +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xa757b8fe usb_phy_generic_register +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-generic 0xf80351ad usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x6e20b096 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x46c9ae1d tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xade94598 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xca43e470 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xfd6a88c6 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe5aaecc1 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0612e531 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x06f90f8f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c927e1c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b893d05 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4204af5b usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5b1b67a9 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x74fd23cd usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a8e15f0 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8f673108 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5c3f263 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9186551 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa9361370 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb716f76 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcb2a6683 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd16b9ae0 usb_serial_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd46bbb49 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdf4605b7 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf0a53a62 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf1095f70 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfabe00d4 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x06da109b dp_altmode_probe +EXPORT_SYMBOL_GPL drivers/usb/typec/altmodes/typec_displayport 0x1862b2d8 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 0xeaa28e71 tcpci_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x10ec6d2d tcpm_sink_frs +EXPORT_SYMBOL_GPL drivers/usb/typec/tcpm/tcpm 0x3555dd8a 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 0x0308b06e typec_get_fw_cap +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x094c75dc typec_altmode_get_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0a10d5c2 typec_altmode_get_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0c95fe97 typec_port_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x0ffa3c53 typec_register_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x123a72fa typec_set_mode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2417ef72 typec_cable_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x27e67d09 typec_register_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x2d1e301d typec_find_power_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x30998e9b typec_altmode_update_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x379973b2 fwnode_typec_mux_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x38113612 typec_unregister_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x396cba98 typec_switch_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x40c8cf42 typec_set_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x44975079 typec_mux_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x45bb849d typec_register_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x464dbe1d typec_unregister_partner +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x4c76ad37 typec_altmode_vdm +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x503b01fe __typec_altmode_register_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x512fc3a0 typec_match_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x54ea966d fwnode_typec_switch_get +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x627104c6 typec_unregister_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x63a1ffaa typec_set_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x663910e4 typec_get_negotiated_svdm_version +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x67449ff7 typec_mux_register +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6b3d9465 typec_mux_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6dad88db typec_get_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x6f6cf3c5 typec_cable_is_active +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x776910c8 typec_partner_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8039d990 typec_altmode_put_plug +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x80a884e6 typec_altmode2port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x83b87b6e typec_set_pwr_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86244722 typec_cable_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x86521d45 typec_switch_put +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x8bb9f3fa typec_altmode_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9049491e typec_find_port_data_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x961d4565 typec_partner_set_pd_revision +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x96fbe4fd typec_mux_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x991e7aab typec_cable_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9ade520a typec_mux_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9efa9ee6 typec_switch_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0x9f7235ef typec_plug_register_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xa254de98 typec_find_orientation +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb0a24639 typec_altmode_attention +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb1e57bf1 typec_switch_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xb5d9d1c9 typec_unregister_altmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xba70b6b3 typec_altmode_notify +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xbfdc7f3e typec_altmode_exit +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xc5ef8a8b typec_register_port +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd2fa1286 typec_switch_set +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd3d81532 typec_set_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd624ad5c typec_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xd7248a70 typec_plug_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdba42eeb typec_port_register_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xdc9e32a1 typec_partner_set_num_altmodes +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xe2eef3f7 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 0xebb3da7b typec_switch_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xed25daa3 typec_partner_set_identity +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xedac5997 typec_altmode_enter +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf1234a8b typec_find_pwr_opmode +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf3252992 typec_unregister_cable +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xf981e02a typec_set_vconn_role +EXPORT_SYMBOL_GPL drivers/usb/typec/typec 0xfc8df340 typec_mux_put +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x0ffb31de ucsi_get_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x2b3d831a ucsi_send_command +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x589bdb60 ucsi_set_drvdata +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x5d3977c5 ucsi_create +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0x7e4d7c87 ucsi_destroy +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xba735d3f ucsi_unregister +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xda10229b ucsi_connector_change +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xf888ecbe ucsi_register +EXPORT_SYMBOL_GPL drivers/usb/typec/ucsi/typec_ucsi 0xffdb0d70 ucsi_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0103b58d usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c7f4730 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1eb1e11e usbip_in_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2e729567 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5b6a5acb usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6598970e usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8b82b559 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaf8c804f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd290092a usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd9574898 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xda75ac12 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf1d16653 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfab78179 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x355f143d __vdpa_alloc_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x3c1d4137 vdpa_set_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x708632e1 vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0x7417e57d vdpa_mgmtdev_register +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xa1e7d4d7 _vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xb489d961 __vdpa_register_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xcc68fe0c _vdpa_register_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xe9cc6cd7 vdpa_unregister_driver +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xefab88ab vdpa_unregister_device +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfb8c4a03 vdpa_mgmtdev_unregister +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa 0xfd7bd4b6 vdpa_get_config +EXPORT_SYMBOL_GPL drivers/vdpa/vdpa_sim/vdpa_sim 0x4f0c906a vdpasim_create +EXPORT_SYMBOL_GPL drivers/vfio/mdev/mdev 0xcf1dd7a1 mdev_bus_type +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x011e4e7e vfio_pci_core_unregister_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2065a9f7 vfio_pci_core_write +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x210d6d51 vfio_pci_core_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x2aaeb781 vfio_pci_core_match +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x349010f9 vfio_pci_register_dev_region +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x41c58e1b vfio_pci_core_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x4cf699b8 vfio_pci_core_set_params +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5476e695 vfio_pci_core_ioctl_feature +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x5ceceff3 vfio_pci_core_finish_enable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x75198cd1 vfio_pci_core_init_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x7d930ec9 vfio_pci_core_aer_err_detected +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8431ebf6 vfio_pci_core_read +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x87fdca24 vfio_pci_core_close_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0x8ab9fb3d vfio_pci_core_sriov_configure +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xab1656df vfio_pci_core_mmap +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xb597a62c vfio_pci_core_register_device +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcd64d980 vfio_pci_core_request +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xcf167b71 vfio_pci_core_disable +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xf60c80cf vfio_pci_core_err_handlers +EXPORT_SYMBOL_GPL drivers/vfio/pci/vfio-pci-core 0xfed2c6d8 vfio_pci_core_uninit_device +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x52a62923 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x7f3b4cad vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x91d1fdc2 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc9d3b139 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x20b55961 vfio_file_iommu_group +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x412fb330 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4619b2ff vfio_uninit_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x469e6b28 vfio_file_set_kvm +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4be62d12 vfio_register_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5fbcdb09 vfio_init_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x60a634c4 vfio_info_cap_add +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6a17b61f vfio_mig_get_next_state +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7b8c29a4 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x84d20ad1 vfio_register_emulated_iommu_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x9bbf8fcd vfio_file_has_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd200c374 vfio_file_enforced_coherent +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xe8e55043 vfio_unregister_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7ecdfc8 vfio_assign_device_set +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc17e99d3 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf3befdc2 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x031848ab vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03f5cedd vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x05f6533d vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0600626a vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3228803e vhost_clear_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x37d1cdae vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb11d20 vhost_set_backend_features +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5e2c7bcc vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64162fad vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64a8e854 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x836ab6af vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x83fcea19 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x840a061c vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ae26d1b vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f4b8234 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x97b8295e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9d57444f vhost_vq_init_access +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa04ff5d5 vhost_enqueue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6c9c099 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa731014a vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa909cfc5 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad4e5884 vhost_dequeue_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaf2a5acc vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb847f717 vq_meta_prefetch +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbf3b359b vhost_new_msg +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc09d94b2 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc4e3f6e4 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc81f8d1b vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcf49394c vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd232d5c2 vhost_init_device_iotlb +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe519d84a vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe67770bf vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8ead702 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xea7bb9df vhost_chr_read_iter +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeba6ec10 vhost_exceeds_weight +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed105dcd vhost_has_work +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf2df9fbe vhost_vq_is_setup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6343d46 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf8352675 vhost_vq_avail_empty +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9099a54 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfd2b3e45 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xff6979cc vhost_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 0x8a7d8ee9 vhost_iotlb_init +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 0x348bfc86 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c8ed891 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6a29e270 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x84ac33a3 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9d3c2a34 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdc78c627 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf22d633b ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x690d229f fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xa8918a07 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe6e0daf9 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x58a45bde sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xef8918ad sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0bfccf09 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1ce0c029 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5bc7ad04 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x63757e92 w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x82b3ebc2 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa0b4d4ee w1_touch_bit +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb3574c14 w1_triplet +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb6a7b407 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9514cf5 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcd017343 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd923eb10 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfd43b4a8 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x13f2ca4e xen_front_pgdir_shbuf_alloc +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x1d9c4a2a xen_front_pgdir_shbuf_get_dir_start +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x33884a6f xen_front_pgdir_shbuf_free +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0x39dd22fc xen_front_pgdir_shbuf_map +EXPORT_SYMBOL_GPL drivers/xen/xen-front-pgdir-shbuf 0xf2aa5d89 xen_front_pgdir_shbuf_unmap +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x23b9301f xen_privcmd_fops +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x76b48abe 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 0x75864e51 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb015a179 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc66b8b23 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcd224e1d dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x036f6f2b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2fabdd00 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x53226baf lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc4db85c8 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd2c70aa4 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe56affb6 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf7188523 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x018ad93e nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0239940c nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0294c6a2 nfs_callback_nr_threads +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03818d95 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03eacb8c nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x061f4aa7 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06e2b2cb nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x076d1aae nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08cc13e5 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aacd41c nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b9ac1f6 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10558eae nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10962bc2 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10dd6b96 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12fba6c9 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1348aec6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x148050fb nfs_client_init_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18df0587 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc0fc93 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c8e9107 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1df916f0 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20e93e00 nfs_add_or_obtain +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21006430 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22d795a8 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24e15130 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25c7ad9b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28e535cd nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c7adf25 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30496988 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30d00786 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x320aea3d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33cc065a nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x345dac24 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x357709c3 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35d78604 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x398f0253 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a8d1593 __traceiter_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c8808a4 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d550e30 nfs_client_for_each_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e2fb964 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x449fc7d2 nfs_commit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44cc3a41 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x482d1c0f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48a98d4f nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x493c056a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4de9f90d nfs_filemap_write_and_wait_range +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e8f1d1d nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a0e78d __traceiter_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50a12802 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53201bcf nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x576555e2 __traceiter_nfs_fsync_enter +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 0x5b6afbea nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3fb69f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x600ea626 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63a76ce8 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x640b572b nfs_wait_on_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x662cd660 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66aa5cb2 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e81f032 __SCK__tp_func_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ed08708 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7072b111 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73dff4c0 __SCK__tp_func_nfs_xdr_status +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74e88f62 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75d8ada3 nfs_try_get_tree +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7624792b nfs_clear_verifier_delegated +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77e63ac5 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7af6b8e7 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c1ff71e nfs_set_verifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82b046e0 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8499de4f nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8876149e nfs_probe_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a3c9828 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a5471fc nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cc4a7a7 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cd98502 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8decc02b nfs_client_init_is_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e1ad977 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ea49754 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ed24af4 nfs_server_copy_userdata +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 0x91f6db3d nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92ccf46e nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9310a2b3 nfs_access_get_cached +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95007f7e __SCK__tp_func_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98b0ece8 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a5e9a2d nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9acde4df nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c3d2b6c nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ebf325a nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f1820fa nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f42a9d7 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9fac02bb nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ff2fd8e nfs_check_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1aa711f nfs_reconfigure +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa38aa83c nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4f15058 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa61bb69 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaafd4acc max_session_cb_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacaf7974 nfs_free_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadb17b06 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaef23898 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb28c1d78 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4dac20c nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb94a5a33 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb953071b nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbac5a94c nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbcefde90 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfb656e7 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc235bf30 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc33ac674 nfs_release_request +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3a2be67 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6bb7a91 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6c8b8f1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca91d6bf nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcacd2480 nfs_scan_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf09a961 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd03298db nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd079416b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd12723a8 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3adabe4 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4095633 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4d942db nfs_async_iocounter_wait +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a42417 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81d5839 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8da3976 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd93ea920 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9bae812 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda8be71a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc8107f2 nfs_d_prune_case_insensitive_aliases +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd2471f4 __traceiter_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde51d2a2 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0740e7b nfs_file_fsync +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2a6fa4b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe33c02f4 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70507df __tracepoint_nfs_xdr_bad_filehandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe849e178 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe93855b3 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb2c214c nfs_set_cache_invalid +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb5cac1d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee0d1423 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf23c920f nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf27a60ac nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3a626e0 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5986465 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf96f04c4 __SCK__tp_func_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfaad6ef7 nfs_alloc_fattr_with_label +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd8901cd nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfda275f0 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe3b4903 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe7fb6ff nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeed487d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff6701ae nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x903ad538 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x00243624 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x002f38b9 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01d7c574 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x068f31a5 __traceiter_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x08b2c467 __SCK__tp_func_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09e1dcae nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0aebca68 __tracepoint_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4bf6df 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 0x0fa458a6 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ff289f3 __SCK__tp_func_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1378563d pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x13bb5619 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x146849ca nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x16b0bdbf pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18162a5f pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b10255d __traceiter_ff_layout_commit_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21048093 __traceiter_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25148d42 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27ad47ea __SCK__tp_func_pnfs_mds_fallback_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283a5771 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b14c0d2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b4e7120 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2bba2acd pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30a44ac3 __SCK__tp_func_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x323e1947 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32bb6e05 __tracepoint_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3572ad74 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x368ac841 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39fddf01 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bdb8664 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f230e44 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4303861a pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4400c0fb pnfs_generic_search_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48399abd __traceiter_ff_layout_write_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ebdaa99 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f70954c nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x533c198f __SCK__tp_func_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5395f85c nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x579126b8 __SCK__tp_func_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a37b8ea pnfs_generic_layout_insert_lseg +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 0x5d2f9808 __traceiter_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f2d35e2 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60d0a98b nfs42_proc_layouterror +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x626f84b6 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x635ed9f0 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64173b06 pnfs_alloc_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64437fcd pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6cb69179 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6ef64749 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x730d1d1e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b7c402 __traceiter_pnfs_mds_fallback_write_pagelist +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 0x7bd1aafb nfs4_mark_deviceid_available +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7cd013a8 __SCK__tp_func_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d1f67dd nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e83e33f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x803b3662 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82409884 __tracepoint_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x870cbb98 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8d9d8409 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ead90b4 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8edc72cf nfs4_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x974a1614 __tracepoint_pnfs_mds_fallback_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99ea6b16 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a1a74c3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f6963fc pnfs_free_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa0dd3c36 nfs4_test_session_trunk +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4d5ea4e pnfs_add_commit_array +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab987731 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf89af85 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb02ba564 pnfs_generic_pg_check_range +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb25643c9 __traceiter_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb479ffe4 __traceiter_pnfs_mds_fallback_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb7122be3 pnfs_generic_ds_cinfo_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba53a1ef __SCK__tp_func_pnfs_mds_fallback_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc541411 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf88d098 pnfs_generic_ds_cinfo_release_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2367c70 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3d66c91 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc506133a __traceiter_pnfs_mds_fallback_read_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7a9d954 __SCK__tp_func_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd1bd321 __traceiter_pnfs_mds_fallback_pg_get_mirror_count +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcd263f0c pnfs_set_layoutcommit +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 0xd109aaad __traceiter_ff_layout_read_error +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd97eaf46 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd99af406 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xde2250a0 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeacc0fc __traceiter_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdf6991a4 __SCK__tp_func_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0460180 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe19f5ee0 __tracepoint_pnfs_mds_fallback_write_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3ad090c nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe531e7b7 __traceiter_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe5f77a84 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeae8522f __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xecc47b43 pnfs_generic_sync +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 0xf7801360 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd568097 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1192568f locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7b4075ba locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xc41d8499 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x0888e270 nfs_stream_encode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5e77267e nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcca6721b nfs_stream_decode_acl +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd94173b8 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfsd/nfsd 0x23ccae61 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 0x25cfd860 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x459e02fb o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x58c88ff2 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5e95a4b2 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6a0c3847 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6afb1508 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6fb7c033 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x822f3a15 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x848cbe44 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb6ebf62a o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbd13ee5d o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc4d99852 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 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 0xf651ab09 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf982e6db o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfe1298f3 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0e743709 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x311a0521 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 0x83a59d5f dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x91bb32d5 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa56d6a1a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd5188b84 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 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5a148855 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x76f40744 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x8bc0db6f 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 0xb840cce6 ocfs2_kset +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbe628e80 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc5196999 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc9fae756 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xcafdd707 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd344e4ee ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd806a273 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x43cc3d4b pstore_blk_get_config +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0x920e0f9d unregister_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_blk 0xfc09d646 register_pstore_device +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x4563ec47 register_pstore_zone +EXPORT_SYMBOL_GPL fs/pstore/pstore_zone 0x50ac6d33 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/crypto/libdes 0x0105b595 des_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x574eda34 des3_ede_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0x856a5ef3 des3_ede_encrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa6aa9857 des_decrypt +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa77b3b62 des3_ede_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libdes 0xa8fb743d des_expand_key +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x39e8fa4b poly1305_update_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x4a833012 poly1305_final_generic +EXPORT_SYMBOL_GPL lib/crypto/libpoly1305 0x8c874435 poly1305_init_generic +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xb8f0a417 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xd619f9df notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x1803a6ed raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x804a5b70 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 0xd34da7e7 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xdd5b165b lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x05a48be8 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x0bb3478d garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2a13f2df garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3c48d8a3 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xb24bdbd1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf7709bfb garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x454dafce mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5447546a mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5a6767aa mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7ee60387 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x8414b0f2 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x9374af41 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x0c880641 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xad6f5371 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xcada3f3c p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xf0cb367d 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 0x2d4acadb 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 0x02801d67 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0ea7e145 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2d923ba1 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x335736e4 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x392b0f49 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3e5c8fb4 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x600b4c5c l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x652848a7 l2cap_chan_list +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf6dfc06d l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/hidp/hidp 0x36d12779 hidp_hid_driver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0ba84192 br_multicast_router +EXPORT_SYMBOL_GPL net/bridge/bridge 0x13cf881b br_port_get_stp_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x263b2cc3 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x31ed105b br_multicast_has_router_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4363593a br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4500294a br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x48f6df3b br_vlan_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4df02967 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4f619f8c br_vlan_get_proto +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5704ca76 br_mst_get_info +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a34a047 br_fdb_find_port +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6098ca7c br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b798db1 br_mst_get_state +EXPORT_SYMBOL_GPL net/bridge/bridge 0x85f2ea09 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x96db44ec br_fdb_clear_offload +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa0cbee18 br_vlan_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa33a5824 br_port_flag_is_set +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaee4406b br_mst_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb0f7b158 br_vlan_get_info_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb71339e2 br_get_ageing_time +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbacfe76d br_vlan_get_pvid_rcu +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc38b3500 br_vlan_get_pvid +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd1a0d2df br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd37eea07 br_multicast_enabled +EXPORT_SYMBOL_GPL net/bridge/bridge 0xf40cf38c br_forward +EXPORT_SYMBOL_GPL net/core/failover 0x0fac685d failover_register +EXPORT_SYMBOL_GPL net/core/failover 0xd343a207 failover_unregister +EXPORT_SYMBOL_GPL net/core/failover 0xf89863ff failover_slave_unregister +EXPORT_SYMBOL_GPL net/dccp/dccp 0x014a1f33 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x04cb8e0a dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c8492b3 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e4fac9e dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x182ec2bf dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2329e787 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24949b21 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29825255 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2ddd36c5 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x312dbae3 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4378490f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5372851a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x616f6e56 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c83c6d9 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e22c33f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x80993155 dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8229906f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8593ff0a dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x88c21390 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x89397aa2 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9069021b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x970ecdf1 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaf749113 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb11e3ce7 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbee7a320 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc20d9280 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc22e21ae dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc67ce53c dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd2ebc02d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75b7072 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd85fedcc inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda7d6133 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdc2e12a6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5ef45df dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea9f09cf dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf72596ca dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0fea103c dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x10927f20 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x210dea5d dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x31a1bd0e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x77b88f27 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbbd59ccd dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x0c6039ac dsa_flush_workqueue +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x167bd4b4 dsa_devlink_resource_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x17cdfe3b dsa_tag_drivers_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x1dea99ef dsa_switch_find +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2b97eabb dsa_mdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x2f9904d8 dsa_devlink_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3285ebf0 dsa_devlink_params_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x34625eec dsa_tag_8021q_bridge_leave +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3c643a2d dsa_port_from_netdev +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x3e47fda2 dsa_tag_drivers_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x417d1fed dsa_8021q_rx_switch_id +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x42f7c77c dsa_fdb_present_in_other_db +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x45ca5090 dsa_tag_8021q_bridge_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x464c823f dsa_tag_8021q_standalone_vid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x467738ad dsa_tag_8021q_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x48e77096 dsa_tag_8021q_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4cdc55c7 dsa_switch_suspend +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x4d805677 dsa_dev_to_net_device +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5b8fc9f5 dsa_tag_8021q_find_port_by_vbid +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x5c971d73 dsa_devlink_resources_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x61cecd38 dsa_devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6ae3e897 dsa_devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x6c9440ba dsa_tag_8021q_bridge_join +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x7b971a17 dsa_8021q_rcv +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0x9e59271d dsa_8021q_rx_source_port +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xb37fed28 dsa_switch_shutdown +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xbb2527d0 dsa_8021q_xmit +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc21ed133 dsa_port_phylink_mac_change +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc23e8d5f dsa_devlink_region_destroy +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xc42a95f7 dsa_slave_dev_check +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xce9670ad dsa_switch_resume +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xd077e855 dsa_devlink_param_get +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdc6e44f4 dsa_devlink_params_unregister +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xdfcc9525 dsa_unregister_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe3bf0322 dsa_enqueue_skb +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xe50d11fa dsa_register_switch +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf13e1803 vid_is_dsa_8021q +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xf4ad7abd dsa_devlink_port_region_create +EXPORT_SYMBOL_GPL net/dsa/dsa_core 0xfd3e2b67 dsa_devlink_param_set +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1092f675 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x52b389d2 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x753f1069 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x87e2553b ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xee1c9c2f 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 0x999f5080 ife_decode +EXPORT_SYMBOL_GPL net/ife/ife 0xe5dfe40b ife_encode +EXPORT_SYMBOL_GPL net/ife/ife 0xe7888e98 ife_tlv_meta_encode +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x0131baf1 esp_output_tail +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x679a7957 esp_input_done2 +EXPORT_SYMBOL_GPL net/ipv4/esp4 0x89eee535 esp_output_head +EXPORT_SYMBOL_GPL net/ipv4/gre 0x99e95111 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xec81d5d5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x13f9d563 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6332b4da inet_diag_msg_common_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x67cfae9b inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6ef6b870 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9a7ea8c7 inet_diag_msg_attrs_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb793c279 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc8550b36 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd3494bbc inet_diag_find_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe3557981 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xc71107df gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x04fb00b2 ip_tunnel_delete_nets +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e35a805 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1150d5f6 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1a473756 ip_md_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x234405e3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24c5b707 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b23563c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6a6ba277 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9dd3f77c __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9fae4ab8 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa03b8148 ip_tunnel_siocdevprivate +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa0fd6af8 ip_tunnel_ctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaea44a44 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1f31bd2 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbee32f87 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec286c8f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf520e559 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xce029015 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x74e8d7b7 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x9141afde nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0xd71f05be nf_defrag_ipv4_disable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_dup_ipv4 0xb25df4cd nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5b60861d nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6edc79e6 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x87eb7ffc nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa14d7015 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd7f1929b nf_reject_skb_v4_tcp_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xde1d705d nf_reject_skb_v4_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb350cdb nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_socket_ipv4 0x6c52cc42 nf_sk_lookup_slow_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xa680b618 nf_tproxy_laddr4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xab13b29f nf_tproxy_get_sock_v4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tproxy_ipv4 0xe32b2ad2 nf_tproxy_handle_time_wait4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x157bad1b nft_fib4_eval +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nft_fib_ipv4 0x8bbcb856 nft_fib4_eval_type +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x448ad0e7 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x62d9d349 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc890c994 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe3f26db8 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xef79a676 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x127b01de udp_tunnel_notify_del_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x2fddc927 udp_tunnel_drop_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4503ebba udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8143f439 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9497e7bd udp_tunnel_notify_add_rx_port +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9969694e setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa2a7e5f0 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xfd6f4bd5 udp_tunnel_push_rx_port +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x4b88565d esp6_input_done2 +EXPORT_SYMBOL_GPL net/ipv6/esp6 0x5757b475 esp6_output_tail +EXPORT_SYMBOL_GPL net/ipv6/esp6 0xb6bae6da esp6_output_head +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x07d90ca9 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9158e3a4 ip6_tnl_encap_setup +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xefa7abe6 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x085cfacd udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x723c0283 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8425d930 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5f561237 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x65d3fb97 nf_defrag_ipv6_disable +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x81f8ba13 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x1a63e96d nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x10dfbe90 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2ee46558 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x45bd9a06 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x67b5fd33 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x70d2d363 nf_reject_skb_v6_unreach +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x862080a9 nf_reject_skb_v6_tcp_reset +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa5f027af nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_socket_ipv6 0xeb356d2b nf_sk_lookup_slow_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x085c9a40 nf_tproxy_handle_time_wait6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x2195939b nf_tproxy_laddr6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tproxy_ipv6 0x93ba518c nf_tproxy_get_sock_v6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0x46f42e6f nft_fib6_eval +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nft_fib_ipv6 0xc0c86a98 nft_fib6_eval_type +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1792fe73 l2tp_session_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c152720 l2tp_recv_common +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x20f87cef l2tp_session_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2527cf07 l2tp_session_get_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x363034cf l2tp_session_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x40a946ee l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x569b371f l2tp_tunnel_dec_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5fdfa033 l2tp_sk_to_tunnel +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x62a38c20 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x66a62402 l2tp_session_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x67eefe00 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x70f04b1c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e8b535d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x91ebf0a2 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9625466c l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9e92a235 l2tp_tunnel_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa881292 l2tp_tunnel_inc_refcount +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcf27a19b l2tp_tunnel_register +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7380dda l2tp_tunnel_get +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf91fa504 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfa9acef3 l2tp_tunnel_get_session +EXPORT_SYMBOL_GPL net/l2tp/l2tp_ip 0x933d155d l2tp_ioctl +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc8dc108c l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x07cf1b93 ieee80211_calc_tx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1069d2c9 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1bb210e3 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x343599fd ieee80211_hw_restart_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4141b3e7 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4505b747 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5196884f ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5250cf98 ieee80211_tkip_add_iv +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58483acf ieee80211_color_change_finish +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x59c13bed ieee80211_key_mic_failure +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x608c0a96 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bb08127 ieee80211_iterate_stations +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e643cdf ieee80211_remain_on_channel_expired +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 0xb328a9f6 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb760a25 ieee80211_update_mu_groups +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbd7b2295 ieee80211_calc_rx_airtime +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc91da287 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf051f50 ieee80211_iterate_active_interfaces_mtx +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd0722d83 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd8e09da4 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd976d235 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe3eddf55 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe9ceb11c ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xea0a0ac5 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf1b3ae71 ieeee80211_obss_color_collision_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1f827036 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3185c1f1 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4183d8d0 mpls_stats_inc_outucastpkts +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x44801b73 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x7670b536 nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x91befae0 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x218a1df5 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 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x433ba99b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5380c391 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5de787c8 ip_set_init_comment +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x661099b1 ip_set_match_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6c02f30b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7fff7818 ip_set_put_flags +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x821f6ada ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x87774418 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a764a27 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x90ca2f9c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbd6575c2 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xda68bfd6 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdf3d07f6 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xed0cfe64 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee13091c ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1c91815 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfc193888 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd793766 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x029a1f51 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x93f8f840 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xbcdbbeb4 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfc9310f6 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x592f95f0 nf_conncount_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0x9114656d nf_conncount_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xca585328 nf_conncount_gc_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xded40268 nf_conncount_list_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xecc62dd4 nf_conncount_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xf2a1dbb9 nf_conncount_cache_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conncount 0xfd02a34d nf_conncount_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0531d4cc nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x05ca388d nf_conntrack_helpers_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0978ed4a nf_conntrack_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a82590d nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc00f80 nf_nat_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10b0bf76 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12377a09 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12e3499a nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1482a900 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f5d68e nf_ct_remove_expect +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ee8229b nf_conntrack_count +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x237ff464 __nf_conntrack_confirm +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 0x29f87822 nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cc484eb nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31bda483 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35e80863 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3acca862 nf_ct_set_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3afa9d09 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fca21db nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40d3a32a nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44e155df __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4592eec3 nf_ct_destroy_timeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x463fd301 nf_nat_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fcfe44d __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5544bd55 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5602e6f4 nf_ct_ecache_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56ccbe89 nf_ct_timeout_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585122d7 nf_ct_expect_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x588f1560 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b9da2fb __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5fca79fe nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6420eca8 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6aeffc47 nf_ct_netns_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b8e0c55 nf_conntrack_helpers_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c4f741f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ecf6687 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f58ece7 nf_ct_iterate_cleanup_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75e5bed2 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78119a73 nf_ct_bridge_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d4b6ee3 nf_ct_bridge_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x801e75a8 nf_nat_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80a7b05f nf_ct_netns_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84e4405d nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f22558 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x894ebde9 nf_ct_untimeout +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ce90890 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x924cd89e nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99624548 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adb7399 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ec86a4b nf_ct_expect_iterate_net +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa04c79e9 nf_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa45ce757 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab9c86e1 nf_ct_tcp_seqadj_set +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 0xb25dbc94 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4754683 nf_conntrack_eventmask_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4b8e92b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4d72dff nf_ct_helper_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6504414 nf_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb88f8012 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfb7000f nf_ct_get_id +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1cae6bd nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2ca4079 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8436ad4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8c594b7 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb7da148 nf_ct_acct_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcdfea3bb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf4e512d nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd0772587 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd12d0a07 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd308093c nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3a802db nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd505c3e0 nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5198768 nf_ct_iterate_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6240658 nf_conn_pernet_ecache +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6aa71bf nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7f6f6e9 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb6c6199 nf_ct_helper_expectfn_find_by_symbol +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 0xe4b52fc2 nf_nat_helper_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5fb1ec2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xead289cd nf_ct_l4proto_log_invalid +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec8beba6 nf_ct_expect_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfad03ee5 nf_ct_set_auto_assign_helper_warned +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe731af8 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfea9f439 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x960d1f85 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x3734c967 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x130abce5 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0ee0bc1c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ec2c92d set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3683b5e2 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x38c96d02 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5fd116c6 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x81ffd8e8 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xac58fe1b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb4b4bd9f nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd177c245 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf89dc751 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x34724dbe nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xffa7df65 nf_nat_pptp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1152b9ac ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x14ea4c2e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1d310f6f nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x26fb9e3b ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3ce6ddb7 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x921f8746 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x99d0c199 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x97c4730b nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x1cfead51 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0x5edfdabc nf_fwd_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xbe717fd8 nft_fwd_dup_netdev_offload +EXPORT_SYMBOL_GPL net/netfilter/nf_dup_netdev 0xe59e6876 nf_dup_netdev_egress +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x103355f0 nf_flow_table_init +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1b6442d8 nf_flow_offload_ipv6_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1bd9eb79 flow_offload_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x1c6d8568 flow_offload_add +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x2601d799 flow_offload_teardown +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x336bec67 flow_offload_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x374ddaf1 nf_flow_snat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x37ae896f nf_flow_rule_route_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x42c104ca nf_flow_rule_route_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x63985b21 nf_flow_table_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0x77e0e01e nf_flow_dnat_port +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xb9fb6c23 nf_flow_table_offload_setup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xcfe4d2f8 flow_offload_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd60c5d2b nf_flow_offload_ip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd6f4edc5 flow_offload_refresh +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xd920b18a nf_flow_table_free +EXPORT_SYMBOL_GPL net/netfilter/nf_flow_table 0xfb8e44e2 flow_offload_route_init +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x248ab0ec nf_nat_ipv4_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3bc17c49 nf_nat_masquerade_inet_register_notifiers +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x431d2e0e nf_nat_ipv6_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4a0ff9e6 nf_nat_inet_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x544adbbc nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x82b89eb4 nf_nat_inet_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9e674276 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x9f44cdfd nf_nat_ipv6_unregister_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa247e055 nf_nat_inet_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa84c0627 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaa8308b7 nf_nat_masquerade_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc33425b6 nf_nat_ipv4_register_fn +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc72cf5b7 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1216272 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 0xddf0fd7f nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf3dfe724 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfc772ff5 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x03038872 nf_synproxy_ipv6_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x0c2ce62c 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 0x37f05a45 ipv4_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x39cc59ab synproxy_recv_client_ack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x3ffb5f24 nf_synproxy_ipv4_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5c596700 synproxy_recv_client_ack_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8ed845de synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xa5fffa88 synproxy_send_client_synack +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xafb9bb60 ipv6_synproxy_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xc8981259 nf_synproxy_ipv4_init +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xca9fc082 synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xf460c50f nf_synproxy_ipv6_fini +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x00263124 nft_obj_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0028ee5a nft_expr_reduce_bitwise +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x01d1d5e2 nf_tables_destroy_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x06c6ca47 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ea15a02 nft_flowtable_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31f8e948 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3251d762 nf_tables_trans_destroy_flush_work +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3746ff7d nft_unregister_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3900cfe0 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a6b46a8 nft_set_catchall_lookup +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41b71e65 nft_trace_enabled +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x45303a67 nf_tables_deactivate_flowtable +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e471b71 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x549cdfbb nft_reg_track_update +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x579f645a nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5d0f4059 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f41984d nft_meta_get_reduce +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5f574aed nft_meta_set_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5fb53a4c nft_data_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6871de4c nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a93c328 nft_register_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e944d5d nft_set_catchall_gc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x74e6e904 nft_obj_notify +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x76bf62f5 nft_unregister_obj +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9a0aee06 nft_register_flowtable_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e5ee61b nft_parse_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa58cbd37 nf_tables_bind_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae47eb8d nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaf74470b __nft_release_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb661f219 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba526730 nf_tables_deactivate_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc332d41 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbeaa04b7 nft_meta_set_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc2116f87 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8432725 nft_chain_validate +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc8bf2291 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc9705c63 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd42b29b9 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd65d211f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdaf5ccd0 __nft_reg_track_cancel +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 0xe9501fe5 nft_set_lookup_global +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf135e50c nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf8c7137a nft_request_module +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb04868f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfd37aeb5 nft_reg_track_cancel +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff77d51d nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x11dee396 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x263daa79 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x438060fe nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d7f125a nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb6016f02 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe3f55648 nfnetlink_broadcast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf32262b0 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x24988337 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4330ef53 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbd847218 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0x35eff5e0 nf_osf_fingers +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xae91cf76 nf_osf_find +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_osf 0xc94e8734 nf_osf_match +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x28195034 nft_fib_store_result +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x382aba70 nft_fib_reduce +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0x4eb3d1ed nft_fib_init +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xb7998f3a nft_fib_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_fib 0xe6fa60fe nft_fib_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1de558c1 nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x582eba21 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x6081751d nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x9d69b87a nft_reject_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xcafbe353 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 0x063d8083 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x110c28be xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x14260367 xt_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c0c05f3 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21d7051d xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3622b736 xt_unregister_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3d33f000 xt_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x551615da xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55c135c7 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5692eec0 xt_register_template +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5edfda76 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6042ae98 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64d02192 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6ba018bd xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x78a2670a 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 0x93cb8059 xt_hook_ops_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c2c4c8f xt_request_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa582e83f xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa7c94f1d xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa9c1d2aa xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb46232d8 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbbe548d1 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc78da516 xt_table_unlock +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 0xe8ad30b6 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xd41503df xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xfd5d881e xt_rateest_lookup +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x25c99294 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x37e4f565 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x3cf33557 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x835ed4a7 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xed195ecf nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfff47fd0 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nsh/nsh 0x523f4318 nsh_push +EXPORT_SYMBOL_GPL net/nsh/nsh 0x867b4a37 nsh_pop +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a487cfa __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x77eee65a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x800d93ec ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa49c727c ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xcf71456c ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf27a403f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/psample/psample 0x3e25eaa2 psample_sample_packet +EXPORT_SYMBOL_GPL net/psample/psample 0x530c76c4 psample_group_take +EXPORT_SYMBOL_GPL net/psample/psample 0x9c5b6b7b psample_group_get +EXPORT_SYMBOL_GPL net/psample/psample 0xdf6a368e psample_group_put +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x3b8c9f07 qrtr_endpoint_post +EXPORT_SYMBOL_GPL net/qrtr/qrtr 0x63661244 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 0xcc274d9c qrtr_endpoint_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0be0c000 rds_send_path_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x0f3e5179 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x25f52da2 rds_conn_path_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2719eab4 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x29e27475 rds_conn_path_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2b0d543c rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x32700ad2 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x340fa8de rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x36087aa4 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x3cfb717e rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x45a4781e rds_addr_cmp +EXPORT_SYMBOL_GPL net/rds/rds 0x4f732f0e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x582fe5cf rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x585f567b rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x63482828 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x699643ed rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x69e2f583 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x7364880c rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x7b399e66 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x80262da8 rds_connect_path_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x85e4e520 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x86980317 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x9300cfef rds_send_path_reset +EXPORT_SYMBOL_GPL net/rds/rds 0x93afc273 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x9cb9046a rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x9f563286 rds_inc_path_init +EXPORT_SYMBOL_GPL net/rds/rds 0xa637ba77 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb664a557 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc019e9e8 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc554da30 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc578e093 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc7686b37 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xc787667e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xc9539396 rds_send_ping +EXPORT_SYMBOL_GPL net/rds/rds 0xdd09bc15 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xe085263e rds_message_addref +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x2c3c7876 pie_process_dequeue +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x591ebccb pie_drop_early +EXPORT_SYMBOL_GPL net/sched/sch_pie 0x6ce9b467 pie_calculate_probability +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0x5fc3c6ed taprio_offload_free +EXPORT_SYMBOL_GPL net/sched/sch_taprio 0xa7f08102 taprio_offload_get +EXPORT_SYMBOL_GPL net/sctp/sctp 0x037470ce sctp_for_each_endpoint +EXPORT_SYMBOL_GPL net/sctp/sctp 0x11d15176 sctp_transport_traverse_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x2a56fc07 sctp_transport_lookup_process +EXPORT_SYMBOL_GPL net/sctp/sctp 0x3c2f94a2 sctp_get_sctp_info +EXPORT_SYMBOL_GPL net/smc/smc 0x050ebb0f smc_proto +EXPORT_SYMBOL_GPL net/smc/smc 0x4de524fa smc_unhash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0x654e69b8 smc_proto6 +EXPORT_SYMBOL_GPL net/smc/smc 0x737e16bf smcd_unregister_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xbb5bb125 smcd_handle_event +EXPORT_SYMBOL_GPL net/smc/smc 0xc62ae550 smcd_handle_irq +EXPORT_SYMBOL_GPL net/smc/smc 0xcc3b40ed smcd_free_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xe8157caa smcd_register_dev +EXPORT_SYMBOL_GPL net/smc/smc 0xea78ac0e smc_hash_sk +EXPORT_SYMBOL_GPL net/smc/smc 0xf772bbf9 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 0x52410923 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5b387bd5 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 0xdd449da6 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe5e9963f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0020c524 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x008b066c xdr_stream_decode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0091ca01 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01cf4250 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04dcb452 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x050aae35 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x059f9c26 sunrpc_cache_unhash +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 0x08a36205 xdr_reserve_space_vec +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0921acae svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c6f6e25 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c80fc30 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cd97015 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e453123 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f3fa1dc svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x130bf4ad xdr_stream_decode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f8d0b9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1635273b rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16845dc1 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16a05870 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16beeefc xprt_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19492495 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a937cfc svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b271773 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d045a4a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d253dd3 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d9b2c3c xprt_unlock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1da16d38 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dd794d5 svc_max_payload +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 0x215e29bf rpc_task_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216cfafb svc_generic_init_request +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b26250 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x257f1ccf sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x266d7a97 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27493db1 xprt_wait_for_reply_request_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2928806f rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x295b871f rpc_task_release_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6ab528 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2abebe3f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b01a739 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6a4403 xdr_stream_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b7cc180 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2beaeeca auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6b8f0a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c921f3e rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a2b9d4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a67ff1 rpc_max_bc_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32bc511c rpc_set_connect_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32f94d09 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d184de rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35fecf18 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36b077c9 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36f1ea08 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3803e080 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38dad4f0 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38edad66 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a24ddec xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b188790 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b613f4e cache_seq_stop_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c442687 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cea406b svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df9c23a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dfae8c2 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ee51a38 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9a2b0b rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fd2f122 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4233a7ba xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42997e11 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x435cfb8c svc_rqst_replace_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44272844 rpcauth_wrap_req_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46c4f36d rpc_sleep_on_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x476b0537 rpc_clnt_xprt_switch_has_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48de5634 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48fb2332 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49b7195d xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4afedab1 xprtiod_workqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cb1cef8 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dac77f0 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8e328f sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8f6ca7 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4edc7835 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f05c219 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f14ccb2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f40bc7e rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50698159 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b7f057 xdr_expand_hole +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54ae7e0b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54b8d4c9 svc_fill_write_vector +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5695d2ec xprt_reconnect_backoff +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57cc101f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x591bb23d svc_xprt_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a45ba31 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a740f41 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b7878f2 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bef58f4 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dda7524 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e17669c rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1e4007 xprt_add_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2b715e svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f02b7a5 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f1ee1c4 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f76b592 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x611d5555 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6324d256 xprt_unpin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x633c20e8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x639755a4 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64f7ce35 svc_xprt_deferred_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66ed2439 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67c666ab xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68d479d2 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e9528e3 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7057c9dd xprt_force_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x716240a8 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71bc40e3 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71f1d413 cache_seq_next_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73f65651 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x777cebef xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ac9a26 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77cb81aa rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77dc66f1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a81873d cache_seq_start_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c5b6f02 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d0bcf9c rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dce194a xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dea5a74 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ec819f9 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81e21b3c rpc_clnt_iterate_for_each_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a176ff xprt_lock_connect +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a7a3b5 xprt_wait_for_reply_request_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852cda46 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86108e88 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861e2be4 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a6f6416 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ada8159 rpc_sleep_on_priority_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8be95700 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c030950 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c37694b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c4f0b5c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d20a4dd svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d7d16ab xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8ad523 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f506e4b rpc_clnt_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa1e4ac svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb63bce cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fd3ae19 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90bdf439 rpc_clnt_xprt_switch_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94c77e82 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ba4674 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9670b5a1 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f309c4 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97c3089b __xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9858d134 rpc_clnt_show_stats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99aee353 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99e36b6f sunrpc_cache_pipe_upcall_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ac7992f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9d119a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cb5c38f xdr_stream_decode_string_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d09bf26 svc_xprt_destroy_all +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d2dfd14 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9ebc53 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eeb48ba xdr_page_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0d99ef4 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa223e166 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2ffcd13 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f0c2e6 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3f4b1fa svc_generic_rpcbind_set +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf7ff34b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2a19a41 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3b5f50e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b78c67 xprt_wake_up_backlog +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f1dbfe sunrpc_cache_lookup_rcu +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba54f3c9 xprt_free_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb875c36 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcfc31ed svc_fill_symlink_pathname +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf90ce6a xprt_request_get_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc087bb45 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0908dd0 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1949076 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3171409 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc536267a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc565c370 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f3870e xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc619d3c8 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6f7b7bf rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc765f3f7 xdr_align_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc77231e7 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7a55441 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb372b9d sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccb9b101 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce678a59 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcec8359c xprt_pin_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf480139 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf811dc4 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0240ac6 rpc_prepare_reply_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0fc4c63 svc_rpcbind_set_version +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd10d1d5b rpc_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b49115 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd21271aa xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43af83d xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd551f27d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6824d63 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6f5fb7c sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9085da1 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd964198d rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb48ace3 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbcef0dc svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0d4b90 xdr_stream_decode_opaque_dup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd691402 xprt_find_transport_ident +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde149dca rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfda9476 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe140afb8 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25cf030 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe480d3f7 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52e50fb xprt_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6510052 rpc_clnt_xprt_switch_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe880100d rpcauth_unwrap_resp_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe99dd3f5 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb142fec svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb3946f0 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec6a55f9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed09b81d rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed826fc4 svc_encode_result_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed88a965 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedf9471c rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee1764f7 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeead91b5 rpc_clnt_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeb30aeb rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0200145 xprt_reconnect_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b7775d rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1f77db0 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf319c582 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4436a57 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf56ff768 rpc_num_bc_slots +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8930c21 svc_xprt_close +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9534968 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb787a0e svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcbb2ef0 svc_age_temp_xprts_now +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfceee572 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd0d4736 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe2efc8f rpc_clnt_setup_test_and_add_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff23bbfb xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff440e43 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff7a6e56 cache_create_net +EXPORT_SYMBOL_GPL net/tls/tls 0x7aa9b6e7 tls_device_sk_destruct +EXPORT_SYMBOL_GPL net/tls/tls 0xb1fbeb68 tls_encrypt_skb +EXPORT_SYMBOL_GPL net/tls/tls 0xe1b3f4ac tls_offload_tx_resync_request +EXPORT_SYMBOL_GPL net/tls/tls 0xfefbe371 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 0x0d281ecc virtio_transport_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0d6b9238 virtio_transport_notify_send_post_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x0eb6d21c virtio_transport_notify_send_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x10f7dc46 virtio_transport_notify_recv_pre_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x127eb17a virtio_transport_stream_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x166c73c2 virtio_transport_dgram_bind +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x20280ef9 virtio_transport_notify_recv_post_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x21c485be virtio_transport_notify_buffer_size +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3967e08a virtio_transport_notify_recv_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x3bfa3d78 virtio_transport_deliver_tap_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x463e1a7d virtio_transport_seqpacket_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x4e7174f0 virtio_transport_seqpacket_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5350b557 virtio_transport_stream_rcvhiwat +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5357a9d0 virtio_transport_destruct +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x584af8e2 virtio_transport_free_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x58ce8cea virtio_transport_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x59e44467 virtio_transport_notify_recv_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x5a7a769e virtio_transport_connect +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x60411e1e virtio_transport_notify_poll_out +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x62db5392 virtio_transport_dgram_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x6c79b460 virtio_transport_notify_poll_in +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x7c84bc25 virtio_transport_shutdown +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x811dd599 virtio_transport_stream_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x8d1acdbb virtio_transport_do_socket_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x90fe1f5a virtio_transport_release +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9bdd0a56 virtio_transport_stream_is_active +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9c5ae09a virtio_transport_dgram_dequeue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0x9d4b67fa virtio_transport_seqpacket_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xac53fcaa virtio_transport_inc_tx_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbabd30f5 virtio_transport_dgram_allow +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xbda47909 virtio_transport_notify_send_pre_block +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd1fae354 virtio_transport_notify_send_pre_enqueue +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xd625f2c9 virtio_transport_get_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xe3e682e2 virtio_transport_put_credit +EXPORT_SYMBOL_GPL net/vmw_vsock/vmw_vsock_virtio_transport_common 0xf0238434 virtio_transport_recv_pkt +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x053c8055 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0884c582 vsock_assign_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c3dcdb7 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0e9bc9b6 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x102adf75 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15138ca1 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x254e86fe vsock_core_unregister +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x25f87e4b vsock_create_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x284e07d8 vsock_bind_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3a3bea9c vsock_deliver_tap +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 0x615c765a vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6da874bb vsock_add_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x72c318e1 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x77c14317 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8409d837 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x90aa8549 vsock_find_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x92ed4bf8 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9bb6fd09 vsock_connected_table +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa69e9afb vsock_core_register +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaf2674b5 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc21d0cc1 vsock_remove_tap +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc92f7f50 vsock_table_lock +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdb835d23 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe29972f1 vsock_core_get_transport +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xec96eadf vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed2b8af2 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf5821e61 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf7884467 vsock_remove_sock +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0653fc95 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1c522820 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f50264f cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x35640c18 cfg80211_vendor_cmd_get_sender +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3b3ec03a cfg80211_pmsr_complete +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x420df7be cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4b5a03e2 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f1308a5 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63cbcf19 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8bc30f2e cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f114bca cfg80211_pmsr_report +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa63b3581 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc01306e4 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xcb4a5b62 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe8dae98c cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd28c801 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0049ca83 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x00c80741 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL net/xfrm/xfrm_algo 0x0a575945 xfrm_count_pfkey_auth_supported +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 0x5eeff2f3 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x731b0be9 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb39089fb ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xee6f5302 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 0x8861c16d 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 0x07e1066a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x19ae4def snd_card_disconnect_sync +EXPORT_SYMBOL_GPL sound/core/snd 0x1c9814de snd_ctl_apply_vmaster_followers +EXPORT_SYMBOL_GPL sound/core/snd 0x20ba1dc9 snd_devm_card_new +EXPORT_SYMBOL_GPL sound/core/snd 0x33b9bf68 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x3c7110f1 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x3eaeb725 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x42cd4886 snd_ctl_register_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x4729b20f snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x4b8a549c snd_ctl_disconnect_layer +EXPORT_SYMBOL_GPL sound/core/snd 0x5af762f1 snd_fasync_free +EXPORT_SYMBOL_GPL sound/core/snd 0x64868205 snd_fasync_helper +EXPORT_SYMBOL_GPL sound/core/snd 0x8e8220e4 snd_power_ref_and_wait +EXPORT_SYMBOL_GPL sound/core/snd 0x9d51c03e snd_device_get_state +EXPORT_SYMBOL_GPL sound/core/snd 0xaa739dc4 snd_card_rw_proc_new +EXPORT_SYMBOL_GPL sound/core/snd 0xd828893d snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xd992a501 snd_card_ref +EXPORT_SYMBOL_GPL sound/core/snd 0xdf5314d3 snd_card_free_on_error +EXPORT_SYMBOL_GPL sound/core/snd 0xf60b064f snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xf8f2a4eb snd_kill_fasync +EXPORT_SYMBOL_GPL sound/core/snd 0xfaf598c6 snd_ctl_request_layer +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xa3366268 snd_compr_stop_error +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xe2008136 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09d314ef snd_devm_alloc_dir_pages +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x16646b14 _snd_pcm_stream_lock_irqsave_nested +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2563306a _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x4e8dd05d 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 0x649892e8 snd_pcm_create_iec958_consumer_default +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6679696b snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x73e917c9 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x812a738e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8d864069 snd_pcm_rate_range_to_bits +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8f3f0d84 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x91c5b731 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa0b43c9b snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb0303b75 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb6750919 snd_pcm_fill_iec958_consumer +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc2c93ab7 snd_dma_buffer_sync +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe4be5753 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0047effd snd_dmaengine_pcm_refine_runtime_hwparams +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0b8b85bc snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x12ad6771 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1e8cd29d snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1f522e29 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2c3fe577 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x37f0ff1e snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3d308d8d snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5c02ec59 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc567f4e2 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd3c62f50 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf3a4fa39 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x11d1cebe snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd-seq-device 0x2189d71b __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1243021e amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x45a4a3c4 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x52d6711b amdtp_domain_start +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5c100882 amdtp_domain_add_stream +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x786b93c1 amdtp_domain_stream_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7ca89a9f amdtp_domain_destroy +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa0080aaf amdtp_domain_stop +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb02b8e9c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcbb556d3 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd8b3befc amdtp_domain_stream_pcm_ack +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe590afd6 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe81fe914 amdtp_domain_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xea82bd28 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x022db367 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03315d0f snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05636f93 snd_hdac_aligned_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a1ee120 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a9fa169 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0aaca232 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b8320d7 snd_hdac_sync_audio_rate +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0beff0ba snd_hdac_acomp_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e46148f snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e885b6f snd_hdac_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1234369e snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1382d03d snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1488641f snd_hdac_aligned_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1833450c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1abdb518 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1b2c685a snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c7dcf3f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2122e11a snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22cb4b00 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3244dfef snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x356d1fb6 snd_hdac_setup_channel_mapping +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3adc86fe snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bd544c2 snd_hdac_get_active_channels +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f73e140 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41f0e675 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46ec80ed 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 0x517c0f28 snd_hdac_acomp_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5390b68b snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5424bd31 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x552dc6a7 snd_hdac_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5762dea3 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a1152c6 snd_hdac_stop_streams_and_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a3bdeff 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 0x6134a486 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x618a306a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x623c0b96 snd_hdac_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x652aeadc snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67bfe791 snd_hdac_spk_to_chmap +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x69226a42 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a291459 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a555432 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b732add snd_hdac_register_chmap_ops +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72b86ec1 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7496bbdb snd_hdac_sync_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74e30e5a snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77bcaa5d 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 0x7c61c30c snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e60d9ae snd_hdac_codec_link_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7f920d51 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83764a6f snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8638a699 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x895bfd10 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e4f0dc5 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x993ba3d3 snd_hdac_stop_streams +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9c2643ca snd_hdac_acomp_get_eld +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e7aa597 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa229159c snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3bfbeb5 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3ddad4a snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8455aaa snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa135829 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa289480 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae029c13 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafd54d3d snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb07c30f4 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5406f2a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7be7e86 snd_hdac_regmap_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd78fa89 snd_hdac_get_stream_stripe_ctl +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe40be4e snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1904682 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc292e815 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc759b406 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7729f00 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9bffff7 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaf9fbbf snd_hdac_acomp_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd8fd4a1 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd00b1d07 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd274492b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd37de967 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdad00f90 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe43c93b4 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4e07754 snd_hdac_print_channel_allocation +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7906b65 snd_hdac_regmap_update_raw_once +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed0e5446 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xee5d0e50 snd_hdac_bus_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf07a0544 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf38808eb snd_hdac_codec_link_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8e3e4ae snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfccf2ec4 snd_hdac_bus_reset_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfefa0531 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x1b935a0b intel_nhlt_get_dmic_geo +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0x231454a2 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 0xa7e384ed snd_intel_acpi_dsp_driver_probe +EXPORT_SYMBOL_GPL sound/hda/snd-intel-dspcfg 0xfe99f145 intel_nhlt_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f970961 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x49bd53d9 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x935e5fa0 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9580ce50 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb0de9598 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd5b52ebc snd_ak4113_check_rate_and_errors +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 0x07263ee7 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0842b6e1 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c7b0d9e snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0dd8ae84 snd_hda_codec_parse_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fb77fe7 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10f9f858 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12383fd5 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13e7cce7 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1528ee44 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1536e315 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b9f7469 snd_hda_codec_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2175b6f9 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2267d739 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2436e09d snd_hda_codec_cleanup_for_unbind +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x294781b9 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b20f4de snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eea89ae query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x306099ee snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f9d804 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3187ce46 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3282bff0 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x337dbd57 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34c6cdd6 snd_hda_jack_bind_keymap +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3559d07d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x37102517 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b030268 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3be0d116 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x413cdc6f hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4627de07 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x476f0322 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bc94792 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4eac09ae snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x523bfe2a snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x528be126 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54ed4c46 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55969dac snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55c184f7 snd_hda_jack_detect_enable_callback_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x567d11e7 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cb5911c snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f51b1c9 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x61aff836 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x620f9a46 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6590a02e snd_hda_codec_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x659bfdc7 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67043bd3 snd_hda_set_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67c28255 __snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6856b005 snd_hda_get_dev_select +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69dba22c snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6afbf75c snd_hda_codec_device_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b02eda5 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b78008a azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca49aaa azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6da2bed0 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e5f8c1d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f3ae44b snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7040bb26 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7277d59c snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72ab8ce0 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76d51525 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78af61d3 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ceed1ec snd_hda_jack_add_kctl_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d8a6a7b snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fcb7665 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8030df89 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x806d09fe snd_hda_codec_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80aad8f4 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81f91de3 snd_hda_jack_set_button_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8305caef snd_hda_jack_detect_state_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8320d64e snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84429127 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x899043cd snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cdd8c09 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ea60498 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x903d049d snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x950d0d23 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x984b50f4 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b120105 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c1b76d6 snd_hda_jack_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa09424de snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1a337ec snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5570c75 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5fd869e azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa651dcd6 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa73110ac snd_hda_codec_device_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab210c6c snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafc74248 snd_hda_jack_tbl_get_mst +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaffbc875 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ccf7c9 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb30734a4 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb371fdf6 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb41b652a snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8a825ed snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb70e8b8 snd_hda_codec_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe304020 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc567b570 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8924264 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a9cf2d snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc902264f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc90b0db1 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9f2dd5c snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbeefdc5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd55b32a snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcde5ea0c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5f0b746 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8a97405 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8b006e5 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd958878c snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb0ba198 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbe9f8ba snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbf7d700 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd04b325 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd91e99c snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe01c42db snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0584f35 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe07bf726 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe183adef snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe266e354 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe906d190 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf12a3544 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf38ef046 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf59ec42d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5f9c269 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6226160 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d83719 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf763290a is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8dc35ac snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa44ec7d hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa45e9e1 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce73d4f snd_hda_get_num_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdbb0e3a snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0463560b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x12ae9aca snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x155dd9a3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1d76fe71 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2cc1d1a8 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x304acf94 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4fe35a97 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4ff42380 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x65b542e7 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6a546a23 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x712566b5 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x96061f35 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9e9a84e7 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa94b1301 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb564d094 snd_hda_gen_add_mute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc620956d snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc80b7cbf snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd055883b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdee8a738 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf5f77ba5 snd_hda_gen_add_micmute_led_cdev +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbfc705d snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/mt6359-accdet 0x5386a739 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 0x5b83691e adau1372_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x1c1a905a adau1761_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau1761 0x5faf3c23 adau1761_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x32dcfbc4 adau17x1_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x33cc3c50 adau17x1_add_widgets +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x5bb1f56a adau17x1_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x818452fd adau17x1_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0x82565c60 adau17x1_precious_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xd077dfa5 adau17x1_set_micbias_voltage +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xdae8563e adau17x1_add_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xe927c0a0 adau17x1_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xf21cc19d adau17x1_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau17x1 0xff421c37 adau17x1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-adau7118 0xf205d4fa adau7118_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x5b4c679d cs35l41_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0x8fde3375 cs35l41_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41 0xe63fea5c cs35l41_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x024057d2 cs35l41_global_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x03fe3341 cs35l41_test_key_unlock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x2b7e1595 cs35l41_write_fs_errata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x43741be9 cs35l41_safe_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x4b1f5e7e cs35l41_test_key_lock +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x57102ca7 cs35l41_set_cspl_mbox_cmd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x609b7294 cs35l41_regmap_spi +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x69a09960 cs35l41_set_channels +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x6b0a69ec cs35l41_init_boost +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x8ae82f54 cs35l41_configure_cs_dsp +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x91301714 cs35l41_otp_unpack +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0x962b7fae cs35l41_gpio_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xa0d63940 cs35l41_exit_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb19c9cab cs35l41_register_errata_patch +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xb76549ed cs35l41_enter_hibernate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs35l41-lib 0xd6ce744b cs35l41_regmap_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7755fee3 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 0xcdbe2b93 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0933f4f7 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x28f75154 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x63016129 cs42l51_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xe1ac657e cs42l51_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xfcfba1fc 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 0x93fb8e81 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc13c55df cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc6a06ae3 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x0dc05ab9 da7219_aad_jack_det +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x53c5db1c da7219_aad_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0x89c9385c da7219_aad_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-da7219 0xac0e8d4d da7219_aad_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x597f2f50 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x63499c0c es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0x4583b543 lpass_macro_pds_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-lpass-macro-common 0xc41f3683 lpass_macro_pds_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x31fc13cf max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x3061cef7 soc_codec_dev_max98373_sdw +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x4d4f5e66 soc_codec_dev_max98373 +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0x7a1e6870 max98373_slot_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98373 0xa579b0b6 max98373_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x297c356e mt6358_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x7ab59669 mt6358_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0x87155331 mt6358_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6358 0xf3097fa7 mt6358_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x07f8ee4c mt6359_mtkaif_calibration_disable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0x254e604f mt6359_set_mtkaif_calibration_phase +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xb7c3f04c mt6359_set_mtkaif_protocol +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-mt6359 0xc3dfdcda mt6359_mtkaif_calibration_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8821 0xed607376 nau8821_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xbf55f96a nau8824_components +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-nau8824 0xf6a28936 nau8824_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x1f20c443 pcm1789_common_exit +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0x769a7644 pcm1789_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm1789-codec 0xb7a52d8c pcm1789_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0x712ada6c pcm179x_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm179x-codec 0xb65f493b pcm179x_common_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0x927e723d pcm186x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm186x 0xa3f80206 pcm186x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0x5e1d22ce pcm3168a_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc0ab73b4 pcm3168a_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xc7c5855f pcm3168a_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm3168a 0xd6ef80de pcm3168a_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x092349ce pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe3ded7bd pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xeafb4dff pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xec3302df 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 0x2455bb37 rt5640_disable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x2a4ec095 rt5640_enable_micbias1_for_ovcd +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa0e49c62 rt5640_detect_headset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xdfdd3e10 rt5640_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xe9ea8dd4 rt5640_set_ovcd_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xf0f3eae3 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xba59a36e rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xc04d5ca8 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5659 0x42db3793 rt5659_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5663 0x7fde4018 rt5663_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x952f56ec 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 0x470b6ace rt5682_aif1_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x5745e83f rt5682_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x59d3d967 rt5682_jack_detect_handler +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6545e5e6 rt5682_readable_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x6698de24 rt5682_soc_component_dev +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x7da4f673 rt5682_calibrate +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x886dbf59 rt5682_volatile_register +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0x917c44d0 rt5682_parse_dt +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xac3cd1cd rt5682_aif2_dai_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xb45c0cbd 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 0xc85ce152 rt5682_apply_patch_list +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682 0xd31e9fa5 rt5682_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5682s 0xd9c5fa91 rt5682s_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3798551e sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x4f55ead5 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74dae6e9 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa68e889e devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xa91878ba sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x53e6483a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-regmap 0x7791a1fc devm_sigmadsp_init_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x2755a8dc ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf4c99d83 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic32x4 0x5f53065a aic32x4_register_clocks +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x249f4c67 aic3x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x0317ee2c 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 0x76a295ab wcd938x_sdw_device_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x7bd759f0 wcd938x_sdw_hw_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0x86d0216b wcd938x_sdw_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc1b7b38d wcd938x_sdw_set_sdw_stream +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wcd938x-sdw 0xc8ea5c34 wcd938x_swr_get_current_bank +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x0b80cb12 wm_adsp_compr_copy +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x15fa0b75 wm_adsp_read_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x2375a70d wm_adsp1_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x3b74ec04 wm_adsp_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x41a04f43 wm_adsp_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x4aa9ec23 wm_adsp2_preloader_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 0x56223005 wm_adsp_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5c288bff wm_halo_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5e92b7fd wm_adsp1_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x5f120c42 wm_adsp2_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x612d434e wm_adsp_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x7af26658 wm_adsp2_preloader_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x89883935 wm_adsp2_set_dspclk +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x922e5cb4 wm_adsp_early_event +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0x97cae2f3 wm_adsp_fw_get +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa4889622 wm_adsp_compr_handle_irq +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xa7916888 wm_adsp_fw_put +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xaa5e12ce wm_adsp_compr_open +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xae3b992b wm_adsp_fw_enum +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc60ad9f3 wm_adsp2_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xc93c4722 wm_adsp_write_ctl +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xcdda5b0b wm_adsp_compr_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd2838d21 wm_adsp_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xd9d15b48 wm_adsp2_component_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xdd3c79ef wm_adsp2_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xea38ee07 wm_halo_bus_error +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-adsp 0xfef5d343 wm_adsp2_component_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1ccaf263 wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x270642a8 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x312bcf9f wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x557dc546 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x571e0d8d 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 0x6ca1a6ad wm_hubs_hpr_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 0x7f305017 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xaf700e94 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x486df722 wm8731_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8731 0x8b8e386f wm8731_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4097c896 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6b06b918 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbb9e5fbe wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf7535457 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x9f0dbd13 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x282e0400 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x4c7a46e4 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x59ff5a16 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/imx-pcm-dma 0x15e093e1 imx_pcm_dma_init +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x630e2b7b 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 0x3dbacc9e audio_graph_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x0e14a1c3 audio_graph2_link_normal +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x16eae3cc audio_graph2_parse_of +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x4e535a40 audio_graph2_link_dpcm +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-audio-graph-card2 0x90f39466 audio_graph2_link_c2c +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x0cd89282 asoc_simple_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x1afc64e9 asoc_simple_startup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x237af098 asoc_graph_is_ports0 +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x27517d12 asoc_simple_remove +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x2940ea05 asoc_simple_parse_tdm_width_map +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x3109c442 asoc_simple_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x413a67c4 asoc_simple_parse_routing +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x4c9c9d25 asoc_simple_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x6974bc66 asoc_simple_init_priv +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8679e982 asoc_simple_canonicalize_platform +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x8a58a405 asoc_simple_set_dailink_name +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0x906db148 asoc_simple_clean_reference +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xa9036b27 asoc_simple_canonicalize_cpu +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xabdf78ff asoc_simple_shutdown +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xacd72e63 asoc_simple_parse_convert +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xb13aa702 asoc_simple_parse_widgets +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xc2376c6a asoc_simple_init_jack +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xda2cdb9b asoc_simple_be_hw_params_fixup +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe38dd2e4 asoc_simple_hw_params +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe6af621d asoc_simple_parse_clk +EXPORT_SYMBOL_GPL sound/soc/generic/snd-soc-simple-card-utils 0xe862cb13 asoc_simple_dai_init +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 0xfbf73887 asoc_graph_card_probe +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x0adeb514 mtk_dynamic_irq_release +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x19a91f7b mtk_memif_set_rate_substream +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x272a07e3 mtk_afe_fe_ops +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x330eed54 mtk_afe_add_sub_dai_control +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x3c2c53ca mtk_memif_set_rate +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4592b887 mtk_memif_set_format +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x4aa40c20 mtk_afe_combine_sub_dai +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x64b03302 mtk_memif_set_pbuf_size +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x66576531 mtk_afe_suspend +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x6743ad31 mtk_memif_set_enable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x72705ec9 mtk_afe_fe_trigger +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x765605aa mtk_afe_pcm_platform +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x803600cf mtk_afe_fe_startup +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x88209e98 mtk_afe_fe_hw_params +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x92b0fc2e mtk_afe_fe_prepare +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x99692b0b mtk_memif_set_addr +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0x9de4dc31 mtk_afe_pcm_new +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xa9f19b77 mtk_afe_resume +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xae6802ad mtk_afe_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb1ba2041 mtk_memif_set_channel +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xb7c1d97e mtk_afe_fe_hw_free +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xbda3bc6e mtk_memif_set_disable +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xc52634c7 mtk_afe_fe_shutdown +EXPORT_SYMBOL_GPL sound/soc/mediatek/common/snd-soc-mtk-common 0xeab38459 mtk_dynamic_irq_acquire +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0x3f264bae mt8195_afe_disable_clk +EXPORT_SYMBOL_GPL sound/soc/mediatek/mt8195/snd-soc-mt8195-afe 0xcb7ebb64 mt8195_afe_enable_clk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x4aeb0ba3 axg_fifo_pcm_new +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x62d6358c axg_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0x88a1a63b axg_fifo_pcm_hw_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd5b9932d axg_fifo_pcm_trigger +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xd6f29004 axg_fifo_pcm_close +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe9062268 g12a_fifo_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xe9f89c1d axg_fifo_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xee60347c axg_fifo_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-fifo 0xf9744ca7 axg_fifo_pcm_open +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x17341ece axg_tdm_formatter_event +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x4988d1f8 axg_tdm_stream_alloc +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x539c48cc axg_tdm_stream_start +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x55316323 axg_tdm_formatter_set_channel_masks +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0x64e0ca85 axg_tdm_stream_free +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xa10846eb axg_tdm_formatter_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-formatter 0xef4a0d56 axg_tdm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-axg-tdm-interface 0x099a85cb axg_tdm_set_tdm_slots +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x023e7b4a meson_card_set_be_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x088073c2 meson_card_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x5893ba6f meson_card_set_fe_link +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x638888cc meson_card_reallocate_links +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0x6daeaac3 meson_card_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xa20246b1 meson_card_parse_dai +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xd54a5b19 meson_card_probe +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-card-utils 0xf546abb5 meson_card_i2s_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x120c6122 meson_codec_glue_input_get_data +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3814ee5a meson_codec_glue_input_hw_params +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x3f355848 meson_codec_glue_input_set_fmt +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x53069ad8 meson_codec_glue_input_dai_remove +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x7bb0a709 meson_codec_glue_output_startup +EXPORT_SYMBOL_GPL sound/soc/meson/snd-soc-meson-codec-glue 0x81de7497 meson_codec_glue_input_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x28421460 q6adm_get_copp_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0x4b767d81 q6adm_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xb8a6727f q6adm_matrix_map +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6adm 0xc2342057 q6adm_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x07a54780 q6afe_cdc_dma_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x369b6eeb q6afe_port_put +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x3b16d6e7 q6afe_port_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x498d993b q6afe_get_port_id +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x5332304f q6afe_slim_port_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6afe 0x55c60abf 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 0xe0b534a1 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 0x39339434 q6asm_audio_client_alloc +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4afe6f73 q6asm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x4fba2f0c q6asm_run_nowait +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6asm 0x68db31e2 q6asm_unmap_memory_regions +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 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/q6prm 0x12988df6 q6prm_set_lpass_clock +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x721c41cb q6prm_unvote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6prm 0x74ea7b21 q6prm_vote_lpass_core_hw +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0x5b75f756 q6routing_stream_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/q6routing 0xa7a64259 q6routing_stream_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x0b94e060 q6apm_graph_open +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x104b10c8 audioreach_graph_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x145cf8f6 audioreach_alloc_apm_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x17914071 audioreach_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x240f38e9 q6apm_graph_stop +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x2756228b q6apm_graph_get_rx_shmem_module_iid +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x33382594 audioreach_set_media_format +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x35a06774 q6apm_graph_media_format_pcm +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x4f9ca0ca q6apm_unmap_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x50e8693a audioreach_gain_set_vol_ctrl +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x53263fe7 q6apm_graph_media_format_shmem +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5543dd66 audioreach_alloc_apm_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x5c25e542 q6apm_graph_prepare +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x61b2a936 audioreach_get_container_first_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x64dc5171 audioreach_alloc_cmd_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x68a686ca q6apm_read +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x717bb6fd audioreach_get_container_last_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7387a8b9 audioreach_tplg_init +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7bfc0854 audioreach_alloc_graph_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x7f4d39c8 audioreach_alloc_pkt +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8000d3fc q6apm_graph_start +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0x8684f126 audioreach_shared_memory_send_eos +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbb236c1e q6apm_graph_close +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xbc651275 audioreach_send_cmd_sync +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc1f51ba0 q6apm_graph_flush +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xc8d1c428 audioreach_graph_free_buf +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe0995b68 audioreach_get_container_next_module +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xe884d038 q6apm_map_memory_regions +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6apm 0xfc5800a8 q6apm_write_async +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x17142e58 q6dsp_map_channels +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x30d105e3 q6dsp_audio_ports_of_xlate_dai_name +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0x5e15249a q6dsp_clock_dev_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/qdsp6/snd-q6dsp-common 0xa6175c14 q6dsp_audio_ports_set_config +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cdc-dma 0xb8920342 asoc_qcom_lpass_cdc_dma_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x18e56eb0 asoc_qcom_lpass_cpu_platform_shutdown +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x80ce6026 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x8d22e216 lpass_cpu_pcm_new +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xa09ba858 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe85ed589 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xf8b2f408 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-hdmi 0x2ab086c7 asoc_qcom_lpass_hdmi_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xd72827c2 asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x3dd9f961 snd_soc_acpi_find_machine +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x5c512782 snd_soc_acpi_find_package_from_hid +EXPORT_SYMBOL_GPL sound/soc/snd-soc-acpi 0x9b1aadfd snd_soc_acpi_codec_list +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c5b881 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0246530e snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02dedaea snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04c5a4e2 snd_soc_component_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x055dc717 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07c1a991 snd_soc_component_compr_copy +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e85a3a snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08d529f2 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09d4ef8a snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bedacd9 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0cb65952 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1364f68f snd_soc_set_dmi_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1388e3b4 snd_soc_dai_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14e09009 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1517912b snd_soc_dai_compr_set_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1568ecb0 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17392745 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18b49738 snd_soc_component_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18e6760c dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1962bbac snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19b6d679 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a279e18 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1abd8b4e snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1abf1c70 snd_soc_dai_active +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cadd4b5 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ddeb0db snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ded5caf snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f26f2f5 snd_soc_component_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f42bfc0 snd_soc_component_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fd30234 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x201ba2b7 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211b102d snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21f7ab80 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22200077 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x225f18d8 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x237a4825 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x241fb223 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x261db30a snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2df82b23 snd_soc_card_remove_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e1fc510 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f3f3e8b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc1790e snd_soc_component_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc6877c snd_soc_free_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3112f9c0 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x320a95ad devm_snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32a2b4f4 snd_soc_get_dai_id +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x331b621d snd_soc_rtdcom_lookup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33936aa2 snd_soc_of_parse_pin_switches +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3490347c snd_soc_component_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x353d7278 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36571697 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36f54c8a snd_soc_dapm_update_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3898bd89 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39f2ef87 snd_soc_component_set_jack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a0551e3 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b11d228 snd_soc_dapm_dai_free_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c33c4bc snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d9fcc61 snd_soc_dai_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e666887 snd_soc_of_put_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x432c039e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x445a3c8e snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452873b3 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46479d90 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4662ac89 dpcm_end_walk_at_be +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47808fdc snd_soc_dapm_dai_get_connected_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47f93c29 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x48a9dae3 snd_soc_dai_compr_ack +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4951244f snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7522f6 snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b7a73fe snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e19bdb2 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f3f89c9 snd_soc_component_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fa1782d snd_soc_tdm_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x545bbb2f snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x553c5f90 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57882518 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57f02638 snd_soc_component_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58c5fac4 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5909b042 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a6901db snd_soc_daifmt_parse_format +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b1bdb11 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e56245d snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fd35f91 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x600b235e snd_soc_component_compr_open +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62e4662c snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6533896f snd_soc_dapm_free_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6551ff72 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66110dac snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66c0214d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69dc9deb devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b5aa976 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b9815a0 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c9c1b7b snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb01451 snd_soc_dai_get_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ebfc466 snd_soc_component_compr_get_codec_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed452fb snd_soc_component_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71ed6632 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72450c5d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74abe461 snd_soc_dai_link_set_capabilities +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x753ce8e7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x758572d9 snd_soc_component_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x799bd8a0 snd_soc_of_get_slot_mask +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7be8d293 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca400c6 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7da5f024 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x813c8e61 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81d6e7f3 snd_soc_component_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82554876 snd_soc_component_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x826402c6 snd_soc_component_initialize +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x839f782c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83bf93e8 snd_soc_dpcm_runtime_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83d5d494 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83f55528 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851db267 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a8ad85f snd_soc_new_ac97_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bb303d6 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8cd29a3b snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d9f7138 snd_soc_component_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f3fca10 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f7a163b snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f89910c snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fb0c279 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92bb8446 snd_soc_of_put_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ee12b9 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9302c677 snd_soc_lookup_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x939d52ea snd_soc_daifmt_parse_clock_provider_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9433b244 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94661782 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95514a22 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95dbd271 snd_soc_component_write_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x987fa26d snd_soc_dai_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x998e64b3 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9dce320d snd_soc_component_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e2cfc8d snd_soc_dapm_new_dai_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e39b36d snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e49014f snd_soc_dai_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa08ed9fa snd_soc_component_compr_pointer +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1ae3b59 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa300689e snd_soc_component_compr_get_caps +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7a4cb7f soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa811cb19 snd_soc_card_jack_new_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa841f871 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa84356b5 snd_soc_dai_compr_shutdown +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9aeaa33 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacb2cf54 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacc83b67 snd_soc_of_parse_node_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad6c5725 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae6a1079 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb18f72dd snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e58aa4 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2c4cb35 snd_soc_component_read_field +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35402d6 snd_soc_remove_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb44c4bec snd_soc_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb51dc661 snd_soc_runtime_calc_hw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb587b58f snd_soc_dai_compr_get_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb685284d snd_soc_lookup_component_nolocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb909ccca snd_soc_dai_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb94195a9 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb974a53d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb986536c snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdd2af3b dapm_pinctrl_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc012717a snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0ac614e snd_soc_link_compr_set_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc13e26ce snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1c16655 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc225cdb8 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2485c3f snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc26863bc snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc317a15e snd_soc_daifmt_clock_provider_flipped +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3217371 snd_soc_find_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc33130ff snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc613ac6d snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc75abee0 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bb82f1 snd_soc_unregister_component_by_driver +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc94d50e9 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcac3b248 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdc6e5d1 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf052885 snd_soc_find_dai_with_mutex +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf7a5070 snd_soc_dapm_stream_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf8c8682 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfa2194f snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1d93d91 null_dailink_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3c5755b snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd45023bb snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd83c2937 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaa3bf90 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaf5d13e snd_soc_link_compr_startup +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc976a49 snd_soc_runtime_action +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd0856ac devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd2c1163 snd_soc_add_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde2ac65d snd_soc_of_get_dai_link_cpus +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe86bd566 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8b33e64 snd_soc_card_add_dai_link +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9d0c083 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb285c07 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebaaec38 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec58444e snd_soc_add_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed70312c snd_soc_component_compr_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed91920b snd_soc_dai_compr_get_metadata +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef0af721 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1526475 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf234a59e snd_soc_component_compr_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf241ede2 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2fa76ad snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5964e0b snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69124e7 snd_soc_close_delayed_work +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6efcf8b dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf709536e dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7799844 snd_soc_component_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf823af15 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 0xfce21222 snd_soc_component_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd15f2eb snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe9a7d64 snd_soc_of_parse_aux_devs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfef0f4f1 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff08a32e snd_soc_dapm_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x1a9b261f snd_sof_dbg_memory_info_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x2397b9cd snd_sof_dbg_init +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0x9ea82b13 snd_sof_debugfs_buf_item +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xea53da86 snd_sof_debugfs_add_region_item_iomem +EXPORT_SYMBOL_GPL sound/soc/sof/snd-sof 0xfde3c526 snd_sof_free_debug +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x2c64d423 sprd_mcdt_request_chan +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x5061832c sprd_mcdt_chan_int_disable +EXPORT_SYMBOL_GPL sound/soc/sprd/sprd-mcdt 0x609193c3 sprd_mcdt_chan_write +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 0x9bfc167b tegra_asoc_machine_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-machine 0xd4b230df tegra_asoc_machine_probe +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x40159401 tegra_pcm_close +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x5e081d91 tegra_pcm_hw_params +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x756cb34d tegra_pcm_pointer +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x8aca3cb3 tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xc593664c devm_tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xcb891a20 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd1339e1e tegra_pcm_open +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xd63b786f tegra_pcm_construct +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xe734f1b2 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0x0d54c9b9 tegra20_das_connect_dap_to_dac +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xb52cfca4 tegra20_das_connect_dac_to_dap +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra20-das 0xbced7431 tegra20_das_connect_dap_to_dap +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 0x55fae15c edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-sdma 0xb2f0535d sdma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/ti/snd-soc-ti-udma 0xd1eec88c udma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00641561 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x08994e8f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x131d265a line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1bef52b2 line6_send_raw_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e204ac9 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7ce82ac0 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7dc2cfd5 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x81ffc3b9 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaadbea5e line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4cf306d line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xded30c0e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe44bd52a line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb61508f line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xeb681f9a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf191b846 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc474204 line6_read_data +EXPORT_SYMBOL_GPL vmlinux 0x00078401 nvdimm_in_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x0030b613 tpm1_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x004cae2c component_add_typed +EXPORT_SYMBOL_GPL vmlinux 0x00513f58 get_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x005399b8 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x00565f18 pernet_ops_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x005a59da usb_phy_set_charger_current +EXPORT_SYMBOL_GPL vmlinux 0x005f18a6 add_wait_queue_priority +EXPORT_SYMBOL_GPL vmlinux 0x00639a69 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00781b85 spi_mem_dirmap_write +EXPORT_SYMBOL_GPL vmlinux 0x007f2891 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x008359b0 crypto_type_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x008ac56a of_css +EXPORT_SYMBOL_GPL vmlinux 0x008cc0ab phy_put +EXPORT_SYMBOL_GPL vmlinux 0x009da2e1 fsl_mc_bus_dpdbg_type +EXPORT_SYMBOL_GPL vmlinux 0x00af81f2 fuse_conn_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00b1eeab regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x00c45b66 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x00c497fb rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x00c61ebc sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x00ce685c usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x00d069a1 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00d4c500 usb_decode_interval +EXPORT_SYMBOL_GPL vmlinux 0x00d75525 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x00dbad3b dma_max_mapping_size +EXPORT_SYMBOL_GPL vmlinux 0x00df9837 ioasid_register_allocator +EXPORT_SYMBOL_GPL vmlinux 0x00eb2e16 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x00f32f06 tty_kclose +EXPORT_SYMBOL_GPL vmlinux 0x00f46754 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00fd7ea9 blk_mq_update_nr_hw_queues +EXPORT_SYMBOL_GPL vmlinux 0x01212566 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x0124d600 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x012e730e apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0x013948f1 topology_set_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x014e8186 cpu_scale +EXPORT_SYMBOL_GPL vmlinux 0x01541fb0 irq_domain_translate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x015ea9f4 fscrypt_symlink_getattr +EXPORT_SYMBOL_GPL vmlinux 0x015fa901 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x016afa87 extcon_set_property +EXPORT_SYMBOL_GPL vmlinux 0x017fbe14 fwnode_get_name +EXPORT_SYMBOL_GPL vmlinux 0x01866a57 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x018f9060 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0196a00e dev_pm_opp_find_level_ceil +EXPORT_SYMBOL_GPL vmlinux 0x01a0cb78 property_entries_free +EXPORT_SYMBOL_GPL vmlinux 0x01c08d03 devm_clk_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cac9f7 dev_pm_opp_find_level_exact +EXPORT_SYMBOL_GPL vmlinux 0x01d9eddf rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x01db000b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ecced5 l3mdev_ifindex_lookup_by_table_id +EXPORT_SYMBOL_GPL vmlinux 0x01f70d80 edac_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0x01f92beb crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x01fa20ce scsi_internal_device_block_nowait +EXPORT_SYMBOL_GPL vmlinux 0x02017436 devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x0207a6c6 reset_control_bulk_acquire +EXPORT_SYMBOL_GPL vmlinux 0x0222a782 nvdimm_flush +EXPORT_SYMBOL_GPL vmlinux 0x022a244e raw_v6_match +EXPORT_SYMBOL_GPL vmlinux 0x02394899 play_idle_precise +EXPORT_SYMBOL_GPL vmlinux 0x02399f3d kvm_io_bus_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0245be25 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x02495b8f gnttab_alloc_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0x024d13dd request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x024f9b22 vring_create_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x025088fd netdev_walk_all_upper_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0250edf8 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x0253dad3 folio_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x02826b74 trace_get_event_file +EXPORT_SYMBOL_GPL vmlinux 0x02a17828 pci_epc_get +EXPORT_SYMBOL_GPL vmlinux 0x02bd65e9 pci_epc_unmap_addr +EXPORT_SYMBOL_GPL vmlinux 0x02c5c501 power_supply_find_ocv2cap_table +EXPORT_SYMBOL_GPL vmlinux 0x02d31ec8 irq_domain_alloc_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x02d7f48b rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x02f56006 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x02fc0126 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x0300d1c8 blk_mq_virtio_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x03014f73 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x0312b3b0 reset_controller_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0317ae35 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x03290fa9 perf_aux_output_skip +EXPORT_SYMBOL_GPL vmlinux 0x032f2fe7 ahci_platform_disable_phys +EXPORT_SYMBOL_GPL vmlinux 0x03340df7 irq_chip_mask_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x03403ff2 dev_pm_opp_get_of_node +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03589d46 hisi_reset_init +EXPORT_SYMBOL_GPL vmlinux 0x036de383 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x036ecd6d ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x036ef0d8 vp_modern_generation +EXPORT_SYMBOL_GPL vmlinux 0x03701a42 zynqmp_pm_pinctrl_set_function +EXPORT_SYMBOL_GPL vmlinux 0x0372f17c device_match_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x038afa97 virtqueue_get_desc_addr +EXPORT_SYMBOL_GPL vmlinux 0x039107c4 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x03952887 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x03c12dfe cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x03c48cbb spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x03ce7234 sched_smt_present +EXPORT_SYMBOL_GPL vmlinux 0x03d03399 mptcp_subflow_init_cookie_req +EXPORT_SYMBOL_GPL vmlinux 0x03fcad88 dma_free_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x040055aa i2c_new_smbus_alert_device +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040d11a4 devlink_port_attrs_pci_vf_set +EXPORT_SYMBOL_GPL vmlinux 0x041219fe of_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0412332f rcar_rst_set_rproc_boot_addr +EXPORT_SYMBOL_GPL vmlinux 0x041e8c86 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0430507c usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x04335022 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0437b08e gpiod_get_array_value +EXPORT_SYMBOL_GPL vmlinux 0x043f6db5 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x044c3316 call_switchdev_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x0450faf3 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0469695d bgmac_phy_connect_direct +EXPORT_SYMBOL_GPL vmlinux 0x046f359e of_overlay_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0472cf3b register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x04753b3f driver_find +EXPORT_SYMBOL_GPL vmlinux 0x04766502 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x047fef21 i2c_new_scanned_device +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048d446e devlink_dpipe_headers_register +EXPORT_SYMBOL_GPL vmlinux 0x0494cf7a dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x049e5156 gnttab_try_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x04bd6c8d iommu_device_sysfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x04bf0092 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x04c41c60 devlink_flash_update_status_notify +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c8aebf console_verbose +EXPORT_SYMBOL_GPL vmlinux 0x04d0f6ec __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x04d7bd17 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x04de1e4b vp_modern_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ec4e7e pci_aer_clear_nonfatal_status +EXPORT_SYMBOL_GPL vmlinux 0x04f01d68 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0503218c crypto_stats_decompress +EXPORT_SYMBOL_GPL vmlinux 0x0513de69 int_active_memcg +EXPORT_SYMBOL_GPL vmlinux 0x05183128 devm_mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x051a0bc1 stack_depot_fetch +EXPORT_SYMBOL_GPL vmlinux 0x052348c8 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x0525843e dev_pm_opp_set_opp +EXPORT_SYMBOL_GPL vmlinux 0x052b4013 register_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x052c9aed ktime_get_real_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x053afc12 mtk_paris_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x053b0952 devm_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x053d738a __SCK__tp_func_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x0549d023 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x055c14f9 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x05610897 of_changeset_destroy +EXPORT_SYMBOL_GPL vmlinux 0x05641313 imx_clk_hw_sscg_pll +EXPORT_SYMBOL_GPL vmlinux 0x057eefed sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x05883efb __traceiter_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x0589bc80 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x058c6377 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x058f9366 apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x05bd1734 icc_node_del +EXPORT_SYMBOL_GPL vmlinux 0x05bda9a9 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05da6422 regmap_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x05e13407 regmap_noinc_write +EXPORT_SYMBOL_GPL vmlinux 0x05e93316 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x05fb6def phy_select_page +EXPORT_SYMBOL_GPL vmlinux 0x06055a23 __tracepoint_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x061336ae blocking_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x06209f49 phy_lookup_setting +EXPORT_SYMBOL_GPL vmlinux 0x06226de2 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06325f07 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x06363679 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x063d2af6 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x063e9296 rpi_firmware_put +EXPORT_SYMBOL_GPL vmlinux 0x063f64bc devlink_dpipe_action_put +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064e7c9d gpiod_set_config +EXPORT_SYMBOL_GPL vmlinux 0x065024e3 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x065a599a xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x065e5df9 hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x066ef549 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x066f5f89 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x067d2eb1 spi_mem_adjust_op_size +EXPORT_SYMBOL_GPL vmlinux 0x0682187e fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x06917b77 devm_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x069cfeec ping_close +EXPORT_SYMBOL_GPL vmlinux 0x069d2505 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x06af5da5 cros_ec_check_features +EXPORT_SYMBOL_GPL vmlinux 0x06b970a5 zynqmp_pm_ospi_mux_select +EXPORT_SYMBOL_GPL vmlinux 0x06cbf592 dpcon_close +EXPORT_SYMBOL_GPL vmlinux 0x06cc1341 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x06cca30b ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0x06cf5a4d sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x06e4433e sunxi_ccu_set_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x06e646a5 divider_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x06f03d68 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x070b89f8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0710dd9c power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x07133728 dev_pm_genpd_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x07242d92 put_dax +EXPORT_SYMBOL_GPL vmlinux 0x072a82eb blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x07472c1b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x07483e13 cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0x074f0ef0 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x074f98db synth_event_add_field +EXPORT_SYMBOL_GPL vmlinux 0x0751f577 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x07546b15 folio_wait_writeback +EXPORT_SYMBOL_GPL vmlinux 0x0756a31c register_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0x076356e7 sfp_may_have_phy +EXPORT_SYMBOL_GPL vmlinux 0x07692d5f rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x076a3cab PageHeadHuge +EXPORT_SYMBOL_GPL vmlinux 0x076f5bef crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x07705bac of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x0772b2a7 nvmem_cell_read_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0773d581 dev_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0x0777c6c6 clk_hw_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x077f6695 lochnagar_update_config +EXPORT_SYMBOL_GPL vmlinux 0x079a8365 devm_platform_get_and_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b6d46c devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x07be6905 net_inc_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x07beec59 sprd_pinctrl_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x07c6b612 nvmem_add_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x07cf8282 __traceiter_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x07d077d9 icc_nodes_remove +EXPORT_SYMBOL_GPL vmlinux 0x07d92e62 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x07da06a7 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x07e95635 disk_uevent +EXPORT_SYMBOL_GPL vmlinux 0x07f0a09e device_match_devt +EXPORT_SYMBOL_GPL vmlinux 0x080047e4 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x08135613 dax_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x081e098a kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x081e6377 __clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x08212a86 __device_reset +EXPORT_SYMBOL_GPL vmlinux 0x0825ab76 mptcp_token_get_sock +EXPORT_SYMBOL_GPL vmlinux 0x082a214c dma_resv_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x082a84bf sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x082ee2e5 __traceiter_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x083436f5 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0847a1df rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x0854b1f7 pinmux_generic_get_function +EXPORT_SYMBOL_GPL vmlinux 0x08576175 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x085bffd1 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x085c4a72 dev_pm_opp_get_suspend_opp_freq +EXPORT_SYMBOL_GPL vmlinux 0x086222fd skcipher_walk_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x08675080 dax_iomap_rw +EXPORT_SYMBOL_GPL vmlinux 0x086aacca crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x086fd3b8 nf_queue_entry_free +EXPORT_SYMBOL_GPL vmlinux 0x087858bb phy_validate +EXPORT_SYMBOL_GPL vmlinux 0x087a0ad0 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x087f5dc5 wm831x_of_match +EXPORT_SYMBOL_GPL vmlinux 0x0889014d vp_legacy_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x088ae769 fsl_mc_bus_dpci_type +EXPORT_SYMBOL_GPL vmlinux 0x08a88a9f __SCK__tp_func_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x08bd9c44 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x08c78cf7 offline_and_remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x08d1fc76 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08d85f15 wbc_account_cgroup_owner +EXPORT_SYMBOL_GPL vmlinux 0x08da9412 regulator_set_pull_down_regmap +EXPORT_SYMBOL_GPL vmlinux 0x08df9111 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x08f44779 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0903f811 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0907d14d blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x091b3f52 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0927636f input_class +EXPORT_SYMBOL_GPL vmlinux 0x09337cd0 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x093786cf synth_event_add_field_str +EXPORT_SYMBOL_GPL vmlinux 0x095e2605 kill_pid_usb_asyncio +EXPORT_SYMBOL_GPL vmlinux 0x0967d3e4 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x09817a17 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x098eb539 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x09ae2f52 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x09b53e14 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x09c8d6fa handle_fasteoi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x09cbe54b devlink_to_dev +EXPORT_SYMBOL_GPL vmlinux 0x09cc4d13 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x09d6fd7b dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x09d9b069 dm_copy_name_and_uuid +EXPORT_SYMBOL_GPL vmlinux 0x09ec8a27 __iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x09f32f4f cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x0a094b6a lwtunnel_build_state +EXPORT_SYMBOL_GPL vmlinux 0x0a10a923 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x0a10bbfb usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0a3e6a42 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0a463293 __tracepoint_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0x0a4c451b __traceiter_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x0a4d7582 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x0a52c511 hv_query_ext_cap +EXPORT_SYMBOL_GPL vmlinux 0x0a5e69b0 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0a6c094e nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0a6c4041 cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0x0a780fc0 skcipher_alloc_instance_simple +EXPORT_SYMBOL_GPL vmlinux 0x0a7ceb30 __tracepoint_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x0a83aa57 meson_clk_mpll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0a9a5712 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x0a9aa3a8 irq_domain_free_irqs_common +EXPORT_SYMBOL_GPL vmlinux 0x0a9cd97b serdev_device_set_flow_control +EXPORT_SYMBOL_GPL vmlinux 0x0aa40b16 blk_mq_queue_inflight +EXPORT_SYMBOL_GPL vmlinux 0x0aaab0cd devm_platform_get_irqs_affinity +EXPORT_SYMBOL_GPL vmlinux 0x0aafed76 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x0abbe27b subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0abbfa60 trace_add_event_call +EXPORT_SYMBOL_GPL vmlinux 0x0abc6be6 k3_ringacc_ring_is_full +EXPORT_SYMBOL_GPL vmlinux 0x0ac58501 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x0ad93981 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x0af2c381 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x0af40724 iommu_alloc_resv_region +EXPORT_SYMBOL_GPL vmlinux 0x0af5ef66 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0af813e2 crypto_alloc_kpp +EXPORT_SYMBOL_GPL vmlinux 0x0af9d8f0 mtk_clk_register_gates +EXPORT_SYMBOL_GPL vmlinux 0x0b0412bd devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0b045e39 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0d46c6 phy_led_trigger_change_speed +EXPORT_SYMBOL_GPL vmlinux 0x0b14ea3e gnttab_page_cache_shrink +EXPORT_SYMBOL_GPL vmlinux 0x0b1bb9f9 synchronize_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x0b236bc2 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b2db2d5 remove_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b3a3ed7 zynqmp_pm_fpga_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0b3fee01 acpi_set_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b690f04 k3_udma_glue_tx_get_txcq_id +EXPORT_SYMBOL_GPL vmlinux 0x0b8429c3 balloon_aops +EXPORT_SYMBOL_GPL vmlinux 0x0b957d89 vp_modern_set_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x0b9adc42 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x0ba04342 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bb028d4 hisi_clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0bbdc9b2 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x0bcea76e file_is_kvm +EXPORT_SYMBOL_GPL vmlinux 0x0bdcce6b gnttab_dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x0be8caed uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x0bea90dc sk_free_unlock_clone +EXPORT_SYMBOL_GPL vmlinux 0x0bf32478 __SCK__tp_func_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x0bf9c20b ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c1d48d3 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0c2c5802 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0c2facdf __traceiter_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x0c353e38 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x0c3e6241 k3_udma_glue_disable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x0c5d8801 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0c64efa9 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x0c6c682f blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x0c722d67 rockchip_pcie_enable_clocks +EXPORT_SYMBOL_GPL vmlinux 0x0c73143c pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0c765493 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c782c94 __traceiter_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x0c805ea3 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x0c88c1c3 pci_vpd_find_id_string +EXPORT_SYMBOL_GPL vmlinux 0x0c909c57 misc_cg_try_charge +EXPORT_SYMBOL_GPL vmlinux 0x0c9108b6 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0c965bc2 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x0cbe3ee2 software_node_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0cc9d36c iommu_group_claim_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0x0cca1524 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0ccf5275 zynqmp_pm_pinctrl_get_config +EXPORT_SYMBOL_GPL vmlinux 0x0cd20c2f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x0ce3dd73 bman_is_probed +EXPORT_SYMBOL_GPL vmlinux 0x0ceeb33e pci_epc_raise_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cfe9d35 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d01aaba dm_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x0d0da2d9 bio_end_io_acct_remapped +EXPORT_SYMBOL_GPL vmlinux 0x0d255744 gnttab_page_cache_put +EXPORT_SYMBOL_GPL vmlinux 0x0d3201ba register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0d3fa293 devm_regmap_del_irq_chip +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 0x0d5cecc6 ima_measure_critical_data +EXPORT_SYMBOL_GPL vmlinux 0x0d628910 pci_vpd_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d8fb205 of_pci_dma_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x0d930540 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x0d93bc2e devm_clk_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0da597a8 devm_hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0x0da60d7b xdp_rxq_info_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0daba8e8 tracing_snapshot_cond_enable +EXPORT_SYMBOL_GPL vmlinux 0x0db50471 led_set_brightness_nopm +EXPORT_SYMBOL_GPL vmlinux 0x0db849f6 dw_pcie_ep_init +EXPORT_SYMBOL_GPL vmlinux 0x0dbaaa3b led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x0dbf2865 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x0dc8a295 devlink_port_type_eth_set +EXPORT_SYMBOL_GPL vmlinux 0x0dcf6e8e ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0dd096f7 mptcp_token_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0dd4a74f clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x0dda7870 ftrace_free_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de30cc1 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e07fe19 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0e0c6a7d crypto_dh_encode_key +EXPORT_SYMBOL_GPL vmlinux 0x0e1194d5 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e2976b9 fscrypt_file_open +EXPORT_SYMBOL_GPL vmlinux 0x0e2e87d7 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x0e3b5f05 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0e3be51e tegra_bpmp_transfer +EXPORT_SYMBOL_GPL vmlinux 0x0e42b81c fscrypt_dio_supported +EXPORT_SYMBOL_GPL vmlinux 0x0e5cc9d7 xdp_unreg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x0e657d0f fuse_free_conn +EXPORT_SYMBOL_GPL vmlinux 0x0e69e784 bgmac_enet_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e6b79af static_key_disable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x0e7e5e50 cpufreq_driver_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x0e8e53a8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0e94b65e pci_epc_mem_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e968f9f misc_cg_uncharge +EXPORT_SYMBOL_GPL vmlinux 0x0e9ec35a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0ea4e585 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0ea5cbce xen_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x0ebb03a4 devlink_trap_groups_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ebc1e0f nf_route +EXPORT_SYMBOL_GPL vmlinux 0x0ec096b0 hv_read_reference_counter +EXPORT_SYMBOL_GPL vmlinux 0x0ed3eb00 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0edacfa2 sk_msg_is_readable +EXPORT_SYMBOL_GPL vmlinux 0x0edfe55a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ee681fb dax_writeback_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x0ef7e7a3 __phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x0f180070 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x0f18a7ab devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0f1f0ce3 perf_event_pause +EXPORT_SYMBOL_GPL vmlinux 0x0f2d324b posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x0f4542b5 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x0f51dba4 extcon_get_state +EXPORT_SYMBOL_GPL vmlinux 0x0f550a48 rio_pw_enable +EXPORT_SYMBOL_GPL vmlinux 0x0f55a119 of_property_read_u64_index +EXPORT_SYMBOL_GPL vmlinux 0x0f67f52b mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0f69f4f2 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x0f72ada1 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x0f7ca236 dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x0f8cf397 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x0f902e57 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f99e2dc ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x0fa3869f clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x0faa2c9a __tracepoint_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0fb96ff2 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0fbb7344 memremap_compat_align +EXPORT_SYMBOL_GPL vmlinux 0x0fbc0c0e xas_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fd4610e kmem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0x0fd588c1 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0feff16a xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x0ff63ccf skcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0ffc01ff device_set_of_node_from_dev +EXPORT_SYMBOL_GPL vmlinux 0x100e0063 fsverity_verify_page +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10144689 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1015499a rcu_read_unlock_trace_special +EXPORT_SYMBOL_GPL vmlinux 0x101865d2 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x102fcacc __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x10537ba0 fsnotify_alloc_group +EXPORT_SYMBOL_GPL vmlinux 0x106611e7 devm_platform_ioremap_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x107690af mptcp_pm_get_add_addr_signal_max +EXPORT_SYMBOL_GPL vmlinux 0x108a0acd bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x108fdabd devm_ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x109350c7 nvdimm_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x109dc83a rockchip_pcie_parse_dt +EXPORT_SYMBOL_GPL vmlinux 0x10a2acb8 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x10ba3796 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x10c41eae pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x10ca4c6e pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x10cc95b0 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x10cd60ce __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x10d701b2 bgmac_enet_remove +EXPORT_SYMBOL_GPL vmlinux 0x10d9f317 stack_depot_init +EXPORT_SYMBOL_GPL vmlinux 0x10e4befe regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x10e86b44 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fee4e5 dw_pcie_write_dbi +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110dcc45 led_blink_set_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x11167d61 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x11230d5c disk_force_media_change +EXPORT_SYMBOL_GPL vmlinux 0x1148af8f sk_msg_zerocopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x115859ec rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x115cd37c alloc_dax +EXPORT_SYMBOL_GPL vmlinux 0x1176f942 crypto_create_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0x118519c3 pm_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x11866787 kstrdup_quotable_cmdline +EXPORT_SYMBOL_GPL vmlinux 0x11bc0f7f xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x11bcad78 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x11c9fc1e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x11cd9f88 md_submit_discard_bio +EXPORT_SYMBOL_GPL vmlinux 0x11d1c5ca xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x11df0e75 devlink_fmsg_binary_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x11e06ee9 badrange_init +EXPORT_SYMBOL_GPL vmlinux 0x11fab13c do_tcp_sendpages +EXPORT_SYMBOL_GPL vmlinux 0x120b1190 do_xdp_generic +EXPORT_SYMBOL_GPL vmlinux 0x121a70fa pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121fd572 usb_get_maximum_ssp_rate +EXPORT_SYMBOL_GPL vmlinux 0x12219a63 component_release_of +EXPORT_SYMBOL_GPL vmlinux 0x122391c8 ethnl_cable_test_amplitude +EXPORT_SYMBOL_GPL vmlinux 0x1234e483 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x1234ffa1 cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x123e1b4e clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1241182f xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x124899e1 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x1252f35d blk_queue_write_cache +EXPORT_SYMBOL_GPL vmlinux 0x12537dae __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x125521d9 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1255c73d __traceiter_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0x125dc6df component_compare_of +EXPORT_SYMBOL_GPL vmlinux 0x12622ec3 blk_mq_wait_quiesce_done +EXPORT_SYMBOL_GPL vmlinux 0x126327d0 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128322ce acpi_storage_d3 +EXPORT_SYMBOL_GPL vmlinux 0x128dcf6d devm_reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x129334ae sfp_parse_support +EXPORT_SYMBOL_GPL vmlinux 0x12a02033 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x12a18db4 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x12a8f9d6 fib6_new_table +EXPORT_SYMBOL_GPL vmlinux 0x12b3b5de __devm_spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x12b83ed5 icc_enable +EXPORT_SYMBOL_GPL vmlinux 0x12b98b29 bpf_trace_run7 +EXPORT_SYMBOL_GPL vmlinux 0x12c16d68 wwan_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x12c64f6b iomap_swapfile_activate +EXPORT_SYMBOL_GPL vmlinux 0x12c87211 soc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x12ca80cc device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x12e3e65c irq_gc_mask_disable_reg +EXPORT_SYMBOL_GPL vmlinux 0x12e88337 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x12e97c46 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x12ee1173 memory_group_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f30f93 free_fib_info +EXPORT_SYMBOL_GPL vmlinux 0x1302807a __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x13031792 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x13090724 add_vmfork_randomness +EXPORT_SYMBOL_GPL vmlinux 0x130a467c usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1312425e regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x131530c7 nvdimm_has_flush +EXPORT_SYMBOL_GPL vmlinux 0x1315a667 pin_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0x13177898 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x131e855b phy_configure +EXPORT_SYMBOL_GPL vmlinux 0x131f31a4 scsi_internal_device_unblock_nowait +EXPORT_SYMBOL_GPL vmlinux 0x13239376 timer_unstable_counter_workaround +EXPORT_SYMBOL_GPL vmlinux 0x1326b03f of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x132b395d gpiod_get_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x13349f17 unmap_mapping_pages +EXPORT_SYMBOL_GPL vmlinux 0x1338eb13 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x133969d7 __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x13424f76 fsl_mc_resource_free +EXPORT_SYMBOL_GPL vmlinux 0x1349eeb2 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x135dbf88 devres_find +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 0x13839040 tegra_bpmp_put +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138d08dd thermal_zone_of_get_sensor_id +EXPORT_SYMBOL_GPL vmlinux 0x138e0957 dax_write_cache_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1393e724 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1393fafe extcon_set_state_sync +EXPORT_SYMBOL_GPL vmlinux 0x13984b3e hwspin_lock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x139a9f45 kvm_destroy_vcpus +EXPORT_SYMBOL_GPL vmlinux 0x13aa77ec crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x13bd623a pinctrl_generic_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d939ed virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x13db1eb8 k3_udma_glue_rx_cppi5_to_dma_addr +EXPORT_SYMBOL_GPL vmlinux 0x13dc01f4 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x13ed8784 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x13f96ba1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x13fab921 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1403ad09 cpufreq_add_update_util_hook +EXPORT_SYMBOL_GPL vmlinux 0x140911a3 nvdimm_cmd_mask +EXPORT_SYMBOL_GPL vmlinux 0x140b16a7 fsnotify_add_mark +EXPORT_SYMBOL_GPL vmlinux 0x141f38bf ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x14399610 securityfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x144fba8a em_dev_register_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x1456762b k3_ringacc_ring_get_free +EXPORT_SYMBOL_GPL vmlinux 0x145b9be1 __serdev_device_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x145fa83b regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x146cc88f bpf_master_redirect_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x146effdd ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x148fd794 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x14a098fc tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x14a92bdb iommu_unmap_fast +EXPORT_SYMBOL_GPL vmlinux 0x14b20cc6 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x14c6cf11 acpi_fetch_acpi_dev +EXPORT_SYMBOL_GPL vmlinux 0x14cb0fee blk_revalidate_disk_zones +EXPORT_SYMBOL_GPL vmlinux 0x14d9855a strp_done +EXPORT_SYMBOL_GPL vmlinux 0x14ddd488 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x14ec4fdb evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x1501ead8 __traceiter_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x15021b4a xa_delete_node +EXPORT_SYMBOL_GPL vmlinux 0x1505dc0c fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x15297a6a rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x152bd7f3 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x1539fb94 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x153b60a6 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x1548f78e sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x15510750 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x15510a89 devlink_fmsg_binary_put +EXPORT_SYMBOL_GPL vmlinux 0x155f9476 skb_send_sock_locked +EXPORT_SYMBOL_GPL vmlinux 0x15730f5e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x1578455e arm_cspmu_sysfs_event_show +EXPORT_SYMBOL_GPL vmlinux 0x15886f48 hte_disable_ts +EXPORT_SYMBOL_GPL vmlinux 0x158af85e device_link_add +EXPORT_SYMBOL_GPL vmlinux 0x158d2eb2 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x158e543e pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x159078fa usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x159c72ef pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x159d5a81 devlink_resource_occ_get_register +EXPORT_SYMBOL_GPL vmlinux 0x15a6eb0b gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x15ade1cc filter_irq_stacks +EXPORT_SYMBOL_GPL vmlinux 0x15c60a71 __tracepoint_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x15cfd474 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x15d6ed7f ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x15ea2648 hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x15eebd59 iomap_bmap +EXPORT_SYMBOL_GPL vmlinux 0x160738e5 __account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x16150452 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x161aed40 devlink_port_attrs_set +EXPORT_SYMBOL_GPL vmlinux 0x161c2824 gpiochip_get_desc +EXPORT_SYMBOL_GPL vmlinux 0x1629bf54 fscrypt_ioctl_get_nonce +EXPORT_SYMBOL_GPL vmlinux 0x1639785e tcpv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x16422a6e xdp_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x164807c5 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x16516798 osc_pc_lpi_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x1675abeb xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x167d430d devlink_dpipe_headers_unregister +EXPORT_SYMBOL_GPL vmlinux 0x167d7113 acpi_bus_register_early_device +EXPORT_SYMBOL_GPL vmlinux 0x1687ec20 tty_get_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x168b239e trace_array_put +EXPORT_SYMBOL_GPL vmlinux 0x168cce99 iommu_fwspec_add_ids +EXPORT_SYMBOL_GPL vmlinux 0x1690b503 usb_role_switch_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x16964a75 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x169de797 sk_msg_memcopy_from_iter +EXPORT_SYMBOL_GPL vmlinux 0x169fbe82 mctp_unregister_netdev +EXPORT_SYMBOL_GPL vmlinux 0x16a46eae mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x16d16035 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x16da1f88 devlink_fmsg_u32_put +EXPORT_SYMBOL_GPL vmlinux 0x16dfbf36 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x16ea0bed pci_iov_vf_id +EXPORT_SYMBOL_GPL vmlinux 0x16f15139 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x16f16f2d max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x170cc36c put_timespec64 +EXPORT_SYMBOL_GPL vmlinux 0x1720d76a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x17310258 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x1737d313 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x173d7712 irq_chip_set_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x1742bf2a fsnotify_init_mark +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 0x1765bae4 gpiochip_irqchip_add_domain +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17addb99 crypto_stats_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x17b8d99b thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x17cad68b __pci_epf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x17cb2914 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x17d35297 nvdimm_setup_pfn +EXPORT_SYMBOL_GPL vmlinux 0x17d3db9e dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x17dcfd05 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x17e01f11 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0x17e2f032 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x17f3522f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x17f78442 pwm_capture +EXPORT_SYMBOL_GPL vmlinux 0x17ff28a8 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x18008c59 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x1802462f of_changeset_action +EXPORT_SYMBOL_GPL vmlinux 0x180ad51d k3_udma_glue_request_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x180fde82 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x1816d045 bpf_trace_run8 +EXPORT_SYMBOL_GPL vmlinux 0x182656cc platform_has +EXPORT_SYMBOL_GPL vmlinux 0x183d5cd5 make_device_exclusive_range +EXPORT_SYMBOL_GPL vmlinux 0x18428692 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x18440944 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x184f2328 devm_nvdimm_memremap +EXPORT_SYMBOL_GPL vmlinux 0x1854d6af acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x185678be rtnl_get_net_ns_capable +EXPORT_SYMBOL_GPL vmlinux 0x18615d35 efivar_supports_writes +EXPORT_SYMBOL_GPL vmlinux 0x186b7384 serial8250_em485_start_tx +EXPORT_SYMBOL_GPL vmlinux 0x186c29e5 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x186c4099 phy_modify_mmd +EXPORT_SYMBOL_GPL vmlinux 0x18715353 k3_udma_glue_push_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x1875ac00 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x187665b2 fixed_phy_register_with_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x188d6cd1 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x188ef8c2 phy_10gbit_features +EXPORT_SYMBOL_GPL vmlinux 0x1896bf82 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x189b446a edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x189d3584 _proc_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x18a04008 fwnode_graph_get_endpoint_by_id +EXPORT_SYMBOL_GPL vmlinux 0x18b1551a imx_clk_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0x18bd471d auxiliary_find_device +EXPORT_SYMBOL_GPL vmlinux 0x18e37eac tpm_tis_resume +EXPORT_SYMBOL_GPL vmlinux 0x18e4f8aa swphy_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x18e67aa1 pci_iov_virtfn_devfn +EXPORT_SYMBOL_GPL vmlinux 0x18e8c440 arch_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x18f10f38 k3_udma_glue_enable_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x18f6629a crypto_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x18fb2caf cpus_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x19032d6d trace_handle_return +EXPORT_SYMBOL_GPL vmlinux 0x1904f932 meson_axg_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x1909d1de mmc_crypto_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x190f8abc pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x19141f52 nf_checksum_partial +EXPORT_SYMBOL_GPL vmlinux 0x191f13e9 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x1926028c zynqmp_pm_reset_assert +EXPORT_SYMBOL_GPL vmlinux 0x192af681 devm_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x19351102 msi_unlock_descs +EXPORT_SYMBOL_GPL vmlinux 0x193f7a77 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1944e39b raw_v6_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x194a0391 fscrypt_set_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x194a6f19 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x194a75f1 badblocks_store +EXPORT_SYMBOL_GPL vmlinux 0x194fbbbb edac_device_add_device +EXPORT_SYMBOL_GPL vmlinux 0x195faf09 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x19645b1c tegra210_clk_emc_attach +EXPORT_SYMBOL_GPL vmlinux 0x19724cf3 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x19769337 vp_legacy_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x1976a468 phy_start_machine +EXPORT_SYMBOL_GPL vmlinux 0x19776e38 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x19805d8c kthread_flush_worker +EXPORT_SYMBOL_GPL vmlinux 0x19821689 __tracepoint_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x1989bc50 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x19a25d19 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b621b1 extcon_set_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x19b9fca4 sk_msg_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19bdba19 genphy_c45_read_pma +EXPORT_SYMBOL_GPL vmlinux 0x19c20269 soc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19c56448 md_find_rdev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19e81304 btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x19edd064 blkg_rwstat_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a0dcc1e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x1a10c32b crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x1a146ec3 usb_ep_type_string +EXPORT_SYMBOL_GPL vmlinux 0x1a256e9d platform_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1a27841e dw_pcie_setup_rc +EXPORT_SYMBOL_GPL vmlinux 0x1a322ebf usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1a335611 iommu_device_link +EXPORT_SYMBOL_GPL vmlinux 0x1a5e9afe device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x1a648058 ethnl_cable_test_step +EXPORT_SYMBOL_GPL vmlinux 0x1a6a5d32 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1a6bf28f fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1a6d2be8 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a876574 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1a911c71 umd_unload_blob +EXPORT_SYMBOL_GPL vmlinux 0x1a91b1b4 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x1aa5a4fb devm_rtc_nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0x1aba0148 serdev_device_close +EXPORT_SYMBOL_GPL vmlinux 0x1abd71dc debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1acd18c8 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1ad16a7d dma_async_device_channel_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1adf5079 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x1ae274ac __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x1ae98018 bpf_trace_run1 +EXPORT_SYMBOL_GPL vmlinux 0x1af267f8 int_pow +EXPORT_SYMBOL_GPL vmlinux 0x1b18979b ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1b1f009c meson_a1_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0x1b203369 iomap_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x1b297b1e sbitmap_queue_recalculate_wake_batch +EXPORT_SYMBOL_GPL vmlinux 0x1b2cb22a fsverity_cleanup_inode +EXPORT_SYMBOL_GPL vmlinux 0x1b3b1182 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x1b5059ce ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x1b655954 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x1b6792fb _copy_from_iter_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x1b734e0d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b892d1a irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x1b92e41d inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x1b959ac4 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b9c6919 wbc_detach_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ba2f6b8 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x1bb35b44 __hwspin_trylock +EXPORT_SYMBOL_GPL vmlinux 0x1bc40a8d gpmc_omap_get_nand_ops +EXPORT_SYMBOL_GPL vmlinux 0x1bc4fb97 irq_chip_eoi_parent +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc64087 xas_split +EXPORT_SYMBOL_GPL vmlinux 0x1be29f62 dm_start_time_ns_from_clone +EXPORT_SYMBOL_GPL vmlinux 0x1bee4974 sg_alloc_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x1bf10a12 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1c015d37 nvmem_device_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x1c0bc752 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x1c179579 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1c54fe34 mmu_interval_read_begin +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 0x1c6139ad do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c66904c dev_pm_opp_put_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x1c78ac3b devl_assert_locked +EXPORT_SYMBOL_GPL vmlinux 0x1c798085 mmu_notifier_put +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c83958e usb_acpi_port_lpm_incapable +EXPORT_SYMBOL_GPL vmlinux 0x1c84e39c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c89fb22 zynqmp_pm_clock_setparent +EXPORT_SYMBOL_GPL vmlinux 0x1c932377 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x1ca3aa97 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x1ca5c798 mmu_notifier_get_locked +EXPORT_SYMBOL_GPL vmlinux 0x1caca5b4 generic_device_group +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 0x1cc902a5 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x1cdc1c5c md_bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x1ceb8992 fsl_mc_bus_dprc_type +EXPORT_SYMBOL_GPL vmlinux 0x1cf53ae8 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1cff8eab sbitmap_init_node +EXPORT_SYMBOL_GPL vmlinux 0x1d08359e devm_register_restart_handler +EXPORT_SYMBOL_GPL vmlinux 0x1d0f0e84 dev_coredumpsg +EXPORT_SYMBOL_GPL vmlinux 0x1d14666d usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d235fc8 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x1d25cf89 fib6_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x1d382c4b dev_pm_genpd_resume +EXPORT_SYMBOL_GPL vmlinux 0x1d4be52f devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1d511d94 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1d6696b0 mtk_mutex_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d6d3315 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x1d74e723 pm_wakeup_dev_event +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d91d018 tcp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x1d9425ac gnttab_pages_set_private +EXPORT_SYMBOL_GPL vmlinux 0x1d94a218 dmi_memdev_handle +EXPORT_SYMBOL_GPL vmlinux 0x1d9aa32e __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1da9ee16 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x1dc16fc8 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1dcd54d2 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x1dd8e2f3 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x1de1df89 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x1de887ff zynqmp_pm_bootmode_write +EXPORT_SYMBOL_GPL vmlinux 0x1dea131c securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1dfa5dbd mpi_invm +EXPORT_SYMBOL_GPL vmlinux 0x1e0670c6 reset_control_release +EXPORT_SYMBOL_GPL vmlinux 0x1e096028 gpiochip_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e273199 acpi_device_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x1e293206 devm_spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x1e3bc77c xas_create_range +EXPORT_SYMBOL_GPL vmlinux 0x1e3f26c2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e424d61 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x1e4d876a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1e4e98c0 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x1e53f827 stack_depot_print +EXPORT_SYMBOL_GPL vmlinux 0x1e579208 device_phy_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1e5cd047 __get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x1e5f7659 tegra_bpmp_request_mrq +EXPORT_SYMBOL_GPL vmlinux 0x1e683366 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x1e69ae85 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1e70fcf1 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1e7121d3 __irq_resolve_mapping +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 0x1e991b39 kthread_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc719 freq_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1e9c590a usb_find_common_endpoints_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1ea80b4d crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x1eb2812b pcie_flr +EXPORT_SYMBOL_GPL vmlinux 0x1eb320b4 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x1eb61c2e __traceiter_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1eca7960 add_swap_extent +EXPORT_SYMBOL_GPL vmlinux 0x1ecaf417 platform_get_mem_or_io +EXPORT_SYMBOL_GPL vmlinux 0x1ed4d2eb percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x1ef17d9b devm_spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0x1ef20793 stop_core_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x1ef9405d dpcon_open +EXPORT_SYMBOL_GPL vmlinux 0x1efaa06f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x1f1cc011 zynqmp_pm_get_chipid +EXPORT_SYMBOL_GPL vmlinux 0x1f29ec11 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x1f332c0c blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x1f38a4f6 mpi_set_highbit +EXPORT_SYMBOL_GPL vmlinux 0x1f449588 mctrl_gpio_disable_ms +EXPORT_SYMBOL_GPL vmlinux 0x1f563160 bpf_offload_dev_priv +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8a4315 set_selection_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1f9a2b53 zynqmp_pm_clock_enable +EXPORT_SYMBOL_GPL vmlinux 0x1fa0c9b3 pci_sriov_configure_simple +EXPORT_SYMBOL_GPL vmlinux 0x1fa1d95c sha256_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x1fc9f309 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x1fccb562 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x1fcd7e9f init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x1fd4f457 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x1fe4e811 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1fe6e504 gpiod_add_hogs +EXPORT_SYMBOL_GPL vmlinux 0x1fee7136 trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x1ff213dd tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ffa3702 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2002fd5e netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x20056d8d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x2006b472 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x2009e400 devlink_info_board_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2026509c tegra_bpmp_mrq_is_supported +EXPORT_SYMBOL_GPL vmlinux 0x202d4ed6 nvmem_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x20356ccd ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x203a8fed usb_of_get_interface_node +EXPORT_SYMBOL_GPL vmlinux 0x204f2c5c gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x20619b9b devlink_param_register +EXPORT_SYMBOL_GPL vmlinux 0x2062ecc7 dev_pm_genpd_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2073d307 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x20835a9f __xdp_release_frame +EXPORT_SYMBOL_GPL vmlinux 0x2083fbb2 dw_pcie_ep_reset_bar +EXPORT_SYMBOL_GPL vmlinux 0x20978fb9 idr_find +EXPORT_SYMBOL_GPL vmlinux 0x20a8d948 tegra_bpmp_transfer_atomic +EXPORT_SYMBOL_GPL vmlinux 0x20ad8177 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x20b10d58 fsnotify_find_mark +EXPORT_SYMBOL_GPL vmlinux 0x20b7b7df blk_crypto_reprogram_all_keys +EXPORT_SYMBOL_GPL vmlinux 0x20bf4f83 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x20d36c71 pci_ecam_map_bus +EXPORT_SYMBOL_GPL vmlinux 0x20e5ebd3 l3mdev_table_lookup_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20f3249a sock_diag_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20fc44ac serdev_acpi_get_uart_resource +EXPORT_SYMBOL_GPL vmlinux 0x210e29a7 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x2117b3da transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x212fd140 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x213ecd59 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x213f9881 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x2140294a ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x2142095d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x2154022f dev_pm_opp_put +EXPORT_SYMBOL_GPL vmlinux 0x21577bc0 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x21648639 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x2165b339 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x216bf830 sbitmap_queue_wake_all +EXPORT_SYMBOL_GPL vmlinux 0x216de4e1 rcu_get_gp_kthreads_prio +EXPORT_SYMBOL_GPL vmlinux 0x2176e42a hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x21779604 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x218a3ec7 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x21927b6e pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x21a1e7d2 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21e42aeb pci_epc_start +EXPORT_SYMBOL_GPL vmlinux 0x21f4aaaf pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x21f6c1ac genphy_c45_pma_setup_forced +EXPORT_SYMBOL_GPL vmlinux 0x2200061c __tracepoint_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x220ce70c kvm_arm_hyp_service_available +EXPORT_SYMBOL_GPL vmlinux 0x2211a4c0 blk_op_str +EXPORT_SYMBOL_GPL vmlinux 0x221e3ac2 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x221eab6d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x22208ced regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x223db758 pinctrl_generic_get_group_count +EXPORT_SYMBOL_GPL vmlinux 0x2248c6a3 fsverity_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x224c24c1 dst_cache_get_ip4 +EXPORT_SYMBOL_GPL vmlinux 0x22554f59 devm_regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x22725d06 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x2276c3be gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x227b8e64 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x2283a30b crypto_stats_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x22894be7 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x228eadf9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x22932f37 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2298ac04 of_reset_control_array_get +EXPORT_SYMBOL_GPL vmlinux 0x229eb7d4 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0x22aaff24 pci_dev_trylock +EXPORT_SYMBOL_GPL vmlinux 0x22ab7517 devl_unlock +EXPORT_SYMBOL_GPL vmlinux 0x22caa141 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x22d60537 tcf_frag_xmit_count +EXPORT_SYMBOL_GPL vmlinux 0x22d8db5b gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x22d9409b iomap_sort_ioends +EXPORT_SYMBOL_GPL vmlinux 0x22d97a37 regulator_desc_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x22ddccd7 of_platform_device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x22ec5205 cpu_latency_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x22effb83 of_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x22f31abb add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x22f3e9b3 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x22f4a052 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x22fd08ba cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x2323267c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x23412816 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x2345297b of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x234cf416 devlink_fmsg_string_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x234ee443 pinctrl_enable +EXPORT_SYMBOL_GPL vmlinux 0x2351e2e9 mmc_sanitize +EXPORT_SYMBOL_GPL vmlinux 0x23555907 __traceiter_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x236e9b8b skb_mpls_dec_ttl +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2387c452 devfreq_get_devfreq_by_node +EXPORT_SYMBOL_GPL vmlinux 0x23947535 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23990de7 blk_crypto_register +EXPORT_SYMBOL_GPL vmlinux 0x239bbc08 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x23a2fbf1 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x23ac8797 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x23c009f0 devlink_params_register +EXPORT_SYMBOL_GPL vmlinux 0x23c81ea0 of_add_property +EXPORT_SYMBOL_GPL vmlinux 0x23d0b47c led_set_brightness +EXPORT_SYMBOL_GPL vmlinux 0x23f1a6a5 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x23f1bd3a imx_clk_hw_pfdv2 +EXPORT_SYMBOL_GPL vmlinux 0x23f51b41 mtk_pinconf_bias_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x23fa2c73 devm_gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x23ff4848 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x24204eb6 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x2421097b mpi_const +EXPORT_SYMBOL_GPL vmlinux 0x24413343 erst_read_record +EXPORT_SYMBOL_GPL vmlinux 0x2447396e cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x244a8d24 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x244e7d59 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x245c1a31 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2464da17 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x246bc25e devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2484e789 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2486c5d6 switchdev_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x248bc867 raw_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0x248e1473 kfree_strarray +EXPORT_SYMBOL_GPL vmlinux 0x24a735c6 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x24ad11db wakeup_sources_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24b2e442 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x24b95769 is_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x24c81a9c pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x24ccd467 l3mdev_master_upper_ifindex_by_index_rcu +EXPORT_SYMBOL_GPL vmlinux 0x24d8de9f device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24da0093 rcu_inkernel_boot_has_ended +EXPORT_SYMBOL_GPL vmlinux 0x24e740b1 fwnode_connection_find_match +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ee33b0 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f63dcf ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x24fadd0e iommu_device_sysfs_add +EXPORT_SYMBOL_GPL vmlinux 0x24fc50f4 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x25111248 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x25301bc6 arch_wb_cache_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2534c610 usb_hcd_setup_local_mem +EXPORT_SYMBOL_GPL vmlinux 0x2536d474 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x256263be scsi_check_sense +EXPORT_SYMBOL_GPL vmlinux 0x2574da11 zynqmp_pm_write_pggs +EXPORT_SYMBOL_GPL vmlinux 0x25913615 irq_domain_create_legacy +EXPORT_SYMBOL_GPL vmlinux 0x2592fc6c console_printk +EXPORT_SYMBOL_GPL vmlinux 0x2597b9e4 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x259e3800 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x25a6979e devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x25a82207 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x25b1a7d7 tpm_chip_start +EXPORT_SYMBOL_GPL vmlinux 0x25ba1ea1 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x25bbfa9a security_kernel_load_data +EXPORT_SYMBOL_GPL vmlinux 0x25bf89b6 sk_msg_free +EXPORT_SYMBOL_GPL vmlinux 0x25c080cf ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x25c81a36 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x25cb14c0 ethnl_cable_test_result +EXPORT_SYMBOL_GPL vmlinux 0x25e642bf ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x25f43d04 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x260470ea led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x260a5019 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x26183b99 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265bbef9 kexec_crash_loaded +EXPORT_SYMBOL_GPL vmlinux 0x266581f2 report_iommu_fault +EXPORT_SYMBOL_GPL vmlinux 0x266a4b08 tasklet_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2670c72d akcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2673f198 acpi_dev_ready_for_enumeration +EXPORT_SYMBOL_GPL vmlinux 0x26779ebe devl_port_register +EXPORT_SYMBOL_GPL vmlinux 0x267aa3af mmc_cmdq_disable +EXPORT_SYMBOL_GPL vmlinux 0x267cd971 l3mdev_table_lookup_register +EXPORT_SYMBOL_GPL vmlinux 0x267df662 smp_call_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x267f5ce8 gnttab_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0x268cc16b __folio_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x26979ae2 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x26a93eb2 verify_pkcs7_signature +EXPORT_SYMBOL_GPL vmlinux 0x26ab4755 put_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26cb343e mtk_build_eint +EXPORT_SYMBOL_GPL vmlinux 0x26d96e6a to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x26de3838 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x26e2fd95 irq_gc_set_wake +EXPORT_SYMBOL_GPL vmlinux 0x26e49e27 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x26e9ac9e serdev_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x26ec9d4e devm_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0x26ed2186 register_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x270533d4 l3mdev_link_scope_lookup +EXPORT_SYMBOL_GPL vmlinux 0x271e9965 dev_pm_opp_get_max_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0x272414b5 hrtimer_sleeper_start_expires +EXPORT_SYMBOL_GPL vmlinux 0x27248feb pci_ats_supported +EXPORT_SYMBOL_GPL vmlinux 0x272e9d77 hisi_reset_exit +EXPORT_SYMBOL_GPL vmlinux 0x27320de4 led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x274dd1a3 sg_free_table_chained +EXPORT_SYMBOL_GPL vmlinux 0x27682854 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x276d17c6 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2773c485 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x27746464 perf_event_update_userpage +EXPORT_SYMBOL_GPL vmlinux 0x277e7f74 usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x277ea0d4 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x27804c9a folio_wait_stable +EXPORT_SYMBOL_GPL vmlinux 0x27839605 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2789a5f0 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x279c6b62 devm_clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x27b4ccba phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x27c00556 __reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x27c1c1be sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x27c3dc34 switchdev_handle_port_obj_add_foreign +EXPORT_SYMBOL_GPL vmlinux 0x27dba285 __irq_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0x27dc9471 __tracepoint_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x27e35dad iomap_migrate_page +EXPORT_SYMBOL_GPL vmlinux 0x27e7c5a5 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28097df5 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x280c3c69 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x2817f7fd cppc_get_desired_perf +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28310bcd kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x28501224 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x285da550 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2864abc9 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x286cc647 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x286f6ae7 gpiod_set_consumer_name +EXPORT_SYMBOL_GPL vmlinux 0x28773a97 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2882d40e usb_role_switch_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2892c20a uart_try_toggle_sysrq +EXPORT_SYMBOL_GPL vmlinux 0x2892e750 sysfs_unmerge_group +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 0x28c21737 irq_chip_disable_parent +EXPORT_SYMBOL_GPL vmlinux 0x28cf75ef dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x28e80aa0 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x28e88e09 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x28ea159c tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28ebebaf regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x28f169dd __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x28fd5b59 dev_pm_genpd_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x29106283 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x291876f3 mpi_ec_get_affine +EXPORT_SYMBOL_GPL vmlinux 0x2951a0f7 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x2953a8e7 fib_add_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x295b982a hisi_clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x2964b141 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x296b372b kill_device +EXPORT_SYMBOL_GPL vmlinux 0x296e22e7 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x296e5ccc cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x29707ae7 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x297e4c83 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x29834ba2 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x29957a61 usb_wakeup_enabled_descendants +EXPORT_SYMBOL_GPL vmlinux 0x29af8765 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x29b4d2a3 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x29b7dba6 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x29d3ecc4 pinctrl_count_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x29d47bf2 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x29d76547 k3_udma_glue_tdown_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x29dedf33 fib_nl_newrule +EXPORT_SYMBOL_GPL vmlinux 0x29e0f957 mtk_pinconf_bias_get_combo +EXPORT_SYMBOL_GPL vmlinux 0x29e53b16 spi_mem_driver_register_with_owner +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a105f4e power_supply_get_property_from_supplier +EXPORT_SYMBOL_GPL vmlinux 0x2a17c83e regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x2a37ea11 imx_clk_hw_frac_pll +EXPORT_SYMBOL_GPL vmlinux 0x2a3a2f0f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2a4b4a21 dev_pm_opp_get_opp_table +EXPORT_SYMBOL_GPL vmlinux 0x2a54839e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2a56b69c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2a581a40 bpf_trace_run12 +EXPORT_SYMBOL_GPL vmlinux 0x2a5961f0 dw_pcie_wait_for_link +EXPORT_SYMBOL_GPL vmlinux 0x2a5ea9ef rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a62cb3a ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2a7316da __SCK__tp_func_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x2a797e31 sk_psock_init +EXPORT_SYMBOL_GPL vmlinux 0x2a7b230a security_kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x2a7cb3f4 fib4_rule_default +EXPORT_SYMBOL_GPL vmlinux 0x2a80790f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x2a976d1c dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x2a9b5aea bpf_trace_run10 +EXPORT_SYMBOL_GPL vmlinux 0x2aa878b7 i2c_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2aadad1a efi_capsule_update +EXPORT_SYMBOL_GPL vmlinux 0x2ab12974 dma_need_sync +EXPORT_SYMBOL_GPL vmlinux 0x2abb3410 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2abcc427 pm_wakeup_ws_event +EXPORT_SYMBOL_GPL vmlinux 0x2ae1689e zynqmp_pm_clock_getdivider +EXPORT_SYMBOL_GPL vmlinux 0x2afc1986 fib6_check_nexthop +EXPORT_SYMBOL_GPL vmlinux 0x2aff3813 device_match_any +EXPORT_SYMBOL_GPL vmlinux 0x2b087305 rt_mutex_lock_killable +EXPORT_SYMBOL_GPL vmlinux 0x2b0fe000 gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x2b1092e0 addrconf_prefix_rcv_add_addr +EXPORT_SYMBOL_GPL vmlinux 0x2b168222 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x2b20baf3 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x2b2af241 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x2b31c062 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2b358d64 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2b42c2fe dma_get_merge_boundary +EXPORT_SYMBOL_GPL vmlinux 0x2b4509dd devlink_health_reporter_state_update +EXPORT_SYMBOL_GPL vmlinux 0x2b5137ab ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x2b6150fb power_supply_temp2resist_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b6d960d synth_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x2b758d8f pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b76646e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x2b86f0fd zynqmp_pm_bootmode_read +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 0x2bb77949 i2c_handle_smbus_host_notify +EXPORT_SYMBOL_GPL vmlinux 0x2bbb6850 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2bc439d5 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2bcedab3 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x2bd109a5 devm_ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0x2bd4fabb gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x2bdd94cf ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2bdf5ab0 pm_wakeup_pending +EXPORT_SYMBOL_GPL vmlinux 0x2be26a7d irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2be4e855 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2c0b62bc crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x2c0cdbf8 devm_pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c186bd4 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c287633 devm_device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2c2b189f dpbp_close +EXPORT_SYMBOL_GPL vmlinux 0x2c2be1ad kvm_arch_ptp_get_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c31c726 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x2c36cc85 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x2c4faac0 tcp_sendmsg_locked +EXPORT_SYMBOL_GPL vmlinux 0x2c513bf4 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x2c56ea7d receive_fd +EXPORT_SYMBOL_GPL vmlinux 0x2c635527 arch_invalidate_pmem +EXPORT_SYMBOL_GPL vmlinux 0x2c63b930 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x2c66ac85 devlink_info_serial_number_put +EXPORT_SYMBOL_GPL vmlinux 0x2c679faa net_ns_get_ownership +EXPORT_SYMBOL_GPL vmlinux 0x2c6c7281 spi_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2c75d43e tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2c790d4a __tracepoint_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2c795691 pci_iomap_wc_range +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 0x2c965b2b dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cac6d4b gpiod_get_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2cae01ea mtk_pinconf_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0x2cb0559d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x2cc495c5 rpi_firmware_property_list +EXPORT_SYMBOL_GPL vmlinux 0x2cc9d064 sbitmap_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x2ce61f33 __SCK__tp_func_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0x2cf1b1a9 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x2d059634 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2d0684a9 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2d135cb5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d28d49b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x2d29c34b thermal_zone_get_offset +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 0x2d443dc9 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d48cb81 rio_unmap_outb_region +EXPORT_SYMBOL_GPL vmlinux 0x2d609547 dax_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x2d6aa0f0 arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x2d9450aa __traceiter_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0x2da80366 genphy_c45_pma_baset1_read_master_slave +EXPORT_SYMBOL_GPL vmlinux 0x2dae4034 fscrypt_show_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x2db1b994 crypto_unregister_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2db67d4a owl_sps_set_pg +EXPORT_SYMBOL_GPL vmlinux 0x2dcb746d set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x2dcd30a2 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x2dd8715b mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ddd5b55 devlink_is_reload_failed +EXPORT_SYMBOL_GPL vmlinux 0x2dfcfa81 pcie_aspm_capable +EXPORT_SYMBOL_GPL vmlinux 0x2dfeb4e6 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x2e028ae6 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x2e052ffd cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e08226d badrange_add +EXPORT_SYMBOL_GPL vmlinux 0x2e1c7dbc request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x2e1cb792 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2e1d020f serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2c2e9a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x2e431070 crypto_stats_rng_generate +EXPORT_SYMBOL_GPL vmlinux 0x2e4cfc8e __mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0x2e4ec762 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e60f4c2 perf_event_period +EXPORT_SYMBOL_GPL vmlinux 0x2e66298c __SCK__tp_func_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x2e826198 xhci_add_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x2e886544 meson_clk_cpu_dyndiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x2e9ec24d free_iova +EXPORT_SYMBOL_GPL vmlinux 0x2ea5eb15 ncsi_vlan_rx_add_vid +EXPORT_SYMBOL_GPL vmlinux 0x2eb02284 rio_alloc_net +EXPORT_SYMBOL_GPL vmlinux 0x2ebaacc6 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x2ebb19fd execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec159ed irq_chip_request_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ec70173 xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x2ed489ec gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2edcdb9e platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2edfba2d __traceiter_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x2ee7c52b btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x2ef3c167 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2f028d27 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f133368 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x2f18c860 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x2f1e2250 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2f1ea064 __SCK__tp_func_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0x2f25b4a7 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2f2c86e2 of_pwm_single_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2f2c95c4 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2f3cb3ed pin_get_name +EXPORT_SYMBOL_GPL vmlinux 0x2f4880df static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x2f54a87a crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f6e4d54 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2f76d234 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x2f85d22b skb_mpls_update_lse +EXPORT_SYMBOL_GPL vmlinux 0x2f9f8e91 __blk_req_zone_write_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2fa19a59 bd_prepare_to_claim +EXPORT_SYMBOL_GPL vmlinux 0x2fa20a26 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x2fac3c71 k3_ringacc_request_rings_pair +EXPORT_SYMBOL_GPL vmlinux 0x2fb39e4b ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x2fc1e0fe kmem_valid_obj +EXPORT_SYMBOL_GPL vmlinux 0x2fcfafe1 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x2fdf91be devm_mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2fe2f084 devm_tegra_memory_controller_get +EXPORT_SYMBOL_GPL vmlinux 0x2ff38201 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x30040384 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x301850bd ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x30187b4c devm_hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x3025eee0 tegra210_clk_emc_dll_update_setting +EXPORT_SYMBOL_GPL vmlinux 0x3026d86a of_i2c_get_board_info +EXPORT_SYMBOL_GPL vmlinux 0x3027959c nvdimm_clear_poison +EXPORT_SYMBOL_GPL vmlinux 0x30347ff4 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x30351294 k3_udma_glue_rx_flow_get_fdq_id +EXPORT_SYMBOL_GPL vmlinux 0x30492f73 crypto_register_acomp +EXPORT_SYMBOL_GPL vmlinux 0x304eb2c3 cpufreq_policy_transition_delay_us +EXPORT_SYMBOL_GPL vmlinux 0x30517720 spi_mem_poll_status +EXPORT_SYMBOL_GPL vmlinux 0x3061cfce ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x306f1f40 kvm_get_running_vcpu +EXPORT_SYMBOL_GPL vmlinux 0x308e52fd fscrypt_set_bio_crypt_ctx +EXPORT_SYMBOL_GPL vmlinux 0x309a35b9 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x30a62fc4 __clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x30a80898 vp_legacy_set_features +EXPORT_SYMBOL_GPL vmlinux 0x30be043d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x30cb1dd8 hwmon_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x30cd3596 icc_std_aggregate +EXPORT_SYMBOL_GPL vmlinux 0x30d94bbe rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x30e1ec25 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0x30ea569a fwnode_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x30f02c30 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x30f4dd6a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x30f58195 pwm_apply_state +EXPORT_SYMBOL_GPL vmlinux 0x31019477 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x310851b3 tpm_chip_stop +EXPORT_SYMBOL_GPL vmlinux 0x310d0b34 access_process_vm +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x31148cc3 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x3116a045 serdev_controller_add +EXPORT_SYMBOL_GPL vmlinux 0x311c2e05 regulator_set_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x311c6da4 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313a11be mtk_pinconf_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x313ae415 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x313ea5fd ipi_send_single +EXPORT_SYMBOL_GPL vmlinux 0x3157939b devm_pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0x3158c2b5 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x3162b3b2 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x31661807 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x3168b2ab platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x317ec130 tc3589x_set_bits +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 0x319ff9f9 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x31a95e8b ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x31aaf746 regulator_get_error_flags +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c90b61 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x31d34278 xas_load +EXPORT_SYMBOL_GPL vmlinux 0x31d8b702 dev_pm_set_dedicated_wake_irq_reverse +EXPORT_SYMBOL_GPL vmlinux 0x31dca4d8 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x31e9e8d5 zynqmp_pm_set_suspend_mode +EXPORT_SYMBOL_GPL vmlinux 0x31eb7380 mtk_mmsys_ddp_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x31ecdfb8 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x31fa2544 regulator_desc_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3201b781 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x3224b2a9 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x32385f4a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x324428ac pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x324dba24 pci_epc_map_addr +EXPORT_SYMBOL_GPL vmlinux 0x325888a3 __tracepoint_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0x325df0c9 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3261d38d fsl_mc_object_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3268f625 mtk_pinconf_bias_disable_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x326cefe5 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0x327a2687 bind_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0x32836981 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x3288b93b __sbitmap_queue_get +EXPORT_SYMBOL_GPL vmlinux 0x328b1d7b sbitmap_queue_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x3290ba9a max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x3297192a perf_get_aux +EXPORT_SYMBOL_GPL vmlinux 0x329a32f2 fib_nl_delrule +EXPORT_SYMBOL_GPL vmlinux 0x32ab06cc irq_percpu_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x32afa144 dpbp_open +EXPORT_SYMBOL_GPL vmlinux 0x32b3ecb6 fuse_dev_install +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c49d01 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x32cc9cb4 ptp_parse_header +EXPORT_SYMBOL_GPL vmlinux 0x32d722d3 genpd_dev_pm_attach_by_id +EXPORT_SYMBOL_GPL vmlinux 0x32df33e7 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x32e06bf2 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x32f4eca5 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x330010b6 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x330f6116 set_dax_synchronous +EXPORT_SYMBOL_GPL vmlinux 0x33144cbb __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3331ff51 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x334d996a sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x3372bdb9 pci_epc_multi_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x33776e4f tty_kopen_shared +EXPORT_SYMBOL_GPL vmlinux 0x3378caa2 irq_domain_translate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x339a86eb spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x339a8984 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x33b5b8d0 of_detach_node +EXPORT_SYMBOL_GPL vmlinux 0x33bbb58c serial8250_do_get_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x33cc7e29 wwan_register_ops +EXPORT_SYMBOL_GPL vmlinux 0x33df9f83 debugfs_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0x340477e5 devm_gpiod_unhinge +EXPORT_SYMBOL_GPL vmlinux 0x341ff8dd pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x342994e9 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x342f4897 proc_create_net_single_write +EXPORT_SYMBOL_GPL vmlinux 0x34331f04 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x343428c6 dw8250_setup_port +EXPORT_SYMBOL_GPL vmlinux 0x3436569b fwnode_gpiod_get_index +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 0x345eb141 bio_start_io_acct +EXPORT_SYMBOL_GPL vmlinux 0x3476ac5b list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x34927f57 ncsi_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x34976040 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x349c90ea tty_get_icount +EXPORT_SYMBOL_GPL vmlinux 0x34a2138f devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x34a4663f vp_legacy_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0x34a7b142 __SCK__tp_func_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x34b88d02 check_move_unevictable_pages +EXPORT_SYMBOL_GPL vmlinux 0x34b8b755 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x34b9de98 phy_set_media +EXPORT_SYMBOL_GPL vmlinux 0x34cc7205 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x34d82a32 crypto_register_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x34eab46d bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x34f907e0 iommu_set_pgtable_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34fc4ad3 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x350f6ce5 tasklet_unlock_wait +EXPORT_SYMBOL_GPL vmlinux 0x35157b12 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x35263196 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x352b3813 maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x352ec68b bpf_offload_dev_destroy +EXPORT_SYMBOL_GPL vmlinux 0x355b2ef2 ti_sci_put_handle +EXPORT_SYMBOL_GPL vmlinux 0x355bc89a klist_next +EXPORT_SYMBOL_GPL vmlinux 0x355eb44d xen_remap_vma_range +EXPORT_SYMBOL_GPL vmlinux 0x3562f983 read_sanitised_ftr_reg +EXPORT_SYMBOL_GPL vmlinux 0x3565a929 utf8_data_table +EXPORT_SYMBOL_GPL vmlinux 0x35668aa3 device_iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x357457c3 psil_get_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x357fed5b __netpoll_free +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x358ffa5c bpf_prog_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x359231c0 rockchip_pcie_init_port +EXPORT_SYMBOL_GPL vmlinux 0x35a4f59d zynqmp_pm_clock_setdivider +EXPORT_SYMBOL_GPL vmlinux 0x35b14805 dev_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0x35d3dc46 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x35f92407 get_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x35f99f6e dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0x35fdaf22 edac_pci_handle_pe +EXPORT_SYMBOL_GPL vmlinux 0x361cb96c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x36242943 switchdev_deferred_process +EXPORT_SYMBOL_GPL vmlinux 0x362f3b8c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x3643ef8c mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x365989e5 imx_1416x_pll +EXPORT_SYMBOL_GPL vmlinux 0x365b45d1 __tracepoint_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x36663eea fsl_mc_bus_dpbp_type +EXPORT_SYMBOL_GPL vmlinux 0x3666423e usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x3666d674 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x36898d6f gpiod_remove_hogs +EXPORT_SYMBOL_GPL vmlinux 0x3690d167 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36ac17ab alloc_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0x36b77646 gov_update_cpu_data +EXPORT_SYMBOL_GPL vmlinux 0x36c1aeeb fscrypt_prepare_new_inode +EXPORT_SYMBOL_GPL vmlinux 0x36ca0eb2 crypto_register_templates +EXPORT_SYMBOL_GPL vmlinux 0x36d63776 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x36db870b zynqmp_pm_sha_hash +EXPORT_SYMBOL_GPL vmlinux 0x36e84742 fuse_request_end +EXPORT_SYMBOL_GPL vmlinux 0x37169f79 cpu_latency_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3716f274 __traceiter_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x371bf64d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x371ffb81 devlink_traps_unregister +EXPORT_SYMBOL_GPL vmlinux 0x374c908a of_clk_hw_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x3750d770 erst_read +EXPORT_SYMBOL_GPL vmlinux 0x375c2ee7 xenbus_setup_ring +EXPORT_SYMBOL_GPL vmlinux 0x375f6916 meson_eeclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0x376055ae cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x376b0be8 iomap_invalidate_folio +EXPORT_SYMBOL_GPL vmlinux 0x376e4a1b extcon_get_property +EXPORT_SYMBOL_GPL vmlinux 0x3772e16c devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x377396e8 devm_memunmap_pages +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 0x378e0999 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x37914025 xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x379a1bf4 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x37bf7be3 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x37c76b93 tracepoint_srcu +EXPORT_SYMBOL_GPL vmlinux 0x37cbabc7 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x37cc03d6 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x37ce8479 filemap_add_folio +EXPORT_SYMBOL_GPL vmlinux 0x37eb6c0b devlink_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37fef2f2 irq_force_affinity +EXPORT_SYMBOL_GPL vmlinux 0x3801776b __ioread32_copy +EXPORT_SYMBOL_GPL vmlinux 0x3804dd09 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3805a3cc clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x380c8293 mtk_pinconf_drive_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x380dde36 power_supply_batinfo_ocv2cap +EXPORT_SYMBOL_GPL vmlinux 0x381290d4 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3820fec6 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x38268b62 icc_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x38271352 regmap_mmio_detach_clk +EXPORT_SYMBOL_GPL vmlinux 0x382cd1fe irq_domain_update_bus_token +EXPORT_SYMBOL_GPL vmlinux 0x3831a933 virtio_check_mem_acc_cb +EXPORT_SYMBOL_GPL vmlinux 0x38374815 clear_selection +EXPORT_SYMBOL_GPL vmlinux 0x383b4e85 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x384dfed8 lwtunnel_cmp_encap +EXPORT_SYMBOL_GPL vmlinux 0x3866e217 nvmem_device_write +EXPORT_SYMBOL_GPL vmlinux 0x38708e25 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x38731e22 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x387c670c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x389b64a2 static_key_count +EXPORT_SYMBOL_GPL vmlinux 0x38a4bea6 extcon_register_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0x38aa1397 gpiod_add_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0x38c3ff30 freq_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x38e1fde7 mpi_set +EXPORT_SYMBOL_GPL vmlinux 0x38e4dc3c __traceiter_pelt_irq_tp +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x3913630f smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x391adc87 dw_pcie_ep_raise_legacy_irq +EXPORT_SYMBOL_GPL vmlinux 0x3920aff0 fsl_mc_device_group +EXPORT_SYMBOL_GPL vmlinux 0x39393064 devlink_port_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x3940132b genphy_c45_read_link +EXPORT_SYMBOL_GPL vmlinux 0x394e6a8e pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x394f2b21 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x395389a7 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x395b96f1 spi_take_timestamp_post +EXPORT_SYMBOL_GPL vmlinux 0x39683961 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x396a9c9c pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x397e2142 __SCK__tp_func_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x397e41bf usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x3980388d of_device_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39868c6c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x398c794a exportfs_decode_fh_raw +EXPORT_SYMBOL_GPL vmlinux 0x398f25b4 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x39a7affc driver_deferred_probe_timeout +EXPORT_SYMBOL_GPL vmlinux 0x39aa4888 usb_role_string +EXPORT_SYMBOL_GPL vmlinux 0x39b9a36b xfrm_state_afinfo_get_rcu +EXPORT_SYMBOL_GPL vmlinux 0x39c32aca __SCK__tp_func_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x39c60a48 pm_clk_resume +EXPORT_SYMBOL_GPL vmlinux 0x39c9d88c xas_find +EXPORT_SYMBOL_GPL vmlinux 0x39d3861d tcp_unregister_ulp +EXPORT_SYMBOL_GPL vmlinux 0x39ded098 rdma_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x39f5b2e2 msi_lock_descs +EXPORT_SYMBOL_GPL vmlinux 0x39fd83db halt_poll_ns_shrink +EXPORT_SYMBOL_GPL vmlinux 0x3a0d6f96 ahci_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3a1cf373 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x3a24fb2f percpu_ref_resurrect +EXPORT_SYMBOL_GPL vmlinux 0x3a26c05b bio_iov_iter_get_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a2bad55 pinctrl_generic_get_group +EXPORT_SYMBOL_GPL vmlinux 0x3a47b6f6 fwnode_create_software_node +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a52b122 netdev_walk_all_lower_dev +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a55981a static_key_enable_cpuslocked +EXPORT_SYMBOL_GPL vmlinux 0x3a5661bc spi_controller_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a6694a5 tps65912_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x3a74e484 __tracepoint_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x3a775f0e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3a7e8860 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a89c1ea gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x3a8b1940 crypto_stats_akcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x3a8e9e7a blk_mark_disk_dead +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa41008 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3ab9ea32 nfs_ssc_client_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3ac3feba rhltable_init +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad81a64 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3addb2ac pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x3aec0fcb crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3af31ecf pci_epf_bind +EXPORT_SYMBOL_GPL vmlinux 0x3afc4a8f sbitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x3b060769 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x3b081930 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x3b21c687 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3b29d87c to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x3b34dcba fwnode_get_next_parent +EXPORT_SYMBOL_GPL vmlinux 0x3b3acbf8 finish_rcuwait +EXPORT_SYMBOL_GPL vmlinux 0x3b424afb pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x3b46ce9a pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3b497ea2 balloon_page_list_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x3b4c240a display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0x3b5d21aa pci_device_group +EXPORT_SYMBOL_GPL vmlinux 0x3b610584 __tracepoint_sched_cpu_capacity_tp +EXPORT_SYMBOL_GPL vmlinux 0x3b65c187 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b680ce6 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x3b78bf02 sunxi_ccu_get_mmc_timing_mode +EXPORT_SYMBOL_GPL vmlinux 0x3b8142b6 auxiliary_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3b87b4ec usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x3ba01b47 get_compat_sigset +EXPORT_SYMBOL_GPL vmlinux 0x3bcd21b4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3bd02dda crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x3bd3618b mtk_mmsys_ddp_connect +EXPORT_SYMBOL_GPL vmlinux 0x3bd85713 blk_steal_bios +EXPORT_SYMBOL_GPL vmlinux 0x3bdb5d28 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0e0c __tracepoint_neigh_event_send_done +EXPORT_SYMBOL_GPL vmlinux 0x3bdf949c unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3be7d77d cookie_tcp_reqsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3be91906 irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0x3bebd8a4 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3bf17755 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3bfa3c5f apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3bfbc246 bsg_job_put +EXPORT_SYMBOL_GPL vmlinux 0x3c0a5b57 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x3c0bd66d rdev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3c0e8050 hyperv_pcpu_input_arg +EXPORT_SYMBOL_GPL vmlinux 0x3c0f3853 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c11b9f5 tegra210_put_utmipll_in_iddq +EXPORT_SYMBOL_GPL vmlinux 0x3c1c3725 rcu_fwd_progress_check +EXPORT_SYMBOL_GPL vmlinux 0x3c1ebdf5 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3c24a7c2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x3c27eb5c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3c2b68f7 of_changeset_apply +EXPORT_SYMBOL_GPL vmlinux 0x3c358292 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c3c85d8 __SCK__tp_func_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x3c48b647 pinctrl_utils_free_map +EXPORT_SYMBOL_GPL vmlinux 0x3c5429be acpi_get_and_request_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x3c5ca4ce ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x3c5d543a hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c681dc4 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c7e1a4e vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x3ca91f7d device_create +EXPORT_SYMBOL_GPL vmlinux 0x3ca9ca0d devlink_rate_nodes_destroy +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 0x3cfc70d7 i2c_adapter_depth +EXPORT_SYMBOL_GPL vmlinux 0x3d052a5c get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3d0cf4e1 gpiod_disable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x3d265766 seg6_do_srh_inline +EXPORT_SYMBOL_GPL vmlinux 0x3d2660b8 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x3d2d278c of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d43b7c1 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x3d46d990 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x3d46e813 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3d49fa48 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x3d510a7b rcu_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0x3d866e05 __SCK__tp_func_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0x3d8baf3b zs_huge_class_size +EXPORT_SYMBOL_GPL vmlinux 0x3d9057e3 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x3d97036f sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3d97e3d9 crypto_stats_kpp_compute_shared_secret +EXPORT_SYMBOL_GPL vmlinux 0x3d9bbf75 wwan_port_txon +EXPORT_SYMBOL_GPL vmlinux 0x3da3836c iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x3daa2540 nf_hooks_lwtunnel_enabled +EXPORT_SYMBOL_GPL vmlinux 0x3dc8071e sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3deb3f24 battery_hook_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3dede9a6 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x3df70c99 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x3e02d123 __fscrypt_prepare_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3e0b9350 devm_spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3e22dfb8 tegra_bpmp_mrq_return +EXPORT_SYMBOL_GPL vmlinux 0x3e350cba mmc_pwrseq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3e51db81 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x3e65c62a devm_gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x3e6b2530 regulator_set_ramp_delay_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e75b062 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x3e8507b1 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3e86d460 dw_pcie_ep_init_notify +EXPORT_SYMBOL_GPL vmlinux 0x3e8f322c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ecd1f29 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x3ef051c8 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x3ef3708e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x3f0e36a8 vp_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x3f1785b4 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x3f32e937 genphy_c45_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0x3f460c65 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x3f491f49 reset_control_bulk_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f4ca3a4 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3f5242ba pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x3f6f0f00 crypto_register_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x3f84bcd7 dax_alive +EXPORT_SYMBOL_GPL vmlinux 0x3f90e8b3 clk_hw_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x3fae6ab0 hv_vp_index +EXPORT_SYMBOL_GPL vmlinux 0x3fb1dc6e virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x3fb66e52 divider_ro_round_rate_parent +EXPORT_SYMBOL_GPL vmlinux 0x3fc4fe6c acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x3fd444d6 hv_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fdcfc49 strp_process +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fe49cae gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x3fe6c346 devlink_fmsg_binary_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x3fe97494 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3fea029c hisi_clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x3fedad03 __traceiter_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x3ff2e349 hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0x3ff43f8c blkcg_get_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x3ff4ceaa dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x3ff77cd4 ftrace_set_filter_ips +EXPORT_SYMBOL_GPL vmlinux 0x3ffdacf3 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x4004fb0c cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x40077821 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400d911a blk_next_bio +EXPORT_SYMBOL_GPL vmlinux 0x4014da3f blkdev_report_zones +EXPORT_SYMBOL_GPL vmlinux 0x40190b06 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x4020d591 devlink_port_register +EXPORT_SYMBOL_GPL vmlinux 0x4024fde3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x40267068 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x402f4a77 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x403044d3 dev_pm_opp_get_max_volt_latency +EXPORT_SYMBOL_GPL vmlinux 0x403eac60 sbitmap_get +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4043757f init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x4044f2fd pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x40502c68 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x406d2a85 ahci_print_info +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 0x408e61bd __traceiter_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x4099f919 tun_ptr_free +EXPORT_SYMBOL_GPL vmlinux 0x40a23395 register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0x40a45a14 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x40bc028f rio_local_set_device_id +EXPORT_SYMBOL_GPL vmlinux 0x40c507d2 tegra_bpmp_free_mrq +EXPORT_SYMBOL_GPL vmlinux 0x40e0ba52 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x40e359e5 kstrdup_quotable_file +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 0x4104405e devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4107602a sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x411893ab pinctrl_generic_get_group_name +EXPORT_SYMBOL_GPL vmlinux 0x41189f97 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x41237f71 cpu_have_feature +EXPORT_SYMBOL_GPL vmlinux 0x4123aa55 __devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x41285a5a raw_v4_hashinfo +EXPORT_SYMBOL_GPL vmlinux 0x4129bcb0 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x412bc681 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4132953b fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x41372a2a pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x4143b964 i2c_dw_configure_master +EXPORT_SYMBOL_GPL vmlinux 0x414d119a videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x4159bfb8 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x415dceba acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x415f48d9 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x4173ba4f tty_port_register_device_serdev +EXPORT_SYMBOL_GPL vmlinux 0x417fd030 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x418aa241 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x419d7c83 zynqmp_pm_pinctrl_set_config +EXPORT_SYMBOL_GPL vmlinux 0x419e7efd sfp_module_stop +EXPORT_SYMBOL_GPL vmlinux 0x419f83da mtk_clk_gate_ops_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x41b33256 lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL vmlinux 0x41b9a6e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x41bce49a ghes_register_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x41c0c031 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x41d07fc4 sbitmap_queue_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x41ed3cec eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x41f042fd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x41f3ded2 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x42041512 i2c_get_dma_safe_msg_buf +EXPORT_SYMBOL_GPL vmlinux 0x42068662 md_run +EXPORT_SYMBOL_GPL vmlinux 0x420f3d01 nvmem_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4214d981 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x421b2b68 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x42219153 platform_irq_count +EXPORT_SYMBOL_GPL vmlinux 0x422cf8d6 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x423a0b1b bpf_trace_run5 +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426452a3 acpi_evaluation_failure_warn +EXPORT_SYMBOL_GPL vmlinux 0x427c05ec regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x428030ae sbitmap_bitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42891451 perf_aux_output_flag +EXPORT_SYMBOL_GPL vmlinux 0x4289839d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42992d2b sk_msg_clone +EXPORT_SYMBOL_GPL vmlinux 0x429a36ab __kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x429c3f9c reboot_mode +EXPORT_SYMBOL_GPL vmlinux 0x429e7c10 mark_page_dirty_in_slot +EXPORT_SYMBOL_GPL vmlinux 0x42b180c2 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x42bf8fe1 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x42c1d1a8 __traceiter_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x42cb3011 devm_hwspin_lock_free +EXPORT_SYMBOL_GPL vmlinux 0x42d237e6 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x42e9d0da ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x42f728aa mctrl_gpio_get_outputs +EXPORT_SYMBOL_GPL vmlinux 0x42faf353 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x430c90f8 md_bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x430d88ec __traceiter_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x430e56f8 sync_blockdev_nowait +EXPORT_SYMBOL_GPL vmlinux 0x431b07ea device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x43269083 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4327db47 io_uring_cmd_done +EXPORT_SYMBOL_GPL vmlinux 0x4329a6ab da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x4348c6e5 crypto_stats_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x434f6f32 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x435ef55c xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x435f0643 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x43686d1b pin_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x436d817f mpi_clear_bit +EXPORT_SYMBOL_GPL vmlinux 0x436dc1f2 wwan_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4370dc47 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x437eb1df ipv6_mod_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4381c416 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x438a86a0 devfreq_cooling_em_register +EXPORT_SYMBOL_GPL vmlinux 0x438ba568 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438ef553 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x439ee68c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x43a5a0ee ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x43aa319e lease_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x43af15ba xfrm_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x43b71444 iommu_dev_feature_enabled +EXPORT_SYMBOL_GPL vmlinux 0x43bd2a94 relay_late_setup_files +EXPORT_SYMBOL_GPL vmlinux 0x43c813d4 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x43d031d1 fsl_mc_bus_dpsw_type +EXPORT_SYMBOL_GPL vmlinux 0x43d17ad5 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x43d18c24 mptcp_get_reset_option +EXPORT_SYMBOL_GPL vmlinux 0x43e6f2d7 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x43e6fd71 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x43ecceed crypto_stats_akcipher_verify +EXPORT_SYMBOL_GPL vmlinux 0x43f4bfc0 fsl_mc_object_free +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x43f8fff0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x43f92edd wait_for_initramfs +EXPORT_SYMBOL_GPL vmlinux 0x4400f710 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4401e6c2 mpi_cmpabs +EXPORT_SYMBOL_GPL vmlinux 0x44086432 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x440f7737 __traceiter_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x44137bd6 irq_domain_push_irq +EXPORT_SYMBOL_GPL vmlinux 0x44174699 serdev_device_write_room +EXPORT_SYMBOL_GPL vmlinux 0x44219841 memunmap_pages +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 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4471b43e kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x447a0ad5 elv_rqhash_add +EXPORT_SYMBOL_GPL vmlinux 0x447f4471 of_property_read_variable_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44869ec8 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x449b11f9 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x449ebed1 sbitmap_queue_init_node +EXPORT_SYMBOL_GPL vmlinux 0x44a04bc4 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x44a49d90 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x44a61496 synth_event_trace_start +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44a83276 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x44ae454b dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0x44b0769c kthread_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x44b3c050 blk_queue_can_use_dma_map_merging +EXPORT_SYMBOL_GPL vmlinux 0x44b880f7 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bc9602 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x44bd199b battery_hook_register +EXPORT_SYMBOL_GPL vmlinux 0x44c8a84a split_page +EXPORT_SYMBOL_GPL vmlinux 0x44ce4b56 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x44cf8cf0 blk_zone_cond_str +EXPORT_SYMBOL_GPL vmlinux 0x44d0efd1 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x44d8472f nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4507f4a8 cpuhp_tasks_frozen +EXPORT_SYMBOL_GPL vmlinux 0x45175633 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x451a7cc6 fsnotify_put_mark +EXPORT_SYMBOL_GPL vmlinux 0x4531624f usb_decode_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x4531ab62 copy_from_kernel_nofault +EXPORT_SYMBOL_GPL vmlinux 0x453ade6e iommu_fwspec_free +EXPORT_SYMBOL_GPL vmlinux 0x453dea0b fib_rule_matchall +EXPORT_SYMBOL_GPL vmlinux 0x45558f56 clk_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x455ab5bc divider_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x455ccdf0 tty_release_struct +EXPORT_SYMBOL_GPL vmlinux 0x455d88a0 metadata_dst_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x4561f990 qcom_smem_state_unregister +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45798822 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x457a1af9 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x459abbc1 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x459e6151 mm_unaccount_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0x45a25ee5 locks_owner_has_blockers +EXPORT_SYMBOL_GPL vmlinux 0x45b142b0 dax_zero_range +EXPORT_SYMBOL_GPL vmlinux 0x45bea2d1 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x45c15205 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x45cf467f pm_clk_suspend +EXPORT_SYMBOL_GPL vmlinux 0x45d0d681 gpiochip_irq_map +EXPORT_SYMBOL_GPL vmlinux 0x45de1d40 usb_control_msg_recv +EXPORT_SYMBOL_GPL vmlinux 0x45f3737f acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46030074 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x460c1d9b pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x460ca2c4 devm_clk_bulk_get_all +EXPORT_SYMBOL_GPL vmlinux 0x460e4f21 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x46210ce2 strp_check_rcv +EXPORT_SYMBOL_GPL vmlinux 0x46232a09 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x46269814 __tracepoint_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x4634e33c wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x46362ba3 serial8250_do_set_divisor +EXPORT_SYMBOL_GPL vmlinux 0x4664c1e4 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x4672eff7 device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x46766e68 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x4684dc5b clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46971903 user_update +EXPORT_SYMBOL_GPL vmlinux 0x46a14092 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x46a1c559 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x46a4b118 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46a78d63 devm_otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0x46aebfd2 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x46b30b91 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x46c5be22 clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x46d78ab9 of_map_id +EXPORT_SYMBOL_GPL vmlinux 0x46df5b79 blk_mq_unquiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x46e67a71 this_cpu_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x46f241b9 netdev_walk_all_lower_dev_rcu +EXPORT_SYMBOL_GPL vmlinux 0x46f49d18 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x46fc03ac of_get_required_opp_performance_state +EXPORT_SYMBOL_GPL vmlinux 0x46fc593b page_cache_ra_unbounded +EXPORT_SYMBOL_GPL vmlinux 0x4702b23f inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4712b9ca devm_krealloc +EXPORT_SYMBOL_GPL vmlinux 0x47202f6f usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x47221dff dst_blackhole_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4725f399 pm_clk_remove_clk +EXPORT_SYMBOL_GPL vmlinux 0x4729a350 serdev_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x474f1632 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x474f6325 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4750cca9 anon_inode_getfd_secure +EXPORT_SYMBOL_GPL vmlinux 0x4751ae2f blk_req_needs_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476e511f of_hte_req_count +EXPORT_SYMBOL_GPL vmlinux 0x476febfa tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x47762851 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x47830408 irq_chip_get_parent_state +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x478e81f8 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x47933b75 serdev_controller_remove +EXPORT_SYMBOL_GPL vmlinux 0x479ef802 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x479f7d4b clk_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x47a2218f spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x47a360d2 sched_set_fifo_low +EXPORT_SYMBOL_GPL vmlinux 0x47a4b250 vp_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0x47a547b9 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d64d80 dm_post_suspending +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47de1e28 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x47e13079 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x47ebce8b bgmac_alloc +EXPORT_SYMBOL_GPL vmlinux 0x480305ca kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x4805dadc debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x480b97ce ethnl_cable_test_fault_length +EXPORT_SYMBOL_GPL vmlinux 0x481f9b7d mpi_mulm +EXPORT_SYMBOL_GPL vmlinux 0x48203853 em_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4831c5a0 watchdog_set_restart_priority +EXPORT_SYMBOL_GPL vmlinux 0x4833c82b fscrypt_ioctl_get_policy_ex +EXPORT_SYMBOL_GPL vmlinux 0x4833c98b bpf_trace_run6 +EXPORT_SYMBOL_GPL vmlinux 0x4843a748 qman_portals_probed +EXPORT_SYMBOL_GPL vmlinux 0x4847631b fwnode_handle_get +EXPORT_SYMBOL_GPL vmlinux 0x484ec226 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x486dedc3 ghes_unregister_vendor_record_notifier +EXPORT_SYMBOL_GPL vmlinux 0x48877c35 pm_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x488f17d2 blk_mq_sched_mark_restart_hctx +EXPORT_SYMBOL_GPL vmlinux 0x48a3d20b mctrl_gpio_get +EXPORT_SYMBOL_GPL vmlinux 0x48c32847 __SCK__tp_func_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x48de7ccd of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x48f37179 sk_psock_drop +EXPORT_SYMBOL_GPL vmlinux 0x48f48197 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x48ff3231 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x49072f4e dprc_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x491008d9 dev_pm_qos_hide_latency_tolerance +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 0x493e4f0a blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x494bba30 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x494e8576 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x495158f0 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x49571dad of_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x49608959 migrate_disable +EXPORT_SYMBOL_GPL vmlinux 0x497b42f4 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x497e90d0 fixup_user_fault +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ad1d33 synth_event_add_next_val +EXPORT_SYMBOL_GPL vmlinux 0x49cd25ed alloc_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x49d1e5ea tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x49d80d3d pci_d3cold_enable +EXPORT_SYMBOL_GPL vmlinux 0x49dbfd4c debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea931c __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x49fa0368 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4a165579 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x4a17ed66 sysrq_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a2c291e irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x4a310806 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x4a360b99 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4ef049 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4a5d9ab8 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4a6edae4 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x4a837b18 devm_namespace_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a845590 fsl_mc_get_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a8e3261 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4aa21ecb screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x4aa6f2b6 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4ac76ee1 mtk_hw_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4ad314b7 sec_irq_init +EXPORT_SYMBOL_GPL vmlinux 0x4ae05cd5 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x4ae4d022 bpf_warn_invalid_xdp_action +EXPORT_SYMBOL_GPL vmlinux 0x4af14402 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4afc0772 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4b049df9 xdp_return_buff +EXPORT_SYMBOL_GPL vmlinux 0x4b0ce1a2 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x4b121be6 bdev_discard_alignment +EXPORT_SYMBOL_GPL vmlinux 0x4b327e78 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4b33f83b blk_stat_disable_accounting +EXPORT_SYMBOL_GPL vmlinux 0x4b36edd0 ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x4b39b81b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x4b4f146e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x4b51f74c ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x4b5acf74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x4b721a20 devm_rtc_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x4b7a421d scsi_free_sgtables +EXPORT_SYMBOL_GPL vmlinux 0x4b807903 virtqueue_get_used_addr +EXPORT_SYMBOL_GPL vmlinux 0x4b872cda kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x4b88837d amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4b89e0ae copy_user_highpage +EXPORT_SYMBOL_GPL vmlinux 0x4b931968 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x4bacfc48 device_link_del +EXPORT_SYMBOL_GPL vmlinux 0x4bb6e0cc crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x4bc8727f xen_balloon_init +EXPORT_SYMBOL_GPL vmlinux 0x4bd6f08b misc_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4bdb8dcc housekeeping_test_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4bfd398d hwrng_msleep +EXPORT_SYMBOL_GPL vmlinux 0x4c023d33 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x4c02dcc4 of_pm_clk_add_clks +EXPORT_SYMBOL_GPL vmlinux 0x4c0c83fe ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x4c0fa999 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4c2c0ea7 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0x4c41ec91 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x4c4827af fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4c4c5ad8 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x4c4cc045 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4c515de2 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4c549b36 __traceiter_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x4c638262 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x4c7471c6 dev_pm_opp_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x4c783d8f pci_generic_ecam_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c7a8752 devm_clk_hw_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x4c828d32 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x4c86489d sysfs_groups_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x4c8a48bb usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x4c8adfe1 hv_root_partition +EXPORT_SYMBOL_GPL vmlinux 0x4c90caa7 irq_chip_enable_parent +EXPORT_SYMBOL_GPL vmlinux 0x4c911682 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c955f70 tcp_sendpage_locked +EXPORT_SYMBOL_GPL vmlinux 0x4c984db1 pci_ecam_free +EXPORT_SYMBOL_GPL vmlinux 0x4ca08a39 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x4ca6f4ad of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x4ca89b0a vp_legacy_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0x4ca9b0ad usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4cb27100 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x4cb81fda __SCK__tp_func_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x4cd317b4 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x4cd8cffb xdp_return_frame +EXPORT_SYMBOL_GPL vmlinux 0x4cdf18ce input_ff_flush +EXPORT_SYMBOL_GPL vmlinux 0x4cf04fe9 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1a78be phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4d1ac47f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x4d349b4d ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x4d365cfa class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4d3a0696 __SCK__tp_func_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4ca43e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4d4d6ad1 kernel_read_file +EXPORT_SYMBOL_GPL vmlinux 0x4d4d7b79 blk_mq_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x4d6d0bbc iommu_group_ref_get +EXPORT_SYMBOL_GPL vmlinux 0x4d71f59d usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4d7272e4 migrate_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d83c710 k3_udma_glue_tdown_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x4d88436c thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x4d885656 devm_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x4d95d6d1 memcpy_flushcache +EXPORT_SYMBOL_GPL vmlinux 0x4da4fe18 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x4daaa2da nf_nat_hook +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 0x4de2bef1 __xdp_rxq_info_reg +EXPORT_SYMBOL_GPL vmlinux 0x4debe36c dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x4dff61e5 wwan_port_txoff +EXPORT_SYMBOL_GPL vmlinux 0x4e0b6b76 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x4e17c613 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x4e19394f generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x4e1dadca of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x4e3fd1b4 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x4e4c37e2 freq_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4e53e4c4 devlink_param_value_changed +EXPORT_SYMBOL_GPL vmlinux 0x4e5f7838 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x4e69076b vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x4e74878e __tracepoint_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x4e7dae18 __traceiter_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x4e96e925 platform_get_irq_optional +EXPORT_SYMBOL_GPL vmlinux 0x4e98c8b2 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x4eac5fc1 cpu_mitigations_auto_nosmt +EXPORT_SYMBOL_GPL vmlinux 0x4eb39d4e __tracepoint_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0x4eb93aa3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4ebfe328 tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0x4eca13b2 rockchip_pcie_get_phys +EXPORT_SYMBOL_GPL vmlinux 0x4ece3615 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4eeb522f pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcf021 mpi_normalize +EXPORT_SYMBOL_GPL vmlinux 0x4f1a32b0 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4f1f62ea xhci_get_ep_ctx +EXPORT_SYMBOL_GPL vmlinux 0x4f201a25 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4f2593f0 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4f273459 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x4f282745 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x4f29e422 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x4f2c996d kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x4f4b980c iomap_file_buffered_write +EXPORT_SYMBOL_GPL vmlinux 0x4f5fb07f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f72a987 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x4f78a314 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x4f93171c devm_blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4faf31ce __vfs_setxattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x4fbf289d xdp_master_redirect +EXPORT_SYMBOL_GPL vmlinux 0x4fc856ae pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4fcc51cc udp_abort +EXPORT_SYMBOL_GPL vmlinux 0x4fd5109f shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fde25f4 pcie_aspm_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5008fd3e xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x500c768c apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x500d7321 devm_irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5011cbfb __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x501c045e find_mci_by_dev +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502879db clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x50321fd6 reset_control_get_count +EXPORT_SYMBOL_GPL vmlinux 0x5032dedf __pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0x504622da pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5046a63a devm_pci_epc_destroy +EXPORT_SYMBOL_GPL vmlinux 0x504b5a5b regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x505e7adc param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x50616e69 devlink_resources_unregister +EXPORT_SYMBOL_GPL vmlinux 0x506411cf usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x50770f10 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x5079d553 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x508dcac8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x50911502 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50aedf4a PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x50b418be cpufreq_disable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x50b99026 dev_pm_opp_of_add_table_indexed +EXPORT_SYMBOL_GPL vmlinux 0x50bd6332 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x50c19e16 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x50c2ae54 rpi_firmware_property +EXPORT_SYMBOL_GPL vmlinux 0x50df94f5 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x50e10d1d of_icc_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x50e3ab38 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd49ae clk_regmap_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x51061367 pci_iov_get_pf_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x510fc9f4 icc_link_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5115a01c xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x511b1e21 blk_queue_flag_test_and_set +EXPORT_SYMBOL_GPL vmlinux 0x511fb060 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x51219e43 ipi_send_mask +EXPORT_SYMBOL_GPL vmlinux 0x5133350d xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x51390c96 rcu_barrier_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x51463f01 sfp_register_socket +EXPORT_SYMBOL_GPL vmlinux 0x5152bd85 devlink_port_type_clear +EXPORT_SYMBOL_GPL vmlinux 0x515b390f __SCK__tp_func_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5163572a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5169344d k3_udma_glue_pop_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x516d7d07 dw_pcie_host_init +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518dce57 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5192085b regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x51991b38 mtk_mutex_enable +EXPORT_SYMBOL_GPL vmlinux 0x519ca26f pci_platform_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x51a348cc usb_role_switch_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x51ad07dd tegra210_plle_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x51aecfe6 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x51bf963b start_poll_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x51c10242 meson_clk_pll_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x51c83f55 fsl_mc_device_add +EXPORT_SYMBOL_GPL vmlinux 0x51cff90e mtk_pinconf_adv_pull_get +EXPORT_SYMBOL_GPL vmlinux 0x51d13875 nf_hooks_lwtunnel_sysctl_handler +EXPORT_SYMBOL_GPL vmlinux 0x51d601c5 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x51ee171b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x51fc577c tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x51fc9a6d xenmem_reservation_decrease +EXPORT_SYMBOL_GPL vmlinux 0x51fe1b0b scsi_host_block +EXPORT_SYMBOL_GPL vmlinux 0x52252316 clk_unregister_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x52272fa8 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x5236e2fd efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x52431348 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x5262a86d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x526bcf2a wwan_port_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x52701755 platform_clear +EXPORT_SYMBOL_GPL vmlinux 0x527f27d8 serdev_controller_alloc +EXPORT_SYMBOL_GPL vmlinux 0x529082cf vp_modern_set_status +EXPORT_SYMBOL_GPL vmlinux 0x52b10b9f device_add_software_node +EXPORT_SYMBOL_GPL vmlinux 0x52b1e3c7 pci_flags +EXPORT_SYMBOL_GPL vmlinux 0x52b26925 clk_regmap_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x52c2e8fe blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x52c35e83 call_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x52c44889 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x52ca0b40 __virtio_unbreak_device +EXPORT_SYMBOL_GPL vmlinux 0x52caf1e8 pci_dev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x52ce2057 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x52d54fce devlink_info_version_stored_put +EXPORT_SYMBOL_GPL vmlinux 0x52dc8529 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x52ea5c65 switchdev_bridge_port_unoffload +EXPORT_SYMBOL_GPL vmlinux 0x52f2c9f8 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x53012944 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x530b2047 follow_pte +EXPORT_SYMBOL_GPL vmlinux 0x530c48b4 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x530fe66a fib_nexthop_info +EXPORT_SYMBOL_GPL vmlinux 0x531d7f0b serial8250_em485_config +EXPORT_SYMBOL_GPL vmlinux 0x531e311f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x531fe532 dev_pm_opp_adjust_voltage +EXPORT_SYMBOL_GPL vmlinux 0x532a44b6 __traceiter_sched_util_est_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x532abdf8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x532b90b5 kprobe_event_cmd_init +EXPORT_SYMBOL_GPL vmlinux 0x532bf11b palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x5331243c devlink_port_type_ib_set +EXPORT_SYMBOL_GPL vmlinux 0x53316a4f ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x5335d2c7 wwan_put_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x533a1e14 linear_hugepage_index +EXPORT_SYMBOL_GPL vmlinux 0x533f432b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5346d78c sdio_retune_crc_disable +EXPORT_SYMBOL_GPL vmlinux 0x5358864e devlink_fmsg_binary_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x53598139 xhci_reset_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0x535eaf2e __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5360ada6 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x536822e3 sfp_module_insert +EXPORT_SYMBOL_GPL vmlinux 0x536a7270 devm_i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0x536c800b fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x536c8f0e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x536e3f9b nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x537252cf __SCK__tp_func_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x538d073d phy_duplex_to_str +EXPORT_SYMBOL_GPL vmlinux 0x538ec81a xhci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x539b7b4b nvmem_cell_read_variable_le_u32 +EXPORT_SYMBOL_GPL vmlinux 0x53a5447f i2c_dw_probe_master +EXPORT_SYMBOL_GPL vmlinux 0x53c089f5 property_entries_dup +EXPORT_SYMBOL_GPL vmlinux 0x53cf5b1d ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x53d7c01e __traceiter_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x53dcad65 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x53e18be2 fscrypt_parse_test_dummy_encryption +EXPORT_SYMBOL_GPL vmlinux 0x53eb2533 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x542f41eb crypto_grab_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x543491b6 lwtunnel_fill_encap +EXPORT_SYMBOL_GPL vmlinux 0x5434dcb5 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x5436920b devm_free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5447e567 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x544af7f6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x54508f35 pci_find_vsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x545369ec inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x54651f9b rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x546d3f9b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x54787ae8 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x547de13c usb_phy_roothub_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5491e191 of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a16ff0 udp_bpf_update_proto +EXPORT_SYMBOL_GPL vmlinux 0x54a25da2 qcom_smem_state_put +EXPORT_SYMBOL_GPL vmlinux 0x54b97683 ahci_shost_groups +EXPORT_SYMBOL_GPL vmlinux 0x54bc37c5 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x54bd3ffc __vfs_removexattr_noperm +EXPORT_SYMBOL_GPL vmlinux 0x54c2531a __traceiter_br_fdb_external_learn_add +EXPORT_SYMBOL_GPL vmlinux 0x54cee684 __tracepoint_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x54db4896 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x54edb8be udp_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x54f01ec3 dev_pm_opp_find_bw_floor +EXPORT_SYMBOL_GPL vmlinux 0x550f3e05 i2c_freq_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x55139bb1 devm_regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x5524feb2 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x5528543b vmap_pfn +EXPORT_SYMBOL_GPL vmlinux 0x55339365 flush_delayed_fput +EXPORT_SYMBOL_GPL vmlinux 0x553a7ced __traceiter_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x555f05c3 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x556a02cc devm_rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55727f9e relay_open +EXPORT_SYMBOL_GPL vmlinux 0x55745d36 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557cf961 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x5589f2db crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x5590256d stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x55947cfb lwtstate_free +EXPORT_SYMBOL_GPL vmlinux 0x5596e7ba fsverity_ioctl_measure +EXPORT_SYMBOL_GPL vmlinux 0x55c76a23 ksys_sync_helper +EXPORT_SYMBOL_GPL vmlinux 0x55c9880c zynqmp_pm_release_node +EXPORT_SYMBOL_GPL vmlinux 0x55c9fbf1 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x55d01bbe gpmc_omap_onenand_set_timings +EXPORT_SYMBOL_GPL vmlinux 0x55dbb3d9 fib_rules_seq_read +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56054c05 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x5610240e iommu_sva_bind_device +EXPORT_SYMBOL_GPL vmlinux 0x5613f066 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x56173654 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x561dc967 tcp_get_syncookie_mss +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 0x5650bc85 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x56543908 rio_mport_initialize +EXPORT_SYMBOL_GPL vmlinux 0x56652245 irq_domain_set_hwirq_and_chip +EXPORT_SYMBOL_GPL vmlinux 0x56712d87 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5674be18 mtk_clk_register_factors +EXPORT_SYMBOL_GPL vmlinux 0x5677d2fb crypto_stats_init +EXPORT_SYMBOL_GPL vmlinux 0x569173f8 ncsi_stop_dev +EXPORT_SYMBOL_GPL vmlinux 0x56a7a3e2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x56e6ca60 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f7d881 device_del +EXPORT_SYMBOL_GPL vmlinux 0x56fbb130 no_hash_pointers +EXPORT_SYMBOL_GPL vmlinux 0x570c4b03 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x571b6370 fsnotify_put_group +EXPORT_SYMBOL_GPL vmlinux 0x57202fbf virtqueue_get_vring +EXPORT_SYMBOL_GPL vmlinux 0x572da3e8 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x574609c5 apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0x57470026 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5751a9ea pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x576c5753 pci_epf_add_vepf +EXPORT_SYMBOL_GPL vmlinux 0x576e0ab0 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x576edee8 acpi_dev_remove_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x57719632 gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x577a438a tegra210_clk_emc_detach +EXPORT_SYMBOL_GPL vmlinux 0x57811d30 dpcon_reset +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 0x57afd156 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x57b87ee3 mtk_pinconf_drive_set_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x57c49f1e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x57c6dbed mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x57d4050a xhci_get_endpoint_index +EXPORT_SYMBOL_GPL vmlinux 0x57d725fe fork_usermode_driver +EXPORT_SYMBOL_GPL vmlinux 0x57dc2ceb platform_find_device_by_driver +EXPORT_SYMBOL_GPL vmlinux 0x57f310e9 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x57f576b9 mpi_ec_curve_point +EXPORT_SYMBOL_GPL vmlinux 0x58063901 register_btf_id_dtor_kfuncs +EXPORT_SYMBOL_GPL vmlinux 0x5812836f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x5813a3bd br_ip6_fragment +EXPORT_SYMBOL_GPL vmlinux 0x58276f93 cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0x582fd633 kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x58315632 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5831e062 cpus_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x58329f48 switchdev_handle_fdb_event_to_device +EXPORT_SYMBOL_GPL vmlinux 0x5834d8df iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0x58351642 serial8250_em485_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5838061e __traceiter_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x583ac483 fuse_simple_background +EXPORT_SYMBOL_GPL vmlinux 0x583b58b1 pci_epc_set_msix +EXPORT_SYMBOL_GPL vmlinux 0x584cc4ca __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x58575650 irq_chip_unmask_parent +EXPORT_SYMBOL_GPL vmlinux 0x585ea590 fib_new_table +EXPORT_SYMBOL_GPL vmlinux 0x585f73f3 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x585fa3bc phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x586bfc8a alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x586f7aff balloon_page_alloc +EXPORT_SYMBOL_GPL vmlinux 0x587860a4 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x5879a27d sfp_get_module_info +EXPORT_SYMBOL_GPL vmlinux 0x589f8e8c __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x58bf2857 i2c_acpi_client_count +EXPORT_SYMBOL_GPL vmlinux 0x58d2776d dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x58d4c7f3 pci_epc_set_msi +EXPORT_SYMBOL_GPL vmlinux 0x58db1176 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x58def6ca sfp_module_remove +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58eac665 __nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x59038725 __traceiter_sched_util_est_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x5913ebdd usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x591d179b __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x591f1995 mtk_clk_unregister_composites +EXPORT_SYMBOL_GPL vmlinux 0x5920d97d xdp_convert_zc_to_xdp_frame +EXPORT_SYMBOL_GPL vmlinux 0x592151db __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x592dae8e uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x593c2001 dma_resv_iter_first +EXPORT_SYMBOL_GPL vmlinux 0x5951afef gpiod_enable_hw_timestamp_ns +EXPORT_SYMBOL_GPL vmlinux 0x5986d190 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bfeb59 get_device +EXPORT_SYMBOL_GPL vmlinux 0x59c43dc9 __traceiter_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x59d2df98 bpf_prog_sub +EXPORT_SYMBOL_GPL vmlinux 0x59ded2b9 crypto_register_acomps +EXPORT_SYMBOL_GPL vmlinux 0x59e12c36 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x59e640c0 halt_poll_ns +EXPORT_SYMBOL_GPL vmlinux 0x59ea1d28 pktgen_xfrm_outer_mode_output +EXPORT_SYMBOL_GPL vmlinux 0x59f32720 mpi_subm +EXPORT_SYMBOL_GPL vmlinux 0x59f6cd2b io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x59f8b7c6 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x59f90a30 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x5a0899d8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a10138c wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x5a125ce7 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x5a12e60c __SCK__tp_func_sched_update_nr_running_tp +EXPORT_SYMBOL_GPL vmlinux 0x5a1b8f8b gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0x5a1d134a rcu_momentary_dyntick_idle +EXPORT_SYMBOL_GPL vmlinux 0x5a3dc0fe perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x5a42c937 sbitmap_queue_clear +EXPORT_SYMBOL_GPL vmlinux 0x5a42f88f __devm_clk_hw_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x5a49dbc9 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x5a49f6d1 nvmem_cell_read_variable_le_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5a53b873 mctrl_gpio_init_noauto +EXPORT_SYMBOL_GPL vmlinux 0x5a63ae29 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5a641e73 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5a68471f pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x5a6cdb52 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7dca8f screen_glyph_unicode +EXPORT_SYMBOL_GPL vmlinux 0x5a8b0c69 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x5a90dd4c nvmem_device_cell_write +EXPORT_SYMBOL_GPL vmlinux 0x5a9f8508 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x5aa70984 acpi_reduced_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ab09745 edac_get_owner +EXPORT_SYMBOL_GPL vmlinux 0x5ac05004 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x5ae4bfda iommu_sva_alloc_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5af8deb3 devlink_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b000b01 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x5b02a0b6 irq_gc_unmask_enable_reg +EXPORT_SYMBOL_GPL vmlinux 0x5b168b34 umd_cleanup_helper +EXPORT_SYMBOL_GPL vmlinux 0x5b173179 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5b179050 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5b21ceff ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x5b23307f espintcp_push_skb +EXPORT_SYMBOL_GPL vmlinux 0x5b368f59 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b3cfc14 __nf_ip6_route +EXPORT_SYMBOL_GPL vmlinux 0x5b556d3c udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5b57f535 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5b5bab52 serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x5b5dad60 dbs_update +EXPORT_SYMBOL_GPL vmlinux 0x5b6b0329 swiotlb_max_segment +EXPORT_SYMBOL_GPL vmlinux 0x5b714d99 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x5b73846f of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x5b7f57c3 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5b95524a sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x5b97d18f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x5ba9c87f blk_crypto_keyslot_index +EXPORT_SYMBOL_GPL vmlinux 0x5bad1733 pm_generic_suspend_late +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 0x5bcfdde8 acpi_dma_simple_xlate +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 0x5bdd42b8 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x5be2f8ca debugfs_file_put +EXPORT_SYMBOL_GPL vmlinux 0x5bec6231 pm_clk_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c0612aa pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x5c070f62 cper_mem_err_status_str +EXPORT_SYMBOL_GPL vmlinux 0x5c0dfb49 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x5c0eaf31 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5c0f77ce HYPERVISOR_platform_op_raw +EXPORT_SYMBOL_GPL vmlinux 0x5c163fbf blk_mq_alloc_sq_tag_set +EXPORT_SYMBOL_GPL vmlinux 0x5c2f1546 devlink_sb_register +EXPORT_SYMBOL_GPL vmlinux 0x5c3bbd06 __SCK__tp_func_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63c3c0 tpm2_get_tpm_pt +EXPORT_SYMBOL_GPL vmlinux 0x5c78bad0 dax_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x5c82016e __SCK__tp_func_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x5c8502b3 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5c9caf63 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5cab9945 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x5cad8fc3 power_supply_ocv2cap_simple +EXPORT_SYMBOL_GPL vmlinux 0x5cb3bfc5 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5cd80eee srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5cddedc0 apply_to_existing_page_range +EXPORT_SYMBOL_GPL vmlinux 0x5ce60c1f gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x5cea84e5 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x5cede0a7 xdp_flush_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x5d06dbb9 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x5d0ab01b ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5d128424 devm_thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x5d17148b apei_write +EXPORT_SYMBOL_GPL vmlinux 0x5d1a45dd pm_clk_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d22e51b msg_zerocopy_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d2aa5fb rhashtable_walk_peek +EXPORT_SYMBOL_GPL vmlinux 0x5d2bc42a reset_control_rearm +EXPORT_SYMBOL_GPL vmlinux 0x5d3508f1 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x5d360138 sdio_retune_hold_now +EXPORT_SYMBOL_GPL vmlinux 0x5d363fbe mmc_crypto_prepare_req +EXPORT_SYMBOL_GPL vmlinux 0x5d3a2535 debugfs_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5d429c84 bpf_prog_inc +EXPORT_SYMBOL_GPL vmlinux 0x5d4c3963 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5d5fd8c2 pci_epf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d630f03 devm_thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0x5d8476d3 bpf_sk_storage_diag_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d8fc47a devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x5da2d0e2 __traceiter_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x5da5d177 governor_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db53597 debugfs_create_file_unsafe +EXPORT_SYMBOL_GPL vmlinux 0x5dbd8c40 net_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5dce54c1 sched_set_normal +EXPORT_SYMBOL_GPL vmlinux 0x5dd5aef2 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5de412cd k3_ringacc_ring_push +EXPORT_SYMBOL_GPL vmlinux 0x5defe571 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x5e1623ee scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x5e173309 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5e1caa2b ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5e2b9232 spi_controller_dma_map_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x5e352f46 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x5e491813 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e5c3e8d __auxiliary_device_add +EXPORT_SYMBOL_GPL vmlinux 0x5e62ea78 cpufreq_dbs_governor_limits +EXPORT_SYMBOL_GPL vmlinux 0x5e76bb57 k3_ringacc_ring_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5e77cc66 irq_domain_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x5e782b70 dev_pm_opp_detach_genpd +EXPORT_SYMBOL_GPL vmlinux 0x5e798ffb divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5e85415b ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x5e868ddf mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x5e868f69 ahci_platform_enable_clks +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 0x5ecdcf90 ti_sci_get_free_resource +EXPORT_SYMBOL_GPL vmlinux 0x5ed254ce sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5ee2aa12 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x5efcf76e blk_crypto_intersect_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x5f0046c1 __traceiter_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5f0c0fe1 clk_gate_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x5f12d947 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f174d06 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5f17ca27 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f21dde0 bgmac_adjust_link +EXPORT_SYMBOL_GPL vmlinux 0x5f23e3fa insert_resource +EXPORT_SYMBOL_GPL vmlinux 0x5f240586 regulator_get_current_limit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f35b336 __traceiter_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x5f3705f7 dax_inode +EXPORT_SYMBOL_GPL vmlinux 0x5f4908ff i2c_acpi_find_adapter_by_handle +EXPORT_SYMBOL_GPL vmlinux 0x5f54fade acpi_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0x5f6f1e9e dax_get_private +EXPORT_SYMBOL_GPL vmlinux 0x5f728ac5 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x5f75ed15 nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x5f79a51d dev_pm_opp_find_freq_ceil_by_volt +EXPORT_SYMBOL_GPL vmlinux 0x5f7f2ec9 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5f7fd589 pci_d3cold_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f8d3f24 devlink_param_driverinit_value_set +EXPORT_SYMBOL_GPL vmlinux 0x5f912fe4 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x5f9b8ef4 clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x5fa625ed mpi_ec_mul_point +EXPORT_SYMBOL_GPL vmlinux 0x5fa702a3 kvm_write_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x5fb8848b halt_poll_ns_grow_start +EXPORT_SYMBOL_GPL vmlinux 0x5fc0c420 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5fcbb210 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5fce47c9 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x5fcffa80 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5fd1373a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x5fdfcd57 __tracepoint_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x5fe7d68e get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5fe89dde gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5fed88b6 crypto_unregister_ahashes +EXPORT_SYMBOL_GPL vmlinux 0x5ffe782f dev_fill_forward_path +EXPORT_SYMBOL_GPL vmlinux 0x60059784 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x600b508f devm_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x602920a3 mtk_clk_gate_ops_no_setclr +EXPORT_SYMBOL_GPL vmlinux 0x602fb4b8 dev_pm_domain_attach_by_id +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 0x6057d6b0 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x605ab254 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x605d5bfa cache_line_size +EXPORT_SYMBOL_GPL vmlinux 0x6065d657 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x606b4aba devlink_linecard_provision_set +EXPORT_SYMBOL_GPL vmlinux 0x606c9305 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x606dd19a irq_chip_set_wake_parent +EXPORT_SYMBOL_GPL vmlinux 0x607a595b tpm_tis_core_init +EXPORT_SYMBOL_GPL vmlinux 0x607c4683 devlink_info_version_fixed_put +EXPORT_SYMBOL_GPL vmlinux 0x608d25d6 __xas_prev +EXPORT_SYMBOL_GPL vmlinux 0x608d37fd k3_udma_glue_request_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x608edf48 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6091797f synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x609ae866 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60aaf42e wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x60ae0922 power_supply_vbat2ri +EXPORT_SYMBOL_GPL vmlinux 0x60be56d0 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x60c50ba4 nexthop_select_path +EXPORT_SYMBOL_GPL vmlinux 0x60ea1e76 rtnl_register_module +EXPORT_SYMBOL_GPL vmlinux 0x60ebc96f ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x60f30cb8 sysfs_change_owner +EXPORT_SYMBOL_GPL vmlinux 0x60f99e1b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6102578b dev_pm_opp_unregister_set_opp_helper +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 0x614adcb7 of_overlay_remove_all +EXPORT_SYMBOL_GPL vmlinux 0x6156fc45 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x61581dbe pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x61597ff3 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x615abe94 gov_attr_set_put +EXPORT_SYMBOL_GPL vmlinux 0x615d3447 kernel_read_file_from_path +EXPORT_SYMBOL_GPL vmlinux 0x616a990f vp_legacy_get_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0x6181e79f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x61857644 sk_msg_trim +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 0x61b5250a pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x61bafccf iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x61c1ca29 __SCK__tp_func_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x61c39bb6 dm_audit_log_ti +EXPORT_SYMBOL_GPL vmlinux 0x61e41c27 __netif_set_xps_queue +EXPORT_SYMBOL_GPL vmlinux 0x61f67c92 phy_gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0x61f703c3 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x61fcbc17 genphy_c45_read_lpa +EXPORT_SYMBOL_GPL vmlinux 0x62036f58 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x621314e4 crypto_grab_kpp +EXPORT_SYMBOL_GPL vmlinux 0x6225f5ac devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622ec189 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x62377a7b blk_io_schedule +EXPORT_SYMBOL_GPL vmlinux 0x62398fd3 device_match_name +EXPORT_SYMBOL_GPL vmlinux 0x6241a319 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x6246a629 synchronize_rcu_tasks_trace +EXPORT_SYMBOL_GPL vmlinux 0x6257b292 pci_epc_set_bar +EXPORT_SYMBOL_GPL vmlinux 0x6257dda7 clk_rate_exclusive_get +EXPORT_SYMBOL_GPL vmlinux 0x6259d291 clk_restore_context +EXPORT_SYMBOL_GPL vmlinux 0x626ab488 icc_get_name +EXPORT_SYMBOL_GPL vmlinux 0x62737484 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62a61e0c nfs42_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0x62a6367d regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x62b90f2c serial8250_rpm_get_tx +EXPORT_SYMBOL_GPL vmlinux 0x62bb09bf clocks_calc_mult_shift +EXPORT_SYMBOL_GPL vmlinux 0x62c0dd34 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x62c12663 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x62c19ea0 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x62ca6150 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x62de3fcd subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x62e7b4fe fscrypt_add_test_dummy_key +EXPORT_SYMBOL_GPL vmlinux 0x62f95bb2 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x630d4c30 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x63121ee3 ethnl_cable_test_pulse +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 0x6328b431 gpiochip_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x63309e39 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x633267ea thermal_zone_get_slope +EXPORT_SYMBOL_GPL vmlinux 0x634b9d42 __SCK__tp_func_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x63588b62 mctrl_gpio_init +EXPORT_SYMBOL_GPL vmlinux 0x635c2a1d devm_request_pci_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x63710396 devlink_dpipe_table_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63778ad6 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x63860da7 mtk_eint_do_init +EXPORT_SYMBOL_GPL vmlinux 0x638aff11 proc_douintvec_minmax +EXPORT_SYMBOL_GPL vmlinux 0x638c2561 phy_resolve_aneg_linkmode +EXPORT_SYMBOL_GPL vmlinux 0x639a6dfa get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x63a67b86 ata_pci_shutdown_one +EXPORT_SYMBOL_GPL vmlinux 0x63ad702c regulator_irq_map_event_simple +EXPORT_SYMBOL_GPL vmlinux 0x63c08029 clk_bulk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0x63c45bd1 dprc_reset_container +EXPORT_SYMBOL_GPL vmlinux 0x63c59e25 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x63cd7e0a genphy_c45_baset1_read_status +EXPORT_SYMBOL_GPL vmlinux 0x63e543ca phy_10gbit_fec_features +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x64132bb0 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x641dae78 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x641f7924 proc_create_net_single +EXPORT_SYMBOL_GPL vmlinux 0x642583cb dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x6427572b tegra210_clk_emc_dll_enable +EXPORT_SYMBOL_GPL vmlinux 0x642f00e9 of_reserved_mem_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6437fd32 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x643b06b0 zynqmp_pm_clock_setrate +EXPORT_SYMBOL_GPL vmlinux 0x643d111d dax_region_put +EXPORT_SYMBOL_GPL vmlinux 0x644d98d7 device_register +EXPORT_SYMBOL_GPL vmlinux 0x64586aac bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x645eadb6 __fscrypt_prepare_link +EXPORT_SYMBOL_GPL vmlinux 0x64609d25 __tracepoint_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0x6466cbe1 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x646f6ba8 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x6472f0ca ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x647377c0 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6477885b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6485cd35 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x648dfc82 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x649043da rpi_firmware_get +EXPORT_SYMBOL_GPL vmlinux 0x64a31445 mutex_lock_io +EXPORT_SYMBOL_GPL vmlinux 0x64a3ab07 __fscrypt_prepare_lookup +EXPORT_SYMBOL_GPL vmlinux 0x64b2d918 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x64ceb286 vp_modern_get_driver_features +EXPORT_SYMBOL_GPL vmlinux 0x64e04477 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x64e27c4f synth_event_delete +EXPORT_SYMBOL_GPL vmlinux 0x64e53dd2 of_phandle_iterator_next +EXPORT_SYMBOL_GPL vmlinux 0x64f0990b fsl_mc_populate_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0x64f36620 dax_flush +EXPORT_SYMBOL_GPL vmlinux 0x64f74abf __tracepoint_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0x64fdfc26 pci_epf_remove_vepf +EXPORT_SYMBOL_GPL vmlinux 0x6502d9c2 xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x6505f1cf blk_req_zone_write_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6506a8ef housekeeping_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x650c005e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x651d10e5 ktime_get_tai_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x651ee6ed ip_valid_fib_dump_req +EXPORT_SYMBOL_GPL vmlinux 0x6531a37f mpi_add +EXPORT_SYMBOL_GPL vmlinux 0x653870f1 of_usb_get_dr_mode_by_phy +EXPORT_SYMBOL_GPL vmlinux 0x65392c7a led_blink_set +EXPORT_SYMBOL_GPL vmlinux 0x653ed5ad fsl_mc_allocate_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6545268e __tracepoint_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0x65498057 blk_crypto_update_capabilities +EXPORT_SYMBOL_GPL vmlinux 0x654a8793 __irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x655c4833 account_locked_vm +EXPORT_SYMBOL_GPL vmlinux 0x656ef98a dax_iomap_fault +EXPORT_SYMBOL_GPL vmlinux 0x6575520b fuse_mount_remove +EXPORT_SYMBOL_GPL vmlinux 0x657a3f66 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x658454ff scsi_host_complete_all_commands +EXPORT_SYMBOL_GPL vmlinux 0x659166c8 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x65a94593 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x65acf90c sbitmap_weight +EXPORT_SYMBOL_GPL vmlinux 0x65aeb318 dev_pm_domain_start +EXPORT_SYMBOL_GPL vmlinux 0x65b00912 mmc_send_abort_tuning +EXPORT_SYMBOL_GPL vmlinux 0x65c454fa nvdimm_region_notify +EXPORT_SYMBOL_GPL vmlinux 0x65c62492 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cd945f dev_pm_opp_of_add_table_noclk +EXPORT_SYMBOL_GPL vmlinux 0x65d05cb0 switchdev_handle_port_obj_del_foreign +EXPORT_SYMBOL_GPL vmlinux 0x65e01af9 __sync_icache_dcache +EXPORT_SYMBOL_GPL vmlinux 0x65f2e6b4 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x660eb6bd devlink_free +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661763ca blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6638815d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x66392e5c tty_port_default_client_ops +EXPORT_SYMBOL_GPL vmlinux 0x663bb448 devlink_fmsg_obj_nest_end +EXPORT_SYMBOL_GPL vmlinux 0x663be724 tcp_reno_undo_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x6649ef86 handle_fasteoi_nmi +EXPORT_SYMBOL_GPL vmlinux 0x664a969f xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x664eb54a k3_ringacc_ring_reset_dma +EXPORT_SYMBOL_GPL vmlinux 0x665e92a0 clk_set_duty_cycle +EXPORT_SYMBOL_GPL vmlinux 0x666b716f __pci_hp_initialize +EXPORT_SYMBOL_GPL vmlinux 0x66798b85 fwnode_usb_role_switch_get +EXPORT_SYMBOL_GPL vmlinux 0x667e926c usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668ba2ab pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x66ab7b52 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x66b97421 sfp_link_up +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66db64da regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x66df721b rockchip_register_restart_notifier +EXPORT_SYMBOL_GPL vmlinux 0x66e2df2e em_dev_unregister_perf_domain +EXPORT_SYMBOL_GPL vmlinux 0x66e55da6 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x66f82c29 tcp_set_keepalive +EXPORT_SYMBOL_GPL vmlinux 0x670d118c usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x672091f4 __traceiter_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0x672ba7c4 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673ea3cb thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x67429c91 __SCK__tp_func_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x674413e7 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x676ba61e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x676c688f k3_ringacc_ring_free +EXPORT_SYMBOL_GPL vmlinux 0x67792016 __scsi_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x677f914f wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x677ff88c xas_store +EXPORT_SYMBOL_GPL vmlinux 0x678551f7 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679ec09b kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x67a4338e of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x67ab9dce dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x67af20c2 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x67b79c8f trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x67d6b9de bpf_offload_dev_create +EXPORT_SYMBOL_GPL vmlinux 0x67da9f7c sha512_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x67df61f4 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x67e8213b topology_clear_scale_freq_source +EXPORT_SYMBOL_GPL vmlinux 0x67f9d1ff fscrypt_ioctl_add_key +EXPORT_SYMBOL_GPL vmlinux 0x67fca154 crypto_unregister_acomps +EXPORT_SYMBOL_GPL vmlinux 0x6803eb0a pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x68154a36 virtqueue_get_buf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x681eea8b devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6823289f regmap_field_bulk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6829cbee mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x682ff057 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x683f21cf serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x68460527 blkcg_set_fc_appid +EXPORT_SYMBOL_GPL vmlinux 0x684ca117 zynqmp_pm_get_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0x6868364e xdp_rxq_info_unreg +EXPORT_SYMBOL_GPL vmlinux 0x686d04c7 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x6884db88 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x68912de7 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x6892e3c3 kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x68952493 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x68bcef03 acpi_subsys_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x68c2a800 pm_genpd_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x68d1fdb8 rio_free_net +EXPORT_SYMBOL_GPL vmlinux 0x68fa955b rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x690f585e phy_basic_ports_array +EXPORT_SYMBOL_GPL vmlinux 0x691068e4 pci_hp_destroy +EXPORT_SYMBOL_GPL vmlinux 0x691d8fa0 css_next_descendant_pre +EXPORT_SYMBOL_GPL vmlinux 0x69206426 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x69226572 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6930cf1a xdp_rxq_info_unused +EXPORT_SYMBOL_GPL vmlinux 0x6934e0b9 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x694f1504 acpi_device_get_match_data +EXPORT_SYMBOL_GPL vmlinux 0x6961f166 sysfs_create_mount_point +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 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697dd3cd efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x69857593 tty_ldisc_receive_buf +EXPORT_SYMBOL_GPL vmlinux 0x69ab2486 usb_of_get_device_node +EXPORT_SYMBOL_GPL vmlinux 0x69ad72ea free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x69c152e2 nvdimm_delete +EXPORT_SYMBOL_GPL vmlinux 0x69c487db pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x69c4e6ad md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x69cf0632 mpi_fromstr +EXPORT_SYMBOL_GPL vmlinux 0x69cf9da8 fb_deferred_io_mmap +EXPORT_SYMBOL_GPL vmlinux 0x69d16e35 switchdev_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0x69e683de uuid_gen +EXPORT_SYMBOL_GPL vmlinux 0x69ee2220 linear_range_get_selector_high +EXPORT_SYMBOL_GPL vmlinux 0x69eee0a2 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x69fbb095 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a040be5 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x6a05b65b fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x6a078246 sock_map_close +EXPORT_SYMBOL_GPL vmlinux 0x6a14d3af unregister_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a31d633 __traceiter_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6a36ff74 __traceiter_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0x6a421062 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x6a460dc5 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a59910b vp_legacy_get_features +EXPORT_SYMBOL_GPL vmlinux 0x6a5bb9ae phy_resolve_aneg_pause +EXPORT_SYMBOL_GPL vmlinux 0x6a619f2a fsl_mc_bus_dpcon_type +EXPORT_SYMBOL_GPL vmlinux 0x6a635a07 rio_del_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0x6a660189 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x6a69f62f rockchip_clk_init +EXPORT_SYMBOL_GPL vmlinux 0x6a6aa3e9 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93c9b2 zynqmp_pm_pinctrl_get_function +EXPORT_SYMBOL_GPL vmlinux 0x6a9fba42 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x6aa07e85 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6aa2a877 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x6aad9152 xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x6ab166d5 devl_rate_leaf_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6abcb3e6 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x6abd5915 spi_mem_dirmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6ad05d76 regmap_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0x6ad0da00 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x6b05a6a6 rockchip_pcie_deinit_phys +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b198c77 led_colors +EXPORT_SYMBOL_GPL vmlinux 0x6b1e20dd acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0x6b2b69f7 static_key_enable +EXPORT_SYMBOL_GPL vmlinux 0x6b36e07d devlink_linecard_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6b3ae022 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x6b4045ee zynqmp_pm_get_api_version +EXPORT_SYMBOL_GPL vmlinux 0x6b413c9b sfp_link_down +EXPORT_SYMBOL_GPL vmlinux 0x6b47f8a4 hisi_clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x6b5bc852 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x6b63623f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x6b693a84 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x6b6c244d dma_resv_get_singleton +EXPORT_SYMBOL_GPL vmlinux 0x6b72e37e irq_domain_disconnect_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0x6b772eb1 acpi_irq_create_hierarchy +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 0x6b843fad iommu_dev_disable_feature +EXPORT_SYMBOL_GPL vmlinux 0x6ba36c6a hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x6baa828e devlink_health_reporter_create +EXPORT_SYMBOL_GPL vmlinux 0x6bb144b0 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x6bbd8324 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x6bcdedc0 mpi_point_init +EXPORT_SYMBOL_GPL vmlinux 0x6bd1aa56 stack_trace_save +EXPORT_SYMBOL_GPL vmlinux 0x6bd2b1fb mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6bd2c8ec cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6bd739d1 phy_speed_down +EXPORT_SYMBOL_GPL vmlinux 0x6bdef35c acpi_ec_mark_gpe_for_wake +EXPORT_SYMBOL_GPL vmlinux 0x6be3a96b hv_remove_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0x6be4e6e1 tty_save_termios +EXPORT_SYMBOL_GPL vmlinux 0x6c0f69cb devlink_net +EXPORT_SYMBOL_GPL vmlinux 0x6c0f94a9 fsl_mc_device_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c205008 mpi_print +EXPORT_SYMBOL_GPL vmlinux 0x6c262a57 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x6c275860 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c2c6a6a sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c3416ab tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c3f70e0 guid_gen +EXPORT_SYMBOL_GPL vmlinux 0x6c3fe8ad tcp_bpf_sendmsg_redir +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c552492 regmap_add_irq_chip_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6c5ad0cd kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c7a34e7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6c8cb722 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x6c956075 __SCK__tp_func_devlink_hwerr +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6cbc06e8 scmi_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cbc8c29 spi_controller_dma_unmap_mem_op_data +EXPORT_SYMBOL_GPL vmlinux 0x6ce10eb0 trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x6cf60168 tty_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0x6cf64cf0 dev_attr_ncq_prio_supported +EXPORT_SYMBOL_GPL vmlinux 0x6cf92630 blk_mq_sched_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x6cfabcdc sbitmap_queue_resize +EXPORT_SYMBOL_GPL vmlinux 0x6d02af62 devm_of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0x6d02d9db iomap_is_partially_uptodate +EXPORT_SYMBOL_GPL vmlinux 0x6d04891d inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x6d04ea3b seg6_do_srh_encap +EXPORT_SYMBOL_GPL vmlinux 0x6d09843f copy_bpf_fprog_from_user +EXPORT_SYMBOL_GPL vmlinux 0x6d0ae550 pinctrl_gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x6d0b3c76 vp_legacy_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6d1b7037 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3e6c07 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6d467b08 arm_smccc_1_1_get_conduit +EXPORT_SYMBOL_GPL vmlinux 0x6d5ef1a8 spi_mem_dirmap_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d6757e8 cpufreq_driver_resolve_freq +EXPORT_SYMBOL_GPL vmlinux 0x6d6d74f2 public_key_signature_free +EXPORT_SYMBOL_GPL vmlinux 0x6d6fec1f ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6d7832b7 __stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x6d7e951e rcu_exp_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x6d8a45b4 devm_clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6d8e8612 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x6d9add5b skb_defer_rx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6da45dcf usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6da5fceb acpi_subsys_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6da72c05 mctp_register_netdev +EXPORT_SYMBOL_GPL vmlinux 0x6dacdee3 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x6dbaafd3 put_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6dbad3e8 of_pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x6dbd7848 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x6dc30a75 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6dc3d445 gpiod_toggle_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6dd5680d sprint_symbol_build_id +EXPORT_SYMBOL_GPL vmlinux 0x6dd7d9ab i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x6ddddcc0 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6dde0f38 dax_layout_busy_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6de16597 __usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6de1f1a3 pci_epc_remove_epf +EXPORT_SYMBOL_GPL vmlinux 0x6df3266a kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x6e09d93d __SCK__tp_func_map +EXPORT_SYMBOL_GPL vmlinux 0x6e0ae173 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x6e28a1f9 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0x6e2af0fe tcp_enter_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x6e3347ec devlink_priv +EXPORT_SYMBOL_GPL vmlinux 0x6e353c26 mpi_rshift +EXPORT_SYMBOL_GPL vmlinux 0x6e38f8d1 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL vmlinux 0x6e488c30 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e4aa78d k3_udma_glue_rx_flow_enable +EXPORT_SYMBOL_GPL vmlinux 0x6e4b97df mdio_mux_init +EXPORT_SYMBOL_GPL vmlinux 0x6e553d76 devm_led_classdev_register_ext +EXPORT_SYMBOL_GPL vmlinux 0x6e59f821 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x6e5d43a2 icmp_build_probe +EXPORT_SYMBOL_GPL vmlinux 0x6e663f3d usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x6e6e043c crypto_stats_akcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7c1e02 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e932215 extcon_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e980bb9 dprc_remove_devices +EXPORT_SYMBOL_GPL vmlinux 0x6e9c924f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x6eb04f46 register_random_vmfork_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ebe366f ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6ed01578 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6ed7b491 spi_mem_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6ede28a5 tegra_xusb_padctl_legacy_probe +EXPORT_SYMBOL_GPL vmlinux 0x6ee8c94b sfp_get_module_eeprom +EXPORT_SYMBOL_GPL vmlinux 0x6ef0855c ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6ef4fa8b crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x6ef6b54f ktime_get_boot_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x6efc99ae pci_epc_linkup +EXPORT_SYMBOL_GPL vmlinux 0x6efcc408 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x6f0b1e3c device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x6f12560a get_old_timespec32 +EXPORT_SYMBOL_GPL vmlinux 0x6f2017de misc_cg_set_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6f34906d sysfs_break_active_protection +EXPORT_SYMBOL_GPL vmlinux 0x6f5348ac efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x6f6b52e9 __ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x6f6d3770 spi_mem_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f6ded8f fuse_fill_super_common +EXPORT_SYMBOL_GPL vmlinux 0x6f6e0bff perf_aux_output_end +EXPORT_SYMBOL_GPL vmlinux 0x6f78994f folio_wait_writeback_killable +EXPORT_SYMBOL_GPL vmlinux 0x6f7e6040 irq_has_action +EXPORT_SYMBOL_GPL vmlinux 0x6f8493b5 imx_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x6f8bbef5 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6f94ee37 xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0x6f94fa9b pci_epc_get_msi +EXPORT_SYMBOL_GPL vmlinux 0x6f9e763b timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x6fbd0d77 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6fc0e706 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6fcbd29e ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x6fcef6ab ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x6fe5e77d gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7006586e iommu_get_group_resv_regions +EXPORT_SYMBOL_GPL vmlinux 0x70198b04 serdev_device_write +EXPORT_SYMBOL_GPL vmlinux 0x7028eefe of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x7029d6b5 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x702bd11a ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7037577c tracing_snapshot_cond_disable +EXPORT_SYMBOL_GPL vmlinux 0x7041a3a6 wbt_disable_default +EXPORT_SYMBOL_GPL vmlinux 0x70463e96 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x70552d6a pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x706918f8 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x7073c04f phy_10_100_features_array +EXPORT_SYMBOL_GPL vmlinux 0x707e3f80 crypto_unregister_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x708fdb9f strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0x709b8ab4 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x709ccbaf md_account_bio +EXPORT_SYMBOL_GPL vmlinux 0x70a52218 mtk_clk_unregister_muxes +EXPORT_SYMBOL_GPL vmlinux 0x70a60ea4 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x70b10190 devm_bitmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x70b73843 device_show_int +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 0x70d8cd73 of_remove_property +EXPORT_SYMBOL_GPL vmlinux 0x70d905ac ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x70efdaed icc_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x70fbae4d cppc_allow_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x70fc8273 mtk_pinconf_adv_drive_get +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711c6246 __ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7129a6f4 osc_sb_native_usb4_support_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x712f4a15 bpf_map_inc +EXPORT_SYMBOL_GPL vmlinux 0x7145d65a anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7146cd39 irq_get_default_host +EXPORT_SYMBOL_GPL vmlinux 0x71591988 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x715a43ce priv_to_devlink +EXPORT_SYMBOL_GPL vmlinux 0x7160b268 pci_status_get_and_clear_errors +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716438cb __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x71724493 mctrl_gpio_enable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7181db30 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7184422b mtk_pinconf_bias_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0x7192de42 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x71945135 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x7195940a mctrl_gpio_disable_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7198343c rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a20f4a __SCK__tp_func_non_standard_event +EXPORT_SYMBOL_GPL vmlinux 0x71a91d3f led_trigger_write +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 0x71bce235 ethtool_set_ethtool_phy_ops +EXPORT_SYMBOL_GPL vmlinux 0x71c059d8 __traceiter_map +EXPORT_SYMBOL_GPL vmlinux 0x71c594a2 kvm_vcpu_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x71d18d64 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x71d2b177 kthread_data +EXPORT_SYMBOL_GPL vmlinux 0x71d53bde pci_bridge_emul_conf_read +EXPORT_SYMBOL_GPL vmlinux 0x71da63a3 sysfs_update_groups +EXPORT_SYMBOL_GPL vmlinux 0x71e7cc9f uart_xchar_out +EXPORT_SYMBOL_GPL vmlinux 0x71fc2b66 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x7217955d of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x721a46b5 edac_pci_add_device +EXPORT_SYMBOL_GPL vmlinux 0x72291550 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x7237e950 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x723f50d2 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x7240263e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x7242ac2a tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x724a06df usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x724dc2db ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x72551eee devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x725a05a7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x725fea4f debugfs_remove +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 0x7279ffa1 mtk_clk_unregister_gates +EXPORT_SYMBOL_GPL vmlinux 0x727f557c devm_of_led_get +EXPORT_SYMBOL_GPL vmlinux 0x7283161b percpu_ref_switch_to_percpu +EXPORT_SYMBOL_GPL vmlinux 0x72878b52 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x728afe22 clean_record_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0x728f068e usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x72934785 dma_mmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x72956a9e ip6_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x72956fac set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x72a80bb2 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x72bfb001 extcon_get_property_capability +EXPORT_SYMBOL_GPL vmlinux 0x72c1987d devm_gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x72cd06a1 mtk_clk_gate_ops_no_setclr_inv +EXPORT_SYMBOL_GPL vmlinux 0x72d267dc nvmem_del_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0x72edf918 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x72f1ff32 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x73136ce0 iommu_setup_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0x7317fd39 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x732852fe xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0x733005fb tcp_rate_check_app_limited +EXPORT_SYMBOL_GPL vmlinux 0x733237ca rockchip_register_softrst +EXPORT_SYMBOL_GPL vmlinux 0x7341015d serial8250_em485_stop_tx +EXPORT_SYMBOL_GPL vmlinux 0x7348d000 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73505f6c clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7351fcb1 devlink_remote_reload_actions_performed +EXPORT_SYMBOL_GPL vmlinux 0x7360632e pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x73758ff8 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x7376e71b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7389374f vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x739a8f82 dpcon_set_notification +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a7d395 kthread_cancel_delayed_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x73a83cc0 devm_clk_get_optional_prepared +EXPORT_SYMBOL_GPL vmlinux 0x73aba9be rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x73b65921 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73cc8631 oiap +EXPORT_SYMBOL_GPL vmlinux 0x73d52ca2 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x73deefd2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x73e364c3 device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0x73e41b02 hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x73f4e5f1 dprc_set_obj_irq +EXPORT_SYMBOL_GPL vmlinux 0x74006b85 device_create_managed_software_node +EXPORT_SYMBOL_GPL vmlinux 0x7401d0bb bio_start_io_acct_time +EXPORT_SYMBOL_GPL vmlinux 0x741d34b2 icc_put +EXPORT_SYMBOL_GPL vmlinux 0x7428f9a1 acpi_pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x742a153c is_skb_forwardable +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 0x7451a1c7 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x745c554d ata_sas_tport_delete +EXPORT_SYMBOL_GPL vmlinux 0x746dd813 synth_event_trace_end +EXPORT_SYMBOL_GPL vmlinux 0x747477b7 mptcp_pm_get_local_addr_max +EXPORT_SYMBOL_GPL vmlinux 0x748f9821 __sock_recv_cmsgs +EXPORT_SYMBOL_GPL vmlinux 0x749e5118 iomap_seek_data +EXPORT_SYMBOL_GPL vmlinux 0x74a22bb4 k3_udma_glue_push_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0x74aaae8d tps65912_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x74b4ea30 clean_acked_data_disable +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bc356d cpufreq_table_index_unsorted +EXPORT_SYMBOL_GPL vmlinux 0x74c7bffa stack_trace_snprint +EXPORT_SYMBOL_GPL vmlinux 0x74d7ded3 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74dd310f gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x74e33e25 msg_zerocopy_realloc +EXPORT_SYMBOL_GPL vmlinux 0x74e73871 housekeeping_overridden +EXPORT_SYMBOL_GPL vmlinux 0x74ec8d1d skb_consume_udp +EXPORT_SYMBOL_GPL vmlinux 0x74fc30a3 dev_pm_opp_get_required_pstate +EXPORT_SYMBOL_GPL vmlinux 0x74fe9547 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x7504293a pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x750cafc7 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75188687 pci_ecam_create +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7531b824 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x75392f4d tcp_leave_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0x754d4d9c rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7550019e __auxiliary_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7559bddb __traceiter_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x757c1bbb housekeeping_any_cpu +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 0x75927310 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x759bfe36 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x759e67ec spi_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x75a4417d gpiochip_irq_domain_activate +EXPORT_SYMBOL_GPL vmlinux 0x75aa043b md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x75c07a51 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x75c489d5 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x75d4dbeb xhci_drop_endpoint +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 0x75f98870 generic_online_page +EXPORT_SYMBOL_GPL vmlinux 0x75fb9062 arch_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x761241fb irq_domain_free_irqs_parent +EXPORT_SYMBOL_GPL vmlinux 0x761d5927 crypto_wait_for_test +EXPORT_SYMBOL_GPL vmlinux 0x7621add8 pwm_adjust_config +EXPORT_SYMBOL_GPL vmlinux 0x76398cde dax_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76472b04 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x764c85f1 fscrypt_ioctl_remove_key_all_users +EXPORT_SYMBOL_GPL vmlinux 0x764ffefa page_reporting_register +EXPORT_SYMBOL_GPL vmlinux 0x7659cc14 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7665a95b idr_remove +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76920e43 __traceiter_neigh_event_send_dead +EXPORT_SYMBOL_GPL vmlinux 0x769cefb5 percpu_ref_switch_to_atomic +EXPORT_SYMBOL_GPL vmlinux 0x76a08cb7 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x76a2e0c6 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x76a6017a regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x76b43446 __synth_event_gen_cmd_start +EXPORT_SYMBOL_GPL vmlinux 0x76bad21c divider_ro_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x76c4b010 crypto_register_skciphers +EXPORT_SYMBOL_GPL vmlinux 0x76ca18a4 gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x76d680f6 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e548f3 to_nvdimm_bus_dev +EXPORT_SYMBOL_GPL vmlinux 0x76e85b92 gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x76eeeb0f sha384_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x76ef91ed clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76f54d6c __cpuhp_state_add_instance +EXPORT_SYMBOL_GPL vmlinux 0x7706960b crypto_unregister_acomp +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x77222306 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x772b0f64 __wake_up_pollfree +EXPORT_SYMBOL_GPL vmlinux 0x7733334d xfrm_state_mtu +EXPORT_SYMBOL_GPL vmlinux 0x773884c5 mmc_pwrseq_register +EXPORT_SYMBOL_GPL vmlinux 0x773c6e73 fsnotify_destroy_mark +EXPORT_SYMBOL_GPL vmlinux 0x774055d9 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x774357fa blk_crypto_evict_key +EXPORT_SYMBOL_GPL vmlinux 0x774698f7 serdev_device_set_tiocm +EXPORT_SYMBOL_GPL vmlinux 0x774d3878 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x774f16ef __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x77522cf6 sbitmap_get_shallow +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775c14aa tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x7760208d pci_epc_mem_init +EXPORT_SYMBOL_GPL vmlinux 0x776784fd tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x77691e9a dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7778d967 ip6_dst_lookup_tunnel +EXPORT_SYMBOL_GPL vmlinux 0x77842c5b crypto_stats_compress +EXPORT_SYMBOL_GPL vmlinux 0x778e8382 tegra_bpmp_get +EXPORT_SYMBOL_GPL vmlinux 0x779010ce xdp_return_frame_rx_napi +EXPORT_SYMBOL_GPL vmlinux 0x77918311 mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0x7791e066 dw_pcie_read +EXPORT_SYMBOL_GPL vmlinux 0x77a656d6 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b70267 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x77ca2e1c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x77e75be3 sfp_bus_put +EXPORT_SYMBOL_GPL vmlinux 0x77e8c846 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x77ecf68d memalloc_socks_key +EXPORT_SYMBOL_GPL vmlinux 0x77ee0707 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x77f24400 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x78095da8 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x780f06f2 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x781601b8 iopf_queue_flush_dev +EXPORT_SYMBOL_GPL vmlinux 0x78176ba1 devlink_param_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78335900 platform_get_irq_byname_optional +EXPORT_SYMBOL_GPL vmlinux 0x7834c019 phy_10gbit_full_features +EXPORT_SYMBOL_GPL vmlinux 0x784852d7 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78746daf clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788bfbad ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x789c73d9 rcu_cpu_stall_suppress_at_boot +EXPORT_SYMBOL_GPL vmlinux 0x78a48817 tty_port_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x78ac0646 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x78b6677d dev_queue_xmit_nit +EXPORT_SYMBOL_GPL vmlinux 0x78bb0088 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x78ddb76b dmi_match +EXPORT_SYMBOL_GPL vmlinux 0x78f29613 xdp_rxq_info_reg_mem_model +EXPORT_SYMBOL_GPL vmlinux 0x78f50753 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x78f5462c umd_load_blob +EXPORT_SYMBOL_GPL vmlinux 0x78f990b9 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x790231dc fs_dax_get_by_bdev +EXPORT_SYMBOL_GPL vmlinux 0x7907d7ce bpf_trace_run11 +EXPORT_SYMBOL_GPL vmlinux 0x790be0b9 usb_bus_idr +EXPORT_SYMBOL_GPL vmlinux 0x790cc330 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x79128094 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x7912db91 i2c_acpi_new_device_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7918d817 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x791b3c6f switchdev_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0x7920b5b9 irq_domain_remove_sim +EXPORT_SYMBOL_GPL vmlinux 0x79235e07 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7927251a msi_next_desc +EXPORT_SYMBOL_GPL vmlinux 0x7929029d bio_clone_blkg_association +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 0x7941aeb6 pci_disable_sriov +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 0x795596b5 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x796e9f88 regulator_bulk_set_supply_names +EXPORT_SYMBOL_GPL vmlinux 0x7980059d mptcp_diag_fill_info +EXPORT_SYMBOL_GPL vmlinux 0x79879c0f dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x798b7682 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x79abb165 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x79b87c66 ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0x79bc842c usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x79c97d5f ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79cc38af gpiochip_irq_unmap +EXPORT_SYMBOL_GPL vmlinux 0x79dd5adf crypto_stats_kpp_set_secret +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79eaa537 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x79f1aa44 find_iova +EXPORT_SYMBOL_GPL vmlinux 0x79f54ed9 clk_regmap_gate_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x79f697e4 lzorle1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x79f76df8 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x7a1c326a devm_i2c_add_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7a1cbe8c i2c_dw_validate_speed +EXPORT_SYMBOL_GPL vmlinux 0x7a33c7fa bpf_map_inc_with_uref +EXPORT_SYMBOL_GPL vmlinux 0x7a34db77 devlink_alloc_ns +EXPORT_SYMBOL_GPL vmlinux 0x7a41d45f fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x7a5d47d7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7a6b2525 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x7a73e605 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7a81541b async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7a86ac1a disk_alloc_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0x7a86eb04 spi_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0x7a880b20 gnttab_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7a8de49a ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a98f4b4 copy_from_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0x7a9c86e4 __devm_clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x7a9e4c23 software_node_register_node_group +EXPORT_SYMBOL_GPL vmlinux 0x7ab17cfc regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x7ac10ad8 icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac30f0e __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7ac46420 cpuidle_get_driver +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 0x7afcb7db __kprobe_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x7afe0e5e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7afe324e halt_poll_ns_grow +EXPORT_SYMBOL_GPL vmlinux 0x7aff0121 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7b0e4319 dm_bio_get_target_bio_nr +EXPORT_SYMBOL_GPL vmlinux 0x7b178afe unlock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0x7b206c02 __fscrypt_encrypt_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7b30ea1c kvm_vcpu_wake_up +EXPORT_SYMBOL_GPL vmlinux 0x7b3c17e3 pci_set_host_bridge_release +EXPORT_SYMBOL_GPL vmlinux 0x7b412ff8 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7b511096 device_link_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b5452b8 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x7b580c10 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x7b5a4926 sha1_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x7b65a64c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6311 devlink_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0x7b6d8266 memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0x7b6f9536 acpi_register_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b709524 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b725f09 dw8250_do_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x7b7cde98 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7b8910f4 kfence_sample_interval +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9793a2 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x7b9e58be imx8ulp_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0x7bb045a7 __request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bb0a142 fwnode_device_is_available +EXPORT_SYMBOL_GPL vmlinux 0x7bb3031d dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7bb441dd gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x7bbd1513 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x7bd33dc0 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7bd8d717 i2c_acpi_find_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0x7bd90a23 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7bdf3b32 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7be59c9d con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x7be77dfb tpm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7bed6704 shmem_file_setup_with_mnt +EXPORT_SYMBOL_GPL vmlinux 0x7bfca25d fwnode_graph_get_remote_port_parent +EXPORT_SYMBOL_GPL vmlinux 0x7c0db609 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7c101b0b pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x7c291e86 show_rcu_tasks_trace_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0x7c2ce364 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x7c35e60a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x7c399202 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x7c3d8a4b icc_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0x7c441db8 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7c5e6c03 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7c5f3711 ioasid_unregister_allocator +EXPORT_SYMBOL_GPL vmlinux 0x7c86e4e2 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7c8b6106 clk_hw_unregister_composite +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 0x7ca8075b fib_nh_common_release +EXPORT_SYMBOL_GPL vmlinux 0x7cb1aea1 devlink_dpipe_header_ethernet +EXPORT_SYMBOL_GPL vmlinux 0x7cb803de btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x7cc423c5 iomap_ioend_try_merge +EXPORT_SYMBOL_GPL vmlinux 0x7cc949ee page_endio +EXPORT_SYMBOL_GPL vmlinux 0x7ccd372f perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x7cceaf92 zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc2bee virtqueue_add_inbuf_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7ce5bca2 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf721d9 dma_alloc_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d056171 switchdev_handle_port_obj_add +EXPORT_SYMBOL_GPL vmlinux 0x7d0597ec ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x7d079296 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7d1a2241 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x7d1bb1d4 tnum_strn +EXPORT_SYMBOL_GPL vmlinux 0x7d2dd7c0 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x7d309b48 fscrypt_set_bio_crypt_ctx_bh +EXPORT_SYMBOL_GPL vmlinux 0x7d34c067 nd_region_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d471321 zynqmp_pm_pinctrl_release +EXPORT_SYMBOL_GPL vmlinux 0x7d4c7722 bdev_disk_changed +EXPORT_SYMBOL_GPL vmlinux 0x7d4d1b43 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7d51cbb9 dev_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7d558968 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d61f03d dpbp_reset +EXPORT_SYMBOL_GPL vmlinux 0x7d6e371f dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x7d763072 acomp_request_free +EXPORT_SYMBOL_GPL vmlinux 0x7d769b24 device_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7d8423be power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7d914a45 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x7d928786 fscrypt_set_context +EXPORT_SYMBOL_GPL vmlinux 0x7d92c14f syscon_regmap_lookup_by_phandle_args +EXPORT_SYMBOL_GPL vmlinux 0x7d97432e iomap_file_unshare +EXPORT_SYMBOL_GPL vmlinux 0x7dae5580 skb_segment_list +EXPORT_SYMBOL_GPL vmlinux 0x7dafdc51 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de39e07 phy_basic_t1_features_array +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7de6cc23 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x7defc870 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x7e055eb8 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x7e159064 crypto_shash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x7e1cfc48 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7e376fb1 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7e3b4a1c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7e3bdecd __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x7e555e55 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x7e5db80b pstore_name_to_type +EXPORT_SYMBOL_GPL vmlinux 0x7e5f45fe acpi_dev_get_dma_resources +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7926c0 imx_unregister_hw_clocks +EXPORT_SYMBOL_GPL vmlinux 0x7e7a47c9 pci_acpi_clear_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0x7e7a584e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7e7e3f58 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7e80f1c2 dev_pm_opp_sync_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7e8d8619 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x7e917894 __SCK__tp_func_unmap +EXPORT_SYMBOL_GPL vmlinux 0x7e943b45 devlink_port_attrs_pci_sf_set +EXPORT_SYMBOL_GPL vmlinux 0x7ea75c24 __wake_up_locked_key_bookmark +EXPORT_SYMBOL_GPL vmlinux 0x7eb1795e __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x7eb24434 __phy_modify +EXPORT_SYMBOL_GPL vmlinux 0x7eb808d0 add_cpu +EXPORT_SYMBOL_GPL vmlinux 0x7edf51bb devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x7edfdb92 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ee330ad thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7eea6b8b pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0x7eecdd1e iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ef1db0a thermal_zone_device_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ef2dacb acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7ef600f9 fsverity_file_open +EXPORT_SYMBOL_GPL vmlinux 0x7efa19db ip_fib_metrics_init +EXPORT_SYMBOL_GPL vmlinux 0x7f00bdac devlink_resource_register +EXPORT_SYMBOL_GPL vmlinux 0x7f02a9ca ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7f13e432 regulator_set_suspend_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f280bf0 proc_create_net_data +EXPORT_SYMBOL_GPL vmlinux 0x7f2f30fb software_node_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x7f59a41a tpm2_flush_context +EXPORT_SYMBOL_GPL vmlinux 0x7f5a228e skcipher_walk_async +EXPORT_SYMBOL_GPL vmlinux 0x7f5edf42 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f642069 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7f6cee89 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f84f35d rcu_gp_slow_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f8c149d mtk_clk_register_composites +EXPORT_SYMBOL_GPL vmlinux 0x7f97b24f usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7f97e1bc of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x7f9b1879 osc_cpc_flexible_adr_space_confirmed +EXPORT_SYMBOL_GPL vmlinux 0x7fa3b91a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7fa96509 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x7fc3e3be devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7fcd0477 gpiochip_line_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x7ff19c40 zynqmp_pm_set_requirement +EXPORT_SYMBOL_GPL vmlinux 0x7ff1cb7a ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x80024a63 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x80091716 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x800f6a63 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x80135182 k3_ringacc_ring_pop_tail +EXPORT_SYMBOL_GPL vmlinux 0x801acd58 imx_clk_hw_pllv4 +EXPORT_SYMBOL_GPL vmlinux 0x801e9b23 icc_get +EXPORT_SYMBOL_GPL vmlinux 0x80339567 __traceiter_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x8035bed7 rockchip_clk_protect_critical +EXPORT_SYMBOL_GPL vmlinux 0x80382ba0 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x803e220e fsl_mc_obj_open +EXPORT_SYMBOL_GPL vmlinux 0x80436943 sk_set_peek_off +EXPORT_SYMBOL_GPL vmlinux 0x8055cb43 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x806327ea imx_clk_hw_cpu +EXPORT_SYMBOL_GPL vmlinux 0x807088d7 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x807766ea usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x807cb584 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x807fdcc4 call_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80915101 pinctrl_parse_index_with_args +EXPORT_SYMBOL_GPL vmlinux 0x80a5c999 regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x80badff4 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x80be2e0d pinmux_generic_get_function_groups +EXPORT_SYMBOL_GPL vmlinux 0x80bf9517 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dc986b of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x80e094b0 badblocks_set +EXPORT_SYMBOL_GPL vmlinux 0x80efb983 gpiochip_line_is_persistent +EXPORT_SYMBOL_GPL vmlinux 0x81189fa6 blk_mq_quiesce_queue_nowait +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81227918 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x81339163 scsi_host_busy_iter +EXPORT_SYMBOL_GPL vmlinux 0x8133f294 devlink_trap_policers_register +EXPORT_SYMBOL_GPL vmlinux 0x813d7896 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8155c7b5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x815fda83 sed_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8160da93 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x816a41ca cpufreq_update_limits +EXPORT_SYMBOL_GPL vmlinux 0x81727bca acpi_spi_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8180cede asn1_encode_sequence +EXPORT_SYMBOL_GPL vmlinux 0x81819bbb fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8183892c crypto_req_done +EXPORT_SYMBOL_GPL vmlinux 0x818eef25 mmu_notifier_range_update_to_read_only +EXPORT_SYMBOL_GPL vmlinux 0x819d72cb klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x81a7f541 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x81aa78d8 zynqmp_pm_aes_engine +EXPORT_SYMBOL_GPL vmlinux 0x81b03377 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x81bbb2df __class_register +EXPORT_SYMBOL_GPL vmlinux 0x81c6c3bf topology_update_thermal_pressure +EXPORT_SYMBOL_GPL vmlinux 0x81cf34e8 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x81cf5282 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x81d10485 ioasid_free +EXPORT_SYMBOL_GPL vmlinux 0x81d9f2b0 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x81e2bdf4 generic_handle_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x81f372a2 unregister_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x8205985f md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x82092899 badrange_forget +EXPORT_SYMBOL_GPL vmlinux 0x8209308d ip6_input +EXPORT_SYMBOL_GPL vmlinux 0x8218e576 firmware_request_platform +EXPORT_SYMBOL_GPL vmlinux 0x82196d24 ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8220a38e k3_ringacc_get_ring_id +EXPORT_SYMBOL_GPL vmlinux 0x82226c53 pinctrl_unregister_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8227e4e1 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x82322b03 bsg_job_get +EXPORT_SYMBOL_GPL vmlinux 0x823eae06 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x82443272 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82447f51 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8249622e iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x824e6a5b hte_ts_get +EXPORT_SYMBOL_GPL vmlinux 0x82578ade disk_update_readahead +EXPORT_SYMBOL_GPL vmlinux 0x8276ad87 __traceiter_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x827e61f8 acpi_has_watchdog +EXPORT_SYMBOL_GPL vmlinux 0x828e22f4 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x829c2b39 put_device +EXPORT_SYMBOL_GPL vmlinux 0x82a752db dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x82a80545 __SCK__tp_func_fdb_delete +EXPORT_SYMBOL_GPL vmlinux 0x82b08526 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x82bbf30b __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x82d308c7 led_compose_name +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82df8104 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x82e32344 perf_event_sysfs_show +EXPORT_SYMBOL_GPL vmlinux 0x82e85f8f iomap_release_folio +EXPORT_SYMBOL_GPL vmlinux 0x82f902e2 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x8308f893 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x830bc5b3 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x831f8444 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x832e0bfb platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x83361010 sock_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x8339df73 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8345e51f crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8346fb36 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0x83538886 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x8353dfff acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x835484d3 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x83589b98 phy_speed_up +EXPORT_SYMBOL_GPL vmlinux 0x835e32dc of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x8380563c devm_hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0x83933005 debugfs_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x83a43424 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x83b41540 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x83b8a8c5 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x83cacfba i2c_of_match_device +EXPORT_SYMBOL_GPL vmlinux 0x83e89032 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x84106f36 devlink_trap_ctx_priv +EXPORT_SYMBOL_GPL vmlinux 0x8425b9c3 xas_split_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84264ced fs_umode_to_ftype +EXPORT_SYMBOL_GPL vmlinux 0x84275537 pci_epc_mem_alloc_addr +EXPORT_SYMBOL_GPL vmlinux 0x84297a0f pci_host_common_probe +EXPORT_SYMBOL_GPL vmlinux 0x842f046d usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x842fa944 sbitmap_show +EXPORT_SYMBOL_GPL vmlinux 0x84330917 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x84392b46 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84450d02 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x844785ed blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x844a6631 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84502a47 blk_status_to_errno +EXPORT_SYMBOL_GPL vmlinux 0x845dbf3b scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x8462cb62 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x8463fbcf __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x846fe5e4 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x8473cb84 pci_bridge_secondary_bus_reset +EXPORT_SYMBOL_GPL vmlinux 0x847aa36c inet6_compat_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x848ac96f blkdev_zone_mgmt +EXPORT_SYMBOL_GPL vmlinux 0x849a7060 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x84a118b5 dax_finish_sync_fault +EXPORT_SYMBOL_GPL vmlinux 0x84a8c8c3 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x84a8d0eb of_changeset_revert +EXPORT_SYMBOL_GPL vmlinux 0x84bf2e40 of_reserved_mem_device_init_by_name +EXPORT_SYMBOL_GPL vmlinux 0x84c096b7 __fscrypt_prepare_rename +EXPORT_SYMBOL_GPL vmlinux 0x84c99e8c regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x84d37580 fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL vmlinux 0x84d75179 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x84e3f36a pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x84ef27f5 synth_event_add_fields +EXPORT_SYMBOL_GPL vmlinux 0x84f0f672 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x84f12ffd usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x84f72614 srcu_torture_stats_print +EXPORT_SYMBOL_GPL vmlinux 0x84fb3903 acpi_device_fix_up_power +EXPORT_SYMBOL_GPL vmlinux 0x84fb3bd2 crypto_register_scomps +EXPORT_SYMBOL_GPL vmlinux 0x84fcfff9 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x8508bbe7 crypto_grab_ahash +EXPORT_SYMBOL_GPL vmlinux 0x85090ab5 cpci_hp_unregister_controller +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 0x85425d1d pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x8548e6f2 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8553f412 sfp_bus_find_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL vmlinux 0x857bed61 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x85802bb7 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x85862277 ioasid_find +EXPORT_SYMBOL_GPL vmlinux 0x85935a61 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x85951c0b __devm_irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85ae6ce1 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x85c54b61 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x85c6c8ec sk_msg_return_zero +EXPORT_SYMBOL_GPL vmlinux 0x85e55824 hwspin_lock_request +EXPORT_SYMBOL_GPL vmlinux 0x85ed1598 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x85eed1be iopf_queue_discard_partial +EXPORT_SYMBOL_GPL vmlinux 0x85fa2f33 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8601fc10 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x860ee767 pinconf_generic_parse_dt_config +EXPORT_SYMBOL_GPL vmlinux 0x861109cd netif_carrier_event +EXPORT_SYMBOL_GPL vmlinux 0x86176bf4 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x8618bf91 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0x861a7a70 fscrypt_dummy_policies_equal +EXPORT_SYMBOL_GPL vmlinux 0x862258db timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x86248f55 of_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x862bb17b linear_range_values_in_range_array +EXPORT_SYMBOL_GPL vmlinux 0x86320024 mtk_clk_register_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0x8636388a dpcon_enable +EXPORT_SYMBOL_GPL vmlinux 0x86381dd5 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x863b5fe1 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x86555a86 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x86585a33 devlink_fmsg_obj_nest_start +EXPORT_SYMBOL_GPL vmlinux 0x865a1d40 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x86615bf5 rockchip_clk_of_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86700220 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x8675079b pinconf_generic_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x8677245d unregister_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8682409e pci_dev_lock +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a3e460 clkdev_hw_create +EXPORT_SYMBOL_GPL vmlinux 0x86ab97f0 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x86b13d2a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x86b1ceb3 tegra210_set_sata_pll_seq_sw +EXPORT_SYMBOL_GPL vmlinux 0x86c2915f clk_hw_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0x86c43a8c cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x86cb4291 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86cf9a9b gpiochip_get_data +EXPORT_SYMBOL_GPL vmlinux 0x86d18474 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0x86d394bc genphy_c45_an_disable_aneg +EXPORT_SYMBOL_GPL vmlinux 0x86dda6ef rtm_getroute_parse_ip_proto +EXPORT_SYMBOL_GPL vmlinux 0x86e6a568 dma_vunmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0x86eb784e devlink_dpipe_table_register +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f85114 net_dec_egress_queue +EXPORT_SYMBOL_GPL vmlinux 0x87024050 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871d8c5a acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x871fab3c kthread_unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x872b9184 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8780d778 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8783c10c mtk_eint_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87908767 xas_clear_mark +EXPORT_SYMBOL_GPL vmlinux 0x87933f73 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x879ab7c5 clk_register_composite +EXPORT_SYMBOL_GPL vmlinux 0x87ac7411 __tracepoint_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x87bb6f59 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x87d1623a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x87d297eb of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL vmlinux 0x87e3b53c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x87ecd9a3 fixed_phy_change_carrier +EXPORT_SYMBOL_GPL vmlinux 0x88009934 blkcg_root_css +EXPORT_SYMBOL_GPL vmlinux 0x880caaff pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0x8829293b mtk_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0x8836d097 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x88476f9f devl_lock +EXPORT_SYMBOL_GPL vmlinux 0x885528a6 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x8862a153 nvdimm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x88766341 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x887963c5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x8879f100 __traceiter_block_split +EXPORT_SYMBOL_GPL vmlinux 0x887b147e iommu_map_atomic +EXPORT_SYMBOL_GPL vmlinux 0x887df7c9 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8883da87 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x888e466a devm_mipi_dsi_attach +EXPORT_SYMBOL_GPL vmlinux 0x889eb5df extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88adaba4 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x88b4ae92 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x88cce6a0 xas_find_marked +EXPORT_SYMBOL_GPL vmlinux 0x88cd7a9a k3_ringacc_ring_get_occ +EXPORT_SYMBOL_GPL vmlinux 0x88da1e50 platform_set +EXPORT_SYMBOL_GPL vmlinux 0x88e005d5 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x88e11f30 pci_find_dvsec_capability +EXPORT_SYMBOL_GPL vmlinux 0x88ed48a5 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x89069156 k3_udma_glue_rx_flow_init +EXPORT_SYMBOL_GPL vmlinux 0x89077244 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x890d4f51 __fsnotify_parent +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 0x891c2f3e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8927cdb1 genphy_c45_read_status +EXPORT_SYMBOL_GPL vmlinux 0x892bdcfb of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x893abbdd devlink_fmsg_u32_pair_put +EXPORT_SYMBOL_GPL vmlinux 0x893c233f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x893f9699 blk_execute_rq_nowait +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 0x89639d39 strp_stop +EXPORT_SYMBOL_GPL vmlinux 0x89681446 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x897b03ea security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8996a627 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x89a42a3e alloc_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x89a4476d HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x89ad310c regulator_set_soft_start_regmap +EXPORT_SYMBOL_GPL vmlinux 0x89ae7aa0 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x89bb020b sprd_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89bec8b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x89c429e4 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89cc84f9 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0x89e340cf acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x89ef5444 sk_msg_free_nocharge +EXPORT_SYMBOL_GPL vmlinux 0x89f54c42 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x89f9e6e6 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x8a0651c4 meson_pmx_get_funcs_count +EXPORT_SYMBOL_GPL vmlinux 0x8a246378 meson_clk_dualdiv_ops +EXPORT_SYMBOL_GPL vmlinux 0x8a2c2d6b scsi_host_unblock +EXPORT_SYMBOL_GPL vmlinux 0x8a3f2528 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8a3f84ba linear_range_get_selector_low +EXPORT_SYMBOL_GPL vmlinux 0x8a42c6a3 sched_show_task +EXPORT_SYMBOL_GPL vmlinux 0x8a431f7a __clk_hw_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x8a45a555 acpi_unregister_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x8a49483c aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a586b87 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a62b81b sfp_upstream_stop +EXPORT_SYMBOL_GPL vmlinux 0x8a726d2b __traceiter_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a7c3174 debugfs_real_fops +EXPORT_SYMBOL_GPL vmlinux 0x8a7f0f29 dpbp_disable +EXPORT_SYMBOL_GPL vmlinux 0x8a83fb45 mpi_point_free_parts +EXPORT_SYMBOL_GPL vmlinux 0x8a8abe35 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x8aa4c0cd dprc_scan_container +EXPORT_SYMBOL_GPL vmlinux 0x8aafb617 vp_modern_set_features +EXPORT_SYMBOL_GPL vmlinux 0x8ab3ce5c ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad925e2 device_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x8b06ea3c psil_set_new_ep_config +EXPORT_SYMBOL_GPL vmlinux 0x8b0f4301 dev_pm_opp_get_level +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b208304 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b384d88 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8b395b20 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8b4880e7 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x8b5c50b8 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x8b650752 mtk_mutex_release +EXPORT_SYMBOL_GPL vmlinux 0x8b65e7b3 phy_check_downshift +EXPORT_SYMBOL_GPL vmlinux 0x8b685364 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x8b7a698b __tracepoint_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0x8b8333fb clk_hw_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x8b89f01c hv_ghcb_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x8ba0eb15 hv_set_vpreg +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bad56c3 devm_device_add_group +EXPORT_SYMBOL_GPL vmlinux 0x8bb35f8d ncsi_unregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bbc8015 __alloc_pages_bulk +EXPORT_SYMBOL_GPL vmlinux 0x8bcf1a64 synth_event_add_val +EXPORT_SYMBOL_GPL vmlinux 0x8bf5f379 k3_udma_glue_release_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c047a33 devlink_port_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8c0ed103 rcu_check_boost_fail +EXPORT_SYMBOL_GPL vmlinux 0x8c1059e8 clk_hw_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x8c2b5998 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c2f01af xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c3aa871 nvmem_del_cell_table +EXPORT_SYMBOL_GPL vmlinux 0x8c484409 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x8c54c006 acpi_data_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c554c44 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x8c575e17 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8c627f68 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c63a086 pci_epc_clear_bar +EXPORT_SYMBOL_GPL vmlinux 0x8c63aa9c blk_mq_quiesce_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c889d40 pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0x8c89e3b8 usb_phy_roothub_power_off +EXPORT_SYMBOL_GPL vmlinux 0x8c98d248 unregister_vmcore_cb +EXPORT_SYMBOL_GPL vmlinux 0x8c9b968a device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8ca75534 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x8cb472ae irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x8cb5a38e k3_udma_glue_rx_flow_disable +EXPORT_SYMBOL_GPL vmlinux 0x8cbed5e4 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x8cd4175f reset_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ce2d446 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x8cf0c9ce ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x8cf60ce7 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x8cfcad68 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8d0abf3a __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x8d0b9f34 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x8d1a1d48 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8d1c7df9 dev_pm_opp_set_prop_name +EXPORT_SYMBOL_GPL vmlinux 0x8d20ce17 spi_mem_supports_op +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d321fdb serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x8d3291ee irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x8d3330b6 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8d3cbc15 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8d42354d devm_ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x8d42e5b0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8d5172af wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d5fcdc8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8d665ae2 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x8d747304 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8d7e3373 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x8d8dd544 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8d908ebf power_supply_get_maintenance_charging_setting +EXPORT_SYMBOL_GPL vmlinux 0x8d98c248 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d9aeafb regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x8da5f41b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x8dad9fdb imx_obtain_fixed_clk_hw +EXPORT_SYMBOL_GPL vmlinux 0x8dafdded lwtunnel_valid_encap_type_attr +EXPORT_SYMBOL_GPL vmlinux 0x8db59187 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x8dbd21a6 xfer_to_guest_mode_handle_work +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8dc9cf21 ethnl_cable_test_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8dd218b0 icc_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x8dd72ea3 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8dd77615 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x8dd7bf49 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x8de6817a acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x8de72810 devm_request_free_mem_region +EXPORT_SYMBOL_GPL vmlinux 0x8ded1156 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x8df4062b of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x8df607c1 imx_pinctrl_parse_pin_scu +EXPORT_SYMBOL_GPL vmlinux 0x8e03cb7c adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8e0efc3b dma_can_mmap +EXPORT_SYMBOL_GPL vmlinux 0x8e12d4ff iopf_queue_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8e155c8d of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8e16419b trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x8e30d5b7 crypto_hash_alg_has_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8e44823a sfp_select_interface +EXPORT_SYMBOL_GPL vmlinux 0x8e4b63a6 hisi_clk_register_gate_sep +EXPORT_SYMBOL_GPL vmlinux 0x8e4eb451 bpf_sk_storage_diag_free +EXPORT_SYMBOL_GPL vmlinux 0x8e4f64b7 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x8e5d2aec __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x8e6b1a9e net_selftest_get_count +EXPORT_SYMBOL_GPL vmlinux 0x8e6ed54d skb_mpls_push +EXPORT_SYMBOL_GPL vmlinux 0x8e6fa8b5 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x8e7f0a9c acpi_get_phys_id +EXPORT_SYMBOL_GPL vmlinux 0x8e897023 lwtunnel_output +EXPORT_SYMBOL_GPL vmlinux 0x8e92f7c4 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x8e96ffc8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x8eac7141 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8ead800c user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x8ec1b78f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x8ecd49af da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8ed4595e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8eec19bd __SCK__tp_func_pelt_dl_tp +EXPORT_SYMBOL_GPL vmlinux 0x8eec379a ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x8eee3399 dax_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0b781d iova_domain_init_rcaches +EXPORT_SYMBOL_GPL vmlinux 0x8f0ca915 devm_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x8f1b4e2a bio_associate_blkg_from_css +EXPORT_SYMBOL_GPL vmlinux 0x8f256491 dev_pm_opp_of_register_em +EXPORT_SYMBOL_GPL vmlinux 0x8f329946 meson_clk_dualdiv_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f3969e1 zynqmp_pm_clock_getrate +EXPORT_SYMBOL_GPL vmlinux 0x8f50b8ae put_io_context +EXPORT_SYMBOL_GPL vmlinux 0x8f5e1a0c acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x8f6066fc bus_get_device_klist +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 0x8f7dadc6 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8f96fac9 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x8faa800d acpi_cpc_valid +EXPORT_SYMBOL_GPL vmlinux 0x8fc0bdca iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8fc12788 software_node_unregister_node_group +EXPORT_SYMBOL_GPL vmlinux 0x8fcc3b15 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8fcc72dd usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x8fd23edd serdev_device_set_parity +EXPORT_SYMBOL_GPL vmlinux 0x8ff4a682 dev_fetch_sw_netstats +EXPORT_SYMBOL_GPL vmlinux 0x8ff60436 mpi_ec_add_points +EXPORT_SYMBOL_GPL vmlinux 0x8ff67b3f tpm1_getcap +EXPORT_SYMBOL_GPL vmlinux 0x8ff7ea2f devlink_region_snapshot_id_get +EXPORT_SYMBOL_GPL vmlinux 0x8ff9cf72 inet_send_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8ffcf100 __traceiter_br_fdb_update +EXPORT_SYMBOL_GPL vmlinux 0x8ffe792f tracepoint_probe_register_prio_may_exist +EXPORT_SYMBOL_GPL vmlinux 0x90011bdc relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x900aee10 __vfs_removexattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x9020488d mtk_mutex_get +EXPORT_SYMBOL_GPL vmlinux 0x90252f59 regulator_get_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0x9027c66f devm_hte_register_chip +EXPORT_SYMBOL_GPL vmlinux 0x902b1b24 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x902c4917 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x902f5ec0 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x905cb4d7 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x90688bcd devlink_info_driver_name_put +EXPORT_SYMBOL_GPL vmlinux 0x907d0ff0 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x908f5dbf usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x9098d0a2 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x90a0dbd0 devm_serdev_device_open +EXPORT_SYMBOL_GPL vmlinux 0x90a154ea crypto_register_kpp +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 0x90b9a688 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x90c02246 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x90c8498c apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x90d937b4 __tracepoint_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x90e7dee4 __vfs_setxattr_locked +EXPORT_SYMBOL_GPL vmlinux 0x90efbe39 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x911b71a8 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x912243b1 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9128c9cb fscrypt_fname_siphash +EXPORT_SYMBOL_GPL vmlinux 0x91328a6b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x91368203 hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0x913ebd32 stack_depot_save +EXPORT_SYMBOL_GPL vmlinux 0x91490022 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x9154cc1f clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x91678c8c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x91690671 usb_of_get_companion_dev +EXPORT_SYMBOL_GPL vmlinux 0x916ad11e tcf_dev_queue_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9172d4ec pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x91753165 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x917770eb xhci_update_hub_device +EXPORT_SYMBOL_GPL vmlinux 0x9194e18f xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x91955a9f start_poll_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x919a6abb synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x919c614c power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x91a55c8b mtk_pctrl_show_one_pin +EXPORT_SYMBOL_GPL vmlinux 0x91a6c3b6 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x91ac4cbe __udp_gso_segment +EXPORT_SYMBOL_GPL vmlinux 0x91b774a1 mpi_scanval +EXPORT_SYMBOL_GPL vmlinux 0x91c4d5f6 blk_mq_pci_map_queues +EXPORT_SYMBOL_GPL vmlinux 0x91c5fea9 edac_mc_free +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c901c8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x91c9313c acpi_gpio_get_io_resource +EXPORT_SYMBOL_GPL vmlinux 0x91d41b50 edac_pci_handle_npe +EXPORT_SYMBOL_GPL vmlinux 0x91dc85a5 fsl_mc_bus_dprtc_type +EXPORT_SYMBOL_GPL vmlinux 0x91dcb018 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x91e30809 HYPERVISOR_vm_assist +EXPORT_SYMBOL_GPL vmlinux 0x91ea8726 asn1_encode_boolean +EXPORT_SYMBOL_GPL vmlinux 0x91fd9c4d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9204c4f6 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x92083c67 __traceiter_pelt_rt_tp +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x92139328 blk_bio_list_merge +EXPORT_SYMBOL_GPL vmlinux 0x9218880c of_clk_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x9232d151 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x92396799 alloc_skb_for_msg +EXPORT_SYMBOL_GPL vmlinux 0x923e42aa sysfb_disable +EXPORT_SYMBOL_GPL vmlinux 0x9241b358 __static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x92453a3e inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924e2209 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x927487ea zynqmp_pm_read_ggs +EXPORT_SYMBOL_GPL vmlinux 0x9286a71e bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x928abfa7 mtk_is_virt_gpio +EXPORT_SYMBOL_GPL vmlinux 0x928ebcd4 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x92936685 iommu_sva_find +EXPORT_SYMBOL_GPL vmlinux 0x929f12c7 meson_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x929fcdd5 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x92a99ff2 uprobe_register_refctr +EXPORT_SYMBOL_GPL vmlinux 0x92b038a8 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x92b8c78b hyperv_pcpu_output_arg +EXPORT_SYMBOL_GPL vmlinux 0x92bc5daa nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x92c8cc2f blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x92ced560 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d3cb14 cgroup_get_from_fd +EXPORT_SYMBOL_GPL vmlinux 0x92d9563a regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x92d9bb04 iommu_page_response +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e72fc4 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x92e8e9ab fsverity_enqueue_verify_work +EXPORT_SYMBOL_GPL vmlinux 0x92f79bdb mtk_pinconf_adv_drive_set +EXPORT_SYMBOL_GPL vmlinux 0x92f9e2d4 ioc_find_get_icq +EXPORT_SYMBOL_GPL vmlinux 0x92ffb75c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x930654ad __devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x930ab533 k3_ringacc_request_ring +EXPORT_SYMBOL_GPL vmlinux 0x93127883 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x93147222 fsl_mc_bus_dpdmai_type +EXPORT_SYMBOL_GPL vmlinux 0x93204e30 inode_dax +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 0x9351af82 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x935a4756 dst_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x93614b8f netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9367f218 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x936a748e __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x936bf008 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x9377b0c6 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x937f4f5e ahci_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0x938edb03 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x938ff2b8 fsl_mc_bus_dpni_type +EXPORT_SYMBOL_GPL vmlinux 0x939f2f14 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x93bcdfcf fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x93c7edeb usb_find_common_endpoints +EXPORT_SYMBOL_GPL vmlinux 0x93d1d424 gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x93e94da6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x93edef07 devlink_health_report +EXPORT_SYMBOL_GPL vmlinux 0x93f2a1ad ata_sas_tport_add +EXPORT_SYMBOL_GPL vmlinux 0x93f4926a ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x93f84956 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x93ffa26b clk_regmap_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x940443d0 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x941de8d2 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425bb34 nvmem_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x942d5ec1 cpufreq_dbs_governor_start +EXPORT_SYMBOL_GPL vmlinux 0x94304d94 devm_of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x9430b198 trace_dump_stack +EXPORT_SYMBOL_GPL vmlinux 0x9436e405 memory_group_register_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x943bf19e fsl_mc_obj_close +EXPORT_SYMBOL_GPL vmlinux 0x943c2f08 __fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94428473 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9468ea70 schedule_hrtimeout_range_clock +EXPORT_SYMBOL_GPL vmlinux 0x946c0028 devlink_unregister +EXPORT_SYMBOL_GPL vmlinux 0x946dd559 sha224_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0x946e80a1 bpf_trace_run2 +EXPORT_SYMBOL_GPL vmlinux 0x94755b6b mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9495335c iomap_finish_ioends +EXPORT_SYMBOL_GPL vmlinux 0x949b5176 devlink_region_snapshot_create +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94abd318 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x94bb2190 fib_alias_hw_flags_set +EXPORT_SYMBOL_GPL vmlinux 0x94bcf60f fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x94c1e6f0 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x94c88318 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x94de54d7 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fb38bf debugfs_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950a803f nf_checksum +EXPORT_SYMBOL_GPL vmlinux 0x951a2773 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x953894b6 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954952f3 bdi_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x954d8e51 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95619d61 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x956ac400 ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x957f35de nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x95843030 mpi_ec_init +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x958fe9c5 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x9593ef31 register_ftrace_export +EXPORT_SYMBOL_GPL vmlinux 0x959ec5f5 call_rcu_tasks +EXPORT_SYMBOL_GPL vmlinux 0x959ff5ae ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x95a2395c pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x95ac1934 devm_kasprintf_strarray +EXPORT_SYMBOL_GPL vmlinux 0x95ac4ea0 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x95aedf3d vp_modern_config_vector +EXPORT_SYMBOL_GPL vmlinux 0x95b4453b usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x95b4bbe1 auxiliary_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95b6add2 phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d45b91 of_genpd_add_device +EXPORT_SYMBOL_GPL vmlinux 0x95dd9f3e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x95e102ab tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x95ef1ccc dmi_memdev_size +EXPORT_SYMBOL_GPL vmlinux 0x95f28f44 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x961286e0 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x96145b48 dprc_setup +EXPORT_SYMBOL_GPL vmlinux 0x96191f40 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x961a6ae0 serdev_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9621d738 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x962c8ae1 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x963bd1ff nvmem_device_find +EXPORT_SYMBOL_GPL vmlinux 0x9644f2e5 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96513ffe inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x96527646 clk_regmap_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965db70e icc_provider_del +EXPORT_SYMBOL_GPL vmlinux 0x965eabac __xdp_build_skb_from_frame +EXPORT_SYMBOL_GPL vmlinux 0x96691402 fuse_init_fs_context_submount +EXPORT_SYMBOL_GPL vmlinux 0x967f3533 skcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x968f9a23 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x96a55fda list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96bbe82e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x96c3042a scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x96d23a71 sfp_bus_add_upstream +EXPORT_SYMBOL_GPL vmlinux 0x96f171c9 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x96f9a01b __SCK__tp_func_pelt_thermal_tp +EXPORT_SYMBOL_GPL vmlinux 0x970634b1 pci_epc_map_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0x970aa48f crypto_stats_akcipher_sign +EXPORT_SYMBOL_GPL vmlinux 0x9714e0bb ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x97244c98 iomap_read_folio +EXPORT_SYMBOL_GPL vmlinux 0x9725fd8e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x9729a024 get_net_ns +EXPORT_SYMBOL_GPL vmlinux 0x97336fb3 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x97340be1 regmap_mmio_attach_clk +EXPORT_SYMBOL_GPL vmlinux 0x973849d4 ti_sci_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x974dd3df dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97752983 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x977be5c7 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x977deddf bio_associate_blkg +EXPORT_SYMBOL_GPL vmlinux 0x978def96 irq_chip_set_vcpu_affinity_parent +EXPORT_SYMBOL_GPL vmlinux 0x978df91a nvdimm_badblocks_populate +EXPORT_SYMBOL_GPL vmlinux 0x9790f7d7 badblocks_clear +EXPORT_SYMBOL_GPL vmlinux 0x979e9a24 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x97a19554 md_bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x97a3ff41 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x97a41981 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x97b3351b sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x97d8363b sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e33cc9 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x980761fa devm_of_icc_get +EXPORT_SYMBOL_GPL vmlinux 0x9808a0d9 blk_crypto_profile_init +EXPORT_SYMBOL_GPL vmlinux 0x9809b95a dw_pcie_upconfig_setup +EXPORT_SYMBOL_GPL vmlinux 0x982e85c2 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9835d771 acpi_dev_state_d0 +EXPORT_SYMBOL_GPL vmlinux 0x983c63c2 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9843f501 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x984c3976 sdio_retune_crc_enable +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985453e1 lease_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98565afd locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x985b2815 mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0x98727e94 cpufreq_enable_fast_switch +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987fff83 led_trigger_read +EXPORT_SYMBOL_GPL vmlinux 0x9889a057 dev_pm_opp_xlate_required_opp +EXPORT_SYMBOL_GPL vmlinux 0x988eb0f9 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x989074ff kmsg_dump_reason_str +EXPORT_SYMBOL_GPL vmlinux 0x98aa0383 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x98aa4a3f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x98b142fa blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x98c59274 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x98cec44e sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x98e541ed list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x98e97c69 pm_clk_add_clk +EXPORT_SYMBOL_GPL vmlinux 0x98ec9459 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x98ee62b2 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98ef0c1a phy_calibrate +EXPORT_SYMBOL_GPL vmlinux 0x98f1eff4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x992a632f sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x99300685 sbitmap_queue_show +EXPORT_SYMBOL_GPL vmlinux 0x9936f780 watchdog_notify_pretimeout +EXPORT_SYMBOL_GPL vmlinux 0x993e860e pci_epf_unbind +EXPORT_SYMBOL_GPL vmlinux 0x9953597a clk_hw_register +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995fbee0 icc_node_create +EXPORT_SYMBOL_GPL vmlinux 0x9968aacb __audit_log_nfcfg +EXPORT_SYMBOL_GPL vmlinux 0x9968f33d hisi_clk_register_phase +EXPORT_SYMBOL_GPL vmlinux 0x997c550a preempt_model_none +EXPORT_SYMBOL_GPL vmlinux 0x997eb1e4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x998313c5 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x9989c52b pci_epc_put +EXPORT_SYMBOL_GPL vmlinux 0x998d516d trace_array_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x998f296c dax_recovery_write +EXPORT_SYMBOL_GPL vmlinux 0x999ec99a exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x99aeac7d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x99b7a216 __acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x99bc31da devm_gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x99cc68c3 dma_async_device_channel_register +EXPORT_SYMBOL_GPL vmlinux 0x99dd730c page_reporting_unregister +EXPORT_SYMBOL_GPL vmlinux 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL vmlinux 0x99f14f10 devlink_dpipe_entry_ctx_prepare +EXPORT_SYMBOL_GPL vmlinux 0x99f2d00a sysfs_emit_at +EXPORT_SYMBOL_GPL vmlinux 0x99f98083 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a142425 dw_pcie_ep_linkup +EXPORT_SYMBOL_GPL vmlinux 0x9a1e4786 phy_driver_is_genphy_10g +EXPORT_SYMBOL_GPL vmlinux 0x9a220848 nfs42_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a22d774 regulator_set_active_discharge_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a23ea6b alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9a25d96a fib_info_nh_uses_dev +EXPORT_SYMBOL_GPL vmlinux 0x9a28fc9f crypto_skcipher_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9a2d27de devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a32627a crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x9a43d0f9 __devm_reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9a4d8425 gpiochip_reqres_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a58ab59 fwnode_graph_get_remote_port +EXPORT_SYMBOL_GPL vmlinux 0x9a5dce5c rhashtable_walk_start_check +EXPORT_SYMBOL_GPL vmlinux 0x9a6bf241 pci_bridge_emul_conf_write +EXPORT_SYMBOL_GPL vmlinux 0x9a7f2cdb xdp_return_frame_bulk +EXPORT_SYMBOL_GPL vmlinux 0x9a85f1e9 gpiochip_irqchip_irq_valid +EXPORT_SYMBOL_GPL vmlinux 0x9a8c68dc posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x9aa2d09c l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9aa58ae5 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9ab61eec dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac79867 __bio_release_pages +EXPORT_SYMBOL_GPL vmlinux 0x9ae12e17 __tracepoint_ata_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af49514 icc_bulk_set_bw +EXPORT_SYMBOL_GPL vmlinux 0x9af85645 kvm_read_guest_offset_cached +EXPORT_SYMBOL_GPL vmlinux 0x9afba37e xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x9afbf168 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x9afbff64 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x9b05e754 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9b0eaa52 tegra210_xusb_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0x9b0eef47 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x9b109e5c of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b22e5d2 devm_gpiochip_add_data_with_key +EXPORT_SYMBOL_GPL vmlinux 0x9b22f629 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9b25de69 dpbp_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0x9b555c8c pm_suspend_default_s2idle +EXPORT_SYMBOL_GPL vmlinux 0x9b5b4b22 meson8_pmx_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b5e50ab dev_pm_opp_get_power +EXPORT_SYMBOL_GPL vmlinux 0x9b651e51 xenbus_teardown_ring +EXPORT_SYMBOL_GPL vmlinux 0x9b698c42 ioasid_set_data +EXPORT_SYMBOL_GPL vmlinux 0x9b6c0f36 usb_phy_set_charger_state +EXPORT_SYMBOL_GPL vmlinux 0x9b6ec967 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x9b70c6ff tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x9b84a17d genphy_c45_fast_retrain +EXPORT_SYMBOL_GPL vmlinux 0x9b85547e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x9b9071cb get_old_itimerspec32 +EXPORT_SYMBOL_GPL vmlinux 0x9b92d16e pinctrl_gpio_set_config +EXPORT_SYMBOL_GPL vmlinux 0x9b938020 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9b99a20a pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba5484c crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9ba69d6f of_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0x9bb044b9 dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0x9bbb65e4 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x9bbdb23a kthread_cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x9bc67110 skcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x9bd08800 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x9bd43f0a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x9bded9f7 __of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9be30d27 mhp_get_pluggable_range +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bee6142 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x9c149893 ftrace_ops_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x9c311926 sbitmap_finish_wait +EXPORT_SYMBOL_GPL vmlinux 0x9c394b76 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9c448d8d tegra210_put_utmipll_out_iddq +EXPORT_SYMBOL_GPL vmlinux 0x9c4884a2 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9c6febfc add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x9c70225c ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9c7ba15f dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0x9c803020 usb_phy_roothub_power_on +EXPORT_SYMBOL_GPL vmlinux 0x9c81e26a dm_bio_from_per_bio_data +EXPORT_SYMBOL_GPL vmlinux 0x9cb5af34 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9cb60c85 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x9cb8e847 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc8463b vp_modern_probe +EXPORT_SYMBOL_GPL vmlinux 0x9cd7551a rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x9cdd6a66 sysctl_long_vals +EXPORT_SYMBOL_GPL vmlinux 0x9ce751f6 regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0x9cea8b18 crypto_enqueue_request_head +EXPORT_SYMBOL_GPL vmlinux 0x9cec1b91 edac_pci_del_device +EXPORT_SYMBOL_GPL vmlinux 0x9cf37c44 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x9cfb2f8c debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x9cfba4ef dev_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0x9d002908 __reset_control_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9d09544f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x9d09e8ae ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9d0e20ed blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9d0fc504 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x9d16a6d6 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x9d1a18e1 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x9d2754c0 kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0x9d2a1ffa wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x9d2b2187 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9d2de36e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x9d2f49ef __SCK__tp_func_pelt_se_tp +EXPORT_SYMBOL_GPL vmlinux 0x9d567c3c ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x9d7098d3 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9d784fba rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9d8589f6 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x9d8bb00e set_dax_nocache +EXPORT_SYMBOL_GPL vmlinux 0x9d906db9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9d9910a1 atomic_notifier_chain_register_unique_prio +EXPORT_SYMBOL_GPL vmlinux 0x9dbaedef pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9dd23245 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9dd3d17e __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x9dd6d990 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9de31b2a phy_gbit_fibre_features +EXPORT_SYMBOL_GPL vmlinux 0x9de88bc8 __SCK__tp_func_ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x9de9d132 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9e005e6f cppc_get_perf_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e010b97 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e0aac95 __percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x9e12b8e3 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e1e7399 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x9e203ea4 fwnode_get_nth_parent +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e553f5a scmi_protocol_register +EXPORT_SYMBOL_GPL vmlinux 0x9e6fe198 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9e8c2974 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x9e9b913d __tracepoint_arm_event +EXPORT_SYMBOL_GPL vmlinux 0x9e9c4f24 set_dax_nomc +EXPORT_SYMBOL_GPL vmlinux 0x9eaef356 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x9eb40ade sk_msg_free_partial +EXPORT_SYMBOL_GPL vmlinux 0x9ec959d2 __dax_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x9ec95cac iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eda994e skcipher_walk_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0x9ee6e907 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9eebdde7 mpi_point_new +EXPORT_SYMBOL_GPL vmlinux 0x9ef6e0c8 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x9f0d3877 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9f1d8955 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9f4c4aa0 spi_delay_to_ns +EXPORT_SYMBOL_GPL vmlinux 0x9f50c24a ip_route_output_key_hash +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 0x9f6d7c9f ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x9f6ed7bc crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x9f81d3a2 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x9f855e68 __traceiter_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x9f9c7781 phy_basic_t1_features +EXPORT_SYMBOL_GPL vmlinux 0x9faeb60f perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9fb0a9aa led_update_brightness +EXPORT_SYMBOL_GPL vmlinux 0x9fbfebab erst_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc6fdb4 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd2783c sysfs_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x9fd5a6ee ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x9fe131f1 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x9fe899b7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fea8045 power_supply_put_battery_info +EXPORT_SYMBOL_GPL vmlinux 0x9fec33cc free_io_pgtable_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fee19aa usb_amd_pt_check_port +EXPORT_SYMBOL_GPL vmlinux 0x9fefc3e6 __cpuhp_state_remove_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ff10d02 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x9ff4143b dev_pm_opp_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xa0095fb9 fscrypt_ioctl_get_key_status +EXPORT_SYMBOL_GPL vmlinux 0xa01a8d9b nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0xa01c215a handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0262836 component_compare_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xa040a8fd param_set_uint_minmax +EXPORT_SYMBOL_GPL vmlinux 0xa042d252 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xa0468023 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa04bea17 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xa04f945a cpus_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa05fd1d5 of_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa071c0cd tegra210_xusb_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xa080c5e5 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0xa082ba7d __clk_hw_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xa09a98b8 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa0a14c96 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xa0a3b85f gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xa0b3c857 i2c_slave_event +EXPORT_SYMBOL_GPL vmlinux 0xa0d3456d nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0d66176 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xa0da16c6 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xa0db7169 gov_attr_set_init +EXPORT_SYMBOL_GPL vmlinux 0xa0ec9aaf spi_controller_resume +EXPORT_SYMBOL_GPL vmlinux 0xa0eff7a2 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0fc9d43 crypto_boot_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa118bc56 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa13672a5 dev_pm_opp_put_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xa14c57c1 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa14c5d27 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16373f4 devlink_trap_policers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa1712520 mtk_pinconf_bias_disable_get_rev1 +EXPORT_SYMBOL_GPL vmlinux 0xa1713053 devm_gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0xa177724a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xa1853f85 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa18b485c devlink_resource_size_get +EXPORT_SYMBOL_GPL vmlinux 0xa18cb157 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xa19aaa22 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa1a93f53 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa1b40a63 handle_fasteoi_ack_irq +EXPORT_SYMBOL_GPL vmlinux 0xa1c4231f kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa1d69aad skcipher_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa1d8004a videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xa1e3ecf3 iommu_sva_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xa1e8cec0 skb_zerocopy_iter_stream +EXPORT_SYMBOL_GPL vmlinux 0xa1ef8494 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xa1f5a5d1 blk_set_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xa1fb9bcf regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xa20d01ba __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xa2181f7d da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xa21f2ce7 clk_mux_index_to_val +EXPORT_SYMBOL_GPL vmlinux 0xa222d3d2 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa22c9b99 mtk_free_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xa22d9548 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa22febaf iomap_seek_hole +EXPORT_SYMBOL_GPL vmlinux 0xa2382cb2 crypto_comp_decompress +EXPORT_SYMBOL_GPL vmlinux 0xa23b52ee ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xa23b8540 ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xa24572c0 tty_kopen_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa2500ef6 __SCK__tp_func_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xa254c0ba ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xa255563d imx_pinconf_set_scu +EXPORT_SYMBOL_GPL vmlinux 0xa263fc00 bio_blkcg_css +EXPORT_SYMBOL_GPL vmlinux 0xa2644336 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa271be56 kthread_use_mm +EXPORT_SYMBOL_GPL vmlinux 0xa28fe15e crypto_stats_aead_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xa29b7431 fwnode_find_reference +EXPORT_SYMBOL_GPL vmlinux 0xa2aaf1ab fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa2ad338b fwnode_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xa2ad6b61 kset_find_obj +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 0xa2ba1fe7 pci_acpi_set_companion_lookup_hook +EXPORT_SYMBOL_GPL vmlinux 0xa2df1a13 __page_mapcount +EXPORT_SYMBOL_GPL vmlinux 0xa2e1ad4a usb_string +EXPORT_SYMBOL_GPL vmlinux 0xa2e1b3ef trace_printk_init_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa2e2e2c3 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa2e3c04e meson_vid_pll_div_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa2e82cc8 blk_mq_start_stopped_hw_queue +EXPORT_SYMBOL_GPL vmlinux 0xa2f7487f hv_is_hibernation_supported +EXPORT_SYMBOL_GPL vmlinux 0xa3164b81 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xa316f199 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xa33fd46f hv_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xa35b6eab usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xa364a7d7 devm_hwmon_device_register_with_info +EXPORT_SYMBOL_GPL vmlinux 0xa36f50fb is_binary_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38a9f71 get_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xa38cb340 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa39ba512 xfrm_dev_offload_ok +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3abc5c4 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc3dda mc_send_command +EXPORT_SYMBOL_GPL vmlinux 0xa3ce7acf tracing_cond_snapshot_data +EXPORT_SYMBOL_GPL vmlinux 0xa3d8d419 mdiobus_modify +EXPORT_SYMBOL_GPL vmlinux 0xa3dcb681 zynqmp_pm_fpga_load +EXPORT_SYMBOL_GPL vmlinux 0xa3e1ebfb usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa3e2881b irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xa3e38b55 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xa3ece414 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa3f12f69 __crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0xa3f1c7fc amba_bustype +EXPORT_SYMBOL_GPL vmlinux 0xa3f6424d regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xa3fe3ba9 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3ff4eb7 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa4031b7f sfp_parse_port +EXPORT_SYMBOL_GPL vmlinux 0xa404c7b5 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xa410a295 devlink_region_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa4300642 trace_event_reg +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 0xa465d1be devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa46d6bc3 bgmac_enet_probe +EXPORT_SYMBOL_GPL vmlinux 0xa46ecdab clk_hw_unregister_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa478840a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49abf91 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa4a40df5 handle_untracked_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4ab7c1c ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xa4b07fe7 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0xa4b6429a cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xa4bbc973 devm_platform_ioremap_resource +EXPORT_SYMBOL_GPL vmlinux 0xa4c00324 asn1_encode_octet_string +EXPORT_SYMBOL_GPL vmlinux 0xa4c085f8 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0xa4c3b723 mptcp_pm_get_subflows_max +EXPORT_SYMBOL_GPL vmlinux 0xa4cb760a get_net_ns_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa4d30a89 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa4e22108 devl_rate_leaf_create +EXPORT_SYMBOL_GPL vmlinux 0xa4e475f1 folio_add_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa4ee1cf7 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa4f2a2ed acpi_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa501cf84 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa50e1013 dev_attr_ncq_prio_enable +EXPORT_SYMBOL_GPL vmlinux 0xa5170f31 pci_epf_alloc_space +EXPORT_SYMBOL_GPL vmlinux 0xa517f884 tegra210_plle_hw_sequence_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa531471e clk_save_context +EXPORT_SYMBOL_GPL vmlinux 0xa535950f bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa5405ee1 dst_cache_set_ip4 +EXPORT_SYMBOL_GPL vmlinux 0xa54a2cba devlink_linecard_provision_clear +EXPORT_SYMBOL_GPL vmlinux 0xa54c2320 kvm_vcpu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa552e3d4 iocb_bio_iopoll +EXPORT_SYMBOL_GPL vmlinux 0xa56664ef poll_state_synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xa56687c3 devm_clk_get_optional_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa56afea1 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xa56b44f8 dev_pm_domain_set +EXPORT_SYMBOL_GPL vmlinux 0xa5713703 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa574a308 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa5783a82 validate_xmit_xfrm +EXPORT_SYMBOL_GPL vmlinux 0xa57aca1f ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5817802 skb_gso_validate_network_len +EXPORT_SYMBOL_GPL vmlinux 0xa596009b meson_aoclkc_probe +EXPORT_SYMBOL_GPL vmlinux 0xa5ad5c06 xdp_rxq_info_is_reg +EXPORT_SYMBOL_GPL vmlinux 0xa5bc443a nvmem_register +EXPORT_SYMBOL_GPL vmlinux 0xa5bc7cad fwnode_graph_get_port_parent +EXPORT_SYMBOL_GPL vmlinux 0xa5bcec0d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa5bda8a1 efi_capsule_supported +EXPORT_SYMBOL_GPL vmlinux 0xa5c3aaab desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa5caba26 usb_phy_roothub_resume +EXPORT_SYMBOL_GPL vmlinux 0xa5d1400d security_file_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa5d1f4b8 stack_depot_snprint +EXPORT_SYMBOL_GPL vmlinux 0xa5d7c388 pstore_type_to_name +EXPORT_SYMBOL_GPL vmlinux 0xa5e57e8a dpcon_get_attributes +EXPORT_SYMBOL_GPL vmlinux 0xa5e8ab53 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5ffdc72 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa6034a1e sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa60a3328 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa61f5525 mmput +EXPORT_SYMBOL_GPL vmlinux 0xa64f868b cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa65f3c8c __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa665feaa mbox_flush +EXPORT_SYMBOL_GPL vmlinux 0xa67501b8 iomap_fiemap +EXPORT_SYMBOL_GPL vmlinux 0xa67f5695 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xa688e6bf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa69f270d blk_queue_max_discard_segments +EXPORT_SYMBOL_GPL vmlinux 0xa69f3c00 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa6a088b7 fscrypt_match_name +EXPORT_SYMBOL_GPL vmlinux 0xa6a977e5 icc_provider_add +EXPORT_SYMBOL_GPL vmlinux 0xa6af1e35 __SCK__tp_func_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xa6af6013 pci_disable_pasid +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 0xa6c11811 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa6d80b5d driver_deferred_probe_check_state +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 0xa6ee44ce devm_mipi_dsi_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xa709c835 fib6_info_destroy_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa70a561d usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa70f9a0d tegra_xusb_padctl_legacy_remove +EXPORT_SYMBOL_GPL vmlinux 0xa71ec2c5 user_read +EXPORT_SYMBOL_GPL vmlinux 0xa71ec855 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xa731f387 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xa73c3b08 mtk_mutex_remove_comp +EXPORT_SYMBOL_GPL vmlinux 0xa745581d of_dma_configure_id +EXPORT_SYMBOL_GPL vmlinux 0xa74ff95a regulator_suspend_disable +EXPORT_SYMBOL_GPL vmlinux 0xa752f870 __traceiter_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xa75a877b ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa788700b copy_to_user_nofault +EXPORT_SYMBOL_GPL vmlinux 0xa79a8808 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xa79bb535 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xa7bbe673 disk_set_independent_access_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa7ed16cf xhci_check_bandwidth +EXPORT_SYMBOL_GPL vmlinux 0xa7ee8947 gnttab_page_cache_get +EXPORT_SYMBOL_GPL vmlinux 0xa8016e7d stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa80bc591 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xa8104891 of_phandle_args_to_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xa814f3a0 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xa819bbaa tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0xa825cf61 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa826d393 udp_cmsg_send +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8688472 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xa86aa26e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa86e4914 acpi_subsys_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa89926dc crypto_dh_decode_key +EXPORT_SYMBOL_GPL vmlinux 0xa8a6364c xas_get_mark +EXPORT_SYMBOL_GPL vmlinux 0xa8a89b4e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xa8a905ec dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xa8ac49b4 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xa8b67540 devm_namespace_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8b969c7 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa8bfab4a class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8ee7f60 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xa913dc35 sysfs_file_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xa91f2187 iommu_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa92b5bdc of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xa92fb4b3 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa931db5a meson8_aobus_parse_dt_extra +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93a0a3b wwan_port_rx +EXPORT_SYMBOL_GPL vmlinux 0xa9416318 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9470ee1 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa9490689 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa95b5c77 hwmon_sanitize_name +EXPORT_SYMBOL_GPL vmlinux 0xa962309f __udp_enqueue_schedule_skb +EXPORT_SYMBOL_GPL vmlinux 0xa966f030 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xa96e8b4e hv_setup_vmbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xa97bc15c tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa983eaf5 vp_modern_queue_vector +EXPORT_SYMBOL_GPL vmlinux 0xa98d9417 page_cache_sync_ra +EXPORT_SYMBOL_GPL vmlinux 0xa99b8e70 __SCK__tp_func_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xa99ef899 devlink_fmsg_bool_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xa9a297f8 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xa9a6f558 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa9a93d34 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa9b32ca8 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9bddc1f devm_gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xa9c1affc da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa9c6d48a devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa9c9edd0 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xa9cbac93 ata_ncq_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xa9f50ca9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0xa9fc79b5 raw_abort +EXPORT_SYMBOL_GPL vmlinux 0xa9fd318e addrconf_add_linklocal +EXPORT_SYMBOL_GPL vmlinux 0xaa306e48 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa3292f2 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xaa3a9d21 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xaa465bf1 devm_register_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xaa49372e kthread_mod_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xaa4cda89 fsl_mc_bus_dpdmux_type +EXPORT_SYMBOL_GPL vmlinux 0xaa5a354e __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xaa67af96 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xaa6a50f9 __static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xaa7a3bdf inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xaa86526d fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xaa8aabe2 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0xaa971d3a phy_gbit_features +EXPORT_SYMBOL_GPL vmlinux 0xaaa5ca8b pinctrl_generic_add_group +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaa96aeb wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xaafafbff rockchip_pmu_unblock +EXPORT_SYMBOL_GPL vmlinux 0xab060841 zynqmp_pm_query_data +EXPORT_SYMBOL_GPL vmlinux 0xab0c39f0 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab227f1e of_genpd_parse_idle_states +EXPORT_SYMBOL_GPL vmlinux 0xab421c3b cpufreq_dbs_governor_init +EXPORT_SYMBOL_GPL vmlinux 0xab424bf0 ip6_route_output_flags_noref +EXPORT_SYMBOL_GPL vmlinux 0xab5a0f3b devm_thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xab62d9ff vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xab69bcd2 devm_gpiod_get_from_of_node +EXPORT_SYMBOL_GPL vmlinux 0xab7f853d mtk_mutex_prepare +EXPORT_SYMBOL_GPL vmlinux 0xab81fa16 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xab83a2ff crypto_skcipher_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xaba372cb spi_mem_exec_op +EXPORT_SYMBOL_GPL vmlinux 0xabb1dd47 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabb3e2e3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabb44d07 sampling_rate_store +EXPORT_SYMBOL_GPL vmlinux 0xabb61fb6 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xabbf5ffd usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xabc4ae57 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabca42ba ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xabe3af50 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xabe3d741 dm_report_zones +EXPORT_SYMBOL_GPL vmlinux 0xabf2c2f1 fib_rules_dump +EXPORT_SYMBOL_GPL vmlinux 0xabf367df switchdev_bridge_port_offload +EXPORT_SYMBOL_GPL vmlinux 0xac024863 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xac0ea92a devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac1964e1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xac3cc2a9 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xac60c82a tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xac6d71d8 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xac6ebdfa irq_gc_noop +EXPORT_SYMBOL_GPL vmlinux 0xac7cc1c5 host1x_context_device_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xac822484 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xaca518c4 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xacae038f sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xacaee98e dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xacb4d88c clk_rate_exclusive_put +EXPORT_SYMBOL_GPL vmlinux 0xacc977ac alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xaccf247b nexthop_for_each_fib6_nh +EXPORT_SYMBOL_GPL vmlinux 0xacf55290 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xacfdd9d2 crypto_comp_compress +EXPORT_SYMBOL_GPL vmlinux 0xad12fe6e xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xad1a39d4 mtk_clk_unregister_factors +EXPORT_SYMBOL_GPL vmlinux 0xad1e6463 cgroup_get_e_css +EXPORT_SYMBOL_GPL vmlinux 0xad1f5a9e phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xad25602f __tracepoint_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xad2ae373 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xad3528be fwnode_property_get_reference_args +EXPORT_SYMBOL_GPL vmlinux 0xad391309 ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xad395dd9 mm_account_pinned_pages +EXPORT_SYMBOL_GPL vmlinux 0xad420112 blk_mq_rdma_map_queues +EXPORT_SYMBOL_GPL vmlinux 0xad42dff8 __SCK__tp_func_tcp_bad_csum +EXPORT_SYMBOL_GPL vmlinux 0xad4e6259 remove_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad4f7890 filemap_range_has_writeback +EXPORT_SYMBOL_GPL vmlinux 0xad5737fc efivar_init +EXPORT_SYMBOL_GPL vmlinux 0xad645234 register_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xad6ed605 bpf_redirect_info +EXPORT_SYMBOL_GPL vmlinux 0xad76a3f0 __SCK__tp_func_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xad783cba bpf_offload_dev_netdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad83ce29 xas_find_conflict +EXPORT_SYMBOL_GPL vmlinux 0xad857d3c ata_scsi_dma_need_drain +EXPORT_SYMBOL_GPL vmlinux 0xad892ebc dma_vmap_noncontiguous +EXPORT_SYMBOL_GPL vmlinux 0xad8935a5 __fsl_mc_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xad8a3936 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xad8c8599 led_set_brightness_nosleep +EXPORT_SYMBOL_GPL vmlinux 0xad94635d platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xad94c656 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xad9f1459 blk_mq_freeze_queue_wait +EXPORT_SYMBOL_GPL vmlinux 0xada38766 dst_cache_destroy +EXPORT_SYMBOL_GPL vmlinux 0xadb6d26e kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xadb9b9fa dm_put +EXPORT_SYMBOL_GPL vmlinux 0xadbb573e devm_clk_get_prepared +EXPORT_SYMBOL_GPL vmlinux 0xadc71e1f dw_pcie_host_deinit +EXPORT_SYMBOL_GPL vmlinux 0xade5339b hte_get_clk_src_info +EXPORT_SYMBOL_GPL vmlinux 0xadf43aa4 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xae0ecf40 usb_bus_idr_lock +EXPORT_SYMBOL_GPL vmlinux 0xae1051b0 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xae1154d5 __trace_trigger_soft_disabled +EXPORT_SYMBOL_GPL vmlinux 0xae38d41b rio_add_net +EXPORT_SYMBOL_GPL vmlinux 0xae39f80e dst_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xae3ead3a dw_pcie_link_up +EXPORT_SYMBOL_GPL vmlinux 0xae433ddc ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xae46a8f1 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xae581fa8 unix_table_locks +EXPORT_SYMBOL_GPL vmlinux 0xae64f1dd __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xae654217 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7b545e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8d1891 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xaea3bbb5 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xaea7f1ef devlink_sb_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaea89cbb __vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaeab3b7e uart_console_device +EXPORT_SYMBOL_GPL vmlinux 0xaeb9894e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xaec5369f od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xaed11b10 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xaed87d5a usb_of_has_combined_node +EXPORT_SYMBOL_GPL vmlinux 0xaee324b9 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xaef79e74 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xaef9c7e0 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xaf01a133 arm64_mm_context_put +EXPORT_SYMBOL_GPL vmlinux 0xaf076aec nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0xaf0b6ba7 blkg_rwstat_init +EXPORT_SYMBOL_GPL vmlinux 0xaf0c69ca devm_watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf235a0b irq_domain_pop_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf3a44e9 __SCK__tp_func_sched_overutilized_tp +EXPORT_SYMBOL_GPL vmlinux 0xaf3d99ba of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xaf4014ff usb_amd_quirk_pll_check +EXPORT_SYMBOL_GPL vmlinux 0xaf410908 i2c_dw_prepare_clk +EXPORT_SYMBOL_GPL vmlinux 0xaf5ead33 __kthread_init_worker +EXPORT_SYMBOL_GPL vmlinux 0xaf6fe69c led_put +EXPORT_SYMBOL_GPL vmlinux 0xaf7130f3 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xaf793668 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xaf852873 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xaf8b7b6e usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xaf8fea92 get_dev_pagemap +EXPORT_SYMBOL_GPL vmlinux 0xaf9b4dd6 fsl_mc_bus_dpseci_type +EXPORT_SYMBOL_GPL vmlinux 0xafa0c25d of_icc_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0xafaee935 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xafaf8cd1 pci_pr3_present +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb72011 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xafc69414 of_pci_get_slot_power_limit +EXPORT_SYMBOL_GPL vmlinux 0xafcc3f05 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xafd2b624 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xafd9e571 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xafddd545 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xafe5764d ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xafe957b8 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xafeb58c1 __SCK__tp_func_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xaff63bbc mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xb00f1f92 rockchip_clk_register_branches +EXPORT_SYMBOL_GPL vmlinux 0xb017aa41 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xb022743b vfs_inode_has_locks +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb0426b1b fsl_mc_portal_free +EXPORT_SYMBOL_GPL vmlinux 0xb043f8a0 kthread_func +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 0xb05cf332 clk_register_hisi_phase +EXPORT_SYMBOL_GPL vmlinux 0xb0654ef1 fuse_get_unique +EXPORT_SYMBOL_GPL vmlinux 0xb0747ed2 rcu_cpu_stall_suppress +EXPORT_SYMBOL_GPL vmlinux 0xb07676f8 genphy_c45_pma_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb079877d hte_push_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb07deddd __dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb085e83a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xb086ff4e gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xb0896a73 bpfilter_ops +EXPORT_SYMBOL_GPL vmlinux 0xb09d549c sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xb0a366d0 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bd46dd xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xb0c6ae28 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb0cacfcb security_kernel_post_read_file +EXPORT_SYMBOL_GPL vmlinux 0xb0cf6d28 spi_slave_abort +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0d3e870 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xb0e15f5f dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xb0e8e671 xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xb0ef9cc3 em_pd_get +EXPORT_SYMBOL_GPL vmlinux 0xb0fd6457 dev_pm_genpd_set_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xb101fb90 of_genpd_add_provider_simple +EXPORT_SYMBOL_GPL vmlinux 0xb10d964d devlink_fmsg_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xb114548a devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb1183f57 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xb11d9000 tty_dev_name_to_number +EXPORT_SYMBOL_GPL vmlinux 0xb126cd17 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xb145936e ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xb152455b n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1647fc2 devlink_info_version_running_put +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb189b74b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb18db4b5 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb19c72a8 fsl_mc_portal_reset +EXPORT_SYMBOL_GPL vmlinux 0xb19f0af6 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xb19fa055 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xb1a33d4b spi_split_transfers_maxsize +EXPORT_SYMBOL_GPL vmlinux 0xb1a3e43d set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xb1b5875a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xb1b72040 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xb1baa71a devlink_linecard_provision_fail +EXPORT_SYMBOL_GPL vmlinux 0xb1bb95a1 devm_kstrdup_const +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1bf7f72 gov_attr_set_get +EXPORT_SYMBOL_GPL vmlinux 0xb1cf2a93 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e49994 bio_poll +EXPORT_SYMBOL_GPL vmlinux 0xb1ecc5d6 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1f4cdc8 crypto_unregister_scomps +EXPORT_SYMBOL_GPL vmlinux 0xb1fc1782 pci_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xb202f0d7 rht_bucket_nested_insert +EXPORT_SYMBOL_GPL vmlinux 0xb2047908 pci_bridge_emul_init +EXPORT_SYMBOL_GPL vmlinux 0xb2131309 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb21d00c6 hte_ts_put +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2405efc secure_tcp_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2565b8a spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb25cfb66 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb269f377 crypto_stats_rng_seed +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb272e716 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xb27ab2a8 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xb27f957b phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xb29533ee zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0xb2b1905b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb2bd0a61 devm_ti_sci_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2c1732e rcu_gp_set_torture_wait +EXPORT_SYMBOL_GPL vmlinux 0xb2cd64f3 pci_host_probe +EXPORT_SYMBOL_GPL vmlinux 0xb2d87261 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2ddc72c gpiod_set_transitory +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb303bf65 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xb307c909 devlink_fmsg_u64_pair_put +EXPORT_SYMBOL_GPL vmlinux 0xb30b2bda preempt_model_full +EXPORT_SYMBOL_GPL vmlinux 0xb318b245 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb3212067 of_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xb33fd204 mptcp_pm_get_add_addr_accept_max +EXPORT_SYMBOL_GPL vmlinux 0xb34a307b event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xb34cc912 blk_mq_sched_try_insert_merge +EXPORT_SYMBOL_GPL vmlinux 0xb34f2c9b imx_check_clk_hws +EXPORT_SYMBOL_GPL vmlinux 0xb34f7642 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xb3729e10 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb37affaf ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb37b3a14 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb37cbf00 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb3968253 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb39772c3 thp_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xb39b667c dev_pm_opp_remove_all_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xb39f165c __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xb3a1bfce find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb3a69eb3 bind_interdomain_evtchn_to_irq_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xb3ca1082 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xb3d270da thermal_zone_device_enable +EXPORT_SYMBOL_GPL vmlinux 0xb3de3f45 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb3dfc0e1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xb400f1f5 ahci_platform_enable_phys +EXPORT_SYMBOL_GPL vmlinux 0xb40ac6f3 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb40d673e zynqmp_pm_pinctrl_request +EXPORT_SYMBOL_GPL vmlinux 0xb4123b0e acpi_bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb43a740e rio_del_device +EXPORT_SYMBOL_GPL vmlinux 0xb43f9365 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xb4429b64 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0xb44836c3 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xb448b1a8 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb44e18ea audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb473cecb mddev_init_writes_pending +EXPORT_SYMBOL_GPL vmlinux 0xb48b37dd devlink_dpipe_match_put +EXPORT_SYMBOL_GPL vmlinux 0xb48f0638 software_node_register +EXPORT_SYMBOL_GPL vmlinux 0xb48f3499 xlnx_register_event +EXPORT_SYMBOL_GPL vmlinux 0xb493dc4a regmap_fields_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xb49ccdf3 pci_epc_get_features +EXPORT_SYMBOL_GPL vmlinux 0xb49eccc4 tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb49ee653 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xb4a64021 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xb4a64f5e of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xb4b2f3de nfs_ssc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd6cbc scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xb4cdd004 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb4d1dc34 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4eda0da ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0xb4f1438e mtk_pinconf_adv_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xb501b2df nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb520eb79 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xb5279c58 acpi_subsys_complete +EXPORT_SYMBOL_GPL vmlinux 0xb52fd530 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xb53bcd03 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb54718e9 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xb5497bfa regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb557d594 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb55de460 HYPERVISOR_dm_op +EXPORT_SYMBOL_GPL vmlinux 0xb56ce672 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xb575b86e of_property_read_variable_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xb58bf65f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb5a83e35 gnttab_setup_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xb5a8c226 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5b05662 sdio_retune_release +EXPORT_SYMBOL_GPL vmlinux 0xb5b6fb04 hv_get_vpreg +EXPORT_SYMBOL_GPL vmlinux 0xb5b9444c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb5cb962e mctrl_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xb5eb0489 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb5f5e4a4 serdev_device_write_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb5f74cac device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6037f6f icc_sync_state +EXPORT_SYMBOL_GPL vmlinux 0xb610b5d9 ethtool_params_from_link_mode +EXPORT_SYMBOL_GPL vmlinux 0xb618977f iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xb61af7ff pci_epc_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb626e958 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xb62bf003 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xb6357e53 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xb639842b acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb639fab6 dev_xdp_prog_count +EXPORT_SYMBOL_GPL vmlinux 0xb63d263f regmap_noinc_read +EXPORT_SYMBOL_GPL vmlinux 0xb6410433 mpi_addm +EXPORT_SYMBOL_GPL vmlinux 0xb64221ce tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xb6512357 icc_link_create +EXPORT_SYMBOL_GPL vmlinux 0xb655f91b pci_epc_get_next_free_bar +EXPORT_SYMBOL_GPL vmlinux 0xb661cea6 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xb66410c1 pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xb6787346 sfp_unregister_socket +EXPORT_SYMBOL_GPL vmlinux 0xb67d985d smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xb67e34c7 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb6821004 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xb69afbb0 devlink_linecard_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb6b18e51 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xb6bd03b5 pm_runtime_suspended_time +EXPORT_SYMBOL_GPL vmlinux 0xb6d149f7 espintcp_queue_out +EXPORT_SYMBOL_GPL vmlinux 0xb6d27de6 __tracepoint_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb6d5fe5b sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d108 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6fb802c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7194e97 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb7195bb0 badblocks_exit +EXPORT_SYMBOL_GPL vmlinux 0xb7254c23 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xb7260ebb subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb72ce24d of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb736ade7 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb73713d7 nvmem_add_cell_lookups +EXPORT_SYMBOL_GPL vmlinux 0xb737ccdb dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb73bb5f4 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb73e37e3 devlink_params_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb7464d9e gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb74c31cd wwan_remove_port +EXPORT_SYMBOL_GPL vmlinux 0xb766ec15 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb76ce571 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xb782c1a3 hv_get_vpreg_128 +EXPORT_SYMBOL_GPL vmlinux 0xb786bf75 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0xb797f972 fsverity_ioctl_enable +EXPORT_SYMBOL_GPL vmlinux 0xb7a2f9c1 __mmc_send_status +EXPORT_SYMBOL_GPL vmlinux 0xb7a387fc synchronize_rcu_tasks_rude +EXPORT_SYMBOL_GPL vmlinux 0xb7b357ad pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb7b46549 __hwspin_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb7c69a63 unregister_vmap_purge_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb7cc0cff __tracepoint_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xb7cde4d1 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xb7d9934a clk_hw_register_gate2 +EXPORT_SYMBOL_GPL vmlinux 0xb7e50645 genphy_c45_pma_read_abilities +EXPORT_SYMBOL_GPL vmlinux 0xb7f990e9 rht_bucket_nested +EXPORT_SYMBOL_GPL vmlinux 0xb8273d0b __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xb834799f regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb842e1c6 __blk_req_zone_write_lock +EXPORT_SYMBOL_GPL vmlinux 0xb85042e5 gnttab_free_grant_reference_seq +EXPORT_SYMBOL_GPL vmlinux 0xb8520247 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb853e724 virtio_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb85e8dd5 __blk_trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xb86d62da of_hwspin_lock_get_id_byname +EXPORT_SYMBOL_GPL vmlinux 0xb8723cc1 devm_fwnode_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb87ac6c4 pci_epc_add_epf +EXPORT_SYMBOL_GPL vmlinux 0xb87f40fe cppc_set_enable +EXPORT_SYMBOL_GPL vmlinux 0xb889f336 synth_event_trace +EXPORT_SYMBOL_GPL vmlinux 0xb88bc47e arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb88f14a6 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb8925b04 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb8993fac __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb89a1176 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xb89e69b1 jump_label_update_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb8aeb55c bpf_map_inc_not_zero +EXPORT_SYMBOL_GPL vmlinux 0xb8b09bcd sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb8b52b00 fsverity_ioctl_read_metadata +EXPORT_SYMBOL_GPL vmlinux 0xb8b7dc65 bpf_preload_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8b8c4f0 ti_sci_release_resource +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d766ae power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb8db751f device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb8eb2a31 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xb8f11603 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8fad571 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb906da18 cdrom_read_tocentry +EXPORT_SYMBOL_GPL vmlinux 0xb912560d static_key_disable +EXPORT_SYMBOL_GPL vmlinux 0xb914f52c of_phandle_iterator_init +EXPORT_SYMBOL_GPL vmlinux 0xb9175787 devlink_linecard_create +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb92186e7 metadata_dst_free +EXPORT_SYMBOL_GPL vmlinux 0xb93cefb0 clk_hw_is_prepared +EXPORT_SYMBOL_GPL vmlinux 0xb940d90d hte_enable_ts +EXPORT_SYMBOL_GPL vmlinux 0xb95ffd13 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xb963fada dma_map_sgtable +EXPORT_SYMBOL_GPL vmlinux 0xb9681621 xdp_do_flush +EXPORT_SYMBOL_GPL vmlinux 0xb97ebe8c inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xb9849754 dev_get_tstats64 +EXPORT_SYMBOL_GPL vmlinux 0xb9852d11 __traceiter_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xb9a582d1 devm_hte_request_ts_ns +EXPORT_SYMBOL_GPL vmlinux 0xb9af663f fscrypt_limit_io_blocks +EXPORT_SYMBOL_GPL vmlinux 0xb9b9509c xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c16f51 hv_max_vp_index +EXPORT_SYMBOL_GPL vmlinux 0xb9c307b2 fsl_mc_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c55534 genphy_c45_check_and_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xb9cbe9e5 tpm2_get_cc_attrs_tbl +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d246d8 gpiochip_irq_domain_deactivate +EXPORT_SYMBOL_GPL vmlinux 0xb9d510df kill_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xb9e053a1 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xb9fb8afb irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xba004141 pinmux_generic_add_function +EXPORT_SYMBOL_GPL vmlinux 0xba057786 kernel_read_file_from_path_initns +EXPORT_SYMBOL_GPL vmlinux 0xba220db7 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba373fcc devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xba498eda pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xba51a5c6 virtio_max_dma_size +EXPORT_SYMBOL_GPL vmlinux 0xba5b3bd0 devm_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xbaae7b47 nf_ip_route +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac0cb16 regulator_is_equal +EXPORT_SYMBOL_GPL vmlinux 0xbad63db5 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xbaf22757 kvfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaf6850c fsnotify_wait_marks_destroyed +EXPORT_SYMBOL_GPL vmlinux 0xbb028ad3 rcu_gp_slow_register +EXPORT_SYMBOL_GPL vmlinux 0xbb083a32 swapcache_mapping +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0b25d2 register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0xbb17ecf5 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xbb24f372 __SCK__tp_func_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xbb3426f5 k3_ringacc_dmarings_init +EXPORT_SYMBOL_GPL vmlinux 0xbb5170c5 irq_get_percpu_devid_partition +EXPORT_SYMBOL_GPL vmlinux 0xbb5c09ed vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xbb6508da random_get_entropy_fallback +EXPORT_SYMBOL_GPL vmlinux 0xbb68d273 of_genpd_add_provider_onecell +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 0xbb7492f6 kvm_vcpu_halt +EXPORT_SYMBOL_GPL vmlinux 0xbb761aee fixed_phy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb7e9690 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xbb89e48d __tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xbb8c66a4 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbb9194b9 nf_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xbb93eec5 ioasid_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbba2da26 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xbba335d6 tegra_mc_write_emem_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbba99632 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbb3b18e decrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xbbb3f206 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xbbb4ab02 mtk_mutex_put +EXPORT_SYMBOL_GPL vmlinux 0xbbbf0354 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xbbc04f07 nfs_ssc_register +EXPORT_SYMBOL_GPL vmlinux 0xbbc4b00f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xbbe5611b crc64_rocksoft_update +EXPORT_SYMBOL_GPL vmlinux 0xbbe56404 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xbbe91bf5 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xbbeafe87 wait_on_page_writeback +EXPORT_SYMBOL_GPL vmlinux 0xbbec0b49 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xbbedb940 acct_bioset_init +EXPORT_SYMBOL_GPL vmlinux 0xbbf8d668 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xbbfe0bbb xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xbc03bfe1 cdrom_multisession +EXPORT_SYMBOL_GPL vmlinux 0xbc140ae3 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbc163d29 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc181d21 gnttab_dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xbc307fc8 pci_bridge_emul_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xbc3891e4 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xbc3f2cb0 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xbc430fe7 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xbc4cb081 dax_layout_busy_page +EXPORT_SYMBOL_GPL vmlinux 0xbc560235 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xbc59a92f thermal_remove_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xbc5bd915 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xbc600dc9 preempt_model_voluntary +EXPORT_SYMBOL_GPL vmlinux 0xbc629c02 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc714b9a extcon_unregister_notifier_all +EXPORT_SYMBOL_GPL vmlinux 0xbc7be0e0 dma_request_chan +EXPORT_SYMBOL_GPL vmlinux 0xbc8a7d6f devm_gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xbc965ac4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xbc9929a2 genphy_c45_pma_resume +EXPORT_SYMBOL_GPL vmlinux 0xbc9b8588 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xbc9c1ab3 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbcb114e1 ext_pi_type1_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xbcbcf661 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbcbe3339 devlink_set_features +EXPORT_SYMBOL_GPL vmlinux 0xbcc15e75 ktime_get_coarse_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xbcca3c5b __traceiter_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xbcd7972f genphy_c45_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce2b94c trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xbcf1f0e6 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xbd06f3a9 ata_get_cmd_name +EXPORT_SYMBOL_GPL vmlinux 0xbd09d904 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xbd17deca __iomap_dio_rw +EXPORT_SYMBOL_GPL vmlinux 0xbd22d596 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xbd28f3c2 devm_phy_package_join +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4f5255 dprc_open +EXPORT_SYMBOL_GPL vmlinux 0xbd5704ec __tracepoint_xdp_bulk_tx +EXPORT_SYMBOL_GPL vmlinux 0xbd631ff2 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xbd757d0d ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xbd7aaaee add_memory +EXPORT_SYMBOL_GPL vmlinux 0xbd85f55b synth_event_trace_array +EXPORT_SYMBOL_GPL vmlinux 0xbd95e4e9 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xbd9b5b9c of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xbdb2217d hv_is_isolation_supported +EXPORT_SYMBOL_GPL vmlinux 0xbdb72342 __tracepoint_devlink_hwmsg +EXPORT_SYMBOL_GPL vmlinux 0xbdc11d5a mtk_hw_get_value +EXPORT_SYMBOL_GPL vmlinux 0xbdc198eb adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbdc271a3 fb_deferred_io_release +EXPORT_SYMBOL_GPL vmlinux 0xbdd69da2 genphy_c45_pma_baset1_setup_master_slave +EXPORT_SYMBOL_GPL vmlinux 0xbdda1b5f vmalloc_huge +EXPORT_SYMBOL_GPL vmlinux 0xbde53c50 raw_v4_match +EXPORT_SYMBOL_GPL vmlinux 0xbe091881 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xbe0d36ff inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbe10cd01 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xbe137c1e imx_fracn_gppll +EXPORT_SYMBOL_GPL vmlinux 0xbe166962 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbe2dce3f tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xbe330aa2 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbe3a357b call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xbe409389 devlink_port_linecard_set +EXPORT_SYMBOL_GPL vmlinux 0xbe4c1c5a register_btf_kfunc_id_set +EXPORT_SYMBOL_GPL vmlinux 0xbe4f41fc create_signature +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 0xbe76ed7b blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xbe79c313 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe7d3456 crypto_unregister_kpp +EXPORT_SYMBOL_GPL vmlinux 0xbe80ca73 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbe81693d pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe9a83d5 dw_pcie_write +EXPORT_SYMBOL_GPL vmlinux 0xbe9d459f edac_mc_del_mc +EXPORT_SYMBOL_GPL vmlinux 0xbea05c03 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea853bd kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xbeae936b devm_clk_hw_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbeb3d504 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xbec3fde1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbec66c3a __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xbedfece5 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbef16b02 clk_mux_val_to_index +EXPORT_SYMBOL_GPL vmlinux 0xbef547f2 sysfs_group_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xbef6dacc dst_blackhole_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbef81e50 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf073a7a lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xbf106588 regulator_set_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf13f484 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xbf1a12b7 udp_tunnel_nic_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf1d30d2 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xbf2e2e71 housekeeping_enabled +EXPORT_SYMBOL_GPL vmlinux 0xbf354475 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xbf377b4a posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf3bbafa ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf4513c3 devlink_linecard_activate +EXPORT_SYMBOL_GPL vmlinux 0xbf4b15b7 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xbf52b316 unregister_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xbf54c4d3 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf58acec fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xbf669abb usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xbf6a7462 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xbf876b8a pci_epf_create +EXPORT_SYMBOL_GPL vmlinux 0xbf8af33d hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xbfa1aa73 kpp_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbfa338c9 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xbfb1fc83 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0xbfbb4a50 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd961cc watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xbfe3e811 fscrypt_d_revalidate +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfed2cd9 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xc003e3e1 k3_udma_glue_rx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xc00b21a0 evict_inodes +EXPORT_SYMBOL_GPL vmlinux 0xc0147e70 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xc02d50db sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc058fd39 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc05cee80 ipi_get_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xc069b96e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xc071b3c5 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xc07300c9 qcom_smem_state_register +EXPORT_SYMBOL_GPL vmlinux 0xc08ccd17 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc090c376 net_selftest_get_strings +EXPORT_SYMBOL_GPL vmlinux 0xc095957e acpi_dev_clear_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc095ee37 xhci_ext_cap_init +EXPORT_SYMBOL_GPL vmlinux 0xc09e6062 device_bind_driver +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 0xc0ae3264 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0b2664d devlink_dpipe_header_ipv4 +EXPORT_SYMBOL_GPL vmlinux 0xc0b46c8c dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc0c0d352 skb_gso_validate_mac_len +EXPORT_SYMBOL_GPL vmlinux 0xc0c2e465 dm_table_device_name +EXPORT_SYMBOL_GPL vmlinux 0xc0c5af6d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xc0d166d4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL vmlinux 0xc0de0d25 serial8250_rpm_put_tx +EXPORT_SYMBOL_GPL vmlinux 0xc0deff06 meson_clk_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xc0e34880 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc1086e0c sysrq_toggle_support +EXPORT_SYMBOL_GPL vmlinux 0xc1092b2d blk_crypto_has_capabilities +EXPORT_SYMBOL_GPL vmlinux 0xc10fddb8 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xc114c6dd synth_event_gen_cmd_array_start +EXPORT_SYMBOL_GPL vmlinux 0xc123fdba ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xc1265be2 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xc132d4d4 __traceiter_xdp_exception +EXPORT_SYMBOL_GPL vmlinux 0xc1417b53 dmaengine_desc_set_metadata_len +EXPORT_SYMBOL_GPL vmlinux 0xc144289b fat_update_time +EXPORT_SYMBOL_GPL vmlinux 0xc157c6d6 lwtunnel_encap_del_ops +EXPORT_SYMBOL_GPL vmlinux 0xc165511a ima_inode_hash +EXPORT_SYMBOL_GPL vmlinux 0xc166298f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc17401f1 serial8250_update_uartclk +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 0xc193703f crypto_unregister_templates +EXPORT_SYMBOL_GPL vmlinux 0xc19f0f3a of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xc1b44db8 dev_pm_domain_attach_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc1c23b25 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc1dce028 k3_udma_glue_reset_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc1e34e33 perf_aux_output_begin +EXPORT_SYMBOL_GPL vmlinux 0xc1e6ade6 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc1eef053 clk_hw_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0xc21b530d crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc21d9be3 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc227d9bb skb_mpls_pop +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2472388 tegra210_clk_emc_update_setting +EXPORT_SYMBOL_GPL vmlinux 0xc24a6bac blkdev_nr_zones +EXPORT_SYMBOL_GPL vmlinux 0xc2501eca ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc262ddba devm_register_power_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2692173 wakeup_sources_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc27397a4 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc285eb10 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xc286f25e get_user_pages_fast_only +EXPORT_SYMBOL_GPL vmlinux 0xc289e46d cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc28edfd5 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc28f4092 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xc29e9dcf devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xc2a3e570 errata +EXPORT_SYMBOL_GPL vmlinux 0xc2a814db tcp_memory_pressure +EXPORT_SYMBOL_GPL vmlinux 0xc2aa3065 dm_table_set_type +EXPORT_SYMBOL_GPL vmlinux 0xc2af89a0 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc2b46dd6 devm_hwspin_lock_unregister +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 0xc2ca9c98 nvdimm_security_setup_events +EXPORT_SYMBOL_GPL vmlinux 0xc2cb9ca1 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2eb8a24 switchdev_handle_port_attr_set +EXPORT_SYMBOL_GPL vmlinux 0xc2edb664 fsl_mc_bus_dpmcp_type +EXPORT_SYMBOL_GPL vmlinux 0xc2eeef75 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc30332ef xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xc334f5e3 mdiobus_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xc340e246 zynqmp_pm_request_node +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3497b63 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xc34ec702 usb_phy_get_charger_current +EXPORT_SYMBOL_GPL vmlinux 0xc3708747 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc3805cd1 fs_ftype_to_dtype +EXPORT_SYMBOL_GPL vmlinux 0xc380f685 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xc3834a1b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc3876c1a hv_isolation_type_snp +EXPORT_SYMBOL_GPL vmlinux 0xc38af3c5 sprd_pinctrl_core_probe +EXPORT_SYMBOL_GPL vmlinux 0xc39f6823 nf_queue_nf_hook_drop +EXPORT_SYMBOL_GPL vmlinux 0xc3b31ea2 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc3b5924d aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xc3c4c6cc hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0xc3d588de i2c_new_ancillary_device +EXPORT_SYMBOL_GPL vmlinux 0xc3de65ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc3e5d3c7 dmaengine_desc_attach_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc3ea5305 iommu_default_passthrough +EXPORT_SYMBOL_GPL vmlinux 0xc3f6679f irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc4093ab0 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42f8c35 clk_mux_determine_rate_flags +EXPORT_SYMBOL_GPL vmlinux 0xc4380601 mtk_pinconf_bias_get +EXPORT_SYMBOL_GPL vmlinux 0xc445e120 nvdimm_bus_add_badrange +EXPORT_SYMBOL_GPL vmlinux 0xc44992ee devlink_param_driverinit_value_get +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46324f6 dynevent_create +EXPORT_SYMBOL_GPL vmlinux 0xc466a1d3 serdev_device_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc4760488 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xc47a90b9 bpf_fentry_test1 +EXPORT_SYMBOL_GPL vmlinux 0xc4860cb3 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc498bdc9 devlink_register +EXPORT_SYMBOL_GPL vmlinux 0xc49d54ee lwtunnel_state_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4a31146 rdma_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc4a627ca dprc_get_obj +EXPORT_SYMBOL_GPL vmlinux 0xc4a72936 trusted_tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc4b395ba dev_pm_opp_find_bw_ceil +EXPORT_SYMBOL_GPL vmlinux 0xc4ccef02 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xc4f0da12 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xc51450c6 imx_ccm_lock +EXPORT_SYMBOL_GPL vmlinux 0xc5216021 crypto_register_scomp +EXPORT_SYMBOL_GPL vmlinux 0xc53c3779 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xc53e714a dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xc5478a60 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc55ab3c0 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc5604800 clk_set_rate_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc571193c fsl_mc_obj_reset +EXPORT_SYMBOL_GPL vmlinux 0xc57427a1 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5777fca linear_range_get_selector_low_array +EXPORT_SYMBOL_GPL vmlinux 0xc5789acb uart_get_rs485_mode +EXPORT_SYMBOL_GPL vmlinux 0xc57eb0c3 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc58689a7 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc58a3ee6 icc_node_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc5a06b99 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xc5a5c678 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0xc5cefdfb pm_clk_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc5d4fa4f tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xc604faa7 nexthop_find_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc6060a2d arm64_mm_context_get +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61db984 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc6361472 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc63cafc8 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc63fae8c elv_rqhash_del +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 0xc670463f regulator_suspend_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6779093 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xc68c41d6 __SCK__tp_func_ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL vmlinux 0xc699bdbe edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b1b232 samsung_sdi_battery_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc6b2a41b strp_init +EXPORT_SYMBOL_GPL vmlinux 0xc6c22ea0 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc6c91926 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc6d33b29 devm_init_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc6def34b gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xc6e5bcf3 linear_range_get_selector_within +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70c6bbb __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc7100f05 driver_set_override +EXPORT_SYMBOL_GPL vmlinux 0xc71789a2 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc74b3123 crypto_alloc_acomp +EXPORT_SYMBOL_GPL vmlinux 0xc7856e74 __wake_up_locked_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xc78dfefd __irq_apply_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xc79f121f ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a7e770 clk_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7b2d572 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xc7b875d1 bdev_alignment_offset +EXPORT_SYMBOL_GPL vmlinux 0xc7baa0b5 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xc7be31c7 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xc7c23ff0 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0xc7cab8dc skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc7d29607 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xc7e64fc2 asn1_encode_integer +EXPORT_SYMBOL_GPL vmlinux 0xc7fa4aa9 kobj_ns_drop +EXPORT_SYMBOL_GPL vmlinux 0xc7fe2715 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc800b5db gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xc80f8e4a devlink_resource_occ_get_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc813eb05 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc829beb1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc82b3a88 __SCK__tp_func_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc82c721f klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xc82f3524 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xc833c2c5 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xc83e5190 pinctrl_find_gpio_range_from_pin_nolock +EXPORT_SYMBOL_GPL vmlinux 0xc8594d3d reset_control_acquire +EXPORT_SYMBOL_GPL vmlinux 0xc861000b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc874f371 blk_queue_set_zoned +EXPORT_SYMBOL_GPL vmlinux 0xc8762da4 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc87b46e9 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xc87c9002 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xc87dd725 k3_udma_glue_pop_rx_chn +EXPORT_SYMBOL_GPL vmlinux 0xc87eda52 tegra_mc_get_emem_device_count +EXPORT_SYMBOL_GPL vmlinux 0xc8a044b8 fwnode_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xc8a3c118 iommu_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8d814e9 edac_mc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc8ddd5b5 kstrdup_quotable +EXPORT_SYMBOL_GPL vmlinux 0xc8defb95 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xc8e47db4 fat_truncate_time +EXPORT_SYMBOL_GPL vmlinux 0xc8ea127a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc8f76f8d sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9145638 pci_epf_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc917f6bf meson_pmx_get_groups +EXPORT_SYMBOL_GPL vmlinux 0xc91c986e of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc91d77e7 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xc91fdf58 percpu_ref_is_zero +EXPORT_SYMBOL_GPL vmlinux 0xc9345c0f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xc9377098 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xc938ee28 pm_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xc9394dd4 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xc93b1e65 blk_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xc93ee1e7 usb_phy_roothub_init +EXPORT_SYMBOL_GPL vmlinux 0xc9463b23 mmu_interval_notifier_insert +EXPORT_SYMBOL_GPL vmlinux 0xc946eb65 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xc94f9651 bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc96057e5 dev_nit_active +EXPORT_SYMBOL_GPL vmlinux 0xc9636406 irq_domain_create_simple +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96a2ab1 extcon_set_property_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9715630 __SCK__tp_func_ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc9827693 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0xc983ce7b amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9849d52 blk_mq_hctx_set_fq_lock_class +EXPORT_SYMBOL_GPL vmlinux 0xc98738d0 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xc9953c54 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xc9989e7d wakeup_sources_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc999f865 sched_set_fifo +EXPORT_SYMBOL_GPL vmlinux 0xc9a9b414 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc9abb1b4 k3_ringacc_ring_cfg +EXPORT_SYMBOL_GPL vmlinux 0xc9d309d7 regulator_map_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ecff50 devl_port_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9f1d576 usb_control_msg_send +EXPORT_SYMBOL_GPL vmlinux 0xc9f9c012 debugfs_lookup_and_remove +EXPORT_SYMBOL_GPL vmlinux 0xc9fb00f7 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0xc9fd634a usb_role_switch_put +EXPORT_SYMBOL_GPL vmlinux 0xca2188b2 clk_hw_get_parent_index +EXPORT_SYMBOL_GPL vmlinux 0xca3ac28e sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xca454a34 vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0xca46a155 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xca58d136 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xca6183c1 pci_epc_init_notify +EXPORT_SYMBOL_GPL vmlinux 0xca714dde fscrypt_get_symlink +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7d8a2f of_property_read_variable_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xca81bdcd devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xca86b334 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xca8f824c edac_device_handle_ce_count +EXPORT_SYMBOL_GPL vmlinux 0xca9a1d5e ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0xcaaf382c devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xcab4b2de ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad21f5b irq_create_mapping_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcad41071 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xcadeb07c regulator_get_voltage_sel_pickable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcae0d9fe sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xcae7ce5d fsl_mc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xcaf1d958 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xcaf2a87b vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xcaf4399e iomap_writepage +EXPORT_SYMBOL_GPL vmlinux 0xcafa9863 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcb01bfb3 mmu_interval_notifier_remove +EXPORT_SYMBOL_GPL vmlinux 0xcb186931 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xcb275bd6 tpm_transmit_cmd +EXPORT_SYMBOL_GPL vmlinux 0xcb2bfe2b nvmem_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcb36e9f1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcb384239 phy_reset +EXPORT_SYMBOL_GPL vmlinux 0xcb3ac179 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xcb3f22e5 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcb505ae1 fwnode_get_next_available_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcb561441 mem_dump_obj +EXPORT_SYMBOL_GPL vmlinux 0xcb5c7ec7 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xcb5d8448 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xcb64d519 usb_pipe_type_check +EXPORT_SYMBOL_GPL vmlinux 0xcb69d412 gpiochip_line_is_open_source +EXPORT_SYMBOL_GPL vmlinux 0xcb8b0438 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xcba72840 of_mm_gpiochip_add_data +EXPORT_SYMBOL_GPL vmlinux 0xcbab294e device_get_named_child_node +EXPORT_SYMBOL_GPL vmlinux 0xcbbfe550 bpf_verifier_log_write +EXPORT_SYMBOL_GPL vmlinux 0xcbd7c6ea usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xcbe297e7 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbebb830 register_nvdimm_pmu +EXPORT_SYMBOL_GPL vmlinux 0xcbecf763 wp_shared_mapping_range +EXPORT_SYMBOL_GPL vmlinux 0xcbf7f781 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xcc0fd0a7 k3_ringacc_ring_push_head +EXPORT_SYMBOL_GPL vmlinux 0xcc14826e trace_array_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcc253f98 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcc29e05e irq_set_affinity +EXPORT_SYMBOL_GPL vmlinux 0xcc2dbfd8 irq_domain_check_msi_remap +EXPORT_SYMBOL_GPL vmlinux 0xcc39c03e nvmem_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc47ad78 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xcc49825d rio_map_outb_region +EXPORT_SYMBOL_GPL vmlinux 0xcc4a945d blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xcc61492f virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xcc64ef75 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xcc795932 devlink_region_snapshot_id_put +EXPORT_SYMBOL_GPL vmlinux 0xcc8e9e1a udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc9268fc hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0xcc935375 walk_iomem_res_desc +EXPORT_SYMBOL_GPL vmlinux 0xccabde6f crc64_rocksoft_generic +EXPORT_SYMBOL_GPL vmlinux 0xccaec4e9 power_supply_charge_behaviour_show +EXPORT_SYMBOL_GPL vmlinux 0xccbc4842 __bio_add_page +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd1c5e7 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xccd43bf0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xccd86806 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0xcce49241 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xcce4a850 mtk_eint_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xccf52bc9 sfp_upstream_start +EXPORT_SYMBOL_GPL vmlinux 0xccfa6186 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xccfcb6c2 pci_find_host_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcd149d80 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xcd1c1a53 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0xcd24e146 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0xcd2589bc hwspin_lock_register +EXPORT_SYMBOL_GPL vmlinux 0xcd319554 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xcd372d04 crypto_shash_tfm_digest +EXPORT_SYMBOL_GPL vmlinux 0xcd60cf8c mtk_pinconf_bias_set_combo +EXPORT_SYMBOL_GPL vmlinux 0xcd6f2dc9 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0xcd704958 tpm_default_chip +EXPORT_SYMBOL_GPL vmlinux 0xcd74475d platform_msi_domain_free_irqs +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 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda170d3 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xcda2aaba k3_udma_glue_tx_dma_to_cppi5_addr +EXPORT_SYMBOL_GPL vmlinux 0xcdaf4379 gpiochip_relres_irq +EXPORT_SYMBOL_GPL vmlinux 0xcdb3cae1 iomap_readahead +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdc0b06f pinmux_generic_get_function_name +EXPORT_SYMBOL_GPL vmlinux 0xcdc440a1 md_start +EXPORT_SYMBOL_GPL vmlinux 0xcdc86b55 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcd002a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xcdd31326 devm_acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xcdd7d3be crypto_stats_get +EXPORT_SYMBOL_GPL vmlinux 0xcdd97130 led_get_default_pattern +EXPORT_SYMBOL_GPL vmlinux 0xcde26600 cppc_get_transition_latency +EXPORT_SYMBOL_GPL vmlinux 0xcdeaca42 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xcdf9b81d iomap_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xce028dd1 dmaengine_desc_get_metadata_ptr +EXPORT_SYMBOL_GPL vmlinux 0xce08626c shake_page +EXPORT_SYMBOL_GPL vmlinux 0xce0a4020 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0xce0c1eec pm_clk_create +EXPORT_SYMBOL_GPL vmlinux 0xce13b23f __fscrypt_prepare_readdir +EXPORT_SYMBOL_GPL vmlinux 0xce25a4e0 pcie_port_find_device +EXPORT_SYMBOL_GPL vmlinux 0xce310f4f meson_clk_mpll_ops +EXPORT_SYMBOL_GPL vmlinux 0xce316d7e zynqmp_pm_set_sd_tapdelay +EXPORT_SYMBOL_GPL vmlinux 0xce3a0b9e led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xce3b512c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xce3cc974 devm_ti_sci_get_of_resource +EXPORT_SYMBOL_GPL vmlinux 0xce45f7af i2c_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xce598ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xce61e28d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xce63e577 fsl_mc_cleanup_irq_pool +EXPORT_SYMBOL_GPL vmlinux 0xce65b9c1 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xce6d12ac fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8a8b5b dw_pcie_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xce945996 inet_hashinfo2_init_mod +EXPORT_SYMBOL_GPL vmlinux 0xceac8674 zynqmp_pm_read_pggs +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcebc3004 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xcebf8543 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xced6151a fwnode_get_phy_node +EXPORT_SYMBOL_GPL vmlinux 0xcedeb219 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee6c5da icc_set_tag +EXPORT_SYMBOL_GPL vmlinux 0xcee88e7a of_overlay_fdt_apply +EXPORT_SYMBOL_GPL vmlinux 0xceec1fa8 synth_event_create +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcf0f854b iopf_queue_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcf1033e0 skb_clone_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xcf1ac044 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xcf1d2345 fsl_mc_bus_dpaiop_type +EXPORT_SYMBOL_GPL vmlinux 0xcf371347 of_msi_configure +EXPORT_SYMBOL_GPL vmlinux 0xcf3a524c of_property_read_variable_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcf508952 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xcf571b16 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xcf6ed22d tcp_is_ulp_esp +EXPORT_SYMBOL_GPL vmlinux 0xcf6f20c6 pm_genpd_opp_to_performance_state +EXPORT_SYMBOL_GPL vmlinux 0xcf7322dc locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xcf7f66f9 imx_dev_clk_hw_pll14xx +EXPORT_SYMBOL_GPL vmlinux 0xcfa85f94 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfb9c5d6 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfc2f75c regmap_get_device +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 0xcfd6d06a devm_pinctrl_register_and_init +EXPORT_SYMBOL_GPL vmlinux 0xcffd793e hyperv_report_panic +EXPORT_SYMBOL_GPL vmlinux 0xd016c815 __traceiter_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xd018cc3e rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xd018e357 tun_get_tx_ring +EXPORT_SYMBOL_GPL vmlinux 0xd026d518 HYPERVISOR_vcpu_op +EXPORT_SYMBOL_GPL vmlinux 0xd02adac1 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xd03eaf4c schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0xd03f1a9f fwnode_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd0401231 mtk_pinconf_adv_pull_set +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04aedfd __SCK__tp_func_arm_event +EXPORT_SYMBOL_GPL vmlinux 0xd0507b5c kvm_put_kvm_no_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd051adc8 trace_array_init_printk +EXPORT_SYMBOL_GPL vmlinux 0xd055c563 fuse_dev_alloc_install +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd07368b1 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xd07ad444 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xd083f9bf gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xd086b8b8 nvmem_cell_read_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd08ca575 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd097b9ed virtio_add_status +EXPORT_SYMBOL_GPL vmlinux 0xd09911a6 acpi_dev_get_irq_type +EXPORT_SYMBOL_GPL vmlinux 0xd09f814a skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xd0a3c920 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd0abb3e6 of_led_get +EXPORT_SYMBOL_GPL vmlinux 0xd0bece96 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c31fdc rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd0c8044a srcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0xd0c80827 dev_pm_opp_put_clkname +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 0xd0df4eab crypto_stats_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xd0ecc336 regulator_list_voltage_pickable_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd0fd7085 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd100a932 __traceiter_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xd104c64c arm_cspmu_sysfs_format_show +EXPORT_SYMBOL_GPL vmlinux 0xd1084f8a meson_pmx_get_func_name +EXPORT_SYMBOL_GPL vmlinux 0xd124d5cd __ndisc_fill_addr_option +EXPORT_SYMBOL_GPL vmlinux 0xd12eba7f pci_host_common_remove +EXPORT_SYMBOL_GPL vmlinux 0xd138c08a free_iova_fast +EXPORT_SYMBOL_GPL vmlinux 0xd1481de7 mpi_clear +EXPORT_SYMBOL_GPL vmlinux 0xd15081b7 page_cache_async_ra +EXPORT_SYMBOL_GPL vmlinux 0xd159586c net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xd15e3dee usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd16a8cef __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xd1790f70 device_add +EXPORT_SYMBOL_GPL vmlinux 0xd181f7aa wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd19d3eae rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xd1a49794 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xd1a9ca15 __SCK__tp_func_neigh_update +EXPORT_SYMBOL_GPL vmlinux 0xd1b1de39 kvm_make_all_cpus_request +EXPORT_SYMBOL_GPL vmlinux 0xd1b8bf6c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd1cbc23c add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xd1dc83ec phy_package_leave +EXPORT_SYMBOL_GPL vmlinux 0xd1dde1c8 lwtunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd1ecc3f1 hisi_clk_init +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd2065603 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd208d063 of_icc_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xd2118825 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xd216ca74 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21b61bd async_schedule_node_domain +EXPORT_SYMBOL_GPL vmlinux 0xd21c3c72 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd21f1d35 __SCK__tp_func_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xd224275a dprc_close +EXPORT_SYMBOL_GPL vmlinux 0xd22d3aa9 kvm_vcpu_map +EXPORT_SYMBOL_GPL vmlinux 0xd22ed1fa meson_clk_pcie_pll_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2423f76 i2c_acpi_get_i2c_resource +EXPORT_SYMBOL_GPL vmlinux 0xd243bd06 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd248a519 rockchip_pmu_block +EXPORT_SYMBOL_GPL vmlinux 0xd24e9e8c klist_init +EXPORT_SYMBOL_GPL vmlinux 0xd260af0d ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0xd2733502 sk_msg_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27eeb4b alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0xd27f215d gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xd293eeb5 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xd2964d37 watchdog_set_last_hw_keepalive +EXPORT_SYMBOL_GPL vmlinux 0xd29c1f10 __traceiter_error_report_end +EXPORT_SYMBOL_GPL vmlinux 0xd29d8c42 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd2a7b0c6 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xd2b10a05 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0xd2b3565a scsi_alloc_request +EXPORT_SYMBOL_GPL vmlinux 0xd2c2dc07 dw_pcie_own_conf_map_bus +EXPORT_SYMBOL_GPL vmlinux 0xd2d615f5 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2d7e59b unregister_platform_power_off +EXPORT_SYMBOL_GPL vmlinux 0xd2e79416 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xd2ee09c6 devm_nvmem_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd2f2c2d2 acpi_spi_count_resources +EXPORT_SYMBOL_GPL vmlinux 0xd2f71c80 dm_submit_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xd313bc7b xas_nomem +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 0xd322c6cd ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd32cea19 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xd333f135 firmware_request_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xd33412fa hisi_clk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd342b9eb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xd34332a7 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0xd3551a76 zynqmp_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd36760ef __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xd3752c27 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd3775e3b __mmc_poll_for_busy +EXPORT_SYMBOL_GPL vmlinux 0xd37ce16b __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd37cfd24 devlink_dpipe_entry_ctx_close +EXPORT_SYMBOL_GPL vmlinux 0xd39d1073 iommu_fwspec_init +EXPORT_SYMBOL_GPL vmlinux 0xd39e9848 put_itimerspec64 +EXPORT_SYMBOL_GPL vmlinux 0xd3a8b6c9 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xd3adb9ce gen10g_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xd3b60305 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd3b6bf35 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd3bc352a platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xd3c90dbe serdev_device_write_buf +EXPORT_SYMBOL_GPL vmlinux 0xd3eaf1ed devlink_dpipe_entry_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3ec851c __traceiter_unmap +EXPORT_SYMBOL_GPL vmlinux 0xd3f0cd42 misc_cg_res_total_usage +EXPORT_SYMBOL_GPL vmlinux 0xd3f69dd6 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd3f9dde9 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd410979a ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1d4e show_rcu_tasks_rude_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd42f8562 fw_devlink_purge_absent_suppliers +EXPORT_SYMBOL_GPL vmlinux 0xd430057d devm_irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45adbe8 vp_modern_get_queue_size +EXPORT_SYMBOL_GPL vmlinux 0xd466a338 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd46af5ef cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xd46fd7dd devm_regmap_field_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xd4785eae vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xd4846479 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd48daded preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd49356c4 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd4935851 __SCK__tp_func_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xd4a19e3b devm_qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xd4ae8561 blk_mq_end_request_batch +EXPORT_SYMBOL_GPL vmlinux 0xd4b41b21 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd4b4dfe6 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xd4b6157e devlink_health_reporter_recovery_done +EXPORT_SYMBOL_GPL vmlinux 0xd4b9a616 reset_control_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cbdbe3 __SCK__tp_func_devlink_trap_report +EXPORT_SYMBOL_GPL vmlinux 0xd4d059be rio_add_mport_pw_handler +EXPORT_SYMBOL_GPL vmlinux 0xd4e029a1 vp_legacy_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd4e6d7e0 linear_range_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd4f5bfa5 iommu_queue_iopf +EXPORT_SYMBOL_GPL vmlinux 0xd50c9100 mtk_pinconf_drive_get +EXPORT_SYMBOL_GPL vmlinux 0xd510ac23 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xd51aeab5 pci_epc_get_msix +EXPORT_SYMBOL_GPL vmlinux 0xd5301b2c linear_range_get_max_value +EXPORT_SYMBOL_GPL vmlinux 0xd5353e43 devm_nvmem_device_get +EXPORT_SYMBOL_GPL vmlinux 0xd53c67b3 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd53f6958 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd542f01a vp_modern_set_queue_enable +EXPORT_SYMBOL_GPL vmlinux 0xd5474690 usb_role_switch_set_role +EXPORT_SYMBOL_GPL vmlinux 0xd552978b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0xd5580a09 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56aa48f extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd56ed7a4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd574cab9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd5787987 devlink_trap_groups_register +EXPORT_SYMBOL_GPL vmlinux 0xd5807af3 k3_ringacc_ring_pop +EXPORT_SYMBOL_GPL vmlinux 0xd583b45b of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xd58562bb __class_create +EXPORT_SYMBOL_GPL vmlinux 0xd5863cd8 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd58e1eaa metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd59a1587 linkmode_resolve_pause +EXPORT_SYMBOL_GPL vmlinux 0xd59c5cd1 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xd5a5e357 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd5b299b5 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xd5b92077 devm_tegra_core_dev_init_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xd5c0e932 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xd5c3b4d6 iomap_writepages +EXPORT_SYMBOL_GPL vmlinux 0xd5c75f5f __kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xd5e82a36 l3mdev_update_flow +EXPORT_SYMBOL_GPL vmlinux 0xd5f85d52 bpf_trace_run9 +EXPORT_SYMBOL_GPL vmlinux 0xd605d3fc gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd6115b91 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xd611ea7e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd625878f wbt_enable_default +EXPORT_SYMBOL_GPL vmlinux 0xd6261e4a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd62c685f edac_device_handle_ue_count +EXPORT_SYMBOL_GPL vmlinux 0xd634e490 simple_attr_write_signed +EXPORT_SYMBOL_GPL vmlinux 0xd64ed259 __memcat_p +EXPORT_SYMBOL_GPL vmlinux 0xd657da0a regulator_set_voltage_rdev +EXPORT_SYMBOL_GPL vmlinux 0xd66a418f ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xd66e1bdf anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd673c3f8 perf_event_addr_filters_sync +EXPORT_SYMBOL_GPL vmlinux 0xd67e6d35 ata_host_put +EXPORT_SYMBOL_GPL vmlinux 0xd686dee0 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd6aafb42 crc64_rocksoft +EXPORT_SYMBOL_GPL vmlinux 0xd6b27e8a xas_set_mark +EXPORT_SYMBOL_GPL vmlinux 0xd6bbe0f3 netlink_strict_get_check +EXPORT_SYMBOL_GPL vmlinux 0xd6be8ea8 blk_queue_required_elevator_features +EXPORT_SYMBOL_GPL vmlinux 0xd6c04294 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xd6ce036f badblocks_show +EXPORT_SYMBOL_GPL vmlinux 0xd6d1e6fb ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xd6d38c4b blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c3d2 devm_memremap_pages +EXPORT_SYMBOL_GPL vmlinux 0xd6e24563 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd6e2801f pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd6e3b89b regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xd6e615aa imx93_clk_composite_flags +EXPORT_SYMBOL_GPL vmlinux 0xd6eb8858 ethnl_cable_test_free +EXPORT_SYMBOL_GPL vmlinux 0xd6f3e666 pci_epf_type_add_cfs +EXPORT_SYMBOL_GPL vmlinux 0xd6fab1e3 is_software_node +EXPORT_SYMBOL_GPL vmlinux 0xd6fe374a fsl_mc_bus_dpmac_type +EXPORT_SYMBOL_GPL vmlinux 0xd6ff6ade devlink_dpipe_entry_ctx_append +EXPORT_SYMBOL_GPL vmlinux 0xd70ae886 vc_scrolldelta_helper +EXPORT_SYMBOL_GPL vmlinux 0xd7135f84 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd72488ba rio_unregister_mport +EXPORT_SYMBOL_GPL vmlinux 0xd7269c64 osc_sb_native_usb4_control +EXPORT_SYMBOL_GPL vmlinux 0xd7293ffc percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74e400f show_rcu_tasks_classic_gp_kthread +EXPORT_SYMBOL_GPL vmlinux 0xd754636a wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd75b20aa rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0xd75c15ed shash_free_singlespawn_instance +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774957d mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xd7823b7c dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xd782e75d kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xd7b11040 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7b8ba84 bpf_prog_add +EXPORT_SYMBOL_GPL vmlinux 0xd7c772cf dev_pm_opp_put_regulators +EXPORT_SYMBOL_GPL vmlinux 0xd7c88ebe crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd7c91b63 tegra210_sata_pll_hw_control_enable +EXPORT_SYMBOL_GPL vmlinux 0xd7cea889 edac_mod_work +EXPORT_SYMBOL_GPL vmlinux 0xd7d7186d rdev_get_name +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 0xd7e07f15 phy_driver_is_genphy +EXPORT_SYMBOL_GPL vmlinux 0xd7e28d43 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xd7f5443b nf_hook_entries_insert_raw +EXPORT_SYMBOL_GPL vmlinux 0xd7fa663b pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xd8035764 pci_epc_mem_free_addr +EXPORT_SYMBOL_GPL vmlinux 0xd821122c devlink_port_attrs_pci_pf_set +EXPORT_SYMBOL_GPL vmlinux 0xd823e12d i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xd84d35bd dax_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8576d68 stmpe811_adc_common_init +EXPORT_SYMBOL_GPL vmlinux 0xd85e69ac phy_set_speed +EXPORT_SYMBOL_GPL vmlinux 0xd85eedff usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xd86baf54 io_uring_cmd_complete_in_task +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a17488 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xd8a1eec9 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd8a72131 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xd8ae903a pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xd8b09bd7 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xd8b20595 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xd8bd07c8 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xd8c19f92 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xd8c94729 is_swiotlb_active +EXPORT_SYMBOL_GPL vmlinux 0xd8d68ab1 dmi_memdev_type +EXPORT_SYMBOL_GPL vmlinux 0xd8da858d extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xd8e1322e i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd8f42d15 compat_only_sysfs_link_entry_to_kobj +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 0xd92920f6 tps6586x_get_version +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 0xd93f8c3e crypto_unregister_scomp +EXPORT_SYMBOL_GPL vmlinux 0xd953dfe9 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xd95e6d57 vp_legacy_set_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xd96b0f58 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97b9b89 acpi_cpu_get_madt_gicc +EXPORT_SYMBOL_GPL vmlinux 0xd988344f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd98f3574 soc_device_match +EXPORT_SYMBOL_GPL vmlinux 0xd9916c3a idr_alloc_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd9934adb usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd9999826 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xd99d0cbf tegra_mc_probe_device +EXPORT_SYMBOL_GPL vmlinux 0xd9d0a2af devlink_flash_update_timeout_notify +EXPORT_SYMBOL_GPL vmlinux 0xd9e24457 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0xd9e67541 mtk_clk_register_muxes +EXPORT_SYMBOL_GPL vmlinux 0xd9ec4830 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xd9ee22cb icc_node_add +EXPORT_SYMBOL_GPL vmlinux 0xd9faa7a5 zynqmp_pm_set_pll_frac_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9fafe83 xfrm_dev_state_add +EXPORT_SYMBOL_GPL vmlinux 0xd9fd901f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xd9ff2172 ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xda041a3b usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xda0947de kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda0d6018 bgmac_enet_resume +EXPORT_SYMBOL_GPL vmlinux 0xda139a05 pm_runtime_get_if_active +EXPORT_SYMBOL_GPL vmlinux 0xda1aac77 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xda1b5446 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xda1b9f14 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda1eb1fa tracing_snapshot_cond +EXPORT_SYMBOL_GPL vmlinux 0xda23112b of_nvmem_cell_get +EXPORT_SYMBOL_GPL vmlinux 0xda320d31 sfp_module_start +EXPORT_SYMBOL_GPL vmlinux 0xda33342d wbc_attach_and_unlock_inode +EXPORT_SYMBOL_GPL vmlinux 0xda374f0e rockchip_clk_register_armclk +EXPORT_SYMBOL_GPL vmlinux 0xda4ece88 dprc_get_obj_region +EXPORT_SYMBOL_GPL vmlinux 0xda5a6444 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xda616298 scmi_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xda7912d4 freq_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xda7b266d devres_release +EXPORT_SYMBOL_GPL vmlinux 0xda8dd969 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xda8e1302 software_node_find_by_name +EXPORT_SYMBOL_GPL vmlinux 0xda999c8d kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab29bc1 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xdab5a1eb interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xdab76706 imx_pinconf_get_scu +EXPORT_SYMBOL_GPL vmlinux 0xdab79b4f tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xdadc5af5 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb1b1358 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xdb1e360c transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb245b35 mtk_eint_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb2ec9fc dma_resv_describe +EXPORT_SYMBOL_GPL vmlinux 0xdb35d9b4 pcie_reset_flr +EXPORT_SYMBOL_GPL vmlinux 0xdb470d1d vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb658aa6 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdb83cccc debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xdb89b593 bpf_trace_run4 +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb913073 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0xdb9fdd3b max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xdbc8a2d1 trace_put_event_file +EXPORT_SYMBOL_GPL vmlinux 0xdbdb0e8b request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbdb587e usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xdbe33e26 __traceiter_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xdbe8d8a0 __SCK__tp_func_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xdbeeece6 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf9adb4 balloon_page_list_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xdbfe7abb blk_mq_freeze_queue_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdc02eb39 dmi_available +EXPORT_SYMBOL_GPL vmlinux 0xdc1327a7 device_rename +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 0xdc189c62 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xdc18fb13 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc2dd69a __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0xdc3d3ca7 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xdc3f8430 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xdc43bdc6 pci_vpd_find_ro_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xdc45a5db edac_stop_work +EXPORT_SYMBOL_GPL vmlinux 0xdc48005f fsverity_verify_bio +EXPORT_SYMBOL_GPL vmlinux 0xdc4ef02d dw_pcie_ep_init_complete +EXPORT_SYMBOL_GPL vmlinux 0xdc6596fa irq_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xdc663501 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc716246 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xdc72d582 vp_modern_remove +EXPORT_SYMBOL_GPL vmlinux 0xdc76af1c regmap_field_update_bits_base +EXPORT_SYMBOL_GPL vmlinux 0xdc7df67f apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0xdc7e1983 bpf_offload_dev_match +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 0xdc9e111a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb05399 perf_trace_run_bpf_submit +EXPORT_SYMBOL_GPL vmlinux 0xdcccdbfa pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xdcd669ec uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xdcda9521 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdce07ed2 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcf7c74a crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xdd007cd1 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xdd0762df set_worker_desc +EXPORT_SYMBOL_GPL vmlinux 0xdd08bca5 bio_add_zone_append_page +EXPORT_SYMBOL_GPL vmlinux 0xdd0b8e29 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xdd234803 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xdd326b46 blk_mq_complete_request_remote +EXPORT_SYMBOL_GPL vmlinux 0xdd349fff i2c_client_type +EXPORT_SYMBOL_GPL vmlinux 0xdd404f46 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdd450ef1 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0xdd51f5e8 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xdd626ee3 fuse_len_args +EXPORT_SYMBOL_GPL vmlinux 0xdd67709b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xdd68a17d acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd74734e hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xdd7d8ce4 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd805f6f dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xdd81d8f6 __SCK__tp_func_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xdd9da219 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xddaf161a fwnode_connection_find_matches +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd2f7c9 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdde2b707 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xdde590cd user_describe +EXPORT_SYMBOL_GPL vmlinux 0xddf21d69 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xddf32520 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xde0390bf i2c_parse_fw_timings +EXPORT_SYMBOL_GPL vmlinux 0xde0ba933 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xde0bb062 fbcon_modechange_possible +EXPORT_SYMBOL_GPL vmlinux 0xde1b7dc3 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xde3052d9 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xde31bf7e unregister_sys_off_handler +EXPORT_SYMBOL_GPL vmlinux 0xde398f35 phy_restore_page +EXPORT_SYMBOL_GPL vmlinux 0xde3b0fcb dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xde5927cf security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xde6200bc devfreq_get_devfreq_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xde6f1851 TSS_checkhmac1 +EXPORT_SYMBOL_GPL vmlinux 0xde790a46 percpu_free_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xde8677a1 devm_gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xde97b6c2 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xde9ab8c7 xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xdea228e9 call_switchdev_blocking_notifiers +EXPORT_SYMBOL_GPL vmlinux 0xdea6ccbc ncsi_vlan_rx_kill_vid +EXPORT_SYMBOL_GPL vmlinux 0xdead2e78 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0xdebbb5b1 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xdec02a85 nv_cspmu_init_ops +EXPORT_SYMBOL_GPL vmlinux 0xdec5c181 dst_blackhole_mtu +EXPORT_SYMBOL_GPL vmlinux 0xdec6e484 icc_disable +EXPORT_SYMBOL_GPL vmlinux 0xdec88661 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xdee2a76c __devm_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xdee91d7a dtpm_destroy_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xdeedaf8a irq_chip_mask_parent +EXPORT_SYMBOL_GPL vmlinux 0xdef7ac89 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xdeffa0a7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL vmlinux 0xdf0797b9 trace_event_buffer_commit +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 0xdf1ae332 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xdf1be5e1 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0xdf1ecdc1 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xdf2738bb cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf2a6f04 fsl_mc_free_irqs +EXPORT_SYMBOL_GPL vmlinux 0xdf323ac7 devm_thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdf448d1c fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xdf4fe750 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xdf5b5bda gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xdf5ec14e driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdf66c98d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdf7787c7 iomap_dio_bio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xdf861903 phy_gbit_all_ports_features +EXPORT_SYMBOL_GPL vmlinux 0xdf901e53 dev_pm_opp_of_get_opp_desc_node +EXPORT_SYMBOL_GPL vmlinux 0xdf9c6f3e sbitmap_del_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xdf9ca74a fsl_mc_bus_dpdcei_type +EXPORT_SYMBOL_GPL vmlinux 0xdf9f5551 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xdfc88353 syscon_regmap_lookup_by_phandle_optional +EXPORT_SYMBOL_GPL vmlinux 0xdfcb6c90 mctrl_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0xdfe96795 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xdfedbf51 component_del +EXPORT_SYMBOL_GPL vmlinux 0xdff4fe3b usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xe00795b0 msg_zerocopy_put_abort +EXPORT_SYMBOL_GPL vmlinux 0xe0148fd9 fscrypt_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xe0241d66 blk_clear_pm_only +EXPORT_SYMBOL_GPL vmlinux 0xe025cbb2 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe0313d71 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xe05e2f85 nexthop_free_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe074725b alloc_dax_region +EXPORT_SYMBOL_GPL vmlinux 0xe075cf84 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe07a684b acpi_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0850533 dev_pm_opp_of_find_icc_paths +EXPORT_SYMBOL_GPL vmlinux 0xe08c1cd2 __blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xe0914e65 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xe096314d nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xe0967f6a component_compare_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0ab1e78 noop_direct_IO +EXPORT_SYMBOL_GPL vmlinux 0xe0adf170 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0bc3763 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xe0c4e14d hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe0d5e8be dma_alloc_pages +EXPORT_SYMBOL_GPL vmlinux 0xe0dd0a39 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0xe0deaa11 nf_hook_entries_delete_raw +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0e38d00 vp_modern_get_num_queues +EXPORT_SYMBOL_GPL vmlinux 0xe0e5c82b devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe0f87d15 devm_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe0fbb7ad ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xe0fd4513 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe11da55f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xe120a99a usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe120eece devm_fwnode_gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xe137b07b __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe142f320 devm_pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe1449c3a debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe1459cd3 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xe14d6bbb gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xe16ac541 dpcon_disable +EXPORT_SYMBOL_GPL vmlinux 0xe173fd96 devm_clk_hw_get_clk +EXPORT_SYMBOL_GPL vmlinux 0xe176f2e0 badblocks_init +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1812a6a edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xe1818218 tcp_register_ulp +EXPORT_SYMBOL_GPL vmlinux 0xe18a819a devm_release_action +EXPORT_SYMBOL_GPL vmlinux 0xe194ea70 sfp_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xe19f14a7 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1a6353c dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0xe1a8d7c9 net_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c87a2f kernel_can_power_off +EXPORT_SYMBOL_GPL vmlinux 0xe1d0753a virtio_require_restricted_mem_acc +EXPORT_SYMBOL_GPL vmlinux 0xe1f6c77b serial8250_do_set_ldisc +EXPORT_SYMBOL_GPL vmlinux 0xe1fa1d4c of_clk_hw_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xe1ff0380 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe20b7747 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe20d1a70 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xe231c3ff phy_save_page +EXPORT_SYMBOL_GPL vmlinux 0xe233762a input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0xe23a1f64 crypto_skcipher_decrypt +EXPORT_SYMBOL_GPL vmlinux 0xe23a23d7 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0xe23ef00d cros_ec_get_sensor_count +EXPORT_SYMBOL_GPL vmlinux 0xe2463ea3 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe24844a3 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xe24f4252 __traceiter_neigh_cleanup_and_release +EXPORT_SYMBOL_GPL vmlinux 0xe25ca1e5 sock_map_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe25d23f3 blocking_notifier_call_chain_robust +EXPORT_SYMBOL_GPL vmlinux 0xe26274b6 nvdimm_has_cache +EXPORT_SYMBOL_GPL vmlinux 0xe26a6b96 devm_pm_opp_set_supported_hw +EXPORT_SYMBOL_GPL vmlinux 0xe275d912 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe2861bbd static_dev_dax +EXPORT_SYMBOL_GPL vmlinux 0xe2891c2f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe28f4f36 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe2913f7c ip_icmp_error_rfc4884 +EXPORT_SYMBOL_GPL vmlinux 0xe2a6120c kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xe2aedb4b shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xe2b3207a unregister_switchdev_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2b65040 pinctrl_generic_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xe2b79f7a __phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xe2c4be8d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe2ca1f86 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xe2ce2b4d evm_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe2d0455a ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe2d96f5b zynqmp_pm_feature +EXPORT_SYMBOL_GPL vmlinux 0xe2e0ea82 sock_map_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2e18714 mmc_cmdq_enable +EXPORT_SYMBOL_GPL vmlinux 0xe2e5d8c2 ima_file_hash +EXPORT_SYMBOL_GPL vmlinux 0xe2e86075 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe2e94b3d clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xe2f2be10 acpi_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2f66908 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe302a7bd pinmux_generic_get_function_count +EXPORT_SYMBOL_GPL vmlinux 0xe31315a4 spi_delay_exec +EXPORT_SYMBOL_GPL vmlinux 0xe315bd15 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xe315cc61 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xe3452f51 __irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xe3476827 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe353eba7 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xe354d504 crypto_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xe354d717 crypto_alloc_tfm_node +EXPORT_SYMBOL_GPL vmlinux 0xe369ff6e simple_rename_exchange +EXPORT_SYMBOL_GPL vmlinux 0xe3722552 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe37995de acpi_dma_request_slave_chan_by_name +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 0xe3b09712 kprobe_event_delete +EXPORT_SYMBOL_GPL vmlinux 0xe3b4b167 rockchip_pcie_cfg_configuration_accesses +EXPORT_SYMBOL_GPL vmlinux 0xe3c35e69 nvmem_cell_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe3c603b2 ptp_msg_is_sync +EXPORT_SYMBOL_GPL vmlinux 0xe3c95a58 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xe3cd5fae klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe3d066cd ping_err +EXPORT_SYMBOL_GPL vmlinux 0xe3e228bb clk_hw_rate_is_protected +EXPORT_SYMBOL_GPL vmlinux 0xe3e423ac iommu_group_release_dma_owner +EXPORT_SYMBOL_GPL vmlinux 0xe3e8c2ad devm_bitmap_zalloc +EXPORT_SYMBOL_GPL vmlinux 0xe3efdf9c unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe3f15d51 device_match_of_node +EXPORT_SYMBOL_GPL vmlinux 0xe3fbe7ed otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xe3fd3cba genphy_c45_read_mdix +EXPORT_SYMBOL_GPL vmlinux 0xe40bb23e devlink_health_reporter_priv +EXPORT_SYMBOL_GPL vmlinux 0xe4248980 cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xe42feb35 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe444e578 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe44b52db devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe44c0c3d device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe456f547 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0xe45c206c ip_route_output_tunnel +EXPORT_SYMBOL_GPL vmlinux 0xe45e48c9 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xe461524e mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe4721f93 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xe4732b93 led_set_brightness_sync +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 0xe4b3e4a5 pci_hp_add +EXPORT_SYMBOL_GPL vmlinux 0xe4b818c3 phy_speed_to_str +EXPORT_SYMBOL_GPL vmlinux 0xe4c2c66c rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0xe4cf61be trace_array_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xe4e48b12 swphy_validate_state +EXPORT_SYMBOL_GPL vmlinux 0xe4e627b3 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xe4ebf8ba efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xe5091fb6 dw_pcie_read_dbi +EXPORT_SYMBOL_GPL vmlinux 0xe50f4924 acct_bioset_exit +EXPORT_SYMBOL_GPL vmlinux 0xe5102249 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xe52c1139 __devm_rtc_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe52dcdab divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0xe5351e86 iommu_device_unlink +EXPORT_SYMBOL_GPL vmlinux 0xe538bc57 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe53ceb74 k3_udma_glue_tx_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xe53e3258 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe5435113 blk_queue_zone_write_granularity +EXPORT_SYMBOL_GPL vmlinux 0xe5516728 k3_udma_glue_tx_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5518f27 phy_modify +EXPORT_SYMBOL_GPL vmlinux 0xe56a3b37 lwtunnel_get_encap_size +EXPORT_SYMBOL_GPL vmlinux 0xe57201ab __inode_attach_wb +EXPORT_SYMBOL_GPL vmlinux 0xe57e7d70 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe598b83b iomap_page_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe5a4f05f gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xe5a7e449 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe5a925d3 zynqmp_pm_init_finalize +EXPORT_SYMBOL_GPL vmlinux 0xe5c02b64 freq_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe5c1ea05 irq_domain_reset_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe5c6b047 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xe5cb1943 hisi_clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xe5ce1a56 rhashtable_walk_enter +EXPORT_SYMBOL_GPL vmlinux 0xe5d9bc3c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xe5deb2e2 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe5ed98e4 mmu_interval_notifier_insert_locked +EXPORT_SYMBOL_GPL vmlinux 0xe5f8e191 bpf_trace_run3 +EXPORT_SYMBOL_GPL vmlinux 0xe5fa7c35 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60632a9 edac_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe60a5e8d pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xe6132e58 vp_modern_get_status +EXPORT_SYMBOL_GPL vmlinux 0xe619eda5 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xe6215f3b firmware_request_cache +EXPORT_SYMBOL_GPL vmlinux 0xe628bb9f phy_fibre_port_array +EXPORT_SYMBOL_GPL vmlinux 0xe6482105 cgroup_get_from_id +EXPORT_SYMBOL_GPL vmlinux 0xe64ed17b ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe6613f77 devm_clk_bulk_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xe6663e04 vchan_tx_desc_free +EXPORT_SYMBOL_GPL vmlinux 0xe66922a7 mtk_mux_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xe67b90b5 pci_get_dsn +EXPORT_SYMBOL_GPL vmlinux 0xe67f6808 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe69a6cc0 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe69da2e6 wwan_create_port +EXPORT_SYMBOL_GPL vmlinux 0xe6b3cb7a msi_first_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6b3e2f6 i2c_acpi_waive_d0_probe +EXPORT_SYMBOL_GPL vmlinux 0xe6b6100e __strp_unpause +EXPORT_SYMBOL_GPL vmlinux 0xe6b7f0ad alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe6bb0ab2 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6bfec30 of_get_named_gpio_flags +EXPORT_SYMBOL_GPL vmlinux 0xe6c0a05a crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xe6e40502 rcu_get_gp_seq +EXPORT_SYMBOL_GPL vmlinux 0xe6e6b684 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xe6e988c5 k3_ringacc_get_tisci_dev_id +EXPORT_SYMBOL_GPL vmlinux 0xe6e9b480 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xe6eddec2 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xe6f07bae class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xe6f52443 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe6f71a23 fwnode_count_parents +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6fe83b7 pinmux_generic_remove_function +EXPORT_SYMBOL_GPL vmlinux 0xe7008085 blk_queue_max_zone_append_sectors +EXPORT_SYMBOL_GPL vmlinux 0xe700d767 reset_control_bulk_deassert +EXPORT_SYMBOL_GPL vmlinux 0xe706b72a stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe70dffb3 acpi_dev_gpio_irq_get_by +EXPORT_SYMBOL_GPL vmlinux 0xe716827b pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xe7299256 cgroup_get_from_path +EXPORT_SYMBOL_GPL vmlinux 0xe72a43b8 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe739f79f i2c_new_client_device +EXPORT_SYMBOL_GPL vmlinux 0xe73acded xdp_do_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe73f5cdf __traceiter_neigh_update_done +EXPORT_SYMBOL_GPL vmlinux 0xe7441083 dma_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe7539a29 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe753b68d devlink_fmsg_arr_pair_nest_end +EXPORT_SYMBOL_GPL vmlinux 0xe75c554d serdev_device_get_tiocm +EXPORT_SYMBOL_GPL vmlinux 0xe7663a3b devm_gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe783e261 sysfs_emit +EXPORT_SYMBOL_GPL vmlinux 0xe78b154a gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xe78c0ddd strp_data_ready +EXPORT_SYMBOL_GPL vmlinux 0xe7936243 zynqmp_pm_clock_getstate +EXPORT_SYMBOL_GPL vmlinux 0xe7a2a0f8 msi_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xe7a6b7bd qcom_smem_state_get +EXPORT_SYMBOL_GPL vmlinux 0xe7c93efe ti_sci_inta_msi_domain_alloc_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe7d32461 cros_ec_command +EXPORT_SYMBOL_GPL vmlinux 0xe7d6d2d4 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0xe7e5a14f fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xe8016a1c get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xe8032d16 dma_mmap_pages +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82060b2 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xe8297446 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe82c9214 dw_pcie_ep_raise_msi_irq +EXPORT_SYMBOL_GPL vmlinux 0xe8467e18 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xe848535b acpi_bus_get_acpi_device +EXPORT_SYMBOL_GPL vmlinux 0xe84ed34a unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe8543558 usb_urb_ep_type_check +EXPORT_SYMBOL_GPL vmlinux 0xe8585625 dma_resv_test_signaled +EXPORT_SYMBOL_GPL vmlinux 0xe85a63a9 of_clk_add_hw_provider +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85f0dfd acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8660064 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe868f372 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xe870033f extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe8859254 platform_irqchip_probe +EXPORT_SYMBOL_GPL vmlinux 0xe88dacdb of_pci_get_max_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xe892f626 ksm_madvise +EXPORT_SYMBOL_GPL vmlinux 0xe8a13bd4 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8c0065d memory_group_register_static +EXPORT_SYMBOL_GPL vmlinux 0xe8c46350 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xe8d61fe6 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe8e9b02e regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xe9035029 irqchip_fwnode_ops +EXPORT_SYMBOL_GPL vmlinux 0xe9039521 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xe904246d find_asymmetric_key +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 0xe9186205 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xe91ba422 devm_pm_opp_register_set_opp_helper +EXPORT_SYMBOL_GPL vmlinux 0xe9201400 irq_chip_retrigger_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xe9354a87 i2c_detect_slave_mode +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9482bb7 mtk_mutex_add_comp +EXPORT_SYMBOL_GPL vmlinux 0xe94f8a0d irq_chip_release_resources_parent +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe959d94d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe970a7ae devm_pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe97873cf __traceiter_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe98b0e1a usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xe98f55f2 arm_smccc_get_version +EXPORT_SYMBOL_GPL vmlinux 0xe993f95f gpiochip_populate_parent_fwspec_fourcell +EXPORT_SYMBOL_GPL vmlinux 0xe9a4ded2 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe9a7fc11 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xe9a9517b ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xe9acd779 fwnode_graph_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d63a0d k3_udma_glue_enable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xe9f5116f rcu_exp_jiffies_till_stall_check +EXPORT_SYMBOL_GPL vmlinux 0xe9f973ef crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe9fd9871 gnttab_page_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xea018bbb mpi_test_bit +EXPORT_SYMBOL_GPL vmlinux 0xea11d3f3 nvmem_cell_read_u32 +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea34979e fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea38036f ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0xea3a23f3 public_key_free +EXPORT_SYMBOL_GPL vmlinux 0xea3e7163 usb_role_switch_find_by_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xea436661 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xea45363d replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xea454fd8 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xea479da1 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea525c68 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xea5eebec ata_port_classify +EXPORT_SYMBOL_GPL vmlinux 0xea80b617 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xeaa1d945 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xeaa236a7 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xeaa49d83 trace_remove_event_call +EXPORT_SYMBOL_GPL vmlinux 0xeaaedf12 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xeab84824 paste_selection +EXPORT_SYMBOL_GPL vmlinux 0xeab89c1e clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xeabc3b27 spi_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xeac6c4f4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xeac9846b clk_register_mux_table +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 0xead6b4d3 blk_mq_debugfs_rq_show +EXPORT_SYMBOL_GPL vmlinux 0xeae0f496 clean_acked_data_flush +EXPORT_SYMBOL_GPL vmlinux 0xeaf0a57c look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xeaf3cb23 crc64_be +EXPORT_SYMBOL_GPL vmlinux 0xeaf8469d hv_do_fast_hypercall8 +EXPORT_SYMBOL_GPL vmlinux 0xeb04344d dev_pm_opp_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xeb14cae7 tps65912_device_init +EXPORT_SYMBOL_GPL vmlinux 0xeb15dc68 udp_destruct_sock +EXPORT_SYMBOL_GPL vmlinux 0xeb20153b tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xeb2c61c6 kvm_get_kvm_safe +EXPORT_SYMBOL_GPL vmlinux 0xeb364b0a ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xeb36d237 mtk_clk_gate_ops_setclr +EXPORT_SYMBOL_GPL vmlinux 0xeb4221e4 trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xeb6ce60d crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xeb6f436f usb_role_switch_register +EXPORT_SYMBOL_GPL vmlinux 0xeb78b1ed unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xeb8821b8 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xeb8b6945 phy_modify_changed +EXPORT_SYMBOL_GPL vmlinux 0xeb8d990d irq_chip_set_parent_state +EXPORT_SYMBOL_GPL vmlinux 0xeba869ea of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xebab839d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xebc9a09f lock_system_sleep +EXPORT_SYMBOL_GPL vmlinux 0xebccf8d9 component_add +EXPORT_SYMBOL_GPL vmlinux 0xebd4cc11 mctrl_gpio_enable_ms +EXPORT_SYMBOL_GPL vmlinux 0xebef98fe ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xebf41abf usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xec00fdf9 input_device_enabled +EXPORT_SYMBOL_GPL vmlinux 0xec06dac4 i2c_new_dummy_device +EXPORT_SYMBOL_GPL vmlinux 0xec0ccf03 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec398c0d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xec3f7990 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xec408e30 iommu_dev_enable_feature +EXPORT_SYMBOL_GPL vmlinux 0xec460b1b kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xec5668f6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xec63c9d5 scmi_protocol_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec72741f kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xec774acb cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xec77ffb4 trace_array_printk +EXPORT_SYMBOL_GPL vmlinux 0xec9053c3 of_reserved_mem_device_init_by_idx +EXPORT_SYMBOL_GPL vmlinux 0xeca5955c clk_hw_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0xeca6e35c nf_queue +EXPORT_SYMBOL_GPL vmlinux 0xecaaa2dd srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xecb1263f fib_nh_common_init +EXPORT_SYMBOL_GPL vmlinux 0xecb3e2e7 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xecb671fc tegra210_sata_pll_hw_sequence_start +EXPORT_SYMBOL_GPL vmlinux 0xecb7b98d phy_modify_mmd_changed +EXPORT_SYMBOL_GPL vmlinux 0xecba68e3 gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0xecc3f3b2 is_nvdimm_sync +EXPORT_SYMBOL_GPL vmlinux 0xecc904ec fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL vmlinux 0xecd8f23d xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xecf99776 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xed02e744 blk_crypto_profile_destroy +EXPORT_SYMBOL_GPL vmlinux 0xed2c5bcf power_supply_charge_behaviour_parse +EXPORT_SYMBOL_GPL vmlinux 0xed2d3739 power_supply_get_battery_info +EXPORT_SYMBOL_GPL vmlinux 0xed39b7b8 parse_OID +EXPORT_SYMBOL_GPL vmlinux 0xed446ef8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xed470892 clk_regmap_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xed4c8e87 usb_get_role_switch_default_mode +EXPORT_SYMBOL_GPL vmlinux 0xed5cb2e1 imx_pinctrl_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xed610d9e dev_pm_opp_set_regulators +EXPORT_SYMBOL_GPL vmlinux 0xed70070d uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xed79d3aa dma_resv_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xed8c384b netdev_xmit_skip_txqueue +EXPORT_SYMBOL_GPL vmlinux 0xed918dde hte_init_line_attr +EXPORT_SYMBOL_GPL vmlinux 0xed941cad crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xedab2702 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xedac1b95 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xedc26498 pm_genpd_remove +EXPORT_SYMBOL_GPL vmlinux 0xedcf2155 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xedd092d5 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xeddfe86e ti_sci_get_handle +EXPORT_SYMBOL_GPL vmlinux 0xede9a09a btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xedfec5c9 fscrypt_mergeable_bio_bh +EXPORT_SYMBOL_GPL vmlinux 0xee092e98 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xee098b25 pci_hp_del +EXPORT_SYMBOL_GPL vmlinux 0xee0f781e acpi_get_first_physical_node +EXPORT_SYMBOL_GPL vmlinux 0xee1b6f81 proc_create_net_data_write +EXPORT_SYMBOL_GPL vmlinux 0xee1b91e0 clk_gate_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xee1c658b ipv6_bpf_stub +EXPORT_SYMBOL_GPL vmlinux 0xee1f5126 __tracepoint_neigh_timer_handler +EXPORT_SYMBOL_GPL vmlinux 0xee31911a kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xee354f53 of_mm_gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xee38ef57 register_switchdev_blocking_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee518148 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xee61e755 of_genpd_remove_last +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 0xee6d3e70 mtk_pinconf_bias_disable_get +EXPORT_SYMBOL_GPL vmlinux 0xee72a6f3 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xee75aa69 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xee7600a1 dst_cache_get_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xee7f4176 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xeea71896 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xeea8ea5e usb_intf_get_dma_device +EXPORT_SYMBOL_GPL vmlinux 0xeea9d083 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xeeb010e3 sdio_signal_irq +EXPORT_SYMBOL_GPL vmlinux 0xeeb2deda rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xeed0cea4 kernel_read_file_from_fd +EXPORT_SYMBOL_GPL vmlinux 0xeedd987e phy_10gbit_features_array +EXPORT_SYMBOL_GPL vmlinux 0xeede028a spi_take_timestamp_pre +EXPORT_SYMBOL_GPL vmlinux 0xeedfa62a zynqmp_pm_is_function_supported +EXPORT_SYMBOL_GPL vmlinux 0xeee23b63 device_find_child_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeee47bbb inet6_hash +EXPORT_SYMBOL_GPL vmlinux 0xeee59ee7 devm_device_add_groups +EXPORT_SYMBOL_GPL vmlinux 0xeef0f10d devlink_traps_register +EXPORT_SYMBOL_GPL vmlinux 0xeef40524 gpiochip_line_is_open_drain +EXPORT_SYMBOL_GPL vmlinux 0xef09a11d irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xef105cd5 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2042da inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xef29fcdd clk_bulk_put +EXPORT_SYMBOL_GPL vmlinux 0xef30d946 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xef34bf3e hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xef440f1b housekeeping_affine +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef4f64b2 device_driver_attach +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 0xef7b16e3 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xef85039c rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xef91cb4d extcon_find_edev_by_node +EXPORT_SYMBOL_GPL vmlinux 0xef92ef33 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xef931f8e ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa6abd4 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xefb461a6 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xefceebec set_capacity_and_notify +EXPORT_SYMBOL_GPL vmlinux 0xefd4c6e7 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xefd4ccf2 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xefdc792c register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xefe052ea ti_sci_inta_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xefe66c60 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xefeafcf1 edac_has_mcs +EXPORT_SYMBOL_GPL vmlinux 0xefee4711 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xf012349d gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xf01ba9a1 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf020110a xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf021af9c usb_phy_roothub_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf0252248 __traceiter_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xf033b15e phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf03b0410 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xf03e166f gnttab_pages_clear_private +EXPORT_SYMBOL_GPL vmlinux 0xf03e450b inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xf04429b4 acpi_bus_get_status_handle +EXPORT_SYMBOL_GPL vmlinux 0xf04b3bbe unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf05a52fe asn1_encode_oid +EXPORT_SYMBOL_GPL vmlinux 0xf05db55b ncsi_start_dev +EXPORT_SYMBOL_GPL vmlinux 0xf05fbf09 pci_pio_to_address +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf086273e dev_pm_opp_put_opp_table +EXPORT_SYMBOL_GPL vmlinux 0xf08c6aa6 genphy_c45_aneg_done +EXPORT_SYMBOL_GPL vmlinux 0xf0910075 sfp_bus_del_upstream +EXPORT_SYMBOL_GPL vmlinux 0xf0961aac spi_mem_default_supports_op +EXPORT_SYMBOL_GPL vmlinux 0xf0a2891b acpi_pm_set_device_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf0a63bbb dev_pm_genpd_set_next_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf0a64d86 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf0a916a4 pci_pri_supported +EXPORT_SYMBOL_GPL vmlinux 0xf0c467c7 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf0cd0fe5 devm_led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xf0e107f1 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf0fb1ce1 mcore_booted +EXPORT_SYMBOL_GPL vmlinux 0xf10a2e23 ata_qc_get_active +EXPORT_SYMBOL_GPL vmlinux 0xf119c51a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xf12180fd imx_1443x_dram_pll +EXPORT_SYMBOL_GPL vmlinux 0xf123ca78 badblocks_check +EXPORT_SYMBOL_GPL vmlinux 0xf14317ef devl_rate_nodes_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf162affc dprc_get_obj_count +EXPORT_SYMBOL_GPL vmlinux 0xf17ea6af clk_hw_set_parent +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf188a662 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xf189cf18 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xf19ba682 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xf1d211cf __netdev_watchdog_up +EXPORT_SYMBOL_GPL vmlinux 0xf1d94cf2 led_init_default_state_get +EXPORT_SYMBOL_GPL vmlinux 0xf1f2e4e3 blk_mq_flush_busy_ctxs +EXPORT_SYMBOL_GPL vmlinux 0xf1fa4e2e smpboot_register_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xf1ff0b9a dm_audit_log_bio +EXPORT_SYMBOL_GPL vmlinux 0xf20de43e cpufreq_dbs_governor_stop +EXPORT_SYMBOL_GPL vmlinux 0xf2177618 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2287148 mtk_alloc_clk_data +EXPORT_SYMBOL_GPL vmlinux 0xf23cbb2e bpfilter_umh_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf2609426 devm_of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xf272ef3c rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xf27d0a7b gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xf27e39f3 bpf_offload_dev_netdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf28404cf devlink_dpipe_header_ipv6 +EXPORT_SYMBOL_GPL vmlinux 0xf290bda9 __traceiter_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf2944669 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf2950ce1 thermal_add_hwmon_sysfs +EXPORT_SYMBOL_GPL vmlinux 0xf2967796 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0xf29aa8c2 peernet2id_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2b33cb7 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf2c8590d bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xf2cc9b19 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2cf2cc6 kthread_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf2d176ed bpf_map_put +EXPORT_SYMBOL_GPL vmlinux 0xf2de6889 acpi_dev_get_first_consumer_dev +EXPORT_SYMBOL_GPL vmlinux 0xf2f2a428 cpufreq_dbs_governor_exit +EXPORT_SYMBOL_GPL vmlinux 0xf2f72f5c sbitmap_queue_min_shallow_depth +EXPORT_SYMBOL_GPL vmlinux 0xf2fb61bd vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xf3010401 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf30458b2 screen_pos +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf3143a01 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xf3152dab register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xf31632e0 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31d92a2 of_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33f2cf8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf344f3aa vmf_insert_pfn_pmd_prot +EXPORT_SYMBOL_GPL vmlinux 0xf346832c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xf348cff7 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xf34ec9f4 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf352023f memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf353f682 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3700f83 genphy_c45_an_config_aneg +EXPORT_SYMBOL_GPL vmlinux 0xf3797506 mpi_ec_deinit +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf388f704 folio_invalidate +EXPORT_SYMBOL_GPL vmlinux 0xf393fe84 bpf_event_output +EXPORT_SYMBOL_GPL vmlinux 0xf3ad9c6b devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b95d79 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3ba2eee open_related_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3bd7716 tpm_tis_remove +EXPORT_SYMBOL_GPL vmlinux 0xf3bf9a39 sk_psock_tls_strp_read +EXPORT_SYMBOL_GPL vmlinux 0xf3c32ec3 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf3d0c2f4 sysfs_unbreak_active_protection +EXPORT_SYMBOL_GPL vmlinux 0xf3d7d58f xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xf3dc38c3 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf3e53c23 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf3ff4adf gpiod_get_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf412ceef pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf438f979 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0xf43e5823 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xf4527a24 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0xf4559099 devm_clk_hw_register_fixed_factor_index +EXPORT_SYMBOL_GPL vmlinux 0xf4689d50 linkmode_set_pause +EXPORT_SYMBOL_GPL vmlinux 0xf4707cf4 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4754e7c rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf47654df irq_check_status_bit +EXPORT_SYMBOL_GPL vmlinux 0xf4774ea4 lwtunnel_input +EXPORT_SYMBOL_GPL vmlinux 0xf4923ded __traceiter_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xf49989ed fscrypt_prepare_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf4a00349 __tracepoint_block_rq_insert +EXPORT_SYMBOL_GPL vmlinux 0xf4acbd2f filemap_read +EXPORT_SYMBOL_GPL vmlinux 0xf4af35c2 rcu_gp_is_normal +EXPORT_SYMBOL_GPL vmlinux 0xf4bee993 crypto_alloc_sync_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf4c41c5b pinctrl_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0xf4cbb393 gpiochip_populate_parent_fwspec_twocell +EXPORT_SYMBOL_GPL vmlinux 0xf4cd9f8f reset_control_bulk_release +EXPORT_SYMBOL_GPL vmlinux 0xf4e3789f gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf5002335 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xf50f7cfd ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xf515821d phy_basic_features +EXPORT_SYMBOL_GPL vmlinux 0xf515ff19 vp_modern_queue_address +EXPORT_SYMBOL_GPL vmlinux 0xf5183783 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xf51950c6 ip6_pol_route +EXPORT_SYMBOL_GPL vmlinux 0xf52dad2e crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5532f58 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55ba16e sysfs_create_link_nowarn +EXPORT_SYMBOL_GPL vmlinux 0xf5698835 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf5787bd0 imx_pinctrl_sc_ipc_init +EXPORT_SYMBOL_GPL vmlinux 0xf57bc371 bind_interdomain_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf58227ef ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf5855ab0 sched_setattr_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xf586280d tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf586e4e7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf594aad8 fuse_dax_cancel_work +EXPORT_SYMBOL_GPL vmlinux 0xf5957bae efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xf59797bb mtk_eint_find_irq +EXPORT_SYMBOL_GPL vmlinux 0xf59b30cb pci_epf_free_space +EXPORT_SYMBOL_GPL vmlinux 0xf5a067bf iommu_group_dma_owner_claimed +EXPORT_SYMBOL_GPL vmlinux 0xf5a3ba99 linear_range_values_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf5a573bf virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b0670f ethnl_cable_test_finished +EXPORT_SYMBOL_GPL vmlinux 0xf5c68a4a device_set_node +EXPORT_SYMBOL_GPL vmlinux 0xf5d167d9 dma_resv_get_fences +EXPORT_SYMBOL_GPL vmlinux 0xf5d337c9 edac_device_del_device +EXPORT_SYMBOL_GPL vmlinux 0xf5e1a77c trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xf5e208ac tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5ee7f46 ata_common_sdev_groups +EXPORT_SYMBOL_GPL vmlinux 0xf5f3430c of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf5f370e0 async_schedule_node +EXPORT_SYMBOL_GPL vmlinux 0xf5f4c341 extcon_get_edev_name +EXPORT_SYMBOL_GPL vmlinux 0xf61c6b74 hv_do_hypercall +EXPORT_SYMBOL_GPL vmlinux 0xf6216658 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf64aaa25 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xf663ee2f pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0xf66afc22 crypto_stats_aead_encrypt +EXPORT_SYMBOL_GPL vmlinux 0xf679cac7 __spi_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xf67ec53a i2c_dw_acpi_configure +EXPORT_SYMBOL_GPL vmlinux 0xf681d3ba clean_acked_data_enable +EXPORT_SYMBOL_GPL vmlinux 0xf69095e6 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf6a28554 region_intersects +EXPORT_SYMBOL_GPL vmlinux 0xf6ad08db vp_modern_get_features +EXPORT_SYMBOL_GPL vmlinux 0xf6ad82bd device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6becd00 pci_epc_write_header +EXPORT_SYMBOL_GPL vmlinux 0xf6beee37 __SCK__tp_func_pelt_cfs_tp +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e772c3 irq_bypass_unregister_producer +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f16c56 rcu_barrier_tasks +EXPORT_SYMBOL_GPL vmlinux 0xf6f180b5 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf6fca765 devm_hwspin_lock_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xf7039c44 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xf707b7a9 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf70e4a4d preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0xf71a23da serdev_device_set_baudrate +EXPORT_SYMBOL_GPL vmlinux 0xf72a65ea tty_get_char_size +EXPORT_SYMBOL_GPL vmlinux 0xf72aff90 rockchip_clk_add_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf730fb4a qcom_smem_state_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xf7418bd3 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xf744298f hv_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xf7455c16 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xf749debc md5_zero_message_hash +EXPORT_SYMBOL_GPL vmlinux 0xf74a74ac netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xf74bb274 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xf74e7c93 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xf756bf85 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xf76561f1 sk_psock_msg_verdict +EXPORT_SYMBOL_GPL vmlinux 0xf7772bde xas_init_marks +EXPORT_SYMBOL_GPL vmlinux 0xf77d74d9 fuse_send_init +EXPORT_SYMBOL_GPL vmlinux 0xf780be79 rockchip_clk_register_plls +EXPORT_SYMBOL_GPL vmlinux 0xf782fb07 percpu_ref_switch_to_atomic_sync +EXPORT_SYMBOL_GPL vmlinux 0xf7850ad5 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf7866b4f bind_evtchn_to_irqhandler_lateeoi +EXPORT_SYMBOL_GPL vmlinux 0xf790a6db xdp_do_redirect_frame +EXPORT_SYMBOL_GPL vmlinux 0xf796d4da mtk_pinconf_bias_disable_set +EXPORT_SYMBOL_GPL vmlinux 0xf7a7047b blk_stat_enable_accounting +EXPORT_SYMBOL_GPL vmlinux 0xf7acf4b5 pm_clk_add +EXPORT_SYMBOL_GPL vmlinux 0xf7afb369 btree_init +EXPORT_SYMBOL_GPL vmlinux 0xf7bc56fc rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xf7bc70f9 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf7bc95b0 devlink_fmsg_pair_nest_start +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c57dd5 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xf7c63914 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xf7ce9a3a dax_add_host +EXPORT_SYMBOL_GPL vmlinux 0xf7d042ec acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf7db2c8d ip6_route_input_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf806b7e4 mtk_clk_unregister_fixed_clks +EXPORT_SYMBOL_GPL vmlinux 0xf80a741d device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xf80f5fc7 __SCK__tp_func_ata_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xf814b588 iommu_register_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf81dce70 thermal_genl_cpu_capability_event +EXPORT_SYMBOL_GPL vmlinux 0xf81f1973 device_change_owner +EXPORT_SYMBOL_GPL vmlinux 0xf8211d2f acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xf8265a93 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf841b842 dev_pm_opp_attach_genpd +EXPORT_SYMBOL_GPL vmlinux 0xf842036d __imx8m_clk_hw_composite +EXPORT_SYMBOL_GPL vmlinux 0xf844f29e devm_regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf852d746 __tracepoint_tcp_send_reset +EXPORT_SYMBOL_GPL vmlinux 0xf8540d8c sbitmap_any_bit_set +EXPORT_SYMBOL_GPL vmlinux 0xf861bd31 rockchip_clk_register_ddrclk +EXPORT_SYMBOL_GPL vmlinux 0xf870d34c of_k3_ringacc_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf8741dc4 usb_device_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf8783b43 sbitmap_prepare_to_wait +EXPORT_SYMBOL_GPL vmlinux 0xf883bf93 crypto_dh_key_len +EXPORT_SYMBOL_GPL vmlinux 0xf88c4f7f edac_device_free_ctl_info +EXPORT_SYMBOL_GPL vmlinux 0xf890e5d4 mtk_pinconf_drive_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xf8a722e3 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xf8ada4da dpbp_enable +EXPORT_SYMBOL_GPL vmlinux 0xf8b0e2ee crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf8cc9bad mtk_pinconf_bias_set +EXPORT_SYMBOL_GPL vmlinux 0xf8db6a2f fscrypt_mergeable_bio +EXPORT_SYMBOL_GPL vmlinux 0xf8de52d8 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf8e50084 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xf8e55b8a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xf8e8326e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf8e92325 dw_pcie_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900c77d zynqmp_pm_clock_disable +EXPORT_SYMBOL_GPL vmlinux 0xf9093f5b __tracepoint_cpu_frequency +EXPORT_SYMBOL_GPL vmlinux 0xf9257328 __devm_pci_epc_create +EXPORT_SYMBOL_GPL vmlinux 0xf93f9bbf devm_regulator_irq_helper +EXPORT_SYMBOL_GPL vmlinux 0xf9445221 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xf945e1f2 bpf_prog_get_type_dev +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 0xf980ae3a mtk_mux_gate_clr_set_upd_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9888467 ahci_do_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf996430a fwnode_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3c5dc zynqmp_pm_load_pdi +EXPORT_SYMBOL_GPL vmlinux 0xf9ab4a28 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf9b34a0b iopf_queue_free +EXPORT_SYMBOL_GPL vmlinux 0xf9c5298e rcuwait_wake_up +EXPORT_SYMBOL_GPL vmlinux 0xf9c67496 iommu_report_device_fault +EXPORT_SYMBOL_GPL vmlinux 0xf9ccec3d spi_mem_dirmap_create +EXPORT_SYMBOL_GPL vmlinux 0xf9cea1da dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0xf9ed4789 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xf9f3afb4 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf9fad85e thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9fecb9f acomp_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfa020605 bpf_sk_storage_diag_put +EXPORT_SYMBOL_GPL vmlinux 0xfa068dc4 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xfa0b2cb2 tty_port_register_device_attr_serdev +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa320e8c of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xfa349688 aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xfa43cefc is_hash_blacklisted +EXPORT_SYMBOL_GPL vmlinux 0xfa43fedf cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xfa46c7a5 generic_handle_domain_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa666974 queue_work_node +EXPORT_SYMBOL_GPL vmlinux 0xfa73cf7e encrypt_blob +EXPORT_SYMBOL_GPL vmlinux 0xfa79dd6e devm_irq_domain_create_sim +EXPORT_SYMBOL_GPL vmlinux 0xfa7c20e1 dst_cache_set_ip6 +EXPORT_SYMBOL_GPL vmlinux 0xfa824919 wakeup_sources_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa85f03c set_secondary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfa976acd devm_pm_opp_set_clkname +EXPORT_SYMBOL_GPL vmlinux 0xfa9ace9b fsl_mc_bus_dpio_type +EXPORT_SYMBOL_GPL vmlinux 0xfaaf8621 power_supply_battery_bti_in_range +EXPORT_SYMBOL_GPL vmlinux 0xfab30dc0 mdio_bus_exit +EXPORT_SYMBOL_GPL vmlinux 0xfab53ed9 pinctrl_gpio_can_use_line +EXPORT_SYMBOL_GPL vmlinux 0xfab7e834 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xfab85ace kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xfad35727 irq_find_matching_fwspec +EXPORT_SYMBOL_GPL vmlinux 0xfad9c827 kill_dax +EXPORT_SYMBOL_GPL vmlinux 0xfafa7c70 fscrypt_ioctl_remove_key +EXPORT_SYMBOL_GPL vmlinux 0xfafb75b8 genphy_c45_loopback +EXPORT_SYMBOL_GPL vmlinux 0xfaffbfec sk_msg_return +EXPORT_SYMBOL_GPL vmlinux 0xfb0bde38 gpiochip_generic_config +EXPORT_SYMBOL_GPL vmlinux 0xfb1df113 of_icc_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfb2370ab gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfb26d246 serdev_device_wait_until_sent +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb333c79 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfb4d1f2e device_remove_software_node +EXPORT_SYMBOL_GPL vmlinux 0xfb587c84 crypto_inst_setname +EXPORT_SYMBOL_GPL vmlinux 0xfb5ceacb __devm_clk_hw_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xfb63b60c virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xfb6ad136 devm_device_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xfb6d6955 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7eca2d phy_led_triggers_register +EXPORT_SYMBOL_GPL vmlinux 0xfb869f3a iommu_enable_nesting +EXPORT_SYMBOL_GPL vmlinux 0xfb8cf109 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xfbb23602 __traceiter_fib6_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfbb5bf97 vp_modern_map_vq_notify +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbfc4e4 __traceiter_br_fdb_add +EXPORT_SYMBOL_GPL vmlinux 0xfbca9b79 phy_restart_aneg +EXPORT_SYMBOL_GPL vmlinux 0xfbe2f2c2 pm_clk_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfbe788ba vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xfbea85fa cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xfbf6c639 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xfbf79910 pci_find_next_ht_capability +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 0xfc046ab4 switchdev_handle_port_obj_del +EXPORT_SYMBOL_GPL vmlinux 0xfc14bb2e dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xfc15bc9a pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xfc1f576d devm_create_dev_dax +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 0xfc464ebd netdev_cmd_to_name +EXPORT_SYMBOL_GPL vmlinux 0xfc624907 irq_chip_set_type_parent +EXPORT_SYMBOL_GPL vmlinux 0xfc6a3f08 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xfc73bc0d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xfc769a50 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfc7a2934 iommu_unregister_device_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xfc7fab86 __fscrypt_inode_uses_inline_crypto +EXPORT_SYMBOL_GPL vmlinux 0xfc8097b4 to_software_node +EXPORT_SYMBOL_GPL vmlinux 0xfc858ef4 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xfc8a50bf xdp_attachment_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc8bbe24 altr_sysmgr_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfc9477b5 zynqmp_pm_set_pll_frac_data +EXPORT_SYMBOL_GPL vmlinux 0xfca7f934 devlink_region_create +EXPORT_SYMBOL_GPL vmlinux 0xfcbbfbca ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xfcbfec70 add_memory_driver_managed +EXPORT_SYMBOL_GPL vmlinux 0xfcc1edd3 memory_block_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfcc4fa22 sch_frag_xmit_hook +EXPORT_SYMBOL_GPL vmlinux 0xfcc7a77b blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xfce9a4b5 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfcf0b02b ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xfcf1b4e5 crypto_alloc_acomp_node +EXPORT_SYMBOL_GPL vmlinux 0xfcf3ad0e fwnode_graph_get_endpoint_count +EXPORT_SYMBOL_GPL vmlinux 0xfcf425d4 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xfcf9ef73 hw_protection_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xfd068326 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfd0881b9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xfd195774 k3_udma_glue_disable_tx_chn +EXPORT_SYMBOL_GPL vmlinux 0xfd19aa42 serial8250_read_char +EXPORT_SYMBOL_GPL vmlinux 0xfd1c9863 virtqueue_get_avail_addr +EXPORT_SYMBOL_GPL vmlinux 0xfd2c62ad devlink_dpipe_table_counter_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd336427 iommu_sva_get_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfd54f1be __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfd5ac62c ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xfd5b1c72 devlink_dpipe_table_resource_set +EXPORT_SYMBOL_GPL vmlinux 0xfd640809 pfn_to_online_page +EXPORT_SYMBOL_GPL vmlinux 0xfd6555fb xlnx_unregister_event +EXPORT_SYMBOL_GPL vmlinux 0xfd6b51e9 dev_err_probe +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7fc3dc mtk_pinconf_adv_drive_set_raw +EXPORT_SYMBOL_GPL vmlinux 0xfd89aa4f fwnode_graph_get_remote_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xfd8a5248 dma_request_chan_by_mask +EXPORT_SYMBOL_GPL vmlinux 0xfd8e2e48 fuse_dev_fiq_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd99273c debugfs_file_get +EXPORT_SYMBOL_GPL vmlinux 0xfd99ee13 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfda80836 query_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xfda98e9f phy_set_mode_ext +EXPORT_SYMBOL_GPL vmlinux 0xfdb31b6d gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xfdb5c857 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xfdbd7a17 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xfdbeee32 crypto_stats_kpp_generate_public_key +EXPORT_SYMBOL_GPL vmlinux 0xfdcdace8 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xfdea2d04 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfdffedfb fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xfe08b994 crypto_grab_shash +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7cd3 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0xfe19dc28 vivaldi_function_row_physmap_show +EXPORT_SYMBOL_GPL vmlinux 0xfe1a7a7b mpi_point_release +EXPORT_SYMBOL_GPL vmlinux 0xfe3a6de3 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfe476039 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xfe4a3203 scsi_build_sense +EXPORT_SYMBOL_GPL vmlinux 0xfe4ed2c5 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xfe554bdf phy_led_triggers_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe561464 led_classdev_notify_brightness_hw_changed +EXPORT_SYMBOL_GPL vmlinux 0xfe71c690 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xfe7cf56c efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe8bf854 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xfe8cdb84 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0xfe94139c ext_pi_type3_crc64 +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99b166 serial8250_rx_dma_flush +EXPORT_SYMBOL_GPL vmlinux 0xfe99dad0 dtpm_create_hierarchy +EXPORT_SYMBOL_GPL vmlinux 0xfe9cbcc5 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xfea9158e ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xfec1b3e5 devm_pinctrl_register +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 0xfefa5de6 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1666f3 reset_control_bulk_assert +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2a9584 i2c_dw_adjust_bus_speed +EXPORT_SYMBOL_GPL vmlinux 0xff357747 tcp_abort +EXPORT_SYMBOL_GPL vmlinux 0xff3a9b2e __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xff42c374 usb_role_switch_get_role +EXPORT_SYMBOL_GPL vmlinux 0xff4d21aa fat_time_fat2unix +EXPORT_SYMBOL_GPL vmlinux 0xff5abe2c crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xff788b90 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xff7e33bf mpi_sub_ui +EXPORT_SYMBOL_GPL vmlinux 0xff81487d gpiod_remove_lookup_table +EXPORT_SYMBOL_GPL vmlinux 0xff994ee9 dev_pm_opp_set_rate +EXPORT_SYMBOL_GPL vmlinux 0xff9e23d1 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xffa253a9 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xffae8e8b nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xffc86f14 __xas_next +EXPORT_SYMBOL_GPL vmlinux 0xffd32042 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xffd8cb61 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffda0a59 mtk_clk_unregister_plls +EXPORT_SYMBOL_GPL vmlinux 0xffdc6d0a crypto_register_instance +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0x07342898 unregister_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xae43feea register_firmware_config_sysctl vmlinux +FIRMWARE_LOADER_PRIVATE EXPORT_SYMBOL_GPL 0xd3ae7756 fw_fallback_config vmlinux +HWMON_THERMAL EXPORT_SYMBOL_GPL 0x79385f0a hwmon_device_register_for_thermal vmlinux +IIO_AD5592R EXPORT_SYMBOL_GPL 0xf78bc892 ad5592r_remove drivers/iio/dac/ad5592r-base +IIO_AD5592R EXPORT_SYMBOL_GPL 0xfb3f554e ad5592r_probe drivers/iio/dac/ad5592r-base +IIO_AD5686 EXPORT_SYMBOL_GPL 0x9ba9aeac ad5686_remove drivers/iio/dac/ad5686 +IIO_AD5686 EXPORT_SYMBOL_GPL 0xbfceb3fa ad5686_probe drivers/iio/dac/ad5686 +IIO_AD7091R EXPORT_SYMBOL_GPL 0x37c34bfe ad7091r_regmap_config drivers/iio/adc/ad7091r-base +IIO_AD7091R EXPORT_SYMBOL_GPL 0xbc78c80b ad7091r_probe drivers/iio/adc/ad7091r-base +IIO_AD7606 EXPORT_SYMBOL_GPL 0xcdf4dbfe ad7606_probe drivers/iio/adc/ad7606 +IIO_AD7606 EXPORT_SYMBOL_GPL 0xcf439572 ad7606_pm_ops drivers/iio/adc/ad7606 +IIO_ADISLIB EXPORT_SYMBOL 0xa67d7359 adis_debugfs_reg_access drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL 0xbdde43b2 __adis_enable_irq drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x097dbc4a __adis_initial_startup drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x17a7513f __adis_write_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x1df3fafc adis_init drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x4731f457 __adis_read_reg drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x50649d49 adis_update_scan_mode drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x529e8b12 devm_adis_setup_buffer_and_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x68ad178e __adis_update_bits_base drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x90f306e8 __adis_check_status drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0x9e9acd59 devm_adis_probe_trigger drivers/iio/imu/adis_lib +IIO_ADISLIB EXPORT_SYMBOL_GPL 0xb04ab75b adis_single_conversion drivers/iio/imu/adis_lib +IIO_ADIS_LIB EXPORT_SYMBOL_GPL 0x9dad904b __adis_reset drivers/iio/imu/adis_lib +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x829e7cdd adxl313_core_probe drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0x8401eedc adxl313_readable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL313 EXPORT_SYMBOL_GPL 0xf6f7b9f3 adxl313_writable_regs_table drivers/iio/accel/adxl313_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x4568b61c adxl355_core_probe drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0x6ff5403b adxl355_readable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL355 EXPORT_SYMBOL_GPL 0xb446fa86 adxl355_writeable_regs_tbl drivers/iio/accel/adxl355_core +IIO_ADXL367 EXPORT_SYMBOL_GPL 0xee411611 adxl367_probe drivers/iio/accel/adxl367 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x1c35798e adxl372_readable_noinc_reg drivers/iio/accel/adxl372 +IIO_ADXL372 EXPORT_SYMBOL_GPL 0x6015b7ad adxl372_probe drivers/iio/accel/adxl372 +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x05cb95a8 ad_sd_write_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x0719fbe5 ad_sd_calibrate drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x1c8a1462 ad_sd_calibrate_all drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x2920b213 ad_sd_set_comm drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x597fe466 devm_ad_sd_setup_buffer_and_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0x76d7e506 ad_sd_init drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xa2e5b0d2 ad_sd_reset drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xc69a3139 ad_sd_validate_trigger drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xd6568ade ad_sd_read_reg drivers/iio/adc/ad_sigma_delta +IIO_AD_SIGMA_DELTA EXPORT_SYMBOL_GPL 0xf1e10bbc ad_sigma_delta_single_conversion drivers/iio/adc/ad_sigma_delta +IIO_BMA400 EXPORT_SYMBOL 0x458e5bcd bma400_regmap_config drivers/iio/accel/bma400_core +IIO_BMA400 EXPORT_SYMBOL 0xa19238d2 bma400_probe drivers/iio/accel/bma400_core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x104cded3 bmc150_accel_core_remove drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0x5b3d3414 bmc150_accel_core_probe drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xe5c13113 bmc150_regmap_conf drivers/iio/accel/bmc150-accel-core +IIO_BMC150 EXPORT_SYMBOL_GPL 0xe74331bd bmc150_accel_pm_ops drivers/iio/accel/bmc150-accel-core +IIO_BMC150_MAGN EXPORT_SYMBOL 0x4aaea8c6 bmc150_magn_pm_ops drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x83af6efc bmc150_magn_remove drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0x93250383 bmc150_magn_regmap_config drivers/iio/magnetometer/bmc150_magn +IIO_BMC150_MAGN EXPORT_SYMBOL 0xc46bb569 bmc150_magn_probe drivers/iio/magnetometer/bmc150_magn +IIO_BME680 EXPORT_SYMBOL 0xb050bd8d bme680_regmap_config drivers/iio/chemical/bme680_core +IIO_BME680 EXPORT_SYMBOL_GPL 0xba4b4d11 bme680_core_probe drivers/iio/chemical/bme680_core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x074dca94 bmi088_accel_pm_ops drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x768bf9f5 bmi088_accel_core_probe drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0x77bd21d0 bmi088_regmap_conf drivers/iio/accel/bmi088-accel-core +IIO_BMI088 EXPORT_SYMBOL_GPL 0xd2c117bf bmi088_accel_core_remove drivers/iio/accel/bmi088-accel-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x0cf509ec fxls8962af_i2c_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0x292b469c fxls8962af_pm_ops drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xae2b9d29 fxls8962af_spi_regmap_conf drivers/iio/accel/fxls8962af-core +IIO_FXLS8962AF EXPORT_SYMBOL_GPL 0xdcb4acfa fxls8962af_core_probe drivers/iio/accel/fxls8962af-core +IIO_HID EXPORT_SYMBOL 0x2b3d3694 hid_sensor_write_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x2eabe71f hid_sensor_power_state drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x34a7bed8 hid_sensor_read_raw_hyst_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x48789b43 hid_sensor_pm_ops drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0x6759d788 hid_sensor_read_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x7f7621ec hid_sensor_format_scale drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9a323561 hid_sensor_convert_timestamp drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9bf7636c hid_sensor_write_raw_hyst_rel_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0x9c83e3aa hid_sensor_read_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xb7673a7d hid_sensor_remove_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xb88505f8 hid_sensor_setup_trigger drivers/iio/common/hid-sensors/hid-sensor-trigger +IIO_HID EXPORT_SYMBOL 0xbb7b3957 hid_sensor_write_samp_freq_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID EXPORT_SYMBOL 0xf5db2705 hid_sensor_parse_common_attributes drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0x6f0aecd9 hid_sensor_get_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xa4c784bd hid_sensor_batch_mode_supported drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf1a797a3 hid_sensor_read_poll_value drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HID_ATTRIBUTES EXPORT_SYMBOL 0xf399c3b2 hid_sensor_set_report_latency drivers/iio/common/hid-sensors/hid-sensor-iio-common +IIO_HMC5843 EXPORT_SYMBOL 0x33a2f432 hmc5843_common_suspend drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xa92538e1 hmc5843_common_remove drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xadf4b2b8 hmc5843_common_probe drivers/iio/magnetometer/hmc5843_core +IIO_HMC5843 EXPORT_SYMBOL 0xaf2d8d65 hmc5843_common_resume drivers/iio/magnetometer/hmc5843_core +IIO_KXSD9 EXPORT_SYMBOL 0x08e915f8 kxsd9_common_probe drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xc77a3968 kxsd9_common_remove drivers/iio/accel/kxsd9 +IIO_KXSD9 EXPORT_SYMBOL 0xea3e3b3f kxsd9_dev_pm_ops drivers/iio/accel/kxsd9 +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x045688dd ms_sensors_read_prom_word drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x16cf2073 ms_sensors_show_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x2d2f5cd5 ms_sensors_reset drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x42b6a050 ms_sensors_convert_and_read drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x45f85904 ms_sensors_write_heater drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x48770969 ms_sensors_ht_read_temperature drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7b978d57 ms_sensors_show_battery_low drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x7f5a1a9f ms_sensors_read_serial drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0x83165f3c ms_sensors_write_resolution drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xbf438e38 ms_sensors_read_temp_and_pressure drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc038de42 ms_sensors_ht_read_humidity drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MEAS_SPEC_SENSORS EXPORT_SYMBOL 0xc8b9cc7b ms_sensors_tp_read_prom drivers/iio/common/ms_sensors/ms_sensors_i2c +IIO_MMA7455 EXPORT_SYMBOL_GPL 0x47f233ca mma7455_core_remove drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xb42df964 mma7455_core_probe drivers/iio/accel/mma7455_core +IIO_MMA7455 EXPORT_SYMBOL_GPL 0xcee376a2 mma7455_core_regmap drivers/iio/accel/mma7455_core +IIO_MMA9551 EXPORT_SYMBOL 0x1448eab6 mma9551_read_status_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x1f61ceca mma9551_read_accel_chan drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2579295c mma9551_read_status_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x2b48a77d mma9551_app_reset drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x35f9ead1 mma9551_write_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x38818a76 mma9551_gpio_config drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x41ef446c mma9551_read_accel_scale drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x7f2857aa mma9551_read_config_word drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x863a5bb0 mma9551_read_status_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0x8dd6b3e0 mma9551_read_config_byte drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xbcd7fe96 mma9551_sleep drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc291eaa7 mma9551_set_power_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xc69ef4db mma9551_read_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xceea5049 mma9551_set_device_state drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xd6394f8a mma9551_read_version drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xee6908e0 mma9551_write_config_words drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xf5ec6d08 mma9551_update_config_bits drivers/iio/accel/mma9551_core +IIO_MMA9551 EXPORT_SYMBOL 0xfc612be5 mma9551_write_config_byte drivers/iio/accel/mma9551_core +IIO_MPL115 EXPORT_SYMBOL_GPL 0x6f411de0 mpl115_probe drivers/iio/pressure/mpl115 +IIO_MS5611 EXPORT_SYMBOL 0xacea7218 ms5611_remove drivers/iio/pressure/ms5611_core +IIO_MS5611 EXPORT_SYMBOL 0xd16d412d ms5611_probe drivers/iio/pressure/ms5611_core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x0a1424e0 rm3100_volatile_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0x4f47f54f rm3100_common_probe drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xaa911f08 rm3100_readable_table drivers/iio/magnetometer/rm3100-core +IIO_RM3100 EXPORT_SYMBOL_GPL 0xcc7209be rm3100_writable_table drivers/iio/magnetometer/rm3100-core +IIO_SCD30 EXPORT_SYMBOL 0x1bf2911e scd30_probe drivers/iio/chemical/scd30_core +IIO_SCD30 EXPORT_SYMBOL 0xfd3a5668 scd30_pm_ops drivers/iio/chemical/scd30_core +IIO_SSP_SENSORS EXPORT_SYMBOL 0x11b63263 ssp_enable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x16425b24 ssp_common_process_data drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x2699ca7d ssp_register_consumer drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7ac8f834 ssp_common_buffer_postenable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0x7d9c5856 ssp_get_sensor_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xd66098b4 ssp_disable_sensor drivers/iio/common/ssp_sensors/sensorhub +IIO_SSP_SENSORS EXPORT_SYMBOL 0xe8f55ac4 ssp_common_buffer_postdisable drivers/iio/common/ssp_sensors/ssp_iio +IIO_SSP_SENSORS EXPORT_SYMBOL 0xf520de4f ssp_change_delay drivers/iio/common/ssp_sensors/sensorhub +IIO_ST_SENSORS EXPORT_SYMBOL 0x074d7047 st_sensors_trigger_handler drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x0cfdd29b st_sensors_power_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1a9cac28 st_sensors_set_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1bf24bfa st_sensors_allocate_trigger drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x1d0502b1 st_sensors_i2c_configure drivers/iio/common/st_sensors/st_sensors_i2c +IIO_ST_SENSORS EXPORT_SYMBOL 0x263d3a07 st_sensors_spi_configure drivers/iio/common/st_sensors/st_sensors_spi +IIO_ST_SENSORS EXPORT_SYMBOL 0x3b2e52c2 st_gyro_common_probe drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x4ba991f7 st_sensors_sysfs_scale_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x4d63a0ad st_gyro_get_settings drivers/iio/gyro/st_gyro +IIO_ST_SENSORS EXPORT_SYMBOL 0x63f962c2 st_sensors_dev_name_probe drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x64333326 st_accel_common_probe drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x6464296d st_magn_common_probe drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0x6f5deb58 st_sensors_validate_device drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9981e798 st_accel_get_settings drivers/iio/accel/st_accel +IIO_ST_SENSORS EXPORT_SYMBOL 0x9a9834e2 st_sensors_set_odr drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0x9fe5cdd6 st_press_get_settings drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xa4020dc0 st_sensors_debugfs_reg_access drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xc70d16e5 st_press_common_probe drivers/iio/pressure/st_pressure +IIO_ST_SENSORS EXPORT_SYMBOL 0xcdb4f517 st_sensors_set_dataready_irq drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd1fc13c7 st_sensors_get_settings_index drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xd2c06f3d st_sensors_set_fullscale_by_gain drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xdc976b0c st_magn_get_settings drivers/iio/magnetometer/st_magn +IIO_ST_SENSORS EXPORT_SYMBOL 0xdecd9e1d st_sensors_sysfs_sampling_frequency_avail drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xe3b4f567 st_sensors_init_sensor drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xec76fec5 st_sensors_verify_id drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf30f89e3 st_sensors_read_info_raw drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL 0xf9626120 st_sensors_set_axis_enable drivers/iio/common/st_sensors/st_sensors +IIO_ST_SENSORS EXPORT_SYMBOL_GPL 0x496e8650 st_lsm9ds0_probe drivers/iio/imu/st_lsm9ds0/st_lsm9ds0 +IIO_UVIS25 EXPORT_SYMBOL 0x0cf5effe st_uvis25_probe drivers/iio/light/st_uvis25_core +IIO_UVIS25 EXPORT_SYMBOL 0x6f037775 st_uvis25_pm_ops drivers/iio/light/st_uvis25_core +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x2de65082 zpa2326_pm_ops drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0x8a188c24 zpa2326_probe drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xb05a5315 zpa2326_isreg_writeable drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xd925302d zpa2326_remove drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xdba1984d zpa2326_isreg_precious drivers/iio/pressure/zpa2326 +IIO_ZPA2326 EXPORT_SYMBOL_GPL 0xfea05912 zpa2326_isreg_readable drivers/iio/pressure/zpa2326 +IWLWIFI EXPORT_SYMBOL_GPL 0x024c03fa _iwl_dbg_tlv_time_point drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x07151419 iwl_cmd_groups_verify_sorted drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x08e8941f iwl_acpi_get_eckv drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x0bca582c iwl_finish_nic_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1332e4de iwl_abort_notification_waits drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x15289e2e iwl_sar_geo_support drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x159a6b64 iwl_parse_mei_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x15fbe059 iwl_pnvm_load drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x16bf0169 iwl_sar_geo_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1a8caa4c iwl_acpi_get_mcc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x1e74fa1c __iwl_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2710c362 iwl_dump_desc_assert drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x28885374 iwl_free_fw_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x289760a3 __iwl_crit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2a31d170 iwl_sar_get_ewrd_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2b175a51 iwl_acpi_get_dsm_u32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x2c9e9b3b iwl_fw_dbg_collect_desc drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x30269ae3 iwl_read_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x327c6c35 iwl_trans_send_cmd drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x35033c81 iwl_phy_db_free drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x37956b72 rs_pretty_print_rate drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x39c40607 iwl_sar_get_wrds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3b169ee8 iwl_fw_dbg_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3c25a9a8 iwl_acpi_get_dsm_u8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x3f986ca8 iwl_read_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x405c7682 iwl_acpi_get_pwr_limit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4362afcd iwl_fwrt_dump_error_logs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x43f1b6f7 iwl_fw_dbg_collect_trig drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49730581 iwl_parse_nvm_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x49e0135d iwl_new_rate_from_v1 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4af97c9d iwl_dbg_tlv_del_timers drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x4bd160ad iwl_parse_eeprom_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x51f9c7fd iwl_read_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x58a0aa11 iwl_sar_select_profile drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5988395c iwl_notification_wait_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5c52e109 iwl_opmode_deregister drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x5ff75067 __iwl_err drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x61646a84 iwl_fw_dbg_read_d3_debug_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x621a28c4 iwl_configure_rxq drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x639b0057 iwl_init_paging drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6a3c7361 iwl_acpi_get_ppag_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x6c5bc29c iwl_read_external_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x744c1c3e iwl_fw_start_dbg_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x776221bf iwl_send_phy_db_data drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x78971d7e iwl_he_is_sgi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x79f9e486 iwl_read_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x7c86f4a5 iwl_acpi_get_wifi_pkg_range drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x801b3bad iwl_fw_runtime_resume drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x82646a8b __iwl_warn drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x828c6838 iwlwifi_mod_params drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x84bb50e1 iwl_rs_pretty_ant drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x874c77de iwl_fw_rate_idx_to_plcp drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x8832ab50 iwl_fw_dbg_stop_sync drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9038811a iwl_rfi_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9211e274 iwl_get_shared_mem_conf drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x925c2f6f iwl_acpi_get_object drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9814fac2 iwl_uefi_get_sgom_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x997f15df iwl_write32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9be80bd9 iwl_write_direct64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0x9e7bf5f1 iwl_get_cmd_string drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3285d7a iwl_set_soc_latency drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa3a077cf iwl_clear_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xa4c78d5f iwl_write_prph_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xae537a6b iwl_read32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xafbcd4ce iwl_acpi_get_lari_config_bitmap drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb17e6de6 iwl_set_bits_mask_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb258cc83 __iwl_dbg drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb3563546 iwl_fw_runtime_suspend drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb37b318c iwl_rs_pretty_bw drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb4c9f5ac iwl_write64 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb65eebaa iwl_write_direct32 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb7d5ffb1 iwl_rate_mcs drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xb9196dd1 iwl_fw_dbg_error_collect drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbafc8994 iwl_wait_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbc4386ff iwl_fw_dbg_stop_restart_recording drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xbd1dbaaf iwl_write_prph_delay drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc03d7583 iwl_poll_direct_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc54754f9 iwl_sar_get_wgds_table drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xc696c91a iwl_get_nvm drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xca567afd iwl_parse_nvm_mcc_info drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xce0c6460 iwl_phy_db_set_section drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd10fa1e7 iwl_phy_db_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd3302396 iwl_acpi_get_tas drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd88a6328 iwl_opmode_register drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xd950a96e iwl_set_bits_prph drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0eb5838 iwl_init_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe0fdbd9b iwl_fw_runtime_init drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe75b7e77 iwl_notification_wait drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe81f66bd iwl_write8 drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xe898cd25 iwl_force_nmi drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xea1b26fc iwl_nvm_fixups drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xed395754 iwl_acpi_is_ppag_approved drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xef620156 iwl_read_eeprom drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf03eeb01 iwl_write_prph64_no_grab drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf3c549fa iwl_poll_bit drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xf88964e4 iwl_remove_notification drivers/net/wireless/intel/iwlwifi/iwlwifi +IWLWIFI EXPORT_SYMBOL_GPL 0xfc1e6f41 iwl_guid drivers/net/wireless/intel/iwlwifi/iwlwifi +LTC2497 EXPORT_SYMBOL 0x7ac369c8 ltc2497core_remove drivers/iio/adc/ltc2497-core +LTC2497 EXPORT_SYMBOL 0xebe6c409 ltc2497core_probe drivers/iio/adc/ltc2497-core +MCB EXPORT_SYMBOL_GPL 0x0d1cdac7 mcb_alloc_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x0e9b2404 mcb_request_mem drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x1c962392 __mcb_register_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x37d1e179 mcb_free_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x4e9aec24 mcb_bus_put drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x521da8ca mcb_unregister_driver drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x5b5e6f2a chameleon_parse_cells drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x82fbe2c5 mcb_device_register drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x86fc8656 mcb_bus_add_devices drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0x9792dab5 mcb_alloc_dev drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb7aa666b mcb_release_bus drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xb8242ea8 mcb_bus_get drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xc815384b mcb_get_irq drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xe8cd7799 mcb_get_resource drivers/mcb/mcb +MCB EXPORT_SYMBOL_GPL 0xeb2c8905 mcb_release_mem drivers/mcb/mcb +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x3832b712 nvme_put_ns drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x64cb60ef nvme_execute_passthru_rq drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0x9ac028c2 nvme_ctrl_from_file drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xa48b1c50 nvme_passthru_end drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xb156bdda nvme_command_effects drivers/nvme/host/nvme-core +NVME_TARGET_PASSTHRU EXPORT_SYMBOL_GPL 0xc6c37d6b nvme_find_get_ns drivers/nvme/host/nvme-core +PECI EXPORT_SYMBOL_GPL 0x0831e965 peci_xfer_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0b4f2797 peci_xfer_ep_pci_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x0e257b81 peci_request_free drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x15e17de2 peci_xfer_pci_cfg_local_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x234e5021 peci_xfer_pkg_cfg_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x277a0420 peci_xfer_ep_mmio32_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x3091f3b7 peci_request_temp_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x37fd9a33 peci_driver_unregister drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x39ea221c peci_request_data_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x484e64ca peci_xfer_ep_pci_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x4bafa7f7 peci_request_data_readq drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5933f2e1 peci_request_status drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x5df6f661 peci_xfer_ep_mmio64_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x60b4a37e peci_xfer_ep_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x71a6a677 peci_request_data_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x7b611cf0 peci_xfer_get_temp drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x82f199f1 __peci_driver_register drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x8d04698b peci_request_data_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x939a8def peci_request_alloc drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0x9f449b37 devm_peci_controller_add drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xaebb778b peci_xfer_pci_cfg_local_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xb89e50ef peci_xfer_pkg_cfg_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xbe30c96e peci_xfer_ep_pci_cfg_local_readw drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xc91e6c21 peci_request_dib_read drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd0a19ac8 peci_xfer_get_dib drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xd5cb4d87 peci_xfer_ep_pci_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xdb14a32b peci_xfer_pkg_cfg_readb drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xf7a55973 peci_xfer_pkg_cfg_readl drivers/peci/peci +PECI EXPORT_SYMBOL_GPL 0xfd318a33 peci_xfer_ep_pci_cfg_local_readl drivers/peci/peci +PECI_CPU EXPORT_SYMBOL_GPL 0x1d84d281 peci_temp_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x1e355b92 peci_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x2e7af490 peci_ep_pci_local_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0x8527c218 peci_mmio_read drivers/peci/peci-cpu +PECI_CPU EXPORT_SYMBOL_GPL 0xa495eff4 peci_pcs_read drivers/peci/peci-cpu +PMBUS EXPORT_SYMBOL_GPL 0x24cfeffd pmbus_update_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x3aaed9e1 pmbus_set_update drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x53f73375 pmbus_write_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x56cf89a8 pmbus_update_fan drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5b04528d pmbus_get_driver_info drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x5ed34dbf pmbus_get_fan_rate_device drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x6cdab9da pmbus_write_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7099fdf6 pmbus_set_page drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7c5934bb pmbus_do_probe drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x7d48f8c3 pmbus_write_byte drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x8df75476 pmbus_clear_cache drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0x9938a115 pmbus_get_fan_rate_cached drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xb4a29c55 pmbus_check_byte_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xba354763 pmbus_regulator_ops drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe0e71a78 pmbus_get_debugfs_dir drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xe5c5391d pmbus_read_byte_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xeb013a46 pmbus_check_word_register drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xec290aa7 pmbus_read_word_data drivers/hwmon/pmbus/pmbus_core +PMBUS EXPORT_SYMBOL_GPL 0xf996b516 pmbus_clear_faults drivers/hwmon/pmbus/pmbus_core +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x419af03d sx_common_write_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0x9619609b sx_common_read_event_config drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xc04d35d1 sx_common_read_proximity drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xd07d0025 sx_common_events drivers/iio/proximity/sx_common +SEMTECH_PROX EXPORT_SYMBOL_GPL 0xe3c457d4 sx_common_probe drivers/iio/proximity/sx_common +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x0b6a3b60 hda_cs_dsp_control_remove sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x2b707546 hda_cs_dsp_fw_ids sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x6c021068 hda_cs_dsp_control_add sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x722fde1c hda_cs_dsp_write_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_CS_DSP_CONTROLS EXPORT_SYMBOL_GPL 0x72b6516d hda_cs_dsp_read_ctl sound/pci/hda/snd-hda-cs-dsp-ctls +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x08a01998 cs35l41_hda_remove sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0x31d631ed cs35l41_hda_pm_ops sound/pci/hda/snd-hda-scodec-cs35l41 +SND_HDA_SCODEC_CS35L41 EXPORT_SYMBOL_GPL 0xadedc0d9 cs35l41_hda_probe sound/pci/hda/snd-hda-scodec-cs35l41 +SND_INTEL_SOUNDWIRE_ACPI EXPORT_SYMBOL 0xbb4f9d1f sdw_intel_acpi_scan sound/hda/snd-intel-sdw-acpi +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xbbd3bb50 cs35l45_pm_ops sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xd42befbc cs35l45_remove sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45 EXPORT_SYMBOL_GPL 0xf6500834 cs35l45_probe sound/soc/codecs/snd-soc-cs35l45 +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0x3431c8ad cs35l45_get_clk_freq_id sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xa3b37e06 cs35l45_i2c_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xda1aa7e2 cs35l45_apply_patch sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_CS35L45_TABLES EXPORT_SYMBOL_GPL 0xe08bbf4a cs35l45_spi_regmap sound/soc/codecs/snd-soc-cs35l45-tables +SND_SOC_SOF_XTENSA EXPORT_SYMBOL 0x3869eb61 sof_xtensa_arch_ops sound/soc/sof/xtensa/snd-sof-xtensa-dsp +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0x28296bb6 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 0x7f3c8131 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 0xb4fbf15a sdw_intel_startup drivers/soundwire/soundwire-intel +SOUNDWIRE_INTEL_INIT EXPORT_SYMBOL 0xe8f5382e sdw_intel_exit drivers/soundwire/soundwire-intel +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x0925ce5f dw_spi_check_status drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x2b8636e9 dw_spi_set_cs drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x32c4b86f dw_spi_update_config drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x536b12d6 dw_spi_dma_setup_mfld drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x62230f25 dw_spi_suspend_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7a50fae0 dw_spi_add_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0x7ee93d29 dw_spi_remove_host drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xd0a5383f dw_spi_dma_setup_generic drivers/spi/spi-dw +SPI_DW_CORE EXPORT_SYMBOL_GPL 0xfb69637c dw_spi_resume_host drivers/spi/spi-dw +SUNXI_CCU EXPORT_SYMBOL_GPL 0x089f7305 devm_sunxi_ccu_probe vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x19212eb4 ccu_mux_helper_determine_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x215acb3b ccu_frac_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x33527173 ccu_mux_helper_set_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x34a796c2 ccu_nm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x376eebe1 ccu_frac_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x3cca3c4e ccu_gate_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x5087807a ccu_frac_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x553cf6ba ccu_sdm_helper_read_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x60e84cc1 ccu_sdm_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x66ae640a ccu_mux_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x67b4f375 ccu_sdm_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x83c753fd ccu_mux_helper_apply_prediv vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x87fcecc6 ccu_sdm_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8cdb1752 ccu_nkm_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x8d7438cc ccu_gate_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x98224ec7 ccu_reset_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0x9a7239d2 ccu_frac_helper_is_enabled vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xa0f4dce8 ccu_nkmp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xba079d1a ccu_mp_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbb6e851f ccu_mp_mmc_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xbedab8d5 ccu_phase_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc2378215 ccu_frac_helper_set_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xc8f1374b ccu_pll_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xcdae8a96 ccu_mult_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd35244af ccu_sdm_helper_has_rate vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xd7ee688c ccu_gate_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdc3ef86e ccu_mux_helper_get_parent vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xde8a0571 ccu_mux_notifier_register vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xdee13cf4 ccu_frac_helper_enable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe2fe75df ccu_nk_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xe395e8eb ccu_div_ops vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xeca4e8ed ccu_gate_helper_disable vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf0423116 ccu_helper_wait_for_lock vmlinux +SUNXI_CCU EXPORT_SYMBOL_GPL 0xf1d63af5 ccu_sdm_helper_get_factors vmlinux +TEST_FIRMWARE EXPORT_SYMBOL_GPL 0x3dce036c firmware_request_builtin vmlinux +USB_STORAGE EXPORT_SYMBOL_GPL 0x00ec96da usb_stor_CB_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1005f3ef usb_stor_bulk_srb drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x16062b49 usb_stor_bulk_transfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1bc3edc2 usb_stor_sense_invalidCDB drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x1dcf8581 usb_stor_disconnect drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x2f62b05a usb_stor_Bulk_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x30674b4b usb_stor_transparent_scsi_command drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x373202fe usb_stor_probe1 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4b9c2051 usb_stor_post_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x4e6e4a2e usb_stor_probe2 drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5111c659 usb_stor_control_msg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5544ee1e usb_stor_ctrl_transfer drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5cfa87c5 usb_stor_access_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x5db60956 usb_stor_clear_halt drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x7aa1af2a usb_stor_set_xfer_buf drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x96a2812e usb_stor_resume drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0x9f7fc18c usb_stor_pre_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xb5ce1725 usb_stor_bulk_transfer_sg drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcc757d3f usb_stor_adjust_quirks drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xcfe5cde5 fill_inquiry_response drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xd9a10c53 usb_stor_Bulk_transport drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xe136ed1a usb_stor_suspend drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xeb22cf41 usb_stor_CB_reset drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xed20af17 usb_stor_host_template_init drivers/usb/storage/usb-storage +USB_STORAGE EXPORT_SYMBOL_GPL 0xf19a2e24 usb_stor_reset_resume drivers/usb/storage/usb-storage diff --git a/debian.nvidia-5.19/abi/arm64/nvidia-64k.compiler b/debian.nvidia-5.19/abi/arm64/nvidia-64k.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia-64k.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.nvidia-5.19/abi/arm64/nvidia-64k.modules b/debian.nvidia-5.19/abi/arm64/nvidia-64k.modules new file mode 100644 index 000000000000..48b14601a386 --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia-64k.modules @@ -0,0 +1,7182 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +amphion-vpu +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 +amt +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-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple_wdt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +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-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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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_acpi +chromeos_privacy_screen +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-apple-nco +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-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-renesas-pcie +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_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cn10k-rng +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 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +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_user +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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-am62 +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 +ecc-mtk +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 +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 +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 +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 +fit2 +fit3 +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 +friq +frpw +fsa4480 +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-ldb +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 +funcore +funeth +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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-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-sim +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-zynqmp-modepin +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-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-acc-vfio-pci +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_pcie_pmu +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_cpa_pmu +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-v2 +hns3 +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 +hte-tegra194 +hte-tegra194-test +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-apple +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-ccgx-ucsi +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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-bcm7120-l2 +irq-madera +irq-pruss-intc +irq-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it6505 +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 +k3_j72xx_bandgap +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-ecc +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 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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_cn10k_ddr_pmu +marvell_cn10k_tad_pmu +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_ep +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-vfio-pci +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 +mlxreg-lc +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 +mp5023 +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 +mse102x +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mstflint_access +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-common +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +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 +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-apple +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-layerscape-sfp +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 +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeon_ep +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +og01a1b +ohci-platform +omap-mailbox +omap-rng +omap2_nand +omap4-keypad +omap_elm +omap_hwspinlock +omfs +omninet +on20 +on26 +onenand +open-dice +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +otx2_ptp +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +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 +pcd +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 +pcie-apple +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-qcom-ep +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfr_telemetry +pfr_update +pfuze100-regulator +pg +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-imx8m-pcie +phy-fsl-imx8mq-usb +phy-fsl-lynx-28g +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-pcie +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-edp +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-naneng-combphy +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-apple-gpio +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-bcm4908 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-meson-s4 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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 +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_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-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-optee +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +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 +scd4x +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 +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +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 +sm3-ce +sm3_generic +sm4 +sm4-ce +sm4-ce-cipher +sm4-neon +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-acp-config +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-cs-dsp-ctls +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-q6apm +snd-q6dsp-common +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-generic +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sc7280 +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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-mt8186 +snd-sof-mt8195 +snd-sof-of +snd-sof-utils +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 +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-cadence-xspi +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-mtk-snfi +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-mtk-pmif +spmi-pmic-arb +sprd-dma +sprd-drm +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +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 +sunrise_co2 +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tegra186-gpc-dma +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +ug3105_battery +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 +v3d +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +v4l2-vp9 +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 +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 +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 +vmgenid +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +xen-kbdfront +xen-netback +xen-pciback +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-ams +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 +zr364xx +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd diff --git a/debian.nvidia-5.19/abi/arm64/nvidia-64k.retpoline b/debian.nvidia-5.19/abi/arm64/nvidia-64k.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia-64k.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.nvidia-5.19/abi/arm64/nvidia.compiler b/debian.nvidia-5.19/abi/arm64/nvidia.compiler new file mode 100644 index 000000000000..300a30285b5b --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0 diff --git a/debian.nvidia-5.19/abi/arm64/nvidia.modules b/debian.nvidia-5.19/abi/arm64/nvidia.modules new file mode 100644 index 000000000000..1f4c3cc45aee --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia.modules @@ -0,0 +1,7185 @@ +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250_aspeed_vuart +8250_bcm7271 +8250_exar +8250_men_mcb +8250_pericom +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_fd +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 +ad3552r +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 +ad7293 +ad7298 +ad7303 +ad7314 +ad7414 +ad7418 +ad74413r +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 +ada4250 +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 +adin1100 +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 +admv1013 +admv1014 +admv4420 +admv8818 +adp1653 +adp5061 +adp5520-keys +adp5520_bl +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +adrf6780 +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 +adv7604 +adv7842 +adv_pci1710 +adv_pci1720 +adv_pci1723 +adv_pci1724 +adv_pci1760 +adv_pci_dio +advansys +adxl313_core +adxl313_i2c +adxl313_spi +adxl34x +adxl34x-i2c +adxl34x-spi +adxl355_core +adxl355_i2c +adxl355_spi +adxl367 +adxl367_i2c +adxl367_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 +amphion-vpu +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 +amt +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-mailbox +apple-mfi-fastcharge +apple-rtkit +apple-sart +apple_wdt +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 +asix +aspeed-pwm-tacho +aspeed-video +ast +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-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 +ax88796c +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 +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 +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 +btmtk +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-sc7280 +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-dphy-rx +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_acpi +chromeos_privacy_screen +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-apple-nco +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-imx8ulp +clk-imx93 +clk-lmk04832 +clk-lochnagar +clk-max77686 +clk-max9485 +clk-palmas +clk-phase +clk-plldig +clk-pwm +clk-qcom +clk-raspberrypi +clk-renesas-pcie +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_rsvp +cls_rsvp6 +cls_u32 +cm109 +cm32181 +cm3232 +cm3323 +cm3605 +cm36651 +cma3000_d0x +cma3000_d0x_i2c +cmac +cmdlinepart +cmtp +cn10k-rng +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 +cppc_cpufreq +cpr +cptpf +cptvf +cqhci +cramfs +crc-itu-t +crc32_generic +crc4 +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_user +cs3308 +cs5345 +cs53l32a +cs_dsp +csiostor +ctucanfd +ctucanfd_pci +ctucanfd_platform +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_mem +cxl_pci +cxl_pmem +cxl_port +cy8ctma140 +cy8ctmg110_ts +cyapatp +cyber2000fb +cyberjack +cypress-sf +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 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +ddbridge +ddbridge-dummy-fe +de2104x +decnet +defxx +delta-ahe50dc-fan +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-qcm2290 +dispcc-sc7180 +dispcc-sc7280 +dispcc-sdm845 +dispcc-sm6125 +dispcc-sm6350 +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 +dn_rtmsg +dnet +dp83640 +dp83822 +dp83848 +dp83867 +dp83869 +dp83tc811 +dp83td510 +dpaa2-console +dpaa2-qdma +dpaa2_caam +dpdmai +dpot-dac +dps310 +dps920ab +drbd +drivetemp +drm +drm_cma_helper +drm_display_helper +drm_dp_aux_bus +drm_kms_helper +drm_mipi_dbi +drm_shmem_helper +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 +dtpm +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-gp-audio +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-am62 +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 +ecc-mtk +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 +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 +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 +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 +fit2 +fit3 +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 +friq +frpw +fsa4480 +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-ldb +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 +funcore +funeth +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-msm8976 +gcc-msm8994 +gcc-msm8996 +gcc-msm8998 +gcc-qcm2290 +gcc-qcs404 +gcc-sc7180 +gcc-sc7280 +gcc-sc8180x +gcc-sc8280xp +gcc-sdm660 +gcc-sdm845 +gcc-sdx55 +gcc-sdx65 +gcc-sm6115 +gcc-sm6125 +gcc-sm6350 +gcc-sm8150 +gcc-sm8250 +gcc-sm8350 +gcc-sm8450 +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 +gnss-usb +go7007 +go7007-loader +go7007-usb +goku_udc +goldfish_battery +goodix_ts +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-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-sim +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-zynqmp-modepin +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-sm6350 +gpucc-sm8150 +gpucc-sm8250 +gr_udc +grace +grcan +gre +greybus +grip +grip_mp +gs1662 +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 +hi846 +hi847 +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-letsketch +hid-lg-g15 +hid-logitech +hid-logitech-dj +hid-logitech-hidpp +hid-macally +hid-magicmouse +hid-maltron +hid-mcp2221 +hid-megaworld +hid-mf +hid-microsoft +hid-monterey +hid-multitouch +hid-nintendo +hid-nti +hid-ntrig +hid-ortek +hid-penmount +hid-petalynx +hid-picolcd +hid-pl +hid-plantronics +hid-playstation +hid-primax +hid-prodikeys +hid-razer +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-sigmamicro +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-vivaldi-common +hid-waltop +hid-wiimote +hid-xiaomi +hid-xinmo +hid-zpff +hid-zydacron +hideep +hidp +hih6130 +hinic +hip04_eth +hisi-acc-vfio-pci +hisi-rng +hisi-sfc +hisi-spmi-controller +hisi-trng-v2 +hisi504_nand +hisi_femac +hisi_hikey_usb +hisi_hpre +hisi_pcie_pmu +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_cpa_pmu +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-v2 +hns3 +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 +hte-tegra194 +hte-tegra194-test +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-apple +i2c-arb-gpio-challenge +i2c-bcm-iproc +i2c-bcm2835 +i2c-brcmstb +i2c-cbus-gpio +i2c-ccgx-ucsi +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 +ili9163 +ili9225 +ili922x +ili9320 +ili9341 +ili9486 +ilitek_ts_i2c +imagis +img-ascii-lcd +img-i2s-in +img-i2s-out +img-parallel-out +img-spdif-in +img-spdif-out +imm +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-mipi-csis +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 +imx7d_adc +imx7ulp_wdt +imx8m-ddrc +imx8mm-interconnect +imx8mm_thermal +imx8mn-interconnect +imx8mq-interconnect +imx8mq-mipi-csi2 +imx8qxp-adc +imx_dsp_rproc +imx_keypad +imx_rproc +imx_sc_key +imx_sc_thermal +imx_sc_wdt +imx_thermal +imxfb +ina209 +ina238 +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_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 +ip5xxx_power +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_ipmb +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 +iqs7222 +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-bcm7120-l2 +irq-madera +irq-pruss-intc +irq-qcom-mpm +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 +isl7998x +isl9305 +isofs +isp116x-hcd +isp1704_charger +isp1760 +it87 +it913x +itd1000 +ite-cir +ite-it6505 +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 +k3_j72xx_bandgap +k3dma +kafs +kalmia +kaweth +kbic +kbtab +kcm +kcomedilib +ke_counter +keembay-ocs-aes +keembay-ocs-ecc +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 +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 +lan966x-switch +lan966x_serdes +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-mt6360 +leds-pca9532 +leds-pca955x +leds-pca963x +leds-pwm +leds-pwm-multicolor +leds-qcom-lpg +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 +lightning +lima +line-display +lineage-pem +linear +linkstation-poweroff +liquidio +liquidio_vf +lis3lv02d +lis3lv02d_i2c +liteuart +litex_liteeth +litex_mmc +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-lt9211 +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 +lpassaudiocc-sc7280 +lpasscc-sc7280 +lpasscc-sdm845 +lpasscorecc-sc7180 +lpasscorecc-sc7280 +lpc_ich +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +lt3651-charger +ltc1660 +ltc2471 +ltc2485 +ltc2496 +ltc2497 +ltc2497-core +ltc2632 +ltc2688 +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_cn10k_ddr_pmu +marvell_cn10k_tad_pmu +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 +max20086-regulator +max20730 +max20751 +max2165 +max2175 +max30100 +max30102 +max3100 +max31722 +max31730 +max31785 +max31790 +max31856 +max31865 +max3420_udc +max3421-hcd +max34440 +max44000 +max44009 +max517 +max5432 +max5481 +max5487 +max5821 +max63xx_wdt +max6620 +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 +max77714 +max77802-regulator +max77826-regulator +max77976_charger +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 +max96712 +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-i2c +mctp-serial +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_ep +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-vfio-pci +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 +mlxreg-lc +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 +mp5023 +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 +mse102x +msg2638 +msi001 +msi2500 +msm +msp3400 +mspro_block +mss-sc7180 +mstflint_access +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 +mt6779-keypad +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 +mt7921-common +mt7921e +mt7921s +mt7921u +mt8183-da7219-max98357 +mt8183-mt6358-ts3a227-max98357 +mt8192-mt6359-rt1015-rt5682 +mt8195-mt6359 +mt9m001 +mt9m032 +mt9m111 +mt9p031 +mt9t001 +mt9t112 +mt9v011 +mt9v032 +mt9v111 +mtd +mtd_blkdevs +mtd_dataflash +mtdblock +mtdblock_ro +mtdoops +mtdpstore +mtdram +mtdswap +mtip32xx +mtk-adsp-common +mtk-adsp-ipc +mtk-adsp-mailbox +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_nand +mtk_rpmsg +mtk_scp +mtk_scp_ipi +mtk_t7xx +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 +nct6775-core +nct6775-i2c +nct7802 +nct7904 +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_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_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 +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 +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-apple +nvme-core +nvme-fabrics +nvme-fc +nvme-loop +nvme-rdma +nvme-tcp +nvmem-apple-efuses +nvmem-bcm-ocotp +nvmem-imx-iim +nvmem-imx-ocotp +nvmem-imx-ocotp-scu +nvmem-layerscape-sfp +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 +nvsw-sn2201 +nwl-dsi +nxp-c45-tja11xx +nxp-nci +nxp-nci_i2c +nxp-ptn3460 +nxp-tja11xx +nxt200x +nxt6000 +nzxt-kraken2 +nzxt-smart2 +objagg +ocfb +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stack_user +ocfs2_stackglue +ocmem +ocrdma +octeon_ep +octeontx-cpt +octeontx-cptvf +of-fpga-region +of_mmc_spi +of_pmem +of_xilinx_wdt +ofb +ofpart +og01a1b +ohci-platform +omap-mailbox +omap-rng +omap2_nand +omap4-keypad +omap_elm +omap_hwspinlock +omfs +omninet +on20 +on26 +onenand +open-dice +opencores-kbd +openvswitch +opt3001 +optee +optee-rng +opticon +option +or51132 +or51211 +orangefs +orinoco +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +oti6858 +otm3225a +otx2_ptp +ov02a10 +ov08d10 +ov13858 +ov13b10 +ov2640 +ov2659 +ov2680 +ov2685 +ov2740 +ov5640 +ov5645 +ov5647 +ov5648 +ov5670 +ov5675 +ov5693 +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-bf060y8m-aj0 +panel-boe-himax8279d +panel-boe-tv101wum-nl6 +panel-dsi-cm +panel-edp +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-fhd-r63452 +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-mipi-dbi +panel-nec-nl8048hl11 +panel-newvision-nv3052c +panel-novatek-nt35510 +panel-novatek-nt35560 +panel-novatek-nt35950 +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-s6d27a1 +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-sharp-ls060t1sx01 +panel-simple +panel-sitronix-st7701 +panel-sitronix-st7703 +panel-sitronix-st7789v +panel-sony-acx565akm +panel-sony-tulip-truly-nt35521 +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 +paride +parkbd +parman +parport +parport_ax88796 +parport_pc +parport_serial +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 +pcd +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 +pcie-apple +pcie-brcmstb +pcie-iproc +pcie-iproc-platform +pcie-mediatek-gen3 +pcie-qcom-ep +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 +pd +pda_power +pdc_adma +pdr_interface +peak_pci +peak_pciefd +peak_usb +peci +peci-cpu +peci-cputemp +peci-dimmtemp +pegasus +pegasus_notetaker +penmount +pf +pf8x00-regulator +pfr_telemetry +pfr_update +pfuze100-regulator +pg +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-imx8m-pcie +phy-fsl-imx8mq-usb +phy-fsl-lynx-28g +phy-generic +phy-gmii-sel +phy-gpio-vbus-usb +phy-hi3660-usb3 +phy-hi3670-pcie +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-edp +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-naneng-combphy +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-apple-gpio +pinctrl-apq8064 +pinctrl-apq8084 +pinctrl-axp209 +pinctrl-bcm4908 +pinctrl-da9062 +pinctrl-imx8ulp +pinctrl-imx93 +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-meson-s4 +pinctrl-msm8226 +pinctrl-msm8660 +pinctrl-msm8916 +pinctrl-msm8953 +pinctrl-msm8960 +pinctrl-msm8976 +pinctrl-msm8994 +pinctrl-msm8996 +pinctrl-msm8998 +pinctrl-msm8x74 +pinctrl-mt6779 +pinctrl-qcm2290 +pinctrl-qcs404 +pinctrl-qdf2xxx +pinctrl-rk805 +pinctrl-sc7180 +pinctrl-sc7280 +pinctrl-sc7280-lpass-lpi +pinctrl-sc8180x +pinctrl-sc8280xp +pinctrl-sdm660 +pinctrl-sdm845 +pinctrl-sdx55 +pinctrl-sdx65 +pinctrl-sm6115 +pinctrl-sm6125 +pinctrl-sm6350 +pinctrl-sm8150 +pinctrl-sm8250 +pinctrl-sm8250-lpass-lpi +pinctrl-sm8350 +pinctrl-sm8450 +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 +plfxlc +pli1209bc +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 +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_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-xilinx +pwm_bl +pwrseq_emmc +pwrseq_sd8787 +pwrseq_simple +pxa168_eth +pxa27x_udc +pxe1610 +pxrc +q54sj108a2 +q6adm +q6afe +q6afe-clocks +q6afe-dai +q6apm-dai +q6apm-lpass-dais +q6asm +q6asm-dai +q6core +q6prm +q6prm-clocks +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_bam_dmux +qcom_common +qcom_edac +qcom_eud +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_stats +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-msm8996 +qnoc-qcm2290 +qnoc-qcs404 +qnoc-sc7180 +qnoc-sc7280 +qnoc-sc8180x +qnoc-sc8280xp +qnoc-sdm660 +qnoc-sdm845 +qnoc-sdx55 +qnoc-sdx65 +qnoc-sm8150 +qnoc-sm8250 +qnoc-sm8350 +qnoc-sm8450 +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-isp +rcar-vin +rcar_can +rcar_canfd +rcar_cmm +rcar_drif +rcar_dw_hdmi +rcar_fdp1 +rcar_gen3_thermal +rcar_jpu +rcar_lvds +rcar_mipi_dsi +rcar_rproc +rcar_thermal +rdacm20 +rdacm21 +rdc321x-southbridge +rdma_cm +rdma_rxe +rdma_ucm +rds +rds_rdma +rds_tcp +realtek +realtek-mdio +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-nand-controller +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-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_ctrl +rpmsg_ns +rpmsg_tty +rpmsg_wwan_ctrl +rpr0521 +rsi_91x +rsi_sdio +rsi_usb +rsmu-i2c +rsmu-spi +rt1719 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800mmio +rt2800pci +rt2800usb +rt2x00lib +rt2x00mmio +rt2x00pci +rt2x00usb +rt4801-regulator +rt4831 +rt4831-backlight +rt4831-regulator +rt5033 +rt5033-regulator +rt5033_battery +rt5190a-regulator +rt5759-regulator +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-optee +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-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 +rtl8365mb +rtl8366 +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_8852a +rtw89_8852ae +rtw89_8852c +rtw89_8852ce +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 +rzg2l_thermal +rzg2l_wdt +rzn1_wdt +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 +scd4x +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 +sensehat-joystick +sensorhub +serial-tegra +serial_ir +serio_raw +sermouse +serpent_generic +serport +ses +sf-pdma +sfc +sfc-falcon +sfc-siena +sfp +sgi_w1 +sgp30 +sgp40 +sh-sci +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 +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 +sm3-ce +sm3_generic +sm4 +sm4-ce +sm4-ce-cipher +sm4-neon +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-acp-config +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-cs-dsp-ctls +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-q6apm +snd-q6dsp-common +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-generic +snd-serial-u16550 +snd-soc-63xx +snd-soc-ac97 +snd-soc-acp-da7219mx98357-mach +snd-soc-acp-rt5645-mach +snd-soc-acpi +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-ak4375 +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-audio-graph-card2-custom-sample +snd-soc-aw8738 +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-cs35l45 +snd-soc-cs35l45-i2c +snd-soc-cs35l45-spi +snd-soc-cs35l45-tables +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-cdc-dma +snd-soc-lpass-cpu +snd-soc-lpass-hdmi +snd-soc-lpass-ipq806x +snd-soc-lpass-macro-common +snd-soc-lpass-platform +snd-soc-lpass-rx-macro +snd-soc-lpass-sc7180 +snd-soc-lpass-sc7280 +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-max98396 +snd-soc-max98504 +snd-soc-max98520 +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-nau8821 +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-i2s-tdm +snd-soc-rockchip-max98090 +snd-soc-rockchip-pdm +snd-soc-rockchip-rt5645 +snd-soc-rockchip-spdif +snd-soc-rt1011 +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-rt5682s +snd-soc-rt700 +snd-soc-rt711 +snd-soc-rt711-sdca +snd-soc-rt715 +snd-soc-rt715-sdca +snd-soc-rt9120 +snd-soc-rz-ssi +snd-soc-sc7180 +snd-soc-sc7280 +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-tas5805m +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-sfc +snd-soc-tegra30-ahub +snd-soc-tegra30-i2s +snd-soc-test-component +snd-soc-tfa9879 +snd-soc-tfa989x +snd-soc-ti-edma +snd-soc-ti-sdma +snd-soc-ti-udma +snd-soc-tlv320adc3xxx +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-wm8731-i2c +snd-soc-wm8731-spi +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-wm8940 +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-mt8186 +snd-sof-mt8195 +snd-sof-of +snd-sof-utils +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 +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-cadence-xspi +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-mtk-snfi +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-mtk-pmif +spmi-pmic-arb +sprd-dma +sprd-drm +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 +ssd130x +ssd130x-i2c +ssd130x-spi +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-rtc-ccu +sun6i_drc +sun6i_hwspinlock +sun6i_mipi_dsi +sun8i-a33-mbus +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 +sunrise_co2 +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 +sx8 +sx8654 +sx9310 +sx9324 +sx9360 +sx9500 +sx_common +sy7636a-hwmon +sy7636a-regulator +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_rtl8_4 +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 +tegra186-gpc-dma +tegra194-cpufreq +tegra210-adma +tegra210-emc +tegra30-devfreq +tegra_cec +tegra_nand +tegra_wdt +tehuti +teranetics +test_blackhole_dev +test_bpf +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 +tmp464 +tmp513 +toshsd +touchit213 +touchright +touchwin +tpci200 +tpl0102 +tpm_atmel +tpm_ftpm_tee +tpm_i2c_atmel +tpm_i2c_infineon +tpm_i2c_nuvoton +tpm_infineon +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 +tps6286x-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 +tqmx86 +trace-printk +trancevibrator +trf7970a +tridentfb +ts2020 +ts_bm +ts_fsm +ts_kmp +tsc2004 +tsc2005 +tsc2007 +tsc200x-core +tsc40 +tsi721_mport +tsl2550 +tsl2563 +tsl2583 +tsl2591 +tsl2772 +tsl4531 +tsnep +tsys01 +tsys02d +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +ttusbir +ttynull +tua6100 +tua9001 +tulip +tuner +tuner-simple +tuner-types +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 +ug3105_battery +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 +v3d +v4l2-async +v4l2-dv-timings +v4l2-flash-led-class +v4l2-fwnode +v4l2-h264 +v4l2-jpeg +v4l2-mem2mem +v4l2-tpg +v4l2-vp9 +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 +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 +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 +vmgenid +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 +wusb3801 +wwan_hwsim +x25 +x_tables +xbox_remote +xc2028 +xc4000 +xc5000 +xcbc +xdpe12284 +xdpe152c4 +xen-blkback +xen-evtchn +xen-fbfront +xen-front-pgdir-shbuf +xen-gntalloc +xen-gntdev +xen-hcd +xen-kbdfront +xen-netback +xen-pciback +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-ams +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 +zr364xx +zram +zstd +zunicode +zynqmp-aes-gcm +zynqmp-dpsub +zynqmp-fpga +zynqmp-sha +zynqmp_dma +zzstd diff --git a/debian.nvidia-5.19/abi/arm64/nvidia.retpoline b/debian.nvidia-5.19/abi/arm64/nvidia.retpoline new file mode 100644 index 000000000000..7f959eb917cd --- /dev/null +++ b/debian.nvidia-5.19/abi/arm64/nvidia.retpoline @@ -0,0 +1 @@ +# RETPOLINE NOT ENABLED diff --git a/debian.nvidia-5.19/abi/fwinfo b/debian.nvidia-5.19/abi/fwinfo new file mode 100644 index 000000000000..8ea1411992fb --- /dev/null +++ b/debian.nvidia-5.19/abi/fwinfo @@ -0,0 +1,2046 @@ +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_cap.bin +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/dcn_3_1_5_dmcub.bin +firmware: amdgpu/dcn_3_1_6_dmcub.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/gc_10_3_6_ce.bin +firmware: amdgpu/gc_10_3_6_me.bin +firmware: amdgpu/gc_10_3_6_mec.bin +firmware: amdgpu/gc_10_3_6_mec2.bin +firmware: amdgpu/gc_10_3_6_pfp.bin +firmware: amdgpu/gc_10_3_6_rlc.bin +firmware: amdgpu/gc_10_3_7_ce.bin +firmware: amdgpu/gc_10_3_7_me.bin +firmware: amdgpu/gc_10_3_7_mec.bin +firmware: amdgpu/gc_10_3_7_mec2.bin +firmware: amdgpu/gc_10_3_7_pfp.bin +firmware: amdgpu/gc_10_3_7_rlc.bin +firmware: amdgpu/gc_11_0_0_imu.bin +firmware: amdgpu/gc_11_0_0_me.bin +firmware: amdgpu/gc_11_0_0_mec.bin +firmware: amdgpu/gc_11_0_0_mes.bin +firmware: amdgpu/gc_11_0_0_mes1.bin +firmware: amdgpu/gc_11_0_0_pfp.bin +firmware: amdgpu/gc_11_0_0_rlc.bin +firmware: amdgpu/gc_11_0_0_toc.bin +firmware: amdgpu/gc_11_0_1_imu.bin +firmware: amdgpu/gc_11_0_1_me.bin +firmware: amdgpu/gc_11_0_1_mec.bin +firmware: amdgpu/gc_11_0_1_mes.bin +firmware: amdgpu/gc_11_0_1_mes1.bin +firmware: amdgpu/gc_11_0_1_pfp.bin +firmware: amdgpu/gc_11_0_1_rlc.bin +firmware: amdgpu/gc_11_0_2_imu.bin +firmware: amdgpu/gc_11_0_2_me.bin +firmware: amdgpu/gc_11_0_2_mec.bin +firmware: amdgpu/gc_11_0_2_mes.bin +firmware: amdgpu/gc_11_0_2_mes1.bin +firmware: amdgpu/gc_11_0_2_pfp.bin +firmware: amdgpu/gc_11_0_2_rlc.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/ip_discovery.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_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_cap.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_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/psp_13_0_0_sos.bin +firmware: amdgpu/psp_13_0_5_ta.bin +firmware: amdgpu/psp_13_0_5_toc.bin +firmware: amdgpu/psp_13_0_7_sos.bin +firmware: amdgpu/psp_13_0_8_ta.bin +firmware: amdgpu/psp_13_0_8_toc.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_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/sdma_5_2_6.bin +firmware: amdgpu/sdma_5_2_7.bin +firmware: amdgpu/sdma_6_0_0.bin +firmware: amdgpu/sdma_6_0_1.bin +firmware: amdgpu/sdma_6_0_2.bin +firmware: amdgpu/si58_mc.bin +firmware: amdgpu/sienna_cichlid_cap.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_mes1.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/smu_13_0_0.bin +firmware: amdgpu/smu_13_0_7.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_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/vcn_3_1_2.bin +firmware: amdgpu/vcn_4_0_0.bin +firmware: amdgpu/vcn_4_0_4.bin +firmware: amdgpu/vega10_acg_smc.bin +firmware: amdgpu/vega10_asd.bin +firmware: amdgpu/vega10_cap.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_ce.bin +firmware: amdgpu/yellow_carp_dmcub.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: 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_driver_si2141_rom60.fw +firmware: dvb_driver_si2141_rom61.fw +firmware: dvb_driver_si2146_rom11.fw +firmware: dvb_driver_si2147_rom50.fw +firmware: dvb_driver_si2148_rom32.fw +firmware: dvb_driver_si2148_rom33.fw +firmware: dvb_driver_si2157_rom50.fw +firmware: dvb_driver_si2158_rom51.fw +firmware: dvb_driver_si2177_rom50.fw +firmware: dvb_driver_si2178_rom50.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_16.bin +firmware: i915/adlp_guc_69.0.3.bin +firmware: i915/adlp_guc_70.1.1.bin +firmware: i915/adls_dmc_ver2_01.bin +firmware: i915/bxt_dmc_ver1_07.bin +firmware: i915/bxt_guc_70.1.1.bin +firmware: i915/bxt_huc_2.0.0.bin +firmware: i915/cml_guc_70.1.1.bin +firmware: i915/cml_huc_4.0.0.bin +firmware: i915/dg1_dmc_ver2_02.bin +firmware: i915/dg1_guc_70.1.1.bin +firmware: i915/dg1_huc_7.9.3.bin +firmware: i915/dg2_guc_70.1.2.bin +firmware: i915/ehl_guc_70.1.1.bin +firmware: i915/ehl_huc_9.0.0.bin +firmware: i915/glk_dmc_ver1_04.bin +firmware: i915/glk_guc_70.1.1.bin +firmware: i915/glk_huc_4.0.0.bin +firmware: i915/icl_dmc_ver1_09.bin +firmware: i915/icl_guc_70.1.1.bin +firmware: i915/icl_huc_9.0.0.bin +firmware: i915/kbl_dmc_ver1_04.bin +firmware: i915/kbl_guc_70.1.1.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_70.1.1.bin +firmware: i915/skl_huc_2.0.0.bin +firmware: i915/tgl_dmc_ver2_12.bin +firmware: i915/tgl_guc_69.0.3.bin +firmware: i915/tgl_guc_70.1.1.bin +firmware: i915/tgl_huc_7.9.3.bin +firmware: idt82p33xxx.bin +firmware: ifpp.bin +firmware: imx/sdma/sdma-imx7d.bin +firmware: inside-secure/eip197_minifw/ifpp.bin +firmware: inside-secure/eip197_minifw/ipue.bin +firmware: inside-secure/eip197b/ifpp.bin +firmware: inside-secure/eip197b/ipue.bin +firmware: inside-secure/eip197d/ifpp.bin +firmware: inside-secure/eip197d/ipue.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: ipue.bin +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-BzBnj-a0-fm-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-fm4-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-gf-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-gf4-a0-72.ucode +firmware: iwlwifi-BzBnj-a0-hr-b0-72.ucode +firmware: iwlwifi-Qu-b0-hr-b0-72.ucode +firmware: iwlwifi-Qu-b0-jf-b0-72.ucode +firmware: iwlwifi-Qu-c0-hr-b0-72.ucode +firmware: iwlwifi-QuQnj-b0-hr-b0-72.ucode +firmware: iwlwifi-QuQnj-b0-jf-b0-72.ucode +firmware: iwlwifi-QuZ-a0-hr-b0-72.ucode +firmware: iwlwifi-QuZ-a0-jf-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-gf-a0-72.ucode +firmware: iwlwifi-SoSnj-a0-gf4-a0-72.ucode +firmware: iwlwifi-SoSnj-a0-hr-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-jf-b0-72.ucode +firmware: iwlwifi-SoSnj-a0-mr-a0-72.ucode +firmware: iwlwifi-bz-a0-fm-a0-72.ucode +firmware: iwlwifi-bz-a0-gf-a0-72.ucode +firmware: iwlwifi-bz-a0-gf4-a0-72.ucode +firmware: iwlwifi-bz-a0-hr-b0-72.ucode +firmware: iwlwifi-bz-a0-mr-a0-72.ucode +firmware: iwlwifi-cc-a0-72.ucode +firmware: iwlwifi-gl-a0-fm-a0-72.ucode +firmware: iwlwifi-ma-a0-fm-a0-72.ucode +firmware: iwlwifi-ma-a0-gf-a0-72.ucode +firmware: iwlwifi-ma-a0-gf4-a0-72.ucode +firmware: iwlwifi-ma-a0-hr-b0-72.ucode +firmware: iwlwifi-ma-a0-mr-a0-72.ucode +firmware: iwlwifi-so-a0-gf-a0-72.ucode +firmware: iwlwifi-so-a0-hr-b0-72.ucode +firmware: iwlwifi-so-a0-jf-b0-72.ucode +firmware: iwlwifi-ty-a0-gf-a0-72.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/BT_RAM_CODE_MT7961_1_2_hdr.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: mediatek/mt7916_rom_patch.bin +firmware: mediatek/mt7916_wa.bin +firmware: mediatek/mt7916_wm.bin +firmware: mediatek/mt7986_rom_patch.bin +firmware: mediatek/mt7986_rom_patch_mt7975.bin +firmware: mediatek/mt7986_wa.bin +firmware: mediatek/mt7986_wm.bin +firmware: mediatek/mt7986_wm_mt7975.bin +firmware: mellanox/lc_ini_bundle_2010_1006.bin +firmware: mellanox/mlxsw_spectrum-13.2010.1006.mfa2 +firmware: mellanox/mlxsw_spectrum2-29.2010.1006.mfa2 +firmware: mellanox/mlxsw_spectrum3-30.2010.1006.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/sdiouart8997_combo_v4.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/nvdec.bin +firmware: nvidia/tegra186/vic04_ucode.bin +firmware: nvidia/tegra186/xusb.bin +firmware: nvidia/tegra194/nvdec.bin +firmware: nvidia/tegra194/vic.bin +firmware: nvidia/tegra194/xusb.bin +firmware: nvidia/tegra210/nvdec.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: plfxlc/lifi-x.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.59.1.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_bt/rtl8852bu_config.bin +firmware: rtl_bt/rtl8852bu_fw.bin +firmware: rtl_bt/rtl8852cu_config.bin +firmware: rtl_bt/rtl8852cu_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: rtw89/rtw8852c_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/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 diff --git a/debian.nvidia-5.19/abi/fwinfo.builtin b/debian.nvidia-5.19/abi/fwinfo.builtin new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/debian.nvidia-5.19/abi/version b/debian.nvidia-5.19/abi/version new file mode 100644 index 000000000000..df1a865bc928 --- /dev/null +++ b/debian.nvidia-5.19/abi/version @@ -0,0 +1 @@ +5.19.0-1010.10 diff --git a/debian.nvidia-5.19/changelog b/debian.nvidia-5.19/changelog new file mode 100644 index 000000000000..5f63db14f79a --- /dev/null +++ b/debian.nvidia-5.19/changelog @@ -0,0 +1,27891 @@ +linux-nvidia-5.19 (5.19.0-1014.14) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1014.14 -proposed tracker (LP: #2021991) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Request application of upstream patch to address drm/ast ARM compatibility + issue (LP: #2021535) + - drm/ast: Fix ARM compatibility + + * Miscellaneous Ubuntu changes + - [Packaging] add nvidia build depends for nvidia-fs-dkms + + * Miscellaneous upstream changes + - NVIDIA: [Packaging] mstflint version changed to 4.24.0-1~jammy and nvidia- + fs version changed to 2.15.3~jammy + + [ Ubuntu: 5.19.0-44.45~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-44.45~22.04.1 -proposed tracker (LP: #2019826) + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] resync getabis + * kinetic/linux: 5.19.0-44.45 -proposed tracker (LP: #2019827) + * Linux 5.19 amdgpu: NULL pointer on GCN2 and invalid load on GCN1 + (LP: #2018470) + - drm/amdgpu: Fix for BO move issue + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * conntrack mark is not advertised via netlink (LP: #2016269) + - netfilter: ctnetlink: revert to dumping mark regardless of event type + * 5.19 not reporting cgroups v1 blkio.throttle.io_serviced (LP: #2016186) + - SAUCE: blk-throttle: Fix io statistics for cgroup v1 + * [SRU] Backport request for hpwdt from upstream 6.1 to Jammy (LP: #2008751) + - watchdog/hpwdt: Enable HP_WATCHDOG for ARM64 systems. + - watchdog/hpwdt: Include nmi.h only if CONFIG_HPWDT_NMI_DECODING + - [Config] Add arm64 option to CONFIG_HP_WATCHDOG + * vmwgfx fails to reserve graphics buffer on aarch64 leading to blank display + (LP: #2007001) + - SAUCE: Revert "video/aperture: Disable and unregister sysfb devices via + aperture helpers" + * Ubuntu 22.04 raise abnormal NIC MSI-X requests with larger CPU cores (256) + (LP: #2012335) + - ice: Allow operation with reduced device MSI-X + * Dell: Enable speaker mute hotkey LED indicator (LP: #2015972) + - platform/x86: dell-laptop: Register ctl-led for speaker-mute + * [SRU]With "Performance per Watt (DAPC)" enabled in the BIOS, Bootup time is + taking longer than expected (LP: #2008527) + - cpufreq: ACPI: Defer setting boost MSRs + * [SRU][Jammy] CONFIG_PCI_MESON is not enabled (LP: #2007745) + - [Config] arm64: Enable PCI_MESON module + * Kinetic update: upstream stable patchset 2023-05-08 (LP: #2018948) + - HID: asus: use spinlock to protect concurrent accesses + - HID: asus: use spinlock to safely schedule workers + - powerpc/mm: Rearrange if-else block to avoid clang warning + - ARM: OMAP2+: Fix memory leak in realtime_counter_init() + - arm64: dts: qcom: qcs404: use symbol names for PCIe resets + - arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up + - arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k + - arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings + - arm64: dts: imx8m: Align SoC unique ID node unit address + - ARM: zynq: Fix refcount leak in zynq_early_slcr_init + - arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description + - arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name + - arm64: dts: qcom: sc7180: correct SPMI bus address cells + - arm64: dts: qcom: sc7280: correct SPMI bus address cells + - arm64: dts: meson-gx: Fix Ethernet MAC address unit name + - arm64: dts: meson-g12a: Fix internal Ethernet PHY unit name + - arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address + - arm64: dts: msm8992-bullhead: add memory hole region + - arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size + - arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem + - arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY + - arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges + - arm64: dts: qcom: ipq8074: fix Gen3 PCIe node + - arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names + - arm64: dts: meson: remove CPU opps below 1GHz for G12A boards + - ARM: OMAP1: call platform_device_put() in error case in + omap1_dm_timer_init() + - ARM: bcm2835_defconfig: Enable the framebuffer + - ARM: s3c: fix s3c64xx_set_timer_source prototype + - arm64: dts: ti: k3-j7200: Fix wakeup pinmux range + - ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato + - ARM: imx: Call ida_simple_remove() for ida_simple_get + - arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-axg: fix SCPI clock dvfs node name + - arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible + - arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names + property + - arm64: dts: amlogic: meson-gx: add missing unit address to rng node name + - arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux node + name + - arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name + - arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names + - arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name + - arm64: dts: amlogic: meson-gxbb-kii-pro: fix led node name + - arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip + - locking/rwsem: Disable preemption in all down_read*() and up_read() code + paths + - arm64: dts: renesas: beacon-renesom: Fix gpio expander reference + - arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN + - ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference + - ARM: dts: imx7s: correct iomuxc gpr mux controller cells + - arm64: dts: mt8192: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node + - blk-mq: avoid sleep in blk_mq_alloc_request_hctx + - blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx + - blk-mq: correct stale comment of .get_budget + - arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM + and MPSS memory regions + - s390/dasd: Fix potential memleak in dasd_eckd_init() + - sched/rt: pick_next_rt_entity(): check list_entry + - x86/perf/zhaoxin: Add stepping check for ZXC + - KEYS: asymmetric: Fix ECDSA use via keyctl uapi + - arm64: dts: qcom: pmk8350: Specify PBS register for PON + - arm64: dts: qcom: pmk8350: Use the correct PON compatible + - block: bio-integrity: Copy flags when bio_integrity_payload is cloned + - wifi: rsi: Fix memory leak in rsi_coex_attach() + - wifi: rtlwifi: rtl8821ae: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8188ee: don't call kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: rtl8723be: don't call kfree_skb() under spin_lock_irqsave() + - wifi: iwlegacy: common: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: libertas: fix memory leak in lbs_init_adapter() + - wifi: rtl8xxxu: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: rtlwifi: Fix global-out-of-bounds bug in + _rtl8812ae_phy_set_txpower_limit() + - libbpf: Fix btf__align_of() by taking into account field offsets + - wifi: ipw2x00: don't call dev_kfree_skb() under spin_lock_irqsave() + - wifi: ipw2200: fix memory leak in ipw_wdev_init() + - wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() + - wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() + - wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() + - wifi: libertas_tf: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: if_usb: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: main: don't call kfree_skb() under spin_lock_irqsave() + - wifi: libertas: cmdresp: don't call kfree_skb() under spin_lock_irqsave() + - wifi: wl3501_cs: don't call kfree_skb() under spin_lock_irqsave() + - crypto: x86/ghash - fix unaligned access in ghash_setkey() + - ACPICA: Drop port I/O validation for some regions + - genirq: Fix the return type of kstat_cpu_irqs_sum() + - rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose + - rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls + - rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() + - lib/mpi: Fix buffer overrun when SG is too long + - crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 + - ACPICA: nsrepair: handle cases without a return value correctly + - thermal/drivers/tsens: Drop msm8976-specific defines + - thermal/drivers/tsens: Sort out msm8976 vs msm8956 data + - thermal/drivers/tsens: fix slope values for msm8939 + - thermal/drivers/tsens: limit num_sensors to 9 for msm8939 + - wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU + - wifi: orinoco: check return value of hermes_write_wordrec() + - wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback + function + - ath9k: htc: clean up statistics macros + - wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails + - wifi: ath9k: Fix potential stack-out-of-bounds write in + ath9k_wmi_rsp_callback() + - wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup + - wifi: cfg80211: Fix extended KCK key length check in + nl80211_set_rekey_data() + - ACPI: battery: Fix missing NUL-termination with large strings + - crypto: ccp - Failure on re-initialization due to duplicate sysfs filename + - crypto: essiv - Handle EBUSY correctly + - crypto: seqiv - Handle EBUSY correctly + - powercap: fix possible name leak in powercap_register_zone() + - x86/microcode: Print previous version of microcode after reload + - x86/microcode: Add a parameter to microcode_check() to store CPU + capabilities + - x86/microcode: Check CPU capabilities after late microcode update correctly + - x86/microcode: Adjust late loading result reporting message + - crypto: xts - Handle EBUSY correctly + - leds: led-class: Add missing put_device() to led_put() + - crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware + - bpftool: profile online CPUs instead of possible + - net/mlx5: Enhance debug print in page allocation failure + - irqchip: Fix refcount leak in platform_irqchip_probe + - irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains + - irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe + - irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe + - s390/mem_detect: fix detect_memory() error handling + - s390/vmem: fix empty page tables cleanup under KASAN + - net: add sock_init_data_uid() + - tun: tun_chr_open(): correctly initialize socket uid + - tap: tap_open(): correctly initialize socket uid + - OPP: fix error checking in opp_migrate_dentry() + - Bluetooth: L2CAP: Fix potential user-after-free + - Bluetooth: hci_qca: get wakeup status from serdev device handle + - s390/ap: fix status returned by ap_aqic() + - s390/ap: fix status returned by ap_qact() + - libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() + - rds: rds_rm_zerocopy_callback() correct order for list_add_tail() + - crypto: rsa-pkcs1pad - Use akcipher_request_complete + - m68k: /proc/hardware should depend on PROC_FS + - RISC-V: time: initialize hrtimer based broadcast clock event device + - wifi: iwl3945: Add missing check for create_singlethread_workqueue + - wifi: iwl4965: Add missing check for create_singlethread_workqueue() + - wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() + - selftests/bpf: Fix out-of-srctree build + - ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models + - ACPI: resource: Do IRQ override on all TongFang GMxRGxx + - crypto: crypto4xx - Call dma_unmap_page when done + - wifi: mac80211: make rate u32 in sta_set_rate_info_rx() + - thermal/drivers/hisi: Drop second sensor hi3660 + - can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a + bus error + - bpf: Fix global subprog context argument resolution logic + - irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts + - irqchip/irq-bcm7120-l2: Set IRQ_LEVEL for level triggered interrupts + - selftests/net: Interpret UDP_GRO cmsg data as an int value + - l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() + - net: bcmgenet: fix MoCA LED control + - sefltests: netdevsim: wait for devlink instance after netns removal + - drm: Fix potential null-ptr-deref due to drmm_mode_config_init() + - drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats + - drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec + - [Config] updateconfigs for DRM_MXSFB + - drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC + - drm/bridge: megachips: Fix error handling in i2c_register_driver() + - drm/vkms: Fix memory leak in vkms_init() + - drm/vkms: Fix null-ptr-deref in vkms_release() + - drm/vc4: dpi: Add option for inverting pixel clock and output enable + - drm/vc4: dpi: Fix format mapping for RGB565 + - drm: tidss: Fix pixel format definition + - gpu: ipu-v3: common: Add of_node_put() for reference returned by + of_graph_get_port_by_id() + - hwmon: (ftsteutates) Fix scaling of measurements + - drm/msm/hdmi: Add missing check for alloc_ordered_workqueue + - pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins + - pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain + - pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups + - drm/vc4: hvs: Set AXI panic modes + - drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 + - drm/vc4: hdmi: Correct interlaced timings again + - drm/msm: clean event_thread->worker in case of an error + - scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription + - scsi: qla2xxx: Fix exchange oversubscription + - scsi: qla2xxx: Fix exchange oversubscription for management commands + - ASoC: fsl_sai: initialize is_dsp_mode flag + - drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() + - ALSA: hda/ca0132: minor fix for allocation size + - drm/msm/gem: Add check for kmalloc + - drm/msm/dpu: Disallow unallocated resources to be returned + - drm/bridge: lt9611: fix sleep mode setup + - drm/bridge: lt9611: fix HPD reenablement + - drm/bridge: lt9611: fix polarity programming + - drm/bridge: lt9611: fix programming of video modes + - drm/bridge: lt9611: fix clock calculation + - drm/bridge: lt9611: pass a pointer to the of node + - drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness + - drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags + - drm/msm/dsi: Allow 2 CTRLs on v2.5.0 + - drm/msm: use strscpy instead of strncpy + - drm/msm/dpu: Add check for cstate + - drm/msm/dpu: Add check for pstates + - drm/msm/mdp5: Add check for kzalloc + - pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() + - pinctrl: mediatek: Initialize variable pullen and pullup to zero + - pinctrl: mediatek: Initialize variable *buf to zero + - gpu: host1x: Don't skip assigning syncpoints to channels + - drm/tegra: firewall: Check for is_addr_reg existence in IMM check + - drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() + - drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd + - drm/mediatek: Use NULL instead of 0 for NULL pointer + - drm/mediatek: Drop unbalanced obj unref + - drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc + - drm/mediatek: Clean dangling pointer on bind error path + - ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() + - gpio: vf610: connect GPIO label to dev name + - spi: dw_bt1: fix MUX_MMIO dependencies + - ASoC: mchp-spdifrx: fix controls which rely on rsr register + - ASoC: mchp-spdifrx: fix return value in case completion times out + - ASoC: mchp-spdifrx: fix controls that works with completion mechanism + - ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() + - ASoC: rsnd: fixup #endif position + - ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() + - ASoC: dt-bindings: meson: fix gx-card codec node regex + - hwmon: (ltc2945) Handle error case in ltc2945_value_store + - drm/amdgpu: fix enum odm_combine_mode mismatch + - scsi: mpt3sas: Fix a memory leak + - scsi: aic94xx: Add missing check for dma_map_single() + - HID: multitouch: Add quirks for flipped axes + - HID: retain initial quirks set up when creating HID devices + - ASoC: codecs: lpass: fix incorrect mclk rate + - spi: bcm63xx-hsspi: Fix multi-bit mode setting + - hwmon: (mlxreg-fan) Return zero speed for broken fan + - ASoC: tlv320adcx140: fix 'ti,gpio-config' DT property init + - dm: remove flush_scheduled_work() during local_exit() + - nfs4trace: fix state manager flag printing + - NFS: fix disabling of swap + - spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() + - ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared + - HID: bigben: use spinlock to protect concurrent accesses + - HID: bigben_worker() remove unneeded check on report_field + - HID: bigben: use spinlock to safely schedule workers + - hid: bigben_probe(): validate report count + - drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() + - nfsd: fix race to check ls_layouts + - cifs: Fix lost destroy smbd connection when MR allocate failed + - cifs: Fix warning and UAF when destroy the MR list + - gfs2: jdata writepage fix + - perf llvm: Fix inadvertent file creation + - leds: led-core: Fix refcount leak in of_led_get() + - perf inject: Use perf_data__read() for auxtrace + - perf intel-pt: Do not try to queue auxtrace data on pipe + - perf tools: Fix auto-complete on aarch64 + - sparc: allow PM configs for sparc32 COMPILE_TEST + - printf: fix errname.c list + - objtool: add UACCESS exceptions for __tsan_volatile_read/write + - mfd: cs5535: Don't build on UML + - mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() + - dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 + - [Config] updateconfigs for HISI_DMA + - dmaengine: HISI_DMA should depend on ARCH_HISI + - iio: light: tsl2563: Do not hardcode interrupt trigger type + - usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() + - i2c: designware: fix i2c_dw_clk_rate() return size to be u32 + - soundwire: cadence: Don't overflow the command FIFOs + - driver core: fix potential null-ptr-deref in device_add() + - kobject: modify kobject_get_path() to take a const * + - kobject: Fix slab-out-of-bounds in fill_kobj_path() + - alpha/boot/tools/objstrip: fix the check for ELF header + - media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() + - coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR + - coresight: cti: Prevent negative values of enable count + - coresight: cti: Add PM runtime call in enable_store + - ACPI: resource: Add helper function acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() + - usb: typec: intel_pmc_mux: Don't leak the ACPI device reference count + - PCI/IOV: Enlarge virtfn sysfs name buffer + - PCI: switchtec: Return -EFAULT for copy_to_user() errors + - tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() + - tty: serial: fsl_lpuart: clear LPUART Status Register in lpuart32_shutdown() + - serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() + - Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in + set_protocol" + - eeprom: idt_89hpesx: Fix error handling in idt_init() + - applicom: Fix PCI device refcount leak in applicom_init() + - firmware: stratix10-svc: add missing gen_pool_destroy() in + stratix10_svc_drv_probe() + - VMCI: check context->notify_page after call to get_user_pages_fast() to + avoid GPF + - misc/mei/hdcp: Use correct macros to initialize uuid_le + - driver core: fix resource leak in device_add() + - drivers: base: transport_class: fix possible memory leak + - drivers: base: transport_class: fix resource leak when + transport_add_device() fails + - firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle + - fotg210-udc: Add missing completion handler + - dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers + - usb: early: xhci-dbc: Fix a potential out-of-bound memory access + - tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case + - RDMA/cxgb4: add null-ptr-check after ip_dev_find() + - usb: musb: mediatek: don't unregister something that wasn't registered + - usb: gadget: configfs: Restrict symlink creation is UDC already binded + - iommu/vt-d: Set No Execute Enable bit in PASID table entry + - power: supply: remove faulty cooling logic + - RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() + - usb: max-3421: Fix setting of I/O pins + - RDMA/irdma: Cap MSIX used to online CPUs + 1 + - serial: fsl_lpuart: fix RS485 RTS polariy inverse issue + - tty: serial: imx: Handle RS485 DE signal active high + - tty: serial: imx: disable Ageing Timer interrupt request irq + - dmaengine: dw-edma: Fix readq_ch() return value truncation + - phy: rockchip-typec: fix tcphy_get_mode error case + - iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() + - iommu: Fix error unwind in iommu_group_alloc() + - dmaengine: sf-pdma: pdma_desc memory leak fix + - dmaengine: dw-axi-dmac: Do not dereference NULL structure + - iommu/vt-d: Fix error handling in sva enable/disable paths + - iommu/vt-d: Allow to use flush-queue when first level is default + - IB/hfi1: Fix math bugs in hfi1_can_pin_pages() + - IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors + - remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers + - media: ti: cal: fix possible memory leak in cal_ctx_create() + - media: platform: ti: Add missing check for devm_regulator_get + - powerpc: Remove linker flag from KBUILD_AFLAGS + - s390/vdso: Drop '-shared' from KBUILD_CFLAGS_64 + - builddeb: clean generated package content + - media: max9286: Fix memleak in max9286_v4l2_register() + - media: ov2740: Fix memleak in ov2740_init_controls() + - media: ov5675: Fix memleak in ov5675_init_controls() + - media: i2c: ov772x: Fix memleak in ov772x_probe() + - media: i2c: imx219: Split common registers from mode tables + - media: i2c: imx219: Fix binning for RAW8 capture + - media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data + - media: v4l2-jpeg: ignore the unknown APP14 marker + - media: imx-jpeg: Apply clk_bulk api instead of operating specific clk + - media: i2c: ov7670: 0 instead of -EINVAL was returned + - media: usb: siano: Fix use after free bugs caused by do_submit_urb + - media: saa7134: Use video_unregister_device for radio_dev + - rpmsg: glink: Avoid infinite loop on intent for missing channel + - udf: Define EFSCORRUPTED error code + - ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy + - blk-iocost: fix divide by 0 error in calc_lcoefs() + - trace/blktrace: fix memory leak with using debugfs_lookup() + - wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() + - wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() + - rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks + - rcu: Suppress smp_processor_id() complaint in + synchronize_rcu_expedited_wait() + - rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug + - wifi: ath11k: debugfs: fix to work with multiple PCI devices + - thermal: intel: Fix unsigned comparison with less than zero + - timers: Prevent union confusion from unexpected restart_syscall() + - x86/bugs: Reset speculation control settings on init + - wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out- + of-bounds + - wifi: mt7601u: fix an integer underflow + - inet: fix fast path in __inet_hash_connect() + - ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB + - ice: add missing checks for PF vsi type + - ACPI: Don't build ACPICA with '-Os' + - thermal: intel: intel_pch: Add support for Wellsburg PCH + - clocksource: Suspend the watchdog temporarily when high read latency + detected + - crypto: hisilicon: Wipe entire pool on error + - net: bcmgenet: Add a check for oversized packets + - m68k: Check syscall_trace_enter() return code + - netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() + - tools/power/x86/intel-speed-select: Add Emerald Rapid quirk + - wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup + - ACPI: video: Fix Lenovo Ideapad Z570 DMI match + - net/mlx5: fw_tracer: Fix debug print + - coda: Avoid partial allocation of sig_inputArgs + - uaccess: Add minimum bounds check on kernel buffer size + - s390/idle: mark arch_cpu_idle() noinstr + - time/debug: Fix memory leak with using debugfs_lookup() + - PM: domains: fix memory leak with using debugfs_lookup() + - PM: EM: fix memory leak with using debugfs_lookup() + - Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE + - hv_netvsc: Check status in SEND_RNDIS_PKT completion message + - scm: add user copy checks to put_cmsg() + - drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h + write + - drm/amd/display: Fix potential null-deref in dm_resume + - drm/omap: dsi: Fix excessive stack usage + - HID: Add Mapping for System Microphone Mute + - drm/tiny: ili9486: Do not assume 8-bit only SPI controllers + - drm/radeon: free iio for atombios when driver shutdown + - scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write + - Revert "fbcon: don't lose the console font across generic->chip driver + switch" + - drm: amd: display: Fix memory leakage + - drm/msm/dsi: Add missing check for alloc_ordered_workqueue + - docs/scripts/gdb: add necessary make scripts_gdb step + - ASoC: soc-compress: Reposition and add pcm_mutex + - ASoC: kirkwood: Iterate over array indexes instead of using pointer math + - regulator: max77802: Bounds check regulator id against opmode + - regulator: s5m8767: Bounds check id indexing into arrays + - gfs2: Improve gfs2_make_fs_rw error handling + - hwmon: (coretemp) Simplify platform device handling + - pinctrl: at91: use devm_kasprintf() to avoid potential leaks + - scsi: snic: Fix memory leak with using debugfs_lookup() + - HID: logitech-hidpp: Don't restart communication if not necessary + - drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 + - dm thin: add cond_resched() to various workqueue loops + - dm cache: add cond_resched() to various workqueue loops + - nfsd: zero out pointers after putting nfsd_files on COPY setup error + - drm/shmem-helper: Revert accidental non-GPL export + - wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu + - firmware: coreboot: framebuffer: Ignore reserved pixel color bits + - block: don't allow multiple bios for IOCB_NOWAIT issue + - rtc: pm8xxx: fix set-alarm race + - ipmi:ssif: resend_msg() cannot fail + - ipmi_ssif: Rename idle state and check + - s390/extmem: return correct segment type in __segment_load() + - s390: discard .interp section + - s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler + - s390/kprobes: fix current_kprobe never cleared after kprobes reenter + - cifs: Fix uninitialized memory read in smb3_qfs_tcon() + - btrfs: hold block group refcount during async discard + - locking/rwsem: Prevent non-first waiter from spinning in down_write() + slowpath + - ksmbd: fix wrong data area length for smb2 lock request + - ksmbd: do not allow the actual frame length to be smaller than the rfc1002 + length + - ARM: dts: exynos: correct HDMI phy compatible in Exynos4 + - hfs: fix missing hfs_bnode_get() in __hfs_bnode_create + - fs: hfsplus: fix UAF issue in hfsplus_put_super + - exfat: fix reporting fs error when reading dir beyond EOF + - exfat: fix unexpected EOF while reading dir + - exfat: redefine DIR_DELETED as the bad cluster number + - exfat: fix inode->i_blocks for non-512 byte sector size device + - fs: dlm: don't set stop rx flag after node reset + - fs: dlm: move sending fin message into state change handling + - fs: dlm: send FIN ack back in right cases + - f2fs: fix information leak in f2fs_move_inline_dirents() + - f2fs: fix cgroup writeback accounting with fs-layer encryption + - ocfs2: fix defrag path triggering jbd2 ASSERT + - ocfs2: fix non-auto defrag path not working issue + - selftests/landlock: Skip overlayfs tests when not supported + - selftests/landlock: Test ptrace as much as possible with Yama + - udf: Truncate added extents on failed expansion + - udf: Do not bother merging very long extents + - udf: Do not update file length for failed writes to inline files + - udf: Preserve link count of system files + - udf: Detect system inodes linked into directory hierarchy + - udf: Fix file corruption when appending just after end of preallocated + extent + - RDMA/siw: Fix user page pinning accounting + - KVM: Destroy target device if coalesced MMIO unregistration fails + - KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI + - KVM: SVM: Fix potential overflow in SEV's send|receive_update_data() + - KVM: SVM: hyper-v: placate modpost section mismatch error + - KVM: s390: disable migration mode when dirty tracking is disabled + - x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) + - x86/crash: Disable virt in core NMI crash handler to avoid double shootdown + - x86/reboot: Disable virtualization in an emergency if SVM is supported + - x86/reboot: Disable SVM, not just VMX, when stopping CPUs + - x86/kprobes: Fix __recover_optprobed_insn check optimizing logic + - x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe + range + - x86/microcode/amd: Remove load_microcode_amd()'s bsp parameter + - x86/microcode/AMD: Add a @cpu parameter to the reloading functions + - x86/microcode/AMD: Fix mixed steppings support + - x86/speculation: Allow enabling STIBP with legacy IBRS + - Documentation/hw-vuln: Document the interaction between IBRS and STIBP + - brd: return 0/-error from brd_insert_page() + - ima: Align ima_file_mmap() parameters with mmap_file LSM hook + - irqdomain: Fix association race + - irqdomain: Fix disassociation race + - irqdomain: Look for existing mapping only once + - irqdomain: Drop bogus fwspec-mapping error handling + - irqdomain: Fix domain registration race + - crypto: qat - fix out-of-bounds read + - io_uring: handle TIF_NOTIFY_RESUME when checking for task_work + - io_uring: mark task TASK_RUNNING before handling resume/task work + - io_uring: add a conditional reschedule to the IOPOLL cancelation loop + - io_uring/rsrc: disallow multi-source reg buffers + - io_uring: remove MSG_NOSIGNAL from recvmsg + - io_uring/poll: allow some retries for poll triggering spuriously + - ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() + - ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC + - jbd2: fix data missing when reusing bh which is ready to be checkpointed + - ext4: optimize ea_inode block expansion + - ext4: refuse to create ea block when umounted + - mtd: spi-nor: sfdp: Fix index value for SCCR dwords + - mtd: spi-nor: spansion: Consider reserved bits in CFR5 register + - mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type + - dm: send just one event on resize, not two + - dm: add cond_resched() to dm_wq_work() + - wifi: rtl8xxxu: Use a longer retry limit of 48 + - wifi: ath11k: allow system suspend to survive ath11k + - wifi: cfg80211: Fix use after free for wext + - qede: fix interrupt coalescing configuration + - thermal: intel: powerclamp: Fix cur_state for multi package system + - dm flakey: fix logic when corrupting a bio + - dm flakey: don't corrupt the zero page + - dm flakey: fix a bug with 32-bit highmem systems + - ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node + - ARM: dts: exynos: correct TMU phandle in Exynos4210 + - ARM: dts: exynos: correct TMU phandle in Exynos4 + - ARM: dts: exynos: correct TMU phandle in Odroid XU3 family + - ARM: dts: exynos: correct TMU phandle in Exynos5250 + - ARM: dts: exynos: correct TMU phandle in Odroid XU + - ARM: dts: exynos: correct TMU phandle in Odroid HC1 + - fuse: add inode/permission checks to fileattr_get/fileattr_set + - rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails + - ceph: update the time stamps and try to drop the suid/sgid + - alpha: fix FEN fault handling + - dax/kmem: Fix leak of memory-hotplug resources + - mips: fix syscall_get_nr + - media: ipu3-cio2: Fix PM runtime usage_count in driver unbind + - remoteproc/mtk_scp: Move clk ops outside send_lock + - docs: gdbmacros: print newest record + - mm: memcontrol: deprecate charge moving + - mm/thp: check and bail out if page in deferred queue already + - ktest.pl: Give back console on Ctrt^C on monitor + - ktest.pl: Fix missing "end_monitor" when machine check fails + - ktest.pl: Add RUN_TIMEOUT option with default unlimited + - ring-buffer: Handle race between rb_move_tail and rb_check_pages + - tools/bootconfig: fix single & used for logical condition + - scsi: qla2xxx: Fix link failure in NPIV environment + - scsi: qla2xxx: Check if port is online before sending ELS + - scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests + - scsi: qla2xxx: Remove unintended flag clearing + - scsi: qla2xxx: Fix erroneous link down + - scsi: qla2xxx: Remove increment of interface err cnt + - scsi: ses: Don't attach if enclosure has no components + - scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() + - scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses + - scsi: ses: Fix possible desc_ptr out-of-bounds accesses + - scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() + - RISC-V: add a spin_shadow_stack declaration + - riscv: mm: fix regression due to update_mmu_cache change + - riscv: jump_label: Fixup unaligned arch_static_branch function + - riscv, mm: Perform BPF exhandler fixup on page fault + - riscv: ftrace: Remove wasted nops for !RISCV_ISA_C + - riscv: ftrace: Reduce the detour code size to half + - MIPS: DTS: CI20: fix otg power gpio + - PCI/PM: Observe reset delay irrespective of bridge_d3 + - PCI: hotplug: Allow marking devices as disconnected during bind/unbind + - PCI: Avoid FLR for AMD FCH AHCI adapters + - iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode + - vfio/type1: prevent underflow of locked_vm via exec() + - vfio/type1: track locked_vm per dma + - vfio/type1: restore locked_vm + - drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv + - drm/radeon: Fix eDP for single-display iMac11,2 + - drm/edid: fix AVI infoframe aspect ratio handling + - qede: avoid uninitialized entries in coal_entry array + - arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY + - wifi: ath9k: use proper statements in conditionals + - kbuild: Port silent mode detection to future gnu make. + - arm64: dts: qcom: sm6350: Fix up the ramoops node + - arm64: dts: mediatek: mt8192: Fix systimer 13 MHz clock description + - arm64: dts: mediatek: mt8195: Fix systimer 13 MHz clock description + - x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC + - arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node + - arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name + - arm64: tegra: Fix duplicate regulator on Jetson TX1 + - arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken + - arm64: dts: meson: radxa-zero: allow usb otg mode + - arm64: dts: mt8195: Fix CPU map for single-cluster SoC + - arm64: dts: mediatek: mt7986: Fix watchdog compatible + - ARM: dts: stm32: Update part number NVMEM description on stm32mp131 + - blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait + - blk-mq: Fix potential io hung for shared sbitmap per tagset + - arm64: dts: qcom: sm8350: drop incorrect cells from serial + - arm64: dts: qcom: msm8953: correct TLMM gpio-ranges + - block: Fix io statistics for cgroup in throttle path + - wifi: mt76: mt7915: add missing of_node_put() + - wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host + - wifi: mt76: mt7915: check return value before accessing free_block_num + - wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() + - wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() + - wifi: rtw89: 8852c: rfk: correct DACK setting + - wifi: rtw89: 8852c: rfk: correct DPK settings + - wifi: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() + - libbpf: Fix invalid return address register in s390 + - kselftest/arm64: Fix syscall-abi for systems without 128 bit SME + - workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex + - s390/early: fix sclp_early_sccb variable lifetime + - s390/vfio-ap: fix an error handling path in vfio_ap_mdev_probe_queue() + - x86/signal: Fix the value returned by strict_sas_size() + - wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie() + - wifi: rtw89: Add missing check for alloc_workqueue + - s390/bpf: Add expoline to tail calls + - wifi: iwlwifi: mei: fix compilation errors in rfkill() + - kselftest/arm64: Fix enumeration of systems without 128 bit SME + - can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses + - wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after + init_work + - wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit + - wifi: mt76: add memory barrier to SDIO queue kick + - cpufreq: davinci: Fix clk use after free + - net: ipa: generic command param fix + - crypto: octeontx2 - Fix objects shared between several modules + - tools/lib/thermal: Fix thermal_sampling_exit() + - selftests/bpf: Fix map_kptr test. + - net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() + - net: lan966x: Fix possible deadlock inside PTP + - net/mlx4_en: Introduce flexible array to silence overflow warning + - drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() + - drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 + - scsi: qla2xxx: edif: Fix clang warning + - scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 + - habanalabs: bugs fixes in timestamps buff alloc + - dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp- + ccorr + - ASoC: topology: Properly access value coming from topology file + - regmap: apply reg_base and reg_downshift for single register ops + - hwmon: (asus-ec-sensors) add missing mutex path + - [Config] updateconfigs for SND_HDA_CTL_DEV_ID + - ALSA: hda: Fix the control element identification for multiple codecs + - ASoC: qcom: q6apm-lpass-dai: unprepare stream if its already prepared + - ASoC: qcom: q6apm-dai: fix race condition while updating the position + pointer + - ASoC: qcom: q6apm-dai: Add SNDRV_PCM_INFO_BATCH flag + - nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open + - NFSD: copy the whole verifier in nfsd_copy_write_verifier + - cifs: use tcon allocation functions even for dummy tcon + - tools/tracing/rtla: osnoise_hist: use total duration for average calculation + - perf test bpf: Skip test if kernel-debuginfo is not present + - perf record: Fix segfault with --overwrite and --max-size + - RDMA/hns: Fix refcount leak in hns_roce_mmap + - mei: pxp: Use correct macros to initialize uuid_le + - misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() + - driver core: location: Free struct acpi_pld_info *pld before return false + - PCI: mt7621: Delay phy ports initialization + - driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links + - mtd: mtdpart: Don't create platform device that'll never probe + - usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev + - PCI: Fix dropping valid root bus resources with .end = zero + - dmaengine: ptdma: check for null desc before calling pt_cmd_callback + - RDMA/rxe: Fix missing memory barriers in rxe_queue.h + - media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in + imx7_csi_init() + - media: camss: csiphy-3ph: avoid undefined behavior + - media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers + - rpmsg: glink: Release driver_override + - block: clear bio->bi_bdev when putting a bio back in the cache + - block: be a bit more careful in checking for NULL bdev while polling + - ipmi: ipmb: Fix the MODULE_PARM_DESC associated to 'retry_time_ms' + - io_uring: Replace 0-length array with flexible array + - io_uring: fix fget leak when fs don't support nowait buffered read + - scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization + - scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info() + - scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi + - ksmbd: fix possible memory leak in smb2_lock() + - f2fs: fix kernel crash due to null io->bio + - KVM: VMX: Fix crash due to uninitialized current_vmcs + - KVM: x86: Purge "highest ISR" cache when updating APICv state + - KVM: x86: Don't inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled + - KVM: x86: Don't inhibit APICv/AVIC if xAPIC ID mismatch is due to 32-bit ID + - KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target + - virt/sev-guest: Return -EIO if certificate buffer is not large enough + - ima: fix error handling logic when file measurement failed + - irqdomain: Refactor __irq_domain_alloc_irqs() + - irqdomain: Fix mapping-creation race + - mm/damon/paddr: fix missing folio_put() + - cxl/pmem: Fix nvdimm registration races + - cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies + - hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation + - hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() + - ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node + - [Config] updateconfigs for HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON + - arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP + - panic: fix the panic_print NMI backtrace setting + - kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list + - scsi: aacraid: Allocate cmd_priv with scsicmd + - riscv: Avoid enabling interrupts in die() + - PCI: Unify delay handling for reset and resume + - bus: mhi: ep: Only send -ENOTCONN status if client driver is available + - bus: mhi: ep: Move chan->lock to the start of processing queued ch ring + - bus: mhi: ep: Save channel state locally during suspend and resume + - iommu/vt-d: Fix PASID directory pointer coherency + - vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR + - drm/i915: Don't use stolen memory for ring buffers with LLC + - drm/i915: Don't use BAR mappings for ring buffers with LLC + * CVE-2022-4269 + - act_mirred: use the backlog for nested calls to mirred ingress + - net/sched: act_mirred: better wording on protection against excessive stack + growth + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * CVE-2023-1859 + - 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race + condition + * CVE-2023-1670 + - xirc2ps_cs: Fix use after free bug in xirc2ps_detach + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + [ Ubuntu: 5.19.0-43.44~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-43.44~22.04.1 -proposed tracker (LP: #2019605) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + * kinetic/linux: 5.19.0-43.44 -proposed tracker (LP: #2019606) + * CVE-2023-32233 + - netfilter: nf_tables: deactivate anonymous set from preparation phase + * CVE-2023-2612 + - SAUCE: shiftfs: prevent lock unbalance in shiftfs_create_object() + * CVE-2023-31436 + - net: sched: sch_qfq: prevent slab-out-of-bounds in qfq_activate_agg + * CVE-2023-1380 + - wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() + * CVE-2023-30456 + - KVM: nVMX: add missing consistency checks for CR0 and CR4 + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + -- Ian May Thu, 01 Jun 2023 23:36:14 -0500 + +linux-nvidia-5.19 (5.19.0-1010.10) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1010.10 -proposed tracker (LP: #2017596) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/master) + + * CVE-2023-1829 + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + + * GDS: Add NFS patches to optimized kernel (LP: #1982519) + - NFS: Patch NFS driver to support GDS + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_TDX_GUEST_DRVER=m + - [Config] Matching configs with annotations: + + * Miscellaneous upstream changes + - NVIDIA: debian/dkms-versions -- add nvidia-fs to the list of dkms packages + built with the kernel + + [ Ubuntu: 5.19.0-42.43~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-42.43~22.04.1 -proposed tracker (LP: #2016502) + * kinetic/linux: 5.19.0-42.43 -proposed tracker (LP: #2016503) + * selftest: fib_tests: Always cleanup before exit (LP: #2015956) + - selftest: fib_tests: Always cleanup before exit + * Debian autoreconstruct Fix restoration of execute permissions (LP: #2015498) + - [Debian] autoreconstruct - fix restoration of execute permissions + * Kinetic update: upstream stable patchset 2023-04-10 (LP: #2015812) + - drm/etnaviv: don't truncate physical page address + - wifi: rtl8xxxu: gen2: Turn on the rate control + - drm/edid: Fix minimum bpc supported with DSC1.2 for HDMI sink + - clk: mxl: Switch from direct readl/writel based IO to regmap based IO + - clk: mxl: Remove redundant spinlocks + - clk: mxl: Add option to override gate clks + - clk: mxl: Fix a clk entry by adding relevant flags + - powerpc: dts: t208x: Mark MAC1 and MAC2 as 10G + - clk: mxl: syscon_node_to_regmap() returns error pointers + - random: always mix cycle counter in add_latent_entropy() + - KVM: x86: Fail emulation during EMULTYPE_SKIP on any exception + - KVM: SVM: Skip WRMSR fastpath on VM-Exit if next RIP isn't valid + - can: kvaser_usb: hydra: help gcc-13 to figure out cmd_len + - powerpc: dts: t208x: Disable 10G on MAC1 and MAC2 + - powerpc/vmlinux.lds: Ensure STRICT_ALIGN_SIZE is at least page aligned + - powerpc/64s/radix: Fix RWX mapping with relocated kernel + - uaccess: Add speculation barrier to copy_from_user() + - wifi: mwifiex: Add missing compatible string for SD8787 + - audit: update the mailing list in MAINTAINERS + - ext4: Fix function prototype mismatch for ext4_feat_ktype + - Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo + child qdiscs" + - bpf: add missing header file include + - wifi: ath11k: fix warning in dma_free_coherent() of memory chunks while + recovery + - sched/psi: Stop relying on timer_pending() for poll_work rescheduling + - docs: perf: Fix PMU instance name of hisi-pcie-pmu + - randstruct: disable Clang 15 support + - ionic: refactor use of ionic_rx_fill() + - Fix XFRM-I support for nested ESP tunnels + - arm64: dts: rockchip: drop unused LED mode property from rk3328-roc-cc + - ARM: dts: rockchip: add power-domains property to dp node on rk3288 + - HID: elecom: add support for TrackBall 056E:011C + - ACPI: NFIT: fix a potential deadlock during NFIT teardown + - btrfs: send: limit number of clones and allocated memory size + - ASoC: rt715-sdca: fix clock stop prepare timeout issue + - IB/hfi1: Assign npages earlier + - neigh: make sure used and confirmed times are valid + - HID: core: Fix deadloop in hid_apply_multiplier. + - x86/cpu: Add Lunar Lake M + - bpf: bpf_fib_lookup should not return neigh in NUD_FAILED state + - net: Remove WARN_ON_ONCE(sk->sk_forward_alloc) from sk_stream_kill_queues(). + - vc_screen: don't clobber return value in vcs_read + - scripts/tags.sh: fix incompatibility with PCRE2 + - usb: dwc3: pci: add support for the Intel Meteor Lake-M + - USB: serial: option: add support for VW/Skoda "Carstick LTE" + - usb: gadget: u_serial: Add null pointer check in gserial_resume + - USB: core: Don't hold device lock while reading the "descriptors" sysfs file + * Kinetic update: upstream stable patchset 2023-04-06 (LP: #2015511) + - ARM: dts: imx: Fix pca9547 i2c-mux node name + - ARM: dts: vf610: Fix pca9548 i2c-mux node names + - arm64: dts: freescale: Fix pca954x i2c-mux node names + - arm64: dts: imx8mq-thor96: fix no-mmc property for SDHCI + - firmware: arm_scmi: Clear stale xfer->hdr.status + - bpf: Skip task with pid=1 in send_signal_common() + - erofs/zmap.c: Fix incorrect offset calculation + - blk-cgroup: fix missing pd_online_fn() while activating policy + - HID: playstation: sanity check DualSense calibration data. + - dmaengine: imx-sdma: Fix a possible memory leak in sdma_transfer_init + - cifs: fix return of uninitialized rc in dfs_cache_update_tgthint() + - extcon: usbc-tusb320: fix kernel-doc warning + - net: fix NULL pointer in skb_segment_list + - net: mctp: purge receive queues on sk destruction + - firewire: fix memory leak for payload of request subaction to IEC 61883-1 + FCP region + - bus: sunxi-rsb: Fix error handling in sunxi_rsb_init() + - ASoC: Intel: bytcht_es8316: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5651: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_rt5640: Drop reference count of ACPI device after use + - ASoC: Intel: bytcr_wm5102: Drop reference count of ACPI device after use + - bpf: Fix a possible task gone issue with bpf_send_signal[_thread]() helpers + - ALSA: hda/via: Avoid potential array out-of-bound in add_secret_dac_path() + - bpf: Fix to preserve reg parent/live fields when copying range info + - bpf, sockmap: Check for any of tcp_bpf_prots when cloning a listener + - arm64: dts: imx8mm: Fix pad control for UART1_DTE_RX + - drm/vc4: hdmi: make CEC adapter name unique + - scsi: Revert "scsi: core: map PQ=1, PDT=other values to + SCSI_SCAN_TARGET_PRESENT" + - vhost/net: Clear the pending messages when the backend is removed + - WRITE is "data source", not destination... + - READ is "data destination", not source... + - fix iov_iter_bvec() "direction" argument + - fix "direction" argument of iov_iter_kvec() + - ice: Prevent set_channel from changing queues while RDMA active + - qede: execute xdp_do_flush() before napi_complete_done() + - virtio-net: execute xdp_do_flush() before napi_complete_done() + - dpaa_eth: execute xdp_do_flush() before napi_complete_done() + - dpaa2-eth: execute xdp_do_flush() before napi_complete_done() + - sfc: correctly advertise tunneled IPv6 segmentation + - net: phy: dp83822: Fix null pointer access on DP83825/DP83826 devices + - block, bfq: replace 0/1 with false/true in bic apis + - block, bfq: fix uaf for bfqq in bic_set_bfqq() + - netrom: Fix use-after-free caused by accept on already connected socket + - drm/i915/guc: Fix locking when searching for a hung request + - drm/i915/adlp: Fix typo for reference clock + - netfilter: br_netfilter: disable sabotage_in hook after first suppression + - squashfs: harden sanity check in squashfs_read_xattr_id_table + - net: phy: meson-gxl: Add generic dummy stubs for MMD register access + - ip/ip6_gre: Fix changing addr gen mode not generating IPv6 link local + address + - ip/ip6_gre: Fix non-point-to-point tunnel not generating IPv6 link local + address + - riscv: kprobe: Fixup kernel panic when probing an illegal position + - igc: return an error if the mac type is unknown in + igc_ptp_systim_to_hwtstamp() + - can: j1939: fix errant WARN_ON_ONCE in j1939_session_deactivate + - ata: libata: Fix sata_down_spd_limit() when no link speed is reported + - selftests: net: udpgso_bench_rx: Fix 'used uninitialized' compiler warning + - selftests: net: udpgso_bench_rx/tx: Stop when wrong CLI args are provided + - selftests: net: udpgso_bench_tx: Cater for pending datagrams zerocopy + benchmarking + - virtio-net: Keep stop() to follow mirror sequence of open() + - net: openvswitch: fix flow memory leak in ovs_flow_cmd_new + - efi: fix potential NULL deref in efi_mem_reserve_persistent + - i2c: designware-pci: Add new PCI IDs for AMD NAVI GPU + - i2c: mxs: suppress probe-deferral error message + - scsi: target: core: Fix warning on RT kernels + - perf/x86/intel: Add Emerald Rapids + - scsi: iscsi_tcp: Fix UAF during logout when accessing the shost ipaddress + - scsi: iscsi_tcp: Fix UAF during login when accessing the shost ipaddress + - i2c: rk3x: fix a bunch of kernel-doc warnings + - platform/x86: gigabyte-wmi: add support for B450M DS3H WIFI-CF + - net/x25: Fix to not accept on connected socket + - drm/amd/display: Fix timing not changning when freesync video is enabled + - iio: adc: stm32-dfsdm: fill module aliases + - usb: dwc3: qcom: enable vbus override when in OTG dr-mode + - usb: gadget: f_fs: Fix unbalanced spinlock in __ffs_ep0_queue_wait + - vc_screen: move load of struct vc_data pointer in vcs_read() to avoid UAF + - fbcon: Check font dimension limits + - net: qrtr: free memory on error path in radix_tree_insert() + - watchdog: diag288_wdt: do not use stack buffers for hardware data + - watchdog: diag288_wdt: fix __diag288() inline assembly + - ALSA: hda/realtek: Add Acer Predator PH315-54 + - efi: Accept version 2 of memory attributes table + - iio: hid: fix the retval in accel_3d_capture_sample + - iio: hid: fix the retval in gyro_3d_capture_sample + - iio: adc: berlin2-adc: Add missing of_node_put() in error path + - iio:adc:twl6030: Enable measurements of VUSB, VBAT and others + - iio: imu: fxos8700: fix ACCEL measurement range selection + - iio: imu: fxos8700: fix incomplete ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix IMU data bits returned to user space + - iio: imu: fxos8700: fix map label of channel type to MAGN sensor + - iio: imu: fxos8700: fix swapped ACCEL and MAGN channels readback + - iio: imu: fxos8700: fix incorrect ODR mode readback + - iio: imu: fxos8700: fix failed initialization ODR mode assignment + - iio: imu: fxos8700: remove definition FXOS8700_CTRL_ODR_MIN + - iio: imu: fxos8700: fix MAGN sensor scale and unit + - nvmem: qcom-spmi-sdam: fix module autoloading + - parisc: Fix return code of pdc_iodc_print() + - parisc: Wire up PTRACE_GETREGS/PTRACE_SETREGS for compat case + - riscv: disable generation of unwind tables + - mm: hugetlb: proc: check for hugetlb shared PMD in /proc/PID/smaps + - usb: gadget: f_uac2: Fix incorrect increment of bNumEndpoints + - kernel/irq/irqdomain.c: fix memory leak with using debugfs_lookup() + - x86/debug: Fix stack recursion caused by wrongly ordered DR7 accesses + - fpga: stratix10-soc: Fix return value check in s10_ops_write_init() + - mm/swapfile: add cond_resched() in get_swap_pages() + - highmem: round down the address passed to kunmap_flush_on_unmap() + - Squashfs: fix handling and sanity checking of xattr_ids count + - drm/i915: Fix potential bit_17 double-free + - nvmem: core: initialise nvmem->id early + - nvmem: core: remove nvmem_config wp_gpio + - nvmem: core: fix cell removal on error + - serial: 8250_dma: Fix DMA Rx completion race + - serial: 8250_dma: Fix DMA Rx rearm race + - phy: qcom-qmp-combo: fix memleak on probe deferral + - phy: qcom-qmp-usb: fix memleak on probe deferral + - phy: qcom-qmp-combo: fix broken power on + - phy: qcom-qmp-combo: fix runtime suspend + - iio:adc:twl6030: Enable measurement of VAC + - powerpc/imc-pmu: Revert nest_init_lock to being a mutex + - fs/ntfs3: Validate attribute data and valid sizes + - ovl: Use "buf" flexible array for memcpy() destination + - fbdev: smscufx: fix error handling code in ufx_usb_probe + - f2fs: fix to do sanity check on i_extra_isize in is_alive() + - wifi: brcmfmac: Check the count value of channel spec to prevent out-of- + bounds reads + - gfs2: Cosmetic gfs2_dinode_{in,out} cleanup + - gfs2: Always check inode size of inline inodes + - bpf: Skip invalid kfunc call in backtrack_insn + - ASoC: Intel: sof_es8336: Drop reference count of ACPI device after use + - ASoC: Intel: avs: Implement PCI shutdown + - bpf: Add missing btf_put to register_btf_id_dtor_kfuncs + - arm64: dts: imx8mm-verdin: Do not power down eth-phy + - vhost-scsi: unbreak any layout for response + - skb: Do mix page pool and page referenced frags in GRO + - net: wwan: t7xx: Fix Runtime PM initialization + - fscache: Use wait_on_bit() to wait for the freeing of relinquished volume + - drm/i915: Fix request ref counting during error capture & debugfs dump + - drm/i915: Fix up locking around dumping requests lists + - ALSA: firewire-motu: fix unreleased lock warning in hwdep device + - sctp: do not check hb_timer.expires when resetting hb_timer + - can: mcp251xfd: mcp251xfd_ring_set_ringparam(): assign missing + tx_obj_num_coalesce_irq + - rtc: sunplus: fix format string for printing resource + - certs: Fix build error when PKCS#11 URI contains semicolon + - hv_netvsc: Fix missed pagebuf entries in netvsc_dma_map/unmap() + - ARM: dts: imx7d-smegw01: Fix USB host over-current polarity + - can: isotp: split tx timer into transmission and timeout + - can: isotp: handle wait_event_interruptible() return values + - iio: adc: xilinx-ams: fix devm_krealloc() return value check + - iio: imx8qxp-adc: fix irq flood when call imx8qxp_adc_read_raw() + - nvmem: brcm_nvram: Add check for kzalloc + - nvmem: sunxi_sid: Always use 32-bit MMIO reads + - Revert "mm: kmemleak: alloc gray object for reserved region with direct map" + - mm: memcg: fix NULL pointer in mem_cgroup_track_foreign_dirty_slowpath() + - usb: typec: ucsi: Don't attempt to resume the ports before they exist + - usb: gadget: udc: do not clear gadget driver.bus + - mm/uffd: fix pte marker when fork() without fork event + - migrate: hugetlb: check for hugetlb shared PMD in node migration + - drm/i915: Avoid potential vm use-after-free + - nvmem: core: fix device node refcounting + - powerpc/64s/radix: Fix crash with unaligned relocated kernel + - powerpc/64s: Fix local irq disable when PMIs are disabled + - btrfs: limit device extents to the device size + - btrfs: zlib: zero-initialize zlib workspace + - ALSA: hda/realtek: Add Positivo N14KP6-TG + - ALSA: emux: Avoid potential array out-of-bound in snd_emux_xg_control() + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book2 Pro 360 + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Elitebook, 645 G9 + - tracing: Fix poll() and select() do not work on per_cpu trace_pipe and + trace_pipe_raw + - of/address: Return an error when no valid dma-ranges are found + - can: j1939: do not wait 250 ms if the same addr was already claimed + - xfrm: compat: change expression for switch in xfrm_xlate64 + - IB/hfi1: Restore allocated resources on failed copyout + - xfrm/compat: prevent potential spectre v1 gadget in xfrm_xlate32_attr() + - IB/IPoIB: Fix legacy IPoIB due to wrong number of queues + - RDMA/irdma: Fix potential NULL-ptr-dereference + - RDMA/usnic: use iommu_map_atomic() under spin_lock() + - xfrm: fix bug with DSCP copy to v6 from v4 tunnel + - net: phylink: move phy_device_free() to correctly release phy device + - bonding: fix error checking in bond_debug_reregister() + - net: phy: meson-gxl: use MMD access dummy stubs for GXL, internal PHY + - ionic: clean interrupt before enabling queue to avoid credit race + - uapi: add missing ip/ipv6 header dependencies for linux/stddef.h + - ice: Do not use WQ_MEM_RECLAIM flag for workqueue + - net: dsa: mt7530: don't change PVC_EG_TAG when CPU port becomes VLAN-aware + - net: mscc: ocelot: fix VCAP filters not matching on MAC with "protocol + 802.1Q" + - net/mlx5e: Update rx ring hw mtu upon each rx-fcs flag change + - net/mlx5: Bridge, fix ageing of peer FDB entries + - net/mlx5e: IPoIB, Show unknown speed instead of error + - net/mlx5: fw_tracer, Clear load bit when freeing string DBs buffers + - net/mlx5: fw_tracer, Zero consumer index when reloading the tracer + - net/mlx5: Serialize module cleanup with reload and remove + - igc: Add ndo_tx_timeout support + - rds: rds_rm_zerocopy_callback() use list_first_entry() + - selftests: forwarding: lib: quote the sysctl values + - ALSA: pci: lx6464es: fix a debug loop + - riscv: stacktrace: Fix missing the first frame + - ASoC: topology: Return -ENOMEM on memory allocation failure + - pinctrl: mediatek: Fix the drive register definition of some Pins + - pinctrl: aspeed: Fix confusing types in return value + - pinctrl: single: fix potential NULL dereference + - spi: dw: Fix wrong FIFO level setting for long xfers + - pinctrl: intel: Restore the pins that used to be in Direct IRQ mode + - cifs: Fix use-after-free in rdata->read_into_pages() + - net: USB: Fix wrong-direction WARNING in plusb.c + - mptcp: be careful on subflow status propagation on errors + - btrfs: free device in btrfs_close_devices for a single device filesystem + - usb: core: add quirk for Alcor Link AK9563 smartcard reader + - usb: typec: altmodes/displayport: Fix probe pin assign check + - clk: ingenic: jz4760: Update M/N/OD calculation algorithm + - ceph: flush cap releases when the session is flushed + - riscv: Fixup race condition on PG_dcache_clean in flush_icache_pte + - powerpc/64s/interrupt: Fix interrupt exit race with security mitigation + switch + - rtmutex: Ensure that the top waiter is always woken up + - arm64: dts: meson-gx: Make mmc host controller interrupts level-sensitive + - arm64: dts: meson-g12-common: Make mmc host controller interrupts level- + sensitive + - arm64: dts: meson-axg: Make mmc host controller interrupts level-sensitive + - Fix page corruption caused by racy check in __free_pages + - drm/amdgpu/fence: Fix oops due to non-matching drm_sched init/fini + - drm/i915: Initialize the obj flags for shmem objects + - drm/i915: Fix VBT DSI DVO port handling + - x86/speculation: Identify processors vulnerable to SMT RSB predictions + - KVM: x86: Mitigate the cross-thread return address predictions bug + - Documentation/hw-vuln: Add documentation for Cross-Thread Return Predictions + - hv_netvsc: Allocate memory in netvsc_dma_map() with GFP_ATOMIC + - xfrm: annotate data-race around use_time + - of: Make OF framebuffer device names unique + - cpufreq: qcom-hw: Fix cpufreq_driver->get() for non-LMH systems + - net: microchip: sparx5: fix PTP init/deinit not checking all ports + - drm/virtio: exbuf->fence_fd unmodified on interrupted wait + - ice: Fix disabling Rx VLAN filtering with port VLAN enabled + - ice: switch: fix potential memleak in ice_add_adv_recipe() + - net/mlx5e: Fix crash unsetting rx-vlan-filter in switchdev mode + - txhash: fix sk->sk_txrehash default + - selftests: Fix failing VXLAN VNI filtering test + - arm64: dts: rockchip: fix input enable pinconf on rk3399 + - arm64: dts: rockchip: set sdmmc0 speed to sd-uhs-sdr50 on rock-3a + - ASoC: tas5805m: rework to avoid scheduling while atomic. + - ASoC: tas5805m: add missing page switch. + - ASoC: fsl_sai: fix getting version from VERID + - mptcp: do not wait for bare sockets' timeout + - selftests: mptcp: allow more slack for slow test-case + - selftests: mptcp: stop tests earlier + - riscv: kprobe: Fixup misaligned load text + - tracing: Fix TASK_COMM_LEN in trace event format file + - drm/i915: Move fd_install after last use of fence + - mptcp: fix locking for in-kernel listener creation + - ASoC: Intel: sof_rt5682: always set dpcm_capture for amplifiers + - ASoC: Intel: sof_cs42l42: always set dpcm_capture for amplifiers + - selftests/bpf: Verify copy_register_state() preserves parent/live fields + - ALSA: hda: Do not unset preset when cleaning up codec + - bpf, sockmap: Don't let sock_map_{close,destroy,unhash} call itself + - ASoC: cs42l56: fix DT probe + - tools/virtio: fix the vringh test for virtio ring changes + - net/rose: Fix to not accept on connected socket + - net: stmmac: do not stop RX_CLK in Rx LPI state for qcs404 SoC + - drm/nouveau/devinit/tu102-: wait for GFW_BOOT_PROGRESS == COMPLETED + - net: sched: sch: Bounds check priority + - s390/decompressor: specify __decompress() buf len to avoid overflow + - nvme-fc: fix a missing queue put in nvmet_fc_ls_create_association + - drm/amd/display: Properly handle additional cases where DCN is not supported + - platform/x86: touchscreen_dmi: Add Chuwi Vi8 (CWI501) DMI match + - nvmem: core: add error handling for dev_set_name + - nvmem: core: fix cleanup after dev_set_name() + - nvmem: core: fix registration vs use race + - nvmem: core: fix return value + - aio: fix mremap after fork null-deref + - drm/amd/display: Fail atomic_check early on normalize_zpos error + - tcp: Fix listen() regression in 5.15.88. + - mmc: jz4740: Work around bug on JZ4760(B) + - mmc: sdio: fix possible resource leaks in some error paths + - mmc: mmc_spi: fix error handling in mmc_spi_probe() + - ALSA: hda/conexant: add a new hda codec SN6180 + - ALSA: hda/realtek - fixed wrong gpio assigned + - sched/psi: Fix use-after-free in ep_remove_wait_queue() + - hugetlb: check for undefined shift on 32 bit architectures + - of: reserved_mem: Have kmemleak ignore dynamically allocated reserved mem + - net: Fix unwanted sign extension in netdev_stats_to_stats64() + - revert "squashfs: harden sanity check in squashfs_read_xattr_id_table" + - ixgbe: allow to increase MTU to 3K with XDP enabled + - i40e: add double of VLAN header when computing the max MTU + - net: bgmac: fix BCM5358 support by setting correct flags + - net: ethernet: ti: am65-cpsw: Add RX DMA Channel Teardown Quirk + - sctp: sctp_sock_filter(): avoid list_entry() on possibly empty list + - dccp/tcp: Avoid negative sk_forward_alloc by ipv6_pinfo.pktoptions. + - net/usb: kalmia: Don't pass act_len in usb_bulk_msg error path + - net: openvswitch: fix possible memory leak in ovs_meter_cmd_set() + - net: stmmac: fix order of dwmac5 FlexPPS parametrization sequence + - bnxt_en: Fix mqprio and XDP ring checking logic + - net: stmmac: Restrict warning on disabling DMA store and fwd mode + - ixgbe: add double of VLAN header when computing the max MTU + - ipv6: Fix datagram socket connection with DSCP. + - ipv6: Fix tcp socket connection with DSCP. + - nilfs2: fix underflow in second superblock position calculations + - mm/filemap: fix page end in filemap_get_read_batch + - drm/i915/gen11: Wa_1408615072/Wa_1407596294 should be on GT list + - net/sched: act_ctinfo: use percpu stats + - i40e: Add checking for null for nlmsg_find_attr() + - kvm: initialize all of the kvm_debugregs structure before sending it to + userspace + - alarmtimer: Prevent starvation by small intervals and SIG_IGN + - ASoC: SOF: Intel: hda-dai: fix possible stream_tag leak + - net: sched: sch: Fix off by one in htb_activate_prios() + - platform/x86/amd: pmc: add CONFIG_SERIO dependency + - kasan: fix Oops due to missing calls to kasan_arch_is_ready() + - fbdev: Fix invalid page access after closing deferred I/O devices + - drm/vmwgfx: Stop accessing buffer objects which failed init + - drm/vmwgfx: Do not drop the reference to the handle too soon + - gpio: sim: fix a memory leak + - coredump: Move dump_emit_page() to kill unused warning + - drm/vc4: crtc: Increase setup cost in core clock calculation to handle + extreme reduced blanking + - ice: fix lost multicast packets in promisc mode + - ice: xsk: Fix cleaning of XDP_TX frames + - tracing: Make trace_define_field_ext() static + - net: use a bounce buffer for copying skb->mark + - igb: conditionalize I2C bit banging on external thermal sensor support + - igb: Fix PPS input and output using 3rd and 4th SDP + * cm32181 module error blocking suspend (LP: #1988346) // Kinetic update: + upstream stable patchset 2023-04-06 (LP: #2015511) + - iio: light: cm32181: Fix PM support on system with 2 I2C resources + * kernel: fix __clear_user() inline assembly constraints (LP: #2013088) + - s390/uaccess: add missing earlyclobber annotations to __clear_user() + * expoline.o is packaged unconditionally for s390x (LP: #2013209) + - [Packaging] Copy expoline.o only when produced by the build + * Fix selftests/ftracetests/Meta-selftests (LP: #2006453) + - selftests/ftrace: Fix bash specific "==" operator + * No HDMI audio under 5.19.0-35 & -37 (regression from -32) (LP: #2009136) + - ALSA: memalloc: Try dma_alloc_noncontiguous() at first + - ALSA: memalloc: Drop special handling of GFP for CONTINUOUS allocation + - ALSA: vx: Drop superfluous GFP setup + - ALSA: pdaudiocf: Drop superfluous GFP setup + - ASoC: Intel: sst: Switch to standard device pages + - ALSA: memalloc: Workaround for Xen PV + * Intel E810 NICs driver in causing hangs when booting and bonds configured + (LP: #2004262) + - ice: avoid bonding causing auxiliary plug/unplug under RTNL lock + * Kinetic update: upstream stable patchset 2023-04-04 (LP: #2015288) + - memory: tegra: Remove clients SID override programming + - memory: atmel-sdramc: Fix missing clk_disable_unprepare in + atmel_ramc_probe() + - memory: mvebu-devbus: Fix missing clk_disable_unprepare in + mvebu_devbus_probe() + - dmaengine: ti: k3-udma: Do conditional decrement of + UDMA_CHAN_RT_PEER_BCNT_REG + - arm64: dts: imx8mp-phycore-som: Remove invalid PMIC property + - ARM: dts: imx6ul-pico-dwarf: Use 'clock-frequency' + - ARM: dts: imx7d-pico: Use 'clock-frequency' + - ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts' + - arm64: dts: imx8mm-beacon: Fix ecspi2 pinmux + - ARM: imx: add missing of_node_put() + - HID: intel_ish-hid: Add check for ishtp_dma_tx_map + - arm64: dts: imx8mm-venice-gw7901: fix USB2 controller OC polarity + - soc: imx8m: Fix incorrect check for of_clk_get_by_name() + - reset: uniphier-glue: Fix possible null-ptr-deref + - EDAC/highbank: Fix memory leak in highbank_mc_probe() + - firmware: arm_scmi: Harden shared memory access in fetch_response + - firmware: arm_scmi: Harden shared memory access in fetch_notification + - tomoyo: fix broken dependency on *.conf.default + - RDMA/core: Fix ib block iterator counter overflow + - IB/hfi1: Reject a zero-length user expected buffer + - IB/hfi1: Reserve user expected TIDs + - IB/hfi1: Fix expected receive setup error exit issues + - IB/hfi1: Immediately remove invalid memory from hardware + - IB/hfi1: Remove user expected buffer invalidate race + - affs: initialize fsdata in affs_truncate() + - PM: AVS: qcom-cpr: Fix an error handling path in cpr_probe() + - arm64: dts: qcom: msm8992: Don't use sfpb mutex + - arm64: dts: qcom: msm8992-libra: Fix the memory map + - phy: ti: fix Kconfig warning and operator precedence + - NFSD: fix use-after-free in nfsd4_ssc_setup_dul() + - ARM: dts: at91: sam9x60: fix the ddr clock for sam9x60 + - amd-xgbe: TX Flow Ctrl Registers are h/w ver dependent + - amd-xgbe: Delay AN timeout during KR training + - bpf: Fix pointer-leak due to insufficient speculative store bypass + mitigation + - phy: rockchip-inno-usb2: Fix missing clk_disable_unprepare() in + rockchip_usb2phy_power_on() + - net: nfc: Fix use-after-free in local_cleanup() + - net: wan: Add checks for NULL for utdm in undo_uhdlc_init and unmap_si_regs + - net: enetc: avoid deadlock in enetc_tx_onestep_tstamp() + - sch_htb: Avoid grafting on htb_destroy_class_offload when destroying htb + - gpio: mxc: Protect GPIO irqchip RMW with bgpio spinlock + - gpio: mxc: Always set GPIOs used as interrupt source to INPUT mode + - pinctrl: rockchip: fix reading pull type on rk3568 + - net: stmmac: Fix queue statistics reading + - net/sched: sch_taprio: fix possible use-after-free + - l2tp: Serialize access to sk_user_data with sk_callback_lock + - l2tp: Don't sleep and disable BH under writer-side sk_callback_lock + - l2tp: convert l2tp_tunnel_list to idr + - l2tp: close all race conditions in l2tp_tunnel_register() + - net: usb: sr9700: Handle negative len + - net: mdio: validate parameter addr in mdiobus_get_phy() + - HID: check empty report_list in hid_validate_values() + - HID: check empty report_list in bigben_probe() + - net: stmmac: fix invalid call to mdiobus_get_phy() + - pinctrl: rockchip: fix mux route data for rk3568 + - HID: revert CHERRY_MOUSE_000C quirk + - usb: gadget: f_fs: Prevent race during ffs_ep0_queue_wait + - usb: gadget: f_fs: Ensure ep0req is dequeued before free_request + - Bluetooth: Fix possible deadlock in rfcomm_sk_state_change + - net: ipa: disable ipa interrupt during suspend + - net/mlx5: E-switch, Fix setting of reserved fields on + MODIFY_SCHEDULING_ELEMENT + - net: mlx5: eliminate anonymous module_init & module_exit + - drm/panfrost: fix GENERIC_ATOMIC64 dependency + - dmaengine: Fix double increment of client_count in dma_chan_get() + - net: macb: fix PTP TX timestamp failure due to packet padding + - virtio-net: correctly enable callback during start_xmit + - l2tp: prevent lockdep issue in l2tp_tunnel_register() + - HID: betop: check shape of output reports + - cifs: fix potential deadlock in cache_refresh_path() + - dmaengine: xilinx_dma: call of_node_put() when breaking out of + for_each_child_of_node() + - phy: phy-can-transceiver: Skip warning if no "max-bitrate" + - drm/amd/display: fix issues with driver unload + - nvme-pci: fix timeout request state check + - tcp: avoid the lookup process failing to get sk in ehash table + - ptdma: pt_core_execute_cmd() should use spinlock + - device property: fix of node refcount leak in + fwnode_graph_get_next_endpoint() + - w1: fix deadloop in __w1_remove_master_device() + - w1: fix WARNING after calling w1_process() + - driver core: Fix test_async_probe_init saves device in wrong array + - selftests/net: toeplitz: fix race on tpacket_v3 block close + - net: dsa: microchip: ksz9477: port map correction in ALU table entry + register + - thermal/core: Remove duplicate information when an error occurs + - thermal/core: Rename 'trips' to 'num_trips' + - thermal: Validate new state in cur_state_store() + - thermal/core: fix error code in __thermal_cooling_device_register() + - thermal: core: call put_device() only after device_register() fails + - net: stmmac: enable all safety features by default + - tcp: fix rate_app_limited to default to 1 + - scsi: iscsi: Fix multiple iSCSI session unbind events sent to userspace + - cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist + - kcsan: test: don't put the expect array on the stack + - cpufreq: Add SM6375 to cpufreq-dt-platdev blocklist + - ASoC: fsl_micfil: Correct the number of steps on SX controls + - net: usb: cdc_ether: add support for Thales Cinterion PLS62-W modem + - drm: Add orientation quirk for Lenovo ideapad D330-10IGL + - s390/debug: add _ASM_S390_ prefix to header guard + - s390: expicitly align _edata and _end symbols on page boundary + - perf/x86/msr: Add Emerald Rapids + - perf/x86/intel/uncore: Add Emerald Rapids + - cpufreq: armada-37xx: stop using 0 as NULL pointer + - ASoC: fsl_ssi: Rename AC'97 streams to avoid collisions with AC'97 CODEC + - ASoC: fsl-asoc-card: Fix naming of AC'97 CODEC widgets + - spi: spidev: remove debug messages that access spidev->spi without locking + - KVM: s390: interrupt: use READ_ONCE() before cmpxchg() + - scsi: hisi_sas: Set a port invalid only if there are no devices attached + when refreshing port id + - r8152: add vendor/device ID pair for Microsoft Devkit + - platform/x86: touchscreen_dmi: Add info for the CSL Panther Tab HD + - platform/x86: asus-nb-wmi: Add alternate mapping for KEY_SCREENLOCK + - lockref: stop doing cpu_relax in the cmpxchg loop + - firmware: coreboot: Check size of table entry and use flex-array + - drm/i915: Remove unused variable + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + - panic: Separate sysctl logic from CONFIG_SMP + - exit: Put an upper limit on how often we can oops + - exit: Expose "oops_count" to sysfs + - exit: Allow oops_limit to be disabled + - panic: Consolidate open-coded panic_on_warn checks + - panic: Introduce warn_limit + - panic: Expose "warn_count" to sysfs + - docs: Fix path paste-o for /sys/kernel/warn_count + - exit: Use READ_ONCE() for all oops/warn limit reads + - Bluetooth: hci_sync: cancel cmd_timer if hci_open failed + - drm/amdgpu: complete gfxoff allow signal during suspend without delay + - scsi: hpsa: Fix allocation size for scsi_host_alloc() + - module: Don't wait for GOING modules + - tracing: Make sure trace_printk() can output as soon as it can be used + - trace_events_hist: add check for return value of 'create_hist_field' + - ftrace/scripts: Update the instructions for ftrace-bisect.sh + - cifs: Fix oops due to uncleared server->smbd_conn in reconnect + - i2c: mv64xxx: Remove shutdown method from driver + - i2c: mv64xxx: Add atomic_xfer method to driver + - ksmbd: add max connections parameter + - ksmbd: do not sign response to session request for guest login + - ksmbd: downgrade ndr version error message to debug + - ksmbd: limit pdu length size according to connection status + - KVM: x86/vmx: Do not skip segment attributes if unusable bit is set + - KVM: arm64: GICv4.1: Fix race with doorbell on VPE activation/deactivation + - thermal: intel: int340x: Protect trip temperature from concurrent updates + - ipv6: fix reachability confirmation with proxy_ndp + - ARM: 9280/1: mm: fix warning on phys_addr_t to void pointer assignment + - EDAC/device: Respect any driver-supplied workqueue polling value + - EDAC/qcom: Do not pass llcc_driv_data as edac_device_ctl_info's pvt_info + - net: mana: Fix IRQ name - add PCI and queue number + - scsi: ufs: core: Fix devfreq deadlocks + - i2c: designware: use casting of u64 in clock multiplication to avoid + overflow + - netlink: prevent potential spectre v1 gadgets + - net: fix UaF in netns ops registration error path + - drm/i915/selftest: fix intel_selftest_modify_policy argument types + - netfilter: nft_set_rbtree: Switch to node list walk for overlap detection + - netfilter: nft_set_rbtree: skip elements in transaction from garbage + collection + - netlink: annotate data races around nlk->portid + - netlink: annotate data races around dst_portid and dst_group + - netlink: annotate data races around sk_state + - ipv4: prevent potential spectre v1 gadget in ip_metrics_convert() + - ipv4: prevent potential spectre v1 gadget in fib_metrics_match() + - netfilter: conntrack: fix vtag checks for ABORT/SHUTDOWN_COMPLETE + - netrom: Fix use-after-free of a listening socket. + - net/sched: sch_taprio: do not schedule in taprio_reset() + - sctp: fail if no bound addresses can be used for a given scope + - riscv/kprobe: Fix instruction simulation of JALR + - nvme: fix passthrough csi check + - gpio: mxc: Unlock on error path in mxc_flip_edge() + - net: ravb: Fix lack of register setting after system resumed for Gen3 + - net: ravb: Fix possible hang if RIS2_QFF1 happen + - net: mctp: mark socks as dead on unhash, prevent re-add + - thermal: intel: int340x: Add locking to int340x_thermal_get_trip_type() + - net/tg3: resolve deadlock in tg3_reset_task() during EEH + - net: mdio-mux-meson-g12a: force internal PHY off on mux switch + - treewide: fix up files incorrectly marked executable + - tools: gpio: fix -c option of gpio-event-mon + - Revert "Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI + mode" + - x86/i8259: Mark legacy PIC interrupts with IRQ_LEVEL + - netfilter: conntrack: unify established states for SCTP paths + - perf/x86/amd: fix potential integer overflow on shift of a int + - dmaengine: qcom: gpi: Set link_rx bit on GO TRE for rx operation + - soc: imx: imx8mp-blk-ctrl: enable global pixclk with HDMI_TX_PHY PD + - arm64: dts: verdin-imx8mm: fix dahlia audio playback + - arm64: dts: verdin-imx8mm: fix dev board audio playback + - soc: imx: imx8mp-blk-ctrl: don't set power device name + - arm64: dts: imx8mp: Fix missing GPC Interrupt + - arm64: dts: imx8mp: Fix power-domain typo + - reset: ti-sci: honor TI_SCI_PROTOCOL setting when not COMPILE_TEST + - firmware: arm_scmi: Fix virtio channels cleanup on shutdown + - interconnect: qcom: msm8996: Provide UFS clocks to A2NoC + - interconnect: qcom: msm8996: Fix regmap max_register values + - RDMA/rxe: Fix inaccurate constants in rxe_type_info + - RDMA/rxe: Prevent faulty rkey generation + - drm/msm/gpu: Fix potential double-free + - bpf: hash map, avoid deadlock with suitable hash mask + - net: lan966x: add missing fwnode_handle_put() for ports node + - block/rnbd-clt: fix wrong max ID in ida_alloc_max + - usb: ucsi: Ensure connector delayed work items are flushed + - netfilter: conntrack: handle tcp challenge acks during connection reuse + - net/mlx5e: Avoid false lock dependency warning on tc_ht even more + - net/mlx5e: Set decap action based on attr for sample + - dmaengine: tegra: Fix memory leak in terminate_all() + - net: sched: gred: prevent races when adding offloads to stats + - usb: dwc3: fix extcon dependency + - bnxt: Do not read past the end of test names + - btrfs: zoned: enable metadata over-commit for non-ZNS setup + - vfio/type1: Respect IOMMU reserved regions in vfio_test_domain_fgsp() + - kvm/vfio: Fix potential deadlock on vfio group_lock + - ftrace: Export ftrace_free_filter() to modules + - riscv: fix -Wundef warning for CONFIG_RISCV_BOOT_SPINWAIT + - regulator: dt-bindings: samsung,s2mps14: add lost samsung,ext-control-gpios + - i2c: designware: Fix unbalanced suspended flag + - iavf: schedule watchdog immediately when changing primary MAC + - tracing/osnoise: Use built-in RCU list checking + - gpio: ep93xx: Fix port F hwirq numbers in handler + - net: mctp: add an explicit reference from a mctp_sk_key to sock + - net: mctp: move expiry timer delete to unhash + - net: mctp: hold key reference when looking up a general key + - riscv: Move call to init_cpu_topology() to later initialization stage + - Partially revert "perf/arm-cmn: Optimise DTC counter accesses" + - x86/sev: Add SEV-SNP guest feature negotiation support + - acpi: Fix suspend with Xen PV + * CVE-2023-1075 + - net/tls: tls_is_tx_ready() checked list_entry + * devlink_port_split from ubuntu_kernel_selftests.net fails on hirsute + (KeyError: 'flavour') (LP: #1937133) + - selftests: net: devlink_port_split.py: skip test if no suitable device + available + * Connection timeout due to conntrack limits (LP: #2011616) + - netfilter: conntrack: adopt safer max chain length + * Kinetic update: upstream stable patchset 2023-03-27 (LP: #2012977) + - btrfs: fix trace event name typo for FLUSH_DELAYED_REFS + - pNFS/filelayout: Fix coalescing test for single DS + - tools/virtio: initialize spinlocks in vring_test.c + - virtio_pci: modify ENOENT to EINVAL + - vduse: Validate vq_num in vduse_validate_config() + - net/ethtool/ioctl: return -EOPNOTSUPP if we have no phy stats + - r8169: move rtl_wol_enable_rx() and rtl_prepare_power_down() + - RDMA/srp: Move large values to a new enum for gcc13 + - btrfs: always report error in run_one_delayed_ref() + - x86/asm: Fix an assembler warning with current binutils + - f2fs: let's avoid panic if extent_tree is not created + - perf/x86/rapl: Treat Tigerlake like Icelake + - fbdev: omapfb: avoid stack overflow warning + - Bluetooth: hci_qca: Fix driver shutdown on closed serdev + - wifi: brcmfmac: fix regression for Broadcom PCIe wifi devices + - wifi: mac80211: sdata can be NULL during AMPDU start + - Add exception protection processing for vd in axi_chan_handle_err function + - zonefs: Detect append writes at invalid locations + - nilfs2: fix general protection fault in nilfs_btree_insert() + - efi: fix userspace infinite retry read efivars after EFI runtime services + page fault + - ALSA: hda/realtek: fix mute/micmute LEDs don't work for a HP platform + - hugetlb: unshare some PMDs when splitting VMAs + - io_uring: don't gate task_work run on TIF_NOTIFY_SIGNAL + - eventpoll: add EPOLL_URING_WAKE poll wakeup flag + - eventfd: provide a eventfd_signal_mask() helper + - xhci-pci: set the dma max_seg_size + - usb: xhci: Check endpoint is valid before dereferencing it + - xhci: Fix null pointer dereference when host dies + - xhci: Add update_hub_device override for PCI xHCI hosts + - xhci: Add a flag to disable USB3 lpm on a xhci root port level. + - usb: acpi: add helper to check port lpm capability using acpi _DSM + - xhci: Detect lpm incapable xHC USB3 roothub ports from ACPI tables + - prlimit: do_prlimit needs to have a speculation check + - USB: serial: option: add Quectel EM05-G (GR) modem + - USB: serial: option: add Quectel EM05-G (CS) modem + - USB: serial: option: add Quectel EM05-G (RS) modem + - USB: serial: option: add Quectel EC200U modem + - USB: serial: option: add Quectel EM05CN (SG) modem + - USB: serial: option: add Quectel EM05CN modem + - staging: vchiq_arm: fix enum vchiq_status return types + - USB: misc: iowarrior: fix up header size for USB_DEVICE_ID_CODEMERCS_IOW100 + - misc: fastrpc: Don't remove map on creater_process and device_release + - misc: fastrpc: Fix use-after-free race condition for maps + - usb: core: hub: disable autosuspend for TI TUSB8041 + - comedi: adv_pci1760: Fix PWM instruction handling + - ACPI: PRM: Check whether EFI runtime is available + - mmc: sunxi-mmc: Fix clock refcount imbalance during unbind + - mmc: sdhci-esdhc-imx: correct the tuning start tap and step setting + - btrfs: do not abort transaction on failure to write log tree when syncing + log + - btrfs: fix race between quota rescan and disable leading to NULL pointer + deref + - cifs: do not include page data when checking signature + - thunderbolt: Use correct function to calculate maximum USB3 link rate + - riscv: dts: sifive: fu740: fix size of pcie 32bit memory + - bpf: restore the ebpf program ID for BPF_AUDIT_UNLOAD and + PERF_BPF_EVENT_PROG_UNLOAD + - tty: serial: qcom-geni-serial: fix slab-out-of-bounds on RX FIFO buffer + - tty: fix possible null-ptr-defer in spk_ttyio_release + - USB: serial: cp210x: add SCALANCE LPE-9000 device id + - usb: cdns3: remove fetched trb from cache before dequeuing + - usb: host: ehci-fsl: Fix module alias + - usb: typec: tcpm: Fix altmode re-registration causes sysfs create fail + - usb: typec: altmodes/displayport: Add pin assignment helper + - usb: typec: altmodes/displayport: Fix pin assignment calculation + - usb: gadget: g_webcam: Send color matching descriptor per frame + - usb: gadget: f_ncm: fix potential NULL ptr deref in ncm_bitrate() + - usb-storage: apply IGNORE_UAS only for HIKSEMI MD202 on RTL9210 + - dt-bindings: phy: g12a-usb2-phy: fix compatible string documentation + - dt-bindings: phy: g12a-usb3-pcie-phy: fix compatible string documentation + - serial: pch_uart: Pass correct sg to dma_unmap_sg() + - dmaengine: lgm: Move DT parsing after initialization + - dmaengine: tegra210-adma: fix global intr clear + - dmaengine: idxd: Let probe fail when workqueue cannot be enabled + - serial: amba-pl011: fix high priority character transmission in rs486 mode + - serial: atmel: fix incorrect baudrate setup + - gsmi: fix null-deref in gsmi_get_variable + - mei: me: add meteor lake point M DID + - drm/i915: re-disable RC6p on Sandy Bridge + - drm/i915/display: Check source height is > 0 + - drm/amd/display: Fix set scaling doesn's work + - drm/amd/display: Calculate output_color_space after pixel encoding + adjustment + - drm/amd/display: Fix COLOR_SPACE_YCBCR2020_TYPE matrix + - fs/ntfs3: Fix attr_punch_hole() null pointer derenference + - arm64: efi: Execute runtime services from a dedicated stack + - efi: rt-wrapper: Add missing include + - x86/fpu: Use _Alignof to avoid undefined behavior in TYPE_ALIGN + - net/mlx5: fix missing mutex_unlock in mlx5_fw_fatal_reporter_err_work() + - block: mq-deadline: Rename deadline_is_seq_writes() + - Revert "wifi: mac80211: fix memory leak in ieee80211_if_add()" + - soc: qcom: apr: Make qcom,protection-domain optional again + - mm/khugepaged: fix collapse_pte_mapped_thp() to allow anon_vma + - serial: stm32: Merge hard IRQ and threaded IRQ handling into single IRQ + handler + - misc: fastrpc: Fix use-after-free and race in fastrpc_map_find + - btrfs: fix missing error handling when logging directory items + - thunderbolt: Disable XDomain lane 1 only in software connection manager + - thunderbolt: Do not report errors if on-board retimers are found + - thunderbolt: Do not call PM runtime functions in tb_retimer_scan() + - mptcp: explicitly specify sock family at subflow creation time + - mptcp: netlink: respect v4/v6-only sockets + - usb: musb: fix error return code in omap2430_probe() + - USB: gadget: Add ID numbers to configfs-gadget driver names + - arm64: dts: imx8mp: correct usb clocks + - dmaengine: idxd: Prevent use after free on completion memory + - dmaengine: idxd: Do not call DMX TX callbacks during workqueue disable + - mei: bus: fix unlink on bus in error path + - VMCI: Use threaded irqs instead of tasklets + - ARM: omap1: fix !ARCH_OMAP1_ANY link failures + - drm/amdgpu: Correct the power calcultion for Renior/Cezanne. + - drm/i915: Allow switching away via vga-switcheroo if uninitialized + - octeontx2-pf: Avoid use of GFP_KERNEL in atomic context + - octeontx2-pf: Fix the use of GFP_KERNEL in atomic context on rt + * Kinetic update: upstream stable patchset 2023-03-21 (LP: #2012438) + - ALSA: control-led: use strscpy in set_led_id() + - ALSA: hda/realtek - Turn on power early + - ALSA: hda/realtek: Enable mute/micmute LEDs on HP Spectre x360 13-aw0xxx + - KVM: arm64: Fix S1PTW handling on RO memslots + - KVM: arm64: nvhe: Fix build with profile optimization + - selftests: kvm: Fix a compile error in selftests/kvm/rseq_test.c + - efi: tpm: Avoid READ_ONCE() for accessing the event log + - docs: Fix the docs build with Sphinx 6.0 + - net: stmmac: add aux timestamps fifo clearance wait + - perf auxtrace: Fix address filter duplicate symbol selection + - s390/kexec: fix ipl report address for kdump + - ASoC: qcom: lpass-cpu: Fix fallback SD line index handling + - s390/cpum_sf: add READ_ONCE() semantics to compare and swap loops + - s390/percpu: add READ_ONCE() to arch_this_cpu_to_op_simple() + - drm/virtio: Fix GEM handle creation UAF + - drm/i915/gt: Reset twice + - cifs: Fix uninitialized memory read for smb311 posix symlink create + - platform/x86: dell-privacy: Only register SW_CAMERA_LENS_COVER if present + - platform/surface: aggregator: Ignore command messages not intended for us + - platform/x86: dell-privacy: Fix SW_CAMERA_LENS_COVER reporting + - dt-bindings: msm: dsi-controller-main: Fix operating-points-v2 constraint + - drm/msm/adreno: Make adreno quirks not overwrite each other + - dt-bindings: msm: dsi-controller-main: Fix power-domain constraint + - dt-bindings: msm: dsi-controller-main: Fix description of core clock + - dt-bindings: msm: dsi-phy-28nm: Add missing qcom, dsi-phy-regulator-ldo-mode + - platform/x86: ideapad-laptop: Add Legion 5 15ARH05 DMI id to + set_fn_lock_led_list[] + - drm/msm/dp: do not complete dp_aux_cmd_fifo_tx() if irq is not for aux + transfer + - dt-bindings: msm/dsi: Don't require vdds-supply on 10nm PHY + - dt-bindings: msm/dsi: Don't require vcca-supply on 14nm PHY + - platform/x86: sony-laptop: Don't turn off 0x153 keyboard backlight during + probe + - ixgbe: fix pci device refcount leak + - ipv6: raw: Deduct extension header length in rawv6_push_pending_frames + - usb: ulpi: defer ulpi_register on ulpi_read_id timeout + - iommu/iova: Fix alloc iova overflows issue + - iommu/mediatek-v1: Fix an error handling path in mtk_iommu_v1_probe() + - sched/core: Fix use-after-free bug in dup_user_cpus_ptr() + - netfilter: ipset: Fix overflow before widen in the bitmap_ip_create() + function. + - powerpc/imc-pmu: Fix use of mutex in IRQs disabled section + - x86/boot: Avoid using Intel mnemonics in AT&T syntax asm + - EDAC/device: Fix period calculation in edac_device_reset_delay_period() + - x86/resctrl: Fix task CLOSID/RMID update race + - regulator: da9211: Use irq handler when ready + - scsi: mpi3mr: Refer CONFIG_SCSI_MPI3MR in Makefile + - scsi: ufs: core: WLUN suspend SSU/enter hibern8 fail recovery + - ASoC: wm8904: fix wrong outputs volume after power reactivation + - ALSA: usb-audio: Make sure to stop endpoints before closing EPs + - ALSA: usb-audio: Relax hw constraints for implicit fb sync + - tipc: fix unexpected link reset due to discovery messages + - octeontx2-af: Fix LMAC config in cgx_lmac_rx_tx_enable + - hvc/xen: lock console list traversal + - nfc: pn533: Wait for out_urb's completion in pn533_usb_send_frame() + - af_unix: selftest: Fix the size of the parameter to connect() + - tools/nolibc: restore mips branch ordering in the _start block + - tools/nolibc: fix the O_* fcntl/open macro definitions for riscv + - net/sched: act_mpls: Fix warning during failed attribute validation + - net/mlx5: Fix ptp max frequency adjustment range + - net/mlx5e: Don't support encap rules with gbp option + - perf build: Properly guard libbpf includes + - igc: Fix PPS delta between two synchronized end-points + - platform/surface: aggregator: Add missing call to ssam_request_sync_free() + - KVM: x86: Do not return host topology information from + KVM_GET_SUPPORTED_CPUID + - arm64: atomics: remove LL/SC trampolines + - arm64: cmpxchg_double*: hazard against entire exchange variable + - efi: fix NULL-deref in init error path + - io_uring/io-wq: free worker if task_work creation is canceled + - io_uring/io-wq: only free worker if it was allocated for creation + - Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" + - pinctrl: amd: Add dynamic debugging for active GPIOs + - arm64: mte: Fix double-freeing of the temporary tag storage during coredump + - elfcore: Add a cprm parameter to elf_core_extra_{phdrs,data_size} + - cpufreq: amd-pstate: fix kernel hang issue while amd-pstate unregistering + - drm/i915: Reserve enough fence slot for i915_vma_unbind_async + - drm/i915: Fix potential context UAFs + - cifs: do not query ifaces on smb1 mounts + - ASoC: rt9120: Make dev PM runtime bind AsoC component PM + - platform/x86: int3472/discrete: Ensure the clk/power enable pins are in + output mode + - platform/x86: asus-wmi: Don't load fan curves without fan + - drm/msm: another fix for the headless Adreno GPU + - arm64/signal: Always allocate SVE signal frames on SME only systems + - arm64/signal: Always accept SVE signal frames on SME only systems + - arm64/mm: add pud_user_exec() check in pud_user_accessible_page() + - arm64: ptrace: Use ARM64_SME to guard the SME register enumerations + - arm64/mm: fix incorrect file_map_count for invalid pmd + - iavf/iavf_main: actually log ->src mask when talking about it + - x86/pat: Fix pat_x_mtrr_type() for MTRR disabled case + - scsi: storvsc: Fix swiotlb bounce buffer leak in confidential VM + - ASoC: Intel: fix sof-nau8825 link failure + - drm/msm/dpu: Fix some kernel-doc comments + - drm/msm/dpu: Fix memory leak in msm_mdss_parse_data_bus_icc_path + - mtd: cfi: allow building spi-intel standalone + - stmmac: dwmac-mediatek: remove the dwmac_fix_mac_speed + - sched/core: Fix arch_scale_freq_tick() on tickless systems + - net/mlx5: check attr pointer validity before dereferencing it + - net/mlx5e: TC, Keep mod hdr actions after mod hdr alloc + - net/mlx5: Fix command stats access after free + - net/mlx5e: Verify dev is present for fix features ndo + - net/mlx5e: IPoIB, Block queue count configuration when sub interfaces are + present + - net/mlx5e: IPoIB, Block PKEY interfaces with less rx queues than parent + - net/mlx5e: IPoIB, Fix child PKEY interface stats on rx path + - octeontx2-pf: Fix resource leakage in VF driver unbind + - net: lan966x: check for ptp to be enabled in lan966x_ptp_deinit() + - net: hns3: fix wrong use of rss size during VF rss config + - bnxt: make sure we return pages to the pool + - platform/x86/amd: Fix refcount leak in amd_pmc_probe + * Kinetic update: upstream stable patchset 2023-03-20 (LP: #2012307) + - parisc: Align parisc MADV_XXX constants with all other architectures + - x86/fpu: Take task_struct* in copy_sigframe_from_user_to_xstate() + - x86/fpu: Add a pkru argument to copy_uabi_from_kernel_to_xstate(). + - x86/fpu: Add a pkru argument to copy_uabi_to_xstate() + - x86/fpu: Allow PKRU to be (once again) written by ptrace. + - x86/fpu: Emulate XRSTOR's behavior if the xfeatures PKRU bit is not set + - selftests/vm/pkeys: Add a regression test for setting PKRU through ptrace + - serial: fixup backport of "serial: Deassert Transmit Enable on probe in + driver-specific way" + - ALSA: hda/hdmi: Add a HP device 0x8715 to force connect list + - ALSA: hda - Enable headset mic on another Dell laptop with ALC3254 + - Revert "SUNRPC: Use RMW bitops in single-threaded hot paths" + - ALSA: hda: cs35l41: Check runtime suspend capability at runtime_idle + * Kinetic update: upstream stable patchset 2023-03-06 (LP: #2009546) + - usb: dwc3: qcom: Fix memory leak in dwc3_qcom_interconnect_init + - cifs: fix oops during encryption + - nvme-pci: fix doorbell buffer value endianness + - nvme-pci: fix mempool alloc size + - nvme-pci: fix page size checks + - ACPI: resource: do IRQ override on LENOVO IdeaPad + - ACPI: resource: do IRQ override on XMG Core 15 + - ACPI: resource: do IRQ override on Lenovo 14ALC7 + - block, bfq: fix uaf for bfqq in bfq_exit_icq_bfqq + - ata: ahci: Fix PCS quirk application for suspend + - nvme: fix the NVME_CMD_EFFECTS_CSE_MASK definition + - nvmet: don't defer passthrough commands with trivial effects to the + workqueue + - fs/ntfs3: Validate BOOT record_size + - fs/ntfs3: Add overflow check for attribute size + - fs/ntfs3: Validate data run offset + - fs/ntfs3: Add null pointer check to attr_load_runs_vcn + - fs/ntfs3: Fix memory leak on ntfs_fill_super() error path + - fs/ntfs3: Add null pointer check for inode operations + - fs/ntfs3: Validate attribute name offset + - fs/ntfs3: Validate buffer length while parsing index + - fs/ntfs3: Validate resident attribute name + - fs/ntfs3: Fix slab-out-of-bounds read in run_unpack + - soundwire: dmi-quirks: add quirk variant for LAPBC710 NUC15 + - fs/ntfs3: Validate index root when initialize NTFS security + - fs/ntfs3: Use __GFP_NOWARN allocation at wnd_init() + - fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_fill_super() + - fs/ntfs3: Delete duplicate condition in ntfs_read_mft() + - fs/ntfs3: Fix slab-out-of-bounds in r_page + - objtool: Fix SEGFAULT + - powerpc/rtas: avoid device tree lookups in rtas_os_term() + - powerpc/rtas: avoid scheduling in rtas_os_term() + - HID: multitouch: fix Asus ExpertBook P2 P2451FA trackpoint + - HID: plantronics: Additional PIDs for double volume key presses quirk + - pstore: Properly assign mem_type property + - pstore/zone: Use GFP_ATOMIC to allocate zone buffer + - hfsplus: fix bug causing custom uid and gid being unable to be assigned with + mount + - binfmt: Fix error return code in load_elf_fdpic_binary() + - ovl: Use ovl mounter's fsuid and fsgid in ovl_link() + - ALSA: line6: correct midi status byte when receiving data from podxt + - ALSA: line6: fix stack overflow in line6_midi_transmit + - pnode: terminate at peers of source + - mfd: mt6360: Add bounds checking in Regmap read/write call-backs + - md: fix a crash in mempool_free + - mm, compaction: fix fast_isolate_around() to stay within boundaries + - f2fs: should put a page when checking the summary info + - f2fs: allow to read node block after shutdown + - mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING + - tpm: acpi: Call acpi_put_table() to fix memory leak + - tpm: tpm_crb: Add the missed acpi_put_table() to fix memory leak + - tpm: tpm_tis: Add the missed acpi_put_table() to fix memory leak + - SUNRPC: Don't leak netobj memory when gss_read_proxy_verf() fails + - kcsan: Instrument memcpy/memset/memmove with newer Clang + - media: stv0288: use explicitly signed char + - soc: qcom: Select REMAP_MMIO for LLCC driver + - kest.pl: Fix grub2 menu handling for rebooting + - ktest.pl minconfig: Unset configs instead of just removing them + - jbd2: use the correct print format + - perf/x86/intel/uncore: Disable I/O stacks to PMU mapping on ICX-D + - perf/x86/intel/uncore: Clear attr_update properly + - arm64: dts: qcom: sdm845-db845c: correct SPI2 pins drive strength + - mmc: sdhci-sprd: Disable CLK_AUTO when the clock is less than 400K + - btrfs: fix resolving backrefs for inline extent followed by prealloc + - ARM: ux500: do not directly dereference __iomem + - arm64: dts: qcom: sdm850-lenovo-yoga-c630: correct I2C12 pins drive strength + - selftests: Use optional USERCFLAGS and USERLDFLAGS + - PM/devfreq: governor: Add a private governor_data for governor + - cpufreq: Init completion before kobject_init_and_add() + - ALSA: patch_realtek: Fix Dell Inspiron Plus 16 + - ALSA: hda/realtek: Apply dual codec fixup for Dell Latitude laptops + - fs: dlm: fix sock release if listen fails + - fs: dlm: retry accept() until -EAGAIN or error returns + - mptcp: remove MPTCP 'ifdef' in TCP SYN cookies + - dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort + - dm thin: Fix ABBA deadlock between shrink_slab and dm_pool_abort_metadata + - dm thin: Use last transaction's pmd->root when commit failed + - dm thin: resume even if in FAIL mode + - dm thin: Fix UAF in run_timer_softirq() + - dm integrity: Fix UAF in dm_integrity_dtr() + - dm clone: Fix UAF in clone_dtr() + - dm cache: Fix UAF in destroy() + - dm cache: set needs_check flag after aborting metadata + - tracing/hist: Fix out-of-bound write on 'action_data.var_ref_idx' + - perf/core: Call LSM hook after copying perf_event_attr + - of/kexec: Fix reading 32-bit "linux,initrd-{start,end}" values + - KVM: VMX: Resume guest immediately when injecting #GP on ECREATE + - KVM: nVMX: Inject #GP, not #UD, if "generic" VMXON CR0/CR4 check fails + - KVM: nVMX: Properly expose ENABLE_USR_WAIT_PAUSE control to L1 + - x86/microcode/intel: Do not retry microcode reloading on the APs + - ftrace/x86: Add back ftrace_expected for ftrace bug reports + - x86/kprobes: Fix kprobes instruction boudary check with CONFIG_RETHUNK + - x86/kprobes: Fix optprobe optimization check with CONFIG_RETHUNK + - tracing: Fix race where eprobes can be called before the event + - tracing: Fix complicated dependency of CONFIG_TRACER_MAX_TRACE + - tracing/hist: Fix wrong return value in parse_action_params() + - tracing/probes: Handle system names with hyphens + - tracing: Fix infinite loop in tracing_read_pipe on overflowed + print_trace_line + - staging: media: tegra-video: fix chan->mipi value on error + - staging: media: tegra-video: fix device_node use after free + - ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod + - media: dvb-core: Fix double free in dvb_register_device() + - cifs: fix confusing debug message + - cifs: fix missing display of three mount options + - rtc: ds1347: fix value written to century register + - block: mq-deadline: Do not break sequential write streams to zoned HDDs + - md/bitmap: Fix bitmap chunk size overflow issues + - efi: Add iMac Pro 2017 to uefi skip cert quirk + - wifi: wilc1000: sdio: fix module autoloading + - ASoC: jz4740-i2s: Handle independent FIFO flush bits + - ipu3-imgu: Fix NULL pointer dereference in imgu_subdev_set_selection() + - ipmi: fix long wait in unload when IPMI disconnect + - mtd: spi-nor: Check for zero erase size in spi_nor_find_best_erase_type() + - ima: Fix a potential NULL pointer access in ima_restore_measurement_list + - ipmi: fix use after free in _ipmi_destroy_user() + - PCI: Fix pci_device_is_present() for VFs by checking PF + - PCI/sysfs: Fix double free in error path + - riscv: stacktrace: Fixup ftrace_graph_ret_addr retp argument + - riscv: mm: notify remote harts about mmu cache updates + - crypto: n2 - add missing hash statesize + - driver core: Fix bus_type.match() error handling in __driver_attach() + - phy: qcom-qmp-combo: fix sc8180x reset + - iommu/amd: Fix ivrs_acpihid cmdline parsing code + - remoteproc: core: Do pm_relax when in RPROC_OFFLINE state + - parisc: led: Fix potential null-ptr-deref in start_task() + - device_cgroup: Roll back to original exceptions after copy failure + - drm/connector: send hotplug uevent on connector cleanup + - drm/i915/dsi: fix VBT send packet port selection for dual link DSI + - drm/ingenic: Fix missing platform_driver_unregister() call in + ingenic_drm_init() + - ext4: silence the warning when evicting inode with dioread_nolock + - ext4: add inode table check in __ext4_get_inode_loc to aovid possible + infinite loop + - ext4: remove trailing newline from ext4_msg() message + - fs: ext4: initialize fsdata in pagecache_write() + - ext4: fix use-after-free in ext4_orphan_cleanup + - ext4: fix undefined behavior in bit shift for ext4_check_flag_values + - ext4: add EXT4_IGET_BAD flag to prevent unexpected bad inode + - ext4: add helper to check quota inums + - ext4: fix bug_on in __es_tree_search caused by bad quota inode + - ext4: fix reserved cluster accounting in __es_remove_extent() + - ext4: check and assert if marking an no_delete evicting inode dirty + - ext4: fix bug_on in __es_tree_search caused by bad boot loader inode + - ext4: fix leaking uninitialized memory in fast-commit journal + - ext4: fix uninititialized value in 'ext4_evict_inode' + - ext4: init quota for 'old.inode' in 'ext4_rename' + - ext4: fix delayed allocation bug in ext4_clu_mapped for bigalloc + inline + - ext4: fix error code return to user-space in ext4_get_branch() + - ext4: avoid BUG_ON when creating xattrs + - ext4: fix kernel BUG in 'ext4_write_inline_data_end()' + - ext4: fix inode leak in ext4_xattr_inode_create() on an error path + - ext4: initialize quota before expanding inode in setproject ioctl + - ext4: avoid unaccounted block allocation when expanding inode + - ext4: allocate extended attribute value in vmalloc area + - drm/amdgpu: handle polaris10/11 overlap asics (v2) + - block: mq-deadline: Fix dd_finish_request() for zoned devices + - tracing: Fix issue of missing one synthetic field + - ext4: use ext4_debug() instead of jbd_debug() + - ext4: introduce EXT4_FC_TAG_BASE_LEN helper + - ext4: factor out ext4_fc_get_tl() + - ext4: fix potential out of bound read in ext4_fc_replay_scan() + - ext4: disable fast-commit of encrypted dir operations + - ext4: don't set up encryption key during jbd2 transaction + - ext4: add missing validation of fast-commit record lengths + - ext4: fix unaligned memory access in ext4_fc_reserve_space() + - ext4: fix off-by-one errors in fast-commit block filling + - ARM: renumber bits related to _TIF_WORK_MASK + - phy: qcom-qmp-combo: fix out-of-bounds clock access + - btrfs: replace strncpy() with strscpy() + - btrfs: fix extent map use-after-free when handling missing device in + read_one_chunk + - x86/MCE/AMD: Clear DFR errors found in THR handler + - media: s5p-mfc: Fix to handle reference queue during finishing + - media: s5p-mfc: Clear workbit to handle error condition + - media: s5p-mfc: Fix in register read and write for H264 + - perf probe: Use dwarf_attr_integrate as generic DWARF attr accessor + - perf probe: Fix to get the DW_AT_decl_file and DW_AT_call_file as unsinged + data + - ravb: Fix "failed to switch device to config mode" message during unbind + - ext4: goto right label 'failed_mount3a' + - ext4: correct inconsistent error msg in nojournal mode + - mbcache: automatically delete entries from cache on freeing + - ext4: fix deadlock due to mbcache entry corruption + - SUNRPC: ensure the matching upcall is in-flight upon downcall + - btrfs: fix an error handling path in btrfs_defrag_leaves() + - bpf: pull before calling skb_postpull_rcsum() + - drm/panfrost: Fix GEM handle creation ref-counting + - netfilter: nf_tables: consolidate set description + - netfilter: nf_tables: add function to create set stateful expressions + - netfilter: nf_tables: perform type checking for existing sets + - vmxnet3: correctly report csum_level for encapsulated packet + - netfilter: nf_tables: honor set timeout and garbage collection updates + - veth: Fix race with AF_XDP exposing old or uninitialized descriptors + - nfsd: shut down the NFSv4 state objects before the filecache + - net: hns3: add interrupts re-initialization while doing VF FLR + - net: hns3: fix miss L3E checking for rx packet + - net: hns3: fix VF promisc mode not update when mac table full + - qlcnic: prevent ->dcb use-after-free on qlcnic_dcb_enable() failure + - net: dsa: mv88e6xxx: depend on PTP conditionally + - nfc: Fix potential resource leaks + - vdpa_sim: fix possible memory leak in vdpasim_net_init() and + vdpasim_blk_init() + - vhost/vsock: Fix error handling in vhost_vsock_init() + - vringh: fix range used in iotlb_translate() + - vhost: fix range used in translate_desc() + - vdpa_sim: fix vringh initialization in vdpasim_queue_ready() + - net/mlx5: E-Switch, properly handle ingress tagged packets on VST + - net/mlx5: Add forgotten cleanup calls into mlx5_init_once() error path + - net/mlx5: Avoid recovery in probe flows + - net/mlx5e: IPoIB, Don't allow CQE compression to be turned on by default + - net/mlx5e: Always clear dest encap in neigh-update-del + - net/mlx5e: Fix hw mtu initializing at XDP SQ allocation + - net: amd-xgbe: add missed tasklet_kill + - net: ena: Fix toeplitz initial hash value + - net: ena: Don't register memory info on XDP exchange + - net: ena: Account for the number of processed bytes in XDP + - net: ena: Use bitmask to indicate packet redirection + - net: ena: Fix rx_copybreak value update + - net: ena: Set default value for RX interrupt moderation + - net: ena: Update NUMA TPH hint register upon NUMA node update + - net: phy: xgmiitorgmii: Fix refcount leak in xgmiitorgmii_probe + - RDMA/mlx5: Fix mlx5_ib_get_hw_stats when used for device + - RDMA/mlx5: Fix validation of max_rd_atomic caps for DC + - drm/meson: Reduce the FIFO lines held when AFBC is not used + - filelock: new helper: vfs_inode_has_locks + - ceph: switch to vfs_inode_has_locks() to fix file lock bug + - gpio: sifive: Fix refcount leak in sifive_gpio_probe + - net: sched: atm: dont intepret cls results when asked to drop + - net: sched: cbq: dont intepret cls results when asked to drop + - net: sparx5: Fix reading of the MAC address + - netfilter: ipset: fix hash:net,port,net hang with /0 subnet + - netfilter: ipset: Rework long task execution when adding/deleting entries + - perf tools: Fix resources leak in perf_data__open_dir() + - drm/imx: ipuv3-plane: Fix overlay plane width + - fs/ntfs3: don't hold ni_lock when calling truncate_setsize() + - drivers/net/bonding/bond_3ad: return when there's no aggregator + - octeontx2-pf: Fix lmtst ID used in aura free + - usb: rndis_host: Secure rndis_query check against int overflow + - perf stat: Fix handling of --for-each-cgroup with --bpf-counters to match + non BPF mode + - drm/i915: unpin on error in intel_vgpu_shadow_mm_pin() + - caif: fix memory leak in cfctrl_linkup_request() + - udf: Fix extension of the last extent in the file + - ASoC: Intel: bytcr_rt5640: Add quirk for the Advantech MICA-071 tablet + - nvme: fix multipath crash caused by flush request when blktrace is enabled + - io_uring: check for valid register opcode earlier + - nvmet: use NVME_CMD_EFFECTS_CSUPP instead of open coding it + - nvme: also return I/O command effects from nvme_command_effects + - btrfs: check superblock to ensure the fs was not modified at thaw time + - x86/kexec: Fix double-free of elf header buffer + - nfsd: fix handling of readdir in v4root vs. mount upcall timeout + - fbdev: matroxfb: G200eW: Increase max memory from 1 MB to 16 MB + - block: don't allow splitting of a REQ_NOWAIT bio + - io_uring: fix CQ waiting timeout handling + - thermal: int340x: Add missing attribute for data rate base + - riscv: uaccess: fix type of 0 variable on error in get_user() + - riscv, kprobes: Stricter c.jr/c.jalr decoding + - drm/i915/gvt: fix gvt debugfs destroy + - drm/i915/gvt: fix vgpu debugfs clean in remove + - hfs/hfsplus: avoid WARN_ON() for sanity check, use proper error handling + - ksmbd: fix infinite loop in ksmbd_conn_handler_loop() + - ksmbd: check nt_len to be at least CIFS_ENCPWD_SIZE in + ksmbd_decode_ntlmssp_auth_blob + - Revert "ACPI: PM: Add support for upcoming AMD uPEP HID AMDI007" + - mptcp: dedicated request sock for subflow in v6 + - mptcp: use proper req destructor for IPv6 + - ext4: don't allow journal inode to have encrypt flag + - btrfs: make thaw time super block check to also verify checksum + - mbcache: Avoid nesting of cache->c_list_lock under bit locks + - efi: random: combine bootloader provided RNG seed with RNG protocol output + - drm/mgag200: Fix PLL setup for G200_SE_A rev >=4 + - futex: Fix futex_waitv() hrtimer debug object leak on kcalloc error + - rtmutex: Add acquire semantics for rtmutex lock acquisition slow path + - mm/mempolicy: fix memory leak in set_mempolicy_home_node system call + - block: Do not reread partition table on exclusively open device + - arm64: dts: qcom: sdm850-samsung-w737: correct I2C12 pins drive strength + - EDAC/mc_sysfs: Increase legacy channel support to 12 + - ext2: unbugger ext2_empty_dir() + - bpf: Resolve fext program type when checking map compatibility + - mptcp: netlink: fix some error return code + - ima: Fix hash dependency to correct algorithm + - KVM: x86: fix APICv/x2AVIC disabled when vm reboot by itself + - powerpc/ftrace: fix syscall tracing on PPC64_ELF_ABI_V1 + - arm64: dts: mediatek: mt8195-demo: fix the memory size of node secmon + - drm/amdgpu: fix mmhub register base coding error + - mtd: spi-nor: gigadevice: gd25q256: replace gd25q256_default_init with + gd25q256_post_bfpt + - ima: Fix memory leak in __ima_inode_hash() + - crypto: ccree,hisilicon - Fix dependencies to correct algorithm + - RISC-V: kexec: Fix memory leak of fdt buffer + - riscv: Fixup compile error with !MMU + - RISC-V: kexec: Fix memory leak of elf header buffer + - bus: mhi: host: Fix race between channel preparation and M0 event + - test_kprobes: Fix implicit declaration error of test_kprobes + - remoteproc: imx_dsp_rproc: Add mutex protection for workqueue + - remoteproc: imx_rproc: Correct i.MX93 DRAM mapping + - parisc: Add missing FORCE prerequisites in Makefile + - ext4: journal_path mount options should follow links + - drm/i915: improve the catch-all evict to handle lock contention + - drm/i915/migrate: Account for the reserved_space + - cifs: fix interface count calculation during refresh + - cifs: refcount only the selected iface during interface update + - usb: dwc3: gadget: Ignore End Transfer delay on teardown + - ice: xsk: do not use xdp_return_frame() on tx_buf->raw_buf + - net: vrf: determine the dst using the original ifindex for multicast + - mptcp: fix lockdep false positive + - net: lan966x: Fix configuration of the PCS + - bnxt_en: Simplify bnxt_xdp_buff_init() + - bnxt_en: Fix XDP RX path + - bnxt_en: Fix first buffer size calculations for XDP multi-buffer + - bnxt_en: Fix HDS and jumbo thresholds for RX packets + - vdpa/mlx5: Fix rule forwarding VLAN to TIR + - vdpa/mlx5: Fix wrong mac address deletion + - vhost-vdpa: fix an iotlb memory leak + - virtio-crypto: fix memory leak in virtio_crypto_alg_skcipher_close_session() + - vdpa/vp_vdpa: fix kfree a wrong pointer in vp_vdpa_remove + - vdpasim: fix memory leak when freeing IOTLBs + - net/mlx5: Fix io_eq_size and event_eq_size params validation + - net/mlx5: Fix RoCE setting at HCA level + - net/mlx5e: CT: Fix ct debugfs folder name + - net/mlx5e: Set geneve_tlv_option_0_exist when matching on geneve option + - net/mlx5: Lag, fix failure to cancel delayed bond work + - vxlan: Fix memory leaks in error path + - drm/i915/gvt: fix double free bug in split_2MB_gtt_entry + - qed: allow sleep in qed_mcp_trace_dump() + - usb: dwc3: xilinx: include linux/gpio/consumer.h + - net: dsa: tag_qca: fix wrong MGMT_DATA2 size + - vhost_vdpa: fix the crash in unmap a large memory + - of/fdt: run soc memory setup when early_init_dt_scan_memory fails + * CVE-2022-36280 + - drm/vmwgfx: Validate the box size for the snooped cursor + * CVE-2023-1118 + - media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() + + [ Ubuntu: 5.19.0-41.42~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-41.42~22.04.1 -proposed tracker (LP: #2016650) + * CVE-2023-1829 + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + * kinetic/linux: 5.19.0-41.42 -proposed tracker (LP: #2016651) + * CVE-2023-1829 + - net/sched: Retire tcindex classifier + - [Config]: Make sure CONFIG_NET_CLS_TCINDEX is not available + * CVE-2023-0386 + - ovl: fail on invalid uid/gid mapping at copy up + + [ Ubuntu: 5.19.0-40.41~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-40.41~22.04.1 -proposed tracker (LP: #2011875) + * kinetic/linux: 5.19.0-40.41 -proposed tracker (LP: #2012668) + * CVE-2023-0468 + - io_uring: fix tw losing poll events + - io_uring: make poll refs more robust + * Regression in ext4 during online resize (LP: #2003816) + - ext4: fix bad checksum after online resize + - ext4: fix corruption when online resizing a 1K bigalloc fs + - ext4: fix corrupt backup group descriptors after online resize + * kinetic/linux: 5.19.0-39.40 -proposed tracker (LP: #2011876) + * CVE-2023-26545 + - net: mpls: fix stale pointer if allocation fails during device rename + * CVE-2023-1032 + - net: avoid double iput when sock_alloc_file fails + * CVE-2022-41218 // CVE-2022-41218 is assigned to those bugs above. + - media: dvb-core: Fix UAF due to refcount races at releasing + * CVE-2023-1281 + - net/sched: tcindex: update imperfect hash filters respecting rcu + * linux: CONFIG_SERIAL_8250_MID=y (LP: #2009283) + - [Config] enable CONFIG_SERIAL_8250_MID=y + * apply the latest TDX attestation driver from Intel (LP: #2009437) + - Revert "UBUNTU: SAUCE: selftests: tdx: Test GetReport TDX attestation + feature" + - Revert "UBUNTU: SAUCE: x86/tdx: Add TDX Guest attestation interface driver" + - x86/tdx: Add a wrapper to get TDREPORT0 from the TDX Module + - virt: Add TDX guest driver + - selftests/tdx: Test TDX attestation GetReport support + - [Config] enable TDX attestation driver as module by default + * cpufreq: intel_pstate: Update Balance performance EPP for Sapphire Rapids + (LP: #2008519) + - cpufreq: intel_pstate: Adjust balance_performance EPP for Sapphire Rapids + * Fail to output sound to external monitor which connects via docking station + (LP: #2009024) + - [Config] Enable CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM + * Fix mediatek wifi driver crash when loading wrong SAR table (LP: #2009118) + - wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read + * CVE-2022-47929 + - net: sched: disallow noqueue for qdisc classes + * Intel graphic driver is not probing[8086:468b] (LP: #1990242) + - drm/i915: Add new ADL-S pci id + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - drm/i915/psr: Use full update In case of area calculation fails + - drm/i915: Ensure damage clip area is within pipe area + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + * overlayfs mounts as R/O over idmapped mount (LP: #2009065) + - SAUCE: overlayfs: handle idmapped mounts in ovl_do_(set|remove)xattr + * Kinetic update: upstream stable patchset 2023-02-28 (LP: #2008832) + - usb: musb: remove extra check in musb_gadget_vbus_draw + - arm64: dts: qcom: ipq6018-cp01-c1: use BLSPI1 pins + - arm64: dts: qcom: sm8250-sony-xperia-edo: fix touchscreen bias-disable + - arm64: dts: qcom: msm8996: Add MSM8996 Pro support + - arm64: dts: qcom: msm8996: fix supported-hw in cpufreq OPP tables + - arm64: dts: qcom: msm8996: fix GPU OPP table + - ARM: dts: qcom: apq8064: fix coresight compatible + - arm64: dts: qcom: sdm630: fix UART1 pin bias + - arm64: dts: qcom: sdm845-cheza: fix AP suspend pin bias + - arm64: dts: qcom: msm8916: Drop MSS fallback compatible + - objtool, kcsan: Add volatile read/write instrumentation to whitelist + - ARM: dts: stm32: Drop stm32mp15xc.dtsi from Avenger96 + - ARM: dts: stm32: Fix AV96 WLAN regulator gpio property + - drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static + - arm64: dts: qcom: pm660: Use unique ADC5_VCOIN address in node name + - arm64: dts: qcom: sm8250: correct LPASS pin pull down + - soc: qcom: llcc: make irq truly optional + - arm64: dts: qcom: sm8150: fix UFS PHY registers + - arm64: dts: qcom: sm8250: fix UFS PHY registers + - arm64: dts: qcom: sm8350: fix UFS PHY registers + - arm64: dts: qcom: sm8250: drop bogus DP PHY clock + - soc: qcom: apr: Add check for idr_alloc and of_property_read_string_index + - arm64: dts: qcom: sm6125: fix SDHCI CQE reg names + - arm: dts: spear600: Fix clcd interrupt + - soc: ti: knav_qmss_queue: Fix PM disable depth imbalance in knav_queue_probe + - soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe + - arm64: mm: kfence: only handle translation faults + - perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init() + - perf/arm_dmc620: Fix hotplug callback leak in dmc620_pmu_init() + - perf/smmuv3: Fix hotplug callback leak in arm_smmu_pmu_init() + - arm64: dts: ti: k3-am65-main: Drop dma-coherent in crypto node + - arm64: dts: ti: k3-j721e-main: Drop dma-coherent in crypto node + - ARM: dts: nuvoton: Remove bogus unit addresses from fixed-partition nodes + - arm64: dts: mt6779: Fix devicetree build warnings + - arm64: dts: mt2712e: Fix unit_address_vs_reg warning for oscillators + - arm64: dts: mt2712e: Fix unit address for pinctrl node + - arm64: dts: mt2712-evb: Fix vproc fixed regulators unit names + - arm64: dts: mt2712-evb: Fix usb vbus regulators unit names + - arm64: dts: mediatek: pumpkin-common: Fix devicetree warnings + - arm64: dts: mediatek: mt6797: Fix 26M oscillator unit name + - ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-370: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-xp: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-375: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-38x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: armada-39x: Fix assigned-addresses for every PCIe Root Port + - ARM: dts: turris-omnia: Add ethernet aliases + - ARM: dts: turris-omnia: Add switch port 6 node + - arm64: dts: armada-3720-turris-mox: Add missing interrupt for RTC + - seccomp: Move copy_seccomp() to no failure path. + - pstore/ram: Fix error return code in ramoops_probe() + - ARM: mmp: fix timer_read delay + - pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP + - tpm/tpm_ftpm_tee: Fix error handling in ftpm_mod_init() + - tpm/tpm_crb: Fix error message in __crb_relinquish_locality() + - ovl: remove privs in ovl_copyfile() + - ovl: remove privs in ovl_fallocate() + - sched/uclamp: Fix relationship between uclamp and migration margin + - sched/uclamp: Make task_fits_capacity() use util_fits_cpu() + - sched/uclamp: Make select_idle_capacity() use util_fits_cpu() + - sched/core: Introduce sched_asym_cpucap_active() + - sched/uclamp: Make asym_fits_capacity() use util_fits_cpu() + - cpuidle: dt: Return the correct numbers of parsed idle states + - alpha: fix TIF_NOTIFY_SIGNAL handling + - alpha: fix syscall entry in !AUDUT_SYSCALL case + - x86/sgx: Reduce delay and interference of enclave release + - PM: hibernate: Fix mistake in kerneldoc comment + - fs: don't audit the capability check in simple_xattr_list() + - cpufreq: qcom-hw: Fix memory leak in qcom_cpufreq_hw_read_lut() + - selftests/ftrace: event_triggers: wait longer for test_event_enable + - perf: Fix possible memleak in pmu_dev_alloc() + - lib/debugobjects: fix stat count and optimize debug_objects_mem_init + - platform/x86: huawei-wmi: fix return value calculation + - timerqueue: Use rb_entry_safe() in timerqueue_getnext() + - proc: fixup uptime selftest + - lib/fonts: fix undefined behavior in bit shift for get_default_font + - ocfs2: fix memory leak in ocfs2_stack_glue_init() + - MIPS: vpe-mt: fix possible memory leak while module exiting + - MIPS: vpe-cmp: fix possible memory leak while module exiting + - selftests/efivarfs: Add checking of the test return value + - PNP: fix name memory leak in pnp_alloc_dev() + - perf/x86/intel/uncore: Fix reference count leak in sad_cfg_iio_topology() + - perf/x86/intel/uncore: Fix reference count leak in hswep_has_limit_sbox() + - perf/x86/intel/uncore: Fix reference count leak in snr_uncore_mmio_map() + - perf/x86/intel/uncore: Fix reference count leak in __uncore_imc_init_box() + - platform/chrome: cros_usbpd_notify: Fix error handling in + cros_usbpd_notify_init() + - thermal: core: fix some possible name leaks in error paths + - irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() + - irqchip/wpcm450: Fix memory leak in wpcm450_aic_of_init() + - EDAC/i10nm: fix refcount leak in pci_get_dev_wrapper() + - NFSD: Finish converting the NFSv2 GETACL result encoder + - nfsd: don't call nfsd_file_put from client states seqfile display + - genirq/irqdesc: Don't try to remove non-existing sysfs files + - cpufreq: amd_freq_sensitivity: Add missing pci_dev_put() + - libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value + - lib/notifier-error-inject: fix error when writing -errno to debugfs file + - debugfs: fix error when writing negative value to atomic_t debugfs file + - rapidio: fix possible name leaks when rio_add_device() fails + - rapidio: rio: fix possible name leak in rio_register_mport() + - clocksource/drivers/sh_cmt: Access registers according to spec + - mips: ralink: mt7621: define MT7621_SYSC_BASE with __iomem + - mips: ralink: mt7621: soc queries and tests as functions + - mips: ralink: mt7621: do not use kzalloc too early + - futex: Resend potentially swallowed owner death notification + - cpu/hotplug: Make target_store() a nop when target == state + - cpu/hotplug: Do not bail-out in DYING/STARTING sections + - clocksource/drivers/timer-ti-dm: Fix missing clk_disable_unprepare in + dmtimer_systimer_init_clock() + - ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() + - uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix + - x86/xen: Fix memory leak in xen_smp_intr_init{_pv}() + - x86/xen: Fix memory leak in xen_init_lock_cpu() + - xen/privcmd: Fix a possible warning in privcmd_ioctl_mmap_resource() + - PM: runtime: Do not call __rpm_callback() from rpm_idle() + - platform/chrome: cros_ec_typec: Cleanup switch handle return paths + - platform/chrome: cros_ec_typec: zero out stale pointers + - platform/x86: mxm-wmi: fix memleak in mxm_wmi_call_mx[ds|mx]() + - platform/x86: intel_scu_ipc: fix possible name leak in + __intel_scu_ipc_register() + - MIPS: BCM63xx: Add check for NULL for clk in clk_enable + - MIPS: OCTEON: warn only once if deprecated link status is being used + - lockd: set other missing fields when unlocking files + - fs: sysv: Fix sysv_nblocks() returns wrong value + - rapidio: fix possible UAF when kfifo_alloc() fails + - eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD + - relay: fix type mismatch when allocating memory in relay_create_buf() + - hfs: Fix OOB Write in hfs_asc2mac + - rapidio: devices: fix missing put_device in mport_cdev_open + - platform/mellanox: mlxbf-pmc: Fix event typo + - wifi: ath9k: hif_usb: fix memory leak of urbs in + ath9k_hif_usb_dealloc_tx_urbs() + - wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() + - wifi: rtl8xxxu: Fix reading the vendor of combo chips + - drm/bridge: adv7533: remove dynamic lane switching from adv7533 bridge + - libbpf: Fix use-after-free in btf_dump_name_dups + - libbpf: Fix null-pointer dereference in find_prog_by_sec_insn() + - ata: libata: fix NCQ autosense logic + - ipmi: kcs: Poll OBF briefly to reduce OBE latency + - drm/amdgpu/powerplay/psm: Fix memory leak in power state init + - media: v4l2-ctrls: Fix off-by-one error in integer menu control check + - media: coda: jpeg: Add check for kmalloc + - media: adv748x: afe: Select input port when initializing AFE + - media: i2c: ad5820: Fix error path + - venus: pm_helpers: Fix error check in vcodec_domains_get() + - soreuseport: Fix socket selection for SO_INCOMING_CPU. + - media: exynos4-is: don't rely on the v4l2_async_subdev internals + - libbpf: Btf dedup identical struct test needs check for nested + structs/arrays + - can: kvaser_usb: kvaser_usb_leaf: Get capabilities from device + - can: kvaser_usb: kvaser_usb_leaf: Rename {leaf,usbcan}_cmd_error_event to + {leaf,usbcan}_cmd_can_error_event + - can: kvaser_usb: kvaser_usb_leaf: Handle CMD_ERROR_EVENT + - can: kvaser_usb_leaf: Set Warning state even without bus errors + - can: kvaser_usb_leaf: Fix improved state not being reported + - can: kvaser_usb_leaf: Fix wrong CAN state after stopping + - can: kvaser_usb_leaf: Fix bogus restart events + - can: kvaser_usb: Add struct kvaser_usb_busparams + - can: kvaser_usb: Compare requested bittiming parameters with actual + parameters in do_set_{,data}_bittiming + - drm/rockchip: lvds: fix PM usage counter unbalance in poweron + - clk: renesas: r9a06g032: Repair grave increment error + - spi: Update reference to struct spi_controller + - drm/panel/panel-sitronix-st7701: Remove panel on DSI attach failure + - drm/msm/hdmi: drop unused GPIO support + - drm/msm/hdmi: use devres helper for runtime PM management + - bpf: Fix slot type check in check_stack_write_var_off + - media: vivid: fix compose size exceed boundary + - media: platform: exynos4-is: fix return value check in fimc_md_probe() + - bpf: propagate precision in ALU/ALU64 operations + - bpf: propagate precision across all frames, not just the last one + - clk: qcom: gcc-sm8250: Use retention mode for USB GDSCs + - mtd: Fix device name leak when register device failed in add_mtd_device() + - Input: joystick - fix Kconfig warning for JOYSTICK_ADC + - wifi: rsi: Fix handling of 802.3 EAPOL frames sent via control port + - media: camss: Clean up received buffers on failed start of streaming + - net, proc: Provide PROC_FS=n fallback for proc_create_net_single_write() + - rxrpc: Fix ack.bufferSize to be 0 when generating an ack + - bfq: fix waker_bfqq inconsistency crash + - drm/radeon: Add the missed acpi_put_table() to fix memory leak + - drm/mediatek: Modify dpi power on/off sequence. + - ASoC: pxa: fix null-pointer dereference in filter() + - nvmet: only allocate a single slab for bvecs + - regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() + - amdgpu/pm: prevent array underflow in vega20_odn_edit_dpm_table() + - nvme: return err on nvme_init_non_mdts_limits fail + - regulator: qcom-rpmh: Fix PMR735a S3 regulator spec + - drm/fourcc: Fix vsub/hsub for Q410 and Q401 + - integrity: Fix memory leakage in keyring allocation error path + - ima: Fix misuse of dereference of pointer in template_desc_init_fields() + - block: clear ->slave_dir when dropping the main slave_dir reference + - wifi: ath10k: Fix return value in ath10k_pci_init() + - drm/msm/a6xx: Fix speed-bin detection vs probe-defer + - mtd: lpddr2_nvm: Fix possible null-ptr-deref + - Input: elants_i2c - properly handle the reset GPIO when power is off + - media: vidtv: Fix use-after-free in vidtv_bridge_dvb_init() + - media: solo6x10: fix possible memory leak in solo_sysfs_init() + - media: platform: exynos4-is: Fix error handling in fimc_md_init() + - media: videobuf-dma-contig: use dma_mmap_coherent + - mtd: spi-nor: hide jedec_id sysfs attribute if not present + - mtd: spi-nor: Fix the number of bytes for the dummy cycles + - bpf: Move skb->len == 0 checks into __bpf_redirect + - HID: hid-sensor-custom: set fixed size for custom attributes + - pinctrl: k210: call of_node_put() + - ALSA: pcm: fix undefined behavior in bit shift for SNDRV_PCM_RATE_KNOT + - ALSA: seq: fix undefined behavior in bit shift for + SNDRV_SEQ_FILTER_USE_EVENT + - regulator: core: use kfree_const() to free space conditionally + - clk: rockchip: Fix memory leak in rockchip_clk_register_pll() + - drm/amdgpu: fix pci device refcount leak + - bonding: fix link recovery in mode 2 when updelay is nonzero + - mtd: maps: pxa2xx-flash: fix memory leak in probe + - drbd: remove call to memset before free device/resource/connection + - drbd: destroy workqueue when drbd device was freed + - ASoC: qcom: Add checks for devm_kcalloc + - media: vimc: Fix wrong function called when vimc_init() fails + - media: imon: fix a race condition in send_packet() + - clk: imx8mn: rename vpu_pll to m7_alt_pll + - clk: imx: replace osc_hdmi with dummy + - clk: imx8mn: fix imx8mn_sai2_sels clocks list + - clk: imx8mn: fix imx8mn_enet_phy_sels clocks list + - pinctrl: pinconf-generic: add missing of_node_put() + - media: dvb-core: Fix ignored return value in dvb_register_frontend() + - media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() + - media: s5p-mfc: Add variant data for MFC v7 hardware for Exynos 3250 SoC + - drm/tegra: Add missing clk_disable_unprepare() in tegra_dc_probe() + - ASoC: dt-bindings: wcd9335: fix reset line polarity in example + - ASoC: mediatek: mtk-btcvsd: Add checks for write and read of mtk_btcvsd_snd + - NFSv4.2: Clear FATTR4_WORD2_SECURITY_LABEL when done decoding + - NFSv4.2: Fix a memory stomp in decode_attr_security_label + - NFSv4.2: Fix initialisation of struct nfs4_label + - NFSv4: Fix a credential leak in _nfs4_discover_trunking() + - NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn + - NFS: Fix an Oops in nfs_d_automount() + - ALSA: asihpi: fix missing pci_disable_device() + - wifi: iwlwifi: mvm: fix double free on tx path. + - ASoC: mediatek: mt8173: Enable IRQ when pdata is ready + - drm/amd/pm/smu11: BACO is supported when it's in BACO state + - drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() + - drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() + - drm/amdkfd: Fix memory leakage + - ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe + - netfilter: conntrack: set icmpv6 redirects as RELATED + - Input: wistron_btns - disable on UML + - bpf, sockmap: Fix repeated calls to sock_put() when msg has more_data + - bpf, sockmap: Fix missing BPF_F_INGRESS flag when using apply_bytes + - bpf, sockmap: Fix data loss caused by using apply_bytes on ingress redirect + - bonding: uninitialized variable in bond_miimon_inspect() + - spi: spidev: mask SPI_CS_HIGH in SPI_IOC_RD_MODE + - wifi: cfg80211: Fix not unregister reg_pdev when load_builtin_regdb_keys() + fails + - wifi: mt76: mt7921: fix reporting of TX AGGR histogram + - wifi: mt76: fix coverity overrun-call in mt76_get_txpower() + - regulator: core: fix module refcount leak in set_supply() + - clk: qcom: lpass-sc7180: Fix pm_runtime usage + - clk: qcom: clk-krait: fix wrong div2 functions + - hsr: Add a rcu-read lock to hsr_forward_skb(). + - hsr: Avoid double remove of a node. + - hsr: Disable netpoll. + - hsr: Synchronize sending frames to have always incremented outgoing seq nr. + - hsr: Synchronize sequence number updates. + - configfs: fix possible memory leak in configfs_create_dir() + - regulator: core: fix resource leak in regulator_register() + - hwmon: (jc42) Convert register access and caching to regmap/regcache + - hwmon: (jc42) Restore the min/max/critical temperatures on resume + - bpf, sockmap: fix race in sock_map_free() + - ALSA: pcm: Set missing stop_operating flag at undoing trigger start + - media: saa7164: fix missing pci_disable_device() + - ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt + - xprtrdma: Fix regbuf data not freed in rpcrdma_req_create() + - SUNRPC: Fix missing release socket in rpc_sockname() + - NFSv4.x: Fail client initialisation if state manager thread can't run + - riscv, bpf: Emit fixed-length instructions for BPF_PSEUDO_FUNC + - mmc: alcor: fix return value check of mmc_add_host() + - mmc: moxart: fix return value check of mmc_add_host() + - mmc: mxcmmc: fix return value check of mmc_add_host() + - mmc: pxamci: fix return value check of mmc_add_host() + - mmc: rtsx_pci: fix return value check of mmc_add_host() + - mmc: rtsx_usb_sdmmc: fix return value check of mmc_add_host() + - mmc: toshsd: fix return value check of mmc_add_host() + - mmc: vub300: fix return value check of mmc_add_host() + - mmc: wmt-sdmmc: fix return value check of mmc_add_host() + - mmc: atmel-mci: fix return value check of mmc_add_host() + - mmc: omap_hsmmc: fix return value check of mmc_add_host() + - mmc: meson-gx: fix return value check of mmc_add_host() + - mmc: via-sdmmc: fix return value check of mmc_add_host() + - mmc: wbsd: fix return value check of mmc_add_host() + - mmc: mmci: fix return value check of mmc_add_host() + - mmc: renesas_sdhi: alway populate SCC pointer + - memstick/ms_block: Add check for alloc_ordered_workqueue + - mmc: core: Normalize the error handling branch in sd_read_ext_regs() + - regulator: qcom-labibb: Fix missing of_node_put() in + qcom_labibb_regulator_probe() + - media: c8sectpfe: Add of_node_put() when breaking out of loop + - media: coda: Add check for dcoda_iram_alloc + - media: coda: Add check for kmalloc + - clk: samsung: Fix memory leak in _samsung_clk_register_pll() + - spi: spi-gpio: Don't set MOSI as an input if not 3WIRE mode + - wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h + - wifi: rtl8xxxu: Fix the channel width reporting + - wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() + - blktrace: Fix output non-blktrace event when blk_classic option enabled + - bpf: Do not zero-extend kfunc return values + - clk: socfpga: Fix memory leak in socfpga_gate_init() + - net: vmw_vsock: vmci: Check memcpy_from_msg() + - net: defxx: Fix missing err handling in dfx_init() + - net: stmmac: selftests: fix potential memleak in stmmac_test_arpoffload() + - net: stmmac: fix possible memory leak in stmmac_dvr_probe() + - drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() + - of: overlay: fix null pointer dereferencing in find_dup_cset_node_entry() + and find_dup_cset_prop() + - ethernet: s2io: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: farsync: Fix kmemleak when rmmods farsync + - net/tunnel: wait until all sk_user_data reader finish before releasing the + sock + - net: apple: mace: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: apple: bmac: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: emaclite: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: ethernet: dnet: don't call dev_kfree_skb() under spin_lock_irqsave() + - hamradio: don't call dev_kfree_skb() under spin_lock_irqsave() + - net: amd: lance: don't call dev_kfree_skb() under spin_lock_irqsave() + - af_unix: call proto_unregister() in the error path in af_unix_init() + - net: amd-xgbe: Fix logic around active and passive cables + - net: amd-xgbe: Check only the minimum speed for active/passive cables + - can: tcan4x5x: Remove invalid write in clear_interrupts + - can: m_can: Call the RAM init directly from m_can_chip_config + - can: tcan4x5x: Fix use of register error status mask + - net: lan9303: Fix read error execution path + - ntb_netdev: Use dev_kfree_skb_any() in interrupt context + - sctp: sysctl: make extra pointers netns aware + - Bluetooth: MGMT: Fix error report for ADD_EXT_ADV_PARAMS + - Bluetooth: btintel: Fix missing free skb in btintel_setup_combined() + - Bluetooth: btusb: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_qca: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_ll: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_h5: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_bcsp: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: hci_core: don't call kfree_skb() under spin_lock_irqsave() + - Bluetooth: RFCOMM: don't call kfree_skb() under spin_lock_irqsave() + - stmmac: fix potential division by 0 + - i40e: Fix the inability to attach XDP program on downed interface + - net: dsa: tag_8021q: avoid leaking ctx on dsa_tag_8021q_register() error + path + - crypto: hisilicon/qm - fix missing destroy qp_idr + - crypto: sun8i-ss - use dma_addr instead u32 + - crypto: nitrox - avoid double free on error path in nitrox_sriov_init() + - scsi: core: Fix a race between scsi_done() and scsi_timeout() + - apparmor: Use pointer to struct aa_label for lbs_cred + - PCI: dwc: Fix n_fts[] array overrun + - RDMA/core: Fix order of nldev_exit call + - PCI: pci-epf-test: Register notifier if only core_init_notifier is enabled + - f2fs: Fix the race condition of resize flag between resizefs + - crypto: rockchip - do not do custom power management + - crypto: rockchip - do not store mode globally + - crypto: rockchip - add fallback for cipher + - crypto: rockchip - add fallback for ahash + - crypto: rockchip - better handle cipher key + - crypto: rockchip - remove non-aligned handling + - crypto: rockchip - rework by using crypto_engine + - apparmor: Fix memleak in alloc_ns() + - f2fs: fix to invalidate dcc->f2fs_issue_discard in error path + - f2fs: fix normal discard process + - f2fs: fix to destroy sbi->post_read_wq in error path of f2fs_fill_super() + - RDMA/irdma: Report the correct link speed + - scsi: qla2xxx: Fix set-but-not-used variable warnings + - RDMA/siw: Fix immediate work request flush to completion queue + - IB/mad: Don't call to function that might sleep while in atomic context + - RDMA/restrack: Release MR restrack when delete + - RDMA/core: Make sure "ib_port" is valid when access sysfs node + - RDMA/nldev: Return "-EAGAIN" if the cm_id isn't from expected port + - RDMA/siw: Set defined status for work completion with undefined status + - scsi: scsi_debug: Fix a warning in resp_write_scat() + - crypto: ccree - Remove debugfs when platform_driver_register failed + - crypto: cryptd - Use request context instead of stack for sub-request + - crypto: hisilicon/qm - add missing pci_dev_put() in q_num_set() + - RDMA/hns: Repacing 'dseg_len' by macros in fill_ext_sge_inl_data() + - RDMA/hns: Fix ext_sge num error when post send + - PCI: Check for alloc failure in pci_request_irq() + - RDMA/hfi: Decrease PCI device reference count in error path + - crypto: ccree - Make cc_debugfs_global_fini() available for module init + function + - RDMA/hns: fix memory leak in hns_roce_alloc_mr() + - RDMA/rxe: Fix NULL-ptr-deref in rxe_qp_do_cleanup() when socket create + failed + - dt-bindings: imx6q-pcie: Fix clock names for imx6sx and imx8mq + - dt-bindings: visconti-pcie: Fix interrupts array max constraints + - scsi: hpsa: Fix possible memory leak in hpsa_init_one() + - crypto: tcrypt - Fix multibuffer skcipher speed test mem leak + - padata: Always leave BHs disabled when running ->parallel() + - padata: Fix list iterator in padata_do_serial() + - scsi: mpt3sas: Fix possible resource leaks in mpt3sas_transport_port_add() + - scsi: hpsa: Fix error handling in hpsa_add_sas_host() + - scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() + - scsi: efct: Fix possible memleak in efct_device_init() + - scsi: scsi_debug: Fix a warning in resp_verify() + - scsi: scsi_debug: Fix a warning in resp_report_zones() + - scsi: fcoe: Fix possible name leak when device_register() fails + - scsi: scsi_debug: Fix possible name leak in sdebug_add_host_helper() + - scsi: ipr: Fix WARNING in ipr_init() + - scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails + - scsi: snic: Fix possible UAF in snic_tgt_create() + - RDMA/nldev: Add checks for nla_nest_start() in fill_stat_counter_qps() + - f2fs: avoid victim selection from previous victim section + - RDMA/nldev: Fix failure to send large messages + - crypto: amlogic - Remove kcalloc without check + - crypto: omap-sham - Use pm_runtime_resume_and_get() in omap_sham_probe() + - riscv/mm: add arch hook arch_clear_hugepage_flags + - RDMA/hfi1: Fix error return code in parse_platform_config() + - RDMA/srp: Fix error return code in srp_parse_options() + - orangefs: Fix sysfs not cleanup when dev init failed + - RDMA/hns: Fix AH attr queried by query_qp + - RDMA/hns: Fix PBL page MTR find + - RDMA/hns: Fix page size cap from firmware + - RDMA/hns: Fix error code of CMD + - crypto: img-hash - Fix variable dereferenced before check 'hdev->req' + - hwrng: amd - Fix PCI device refcount leak + - hwrng: geode - Fix PCI device refcount leak + - IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces + - RISC-V: Align the shadow stack + - drivers: dio: fix possible memory leak in dio_init() + - serial: tegra: Read DMA status before terminating + - serial: 8250_bcm7271: Fix error handling in brcmuart_init() + - class: fix possible memory leak in __class_register() + - vfio: platform: Do not pass return buffer to ACPI _RST method + - uio: uio_dmem_genirq: Fix missing unlock in irq configuration + - uio: uio_dmem_genirq: Fix deadlock between irq config and handling + - usb: fotg210-udc: Fix ages old endianness issues + - staging: vme_user: Fix possible UAF in tsi148_dma_list_add + - usb: typec: Check for ops->exit instead of ops->enter in altmode_exit + - usb: typec: tcpci: fix of node refcount leak in tcpci_register_port() + - usb: typec: tipd: Cleanup resources if devm_tps6598_psy_register fails + - usb: typec: tipd: Fix spurious fwnode_handle_put in error path + - extcon: usbc-tusb320: Factor out extcon into dedicated functions + - extcon: usbc-tusb320: Add USB TYPE-C support + - extcon: usbc-tusb320: Update state on probe even if no IRQ pending + - serial: amba-pl011: avoid SBSA UART accessing DMACR register + - serial: pl011: Do not clear RX FIFO & RX interrupt in unthrottle. + - serial: stm32: move dma_request_chan() before clk_prepare_enable() + - serial: pch: Fix PCI device refcount leak in pch_request_dma() + - tty: serial: clean up stop-tx part in altera_uart_tx_chars() + - tty: serial: altera_uart_{r,t}x_chars() need only uart_port + - serial: altera_uart: fix locking in polling mode + - serial: sunsab: Fix error handling in sunsab_init() + - test_firmware: fix memory leak in test_firmware_init() + - misc: ocxl: fix possible name leak in ocxl_file_register_afu() + - ocxl: fix pci device refcount leak when calling get_function_0() + - misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() + - misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault + and gru_handle_user_call_os + - firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() + - cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() + - cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() + - iio: temperature: ltc2983: make bulk write buffer DMA-safe + - iio: adis: add '__adis_enable_irq()' implementation + - counter: stm32-lptimer-cnt: fix the check on arr and cmp registers update + - coresight: trbe: remove cpuhp instance node before remove cpuhp state + - usb: roles: fix of node refcount leak in usb_role_switch_is_parent() + - usb: gadget: f_hid: fix f_hidg lifetime vs cdev + - usb: gadget: f_hid: fix refcount leak on error path + - drivers: mcb: fix resource leak in mcb_probe() + - mcb: mcb-parse: fix error handing in chameleon_parse_gdd() + - chardev: fix error handling in cdev_device_add() + - i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe + - staging: rtl8192u: Fix use after free in ieee80211_rx() + - staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() + - vme: Fix error not catched in fake_init() + - gpiolib: cdev: fix NULL-pointer dereferences + - gpiolib: protect the GPIO device against being dropped while in use by user- + space + - i2c: mux: reg: check return value after calling platform_get_resource() + - i2c: ismt: Fix an out-of-bounds bug in ismt_access() + - usb: storage: Add check for kcalloc + - tracing/hist: Fix issue of losting command info in error_log + - ksmbd: Fix resource leak in ksmbd_session_rpc_open() + - samples: vfio-mdev: Fix missing pci_disable_device() in mdpy_fb_probe() + - thermal/drivers/imx8mm_thermal: Validate temperature range + - thermal/drivers/qcom/temp-alarm: Fix inaccurate warning for gen2 + - thermal/drivers/qcom/lmh: Fix irq handler return value + - fbdev: ssd1307fb: Drop optional dependency + - fbdev: pm2fb: fix missing pci_disable_device() + - fbdev: via: Fix error in via_core_init() + - fbdev: vermilion: decrease reference count in error path + - fbdev: ep93xx-fb: Add missing clk_disable_unprepare in ep93xxfb_probe() + - fbdev: geode: don't build on UML + - fbdev: uvesafb: don't build on UML + - fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() + - HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() + - HSI: omap_ssi_core: fix possible memory leak in ssi_probe() + - power: supply: fix residue sysfs file in error handle route of + __power_supply_register() + - perf trace: Return error if a system call doesn't exist + - perf trace: Use macro RAW_SYSCALL_ARGS_NUM to replace number + - perf trace: Handle failure when trace point folder is missed + - perf symbol: correction while adjusting symbol + - power: supply: z2_battery: Fix possible memleak in z2_batt_probe() + - HSI: omap_ssi_core: Fix error handling in ssi_init() + - power: supply: ab8500: Fix error handling in ab8500_charger_init() + - power: supply: fix null pointer dereferencing in + power_supply_get_battery_info + - perf stat: Refactor __run_perf_stat() common code + - perf stat: Do not delay the workload with --delay + - RDMA/siw: Fix pointer cast warning + - fs/ntfs3: Avoid UBSAN error on true_sectors_per_clst() + - fs/ntfs3: Harden against integer overflows + - iommu/sun50i: Fix reset release + - iommu/sun50i: Consider all fault sources for reset + - iommu/sun50i: Fix R/W permission check + - iommu/sun50i: Fix flush size + - iommu/rockchip: fix permission bits in page table entries v2 + - phy: usb: s2 WoL wakeup_count not incremented for USB->Eth devices + - include/uapi/linux/swab: Fix potentially missing __always_inline + - pwm: tegra: Improve required rate calculation + - fs/ntfs3: Fix slab-out-of-bounds read in ntfs_trim_fs + - dmaengine: idxd: Fix crc_val field for completion record + - rtc: rtc-cmos: Do not check ACPI_FADT_LOW_POWER_S0 + - rtc: cmos: Fix event handler registration ordering issue + - rtc: cmos: Fix wake alarm breakage + - rtc: cmos: fix build on non-ACPI platforms + - rtc: cmos: Call cmos_wake_setup() from cmos_do_probe() + - rtc: cmos: Call rtc_wake_setup() from cmos_do_probe() + - rtc: cmos: Eliminate forward declarations of some functions + - rtc: cmos: Rename ACPI-related functions + - rtc: cmos: Disable ACPI RTC event on removal + - rtc: snvs: Allow a time difference on clock register read + - rtc: pcf85063: Fix reading alarm + - iommu/amd: Fix pci device refcount leak in ppr_notifier() + - iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() + - macintosh: fix possible memory leak in macio_add_one_device() + - macintosh/macio-adb: check the return value of ioremap() + - powerpc/52xx: Fix a resource leak in an error handling path + - cxl: Fix refcount leak in cxl_calc_capp_routing + - powerpc/xmon: Fix -Wswitch-unreachable warning in bpt_cmds + - powerpc/xive: add missing iounmap() in error path in + xive_spapr_populate_irq_data() + - powerpc/perf: callchain validate kernel stack pointer bounds + - powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in + of_fsl_spi_probe() + - powerpc/hv-gpci: Fix hv_gpci event list + - selftests/powerpc: Fix resource leaks + - iommu/sun50i: Remove IOMMU_DOMAIN_IDENTITY + - pwm: sifive: Call pwm_sifive_update_clock() while mutex is held + - pwm: mtk-disp: Fix the parameters calculated by the enabled flag of disp_pwm + - pwm: mediatek: always use bus clock for PWM on MT7622 + - remoteproc: sysmon: fix memory leak in qcom_add_sysmon_subdev() + - remoteproc: qcom: q6v5: Fix potential null-ptr-deref in + q6v5_wcss_init_mmio() + - remoteproc: qcom_q6v5_pas: disable wakeup on probe fail or remove + - remoteproc: qcom_q6v5_pas: detach power domains on remove + - remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in + adsp_alloc_memory_region() + - remoteproc: qcom: q6v5: Fix missing clk_disable_unprepare() in + q6v5_wcss_qcs404_power_on() + - powerpc/pseries/eeh: use correct API for error log size + - mfd: bd957x: Fix Kconfig dependency on REGMAP_IRQ + - mfd: qcom_rpm: Fix an error handling path in qcom_rpm_probe() + - mfd: pm8008: Remove driver data structure pm8008_data + - mfd: pm8008: Fix return value check in pm8008_probe() + - netfilter: flowtable: really fix NAT IPv6 offload + - rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() + - rtc: pic32: Move devm_rtc_allocate_device earlier in pic32_rtc_probe() + - rtc: pcf85063: fix pcf85063_clkout_control + - nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure + - net: macsec: fix net device access prior to holding a lock + - mISDN: hfcsusb: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcpci: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - mISDN: hfcmulti: don't call dev_kfree_skb/kfree_skb() under + spin_lock_irqsave() + - block, bfq: fix possible uaf for 'bfqq->bic' + - net: enetc: avoid buffer leaks on xdp_do_redirect() failure + - nfc: pn533: Clear nfc_target before being used + - unix: Fix race in SOCK_SEQPACKET's unix_dgram_sendmsg() + - r6040: Fix kmemleak in probe and remove + - igc: Enhance Qbv scheduling by using first flag bit + - igc: Use strict cycles for Qbv scheduling + - igc: Add checking for basetime less than zero + - igc: allow BaseTime 0 enrollment for Qbv + - igc: recalculate Qbv end_time by considering cycle time + - igc: Lift TAPRIO schedule restriction + - igc: Set Qbv start_time and end_time to end_time if not being configured in + GCL + - rtc: mxc_v2: Add missing clk_disable_unprepare() + - selftests: devlink: fix the fd redirect in dummy_reporter_test + - openvswitch: Fix flow lookup to use unmasked key + - soc: mediatek: pm-domains: Fix the power glitch issue + - arm64: dts: mt8183: Fix Mali GPU clock + - skbuff: Account for tail adjustment during pull operations + - mailbox: mpfs: read the system controller's status + - mailbox: arm_mhuv2: Fix return value check in mhuv2_probe() + - mailbox: zynq-ipi: fix error handling while device_register() fails + - net_sched: reject TCF_EM_SIMPLE case for complex ematch module + - rxrpc: Fix missing unlock in rxrpc_do_sendmsg() + - myri10ge: Fix an error handling path in myri10ge_probe() + - net: stream: purge sk_error_queue in sk_stream_kill_queues() + - HID: amd_sfh: Add missing check for dma_alloc_coherent + - rcu: Fix __this_cpu_read() lockdep warning in rcu_force_quiescent_state() + - arm64: make is_ttbrX_addr() noinstr-safe + - video: hyperv_fb: Avoid taking busy spinlock on panic path + - x86/hyperv: Remove unregister syscore call from Hyper-V cleanup + - binfmt_misc: fix shift-out-of-bounds in check_special_flags + - fs: jfs: fix shift-out-of-bounds in dbAllocAG + - udf: Avoid double brelse() in udf_rename() + - jfs: Fix fortify moan in symlink + - fs: jfs: fix shift-out-of-bounds in dbDiscardAG + - ACPICA: Fix error code path in acpi_ds_call_control_method() + - nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() + - nilfs2: fix shift-out-of-bounds due to too large exponent of block size + - acct: fix potential integer overflow in encode_comp_t() + - hfs: fix OOB Read in __hfs_brec_find + - drm/etnaviv: add missing quirks for GC300 + - media: imx-jpeg: Disable useless interrupt to avoid kernel panic + - brcmfmac: return error when getting invalid max_flowrings from dongle + - wifi: ath9k: verify the expected usb_endpoints are present + - wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out + - ASoC: codecs: rt298: Add quirk for KBL-R RVP platform + - ipmi: fix memleak when unload ipmi driver + - drm/amd/display: prevent memory leak + - Revert "drm/amd/display: Limit max DSC target bpp for specific monitors" + - qed (gcc13): use u16 for fid to be big enough + - bpf: make sure skb->len != 0 when redirecting to a tunneling device + - net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() + - hamradio: baycom_epp: Fix return type of baycom_send_packet() + - wifi: brcmfmac: Fix potential shift-out-of-bounds in + brcmf_fw_alloc_request() + - igb: Do not free q_vector unless new one was allocated + - drm/amdgpu: Fix type of second parameter in trans_msg() callback + - drm/amdgpu: Fix type of second parameter in odn_edit_dpm_table() callback + - s390/ctcm: Fix return type of ctc{mp,}m_tx() + - s390/netiucv: Fix return type of netiucv_tx() + - s390/lcs: Fix return type of lcs_start_xmit() + - drm/msm: Use drm_mode_copy() + - drm/rockchip: Use drm_mode_copy() + - drm/sti: Use drm_mode_copy() + - drm/mediatek: Fix return type of mtk_hdmi_bridge_mode_valid() + - drivers/md/md-bitmap: check the return value of md_bitmap_get_counter() + - md/raid1: stop mdx_raid1 thread when raid1 array run failed + - drm/amd/display: fix array index out of bound error in bios parser + - net: add atomic_long_t to net_device_stats fields + - ipv6/sit: use DEV_STATS_INC() to avoid data-races + - mrp: introduce active flags to prevent UAF when applicant uninit + - ppp: associate skb with a device at tx + - bpf: Prevent decl_tag from being referenced in func_proto arg + - ethtool: avoiding integer overflow in ethtool_phys_id() + - media: dvb-frontends: fix leak of memory fw + - media: dvbdev: adopts refcnt to avoid UAF + - media: dvb-usb: fix memory leak in dvb_usb_adapter_init() + - blk-mq: fix possible memleak when register 'hctx' failed + - drm/amd/display: Use the largest vready_offset in pipe group + - libbpf: Avoid enum forward-declarations in public API in C++ mode + - regulator: core: fix use_count leakage when handling boot-on + - wifi: mt76: do not run mt76u_status_worker if the device is not running + - mmc: f-sdh30: Add quirks for broken timeout clock capability + - mmc: renesas_sdhi: better reset from HS400 mode + - media: si470x: Fix use-after-free in si470x_int_in_callback() + - clk: st: Fix memory leak in st_of_quadfs_setup() + - crypto: hisilicon/hpre - fix resource leak in remove process + - scsi: lpfc: Fix hard lockup when reading the rx_monitor from debugfs + - scsi: ufs: Reduce the START STOP UNIT timeout + - scsi: elx: libefc: Fix second parameter type in state callbacks + - hugetlbfs: fix null-ptr-deref in hugetlbfs_parse_param() + - drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() + - drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() + - orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() + - orangefs: Fix kmemleak in orangefs_{kernel,client}_debug_init() + - KVM: selftests: Fix build regression by using accessor function + - hwmon: (jc42) Fix missing unlock on error in jc42_write() + - ALSA: hda: add snd_hdac_stop_streams() helper + - ASoC: Intel: Skylake: Fix driver hang during shutdown + - ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in + mt8173_rt5650_rt5514_dev_probe() + - ASoC: audio-graph-card: fix refcount leak of cpu_ep in + __graph_for_each_link() + - ASoC: rockchip: pdm: Add missing clk_disable_unprepare() in + rockchip_pdm_runtime_resume() + - ASoC: mediatek: mt8183: fix refcount leak in + mt8183_mt6358_ts3a227_max98357_dev_probe() + - ASoC: wm8994: Fix potential deadlock + - ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in + rk_spdif_runtime_resume() + - ASoC: rt5670: Remove unbalanced pm_runtime_put() + - drm/i915/display: Don't disable DDI/Transcoder when setting phy test pattern + - LoadPin: Ignore the "contents" argument of the LSM hooks + - pstore: Switch pmsg_lock to an rt_mutex to avoid priority inversion + - perf debug: Set debug_peo_args and redirect_to_stderr variable to correct + values in perf_quiet_option() + - afs: Fix lost servers_outstanding count + - pstore: Make sure CONFIG_PSTORE_PMSG selects CONFIG_RT_MUTEXES + - ALSA: usb-audio: add the quirk for KT0206 device + - ALSA: hda/realtek: Add quirk for Lenovo TianYi510Pro-14IOB + - ALSA: hda/hdmi: Add HP Device 0x8711 to force connect list + - usb: cdnsp: fix lack of ZLP for ep0 + - usb: xhci-mtk: fix leakage of shared hcd when fail to set wakeup irq + - arm64: dts: qcom: sm8250: fix USB-DP PHY registers + - usb: dwc3: Fix race between dwc3_set_mode and __dwc3_set_mode + - usb: dwc3: core: defer probe on ulpi_read_id timeout + - xhci: Prevent infinite loop in transaction errors recovery for streams + - HID: wacom: Ensure bootloader PID is usable in hidraw mode + - HID: mcp2221: don't connect hidraw + - loop: Fix the max_loop commandline argument treatment when it is set to 0 + - 9p: set req refcount to zero to avoid uninitialized usage + - security: Restrict CONFIG_ZERO_CALL_USED_REGS to gcc or clang > 15.0.6 + - reiserfs: Add missing calls to reiserfs_security_free() + - iio: fix memory leak in iio_device_register_eventset() + - iio: adc: ad_sigma_delta: do not use internal iio_dev lock + - iio: adc128s052: add proper .data members in adc128_of_match table + - regulator: core: fix deadlock on regulator enable + - floppy: Fix memory leak in do_floppy_init() + - gcov: add support for checksum field + - fbdev: fbcon: release buffer when fbcon_do_set_font() failed + - ovl: fix use inode directly in rcu-walk mode + - btrfs: do not BUG_ON() on ENOMEM when dropping extent items for a range + - scsi: qla2xxx: Fix crash when I/O abort times out + - net: stmmac: fix errno when create_singlethread_workqueue() fails + - media: dvbdev: fix build warning due to comments + - media: dvbdev: fix refcnt bug + - extcon: usbc-tusb320: Call the Type-C IRQ handler only if a port is + registered + - mfd: qcom_rpm: Use devm_of_platform_populate() to simplify code + - pwm: tegra: Fix 32 bit build + - staging: r8188eu: fix led register settings + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 "brg_int" clock + - memory: renesas-rpc-if: Clear HS bit during hardware initialization + - firmware: ti_sci: Fix polled mode during system suspend + - arm64: dts: qcom: sc7180-trogdor-homestar: fully configure secondary I2S + pins + - arm64: dts: qcom: sm8450: fix UFS PHY registers + - arm64: dts: qcom: sm6350: drop bogus DP PHY clock + - arm64: dts: qcom: pm6350: Include header for KEY_POWER + - arm64: dts: renesas: r9a09g011: Fix unit address format error + - dt-bindings: pwm: fix microchip corePWM's pwm-cells + - arm64: dts: mt7986: fix trng node name + - drivers: perf: marvell_cn10k: Fix hotplug callback leak in tad_pmu_init() + - arm64: dts: ti: k3-j721s2: Fix the interrupt ranges property for main & wkup + gpio intr + - arm64: dts: mediatek: mt8195: Fix CPUs capacity-dmips-mhz + - arm64: dts: mt7896a: Fix unit_address_vs_reg warning for oscillator + - soc: apple: sart: Stop casting function pointer signatures + - soc: apple: rtkit: Stop casting function pointer signatures + - drivers/perf: hisi: Fix some event id for hisi-pcie-pmu + - arch: arm64: apple: t8103: Use standard "iommu" node name + - sched/uclamp: Fix fits_capacity() check in feec() + - sched/uclamp: Make cpu_overutilized() use util_fits_cpu() + - sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit + condition + - sched/psi: Fix possible missing or delayed pending event + - x86/split_lock: Add sysctl to control the misery mode + - selftests: cgroup: fix unsigned comparison with less than zero + - cpufreq: qcom-hw: Fix the frequency returned by cpufreq_driver->get() + - mailbox: pcc: Reset pcc_chan_count to zero in case of PCC probe failure + - ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object + - ACPI: pfr_update: use ACPI_FREE() to free acpi_object + - NFSD: Finish converting the NFSv3 GETACL result encoder + - ocfs2: fix memory leak in ocfs2_mount_volume() + - erofs: Fix pcluster memleak when its block address is zero + - erofs: fix missing unmap if z_erofs_get_extent_compressedlen() fails + - NFSD: pass range end to vfs_fsync_range() instead of count + - ipc: fix memory leak in init_mqueue_fs() + - wifi: ath11k: fix firmware assert during bandwidth change for peer sta + - libbpf: Fix memory leak in parse_usdt_arg() + - selftest/bpf: Fix memory leak in kprobe_multi_test + - selftests/bpf: Fix error failure of case test_xdp_adjust_tail_grow + - selftest/bpf: Fix error usage of ASSERT_OK in xdp_adjust_tail.c + - libbpf: Use elf_getshdrnum() instead of e_shnum + - libbpf: Deal with section with no data gracefully + - ASoC: Intel: avs: Fix potential RX buffer overflow + - drm/bridge: it6505: Initialize AUX channel in it6505_i2c_probe + - Input: iqs7222 - set all ULP entry masks by default + - Input: iqs7222 - drop unused device node references + - Input: iqs7222 - report malformed properties + - Input: iqs7222 - protect against undefined slider size + - media: amphion: reset instance if it's aborted before codec header parsed + - media: mediatek: vcodec: fix h264 cavlc bitstream fail + - drm/i915: Fix compute pre-emption w/a to apply to compute engines + - media: i2c: hi846: Fix memory leak in hi846_parse_dt() + - media: i2c: ov5648: Free V4L2 fwnode data on unbind + - clk: renesas: r8a779a0: Fix SD0H clock name + - ASoC: dt-bindings: rt5682: Set sound-dai-cells to 1 + - dw9768: Enable low-power probe on ACPI + - drm/ttm: fix undefined behavior in bit shift for TTM_TT_FLAG_PRIV_POPULATED + - drm/msm/mdp5: stop overriding drvdata + - bpf: Clobber stack slot when writing over spilled PTR_TO_BTF_ID + - drm/msm/dpu1: Account for DSC's bits_per_pixel having 4 fractional bits + - drm/msm/dsi: Remove useless math in DSC calculations + - drm/msm/dsi: Remove repeated calculation of slice_per_intf + - drm/msm/dsi: Use DIV_ROUND_UP instead of conditional increment on modulo + - drm/msm/dsi: Reuse earlier computed dsc->slice_chunk_size + - drm/msm/dsi: Appropriately set dsc->mux_word_size based on bpc + - media: rkvdec: Add required padding + - clk: qcom: gcc-ipq806x: use parent_data for the last remaining entry + - clk: qcom: dispcc-sm6350: Add CLK_OPS_PARENT_ENABLE to pixel&byte src + - mtd: core: fix possible resource leak in init_mtd() + - clk: renesas: r8a779f0: Fix SCIF parent clocks + - virt/sev-guest: Add a MODULE_ALIAS + - wifi: rtw89: use u32_encode_bits() to fill MAC quota value + - drm: rcar-du: Drop leftovers dependencies from Kconfig + - drbd: use blk_queue_max_discard_sectors helper + - dt-bindings: pinctrl: update uart/mmc bindings for MT7986 SoC + - pinctrl: mediatek: fix the pinconf register offset of some pins + - wifi: iwlwifi: mei: make sure ownership confirmed message is sent + - wifi: iwlwifi: mei: don't send SAP commands if AMT is disabled + - wifi: iwlwifi: mei: fix tx DHCP packet for devices with new Tx API + - wifi: iwlwifi: mei: avoid blocking sap messages handling due to rtnl lock + - wifi: iwlwifi: mei: fix potential NULL-ptr deref after clone + - module: Fix NULL vs IS_ERR checking for module_get_next_page + - wifi: rtw89: Fix some error handling path in rtw89_core_sta_assoc() + - net: ethernet: mtk_eth_soc: do not overwrite mtu configuration running reset + routine + - media: amphion: add lock around vdec_g_fmt + - media: amphion: apply vb2_queue_error instead of setting manually + - media: amphion: Fix error handling in vpu_driver_init() + - net: ethernet: mtk_eth_soc: fix RSTCTRL_PPE{0,1} definitions + - clk: imx93: correct the flexspi1 clock setting + - HID: i2c: let RMI devices decide what constitutes wakeup event + - clk: imx93: unmap anatop base in error handling path + - clk: imx93: correct enet clock + - clk: imx: imxrt1050: fix IMXRT1050_CLK_LCDIF_APB offsets + - wifi: rtw89: fix physts IE page check + - ASoC: Intel: avs: Lock substream before snd_pcm_stop() + - drm/i915/guc: make default_lists const data + - mtd: core: Fix refcount error in del_mtd_device() + - media: imx: imx7-media-csi: Clear BIT_MIPI_DOUBLE_CMPNT for <16b formats + - x86/boot: Skip realmode init code when running as Xen PV guest + - media: amphion: try to wakeup vpu core to avoid failure + - media: amphion: cancel vpu before release instance + - media: amphion: lock and check m2m_ctx in event handler + - media: mediatek: vcodec: Fix getting NULL pointer for dst buffer + - media: mediatek: vcodec: Fix h264 set lat buffer error + - media: mediatek: vcodec: Setting lat buf to lat_list when lat decode error + - media: mediatek: vcodec: Core thread depends on core_list + - NFSv4.2: Always decode the security label + - wifi: plfxlc: fix potential memory leak in __lf_x_usb_enable_rx() + - wifi: rtl8xxxu: Fix use after rcu_read_unlock in rtl8xxxu_bss_info_changed + - clk: mediatek: fix dependency of MT7986 ADC clocks + - amdgpu/nv.c: Corrected typo in the video capabilities resolution + - drm/i915/bios: fix a memory leak in generate_lfp_data_ptrs + - clk: visconti: Fix memory leak in visconti_register_pll() + - wifi: mac80211: fix memory leak in ieee80211_if_add() + - wifi: mt76: mt7915: fix mt7915_mac_set_timing() + - wifi: mt76: mt7915: fix reporting of TX AGGR histogram + - mt76: mt7915: Fix PCI device refcount leak in mt7915_pci_init_hif2() + - dt-bindings: clock: Add resets for LPASS audio clock controller for SC7280 + - dt-bindings: clock: Add support for external MCLKs for LPASS on SC7280 + - clk: qcom: lpass: Add support for resets & external mclk for SC7280 + - pinctrl: thunderbay: fix possible memory leak in + thunderbay_build_functions() + - bpftool: Fix memory leak in do_build_table_cb + - mmc: litex_mmc: ensure `host->irq == 0` if polling + - ipvs: use u64_stats_t for the per-cpu counters + - net: setsockopt: fix IPV6_UNICAST_IF option for connected sockets + - net: ethernet: ti: am65-cpsw: Fix PM runtime leakage in + am65_cpsw_nuss_ndo_slave_open() + - crypto: hisilicon/qm - re-enable communicate interrupt before notifying PF + - fortify: Do not cast to "unsigned char" + - f2fs: allow to set compression for inlined file + - f2fs: fix the assign logic of iocb + - RDMA/irdma: Fix inline for multiple SGE's + - RDMA/irdma: Fix RQ completion opcode + - RDMA/irdma: Do not request 2-level PBLEs for CQ alloc + - RDMA/rxe: Fix mr->map double free + - RDMA/hns: Fix incorrect sge nums calculation + - RDMA/irdma: Initialize net_type before checking it + - scsi: ufs: core: Fix the polling implementation + - f2fs: set zstd compress level correctly + - f2fs: fix to enable compress for newly created file if extension matches + - crypto: qat - fix error return code in adf_probe + - RDMA: Disable IB HW for UML + - PCI: vmd: Fix secondary bus reset for Intel bridges + - RDMA/hns: Fix the gid problem caused by free mr + - RDMA/hns: Fix XRC caps on HIP08 + - RISC-V: Fix unannoted hardirqs-on in return to userspace slow-path + - RISC-V: Fix MEMREMAP_WB for systems with Svpbmt + - riscv: Fix crash during early errata patching + - f2fs: fix iostat parameter for discard + - riscv: Fix P4D_SHIFT definition for 3-level page table mode + - interconnect: qcom: sc7180: fix dropped const of qcom_icc_bcm + - usb: typec: tipd: Fix typec_unregister_port error paths + - usb: musb: omap2430: Fix probe regression for missing resources + - USB: gadget: Fix use-after-free during usb config switch + - tracing/user_events: Fix call print_fmt leak + - usb: typec: wusb3801: fix fwnode refcount leak in wusb3801_probe() + - thermal/drivers/k3_j72xx_bandgap: Fix the debug print message + - led: qcom-lpg: Fix sleeping in atomic + - watchdog: iTCO_wdt: Set NO_REBOOT if the watchdog is not already running + - power: supply: cw2015: Fix potential null-ptr-deref in cw_bat_probe() + - perf off_cpu: Fix a typo in BTF tracepoint name, it should be + 'btf_trace_sched_switch' + - ftrace: Allow WITH_ARGS flavour of graph tracer with shadow call stack + - phy: marvell: phy-mvebu-a3700-comphy: Reset COMPHY registers before USB 3.0 + power on + - iommu/s390: Fix duplicate domain attachments + - iommu/sun50i: Implement .iotlb_sync_map + - phy: usb: Use slow clock for wake enabled suspend + - phy: usb: Fix clock imbalance for suspend/resume + - pwm: tegra: Ensure the clock rate is not less than needed + - rtc: rzn1: Check return value in rzn1_rtc_probe + - rtc: class: Fix potential memleak in devm_rtc_allocate_device() + - iommu/mediatek: Check return value after calling platform_get_resource() + - kprobes: Fix check for probe enabled in kill_kprobe() + - iommu/mediatek: Add platform_device_put for recovering the device refcnt + - iommu/mediatek: Use component_match_add + - iommu/mediatek: Add error path for loop of mm_dts_parse + - iommu/mediatek: Validate number of phandles associated with "mediatek,larbs" + - mfd: axp20x: Do not sleep in the power off handler + - selftests/bpf: Select CONFIG_FUNCTION_ERROR_INJECTION + - mctp: serial: Fix starting value for frame check sequence + - mctp: Remove device type check at unregister + - ASoC: sof_es8336: fix possible use-after-free in sof_es8336_remove() + - ALSA: hda/hdmi: fix i915 silent stream programming flow + - ALSA: hda/hdmi: set default audio parameters for KAE silent-stream + - ALSA: hda/hdmi: fix stream-id config keep-alive for rt suspend + - lkdtm: cfi: Make PAC test work with GCC 7 and 8 + - drm/amd/pm: avoid large variable on kernel stack + - MIPS: ralink: mt7621: avoid to init common ralink reset controller + - perf test: Fix "all PMU test" to skip parametrized events + - Input: iqs7222 - avoid sending empty SYN_REPORT events + - dt-bindings: input: iqs7222: Reduce 'linux,code' to optional + - dt-bindings: input: iqs7222: Correct minimum slider size + - dt-bindings: input: iqs7222: Add support for IQS7222A v1.13+ + - Input: iqs7222 - trim force communication command + - Input: iqs7222 - add support for IQS7222A v1.13+ + - arm64: dts: qcom: sm6350: fix USB-DP PHY registers + - dt-bindings: clocks: imx8mp: Add ID for usb suspend clock + - clk: imx: imx8mp: add shared clk gate for usb suspend clk + - iio: addac: ad74413r: fix integer promotion bug in + ad74413_get_input_current_offset() + - mm/gup: disallow FOLL_FORCE|FOLL_WRITE on hugetlb mappings + + -- Brad Figg Mon, 24 Apr 2023 15:27:32 -0700 + +linux-nvidia-5.19 (5.19.0-1009.9) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1009.9 -proposed tracker (LP: #2011961) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/master) + + [ Ubuntu: 5.19.0-38.39~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-38.39~22.04.1 -proposed tracker (LP: #2012087) + * kinetic/linux: 5.19.0-38.39 -proposed tracker (LP: #2012088) + * NFS deathlock with last Kernel 5.4.0-144.161 and 5.15.0-67.74 (LP: #2009325) + - NFS: Correct timing for assigning access cache timestamp + + [ Ubuntu: 5.19.0-37.38~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-37.38~22.04.1 -proposed tracker (LP: #2008304) + * Some QHD panels fail to refresh when PSR2 enabled (LP: #2009014) + - drm/i915/psr: Use full update In case of area calculation fails + - drm/i915: Ensure damage clip area is within pipe area + - SAUCE: drm/i915/psr: Use calculated io and fast wake lines + * kinetic/linux: 5.19.0-37.38 -proposed tracker (LP: #2008305) + * XPS 9320 screen flicker on UHD panel 3840x2400 (LP: #2007516) + - SAUCE: drm/i915/display/psr: Disable PSR2 sel fetch on panel SHP 5457 + * Fix speaker mute hotkey doesn't work on Dell G16 series (LP: #2003161) + - platform/x86: dell-wmi: Add a keymap for KEY_MUTE in type 0x0010 table + * net:cmsg_ipv6.sh from ubuntu_kernel_selftests failed with K-5.19 + (LP: #2000709) + - selftest: net: Improve IPV6_TCLASS/IPV6_HOPLIMIT tests apparmor + compatibility + * rtcpie in timers from ubuntu_kernel_selftests randomly failing + (LP: #1814234) + - SAUCE: selftest: rtcpie: Force passing unreliable subtest + * CVE-2023-0469 + - io_uring/filetable: fix file reference underflow + * Improve arp_ndisc_evict_nocarrier.sh test result processing (LP: #2006546) + - selftests: net: return non-zero for failures reported in + arp_ndisc_evict_nocarrier + * Make cm32181 sensor work after system suspend (LP: #1981773) + - iio: light: cm32181: Add PM support + * Fix Thunderbolt device hotplug fail when connect via thunderbolt dock + (LP: #1991366) + - PCI: Fix used_buses calculation in pci_scan_child_bus_extend() + - PCI: Pass available buses even if the bridge is already configured + - PCI: Move pci_assign_unassigned_root_bus_resources() + - PCI: Fix whitespace and indentation + - PCI: Fix typo in pci_scan_child_bus_extend() + * arp_ndisc_evict_nocarrier.sh in net from ubuntu_kernel_selftests failed on + J-oem-5.17 / K (LP: #1968310) + - selftests: net: fix cleanup_v6() for arp_ndisc_evict_nocarrier + * Screen freeze after resuming from suspend (nvme0: I/O timeout) + (LP: #1996048) + - PCI: vmd: Disable MSI remapping after suspend + * RaptorLake: Fix the Screen is shaking by onboard HDMI port in mirror mode + (LP: #1993561) + - drm/i915/display: Drop check for doublescan mode in modevalid + - drm/i915/display: Prune Interlace modes for Display >=12 + * udpgro_frglist.sh in net from ubuntu_kernel_selftests failed with K-5.19 + (Missing nat6to4 helper) (LP: #2000708) + - selftests/net: mv bpf/nat6to4.c to net folder + * selftests/.../nat6to4 breaks the selftests build (LP: #1996536) + - selftests: net: Add cross-compilation support for BPF programs + - selftests: net: Fix O=dir builds + * CVE-2023-0266 // CVE-2023-0266 was assigned for this issue. + - ALSA: pcm: Move rwsem lock inside snd_ctl_elem_read to prevent UAF + * CVE-2022-4382 + - USB: gadgetfs: Fix race between mounting and unmounting + * CVE-2022-2196 + - KVM: VMX: Execute IBPB on emulated VM-exit when guest has IBRS + * ubuntu_kernel_selftests: net:udpgso_bench.sh failed (LP: #1951447) + - selftests: net: udpgso_bench: Fix racing bug between the rx/tx programs + * Kinetic update: upstream stable patchset 2023-02-02 (LP: #2004602) + - clk: generalize devm_clk_get() a bit + - clk: Provide new devm_clk helpers for prepared and enabled clocks + - mmc: mtk-sd: Fix missing clk_disable_unprepare in msdc_of_clock_parse() + - arm64: dts: rockchip: keep I2S1 disabled for GPIO function on ROCK Pi 4 + series + - arm: dts: rockchip: fix node name for hym8563 rtc + - arm: dts: rockchip: remove clock-frequency from rtc + - ARM: dts: rockchip: fix ir-receiver node names + - arm64: dts: rockchip: fix ir-receiver node names + - ARM: dts: rockchip: rk3188: fix lcdc1-rgb24 node name + - fs: use acquire ordering in __fget_light() + - ARM: 9251/1: perf: Fix stacktraces for tracepoint events in THUMB2 kernels + - ARM: 9266/1: mm: fix no-MMU ZERO_PAGE() implementation + - ASoC: wm8962: Wait for updated value of WM8962_CLOCKING1 register + - spi: mediatek: Fix DEVAPC Violation at KO Remove + - ARM: dts: rockchip: disable arm_global_timer on rk3066 and rk3188 + - ASoC: rt711-sdca: fix the latency time of clock stop prepare state machine + transitions + - 9p/fd: Use P9_HDRSZ for header size + - regulator: slg51000: Wait after asserting CS pin + - ALSA: seq: Fix function prototype mismatch in snd_seq_expand_var_event + - btrfs: send: avoid unaligned encoded writes when attempting to clone range + - ASoC: soc-pcm: Add NULL check in BE reparenting + - regulator: twl6030: fix get status of twl6032 regulators + - fbcon: Use kzalloc() in fbcon_prepare_logo() + - usb: dwc3: gadget: Disable GUSB2PHYCFG.SUSPHY for End Transfer + - 9p/xen: check logical size for buffer size + - net: usb: qmi_wwan: add u-blox 0x1342 composition + - mm/khugepaged: take the right locks for page table retraction + - mm/khugepaged: fix GUP-fast interaction by sending IPI + - mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths + - cifs: fix use-after-free caused by invalid pointer `hostname` + - xen/netback: do some code cleanup + - xen/netback: don't call kfree_skb() with interrupts disabled + - media: videobuf2-core: take mmap_lock in vb2_get_unmapped_area() + - soundwire: intel: Initialize clock stop timeout + - media: v4l2-dv-timings.c: fix too strict blanking sanity checks + - memcg: fix possible use-after-free in memcg_write_event_control() + - mm/gup: fix gup_pud_range() for dax + - Bluetooth: btusb: Add debug message for CSR controllers + - Bluetooth: Fix crash when replugging CSR fake controllers + - net: mana: Fix race on per-CQ variable napi work_done + - KVM: s390: vsie: Fix the initialization of the epoch extension (epdx) field + - drm/vmwgfx: Don't use screen objects when SEV is active + - drm/amdgpu/sdma_v4_0: turn off SDMA ring buffer in the s2idle suspend + - drm/shmem-helper: Remove errant put in error path + - drm/shmem-helper: Avoid vm_open error paths + - net: dsa: sja1105: avoid out of bounds access in sja1105_init_l2_policing() + - HID: usbhid: Add ALWAYS_POLL quirk for some mice + - HID: hid-lg4ff: Add check for empty lbuf + - HID: core: fix shift-out-of-bounds in hid_report_raw_event + - HID: ite: Enable QUIRK_TOUCHPAD_ON_OFF_REPORT on Acer Aspire Switch V 10 + - can: af_can: fix NULL pointer dereference in can_rcv_filter + - clk: Fix pointer casting to prevent oops in devm_clk_release() + - gpiolib: fix memory leak in gpiochip_setup_dev() + - netfilter: nft_set_pipapo: Actually validate intervals in fields after the + first one + - drm/vmwgfx: Fix race issue calling pin_user_pages + - ieee802154: cc2520: Fix error return code in cc2520_hw_init() + - ca8210: Fix crash by zero initializing data + - netfilter: ctnetlink: fix compilation warning after data race fixes in ct + mark + - drm/bridge: ti-sn65dsi86: Fix output polarity setting bug + - gpio: amd8111: Fix PCI device reference count leak + - e1000e: Fix TX dispatch condition + - igb: Allocate MSI-X vector when testing + - net: broadcom: Add PTP_1588_CLOCK_OPTIONAL dependency for BCMGENET under + ARCH_BCM2835 + - drm: bridge: dw_hdmi: fix preference of RGB modes over YUV420 + - af_unix: Get user_ns from in_skb in unix_diag_get_exact(). + - vmxnet3: correctly report encapsulated LRO packet + - vmxnet3: use correct intrConf reference when using extended queues + - Bluetooth: 6LoWPAN: add missing hci_dev_put() in get_l2cap_conn() + - Bluetooth: Fix not cleanup led when bt_init fails + - net: dsa: ksz: Check return value + - net: dsa: hellcreek: Check return value + - net: dsa: sja1105: Check return value + - selftests: rtnetlink: correct xfrm policy rule in kci_test_ipsec_offload + - mac802154: fix missing INIT_LIST_HEAD in ieee802154_if_add() + - net: encx24j600: Add parentheses to fix precedence + - net: encx24j600: Fix invalid logic in reading of MISTAT register + - net: mdiobus: fwnode_mdiobus_register_phy() rework error handling + - net: mdiobus: fix double put fwnode in the error path + - octeontx2-pf: Fix potential memory leak in otx2_init_tc() + - xen-netfront: Fix NULL sring after live migration + - net: mvneta: Prevent out of bounds read in mvneta_config_rss() + - i40e: Fix not setting default xps_cpus after reset + - i40e: Fix for VF MAC address 0 + - i40e: Disallow ip4 and ip6 l4_4_bytes + - NFC: nci: Bounds check struct nfc_target arrays + - nvme initialize core quirks before calling nvme_init_subsystem + - gpio/rockchip: fix refcount leak in rockchip_gpiolib_register() + - net: stmmac: fix "snps,axi-config" node property parsing + - ip_gre: do not report erspan version on GRE interface + - net: microchip: sparx5: Fix missing destroy_workqueue of mact_queue + - net: thunderx: Fix missing destroy_workqueue of nicvf_rx_mode_wq + - net: hisilicon: Fix potential use-after-free in hisi_femac_rx() + - net: mdio: fix unbalanced fwnode reference count in mdio_device_release() + - net: hisilicon: Fix potential use-after-free in hix5hd2_rx() + - tipc: Fix potential OOB in tipc_link_proto_rcv() + - ipv4: Fix incorrect route flushing when source address is deleted + - ipv4: Fix incorrect route flushing when table ID 0 is used + - net: dsa: sja1105: fix memory leak in sja1105_setup_devlink_regions() + - tipc: call tipc_lxc_xmit without holding node_read_lock + - ethernet: aeroflex: fix potential skb leak in greth_init_rings() + - dpaa2-switch: Fix memory leak in dpaa2_switch_acl_entry_add() and + dpaa2_switch_acl_entry_remove() + - net: phy: mxl-gpy: fix version reporting + - net: plip: don't call kfree_skb/dev_kfree_skb() under spin_lock_irq() + - ipv6: avoid use-after-free in ip6_fragment() + - net: thunderbolt: fix memory leak in tbnet_open() + - net: mvneta: Fix an out of bounds check + - macsec: add missing attribute validation for offload + - s390/qeth: fix use-after-free in hsci + - can: esd_usb: Allow REC and TEC to return to zero + - io_uring: Fix a null-ptr-deref in io_tctx_exit_cb() + - madvise: use zap_page_range_single for madvise dontneed + - drm/i915: Remove non-existent pipes from bigjoiner pipe mask + - arm64: dts: rockchip: Fix gmac failure of rgmii-id from rk3566-roc-pc + - arm64: dts: rockchip: Fix i2c3 pinctrl on rk3566-roc-pc + - arm64: dts: rockchip: remove i2c5 from rk3566-roc-pc + - arm64: dts: rockchip: fix node name for hym8563 rtc + - ARM: dts: rockchip: fix adc-keys sub node names + - arm64: dts: rockchip: fix adc-keys sub node names + - LoongArch: Makefile: Use "grep -E" instead of "egrep" + - LoongArch: Combine acpi_boot_table_init() and acpi_boot_init() + - LoongArch: Set _PAGE_DIRTY only if _PAGE_MODIFIED is set in + {pmd,pte}_mkwrite() + - net/mlx5: Lag, avoid lockdep warnings + - hugetlb: don't delete vma_lock in hugetlb MADV_DONTNEED processing + - crypto: ccp - Add a quirk to firmware update + - soundwire: dmi-quirks: add remapping for HP Omen 16-k0005TX + - platform/x86: asus-wmi: Adjust tablet/lidflip handling to use enum + - platform/x86: asus-wmi: Add support for ROG X13 tablet mode + - fscache: Fix oops due to race with cookie_lru and use_cookie + - tmpfs: fix data loss from failed fallocate + - selftests/tls: Fix tls selftests dependency to correct algorithm + - drm/amd/display: fix array index out of bound error in DCN32 DML + - HID: uclogic: Add HID_QUIRK_HIDINPUT_FORCE quirk + - ARM: 9278/1: kfence: only handle translation faults + - netfilter: conntrack: fix using __this_cpu_add in preemptible + - net: ethernet: ti: am65-cpsw: Fix RGMII configuration at SPEED_10 + - inet: ping: use hlist_nulls rcu iterator during lookup + - Bluetooth: Remove codec id field in vendor codec definition + - Bluetooth: Fix support for Read Local Supported Codecs V2 + - nfp: correct desc type when header dma len is 4096 + - net: microchip: sparx5: correctly free skb in xmit + - net: wwan: iosm: fix memory leak in ipc_mux_init() + - ravb: Fix potential use-after-free in ravb_rx_gbeth() + - bonding: get correct NA dest address + - net: dsa: mv88e6xxx: accept phy-mode = "internal" for internal PHY ports + - drm/amdgpu/vcn: update vcn4 fw shared data structure + - x86/vdso: Conditionally export __vdso_sgx_enter_enclave() + - ASoC: fsl_micfil: explicitly clear software reset bit + - ASoC: fsl_micfil: explicitly clear CHnF flags + - ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() + - libbpf: Use page size as max_entries when probing ring buffer map + - pinctrl: meditatek: Startup with the IRQs disabled + - can: sja1000: fix size of OCR_MODE_MASK define + - can: mcba_usb: Fix termination command argument + - net: fec: don't reset irq coalesce settings to defaults on "ip link up" + - ASoC: cs42l51: Correct PGA Volume minimum value + - perf: Fix perf_pending_task() UaF + - nvme-pci: clear the prp2 field when not used + - ASoC: ops: Correct bounds check for second channel on SX controls + - net: fec: properly guard irq coalesce setup + - libbpf: Fix uninitialized warning in btf_dump_dump_type_data + - udf: Discard preallocation before extending file with a hole + - udf: Fix preallocation discarding at indirect extent boundary + - udf: Do not bother looking for prealloc extents if i_lenExtents matches + i_size + - udf: Fix extending file within last block + - usb: gadget: uvc: Prevent buffer overflow in setup handler + - USB: serial: option: add Quectel EM05-G modem + - USB: serial: cp210x: add Kamstrup RF sniffer PIDs + - USB: serial: f81232: fix division by zero on line-speed change + - USB: serial: f81534: fix division by zero on line-speed change + - xhci: Apply XHCI_RESET_TO_DEFAULT quirk to ADL-N + - igb: Initialize mailbox message for VF reset + - usb: dwc3: pci: Update PCIe device ID for USB3 controller on CPU sub-system + for Raptor Lake + - selftests: net: Use "grep -E" instead of "egrep" + - net: loopback: use NET_NAME_PREDICTABLE for name_assign_type + - PCI: mt7621: Add sentinel to quirks table + - kallsyms: Make module_kallsyms_on_each_symbol generally available + - ftrace: Add support to resolve module symbols in ftrace_lookup_symbols + - bpf: Rename __bpf_kprobe_multi_cookie_cmp to bpf_kprobe_multi_addrs_cmp + - bpf: Take module reference on kprobe_multi link + - selftests/bpf: Add load_kallsyms_refresh function + - selftests/bpf: Add bpf_testmod_fentry_* functions + - selftests/bpf: Add kprobe_multi check to module attach test + - selftests/bpf: Add kprobe_multi kmod attach api tests + - usb: typec: ucsi: Resume in separate work + - KEYS: encrypted: fix key instantiation with user-provided data + * Kinetic update: upstream stable patchset 2023-02-02 (LP: #2004602) // + net:fcnal-test.sh 'nettest' command not found on F/K (LP: #2006391) + - selftests/net: Find nettest in current directory + * CVE-2023-23559 + - wifi: rndis_wlan: Prevent buffer overflow in rndis_query_oid + * CVE-2023-0045 + - x86/bugs: Flush IBP in ib_prctl_set() + + [ Ubuntu: 5.19.0-35.36~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-35.36~22.04.1 -proposed tracker (LP: #2004298) + * kinetic/linux: 5.19.0-35.36 -proposed tracker (LP: #2004652) + * CVE-2023-0461 + - SAUCE: Fix inet_csk_listen_start after CVE-2023-0461 + * kinetic/linux: 5.19.0-34.35 -proposed tracker (LP: #2004299) + * LXD containers using shiftfs on ZFS or TMPFS broken on 5.15.0-48.54 + (LP: #1990849) + - [SAUCE] shiftfs: fix -EOVERFLOW inside the container + * Kinetic update: upstream stable patchset 2023-01-27 (LP: #2004051) + - ASoC: fsl_sai: use local device pointer + - serial: Add rs485_supported to uart_port + - serial: fsl_lpuart: Fill in rs485_supported + - x86/sgx: Create utility to validate user provided offset and length + - x86/sgx: Add overflow check in sgx_validate_offset_length() + - binder: validate alloc->mm in ->mmap() handler + - ceph: Use kcalloc for allocating multiple elements + - ceph: fix NULL pointer dereference for req->r_session + - wifi: mac80211: fix memory free error when registering wiphy fail + - wifi: mac80211_hwsim: fix debugfs attribute ps with rc table support + - riscv: dts: sifive unleashed: Add PWM controlled LEDs + - audit: fix undefined behavior in bit shift for AUDIT_BIT + - wifi: airo: do not assign -1 to unsigned char + - wifi: mac80211: Fix ack frame idr leak when mesh has no route + - wifi: ath11k: Fix QCN9074 firmware boot on x86 + - spi: stm32: fix stm32_spi_prepare_mbr() that halves spi clk for every run + - selftests/bpf: Add verifier test for release_reference() + - Revert "net: macsec: report real_dev features when HW offloading is enabled" + - platform/x86: ideapad-laptop: Disable touchpad_switch + - platform/x86: touchscreen_dmi: Add info for the RCA Cambio W101 v2 2-in-1 + - platform/x86/intel/pmt: Sapphire Rapids PMT errata fix + - scsi: ibmvfc: Avoid path failures during live migration + - scsi: scsi_debug: Make the READ CAPACITY response compliant with ZBC + - drm: panel-orientation-quirks: Add quirk for Acer Switch V 10 (SW5-017) + - block, bfq: fix null pointer dereference in bfq_bio_bfqg() + - arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. + - nvmet: fix memory leak in nvmet_subsys_attr_model_store_locked + - Revert "drm/amdgpu: Revert "drm/amdgpu: getting fan speed pwm for vega10 + properly"" + - ALSA: usb-audio: add quirk to fix Hamedal C20 disconnect issue + - RISC-V: vdso: Do not add missing symbols to version section in linker script + - MIPS: pic32: treat port as signed integer + - xfrm: fix "disable_policy" on ipv4 early demux + - xfrm: replay: Fix ESN wrap around for GSO + - af_key: Fix send_acquire race with pfkey_register + - ARM: dts: am335x-pcm-953: Define fixed regulators in root node + - ASoC: hdac_hda: fix hda pcm buffer overflow issue + - ASoC: sgtl5000: Reset the CHIP_CLK_CTRL reg on remove + - ASoC: soc-pcm: Don't zero TDM masks in __soc_pcm_open() + - x86/hyperv: Restore VP assist page after cpu offlining/onlining + - scsi: storvsc: Fix handling of srb_status and capacity change events + - ASoC: max98373: Add checks for devm_kcalloc + - regulator: core: fix kobject release warning and memory leak in + regulator_register() + - spi: dw-dma: decrease reference count in dw_spi_dma_init_mfld() + - regulator: core: fix UAF in destroy_regulator() + - bus: sunxi-rsb: Remove the shutdown callback + - bus: sunxi-rsb: Support atomic transfers + - tee: optee: fix possible memory leak in optee_register_device() + - ARM: dts: at91: sam9g20ek: enable udc vbus gpio pinctrl + - selftests: mptcp: fix mibit vs mbit mix up + - net: liquidio: simplify if expression + - rxrpc: Fix race between conn bundle lookup and bundle removal [ZDI- + CAN-15975] + - net: dsa: sja1105: disallow C45 transactions on the BASE-TX MDIO bus + - nfc/nci: fix race with opening and closing + - net: pch_gbe: fix potential memleak in pch_gbe_tx_queue() + - 9p/fd: fix issue of list_del corruption in p9_fd_cancel() + - netfilter: conntrack: Fix data-races around ct mark + - netfilter: nf_tables: do not set up extensions for end interval + - iavf: Fix a crash during reset task + - iavf: Do not restart Tx queues after reset task failure + - iavf: Fix race condition between iavf_shutdown and iavf_remove + - ARM: mxs: fix memory leak in mxs_machine_init() + - ARM: dts: imx6q-prti6q: Fix ref/tcxo-clock-frequency properties + - net: ethernet: mtk_eth_soc: fix error handling in mtk_open() + - net/mlx4: Check retval of mlx4_bitmap_init + - net: mvpp2: fix possible invalid pointer dereference + - net/qla3xxx: fix potential memleak in ql3xxx_send() + - octeontx2-af: debugsfs: fix pci device refcount leak + - net: pch_gbe: fix pci device refcount leak while module exiting + - nfp: fill splittable of devlink_port_attrs correctly + - nfp: add port from netdev validation for EEPROM access + - macsec: Fix invalid error code set + - Drivers: hv: vmbus: fix double free in the error path of + vmbus_add_channel_work() + - Drivers: hv: vmbus: fix possible memory leak in vmbus_device_register() + - netfilter: ipset: regression in ip_set_hash_ip.c + - net/mlx5: Do not query pci info while pci disabled + - net/mlx5: Fix FW tracer timestamp calculation + - net/mlx5: Fix handling of entry refcount when command is not issued to FW + - tipc: set con sock in tipc_conn_alloc + - tipc: add an extra conn_get in tipc_conn_alloc + - tipc: check skb_linearize() return value in tipc_disc_rcv() + - xfrm: Fix oops in __xfrm_state_delete() + - xfrm: Fix ignored return value in xfrm6_init() + - net: wwan: iosm: use ACPI_FREE() but not kfree() in ipc_pcie_read_bios_cfg() + - sfc: fix potential memleak in __ef100_hard_start_xmit() + - net: sparx5: fix error handling in sparx5_port_open() + - net: sched: allow act_ct to be built without NF_NAT + - NFC: nci: fix memory leak in nci_rx_data_packet() + - regulator: twl6030: re-add TWL6032_SUBCLASS + - bnx2x: fix pci device refcount leak in bnx2x_vf_is_pcie_pending() + - dma-buf: fix racing conflict of dma_heap_add() + - netfilter: ipset: restore allowing 64 clashing elements in hash:net,iface + - netfilter: flowtable_offload: add missing locking + - fs: do not update freeing inode i_io_list + - dccp/tcp: Reset saddr on failure after inet6?_hash_connect(). + - ipv4: Fix error return code in fib_table_insert() + - arcnet: fix potential memory leak in com20020_probe() + - s390/dasd: fix no record found for raw_track_access + - nfc: st-nci: fix incorrect validating logic in EVT_TRANSACTION + - nfc: st-nci: fix memory leaks in EVT_TRANSACTION + - nfc: st-nci: fix incorrect sizing calculations in EVT_TRANSACTION + - net: enetc: cache accesses to &priv->si->hw + - net: enetc: preserve TX ring priority across reconfiguration + - octeontx2-pf: Add check for devm_kcalloc + - octeontx2-af: Fix reference count issue in rvu_sdp_init() + - net: thunderx: Fix the ACPI memory leak + - s390/crashdump: fix TOD programmable field size + - lib/vdso: use "grep -E" instead of "egrep" + - [Config] updateconfigs for CC_HAS_ASM_GOTO_TIED_OUTPUT + - init/Kconfig: fix CC_HAS_ASM_GOTO_TIED_OUTPUT test with dash + - nios2: add FORCE for vmlinuz.gz + - KVM: arm64: pkvm: Fixup boot mode to reflect that the kernel resumes from + EL1 + - usb: dwc3: exynos: Fix remove() function + - usb: cdnsp: Fix issue with Clear Feature Halt Endpoint + - usb: cdnsp: fix issue with ZLP - added TD_SIZE = 1 + - ext4: fix use-after-free in ext4_ext_shift_extents + - arm64: dts: rockchip: lower rk3399-puma-haikou SD controller clock frequency + - iio: light: apds9960: fix wrong register for gesture gain + - iio: core: Fix entry not deleted when iio_register_sw_trigger_type() fails + - bus: ixp4xx: Don't touch bit 7 on IXP42x + - usb: dwc3: gadget: conditionally remove requests + - usb: dwc3: gadget: Return -ESHUTDOWN on ep disable + - usb: dwc3: gadget: Clear ep descriptor last + - nilfs2: fix nilfs_sufile_mark_dirty() not set segment usage as dirty + - gcov: clang: fix the buffer overflow issue + - mm: vmscan: fix extreme overreclaim and swap floods + - KVM: x86: nSVM: leave nested mode on vCPU free + - KVM: x86: forcibly leave nested mode on vCPU reset + - KVM: x86: nSVM: harden svm_free_nested against freeing vmcb02 while still in + use + - KVM: x86: add kvm_leave_nested + - KVM: x86: remove exit_int_info warning in svm_handle_exit + - x86/tsx: Add a feature bit for TSX control MSR support + - x86/pm: Add enumeration check before spec MSRs save/restore setup + - x86/ioremap: Fix page aligned size calculation in __ioremap_caller() + - Input: synaptics - switch touchpad on HP Laptop 15-da3001TU to RMI mode + - ASoC: Intel: bytcht_es8316: Add quirk for the Nanote UMPC-01 + - tools: iio: iio_generic_buffer: Fix read size + - serial: 8250: 8250_omap: Avoid RS485 RTS glitch on ->set_termios() + - Input: goodix - try resetting the controller when no config is set + - Input: soc_button_array - add use_low_level_irq module parameter + - Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[] + - Input: i8042 - apply probe defer to more ASUS ZenBook models + - ASoC: stm32: dfsdm: manage cb buffers cleanup + - xen-pciback: Allow setting PCI_MSIX_FLAGS_MASKALL too + - xen/platform-pci: add missing free_irq() in error path + - platform/x86: asus-wmi: add missing pci_dev_put() in asus_wmi_set_xusb2pr() + - platform/x86: acer-wmi: Enable SW_TABLET_MODE on Switch V 10 (SW5-017) + - drm/amdgpu: disable BACO support on more cards + - zonefs: fix zone report size in __zonefs_io_error() + - platform/x86: hp-wmi: Ignore Smart Experience App event + - platform/x86: ideapad-laptop: Fix interrupt storm on fn-lock toggle on some + Yoga laptops + - [Config] updateconfigs for INET_TABLE_PERTURB_ORDER + - tcp: configurable source port perturb table size + - net: usb: qmi_wwan: add Telit 0x103a composition + - scsi: iscsi: Fix possible memory leak when device_register() failed + - gpu: host1x: Avoid trying to use GART on Tegra20 + - dm integrity: flush the journal on suspend + - dm integrity: clear the journal on suspend + - fuse: lock inode unconditionally in fuse_fallocate() + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_OPER_CHANNEL attribute + - wifi: wilc1000: validate length of IEEE80211_P2P_ATTR_CHANNEL_LIST attribute + - wifi: wilc1000: validate number of channels + - btrfs: free btrfs_path before copying root refs to userspace + - btrfs: free btrfs_path before copying fspath to userspace + - btrfs: free btrfs_path before copying subvol info to userspace + - btrfs: zoned: fix missing endianness conversion in sb_write_pointer + - btrfs: use kvcalloc in btrfs_get_dev_zone_info + - btrfs: sysfs: normalize the error handling branch in btrfs_init_sysfs() + - drm/amd/dc/dce120: Fix audio register mapping, stop triggering KASAN + - drm/amdgpu: Enable Aldebaran devices to report CU Occupancy + - drm/amdgpu: always register an MMU notifier for userptr + - drm/i915: fix TLB invalidation for Gen12 video and compute engines + - wifi: cfg80211: Fix bitrates overflow issue + - spi: tegra210-quad: Don't initialise DMA if not supported + - s390/zcrypt: fix warning about field-spanning write + - selftests/net: give more time to udpgro bg processes to complete startup + - ACPI: video: Add backlight=native DMI quirk for Dell G15 5515 + - drm: panel-orientation-quirks: Add quirk for Nanote UMPC-01 + - s390: always build relocatable kernel + - nvme: quiet user passthrough command errors + - net: wwan: iosm: fix kernel test robot reported errors + - drm/amdgpu: Drop eviction lock when allocating PT BO + - arm64: dts: rockchip: fix quartz64-a bluetooth configuration + - power: supply: ip5xxx: Fix integer overflow in current_now calculation + - power: supply: ab8500: Defer thermal zone probe + - arm64: dts: rockchip: Fix Pine64 Quartz4-B PMIC interrupt + - regulator: rt5759: fix OOB in validate_desc() + - spi: tegra210-quad: Fix duplicate resource error + - selftests: mptcp: gives slow test-case more time + - selftests: mptcp: run mptcp_sockopt from a new netns + - bonding: fix ICMPv6 header handling when receiving IPv6 messages + - drm/i915: Fix warn in intel_display_power_*_domain() functions + - net/mlx5: SF: Fix probing active SFs during driver probe phase + - net/mlx5: cmdif, Print info on any firmware cmd failure to tracepoint + - net/mlx5: E-Switch, Set correctly vport destination + - net/mlx5e: Offload rule only when all encaps are valid + - net: phy: at803x: fix error return code in at803x_probe() + - zonefs: Fix race between modprobe and mount + - tsnep: Fix rotten packets + - blk-mq: fix queue reference leak on blk_mq_alloc_disk_for_queue failure + - test_kprobes: fix implicit declaration error of test_kprobes + - net: ethernet: mtk_eth_soc: fix resource leak in error path + - net: dm9051: Fix missing dev_kfree_skb() in dm9051_loop_rx() + - s390/ap: fix memory leak in ap_init_qci_info() + - fscache: fix OOB Read in __fscache_acquire_volume + - net: wwan: t7xx: Fix the ACPI memory leak + - virtio_net: Fix probe failed when modprobe virtio_net + - can: gs_usb: remove dma allocations + - cifs: fix missing unlock in cifs_file_copychunk_range() + - cifs: Use after free in debug code + - iio: adc: aspeed: Remove the trim valid dts property. + - dt-bindings: iio: adc: Remove the property "aspeed,trim-data-valid" + - mm/damon/sysfs-schemes: skip stats update if the scheme directory is removed + - virt/sev-guest: Prevent IV reuse in the SNP guest driver + - zonefs: Fix active zone accounting + - spi: spi-imx: Fix spi_bus_clk if requested clock is higher than input clock + - spi: spi-imx: spi_imx_transfer_one(): check for DMA transfer first + - mm/cgroup/reclaim: fix dirty pages throttling on cgroup v1 + - KVM: x86/mmu: Fix race condition in direct_page_fault + - KVM: x86/xen: Only do in-kernel acceleration of hypercalls for guest CPL0 + - KVM: x86/xen: Validate port number in SCHEDOP_poll + - drm/i915/gvt: Get reference to KVM iff attachment to VM is successful + - KVM: Update gfn_to_pfn_cache khva when it moves within the same page + - mm: fix unexpected changes to {failslab|fail_page_alloc}.attr + - mm: correctly charge compressed memory to its memcg + - LoongArch: Clear FPU/SIMD thread info flags for kernel thread + - LoongArch: Set _PAGE_DIRTY only if _PAGE_WRITE is set in {pmd,pte}_mkdirty() + - ASoC: amd: yc: Add Alienware m17 R5 AMD into DMI table + - ASoC: Intel: soc-acpi: add ES83x6 support to IceLake + - ASoC: hda: intel-dsp-config: add ES83x6 quirk for IceLake + - ASoC: SOF: ipc3-topology: use old pipeline teardown flow with SOF2.1 and + older + - Revert "tty: n_gsm: avoid call of sleeping functions from atomic context" + - Revert "tty: n_gsm: replace kicktimer with delayed_work" + - ASoC: sof_es8336: reduce pop noise on speaker + - pinctrl: qcom: sc8280xp: Rectify UFS reset pins + - platform/x86: thinkpad_acpi: Enable s2idle quirk for 21A1 machine type + - platform/x86: ideapad-laptop: Add module parameters to match DMI quirk + tables + - block: make blk_set_default_limits() private + - scsi: mpi3mr: Suppress command reply debug prints + - btrfs: free btrfs_path before copying inodes to userspace + - btrfs: do not modify log tree while holding a leaf from fs tree locked + - drm/i915/ttm: never purge busy objects + - drm/display/dp_mst: Fix drm_dp_mst_add_affected_dsc_crtcs() return code + - drm/amdgpu/psp: don't free PSP buffers on suspend + - drm/amd/amdgpu: reserve vm invalidation engine for firmware + - drm/amdgpu: Partially revert "drm/amdgpu: update drm_display_info correctly + when the edid is read" + - btrfs: sink iterator parameter to btrfs_ioctl_logical_to_ino + - btrfs: qgroup: fix sleep from invalid context bug in btrfs_qgroup_inherit() + - iio: health: afe4403: Fix oob read in afe4403_read_raw + - iio: health: afe4404: Fix oob read in afe4404_[read|write]_raw + - iio: light: rpr0521: add missing Kconfig dependencies + - bpf, perf: Use subprog name when reporting subprog ksymbol + - scripts/faddr2line: Fix regression in name resolution on ppc64le + - ARM: at91: rm9200: fix usb device clock id + - libbpf: Handle size overflow for ringbuf mmap + - hwmon: (ltc2947) fix temperature scaling + - hwmon: (ina3221) Fix shunt sum critical calculation + - hwmon: (i5500_temp) fix missing pci_disable_device() + - hwmon: (ibmpex) Fix possible UAF when ibmpex_register_bmc() fails + - bpf: Do not copy spin lock field from user in bpf_selem_alloc + - nvmem: rmem: Fix return value check in rmem_read() + - of: property: decrement node refcount in of_fwnode_get_reference_args() + - ixgbevf: Fix resource leak in ixgbevf_init_module() + - i40e: Fix error handling in i40e_init_module() + - fm10k: Fix error handling in fm10k_init_module() + - iavf: Fix error handling in iavf_init_module() + - e100: Fix possible use after free in e100_xmit_prepare + - net/mlx5: DR, Fix uninitialized var warning + - net/mlx5: Fix uninitialized variable bug in outlen_write() + - net/mlx5e: Fix use-after-free when reverting termination table + - can: sja1000_isa: sja1000_isa_probe(): add missing free_sja1000dev() + - can: cc770: cc770_isa_probe(): add missing free_cc770dev() + - can: etas_es58x: es58x_init_netdev(): free netdev when register_candev() + - can: m_can: pci: add missing m_can_class_free_dev() in probe/remove methods + - can: m_can: Add check for devm_clk_get + - qlcnic: fix sleep-in-atomic-context bugs caused by msleep + - aquantia: Do not purge addresses when setting the number of rings + - wifi: cfg80211: fix buffer overflow in elem comparison + - wifi: cfg80211: don't allow multi-BSSID in S1G + - wifi: mac8021: fix possible oob access in ieee80211_get_rate_duration + - net: phy: fix null-ptr-deref while probe() failed + - net: ethernet: ti: am65-cpsw: fix error handling in am65_cpsw_nuss_probe() + - net: net_netdev: Fix error handling in ntb_netdev_init_module() + - net/9p: Fix a potential socket leak in p9_socket_open + - net: ethernet: nixge: fix NULL dereference + - net: wwan: iosm: fix kernel test robot reported error + - net: wwan: iosm: fix dma_alloc_coherent incompatible pointer type + - dsa: lan9303: Correct stat name + - tipc: re-fetch skb cb after tipc_msg_validate + - net: hsr: Fix potential use-after-free + - net: mdiobus: fix unbalanced node reference count + - afs: Fix fileserver probe RTT handling + - net: tun: Fix use-after-free in tun_detach() + - packet: do not set TP_STATUS_CSUM_VALID on CHECKSUM_COMPLETE + - sctp: fix memory leak in sctp_stream_outq_migrate() + - net: ethernet: renesas: ravb: Fix promiscuous mode after system resumed + - hwmon: (coretemp) Check for null before removing sysfs attrs + - hwmon: (coretemp) fix pci device refcount leak in nv1a_ram_new() + - riscv: vdso: fix section overlapping under some conditions + - riscv: mm: Proper page permissions after initmem free + - ALSA: dice: fix regression for Lexicon I-ONIX FW810S + - error-injection: Add prompt for function error injection + - tools/vm/slabinfo-gnuplot: use "grep -E" instead of "egrep" + - nilfs2: fix NULL pointer dereference in nilfs_palloc_commit_free_entry() + - x86/bugs: Make sure MSR_SPEC_CTRL is updated properly upon resume from S3 + - pinctrl: intel: Save and restore pins in "direct IRQ" mode + - v4l2: don't fall back to follow_pfn() if pin_user_pages_fast() fails + - net: stmmac: Set MAC's flow control register to reflect current settings + - mmc: mmc_test: Fix removal of debugfs file + - mmc: core: Fix ambiguous TRIM and DISCARD arg + - mmc: sdhci-esdhc-imx: correct CQHCI exit halt state check + - mmc: sdhci-sprd: Fix no reset data and command after voltage switch + - mmc: sdhci: Fix voltage switch delay + - drm/amdgpu: temporarily disable broken Clang builds due to blown stack-frame + - drm/amdgpu: enable Vangogh VCN indirect sram mode + - drm/i915: Fix negative value passed as remaining time + - drm/i915: Never return 0 if not all requests retired + - tracing/osnoise: Fix duration type + - tracing: Fix race where histograms can be called before the event + - tracing: Free buffers when a used dynamic event is removed + - io_uring: cmpxchg for poll arm refs release + - io_uring/poll: fix poll_refs race with cancelation + - ASoC: ops: Fix bounds check for _sx controls + - pinctrl: single: Fix potential division by zero + - riscv: Sync efi page table's kernel mappings before switching + - riscv: fix race when vmap stack overflow + - riscv: kexec: Fixup irq controller broken in kexec crash path + - nvme: fix SRCU protection of nvme_ns_head list + - iommu/vt-d: Fix PCI device refcount leak in has_external_pci() + - iommu/vt-d: Fix PCI device refcount leak in dmar_dev_scope_init() + - mm: migrate: fix THP's mapcount on isolation + - Kconfig.debug: provide a little extra FRAME_WARN leeway when KASAN is + enabled + - ipv4: Handle attempt to delete multipath route when fib_info contains an nh + reference + - ipv4: Fix route deletion when nexthop info is not specified + - i2c: npcm7xx: Fix error handling in npcm_i2c_init() + - i2c: imx: Only DMA messages with I2C_M_DMA_SAFE flag set + - ACPI: HMAT: remove unnecessary variable initialization + - ACPI: HMAT: Fix initiator registration for single-initiator systems + - Revert "clocksource/drivers/riscv: Events are stopped during CPU suspend" + - char: tpm: Protect tpm_pm_suspend with locks + - Input: raydium_ts_i2c - fix memory leak in raydium_i2c_send() + - ipc/sem: Fix dangling sem_array access in semtimedop race + - clk: samsung: exynos7885: Correct "div4" clock parents + - libbpf: Use correct return pointer in attach_raw_tp + - clocksource/drivers/arm_arch_timer: Fix XGene-1 TVAL register math error + - clk: qcom: gcc-sc8280xp: add cxo as parent for three ufs ref clks + - vfs: fix copy_file_range() averts filesystem freeze protection + - net: wwan: iosm: fix crash in peek throughput test + - net: wwan: iosm: fix incorrect skb length + - mptcp: don't orphan ssk in mptcp_close() + - mptcp: fix sleep in atomic at close time + - hwmon: (asus-ec-sensors) Add checks for devm_kcalloc + - ASoC: tlv320adc3xxx: Fix build error for implicit function declaration + - mm/damon/sysfs: fix wrong empty schemes assumption under online tuning in + damon_sysfs_set_schemes() + - i2c: Restore initial power state if probe fails + - i2c: qcom-geni: fix error return code in geni_i2c_gpi_xfer + - powerpc/bpf/32: Fix Oops on tail call tests + * 5.15.0-58.64 breaks xen bridge networking (pvh domU) (LP: #2002889) + - xen/netback: fix build warning + * NFS: client permission error after adding user to permissible group + (LP: #2003053) + - NFS: Clear the file access cache upon login + - NFS: Judge the file access cache's timestamp in rcu path + - NFS: Fix up a sparse warning + * cmsg_so_mark.sh / cmsg_time.sh / cmsg_ipv6.sh in net from + ubuntu_kernel_selftests hang with non-amd64 (LP: #2000667) + - selftests: net: fix cmsg_so_mark.sh test hang + * Set explicit CC in the headers package (LP: #1999750) + - [Packaging] Set explicit CC in the headers package + * powerpc-build in ubuntu_kernel_selftests failed on P9 with K-5.19 + (LP: #2000772) + - selftests/powerpc: Avoid GCC 12 uninitialised variable warning + * [SRU] SoF for RPL platform support (LP: #1992714) + - ASoC: SOC: Intel: introduce cl_init callback + - ASoC: SOF: Intel: add MeteorLake machines + - ASoC: SOF: Intel: Add support for MeteorLake (MTL) + - ASoC: Intel: common: add ACPI matching tables for Raptor Lake + - ASoC: SOF: Intel: pci-tgl: use RPL specific firmware definitions + - [Config] Enable SND_SOC_SOF_METEORLAKE as module + * Rear Audio port sometimes has no audio output after reboot(Cirrus Logic) + (LP: #1998905) + - ALSA: hda/cirrus: Add extra 10 ms delay to allow PLL settle and lock. + * Fix SUT can't displayed after resume from WB/CB with dGFX + installed(FR:6/10)[RX6300][RX6500] (LP: #1999836) + - drm/amd/display: No display after resume from WB/CB + * commit cf58599cded35cf4affed1e659c0e2c742d3fda7 seems to be missing in + kinetic master to remove "hio" reference from Makefile (LP: #1999556) + - Ubuntu: remove leftover reference to ubuntu/hio driver + * Add additional Mediatek MT7922 BT device ID (LP: #1998885) + - Bluetooth: btusb: Add a new VID/PID 0489/e0f2 for MT7922 + * Mute/mic LEDs no function on a HP platfrom (LP: #1998882) + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + * CVE-2023-0461 + - net/ulp: prevent ULP without clone op from entering the LISTEN status + - net/ulp: use consistent error code when blocking ULP + * CVE-2023-0179 + - netfilter: nft_payload: incorrect arithmetics when fetching VLAN header bits + * CVE-2022-20369 + - NFSD: fix use-after-free in __nfs42_ssc_open() + * Kinetic update: upstream stable patchset 2023-01-23 (LP: #2003753) + - ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in + wm5102_probe" + - ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in + wm5110_probe" + - ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in + wm8997_probe" + - ASoC: mt6660: Keep the pm_runtime enables before component stuff in + mt6660_i2c_probe + - ASoC: rt1019: Fix the TDM settings + - ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK + - spi: intel: Fix the offset to get the 64K erase opcode + - ASoC: codecs: jz4725b: add missed Line In power control bit + - ASoC: codecs: jz4725b: fix reported volume for Master ctl + - ASoC: codecs: jz4725b: use right control for Capture Volume + - ASoC: codecs: jz4725b: fix capture selector naming + - ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 + - selftests/futex: fix build for clang + - selftests/intel_pstate: fix build for ARCH=x86_64 + - ASoC: rt1308-sdw: add the default value of some registers + - drm/amd/display: Remove wrong pipe control lock + - ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[] + - RDMA/efa: Add EFA 0xefa2 PCI ID + - btrfs: raid56: properly handle the error when unable to find the missing + stripe + - NFSv4: Retry LOCK on OLD_STATEID during delegation return + - ACPI: x86: Add another system to quirk list for forcing StorageD3Enable + - firmware: arm_scmi: Cleanup the core driver removal callback + - i2c: tegra: Allocate DMA memory for DMA engine + - i2c: i801: add lis3lv02d's I2C address for Vostro 5568 + - drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid + - btrfs: remove pointless and double ulist frees in error paths of qgroup + tests + - x86/cpu: Add several Intel server CPU model numbers + - ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> + "Route" + - KVM: x86/pmu: Do not speculatively query Intel GP PMCs that don't exist yet + - hugetlbfs: don't delete error page from pagecache + - arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8150-xperia-kumano: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8250-xperia-edo: Specify which LDO modes are allowed + - arm64: dts: qcom: sm8350-hdk: Specify which LDO modes are allowed + - spi: stm32: Print summary 'callbacks suppressed' message + - ARM: dts: at91: sama7g5: fix signal name of pin PB2 + - ASoC: core: Fix use-after-free in snd_soc_exit() + - ASoC: tas2770: Fix set_tdm_slot in case of single slot + - ASoC: tas2764: Fix set_tdm_slot in case of single slot + - ARM: at91: pm: avoid soft resetting AC DLL + - serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() + - serial: 8250_omap: remove wait loop from Errata i202 workaround + - serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() + - serial: 8250: omap: Flush PM QOS work on remove + - serial: imx: Add missing .thaw_noirq hook + - tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send + - bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() + - ASoC: soc-utils: Remove __exit for snd_soc_util_exit() + - pinctrl: rockchip: list all pins in a possible mux route for PX30 + - scsi: scsi_transport_sas: Fix error handling in sas_phy_add() + - block: sed-opal: kmalloc the cmd/resp buffers + - bpf: Fix memory leaks in __check_func_call + - arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro + - siox: fix possible memory leak in siox_device_add() + - parport_pc: Avoid FIFO port location truncation + - pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map + - drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms + - drm/panel: simple: set bpc field for logic technologies displays + - drm/drv: Fix potential memory leak in drm_dev_init() + - drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() + - arm64: dts: imx8mm: Fix NAND controller size-cells + - arm64: dts: imx8mn: Fix NAND controller size-cells + - ata: libata-transport: fix double ata_host_put() in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tport_add() + - ata: libata-transport: fix error handling in ata_tlink_add() + - ata: libata-transport: fix error handling in ata_tdev_add() + - nfp: change eeprom length to max length enumerators + - MIPS: fix duplicate definitions for exported symbols + - MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed + - bpf: Initialize same number of free nodes for each pcpu_freelist + - net: bgmac: Drop free_netdev() from bgmac_enet_remove() + - mISDN: fix possible memory leak in mISDN_dsp_element_register() + - net: hinic: Fix error handling in hinic_module_init() + - net: stmmac: ensure tx function is not running in stmmac_xdp_release() + - soc: imx8m: Enable OCOTP clock before reading the register + - net: liquidio: release resources when liquidio driver open failed + - mISDN: fix misuse of put_device() in mISDN_register_device() + - net: macvlan: Use built-in RCU list checking + - net: caif: fix double disconnect client in chnl_net_open() + - bnxt_en: Remove debugfs when pci_register_driver failed + - net: mhi: Fix memory leak in mhi_net_dellink() + - net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims + - xen/pcpu: fix possible memory leak in register_pcpu() + - net: ionic: Fix error handling in ionic_init_module() + - net: ena: Fix error handling in ena_init() + - net: hns3: fix setting incorrect phy link ksettings for firmware in + resetting process + - bridge: switchdev: Fix memory leaks when changing VLAN protocol + - drbd: use after free in drbd_create_device() + - platform/x86/intel: pmc: Don't unconditionally attach Intel PMC when + virtualized + - platform/surface: aggregator: Do not check for repeated unsequenced packets + - cifs: add check for returning value of SMB2_close_init + - net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in + ag71xx_open() + - net/x25: Fix skb leak in x25_lapb_receive_frame() + - cifs: Fix wrong return value checking when GETFLAGS + - net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() + and sparx5_start() + - net: thunderbolt: Fix error handling in tbnet_init() + - cifs: add check for returning value of SMB2_set_info_init + - ftrace: Fix the possible incorrect kernel message + - ftrace: Optimize the allocation for mcount entries + - ftrace: Fix null pointer dereference in ftrace_add_mod() + - ring_buffer: Do not deactivate non-existant pages + - tracing: Fix memory leak in tracing_read_pipe() + - tracing/ring-buffer: Have polling block on watermark + - tracing: Fix memory leak in test_gen_synth_cmd() and + test_empty_synth_event() + - tracing: Fix wild-memory-access in register_synth_event() + - tracing: Fix race where eprobes can be called before the event + - tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in + kprobe_event_gen_test_exit() + - tracing: kprobe: Fix potential null-ptr-deref on trace_array in + kprobe_event_gen_test_exit() + - drm/amd/display: Add HUBP surface flip interrupt handler + - ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() + - ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro + - ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 + - Revert "usb: dwc3: disable USB core PHY management" + - slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && + CONFIG_QCOM_RPROC_COMMON=m + - slimbus: stream: correct presence rate frequencies + - speakup: fix a segfault caused by switching consoles + - USB: bcma: Make GPIO explicitly optional + - USB: serial: option: add Sierra Wireless EM9191 + - USB: serial: option: remove old LARA-R6 PID + - USB: serial: option: add u-blox LARA-R6 00B modem + - USB: serial: option: add u-blox LARA-L6 modem + - USB: serial: option: add Fibocom FM160 0x0111 composition + - usb: add NO_LPM quirk for Realforce 87U Keyboard + - usb: chipidea: fix deadlock in ci_otg_del_timer + - usb: cdns3: host: fix endless superspeed hub port reset + - usb: typec: mux: Enter safe mode only when pins need to be reconfigured + - iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() + - iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() + - iio: adc: mp2629: fix wrong comparison of channel + - iio: adc: mp2629: fix potential array out of bound access + - iio: pressure: ms5611: changed hardcoded SPI speed to value limited + - dm ioctl: fix misbehavior if list_versions races with module loading + - serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs + - serial: 8250: Flush DMA Rx on RLSI + - serial: 8250_lpss: Configure DMA also w/o DMA filter + - Input: iforce - invert valid length check when fetching device IDs + - maccess: Fix writing offset in case of fault in + strncpy_from_kernel_nofault() + - net: phy: marvell: add sleep time after enabling the loopback bit + - scsi: zfcp: Fix double free of FSF request when qdio send fails + - iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries + - iommu/vt-d: Set SRE bit only when hardware has SRS cap + - firmware: coreboot: Register bus in module init + - mmc: core: properly select voltage range without power cycle + - mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce + timeout + - mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() + - docs: update mediator contact information in CoC doc + - misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() + - perf/x86/intel/pt: Fix sampling using single range output + - nvme: restrict management ioctls to admin + - nvme: ensure subsystem reset is single threaded + - serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake + - perf: Improve missing SIGTRAP checking + - ring-buffer: Include dropped pages in counting dirty patches + - tracing: Fix warning on variable 'struct trace_array' + - net: use struct_group to copy ip/ipv6 header addresses + - scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() + - scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() + - kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace case + - Input: i8042 - fix leaking of platform device on module removal + - macvlan: enforce a consistent minimal mtu + - tcp: cdg: allow tcp_cdg_release() to be called multiple times + - kcm: avoid potential race in kcm_tx_work + - kcm: close race conditions on sk_receive_queue + - 9p: trans_fd/p9_conn_cancel: drop client lock earlier + - gfs2: Check sb_bsize_shift after reading superblock + - gfs2: Switch from strlcpy to strscpy + - 9p/trans_fd: always use O_NONBLOCK read/write + - wifi: wext: use flex array destination for memcpy() + - mm: fs: initialize fsdata passed to write_begin/write_end interface + - net/9p: use a dedicated spinlock for trans_fd + - ntfs: fix use-after-free in ntfs_attr_find() + - ntfs: fix out-of-bounds read in ntfs_attr_find() + - ntfs: check overflow when iterating ATTR_RECORDs + - drm/msm/gpu: Fix crash during system suspend after unbind + - spi: tegra210-quad: Fix combined sequence + - ASoC: rt5682s: Fix the TDM Tx settings + - selftests/kexec: fix build for ARCH=x86_64 + - ASoC: Intel: sof_rt5682: Add quirk for Rex board + - ASoC: amd: yc: Adding Lenovo ThinkBook 14 Gen 4+ ARA and Lenovo ThinkBook 16 + Gen 4+ ARA to the Quirks List + - ASoC: amd: yc: Add Lenovo Thinkbook 14+ 2022 21D0 to quirks table + - drm/amdgpu: Adjust MES polling timeout for sriov + - platform/x86: thinkpad_acpi: Fix reporting a non present second fan on some + models + - drm/scheduler: fix fence ref counting + - cxl/mbox: Add a check on input payload size + - SUNRPC: Fix crasher in gss_unwrap_resp_integ() + - drm/rockchip: vop2: fix null pointer in plane_atomic_disable + - drm/rockchip: vop2: disable planes when disabling the crtc + - ksefltests: pidfd: Fix wait_states: Test terminated by timeout + - powerpc/64e: Fix amdgpu build on Book3E w/o AltiVec + - block: blk_add_rq_to_plug(): clear stale 'last' after flush + - firmware: arm_scmi: Make tx_prepare time out eventually + - drm/amd/display: Ignore Cable ID Feature + - drm/amdgpu: set fb_modifiers_not_supported in vkms + - drm/amd: Fail the suspend if resources can't be evicted + - cxl/pmem: Use size_add() against integer overflow + - tools/testing/cxl: Fix some error exits + - arm64/mm: fold check for KFENCE into can_set_direct_map() + - arm64: fix rodata=full again + - KVM: SVM: remove dead field from struct svm_cpu_data + - KVM: SVM: do not allocate struct svm_cpu_data dynamically + - KVM: SVM: restore host save area from assembly + - KVM: SVM: move MSR_IA32_SPEC_CTRL save/restore to assembly + - arm64: dts: qcom: sc7280: Add the reset reg for lpass audiocc on SC7280 + - ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N + - arm64: dts: qcom: sm8250: Disable the not yet supported cluster idle state + - tty: serial: fsl_lpuart: don't break the on-going transfer when global reset + - bnxt_en: refactor bnxt_cancel_reservations() + - bnxt_en: fix the handling of PCIE-AER + - mtd: onenand: omap2: add dependency on GPMC + - sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent + - sctp: clear out_curr if all frag chunks of current msg are pruned + - erofs: clean up .read_folio() and .readahead() in fscache mode + - io_uring: calculate CQEs from the user visible value + - pinctrl: mediatek: common-v2: Fix bias-disable for PULL_PU_PD_RSEL_TYPE + - selftests/bpf: Fix test_progs compilation failure in 32-bit arch + - arm64: dts: imx8mm-tqma8mqml-mba8mx: Fix USB DR + - cifs: Fix connections leak when tlink setup failed + - ata: libata-core: do not issue non-internal commands once EH is pending + - net: phy: dp83867: Fix SGMII FIFO depth for non OF devices + - mctp i2c: don't count unused / invalid keys for flow release + - octeon_ep: delete unnecessary napi rollback under set_queues_err in + octep_open() + - octeon_ep: ensure octep_get_link_status() successfully before + octep_link_up() + - octeon_ep: fix potential memory leak in octep_device_setup() + - octeon_ep: ensure get mac address successfully before eth_hw_addr_set() + - erofs: fix missing xas_retry() in fscache mode + - mlxsw: Avoid warnings when not offloaded FDB entry with IPv6 is removed + - net: hns3: fix incorrect hw rss hash type of rx packet + - net: hns3: fix return value check bug of rx copybreak + - netfs: Fix missing xas_retry() calls in xarray iteration + - netfs: Fix dodgy maths + - net: dsa: don't leak tagger-owned storage on switch driver unbind + - net: lan966x: Fix potential null-ptr-deref in lan966x_stats_init() + - s390: avoid using global register for current_stack_pointer + - netdevsim: Fix memory leak of nsim_dev->fa_cookie + - rethook: fix a potential memleak in rethook_alloc() + - drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround + - drm/display: Don't assume dual mode adaptors support i2c sub-addressing + - drm/amd/display: Fix invalid DPIA AUX reply causing system hang + - drm/amd/display: Fix access timeout to DPIA AUX at boot time + - drm/amd/display: Support parsing VRAM info v3.0 from VBIOS + - usb: dwc3: Do not get extcon device when usb-role-switch is used + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000 + - usb: typec: tipd: Prevent uninitialized event{1,2} in IRQ handler + - iio: accel: bma400: Ensure VDDIO is enable defore reading the chip ID. + - iio: pressure: ms5611: fixed value compensation bug + - ceph: avoid putting the realm twice when decoding snaps fails + - s390/dcssblk: fix deadlock when adding a DCSS + - blk-cgroup: properly pin the parent in blkcg_css_online + - x86/fpu: Drop fpregs lock before inheriting FPU permissions + - ASoC: SOF: topology: No need to assign core ID if token parsing failed + - perf/x86/amd: Fix crash due to race between amd_pmu_enable_all, perf NMI and + throttling + - net: usb: smsc95xx: fix external PHY reset + - tracing: Fix potential null-pointer-access of entry in list 'tr->err_log' + - arm64/mm: fix incorrect file_map_count for non-leaf pmd/pud + - KVM: x86/xen: Fix eventfd error handling in kvm_xen_eventfd_assign() + - netlink: Bounds-check struct nlmsgerr creation + - bpf: Prevent bpf program recursion for raw tracepoint probes + * Fix RPL-S support on powercap/intel_rapl (LP: #1990161) + - powercap: intel_rapl: Add support for RAPTORLAKE_P + - powercap: intel_rapl: Add support for RAPTORLAKE_S + * Kinetic update: upstream stable patchset 2023-01-04 (LP: #2001726) + - drm/amdkfd: handle CPU fault on COW mapping + - drm/amdkfd: Fix NULL pointer dereference in svm_migrate_to_ram() + - hwspinlock: qcom: correct MMIO max register for newer SoCs + - phy: stm32: fix an error code in probe + - wifi: cfg80211: silence a sparse RCU warning + - wifi: cfg80211: fix memory leak in query_regdb_file() + - soundwire: qcom: reinit broadcast completion + - soundwire: qcom: check for outanding writes before doing a read + - bpf, verifier: Fix memory leak in array reallocation for stack state + - bpf, sockmap: Fix the sk->sk_forward_alloc warning of sk_stream_kill_queues + - wifi: mac80211: Set TWT Information Frame Disabled bit as 1 + - bpftool: Fix NULL pointer dereference when pin {PROG, MAP, LINK} without + FILE + - HID: hyperv: fix possible memory leak in mousevsc_probe() + - bpf, sockmap: Fix sk->sk_forward_alloc warn_on in sk_stream_kill_queues + - bpf: Fix sockmap calling sleepable function in teardown path + - bpf, sock_map: Move cancel_work_sync() out of sock lock + - bpf: Add helper macro bpf_for_each_reg_in_vstate + - bpf: Fix wrong reg type conversion in release_reference() + - net: gso: fix panic on frag_list with mixed head alloc types + - macsec: delete new rxsc when offload fails + - macsec: fix secy->n_rx_sc accounting + - macsec: fix detection of RXSCs when toggling offloading + - macsec: clear encryption keys from the stack after setting up offload + - octeontx2-pf: NIX TX overwrites SQ_CTX_HW_S[SQ_INT] + - net: tun: Fix memory leaks of napi_get_frags + - bnxt_en: Fix possible crash in bnxt_hwrm_set_coal() + - bnxt_en: fix potentially incorrect return value for ndo_rx_flow_steer + - net: fman: Unregister ethernet device on removal + - capabilities: fix undefined behavior in bit shift for CAP_TO_MASK + - phy: ralink: mt7621-pci: add sentinel to quirks table + - KVM: s390: pv: don't allow userspace to set the clock under PV + - net: lapbether: fix issue of dev reference count leakage in + lapbeth_device_event() + - hamradio: fix issue of dev reference count leakage in bpq_device_event() + - net: wwan: iosm: fix memory leak in ipc_wwan_dellink + - net: wwan: mhi: fix memory leak in mhi_mbim_dellink + - drm/vc4: Fix missing platform_unregister_drivers() call in + vc4_drm_register() + - tcp: prohibit TCP_REPAIR_OPTIONS if data was already sent + - ipv6: addrlabel: fix infoleak when sending struct ifaddrlblmsg to network + - can: af_can: fix NULL pointer dereference in can_rx_register() + - net: stmmac: dwmac-meson8b: fix meson8b_devm_clk_prepare_enable() + - net: broadcom: Fix BCMGENET Kconfig + - tipc: fix the msg->req tlv len check in + tipc_nl_compat_name_table_dump_header + - dmaengine: pxa_dma: use platform_get_irq_optional + - dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove() + - dmaengine: ti: k3-udma-glue: fix memory leak when register device fail + - net: lapbether: fix issue of invalid opcode in lapbeth_open() + - drivers: net: xgene: disable napi when register irq failed in + xgene_enet_open() + - perf stat: Fix printing os->prefix in CSV metrics output + - perf tools: Add the include/perf/ directory to .gitignore + - netfilter: nfnetlink: fix potential dead lock in nfnetlink_rcv_msg() + - netfilter: Cleanup nft_net->module_list from nf_tables_exit_net() + - net: marvell: prestera: fix memory leak in prestera_rxtx_switch_init() + - net: nixge: disable napi when enable interrupts failed in nixge_open() + - net: wwan: iosm: fix memory leak in ipc_pcie_read_bios_cfg + - net/mlx5: Bridge, verify LAG state when adding bond to bridge + - net/mlx5: Allow async trigger completion execution on single CPU systems + - net/mlx5e: E-Switch, Fix comparing termination table instance + - net: cpsw: disable napi in cpsw_ndo_open() + - net: cxgb3_main: disable napi when bind qsets failed in cxgb_up() + - stmmac: intel: Update PCH PTP clock rate from 200MHz to 204.8MHz + - mctp: Fix an error handling path in mctp_init() + - cxgb4vf: shut down the adapter when t4vf_update_port_info() failed in + cxgb4vf_open() + - stmmac: dwmac-loongson: fix missing pci_disable_msi() while module exiting + - stmmac: dwmac-loongson: fix missing pci_disable_device() in + loongson_dwmac_probe() + - stmmac: dwmac-loongson: fix missing of_node_put() while module exiting + - net: phy: mscc: macsec: clear encryption keys when freeing a flow + - net: atlantic: macsec: clear encryption keys from the stack + - ethernet: s2io: disable napi when start nic failed in s2io_card_up() + - net: mv643xx_eth: disable napi when init rxq or txq failed in + mv643xx_eth_open() + - ethernet: tundra: free irq when alloc ring failed in tsi108_open() + - net: macvlan: fix memory leaks of macvlan_common_newlink + - riscv: process: fix kernel info leakage + - riscv: vdso: fix build with llvm + - riscv: fix reserved memory setup + - arm64: efi: Fix handling of misaligned runtime regions and drop warning + - MIPS: jump_label: Fix compat branch range check + - mmc: cqhci: Provide helper for resetting both SDHCI and CQHCI + - mmc: sdhci-of-arasan: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci_am654: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-tegra: Fix SDHCI_RESET_ALL for CQHCI + - mmc: sdhci-esdhc-imx: use the correct host caps for MMC_CAP_8_BIT_DATA + - ALSA: hda/hdmi - enable runtime pm for more AMD display audio + - ALSA: hda/ca0132: add quirk for EVGA Z390 DARK + - ALSA: hda: fix potential memleak in 'add_widget_node' + - ALSA: hda/realtek: Add Positivo C6300 model quirk + - ALSA: usb-audio: Yet more regression for for the delayed card registration + - ALSA: usb-audio: Add quirk entry for M-Audio Micro + - ALSA: usb-audio: Add DSD support for Accuphase DAC-60 + - vmlinux.lds.h: Fix placement of '.data..decrypted' section + - ata: libata-scsi: fix SYNCHRONIZE CACHE (16) command failure + - nilfs2: fix deadlock in nilfs_count_free_blocks() + - nilfs2: fix use-after-free bug of ns_writer on remount + - drm/i915/dmabuf: fix sg_table handling in map_dma_buf + - drm/amdgpu: disable BACO on special BEIGE_GOBY card + - btrfs: fix match incorrectly in dev_args_match_device + - btrfs: selftests: fix wrong error check in btrfs_free_dummy_root() + - btrfs: zoned: initialize device's zone info for seeding + - mms: sdhci-esdhc-imx: Fix SDHCI_RESET_ALL for CQHCI + - udf: Fix a slab-out-of-bounds write bug in udf_find_entry() + - mm/damon/dbgfs: check if rm_contexts input is for a real context + - mm/memremap.c: map FS_DAX device memory as decrypted + - mm/shmem: use page_mapping() to detect page cache for uffd continue + - can: j1939: j1939_send_one(): fix missing CAN header initialization + - dmaengine: at_hdmac: Fix at_lli struct definition + - dmaengine: at_hdmac: Don't start transactions at tx_submit level + - dmaengine: at_hdmac: Start transfer for cyclic channels in issue_pending + - dmaengine: at_hdmac: Fix premature completion of desc in issue_pending + - dmaengine: at_hdmac: Do not call the complete callback on + device_terminate_all + - dmaengine: at_hdmac: Protect atchan->status with the channel lock + - dmaengine: at_hdmac: Fix concurrency problems by removing atc_complete_all() + - dmaengine: at_hdmac: Fix concurrency over descriptor + - dmaengine: at_hdmac: Free the memset buf without holding the chan lock + - dmaengine: at_hdmac: Fix concurrency over the active list + - dmaengine: at_hdmac: Fix descriptor handling when issuing it to hardware + - dmaengine: at_hdmac: Fix completion of unissued descriptor in case of errors + - dmaengine: at_hdmac: Don't allow CPU to reorder channel enable + - dmaengine: at_hdmac: Fix impossible condition + - dmaengine: at_hdmac: Check return code of dma_async_device_register + - drm/amdkfd: Migrate in CPU page fault use current mm + - net: tun: call napi_schedule_prep() to ensure we own a napi + - x86/cpu: Restore AMD's DE_CFG MSR after resume + - drm/i915/gvt: Add missing vfio_unregister_group_dev() call + - KVM: debugfs: Return retval of simple_attr_open() if it fails + - HID: wacom: Fix logic used for 3rd barrel switch emulation + - ALSA: arm: pxa: pxa2xx-ac97-lib: fix return value check of + platform_get_irq() + - spi: mediatek: Fix package division error + - drm/vc4: hdmi: Fix HSM clock too low on Pi4 + - PCI: hv: Fix the definition of vector in hv_compose_msi_msg() + - KVM: s390: pci: Fix allocation size of aift kzdev elements + - drm/i915/psr: Send update also on invalidate + - drm/i915: Do not set cache_dirty for DGFX + - dt-bindings: net: tsnep: Fix typo on generic nvmem property + - dmanegine: idxd: reformat opcap output to match bitmap_parse() input + - dmaengine: idxd: Fix max batch size for Intel IAA + - dmaengine: idxd: fix RO device state error after been disabled/reset + - dmaengine: stm32-dma: fix potential race between pause and resume + - net: ethernet: mtk-star-emac: disable napi when connect and start PHY failed + in mtk_star_enable() + - octeontx2-pf: Fix SQE threshold checking + - perf stat: Fix crash with --per-node --metric-only in CSV mode + - net: wwan: iosm: fix invalid mux header type + - net/mlx5e: Add missing sanity checks for max TX WQE size + - ice: Fix spurious interrupt during removal of trusted VF + - iavf: Fix VF driver counting VLAN 0 filters + - ALSA: memalloc: Don't fall back for SG-buffer with IOMMU + - eth: sp7021: drop free_netdev() from spl2sw_init_netdev() + - mmc: sdhci-brcmstb: Fix SDHCI_RESET_ALL for CQHCI + - ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 + - drm/amdgpu: workaround for TLB seq race + - drm/amdkfd: Fix error handling in criu_checkpoint + - drm/amdkfd: Fix error handling in kfd_criu_restore_events + - btrfs: zoned: clone zoned device info when cloning a device + - net: ethernet: ti: am65-cpsw: Fix segmentation fault at module unload + - spi: intel: Use correct mask for flash and protected regions + - dmaengine: idxd: Do not enable user type Work Queue without Shared Virtual + Addressing + - can: isotp: fix tx state handling for echo tx processing + - can: rcar_canfd: Add missing ECC error checks for channels 2-7 + - KVM: x86: use a separate asm-offsets.c file + - KVM: SVM: replace regs argument of __svm_vcpu_run() with vcpu_svm + - KVM: SVM: adjust register allocation for __svm_vcpu_run() + - KVM: SVM: retrieve VMCB from assembly + - KVM: SVM: move guest vmsave/vmload back to assembly + * AMD Rembrandt: DP tunneling fails with Thunderbolt monitors + (LP: #1983143) // Kinetic update: upstream stable patchset 2023-01-04 + (LP: #2001726) + - thunderbolt: Add DP OUT resource when DP tunnel is discovered + * CVE-2022-47520 + - wifi: wilc1000: validate pairwise and authentication suite offsets + * CVE-2022-3545 + - nfp: fix use-after-free in area_cache_get() + + [ Ubuntu: 5.19.0-32.33~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-32.33~22.04.1 -proposed tracker (LP: #2004157) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + + [ Ubuntu: 5.19.0-31.32~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-31.32~22.04.1 -proposed tracker (LP: #2003422) + * kinetic/linux: 5.19.0-31.32 -proposed tracker (LP: #2003423) + * amdgpu: framebuffer is destroyed and the screen freezes with unsupported IP + blocks (LP: #2003524) + - drm/amd: Delay removal of the firmware framebuffer + * Revoke & rotate to new signing key (LP: #2002812) + - [Packaging] Revoke and rotate to new signing key + + -- Ian May Wed, 22 Mar 2023 11:17:43 -0500 + +linux-nvidia-5.19 (5.19.0-1007.7) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1007.7 -proposed tracker (LP: #2003754) + + * Integrate NVIDIA Grace kernel fixes for vGIC (LP: #2003640) + - SAUCE: KVM: arm64: GICv4.1: Fix race with doorbell on VPE + activation/deactivation + + -- Ian May Tue, 24 Jan 2023 16:28:34 -0600 + +linux-nvidia-5.19 (5.19.0-1005.5) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1005.5 -proposed tracker (LP: #2002688) + + * Miscellaneous Ubuntu changes + - [packaging] nvidia-5.19: add exclude for parent debian dir + - [config] nvidia-5.19: update configs + + [ Ubuntu: 5.19.0-30.31~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-30.31~22.04.1 -proposed tracker (LP: #2001755) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + * Unset versioned gcc-12 for hwe-5.19 build (LP: #2002679) + - Revert "UBUNTU: [Packaging] use versioned gcc-12" + - [Packaging] update annotations for gcc version downgrade + * kinetic/linux: 5.19.0-30.31 -proposed tracker (LP: #2001756) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - debian/dkms-versions -- update from kernel-versions (main/2023.01.02) + * Add some ACPI device IDs for Intel HID device (LP: #1995453) + - platform/x86/intel/hid: Add some ACPI device IDs + * Fix iosm: WWAN cannot build the connection (DW5823e) (LP: #1998115) + - net: wwan: iosm: fix driver not working with INTEL_IOMMU disabled + - [Config] CONFIG_IOSM update annotations on arm64 armhf ppc64el s390x riscv64 + * BPF_[AND|OR|XOR|FETCH|XCHG|CMPXCHG] in net:test_bpf.sh from + ubuntu_kernel_selftests failed on K-5.19 P9 (LP: #2001618) + - powerpc/bpf/64: add support for BPF_ATOMIC bitwise operations + - powerpc/bpf/64: add support for atomic fetch operations + - powerpc/bpf/64: Add instructions for atomic_[cmp]xchg + * [DEP-8] Run ADT regression suite for lowlatency kernels Jammy and later + (LP: #1999528) + - [DEP-8] Fix regression suite to run on lowlatency + * Kinetic update: upstream stable patchset 2022-12-15 (LP: #1999828) + - serial: ar933x: Deassert Transmit Enable on ->rs485_config() + - KVM: x86: Trace re-injected exceptions + - RDMA/cma: Use output interface for net_dev check + - IB/hfi1: Correctly move list in sc_disable() + - RDMA/hns: Disable local invalidate operation + - NFSv4: Fix a potential state reclaim deadlock + - NFSv4.1: Handle RECLAIM_COMPLETE trunking errors + - NFSv4.1: We must always send RECLAIM_COMPLETE after a reboot + - SUNRPC: Fix null-ptr-deref when xps sysfs alloc failed + - NFSv4.2: Fixup CLONE dest file size for zero-length count + - nfs4: Fix kmemleak when allocate slot failed + - net: dsa: Fix possible memory leaks in dsa_loop_init() + - RDMA/core: Fix null-ptr-deref in ib_core_cleanup() + - RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() + - net: dsa: fall back to default tagger if we can't load the one from DT + - nfc: fdp: Fix potential memory leak in fdp_nci_send() + - nfc: nxp-nci: Fix potential memory leak in nxp_nci_send() + - nfc: s3fwrn5: Fix potential memory leak in s3fwrn5_nci_send() + - nfc: nfcmrvl: Fix potential memory leak in nfcmrvl_i2c_nci_send() + - net: fec: fix improper use of NETDEV_TX_BUSY + - ata: pata_legacy: fix pdc20230_set_piomode() + - net: sched: Fix use after free in red_enqueue() + - net: tun: fix bugs for oversize packet when napi frags enabled + - netfilter: nf_tables: netlink notifier might race to release objects + - netfilter: nf_tables: release flow rule object from commit path + - ipvs: use explicitly signed chars + - ipvs: fix WARNING in __ip_vs_cleanup_batch() + - ipvs: fix WARNING in ip_vs_app_net_cleanup() + - rose: Fix NULL pointer dereference in rose_send_frame() + - mISDN: fix possible memory leak in mISDN_register_device() + - isdn: mISDN: netjet: fix wrong check of device registration + - btrfs: fix inode list leak during backref walking at resolve_indirect_refs() + - btrfs: fix inode list leak during backref walking at find_parent_nodes() + - btrfs: fix ulist leaks in error paths of qgroup self tests + - netfilter: ipset: enforce documented limit to prevent allocating huge memory + - Bluetooth: virtio_bt: Use skb_put to set length + - Bluetooth: L2CAP: fix use-after-free in l2cap_conn_del() + - Bluetooth: L2CAP: Fix memory leak in vhci_write + - net: mdio: fix undefined behavior in bit shift for __mdiobus_register + - ibmvnic: Free rwi on reset success + - stmmac: dwmac-loongson: fix invalid mdio_node + - net/smc: Fix possible leaked pernet namespace in smc_init() + - net, neigh: Fix null-ptr-deref in neigh_table_clear() + - ipv6: fix WARNING in ip6_route_net_exit_late() + - vsock: fix possible infinite sleep in vsock_connectible_wait_data() + - media: rkisp1: Don't pass the quantization to rkisp1_csm_config() + - media: rkisp1: Initialize color space on resizer sink and source pads + - media: rkisp1: Use correct macro for gradient registers + - media: rkisp1: Zero v4l2_subdev_format fields in when validating links + - media: s5p_cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: cros-ec-cec: limit msg.len to CEC_MAX_MSG_SIZE + - media: dvb-frontends/drxk: initialize err to 0 + - media: meson: vdec: fix possible refcount leak in vdec_probe() + - media: v4l: subdev: Fail graciously when getting try data for NULL state + - ACPI: APEI: Fix integer overflow in ghes_estatus_pool_init() + - scsi: core: Restrict legal sdev_state transitions via sysfs + - HID: saitek: add madcatz variant of MMO7 mouse device ID + - drm/amdgpu: set vm_update_mode=0 as default for Sienna Cichlid in SRIOV case + - i2c: xiic: Add platform module alias + - efi/tpm: Pass correct address to memblock_reserve + - clk: qcom: Update the force mem core bit for GPU clocks + - ARM: dts: imx6qdl-gw59{10,13}: fix user pushbutton GPIO offset + - arm64: dts: imx8: correct clock order + - arm64: dts: lx2160a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls1088a: specify clock frequencies for the MDIO controllers + - arm64: dts: ls208xa: specify clock frequencies for the MDIO controllers + - block: Fix possible memory leak for rq_wb on add_disk failure + - firmware: arm_scmi: Suppress the driver's bind attributes + - firmware: arm_scmi: Make Rx chan_setup fail on memory errors + - firmware: arm_scmi: Fix devres allocation device in virtio transport + - arm64: dts: juno: Add thermal critical trip points + - i2c: piix4: Fix adapter not be removed in piix4_remove() + - Bluetooth: L2CAP: Fix attempting to access uninitialized memory + - fscrypt: stop using keyrings subsystem for fscrypt_master_key + - fscrypt: fix keyring memory leak on mount failure + - btrfs: fix lost file sync on direct IO write with nowait and dsync iocb + - btrfs: fix tree mod log mishandling of reallocated nodes + - btrfs: fix type of parameter generation in btrfs_get_dentry + - ftrace: Fix use-after-free for dynamic ftrace_ops + - tracing: kprobe: Fix memory leak in test_gen_kprobe/kretprobe_cmd() + - kprobe: reverse kp->flags when arm_kprobe failed + - ring-buffer: Check for NULL cpu_buffer in ring_buffer_wake_waiters() + - tools/nolibc/string: Fix memcmp() implementation + - tracing/histogram: Update document for KEYS_MAX size + - capabilities: fix potential memleak on error path from vfs_getxattr_alloc() + - fuse: add file_modified() to fallocate + - efi: random: reduce seed size to 32 bytes + - efi: random: Use 'ACPI reclaim' memory for random seed + - arm64: entry: avoid kprobe recursion + - perf/x86/intel: Fix pebs event constraints for ICL + - perf/x86/intel: Add Cooper Lake stepping to isolation_ucodes[] + - perf/x86/intel: Fix pebs event constraints for SPR + - parisc: Make 8250_gsc driver dependend on CONFIG_PARISC + - parisc: Export iosapic_serial_irq() symbol for serial port driver + - parisc: Avoid printing the hardware path twice + - ext4: fix warning in 'ext4_da_release_space' + - ext4: fix BUG_ON() when directory entry has invalid rec_len + - x86/syscall: Include asm/ptrace.h in syscall_wrapper header + - KVM: x86: Mask off reserved bits in CPUID.80000006H + - KVM: x86: Mask off reserved bits in CPUID.8000001AH + - KVM: x86: Mask off reserved bits in CPUID.80000008H + - KVM: x86: Mask off reserved bits in CPUID.80000001H + - KVM: x86: Mask off reserved bits in CPUID.8000001FH + - KVM: VMX: fully disable SGX if SECONDARY_EXEC_ENCLS_EXITING unavailable + - KVM: arm64: Fix bad dereference on MTE-enabled systems + - KVM: x86: emulator: em_sysexit should update ctxt->mode + - KVM: x86: emulator: introduce emulator_recalc_and_set_mode + - KVM: x86: emulator: update the emulation mode after rsm + - KVM: x86: emulator: update the emulation mode after CR0 write + - tee: Fix tee_shm_register() for kernel TEE drivers + - ext4,f2fs: fix readahead of verity data + - cifs: fix regression in very old smb1 mounts + - drm/rockchip: dsi: Clean up 'usage_mode' when failing to attach + - drm/rockchip: dsi: Force synchronous probe + - drm/i915/sdvo: Filter out invalid outputs more sensibly + - drm/i915/sdvo: Setup DDC fully before output init + - wifi: brcmfmac: Fix potential buffer overflow in brcmf_fweh_event_worker() + - usb: dwc3: gadget: Don't delay End Transfer on delayed_status + - RDMA/hns: Fix NULL pointer problem in free_mr_init() + - docs/process/howto: Replace C89 with C11 + - RDMA/rxe: Fix mr leak in RESPST_ERR_RNR + - tools/nolibc: Fix missing strlen() definition and infinite loop with gcc-12 + - ata: palmld: fix return value check in palmld_pata_probe() + - net: lan966x: Fix the MTU calculation + - net: lan966x: Adjust maximum frame size when vlan is enabled/disabled + - net: lan966x: Fix FDMA when MTU is changed + - net: lan966x: Fix unmapping of received frames using FDMA + - bridge: Fix flushing of dynamic FDB entries + - iio: adc: stm32-adc: fix channel sampling time init + - drm/vc4: hdmi: Check the HSM rate at runtime_resume + - hwrng: bcm2835 - use hwrng_msleep() instead of cpu_relax() + - drm/amdkfd: Fix type of reset_type parameter in hqd_destroy() callback + - drm/amdgpu: Program GC registers through RLCG interface in gfx_v11/gmc_v11 + - nvme-pci: disable write zeroes on various Kingston SSD + - bio: safeguard REQ_ALLOC_CACHE bio put + - clk: rs9: Fix I2C accessors + - arm64: dts: imx8mm: Enable CPLD_Dn pull down resistor on MX8Menlo + - clk: renesas: r8a779g0: Fix HSCIF parent clocks + - arm64: dts: verdin-imx8mp: fix ctrl_sleep_moci + - arm64: dts: imx8mm: remove otg1/2 power domain dependency on hsio + - arm64: dts: imx8mm: correct usb power domains + - arm64: dts: imx8mn: remove otg1 power domain dependency on hsio + - arm64: dts: imx8mn: Correct the usb power domain + - drm/rockchip: dw_hdmi: filter regulator -EPROBE_DEFER error messages + - drm/rockchip: fix fbdev on non-IOMMU devices + - drm/i915: stop abusing swiotlb_max_segment + - blk-mq: Fix kmemleak in blk_mq_init_allocated_queue + - firmware: arm_scmi: Fix deferred_tx_wq release on error paths + - clk: renesas: r8a779g0: Add SASYNCPER clocks + - btrfs: fix a memory allocation failure test in btrfs_submit_direct + - ACPI: NUMA: Add CXL CFMWS 'nodes' to the possible nodes set + - tracing/fprobe: Fix to check whether fprobe is registered correctly + - fprobe: Check rethook_alloc() return in rethook initialization + - fuse: fix readdir cache race + - net/ulp: remove SOCK_SUPPORT_ZC from tls sockets + - ARM: dts: imx6dl-yapp4: Do not allow PM to switch PU regulator off on Q/QP + - net: remove SOCK_SUPPORT_ZC from sockmap + - net: also flag accepted sockets supporting msghdr originated zerocopy + - ext4: update the backup superblock's at the end of the online resize + - x86/tdx: Prepare for using "INFO" call for a second purpose + - x86/tdx: Panic on bad configs that #VE on "private" memory access + - KVM: VMX: Fold vmx_supported_debugctl() into vcpu_supported_debugctl() + - KVM: VMX: Ignore guest CPUID for host userspace writes to DEBUGCTL + - KVM: Initialize gfn_to_pfn_cache locks in dedicated helper + - KVM: Reject attempts to consume or refresh inactive gfn_to_pfn_cache + - KVM: arm64: Fix SMPRI_EL1/TPIDR2_EL0 trapping on VHE + - drm/amdgpu: disable GFXOFF during compute for GFX11 + * Kinetic update: upstream stable patchset 2022-12-07 (LP: #1999079) + - can: j1939: transport: j1939_session_skb_drop_old(): + spin_unlock_irqrestore() before kfree_skb() + - can: kvaser_usb: Fix possible completions during init_completion + - ALSA: Use del_timer_sync() before freeing timer + - ALSA: usb-audio: Add quirks for M-Audio Fast Track C400/600 + - ALSA: au88x0: use explicitly signed char + - ALSA: rme9652: use explicitly signed char + - USB: add RESET_RESUME quirk for NVIDIA Jetson devices in RCM + - usb: gadget: uvc: fix sg handling in error case + - usb: gadget: uvc: fix sg handling during video encode + - usb: dwc3: gadget: Stop processing more requests on IMI + - usb: dwc3: gadget: Don't set IMI for no_interrupt + - usb: bdc: change state when port disconnected + - usb: xhci: add XHCI_SPURIOUS_SUCCESS to ASM1042 despite being a V0.96 + controller + - mtd: rawnand: marvell: Use correct logic for nand-keep-config + - xhci: Add quirk to reset host back to default state at shutdown + - xhci-pci: Set runtime PM as default policy on all xHC 1.2 or later devices + - xhci: Remove device endpoints from bandwidth list when freeing the device + - tools: iio: iio_utils: fix digit calculation + - iio: light: tsl2583: Fix module unloading + - iio: temperature: ltc2983: allocate iio channels once + - iio: adxl372: Fix unsafe buffer attributes + - fbdev: smscufx: Fix several use-after-free bugs + - cpufreq: intel_pstate: Read all MSRs on the target CPU + - cpufreq: intel_pstate: hybrid: Use known scaling factor for P-cores + - fs/binfmt_elf: Fix memory leak in load_elf_binary() + - exec: Copy oldsighand->action under spin-lock + - mac802154: Fix LQI recording + - scsi: qla2xxx: Use transport-defined speed mask for supported_speeds + - drm/amdgpu: disallow gfxoff until GC IP blocks complete s2idle resume + - drm/msm/dsi: fix memory corruption with too many bridges + - drm/msm/hdmi: fix memory corruption with too many bridges + - drm/msm/dp: fix IRQ lifetime + - coresight: cti: Fix hang in cti_disable_hw() + - mmc: sdhci_am654: 'select', not 'depends' REGMAP_MMIO + - mmc: core: Fix kernel panic when remove non-standard SDIO card + - mmc: sdhci-pci-core: Disable ES for ASUS BIOS on Jasper Lake + - mmc: sdhci-esdhc-imx: Propagate ESDHC_FLAG_HS400* only on 8bit bus + - counter: microchip-tcb-capture: Handle Signal1 read and Synapse + - kernfs: fix use-after-free in __kernfs_remove + - pinctrl: Ingenic: JZ4755 bug fixes + - ARC: mm: fix leakage of memory allocated for PTE + - perf auxtrace: Fix address filter symbol name match for modules + - s390/futex: add missing EX_TABLE entry to __futex_atomic_op() + - s390/pci: add missing EX_TABLE entries to + __pcistg_mio_inuser()/__pcilg_mio_inuser() + - mmc: block: Remove error check of hw_reset on reset + - ethtool: eeprom: fix null-deref on genl_info in dump + - net: ieee802154: fix error return code in dgram_bind() + - media: v4l2: Fix v4l2_i2c_subdev_set_name function documentation + - media: atomisp: prevent integer overflow in sh_css_set_black_frame() + - drm/msm: Fix return type of mdp4_lvds_connector_mode_valid + - KVM: selftests: Fix number of pages for memory slot in + memslot_modification_stress_test + - ASoC: qcom: lpass-cpu: mark HDMI TX registers as volatile + - perf: Fix missing SIGTRAPs + - sched/core: Fix comparison in sched_group_cookie_match() + - arc: iounmap() arg is volatile + - mtd: rawnand: intel: Add missing of_node_put() in ebu_nand_probe() + - ASoC: qcom: lpass-cpu: Mark HDMI TX parity register as volatile + - ALSA: ac97: fix possible memory leak in snd_ac97_dev_register() + - perf/x86/intel/lbr: Use setup_clear_cpu_cap() instead of clear_cpu_cap() + - tipc: fix a null-ptr-deref in tipc_topsrv_accept + - net: netsec: fix error handling in netsec_register_mdio() + - net: hinic: fix incorrect assignment issue in hinic_set_interrupt_cfg() + - net: hinic: fix memory leak when reading function table + - net: hinic: fix the issue of CMDQ memory leaks + - net: hinic: fix the issue of double release MBOX callback of VF + - net: macb: Specify PHY PM management done by MAC + - nfc: virtual_ncidev: Fix memory leak in virtual_nci_send() + - x86/unwind/orc: Fix unreliable stack dump with gcov + - amd-xgbe: fix the SFP compliance codes check for DAC cables + - amd-xgbe: add the bit rate quirk for Molex cables + - drm/i915/dp: Reset frl trained flag before restarting FRL training + - atlantic: fix deadlock at aq_nic_stop + - kcm: annotate data-races around kcm->rx_psock + - kcm: annotate data-races around kcm->rx_wait + - net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failed + - net: lantiq_etop: don't free skb when returning NETDEV_TX_BUSY + - tcp: fix a signed-integer-overflow bug in tcp_add_backlog() + - tcp: fix indefinite deferral of RTO with SACK reneging + - net-memcg: avoid stalls when under memory pressure + - drm/amdkfd: Fix memory leak in kfd_mem_dmamap_userptr() + - can: mscan: mpc5xxx: mpc5xxx_can_probe(): add missing put_clock() in error + path + - can: mcp251x: mcp251x_can_probe(): add missing unregister_candev() in error + path + - PM: hibernate: Allow hybrid sleep to work with s2idle + - media: vivid: s_fbuf: add more sanity checks + - media: vivid: dev->bitmap_cap wasn't freed in all cases + - media: v4l2-dv-timings: add sanity checks for blanking values + - media: videodev2.h: V4L2_DV_BT_BLANKING_HEIGHT should check 'interlaced' + - media: vivid: set num_in/outputs to 0 if not supported + - perf vendor events power10: Fix hv-24x7 metric events + - ipv6: ensure sane device mtu in tunnels + - i40e: Fix ethtool rx-flow-hash setting for X722 + - i40e: Fix VF hang when reset is triggered on another VF + - i40e: Fix flow-type by setting GL_HASH_INSET registers + - net: ksz884x: fix missing pci_disable_device() on error in pcidev_init() + - PM: domains: Fix handling of unavailable/disabled idle states + - perf vendor events arm64: Fix incorrect Hisi hip08 L3 metrics + - net: fec: limit register access on i.MX6UL + - net: ethernet: ave: Fix MAC to be in charge of PHY PM + - ALSA: aoa: i2sbus: fix possible memory leak in i2sbus_add_dev() + - ALSA: aoa: Fix I2S device accounting + - openvswitch: switch from WARN to pr_warn + - net: ehea: fix possible memory leak in ehea_register_port() + - net: bcmsysport: Indicate MAC is in charge of PHY PM + - nh: fix scope used to find saddr when adding non gw nh + - net: broadcom: bcm4908_enet: update TX stats after actual transmission + - netdevsim: remove dir in nsim_dev_debugfs_init() when creating ports dir + failed + - net/mlx5e: Do not increment ESN when updating IPsec ESN state + - net/mlx5e: Extend SKB room check to include PTP-SQ + - net/mlx5: Fix possible use-after-free in async command interface + - net/mlx5: Update fw fatal reporter state on PCI handlers successful recover + - net/mlx5: Fix crash during sync firmware reset + - net: do not sense pfmemalloc status in skb_append_pagefrags() + - kcm: do not sense pfmemalloc status in kcm_sendpage() + - net: enetc: survive memory pressure without crashing + - arm64: Add AMPERE1 to the Spectre-BHB affected list + - can: rcar_canfd: fix channel specific IRQ handling for RZ/G2L + - can: rcar_canfd: rcar_canfd_handle_global_receive(): fix IRQ storm on global + FIFO receive + - ALSA: hda/realtek: Add quirk for ASUS Zenbook using CS35L41 + - ALSA: hda/realtek: Add another HP ZBook G9 model quirks + - usb: gadget: uvc: limit isoc_sg to super speed gadgets + - usb: gadget: uvc: fix dropped frame after missed isoc + - usb: gadget: aspeed: Fix probe regression + - usb: dwc3: gadget: Force sending delayed status during soft disconnect + - usb: typec: ucsi: Check the connection on resume + - usb: typec: ucsi: acpi: Implement resume callback + - usb: dwc3: Don't switch OTG -> peripheral if extcon is present + - mtd: rawnand: tegra: Fix PM disable depth imbalance in probe + - mtd: parsers: bcm47xxpart: Fix halfblock reads + - iio: adxl367: Fix unsafe buffer attributes + - fbdev: stifb: Fall back to cfb_fillrect() on 32-bit HCRX cards + - drm/amdgpu: Fix VRAM BO swap issue + - drm/i915: Extend Wa_1607297627 to Alderlake-P + - drm/amdgpu: Remove ATC L2 access for MMHUB 2.1.x + - drm/amdgpu: fix pstate setting issue + - drm/amdkfd: update gfx1037 Lx cache setting + - drm/amdkfd: correct the cache info for gfx1036 + - drm/msm: fix use-after-free on probe deferral + - drm/msm/hdmi: fix IRQ lifetime + - drm/msm/dp: fix memory corruption with too many bridges + - drm/msm/dp: fix bridge lifetime + - mmc: queue: Cancel recovery work on cleanup + - mmc: core: Fix WRITE_ZEROES CQE handling + - counter: 104-quad-8: Fix race getting function mode and direction + - mm/uffd: fix vma check on userfault for wp + - mm: migrate: fix return value if all subpages of THPs are migrated + successfully + - mm,madvise,hugetlb: fix unexpected data loss with MADV_DONTNEED on hugetlbfs + - mm/huge_memory: do not clobber swp_entry_t during THP split + - s390/cio: fix out-of-bounds access on cio_ignore free + - s390/uaccess: add missing EX_TABLE entries to __clear_user() + - ACPI: PCC: Fix unintentional integer overflow + - powerpc/64s/interrupt: Fix clear of PACA_IRQS_HARD_DIS when returning to + soft-masked context + - media: amphion: release m2m ctx when releasing vpu instance + - media: ov8865: Fix an error handling path in ov8865_probe() + - media: sun6i-csi: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun4i-csi: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun8i-di: Add a Kconfig dependency on RESET_CONTROLLER + - media: sun8i-rotate: Add a Kconfig dependency on RESET_CONTROLLER + - media: cedrus: Add a Kconfig dependency on RESET_CONTROLLER + - drm/msm/a6xx: Replace kcalloc() with kvzalloc() + - drm/msm/dp: add atomic_check to bridge ops + - drm/msm/dp: cleared DP_DOWNSPREAD_CTRL register before start link training + - ASoC: codec: tlv320adc3xxx: add GPIOLIB dependency + - pinctrl: qcom: Avoid glitching lines when we first mux to output + - spi: qup: support using GPIO as chip select line + - x86/fpu: Configure init_fpstate attributes orderly + - x86/fpu: Fix the init_fpstate size check with the actual size + - x86/fpu: Exclude dynamic states from init_fpstate + - bpf: prevent decl_tag from being referenced in func_proto + - mtd: rawnand: intel: Remove unused nand_pa member from ebu_nand_cs + - mtd: rawnand: intel: Use devm_platform_ioremap_resource_byname() + - ASoC: codecs: tlv320adc3xxx: Wrap adc3xxx_i2c_remove() in __exit_p() + - spi: aspeed: Fix window offset of CE1 + - net: lan966x: Fix the rx drop counter + - x86/fpu: Fix copy_xstate_to_uabi() to copy init states correctly + - amd-xgbe: Yellow carp devices do not need rrc + - drm/i915/dgfx: Keep PCI autosuspend control 'on' by default on all dGPU + - net: lan966x: Stop replacing tx dcbs and dcbs_buf when changing MTU + - mptcp: set msk local address earlier + - netdevsim: fix memory leak in nsim_bus_dev_new() + - net/mlx5: Wait for firmware to enable CRS before pci_restore_state + - net/mlx5: DR, Fix matcher disconnect error flow + - net/mlx5e: Update restore chain id for slow path packets + - net/mlx5e: TC, Reject forwarding from internal port to internal port + - riscv: mm: add missing memcpy in kasan_init + * Virtual GPU driver packaging regression (LP: #1996112) + - [Packaging] Reintroduce VM DRM drivers into modules + * Fix AMD-PState driver for Genoa CPU (LP: #1998106) + - Documentation: amd-pstate: Add unit test introduction + - cpufreq: amd-pstate: cpufreq: amd-pstate: reset MSR_AMD_PERF_CTL register at + init + - cpufreq: amd-pstate: change amd-pstate driver to be built-in type + - cpufreq: amd-pstate: add amd-pstate driver parameter for mode selection + - Documentation: amd-pstate: add driver working mode introduction + - Documentation: add amd-pstate kernel command line options + * Kinetic update: upstream stable patchset 2022-11-30 (LP: #1998398) + - clk: tegra: Fix Tegra PWM parent clock + - Revert "btrfs: call __btrfs_remove_free_space_cache_locked on cache load + failure" + - ocfs2: clear dinode links count in case of error + - ocfs2: fix BUG when iput after ocfs2_mknod fails + - selinux: enable use of both GFP_KERNEL and GFP_ATOMIC in convert_context() + - cpufreq: qcom: fix writes in read-only memory region + - i2c: qcom-cci: Fix ordering of pm_runtime_xx and i2c_add_adapter + - x86/microcode/AMD: Apply the patch early on every logical thread + - hwmon/coretemp: Handle large core ID value + - ata: ahci-imx: Fix MODULE_ALIAS + - ata: ahci: Match EM_MAX_SLOTS with SATA_PMP_MAX_PORTS + - x86/resctrl: Fix min_cbm_bits for AMD + - cpufreq: qcom: fix memory leak in error path + - drm/amdgpu: fix sdma doorbell init ordering on APUs + - mm,hugetlb: take hugetlb_lock before decrementing h->resv_huge_pages + - kvm: Add support for arch compat vm ioctls + - KVM: arm64: vgic: Fix exit condition in scan_its_table() + - media: ipu3-imgu: Fix NULL pointer dereference in active selection access + - media: mceusb: set timeout to at least timeout provided + - media: venus: dec: Handle the case where find_format fails + - x86/topology: Fix multiple packages shown on a single-package system + - x86/topology: Fix duplicated core ID within a package + - btrfs: fix processing of delayed data refs during backref walking + - btrfs: fix processing of delayed tree block refs during backref walking + - drm/vc4: Add module dependency on hdmi-codec + - ACPI: extlog: Handle multiple records + - tipc: Fix recognition of trial period + - tipc: fix an information leak in tipc_topsrv_kern_subscr + - i40e: Fix DMA mappings leak + - HID: magicmouse: Do not set BTN_MOUSE on double report + - sfc: Change VF mac via PF as first preference if available. + - net/atm: fix proc_mpc_write incorrect return value + - net: phy: dp83867: Extend RX strap quirk for SGMII mode + - net: phylink: add mac_managed_pm in phylink_config structure + - scsi: lpfc: Fix memory leak in lpfc_create_port() + - udp: Update reuse->has_conns under reuseport_lock. + - cifs: Fix xid leak in cifs_create() + - cifs: Fix xid leak in cifs_copy_file_range() + - cifs: Fix xid leak in cifs_flock() + - cifs: Fix xid leak in cifs_ses_add_channel() + - dm: remove unnecessary assignment statement in alloc_dev() + - net: hsr: avoid possible NULL deref in skb_clone() + - ionic: catch NULL pointer issue on reconfig + - netfilter: nf_tables: relax NFTA_SET_ELEM_KEY_END set flags requirements + - nvme-hwmon: consistently ignore errors from nvme_hwmon_init + - nvme-hwmon: kmalloc the NVME SMART log buffer + - nvmet: fix workqueue MEM_RECLAIM flushing dependency + - net: sched: cake: fix null pointer access issue when cake_init() fails + - net: sched: delete duplicate cleanup of backlog and qlen + - net: sched: sfb: fix null pointer access issue when sfb_init() fails + - sfc: include vport_id in filter spec hash and equal() + - wwan_hwsim: fix possible memory leak in wwan_hwsim_dev_new() + - net: hns: fix possible memory leak in hnae_ae_register() + - net: sched: fix race condition in qdisc_graft() + - net: phy: dp83822: disable MDI crossover status change interrupt + - iommu/vt-d: Allow NVS regions in arch_rmrr_sanity_check() + - iommu/vt-d: Clean up si_domain in the init_dmars() error path + - ACPI: video: Force backlight native for more TongFang devices + - x86/Kconfig: Drop check for -mabi=ms for CONFIG_EFI_STUB + - mm: /proc/pid/smaps_rollup: fix no vma's null-deref + - smb3: interface count displayed incorrectly + - cpufreq: tegra194: Fix module loading + - KVM: x86: Copy filter arg outside kvm_vm_ioctl_set_msr_filter() + - KVM: x86: Add compat handler for KVM_X86_SET_MSR_FILTER + - media: venus: Fix NV12 decoder buffer discovery on HFI_VERSION_1XX + - drm/vc4: hdmi: Enforce the minimum rate at runtime_resume + - net/smc: Fix an error code in smc_lgr_create() + - net: stmmac: Enable mac_managed_pm phylink config + - blk-mq: fix null pointer dereference in blk_mq_clear_rq_mapping() + - net: ethernet: mtk_eth_soc: fix possible memory leak in mtk_probe() + - net: ethernet: mtk_eth_wed: add missing put_device() in mtk_wed_add_hw() + - net: ethernet: mtk_eth_wed: add missing of_node_put() + - ip6mr: fix UAF issue in ip6mr_sk_done() when addrconf_init_net() failed + - cifs: Fix memory leak when build ntlmssp negotiate blob failed + - netfilter: rpfilter/fib: Populate flowic_l3mdev field + - netfilter: rpfilter/fib: Set ->flowic_uid correctly for user namespaces. + - net: Fix return value of qdisc ingress handling on success + - drbd: only clone bio if we have a backing device + - wifi: mt76: mt7921e: fix random fw download fail + * Mediatek WLAN RZ616(MT7922) SAR table control (LP: #1997200) + - mt76: add 6 GHz band support in mt76_sar_freq_ranges + - mt76: mt7921: introduce ACPI SAR support + - mt76: mt7921: introduce ACPI SAR config in tx power + - wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() + * Kinetic update: upstream stable patchset 2022-11-14 (LP: #1996540) + - scsi: qla2xxx: Fix response queue handler reading stale packets + - Upstream stable to v5.15.74, v6.0.2 + - rcu-tasks: Convert RCU_LOCKDEP_WARN() to WARN_ONCE() + - mmc: sdhci-msm: add compatible string check for sdm670 + - thermal: intel_powerclamp: Use first online CPU as control_cpu + - gcov: support GCC 12.1 and newer compilers + - io-wq: Fix memory leak in worker creation + - arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored + - serial: Deassert Transmit Enable on probe in driver-specific way + - KVM: x86: Treat #DBs from the emulator as fault-like (code and DR7.GD=1) + - drm/amd/display: Enable dpia support for dcn314 + - drm/amdgpu: Enable F32_WPTR_POLL_ENABLE in mqd + - libbpf: Initialize err in probe_map_create + - libbpf: Fix crash if SEC("freplace") programs don't have attach_prog_fd set + - libbpf: Fix NULL pointer exception in API btf_dump__dump_type_data + - drm/vc4: drv: Call component_unbind_all() + - video/aperture: Disable and unregister sysfb devices via aperture helpers + - drm/bridge: anx7625: Fix refcount bug in anx7625_parse_dt() + - drm/i915/dg2: Bump up CDCLK for DG2 + - drm/panel: use 'select' for Ili9341 panel driver helpers + - drm: fix drm_mipi_dbi build errors + - ALSA: hda/hdmi: change type for the 'assigned' variable + - ALSA: hda/hdmi: Fix the converter allocation for the silent stream + - arm64: dts: qcom: sc7280: Cleanup the lpasscc node + - arm64: dts: qcom: sc7280: Update lpasscore node + - arm64: dts: qcom: pm8350c: Drop PWM reg declaration + - arm64: dts: qcom: sc7180-trogdor: Keep pm6150_adc enabled for TZ + - arm64: dts: qcom: sm8350-sagami: correct TS pin property + - soc/tegra: fuse: Add missing of_node_put() in tegra_init_fuse() + - arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size + - arm64: dts: qcom: sm8450: fix UFS PHY serdes size + - arm64: dts: exynos: fix polarity of "enable" line of NFC chip in TM2 + - selftests/cpu-hotplug: Use return instead of exit + - selftests/cpu-hotplug: Delete fault injection related code + - selftests/cpu-hotplug: Reserve one cpu online at least + - usb: common: usb-conn-gpio: Simplify some error message + - HID: uclogic: Fix warning in uclogic_rdesc_template_apply + - tty: xilinx_uartps: Check clk_enable return value + - fpga: dfl-pci: Add IDs for Intel N6000, N6001 and C6100 cards + - iio: Use per-device lockdep class for mlock + - scsi: lpfc: Fix various issues reported by tools + - phy: qcom-qmp-usb: disable runtime PM on unbind + - block: Fix the enum blk_eh_timer_return documentation + - RDMA/rxe: Set pd early in mr alloc routines + - clk: imx8mp: tune the order of enet_qos_root_clk + - libbpf: Ensure functions with always_inline attribute are inline + - libbpf: Do not require executable permission for shared libraries + - micrel: ksz8851: fixes struct pointer issue + - net: ftmac100: fix endianness-related issues from 'sparse' + - net: sched: cls_u32: Avoid memcpy() false-positive warning + - libbpf: Fix overrun in netlink attribute iteration + - ALSA: usb-audio: Add quirk to enable Avid Mbox 3 support + - ASoC: sunxi: sun4i-codec: set debugfs_prefix for CPU DAI component + - ASoC: amd: yc: Add ASUS UM5302TA into DMI table + - ASoC: amd: yc: Add Lenovo Yoga Slim 7 Pro X to quirks table + - arm64: dts: qcom: sc7280-idp: correct ADC channel node name and unit address + - ARM: orion: fix include path + - hid: topre: Add driver fixing report descriptor + - [Config] updateconfigs for HID_TOPRE + - fsi: master-ast-cf: Fix missing of_node_put in fsi_master_acf_probe + - dmaengine: dw-edma: Remove runtime PM support + - HID: playstation: stop DualSense output work on remove. + - HID: playstation: add initial DualSense Edge controller support + - net: flag sockets supporting msghdr originated zerocopy + - drm/amd/pm: disable cstate feature for gpu reset scenario + - dm clone: Fix typo in block_device format specifier + * kinetic/linux: 5.19.0-29.30 -proposed tracker (LP: #1999799) + * CVE-2022-3643 + - xen/netback: Ensure protocol headers don't fall in the non-linear area + * CVE-2022-45934 + - Bluetooth: L2CAP: Fix u8 overflow + * CVE-2022-4378 + - proc: proc_skip_spaces() shouldn't think it is working on C strings + - proc: avoid integer type confusion in get_proc_long + * CVE-2022-42896 + - Bluetooth: L2CAP: Fix accepting connection request for invalid SPSM + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm + + -- Ian May Fri, 20 Jan 2023 16:56:46 -0600 + +linux-nvidia-5.19 (5.19.0-1004.4) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1003.3 -proposed tracker (LP: #2002688) + + * Miscellaneous Ubuntu changes + - debian/dkms-versions -- add 'arch=arm64' to the mstflint dkms definition + - [CONFIG] set the _AAEON configuration variables to 'n' and set + + -- Brad Figg Fri, 13 Jan 2023 15:30:43 -0800 + +linux-nvidia-5.19 (5.19.0-1003.3) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1003.3 -proposed tracker (LP: #2002688) + + * debian/dkms-versions -- add mstflint 4.21.0-7 to the list of dkms + packages to be included + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Integrate Nvidia Grace kernel fixes for TPM (LP: #2002574) + - SAUCE: tpm: tegra: Support SPI tpm wait state detect + - SAUCE: spi: tegra210-quad: Enable TPM wait polling + + * Integrate Nvidia Grace kernel fixes (LP: #2002170) + - SAUCE: arm64: defconfig: increase NR_CPUS to 512 + - SAUCE: arm64: defconfig: Increase NUMA NODE count to 2^6 + - SAUCE: rtc: efi: Enable SET/GET WAKEUP services as optional + - SAUCE: arm64: gic: increase the number of IRQ descriptors + - [CONFIG] increase NR_CPUS to 512 for ARM64 + - [config] add annotation for NR_CPUS + + [ Ubuntu: 5.19.0-28.29~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-28.29~22.04.1 -proposed tracker (LP: #1999745) + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + * Set explicit CC in the headers package (LP: #1999750) + - [Packaging] Set explicit CC in the headers package + * kinetic/linux: 5.19.0-28.29 -proposed tracker (LP: #1999746) + * mm:vma05 in ubuntu_ltp fails with '[vdso] bug not patched' on kinetic/linux + 5.19.0-27.28 (LP: #1999094) + - fix coredump breakage + + [ Ubuntu: 5.19.0-27.28~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-27.28~22.04.1 -proposed tracker (LP: #1998795) + * kinetic/linux: 5.19.0-27.28 -proposed tracker (LP: #1997794) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * selftests/.../nat6to4 breaks the selftests build (LP: #1996536) + - [Config] Disable selftests/net/bpf/nat6to4 + * Expose built-in trusted and revoked certificates (LP: #1996892) + - [Packaging] Expose built-in trusted and revoked certificates + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * Add cs35l41 firmware loading support (LP: #1995957) + - ASoC: cs35l41: Move cs35l41 exit hibernate function into shared code + - ASoC: cs35l41: Add common cs35l41 enter hibernate function + - ASoC: cs35l41: Do not print error when waking from hibernation + - ALSA: hda: cs35l41: Don't dereference fwnode handle + - ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations + - ALSA: hda: cs35l41: Drop wrong use of ACPI_PTR() + - ALSA: hda: cs35l41: Consolidate selections under SND_HDA_SCODEC_CS35L41 + - ALSA: hda: hda_cs_dsp_ctl: Add Library to support CS_DSP ALSA controls + - ALSA: hda: hda_cs_dsp_ctl: Add apis to write the controls directly + - ALSA: hda: cs35l41: Save codec object inside component struct + - ALSA: hda: cs35l41: Add initial DSP support and firmware loading + - ALSA: hda: cs35l41: Save Subsystem ID inside CS35L41 Driver + - ALSA: hda: cs35l41: Support reading subsystem id from ACPI + - ALSA: hda: cs35l41: Support multiple load paths for firmware + - ALSA: hda: cs35l41: Support Speaker ID for laptops + - ALSA: hda: cs35l41: Support Hibernation during Suspend + - ALSA: hda: cs35l41: Read Speaker Calibration data from UEFI variables + - ALSA: hda: hda_cs_dsp_ctl: Add fw id strings + - ALSA: hda: cs35l41: Add defaulted values into dsp bypass config sequence + - ALSA: hda: cs35l41: Support Firmware switching and reloading + - ALSA: hda: cs35l41: Add module parameter to control firmware load + - Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI + configurations" + - ALSA: hda/realtek: More robust component matching for CS35L41 + - [Config] updateconfigs for SND_HDA_CS_DSP_CONTROLS + * Fibocom WWAN FM350-GL suspend error (notebook not suspend) (LP: #1990700) + - net: wwan: t7xx: Add AP CLDMA + * Screen cannot turn on after screen off with Matrox G200eW3 [102b:0536] + (LP: #1995573) + - drm/mgag200: Optimize damage clips + - drm/mgag200: Add FB_DAMAGE_CLIPS support + - drm/mgag200: Enable atomic gamma lut update + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * AMD Cezanne takes 5 minutes to wake up from suspend (LP: #1993715) + - platform/x86/amd: pmc: Read SMU version during suspend on Cezanne systems + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * intel_pmc_core not load on Raptor Lake (LP: #1988461) + - x86/cpu: Add new Raptor Lake CPU model number + - platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Support Icicle Kit reference design v2022.10 (LP: #1993148) + - riscv: dts: microchip: icicle: re-jig fabric peripheral addresses + - riscv: dts: microchip: reduce the fic3 clock rate + - riscv: dts: microchip: update memory configuration for v2022.10 + - riscv: dts: microchip: fix fabric i2c reg size + - SAUCE: riscv: dts: microchip: Disable PCIe on the Icicle Kit + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * armhf kernel compiled with gcc-12 fails to boot on pi 3/2 (LP: #1993120) + - [Packaging] Support arch-specific compilers in updateconfigs + * Kinetic update: v5.19.17 upstream stable release (LP: #1994179) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/rw: fix unexpected link breakage + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - io_uring/net: don't update msg_name if not provided + - io_uring: correct pinned_vm accounting + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() + - usb: add quirks for Lenovo OneLink+ Dock + - mmc: core: Add SD card quirk for broken discard + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: renesas_sdhi: Fix rounding errors + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - fs: dlm: fix invalid derefence of sb_lvbptr + - btf: Export bpf_dynptr definition + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - arm64: dts: qcom: sdm845-mtp: correct ADC settle time + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Re-enable counter access from userspace + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - parisc: Fix userspace graphics card breakage due to pgtable special bit + - riscv: vdso: fix NULL deference in vdso_join_timens() when vfork + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - dmaengine: mxs: use platform_driver_register + - dmaengine: qcom-adm: fix wrong sizeof config in slave_config + - dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Unlock reservations on dma_resv_reserve_fences() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - arm64: mte: move register initialization to C + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - clocksource/drivers/arm_arch_timer: Fix CNTPCT_LO and CNTVCT_LO value + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - mm/damon: validate if the pmd entry is present before accessing + - mm/uffd: fix warning without PTE_MARKER_UFFD_WP compiled in + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: cpm_uart: Don't request IRQ too early for console port + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - cpufreq: qcom-cpufreq-hw: Fix uninitialized throttled_freq warning + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/Kconfig: Fix non existing CONFIG_PPC_FSL_BOOKE + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - hwrng: core - let sleep be interrupted when unregistering hwrng + - smb3: do not log confusing message when server returns no network interfaces + - ksmbd: fix incorrect handling of iterate_dir + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix alignment of VMA for memory mapped files on THP + - btrfs: enhance unsupported compat RO flags handling + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: fix missed extent on fsync after dropping extent maps + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: fix wrong continue condition in GC + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext2: Add sanity checks for group and filesystem size + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: unconditionally enable the i_version counter + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix i_version handling in ext4 + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ftrace: Still disable enabled records marked as disabled + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Do not free snapshot if tracer is on cmdline + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - rpmsg: char: Avoid double destroy of default endpoint + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-throttle: fix that io throttle can only work for single bio + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/i915: Fix watermark calculations for DG2 CCS modifiers + - drm/i915: Fix watermark calculations for DG2 CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - cpufreq: amd-pstate: Fix initial highest_perf value + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP30: Fix platform-device leak in bridge_platform_create() + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - erofs: use kill_anon_super() to kill super in fscache mode + - ARM: 9243/1: riscpc: Unbreak the build + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - ACPI: PCC: Release resources on address space setup failure path + - ACPI: PCC: replace wait_for_completion() + - ACPI: PCC: Fix Tx acknowledge in the PCC address space handler + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - x86/paravirt: add extra clobbers with ZERO_CALL_USED_REGS enabled + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - bpf: Fix non-static bpf_func_proto struct definitions + - bpf: convert cgroup_bpf.progs to hlist + - bpf: Cleanup check_refcount_ok + - leds: lm3601x: Don't use mutex after it was destroyed + - tsnep: Fix TSNEP_INFO_TX_TIME register define + - bpf: Fix reference state management for synchronous callbacks + - wifi: cfg80211: get correct AP link chandef + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - audit: explicitly check audit_context->context enum value + - audit: free audit_proctitle only on task exit + - esp: choose the correct inner protocol for GSO on inter address family + tunnels + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - selftests/xsk: Add missing close() on netns fd + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - wifi: ath11k: Fix incorrect QMI message ID mappings + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - bpf: Use this_cpu_{inc_return|dec} for prog->active + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtw89: pci: fix interrupt stuck after leaving low power mode + - wifi: rtw89: pci: correct TX resource checking in low power mode + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: wfx: prevent underflow in wfx_send_pds() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: mt7921e: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921s: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921u: fix race issue between reset and suspend/resume + - wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work + - wifi: mt76: sdio: poll sta stat when device transmits data + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: fix possible unaligned access in + mt7915_mac_add_twt_setup + - wifi: mt76: connac: fix possible unaligned access in + mt76_connac_mcu_add_nested_tlv + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload + - wifi: mt76: mt7915: fix mcs value in ht mode + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - wifi: mt76: mt7921e: fix rmmod crash in driver reload test + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - flow_dissector: Do not count vlan tags inside tunnel payload + - wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected + - wifi: ath11k: fix number of VHT beamformee spatial streams + - mips: dts: ralink: mt7621: fix external phy on GB-PC2 + - x86/microcode/AMD: Track patch allocation size explicitly + - wifi: ath11k: fix peer addition/deletion error on sta band migration + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: cadence-quadspi: Fix PM disable depth imbalance in cqspi_probe + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - cw1200: fix incorrect check to determine if no element is found in list + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: gen2: Enable 40 MHz channel width + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - Bluetooth: hci_sync: Fix not indicating power state + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - net: prestera: acl: Add check for kmemdup + - eth: lan743x: reject extts for non-pci11x1x devices + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - eth: sp7021: fix use after free bug in spl2sw_nvmem_get_mac_address + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/bridge: it6505: Power on downstream device in .atomic_enable + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: tc358767: Add of_node_put() when breaking out of loop + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - drm/msm: Make .remove and .shutdown HW shutdown consistent + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - drm/virtio: Fix same-context optimization + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - drm/bridge: it6505: Fix the order of DP_SET_POWER commands + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ASoC: wm_adsp: Handle optional legacy support + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/virtio: set fb_modifiers_not_supported + - drm/bochs: fix blanking + - ASoC: SOF: mediatek: mt8195: Import namespace SND_SOC_SOF_MTK_COMMON + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm: lookup the ICC paths in both mdp5/dpu and mdss devices + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - ALSA: usb-audio: Properly refcounting clock rate + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe + - ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe + - ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - arm64: dts: renesas: r9a07g044: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g054: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g043: Fix SCI{Rx,Tx} interrupt types + - dt-bindings: clock: exynosautov9: correct clock numbering of peric0/c1 + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iomap: iomap: fix memory corruption when recording errors during writeback + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: st: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - clk: samsung: exynosautov9: correct register offsets of peric0/c1 + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - clk: qcom: gcc-sdm660: Use floor ops for SDCC1 clock + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: amphion: insert picture startcode after seek for vc1g format + - media: amphion: adjust the encoder's value range of gop size + - media: amphion: don't change the colorspace reported by decoder. + - media: amphion: fix a bug that vpu core may not resume after suspend + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - clk: mediatek: clk-mt8195-vdo0: Set rate on vdo0_dp_intf0_dp_intf's parent + - clk: mediatek: clk-mt8195-vdo1: Reparent and set rate on vdo1_dpintf's + parent + - clk: mediatek: mt8195-infra_ao: Set pwrmcu clocks as critical + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - phy: rockchip-inno-usb2: Return zero after otg sync + - dmaengine: idxd: avoid deadlock in process_misc_interrupts() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - usb: gadget: f_fs: stricter integer overflow checks + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - remoteproc: Harden rproc_handle_vdev() against integer overflow + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/irdma: Validate udata inlen and outlen + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - usb: dwc3: core: fix some leaks in probe + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: pm8001: Fix running_req for internal abort commands + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - mfd: da9061: Fix Failed to set Two-Wire Bus Mode. + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes + - clk: mediatek: fix unregister function in mtk_clk_register_dividers cleanup + - clk: mediatek: Migrate remaining clk_unregister_*() to clk_hw_unregister_*() + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: Balance of_node_get() calls for of_find_node_by_name() + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - ipc: mqueue: fix possible memory leak in init_mqueue_fs() + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc/64: mark irqs hard disabled in boot paca + - powerpc/64/interrupt: Fix return to masked context after hard-mask irq + becomes pending + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - crypto: ccp - Fail the PSP initialization when writing psp data file failed + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 + - clocksource/drivers/timer-gxp: Add missing error handling in gxp_timer_probe + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - linux/export: use inline assembler to populate symbol CRCs + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - random: schedule jitter credit for next jiffy, not in two jiffies + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - module: tracking: Keep a record of tainted unloaded modules only + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - cpufreq: amd_pstate: fix wrong lowest perf fetch + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - x86/apic: Don't disable x2APIC if locked + - net: axienet: Switch to 64-bit RX/TX statistics + - net-next: Fix IP_UNICAST_IF option behavior for connected sockets + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: ath11k: Register shutdown handler for WCN6750 + - rtw89: ser: leave lps with mutex + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - wifi: rtw89: free unused skb to prevent memory leak + - wifi: rtw89: fix rx filter after scan + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - bnxt_en: replace reset with config timestamps + - selftests/bpf: Free the allocated resources after test case succeeds + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - bpf: Adjust kprobe_multi entry_ip for CONFIG_X86_KERNEL_IBT + - bpf: use bpf_prog_pack for bpf_dispatcher + - Bluetooth: L2CAP: Fix user-after-free + - i2c: designware-pci: Group AMD NAVI quirk parts together + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - platform/x86: pmc_atom: Improve quirk message to be less cryptic + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 + - drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - drm: panel-orientation-quirks: Add quirk for Aya Neo Air + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: hp-wmi: Setting thermal profile fails with 0x06 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - ASoC: SOF: add quirk to override topology mclk_id + - drm/amdgpu: SDMA update use unlocked iterator + - drm/amd/display: correct hostvm flag + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - drm/meson: remove drm bridges at aggregate driver unbind time + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - drm/amd/display: polling vid stream status in hpo dp blank + - drm/amdkfd: Fix UBSAN shift-out-of-bounds warning + - ARM: dts: imx6: delete interrupts property if interrupts-extended is set + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - ARM: dts: imx6sl: use tabs for code indent + - ARM: dts: imx6sx-udoo-neo: don't use multiple blank lines + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO + voltage + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: properly report super block errors in system log + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure + - ARM: 9233/1: stacktrace: Skip frame pointer boundary check for + call_with_stack() + - ARM: 9234/1: stacktrace: Avoid duplicate saving of exception PC value + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - RDMA/rxe: Delete error messages triggered by incoming Read requests + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - usb: gadget: uvc: increase worker prio to WQ_HIGHPRI + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - HSI: ssi_protocol: fix potential resource leak in ssip_pn_open() + - HID: nintendo: check analog user calibration for plausibility + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - usb: dwc3: core: add gfladj_refclk_lpm_sel quirk + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: handle effects after freeing the request + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - blk-mq: use quiesced elevator switch when reinitializing queues + - hwmon (occ): Retry for checksum failure + - fsi: occ: Prevent use after free + - usb: typec: ucsi: Don't warn on probe deferral + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf: Skip and warn on unknown format 'configN' attrs + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - perf intel-pt: Fix system_wide dummy event for hybrid + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "drm/amd/display: correct hostvm flag" + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - powerpc/64s/interrupt: Fix lost interrupts when returning to soft-masked + context + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - HID: uclogic: Add missing suffix for digitalizers + - ext4: continue to expand file system when the target size doesn't reach + - drm/i915: Rename block_size()/block_offset() + - drm/i915/bios: Validate fp_timing terminator presence + - drm/i915/bios: Use hardcoded fp_timing size for generating LFP data pointers + - Linux 5.19.17 + * Kinetic update: v5.19.16 upstream stable release (LP: #1994164) + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - ALSA: hda/realtek: Add quirk for HP Zbook Firefly 14 G9 model + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "USB: fixup for merge issue with "usb: dwc3: Don't switch OTG -> + peripheral if extcon is present"" + - Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present" + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - mctp: prevent double key removal and unref + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.19.16 + * Kinetic update: v5.19.15 upstream stable release (LP: #1994078) + - sparc: Unbreak the build + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - [Config] updateconfigs for CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - arm64: dts: rockchip: fix upper usb port on BPI-R2-Pro + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - wifi: iwlwifi: don't spam logs with NSS>2 messages + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - drm/amdgpu/mes: zero the sdma_hqd_mask of 2nd SDMA engine for SDMA 6.0.1 + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - gpio: ftgpio010: Make irqchip immutable + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - KVM: s390: Pass initialized arg even if unused + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - drm/amd/display: Fix DP MST timeslot issue when fallback happened + - drm/amd/display: increase dcn315 pstate change latency + - perf/x86/intel: Fix unchecked MSR access error for Alder Lake N + - don't use __kernel_write() on kmap_local_page() + - i2c: davinci: fix PM disable depth imbalance in davinci_i2c_probe + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - gpiolib: acpi: Add support to ignore programming an interrupt + - gpiolib: acpi: Add a quirk for Asus UM325UAZ + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - bpf: Gate dynptr API behind CAP_BPF + - net: ethernet: mtk_eth_soc: fix state in __mtk_foe_entry_clear + - bpf: Fix resetting logic for unreferenced kptrs + - Bluetooth: use hdev->workqueue when queuing hdev->{cmd,ncmd}_timer works + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.19.15 + * Kinetic update: v5.19.14 upstream stable release (LP: #1994076) + - riscv: make t-head erratas depend on MMU + - tools/perf: Fix out of bound access to cpu mask array + - perf record: Fix cpu mask bit setting for mixed mmaps + - counter: 104-quad-8: Utilize iomap interface + - counter: 104-quad-8: Implement and utilize register structures + - counter: 104-quad-8: Fix skipped IRQ lines during events configuration + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - wifi: mac80211: ensure vif queues are operational after start + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - frontswap: don't call ->init if no ops are registered + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - x86/uaccess: avoid check_object_size() in copy_from_user_nmi() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mm: fix BUG splat with kvmalloc + GFP_ATOMIC + - mptcp: factor out __mptcp_close() without socket lock + - mptcp: fix unreleased socket in accept queue + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm: gup: fix the fast GUP race against THP collapse + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/page_isolation: fix isolate_single_pageblock() isolation behavior + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm/migrate_device.c: add missing flush_cache_page() + - mm/migrate_device.c: copy pte dirty bit to page + - mm: fix madivse_pageout mishandling on non-LRU page + - mm: bring back update_mmu_cache() to finish_fault() + - mm/hugetlb: correct demote page offset logic + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: mediatek: vcodec: Drop platform_get_resource(IORESOURCE_IRQ) + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - clk: microchip: mpfs: fix clk_cfg array bounds violation + - clk: microchip: mpfs: make the rtc's ahb clock critical + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - net: macb: Fix ZynqMP SGMII non-wakeup source resume failure + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - perf parse-events: Break out tracepoint and printing + - perf print-events: Fix "perf list" can not display the PMU prefix for some + hybrid cache events + - perf parse-events: Remove "not supported" hybrid cache events + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: cfg80211: fix MCS divisor value + - wifi: mac80211: fix regression with non-QoS drivers + - wifi: mac80211: fix memory corruption in minstrel_ht_update_rates() + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - ice: xsk: change batched Tx descriptor cleaning + - ice: xsk: drop power of 2 ring size restriction for AF_XDP + - vdpa/ifcvf: fix the calculation of queuepair + - virtio-blk: Fix WARN_ON_ONCE in virtio_queue_rq() + - vdpa/mlx5: Fix MQ to support non power of two num queues + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - drm/i915/gt: Perf_limit_reasons are only available for Gen11+ + - clk: iproc: Do not rely on node name for correct PLL setup + - clk: imx93: drop of_match_ptr + - net: mscc: ocelot: fix tagged VLAN refusal while under a VLAN-unaware bridge + - net: ethernet: mtk_eth_soc: fix mask of RX_DMA_GET_SPORT{,_V2} + - perf test: Fix test case 87 ("perf record tests") for hybrid systems + - perf tests record: Fail the test if the 'errs' counter is not zero + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/cacheinfo: Add a cpu_llc_shared_mask() UP variant + - x86/alternative: Fix race in try_get_desc() + - damon/sysfs: fix possible memleak on damon_sysfs_add_target + - Linux 5.19.14 + * Kinetic update: v5.19.13 upstream stable release (LP: #1994075) + - Linux 5.19.13 + * Kinetic update: v5.19.12 upstream stable release (LP: #1994074) + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - xfrm: fix XFRMA_LASTUSED comment + - block: remove QUEUE_FLAG_DEAD + - block: stop setting the nomerges flags in blk_cleanup_queue + - block: simplify disk shutdown + - scsi: core: Fix a use-after-free + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - ALSA: hda/realtek: Add a quirk for HP OMEN 16 (8902) mute LED + - iommu/vt-d: Check correct capability for sagaw determination + - exfat: fix overflow for large capacity partition + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - btrfs: zoned: wait for extent buffer IOs before finishing a zone + - libperf evlist: Fix polling of system-wide events + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - thunderbolt: Add support for Intel Maple Ridge single port controller + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - riscv: fix RISCV_ISA_SVPBMT kconfig dependency warning + - drm/i915/gem: Flush contexts on driver release + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - xen/xenbus: fix xenbus_setup_ring() + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Reinstate kvm_vcpu_arch.guest_supported_xcr0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - perf/arm-cmn: Add more bits to child node address offset field + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - batman-adv: Fix hang up with small MTU hard-interface + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Lower sd speed on quartz64-b + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: imx8mm: Reverse CPLD_Dn GPIO label mapping on MX8Menlo + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: imx8mn: remove GPU power domain reset + - arm64: dts: imx8ulp: add #reset-cells for pcc + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: fix property for usb2 phy supply on rock-3a + - arm64: dts: rockchip: fix property for usb2 phy supply on rk3568-evb1-v10 + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3566-quartz64-a + - arm64: dts: imx8mm-verdin: extend pmic voltages + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - ice: Fix crash by keep old cfg when update TCs more than queues + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - wifi: iwlwifi: Mark IWLMEI as broken + - [Config] updateconfigs for IWLMEI + - arm64: dts: tqma8mqml: Include phy-imx8-pcie.h header + - drm/mediatek: Fix wrong dither settings + - arm64: dts: imx8mp-venice-gw74xx: fix CAN STBY polarity + - arm64: dts: imx8mp-venice-gw74xx: fix ksz9477 cpu port + - ARM: dts: lan966x: Fix the interrupt number for internal PHYs + - net: phy: aquantia: wait for the suspend/resume operations to finish + - arm64: dts: imx8mp-venice-gw74xx: fix port/phy validation + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - mm/slab_common: fix possible double free of kmem_cache + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - netdevsim: Fix hwstats debugfs file permissions + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - bnxt_en: fix flags to check for supported fw version + - gve: Fix GFP flags when allocing pages + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - sfc/siena: fix TX channel offset when using legacy interrupts + - sfc/siena: fix null pointer dereference in efx_hard_start_xmit + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - ipv6: Fix crash when IPv6 is administratively disabled + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - ice: config netdev tc before setting queues number + - ice: Fix interface being down after reset with link-down-on-close flag on + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - netfilter: nf_ct_ftp: fix deadlock when nat rewrite is needed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - gpio: tqmx86: fix uninitialized variable girq + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf stat: Fix cpu map index in bperf cgroup code + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - ice: Fix ice_xdp_xmit() when XDP TX queue number is not sufficient + - net/smc: Stop the CLC flow if no link to map buffers on + - net: phy: micrel: fix shared interrupt on LAN8814 + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - io_uring: ensure that cached task references are always put on exit + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - phy: marvell: phy-mvebu-a3700-comphy: Remove broken reset support + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - blk-mq: fix error handling in __blk_mq_alloc_disk + - block: call blk_mq_exit_queue from disk_release for never added disks + - block: Do not call blk_put_queue() if gendisk allocation fails + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/gma500: Fix WARN_ON(lock->magic != lock) error + - drm/gma500: Fix (vblank) IRQs not working after suspend/resume + - gpio: ixp4xx: Make irqchip immutable + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: change the alignment size of TMR BO to 1M + - drm/amdgpu: add HDP remap functionality to nbio 7.7 + - drm/amdgpu: Skip reset error status for psp v13_0_0 + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - gpio: mt7621: Make the irqchip immutable + - pmem: fix a name collision + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - i2c: mux: harden i2c_mux_alloc() against integer overflows + - drm/amdgpu: don't register a dirty callback for non-atomic + - certs: make system keyring depend on built-in x509 parser + - Makefile.debug: set -g unconditional on CONFIG_DEBUG_INFO_SPLIT + - Makefile.debug: re-enable debug info for .S files + - devdax: Fix soft-reservation memory description + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - ext4: use buckets for cr 1 block scan instead of rbtree + - Revert "block: freeze the queue earlier in del_gendisk" + - ext4: fixup possible uninitialized variable access in + ext4_mb_choose_next_group_cr1() + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.19.12 + * Kinetic update: v5.19.11 upstream stable release (LP: #1994070) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - SUNRPC: Fix call completion races with call_decode() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - NFSv4.2: Update mode bits after ALLOCATE and DEALLOCATE + - Revert "SUNRPC: Remove unreachable error condition" + - drm/panel-edp: Fix delays for Innolux N116BCA-EA1 + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - drm/rockchip: vop2: Fix eDP/HDMI sync polarities + - drm/i915/vdsc: Set VDSC PIC_HEIGHT before using for DP DSC + - drm/i915/guc: Don't update engine busyness stats too frequently + - drm/i915/guc: Cancel GuC engine busyness worker synchronously + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - io_uring/msg_ring: check file type before putting + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - blk-lib: fix blkdev_issue_secure_erase + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/i915/gt: Fix perf limit reasons bit positions + - drm/i915: Set correct domains values at _i915_vma_move_to_active + - drm/amdgpu: make sure to init common IP before gmc + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - net: Find dst with sk's xfrm policy not ctl_sk + - dt-bindings: apple,aic: Fix required item "apple,fiq-index" in affinity + description + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.19.11 + * Kinetic update: v5.19.10 upstream stable release (LP: #1994069) + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - net/mlx5: Introduce ifc bits for using software vhca id + - net/mlx5: Use software VHCA id when it's supported + - RDMA/mlx5: Rely on RoCE fw cap instead of devlink when setting profile + - RDMA/mlx5: Add a umr recovery flow + - RDMA/mlx5: Fix UMR cleanup on error flow of driver init + - ACPI: resource: skip IRQ override on AMD Zen platforms + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - peci: cpu: Fix use-after-free in adev_release() + - kvm: x86: mmu: Always flush TLBs when enabling dirty logging + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - Bluetooth: MGMT: Fix Get Device Flags + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - r8152: add PID for the Lenovo OneLink+ Dock + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - drm/amdgpu: disable FRU access on special SIENNA CICHLID card + - drm/amd/pm: use vbios carried pptable for all SMU13.0.7 SKUs + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - platform/x86: asus-wmi: Increase FAN_CURVE_BUF_LEN to 32 + - LoongArch: Fix section mismatch due to acpi_os_ioremap() + - LoongArch: Fix arch_remove_memory() undefined build error + - gpio: 104-dio-48e: Make irq_chip immutable + - gpio: 104-idio-16: Make irq_chip immutable + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.19.10 + * Kinetic update: v5.19.9 upstream stable release (LP: #1994068) + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: mt76: mt7921e: fix crash in chip reset fail + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - soc: fsl: select FSL_GUTS driver for DPIO + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: core: Allow the ALUA transitioning state enough time + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: fix hive reference leak when adding xgmi device + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/amdgpu: Remove the additional kfd pre reset call for sriov + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - netfilter: conntrack: work around exceeded receive window + - thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: omapfb: Fix tests for platform_get_irq() failure + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - x86/sev: Mark snp_abort() noreturn + - drm/amdgpu: add sdma instance check for gfx11 CGCG + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: hda: Once again fix regression of page allocations with IOMMU + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Clear fixed clock rate at closing EP + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracefs: Only clobber mode/uid/gid on remount if asked + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - btrfs: zoned: fix API misuse of zone finish waiting + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - perf: RISC-V: fix access beyond allocated array + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - driver core: fix driver_set_override() issue with empty strings + - nvmet: fix a use-after-free + - drm/i915/bios: Copy the whole MIPI sequence block + - drm/i915/slpc: Let's fix the PCODE min freq table setup for SLPC + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - smb3: missing inode locks in zero range + - spi: bitbang: Fix lsb-first Rx + - ASoC: cs42l42: Only report button state if there was a button interrupt + - Revert "soc: imx: imx8m-blk-ctrl: set power device name" + - arm64: dts: imx8mm-verdin: update CAN clock to 40MHz + - arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd + - ASoC: qcom: sm8250: add missing module owner + - regmap: spi: Reserve space for register address/padding + - arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings + - arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - arm64: dts: ls1028a-qds-65bb: don't use in-band autoneg for 2500base-x + - soc: imx: gpcv2: Assert reset before ungating clock + - arm64: dts: verdin-imx8mm: add otg2 pd to usbphy + - arm64: dts: imx8mm-venice-gw7901: fix port/phy validation + - arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity + - arm64: dts: freescale: verdin-imx8mp: fix atmel_mxt_ts reset polarity + - regulator: core: Clean up on enable failure + - ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF + - ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR depend on SND_SOC_SOF + - tee: fix compiler warning in tee_shm_register() + - RDMA/irdma: Fix drain SQ hang with no completion + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - RDMA/hns: Remove the num_qpc_timer variable + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - riscv: dts: microchip: use an mpfs specific l2 compatible + - netfilter: nf_conntrack_irc: Fix forged IP logic + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - kunit: fix assert_type for comparison macros + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: Fix DMA mappings leak + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - block: don't add partitions if GD_SUPPRESS_PART_SCAN is set + - RDMA/siw: Pass a pointer to virt_to_page() + - bonding: use unspecified address if no available link local address + - bonding: add all node mcast address when slave up + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - btrfs: zoned: fix mounting with conventional zones + - erofs: fix error return code in erofs_fscache_{meta_,}read_folio + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - btrfs: fix the max chunk size and stripe length calculation + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return error on MR deregister CQP failure + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - net: dsa: felix: disable cut-through forwarding for frames oversized for tc- + taprio + - net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in + vsc9959_sched_speed_set + - net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear + - net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb + - net/smc: Fix possible access to freed memory in link clear + - io_uring: recycle kbuf recycle on tw requeue + - net: phy: lan87xx: change interrupt src of link_up to comm_ready + - sch_sfb: Also store skb len before calling child enqueue + - libperf evlist: Fix per-thread mmaps for multi-threaded targets + - perf dlfilter dlfilter-show-cycles: Fix types for print format + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - perf record: Fix synthesis failure warnings + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS + - bonding: accept unsolicited NA message + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - time64.h: consolidate uses of PSEC_PER_NSEC + - net: dsa: felix: tc-taprio intervals smaller than MTU should send at least + one packet + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - perf evlist: Always use arch_evlist__add_default_attrs() + - perf stat: Fix L2 Topdown metrics disappear for raw events + - Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in + page->flags"" + - hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 + - hwmon: (asus-ec-sensors) add support for Maximus XI Hero + - hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING + - hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME + - hwmon: (asus-ec-sensors) autoload module via DMI data + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - iommu/virtio: Fix interaction with VFIO + - iommu: Fix false ownership failure on AMD systems with PASID activated + - drm/amd/display: Add SMU logging code + - drm/amd/display: Removing assert statements for Linux + - Linux 5.19.9 + * Kinetic update: v5.19.8 upstream stable release (LP: #1994061) + - drm/msm/dp: make eDP panel as the first connected connector + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dpu: populate wb or intf before reset_intf_cfg + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - platform/x86: x86-android-tablets: Fix broken touchscreen on Chuwi Hi8 with + Windows BIOS + - xsk: Fix corrupted packets for XDP_SHARED_UMEM + - drm/msm/gpu: Drop qos request if devm_devfreq_add_device() fails + - peci: aspeed: fix error check return value of platform_get_irq() + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnels + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - drm/i915/gvt: Fix Comet Lake + - ieee802154/adf7242: defer destroy_workqueue call + - bpf: Fix a data-race around bpf_jit_limit. + - drm/i915/ttm: fix CCS handling + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - xhci: Fix null pointer dereference in remove if xHC has only one roothub + - Revert "xhci: turn off port power in shutdown" + - bpf: Allow helpers to accept pointers with a fixed size + - bpf: Tidy up verifier check_func_arg() + - bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZERO + - Bluetooth: hci_event: Fix vendor (unknown) opcode status handling + - Bluetooth: hci_sync: Fix suspend performance regression + - Bluetooth: hci_event: Fix checking conn for le_conn_complete_evt + - Bluetooth: hci_sync: hold hdev->lock when cleanup hci_conn + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - nfp: flower: fix ingress police using matchall filter + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - net: phy: micrel: Make the GPIO to be non-exclusive + - net: lan966x: improve error handle in lan966x_fdma_rx_get_frame() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - cachefiles: fix error return code in cachefiles_ondemand_copen() + - cachefiles: make on-demand request distribution fairer + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - mm/slab_common: Deleting kobject in kmem_cache_destroy() without holding + slab_mutex/cpu_hotplug_lock + - platform/mellanox: mlxreg-lc: Fix coverity warning + - platform/mellanox: mlxreg-lc: Fix locking issue + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - staging: r8188eu: add firmware dependency + - Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" + - powerpc: align syscall table for ppc32 + - powerpc/rtas: Fix RTAS MSR[HV] handling for Cell + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: light: cm3605: Fix an error handling path in cm3605_probe() + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: correct "microchip,device-addr" property + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - firmware_loader: Fix use-after-free during unregister + - firmware_loader: Fix memory leak in firmware upload + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - landlock: Fix file reparenting without explicit LANDLOCK_ACCESS_FS_REFER + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - riscv: kvm: move extern sbi_ext declarations to a header + - clk: ti: Fix missing of_node_get() ti_find_clock_provider() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - powerpc/papr_scm: Fix nvdimm event mappings + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - gpio: realtek-otto: switch to 32-bit I/O + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - powerpc/papr_scm: Ensure rc is always initialized in papr_scm_pmu_register() + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - thunderbolt: Check router generation before connecting xHCI + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - usb: dwc3: disable USB core PHY management + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: dwc3: fix PHY disable sequence + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - Revert "usb: typec: ucsi: add a common function + ucsi_unregister_connectors()" + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: f_uac2: fix superspeed transfer + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - USB: gadget: Fix obscure lockdep violation for udc_mutex + - dma-buf/dma-resv: check if the new fence is really later + - arm64/kexec: Fix missing extra range for crashkres_low. + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - ip: fix triggering of 'icmp redirect' + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: memalloc: Revive x86-specific WC page allocations again + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/backlight: Disable pps power hook for aux based backlight + - drm/i915/guc: clear stalled request after a reset + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - tty: n_gsm: initialize more members at gsm_alloc_mux() + - tty: n_gsm: replace kicktimer with delayed_work + - tty: n_gsm: avoid call of sleeping functions from atomic context + - Linux 5.19.8 + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - drm: New function to get luminance range based on static hdr metadata + - drm/amdgpu_dm: Rely on split out luminance calculation function + - drm/i915: Use luminance range calculated during edid parsing + * Update Broadcom Emulex FC HBA lpfc driver to 14.2.0.5 for Ubuntu 22.04 + (LP: #1988711) + - scsi: lpfc: Fix uninitialized cqe field in lpfc_nvme_cancel_iocb() + - scsi: lpfc: Set PU field when providing D_ID in XMIT_ELS_RSP64_CX iocb + - scsi: lpfc: Fix lost NVMe paths during LIF bounce stress test + - scsi: lpfc: Refactor lpfc_nvmet_prep_abort_wqe() into + lpfc_sli_prep_abort_xri() + - scsi: lpfc: Update lpfc version to 14.2.0.5 + - scsi: lpfc: Copyright updates for 14.2.0.5 patches + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + * kinetic/linux: 5.19.0-26.27 -proposed tracker (LP: #1997434) + * CVE-2022-3566 + - tcp: Fix data races around icsk->icsk_af_ops. + * CVE-2022-3567 + - ipv6: Fix data races around sk->sk_prot. + * CVE-2022-3621 + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + * CVE-2022-3565 + - mISDN: fix use-after-free bugs in l1oip timer handlers + * CVE-2022-3594 + - r8152: Rate limit overflow messages + * CVE-2022-3564 + - Bluetooth: L2CAP: Fix use-after-free caused by l2cap_reassemble_sdu + * CVE-2022-3524 + - tcp/udp: Fix memory leak in ipv6_renew_options(). + * CVE-2022-43945 + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - NFSD: Remove "inline" directives on op_rsize_bop helpers + - NFSD: Cap rsize_bop result based on send buffer size + + [ Ubuntu: 5.19.0-24.25~22.04.1 ] + + * jammy/linux-hwe-5.19: 5.19.0-24.25~22.04.1 -proposed tracker (LP: #1996300) + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * kinetic/linux: 5.19.0-24.25 -proposed tracker (LP: #1996301) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/2022.11.14) + * support for same series backports versioning numbers (LP: #1993563) + - [Packaging] sameport -- add support for sameport versioning + * Add cs35l41 firmware loading support (LP: #1995957) + - ASoC: cs35l41: Move cs35l41 exit hibernate function into shared code + - ASoC: cs35l41: Add common cs35l41 enter hibernate function + - ASoC: cs35l41: Do not print error when waking from hibernation + - ALSA: hda: cs35l41: Don't dereference fwnode handle + - ALSA: hda: cs35l41: Allow compilation test on non-ACPI configurations + - ALSA: hda: cs35l41: Drop wrong use of ACPI_PTR() + - ALSA: hda: cs35l41: Consolidate selections under SND_HDA_SCODEC_CS35L41 + - ALSA: hda: hda_cs_dsp_ctl: Add Library to support CS_DSP ALSA controls + - ALSA: hda: hda_cs_dsp_ctl: Add apis to write the controls directly + - ALSA: hda: cs35l41: Save codec object inside component struct + - ALSA: hda: cs35l41: Add initial DSP support and firmware loading + - ALSA: hda: cs35l41: Save Subsystem ID inside CS35L41 Driver + - ALSA: hda: cs35l41: Support reading subsystem id from ACPI + - ALSA: hda: cs35l41: Support multiple load paths for firmware + - ALSA: hda: cs35l41: Support Speaker ID for laptops + - ALSA: hda: cs35l41: Support Hibernation during Suspend + - ALSA: hda: cs35l41: Read Speaker Calibration data from UEFI variables + - ALSA: hda: hda_cs_dsp_ctl: Add fw id strings + - ALSA: hda: cs35l41: Add defaulted values into dsp bypass config sequence + - ALSA: hda: cs35l41: Support Firmware switching and reloading + - ALSA: hda: cs35l41: Add module parameter to control firmware load + - Revert "ALSA: hda: cs35l41: Allow compilation test on non-ACPI + configurations" + - ALSA: hda/realtek: More robust component matching for CS35L41 + - [Config] updateconfigs for SND_HDA_CS_DSP_CONTROLS + * Fibocom WWAN FM350-GL suspend error (notebook not suspend) (LP: #1990700) + - net: wwan: t7xx: Add AP CLDMA + * Screen cannot turn on after screen off with Matrox G200eW3 [102b:0536] + (LP: #1995573) + - drm/mgag200: Optimize damage clips + - drm/mgag200: Add FB_DAMAGE_CLIPS support + - drm/mgag200: Enable atomic gamma lut update + * TEE Support for CCP driver (LP: #1991608) + - crypto: ccp: Add support for TEE for PCI ID 0x14CA + * AMD Cezanne takes 5 minutes to wake up from suspend (LP: #1993715) + - platform/x86/amd: pmc: Read SMU version during suspend on Cezanne systems + * Fix ath11k deadlock on WCN6855 (LP: #1995041) + - wifi: ath11k: avoid deadlock during regulatory update in + ath11k_regd_update() + * intel_pmc_core not load on Raptor Lake (LP: #1988461) + - x86/cpu: Add new Raptor Lake CPU model number + - platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver + * [UBUNTU 20.04] boot: Add s390x secure boot trailer (LP: #1996071) + - s390/boot: add secure boot trailer + * Fix rfkill causing soft blocked wifi (LP: #1996198) + - platform/x86: hp_wmi: Fix rfkill causing soft blocked wifi + * Support Icicle Kit reference design v2022.10 (LP: #1993148) + - riscv: dts: microchip: icicle: re-jig fabric peripheral addresses + - riscv: dts: microchip: reduce the fic3 clock rate + - riscv: dts: microchip: update memory configuration for v2022.10 + - riscv: dts: microchip: fix fabric i2c reg size + - SAUCE: riscv: dts: microchip: Disable PCIe on the Icicle Kit + * Fix Turbostat is not working for fam: 6 model: 191: stepping: 2 CPU + (LP: #1991365) + - tools/power turbostat: Add support for RPL-S + * armhf kernel compiled with gcc-12 fails to boot on pi 3/2 (LP: #1993120) + - [Packaging] Support arch-specific compilers in updateconfigs + * Kinetic update: v5.19.17 upstream stable release (LP: #1994179) + - Revert "fs: check FMODE_LSEEK to control internal pipe splicing" + - ALSA: oss: Fix potential deadlock at unregistration + - ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() + - ALSA: usb-audio: Fix potential memory leaks + - ALSA: usb-audio: Fix NULL dererence at error path + - ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 + - ALSA: hda/realtek: Correct pin configs for ASUS G533Z + - ALSA: hda/realtek: Add quirk for ASUS GV601R laptop + - ALSA: hda/realtek: Add Intel Reference SSID to support headset keys + - mtd: rawnand: atmel: Unmap streaming DMA mappings + - io_uring/rw: fix unexpected link breakage + - io_uring/net: fix fast_iov assignment in io_setup_async_msg() + - io_uring/net: don't update msg_name if not provided + - io_uring: correct pinned_vm accounting + - hv_netvsc: Fix race between VF offering and VF association message from host + - cifs: destage dirty pages before re-reading them for cache=none + - cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message + - iio: dac: ad5593r: Fix i2c read protocol requirements + - iio: ltc2497: Fix reading conversion results + - iio: adc: ad7923: fix channel readings for some variants + - iio: pressure: dps310: Refactor startup procedure + - iio: pressure: dps310: Reset chip after timeout + - xhci: dbc: Fix memory leak in xhci_alloc_dbc() + - usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() + - usb: add quirks for Lenovo OneLink+ Dock + - mmc: core: Add SD card quirk for broken discard + - can: kvaser_usb: Fix use of uninitialized completion + - can: kvaser_usb_leaf: Fix overread with an invalid command + - can: kvaser_usb_leaf: Fix TX queue out of sync after restart + - can: kvaser_usb_leaf: Fix CAN state after restart + - mmc: renesas_sdhi: Fix rounding errors + - mmc: sdhci-tegra: Use actual clock rate for SW tuning correction + - mmc: sdhci-sprd: Fix minimum clock limit + - i2c: designware: Fix handling of real but unexpected device interrupts + - fs: dlm: fix race between test_bit() and queue_work() + - fs: dlm: handle -EBUSY first in lock arg validation + - fs: dlm: fix invalid derefence of sb_lvbptr + - btf: Export bpf_dynptr definition + - HID: multitouch: Add memory barriers + - quota: Check next/prev free block number after reading from quota file + - platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure + - arm64: dts: qcom: sdm845-mtp: correct ADC settle time + - ASoC: wcd9335: fix order of Slimbus unprepare/disable + - ASoC: wcd934x: fix order of Slimbus unprepare/disable + - hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API + - net: thunderbolt: Enable DMA paths only after rings are enabled + - regulator: qcom_rpm: Fix circular deferral regression + - arm64: topology: move store_cpu_topology() to shared code + - riscv: topology: fix default topology reporting + - RISC-V: Re-enable counter access from userspace + - RISC-V: Make port I/O string accessors actually work + - parisc: fbdev/stifb: Align graphics memory size to 4MB + - parisc: Fix userspace graphics card breakage due to pgtable special bit + - riscv: vdso: fix NULL deference in vdso_join_timens() when vfork + - riscv: Make VM_WRITE imply VM_READ + - riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb + - riscv: Pass -mno-relax only on lld < 15.0.0 + - UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - nvmem: core: Fix memleak in nvmem_register() + - nvme-multipath: fix possible hang in live ns resize with ANA access + - dmaengine: mxs: use platform_driver_register + - dmaengine: qcom-adm: fix wrong sizeof config in slave_config + - dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg + - drm/virtio: Check whether transferred 2D BO is shmem + - drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error + - drm/virtio: Unlock reservations on dma_resv_reserve_fences() error + - drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() + - drm/udl: Restore display mode on resume + - arm64: mte: move register initialization to C + - [Config] updateconfigs for ARM64_ERRATUM_2441007 + - arm64: errata: Add Cortex-A55 to the repeat tlbi list + - clocksource/drivers/arm_arch_timer: Fix CNTPCT_LO and CNTVCT_LO value + - mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page + - mm/damon: validate if the pmd entry is present before accessing + - mm/uffd: fix warning without PTE_MARKER_UFFD_WP compiled in + - mm/mmap: undo ->mmap() when arch_validate_flags() fails + - xen/gntdev: Prevent leaking grants + - xen/gntdev: Accommodate VMA splitting + - PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge + - serial: cpm_uart: Don't request IRQ too early for console port + - serial: stm32: Deassert Transmit Enable on ->rs485_config() + - serial: 8250: Let drivers request full 16550A feature probing + - serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices + - NFSD: Protect against send buffer overflow in NFSv3 READDIR + - NFSD: Protect against send buffer overflow in NFSv2 READ + - NFSD: Protect against send buffer overflow in NFSv3 READ + - cpufreq: qcom-cpufreq-hw: Fix uninitialized throttled_freq warning + - powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain + - powerpc/Kconfig: Fix non existing CONFIG_PPC_FSL_BOOKE + - powerpc/boot: Explicitly disable usage of SPE instructions + - slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure + - slimbus: qcom-ngd: cleanup in probe error path + - scsi: lpfc: Rework MIB Rx Monitor debug info logic + - scsi: qedf: Populate sysfs attributes for vport + - gpio: rockchip: request GPIO mux to pinctrl when setting direction + - pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback + - fbdev: smscufx: Fix use-after-free in ufx_ops_open() + - hwrng: core - let sleep be interrupted when unregistering hwrng + - smb3: do not log confusing message when server returns no network interfaces + - ksmbd: fix incorrect handling of iterate_dir + - ksmbd: fix endless loop when encryption for response fails + - ksmbd: Fix wrong return value and message length check in smb2_ioctl() + - ksmbd: Fix user namespace mapping + - fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE + - btrfs: fix alignment of VMA for memory mapped files on THP + - btrfs: enhance unsupported compat RO flags handling + - btrfs: fix race between quota enable and quota rescan ioctl + - btrfs: fix missed extent on fsync after dropping extent maps + - btrfs: set generation before calling btrfs_clean_tree_block in + btrfs_init_new_buffer + - f2fs: fix wrong continue condition in GC + - f2fs: complete checkpoints during remount + - f2fs: flush pending checkpoints when freezing super + - f2fs: increase the limit for reserve_root + - f2fs: fix to do sanity check on destination blkaddr during recovery + - f2fs: fix to do sanity check on summary info + - jbd2: wake up journal waiters in FIFO order, not LIFO + - jbd2: fix potential buffer head reference count leak + - jbd2: fix potential use-after-free in jbd2_fc_wait_bufs + - jbd2: add miss release buffer head in fc_do_one_pass() + - ext2: Add sanity checks for group and filesystem size + - ext4: avoid crash when inline data creation follows DIO write + - ext4: fix null-ptr-deref in ext4_write_info + - ext4: make ext4_lazyinit_thread freezable + - ext4: fix check for block being out of directory size + - ext4: don't increase iversion counter for ea_inodes + - ext4: unconditionally enable the i_version counter + - ext4: ext4_read_bh_lock() should submit IO if the buffer isn't uptodate + - ext4: place buffer head allocation before handle start + - ext4: fix i_version handling in ext4 + - ext4: fix dir corruption when ext4_dx_add_entry() fails + - ext4: fix miss release buffer head in ext4_fc_write_inode + - ext4: fix potential memory leak in ext4_fc_record_modified_inode() + - ext4: fix potential memory leak in ext4_fc_record_regions() + - ext4: update 'state->fc_regions_size' after successful memory allocation + - livepatch: fix race between fork and KLP transition + - ftrace: Properly unset FTRACE_HASH_FL_MOD + - ftrace: Still disable enabled records marked as disabled + - ring-buffer: Allow splice to read previous partially read pages + - ring-buffer: Have the shortest_full queue be the shortest not longest + - ring-buffer: Check pending waiters when doing wake ups as well + - ring-buffer: Add ring_buffer_wake_waiters() + - ring-buffer: Fix race between reset page and reading page + - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t + - tracing: Wake up ring buffer waiters on closing of the file + - tracing: Wake up waiters when tracing is disabled + - tracing: Add ioctl() to force ring buffer waiters to wake up + - tracing: Do not free snapshot if tracer is on cmdline + - tracing: Move duplicate code of trace_kprobe/eprobe.c into header + - tracing: Add "(fault)" name injection to kernel probes + - tracing: Fix reading strings from synthetic events + - rpmsg: char: Avoid double destroy of default endpoint + - thunderbolt: Explicitly enable lane adapter hotplug events at startup + - efi: libstub: drop pointless get_memory_map() call + - media: cedrus: Set the platform driver data earlier + - media: cedrus: Fix endless loop in cedrus_h265_skip_bits() + - blk-throttle: fix that io throttle can only work for single bio + - blk-wbt: call rq_qos_add() after wb_normal is initialized + - KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility + - KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" + - KVM: nVMX: Don't propagate vmcs12's PERF_GLOBAL_CTRL settings to vmcs02 + - KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS + - staging: greybus: audio_helper: remove unused and wrong debugfs usage + - drm/nouveau/kms/nv140-: Disable interlacing + - drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() + - drm/i915/gt: Use i915_vm_put on ppgtt_create error paths + - drm/i915: Fix watermark calculations for gen12+ RC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ MC CCS modifier + - drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier + - drm/i915: Fix watermark calculations for DG2 CCS modifiers + - drm/i915: Fix watermark calculations for DG2 CCS+CC modifier + - drm/amd/display: Fix vblank refcount in vrr transition + - drm/amd/display: explicitly disable psr_feature_enable appropriately + - smb3: must initialize two ACL struct fields to zero + - selinux: use "grep -E" instead of "egrep" + - ima: fix blocking of security.ima xattrs of unsupported algorithms + - userfaultfd: open userfaultfds with O_RDONLY + - ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers + - thermal: cpufreq_cooling: Check the policy first in + cpufreq_cooling_register() + - cpufreq: amd-pstate: Fix initial highest_perf value + - sh: machvec: Use char[] for section boundaries + - MIPS: SGI-IP30: Fix platform-device leak in bridge_platform_create() + - MIPS: SGI-IP27: Fix platform-device leak in bridge_platform_create() + - erofs: fix order >= MAX_ORDER warning due to crafted negative i_size + - erofs: use kill_anon_super() to kill super in fscache mode + - ARM: 9243/1: riscpc: Unbreak the build + - ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() + - ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE + - ACPI: PCC: Release resources on address space setup failure path + - ACPI: PCC: replace wait_for_completion() + - ACPI: PCC: Fix Tx acknowledge in the PCC address space handler + - objtool: Preserve special st_shndx indexes in elf_update_symbol + - nfsd: Fix a memory leak in an error handling path + - SUNRPC: Fix svcxdr_init_decode's end-of-buffer calculation + - SUNRPC: Fix svcxdr_init_encode's buflen calculation + - NFSD: Protect against send buffer overflow in NFSv2 READDIR + - NFSD: Fix handling of oversized NFSv4 COMPOUND requests + - x86/paravirt: add extra clobbers with ZERO_CALL_USED_REGS enabled + - wifi: rtlwifi: 8192de: correct checking of IQK reload + - wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() + - bpf: Fix non-static bpf_func_proto struct definitions + - bpf: convert cgroup_bpf.progs to hlist + - bpf: Cleanup check_refcount_ok + - leds: lm3601x: Don't use mutex after it was destroyed + - tsnep: Fix TSNEP_INFO_TX_TIME register define + - bpf: Fix reference state management for synchronous callbacks + - wifi: cfg80211: get correct AP link chandef + - wifi: mac80211: allow bw change during channel switch in mesh + - bpftool: Fix a wrong type cast in btf_dumper_int + - audit: explicitly check audit_context->context enum value + - audit: free audit_proctitle only on task exit + - esp: choose the correct inner protocol for GSO on inter address family + tunnels + - spi: mt7621: Fix an error message in mt7621_spi_probe() + - x86/resctrl: Fix to restore to original value when re-enabling hardware + prefetch register + - xsk: Fix backpressure mechanism on Tx + - selftests/xsk: Add missing close() on netns fd + - bpf: Disable preemption when increasing per-cpu map_locked + - bpf: Propagate error from htab_lock_bucket() to userspace + - wifi: ath11k: Fix incorrect QMI message ID mappings + - bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy + - bpf: Use this_cpu_{inc_return|dec} for prog->active + - Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend + - wifi: rtw89: pci: fix interrupt stuck after leaving low power mode + - wifi: rtw89: pci: correct TX resource checking in low power mode + - wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() + - wifi: wfx: prevent underflow in wfx_send_pds() + - wifi: rtw88: add missing destroy_workqueue() on error path in + rtw_core_init() + - selftests/xsk: Avoid use-after-free on ctx + - spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() + - spi: qup: add missing clk_disable_unprepare on error in + spi_qup_pm_resume_runtime() + - wifi: rtl8xxxu: Fix skb misuse in TX queue selection + - spi: meson-spicc: do not rely on busy flag in pow2 clk ops + - bpf: btf: fix truncated last_member_type_id in btf_struct_resolve + - wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration + - wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask + - wifi: mt76: mt7921e: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921s: fix race issue between reset and suspend/resume + - wifi: mt76: mt7921u: fix race issue between reset and suspend/resume + - wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work + - wifi: mt76: sdio: poll sta stat when device transmits data + - wifi: mt76: sdio: fix transmitting packet hangs + - wifi: mt76: mt7615: add mt7615_mutex_acquire/release in + mt7615_sta_set_decap_offload + - wifi: mt76: mt7915: fix possible unaligned access in + mt7915_mac_add_twt_setup + - wifi: mt76: connac: fix possible unaligned access in + mt76_connac_mcu_add_nested_tlv + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap + - wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload + - wifi: mt76: mt7915: fix mcs value in ht mode + - wifi: mt76: mt7915: do not check state before configuring implicit beamform + - wifi: mt76: mt7921e: fix rmmod crash in driver reload test + - Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release + - net: fs_enet: Fix wrong check in do_pd_setup + - bpf: Ensure correct locking around vulnerable function find_vpid() + - wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default + - Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure + - netfilter: conntrack: fix the gc rescheduling delay + - netfilter: conntrack: revisit the gc initial rescheduling bias + - flow_dissector: Do not count vlan tags inside tunnel payload + - wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected + - wifi: ath11k: fix number of VHT beamformee spatial streams + - mips: dts: ralink: mt7621: fix external phy on GB-PC2 + - x86/microcode/AMD: Track patch allocation size explicitly + - wifi: ath11k: fix peer addition/deletion error on sta band migration + - x86/cpu: Include the header of init_ia32_feat_ctl()'s prototype + - spi: cadence-quadspi: Fix PM disable depth imbalance in cqspi_probe + - spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe + - spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe + - skmsg: Schedule psock work if the cached skb exists on the psock + - cw1200: fix incorrect check to determine if no element is found in list + - i2c: mlxbf: support lock mechanism + - Bluetooth: hci_core: Fix not handling link timeouts propertly + - xfrm: Reinject transport-mode packets through workqueue + - netfilter: nft_fib: Fix for rpath check with VRF devices + - spi: s3c64xx: Fix large transfers with DMA + - wifi: rtl8xxxu: gen2: Enable 40 MHz channel width + - wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM + - vhost/vsock: Use kvmalloc/kvfree for larger packets. + - eth: alx: take rtnl_lock on resume + - mISDN: fix use-after-free bugs in l1oip timer handlers + - sctp: handle the error returned from sctp_auth_asoc_init_active_key + - tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited + - spi: Ensure that sg_table won't be used after being freed + - Bluetooth: hci_sync: Fix not indicating power state + - hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 + controller + - net: rds: don't hold sock lock when cancelling work from + rds_tcp_reset_callbacks() + - af_unix: Fix memory leaks of the whole sk due to OOB skb. + - net: prestera: acl: Add check for kmemdup + - eth: lan743x: reject extts for non-pci11x1x devices + - bnx2x: fix potential memory leak in bnx2x_tpa_stop() + - eth: sp7021: fix use after free bug in spl2sw_nvmem_get_mac_address + - net: wwan: iosm: Call mutex_init before locking it + - net/ieee802154: reject zero-sized raw_sendmsg() + - once: add DO_ONCE_SLOW() for sleepable contexts + - net: mvpp2: fix mvpp2 debugfs leak + - drm: bridge: adv7511: fix CEC power down control register offset + - drm: bridge: adv7511: unregister cec i2c device after cec adapter + - drm/bridge: Avoid uninitialized variable warning + - drm/mipi-dsi: Detach devices when removing the host + - drm/bridge: it6505: Power on downstream device in .atomic_enable + - drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling + - drm/bridge: tc358767: Add of_node_put() when breaking out of loop + - drm/bridge: parade-ps8640: Fix regulator supply order + - drm/dp_mst: fix drm_dp_dpcd_read return value checks + - drm:pl111: Add of_node_put() when breaking out of + for_each_available_child_of_node() + - ASoC: mt6359: fix tests for platform_get_irq() failure + - drm/msm: Make .remove and .shutdown HW shutdown consistent + - platform/chrome: fix double-free in chromeos_laptop_prepare() + - platform/chrome: fix memory corruption in ioctl + - drm/virtio: Fix same-context optimization + - ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() + - ASoC: tas2764: Allow mono streams + - ASoC: tas2764: Drop conflicting set_bias_level power setting + - ASoC: tas2764: Fix mute/unmute + - platform/x86: msi-laptop: Fix old-ec check for backlight registering + - platform/x86: msi-laptop: Fix resource cleanup + - platform/chrome: cros_ec_typec: Correct alt mode index + - drm/amdgpu: add missing pci_disable_device() in + amdgpu_pmops_runtime_resume() + - drm/bridge: megachips: Fix a null pointer dereference bug + - drm/bridge: it6505: Fix the order of DP_SET_POWER commands + - ASoC: rsnd: Add check for rsnd_mod_power_on + - ASoC: wm_adsp: Handle optional legacy support + - ALSA: hda: beep: Simplify keep-power-at-enable behavior + - drm/virtio: set fb_modifiers_not_supported + - drm/bochs: fix blanking + - ASoC: SOF: mediatek: mt8195: Import namespace SND_SOC_SOF_MTK_COMMON + - drm/omap: dss: Fix refcount leak bugs + - drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() + - mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() + - ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API + - drm/msm: lookup the ICC paths in both mdp5/dpu and mdss devices + - drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx + - drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() + - ALSA: usb-audio: Properly refcounting clock rate + - drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() + - virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() + - ASoC: codecs: tx-macro: fix kcontrol put + - ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() + - ALSA: dmaengine: increment buffer pointer atomically + - mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() + - ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe + - ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe + - ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe + - ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe + - ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe + - ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe + - ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe + - ALSA: hda/hdmi: Don't skip notification handling during PM operation + - memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() + - memory: of: Fix refcount leak bug in of_get_ddr_timings() + - memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() + - locks: fix TOCTOU race when granting write lease + - soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() + - soc: qcom: smem_state: Add refcounting for the 'state->of_node' + - ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus + - arm64: dts: renesas: r9a07g044: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g054: Fix SCI{Rx,Tx} interrupt types + - arm64: dts: renesas: r9a07g043: Fix SCI{Rx,Tx} interrupt types + - dt-bindings: clock: exynosautov9: correct clock numbering of peric0/c1 + - ARM: dts: turris-omnia: Fix mpp26 pin name and comment + - ARM: dts: kirkwood: lsxl: fix serial line + - ARM: dts: kirkwood: lsxl: remove first ethernet port + - ia64: export memory_add_physaddr_to_nid to fix cxl build error + - soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA + - arm64: dts: ti: k3-j7200: fix main pinmux range + - ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family + - ARM: Drop CMDLINE_* dependency on ATAGS + - ext4: don't run ext4lazyinit for read-only filesystems + - arm64: ftrace: fix module PLTs with mcount + - ARM: dts: exynos: fix polarity of VBUS GPIO of Origen + - iomap: iomap: fix memory corruption when recording errors during writeback + - iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX + - iio: adc: at91-sama5d2_adc: check return status for pressure and touch + - iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq + - iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume + - iio: inkern: only release the device node when done with it + - iio: inkern: fix return value in devm_of_iio_channel_get_by_name() + - iio: ABI: Fix wrong format of differential capacitance channel ABI. + - iio: magnetometer: yas530: Change data type of hard_offsets to signed + - RDMA/mlx5: Don't compare mkey tags in DEVX indirect mkey + - usb: common: debug: Check non-standard control requests + - clk: meson: Hold reference returned by of_get_parent() + - clk: st: Hold reference returned by of_get_parent() + - clk: oxnas: Hold reference returned by of_get_parent() + - clk: qoriq: Hold reference returned by of_get_parent() + - clk: berlin: Add of_node_put() for of_get_parent() + - clk: sprd: Hold reference returned by of_get_parent() + - clk: tegra: Fix refcount leak in tegra210_clock_init + - clk: tegra: Fix refcount leak in tegra114_clock_init + - clk: tegra20: Fix refcount leak in tegra20_clock_init + - clk: samsung: exynosautov9: correct register offsets of peric0/c1 + - HSI: omap_ssi: Fix refcount leak in ssi_probe + - HSI: omap_ssi_port: Fix dma_map_sg error check + - clk: qcom: gcc-sdm660: Use floor ops for SDCC1 clock + - media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop + - tty: xilinx_uartps: Fix the ignore_status + - media: amphion: insert picture startcode after seek for vc1g format + - media: amphion: adjust the encoder's value range of gop size + - media: amphion: don't change the colorspace reported by decoder. + - media: amphion: fix a bug that vpu core may not resume after suspend + - media: meson: vdec: add missing clk_disable_unprepare on error in + vdec_hevc_start() + - media: uvcvideo: Fix memory leak in uvc_gpio_parse + - media: uvcvideo: Use entity get_cur in uvc_ctrl_set + - media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init + - RDMA/rxe: Fix "kernel NULL pointer dereference" error + - RDMA/rxe: Fix the error caused by qp->sk + - clk: mediatek: clk-mt8195-vdo0: Set rate on vdo0_dp_intf0_dp_intf's parent + - clk: mediatek: clk-mt8195-vdo1: Reparent and set rate on vdo1_dpintf's + parent + - clk: mediatek: mt8195-infra_ao: Set pwrmcu clocks as critical + - misc: ocxl: fix possible refcount leak in afu_ioctl() + - fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() + - phy: rockchip-inno-usb2: Return zero after otg sync + - dmaengine: idxd: avoid deadlock in process_misc_interrupts() + - dmaengine: hisilicon: Disable channels when unregister hisi_dma + - dmaengine: hisilicon: Fix CQ head update + - dmaengine: hisilicon: Add multi-thread support for a DMA channel + - usb: gadget: f_fs: stricter integer overflow checks + - dyndbg: fix static_branch manipulation + - dyndbg: fix module.dyndbg handling + - dyndbg: let query-modname override actual module name + - dyndbg: drop EXPORTed dynamic_debug_exec_queries + - clk: qcom: sm6115: Select QCOM_GDSC + - mtd: devices: docg3: check the return value of devm_ioremap() in the probe + - remoteproc: Harden rproc_handle_vdev() against integer overflow + - phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by + of_get_parent() + - phy: phy-mtk-tphy: fix the phy type setting issue + - mtd: rawnand: intel: Read the chip-select line from the correct OF node + - mtd: rawnand: intel: Remove undocumented compatible string + - mtd: rawnand: fsl_elbc: Fix none ECC mode + - RDMA/irdma: Align AE id codes to correct flush code and event + - RDMA/irdma: Validate udata inlen and outlen + - RDMA/srp: Fix srp_abort() + - RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall. + - RDMA/siw: Fix QP destroy to wait for all references dropped. + - ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() + - ata: fix ata_id_has_devslp() + - ata: fix ata_id_has_ncq_autosense() + - ata: fix ata_id_has_dipm() + - mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() + - md/raid5: Ensure stripe_fill happens on non-read IO with journal + - md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() + - RDMA/cm: Use SLID in the work completion as the DLID in responder side + - IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers + - xhci: Don't show warning for reinit on known broken suspend + - usb: gadget: function: fix dangling pnp_string in f_printer.c + - usb: dwc3: core: fix some leaks in probe + - drivers: serial: jsm: fix some leaks in probe + - serial: 8250: Toggle IER bits on only after irq has been set up + - tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown + - phy: qualcomm: call clk_disable_unprepare in the error handling + - staging: vt6655: fix some erroneous memory clean-up loops + - slimbus: qcom-ngd-ctrl: allow compile testing without QCOM_RPROC_COMMON + - slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register + - firmware: google: Test spinlock on panic path to avoid lockups + - serial: 8250: Fix restoring termios speed after suspend + - scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() + - scsi: pm8001: Fix running_req for internal abort commands + - scsi: iscsi: Rename iscsi_conn_queue_work() + - scsi: iscsi: Add recv workqueue helpers + - scsi: iscsi: Run recv path from workqueue + - scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() + - clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical + - clk: qcom: gcc-sm6115: Override default Alpha PLL regs + - RDMA/rxe: Fix resize_finish() in rxe_queue.c + - fsi: core: Check error number after calling ida_simple_get + - mfd: intel_soc_pmic: Fix an error handling path in + intel_soc_pmic_i2c_probe() + - mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() + - mfd: lp8788: Fix an error handling path in lp8788_probe() + - mfd: lp8788: Fix an error handling path in lp8788_irq_init() and + lp8788_irq_init() + - mfd: fsl-imx25: Fix check for platform_get_irq() errors + - mfd: sm501: Add check for platform_driver_register() + - mfd: da9061: Fix Failed to set Two-Wire Bus Mode. + - clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent + - clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes + - clk: mediatek: fix unregister function in mtk_clk_register_dividers cleanup + - clk: mediatek: Migrate remaining clk_unregister_*() to clk_hw_unregister_*() + - dmaengine: ioat: stop mod_timer from resurrecting deleted timer in + __cleanup() + - usb: mtu3: fix failed runtime suspend in host only mode + - spmi: pmic-arb: correct duplicate APID to PPID mapping logic + - clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD + - clk: baikal-t1: Fix invalid xGMAC PTP clock divider + - clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent + - clk: baikal-t1: Add SATA internal ref clock buffer + - clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration + - clk: imx: scu: fix memleak on platform_device_add() fails + - clk: ti: Balance of_node_get() calls for of_find_node_by_name() + - clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe + - clk: ast2600: BCLK comes from EPLL + - mailbox: mpfs: fix handling of the reg property + - mailbox: mpfs: account for mbox offsets while sending + - mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg + - ipc: mqueue: fix possible memory leak in init_mqueue_fs() + - powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig + - powerpc/math_emu/efp: Include module.h + - powerpc/sysdev/fsl_msi: Add missing of_node_put() + - powerpc/pci_dn: Add missing of_node_put() + - powerpc/powernv: add missing of_node_put() in opal_export_attrs() + - cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage + - powerpc: Fix fallocate and fadvise64_64 compat parameter combination + - x86/hyperv: Fix 'struct hv_enlightened_vmcs' definition + - powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 + - powerpc/64: mark irqs hard disabled in boot paca + - powerpc/64/interrupt: Fix return to masked context after hard-mask irq + becomes pending + - powerpc: Fix SPE Power ISA properties for e500v1 platforms + - powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() + - powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL + - crypto: sahara - don't sleep when in softirq + - crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr + - hwrng: arm-smccc-trng - fix NO_ENTROPY handling + - crypto: ccp - Fail the PSP initialization when writing psp data file failed + - cgroup: Honor caller's cgroup NS when resolving path + - hwrng: imx-rngc - Moving IRQ handler registering after + imx_rngc_irq_mask_clear() + - crypto: qat - fix default value of WDT timer + - crypto: hisilicon/qm - fix missing put dfx access + - cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset + - iommu/omap: Fix buffer overflow in debugfs + - crypto: akcipher - default implementation for setting a private key + - crypto: ccp - Release dma channels before dmaengine unrgister + - crypto: inside-secure - Change swab to swab32 + - crypto: qat - fix DMA transfer direction + - clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 + - clocksource/drivers/timer-gxp: Add missing error handling in gxp_timer_probe + - cifs: return correct error in ->calc_signature() + - iommu/iova: Fix module config properly + - tracing: kprobe: Fix kprobe event gen test module on exit + - tracing: kprobe: Make gen test module work in arm and riscv + - tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads + - kbuild: remove the target in signal traps when interrupted + - linux/export: use inline assembler to populate symbol CRCs + - kbuild: rpm-pkg: fix breakage when V=1 is used + - crypto: marvell/octeontx - prevent integer overflows + - crypto: cavium - prevent integer overflow loading firmware + - random: schedule jitter credit for next jiffy, not in two jiffies + - thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id + - ACPI: APEI: do not add task_work to kernel thread to avoid memory leak + - f2fs: fix race condition on setting FI_NO_EXTENT flag + - f2fs: fix to account FS_CP_DATA_IO correctly + - selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle + - module: tracking: Keep a record of tainted unloaded modules only + - fs: dlm: fix race in lowcomms + - rcu: Avoid triggering strict-GP irq-work when RCU is idle + - rcu: Back off upon fill_page_cache_func() allocation failure + - cpufreq: amd_pstate: fix wrong lowest perf fetch + - ACPI: video: Add Toshiba Satellite/Portege Z830 quirk + - fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL + - ACPI: tables: FPDT: Don't call acpi_os_map_memory() on invalid phys address + - cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode + - MIPS: BCM47XX: Cast memcmp() of function to (void *) + - powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue + - thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to + avoid crash + - ARM: decompressor: Include .data.rel.ro.local + - ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable + - x86/entry: Work around Clang __bdos() bug + - NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data + - NFSD: fix use-after-free on source server when doing inter-server copy + - wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices + - wifi: brcmfmac: fix invalid address access when enabling SCAN log level + - bpftool: Clear errno after libcap's checks + - ice: set tx_tstamps when creating new Tx rings via ethtool + - net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 + - openvswitch: Fix double reporting of drops in dropwatch + - openvswitch: Fix overreporting of drops in dropwatch + - tcp: annotate data-race around tcp_md5sig_pool_populated + - x86/mce: Retrieve poison range from hardware + - wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() + - thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround + - x86/apic: Don't disable x2APIC if locked + - net: axienet: Switch to 64-bit RX/TX statistics + - net-next: Fix IP_UNICAST_IF option behavior for connected sockets + - xfrm: Update ipcomp_scratches with NULL when freed + - wifi: ath11k: Register shutdown handler for WCN6750 + - rtw89: ser: leave lps with mutex + - iavf: Fix race between iavf_close and iavf_reset_task + - wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() + - Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk + - regulator: core: Prevent integer underflow + - wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() + - wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value + - wifi: rtw89: free unused skb to prevent memory leak + - wifi: rtw89: fix rx filter after scan + - Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() + - Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times + - bnxt_en: replace reset with config timestamps + - selftests/bpf: Free the allocated resources after test case succeeds + - can: bcm: check the result of can_send() in bcm_can_tx() + - wifi: rt2x00: don't run Rt5592 IQ calibration on MT7620 + - wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 + - wifi: rt2x00: set VGC gain for both chains of MT7620 + - wifi: rt2x00: set SoC wmac clock register + - wifi: rt2x00: correctly set BBP register 86 for MT7620 + - hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms + - net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memory + - bpf: Adjust kprobe_multi entry_ip for CONFIG_X86_KERNEL_IBT + - bpf: use bpf_prog_pack for bpf_dispatcher + - Bluetooth: L2CAP: Fix user-after-free + - i2c: designware-pci: Group AMD NAVI quirk parts together + - r8152: Rate limit overflow messages + - drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() + - drm: Use size_t type for len variable in drm_copy_field() + - drm: Prevent drm_copy_field() to attempt copying a NULL pointer + - drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook + - gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() + - drm/amd/display: fix overflow on MIN_I64 definition + - udmabuf: Set ubuf->sg = NULL if the creation of sg table fails + - platform/x86: pmc_atom: Improve quirk message to be less cryptic + - drm: bridge: dw_hdmi: only trigger hotplug event on link change + - drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 + - drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF + - ALSA: usb-audio: Register card at the last interface + - drm/vc4: vec: Fix timings for VEC modes + - drm: panel-orientation-quirks: Add quirk for Anbernic Win600 + - drm: panel-orientation-quirks: Add quirk for Aya Neo Air + - platform/chrome: cros_ec: Notify the PM of wake events during resume + - platform/x86: hp-wmi: Setting thermal profile fails with 0x06 + - platform/x86: msi-laptop: Change DMI match / alias strings to fix module + autoloading + - ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS + - ASoC: SOF: pci: Change DMI match info to support all Chrome platforms + - ASoC: SOF: add quirk to override topology mclk_id + - drm/amdgpu: SDMA update use unlocked iterator + - drm/amd/display: correct hostvm flag + - drm/amdgpu: fix initial connector audio value + - drm/meson: reorder driver deinit sequence to fix use-after-free bug + - drm/meson: explicitly remove aggregate driver at module unload time + - drm/meson: remove drm bridges at aggregate driver unbind time + - drm/dp: Don't rewrite link config when setting phy test pattern + - drm/amd/display: Remove interface for periodic interrupt 1 + - drm/amd/display: polling vid stream status in hpo dp blank + - drm/amdkfd: Fix UBSAN shift-out-of-bounds warning + - ARM: dts: imx6: delete interrupts property if interrupts-extended is set + - ARM: dts: imx7d-sdb: config the max pressure for tsc2046 + - ARM: dts: imx6q: add missing properties for sram + - ARM: dts: imx6dl: add missing properties for sram + - ARM: dts: imx6qp: add missing properties for sram + - ARM: dts: imx6sl: add missing properties for sram + - ARM: dts: imx6sll: add missing properties for sram + - ARM: dts: imx6sx: add missing properties for sram + - ARM: dts: imx6sl: use tabs for code indent + - ARM: dts: imx6sx-udoo-neo: don't use multiple blank lines + - kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT + - arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO + voltage + - arm64: dts: imx8mq-librem5: Add bq25895 as max17055's power supply + - btrfs: dump extra info if one free space cache has more bitmaps than it + should + - btrfs: scrub: properly report super block errors in system log + - btrfs: scrub: try to fix super block errors + - btrfs: don't print information about space cache or tree every remount + - btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure + - ARM: 9233/1: stacktrace: Skip frame pointer boundary check for + call_with_stack() + - ARM: 9234/1: stacktrace: Avoid duplicate saving of exception PC value + - ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n + - clk: zynqmp: Fix stack-out-of-bounds in strncpy` + - media: cx88: Fix a null-ptr-deref bug in buffer_prepare() + - media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc + - clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate + - RDMA/rxe: Delete error messages triggered by incoming Read requests + - usb: host: xhci-plat: suspend and resume clocks + - usb: host: xhci-plat: suspend/resume clks for brcm + - scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID + - dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow + - scsi: 3w-9xxx: Avoid disabling device if failing to enable it + - nbd: Fix hung when signal interrupts nbd_start_device_ioctl() + - iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to + identity + - usb: gadget: uvc: increase worker prio to WQ_HIGHPRI + - power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() + - staging: vt6655: fix potential memory leak + - blk-throttle: prevent overflow while calculating wait time + - ata: libahci_platform: Sanity check the DT child nodes number + - bcache: fix set_at_max_writeback_rate() for multiple attached devices + - soundwire: cadence: Don't overwrite msg->buf during write commands + - soundwire: intel: fix error handling on dai registration issues + - HID: roccat: Fix use-after-free in roccat_read() + - HSI: ssi_protocol: fix potential resource leak in ssip_pn_open() + - HID: nintendo: check analog user calibration for plausibility + - eventfd: guard wake_up in eventfd fs calls as well + - md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d + - usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() + - usb: musb: Fix musb_gadget.c rxstate overflow bug + - usb: dwc3: core: add gfladj_refclk_lpm_sel quirk + - arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes + - usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after + resume bug + - Revert "usb: storage: Add quirk for Samsung Fit flash" + - staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() + - staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() + - scsi: tracing: Fix compile error in trace_array calls when TRACING is + disabled + - ext2: Use kvmalloc() for group descriptor array + - nvme: handle effects after freeing the request + - nvme: copy firmware_rev on each init + - nvmet-tcp: add bounds check on Transfer Tag + - usb: idmouse: fix an uninit-value in idmouse_open + - blk-mq: use quiesced elevator switch when reinitializing queues + - hwmon (occ): Retry for checksum failure + - fsi: occ: Prevent use after free + - usb: typec: ucsi: Don't warn on probe deferral + - clk: bcm2835: Make peripheral PLLC critical + - clk: bcm2835: Round UART input clock up + - perf: Skip and warn on unknown format 'configN' attrs + - perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc + - perf intel-pt: Fix system_wide dummy event for hybrid + - mm: hugetlb: fix UAF in hugetlb_handle_userfault + - net: ieee802154: return -EINVAL for unknown addr type + - ALSA: usb-audio: Fix last interface check for registration + - blk-wbt: fix that 'rwb->wc' is always set to 1 in wbt_init() + - [Config] updateconfigs for MDIO_BITBANG + - net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses + - Revert "drm/amd/display: correct hostvm flag" + - Revert "net/ieee802154: reject zero-sized raw_sendmsg()" + - net/ieee802154: don't warn zero-sized raw_sendmsg() + - powerpc/64s/interrupt: Fix lost interrupts when returning to soft-masked + context + - drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n + - kbuild: Add skip_encoding_btf_enum64 option to pahole + - Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 + - Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT + - [Config] updateconfigs for AS_HAS_NON_CONST_LEB128 + - lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 + - HID: uclogic: Add missing suffix for digitalizers + - ext4: continue to expand file system when the target size doesn't reach + - drm/i915: Rename block_size()/block_offset() + - drm/i915/bios: Validate fp_timing terminator presence + - drm/i915/bios: Use hardcoded fp_timing size for generating LFP data pointers + - Linux 5.19.17 + * Kinetic update: v5.19.16 upstream stable release (LP: #1994164) + - nilfs2: fix NULL pointer dereference at nilfs_bmap_lookup_at_level() + - nilfs2: fix use-after-free bug of struct nilfs_root + - nilfs2: fix leak of nilfs_root in case of writer thread creation failure + - nilfs2: replace WARN_ONs by nilfs_error for checkpoint acquisition failure + - ceph: don't truncate file in atomic_open + - nvme-pci: set min_align_mask before calculating max_hw_sectors + - random: restore O_NONBLOCK support + - random: clamp credited irq bits to maximum mixed + - ALSA: hda: Fix position reporting on Poulsbo + - ALSA: hda/realtek: Add quirk for HP Zbook Firefly 14 G9 model + - efi: Correct Macmini DMI match in uefi cert quirk + - USB: serial: qcserial: add new usb-id for Dell branded EM7455 + - Revert "USB: fixup for merge issue with "usb: dwc3: Don't switch OTG -> + peripheral if extcon is present"" + - Revert "usb: dwc3: Don't switch OTG -> peripheral if extcon is present" + - Revert "powerpc/rtas: Implement reentrant rtas call" + - Revert "crypto: qat - reduce size of mapped region" + - random: avoid reading two cache lines on irq randomness + - random: use expired timer rather than wq for mixing fast pool + - mctp: prevent double key removal and unref + - Input: xpad - add supported devices as contributed on github + - Input: xpad - fix wireless 360 controller breaking after suspend + - misc: pci_endpoint_test: Aggregate params checking for xfer + - misc: pci_endpoint_test: Fix pci_endpoint_test_{copy,write,read}() panic + - Linux 5.19.16 + * Kinetic update: v5.19.15 upstream stable release (LP: #1994078) + - sparc: Unbreak the build + - Makefile.extrawarn: Move -Wcast-function-type-strict to W=1 + - [Config] updateconfigs for CC_HAS_AUTO_VAR_INIT_ZERO_ENABLER + - hardening: Remove Clang's enable flag for -ftrivial-auto-var-init=zero + - docs: update mediator information in CoC docs + - xsk: Inherit need_wakeup flag for shared sockets + - firmware: arm_scmi: Improve checks in the info_get operations + - firmware: arm_scmi: Harden accesses to the sensor domains + - firmware: arm_scmi: Add SCMI PM driver remove routine + - arm64: dts: rockchip: fix upper usb port on BPI-R2-Pro + - dmaengine: xilinx_dma: Fix devm_platform_ioremap_resource error handling + - dmaengine: xilinx_dma: cleanup for fetching xlnx,num-fstores property + - dmaengine: xilinx_dma: Report error in case of dma_set_mask_and_coherent API + failure + - wifi: iwlwifi: don't spam logs with NSS>2 messages + - ARM: dts: fix Moxa SDIO 'compatible', remove 'sdhci' misnomer + - drm/amdgpu/mes: zero the sdma_hqd_mask of 2nd SDMA engine for SDMA 6.0.1 + - scsi: qedf: Fix a UAF bug in __qedf_probe() + - net/ieee802154: fix uninit value bug in dgram_sendmsg + - net: marvell: prestera: add support for for Aldrin2 + - ALSA: hda/hdmi: Fix the converter reuse for the silent stream + - um: Cleanup syscall_handler_t cast in syscalls_32.h + - um: Cleanup compiler warning in arch/x86/um/tls_32.c + - gpio: ftgpio010: Make irqchip immutable + - arch: um: Mark the stack non-executable to fix a binutils warning + - net: atlantic: fix potential memory leak in aq_ndev_close() + - KVM: s390: Pass initialized arg even if unused + - drm/amd/display: Fix double cursor on non-video RGB MPO + - drm/amd/display: Assume an LTTPR is always present on fixed_vs links + - drm/amd/display: update gamut remap if plane has changed + - drm/amd/display: skip audio setup when audio stream is enabled + - drm/amd/display: Fix DP MST timeslot issue when fallback happened + - drm/amd/display: increase dcn315 pstate change latency + - perf/x86/intel: Fix unchecked MSR access error for Alder Lake N + - don't use __kernel_write() on kmap_local_page() + - i2c: davinci: fix PM disable depth imbalance in davinci_i2c_probe + - usb: mon: make mmapped memory read only + - USB: serial: ftdi_sio: fix 300 bps rate for SIO + - gpiolib: acpi: Add support to ignore programming an interrupt + - gpiolib: acpi: Add a quirk for Asus UM325UAZ + - mmc: core: Replace with already defined values for readability + - mmc: core: Terminate infinite loop in SD-UHS voltage switch + - rpmsg: qcom: glink: replace strncpy() with strscpy_pad() + - bpf: Gate dynptr API behind CAP_BPF + - net: ethernet: mtk_eth_soc: fix state in __mtk_foe_entry_clear + - bpf: Fix resetting logic for unreferenced kptrs + - Bluetooth: use hdev->workqueue when queuing hdev->{cmd,ncmd}_timer works + - Revert "clk: ti: Stop using legacy clkctrl names for omap4 and 5" + - Linux 5.19.15 + * Kinetic update: v5.19.14 upstream stable release (LP: #1994076) + - riscv: make t-head erratas depend on MMU + - tools/perf: Fix out of bound access to cpu mask array + - perf record: Fix cpu mask bit setting for mixed mmaps + - counter: 104-quad-8: Utilize iomap interface + - counter: 104-quad-8: Implement and utilize register structures + - counter: 104-quad-8: Fix skipped IRQ lines during events configuration + - uas: add no-uas quirk for Hiksemi usb_disk + - usb-storage: Add Hiksemi USB3-FW to IGNORE_UAS + - uas: ignore UAS for Thinkplus chips + - usb: typec: ucsi: Remove incorrect warning + - thunderbolt: Explicitly reset plug events delay back to USB4 spec value + - net: usb: qmi_wwan: Add new usb-id for Dell branded EM7455 + - Input: snvs_pwrkey - fix SNVS_HPVIDR1 register address + - can: c_can: don't cache TX messages for C_CAN cores + - clk: ingenic-tcu: Properly enable registers before accessing timers + - wifi: mac80211: ensure vif queues are operational after start + - x86/sgx: Do not fail on incomplete sanitization on premature stop of ksgxd + - frontswap: don't call ->init if no ops are registered + - ARM: dts: integrator: Tag PCI host with device_type + - ntfs: fix BUG_ON in ntfs_lookup_inode_by_name() + - x86/uaccess: avoid check_object_size() in copy_from_user_nmi() + - mm/damon/dbgfs: fix memory leak when using debugfs_lookup() + - net: mt7531: only do PLL once after the reset + - Revert "firmware: arm_scmi: Add clock management to the SCMI power domain" + - powerpc/64s/radix: don't need to broadcast IPI for radix pmd collapse flush + - drm/i915/gt: Restrict forced preemption to the active context + - drm/amdgpu: Add amdgpu suspend-resume code path under SRIOV + - vduse: prevent uninitialized memory accesses + - libata: add ATA_HORKAGE_NOLPM for Pioneer BDR-207M and BDR-205 + - mm: fix BUG splat with kvmalloc + GFP_ATOMIC + - mptcp: factor out __mptcp_close() without socket lock + - mptcp: fix unreleased socket in accept queue + - mmc: moxart: fix 4-bit bus width and remove 8-bit bus width + - mmc: hsq: Fix data stomping during mmc recovery + - mm: gup: fix the fast GUP race against THP collapse + - mm/page_alloc: fix race condition between build_all_zonelists and page + allocation + - mm: prevent page_frag_alloc() from corrupting the memory + - mm/page_isolation: fix isolate_single_pageblock() isolation behavior + - mm: fix dereferencing possible ERR_PTR + - mm/migrate_device.c: flush TLB while holding PTL + - mm/migrate_device.c: add missing flush_cache_page() + - mm/migrate_device.c: copy pte dirty bit to page + - mm: fix madivse_pageout mishandling on non-LRU page + - mm: bring back update_mmu_cache() to finish_fault() + - mm/hugetlb: correct demote page offset logic + - mm,hwpoison: check mm when killing accessing process + - media: dvb_vb2: fix possible out of bound access + - media: rkvdec: Disable H.264 error detection + - media: mediatek: vcodec: Drop platform_get_resource(IORESOURCE_IRQ) + - media: v4l2-compat-ioctl32.c: zero buffer passed to + v4l2_compat_get_array_args() + - ARM: dts: am33xx: Fix MMCHS0 dma properties + - reset: imx7: Fix the iMX8MP PCIe PHY PERST support + - ARM: dts: am5748: keep usb4_tm disabled + - soc: sunxi: sram: Actually claim SRAM regions + - soc: sunxi: sram: Prevent the driver from being unbound + - soc: sunxi: sram: Fix probe function ordering issues + - soc: sunxi: sram: Fix debugfs info for A64 SRAM C + - ASoC: imx-card: Fix refcount issue with of_node_put + - clk: microchip: mpfs: fix clk_cfg array bounds violation + - clk: microchip: mpfs: make the rtc's ahb clock critical + - arm64: dts: qcom: sm8350: fix UFS PHY serdes size + - ASoC: tas2770: Reinit regcache on reset + - drm/bridge: lt8912b: add vsync hsync + - drm/bridge: lt8912b: set hdmi or dvi mode + - drm/bridge: lt8912b: fix corrupted image output + - net: macb: Fix ZynqMP SGMII non-wakeup source resume failure + - Revert "drm: bridge: analogix/dp: add panel prepare/unprepare in + suspend/resume time" + - Input: melfas_mip4 - fix return value check in mip4_probe() + - gpio: mvebu: Fix check for pwm support on non-A8K platforms + - perf parse-events: Break out tracepoint and printing + - perf print-events: Fix "perf list" can not display the PMU prefix for some + hybrid cache events + - perf parse-events: Remove "not supported" hybrid cache events + - usbnet: Fix memory leak in usbnet_disconnect() + - net: sched: act_ct: fix possible refcount leak in tcf_ct_init() + - cxgb4: fix missing unlock on ETHOFLD desc collect fail path + - net/mlxbf_gige: Fix an IS_ERR() vs NULL bug in mlxbf_gige_mdio_probe + - nvme: Fix IOC_PR_CLEAR and IOC_PR_RELEASE ioctls for nvme devices + - wifi: cfg80211: fix MCS divisor value + - wifi: mac80211: fix regression with non-QoS drivers + - wifi: mac80211: fix memory corruption in minstrel_ht_update_rates() + - net: stmmac: power up/down serdes in stmmac_open/release + - net: phy: Don't WARN for PHY_UP state in mdio_bus_phy_resume() + - selftests: Fix the if conditions of in test_extra_filter() + - ice: xsk: change batched Tx descriptor cleaning + - ice: xsk: drop power of 2 ring size restriction for AF_XDP + - vdpa/ifcvf: fix the calculation of queuepair + - virtio-blk: Fix WARN_ON_ONCE in virtio_queue_rq() + - vdpa/mlx5: Fix MQ to support non power of two num queues + - clk: imx: imx6sx: remove the SET_RATE_PARENT flag for QSPI clocks + - drm/i915/gt: Perf_limit_reasons are only available for Gen11+ + - clk: iproc: Do not rely on node name for correct PLL setup + - clk: imx93: drop of_match_ptr + - net: mscc: ocelot: fix tagged VLAN refusal while under a VLAN-unaware bridge + - net: ethernet: mtk_eth_soc: fix mask of RX_DMA_GET_SPORT{,_V2} + - perf test: Fix test case 87 ("perf record tests") for hybrid systems + - perf tests record: Fail the test if the 'errs' counter is not zero + - KVM: x86: Hide IA32_PLATFORM_DCA_CAP[31:0] from the guest + - x86/cacheinfo: Add a cpu_llc_shared_mask() UP variant + - x86/alternative: Fix race in try_get_desc() + - damon/sysfs: fix possible memleak on damon_sysfs_add_target + - Linux 5.19.14 + * Kinetic update: v5.19.13 upstream stable release (LP: #1994075) + - Linux 5.19.13 + * Kinetic update: v5.19.12 upstream stable release (LP: #1994074) + - smb3: Move the flush out of smb2_copychunk_range() into its callers + - smb3: fix temporary data corruption in collapse range + - smb3: fix temporary data corruption in insert range + - usb: add quirks for Lenovo OneLink+ Dock + - usb: gadget: udc-xilinx: replace memcpy with memcpy_toio + - smb3: use filemap_write_and_wait_range instead of filemap_write_and_wait + - Revert "usb: add quirks for Lenovo OneLink+ Dock" + - Revert "usb: gadget: udc-xilinx: replace memcpy with memcpy_toio" + - xfrm: fix XFRMA_LASTUSED comment + - block: remove QUEUE_FLAG_DEAD + - block: stop setting the nomerges flags in blk_cleanup_queue + - block: simplify disk shutdown + - scsi: core: Fix a use-after-free + - drivers/base: Fix unsigned comparison to -1 in CPUMAP_FILE_MAX_BYTES + - USB: core: Fix RST error in hub.c + - USB: serial: option: add Quectel BG95 0x0203 composition + - USB: serial: option: add Quectel RM520N + - ALSA: core: Fix double-free at snd_card_new() + - ALSA: hda/tegra: set depop delay for tegra + - ALSA: hda: Fix hang at HD-audio codec unbinding due to refcount saturation + - ALSA: hda: Fix Nvidia dp infoframe + - ALSA: hda: add Intel 5 Series / 3400 PCI DID + - ALSA: hda/realtek: Add quirk for Huawei WRT-WX9 + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5570 laptop + - ALSA: hda/realtek: Re-arrange quirk table entries + - ALSA: hda/realtek: Add pincfg for ASUS G513 HP jack + - ALSA: hda/realtek: Add pincfg for ASUS G533Z HP jack + - ALSA: hda/realtek: Add quirk for ASUS GA503R laptop + - ALSA: hda/realtek: Enable 4-speaker output Dell Precision 5530 laptop + - ALSA: hda/realtek: Add a quirk for HP OMEN 16 (8902) mute LED + - iommu/vt-d: Check correct capability for sagaw determination + - exfat: fix overflow for large capacity partition + - btrfs: fix hang during unmount when stopping block group reclaim worker + - btrfs: fix hang during unmount when stopping a space reclaim worker + - btrfs: zoned: wait for extent buffer IOs before finishing a zone + - libperf evlist: Fix polling of system-wide events + - media: flexcop-usb: fix endpoint type check + - usb: dwc3: core: leave default DMA if the controller does not support 64-bit + DMA + - thunderbolt: Add support for Intel Maple Ridge single port controller + - efi: x86: Wipe setup_data on pure EFI boot + - efi: libstub: check Shim mode using MokSBStateRT + - wifi: mt76: fix reading current per-tid starting sequence number for + aggregation + - gpio: mockup: fix NULL pointer dereference when removing debugfs + - gpio: mockup: Fix potential resource leakage when register a chip + - gpiolib: cdev: Set lineevent_state::irq after IRQ register successfully + - riscv: fix a nasty sigreturn bug... + - riscv: fix RISCV_ISA_SVPBMT kconfig dependency warning + - drm/i915/gem: Flush contexts on driver release + - drm/i915/gem: Really move i915_gem_context.link under ref protection + - xen/xenbus: fix xenbus_setup_ring() + - kasan: call kasan_malloc() from __kmalloc_*track_caller() + - can: flexcan: flexcan_mailbox_read() fix return value for drop = true + - net: mana: Add rmb after checking owner bits + - mm/slub: fix to return errno if kmalloc() fails + - mm: slub: fix flush_cpu_slab()/__free_slab() invocations in task context. + - KVM: x86: Reinstate kvm_vcpu_arch.guest_supported_xcr0 + - KVM: x86: Always enable legacy FP/SSE in allowed user XFEATURES + - KVM: x86: Inject #UD on emulated XSETBV if XSAVES isn't enabled + - perf/arm-cmn: Add more bits to child node address offset field + - arm64: topology: fix possible overflow in amu_fie_setup() + - vmlinux.lds.h: CFI: Reduce alignment of jump-table to function alignment + - batman-adv: Fix hang up with small MTU hard-interface + - firmware: arm_scmi: Harden accesses to the reset domains + - firmware: arm_scmi: Fix the asynchronous reset requests + - arm64: dts: rockchip: Lower sd speed on quartz64-b + - arm64: dts: rockchip: Pull up wlan wake# on Gru-Bob + - arm64: dts: rockchip: Fix typo in lisense text for PX30.Core + - drm/mediatek: dsi: Add atomic {destroy,duplicate}_state, reset callbacks + - arm64: dts: imx8mm: Reverse CPLD_Dn GPIO label mapping on MX8Menlo + - arm64: dts: rockchip: Set RK3399-Gru PCLK_EDP to 24 MHz + - arm64: dts: imx8mn: remove GPU power domain reset + - arm64: dts: imx8ulp: add #reset-cells for pcc + - dmaengine: ti: k3-udma-private: Fix refcount leak bug in of_xudma_dev_get() + - arm64: dts: rockchip: fix property for usb2 phy supply on rock-3a + - arm64: dts: rockchip: fix property for usb2 phy supply on rk3568-evb1-v10 + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3399-puma + - arm64: dts: rockchip: Remove 'enable-active-low' from rk3566-quartz64-a + - arm64: dts: imx8mm-verdin: extend pmic voltages + - netfilter: nf_conntrack_sip: fix ct_sip_walk_headers + - netfilter: nf_conntrack_irc: Tighten matching on DCC message + - netfilter: nfnetlink_osf: fix possible bogus match in nf_osf_find() + - ice: Don't double unplug aux on peer initiated reset + - ice: Fix crash by keep old cfg when update TCs more than queues + - iavf: Fix cached head and tail value for iavf_get_tx_pending + - ipvlan: Fix out-of-bound bugs caused by unset skb->mac_header + - net: core: fix flow symmetric hash + - wifi: iwlwifi: Mark IWLMEI as broken + - [Config] updateconfigs for IWLMEI + - arm64: dts: tqma8mqml: Include phy-imx8-pcie.h header + - drm/mediatek: Fix wrong dither settings + - arm64: dts: imx8mp-venice-gw74xx: fix CAN STBY polarity + - arm64: dts: imx8mp-venice-gw74xx: fix ksz9477 cpu port + - ARM: dts: lan966x: Fix the interrupt number for internal PHYs + - net: phy: aquantia: wait for the suspend/resume operations to finish + - arm64: dts: imx8mp-venice-gw74xx: fix port/phy validation + - scsi: qla2xxx: Fix memory leak in __qlt_24xx_handle_abts() + - scsi: mpt3sas: Fix return value check of dma_get_required_mask() + - net: bonding: Share lacpdu_mcast_addr definition + - net: bonding: Unsync device addresses on ndo_stop + - net: team: Unsync device addresses on ndo_stop + - drm/panel: simple: Fix innolux_g121i1_l01 bus_format + - mm/slab_common: fix possible double free of kmem_cache + - MIPS: lantiq: export clk_get_io() for lantiq_wdt.ko + - MIPS: Loongson32: Fix PHY-mode being left unspecified + - um: fix default console kernel parameter + - iavf: Fix bad page state + - mlxbf_gige: clear MDIO gateway lock after read + - i40e: Fix set max_tx_rate when it is lower than 1 Mbps + - netdevsim: Fix hwstats debugfs file permissions + - sfc: fix TX channel offset when using legacy interrupts + - sfc: fix null pointer dereference in efx_hard_start_xmit + - bnxt_en: fix flags to check for supported fw version + - gve: Fix GFP flags when allocing pages + - drm/hisilicon: Add depends on MMU + - of: mdio: Add of_node_put() when breaking out of for_each_xx + - net: ipa: properly limit modem routing table use + - sfc/siena: fix TX channel offset when using legacy interrupts + - sfc/siena: fix null pointer dereference in efx_hard_start_xmit + - wireguard: ratelimiter: disable timings test by default + - wireguard: netlink: avoid variable-sized memcpy on sockaddr + - net: enetc: move enetc_set_psfp() out of the common enetc_set_features() + - net: enetc: deny offload of tc-based TSN features on VF interfaces + - ipv6: Fix crash when IPv6 is administratively disabled + - net/sched: taprio: avoid disabling offload when it was never enabled + - net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child + qdiscs + - ice: config netdev tc before setting queues number + - ice: Fix interface being down after reset with link-down-on-close flag on + - netfilter: nf_tables: fix nft_counters_enabled underflow at + nf_tables_addchain() + - netfilter: nf_tables: fix percpu memory leak at nf_tables_addchain() + - netfilter: ebtables: fix memory leak when blob is malformed + - netfilter: nf_ct_ftp: fix deadlock when nat rewrite is needed + - net: ravb: Fix PHY state warning splat during system resume + - net: sh_eth: Fix PHY state warning splat during system resume + - gpio: tqmx86: fix uninitialized variable girq + - can: gs_usb: gs_can_open(): fix race dev->can.state condition + - perf stat: Fix BPF program section name + - perf stat: Fix cpu map index in bperf cgroup code + - perf jit: Include program header in ELF files + - perf kcore_copy: Do not check /proc/modules is unchanged + - perf tools: Honor namespace when synthesizing build-ids + - drm/mediatek: dsi: Move mtk_dsi_stop() call back to mtk_dsi_poweroff() + - ice: Fix ice_xdp_xmit() when XDP TX queue number is not sufficient + - net/smc: Stop the CLC flow if no link to map buffers on + - net: phy: micrel: fix shared interrupt on LAN8814 + - bonding: fix NULL deref in bond_rr_gen_slave_id + - net: sunhme: Fix packet reception for len < RX_COPY_THRESHOLD + - net: sched: fix possible refcount leak in tc_new_tfilter() + - bnxt: prevent skb UAF after handing over to PTP worker + - selftests: forwarding: add shebang for sch_red.sh + - io_uring: ensure that cached task references are always put on exit + - serial: fsl_lpuart: Reset prior to registration + - serial: Create uart_xmit_advance() + - serial: tegra: Use uart_xmit_advance(), fixes icount.tx accounting + - serial: tegra-tcu: Use uart_xmit_advance(), fixes icount.tx accounting + - cgroup: cgroup_get_from_id() must check the looked-up kn is a directory + - phy: marvell: phy-mvebu-a3700-comphy: Remove broken reset support + - s390/dasd: fix Oops in dasd_alias_get_start_dev due to missing pavgroup + - blk-mq: fix error handling in __blk_mq_alloc_disk + - block: call blk_mq_exit_queue from disk_release for never added disks + - block: Do not call blk_put_queue() if gendisk allocation fails + - Drivers: hv: Never allocate anything besides framebuffer from framebuffer + memory region + - drm/gma500: Fix BUG: sleeping function called from invalid context errors + - drm/gma500: Fix WARN_ON(lock->magic != lock) error + - drm/gma500: Fix (vblank) IRQs not working after suspend/resume + - gpio: ixp4xx: Make irqchip immutable + - drm/amd/pm: disable BACO entry/exit completely on several sienna cichlid + cards + - drm/amdgpu: change the alignment size of TMR BO to 1M + - drm/amdgpu: add HDP remap functionality to nbio 7.7 + - drm/amdgpu: Skip reset error status for psp v13_0_0 + - drm/amd/display: Limit user regamma to a valid value + - drm/amd/display: Reduce number of arguments of dml31's + CalculateWatermarksAndDRAMSpeedChangeSupport() + - drm/amd/display: Reduce number of arguments of dml31's + CalculateFlipSchedule() + - drm/amd/display: Mark dml30's UseMinimumDCFCLK() as noinline for stack usage + - drm/rockchip: Fix return type of cdn_dp_connector_mode_valid + - gpio: mt7621: Make the irqchip immutable + - pmem: fix a name collision + - fsdax: Fix infinite loop in dax_iomap_rw() + - workqueue: don't skip lockdep work dependency in cancel_work_sync() + - i2c: imx: If pm_runtime_get_sync() returned 1 device access is possible + - i2c: mlxbf: incorrect base address passed during io write + - i2c: mlxbf: prevent stack overflow in mlxbf_i2c_smbus_start_transaction() + - i2c: mlxbf: Fix frequency calculation + - i2c: mux: harden i2c_mux_alloc() against integer overflows + - drm/amdgpu: don't register a dirty callback for non-atomic + - certs: make system keyring depend on built-in x509 parser + - Makefile.debug: set -g unconditional on CONFIG_DEBUG_INFO_SPLIT + - Makefile.debug: re-enable debug info for .S files + - devdax: Fix soft-reservation memory description + - ext4: fix bug in extents parsing when eh_entries == 0 and eh_depth > 0 + - ext4: limit the number of retries after discarding preallocations blocks + - ext4: make mballoc try target group first even with mb_optimize_scan + - ext4: avoid unnecessary spreading of allocations among groups + - ext4: use locality group preallocation for small closed files + - ext4: use buckets for cr 1 block scan instead of rbtree + - Revert "block: freeze the queue earlier in del_gendisk" + - ext4: fixup possible uninitialized variable access in + ext4_mb_choose_next_group_cr1() + - ext4: make directory inode spreading reflect flexbg size + - Linux 5.19.12 + * Kinetic update: v5.19.11 upstream stable release (LP: #1994070) + - of: fdt: fix off-by-one error in unflatten_dt_nodes() + - pinctrl: qcom: sc8180x: Fix gpio_wakeirq_map + - pinctrl: qcom: sc8180x: Fix wrong pin numbers + - pinctrl: rockchip: Enhance support for IRQ_TYPE_EDGE_BOTH + - pinctrl: sunxi: Fix name for A100 R_PIO + - SUNRPC: Fix call completion races with call_decode() + - NFSv4: Turn off open-by-filehandle and NFS re-export for NFSv4.0 + - gpio: mpc8xxx: Fix support for IRQ_TYPE_LEVEL_LOW flow_type in mpc85xx + - NFSv4.2: Update mode bits after ALLOCATE and DEALLOCATE + - Revert "SUNRPC: Remove unreachable error condition" + - drm/panel-edp: Fix delays for Innolux N116BCA-EA1 + - drm/meson: Correct OSD1 global alpha value + - drm/meson: Fix OSD1 RGB to YCbCr coefficient + - drm/rockchip: vop2: Fix eDP/HDMI sync polarities + - drm/i915/vdsc: Set VDSC PIC_HEIGHT before using for DP DSC + - drm/i915/guc: Don't update engine busyness stats too frequently + - drm/i915/guc: Cancel GuC engine busyness worker synchronously + - block: blk_queue_enter() / __bio_queue_enter() must return -EAGAIN for + nowait + - parisc: ccio-dma: Add missing iounmap in error path in ccio_probe() + - of/device: Fix up of_dma_configure_id() stub + - io_uring/msg_ring: check file type before putting + - cifs: revalidate mapping when doing direct writes + - cifs: don't send down the destination address to sendmsg for a SOCK_STREAM + - cifs: always initialize struct msghdr smb_msg completely + - blk-lib: fix blkdev_issue_secure_erase + - parisc: Allow CONFIG_64BIT with ARCH=parisc + - tools/include/uapi: Fix for parisc and xtensa + - drm/i915/gt: Fix perf limit reasons bit positions + - drm/i915: Set correct domains values at _i915_vma_move_to_active + - drm/amdgpu: make sure to init common IP before gmc + - drm/amdgpu: Don't enable LTR if not supported + - drm/amdgpu: move nbio ih_doorbell_range() into ih code for vega + - drm/amdgpu: move nbio sdma_doorbell_range() into sdma code for vega + - net: Find dst with sk's xfrm policy not ctl_sk + - dt-bindings: apple,aic: Fix required item "apple,fiq-index" in affinity + description + - cgroup: Add missing cpus_read_lock() to cgroup_attach_task_all() + - ALSA: hda/sigmatel: Keep power up while beep is enabled + - ALSA: hda/sigmatel: Fix unused variable warning for beep power change + - Linux 5.19.11 + * Kinetic update: v5.19.10 upstream stable release (LP: #1994069) + - iommu/vt-d: Fix kdump kernels boot failure with scalable mode + - net/mlx5: Introduce ifc bits for using software vhca id + - net/mlx5: Use software VHCA id when it's supported + - RDMA/mlx5: Rely on RoCE fw cap instead of devlink when setting profile + - RDMA/mlx5: Add a umr recovery flow + - RDMA/mlx5: Fix UMR cleanup on error flow of driver init + - ACPI: resource: skip IRQ override on AMD Zen platforms + - Input: goodix - add support for GT1158 + - platform/surface: aggregator_registry: Add support for Surface Laptop Go 2 + - drm/msm/rd: Fix FIFO-full deadlock + - peci: cpu: Fix use-after-free in adev_release() + - kvm: x86: mmu: Always flush TLBs when enabling dirty logging + - dt-bindings: iio: gyroscope: bosch,bmg160: correct number of pins + - HID: ishtp-hid-clientHID: ishtp-hid-client: Fix comment typo + - hid: intel-ish-hid: ishtp: Fix ishtp client sending disordered message + - Bluetooth: MGMT: Fix Get Device Flags + - tg3: Disable tg3 device on system reboot to avoid triggering AER + - r8152: add PID for the Lenovo OneLink+ Dock + - gpio: mockup: remove gpio debugfs when remove device + - ieee802154: cc2520: add rc code in cc2520_tx() + - Input: iforce - add support for Boeder Force Feedback Wheel + - drm/amdgpu: disable FRU access on special SIENNA CICHLID card + - drm/amd/pm: use vbios carried pptable for all SMU13.0.7 SKUs + - nvme-pci: add NVME_QUIRK_BOGUS_NID for Lexar NM610 + - nvmet-tcp: fix unhandled tcp states in nvmet_tcp_state_change() + - drm/amd/amdgpu: skip ucode loading if ucode_size == 0 + - net: dsa: hellcreek: Print warning only once + - perf/arm_pmu_platform: fix tests for platform_get_irq() failure + - platform/x86: acer-wmi: Acer Aspire One AOD270/Packard Bell Dot keymap fixes + - usb: storage: Add ASUS <0x0b05:0x1932> to IGNORE_UAS + - platform/x86: asus-wmi: Increase FAN_CURVE_BUF_LEN to 32 + - LoongArch: Fix section mismatch due to acpi_os_ioremap() + - LoongArch: Fix arch_remove_memory() undefined build error + - gpio: 104-dio-48e: Make irq_chip immutable + - gpio: 104-idio-16: Make irq_chip immutable + - RDMA/irdma: Use s/g array in post send only when its valid + - Input: goodix - add compatible string for GT1158 + - Linux 5.19.10 + * Kinetic update: v5.19.9 upstream stable release (LP: #1994068) + - efi: libstub: Disable struct randomization + - efi: capsule-loader: Fix use-after-free in efi_capsule_write + - wifi: mt76: mt7921e: fix crash in chip reset fail + - wifi: iwlegacy: 4965: corrected fix for potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - fs: only do a memory barrier for the first set_buffer_uptodate() + - soc: fsl: select FSL_GUTS driver for DPIO + - Revert "mm: kmemleak: take a full lowmem check in kmemleak_*_phys()" + - scsi: qla2xxx: Disable ATIO interrupt coalesce for quad port ISP27XX + - scsi: core: Allow the ALUA transitioning state enough time + - scsi: megaraid_sas: Fix double kfree() + - drm/gem: Fix GEM handle release errors + - drm/amdgpu: Move psp_xgmi_terminate call from amdgpu_xgmi_remove_device to + psp_hw_fini + - drm/amdgpu: fix hive reference leak when adding xgmi device + - drm/amdgpu: Check num_gfx_rings for gfx v9_0 rb setup. + - drm/amdgpu: Remove the additional kfd pre reset call for sriov + - drm/radeon: add a force flush to delay work when radeon + - scsi: ufs: core: Reduce the power mode change timeout + - Revert "parisc: Show error if wrong 32/64-bit compiler is being used" + - parisc: ccio-dma: Handle kmalloc failure in ccio_init_resources() + - parisc: Add runtime check to prevent PA2.0 kernels on PA1.x machines + - [Config] updateconfigs for ARM64_ERRATUM_2457168 + - arm64: errata: add detection for AMEVCNTR01 incrementing incorrectly + - netfilter: conntrack: work around exceeded receive window + - thermal/int340x_thermal: handle data_vault when the value is ZERO_SIZE_PTR + - cpufreq: check only freq_table in __resolve_freq() + - net/core/skbuff: Check the return value of skb_copy_bits() + - md: Flush workqueue md_rdev_misc_wq in md_alloc() + - fbdev: omapfb: Fix tests for platform_get_irq() failure + - fbdev: fbcon: Destroy mutex on freeing struct fb_info + - fbdev: chipsfb: Add missing pci_disable_device() in chipsfb_pci_init() + - x86/sev: Mark snp_abort() noreturn + - drm/amdgpu: add sdma instance check for gfx11 CGCG + - drm/amdgpu: mmVM_L2_CNTL3 register not initialized correctly + - ALSA: pcm: oss: Fix race at SNDCTL_DSP_SYNC + - ALSA: emu10k1: Fix out of bounds access in snd_emu10k1_pcm_channel_alloc() + - ALSA: hda: Once again fix regression of page allocations with IOMMU + - ALSA: aloop: Fix random zeros in capture data when using jiffies timer + - ALSA: usb-audio: Clear fixed clock rate at closing EP + - ALSA: usb-audio: Fix an out-of-bounds bug in + __snd_usb_parse_audio_interface() + - tracefs: Only clobber mode/uid/gid on remount if asked + - tracing: hold caller_addr to hardirq_{enable,disable}_ip + - tracing: Fix to check event_mutex is held while accessing trigger list + - btrfs: zoned: set pseudo max append zone limit in zone emulation mode + - btrfs: zoned: fix API misuse of zone finish waiting + - vfio/type1: Unpin zero pages + - kprobes: Prohibit probes in gate area + - perf: RISC-V: fix access beyond allocated array + - debugfs: add debugfs_lookup_and_remove() + - sched/debug: fix dentry leak in update_sched_domain_debugfs + - drm/amd/display: fix memory leak when using debugfs_lookup() + - driver core: fix driver_set_override() issue with empty strings + - nvmet: fix a use-after-free + - drm/i915/bios: Copy the whole MIPI sequence block + - drm/i915/slpc: Let's fix the PCODE min freq table setup for SLPC + - scsi: mpt3sas: Fix use-after-free warning + - scsi: lpfc: Add missing destroy_workqueue() in error path + - cgroup: Elide write-locking threadgroup_rwsem when updating csses on an + empty subtree + - cgroup: Fix threadgroup_rwsem <-> cpus_read_lock() deadlock + - cifs: remove useless parameter 'is_fsctl' from SMB2_ioctl() + - smb3: missing inode locks in zero range + - spi: bitbang: Fix lsb-first Rx + - ASoC: cs42l42: Only report button state if there was a button interrupt + - Revert "soc: imx: imx8m-blk-ctrl: set power device name" + - arm64: dts: imx8mm-verdin: update CAN clock to 40MHz + - arm64: dts: imx8mm-verdin: use level interrupt for mcp251xfd + - ASoC: qcom: sm8250: add missing module owner + - regmap: spi: Reserve space for register address/padding + - arm64: dts: imx8mp-venice-gw74xx: fix sai2 pin settings + - arm64: dts: imx8mq-tqma8mq: Remove superfluous interrupt-names + - RDMA/rtrs-clt: Use the right sg_cnt after ib_dma_map_sg + - RDMA/rtrs-srv: Pass the correct number of entries for dma mapped SGL + - ARM: dts: imx6qdl-vicut1.dtsi: Fix node name backlight_led + - ARM: dts: imx6qdl-kontron-samx6i: remove duplicated node + - ARM: dts: imx6qdl-kontron-samx6i: fix spi-flash compatible + - arm64: dts: ls1028a-qds-65bb: don't use in-band autoneg for 2500base-x + - soc: imx: gpcv2: Assert reset before ungating clock + - arm64: dts: verdin-imx8mm: add otg2 pd to usbphy + - arm64: dts: imx8mm-venice-gw7901: fix port/phy validation + - arm64: dts: freescale: verdin-imx8mm: fix atmel_mxt_ts reset polarity + - arm64: dts: freescale: verdin-imx8mp: fix atmel_mxt_ts reset polarity + - regulator: core: Clean up on enable failure + - ASoC: SOF: Kconfig: Make IPC_FLOOD_TEST depend on SND_SOC_SOF + - ASoC: SOF: Kconfig: Make IPC_MESSAGE_INJECTOR depend on SND_SOC_SOF + - tee: fix compiler warning in tee_shm_register() + - RDMA/irdma: Fix drain SQ hang with no completion + - arm64: dts: renesas: r8a779g0: Fix HSCIF0 interrupt number + - RDMA/cma: Fix arguments order in net device validation + - soc: brcmstb: pm-arm: Fix refcount leak and __iomem leak bugs + - RDMA/hns: Fix supported page size + - RDMA/hns: Fix wrong fixed value of qp->rq.wqe_shift + - RDMA/hns: Remove the num_qpc_timer variable + - wifi: wilc1000: fix DMA on stack objects + - ARM: at91: pm: fix self-refresh for sama7g5 + - ARM: at91: pm: fix DDR recalibration when resuming from backup and self- + refresh + - ARM: dts: at91: sama5d27_wlsom1: specify proper regulator output ranges + - ARM: dts: at91: sama5d2_icp: specify proper regulator output ranges + - ARM: dts: at91: sama7g5ek: specify proper regulator output ranges + - ARM: dts: at91: sama5d27_wlsom1: don't keep ldo2 enabled all the time + - ARM: dts: at91: sama5d2_icp: don't keep vdd_other enabled all the time + - netfilter: br_netfilter: Drop dst references before setting. + - netfilter: nf_tables: clean up hook list when offload flags check fails + - riscv: dts: microchip: use an mpfs specific l2 compatible + - netfilter: nf_conntrack_irc: Fix forged IP logic + - RDMA/srp: Set scmnd->result only when scmnd is not NULL + - ALSA: usb-audio: Inform the delayed registration more properly + - ALSA: usb-audio: Register card again for iface over delayed_register option + - rxrpc: Fix ICMP/ICMP6 error handling + - rxrpc: Fix an insufficiently large sglist in rxkad_verify_packet_2() + - afs: Use the operation issue time instead of the reply time for callbacks + - kunit: fix assert_type for comparison macros + - Revert "net: phy: meson-gxl: improve link-up behavior" + - sch_sfb: Don't assume the skb is still around after enqueueing to child + - tipc: fix shift wrapping bug in map_get() + - net: introduce __skb_fill_page_desc_noacc + - tcp: TX zerocopy should not sense pfmemalloc status + - ice: Fix DMA mappings leak + - ice: use bitmap_free instead of devm_kfree + - i40e: Fix kernel crash during module removal + - iavf: Detach device during reset task + - xen-netback: only remove 'hotplug-status' when the vif is actually destroyed + - block: don't add partitions if GD_SUPPRESS_PART_SCAN is set + - RDMA/siw: Pass a pointer to virt_to_page() + - bonding: use unspecified address if no available link local address + - bonding: add all node mcast address when slave up + - ipv6: sr: fix out-of-bounds read when setting HMAC data. + - IB/core: Fix a nested dead lock as part of ODP flow + - RDMA/mlx5: Set local port to one when accessing counters + - btrfs: zoned: fix mounting with conventional zones + - erofs: fix error return code in erofs_fscache_{meta_,}read_folio + - erofs: fix pcluster use-after-free on UP platforms + - nvme-tcp: fix UAF when detecting digest errors + - nvme-tcp: fix regression that causes sporadic requests to time out + - tcp: fix early ETIMEDOUT after spurious non-SACK RTO + - btrfs: fix the max chunk size and stripe length calculation + - nvmet: fix mar and mor off-by-one errors + - RDMA/irdma: Report the correct max cqes from query device + - RDMA/irdma: Return error on MR deregister CQP failure + - RDMA/irdma: Return correct WC error for bind operation failure + - RDMA/irdma: Report RNR NAK generation in device caps + - net: dsa: felix: disable cut-through forwarding for frames oversized for tc- + taprio + - net: dsa: felix: access QSYS_TAG_CONFIG under tas_lock in + vsc9959_sched_speed_set + - net: ethernet: mtk_eth_soc: fix typo in __mtk_foe_entry_clear + - net: ethernet: mtk_eth_soc: check max allowed hash in mtk_ppe_check_skb + - net/smc: Fix possible access to freed memory in link clear + - io_uring: recycle kbuf recycle on tw requeue + - net: phy: lan87xx: change interrupt src of link_up to comm_ready + - sch_sfb: Also store skb len before calling child enqueue + - libperf evlist: Fix per-thread mmaps for multi-threaded targets + - perf dlfilter dlfilter-show-cycles: Fix types for print format + - perf script: Fix Cannot print 'iregs' field for hybrid systems + - perf record: Fix synthesis failure warnings + - hwmon: (tps23861) fix byte order in resistance register + - ASoC: mchp-spdiftx: remove references to mchp_i2s_caps + - ASoC: mchp-spdiftx: Fix clang -Wbitfield-constant-conversion + - MIPS: loongson32: ls1c: Fix hang during startup + - kbuild: disable header exports for UML in a straightforward way + - i40e: Refactor tc mqprio checks + - i40e: Fix ADQ rate limiting for PF + - net: bonding: replace dev_trans_start() with the jiffies of the last ARP/NS + - bonding: accept unsolicited NA message + - swiotlb: avoid potential left shift overflow + - iommu/amd: use full 64-bit value in build_completion_wait() + - s390/boot: fix absolute zero lowcore corruption on boot + - time64.h: consolidate uses of PSEC_PER_NSEC + - net: dsa: felix: tc-taprio intervals smaller than MTU should send at least + one packet + - hwmon: (mr75203) fix VM sensor allocation when "intel,vm-map" not defined + - hwmon: (mr75203) update pvt->v_num and vm_num to the actual number of used + sensors + - hwmon: (mr75203) fix voltage equation for negative source input + - hwmon: (mr75203) fix multi-channel voltage reading + - hwmon: (mr75203) enable polling for all VM channels + - perf evlist: Always use arch_evlist__add_default_attrs() + - perf stat: Fix L2 Topdown metrics disappear for raw events + - Revert "arm64: kasan: Revert "arm64: mte: reset the page tag in + page->flags"" + - hwmon: (asus-ec-sensors) add support for Strix Z690-a D4 + - hwmon: (asus-ec-sensors) add support for Maximus XI Hero + - hwmon: (asus-ec-sensors) add missing sensors for X570-I GAMING + - hwmon: (asus-ec-sensors) add definitions for ROG ZENITH II EXTREME + - hwmon: (asus-ec-sensors) autoload module via DMI data + - arm64/bti: Disable in kernel BTI when cross section thunks are broken + - [Config] updateconfigs for ARM64_BTI_KERNEL + - iommu/vt-d: Correctly calculate sagaw value of IOMMU + - iommu/virtio: Fix interaction with VFIO + - iommu: Fix false ownership failure on AMD systems with PASID activated + - drm/amd/display: Add SMU logging code + - drm/amd/display: Removing assert statements for Linux + - Linux 5.19.9 + * Kinetic update: v5.19.8 upstream stable release (LP: #1994061) + - drm/msm/dp: make eDP panel as the first connected connector + - drm/msm/dsi: fix the inconsistent indenting + - drm/msm/dpu: populate wb or intf before reset_intf_cfg + - drm/msm/dp: delete DP_RECOVERED_CLOCK_OUT_EN to fix tps4 + - drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg + - drm/msm/dsi: Fix number of regulators for SDM660 + - platform/x86: pmc_atom: Fix SLP_TYPx bitfield mask + - platform/x86: x86-android-tablets: Fix broken touchscreen on Chuwi Hi8 with + Windows BIOS + - xsk: Fix corrupted packets for XDP_SHARED_UMEM + - drm/msm/gpu: Drop qos request if devm_devfreq_add_device() fails + - peci: aspeed: fix error check return value of platform_get_irq() + - iio: adc: mcp3911: make use of the sign bit + - skmsg: Fix wrong last sg check in sk_msg_recvmsg() + - bpf: Restrict bpf_sys_bpf to CAP_PERFMON + - ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnels + - bpf, cgroup: Fix kernel BUG in purge_effective_progs + - drm/i915/gvt: Fix Comet Lake + - ieee802154/adf7242: defer destroy_workqueue call + - bpf: Fix a data-race around bpf_jit_limit. + - drm/i915/ttm: fix CCS handling + - drm/i915/display: avoid warnings when registering dual panel backlight + - ALSA: hda: intel-nhlt: Correct the handling of fmt_config flexible array + - wifi: cfg80211: debugfs: fix return type in ht40allow_map_read() + - xhci: Fix null pointer dereference in remove if xHC has only one roothub + - Revert "xhci: turn off port power in shutdown" + - bpf: Allow helpers to accept pointers with a fixed size + - bpf: Tidy up verifier check_func_arg() + - bpf: Do mark_chain_precision for ARG_CONST_ALLOC_SIZE_OR_ZERO + - Bluetooth: hci_event: Fix vendor (unknown) opcode status handling + - Bluetooth: hci_sync: Fix suspend performance regression + - Bluetooth: hci_event: Fix checking conn for le_conn_complete_evt + - Bluetooth: hci_sync: hold hdev->lock when cleanup hci_conn + - net: sparx5: fix handling uneven length packets in manual extraction + - net: smsc911x: Stop and start PHY during suspend and resume + - openvswitch: fix memory leak at failed datapath creation + - nfp: flower: fix ingress police using matchall filter + - net: dsa: xrs700x: Use irqsave variant for u64 stats update + - net: sched: tbf: don't call qdisc_put() while holding tree lock + - net/sched: fix netdevice reference leaks in attach_default_qdiscs() + - net: phy: micrel: Make the GPIO to be non-exclusive + - net: lan966x: improve error handle in lan966x_fdma_rx_get_frame() + - ethernet: rocker: fix sleep in atomic context bug in neigh_timer_handler + - cachefiles: fix error return code in cachefiles_ondemand_copen() + - cachefiles: make on-demand request distribution fairer + - mlxbf_gige: compute MDIO period based on i1clk + - kcm: fix strp_init() order and cleanup + - sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb + - tcp: annotate data-race around challenge_timestamp + - Revert "sch_cake: Return __NET_XMIT_STOLEN when consuming enqueued skb" + - net/smc: Remove redundant refcount increase + - soundwire: qcom: fix device status array range + - mm/slab_common: Deleting kobject in kmem_cache_destroy() without holding + slab_mutex/cpu_hotplug_lock + - platform/mellanox: mlxreg-lc: Fix coverity warning + - platform/mellanox: mlxreg-lc: Fix locking issue + - serial: fsl_lpuart: RS485 RTS polariy is inverse + - tty: serial: atmel: Preserve previous USART mode if RS485 disabled + - staging: rtl8712: fix use after free bugs + - staging: r8188eu: Add Rosewill USB-N150 Nano to device tables + - staging: r8188eu: add firmware dependency + - Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" + - powerpc: align syscall table for ppc32 + - powerpc/rtas: Fix RTAS MSR[HV] handling for Cell + - vt: Clear selection before changing the font + - musb: fix USB_MUSB_TUSB6010 dependency + - tty: serial: lpuart: disable flow control while waiting for the transmit + engine to complete + - Input: iforce - wake up after clearing IFORCE_XMIT_RUNNING flag + - iio: light: cm3605: Fix an error handling path in cm3605_probe() + - iio: ad7292: Prevent regulator double disable + - iio: adc: mcp3911: correct "microchip,device-addr" property + - iio: adc: mcp3911: use correct formula for AD conversion + - misc: fastrpc: fix memory corruption on probe + - misc: fastrpc: fix memory corruption on open + - firmware_loader: Fix use-after-free during unregister + - firmware_loader: Fix memory leak in firmware upload + - USB: serial: ftdi_sio: add Omron CS1W-CIF31 device id + - landlock: Fix file reparenting without explicit LANDLOCK_ACCESS_FS_REFER + - mmc: core: Fix UHS-I SD 1.8V workaround branch + - mmc: core: Fix inconsistent sd3_bus_mode at UHS-I SD voltage switch failure + - binder: fix UAF of ref->proc caused by race condition + - binder: fix alloc->vma_vm_mm null-ptr dereference + - cifs: fix small mempool leak in SMB2_negotiate() + - KVM: VMX: Heed the 'msr' argument in msr_write_intercepted() + - riscv: kvm: move extern sbi_ext declarations to a header + - clk: ti: Fix missing of_node_get() ti_find_clock_provider() + - drm/i915/reg: Fix spelling mistake "Unsupport" -> "Unsupported" + - clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops + - Revert "clk: core: Honor CLK_OPS_PARENT_ENABLE for clk gate ops" + - clk: core: Fix runtime PM sequence in clk_core_unprepare() + - Input: rk805-pwrkey - fix module autoloading + - powerpc/papr_scm: Fix nvdimm event mappings + - clk: bcm: rpi: Fix error handling of raspberrypi_fw_get_rate + - clk: bcm: rpi: Prevent out-of-bounds access + - clk: bcm: rpi: Add missing newline + - hwmon: (gpio-fan) Fix array out of bounds access + - gpio: pca953x: Add mutex_lock for regcache sync in PM + - gpio: realtek-otto: switch to 32-bit I/O + - KVM: x86: Mask off unsupported and unknown bits of IA32_ARCH_CAPABILITIES + - powerpc/papr_scm: Ensure rc is always initialized in papr_scm_pmu_register() + - xen/grants: prevent integer overflow in gnttab_dma_alloc_pages() + - mm: pagewalk: Fix race between unmap and page walker + - xen-blkback: Advertise feature-persistent as user requested + - xen-blkfront: Advertise feature-persistent as user requested + - xen-blkfront: Cache feature_persistent value before advertisement + - thunderbolt: Use the actual buffer in tb_async_error() + - thunderbolt: Check router generation before connecting xHCI + - usb: dwc3: pci: Add support for Intel Raptor Lake + - media: mceusb: Use new usb_control_msg_*() routines + - xhci: Add grace period after xHC start to prevent premature runtime suspend. + - usb: dwc3: disable USB core PHY management + - usb: dwc3: gadget: Avoid duplicate requests to enable Run/Stop + - usb: dwc3: fix PHY disable sequence + - USB: serial: ch341: fix lost character on LCR updates + - USB: serial: ch341: fix disabled rx timer on older devices + - USB: serial: cp210x: add Decagon UCA device id + - USB: serial: option: add support for OPPO R11 diag port + - USB: serial: option: add Quectel EM060K modem + - USB: serial: option: add support for Cinterion MV32-WA/WB RmNet mode + - Revert "usb: typec: ucsi: add a common function + ucsi_unregister_connectors()" + - usb: typec: altmodes/displayport: correct pin assignment for UFP receptacles + - usb: typec: intel_pmc_mux: Add new ACPI ID for Meteor Lake IOM device + - usb: typec: tcpm: Return ENOTSUPP for power supply prop writes + - usb: dwc2: fix wrong order of phy_power_on and phy_init + - usb: cdns3: fix issue with rearming ISO OUT endpoint + - usb: cdns3: fix incorrect handling TRB_SMM flag for ISOC transfer + - USB: cdc-acm: Add Icom PMR F3400 support (0c26:0020) + - usb-storage: Add ignore-residue quirk for NXP PN7462AU + - s390/hugetlb: fix prepare_hugepage_range() check for 2 GB hugepages + - s390: fix nospec table alignments + - USB: core: Prevent nested device-reset calls + - usb: xhci-mtk: relax TT periodic bandwidth allocation + - usb: xhci-mtk: fix bandwidth release issue + - usb: gadget: f_uac2: fix superspeed transfer + - usb: gadget: mass_storage: Fix cdrom data transfers on MAC-OS + - USB: gadget: Fix obscure lockdep violation for udc_mutex + - dma-buf/dma-resv: check if the new fence is really later + - arm64/kexec: Fix missing extra range for crashkres_low. + - driver core: Don't probe devices after bus_type.match() probe deferral + - wifi: mac80211: Don't finalize CSA in IBSS mode if state is disconnected + - wifi: mac80211: Fix UAF in ieee80211_scan_rx() + - ip: fix triggering of 'icmp redirect' + - net: Use u64_stats_fetch_begin_irq() for stats fetch. + - net: mac802154: Fix a condition in the receive path + - ALSA: memalloc: Revive x86-specific WC page allocations again + - ALSA: hda/realtek: Add speaker AMP init for Samsung laptops with ALC298 + - ALSA: seq: oss: Fix data-race for max_midi_devs access + - ALSA: seq: Fix data-race at module auto-loading + - drm/i915/backlight: Disable pps power hook for aux based backlight + - drm/i915/guc: clear stalled request after a reset + - drm/i915/glk: ECS Liva Q2 needs GLK HDMI port timing quirk + - drm/i915: Skip wm/ddb readout for disabled pipes + - tty: n_gsm: add sanity check for gsm->receive in gsm_receive_buf() + - tty: n_gsm: initialize more members at gsm_alloc_mux() + - tty: n_gsm: replace kicktimer with delayed_work + - tty: n_gsm: avoid call of sleeping functions from atomic context + - Linux 5.19.8 + * md: Replace snprintf with scnprintf (LP: #1993315) + - md: Replace snprintf with scnprintf + * ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems (LP: #1990985) + - ACPI: processor idle: Practically limit "Dummy wait" workaround to old Intel + systems + * iavf: SR-IOV VFs error with no traffic flow when MTU greater than 1500 + (LP: #1983656) + - iavf: Fix set max MTU size with port VLAN and jumbo frames + - i40e: Fix VF set max MTU size + * Fix resume on AMD platforms when TBT monitor is plugged (LP: #1990920) + - drm/amd/display: Detect dpcd_rev when hotplug mst monitor + - drm/amd/display: Release remote dc_sink under mst scenario + * [SRU][J/OEM-5.17][PATCH 0/1] Fix oled brightness set above frame-average + luminance (LP: #1978986) + - drm: New function to get luminance range based on static hdr metadata + - drm/amdgpu_dm: Rely on split out luminance calculation function + - drm/i915: Use luminance range calculated during edid parsing + * Update Broadcom Emulex FC HBA lpfc driver to 14.2.0.5 for Ubuntu 22.04 + (LP: #1988711) + - scsi: lpfc: Fix uninitialized cqe field in lpfc_nvme_cancel_iocb() + - scsi: lpfc: Set PU field when providing D_ID in XMIT_ELS_RSP64_CX iocb + - scsi: lpfc: Fix lost NVMe paths during LIF bounce stress test + - scsi: lpfc: Refactor lpfc_nvmet_prep_abort_wqe() into + lpfc_sli_prep_abort_xri() + - scsi: lpfc: Update lpfc version to 14.2.0.5 + - scsi: lpfc: Copyright updates for 14.2.0.5 patches + * input/keyboard: the keyboard on some Asus laptops can't work (LP: #1992266) + - ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA + - ACPI: resource: Add ASUS model S5402ZA to quirks + * pcieport 0000:00:1b.0: PCIe Bus Error: severity=Uncorrected (Non-Fatal), + type=Transaction Layer, (Requester ID) (LP: #1988797) + - PCI/PTM: Cache PTM Capability offset + - PCI/PTM: Add pci_upstream_ptm() helper + - PCI/PTM: Separate configuration and enable + - PCI/PTM: Add pci_suspend_ptm() and pci_resume_ptm() + - PCI/PTM: Move pci_ptm_info() body into its only caller + - PCI/PTM: Preserve RsvdP bits in PTM Control register + - PCI/PTM: Reorder functions in logical order + - PCI/PTM: Consolidate PTM interface declarations + - PCI/PM: Always disable PTM for all devices during suspend + - PCI/PM: Simplify pci_pm_suspend_noirq() + * CVE-2022-2602 + - SAUCE: io_uring/af_unix: defer registered files gc to io_uring release + - SAUCE: io_uring/af_unix: fix memleak during unix GC + * CVE-2022-41674 + - SAUCE: wifi: cfg80211: fix u8 overflow in + cfg80211_update_notlisted_nontrans() + - SAUCE: wifi: cfg80211/mac80211: reject bad MBSSID elements + - SAUCE: wifi: cfg80211: ensure length byte is present before access + - SAUCE: wifi: mac80211_hwsim: avoid mac80211 warning on bad rate + - SAUCE: wifi: cfg80211: update hidden BSSes to avoid WARN_ON + * CVE-2022-42722 + - SAUCE: wifi: mac80211: fix crash in beacon protection for P2P-device + * CVE-2022-42721 + - SAUCE: wifi: cfg80211: avoid nontransmitted BSS list corruption + * CVE-2022-42720 + - SAUCE: wifi: cfg80211: fix BSS refcounting bugs + * CVE-2022-42719 + - SAUCE: wifi: mac80211: fix MBSSID parsing use-after-free + * kinetic/linux: 5.19.0-21.21 -proposed tracker (LP: #1992639) + * cannot change mount namespace (LP: #1991691) + - SAUCE: apparmor: Fix getaatr mediation causing snap failures + * Kernel regresses openjdk on riscv64 (LP: #1992484) + - SAUCE: Revert "riscv: mmap with PROT_WRITE but no PROT_READ is invalid" + * kinetic/linux: 5.19.0-20.20 -proposed tracker (LP: #1992408) + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + * Kinetic kernels 5.19.0-18/19-generic won't boot on Intel 11th/12th gen + (LP: #1991704) + - drm/i915: fix null pointer dereference + * rcu_sched detected stalls on CPUs/tasks (LP: #1967130) + - [Config] Disable VMAP_STACK on riscv64 + * Disable sv57 as the userspace is not ready (LP: #1991790) + - SAUCE: riscv: mm: Force disable sv57 + * earlyconsole prints question marks on 5.19.0-1002-generic (LP: #1988984) + - [Config] Set CONFIG_PWM_SIFIVE=m for riscv64 + * RCU stalls (LP: #1991951) + - [Config] Harmonize RCU_CPU_STALL_TIMEOUT + * backport dkms fixes to build modules correctly for hwe-5.19+ kernels with + custom compiler (LP: #1991664) + - [Packaging] use versioned gcc-12 + - [Packaging] Update configs with versioned compiler version + * FTBFS on kinetic (LP: #1990964) + - SAUCE: uapi: Fixup strace compile error + * CVE-2022-40768 + - scsi: stex: Properly zero out the passthrough command structure + * [22.10 FEAT] zKVM: Crypto Passthrough Hotplug - kernel part (LP: #1852741) + - s390/vfio-ap: use new AP bus interface to search for queue devices + - s390/vfio-ap: move probe and remove callbacks to vfio_ap_ops.c + - s390/vfio-ap: manage link between queue struct and matrix mdev + - s390/vfio-ap: introduce shadow APCB + - s390/vfio-ap: refresh guest's APCB by filtering AP resources assigned to + mdev + - s390/vfio-ap: allow assignment of unavailable AP queues to mdev device + - s390/vfio-ap: rename matrix_dev->lock mutex to matrix_dev->mdevs_lock + - s390/vfio-ap: introduce new mutex to control access to the KVM pointer + - s390/vfio-ap: use proper locking order when setting/clearing KVM pointer + - s390/vfio-ap: prepare for dynamic update of guest's APCB on assign/unassign + - s390/vfio-ap: prepare for dynamic update of guest's APCB on queue + probe/remove + - s390/vfio-ap: allow hot plug/unplug of AP devices when assigned/unassigned + - s390/vfio-ap: hot plug/unplug of AP devices when probed/removed + - s390/vfio-ap: reset queues after adapter/domain unassignment + - s390/vfio-ap: implement in-use callback for vfio_ap driver + - s390/vfio-ap: sysfs attribute to display the guest's matrix + - s390/vfio-ap: handle config changed and scan complete notification + - s390/vfio-ap: update docs to include dynamic config support + - s390/Docs: new doc describing lock usage by the vfio_ap device driver + - MAINTAINERS: pick up all vfio_ap docs for VFIO AP maintainers + * kinetic/linux: 5.19.0-19.19 -proposed tracker (LP: #1990960) + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display + (using struct cred as input)""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk + parameter const""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + smk_netlbl_mls()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use + lsmblob""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to + kfree_sensitive()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check""" + - Revert "Revert "Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive + flag""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full + LSM context""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple + object LSM attributes""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline + function declration.""" + - Revert "Revert "Revert "UBUNTU: SAUCE: Audit: Add new record for multiple + process LSM attributes""" + - Revert "Revert "Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a + lsmblob""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in + netlink netfilter""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_inode_getsecctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_secid_to_secctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context + releaser""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display""" + - Revert "Revert "Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to + use lsmblobs""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_cred_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_inode_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_task_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_ipc_getsecid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secid_to_secctx""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secctx_to_secid""" + - Revert "Revert "Revert "UBUNTU: SAUCE: net: Prepare UDS for security module + stacking""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_kernel_act_as""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_audit_rule_match""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob + data structure.""" + - Revert "Revert "Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the + sock security""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from + SK_CTX() to aa_sock()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to + aa_unix_sk()""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as + part of a secid to secctx""" + - Revert "Revert "Revert "apparmor: fix absroot causing audited secids to + begin with =""" + - Revert "Revert "Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating + locking non-fs, unix sockets""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: fix use after free in + sk_peer_label""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: af_unix mediation""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: patch to provide + compatibility with v2.x net rules""" + - Revert "Revert "Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash + string hex value""" + - SAUCE: upstream v6.0: apparmor: fix absroot causing audited secids to begin + with = + - SAUCE: upstream v6.0: apparmor: Fix kernel-doc + - SAUCE: upstream v6.0: lsm: Fix kernel-doc + - SAUCE: upstream v6.0: apparmor: Update help description of policy hash for + introspection + - SAUCE: upstream v6.0: apparmor: make export of raw binary profile to + userspace optional + - SAUCE: upstream v6.0: apparmor: Enable tuning of policy paranoid load for + embedded systems + - SAUCE: upstream v6.0: apparmor: don't create raw_sha1 symlink if sha1 + hashing is disabled + - SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol warnings in + policy_unpack_test.c + - SAUCE: upstream v6.0: security/apparmor: remove redundant ret variable + - SAUCE: upstream v6.0: apparmor: Use struct_size() helper in kmalloc() + - SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and match_mnt() + kernel-doc comment + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize' + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: test: Remove some casts which are no-longer + required + - SAUCE: upstream v6.0: apparmor: add a kernel label to use on kernel objects + - SAUCE: upstream v6.0: apparmor: Convert secid mapping to XArrays instead of + IDR + - SAUCE: upstream v6.0: apparmor: disable showing the mode as part of a secid + to secctx + - SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as static + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: allow label to carry debug flags + - SAUCE: upstream v6.0: apparmor: extend policydb permission set by making use + of the xbits + - SAUCE: upstream v6.0: apparmor: move ptrace mediation to more logical + task.{h,c} + - SAUCE: upstream v6.0: apparmor: correct config reference to intended one + - SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the new uring_cmd file + op + - SAUCE: upstream v6.0: selinux: implement the security_uring_cmd() LSM hook + - SAUCE: upstream v6.0: Smack: Provide read control for io_uring_cmd + - SAUCE: apparmor-next 6.1: apparmor: fix a memleak in multi_transaction_new() + - SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when removing a + namespace + - SAUCE: apparmor-next 6.1: apparmor: reserve mediation classes + - SAUCE: apparmor-next 6.1: apparmor: use zstd compression for profile data + - SAUCE: apparmor-next 6.1: apparmor: expose compression level limits in sysfs + - SAUCE: apparmor-next 6.1: apparmor: compute file permissions on profile load + - SAUCE: apparmor-next 6.1: apparmor: compute xmatch permissions on profile + load + - SAUCE: apparmor-next 6.1: apparmor: move fperm computation into + policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm computation + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use aa_perms structure + - SAUCE: apparmor-next 6.1: apparmor: compute policydb permission on profile + load + - SAUCE: apparmor-next 6.1: apparmor: combine file_rules and aa_policydb into + a single shared struct + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using the new shared + policydb struct + - SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to use accept as an + index + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: cleanup shared permission struct + - SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: preparse for state being more than just + an integer + - SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include v8 abi + - SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating locking non-fs + unix sockets + - SAUCE: apparmor-next 6.1: apparmor: extend policydb permission set by making + use of the xbits + - SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros into policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: extend xindex size + - SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards compatibility + to its own file + - SAUCE: apparmor-next 6.1: apparmor: extend permissions to support a label + and tag string + - SAUCE: apparmor-next 6.1: apparmor: add mediation class information to + auditing + - SAUCE: apparmor-next 6.1: apparmor: add user mode flag + - SAUCE: apparmor-next 6.1: apparmor: make transition table unpack generic so + it can be reused + - SAUCE: apparmor-next 6.1: apparmor: group dfa policydb unpacking + - SAUCE: apparmor-next 6.1: apparmor: make unpack_array return a trianary + value + - SAUCE: apparmor-next 6.1: apparmor: add the ability for policy to specify a + permission table + - SAUCE: apparmor-next 6.1: apparmor: verify permission table indexes + - SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes are accumulated + - SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm accumulation into + perms.h + - SAUCE: apparmor-next 6.1: apparmor: verify loaded permission bits masks + don't overlap + - SAUCE: apparmor-next 6.1: apparmor: refactor profile rules and attachments + - SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to be a list + - SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to match reserved + classes + - SAUCE: apparmor-next 6.1: apparmor: Fix regression in stacking due to label + flags + - SAUCE: apparmor-next 6.1: apparmor: Simplify obtain the newest label on a + cred + - SAUCE: apparmor-next 6.1: apparmor: make __aa_path_perm() static + - SAUCE: apparmor-next 6.1: apparmor: Fix doc comment for compute_fperms + - SAUCE: apparmor-next 6.1: apparmor: Remove unnecessary size check when + unpacking trans_table + - SAUCE: apparmor-next 6.1: apparmor: make sure the decompression ctx is + promperly initialized + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make + __aa_path_perm() static" + - SAUCE: apparmor: af_unix mediation + - SAUCE: fix shutdown unix socket owner conditional check + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: lsm stacking v37: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: lsm stacking v37: LSM: Infrastructure management of the sock security + - SAUCE: lsm stacking v37: LSM: Add the lsmblob data structure. + - SAUCE: lsm stacking v37: LSM: provide lsm name and id slot mappings + - SAUCE: lsm stacking v37: IMA: avoid label collisions with stacked LSMs + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_current_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context releaser + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a lsmblob + - SAUCE: lsm stacking v37: binder: Pass LSM identifier for confirmation + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx module selection + - SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in audit_names + - SAUCE: lsm stacking v37: Audit: Create audit_stamp structure + - SAUCE: lsm stacking v37: LSM: Add a function to report multiple LSMs + - SAUCE: lsm stacking v37: Audit: Allow multiple records in an audit_buffer + - SAUCE: lsm stacking v37: Audit: Add record for multiple task security + contexts + - SAUCE: lsm stacking v37: audit: multiple subject lsm values for netlabel + - SAUCE: lsm stacking v37: Audit: Add record for multiple object contexts + - SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in audit data + - SAUCE: lsm stacking v37: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full LSM context + - SAUCE: lsm stacking v37: AppArmor: Remove the exclusive flag + - SAUCE: security, lsm: Introduce security_create_user_ns() + - SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable + - SAUCE: selinux: Implement userns_create hook + - SAUCE: apparmor: add user namespace creation mediation + - [Config] update configs after apply new apparmor patch set + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) // + 5.19.0-17.17: kernel NULL pointer dereference, address: 0000000000000084 + (LP: #1990236) + - SAUCE: apparmor: fix oops in unix owner conditional setup + * Miscellaneous Ubuntu changes + - [Config] make sure CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is enforced + + -- Brad Figg Thu, 12 Jan 2023 12:27:44 -0800 + +linux-nvidia-5.19 (5.19.0-1002.2) jammy; urgency=medium + + * jammy/linux-nvidia-5.19: 5.19.0-1002.2 -proposed tracker (LP: #1999562) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Integrate ARM64 Tegra SPI & QSPI changes (LP: #1998527) + - spi: tegra210-quad: Multi-cs support + - spi: tegra210-quad: Fix combined sequence + - spi: tegra210-quad: Don't initialise DMA if not supported + - spi: tegra210-quad: Fix duplicate resource error + - arm64: tegra: Enable Tegra SPI & QSPI in deconfig + + * Integrate IOMMU patches related to NVIDIA SOC development (LP: #1998392) + - iommu: Add return value rules to attach_dev op and APIs + - iommu: Regulate EINVAL in ->attach_dev callback functions + - iommu: Use EINVAL for incompatible device/domain in ->attach_dev + - iommu: Propagate return value in ->attach_dev callback functions + + * Integrate ARM64 Performance Monitoring Unit Table patches (LP: #1998380) + - ACPI: ARM Performance Monitoring Unit Table (APMT) initial support + - ACPI: APMT: Fix kerneldoc and indentation + - perf: arm_cspmu: Add support for ARM CoreSight PMU driver + - perf: arm_cspmu: Add support for NVIDIA SCF and MCF attribute + - perf: arm_cspmu: Fix modular builds due to missing MODULE_LICENSE()s + - perf: arm_cspmu: Fix build failure on x86_64 + - perf: arm_cspmu: Fix module cyclic dependency + - perf: arm_cspmu: Fix build failure acpi_dev_parent + - arm64: defconfig: enable ARM CoreSight PMU driver + + * Miscellaneous Ubuntu changes + - [CONFIG] general updates + + -- Brad Figg Tue, 13 Dec 2022 19:11:21 -0800 + +linux-nvidia-5.19 (5.19.0-1001.1) jammy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + + * Miscellaneous Ubuntu changes + - [Packaging] Initialize linux-nvidia-5.19 + + -- Ian May Thu, 10 Nov 2022 13:52:59 -0600 + +linux-nvidia-5.19 (5.19.0-1000.0) jammy; urgency=medium + + * Empty entry + + -- Ian May Wed, 19 Oct 2022 14:19:55 -0500 + +linux-hwe-5.19 (5.19.0-18.18~22.04.3) jammy; urgency=medium + + * jammy/linux-hwe-5.19: 5.19.0-18.18~22.04.3 -proposed tracker (LP: #1992162) + + * backport dkms fixes to build modules correctly for hwe-5.19+ kernels with + custom compiler (LP: #1991664) + - [Packaging] use versioned gcc-12 + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + - [Packaging] update update.conf + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Disable DKMS modules for jammy:hwe-5.19" + + -- Dimitri John Ledkov Fri, 07 Oct 2022 13:54:30 +0100 + +linux-hwe-5.19 (5.19.0-18.18~22.04.2) jammy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] initialize linux-hwe-5.19 + - [Packaging] specify gcc-12 for jammy:hwe-5.19 + - [Config] Update versions for GCC and PAHOLE + - [Packaging] Update DKMS module versions for Jammy:hwe-5.19 + - [Packaging] Disable DKMS modules for jammy:hwe-5.19 + + -- Ian May Tue, 27 Sep 2022 23:37:19 -0500 + +linux-hwe-5.19 (5.19.0-18.18~22.04.1) jammy; urgency=medium + + * Empty entry + + -- Ian May Mon, 26 Sep 2022 23:15:47 -0500 + +linux (5.19.0-18.18) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-18.18 -proposed tracker (LP: #1990366) + + * 5.19.0-17.17: kernel NULL pointer dereference, address: 0000000000000084 + (LP: #1990236) + - Revert "UBUNTU: SAUCE: apparmor: Fix regression in stacking due to label + flags" + - Revert "UBUNTU: [Config] disable SECURITY_APPARMOR_RESTRICT_USERNS" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - add an internal buffer"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - don't wait on cleanup"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - don't waste entropy"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - always add a pending + request"" + - Revert "UBUNTU: SAUCE: Revert "hwrng: virtio - unregister device before + reset"" + - Revert "UBUNTU: SAUCE: Revert "virtio-rng: make device ready before making + request"" + - Revert "UBUNTU: [Config] update configs after apply new apparmor patch set" + - Revert "UBUNTU: SAUCE: apparmor: add user namespace creation mediation" + - Revert "UBUNTU: SAUCE: selinux: Implement userns_create hook" + - Revert "UBUNTU: SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable" + - Revert "UBUNTU: SAUCE: security, lsm: Introduce security_create_user_ns()" + - Revert "UBUNTU: SAUCE: lsm stacking v37: AppArmor: Remove the exclusive + flag" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full + LSM context" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Removed scaffolding function + lsmcontext_init" + - Revert "UBUNTU: SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in + audit data" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Add record for multiple + object contexts" + - Revert "UBUNTU: SAUCE: lsm stacking v37: audit: multiple subject lsm values + for netlabel" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Add record for multiple task + security contexts" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Allow multiple records in an + audit_buffer" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add a function to report + multiple LSMs" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Create audit_stamp + structure" + - Revert "UBUNTU: SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in + audit_names" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: security_secid_to_secctx + module selection" + - Revert "UBUNTU: SAUCE: lsm stacking v37: binder: Pass LSM identifier for + confirmation" + - Revert "UBUNTU: SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a + lsmblob" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in + netlink netfilter" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_inode_getsecctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context + releaser" + - Revert "UBUNTU: SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to + display" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Specify which LSM to display" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_cred_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_inode_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_current_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_ipc_getsecid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_secctx_to_secid" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_kernel_act_as" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Use lsmblob in + security_audit_rule_match" + - Revert "UBUNTU: SAUCE: lsm stacking v37: IMA: avoid label collisions with + stacked LSMs" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: provide lsm name and id slot + mappings" + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Add the lsmblob data + structure." + - Revert "UBUNTU: SAUCE: lsm stacking v37: LSM: Infrastructure management of + the sock security" + - Revert "UBUNTU: SAUCE: lsm stacking v37: integrity: disassociate + ima_filter_rule from security_audit_rule" + - Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() to + aa_sock()" + - Revert "UBUNTU: SAUCE: apparmor: Add fine grained mediation of posix + mqueues" + - Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()" + - Revert "UBUNTU: SAUCE: fix shutdown unix socket owner conditional check" + - Revert "UBUNTU: SAUCE: apparmor: af_unix mediation" + - Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with v2.x + net rules" + - Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string hex value" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to + match reserved classes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to + be a list" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: refactor profile rules + and attachments" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: verify loaded permission + bits masks don't overlap" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm + accumulation into perms.h" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes + are accumulated" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: verify permission table + indexes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add the ability for + policy to specify a permission table" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make unpack_array return + a trianary value" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: group dfa policydb + unpacking" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: make transition table + unpack generic so it can be reused" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add user mode flag" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: add mediation class + information to auditing" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend permissions to + support a label and tag string" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards + compatibility to its own file" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend xindex size" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros + into policy_unpack" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: extend policydb + permission set by making use of the xbits" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating + locking non-fs unix sockets" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include + v8 abi" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: preparse for state being + more than just an integer" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: cleanup shared + permission struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to + use accept as an index" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using + the new shared policydb struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: combine file_rules and + aa_policydb into a single shared struct" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute policydb + permission on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use + aa_perms structure" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm + computation" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: move fperm computation + into policy_unpack" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute xmatch + permissions on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: compute file permissions + on profile load" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: expose compression level + limits in sysfs" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: use zstd compression for + profile data" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: reserve mediation + classes" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when + removing a namespace" + - Revert "UBUNTU: SAUCE: apparmor-next 6.1: apparmor: fix a memleak in + multi_transaction_new()" + - Revert "UBUNTU: SAUCE: upstream v6.0: Smack: Provide read control for + io_uring_cmd" + - Revert "UBUNTU: SAUCE: upstream v6.0: selinux: implement the + security_uring_cmd() LSM hook" + - Revert "UBUNTU: SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the + new uring_cmd file op" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: correct config reference to + intended one" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: move ptrace mediation to + more logical task.{h,c}" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: extend policydb permission + set by making use of the xbits" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: allow label to carry debug + flags" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as + static" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: disable showing the mode as + part of a secid to secctx" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Convert secid mapping to + XArrays instead of IDR" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: add a kernel label to use on + kernel objects" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: test: Remove some casts + which are no-longer required" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize'" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix some kernel-doc + comments" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and + match_mnt() kernel-doc comment" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Use struct_size() helper in + kmalloc()" + - Revert "UBUNTU: SAUCE: upstream v6.0: security/apparmor: remove redundant + ret variable" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol + warnings in policy_unpack_test.c" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: don't create raw_sha1 + symlink if sha1 hashing is disabled" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Enable tuning of policy + paranoid load for embedded systems" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: make export of raw binary + profile to userspace optional" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Update help description of + policy hash for introspection" + - Revert "UBUNTU: SAUCE: upstream v6.0: lsm: Fix kernel-doc" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: Fix kernel-doc" + - Revert "UBUNTU: SAUCE: upstream v6.0: apparmor: fix absroot causing audited + secids to begin with =" + - Revert "Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string + hex value"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with + v2.x net rules"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: af_unix mediation"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: fix use after free in + sk_peer_label"" + - Revert "Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating locking non- + fs, unix sockets"" + - Revert "Revert "apparmor: fix absroot causing audited secids to begin with + ="" + - Revert "Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as part of + a secid to secctx"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() + to aa_sock()"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the sock + security"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob data + structure."" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_audit_rule_match"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_kernel_act_as"" + - Revert "Revert "UBUNTU: SAUCE: net: Prepare UDS for security module + stacking"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secctx_to_secid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in + security_secid_to_secctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_ipc_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_task_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_inode_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_cred_getsecid"" + - Revert "Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to use + lsmblobs"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context + releaser"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_secid_to_secctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in + security_inode_getsecctx"" + - Revert "Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in netlink + netfilter"" + - Revert "Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a lsmblob"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Add new record for multiple process + LSM attributes"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration."" + - Revert "Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object + LSM attributes"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM + context"" + - Revert "Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive flag"" + - Revert "Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to + kfree_sensitive()"" + - Revert "Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use lsmblob"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Use lsmblob in smk_netlbl_mls()"" + - Revert "Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk parameter + const"" + - Revert "Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display (using + struct cred as input)"" + + * [22.04 FEAT] Enhanced Interpretation for PCI Functions on s390x - kernel + part (LP: #1853306) + - s390/sclp: detect the zPCI load/store interpretation facility + - s390/sclp: detect the AISII facility + - s390/sclp: detect the AENI facility + - s390/sclp: detect the AISI facility + - s390/airq: pass more TPI info to airq handlers + - s390/airq: allow for airq structure that uses an input vector + - s390/pci: externalize the SIC operation controls and routine + - s390/pci: stash associated GISA designation + - s390/pci: stash dtsm and maxstbl + - vfio/pci: introduce CONFIG_VFIO_PCI_ZDEV_KVM + - KVM: s390: pci: add basic kvm_zdev structure + - KVM: s390: pci: do initial setup for AEN interpretation + - KVM: s390: pci: enable host forwarding of Adapter Event Notifications + - KVM: s390: mechanism to enable guest zPCI Interpretation + - KVM: s390: pci: provide routines for enabling/disabling interrupt forwarding + - KVM: s390: pci: add routines to start/stop interpretive execution + - vfio-pci/zdev: add open/close device hooks + - vfio-pci/zdev: add function handle to clp base capability + - vfio-pci/zdev: different maxstbl for interpreted devices + - KVM: s390: add KVM_S390_ZPCI_OP to manage guest zPCI devices + - MAINTAINERS: additional files related kvm s390 pci passthrough + - Documentation: kvm: extend KVM_S390_ZPCI_OP subheading underline + - KVM: s390: pci: Hook to access KVM lowlevel from VFIO + + * [22.10 FEAT] [IO2201] Independent Usage of Secondary Physical Function + (LP: #1959542) + - PCI: Clean up pci_scan_slot() + - PCI: Split out next_ari_fn() from next_fn() + - PCI: Move jailhouse's isolated function handling to pci_scan_slot() + - PCI: Extend isolated function probing to s390 + - s390/pci: allow zPCI zbus without a function zero + + * AMD ACP 6.2 DMIC support (LP: #1989518) + - ASoC: amd: add Pink Sardine platform ACP IP register header + - ASoC: amd: add Pink Sardine ACP PCI driver + - ASoC: amd: add acp6.2 init/de-init functions + - ASoC: amd: add platform devices for acp6.2 pdm driver and dmic driver + - ASoC: amd: add acp6.2 pdm platform driver + - ASoC: amd: add acp6.2 irq handler + - ASoC: amd: add acp6.2 pdm driver dma ops + - ASoC: amd: add acp6.2 pci driver pm ops + - ASoC: amd: add acp6.2 pdm driver pm ops + - ASoC: amd: enable Pink Sardine acp6.2 drivers build + - ASoC: amd: create platform device for acp6.2 machine driver + - ASoC: amd: add Pink Sardine machine driver using dmic + - ASoC: amd: enable Pink sardine platform machine driver build. + - [Config] Enable audio for AMD PinkSardine + + * support independent clock and LED GPIOs for Intel IPU6 platforms + (LP: #1989046) + - SAUCE: platform/x86: int3472: support independent clock and LED GPIOs + + * CVE-2022-2978 + - SAUCE: fs: fix UAF/GPF bug in nilfs_mdt_destroy + + * Miscellaneous Ubuntu changes + - [Config] disable SECURITY_APPARMOR_RESTRICT_USERNS + - SAUCE: Add mdev_set_iommu_device() kABI. + - SAUCE: apparmor: Fix regression in stacking due to label flags + - [Config] update toolchain version + + * Miscellaneous upstream changes + - Revert "drm/i915/opregion: check port number bounds for SWSCI display power + state" + + -- Andrea Righi Wed, 21 Sep 2022 16:28:46 +0200 + +linux (5.19.0-17.17) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-17.17 -proposed tracker (LP: #1989987) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * multiple kernel oops regarding hung tasks delaying boot (LP: #1989258) + - SAUCE: Revert "virtio-rng: make device ready before making request" + - SAUCE: Revert "hwrng: virtio - unregister device before reset" + - SAUCE: Revert "hwrng: virtio - always add a pending request" + - SAUCE: Revert "hwrng: virtio - don't waste entropy" + - SAUCE: Revert "hwrng: virtio - don't wait on cleanup" + - SAUCE: Revert "hwrng: virtio - add an internal buffer" + + * kinetic: apply new apparmor and LSM stacking patch set (LP: #1989983) + - Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display (using struct cred + as input)" + - Revert "UBUNTU: SAUCE: apparmor: Fix build error, make sk parameter const" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in smk_netlbl_mls()" + - Revert "UBUNTU: SAUCE: LSM: change ima_read_file() to use lsmblob" + - Revert "UBUNTU: SAUCE: apparmor: rename kzfree() to kfree_sensitive()" + - Revert "UBUNTU: SAUCE: Audit: Fix for missing NULL check" + - Revert "UBUNTU: SAUCE: AppArmor: Remove the exclusive flag" + - Revert "UBUNTU: SAUCE: LSM: Add /proc attr entry for full LSM context" + - Revert "UBUNTU: SAUCE: Audit: Add a new record for multiple object LSM + attributes" + - Revert "UBUNTU: SAUCE: Audit: Fix incorrect static inline function + declration." + - Revert "UBUNTU: SAUCE: Audit: Add new record for multiple process LSM + attributes" + - Revert "UBUNTU: SAUCE: NET: Store LSM netlabel data in a lsmblob" + - Revert "UBUNTU: SAUCE: LSM: security_secid_to_secctx in netlink netfilter" + - Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in security_inode_getsecctx" + - Revert "UBUNTU: SAUCE: LSM: Use lsmcontext in security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: LSM: Ensure the correct LSM context releaser" + - Revert "UBUNTU: SAUCE: LSM: Specify which LSM to display" + - Revert "UBUNTU: SAUCE: IMA: Change internal interfaces to use lsmblobs" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_cred_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_inode_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_task_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_ipc_getsecid" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_secid_to_secctx" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_secctx_to_secid" + - Revert "UBUNTU: SAUCE: net: Prepare UDS for security module stacking" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_kernel_act_as" + - Revert "UBUNTU: SAUCE: LSM: Use lsmblob in security_audit_rule_match" + - Revert "UBUNTU: SAUCE: LSM: Create and manage the lsmblob data structure." + - Revert "UBUNTU: SAUCE: LSM: Infrastructure management of the sock security" + - Revert "UBUNTU: SAUCE: apparmor: LSM stacking: switch from SK_CTX() to + aa_sock()" + - Revert "UBUNTU: SAUCE: apparmor: rename aa_sock() to aa_unix_sk()" + - Revert "UBUNTU: SAUCE: apparmor: disable showing the mode as part of a secid + to secctx" + - Revert "apparmor: fix absroot causing audited secids to begin with =" + - Revert "UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix + sockets" + - Revert "UBUNTU: SAUCE: apparmor: fix use after free in sk_peer_label" + - Revert "UBUNTU: SAUCE: apparmor: af_unix mediation" + - Revert "UBUNTU: SAUCE: apparmor: patch to provide compatibility with v2.x + net rules" + - Revert "UBUNTU: SAUCE: apparmor: add/use fns to print hash string hex value" + - SAUCE: upstream v6.0: apparmor: fix absroot causing audited secids to begin + with = + - SAUCE: upstream v6.0: apparmor: Fix kernel-doc + - SAUCE: upstream v6.0: lsm: Fix kernel-doc + - SAUCE: upstream v6.0: apparmor: Update help description of policy hash for + introspection + - SAUCE: upstream v6.0: apparmor: make export of raw binary profile to + userspace optional + - SAUCE: upstream v6.0: apparmor: Enable tuning of policy paranoid load for + embedded systems + - SAUCE: upstream v6.0: apparmor: don't create raw_sha1 symlink if sha1 + hashing is disabled + - SAUCE: upstream v6.0: apparmor: resolve uninitialized symbol warnings in + policy_unpack_test.c + - SAUCE: upstream v6.0: security/apparmor: remove redundant ret variable + - SAUCE: upstream v6.0: apparmor: Use struct_size() helper in kmalloc() + - SAUCE: upstream v6.0: apparmor: Fix match_mnt_path_str() and match_mnt() + kernel-doc comment + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: Fix undefined reference to + `zlib_deflate_workspacesize' + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: test: Remove some casts which are no-longer + required + - SAUCE: upstream v6.0: apparmor: add a kernel label to use on kernel objects + - SAUCE: upstream v6.0: apparmor: Convert secid mapping to XArrays instead of + IDR + - SAUCE: upstream v6.0: apparmor: disable showing the mode as part of a secid + to secctx + - SAUCE: upstream v6.0: apparmor: Mark alloc_unconfined() as static + - SAUCE: upstream v6.0: apparmor: Fix some kernel-doc comments + - SAUCE: upstream v6.0: apparmor: allow label to carry debug flags + - SAUCE: upstream v6.0: apparmor: extend policydb permission set by making use + of the xbits + - SAUCE: upstream v6.0: apparmor: move ptrace mediation to more logical + task.{h,c} + - SAUCE: upstream v6.0: apparmor: correct config reference to intended one + - SAUCE: upstream v6.0: lsm,io_uring: add LSM hooks for the new uring_cmd file + op + - SAUCE: upstream v6.0: selinux: implement the security_uring_cmd() LSM hook + - SAUCE: upstream v6.0: Smack: Provide read control for io_uring_cmd + - SAUCE: apparmor-next 6.1: apparmor: fix a memleak in multi_transaction_new() + - SAUCE: apparmor-next 6.1: apparmor: fix lockdep warning when removing a + namespace + - SAUCE: apparmor-next 6.1: apparmor: reserve mediation classes + - SAUCE: apparmor-next 6.1: apparmor: use zstd compression for profile data + - SAUCE: apparmor-next 6.1: apparmor: expose compression level limits in sysfs + - SAUCE: apparmor-next 6.1: apparmor: compute file permissions on profile load + - SAUCE: apparmor-next 6.1: apparmor: compute xmatch permissions on profile + load + - SAUCE: apparmor-next 6.1: apparmor: move fperm computation into + policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: rework and cleanup fperm computation + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to use aa_perms structure + - SAUCE: apparmor-next 6.1: apparmor: compute policydb permission on profile + load + - SAUCE: apparmor-next 6.1: apparmor: combine file_rules and aa_policydb into + a single shared struct + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch to using the new shared + policydb struct + - SAUCE: apparmor-next 6.1: apparmor: convert fperm lookup to use accept as an + index + - SAUCE: apparmor-next 6.1: apparmor: convert xmatch lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: cleanup shared permission struct + - SAUCE: apparmor-next 6.1: apparmor: convert policy lookup to use accept as + an index + - SAUCE: apparmor-next 6.1: apparmor: preparse for state being more than just + an integer + - SAUCE: apparmor-next 6.1: apparmor: Fix abi check to include v8 abi + - SAUCE: apparmor-next 6.1: apparmor: fix apparmor mediating locking non-fs + unix sockets + - SAUCE: apparmor-next 6.1: apparmor: extend policydb permission set by making + use of the xbits + - SAUCE: apparmor-next 6.1: apparmor: move dfa perm macros into policy_unpack + - SAUCE: apparmor-next 6.1: apparmor: extend xindex size + - SAUCE: apparmor-next 6.1: apparmor: isolate policy backwards compatibility + to its own file + - SAUCE: apparmor-next 6.1: apparmor: extend permissions to support a label + and tag string + - SAUCE: apparmor-next 6.1: apparmor: add mediation class information to + auditing + - SAUCE: apparmor-next 6.1: apparmor: add user mode flag + - SAUCE: apparmor-next 6.1: apparmor: make transition table unpack generic so + it can be reused + - SAUCE: apparmor-next 6.1: apparmor: group dfa policydb unpacking + - SAUCE: apparmor-next 6.1: apparmor: make unpack_array return a trianary + value + - SAUCE: apparmor-next 6.1: apparmor: add the ability for policy to specify a + permission table + - SAUCE: apparmor-next 6.1: apparmor: verify permission table indexes + - SAUCE: apparmor-next 6.1: apparmor: make sure perm indexes are accumulated + - SAUCE: apparmor-next 6.1: apparmor: cleanup: move perm accumulation into + perms.h + - SAUCE: apparmor-next 6.1: apparmor: verify loaded permission bits masks + don't overlap + - SAUCE: apparmor-next 6.1: apparmor: refactor profile rules and attachments + - SAUCE: apparmor-next 6.1: apparmor: rework profile->rules to be a list + - SAUCE: apparmor-next 6.1: apparmor: fix aa_class_names[] to match reserved + classes + - SAUCE: apparmor: add/use fns to print hash string hex value + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: af_unix mediation + - SAUCE: fix shutdown unix socket owner conditional check + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: Add fine grained mediation of posix mqueues + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: lsm stacking v37: integrity: disassociate ima_filter_rule from + security_audit_rule + - SAUCE: lsm stacking v37: LSM: Infrastructure management of the sock security + - SAUCE: lsm stacking v37: LSM: Add the lsmblob data structure. + - SAUCE: lsm stacking v37: LSM: provide lsm name and id slot mappings + - SAUCE: lsm stacking v37: IMA: avoid label collisions with stacked LSMs + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_current_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: lsm stacking v37: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: fixup lsm stacking v37: LSM: Specify which LSM to display + - SAUCE: lsm stacking v37: LSM: Ensure the correct LSM context releaser + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: lsm stacking v37: LSM: Use lsmcontext in + security_dentry_init_security + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: lsm stacking v37: NET: Store LSM netlabel data in a lsmblob + - SAUCE: lsm stacking v37: binder: Pass LSM identifier for confirmation + - SAUCE: lsm stacking v37: LSM: security_secid_to_secctx module selection + - SAUCE: lsm stacking v37: Audit: Keep multiple LSM data in audit_names + - SAUCE: lsm stacking v37: Audit: Create audit_stamp structure + - SAUCE: lsm stacking v37: LSM: Add a function to report multiple LSMs + - SAUCE: lsm stacking v37: Audit: Allow multiple records in an audit_buffer + - SAUCE: lsm stacking v37: Audit: Add record for multiple task security + contexts + - SAUCE: lsm stacking v37: audit: multiple subject lsm values for netlabel + - SAUCE: lsm stacking v37: Audit: Add record for multiple object contexts + - SAUCE: lsm stacking v37: netlabel: Use a struct lsmblob in audit data + - SAUCE: lsm stacking v37: LSM: Removed scaffolding function lsmcontext_init + - SAUCE: lsm stacking v37: LSM: Add /proc attr entry for full LSM context + - SAUCE: lsm stacking v37: AppArmor: Remove the exclusive flag + - SAUCE: security, lsm: Introduce security_create_user_ns() + - SAUCE: bpf-lsm: Make bpf_lsm_userns_create() sleepable + - SAUCE: selinux: Implement userns_create hook + - SAUCE: apparmor: add user namespace creation mediation + - [Config] update configs after apply new apparmor patch set + + * [22.10 FEAT] KVM: Secure Execution guest dump encryption with customer keys + - kernel part (LP: #1959940) + - s390/uv: Add SE hdr query information + - s390/uv: Add dump fields to query + - KVM: s390: pv: Add query interface + - KVM: s390: pv: Add dump support definitions + - KVM: s390: pv: Add query dump information + - KVM: s390: Add configuration dump functionality + - KVM: s390: Add CPU dump functionality + - KVM: s390: Add KVM_CAP_S390_PROTECTED_DUMP + - Documentation: virt: Protected virtual machine dumps + - Documentation/virt/kvm/api.rst: Add protvirt dump/info api descriptions + - Documentation/virt/kvm/api.rst: Explain rc/rrc delivery + + * [SRU][OEM-5.14/Jammy/OEM-5.17][PATCH 0/1] Fix blank screen on Thinkpad ADL + 4K+ panel (LP: #1980621) + - SAUCE: drm/i915: Implement WaEdpLinkRateDataReload + - SAUCE: Revert "drm/i915/display: Re-add check for low voltage sku for max dp + source rate" + + * [UBUNTU 22.04] s390/qeth: cache link_info for ethtool (LP: #1984103) + - s390/qeth: cache link_info for ethtool + + * Kernel livepatch support for for s390x (LP: #1639924) + - [Config] Enable EXPOLINE_EXTERN on s390x + + * IWLMEI may cause device down at resuming from s2idle (LP: #1987312) + - [Config] Disable IWLMEI + + * Raise CONFIG_NR_CPUS (LP: #1967889) + - [Config] Raise riscv64 CONFIG_NR_CPUS to 32 + + * PolarFire Icicle Kit: missing USB support (LP: #1986970) + - usb: musb: Add support for PolarFire SoC's musb controller + - usb: musb: mpfs: Fix error codes in probe() + - usb: musb: mpfs: add missing clk_disable_unprepare() in mpfs_remove() + - [Config] Enable CONFIG_USB_MUSB_POLARFIRE_SOC on riscv64 + + * System freeze after resuming from suspend due to PCI ASPM settings + (LP: #1980829) + - SAUCE: PCI/ASPM: Save/restore L1SS Capability for suspend/resume + - SAUCE: whitelist platforms that needs save/restore ASPM L1SS for + suspend/resume + + * Please enable CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU (LP: #1980861) + - [Config] Switch from DECOMP_SINGLE to DECOMP_MULTI_PERCPU + + * Miscellaneous Ubuntu changes + - [Config] enable security-related configs + - [Packaging] Make stamp-install- target reentrant + - [Packaging] Pass kernel build_arch to dkms + - [Packaging] Enable building zfs during cross-compile + - [Packaging] temporarily disable signing for ppc64el + + -- Andrea Righi Fri, 16 Sep 2022 18:03:10 +0200 + +linux (5.19.0-16.16) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-16.16 -proposed tracker (LP: #1988707) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Kinetic update: v5.19.7 upstream stable release (LP: #1988733) + - drm/vc4: hdmi: Rework power up + - drm/vc4: hdmi: Depends on CONFIG_PM + - firmware: tegra: bpmp: Do only aligned access to IPC memory area + - crypto: lib - remove unneeded selection of XOR_BLOCKS + - docs: kerneldoc-preamble: Test xeCJK.sty before loading + - arm64: errata: Add Cortex-A510 to the repeat tlbi list + - Bluetooth: L2CAP: Fix build errors in some archs + - Revert "PCI/portdrv: Don't disable AER reporting in + get_port_device_capability()" + - HID: steam: Prevent NULL pointer dereference in steam_{recv,send}_report + - udmabuf: Set the DMA mask for the udmabuf device (v2) + - media: pvrusb2: fix memory leak in pvr_probe + - USB: gadget: Fix use-after-free Read in usb_udc_uevent() + - HID: hidraw: fix memory leak in hidraw_release() + - net: fix refcount bug in sk_psock_get (2) + - fbdev: fb_pm2fb: Avoid potential divide by zero error + - ftrace: Fix NULL pointer dereference in is_ftrace_trampoline when ftrace is + dead + - bpf: Don't redirect packets with invalid pkt_len + - mm/rmap: Fix anon_vma->degree ambiguity leading to double-reuse + - ALSA: usb-audio: Add quirk for LH Labs Geek Out HD Audio 1V5 + - HID: input: fix uclogic tablets + - HID: add Lenovo Yoga C630 battery quirk + - HID: AMD_SFH: Add a DMI quirk entry for Chromebooks + - HID: Add Apple Touchbar on T2 Macs in hid_have_special_driver list + - HID: asus: ROG NKey: Ignore portion of 0x5a report + - HID: nintendo: fix rumble worker null pointer deref + - HID: thrustmaster: Add sparco wheel and fix array length + - HID: intel-ish-hid: ipc: Add Meteor Lake PCI device ID + - mmc: mtk-sd: Clear interrupts when cqe off/disable + - mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs + - mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx + - mmc: sdhci-of-dwcmshc: Re-enable support for the BlueField-3 SoC + - fs/ntfs3: Fix work with fragmented xattr + - ASoC: sh: rz-ssi: Improve error handling in rz_ssi_probe() error path + - ASoC: rt5640: Fix the JD voltage dropping issue + - rtla: Fix tracer name + - drm/amd/display: Add a missing register field for HPO DP stream encoder + - drm/amd/display: Device flash garbage before get in OS + - drm/amd/display: Avoid MPC infinite loop + - drm/amd/display: Fix HDMI VSIF V3 incorrect issue + - drm/amd/display: For stereo keep "FLIP_ANY_FRAME" + - drm/amd/display: clear optc underflow before turn off odm clock + - drm/amd/display: Fix TDR eDP and USB4 display light up issue + - drm/amd/pm: skip pptable override for smu_v13_0_7 + - drm/amdkfd: Handle restart of kfd_ioctl_wait_events + - drm/amd/pm: Fix a potential gpu_metrics_table memory leak + - ksmbd: return STATUS_BAD_NETWORK_NAME error status if share is not + configured + - net: lan966x: fix checking for return value of platform_get_irq_byname() + - neigh: fix possible DoS due to net iface start/stop loop + - ALSA: hda/realtek: Add quirks for ASUS Zenbooks using CS35L41 + - s390/hypfs: avoid error message under KVM + - ksmbd: don't remove dos attribute xattr on O_TRUNC open + - drm/amdgpu: disable 3DCGCG/CGLS temporarily due to stability issue + - drm/amd/pm: add missing ->fini_microcode interface for Sienna Cichlid + - drm/amd/pm: add missing ->fini_xxxx interfaces for some SMU13 asics + - drm/amd/display: Fix pixel clock programming + - drm/amdgpu: Increase tlb flush timeout for sriov + - drm/amd/display: Fix plug/unplug external monitor will hang while playback + MPO video + - drm/amd/display: avoid doing vm_init multiple time + - drm/amdgpu: Add decode_iv_ts helper for ih_v6 block + - drm/amdgpu: Add secure display TA load for Renoir + - drm/amdgpu: Fix interrupt handling on ih_soft ring + - netfilter: conntrack: NF_CONNTRACK_PROCFS should no longer default to y + - testing: selftests: nft_flowtable.sh: use random netns names + - platform/x86: serial-multi-instantiate: Add CLSA0101 Laptop + - ALSA: hda/cs8409: Support new Dolphin Variants + - btrfs: move lockdep class helpers to locking.c + - btrfs: fix lockdep splat with reloc root extent buffers + - btrfs: tree-checker: check for overlapping extent items + - android: binder: fix lockdep check on clearing vma + - net/af_packet: check len when min_header_len equals to 0 + - net: neigh: don't call kfree_skb() under spin_lock_irqsave() + - arm64: cacheinfo: Fix incorrect assignment of signed error value to unsigned + fw_level + - Linux 5.19.7 + + * Kinetic update: v5.19.6 upstream stable release (LP: #1988732) + - mm/gup: fix FOLL_FORCE COW security issue and remove FOLL_COW + - NFS: Fix another fsync() issue after a server reboot + - audit: fix potential double free on error path from fsnotify_add_inode_mark + - cgroup: Fix race condition at rebind_subsystems() + - parisc: Make CONFIG_64BIT available for ARCH=parisc64 only + - parisc: Fix exception handler for fldw and fstw instructions + - kernel/sys_ni: add compat entry for fadvise64_64 + - kprobes: don't call disarm_kprobe() for disabled kprobes + - mm/uffd: reset write protection when unregister with wp-mode + - mm/hugetlb: support write-faults in shared mappings + - mt76: mt7921: fix command timeout in AP stop period + - xfrm: fix refcount leak in __xfrm_policy_check() + - Revert "xfrm: update SA curlft.use_time" + - xfrm: clone missing x->lastused in xfrm_do_migrate + - af_key: Do not call xfrm_probe_algs in parallel + - xfrm: policy: fix metadata dst->dev xmit null pointer dereference + - fs: require CAP_SYS_ADMIN in target namespace for idmapped mounts + - Revert "net: macsec: update SCI upon MAC address change." + - NFSv4.2 fix problems with __nfs42_ssc_open + - SUNRPC: RPC level errors should set task->tk_rpc_status + - mm/smaps: don't access young/dirty bit if pte unpresent + - ntfs: fix acl handling + - rose: check NULL rose_loopback_neigh->loopback + - r8152: fix the units of some registers for RTL8156A + - r8152: fix the RX FIFO settings when suspending + - nfc: pn533: Fix use-after-free bugs caused by pn532_cmd_timeout + - ice: xsk: prohibit usage of non-balanced queue id + - ice: xsk: use Rx ring's XDP ring when picking NAPI context + - net/mlx5e: Properly disable vlan strip on non-UL reps + - net/mlx5: LAG, fix logic over MLX5_LAG_FLAG_NDEVS_READY + - net/mlx5: Eswitch, Fix forwarding decision to uplink + - net/mlx5: Disable irq when locking lag_lock + - net/mlx5: Fix cmd error logging for manage pages cmd + - net/mlx5: Avoid false positive lockdep warning by adding lock_class_key + - net/mlx5e: Fix wrong application of the LRO state + - net/mlx5e: Fix wrong tc flag used when set hw-tc-offload off + - net: dsa: microchip: ksz9477: cleanup the ksz9477_switch_detect + - net: dsa: microchip: move switch chip_id detection to ksz_common + - net: dsa: microchip: move tag_protocol to ksz_common + - net: dsa: microchip: move vlan functionality to ksz_common + - net: dsa: microchip: move the port mirror to ksz_common + - net: dsa: microchip: update the ksz_phylink_get_caps + - net: dsa: microchip: keep compatibility with device tree blobs with no phy- + mode + - net: ipa: don't assume SMEM is page-aligned + - net: phy: Don't WARN for PHY_READY state in mdio_bus_phy_resume() + - net: moxa: get rid of asymmetry in DMA mapping/unmapping + - bonding: 802.3ad: fix no transmission of LACPDUs + - net: ipvtap - add __init/__exit annotations to module init/exit funcs + - netfilter: ebtables: reject blobs that don't provide all entry points + - netfilter: nft_tproxy: restrict to prerouting hook + - bnxt_en: Use PAGE_SIZE to init buffer when multi buffer XDP is not in use + - bnxt_en: set missing reload flag in devlink features + - bnxt_en: fix NQ resource accounting during vf creation on 57500 chips + - bnxt_en: fix LRO/GRO_HW features in ndo_fix_features callback + - netfilter: nf_tables: disallow updates of implicit chain + - netfilter: nf_tables: make table handle allocation per-netns friendly + - netfilter: nft_payload: report ERANGE for too long offset and length + - netfilter: nft_payload: do not truncate csum_offset and csum_type + - netfilter: nf_tables: do not leave chain stats enabled on error + - netfilter: nft_osf: restrict osf to ipv4, ipv6 and inet families + - netfilter: nft_tunnel: restrict it to netdev family + - netfilter: nf_tables: disallow binding to already bound chain + - netfilter: flowtable: add function to invoke garbage collection immediately + - netfilter: flowtable: fix stuck flows on cleanup due to pending work + - net: Fix data-races around sysctl_[rw]mem_(max|default). + - net: Fix data-races around weight_p and dev_weight_[rt]x_bias. + - net: Fix data-races around netdev_max_backlog. + - net: Fix data-races around netdev_tstamp_prequeue. + - ratelimit: Fix data-races in ___ratelimit(). + - net: Fix data-races around sysctl_optmem_max. + - net: Fix a data-race around sysctl_tstamp_allow_data. + - net: Fix a data-race around sysctl_net_busy_poll. + - net: Fix a data-race around sysctl_net_busy_read. + - net: Fix a data-race around netdev_budget. + - net: Fix data-races around sysctl_max_skb_frags. + - net: Fix a data-race around netdev_budget_usecs. + - net: Fix data-races around sysctl_fb_tunnels_only_for_init_net. + - net: Fix data-races around sysctl_devconf_inherit_init_net. + - net: Fix a data-race around gro_normal_batch. + - net: Fix a data-race around netdev_unregister_timeout_secs. + - net: Fix a data-race around sysctl_somaxconn. + - ixgbe: stop resetting SYSTIME in ixgbe_ptp_start_cyclecounter + - i40e: Fix incorrect address type for IPv6 flow rules + - net: ethernet: mtk_eth_soc: enable rx cksum offload for MTK_NETSYS_V2 + - net: ethernet: mtk_eth_soc: fix hw hash reporting for MTK_NETSYS_V2 + - rxrpc: Fix locking in rxrpc's sendmsg + - ionic: clear broken state on generation change + - ionic: fix up issues with handling EAGAIN on FW cmds + - ionic: VF initial random MAC address if no assigned mac + - net: stmmac: work around sporadic tx issue on link-up + - net: lantiq_xrx200: confirm skb is allocated before using + - net: lantiq_xrx200: fix lock under memory pressure + - net: lantiq_xrx200: restore buffer if memory allocation failed + - btrfs: fix silent failure when deleting root reference + - btrfs: replace: drop assert for suspended replace + - btrfs: add info when mount fails due to stale replace target + - btrfs: fix space cache corruption and potential double allocations + - btrfs: check if root is readonly while setting security xattr + - btrfs: fix possible memory leak in btrfs_get_dev_args_from_path() + - btrfs: update generation of hole file extent item when merging holes + - x86/boot: Don't propagate uninitialized boot_params->cc_blob_address + - perf/x86/intel: Fix pebs event constraints for ADL + - perf/x86/lbr: Enable the branch type for the Arch LBR by default + - x86/entry: Fix entry_INT80_compat for Xen PV guests + - x86/unwind/orc: Unwind ftrace trampolines with correct ORC entry + - x86/sev: Don't use cc_platform_has() for early SEV-SNP calls + - x86/bugs: Add "unknown" reporting for MMIO Stale Data + - x86/nospec: Unwreck the RSB stuffing + - x86/PAT: Have pat_enabled() properly reflect state when running on Xen + - loop: Check for overflow while configuring loop + - writeback: avoid use-after-free after removing device + - audit: move audit_return_fixup before the filters + - asm-generic: sections: refactor memory_intersects + - mm/damon/dbgfs: avoid duplicate context directory creation + - s390/mm: do not trigger write fault when vma does not allow VM_WRITE + - bootmem: remove the vmemmap pages from kmemleak in put_page_bootmem + - mm/hugetlb: avoid corrupting page->mapping in hugetlb_mcopy_atomic_pte + - mm/mprotect: only reference swap pfn page if type match + - cifs: skip extra NULL byte in filenames + - s390: fix double free of GS and RI CBs on fork() failure + - fbdev: fbcon: Properly revert changes when vc_resize() failed + - Revert "memcg: cleanup racy sum avoidance code" + - shmem: update folio if shmem_replace_page() updates the page + - ACPI: processor: Remove freq Qos request for all CPUs + - nouveau: explicitly wait on the fence in nouveau_bo_move_m2mf + - smb3: missing inode locks in punch hole + - ocfs2: fix freeing uninitialized resource on ocfs2_dlm_shutdown + - xen/privcmd: fix error exit of privcmd_ioctl_dm_op() + - riscv: signal: fix missing prototype warning + - riscv: traps: add missing prototype + - riscv: dts: microchip: correct L2 cache interrupts + - Revert "zram: remove double compression logic" + - io_uring: fix issue with io_write() not always undoing sb_start_write() + - mm/hugetlb: fix hugetlb not supporting softdirty tracking + - Revert "md-raid: destroy the bitmap after destroying the thread" + - md: call __md_stop_writes in md_stop + - arm64: Fix match_list for erratum 1286807 on Arm Cortex-A76 + - binder_alloc: add missing mmap_lock calls when using the VMA + - x86/nospec: Fix i386 RSB stuffing + - drm/amdkfd: Fix isa version for the GC 10.3.7 + - Documentation/ABI: Mention retbleed vulnerability info file for sysfs + - blk-mq: fix io hung due to missing commit_rqs + - perf python: Fix build when PYTHON_CONFIG is user supplied + - perf/x86/intel/uncore: Fix broken read_counter() for SNB IMC PMU + - perf/x86/intel/ds: Fix precise store latency handling + - perf stat: Clear evsel->reset_group for each stat run + - arm64: fix rodata=full + - arm64/signal: Flush FPSIMD register state when disabling streaming mode + - arm64/sme: Don't flush SVE register state when allocating SME storage + - arm64/sme: Don't flush SVE register state when handling SME traps + - scsi: ufs: core: Enable link lost interrupt + - scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq + - scsi: core: Fix passthrough retry counter handling + - riscv: dts: microchip: mpfs: fix incorrect pcie child node name + - riscv: dts: microchip: mpfs: remove ti,fifo-depth property + - riscv: dts: microchip: mpfs: remove bogus card-detect-delay + - riscv: dts: microchip: mpfs: remove pci axi address translation property + - bpf: Don't use tnum_range on array range checking for poke descriptors + - Linux 5.19.6 + + * Kinetic update: v5.19.5 upstream stable release (LP: #1988207) + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - Linux 5.19.5 + + * Support Intel TDX guest attestation driver (LP: #1988120) + - SAUCE: x86/tdx: Add TDX Guest attestation interface driver + - SAUCE: selftests: tdx: Test GetReport TDX attestation feature + + * Kinetic update: v5.19.4 upstream stable release (LP: #1987923) + - ALSA: info: Fix llseek return value when using callback + - ALSA: hda/realtek: Add quirk for Clevo NS50PU, NS70PU + - RDMA: Handle the return code from dma_resv_wait_timeout() properly + - KVM: Unconditionally get a ref to /dev/kvm module when creating a VM + - x86/mm: Use proper mask when setting PUD mapping + - rds: add missing barrier to release_refill + - drm/i915/gem: Remove shared locking on freeing objects + - locking/atomic: Make test_and_*_bit() ordered on failure + - drm/nouveau: recognise GA103 + - drm/ttm: Fix dummy res NULL ptr deref bug + - drm/amdgpu: Only disable prefer_shadow on hawaii + - drm/amd/display: Check correct bounds for stream encoder instances for + DCN303 + - s390/ap: fix crash on older machines based on QCI info missing + - ata: libata-eh: Add missing command name + - mmc: pxamci: Fix another error handling path in pxamci_probe() + - mmc: pxamci: Fix an error handling path in pxamci_probe() + - mmc: meson-gx: Fix an error handling path in meson_mmc_probe() + - btrfs: unset reloc control if transaction commit fails in + prepare_to_relocate() + - btrfs: reset RO counter on block group if we fail to relocate + - btrfs: fix lost error handling when looking up extended ref on log replay + - btrfs: fix warning during log replay when bumping inode link count + - drm/amdgpu: change vram width algorithm for vram_info v3_0 + - drm/i915/gt: Ignore TLB invalidations on idle engines + - drm/i915/gt: Invalidate TLB of the OA unit at TLB invalidations + - drm/i915/gt: Skip TLB invalidations once wedged + - drm/i915/gt: Batch TLB invalidations + - drm/i915: pass a pointer for tlb seqno at vma_invalidate_tlb() + - cifs: Fix memory leak on the deferred close + - x86/kprobes: Fix JNG/JNLE emulation + - tracing/perf: Fix double put of trace event when init fails + - tracing/eprobes: Do not allow eprobes to use $stack, or % for regs + - tracing/eprobes: Do not hardcode $comm as a string + - tracing/eprobes: Fix reading of string fields + - tracing/eprobes: Have event probes be consistent with kprobes and uprobes + - tracing/probes: Have kprobes and uprobes use $COMM too + - tracing: Have filter accept "common_cpu" to be consistent + - ALSA: usb-audio: More comprehensive mixer map for ASUS ROG Zenith II + - ALSA: hda: Fix crash due to jack poll in suspend + - dt-bindings: usb: mtk-xhci: Allow wakeup interrupt-names to be optional + - can: ems_usb: fix clang's -Wunaligned-access warning + - apparmor: fix quiet_denied for file rules + - Revert "UBUNTU: SAUCE: apparmor: drop prefixing abs root labels with '='" + - apparmor: fix absroot causing audited secids to begin with = + - apparmor: Fix failed mount permission check error message + - apparmor: fix aa_label_asxprint return check + - apparmor: fix setting unconfined mode on a loaded profile + - apparmor: fix overlapping attachment computation + - apparmor: fix reference count leak in aa_pivotroot() + - apparmor: Fix memleak in aa_simple_write_to_buffer() + - Documentation: ACPI: EINJ: Fix obsolete example + - netfilter: nf_tables: fix crash when nf_trace is enabled + - net: tap: NULL pointer derefence in dev_parse_header_protocol when skb->dev + is null + - NFSv4.1: Don't decrease the value of seq_nr_highest_sent + - NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly + - NFSv4: Fix races in the legacy idmapper upcall + - NFSv4.1: RECLAIM_COMPLETE must handle EACCES + - NFSv4/pnfs: Fix a use-after-free bug in open + - mptcp, btf: Add struct mptcp_sock definition when CONFIG_MPTCP is disabled + - mptcp: move subflow cleanup in mptcp_destroy_common() + - mptcp: do not queue data on closed subflows + - selftests: mptcp: make sendfile selftest work + - BPF: Fix potential bad pointer dereference in bpf_sys_bpf() + - bpf: Disallow bpf programs call prog_run command. + - bpf: Don't reinit map value in prealloc_lru_pop + - bpf: Acquire map uref in .init_seq_private for array map iterator + - bpf: Acquire map uref in .init_seq_private for hash map iterator + - bpf: Acquire map uref in .init_seq_private for sock local storage map + iterator + - bpf: Acquire map uref in .init_seq_private for sock{map,hash} iterator + - bpf: Check the validity of max_rdwr_access for sock local storage map + iterator + - can: mcp251x: Fix race condition on receive interrupt + - can: j1939: j1939_session_destroy(): fix memory leak of skbs + - net: atlantic: fix aq_vec index out of range error + - m68k: coldfire/device.c: protect FLEXCAN blocks + - sunrpc: fix expiry of auth creds + - SUNRPC: Fix xdr_encode_bool() + - SUNRPC: Reinitialise the backchannel request buffers before reuse + - SUNRPC: Don't reuse bvec on retransmission of the request + - ASoC: qdsp6: q6apm-dai: unprepare stream if its already prepared + - virtio: VIRTIO_HARDEN_NOTIFICATION is broken + - [Config] updateconfigs for VIRTIO_HARDEN_NOTIFICATION + - virtio_net: fix memory leak inside XPD_TX with mergeable + - virtio-blk: Avoid use-after-free on suspend/resume + - devlink: Fix use-after-free after a failed reload + - net: phy: Warn about incorrect mdio_bus_phy_resume() state + - net: bcmgenet: Indicate MAC is in charge of PHY PM + - net: phy: c45 baset1: do not skip aneg configuration if clock role is not + specified + - net: dsa: felix: suppress non-changes to the tagging protocol + - net: bgmac: Fix a BUG triggered by wrong bytes_compl + - net: atm: bring back zatm uAPI + - selftests: forwarding: Fix failing tests with old libnet + - dt-bindings: arm: qcom: fix Alcatel OneTouch Idol 3 compatibles + - pinctrl: renesas: rzg2l: Return -EINVAL for pins which have input disabled + - dt-bindings: pinctrl: mt8192: Add drive-strength-microamp + - dt-bindings: pinctrl: mt8192: Use generic bias instead of pull-*-adv + - pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map + - pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed + - pinctrl: amd: Don't save/restore interrupt status and wake status bits + - dt-bindings: pinctrl: mt8195: Fix name for mediatek,rsel-resistance-in-si- + unit + - dt-bindings: pinctrl: mt8195: Add and use drive-strength-microamp + - pinctrl: sunxi: Add I/O bias setting for H6 R-PIO + - dt-bindings: pinctrl: mt8186: Add and use drive-strength-microamp + - pinctrl: qcom: sm8250: Fix PDC map + - rtc: spear: set range max + - Input: exc3000 - fix return value check of wait_for_completion_timeout + - Input: mt6779-keypad - match hardware matrix organization + - Input: iqs7222 - correct slider event disable logic + - Input: iqs7222 - fortify slider event reporting + - Input: iqs7222 - protect volatile registers + - Input: iqs7222 - acknowledge reset before writing registers + - Input: iqs7222 - handle reset during ATI + - Input: iqs7222 - remove support for RF filter + - dt-bindings: input: iqs7222: Remove support for RF filter + - dt-bindings: input: iqs7222: Correct bottom speed step size + - dt-bindings: input: iqs7222: Extend slider-mapped GPIO to IQS7222C + - octeontx2-pf: Fix NIX_AF_TL3_TL2X_LINKX_CFG register configuration + - octeontx2-af: Apply tx nibble fixup always + - octeontx2-af: suppress external profile loading warning + - octeontx2-af: Fix mcam entry resource leak + - octeontx2-af: Fix key checking for source mac + - ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool + - geneve: do not use RT_TOS for IPv6 flowlabel + - vxlan: do not use RT_TOS for IPv6 flowlabel + - mlx5: do not use RT_TOS for IPv6 flowlabel + - ipv6: do not use RT_TOS for IPv6 flowlabel + - plip: avoid rcu debug splat + - vsock: Fix memory leak in vsock_connect() + - vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() + - dt-bindings: gpio: zynq: Add missing compatible strings + - dt-bindings: arm: qcom: fix Longcheer L8150 compatibles + - dt-bindings: arm: qcom: fix MSM8916 MTP compatibles + - dt-bindings: arm: qcom: fix MSM8994 boards compatibles + - dt-bindings: clock: qcom,gcc-msm8996: add more GCC clock sources + - dt-bindings: PCI: qcom: Fix reset conditional + - spi: dt-bindings: cadence: add missing 'required' + - spi: dt-bindings: zynqmp-qspi: add missing 'required' + - dt-bindings: opp: opp-v2-kryo-cpu: Fix example binding checks + - spi: dt-bindings: qcom,spi-geni-qcom: allow three interconnects + - ceph: use correct index when encoding client supported features + - tools/testing/cxl: Fix decoder default state + - tools/vm/slabinfo: use alphabetic order when two values are equal + - ceph: don't leak snap_rwsem in handle_cap_grant + - clk: imx93: Correct the edma1's parent clock + - vdpa_sim: use max_iotlb_entries as a limit in vhost_iotlb_init + - vdpa_sim_blk: set number of address spaces and virtqueue groups + - tools/testing/cxl: Fix cxl_hdm_decode_init() calling convention + - kbuild: dummy-tools: avoid tmpdir leak in dummy gcc + - tools build: Switch to new openssl API for test-libcrypto + - NTB: ntb_tool: uninitialized heap data in tool_fn_write() + - nfp: ethtool: fix the display error of `ethtool -m DEVNAME` + - xen/xenbus: fix return type in xenbus_file_read() + - tsnep: Fix tsnep_tx_unmap() error path usage + - atm: idt77252: fix use-after-free bugs caused by tst_timer + - fscache: don't leak cookie access refs if invalidation is in progress or + failed + - geneve: fix TOS inheriting for ipv4 + - nvme-fc: fix the fc_appid_store return value + - perf probe: Fix an error handling path in 'parse_perf_probe_command()' + - i2c: qcom-geni: Fix GPI DMA buffer sync-back + - perf parse-events: Fix segfault when event parser gets an error + - perf tests: Fix Track with sched_switch test for hybrid case + - dpaa2-eth: trace the allocated address instead of page struct + - fs/ntfs3: Fix using uninitialized value n when calling indx_read + - fs/ntfs3: Fix NULL deref in ntfs_update_mftmirr + - fs/ntfs3: Don't clear upper bits accidentally in log_replay() + - fs/ntfs3: Fix double free on remount + - fs/ntfs3: Do not change mode if ntfs_set_ea failed + - fs/ntfs3: Fix missing i_op in ntfs_read_mft + - nios2: page fault et.al. are *not* restartable syscalls... + - nios2: don't leave NULLs in sys_call_table[] + - nios2: traced syscall does need to check the syscall number + - nios2: fix syscall restart checks + - nios2: restarts apply only to the first sigframe we build... + - nios2: add force_successful_syscall_return() + - iavf: Fix adminq error handling + - iavf: Fix NULL pointer dereference in iavf_get_link_ksettings + - iavf: Fix reset error handling + - iavf: Fix deadlock in initialization + - ASoC: Intel: avs: Fix potential buffer overflow by snprintf() + - ASoC: SOF: debug: Fix potential buffer overflow by snprintf() + - ASoC: SOF: Intel: hda: Fix potential buffer overflow by snprintf() + - ASoC: DPCM: Don't pick up BE without substream + - ASoC: tas2770: Set correct FSYNC polarity + - ASoC: tas2770: Allow mono streams + - ASoC: tas2770: Drop conflicting set_bias_level power setting + - ASoC: tas2770: Fix handling of mute/unmute + - ASoC: codec: tlv320aic32x4: fix mono playback via I2S + - IB/iser: Fix login with authentication + - RDMA/mlx5: Use the proper number of ports + - RDMA/cxgb4: fix accept failure due to increased cpl_t5_pass_accept_rpl size + - netfilter: nfnetlink: re-enable conntrack expectation events + - netfilter: nf_tables: use READ_ONCE and WRITE_ONCE for shared generation id + access + - fs/ntfs3: uninitialized variable in ntfs_set_acl_ex() + - netfilter: nf_tables: disallow NFTA_SET_ELEM_KEY_END with + NFT_SET_ELEM_INTERVAL_END flag + - netfilter: nf_ct_sane: remove pseudo skb linearization + - netfilter: nf_ct_h323: cap packet size at 64k + - netfilter: nf_ct_ftp: prefer skb_linearize + - netfilter: nf_ct_irc: cap packet search space to 4k + - netfilter: nf_tables: possible module reference underflow in error path + - netfilter: nf_tables: really skip inactive sets when allocating name + - netfilter: nf_tables: fix scheduling-while-atomic splat + - netfilter: nf_tables: validate NFTA_SET_ELEM_OBJREF based on NFT_SET_OBJECT + flag + - netfilter: nf_tables: NFTA_SET_ELEM_KEY_END requires concat and interval + flags + - netfilter: nf_tables: disallow NFT_SET_ELEM_CATCHALL and + NFT_SET_ELEM_INTERVAL_END + - netfilter: nf_tables: check NFT_SET_CONCAT flag if field_count is specified + - powerpc/pci: Fix get_phb_number() locking + - spi: meson-spicc: add local pow2 clock ops to preserve rate between messages + - net/sunrpc: fix potential memory leaks in rpc_sysfs_xprt_state_change() + - net: dsa: mv88e6060: prevent crash on an unused port + - net: qrtr: start MHI channel after endpoit creation + - virtio_net: fix endian-ness for RSS + - mlxsw: spectrum: Clear PTP configuration after unregistering the netdevice + - net: moxa: pass pdev instead of ndev to DMA functions + - net: fix potential refcount leak in ndisc_router_discovery() + - net: rtnetlink: fix module reference count leak issue in rtnetlink_rcv_msg + - net: sched: fix misuse of qcpu->backlog in gnet_stats_add_queue_cpu + - net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry + - net: dsa: felix: fix ethtool 256-511 and 512-1023 TX packet counters + - net: mscc: ocelot: fix incorrect ndo_get_stats64 packet counters + - net: mscc: ocelot: fix address of SYS_COUNT_TX_AGING counter + - net: genl: fix error path memory leak in policy dumping + - net: dsa: don't warn in dsa_port_set_state_now() when driver doesn't support + it + - net: dsa: sja1105: fix buffer overflow in sja1105_setup_devlink_regions() + - ice: Fix VSI rebuild WARN_ON check for VF + - ice: Fix call trace with null VSI during VF reset + - ice: Fix VF not able to send tagged traffic with no VLAN filters + - ice: Fix double VLAN error when entering promisc mode + - ice: Ignore EEXIST when setting promisc mode + - ice: Fix clearing of promisc mode with bridge over bond + - ice: Ignore error message when setting same promiscuous mode + - modpost: fix module versioning when a symbol lacks valid CRC + - i2c: imx: Make sure to unregister adapter on remove() + - i40e: Fix tunnel checksum offload with fragmented traffic + - regulator: pca9450: Remove restrictions for regulator-name + - i40e: Fix to stop tx_timeout recovery if GLOBR fails + - blk-mq: run queue no matter whether the request is the last request + - tools/rtla: Fix command symlinks + - fec: Fix timer capture timing in `fec_ptp_enable_pps()` + - dt-bindings: display: sun4i: Add D1 TCONs to conditionals + - stmmac: intel: Add a missing clk_disable_unprepare() call in + intel_eth_pci_remove() + - igb: Add lock to avoid data race + - kbuild: fix the modules order between drivers and libs + - gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file + - can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with + netdev_warn_once() + - drm/imx/dcss: get rid of HPD warning message + - drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() + - drm/i915/ttm: don't leak the ccs state + - drm/amdgpu: Avoid another list of reset devices + - drm/bridge: lvds-codec: Fix error checking of drm_of_lvds_get_data_mapping() + - drm/sun4i: dsi: Prevent underflow when computing packet sizes + - drm/amdgpu: Fix use-after-free on amdgpu_bo_list mutex + - KVM: arm64: Treat PMCR_EL1.LC as RES1 on asymmetric systems + - KVM: arm64: Reject 32bit user PSTATE on asymmetric systems + - net: mscc: ocelot: turn stats_lock into a spinlock + - net: mscc: ocelot: fix race between ndo_get_stats64 and + ocelot_check_stats_work + - net: mscc: ocelot: make struct ocelot_stat_layout array indexable + - net: mscc: ocelot: report ndo_get_stats64 from the wraparound-resistant + ocelot->stats + - x86/ibt, objtool: Add IBT_NOSEAL() + - x86/kvm: Fix "missing ENDBR" BUG for fastop functions + - thunderbolt: Change downstream router's TMU rate in both TMU uni/bidir mode + - HID: multitouch: new device class fix Lenovo X12 trackpad sticky + - PCI: Add ACS quirk for Broadcom BCM5750x NICs + - platform/chrome: cros_ec_proto: don't show MKBP version if unsupported + - staging: r8188eu: add error handling of rtw_read8 + - staging: r8188eu: add error handling of rtw_read16 + - staging: r8188eu: add error handling of rtw_read32 + - usb: cdns3 fix use-after-free at workaround 2 + - usb: gadget: uvc: calculate the number of request depending on framesize + - usb: gadget: uvc: call uvc uvcg_warn on completed status instead of + uvcg_info + - PCI: aardvark: Fix reporting Slot capabilities on emulated bridge + - scsi: ufs: core: Add UFSHCD_QUIRK_BROKEN_64BIT_ADDRESS + - scsi: ufs: core: Add UFSHCD_QUIRK_HIBERN_FASTAUTO + - irqchip/tegra: Fix overflow implicit truncation warnings + - drm/meson: Fix overflow implicit truncation warnings + - clk: ti: Stop using legacy clkctrl names for omap4 and 5 + - scsi: ufs: ufs-mediatek: Fix the timing of configuring device regulators + - usb: typec: mux: Add CONFIG guards for functions + - usb: host: ohci-ppc-of: Fix refcount leak bug + - usb: renesas: Fix refcount leak bug + - scsi: iscsi: Fix HW conn removal use after free + - usb: dwc2: gadget: remove D+ pull-up while no vbus with usb-role-switch + - vboxguest: Do not use devm for irq + - clk: qcom: ipq8074: dont disable gcc_sleep_clk_src + - uacce: Handle parent device removal or parent driver module rmmod + - zram: do not lookup algorithm in backends table + - clk: qcom: clk-alpha-pll: fix clk_trion_pll_configure description + - scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user + input + - scsi: lpfc: Fix possible memory leak when failing to issue CMF WQE + - gadgetfs: ep_io - wait until IRQ finishes + - coresight: etm4x: avoid build failure with unrolled loops + - habanalabs: add terminating NULL to attrs arrays + - habanalabs/gaudi: invoke device reset from one code block + - habanalabs/gaudi: fix shift out of bounds + - habanalabs/gaudi: mask constant value before cast + - mmc: tmio: avoid glitches when resetting + - scsi: ufs: ufs-exynos: Change ufs phy control sequence + - pinctrl: intel: Check against matching data instead of ACPI companion + - cxl: Fix a memory leak in an error handling path + - PCI/ACPI: Guard ARM64-specific mcfg_quirks + - um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups + - of: overlay: Move devicetree_corrupt() check up + - dmaengine: dw-axi-dmac: do not print NULL LLI during error + - dmaengine: dw-axi-dmac: ignore interrupt if no descriptor + - mmc: renesas_sdhi: newer SoCs don't need manual tap correction + - ACPI: PPTT: Leave the table mapped for the runtime usage + - RDMA/rxe: Limit the number of calls to each tasklet + - csky/kprobe: reclaim insn_slot on kprobe unregistration + - selftests/kprobe: Do not test for GRP/ without event failures + - dmaengine: tegra: Add terminate() for Tegra234 + - dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed + - Revert "RDMA/rxe: Create duplicate mapping tables for FMRs" + - openrisc: io: Define iounmap argument as volatile + - phy: samsung: phy-exynos-pcie: sanitize init/power_on callbacks + - md: Notify sysfs sync_completed in md_reap_sync_thread() + - md/raid5: Make logic blocking check consistent with logic that blocks + - nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown + - drivers:md:fix a potential use-after-free bug + - ext4: avoid remove directory when directory is corrupted + - ext4: block range must be validated before use in ext4_mb_clear_bb() + - ext4: avoid resizing to a partial cluster size + - lib/list_debug.c: Detect uninitialized lists + - tty: serial: Fix refcount leak bug in ucc_uart.c + - KVM: PPC: Book3S HV: Fix "rm_exit" entry in debugfs timings + - vfio: Clear the caps->buf to NULL after free + - mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start + - iommu/io-pgtable-arm-v7s: Add a quirk to allow pgtable PA up to 35bit + - ASoC: Intel: avs: Set max DMA segment size + - ALSA: hda: Fix page fault in snd_hda_codec_shutdown() + - modules: Ensure natural alignment for .altinstructions and __bug_table + sections + - ASoC: SOF: Intel: cnl: Do not process IPC reply before firmware boot + - ASoC: SOF: Intel: hda-ipc: Do not process IPC reply before firmware boot + - ASoC: SOF: sof-client-probes: Only load the driver if IPC3 is used + - ASoC: rsnd: care default case on rsnd_ssiu_busif_err_irq_ctrl() + - riscv: dts: sifive: Add fu740 topology information + - riscv: dts: canaan: Add k210 topology information + - ASoC: nau8821: Don't unconditionally free interrupt + - riscv: mmap with PROT_WRITE but no PROT_READ is invalid + - RISC-V: Add fast call path of crash_kexec() + - ALSA: hda/realtek: Enable speaker and mute LEDs for HP laptops + - ASoC: SOF: Intel: hda: add sanity check on SSP index reported by NHLT + - ASoC: Intel: sof_es8336: Fix GPIO quirks set via module option + - ASoC: Intel: sof_es8336: ignore GpioInt when looking for speaker/headset + GPIO lines + - ASoC: Intel: sof_nau8825: Move quirk check to the front in late probe + - watchdog: export lockup_detector_reconfigure + - powerpc/watchdog: introduce a NMI watchdog's factor + - powerpc/pseries/mobility: set NMI watchdog factor during an LPM + - powerpc/32: Set an IBAT covering up to _einittext during init + - powerpc/32: Don't always pass -mcpu=powerpc to the compiler + - ASoC: codecs: va-macro: use fsgen as clock + - ovl: warn if trusted xattr creation fails + - powerpc/ioda/iommu/debugfs: Generate unique debugfs entries + - ALSA: core: Add async signal helpers + - ALSA: timer: Use deferred fasync helper + - ALSA: pcm: Use deferred fasync helper + - ALSA: control: Use deferred fasync helper + - f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() + - f2fs: fix to do sanity check on segment type in build_sit_entries() + - smb3: check xattr value length earlier + - powerpc/64: Init jump labels before parse_early_param() + - venus: pm_helpers: Fix warning in OPP during probe + - video: fbdev: i740fb: Check the argument of i740_calc_vclk() + - MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 + - f2fs: revive F2FS_IOC_ABORT_VOLATILE_WRITE + - f2fs: fix null-ptr-deref in f2fs_get_dnode_of_data + - scsi: ufs: ufs-mediatek: Fix build error and type mismatch + - Revert "ALSA: hda: Fix page fault in snd_hda_codec_shutdown()" + - Linux 5.19.4 + + * RISC-V kernel config is out of sync with other archs (LP: #1981437) + - [Config] Align riscv64 CONFIG_LSM with other architectures + - [Config] Enable CONFIG_DRM_RCAR_USE_LVDS for riscv64 + - [Config] Enable CONFIG_DTPM for riscv64 + - [Config] Set CONFIG_MTD_RAW_NAND=m for riscv64 + + * Use upstream LED description on Unmatched (LP: #1987513) + - dt-bindings: leds: pwm-multicolor: Add active-low property + - leds: pwm-multicolor: Support active-low LEDs + - riscv: dts: sifive unmatched: Add PWM controlled LEDs + + * Fix invalid MAC address after hotplug tbt dock (LP: #1942999) + - SAUCE: igc: wait for the MAC copy when enabled MAC passthrough + + * Kinetic update: v5.19.3 upstream stable release (LP: #1987345) + - Revert "mm: kfence: apply kmemleak_ignore_phys on early allocated pool" + - tee: add overflow check in register_shm_helper() + - net_sched: cls_route: disallow handle of 0 + - btrfs: only write the sectors in the vertical stripe which has data stripes + - btrfs: raid56: don't trust any cached sector in __raid56_parity_recover() + - kexec, KEYS: make the code in bzImage64_verify_sig generic + - arm64: kexec_file: use more system keyrings to verify kernel image signature + - Linux 5.19.3 + + * [22.04 FEAT] Deactivitate CONFIG_QETH_OSX kernel config option + (LP: #1959890) + - [Config] disable CONFIG_QETH_OSX on s390x + + * Kinetic update: v5.19.2 upstream stable release (LP: #1986865) + - Makefile: link with -z noexecstack --no-warn-rwx-segments + - x86: link vdso and boot with -z noexecstack --no-warn-rwx-segments + - Revert "pNFS: nfs3_set_ds_client should set NFS_CS_NOPING" + - scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" + - pNFS/flexfiles: Report RDMA connection errors to the server + - nfsd: eliminate the NFSD_FILE_BREAK_* flags + - ALSA: usb-audio: Add quirk for Behringer UMC202HD + - ALSA: bcd2000: Fix a UAF bug on the error path of probing + - ALSA: hda/realtek: Add quirk for Clevo NV45PZ + - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-eb0xxx + - ALSA: hda/realtek: Add quirk for Lenovo Yoga9 14IAP7 + - ASoC: amd: yc: Update DMI table entries + - hwmon: (nct6775) Fix platform driver suspend regression + - wifi: mac80211_hwsim: fix race condition in pending packet + - wifi: mac80211_hwsim: add back erroneously removed cast + - wifi: mac80211_hwsim: use 32-bit skb cookie + - add barriers to buffer_uptodate and set_buffer_uptodate + - lockd: detect and reject lock arguments that overflow + - HID: hid-input: add Surface Go battery quirk + - HID: nintendo: Add missing array termination + - HID: wacom: Only report rotation for art pen + - HID: wacom: Don't register pad_input for touch switch + - KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case + - KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL for !nested_run_pending case + - KVM: SVM: Don't BUG if userspace injects an interrupt with GIF=0 + - KVM: s390: pv: don't present the ecall interrupt twice + - KVM: Drop unused @gpa param from gfn=>pfn cache's __release_gpc() helper + - KVM: Put the extra pfn reference when reusing a pfn in the gpc cache + - KVM: Fully serialize gfn=>pfn cache refresh via mutex + - KVM: Fix multiple races in gfn=>pfn cache refresh + - KVM: Do not incorporate page offset into gfn=>pfn cache user address + - KVM: x86: Split kvm_is_valid_cr4() and export only the non-vendor bits + - KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value + - KVM: nVMX: Account for KVM reserved CR4 bits in consistency checks + - KVM: nVMX: Inject #UD if VMXON is attempted with incompatible CR0/CR4 + - KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks + - KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP + - KVM: x86/mmu: Treat NX as a valid SPTE bit for NPT + - KVM: SVM: Disable SEV-ES support if MMIO caching is disable + - KVM: x86: Tag kvm_mmu_x86_module_init() with __init + - KVM: x86/mmu: Fully re-evaluate MMIO caching when SPTE masks change + - KVM: x86: do not report preemption if the steal time cache is stale + - KVM: x86: revalidate steal time cache if MSR value changes + - KVM: x86/xen: Initialize Xen timer only once + - KVM: x86/xen: Stop Xen timer before changing IRQ + - ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model + - ALSA: hda/cirrus - support for iMac 12,1 model + - ALSA: hda/realtek: Add quirk for another Asus K42JZ model + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 (8786) mute LED + - LoongArch: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - tty: 8250: Add support for Brainboxes PX cards. + - tty: vt: initialize unicode screen buffer + - vfs: Check the truncate maximum size in inode_newsize_ok() + - fs: Add missing umask strip in vfs_tmpfile + - thermal: sysfs: Fix cooling_device_stats_setup() error code path + - fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters + - fbcon: Fix accelerated fbdev scrolling while logo is still shown + - usbnet: Fix linkwatch use-after-free on disconnect + - usbnet: smsc95xx: Fix deadlock on runtime resume + - fix short copy handling in copy_mc_pipe_to_iter() + - crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory + leak + - ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() + - parisc: Fix device names in /proc/iomem + - parisc: Drop pa_swapper_pg_lock spinlock + - parisc: Check the return value of ioremap() in lba_driver_probe() + - parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode + - riscv:uprobe fix SR_SPIE set/clear handling + - riscv: lib: uaccess: fix CSR_STATUS SR_SUM bit + - dt-bindings: riscv: fix SiFive l2-cache's cache-sets + - riscv: dts: starfive: correct number of external interrupts + - RISC-V: cpu_ops_spinwait.c should include head.h + - RISC-V: Declare cpu_ops_spinwait in + - RISC-V: kexec: Fixup use of smp_processor_id() in preemptible context + - RISC-V: Fixup get incorrect user mode PC for kernel mode regs + - RISC-V: Fixup schedule out issue in machine_crash_shutdown() + - RISC-V: Add modules to virtual kernel memory layout dump + - RISC-V: Fix counter restart during overflow for RV32 + - RISC-V: Fix SBI PMU calls for RV32 + - RISC-V: Update user page mapping only once during start + - wireguard: selftests: set CONFIG_NONPORTABLE on riscv32 + - rtc: rx8025: fix 12/24 hour mode detection on RX-8035 + - drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error + - drm/shmem-helper: Add missing vunmap on error + - drm/vc4: hdmi: Disable audio if dmas property is present but empty + - drm/ingenic: Use the highest possible DMA burst size + - drm/fb-helper: Fix out-of-bounds access + - drm/hyperv-drm: Include framebuffer and EDID headers + - drm/dp/mst: Read the extended DPCD capabilities during system resume + - drm/nouveau: fix another off-by-one in nvbios_addr + - drm/nouveau: Don't pm_runtime_put_sync(), only pm_runtime_put_autosuspend() + - drm/nouveau/acpi: Don't print error when we get -EINPROGRESS from pm_runtime + - drm/nouveau/kms: Fix failure path for creating DP connectors + - drm/tegra: Fix vmapping of prime buffers + - drm/amdgpu: Check BO's requested pinning domains against its + preferred_domains + - bpf: Fix KASAN use-after-free Read in compute_effective_progs + - btrfs: reject log replay if there is unsupported RO compat flag + - mtd: rawnand: arasan: Fix clock rate in NV-DDR + - mtd: rawnand: arasan: Update NAND bus clock instead of system clock + - um: Remove straying parenthesis + - um: seed rng using host OS rng + - iio: fix iio_format_avail_range() printing for none IIO_VAL_INT + - iio: light: isl29028: Fix the warning in isl29028_remove() + - scsi: lpfc: Remove extra atomic_inc on cmd_pending in queuecommand after + VMID + - scsi: sg: Allow waiting for commands to complete on removed device + - scsi: qla2xxx: Fix incorrect display of max frame size + - scsi: qla2xxx: Zero undefined mailbox IN registers + - soundwire: qcom: Check device status before reading devid + - ksmbd: fix memory leak in smb2_handle_negotiate + - ksmbd: prevent out of bound read for SMB2_TREE_CONNNECT + - ksmbd: prevent out of bound read for SMB2_WRITE + - ksmbd: fix use-after-free bug in smb2_tree_disconect + - ksmbd: fix heap-based overflow in set_ntacl_dacl() + - fuse: limit nsec + - fuse: ioctl: translate ENOSYS + - fuse: write inode in fuse_release() + - fuse: fix deadlock between atomic O_TRUNC and page invalidation + - serial: mvebu-uart: uart2 error bits clearing + - md-raid: destroy the bitmap after destroying the thread + - md-raid10: fix KASAN warning + - mbcache: don't reclaim used entries + - mbcache: add functions to delete entry if unused + - media: isl7998x: select V4L2_FWNODE to fix build error + - media: [PATCH] pci: atomisp_cmd: fix three missing checks on list iterator + - ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() + - powerpc: Restore CONFIG_DEBUG_INFO in defconfigs + - powerpc/64e: Fix early TLB miss with KUAP + - powerpc/fsl-pci: Fix Class Code of PCIe Root Port + - powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E + - powerpc/powernv: Avoid crashing if rng is NULL + - MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK + - coresight: Clear the connection field properly + - usb: typec: ucsi: Acknowledge the GET_ERROR_STATUS command completion + - USB: HCD: Fix URB giveback issue in tasklet function + - Revert "net: usb: ax88179_178a needs FLAG_SEND_ZLP" + - ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC + - arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC + - usb: dwc3: gadget: refactor dwc3_repare_one_trb + - usb: dwc3: gadget: fix high speed multiplier setting + - netfilter: nf_tables: do not allow SET_ID to refer to another table + - netfilter: nf_tables: do not allow CHAIN_ID to refer to another table + - netfilter: nf_tables: do not allow RULE_ID to refer to another chain + - netfilter: nf_tables: upfront validation of data via nft_data_init() + - netfilter: nf_tables: disallow jump to implicit chain from set element + - netfilter: nf_tables: fix null deref due to zeroed list head + - epoll: autoremove wakers even more aggressively + - x86: Handle idle=nomwait cmdline properly for x86_idle + - arch: make TRACE_IRQFLAGS_NMI_SUPPORT generic + - arm64: kasan: do not instrument stacktrace.c + - arm64: stacktrace: use non-atomic __set_bit + - arm64: Do not forget syscall when starting a new thread. + - arm64: fix oops in concurrently setting insn_emulation sysctls + - arm64: kasan: Revert "arm64: mte: reset the page tag in page->flags" + - [Config] updateconfigs for ARM64_ERRATUM_1742098 + - arm64: errata: Remove AES hwcap for COMPAT tasks + - ext2: Add more validity checks for inode counts + - sched/fair: Introduce SIS_UTIL to search idle CPU based on sum of util_avg + - genirq: Don't return error on missing optional irq_request_resources() + - irqchip/mips-gic: Only register IPI domain when SMP is enabled + - genirq: GENERIC_IRQ_IPI depends on SMP + - sched/fair: fix case with reduced capacity CPU + - sched/core: Always flush pending blk_plug + - irqchip/mips-gic: Check the return value of ioremap() in gic_of_init() + - ARM: dts: imx6ul: add missing properties for sram + - ARM: dts: imx6ul: change operating-points to uint32-matrix + - ARM: dts: imx6ul: fix keypad compatible + - ARM: dts: imx6ul: fix csi node compatible + - ARM: dts: imx6ul: fix lcdif node compatible + - ARM: dts: imx6ul: fix qspi node compatible + - ARM: dts: BCM5301X: Add DT for Meraki MR26 + - ARM: dts: ux500: Fix Janice accelerometer mounting matrix + - ARM: dts: ux500: Fix Codina accelerometer mounting matrix + - ARM: dts: ux500: Fix Gavini accelerometer mounting matrix + - arm64: dts: qcom: timer should use only 32-bit size + - spi: synquacer: Add missing clk_disable_unprepare() + - ARM: OMAP2+: display: Fix refcount leak bug + - ARM: OMAP2+: pdata-quirks: Fix refcount leak bug + - ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks + - ACPI: EC: Drop the EC_FLAGS_IGNORE_DSDT_GPE quirk + - ACPI: PM: save NVS memory for Lenovo G40-45 + - ACPI: LPSS: Fix missing check in register_device_clock() + - ARM: dts: qcom: sdx55: Fix the IRQ trigger type for UART + - arm64: dts: qcom: sc7280: Rename sar sensor labels + - arm64: dts: qcom: add missing AOSS QMP compatible fallback + - arm64: dts: qcom: ipq8074: fix NAND node name + - arm64: dts: allwinner: a64: orangepi-win: Fix LED node name + - ARM: shmobile: rcar-gen2: Increase refcount for new reference + - firmware: tegra: Fix error check return value of debugfs_create_file() + - hwmon: (dell-smm) Add Dell XPS 13 7390 to fan control whitelist + - PM: EM: convert power field to micro-Watts precision and align drivers + - ACPI: video: Use native backlight on Dell Inspiron N4010 + - hwmon: (sht15) Fix wrong assumptions in device remove callback + - PM: hibernate: defer device probing when resuming from hibernation + - selinux: fix memleak in security_read_state_kernel() + - selinux: Add boundary check in put_entry() + - io_uring: fix io_uring_cqe_overflow trace format + - kasan: test: Silence GCC 12 warnings + - wait: Fix __wait_event_hrtimeout for RT/DL tasks + - meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init + - arm64: dts: renesas: beacon: Fix regulator node names + - spi: spi-altera-dfl: Fix an error handling path + - ARM: bcm: Fix refcount leak in bcm_kona_smc_init + - ACPI: processor/idle: Annotate more functions to live in cpuidle section + - ARM: dts: imx7d-colibri-emmc: add cpu1 supply + - ARM: dts: imx7-colibri: overhaul display/touch functionality + - ARM: dts: imx7-colibri: add usb dual-role switching using extcon + - ARM: dts: imx7-colibri: improve wake-up with gpio key + - ARM: dts: imx7-colibri: move aliases, chosen, extcon and gpio-keys + - ARM: dts: imx7-colibri-eval-v3: correct can controller comment + - soc: renesas: r8a779a0-sysc: Fix A2DP1 and A2CV[2357] PDR values + - soc: amlogic: Fix refcount leak in meson-secure-pwrc.c + - arm64: dts: renesas: Fix thermal-sensors on single-zone sensors + - Revert "ARM: dts: imx6qdl-apalis: Avoid underscore in node name" + - x86/pmem: Fix platform-device leak in error path + - ARM: dts: ast2500-evb: fix board compatible + - ARM: dts: ast2600-evb: fix board compatible + - ARM: dts: ast2600-evb-a1: fix board compatible + - arm64: dts: mt8192: Fix idle-states nodes naming scheme + - arm64: dts: mt8192: Fix idle-states entry-method + - arm64: select TRACE_IRQFLAGS_NMI_SUPPORT + - arm64: cpufeature: Allow different PMU versions in ID_DFR0_EL1 + - locking/lockdep: Fix lockdep_init_map_*() confusion + - arm64: dts: qcom: sc7180: Remove ipa_fw_mem node on trogdor + - soc: fsl: guts: machine variable might be unset + - spi: s3c64xx: constify fsd_spi_port_config + - block: fix infinite loop for invalid zone append + - arm64: dts: qcom: sdm845-akatsuki: Round down l22a regulator voltage + - ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg + - ARM: OMAP2+: Fix refcount leak in omapdss_init_of + - ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init + - arm64: dts: qcom: sdm630: disable GPU by default + - arm64: dts: qcom: sdm630: fix the qusb2phy ref clock + - arm64: dts: qcom: sdm630: fix gpu's interconnect path + - arm64: dts: qcom: sdm636-sony-xperia-ganges-mermaid: correct sdc2 pinconf + - cpufreq: zynq: Fix refcount leak in zynq_get_revision + - arm64: dts: renesas: r8a779m8: Drop operating points above 1.5 GHz + - arm64: dts: renesas: r9a07g054l2-smarc: Correct SoC name in comment + - regulator: qcom_smd: Fix pm8916_pldo range + - ACPI: APEI: Fix _EINJ vs EFI_MEMORY_SP + - ARM: dts: qcom: replace gcc PXO with pxo_board fixed clock + - ARM: dts: qcom-msm8974: fix irq type on blsp2_uart1 + - soc: qcom: ocmem: Fix refcount leak in of_get_ocmem + - soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register + - ARM: dts: qcom: msm8974: add required ranges to OCMEM + - ARM: dts: qcom: pm8841: add required thermal-sensor-cells + - bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() + - lib: overflow: Do not define 64-bit tests on 32-bit + - stack: Declare {randomize_,}kstack_offset to fix Sparse warnings + - arm64: dts: qcom: msm8916: Fix typo in pronto remoteproc node + - arm64: dts: qcom: msm8994: add required ranges to OCMEM + - perf/x86/intel: Fix PEBS memory access info encoding for ADL + - perf/x86/intel: Fix PEBS data source encoding for ADL + - arm64: dts: exynosautov9: correct spi11 pin names + - ACPI: VIOT: Fix ACS setup + - m68k: virt: Fix missing platform_device_unregister() on error in + virt_platform_init() + - arm64: dts: qcom: sm6125: Move sdc2 pinctrl from seine-pdx201 to sm6125 + - arm64: dts: qcom: sm6125: Append -state suffix to pinctrl nodes + - arm64: dts: qcom: msm8996: correct #clock-cells for QMP PHY nodes + - arm64: dts: qcom: sc7280: drop PCIe PHY clock index + - arm64: dts: qcom: sm8250: add missing PCIe PHY clock-cells + - arm64: dts: mt7622: fix BPI-R64 WPS button + - arm64: tegra: Mark BPMP channels as no-memory-wc + - arm64: tegra: Fix SDMMC1 CD on P2888 + - arm64: dts: qcom: sc7280: fix PCIe clock reference + - erofs: wake up all waiters after z_erofs_lzma_head ready + - erofs: avoid consecutive detection for Highmem memory + - spi: Return deferred probe error when controller isn't yet available + - blk-mq: don't create hctx debugfs dir until q->debugfs_dir is created + - spi: dw: Fix IP-core versions macro + - spi: Fix simplification of devm_spi_register_controller + - spi: tegra20-slink: fix UAF in tegra_slink_remove() + - hwmon: (sch56xx-common) Add DMI override table + - hwmon: (drivetemp) Add module alias + - blktrace: Trace remapped requests correctly + - PM: domains: Ensure genpd_debugfs_dir exists before remove + - dm writecache: return void from functions + - dm writecache: count number of blocks read, not number of read bios + - dm writecache: count number of blocks written, not number of write bios + - dm writecache: count number of blocks discarded, not number of discard bios + - regulator: of: Fix refcount leak bug in of_get_regulation_constraints() + - soc: qcom: Make QCOM_RPMPD depend on PM + - soc: qcom: socinfo: Fix the id of SA8540P SoC + - arm64: dts: qcom: msm8998: Make regulator voltages multiple of step-size + - arm64: dts: qcom: qcs404: Fix incorrect USB2 PHYs assignment + - ARM: dts: qcom: msm8974: Disable remoteprocs by default + - irqdomain: Report irq number for NOMAP domains + - perf: RISC-V: Add of_node_put() when breaking out of for_each_of_cpu_node() + - drivers/perf: arm_spe: Fix consistency of SYS_PMSCR_EL1.CX + - nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() + - sched: only perform capability check on privileged operation + - sched/numa: Initialise numa_migrate_retry + - x86/extable: Fix ex_handler_msr() print condition + - io_uring: move to separate directory + - io_uring: define a 'prep' and 'issue' handler for each opcode + - io_uring: Don't require reinitable percpu_ref + - selftests/seccomp: Fix compile warning when CC=clang + - thermal/tools/tmon: Include pthread and time headers in tmon.h + - tools/power turbostat: Fix file pointer leak + - dm: return early from dm_pr_call() if DM device is suspended + - pwm: sifive: Simplify offset calculation for PWMCMP registers + - pwm: sifive: Ensure the clk is enabled exactly once per running PWM + - pwm: sifive: Shut down hardware only after pwmchip_remove() completed + - pwm: lpc18xx: Fix period handling + - erofs: update ctx->pos for every emitted dirent + - dt-bindings: display: bridge: ldb: Fill in reg property + - drm/i915: remove unused GEM_DEBUG_DECL() and GEM_DEBUG_BUG_ON() + - drm/rockchip: vop2: unlock on error path in vop2_crtc_atomic_enable() + - [Config] updateconfigs for DRM_FSL_LDB + - drm: bridge: DRM_FSL_LDB should depend on ARCH_MXC + - drm/bridge: anx7625: Use DPI bus type + - drm/mgag200: Acquire I/O lock while reading EDID + - drm/meson: Fix refcount leak in meson_encoder_hdmi_init + - drm/dp: Export symbol / kerneldoc fixes for DP AUX bus + - drm/bridge: tc358767: Handle dsi_lanes == 0 as invalid + - drm/bridge: tc358767: Make sure Refclk clock are enabled + - ath10k: do not enforce interrupt trigger type + - ath11k: Fix warning on variable 'sar' dereference before check + - ath11k: Init hw_params before setting up AHB resources + - drm/edid: reset display info in drm_add_edid_modes() for NULL edid + - drm/bridge: lt9611: Use both bits for HDMI sensing + - drm/st7735r: Fix module autoloading for Okaya RH128128T + - drm/panel: Fix build error when CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=y && + CONFIG_DRM_DISPLAY_HELPER=m + - drm: bridge: adv7511: Move CEC definitions to adv7511_cec.c + - wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() + - wifi: wilc1000: use correct sequence of RESET for chip Power-UP/Down + - ath11k: fix netdev open race + - ath11k: fix IRQ affinity warning on shutdown + - drm/mipi-dbi: align max_chunk to 2 in spi_transfer + - drm/ssd130x: Only define a SPI device ID table when built as a module + - selftests/bpf: Fix test_run logic in fexit_stress.c + - sample: bpf: xdp_router_ipv4: Allow the kernel to send arp requests + - selftests/bpf: Fix tc_redirect_dtime + - libbpf: Fix is_pow_of_2 + - ath11k: fix missing skb drop on htc_tx_completion error + - ath11k: Fix incorrect debug_mask mappings + - ath11k: Avoid REO CMD failed prints during firmware recovery + - drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() + - drm/mediatek: Modify dsi funcs to atomic operations + - drm/mediatek: Separate poweron/poweroff from enable/disable and define new + funcs + - drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function + - drm/meson: encoder_cvbs: Fix refcount leak in meson_encoder_cvbs_init + - drm/meson: encoder_hdmi: Fix refcount leak in meson_encoder_hdmi_init + - drm/bridge: lt9611uxc: Cancel only driver's work + - drm/amdgpu: fix scratch register access method in SRIOV + - drm/amdgpu/display: Prepare for new interfaces + - i2c: npcm: Remove own slave addresses 2:10 + - i2c: npcm: Correct slave role behavior + - i2c: mxs: Silence a clang warning + - virtio-gpu: fix a missing check to avoid NULL dereference + - drm/virtio: Fix NULL vs IS_ERR checking in virtio_gpu_object_shmem_init + - libbpf: Fix uprobe symbol file offset calculation logic + - drm: adv7511: override i2c address of cec before accessing it + - crypto: sun8i-ss - fix error codes in allocate_flows() + - crypto: sun8i-ss - Fix error codes for dma_mapping_error() + - crypto: sun8i-ss - fix a NULL vs IS_ERR() check in sun8i_ss_hashkey + - net: fix sk_wmem_schedule() and sk_rmem_schedule() errors + - can: netlink: allow configuring of fixed bit rates without need for + do_set_bittiming callback + - drm/vkms: check plane_composer->map[0] before using it + - can: netlink: allow configuring of fixed data bit rates without need for + do_set_data_bittiming callback + - drm/bridge: anx7625: Zero error variable when panel bridge not present + - drm/bridge: it6505: Add missing CRYPTO_HASH dependency + - i2c: Fix a potential use after free + - libbpf: Fix internal USDT address translation logic for shared libraries + - selftests/bpf: Don't force lld on non-x86 architectures + - tcp: fix possible freeze in tx path under memory pressure + - crypto: sun8i-ss - fix infinite loop in sun8i_ss_setup_ivs() + - net: ag71xx: fix discards 'const' qualifier warning + - ping: convert to RCU lookups, get rid of rwlock + - raw: use more conventional iterators + - raw: convert raw sockets to RCU + - raw: Fix mixed declarations error in raw_icmp_error(). + - media: atmel: atmel-sama7g5-isc: fix warning in configs without OF + - media: camss: csid: fix wrong size passed to devm_kmalloc_array() + - media: tw686x: Register the irq at the end of probe + - media: amphion: return error if format is unsupported by vpu + - media: Hantro: Correct G2 init qp field + - media: imx-jpeg: Correct some definition according specification + - media: imx-jpeg: Leave a blank space before the configuration data + - media: imx-jpeg: Align upwards buffer size + - media: imx-jpeg: Implement drain using v4l2-mem2mem helpers + - media: rcar-vin: Fix channel routing for Ebisu + - ath9k: fix use-after-free in ath9k_hif_usb_rx_cb + - wifi: mac80211: set STA deflink addresses + - wifi: iwlegacy: 4965: fix potential off-by-one overflow in + il4965_rs_fill_link_cmd() + - wifi: rtw89: 8852a: rfk: fix div 0 exception + - drm/radeon: fix incorrrect SPDX-License-Identifiers + - drm/amd: Don't show warning on reading vbios values for SMU13 3.1 + - drm/amdkfd: correct sdma queue number of sdma 6.0.1 + - torture: Adjust to again produce debugging information + - rcutorture: Fix ksoftirqd boosting timing and iteration + - test_bpf: fix incorrect netdev features + - drm/display: Fix build error without CONFIG_OF + - selftests/bpf: Fix rare segfault in sock_fields prog test + - crypto: ccp - During shutdown, check SEV data pointer before using + - drm: bridge: adv7511: Add check for mipi_dsi_driver_register + - media: imx-jpeg: Disable slot interrupt when frame done + - media: amphion: output firmware error message + - drm/mcde: Fix refcount leak in mcde_dsi_bind + - media: hdpvr: fix error value returns in hdpvr_read + - media: v4l2-mem2mem: prevent pollerr when last_buffer_dequeued is set + - media: sta2x11: remove VIRT_TO_BUS dependency + - media: mediatek: vcodec: Initialize decoder parameters after getting + dec_capability + - media: mediatek: vcodec: Skip SOURCE_CHANGE & EOS events for stateless + - media: driver/nxp/imx-jpeg: fix a unexpected return value problem + - media: tw686x: Fix memory leak in tw686x_video_init + - media: mediatek: vcodec: Fix non subdev architecture open power fail + - drm/vc4: kms: Use maximum FIFO load for the HVS clock rate + - drm/vc4: plane: Remove subpixel positioning check + - drm/vc4: plane: Fix margin calculations for the right/bottom edges + - drm/vc4: dsi: Release workaround buffer and DMA + - drm/vc4: dsi: Correct DSI divider calculations + - drm/vc4: dsi: Correct pixel order for DSI0 + - drm/vc4: dsi: Register dsi0 as the correct vc4 encoder type + - drm/vc4: dsi: Fix dsi0 interrupt support + - drm/vc4: dsi: Add correct stop condition to vc4_dsi_encoder_disable + iteration + - drm/vc4: hdmi: Add all the vc5 HDMI registers into the debugfs dumps + - drm/vc4: hdmi: Clear unused infoframe packet RAM registers + - drm/vc4: hdmi: Avoid full hdmi audio fifo writes + - drm/vc4: hdmi: Reset HDMI MISC_CONTROL register + - drm/vc4: hdmi: Switch to pm_runtime_status_suspended + - drm/vc4: hdmi: Move HDMI reset to pm_resume + - drm/vc4: hdmi: Fix timings for interlaced modes + - drm/vc4: hdmi: Force modeset when bpc or format changes + - drm/vc4: hdmi: Correct HDMI timing registers for interlaced modes + - drm/vc4: hdmi: Move pixel doubling from Pixelvalve to HDMI block + - mm: Account dirty folios properly during splits + - crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE + - selftests/xsk: Destroy BPF resources only when ctx refcount drops to 0 + - net: dsa: felix: update base time of time-aware shaper when adjusting PTP + time + - net: dsa: felix: keep reference on entire tc-taprio config + - net: dsa: felix: drop oversized frames with tc-taprio instead of hanging the + port + - selftests: net: fib_rule_tests: fix support for running individual tests + - drm/rockchip: vop: Don't crash for invalid duplicate_state() + - drm/rockchip: Fix an error handling path rockchip_dp_probe() + - drm/mediatek: dpi: Remove output format of YUV + - drm/mediatek: dpi: Only enable dpi after the bridge is enabled + - drm/msm/dpu: move intf and wb assignment to dpu_encoder_setup_display() + - drm/msm/dpu: fix maxlinewidth for writeback block + - drm/msm/dpu: remove hard-coded linewidth limit for writeback + - drm/msm/hdmi: fill the pwr_regs bulk regulators + - drm: bridge: sii8620: fix possible off-by-one + - drm/msm: Fix fence rollover issue + - net: sched: provide shim definitions for taprio_offload_{get,free} + - net: dsa: felix: build as module when tc-taprio is module + - hinic: Use the bitmap API when applicable + - net: hinic: fix bug that ethtool get wrong stats + - net: hinic: avoid kernel hung in hinic_get_stats64() + - drm/bridge: anx7625: Fix NULL pointer crash when using edp-panel + - drm/msm: Avoid unclocked GMU register access in 6xx gpu_busy + - libbpf, riscv: Use a0 for RC register + - drm/msm/mdp5: Fix global state lock backoff + - drm/radeon: avoid bogus "vram limit (0) must be a power of 2" warning + - crypto: hisilicon/sec - don't sleep when in softirq + - crypto: hisilicon - Kunpeng916 crypto driver don't sleep when in softirq + - media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment + - media: amphion: release core lock before reset vpu core + - drm/msm/dpu: Fix for non-visible planes + - media: atomisp: revert "don't pass a pointer to a local variable" + - media: mediatek: vcodec: decoder: Fix 4K frame size enumeration + - media: mediatek: vcodec: decoder: Fix resolution clamping in TRY_FMT + - media: mediatek: vcodec: decoder: Skip alignment for default resolution + - media: mediatek: vcodec: decoder: Drop max_{width,height} from + mtk_vcodec_ctx + - media: mediatek: vcodec: Initialize decoder parameters for each instance + - media: amphion: defer setting last_buffer_dequeued until resolution changes + are processed + - media: hantro: Be more accurate on pixel formats step_width constraints + - media: hantro: Fix RK3399 H.264 format advertising + - media: amphion: sync buffer status with firmware during abort + - media: amphion: only insert the first sequence startcode for vc1l format + - mt76: mt7915: fix endianness in mt7915_rf_regval_get + - mt76: mt76x02u: fix possible memory leak in __mt76x02u_mcu_send_msg + - mt76: mt7915: fix endian bug in mt7915_rf_regval_set() + - mt76: mt7921s: fix firmware download random fail + - mt76: mt7921: not support beacon offload disable command + - wifi: mac80211: reject WEP or pairwise keys with key ID > 3 + - wifi: cfg80211: do some rework towards MLO link APIs + - wifi: mac80211: move some future per-link data to bss_conf + - mt76: mt7615: do not update pm stats in case of error + - mt76: mt7921: do not update pm states in case of error + - mt76: mt7921s: fix possible sdio deadlock in command fail + - mt76: mt7921: fix aggregation subframes setting to HE max + - mt76: mt7921: enlarge maximum VHT MPDU length to 11454 + - mt76: mt7921: rely on mt76_dev in mt7921_mac_write_txwi signature + - mt76: mt7915: rely on mt76_dev in mt7915_mac_write_txwi signature + - mt76: connac: move mac connac2 defs in mt76_connac2_mac.h + - mt76: connac: move connac2_mac_write_txwi in mt76_connac module + - mt76: mt7915: fix incorrect testmode ipg on band 1 caused by wmm_idx + - mt76: mt7615: fix throughput regression on DFS channels + - mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() + - mediatek: mt76: eeprom: fix missing of_node_put() in + mt76_find_power_limits_node() + - skmsg: Fix invalid last sg check in sk_msg_recvmsg() + - drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed. + - bpf, x64: Add predicate for bpf2bpf with tailcalls support in JIT + - bpf, x86: fix freeing of not-finalized bpf_prog_pack + - tcp: make retransmitted SKB fit into the send window + - libbpf: Fix the name of a reused map + - kunit: executor: Fix a memory leak on failure in kunit_filter_tests + - selftests: timers: valid-adjtimex: build fix for newer toolchains + - selftests: timers: clocksource-switch: fix passing errors from child + - bpf: Fix subprog names in stack traces. + - wifi: nl80211: acquire wdev mutex for dump_survey + - media: v4l: async: Also match secondary fwnode endpoints + - media: ov7251: add missing disable functions on error in + ov7251_set_power_on() + - fs: check FMODE_LSEEK to control internal pipe splicing + - media: cedrus: h265: Fix flag name + - media: uapi: HEVC: Change pic_order_cnt definition in v4l2_hevc_dpb_entry + - media: cedrus: h265: Fix logic for not low delay flag + - wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() + - wifi: p54: Fix an error handling path in p54spi_probe() + - wifi: p54: add missing parentheses in p54_flush() + - drm/amdgpu: use the same HDP flush registers for all nbio 7.4.x + - drm/amdgpu: use the same HDP flush registers for all nbio 2.3.x + - drm/amdgpu: restore original stable pstate on ctx fini + - bpf: fix potential 32-bit overflow when accessing ARRAY map element + - libbpf: make RINGBUF map size adjustments more eagerly + - selftests/bpf: fix a test for snprintf() overflow + - libbpf: fix an snprintf() overflow check + - can: pch_can: do not report txerr and rxerr during bus-off + - can: rcar_can: do not report txerr and rxerr during bus-off + - can: sja1000: do not report txerr and rxerr during bus-off + - can: hi311x: do not report txerr and rxerr during bus-off + - can: sun4i_can: do not report txerr and rxerr during bus-off + - can: kvaser_usb_hydra: do not report txerr and rxerr during bus-off + - can: kvaser_usb_leaf: do not report txerr and rxerr during bus-off + - can: usb_8dev: do not report txerr and rxerr during bus-off + - can: error: specify the values of data[5..7] of CAN error frames + - libbpf: Fix str_has_sfx()'s return value + - can: pch_can: pch_can_error(): initialize errc before using it + - Bluetooth: hci_intel: Add check for platform_driver_register + - Bluetooth: When HCI work queue is drained, only queue chained work + - Bluetooth: mgmt: Fix refresh cached connection info + - Bluetooth: hci_sync: Fix resuming scan after suspend resume + - Bluetooth: hci_sync: Fix not updating privacy_mode + - Bluetooth: Add default wakeup callback for HCI UART driver + - i2c: cadence: Support PEC for SMBus block read + - i2c: qcom-geni: Use the correct return value + - btrfs: update stripe_sectors::uptodate in steal_rbio + - ip_tunnels: Add new flow flags field to ip_tunnel_key + - bpf: Set flow flag to allow any source IP in bpf_tunnel_key + - bpf: Fix bpf_xdp_pointer return pointer + - i2c: mux-gpmux: Add of_node_put() when breaking out of loop + - wifi: ath11k: Fix register write failure on QCN9074 + - wifi: wil6210: debugfs: fix uninitialized variable use in + `wil_write_file_wmi()` + - wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue + - wifi: libertas: Fix possible refcount leak in if_usb_probe() + - media: cedrus: hevc: Add check for invalid timestamp + - hantro: Remove incorrect HEVC SPS validation + - drm/amd/display: fix signedness bug in execute_synaptics_rc_command() + - net/mlx5e: Remove WARN_ON when trying to offload an unsupported TLS + cipher/version + - net/mlx5e: TC, Fix post_act to not match on in_port metadata + - net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS + - net/mlx5e: xsk: Account for XSK RQ UMRs when calculating ICOSQ size + - net/mlx5e: Fix calculations related to max MPWQE size + - net/mlx5e: Modify slow path rules to go to slow fdb + - net/mlx5: Adjust log_max_qp to be 18 at most + - net/mlx5: DR, Fix SMFS steering info dump format + - net/mlx5: Fix driver use of uninitialized timeout + - ax25: fix incorrect dev_tracker usage + - crypto: hisilicon/hpre - don't use GFP_KERNEL to alloc mem during softirq + - crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of + - crypto: hisilicon/sec - fix auth key size error + - net: allow unbound socket for packets in VRF when tcp_l3mdev_accept set + - netdevsim: fib: Fix reference count leak on route deletion failure + - wifi: rtw88: check the return value of alloc_workqueue() + - iavf: Fix max_rate limiting + - iavf: Fix 'tc qdisc show' listing too many queues + - netdevsim: Avoid allocation warnings triggered from user space + - net: rose: fix netdev reference changes + - net: ice: fix error NETIF_F_HW_VLAN_CTAG_FILTER check in ice_vsi_sync_fltr() + - net: ionic: fix error check for vlan flags in ionic_set_nic_features() + - dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock + - net: usb: make USB_RTL8153_ECM non user configurable + - net/mlx5e: xsk: Discard unaligned XSK frames on striding RQ + - wireguard: ratelimiter: use hrtimer in selftest + - wireguard: allowedips: don't corrupt stack when detecting overflow + - HID: amd_sfh: Don't show client init failed as error when discovery fails + - clk: renesas: r9a06g032: Fix UART clkgrp bitsel + - mtd: maps: Fix refcount leak in of_flash_probe_versatile + - mtd: maps: Fix refcount leak in ap_flash_init + - mtd: rawnand: meson: Fix a potential double free issue + - clk: renesas: rzg2l: Fix reset status function + - of: check previous kernel's ima-kexec-buffer against memory bounds + - scsi: qla2xxx: edif: Reduce Initiator-Initiator thrashing + - scsi: qla2xxx: edif: bsg refactor + - scsi: qla2xxx: edif: Wait for app to ack on sess down + - scsi: qla2xxx: edif: Add bsg interface to read doorbell events + - scsi: qla2xxx: edif: Fix potential stuck session in sa update + - scsi: qla2xxx: edif: Synchronize NPIV deletion with authentication + application + - scsi: qla2xxx: edif: Add retry for ELS passthrough + - scsi: qla2xxx: edif: Fix n2n discovery issue with secure target + - scsi: qla2xxx: edif: Fix n2n login retry for secure device + - KVM: SVM: Unwind "speculative" RIP advancement if INTn injection "fails" + - KVM: SVM: Stuff next_rip on emulated INT3 injection if NRIPS is supported + - KVM: x86/mmu: Drop RWX=0 SPTEs during ept_sync_page() + - phy: samsung: exynosautov9-ufs: correct TSRV register configurations + - PCI: microchip: Fix refcount leak in mc_pcie_init_irq_domains() + - PCI: tegra194: Fix PM error handling in tegra_pcie_config_ep() + - HID: cp2112: prevent a buffer overflow in cp2112_xfer() + - mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release + - mtd: partitions: Fix refcount leak in parse_redboot_of + - mtd: parsers: ofpart: Fix refcount leak in bcm4908_partitions_fw_offset + - mtd: spear_smi: Don't skip cleanup after mtd_device_unregister() failed + - mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()'s error path + - mtd: spear_smi: Drop if with an always false condition + - mtd: st_spi_fsm: Warn about failure to unregister mtd device + - mtd: st_spi_fsm: Disable clock only after device was unregistered + - PCI: mediatek-gen3: Fix refcount leak in mtk_pcie_init_irq_domains() + - fpga: altera-pr-ip: fix unsigned comparison with less than zero + - usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe + - usb: cdns3: fix random warning message when driver load + - usb: gadget: uvc: Fix comment blocks style + - usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe + - usb: gadget: tegra-xudc: Fix error check in tegra_xudc_powerdomain_init() + - usbip: vudc: Don't enable IRQs prematurely + - usb: host: ohci-at91: add support to enter suspend using SMC + - usb: xhci: tegra: Fix error check + - dmaengine: dw: dmamux: Export the module device table + - dmaengine: dw: dmamux: Fix build without CONFIG_OF + - netfilter: xtables: Bring SPDX identifier back + - scsi: qla2xxx: edif: Send LOGO for unexpected IKE message + - scsi: qla2xxx: edif: Reduce disruption due to multiple app start + - scsi: qla2xxx: edif: Fix no login after app start + - scsi: qla2xxx: edif: Tear down session if keys have been removed + - scsi: qla2xxx: edif: Fix session thrash + - scsi: qla2xxx: edif: Fix no logout on delete for N2N + - scsi: qla2xxx: edif: Reduce N2N thrashing at app_start time + - iio: accel: bma400: Fix the scale min and max macro values + - platform/chrome: cros_ec: Always expose last resume result + - iio: sx9324: Fix register field spelling + - iio: accel: bma400: Reordering of header files + - iio: accel: bma400: conversion to device-managed function + - iio: accel: bma400: Add triggered buffer support + - iio: core: Fix IIO_ALIGN and rename as it was not sufficiently large + - iio: accel: adxl313: Fix alignment for DMA safety + - iio: accel: adxl355: Fix alignment for DMA safety + - iio: accel: adxl367: Fix alignment for DMA safety + - iio: accel: bma220: Fix alignment for DMA safety + - iio: accel: sca3000: Fix alignment for DMA safety + - iio: accel: sca3300: Fix alignment for DMA safety + - iio: adc: ad7266: Fix alignment for DMA safety + - iio: adc: ad7280a: Fix alignment for DMA safety + - iio: adc: ad7292: Fix alignment for DMA safety + - iio: adc: ad7298: Fix alignment for DMA safety + - iio: adc: ad7476: Fix alignment for DMA safety + - iio: adc: ad7606: Fix alignment for DMA safety + - iio: adc: ad7766: Fix alignment for DMA safety + - iio: adc: ad7768-1: Fix alignment for DMA safety + - iio: adc: ad7887: Fix alignment for DMA safety + - iio: adc: ad7923: Fix alignment for DMA safety + - iio: adc: ad7949: Fix alignment for DMA safety + - iio: adc: hi8435: Fix alignment for DMA safety + - iio: adc: ltc2496: Fix alignment for DMA safety + - iio: adc: ltc2497: Fix alignment for DMA safety + - iio: adc: max1027: Fix alignment for DMA safety + - iio: adc: max11100: Fix alignment for DMA safety + - iio: adc: max1118: Fix alignment for DMA safety + - iio: adc: max1241: Fix alignment for DMA safety + - iio: adc: mcp320x: Fix alignment for DMA safety + - iio: adc: ti-adc0832: Fix alignment for DMA safety + - iio: adc: ti-adc084s021: Fix alignment for DMA safety + - iio: adc: ti-adc108s102: Fix alignment for DMA safety + - iio: adc: ti-adc12138: Fix alignment for DMA safety + - iio: adc: ti-adc128s052: Fix alignment for DMA safety + - iio: adc: ti-adc161s626: Fix alignment for DMA safety + - iio: adc: ti-ads124s08: Fix alignment for DMA safety + - iio: adc: ti-ads131e08: Fix alignment for DMA safety + - iio: adc: ti-ads7950: Fix alignment for DMA safety + - iio: adc: ti-ads8344: Fix alignment for DMA safety + - iio: adc: ti-ads8688: Fix alignment for DMA safety + - iio: adc: ti-tlc4541: Fix alignment for DMA safety + - iio: addac: ad74413r: Fix alignment for DMA safety + - iio: amplifiers: ad8366: Fix alignment for DMA safety + - iio: common: ssp: Fix alignment for DMA safety + - iio: dac: ad5064: Fix alignment for DMA safety + - iio: dac: ad5360: Fix alignment for DMA safety + - iio: dac: ad5421: Fix alignment for DMA safety + - iio: dac: ad5449: Fix alignment for DMA safety + - iio: dac: ad5504: Fix alignment for DMA safety + - iio: dac: ad5592r: Fix alignment for DMA safety + - iio: dac: ad5686: Fix alignment for DMA safety + - iio: dac: ad5755: Fix alignment for DMA safety + - iio: dac: ad5761: Fix alignment for DMA safety + - iio: dac: ad5764: Fix alignment for DMA safety + - iio: dac: ad5766: Fix alignment for DMA safety + - iio: dac: ad5770r: Fix alignment for DMA safety + - iio: dac: ad5791: Fix alignment for DMA saftey + - iio: dac: ad7293: Fix alignment for DMA safety + - iio: dac: ad7303: Fix alignment for DMA safety + - iio: dac: ad8801: Fix alignment for DMA safety + - iio: dac: ltc2688: Fix alignment for DMA safety + - iio: dac: mcp4922: Fix alignment for DMA safety + - iio: dac: ti-dac082s085: Fix alignment for DMA safety + - iio: dac: ti-dac5571: Fix alignment for DMA safety + - iio: dac: ti-dac7311: Fix alignment for DMA safety + - iio: dac: ti-dac7612: Fix alignment for DMA safety + - iio: frequency: ad9523: Fix alignment for DMA safety + - iio: frequency: adf4350: Fix alignment for DMA safety + - iio: frequency: adf4371: Fix alignment for DMA safety + - iio: frequency: admv1013: Fix alignment for DMA safety + - iio: frequency: admv1014: Fix alignment for DMA safety + - iio: frequency: admv4420: Fix alignment for DMA safety + - iio: frequency: adrf6780: Fix alignment for DMA safety + - iio: gyro: adis16080: Fix alignment for DMA safety + - iio: gyro: adis16130: Fix alignment for DMA safety + - iio: gyro: adxrs450: Fix alignment for DMA safety + - iio: gyro: fxas210002c: Fix alignment for DMA safety + - iio: imu: fxos8700: Fix alignment for DMA safety + - iio: imu: inv_icm42600: Fix alignment for DMA safety + - iio: imu: inv_icm42600: Fix alignment for DMA safety in buffer code. + - iio: imu: mpu6050: Fix alignment for DMA safety + - iio: potentiometer: ad5110: Fix alignment for DMA safety + - iio: potentiometer: ad5272: Fix alignment for DMA safety + - iio: potentiometer: max5481: Fix alignment for DMA safety + - iio: potentiometer: mcp41010: Fix alignment for DMA safety + - iio: potentiometer: mcp4131: Fix alignment for DMA safety + - iio: proximity: as3935: Fix alignment for DMA safety + - iio: resolver: ad2s1200: Fix alignment for DMA safety + - iio: resolver: ad2s90: Fix alignment for DMA safety + - iio: temp: ltc2983: Fix alignment for DMA safety + - iio: temp: max31865: Fix alignment for DMA safety + - iio: temp: maxim_thermocouple: Fix alignment for DMA safety + - clk: mediatek: reset: Fix written reset bit offset + - clk: imx93: use adc_root as the parent clock of adc1 + - clk: imx93: correct nic_media parent + - clk: imx: clk-fracn-gppll: fix mfd value + - clk: imx: clk-fracn-gppll: Return rate in rate table properly in + ->recalc_rate() + - clk: imx: clk-fracn-gppll: correct rdiv + - RDMA/rxe: fix xa_alloc_cycle() error return value check again + - lib/test_hmm: avoid accessing uninitialized pages + - mm/memremap: fix memunmap_pages() race with get_dev_pagemap() + - KVM: Don't set Accessed/Dirty bits for ZERO_PAGE + - KVM: selftests: Convert s390x/diag318_test_handler away from VCPU_ID + - KVM: selftests: Use vm_create_with_vcpus() in max_guest_memory_test + - devcoredump: remove the useless gfp_t parameter in dev_coredumpv and + dev_coredumpm + - mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv + - scsi: iscsi: Allow iscsi_if_stop_conn() to be called from kernel + - scsi: iscsi: Add helper to remove a session from the kernel + - scsi: iscsi: Fix session removal on shutdown + - dmaengine: dw-edma: Fix eDMA Rd/Wr-channels and DMA-direction semantics + - KVM: x86: Fix errant brace in KVM capability handling + - mtd: hyperbus: rpc-if: Fix RPM imbalance in probe error path + - mtd: dataflash: Add SPI ID table + - clk: qcom: camcc-sm8250: Fix halt on boot by reducing driver's init level + - misc: rtsx: Fix an error handling path in rtsx_pci_probe() + - driver core: fix potential deadlock in __driver_attach + - clk: qcom: clk-krait: unlock spin after mux completion + - coresight: configfs: Fix unload of configurations on module exit + - coresight: syscfg: Update load and unload operations + - usb: gadget: f_mass_storage: Make CD-ROM emulation works with Windows OS + - clk: qcom: gcc-msm8939: Add missing SYSTEM_MM_NOC_BFDCD_CLK_SRC + - clk: qcom: gcc-msm8939: Fix bimc_ddr_clk_src rcgr base address + - clk: qcom: gcc-msm8939: Add missing system_mm_noc_bfdcd_clk_src + - clk: qcom: gcc-msm8939: Point MM peripherals to system_mm_noc clock + - usb: host: xhci: use snprintf() in xhci_decode_trb() + - RDMA/rxe: Add a responder state for atomic reply + - RDMA/rxe: Fix deadlock in rxe_do_local_ops() + - clk: qcom: ipq8074: fix NSS core PLL-s + - clk: qcom: ipq8074: SW workaround for UBI32 PLL lock + - clk: qcom: ipq8074: fix NSS port frequency tables + - clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks + - clk: qcom: camcc-sdm845: Fix topology around titan_top power domain + - clk: qcom: camcc-sm8250: Fix topology around titan_top power domain + - clk: qcom: clk-rcg2: Fail Duty-Cycle configuration if MND divider is not + enabled. + - clk: qcom: clk-rcg2: Make sure to not write d=0 to the NMD register + - kernfs: fix potential NULL dereference in __kernfs_remove + - mm: rmap: use the correct parameter name for DEFINE_PAGE_VMA_WALK + - mm/migration: return errno when isolate_huge_page failed + - mm/migration: fix potential pte_unmap on an not mapped pte + - mm: introduce clear_highpage_kasan_tagged + - kasan: fix zeroing vmalloc memory with HW_TAGS + - mm/mempolicy: fix get_nodes out of bound access + - phy: ti: tusb1210: Don't check for write errors when powering on + - phy: rockchip-inno-usb2: Sync initial otg state + - PCI: dwc: Stop link on host_init errors and de-initialization + - PCI: dwc: Add unroll iATU space support to dw_pcie_disable_atu() + - PCI: dwc: Disable outbound windows only for controllers using iATU + - PCI: dwc: Set INCREASE_REGION_SIZE flag based on limit address + - PCI: dwc: Deallocate EPC memory on dw_pcie_ep_init() errors + - PCI: dwc: Always enable CDM check if "snps,enable-cdm-check" exists + - soundwire: bus_type: fix remove and shutdown support + - soundwire: revisit driver bind/unbind and callbacks + - KVM: arm64: Don't return from void function + - dmaengine: sf-pdma: Add multithread support for a DMA channel + - PCI: endpoint: Don't stop controller when unbinding endpoint function + - phy: qcom-qmp: fix the QSERDES_V5_COM_CMN_MODE register + - scsi: qla2xxx: Check correct variable in qla24xx_async_gffid() + - scsi: lpfc: Revert RSCN_MEMENTO workaround for misbehaved configuration + - intel_th: Fix a resource leak in an error handling path + - intel_th: msu-sink: Potential dereference of null pointer + - intel_th: msu: Fix vmalloced buffers + - binder: fix redefinition of seq_file attributes + - staging: rtl8192u: Fix sleep in atomic context bug in + dm_fsync_timer_callback + - rtla/utils: Use calloc and check the potential memory allocation failure + - habanalabs: fix double unlock on error in map_device_va() + - dt-bindings: mmc: sdhci-msm: Fix issues in yaml bindings + - mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch + - mmc: mxcmmc: Silence a clang warning + - mmc: renesas_sdhi: Get the reset handle early in the probe + - memstick/ms_block: Fix some incorrect memory allocation + - memstick/ms_block: Fix a memory leak + - mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R + - of: device: Fix missing of_node_put() in of_dma_set_restricted_buffer + - mmc: block: Add single read for 4k sector cards + - KVM: s390: pv: leak the topmost page table when destroy fails + - PCI/portdrv: Don't disable AER reporting in get_port_device_capability() + - PCI: qcom: Set up rev 2.1.0 PARF_PHY before enabling clocks + - scsi: smartpqi: Fix DMA direction for RAID requests + - xtensa: iss/network: provide release() callback + - xtensa: iss: fix handling error cases in iss_net_configure() + - usb: gadget: udc: amd5536 depends on HAS_DMA + - usb: aspeed-vhub: Fix refcount leak bug in ast_vhub_init_desc() + - usb: dwc3: core: Deprecate GCTL.CORESOFTRESET + - usb: dwc3: core: Do not perform GCTL_CORE_SOFTRESET during bootup + - usb: dwc3: qcom: fix missing optional irq warnings + - eeprom: idt_89hpesx: uninitialized data in idt_dbgfs_csr_write() + - phy: stm32: fix error return in stm32_usbphyc_phy_init + - phy: rockchip-inno-usb2: Ignore OTG IRQs in host mode + - interconnect: imx: fix max_node_id + - KVM: arm64: Fix hypervisor address symbolization + - um: random: Don't initialise hwrng struct with zero + - mm: percpu: use kmemleak_ignore_phys() instead of kmemleak_free() + - RDMA/irdma: Fix a window for use-after-free + - RDMA/irdma: Fix VLAN connection with wildcard address + - RDMA/irdma: Fix setting of QP context err_rq_idx_valid field + - RDMA/rtrs-srv: Fix modinfo output for stringify + - RDMA/rtrs-clt: Replace list_next_or_null_rr_rcu with an inline function + - RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() + - RDMA/hns: Fix incorrect clearing of interrupt status register + - RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event + - RDMA/rxe: Fix BUG: KASAN: null-ptr-deref in rxe_qp_do_cleanup + - iio: cros: Register FIFO callback after sensor is registered + - clk: qcom: Drop mmcx gdsc supply for dispcc and videocc + - clk: qcom: gdsc: Bump parent usage count when GDSC is found enabled + - clk: qcom: gcc-msm8939: Fix weird field spacing in ftbl_gcc_camss_cci_clk + - RDMA/hfi1: fix potential memory leak in setup_base_ctxt() + - gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() + - iio: adc: max1027: unlock on error path in max1027_read_single_value() + - HID: mcp2221: prevent a buffer overflow in mcp_smbus_write() + - HID: amd_sfh: Add NULL check for hid device + - dmaengine: imx-dma: Cast of_device_get_match_data() with (uintptr_t) + - scripts/gdb: fix 'lx-dmesg' on 32 bits arch + - RDMA/rxe: Fix mw bind to allow any consumer key portion + - mmc: core: quirks: Add of_node_put() when breaking out of loop + - mmc: cavium-octeon: Add of_node_put() when breaking out of loop + - mmc: cavium-thunderx: Add of_node_put() when breaking out of loop + - HID: alps: Declare U1_UNICORN_LEGACY support + - RDMA/rxe: For invalidate compare according to set keys in mr + - RDMA/rxe: Fix rnr retry behavior + - PCI: tegra194: Fix Root Port interrupt handling + - PCI: tegra194: Fix link up retry sequence + - HID: amd_sfh: Handle condition of "no sensors" + - USB: serial: fix tty-port initialized comments + - usb: xhci_plat_remove: avoid NULL dereference + - usb: cdns3: change place of 'priv_ep' assignment in + cdns3_gadget_ep_dequeue(), cdns3_gadget_ep_enable() + - mtd: spi-nor: fix spi_nor_spimem_setup_op() call in + spi_nor_erase_{sector,chip}() + - staging: fbtft: core: set smem_len before fb_deferred_io_init call + - KVM: nVMX: Set UMIP bit CR4_FIXED1 MSR when emulating UMIP + - tools/power/x86/intel-speed-select: Fix off by one check + - platform/x86: pmc_atom: Match all Lex BayTrail boards with critclk_systems + DMI table + - platform/mellanox: mlxreg-lc: Fix error flow and extend verbosity + - platform/olpc: Fix uninitialized data in debugfs write + - RDMA/srpt: Duplicate port name members + - RDMA/srpt: Introduce a reference count in struct srpt_device + - RDMA/srpt: Fix a use-after-free + - android: binder: stop saving a pointer to the VMA + - mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region + - selftests/vm: fix errno handling in mrelease_test + - tools/testing/selftests/vm/hugetlb-madvise.c: silence uninitialized variable + warning + - selftest/vm: uninitialized variable in main() + - rtla: Fix Makefile when called from -C tools/ + - rtla: Fix double free + - [Config] updateconfigs for VIRTIO_ANCHOR + - virtio: replace restricted mem access flag with callback + - [Config] updateconfigs for XEN_VIRTIO_FORCE_GRANT + - xen: don't require virtio with grants for non-PV guests + - selftests: kvm: set rax before vmcall + - of/fdt: declared return type does not match actual return type + - RDMA/mlx5: Add missing check for return value in get namespace flow + - RDMA/rxe: Fix error unwind in rxe_create_qp() + - block/rnbd-srv: Set keep_id to true after mutex_trylock + - null_blk: fix ida error handling in null_add_dev() + - nbd: add missing definition of pr_fmt + - mtip32xx: fix device removal + - nvme: use command_id instead of req->tag in trace_nvme_complete_rq() + - nvme: define compat_ioctl again to unbreak 32-bit userspace. + - nvme: catch -ENODEV from nvme_revalidate_zones again + - block/bio: remove duplicate append pages code + - block: ensure iov_iter advances for added pages + - jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() + - ext4: recover csum seed of tmp_inode after migrating to extents + - jbd2: fix assertion 'jh->b_frozen_data == NULL' failure when journal aborted + - usb: cdns3: Don't use priv_dev uninitialized in cdns3_gadget_ep_enable() + - opp: Fix error check in dev_pm_opp_attach_genpd() + - ASoC: cros_ec_codec: Fix refcount leak in cros_ec_codec_platform_probe + - ASoC: samsung: Fix error handling in aries_audio_probe + - ASoC: imx-audmux: Silence a clang warning + - ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe + - ASoC: max98390: use linux/gpio/consumer.h to fix build + - ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe + - ASoC: codecs: da7210: add check for i2c_add_driver + - ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe + - serial: pic32: fix missing clk_disable_unprepare() on error in + pic32_uart_startup() + - serial: 8250: Create serial_lsr_in() + - serial: 8250: Get preserved flags using serial_lsr_in() + - serial: 8250_dw: Use serial_lsr_in() in dw8250_handle_irq() + - serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() + - ASoC: SOF: make ctx_store and ctx_restore as optional + - ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV + - ASoC: codecs: wcd9335: move gains from SX_TLV to S8_TLV + - ASoC: cs35l45: Add endianness flag in snd_soc_component_driver + - rpmsg: char: Add mutex protection for rpmsg_eptdev_open() + - rpmsg: mtk_rpmsg: Fix circular locking dependency + - remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init + - selftests/livepatch: better synchronize test_klp_callbacks_busy + - profiling: fix shift too large makes kernel panic + - remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init + - KVM: PPC: Book3s: Fix warning about xics_rm_h_xirr_x + - rpmsg: Fix possible refcount leak in rpmsg_register_device_override() + - selftests/powerpc: Skip energy_scale_info test on older firmware + - ASoC: samsung: h1940_uda1380: include proepr GPIO consumer header + - powerpc/perf: Optimize clearing the pending PMI and remove WARN_ON for PMI + check in power_pmu_disable + - ASoC: soc-core.c: fixup snd_soc_of_get_dai_link_cpus() + - ASoC: samsung: change gpiod_speaker_power and rx1950_audio from global to + static variables + - serial: 8250_dw: Take port lock while accessing LSR + - ASoC: codecs: wsa881x: handle timeouts in resume path + - vfio/mlx5: Protect mlx5vf_disable_fds() upon close device + - vfio: Split migration ops from main device ops + - net/ice: fix initializing the bitmap in the switch code + - tty: n_gsm: fix user open not possible at responder until initiator open + - tty: n_gsm: fix tty registration before control channel open + - tty: n_gsm: fix wrong queuing behavior in gsm_dlci_data_output() + - tty: n_gsm: fix missing timer to handle stalled links + - tty: n_gsm: fix non flow control frames during mux flow off + - tty: n_gsm: fix packet re-transmission without open control channel + - tty: n_gsm: fix race condition in gsmld_write() + - tty: n_gsm: fix deadlock and link starvation in outgoing data path + - tty: n_gsm: fix resource allocation order in gsm_activate_mux() + - ASoC: qcom: Fix missing of_node_put() in + asoc_qcom_lpass_cpu_platform_probe() + - MIPS: Loongson64: Fix section mismatch warning + - ASoC: imx-card: Fix DSD/PDM mclk frequency + - remoteproc: qcom: wcnss: Fix handling of IRQs + - vfio/ccw: Remove UUID from s390 debug log + - vfio/ccw: Fix FSM state if mdev probe fails + - vfio/ccw: Do not change FSM state in subchannel event + - ASoC: audio-graph-card2.c: use of_property_read_u32() for rate + - serial: 8250_fsl: Don't report FE, PE and OE twice + - tty: n_gsm: fix wrong T1 retry count handling + - tty: n_gsm: fix DM command + - tty: n_gsm: fix flow control handling in tx path + - tty: n_gsm: fix missing corner cases in gsmld_poll() + - MIPS: vdso: Utilize __pa() for gic_pfn + - ASoC: SOF: mediatek: fix mt8195 StatvectorSel wrong setting + - swiotlb: fail map correctly with failed io_tlb_default_mem + - lib/bitmap: fix off-by-one in bitmap_to_arr64() + - ASoC: SOF: ipc3-topology: Prevent double freeing of ipc_control_data via + load_bytes + - cpufreq: mediatek: fix error return code in mtk_cpu_dvfs_info_init() + - ASoc: audio-graph-card2: Fix refcount leak bug in __graph_get_type() + - ASoC: mt6359: Fix refcount leak bug + - ASoC: SOF: ipc-msg-injector: fix copy in sof_msg_inject_ipc4_dfs_write() + - serial: 8250_bcm7271: Save/restore RTS in suspend/resume + - iommu/exynos: Handle failed IOMMU device registration properly + - 9p: Drop kref usage + - 9p: Add client parameter to p9_req_put() + - net: 9p: fix refcount leak in p9_read_work() error handling + - MIPS: Fixed __debug_virt_addr_valid() + - rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge + - leds: pwm-multicolor: Don't show -EPROBE_DEFER as errors + - kfifo: fix kfifo_to_user() return type + - lib/smp_processor_id: fix imbalanced instrumentation_end() call + - proc: fix a dentry lock race between release_task and lookup + - remoteproc: qcom: pas: Check if coredump is enabled + - remoteproc: sysmon: Wait for SSCTL service to come up + - mfd: t7l66xb: Drop platform disable callback + - mfd: max77620: Fix refcount leak in max77620_initialise_fps + - ASoC: amd: yc: Decrease level of error message + - iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop + - perf tools: Fix dso_id inode generation comparison + - riscv: spinwait: Fix hartid variable type + - s390/crash: fix incorrect number of bytes to copy to user space + - s390/zcore: fix race when reading from hardware system area + - perf test: Fix test case 83 ('perf stat CSV output linter') on s390 + - ASoC: fsl_asrc: force cast the asrc_format type + - ASoC: fsl-asoc-card: force cast the asrc_format type + - ASoC: fsl_easrc: use snd_pcm_format_t type for sample_format + - ASoC: imx-card: use snd_pcm_format_t type for asrc_format + - ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() + - fuse: Remove the control interface for virtio-fs + - ASoC: audio-graph-card: Add of_node_put() in fail path + - ASoC: audio-graph-card2: Add of_node_put() in fail path + - watchdog: f71808e_wdt: Add check for platform_driver_register + - watchdog: sp5100_tco: Fix a memory leak of EFCH MMIO resource + - watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in + armada_37xx_wdt_probe() + - ASoC: Intel: sof_rt5682: Perform quirk check first in card late probe + - video: fbdev: amba-clcd: Fix refcount leak bugs + - video: fbdev: sis: fix typos in SiS_GetModeID() + - ASoC: mchp-spdifrx: disable end of block interrupt on failures + - powerpc/32: Call mmu_mark_initmem_nx() regardless of data block mapping. + - powerpc/32s: Fix boot failure with KASAN + SMP + + JUMP_LABEL_FEATURE_CHECK_DEBUG + - powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 + - video: fbdev: offb: Include missing linux/platform_device.h + - pseries/iommu/ddw: Fix kdump to work in absence of ibm,dma-window + - powerpc/iommu: Fix iommu_table_in_use for a small default DMA window case + - powerpc/pci: Prefer PCI domain assignment via DT 'linux,pci-domain' and + alias + - selftests/powerpc: Fix matrix multiply assist test + - serial: 8250_bcm2835aux: Add missing clk_disable_unprepare() + - tty: serial: qcom-geni-serial: Fix get_clk_div_rate() which otherwise could + return a sub-optimal clock rate. + - tty: serial: fsl_lpuart: correct the count of break characters + - s390/smp: enforce lowcore protection on CPU restart + - perf stat: Revert "perf stat: Add default hybrid events" + - f2fs: fix to invalidate META_MAPPING before DIO write + - f2fs: fix to check inline_data during compressed inode conversion + - f2fs: fix to remove F2FS_COMPR_FL and tag F2FS_NOCOMP_FL at the same time + - cifs: Fix memory leak when using fscache + - powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader + - powerpc/xive: Fix refcount leak in xive_get_max_prio + - powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address + - perf symbol: Fail to read phdr workaround + - kprobes: Forbid probing on trampoline and BPF code areas + - x86/bus_lock: Don't assume the init value of DEBUGCTLMSR.BUS_LOCK_DETECT to + be zero + - powerpc/pci: Fix PHB numbering when using opal-phbid + - genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO + - scripts/faddr2line: Fix vmlinux detection on arm64 + - tty: serial: qcom-geni-serial: Fix %lu -> %u in print statements + - powerpc/64e: Fix kexec build error + - sched, cpuset: Fix dl_cpu_busy() panic due to empty cs->cpus_allowed + - x86/numa: Use cpumask_available instead of hardcoded NULL check + - video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() + - tools/thermal: Fix possible path truncations + - sched: Fix the check of nr_running at queue wakelist + - sched: Remove the limitation of WF_ON_CPU on wakelist if wakee cpu is idle + - sched/core: Do not requeue task on CPU excluded from cpus_mask + - f2fs: do not allow to decompress files have FI_COMPRESS_RELEASED + - video: fbdev: vt8623fb: Check the size of screen before memset_io() + - video: fbdev: arkfb: Check the size of screen before memset_io() + - video: fbdev: s3fb: Check the size of screen before memset_io() + - scsi: ufs: core: Correct ufshcd_shutdown() flow + - scsi: zfcp: Fix missing auto port scan and thus missing target ports + - scsi: qla2xxx: Fix imbalance vha->vref_count + - scsi: qla2xxx: Fix discovery issues in FC-AL topology + - scsi: qla2xxx: Turn off multi-queue for 8G adapters + - scsi: qla2xxx: Fix crash due to stale SRB access around I/O timeouts + - scsi: qla2xxx: Fix excessive I/O error messages by default + - scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection + - scsi: qla2xxx: Wind down adapter after PCIe error + - scsi: qla2xxx: Fix losing FCP-2 targets on long port disable with I/Os + - scsi: qla2xxx: Fix losing target when it reappears during delete + - scsi: qla2xxx: Fix losing FCP-2 targets during port perturbation tests + - cifs: fix lock length calculation + - x86/bugs: Enable STIBP for IBPB mitigated RETBleed + - ftrace/x86: Add back ftrace_expected assignment + - x86/kprobes: Update kcb status flag after singlestepping + - x86/olpc: fix 'logical not is only applied to the left hand side' + - SMB3: fix lease break timeout when multiple deferred close handles for the + same file. + - posix-cpu-timers: Cleanup CPU timers before freeing them during exec + - Input: gscps2 - check return value of ioremap() in gscps2_probe() + - __follow_mount_rcu(): verify that mount_lock remains unchanged + - spmi: trace: fix stack-out-of-bound access in SPMI tracing functions + - csky: abiv1: Fixup compile error + - drivers/base: fix userspace break from using bin_attributes for cpumap and + cpulist + - drm/mediatek: Keep dsi as LP00 before dcs cmds transfer + - [Config] updateconfigs for CRYPTO_LIB_BLAKE2S + - crypto: blake2s - remove shash module + - firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails + - intel_th: pci: Add Meteor Lake-P support + - intel_th: pci: Add Raptor Lake-S PCH support + - intel_th: pci: Add Raptor Lake-S CPU support + - KVM: set_msr_mce: Permit guests to ignore single-bit ECC errors + - KVM: x86: Signal #GP, not -EPERM, on bad WRMSR(MCi_CTL/STATUS) + - iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) + - PCI/AER: Iterate over error counters instead of error strings + - PCI: qcom: Power on PHY before IPQ8074 DBI register accesses + - dm writecache: set a default MAX_WRITEBACK_JOBS + - kexec_file: drop weak attribute from functions + - kexec: clean up arch_kexec_kernel_verify_sig + - kexec, KEYS, s390: Make use of built-in and secondary keyring for signature + verification + - tracing/events: Add __vstring() and __assign_vstr() helper macros + - dm thin: fix use-after-free crash in dm_sm_register_threshold_callback + - net/9p: Initialize the iounit field during fid creation + - ARM: Marvell: Update PCIe fixup + - timekeeping: contribute wall clock to rng on time change + - locking/csd_lock: Change csdlock_debug from early_param to __setup + - block: don't allow the same type rq_qos add more than once + - btrfs: tree-log: make the return value for log syncing consistent + - btrfs: ensure pages are unlocked on cow_file_range() failure + - btrfs: fix error handling of fallback uncompress write + - btrfs: reset block group chunk force if we have to wait + - btrfs: properly flag filesystem with BTRFS_FEATURE_INCOMPAT_BIG_METADATA + - block: add bdev_max_segments() helper + - btrfs: zoned: revive max_zone_append_bytes + - btrfs: replace BTRFS_MAX_EXTENT_SIZE with fs_info->max_extent_size + - btrfs: convert count_max_extents() to use fs_info->max_extent_size + - btrfs: let can_allocate_chunk return error + - btrfs: zoned: finish least available block group on data bg allocation + - btrfs: zoned: disable metadata overcommit for zoned + - btrfs: store chunk size in space-info struct + - btrfs: zoned: introduce space_info->active_total_bytes + - btrfs: zoned: activate metadata block group on flush_space + - btrfs: zoned: activate necessary block group + - btrfs: zoned: write out partially allocated region + - btrfs: zoned: wait until zone is finished when allocation didn't progress + - btrfs: join running log transaction when logging new name + - intel_idle: make SPR C1 and C1E be independent + - ACPI: CPPC: Do not prevent CPPC from working in the future + - powerpc/powernv/kvm: Use darn for H_RANDOM on Power9 + - s390/unwind: fix fgraph return address recovery + - KVM: x86/pmu: Introduce the ctrl_mask value for fixed counter + - KVM: VMX: Mark all PERF_GLOBAL_(OVF)_CTRL bits reserved if there's no vPMU + - KVM: x86/pmu: Ignore pmu->global_ctrl check if vPMU doesn't support + global_ctrl + - KVM: x86/pmu: Accept 0 for absent PMU MSRs when host-initiated if + !enable_pmu + - Revert "KVM: x86/pmu: Accept 0 for absent PMU MSRs when host-initiated if + !enable_pmu" + - KVM: VMX: Add helper to check if the guest PMU has PERF_GLOBAL_CTRL + - KVM: nVMX: Attempt to load PERF_GLOBAL_CTRL on nVMX xfer iff it exists + - dm raid: fix address sanitizer warning in raid_status + - dm raid: fix address sanitizer warning in raid_resume + - dm: fix dm-raid crash if md_handle_request() splits bio + - mm/damon/reclaim: fix potential memory leak in damon_reclaim_init() + - hugetlb_cgroup: fix wrong hugetlb cgroup numa stat + - batman-adv: tracing: Use the new __vstring() helper + - tracing: Use a struct alignof to determine trace event field alignment + - ext4: fix reading leftover inlined symlinks + - ext4: update s_overhead_clusters in the superblock during an on-line resize + - ext4: fix extent status tree race in writeback error recovery path + - ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h + - ext4: fix use-after-free in ext4_xattr_set_entry + - ext4: correct max_inline_xattr_value_size computing + - ext4: correct the misjudgment in ext4_iget_extra_inode + - ext4: fix warning in ext4_iomap_begin as race between bmap and write + - Documentation: ext4: fix cell spacing of table heading on blockmap table + - ext4: check if directory block is within i_size + - ext4: make sure ext4_append() always allocates new block + - ext4: remove EA inode entry from mbcache on inode eviction + - ext4: unindent codeblock in ext4_xattr_block_set() + - ext4: fix race when reusing xattr blocks + - KEYS: asymmetric: enforce SM2 signature use pkey algo + - tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH + - tpm: Add check for Failure mode for TPM2 modules + - xen-blkback: fix persistent grants negotiation + - xen-blkback: Apply 'feature_persistent' parameter when connect + - xen-blkfront: Apply 'feature_persistent' parameter when connect + - powerpc: Fix eh field when calling lwarx on PPC32 + - powerpc64/ftrace: Fix ftrace for clang builds + - net_sched: cls_route: remove from list when handle is 0 + - Revert "drm/bridge: anx7625: Use DPI bus type" + - tcp: fix over estimation in sk_forced_mem_schedule() + - crypto: lib/blake2s - reduce stack frame usage in self test + - raw: remove unused variables from raw6_icmp_error() + - raw: fix a typo in raw_icmp_error() + - Revert "mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv" + - Revert "devcoredump: remove the useless gfp_t parameter in dev_coredumpv and + dev_coredumpm" + - mptcp: refine memory scheduling + - wifi: cfg80211: handle IBSS in channel switch + - wifi: nl80211: hold wdev mutex for tid config + - wifi: nl80211: relax wdev mutex check in wdev_chandef() + - wifi: nl80211: acquire wdev mutex earlier in start_ap + - wifi: cfg80211: remove chandef check in cfg80211_cac_event() + - tracing: Use a copy of the va_list for __assign_vstr() + - net: dsa: felix: fix min gate len calculation for tc when its first gate is + closed + - Revert "s390/smp: enforce lowcore protection on CPU restart" + - powerpc/kexec: Fix build failure from uninitialised variable + - io_uring: mem-account pbuf buckets + - Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression + - ASoC: Intel: avs: Use lookup table to create modules + - geneve: Use ip_tunnel_key flow flags in route lookups + - vxlan: Use ip_tunnel_key flow flags in route lookups + - Linux 5.19.2 + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) // Kinetic update: v5.19.2 upstream stable release + (LP: #1986865) + - x86/entry: Build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + * Kinetic update: v5.19.1 upstream stable release (LP: #1986848) + - block: fix default IO priority handling again + - tools/vm/slabinfo: Handle files in debugfs + - ACPI: video: Force backlight native for some TongFang devices + - ACPI: video: Shortening quirk list by identifying Clevo by board_name only + - ACPI: APEI: Better fix to avoid spamming the console with old error logs + - crypto: arm64/poly1305 - fix a read out-of-bound + - ata: sata_mv: Fixes expected number of resources now IRQs are gone + - arm64: set UXN on swapper page tables + - Bluetooth: hci_qca: Return wakeup for qca_wakeup + - Bluetooth: hci_bcm: Add BCM4349B1 variant + - Bluetooth: hci_bcm: Add DT compatible for CYW55572 + - dt-bindings: bluetooth: broadcom: Add BCM4349B1 DT binding + - Bluetooth: btusb: Add support of IMC Networks PID 0x3568 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04CA:0x4007 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x04C5:0x1675 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0CB8:0xC558 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3587 + - Bluetooth: btusb: Add Realtek RTL8852C support ID 0x13D3:0x3586 + - macintosh/adb: fix oob read in do_adb_query() function + - x86/speculation: Add RSB VM Exit protections + - x86/speculation: Add LFENCE to RSB fill sequence + - Linux 5.19.1 + + * refactoring of overlayfs fix to properly support shiftfs (LP: #1983640) + - SAUCE: for aufs mmap: print the virtual file path + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + + * ioam6.sh in net from ubuntu_kernel_selftests fails with 5.15 kernels in + Focal (LP: #1982930) + - selftests: net: fix IOAM test skip return code + + * Miscellaneous Ubuntu changes + - [Packaging]: always use fully qualified -gcc-VER toolchain + - [Config] update toolchain versions + - [Packaging] use unversioned default gcc + - [Packaging] Remove circular dependency between image & modules + - [Packaging] kernelconfig: drop stray 'set -x' + - SAUCE: Revert "perf tools: Use Python devtools for version autodetection + rather than runtime" + - [Config] update configs after applying stable updates + + -- Andrea Righi Mon, 05 Sep 2022 11:44:01 +0200 + +linux (5.19.0-15.15) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-15.15 -proposed tracker (LP: #1983335) + + * Miscellaneous Ubuntu changes + - [Config] update annotations to support both gcc-11 and gcc-12 + + -- Andrea Righi Tue, 02 Aug 2022 09:23:01 +0200 + +linux (5.19.0-14.14) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-14.14 -proposed tracker (LP: #1983273) + + * Miscellaneous Ubuntu changes + - [Packaging] module-signature-check: Check debian./signature-inclusion + - [Packaging] Introduce debian/scripts/sign-module + - SAUCE: Switch to using debian/scripts/sign-module + - [Config] update configs/annotations after rebase to 5.19 + - [Config] update configs after moving to gcc-12 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging]: always use fully qualified -gcc-VER + toolchain" + + [ Upstream Kernel Changes ] + + * Rebase to v5.19 + + -- Andrea Righi Mon, 01 Aug 2022 17:19:01 +0200 + +linux (5.19.0-13.13) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-13.13 -proposed tracker (LP: #1983033) + + * network-manager/1.36.4-2ubuntu1 ADT test failure with linux/5.15.0-28.29 + (LP: #1971418) + - Revert "rfkill: make new event layout opt-in" + + * Miscellaneous Ubuntu changes + - [Config] Tighten up LP bug links in annotations + - [Config] Use mark for CONFIG_DEVTMPFS + - [Config] Use flag for CONFIG_HIPPI + - [Config] Use note<> for CONFIG_XEN_ACPI_PROCESSOR + - [Config] Fix DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING annotation + - [Config] Fix CONFIG_CPU_LITTLE_ENDIAN annotation + - SAUCE: x86/bugs: Do not enable IBPB at firmware entry when IBPB is not + available + + -- Andrea Righi Thu, 28 Jul 2022 17:04:33 +0200 + +linux (5.19.0-12.12) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-12.12 -proposed tracker (LP: #1982741) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging]: always use fully qualified -gcc-VER toolchain + + -- Andrea Righi Tue, 26 Jul 2022 15:07:13 +0200 + +linux (5.19.0-11.11) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-11.11 -proposed tracker (LP: #1982726) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - debian/dkms-versions -- update from kernel-versions (main/master) + + * GPIO character device v1 API not enabled in kernel (LP: #1953613) + - [Config] Enable CONFIG_GPIO_CDEV_V1 + + * Use kernel-testing repo from launchpad for ADT tests (LP: #1968016) + - [Debian] Use kernel-testing repo from launchpad + + * Support AMD P-State cpufreq control mechanism (LP: #1956509) + - [Config] enable X86_AMD_PSTATE as built-in on amd64 + + * PCIE LnkCtl ASPM not enabled under VMD mode for Alder Lake platforms + (LP: #1942160) + - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain + - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD + - SAUCE: vmd: fixup bridge ASPM by driver name instead + + * Miscellaneous Ubuntu changes + - [Packaging] Double the speed of updateconfigs + - Remove ubuntu/hio driver + - [Config] update config after rebase to 5.19-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc8 + + -- Andrea Righi Mon, 25 Jul 2022 08:54:21 +0200 + +linux (5.19.0-10.10) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-10.10 -proposed tracker (LP: #1982013) + + * enable config for fixing 5.17 kernel won't load mok (LP: #1972802) + - [Config] enable configs for fixing kernel won't load mok + + * RISC-V kernel config is out of sync with other archs (LP: #1981437) + - [Config] Disable CONFIG_CXL_MEM_RAW_COMMANDS on riscv64 + - [Config] Disable CONFIG_EROFS_FS_ZIP_LZMA on riscv64 + - [Config] Disable CONFIG_FONT_6x8 on riscv64 + - [Config] Disable CONFIG_NTFS3_64BIT_CLUSTER on riscv64 + - [Config] Disable CONFIG_SCSI_IZIP_EPP16 on riscv64 + - [Config] Disable CONFIG_SCSI_UFS_HWMON on riscv64 + - [Config] Disable CONFIG_SPI_AX88796C_COMPRESSION on riscv64 + - [Config] Disable CONFIG_VIDEO_ZORAN on riscv64 + - [Config] Enable CONFIG_BPF_KPROBE_OVERRIDE on riscv64 + - [Config] Enable CONFIG_CACHEFILES_ERROR_INJECTION on riscv64 + - [Config] Enable CONFIG_DRM_AMD_DC_SI on riscv64 + - [Config] Enable CONFIG_NUMA_BALANCING on riscv64 + - [Config] Enable CONFIG_PROC_VMCORE_DEVICE_DUMP on riscv64 + - [Config] Enable CONFIG_WLAN_VENDOR_MICROCHIP on riscv64 + - [Config] Set CONFIG_MHI_WWAN_CTRL=m on riscv64 + - [Config] Set CONFIG_NFC_S3FWRN82_UART=m on riscv64 + - [Config] Enable CONFIG_EFIVAR_FS on riscv64 + - [Config] Enable CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES on riscv64 + - [Config] Enable CONFIG_STRICT_DEVMEM on riscv64 + - [Config] Enable CONFIG_VMAP_STACK on riscv64 + - [Config] Enable CONFIG_KEXEC_FILE on riscv64 + - [Config] Set CONFIG_MTD_PSTORE=m on riscv64 + - [Config] Set CONFIG_KFENCE_SAMPLE_INTERVAL=0 on riscv64 + - [Config] Enable CONFIG_KEXEC_FILE on s390x + + * Ubuntu 22.04 and 20.04 DPC Fixes for Failure Cases of DownPort Containment + events (LP: #1965241) + - Enable config option CONFIG_PCIE_EDR + - Correct CONFIG_PCIE_EDR annotation on arm64 + + * config CONFIG_HISI_PMU for kunpeng920 (LP: #1956086) + - [Config] CONFIG_HISI_PMU=m + + * Skip setting ethernet LED on Dell EMC board (LP: #1971667) + - SAUCE: net: phy: marvell: Skip setting LED on Dell EMC board + + * Miscellaneous Ubuntu changes + - [Packaging] ignore warnings from the output of ld.bfd + - [Packaging] Fix bashism in dkms-build script + - [Packaging] Always catch errors in dkms-build scripts + - [Packaging] Fix dkms builds with linker @module.mod files + - [Packaging] mark dkms-build-configure--zfs executable + - [Config] update configs and annotations after rebase to 5.19-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc7 + + -- Andrea Righi Mon, 18 Jul 2022 23:45:28 +0200 + +linux (5.19.0-9.9) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-9.9 -proposed tracker (LP: #1980622) + + * Miscellaneous Ubuntu changes + - [Config] update config after rebase to 5.19-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc5 + + -- Andrea Righi Mon, 04 Jul 2022 12:05:04 +0200 + +linux (5.19.0-8.8) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-8.8 -proposed tracker (LP: #1980482) + + * temporarily disable CONFIG_X86_KERNEL_IBT (LP: #1980484) + - [Config] temporarily disable CONFIG_X86_KERNEL_IBT + + -- Andrea Righi Fri, 01 Jul 2022 11:58:56 +0200 + +linux (5.19.0-7.7) kinetic; urgency=medium + + * kinetic/linux: 5.19.0-7.7 -proposed tracker (LP: #1980056) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * RISC-V enables CONFIG_COMPAT in the unstable branch (LP: #1980061) + - [Config] Disable CONFIG_COMPAT on RISC-V + + * No RISC-V configuration in the unstable tree (LP: #1979647) + - [Config] Merge riscv64 config and annotations + + -- Andrea Righi Tue, 28 Jun 2022 12:25:48 +0200 + +linux (5.19.0-6.6) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 28 Jun 2022 07:50:17 +0200 + +linux-unstable (5.19.0-6.6) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-6.6 -proposed tracker (LP: #1979948) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Packaging] Remove 'family=ubuntu' concept + - [Packaging] final-checks: Remove useless sourcing of kernelconfig + - [Config] update config after rebase to 5.19-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc4 + + -- Andrea Righi Mon, 27 Jun 2022 09:16:40 +0200 + +linux-unstable (5.19.0-5.5) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-5.5 -proposed tracker (LP: #1979611) + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable signing for ppc64el and + s390x" + + -- Andrea Righi Thu, 23 Jun 2022 11:13:32 +0200 + +linux-unstable (5.19.0-4.4) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-4.4 -proposed tracker (LP: #1979177) + + * Miscellaneous Ubuntu changes + - [Config] update configs after rebase to 5.19-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc3 + + -- Andrea Righi Mon, 20 Jun 2022 09:02:58 +0200 + +linux-unstable (5.19.0-3.3) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-3.3 -proposed tracker (LP: #1978439) + + * Miscellaneous Ubuntu changes + - [Config] update annotations for 5.19 + + [ Upstream Kernel Changes ] + + * Rebase to v5.19-rc2 + + -- Andrea Righi Mon, 13 Jun 2022 07:16:32 +0200 + +linux-unstable (5.19.0-2.2) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.19.0-2.2 -proposed tracker (LP: #1978313) + + -- Andrea Righi Fri, 10 Jun 2022 15:17:20 +0200 + +linux-unstable (5.19.0-1.1) kinetic; urgency=medium + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * linux: Staging modules should be unsigned (LP: #1642368) + - [Packaging] Move and update signature inclusion list + - [Packaging] Strip signatures from untrusted staging modules + - [Packaging] Add module-signature-check + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.19-rc1 + - [Packaging] move to kernel 5.19 + - [Packaging] workaround missing python3-dev dependency + - SAUCE: Revert "perf tools: Use Python devtools for version autodetection + rather than runtime" + - SAUCE: watchdog: gxp: Add missing MODULE_LICENSE + - [Packaging] add python3-dev as build dependency + + -- Andrea Righi Fri, 10 Jun 2022 14:43:46 +0200 + +linux-unstable (5.19.0-0.0) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Thu, 09 Jun 2022 12:13:06 +0200 + +linux (5.18.0-6.6) kinetic; urgency=medium + + * kinetic/linux: 5.18.0-6.6 -proposed tracker (LP: #1976327) + + * Miscellaneous Ubuntu changes + - [Packaging] temporarily disable signing for ppc64el and s390x + - [Config] update toolchain versions + - [Config] enable CONFIG_X86_KERNEL_IBT + + -- Andrea Righi Tue, 31 May 2022 11:05:51 +0200 + +linux (5.18.0-5.5) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 23 May 2022 16:59:47 +0200 + +linux-unstable (5.18.0-5.5) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-5.5 -proposed tracker (LP: #1975458) + + * enable CONFIG_DEVTMPFS_SAFE (LP: #1974442) + - [Config] enable CONFIG_DEVTMPFS_SAFE + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] drop do_ arch specific configs + + * prevent kernel panic with overlayfs + shiftfs (LP: #1973620) + - SAUCE: overlayfs: prevent dereferencing struct file in ovl_vm_prfile_set() + + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) // re-apply missing overlayfs SAUCE patch (LP: #1967924) + - SAUCE: overlayfs: fix incorrect mnt_id of files opened from map_files + + [ Upstream Kernel Changes ] + + * Rebase to v5.18 + + -- Andrea Righi Mon, 23 May 2022 11:21:38 +0200 + +linux-unstable (5.18.0-4.4) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-4.4 -proposed tracker (LP: #1973587) + + * build backport-iwlwifi-dkms as linux-modules-iwlwifi-ABI (LP: #1969434) + - [Packaging] support standalone dkms module builds + + * Enable speakup kernel modules to allow the speakup screen reader to function + (LP: #1967702) + - [Config] CONFIG_SPEAKUP=m for all but s390x + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable v4l2loopback" + - Revert "UBUNTU: [Packaging] temporarily disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc7 + + -- Andrea Righi Mon, 16 May 2022 14:15:35 +0200 + +linux-unstable (5.18.0-3.3) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-3.3 -proposed tracker (LP: #1972162) + + * disable Intel DMA remapping by default (LP: #1971699) + - Revert "UBUNTU: [Config] enable Intel DMA remapping options by default" + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc6 + + -- Andrea Righi Mon, 09 May 2022 12:15:39 +0200 + +linux-unstable (5.18.0-2.2) kinetic; urgency=medium + + * kinetic/linux-unstable: 5.18.0-2.2 -proposed tracker (LP: #1971340) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - [Config] update configs after rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc5 + + -- Andrea Righi Tue, 03 May 2022 12:24:49 +0200 + +linux-unstable (5.18.0-1.1) kinetic; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 03 May 2022 09:38:06 +0200 + +linux-unstable (5.18.0-1.1) jammy; urgency=medium + + * kinetic/linux-unstable: 5.18.0-1.1 -proposed tracker (LP: #1969476) + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.18 + - [Packaging] temporarily disable zfs + - [Packaging] temporarily disable v4l2loopback + + [ Upstream Kernel Changes ] + + * Rebase to v5.18-rc3 + + -- Andrea Righi Wed, 27 Apr 2022 20:26:42 +0200 + +linux-unstable (5.18.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 19 Apr 2022 16:20:00 +0200 + +linux-unstable (5.17.0-8.8) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-8.8 -proposed tracker (LP: #1969016) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + -- Andrea Righi Thu, 14 Apr 2022 10:30:39 +0200 + +linux-unstable (5.17.0-7.7) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-7.7 -proposed tracker (LP: #1968988) + + * zfcpdump-kernel update to v5.15 (LP: #1965766) + - SAUCE: Audit: Fix incorrect static inline function declration. + + * intel_iommu breaks Intel IPU6 camera: isys port open ready failed -16 + (LP: #1958004) + - SAUCE: iommu: intel-ipu: use IOMMU passthrough mode for Intel IPUs + + * Jammy update: v5.17.3 upstream stable release (LP: #1968986) + - lib/logic_iomem: correct fallback config references + - um: fix and optimize xor select template for CONFIG64 and timetravel mode + - rtc: wm8350: Handle error for wm8350_register_irq + - net: dsa: felix: fix possible NULL pointer dereference + - mm: kfence: fix objcgs vector allocation + - KVM: x86/pmu: Use different raw event masks for AMD and Intel + - KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() + - KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs + - KVM: x86/pmu: Fix and isolate TSX-specific performance event logic + - KVM: x86/emulator: Emulate RDPID only if it is enabled in guest + - drm: Add orientation quirk for GPD Win Max + - Bluetooth: hci_sync: Fix compilation warning + - ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 + - Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt + - drm/amd/display: Add signal type check when verify stream backends same + - drm/amdkfd: enable heavy-weight TLB flush on Arcturus + - drm/edid: remove non_desktop quirk for HPN-3515 and LEN-B800. + - drm/edid: improve non-desktop quirk logging + - Bluetooth: hci_event: Ignore multiple conn complete events + - drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj + - drm/amd/display: Fix memory leak + - drm/amd/display: Use PSR version selected during set_psr_caps + - usb: gadget: tegra-xudc: Do not program SPARAM + - usb: gadget: tegra-xudc: Fix control endpoint's definitions + - usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value + - ptp: replace snprintf with sysfs_emit + - Bluetooth: hci_sync: Fix queuing commands when HCI_UNREGISTER is set + - selftests, xsk: Fix bpf_res cleanup test + - net/mlx5e: TC, Hold sample_attr on stack instead of pointer + - drm/amdkfd: Don't take process mutex for svm ioctls + - drm/amdkfd: Ensure mm remain valid in svm deferred_list work + - drm/amdkfd: svm range restore work deadlock when process exit + - drm/amdgpu: Fix an error message in rmmod + - mlxsw: spectrum: Guard against invalid local ports + - RDMA/rtrs-clt: Do stop and failover outside reconnect work. + - powerpc/xive: Export XIVE IPI information for online-only processors. + - powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 + - ath11k: fix kernel panic during unload/load ath11k modules + - ath11k: pci: fix crash on suspend if board file is not found + - ath11k: mhi: use mhi_sync_power_up() + - net/smc: Send directly when TCP_CORK is cleared + - drm/bridge: Add missing pm_runtime_put_sync + - bpf: Make dst_port field in struct bpf_sock 16-bit wide + - scsi: mvsas: Replace snprintf() with sysfs_emit() + - scsi: bfa: Replace snprintf() with sysfs_emit() + - drm/v3d: fix missing unlock + - power: supply: axp20x_battery: properly report current when discharging + - mt76: mt7921: fix crash when startup fails. + - mt76: dma: initialize skip_unmap in mt76_dma_rx_fill + - i40e: Add sending commands in atomic context + - cfg80211: don't add non transmitted BSS to 6GHz scanned channels + - libbpf: Fix build issue with llvm-readelf + - ipv6: make mc_forwarding atomic + - ref_tracker: implement use-after-free detection + - net: initialize init_net earlier + - powerpc: Set crashkernel offset to mid of RMA region + - drm/amdgpu: Fix recursive locking warning + - scsi: smartpqi: Fix rmmod stack trace + - scsi: smartpqi: Fix kdump issue when controller is locked up + - PCI: aardvark: Fix support for MSI interrupts + - kvm: selftests: aarch64: fix assert in gicv3_access_reg + - kvm: selftests: aarch64: pass vgic_irq guest args as a pointer + - kvm: selftests: aarch64: fix the failure check in + kvm_set_gsi_routing_irqchip_check + - kvm: selftests: aarch64: fix some vgic related comments + - kvm: selftests: aarch64: use a tighter assert in vgic_poke_irq() + - iommu/arm-smmu-v3: fix event handling soft lockup + - usb: ehci: add pci device support for Aspeed platforms + - KVM: arm64: Do not change the PMU event filter after a VCPU has run + - libbpf: Fix accessing syscall arguments on powerpc + - libbpf: Fix accessing the first syscall argument on arm64 + - libbpf: Fix accessing the first syscall argument on s390 + - PCI: endpoint: Fix alignment fault error in copy tests + - tcp: Don't acquire inet_listen_hashbucket::lock with disabled BH. + - PCI: pciehp: Add Qualcomm quirk for Command Completed erratum + - scsi: mpi3mr: Fix deadlock while canceling the fw event + - scsi: mpi3mr: Fix reporting of actual data transfer size + - scsi: mpi3mr: Fix memory leaks + - powerpc/set_memory: Avoid spinlock recursion in change_page_attr() + - power: supply: axp288-charger: Set Vhold to 4.4V + - drm/sprd: fix potential NULL dereference + - drm/sprd: check the platform_get_resource() return value + - drm/amd/display: reset lane settings after each PHY repeater LT + - net/mlx5e: Disable TX queues before registering the netdev + - HID: apple: Report Magic Keyboard 2021 battery over USB + - HID: apple: Report Magic Keyboard 2021 with fingerprint reader battery over + USB + - usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() + - iwlwifi: mvm: Correctly set fragmented EBS + - iwlwifi: fix small doc mistake for iwl_fw_ini_addr_val + - iwlwifi: mvm: move only to an enabled channel + - ipv6: annotate some data-races around sk->sk_prot + - drm/msm/dsi: Remove spurious IRQF_ONESHOT flag + - x86/mce: Work around an erratum on fast string copy instructions + - rtw89: fix RCU usage in rtw89_core_txq_push() + - ath11k: Fix frames flush failure caused by deadlock + - ipv4: Invalidate neighbour for broadcast address upon address addition + - rtw88: change rtw_info() to proper message level + - dm ioctl: prevent potential spectre v1 gadget + - dm: requeue IO if mapping table not yet available + - drm/amdkfd: make CRAT table missing message informational only + - vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA + - scsi: pm8001: Fix pm80xx_pci_mem_copy() interface + - scsi: pm8001: Fix pm8001_mpi_task_abort_resp() + - scsi: pm8001: Fix tag values handling + - scsi: pm8001: Fix task leak in pm8001_send_abort_all() + - scsi: pm8001: Fix tag leaks on error + - scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() + - mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU + - mctp: make __mctp_dev_get() take a refcount hold + - powerpc/64s/hash: Make hash faults work in NMI context + - mt76: mt7615: Fix assigning negative values to unsigned variable + - power: supply: axp288_charger: Use acpi_quirk_skip_acpi_ac_and_battery() + - power: supply: axp288_fuel_gauge: Use acpi_quirk_skip_acpi_ac_and_battery() + - scsi: aha152x: Fix aha152x_setup() __setup handler return value + - scsi: hisi_sas: Free irq vectors in order for v3 HW + - scsi: hisi_sas: Limit users changing debugfs BIST count value + - net/smc: correct settings of RMB window update limit + - mips: ralink: fix a refcount leak in ill_acc_of_setup() + - iavf: stop leaking iavf_status as "errno" values + - macvtap: advertise link netns via netlink + - platform/x86: thinkpad_acpi: Add dual fan probe + - tuntap: add sanity checks about msg_controllen in sendmsg + - Bluetooth: mediatek: fix the conflict between mtk and msft vendor event + - Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} + - Bluetooth: use memset avoid memory leaks + - bnxt_en: Eliminate unintended link toggle during FW reset + - PCI: endpoint: Fix misused goto label + - MIPS: fix fortify panic when copying asm exception handlers + - powerpc/code-patching: Pre-map patch area + - powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E + - powerpc/secvar: fix refcount leak in format_show() + - scsi: libfc: Fix use after free in fc_exch_abts_resp() + - platform/x86: x86-android-tablets: Depend on EFI and SPI + - can: isotp: set default value for N_As to 50 micro seconds + - can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before + calling es58x_check_msg_len() + - riscv: Fixed misaligned memory access. Fixed pointer comparison. + - net: account alternate interface name memory + - net: limit altnames to 64k total + - net/mlx5e: Remove overzealous validations in netlink EEPROM query + - platform/x86: hp-wmi: Fix SW_TABLET_MODE detection method + - platform/x86: hp-wmi: Fix 0x05 error code reported by several WMI calls + - net: sfp: add 2500base-X quirk for Lantech SFP module + - usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm + - xen/usb: harden xen_hcd against malicious backends + - mt76: fix monitor mode crash with sdio driver + - xtensa: fix DTC warning unit_address_format + - iwlwifi: mei: fix building iwlmei + - MIPS: ingenic: correct unit node address + - Bluetooth: Fix use after free in hci_send_acl + - netfilter: conntrack: revisit gc autotuning + - netlabel: fix out-of-bounds memory accesses + - ceph: fix inode reference leakage in ceph_get_snapdir() + - ceph: fix memory leak in ceph_readdir when note_last_dentry returns error + - lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option + - init/main.c: return 1 from handled __setup() functions + - minix: fix bug when opening a file with O_DIRECT + - clk: si5341: fix reported clk_rate when output divider is 2 + - clk: mediatek: Fix memory leaks on probe + - staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances + - staging: vchiq_core: handle NULL result of find_service_by_handle + - phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use + - phy: amlogic: meson8b-usb2: Use dev_err_probe() + - phy: amlogic: meson8b-usb2: fix shared reset control use + - clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 + - cpufreq: CPPC: Fix performance/frequency conversion + - opp: Expose of-node's name in debugfs + - staging: wfx: apply the necessary SDIO quirks for the Silabs WF200 + - staging: wfx: fix an error handling in wfx_init_common() + - w1: w1_therm: fixes w1_seq for ds28ea00 sensors + - NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() + - NFSv4: Protect the state recovery thread against direct reclaim + - habanalabs: fix possible memory leak in MMU DR fini + - habanalabs: reject host map with mmu disabled + - habanalabs/gaudi: handle axi errors from NIC engines + - xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 + - clk: ti: Preserve node in ti_dt_clocks_register() + - clk: Enforce that disjoints limits are invalid + - SUNRPC/xprt: async tasks mustn't block waiting for memory + - SUNRPC: remove scheduling boost for "SWAPPER" tasks. + - NFS: swap IO handling is slightly different for O_DIRECT IO + - NFS: swap-out must always use STABLE writes. + - x86: Annotate call_on_stack() + - x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy + - serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() + - virtio_console: eliminate anonymous module_init & module_exit + - jfs: prevent NULL deref in diFree + - SUNRPC: Fix socket waits for write buffer space + - NFS: nfsiod should not block forever in mempool_alloc() + - NFS: Avoid writeback threads getting stuck in mempool_alloc() + - selftests: net: Add tls config dependency for tls selftests + - parisc: Fix CPU affinity for Lasi, WAX and Dino chips + - parisc: Fix patch code locking and flushing + - mm: fix race between MADV_FREE reclaim and blkdev direct IO read + - drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() + - Drivers: hv: vmbus: Fix initialization of device object in + vmbus_device_register() + - Drivers: hv: vmbus: Fix potential crash on module unload + - netfilter: bitwise: fix reduce comparisons + - Revert "NFSv4: Handle the special Linux file open access mode" + - NFSv4: fix open failure with O_ACCMODE flag + - scsi: core: scsi_logging: Fix a BUG + - scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling + - scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() + - scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() + - vdpa: mlx5: prevent cvq work from hogging CPU + - net: sfc: add missing xdp queue reinitialization + - net/tls: fix slab-out-of-bounds bug in decrypt_internal + - vrf: fix packet sniffing for traffic originating from ip tunnels + - skbuff: fix coalescing for page_pool fragment recycling + - Revert "net: dsa: stop updating master MTU from master.c" + - ice: Clear default forwarding VSI during VSI release + - ice: Fix MAC address setting + - mctp: Fix check for dev_hard_header() result + - mctp: Use output netdev to allocate skb headroom + - net: ipv4: fix route with nexthop object delete warning + - net: stmmac: Fix unset max_speed difference between DT and non-DT platforms + - drm/imx: imx-ldb: Check for null pointer after calling kmemdup + - drm/imx: Fix memory leak in imx_pd_connector_get_modes + - drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe + - regulator: rtq2134: Fix missing active_discharge_on setting + - spi: rpc-if: Fix RPM imbalance in probe error path + - regulator: atc260x: Fix missing active_discharge_on setting + - arch/arm64: Fix topology initialization for core scheduling + - bnxt_en: Synchronize tx when xdp redirects happen on same ring + - bnxt_en: reserve space inside receive page for skb_shared_info + - bnxt_en: Prevent XDP redirect from running when stopping TX queue + - sfc: Do not free an empty page_ring + - RDMA/mlx5: Don't remove cache MRs when a delay is needed + - RDMA/mlx5: Add a missing update of cache->last_add + - IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD + - cifs: fix potential race with cifsd thread + - IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition + - sctp: count singleton chunks in assoc user stats + - dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe + - ice: Set txq_teid to ICE_INVAL_TEID on ring creation + - ice: Do not skip not enabled queues in ice_vc_dis_qs_msg + - ipv6: Fix stats accounting in ip6_pkt_drop + - ice: synchronize_rcu() when terminating rings + - ice: xsk: fix VSI state check in ice_xsk_wakeup() + - ice: clear cmd_type_offset_bsz for TX rings + - net: openvswitch: don't send internal clone attribute to the userspace. + - net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() + - net: openvswitch: fix leak of nested actions + - rxrpc: fix a race in rxrpc_exit_net() + - net: sfc: fix using uninitialized xdp tx_queue + - net: phy: mscc-miim: reject clause 45 register accesses + - qede: confirm skb is allocated before using + - spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() + - drm/amd/display: Fix for dmub outbox notification enable + - drm/amd/display: Remove redundant dsc power gating from init_hw + - bpf: Support dual-stack sockets in bpf_tcp_check_syncookie + - drbd: Fix five use after free bugs in get_initial_state + - scsi: sd: sd_read_cpr() requires VPD pages + - scsi: ufs: ufshpb: Fix a NULL check on list iterator + - io_uring: nospec index for tags on files update + - io_uring: don't touch scm_fp_list after queueing skb + - SUNRPC: Handle ENOMEM in call_transmit_status() + - SUNRPC: Handle low memory situations in call_status() + - SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() + - iommu/omap: Fix regression in probe for NULL pointer dereference + - perf unwind: Don't show unwind error messages when augmenting frame pointer + stack + - perf: arm-spe: Fix perf report --mem-mode + - perf tools: Fix perf's libperf_print callback + - perf session: Remap buf if there is no space for event + - arm64: Add part number for Arm Cortex-A78AE + - scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() + - scsi: ufs: ufs-pci: Add support for Intel MTL + - Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" + - mmc: block: Check for errors after write on SPI + - mmc: mmci: stm32: correctly check all elements of sg list + - mmc: renesas_sdhi: special 4tap settings only apply to HS400 + - mmc: renesas_sdhi: don't overwrite TAP settings when HS400 tuning is + complete + - mmc: core: Fixup support for writeback-cache for eMMC and SD + - lz4: fix LZ4_decompress_safe_partial read out of bound + - highmem: fix checks in __kmap_local_sched_{in,out} + - mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) + - mm/mempolicy: fix mpol_new leak in shared_policy_replace + - io_uring: don't check req->file in io_fsync_prep() + - io_uring: defer splice/tee file validity check until command issue + - io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF + - io_uring: fix race between timeout flush and removal + - x86/pm: Save the MSR validity status at context setup + - x86/speculation: Restore speculation related MSRs during S3 resume + - perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids + - btrfs: fix qgroup reserve overflow the qgroup limit + - btrfs: zoned: traverse devices under chunk_mutex in btrfs_can_activate_zone + - btrfs: remove device item and update super block in the same transaction + - btrfs: avoid defragging extents whose next extents are not targets + - btrfs: prevent subvol with swapfile from being deleted + - spi: core: add dma_map_dev for __spi_unmap_msg() + - cifs: force new session setup and tcon for dfs + - qed: fix ethtool register dump + - arm64: patch_text: Fixup last cpu should be master + - RDMA/hfi1: Fix use-after-free bug for mm struct + - drbd: fix an invalid memory access caused by incorrect use of list iterator + - gpio: Restrict usage of GPIO chip irq members before initialization + - x86/msi: Fix msi message data shadow struct + - x86/mm/tlb: Revert retpoline avoidance approach + - perf/x86/intel: Don't extend the pseudo-encoding to GP counters + - ata: sata_dwc_460ex: Fix crash due to OOB write + - perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator + - perf/core: Inherit event_caps + - irqchip/gic-v3: Fix GICR_CTLR.RWP polling + - fbdev: Fix unregistering of framebuffers without device + - amd/display: set backlight only if required + - drm/panel: ili9341: fix optional regulator handling + - drm/amd/display: Fix by adding FPU protection for dcn30_internal_validate_bw + - drm/amdgpu/display: change pipe policy for DCN 2.1 + - drm/amdgpu/smu10: fix SoC/fclk units in auto mode + - drm/amdgpu/vcn: Fix the register setting for vcn1 + - drm/nouveau/pmu: Add missing callbacks for Tegra devices + - drm/amdkfd: Create file descriptor after client is added to smi_clients list + - drm/amdgpu: don't use BACO for reset in S3 + - SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() + - Revert "ACPI: processor: idle: Only flush cache on entering C3" + - drm/amdkfd: Fix variable set but not used warning + - net/smc: send directly on setting TCP_NODELAY + - Revert "selftests: net: Add tls config dependency for tls selftests" + - bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide + - selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port + - bpf: Treat bpf_sk_lookup remote_port as a 2-byte field + - perf build: Don't use -ffat-lto-objects in the python feature test when + building with clang-13 + - perf python: Fix probing for some clang command line options + - tools build: Filter out options and warnings not supported by clang + - tools build: Use $(shell ) instead of `` to get embedded libperl's ccopts + - dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" + - KVM: avoid NULL pointer dereference in kvm_dirty_ring_push + - Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() + - powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit + - Revert "powerpc: Set max_mapnr correctly" + - x86/bug: Prevent shadowing in __WARN_FLAGS + - objtool: Fix SLS validation for kcov tail-call replacement + - sched/core: Fix forceidle balancing + - sched: Teach the forced-newidle balancer about CPU affinity limitation. + - x86,static_call: Fix __static_call_return0 for i386 + - x86/extable: Prefer local labels in .set directives + - irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling + - powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S + - irqchip/gic, gic-v3: Prevent GSI to SGI translations + - mm/sparsemem: fix 'mem_section' will never be NULL gcc 12 warning + - static_call: Don't make __static_call_return0 static + - io_uring: move read/write file prep state into actual opcode handler + - io_uring: propagate issue_flags state down to file assignment + - io_uring: defer file assignment + - io_uring: drop the old style inflight file tracking + - Linux 5.17.3 + + * Jammy update: v5.17.2 upstream stable release Edit (LP: #1968984) + - Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - USB: serial: pl2303: add IBM device IDs + - dt-bindings: usb: hcd: correct usb-device path + - USB: serial: pl2303: fix GS type detection + - USB: serial: simple: add Nokia phone driver + - mm: kfence: fix missing objcg housekeeping for SLAB + - locking/lockdep: Avoid potential access of invalid memory in lock_class + - drm/amdgpu: move PX checking into amdgpu_device_ip_early_init + - drm/amdgpu: only check for _PR3 on dGPUs + - iommu/iova: Improve 32-bit free space estimate + - block: flush plug based on hardware and software queue order + - block: ensure plug merging checks the correct queue at least once + - usb: typec: tipd: Forward plug orientation to typec subsystem + - USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c + - xhci: fix garbage USBSTS being logged in some cases + - xhci: fix runtime PM imbalance in USB2 resume + - xhci: make xhci_handshake timeout for xhci_reset() adjustable + - xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() + - mei: me: disable driver on the ign firmware + - mei: me: add Alder Lake N device id. + - mei: avoid iterator usage outside of list_for_each_entry + - bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series + - bus: mhi: Fix pm_state conversion to string + - bus: mhi: Fix MHI DMA structure endianness + - docs: sphinx/requirements: Limit jinja2<3.1 + - coresight: Fix TRCCONFIGR.QE sysfs interface + - coresight: syscfg: Fix memleak on registration failure in + cscfg_create_device + - dt-bindings: iio: adc: zynqmp_ams: Add clock entry + - iio: adc: xilinx-ams: Fix single channel switching sequence + - iio: accel: mma8452: use the correct logic to get mma8452_data + - iio: adc: aspeed: Add divider flag to fix incorrect voltage reading. + - iio: imu: st_lsm6dsx: use dev_to_iio_dev() to get iio_dev struct + - iio: afe: rescale: use s64 for temporary scale calculations + - iio: adc: xilinx-ams: Fixed missing PS channels + - iio: adc: xilinx-ams: Fixed wrong sequencer register settings + - iio: inkern: apply consumer scale on IIO_VAL_INT cases + - iio: inkern: apply consumer scale when no channel scale is available + - iio: inkern: make a best effort on offset calculation + - greybus: svc: fix an error handling bug in gb_svc_hello() + - clk: rockchip: re-add rational best approximation algorithm to the + fractional divider + - clk: uniphier: Fix fixed-rate initialization + - ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE + - cifs: truncate the inode and mapping when we simulate fcollapse + - cifs: fix handlecache and multiuser + - cifs: we do not need a spinlock around the tree access during umount + - KEYS: fix length validation in keyctl_pkey_params_get_2() + - KEYS: asymmetric: enforce that sig algo matches key algo + - KEYS: asymmetric: properly validate hash_algo and encoding + - Documentation: add link to stable release candidate tree + - Documentation: update stable tree link + - firmware: stratix10-svc: add missing callback parameter on RSU + - firmware: sysfb: fix platform-device leak in error path + - HID: intel-ish-hid: Use dma_alloc_coherent for firmware update + - SUNRPC: avoid race between mod_timer() and del_timer_sync() + - SUNRPC: Do not dereference non-socket transports in sysfs + - NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR + - NFSD: prevent underflow in nfssvc_decode_writeargs() + - NFSD: prevent integer overflow on 32 bit systems + - f2fs: fix to unlock page correctly in error path of is_alive() + - f2fs: quota: fix loop condition at f2fs_quota_sync() + - f2fs: fix to do sanity check on .cp_pack_total_block_count + - remoteproc: Fix count check in rproc_coredump_write() + - mm/mlock: fix two bugs in user_shm_lock() + - pinctrl: ingenic: Fix regmap on X series SoCs + - pinctrl: samsung: drop pin banks references on error paths + - net: bnxt_ptp: fix compilation error + - spi: mxic: Fix the transmit path + - mtd: spi-nor: Skip erase logic when SPI_NOR_NO_ERASE is set + - mtd: rawnand: protect access to rawnand devices while in suspend + - can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path + - can: m_can: m_can_tx_handler(): fix use after free of skb + - can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error + path + - jffs2: fix use-after-free in jffs2_clear_xattr_subsystem + - jffs2: fix memory leak in jffs2_do_mount_fs + - jffs2: fix memory leak in jffs2_scan_medium + - mm: fs: fix lru_cache_disabled race in bh_lru + - mm: don't skip swap entry even if zap_details specified + - mm/pages_alloc.c: don't create ZONE_MOVABLE beyond the end of a node + - mm: invalidate hwpoison page cache page in fault path + - mempolicy: mbind_range() set_policy() after vma_merge() + - scsi: core: sd: Add silence_suspend flag to suppress some PM messages + - scsi: ufs: Fix runtime PM messages never-ending cycle + - scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters + - scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands + - qed: display VF trust config + - qed: validate and restrict untrusted VFs vlan promisc mode + - riscv: dts: canaan: Fix SPI3 bus width + - riscv: Fix fill_callchain return value + - riscv: Increase stack size under KASAN + - RISC-V: Declare per cpu boot data as static + - Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" + - cifs: do not skip link targets when an I/O fails + - cifs: fix incorrect use of list iterator after the loop + - cifs: prevent bad output lengths in smb2_ioctl_query_info() + - cifs: fix NULL ptr dereference in smb2_ioctl_query_info() + - ALSA: cs4236: fix an incorrect NULL check on list iterator + - ALSA: hda: Avoid unsol event during RPM suspending + - ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock + - ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 + - rtc: mc146818-lib: fix locking in mc146818_set_time + - rtc: pl031: fix rtc features null pointer dereference + - io_uring: ensure that fsnotify is always called + - ocfs2: fix crash when mount with quota enabled + - drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD + panels + - mm: madvise: skip unmapped vma holes passed to process_madvise + - mm: madvise: return correct bytes advised with process_madvise + - Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" + - mm,hwpoison: unmap poisoned page before invalidation + - mm: only re-generate demotion targets when a numa node changes its N_CPU + state + - mm/kmemleak: reset tag when compare object pointer + - dm stats: fix too short end duration_ns when using precise_timestamps + - dm: fix use-after-free in dm_cleanup_zoned_dev() + - dm: interlock pending dm_io and dm_wait_for_bios_completion + - dm: fix double accounting of flush with data + - dm integrity: set journal entry unused when shrinking device + - tracing: Have trace event string test handle zero length strings + - drbd: fix potential silent data corruption + - can: isotp: sanitize CAN ID checks in isotp_bind() + - PCI: fu740: Force 2.5GT/s for initial device probe + - arm64: signal: nofpsimd: Do not allocate fp/simd context when not available + - arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory + zones + - arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 + - arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721e: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j7200: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-am64: Fix gic-v3 compatible regs + - arm64: dts: ti: k3-j721s2: Fix gic-v3 compatible regs + - ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM + - mmc: core: use sysfs_emit() instead of sprintf() + - Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query + flag" + - ACPI: properties: Consistently return -ENOENT if there are no more + references + - coredump: Also dump first pages of non-executable ELF libraries + - ext4: fix ext4_fc_stats trace point + - ext4: fix fs corruption when tring to remove a non-empty directory with IO + error + - ext4: make mb_optimize_scan option work with set/unset mount cmd + - ext4: make mb_optimize_scan performance mount option work with extents + - samples/landlock: Fix path_list memory leak + - landlock: Use square brackets around "landlock-ruleset" + - mailbox: tegra-hsp: Flush whole channel + - btrfs: zoned: put block group after final usage + - block: fix rq-qos breakage from skipping rq_qos_done_bio() + - block: limit request dispatch loop duration + - block: don't merge across cgroup boundaries if blkcg is enabled + - drm/edid: check basic audio support on CEA extension block + - fbdev: Hot-unplug firmware fb devices on forced removal + - video: fbdev: sm712fb: Fix crash in smtcfb_read() + - video: fbdev: atari: Atari 2 bpp (STe) palette bugfix + - rfkill: make new event layout opt-in + - ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes + - ARM: dts: at91: sama5d2: Fix PMERRLOC resource size + - ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5250 + - ARM: dts: exynos: add missing HDMI supplies on SMDK5420 + - mgag200 fix memmapsl configuration in GCTL6 register + - carl9170: fix missing bit-wise or operator for tx_params + - pstore: Don't use semaphores in always-atomic-context code + - thermal: int340x: Increase bitmap size + - lib/raid6/test: fix multiple definition linking error + - exec: Force single empty string when argv is empty + - crypto: rsa-pkcs1pad - only allow with rsa + - crypto: rsa-pkcs1pad - correctly get hash from source scatterlist + - crypto: rsa-pkcs1pad - restore signature length check + - crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() + - bcache: fixup multiple threads crash + - PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() + - DEC: Limit PMAX memory probing to R3k systems + - media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC + - media: omap3isp: Use struct_group() for memcpy() region + - media: venus: vdec: fixed possible memory leak issue + - media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 + - media: venus: venc: Fix h264 8x8 transform control + - media: davinci: vpif: fix unbalanced runtime PM get + - media: davinci: vpif: fix unbalanced runtime PM enable + - media: davinci: vpif: fix use-after-free on driver unbind + - mips: Always permit to build u-boot images + - btrfs: zoned: mark relocation as writing + - btrfs: extend locking to all space_info members accesses + - btrfs: verify the tranisd of the to-be-written dirty extent buffer + - xtensa: define update_mmu_tlb function + - xtensa: fix stop_machine_cpuslocked call in patch_text + - xtensa: fix xtensa_wsr always writing 0 + - KVM: s390x: fix SCK locking + - drm/syncobj: flatten dma_fence_chains on transfer + - drm/nouveau/backlight: Fix LVDS backlight detection on some laptops + - drm/nouveau/backlight: Just set all backlight types as RAW + - drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB + - brcmfmac: firmware: Allocate space for default boardrev in nvram + - brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path + - brcmfmac: pcie: Declare missing firmware files in pcie.c + - brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio + - brcmfmac: pcie: Fix crashes due to early IRQs + - drm/i915/opregion: check port number bounds for SWSCI display power state + - drm/i915/gem: add missing boundary check in vm_access + - PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails + - PCI: pciehp: Clear cmd_busy bit in polling mode + - PCI: xgene: Revert "PCI: xgene: Use inbound resources for setup" + - PCI: xgene: Revert "PCI: xgene: Fix IB window setup" + - regulator: qcom_smd: fix for_each_child.cocci warnings + - selinux: access superblock_security_struct in LSM blob way + - selinux: check return value of sel_make_avc_files + - crypto: ccp - Ensure psp_ret is always init'd in + __sev_platform_init_locked() + - crypto: qat - fix a signedness bug in get_service_enabled() + - hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER + - crypto: sun8i-ss - really disable hash on A80 + - crypto: kdf - Select hmac in addition to sha256 + - crypto: qat - fix access to PFVF interrupt registers for GEN4 + - crypto: authenc - Fix sleep in atomic context in decrypt_tail + - crypto: octeontx2 - select CONFIG_NET_DEVLINK + - crypto: mxs-dcp - Fix scatterlist processing + - selinux: Fix selinux_sb_mnt_opts_compat() + - thermal: int340x: Check for NULL after calling kmemdup() + - crypto: octeontx2 - remove CONFIG_DM_CRYPT check + - spi: tegra114: Add missing IRQ check in tegra_spi_probe + - spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe + - perf: MARVELL_CN10K_TAD_PMU should depend on ARCH_THUNDER + - selftests/sgx: Fix NULL-pointer-dereference upon early test failure + - selftests/sgx: Do not attempt enclave build without valid enclave + - selftests/sgx: Ensure enclave data available during debug print + - stack: Constrain and fix stack offset randomization with Clang builds + - arm64/mm: avoid fixmap race condition when create pud mapping + - security: add sctp_assoc_established hook + - blk-cgroup: set blkg iostat after percpu stat aggregation + - selftests/x86: Add validity check and allow field splitting + - selftests/sgx: Treat CC as one argument + - crypto: rockchip - ECB does not need IV + - block: update io_ticks when io hang + - audit: log AUDIT_TIME_* records only from rules + - EVM: fix the evm= __setup handler return value + - crypto: ccree - don't attempt 0 len DMA mappings + - crypto: hisilicon/sec - fix the aead software fallback for engine + - spi: pxa2xx-pci: Balance reference count for PCI DMA device + - hwmon: (pmbus) Add mutex to regulator ops + - hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING + - nvme: cleanup __nvme_check_ids + - nvme: fix the check for duplicate unique identifiers + - block: don't delete queue kobject before its children + - PM: hibernate: fix __setup handler error handling + - PM: suspend: fix return value of __setup handler + - spi: spi-zynqmp-gqspi: Handle error for dma_set_mask + - hwrng: atmel - disable trng on failure path + - crypto: sun8i-ss - call finalize with bh disabled + - crypto: sun8i-ce - call finalize with bh disabled + - crypto: amlogic - call finalize with bh disabled + - crypto: gemini - call finalize with bh disabled + - crypto: vmx - add missing dependencies + - clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix + - clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts + - clocksource/drivers/timer-microchip-pit64b: Use notrace + - clocksource/drivers/timer-of: Check return value of of_iomap in + timer_of_base_init() + - arm64: prevent instrumentation of bp hardening callbacks + - perf/arm-cmn: Hide XP PUB events for CMN-600 + - perf/arm-cmn: Update watchpoint format + - KEYS: trusted: Fix trusted key backends when building as module + - KEYS: trusted: Avoid calling null function trusted_key_exit + - ACPI: APEI: fix return value of __setup handlers + - crypto: ccp - ccp_dmaengine_unregister release dma channels + - crypto: ccree - Fix use after free in cc_cipher_exit() + - crypto: qat - fix initialization of pfvf cap_msg structures + - crypto: qat - fix initialization of pfvf rts_map_msg structures + - hwrng: nomadik - Change clk_disable to clk_disable_unprepare + - hwmon: (pmbus) Add Vin unit off handling + - clocksource: acpi_pm: fix return value of __setup handler + - io_uring: don't check unrelated req->open.how in accept request + - io_uring: terminate manual loop iterator loop correctly for non-vecs + - watch_queue: Fix NULL dereference in error cleanup + - watch_queue: Actually free the watch + - f2fs: fix to enable ATGC correctly via gc_idle sysfs interface + - sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa + - sched/core: Export pelt_thermal_tp + - sched/sugov: Ignore 'busy' filter when rq is capped by uclamp_max + - sched/uclamp: Fix iowait boost escaping uclamp restriction + - rseq: Remove broken uapi field layout on 32-bit little endian + - perf/core: Fix address filter parser for multiple filters + - perf/x86/intel/pt: Fix address filter config for 32-bit kernel + - sched/fair: Improve consistency of allowed NUMA balance calculations + - f2fs: fix missing free nid in f2fs_handle_failed_inode + - ext4: fix remount with 'abort' option + - nfsd: more robust allocation failure handling in nfsd_file_cache_init + - sched/cpuacct: Fix charge percpu cpuusage + - sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race + - f2fs: fix to avoid potential deadlock + - btrfs: fix unexpected error path when reflinking an inline extent + - iomap: Fix iomap_invalidatepage tracepoint + - fs: erofs: add sanity check for kobject in erofs_unregister_sysfs + - f2fs: fix compressed file start atomic write may cause data corruption + - cifs: use a different reconnect helper for non-cifsd threads + - selftests, x86: fix how check_cc.sh is being invoked + - drivers/base/memory: add memory block to memory group after registration + succeeded + - kunit: make kunit_test_timeout compatible with comment + - pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios + - media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size + - media: camss: csid-170: fix non-10bit formats + - media: camss: csid-170: don't enable unused irqs + - media: camss: csid-170: set the right HALT_CMD when disabled + - media: camss: vfe-170: fix "VFE halt timeout" error + - media: staging: media: imx: imx7-mipi-csis: Make subdev name unique + - media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls + - media: mtk-vcodec: potential dereference of null pointer + - media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation + - media: imx: imx8mq-mipi_csi2: fix system resume + - media: bttv: fix WARNING regression on tunerless devices + - media: atmel: atmel-sama7g5-isc: fix ispck leftover + - ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively + - ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio + - ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting + - ASoC: simple-card-utils: Set sysclk on all components + - memory: tegra20-emc: Correct memory device mask + - media: coda: Fix missing put_device() call in coda_get_vdoa_data + - media: meson: vdec: potential dereference of null pointer + - media: hantro: Fix overfill bottom register field name + - media: ov6650: Fix set format try processing path + - media: v4l: Avoid unaligned access warnings when printing 4cc modifiers + - media: ov5648: Don't pack controls struct + - media: ov2740: identify module after subdev initialisation + - media: aspeed: Correct value for h-total-pixels + - video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to + avoid black screen + - video: fbdev: controlfb: Fix COMPILE_TEST build + - video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() + - video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() + - video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() + - ARM: dts: Fix OpenBMC flash layout label addresses + - ASoC: max98927: add missing header file + - arm64: dts: qcom: sc7280: Fix gmu unit address + - firmware: qcom: scm: Remove reassignment to desc following initializer + - ARM: dts: qcom: ipq4019: fix sleep clock + - soc: qcom: rpmpd: Check for null return of devm_kcalloc + - soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem + - soc: qcom: aoss: Fix missing put_device call in qmp_get + - soc: qcom: aoss: remove spurious IRQF_ONESHOT flags + - arm64: dts: qcom: sdm845: fix microphone bias properties and values + - arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema + - arm64: dts: qcom: msm8916-j5: Fix typo + - arm64: dts: broadcom: bcm4908: use proper TWD binding + - arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8350: Correct TCS configuration for apps rsc + - arm64: dts: qcom: sm8450: Update cpuidle states parameters + - arm64: dts: qcom: msm8994: Provide missing "xo_board" and "sleep_clk" to GCC + - arm64: dts: qcom: ipq6018: fix usb reference period + - firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not + defined + - soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe + - cpuidle: qcom-spm: Check if any CPU is managed by SPM + - ARM: dts: sun8i: v3s: Move the csi1 block to follow address order + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - vsprintf: Fix potential unaligned access + - ARM: dts: qcom: sdx55: Fix the address used for PCIe EP local addr space + - ARM: dts: imx: Add missing LVDS decoder on M53Menlo + - media: mexon-ge2d: fixup frames size in registers + - media: video/hdmi: handle short reads of hdmi info frame. + - media: ti-vpe: cal: Fix a NULL pointer dereference in + cal_ctx_v4l2_init_formats() + - media: em28xx: initialize refcount before kref_get + - media: uapi: Init VP9 stateless decode params + - media: usb: go7007: s2250-board: fix leak in probe() + - media: cedrus: H265: Fix neighbour info buffer size + - media: cedrus: h264: Fix neighbour info buffer size + - arm64: dts: ti: k3-j721s2-mcu-wakeup: Fix the interrupt-parent for + wkup_gpioX instances + - ASoC: codecs: rx-macro: fix accessing compander for aux + - ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: va-macro: fix accessing array out of bounds for enum type + - ASoC: codecs: wc938x: fix accessing array out of bounds for enum type + - ASoC: codecs: wcd938x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix kcontrol max values + - ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put + - media: v4l2-core: Initialize h264 scaling matrix + - media: hantro: sunxi: Fix VP9 steps + - media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated + - selftests: vm: remove dependecy from internal kernel macros + - selftests/lkdtm: Add UBSAN config + - vsprintf: Fix %pK with kptr_restrict == 0 + - uaccess: fix nios2 and microblaze get_user_8() + - ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() + - ASoC: acp: check the return value of devm_kzalloc() in + acp_legacy_dai_links_create() + - soc: mediatek: pm-domains: Add wakeup capacity support in power domain + - mmc: sdhci_am654: Fix the driver data of AM64 SoC + - ASoC: ti: davinci-i2s: Add check for clk_enable() + - ALSA: spi: Add check for clk_enable() + - arm64: dts: ns2: Fix spi-cpol and spi-cpha property + - arm64: dts: broadcom: Fix sata nodename + - printk: fix return value of printk.devkmsg __setup handler + - ASoC: mxs-saif: Handle errors for clk_enable + - ASoC: atmel_ssc_dai: Handle errors for clk_enable + - ASoC: dwc-i2s: Handle errors for clk_enable + - ASoC: soc-compress: prevent the potentially use of null pointer + - media: i2c: Fix pixel array positions in ov8865 + - memory: emif: Add check for setup_interrupts + - memory: emif: check the pointer temp in get_device_details() + - ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction + - arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly + - m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined + - media: stk1160: If start stream fails, return buffers with + VB2_BUF_STATE_QUEUED + - media: vidtv: Check for null return of vzalloc + - ASoC: cs35l41: Fix GPIO2 configuration + - ASoC: cs35l41: Fix max number of TX channels + - ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe + - ASoC: wm8350: Handle error for wm8350_register_irq + - ASoC: fsi: Add check for clk_enable + - video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of + - media: saa7134: fix incorrect use to determine if list is empty + - ivtv: fix incorrect device_caps for ivtvfb + - ASoC: atmel: Fix error handling in snd_proto_probe + - ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in + rockchip_i2s_probe + - ASoC: SOF: Add missing of_node_put() in imx8m_probe + - ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe + - ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe + - ASoC: dmaengine: do not use a NULL prepare_slave_config() callback + - ASoC: mxs: Fix error handling in mxs_sgtl5000_probe + - ASoC: fsl_spdif: Disable TX clock when stop + - ASoC: imx-es8328: Fix error return code in imx_es8328_probe() + - ASoC: SOF: Intel: enable DMI L1 for playback streams + - ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in + msm8916_wcd_digital_probe + - mmc: davinci_mmc: Handle error for clk_enable + - rtla/osnoise: Fix osnoise hist stop tracing message + - ASoC: rockchip: Fix PM usage reference of rockchip_i2s_tdm_resume + - ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe + - ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe + - ASoC: mediatek: mt8195: Fix error handling in + mt8195_mt6359_rt1019_rt5682_dev_probe + - ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data + - ASoC: amd: Fix reference to PCM buffer address + - ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS + - ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx + - drm/bridge: sn65dsi83: Fix an error handling path in sn65dsi83_probe() + - drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops + - drm/meson: Fix error handling when afbcd.ops->init fails + - drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev + - drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe + - drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe + - drm: bridge: adv7511: Fix ADV7535 HPD enablement + - ath11k: add missing of_node_put() to avoid leak + - ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern + - drm/v3d/v3d_drv: Check for error num after setting mask + - Bluetooth: hci_sync: unlock on error in hci_inquiry_result_with_rssi_evt() + - ath11k: free peer for station when disconnect from AP for QCA6390/WCN6855 + - drm/panfrost: Check for error num after setting mask + - bpftool: Fix error check when calling hashmap__new() + - libbpf: Fix possible NULL pointer dereference when destroying skeleton + - bpftool: Only set obj->skeleton on complete success + - ath11k: fix error code in ath11k_qmi_assign_target_mem_chunk() + - udmabuf: validate ubuf->pagecount + - bpf: Fix UAF due to race between btf_try_get_module and load_module + - drm/selftests/test-drm_dp_mst_helper: Fix memory leak in + sideband_msg_req_encode_decode + - drm/locking: fix drm_modeset_acquire_ctx kernel-doc + - selftests: bpf: Fix bind on used port + - Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products + - Bluetooth: hci_serdev: call init_rwsem() before p->open() + - Bluetooth: mt7921s: fix firmware coredump retrieve + - Bluetooth: mt7921s: fix bus hang with wrong privilege + - Bluetooth: btmtksdio: refactor btmtksdio_runtime_[suspend|resume]() + - Bluetooth: mt7921s: fix btmtksdio_[drv|fw]_pmctrl() + - Bluetooth: btmtksdio: mask out interrupt status + - mtd: onenand: Check for error irq + - mtd: rawnand: gpmi: fix controller timings setting + - selftests, xsk: Fix rx_full stats test + - drm/edid: Don't clear formats if using deep color + - drm/edid: Split deep color modes between RGB and YUV444 + - ionic: fix type complaint in ionic_dev_cmd_clean() + - ionic: start watchdog after all is setup + - ionic: Don't send reset commands if FW isn't running + - ionic: fix up printing of timeout error + - ionic: Correctly print AQ errors if completions aren't received + - net: dsa: Move VLAN filtering syncing out of dsa_switch_bridge_leave + - net: dsa: Avoid cross-chip syncing of VLAN filtering + - Bluetooth: hci_event: Fix HCI_EV_VENDOR max_len + - drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() + - drm/amd/display: Call dc_stream_release for remove link enc assignment + - drm/amd/display: Fix a NULL pointer dereference in + amdgpu_dm_connector_add_common_modes() + - drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function + - net: phy: at803x: move page selection fix to config_init + - selftests/bpf/test_xdp_redirect_multi: use temp netns for testing + - ath9k_htc: fix uninit value bugs + - ath11k: set WMI_PEER_40MHZ while peer assoc for 6 GHz + - RDMA/core: Set MR type in ib_reg_user_mr + - KVM: PPC: Fix vmx/vsx mixup in mmio emulation + - selftests/net: timestamping: Fix bind_phc check + - rtw88: check for validity before using a pointer + - rtw88: fix idle mode flow for hw scan + - rtw88: fix memory overrun and memory leak during hw_scan + - drm/bridge: lt9611: Fix an error handling path in lt9611_probe() + - i40e: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - i40e: respect metadata on XSK Rx to skb + - ice: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ice: respect metadata on XSK Rx to skb + - igc: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly + - ixgbe: don't reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb + - ixgbe: respect metadata on XSK Rx to skb + - power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe + - ray_cs: Check ioremap return value + - powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch + - KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init + - powerpc/perf: Don't use perf_hw_context for trace IMC PMU + - mt76: connac: fix sta_rec_wtbl tag len + - mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta + mode + - mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv + - mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error + - mt76: mt7921: set EDCA parameters with the MCU CE command + - mt76: mt7921: do not always disable fw runtime-pm + - mt76: mt7921: fix a leftover race in runtime-pm + - mt76: mt7615: fix a leftover race in runtime-pm + - mt76: mt7915: fix ht mcs in mt7915_mac_add_txs_skb() + - mt76: mt7921: fix ht mcs in mt7921_mac_add_txs_skb() + - mt76: mt7921s: fix mt7921s_mcu_[fw|drv]_pmctrl + - mt76: mt7921e: fix possible probe failure after reboot + - mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update + - mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update + - mt76: mt7915: fix possible memory leak in mt7915_mcu_add_sta + - mt76: mt7921s: fix a possible memory leak in mt7921_load_patch + - mt76: mt7915: fix mcs_map in mt7915_mcu_set_sta_he_mcs() + - mt76: mt7915: fix the nss setting in bitrates + - ptp: unregister virtual clocks when unregistering physical clock. + - net: dsa: mv88e6xxx: Enable port policy support on 6097 + - bpf: Fix a btf decl_tag bug when tagging a function + - mac80211: limit bandwidth in HE capabilities + - scripts/dtc: Call pkg-config POSIXly correct + - livepatch: Fix build failure on 32 bits processors + - net: asix: add proper error handling of usb read errors + - i2c: bcm2835: Fix the error handling in 'bcm2835_i2c_probe()' + - mtd: mchp23k256: Add SPI ID table + - mtd: mchp48l640: Add SPI ID table + - selftests/bpf: Extract syscall wrapper + - selftests/bpf: Use "__se_" prefix on architectures without syscall wrapper + - igc: avoid kernel warning when changing RX ring parameters + - igb: refactor XDP registration + - drm/amdgpu: Don't offset by 2 in FRU EEPROM + - PCI: aardvark: Fix reading MSI interrupt number + - PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge + - RDMA/rxe: Check the last packet by RXE_END_MASK + - libbpf: Fix signedness bug in btf_dump_array_data() + - libbpf: Fix riscv register names + - cxl/core: Fix cxl_probe_component_regs() error message + - tools/testing/cxl: Fix root port to host bridge assignment + - cxl/regs: Fix size of CXL Capability Header Register + - Netvsc: Call hv_unmap_memory() in the netvsc_device_remove() + - net:enetc: allocate CBD ring data memory using DMA coherent methods + - libbpf: Fix compilation warning due to mismatched printf format + - rtw88: fix use after free in rtw_hw_scan_update_probe_req() + - drm/bridge: dw-hdmi: use safe format when first in bridge chain + - power: supply: ab8500: Swap max and overvoltage + - libbpf: Fix libbpf.map inheritance chain for LIBBPF_0.7.0 + - libbpf: Use dynamically allocated buffer when receiving netlink messages + - power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init + - HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports + - iommu/ipmmu-vmsa: Check for error num after setting mask + - drm/bridge: anx7625: Fix overflow issue on reading EDID + - ath11k: fix uninitialized rate_idx in ath11k_dp_tx_update_txcompl() + - i2c: pasemi: Drop I2C classes from platform driver variant + - bpftool: Fix the error when lookup in no-btf maps + - drm/amd/pm: enable pm sysfs write for one VF mode + - drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug + - bpftool: Fix pretty print dump for maps without BTF loaded + - libbpf: Fix memleak in libbpf_netlink_recv() + - IB/cma: Allow XRC INI QPs to set their local ACK timeout + - cxl/core/port: Rename bus.c to port.c + - cxl/port: Hold port reference until decoder release + - dax: make sure inodes are flushed before destroy cache + - selftests: mptcp: add csum mib check for mptcp_connect + - iwlwifi: mvm: Don't call iwl_mvm_sta_from_mac80211() with NULL sta + - iwlwifi: mvm: don't iterate unadded vifs when handling FW SMPS req + - iwlwifi: mvm: align locking in D3 test debugfs + - iwlwifi: yoyo: remove DBGI_SRAM address reset writing + - iwlwifi: yoyo: Avoid using dram data if allocation failed + - iwlwifi: mvm: fix off by one in iwl_mvm_stat_iterator_all_macs() + - iwlwifi: Fix -EIO error code that is never returned + - iwlwifi: mvm: Fix an error code in iwl_mvm_up() + - mtd: rawnand: pl353: Set the nand chip node as the flash node + - drm/msm/dp: do not initialize phy until plugin interrupt received + - drm/msm/dp: populate connector of struct dp_panel + - drm/msm/dp: stop link training after link training 2 failed + - drm/msm/dp: always add fail-safe mode into connector mode list + - drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent + - drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode + - drm/msm/dpu: add DSPP blocks teardown + - drm/msm/dpu: fix dp audio condition + - drm/msm/dpu: remove msm_dp cached in dpu_encoder_virt + - drm/msm/dp: fix panel bridge attachment + - i40e: remove dead stores on XSK hotpath + - ath11k: Invalidate cached reo ring entry before accessing it + - mips: Enable KCSAN + - dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS + - vfio/pci: fix memory leak during D3hot to D0 transition + - vfio/pci: wake-up devices around reset functions + - scsi: fnic: Fix a tracing statement + - scsi: pm8001: Fix command initialization in pm80XX_send_read_log() + - scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() + - scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() + - scsi: pm8001: Fix le32 values handling in + pm80xx_set_sas_protocol_timer_config() + - scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() + - scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() + - scsi: pm8001: Fix NCQ NON DATA command task initialization + - scsi: pm8001: Fix NCQ NON DATA command completion handling + - scsi: pm8001: Fix abort all task initialization + - mt76: do not always copy ethhdr in reverse_frag0_hdr_trans + - mt76: fix endianness errors in reverse_frag0_hdr_trans + - mt76: mt7921s: fix missing fc type/sub-type for 802.11 pkts + - net: dsa: realtek-smi: fix kdoc warnings + - net: dsa: realtek-smi: move to subdirectory + - RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR + - drm/amd/display: Remove vupdate_int_entry definition + - TOMOYO: fix __setup handlers return values + - power: supply: sbs-charger: Don't cancel work that is not initialized + - mt76: mt7915: enlarge wcid size to 544 + - mt76: mt7915: fix the muru tlv issue + - drm/dp: Fix OOB read when handling Post Cursor2 register + - ext2: correct max file size computing + - drm/tegra: Fix reference leak in tegra_dsi_ganged_probe + - power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false + return + - scsi: hisi_sas: Change permission of parameter prot_mask + - drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt + - bpf, arm64: Call build_prologue() first in first JIT pass + - bpf, arm64: Feed byte-offset into bpf line info + - xsk: Fix race at socket teardown + - RDMA/irdma: Fix netdev notifications for vlan's + - RDMA/irdma: Fix Passthrough mode in VM + - RDMA/irdma: Remove incorrect masking of PD + - libbpf: Fix BPF_MAP_TYPE_PERF_EVENT_ARRAY auto-pinning + - gpu: host1x: Fix an error handling path in 'host1x_probe()' + - gpu: host1x: Fix a memory leak in 'host1x_remove()' + - libbpf: Skip forward declaration when counting duplicated type names + - powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() + - powerpc/Makefile: Don't pass -mcpu=powerpc64 when building 32-bit + - KVM: x86: Fix emulation in writing cr8 + - KVM: x86/emulator: Defer not-present segment check in + __load_segment_descriptor() + - KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors + - hv_balloon: rate-limit "Unhandled message" warning + - KVM: arm64: Enable Cortex-A510 erratum 2077057 by default + - i2c: xiic: Make bus names unique + - net: phy: micrel: Fix concurrent register access + - Bluetooth: hci_sync: fix undefined return of hci_disconnect_all_sync() + - Bluetooth: Fix skb allocation in mgmt_remote_name() & + mgmt_device_connected() + - power: supply: wm8350-power: Handle error for wm8350_register_irq + - power: supply: wm8350-power: Add missing free in free_charger_irq + - IB/hfi1: Allow larger MTU without AIP + - RDMA/core: Fix ib_qp_usecnt_dec() called when error + - PCI: Reduce warnings on possible RW1C corruption + - net: axienet: fix RX ring refill allocation failure handling + - drm/msm/a6xx: Fix missing ARRAY_SIZE() check + - mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n + - MIPS: Sanitise Cavium switch cases in TLB handler synthesizers + - powerpc/sysdev: fix incorrect use to determine if list is empty + - powerpc/64s: Don't use DSISR for SLB faults + - mfd: mc13xxx: Add check for mc13xxx_irq_request + - libbpf: Unmap rings when umem deleted + - selftests/bpf: Make test_lwt_ip_encap more stable and faster + - platform/x86: huawei-wmi: check the return value of device_create_file() + - scsi: mpt3sas: Fix incorrect 4GB boundary check + - powerpc: 8xx: fix a return value error in mpc8xx_pic_init + - xtensa: add missing XCHAL_HAVE_WINDOWED check + - iwlwifi: pcie: fix SW error MSI-X mapping + - vxcan: enable local echo for sent CAN frames + - ath10k: Fix error handling in ath10k_setup_msa_resources + - mips: cdmm: Fix refcount leak in mips_cdmm_phys_base + - MIPS: RB532: fix return value of __setup handler + - MIPS: pgalloc: fix memory leak caused by pgd_free() + - mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init + - power: ab8500_chargalg: Use CLOCK_MONOTONIC + - RDMA/irdma: Prevent some integer underflows + - Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" + - RDMA/mlx5: Fix memory leak in error flow for subscribe event routine + - bpf, sockmap: Fix memleak in sk_psock_queue_msg + - bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full + - bpf, sockmap: Fix more uncharged while msg has more_data + - bpf, sockmap: Fix double uncharge the mem of sk_msg + - samples/bpf, xdpsock: Fix race when running for fix duration of time + - USB: storage: ums-realtek: fix error code in rts51x_read_mem() + - drm/amd/display: Fix double free during GPU reset on DC streams + - RDMA/rxe: Change variable and function argument to proper type + - RDMA/rxe: Fix ref error in rxe_av.c + - powerpc/xive: fix return value of __setup handler + - powerpc/time: Fix KVM host re-arming a timer beyond decrementer range + - drm/i915/display: Fix HPD short pulse handling for eDP + - drm/i915/display: Do not re-enable PSR after it was marked as not reliable + - netfilter: flowtable: Fix QinQ and pppoe support for inet table + - mt76: mt7921: fix mt7921_queues_acq implementation + - can: isotp: return -EADDRNOTAVAIL when reading from unbound socket + - can: isotp: support MSG_TRUNC flag when reading from socket + - bareudp: use ipv6_mod_enabled to check if IPv6 enabled + - PCI: imx6: Invoke the PHY exit function after PHY power off + - PCI: imx6: Assert i.MX8MM CLKREQ# even if no device present + - ibmvnic: fix race between xmit and reset + - af_unix: Fix some data-races around unix_sk(sk)->oob_skb. + - selftests/bpf: Fix error reporting from sock_fields programs + - Bluetooth: hci_uart: add missing NULL check in h5_enqueue + - Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed + - Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt + - RDMA/nldev: Prevent underflow in nldev_stat_set_counter_dynamic_doit() + - ipv4: Fix route lookups when handling ICMP redirects and PMTU updates + - mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release + skb + - af_netlink: Fix shift out of bounds in group mask calculation + - i2c: meson: Fix wrong speed use from probe + - netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() + - i2c: mux: demux-pinctrl: do not deactivate a master that is not active + - powerpc/pseries: Fix use after free in remove_phb_dynamic() + - ax25: Fix refcount leaks caused by ax25_cb_del() + - ax25: Fix NULL pointer dereferences in ax25 timers + - drm/i915: Fix renamed struct field + - selftests/bpf/test_lirc_mode2.sh: Exit with proper code + - bpftool: Fix print error when show bpf map + - PCI: Avoid broken MSI on SB600 USB devices + - net: bcmgenet: Use stronger register read/writes to assure ordering + - tcp: ensure PMTU updates are processed during fastopen + - openvswitch: always update flow key after nat + - net: dsa: fix panic on shutdown if multi-chip tree failed to probe + - net: wwan: qcom_bam_dmux: fix wrong pointer passed to IS_ERR() + - tipc: fix the timer expires after interval 100ms + - mfd: asic3: Add missing iounmap() on error asic3_mfd_probe + - ice: fix 'scheduling while atomic' on aux critical err interrupt + - ice: don't allow to run ice_send_event_to_aux() in atomic ctx + - drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via + ethtool + - kernel/resource: fix kfree() of bootmem memory again + - clk: renesas: r9a07g044: Update multiplier and divider values for PLL2/3 + - staging: r8188eu: release_firmware is not called if allocation fails + - mxser: fix xmit_buf leak in activate when LSR == 0xff + - fsi: scom: Fix error handling + - fsi: scom: Remove retries in indirect scoms + - pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() + - pps: clients: gpio: Propagate return value from pps_gpio_probe + - fsi: Aspeed: Fix a potential double free + - misc: alcor_pci: Fix an error handling path + - cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse + - soundwire: intel: fix wrong register name in intel_shim_wake + - clk: qcom: ipq8074: fix PCI-E clock oops + - dmaengine: idxd: restore traffic class defaults after wq reset + - iio: mma8452: Fix probe failing when an i2c_device_id is used + - staging: qlge: add unregister_netdev in qlge_probe + - serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type + - staging:iio:adc:ad7280a: Fix handing of device address bit reversing. + - clk: renesas: r8a779f0: Fix RSW2 clock divider + - pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel + - pinctrl: renesas: checker: Fix miscalculation of number of states + - clk: qcom: ipq8074: Use floor ops for SDCC1 clock + - phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) + - phy: phy-brcm-usb: fixup BCM4908 support + - serial: 8250_mid: Balance reference count for PCI DMA device + - serial: 8250_lpss: Balance reference count for PCI DMA device + - NFS: Use of mapping_set_error() results in spurious errors + - serial: 8250: Fix race condition in RTS-after-send handling + - iio: adc: Add check for devm_request_threaded_irq + - habanalabs: Add check for pci_enable_device + - NFS: Return valid errors from nfs2/3_decode_dirent() + - staging: r8188eu: fix endless loop in recv_func + - dma-debug: fix return value of __setup handlers + - clk: imx7d: Remove audio_mclk_root_clk + - clk: imx: off by one in imx_lpcg_parse_clks_from_dt() + - clk: at91: sama7g5: fix parents of PDMCs' GCLK + - clk: qcom: clk-rcg2: Update logic to calculate D value for RCG + - clk: qcom: clk-rcg2: Update the frac table for pixel clock + - clk: starfive: jh7100: Don't round divisor up twice + - clk: starfive: jh7100: Handle audio_div clock properly + - dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma + - remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region + - remoteproc: qcom_wcnss: Add missing of_node_put() in + wcnss_alloc_memory_region + - remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region + - nvdimm/region: Fix default alignment for small regions + - clk: actions: Terminate clk_div_table with sentinel element + - clk: loongson1: Terminate clk_div_table with sentinel element + - clk: hisilicon: Terminate clk_div_table with sentinel element + - clk: clps711x: Terminate clk_div_table with sentinel element + - clk: Fix clk_hw_get_clk() when dev is NULL + - clk: tegra: tegra124-emc: Fix missing put_device() call in + emc_ensure_emc_driver + - mailbox: imx: fix crash in resume on i.mx8ulp + - NFS: remove unneeded check in decode_devicenotify_args() + - staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree + - staging: mt7621-dts: fix formatting + - staging: mt7621-dts: fix pinctrl properties for ethernet + - staging: mt7621-dts: fix GB-PC2 devicetree + - pinctrl: ocelot: fix confops resource index + - pinctrl: ocelot: fix duplicate debugfs entry + - pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init + - pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback + - pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() + - pinctrl: mediatek: paris: Fix pingroup pin config state readback + - pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual + GPIOs + - pinctrl: ocelot: Fix interrupt parsing + - pinctrl: microchip-sgpio: lock RMW access + - pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe + - pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe + - clk: visconti: prevent array overflow in visconti_clk_register_gates() + - tty: hvc: fix return value of __setup handler + - kgdboc: fix return value of __setup handler + - serial: 8250: fix XOFF/XON sending when DMA is used + - virt: acrn: obtain pa from VMA with PFNMAP flag + - virt: acrn: fix a memory leak in acrn_dev_ioctl() + - kgdbts: fix return value of __setup handler + - firmware: google: Properly state IOMEM dependency + - driver core: dd: fix return value of __setup handler + - perf test arm64: Test unwinding using fame-pointer (fp) mode + - jfs: fix divide error in dbNextAG + - SUNRPC/call_alloc: async tasks mustn't block waiting for memory + - SUNRPC: improve 'swap' handling: scheduling and PF_MEMALLOC + - SUNRPC: Don't call connect() more than once on a TCP socket + - perf parse-events: Move slots only with topdown + - netfilter: egress: Report interface as outgoing + - netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options + - SUNRPC don't resend a task on an offlined transport + - NFSv4.1: don't retry BIND_CONN_TO_SESSION on session error + - kdb: Fix the putarea helper function + - perf stat: Fix forked applications enablement of counters + - net: stmmac: dwmac-qcom-ethqos: Enable RGMII functional clock on resume + - clk: qcom: gcc-msm8994: Fix gpll4 width + - vsock/virtio: initialize vdev->priv before using VQs + - vsock/virtio: read the negotiated features before using VQs + - vsock/virtio: enable VQs early on probe + - clk: Initialize orphan req_rate + - xen: fix is_xen_pmu() + - net: enetc: report software timestamping via SO_TIMESTAMPING + - net: hns3: fix bug when PF set the duplicate MAC address for VFs + - net: hns3: fix port base vlan add fail when concurrent with reset + - net: hns3: add vlan list lock to protect vlan list + - net: hns3: refine the process when PF set VF VLAN + - net: phy: broadcom: Fix brcm_fet_config_init() + - selftests: test_vxlan_under_vrf: Fix broken test case + - NFS: Don't loop forever in nfs_do_recoalesce() + - libperf tests: Fix typo in perf_evlist__open() failure error messages + - net: hns3: fix ethtool tx copybreak buf size indicating not aligned issue + - net: hns3: add max order judgement for tx spare buffer + - net: hns3: clean residual vf config after disable sriov + - net: hns3: add netdev reset check for hns3_set_tunable() + - net: hns3: add NULL pointer check for hns3_set/get_ringparam() + - net: hns3: fix phy can not link up when autoneg off and reset + - net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL + - qlcnic: dcb: default to returning -EOPNOTSUPP + - net/x25: Fix null-ptr-deref caused by x25_disconnect + - net: sparx5: switchdev: fix possible NULL pointer dereference + - octeontx2-af: initialize action variable + - selftests: tls: skip cmsg_to_pipe tests with TLS=n + - net/sched: act_ct: fix ref leak when switching zones + - NFSv4/pNFS: Fix another issue with a list iterator pointing to the head + - net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator + - fs: fd tables have to be multiples of BITS_PER_LONG + - lib/test: use after free in register_test_dev_kmod() + - fs: fix fd table size alignment properly + - LSM: general protection fault in legacy_parse_param + - regulator: rpi-panel: Handle I2C errors/timing to the Atmel + - crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos + - crypto: octeontx2 - CN10K CPT to RNM workaround + - gcc-plugins/stackleak: Exactly match strings instead of prefixes + - rcu: Kill rnp->ofl_seq and use only rcu_state.ofl_lock for exclusion + - pinctrl: npcm: Fix broken references to chip->parent_device + - rcu: Mark writes to the rcu_segcblist structure's ->flags field + - block: throttle split bio in case of iops limit + - memstick/mspro_block: fix handling of read-only devices + - block/bfq_wf2q: correct weight to ioprio + - crypto: xts - Add softdep on ecb + - crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 + - block, bfq: don't move oom_bfqq + - selinux: use correct type for context length + - powercap/dtpm_cpu: Reset per_cpu variable in the release function + - arm64: module: remove (NOLOAD) from linker script + - selinux: allow FIOCLEX and FIONCLEX with policy capability + - loop: use sysfs_emit() in the sysfs xxx show() + - Fix incorrect type in assignment of ipv6 port for audit + - irqchip/qcom-pdc: Fix broken locking + - irqchip/nvic: Release nvic_base upon failure + - fs/binfmt_elf: Fix AT_PHDR for unusual ELF files + - hwrng: cavium - fix NULL but dereferenced coccicheck error + - bfq: fix use-after-free in bfq_dispatch_request + - ACPICA: Avoid walking the ACPI Namespace if it is not there + - ACPI / x86: Add skip i2c clients quirk for Nextbook Ares 8 + - ACPI / x86: Add skip i2c clients quirk for Lenovo Yoga Tablet 1050F/L + - lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 + - Revert "Revert "block, bfq: honor already-setup queue merges"" + - ACPI/APEI: Limit printable size of BERT table data + - PM: core: keep irq flags in device_pm_check_callbacks() + - parisc: Fix non-access data TLB cache flush faults + - parisc: Fix handling off probe non-access faults + - nvme-tcp: lockdep: annotate in-kernel sockets + - spi: tegra20: Use of_device_get_match_data() + - spi: fsi: Implement a timeout for polling status + - atomics: Fix atomic64_{read_acquire,set_release} fallbacks + - locking/lockdep: Iterate lock_classes directly when reading lockdep files + - ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb + - ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit + - sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE + - ext4: don't BUG if someone dirty pages without asking ext4 first + - f2fs: fix to do sanity check on curseg->alloc_type + - NFSD: Fix nfsd_breaker_owns_lease() return values + - f2fs: don't get FREEZE lock in f2fs_evict_inode in frozen fs + - btrfs: harden identification of a stale device + - btrfs: make search_csum_tree return 0 if we get -EFBIG + - btrfs: handle csum lookup errors properly on reads + - btrfs: do not double complete bio on errors during compressed reads + - btrfs: do not clean up repair bio if submit fails + - f2fs: use spin_lock to avoid hang + - f2fs: compress: fix to print raw data size in error path of lz4 + decompression + - Adjust cifssb maximum read size + - ntfs: add sanity check on allocation size + - media: staging: media: zoran: move videodev alloc + - media: staging: media: zoran: calculate the right buffer number for + zoran_reap_stat_com + - media: staging: media: zoran: fix various V4L2 compliance errors + - media: atmel: atmel-isc-base: report frame sizes as full supported range + - media: ir_toy: free before error exiting + - ASoC: sh: rz-ssi: Make the data structures available before registering the + handlers + - ASoC: cs42l42: Report full jack status when plug is detected + - ASoC: SOF: Intel: match sdw version on link_slaves_found + - media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers + - ASoC: SOF: Intel: hda: Remove link assignment limitation + - media: iommu/mediatek-v1: Free the existed fwspec if the master dev already + has + - media: iommu/mediatek: Return ENODEV if the device is NULL + - media: iommu/mediatek: Add device_link between the consumer and the larb + devices + - video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow + - video: fbdev: w100fb: Reset global state + - video: fbdev: cirrusfb: check pixclock to avoid divide by zero + - video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit + - ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 + - ARM: dts: bcm2837: Add the missing L1/L2 cache information + - ASoC: madera: Add dependencies on MFD + - media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator + off on some boards + - media: atomisp: fix dummy_ptr check to avoid duplicate active_bo + - ARM: ftrace: avoid redundant loads or clobbering IP + - ALSA: hda: Fix driver index handling at re-binding + - ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk + - arm64: defconfig: build imx-sdma as a module + - video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() + - video: fbdev: omapfb: panel-tpo-td043mtea1: Use sysfs_emit() instead of + snprintf() + - video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit + - ARM: dts: bcm2711: Add the missing L1/L2 cache information + - ASoC: soc-core: skip zero num_dai component in searching dai name + - ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021 + - media: imx-jpeg: fix a bug of accessing array out of bounds + - media: cx88-mpeg: clear interrupt status register before streaming video + - ASoC: rt5682s: Fix the wrong jack type detected + - ARM: tegra: transformer: Drop reg-shift for Tegra HS UART + - uaccess: fix type mismatch warnings from access_ok() + - lib/test_lockup: fix kernel pointer check for separate address spaces + - ARM: tegra: tamonten: Fix I2C3 pad setting + - ARM: mmp: Fix failure to remove sram device + - ASoC: amd: vg: fix for pm resume callback sequence + - ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver + - video: fbdev: sm712fb: Fix crash in smtcfb_write() + - media: i2c: ov5648: Fix lockdep error + - media: Revert "media: em28xx: add missing em28xx_close_extension" + - media: hdpvr: initialize dev->worker at hdpvr_register_videodev + - ASoC: SOF: debug: clarify operator precedence + - ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" + - ASoC: SOF: Intel: hda: retrieve DMIC number for I2S boards + - ALSA: intel-nhlt: add helper to detect SSP link mask + - ALSA: intel-dsp-config: add more ACPI HIDs for ES83x6 devices + - ASoC: Intel: soc-acpi: add more ACPI HIDs for ES83x6 devices + - ALSA: intel-dspconfig: add ES8336 support for CNL + - ASoC: Intel: Revert "ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021" + - ASoC: Intel: sof_es8336: log all quirks + - tracing: Have TRACE_DEFINE_ENUM affect trace event types as well + - mmc: host: Return an error when ->enable_sdio_irq() ops is missing + - ASoC: mediatek: Fix error handling in mt8183_da7219_max98357_dev_probe + - media: atomisp: fix bad usage at error handling logic + - ALSA: hda/realtek: Add alc256-samsung-headphone fixup + - KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 + - KVM: x86: Reinitialize context if host userspace toggles EFER.LME + - KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook + - KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() + - KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU + - KVM: x86/mmu: Check for present SPTE when clearing dirty bit in TDP MMU + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_send_ipi() + - KVM: x86: hyper-v: Drop redundant 'ex' parameter from kvm_hv_flush_tlb() + - KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB + flush hypercalls + - KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall + - powerpc/kasan: Fix early region not updated correctly + - powerpc/tm: Fix more userspace r13 corruption + - powerpc/lib/sstep: Fix 'sthcx' instruction + - powerpc/lib/sstep: Fix build errors with newer binutils + - powerpc: Add set_memory_{p/np}() and remove set_memory_attr() + - powerpc: Fix build errors with newer binutils + - drm/dp: Fix off-by-one in register cache size + - drm/i915: Treat SAGV block time 0 as SAGV disabled + - drm/i915: Fix PSF GV point mask when SAGV is not possible + - drm/i915: Reject unsupported TMDS rates on ICL+ + - scsi: qla2xxx: Refactor asynchronous command initialization + - scsi: qla2xxx: Implement ref count for SRB + - scsi: qla2xxx: Fix stuck session in gpdb + - scsi: qla2xxx: Fix warning message due to adisc being flushed + - scsi: qla2xxx: Fix scheduling while atomic + - scsi: qla2xxx: Fix premature hw access after PCI error + - scsi: qla2xxx: Fix wrong FDMI data for 64G adapter + - scsi: qla2xxx: Fix warning for missing error code + - scsi: qla2xxx: Fix device reconnect in loop topology + - scsi: qla2xxx: edif: Fix clang warning + - scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters + - scsi: qla2xxx: Add devids and conditionals for 28xx + - scsi: qla2xxx: Check for firmware dump already collected + - scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() + - scsi: qla2xxx: Fix disk failure to rediscover + - scsi: qla2xxx: Fix incorrect reporting of task management failure + - scsi: qla2xxx: Fix hang due to session stuck + - scsi: qla2xxx: Fix laggy FC remote port session recovery + - scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests + - scsi: qla2xxx: Fix crash during module load unload test + - scsi: qla2xxx: Fix N2N inconsistent PLOGI + - scsi: qla2xxx: Fix stuck session of PRLI reject + - scsi: qla2xxx: Reduce false trigger to login + - scsi: qla2xxx: Use correct feature type field during RFF_ID processing + - platform: chrome: Split trace include file + - MIPS: crypto: Fix CRC32 code + - KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq + - KVM: x86: Avoid theoretical NULL pointer dereference in + kvm_irq_delivery_to_apic_fast() + - KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasn't activated + - KVM: x86/mmu: do compare-and-exchange of gPTE via the user address + - KVM: Prevent module exit until all VMs are freed + - KVM: x86: fix sending PV IPI + - KVM: SVM: fix panic on out-of-bounds guest IRQ + - KVM: avoid double put_page with gfn-to-pfn cache + - ubifs: rename_whiteout: Fix double free for whiteout_ui->data + - ubifs: Fix deadlock in concurrent rename whiteout and inode writeback + - ubifs: Add missing iput if do_tmpfile() failed in rename whiteout + - ubifs: Rename whiteout atomically + - ubifs: Fix 'ui->dirty' race between do_tmpfile() and writeback work + - ubifs: Rectify space amount budget for mkdir/tmpfile operations + - ubifs: setflags: Make dirtied_ino_d 8 bytes aligned + - ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() + - ubifs: Fix to add refcount once page is set private + - ubifs: rename_whiteout: correct old_dir size computing + - nvme: allow duplicate NSIDs for private namespaces + - nvme: fix the read-only state for zoned namespaces with unsupposed features + - wireguard: queueing: use CFI-safe ptr_ring cleanup function + - wireguard: socket: free skb in send6 when ipv6 is disabled + - wireguard: socket: ignore v6 endpoints when ipv6 is disabled + - XArray: Fix xas_create_range() when multi-order entry present + - can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path + - can: mcba_usb: properly check endpoint type + - can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value + - XArray: Include bitmap.h from xarray.h + - XArray: Update the LRU list in xas_split() + - modpost: restore the warning message for missing symbol versions + - rtc: gamecube: Fix refcount leak in gamecube_rtc_read_offset_from_sram + - rtc: check if __rtc_read_time was successful + - loop: fix ioctl calls using compat_loop_info + - gfs2: gfs2_setattr_size error path fix + - gfs2: Fix gfs2_file_buffered_write endless loop workaround + - gfs2: Make sure FITRIM minlen is rounded up to fs block size + - net: hns3: fix the concurrency between functions reading debugfs + - net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware + - rxrpc: fix some null-ptr-deref bugs in server_key.c + - rxrpc: Fix call timer start racing with call destruction + - mailbox: imx: fix wakeup failure from freeze mode + - crypto: x86/poly1305 - Fixup SLS + - crypto: arm/aes-neonbs-cbc - Select generic cbc and aes + - watch_queue: Free the page array when watch_queue is dismantled + - pinctrl: pinconf-generic: Print arguments for bias-pull-* + - watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function + - net: sparx5: uses, depends on BRIDGE or !BRIDGE + - pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() + - pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() + - ASoC: rockchip: i2s_tdm: Fixup config for SND_SOC_DAIFMT_DSP_A/B + - ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs + - ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl + - ARM: iop32x: offset IRQ numbers by 1 + - block: Fix the maximum minor value is blk_alloc_ext_minor() + - block: restore the old set_task_ioprio() behaviour wrt PF_EXITING + - Revert "virtio-pci: harden INTX interrupts" + - Revert "virtio_pci: harden MSI-X interrupts" + - virtio: use virtio_device_ready() in virtio_device_restore() + - io_uring: remove poll entry from list when canceling all + - io_uring: bump poll refs to full 31-bits + - io_uring: fix memory leak of uid in files registration + - riscv module: remove (NOLOAD) + - ACPI: CPPC: Avoid out of bounds access when parsing _CPC data + - vhost: handle error while adding split ranges to iotlb + - spi: Fix Tegra QSPI example + - platform/chrome: cros_ec_typec: Check for EC device + - platform/x86: asus-wmi: Fix regression when probing for fan curve control + - can: isotp: restore accidentally removed MSG_PEEK feature + - proc: bootconfig: Add null pointer check + - x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation + - x86/sev: Unroll string mmio with CC_ATTR_GUEST_UNROLL_STRING_IO + - drm/connector: Fix typo in documentation + - scsi: qla2xxx: Add qla2x00_async_done() for async routines + - staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet + - docs: fix 'make htmldocs' warning in SCTP.rst + - arm64: mm: Drop 'const' from conditional arm64_dma_phys_limit definition + - ASoC: soc-compress: Change the check for codec_dai + - KVM: x86: SVM: fix avic spec based definitions again + - ax25: fix UAF bug in ax25_send_control() + - Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" + - tracing: Have type enum modifications copy the strings + - mips: Enable KCSAN - take 2 + - net: add skb_set_end_offset() helper + - mm/mmap: return 1 from stack_guard_gap __setup() handler + - ARM: 9187/1: JIVE: fix return value of __setup handler + - mm/memcontrol: return 1 from cgroup.memory __setup() handler + - mm/usercopy: return 1 from hardened_usercopy __setup() handler + - af_unix: Support POLLPRI for OOB. + - libbpf: Define BTF_KIND_* constants in btf.h to avoid compilation errors + - bpf: Adjust BPF stack helper functions to accommodate skip > 0 + - bpf: Fix comment for helper bpf_current_task_under_cgroup() + - nbd: fix possible overflow on 'first_minor' in nbd_dev_add() + - mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM + - dt-bindings: mtd: nand-controller: Fix the reg property description + - dt-bindings: mtd: nand-controller: Fix a comment in the examples + - dt-bindings: spi: mxic: The interrupt property is not mandatory + - media: dt-binding: media: hynix,hi846: use $defs/port-base port description + - media: dt-bindings: media: hynix,hi846: add link-frequencies description + - dt-bindings: memory: mtk-smi: Rename clock to clocks + - dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 + - dt-bindings: memory: mtk-smi: Correct minItems to 2 for the gals clocks + - dt-bindings: pinctrl: mt8195: fix bias-pull-{up,down} checks + - dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example + - ubi: fastmap: Return error code if memory allocation fails in add_aeb() + - net: preserve skb_end_offset() in skb_unclone_keeptruesize() + - ASoC: SOF: Intel: Fix build error without SND_SOC_SOF_PCI_DEV + - ASoC: topology: Allow TLV control to be either read or write + - perf vendor events: Update metrics for SkyLake Server + - media: ov6650: Add try support to selection API operations + - media: ov6650: Fix crop rectangle affected by set format + - pinctrl: canonical rsel resistance selection property + - spi: mediatek: support tick_delay without enhance_timing + - ARM: dts: spear1340: Update serial node properties + - ARM: dts: spear13xx: Update SPI dma properties + - arm64: dts: ls1043a: Update i2c dma properties + - arm64: dts: ls1046a: Update i2c node dma properties + - um: Fix uml_mconsole stop/go + - docs: sysctl/kernel: add missing bit to panic_print + - xsk: Do not write NULL in SW ring at allocation failure + - ice: xsk: Fix indexing in ice_tx_xsk_pool() + - vdpa/mlx5: Avoid processing works if workqueue was destroyed + - openvswitch: Fixed nd target mask field in the flow dump. + - torture: Make torture.sh help message match reality + - n64cart: convert bi_disk to bi_bdev->bd_disk fix build + - Revert "nbd: fix possible overflow on 'first_minor' in nbd_dev_add()" + - mmc: rtsx: Let MMC core handle runtime PM + - mmc: rtsx: Fix build errors/warnings for unused variable + - coredump: Snapshot the vmas in do_coredump + - coredump: Remove the WARN_ON in dump_vma_snapshot + - coredump/elf: Pass coredump_params into fill_note_info + - coredump: Use the vma snapshot in fill_files_note + - Linux 5.17.2 + + * Jammy update: v5.17.1 upstream stable release (LP: #1968982) + - tpm: Fix error handling in async work + - Bluetooth: btusb: Add another Realtek 8761BU + - llc: fix netdevice reference leaks in llc_ui_bind() + - ASoC: sti: Fix deadlock via snd_pcm_stop_xrun() call + - ALSA: oss: Fix PCM OSS buffer allocation overflow + - ALSA: usb-audio: add mapping for new Corsair Virtuoso SE + - ALSA: hda/realtek: Add quirk for Clevo NP70PNJ + - ALSA: hda/realtek: Add quirk for Clevo NP50PNJ + - ALSA: hda/realtek - Fix headset mic problem for a HP machine with alc671 + - ALSA: hda/realtek: Add quirk for ASUS GA402 + - ALSA: pcm: Fix races among concurrent hw_params and hw_free calls + - ALSA: pcm: Fix races among concurrent read/write and buffer changes + - ALSA: pcm: Fix races among concurrent prepare and hw_params/hw_free calls + - ALSA: pcm: Fix races among concurrent prealloc proc writes + - ALSA: pcm: Add stream lock during PCM reset ioctl operations + - ALSA: usb-audio: Add mute TLV for playback volumes on RODE NT-USB + - ALSA: cmipci: Restore aux vol on suspend/resume + - ALSA: pci: fix reading of swapped values from pcmreg in AC97 codec + - drivers: net: xgene: Fix regression in CRC stripping + - netfilter: nf_tables: initialize registers in nft_do_chain() + - netfilter: nf_tables: validate registers coming from userspace. + - ACPI / x86: Work around broken XSDT on Advantech DAC-BJ01 board + - ACPI: battery: Add device HID and quirk for Microsoft Surface Go 3 + - ACPI: video: Force backlight native for Clevo NL5xRU and NL5xNU + - crypto: qat - disable registration of algorithms + - Bluetooth: btusb: Add one more Bluetooth part for the Realtek RTL8852AE + - Bluetooth: hci_sync: Add a new quirk to skip HCI_FLT_CLEAR_ALL + - Bluetooth: btusb: Use quirk to skip HCI_FLT_CLEAR_ALL on fake CSR + controllers + - Revert "ath: add support for special 0x0 regulatory domain" + - drm/virtio: Ensure that objs is not NULL in virtio_gpu_array_put_free() + - jbd2: fix use-after-free of transaction_t race + - rcu: Don't deboost before reporting expedited quiescent state + - uaccess: fix integer overflow on access_ok() + - mac80211: fix potential double free on mesh join + - tpm: fix reference counting for struct tpm_chip + - tpm: use try_get_ops() in tpm-space.c + - wcn36xx: Differentiate wcn3660 from wcn3620 + - m68k: fix access_ok for coldfire + - nds32: fix access_ok() checks in get/put_user + - drm/msm/gpu: Fix crash on devices without devfreq support (v2) + - llc: only change llc->dev when bind() succeeds + - Linux 5.17.1 + + * Miscellaneous Ubuntu changes + - SAUCE: shiftfs: always rely on init_user_ns + - [Config] update configs and annotations after stable updates + - SAUCE: sfc: The size of the RX recycle ring should be more flexible + - [Packaging] remove references to lowlatency flavor + + -- Andrea Righi Thu, 14 Apr 2022 08:45:40 +0200 + +linux-unstable (5.17.0-6.6) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-6.6 -proposed tracker (LP: #1965731) + + * dependency on crda obsolete according to Debian (LP: #1958918) + - [Packaging] switch dependency from crda to wireless-regdb + + * Miscellaneous Ubuntu changes + - [Config] disable CONFIG_SYSFB_SIMPLEFB on amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v5.17 + + -- Andrea Righi Mon, 21 Mar 2022 09:46:03 +0100 + +linux-unstable (5.17.0-5.5) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-5.5 -proposed tracker (LP: #1964766) + + * Packaging resync (LP: #1786013) + - [Packaging] resync dkms-build{,--nvidia-N} from LRMv5 + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to v5.17-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc8 + + -- Andrea Righi Mon, 14 Mar 2022 13:15:50 +0100 + +linux-unstable (5.17.0-4.4) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-4.4 -proposed tracker (LP: #1963880) + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc7 + + -- Andrea Righi Mon, 07 Mar 2022 10:20:48 +0100 + +linux-unstable (5.17.0-3.3) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-3.3 -proposed tracker (LP: #1962450) + + * 5.15 stuck at boot on c4.large (LP: #1956780) + - Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * [22.04 FEAT] KVM: Enable storage key checking for intercepted instruction + handled by userspace (LP: #1933179) + - s390/uaccess: Add copy_from/to_user_key functions + - KVM: s390: Honor storage keys when accessing guest memory + - KVM: s390: handle_tprot: Honor storage keys + - KVM: s390: Add optional storage key checking to MEMOP IOCTL + - KVM: s390: Add vm IOCTL for key checked guest absolute memory access + - KVM: s390: Rename existing vcpu memop functions + - KVM: s390: Update api documentation for memop ioctl + - KVM: s390: Clarify key argument for MEM_OP in api docs + - KVM: s390: Add missing vm MEM_OP size check + + [ Upstream Kernel Changes ] + + * Rebase to v5.17-rc6 + + -- Andrea Righi Mon, 28 Feb 2022 09:42:32 +0100 + +linux-unstable (5.17.0-2.2) jammy; urgency=medium + + * jammy/linux-unstable: 5.17.0-2.2 -proposed tracker (LP: #1962137) + + * CVE-2022-25636 + - netfilter: nf_tables_offload: incorrect flow offload action array size + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update Ubuntu.md + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.22 upstream stable release (LP: #1960516) + - Revert "ASoC: mediatek: Check for error clk pointer" + - [Config] disable FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION + + * Jammy update: v5.15.20 upstream stable release (LP: #1960509) + - Revert "UBUNTU: SAUCE: Revert "e1000e: Additional PHY power saving in S0ix"" + + * Jammy update: v5.15.19 upstream stable release (LP: #1959879) + - drm/etnaviv: relax submit size limits + + * Jammy update: v5.15.17 upstream stable release (LP: #1959376) + - net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports + - rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC + - ASoC: mediatek: Check for error clk pointer + - regulator: da9121: Prevent current limit change when enabled + - ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream + - drm/etnaviv: limit submit sizes + - Bluetooth: hci_sync: Fix not setting adv set duration + - net: axienet: Wait for PhyRstCmplt after core reset + + * rtw88_8821ce causes freeze (LP: #1927808) // Jammy update: v5.15.17 upstream + stable release (LP: #1959376) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + + * Jammy update: v5.15.15 upstream stable release (LP: #1958418) + - Bluetooth: btusb: Add support for Foxconn MT7922A + - Bluetooth: btbcm: disable read tx power for MacBook Air 8,1 and 8,2 + - platform/x86/intel: hid: add quirk to support Surface Go 3 + + * Support USB4 DP alt mode for AMD Yellow Carp graphics card (LP: #1953008) + - SAUCE: drm/amd/display: Fixup previous PSR policy commit + + * alsa/sdw: add sdw audio machine driver for several ADL machines + (LP: #1951563) + - ASoC: Intel: sof_sdw: Add support for SKU 0B11 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B13 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B29 product + - ASoC: Intel: sof_sdw: Add support for SKU 0B12 product + + * Improve performance and idle power consumption (LP: #1941893) + - x86: ACPI: cstate: Optimize C3 entry on AMD CPUs + + * Fix spurious wakeup caused by Intel 7560 WWAN (LP: #1956443) + - net: wwan: iosm: Keep device at D0 for s2idle case + + * Jammy update: v5.15.13 upstream stable release (LP: #1956926) + - scsi: lpfc: Terminate string in lpfc_debugfs_nvmeio_trc_write() + - net/mlx5: Fix tc max supported prio for nic mode + + * Miscellaneous Ubuntu changes + - [Packaging] Update dependency of pahole / dwarves + - [packaging] unhook lowlatency flavours from the build + - [Packaging] use default zstd compression + - [Packaging] do not use compression for image packages + - [Packaging] use xz compression for ddebs + - SAUCE: Makefile: Remove inclusion of lbm header files + - SAUCE: Makefile: Fix compiler warnings + - [Config] drop unused lowlatency configs + - [Config] update configs and annotations after rebase to v5.17-rc5 + + * Miscellaneous upstream changes + - Revert "rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE" + - MAINTAINERS: Add scripts/pahole-flags.sh to BPF section + - kbuild: Add CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Use CONFIG_PAHOLE_VERSION + - lib/Kconfig.debug: Allow BTF + DWARF5 with pahole 1.21+ + - Revert "UBUNTU: [Packaging] temporarily disable zfs" + + -- Andrea Righi Thu, 24 Feb 2022 09:41:40 +0100 + +linux-unstable (5.17.0-1.1) jammy; urgency=medium + + * Rebase to 5.17-rc1 + + -- Andrea Righi Mon, 21 Feb 2022 08:22:18 +0100 + +linux-unstable (5.17.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Fri, 28 Jan 2022 17:14:13 +0100 + +linux (5.15.0-18.18) jammy; urgency=medium + + * jammy/linux: 5.15.0-18.18 -proposed tracker (LP: #1958638) + + * CVE-2021-4155 + - xfs: map unwritten blocks in XFS_IOC_{ALLOC, FREE}SP just like fallocate + + * CVE-2022-0185 + - SAUCE: vfs: test that one given mount param is not larger than PAGE_SIZE + + * [UBUNTU 20.04] KVM hardware diagnose data improvements for guest kernel - + kernel part (LP: #1953334) + - KVM: s390: add debug statement for diag 318 CPNC data + + * OOB write on BPF_RINGBUF (LP: #1956585) + - SAUCE: bpf: prevent helper argument PTR_TO_ALLOC_MEM to have offset other + than 0 + + * Miscellaneous Ubuntu changes + - [Config] re-enable shiftfs + - [SAUCE] shiftfs: support kernel 5.15 + - [Config] update toolchain versions + + * Miscellaneous upstream changes + - vfs: fs_context: fix up param length parsing in legacy_parse_param + + -- Andrea Righi Fri, 21 Jan 2022 13:32:27 +0100 + +linux (5.15.0-17.17) jammy; urgency=medium + + * jammy/linux: 5.15.0-17.17 -proposed tracker (LP: #1957809) + + -- Andrea Righi Thu, 13 Jan 2022 17:11:21 +0100 + +linux (5.15.0-16.16) jammy; urgency=medium + + * jammy/linux: 5.15.0-16.16 -proposed tracker (LP: #1956820) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * 5.15 stuck at boot on c4.large (LP: #1956780) + - Revert "PCI/MSI: Mask MSI-X vectors only on success" + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] temporarily disable signed v4l2loopback" + + -- Andrea Righi Sat, 08 Jan 2022 10:57:58 +0100 + +linux (5.15.0-15.15) jammy; urgency=medium + + * jammy/linux: 5.15.0-15.15 -proposed tracker (LP: #1956314) + + * Packaging resync (LP: #1786013) + - update dkms package versions + - debian/dkms-versions -- update from kernel-versions (main/master) + + * rtw88_8821ce causes freeze (LP: #1927808) + - rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE + + * alsa/sdw: fix the audio sdw codec parsing logic in the acpi table + (LP: #1955686) + - ALSA: hda: intel-sdw-acpi: go through HDAS ACPI at max depth of 2 + - ALSA: hda: intel-sdw-acpi: harden detection of controller + + * Got black screen when resume from s2idle with AMD dGPU (LP: #1955790) + - SAUCE: drm/amdgpu: put SMU into proper state on runpm suspending for BOCO + capable platform + - SAUCE: drm/amdgpu: always reset the asic in suspend (v2) + + * Fix USB3 detection on HP dock (LP: #1955443) + - usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 + + * support signed v4l2loopback dkms build (LP: #1938531) + - enable v4l2loopback builds on amd64 kernels + - support v4l2loopback dkms build + + * Jammy update: v5.15.12 upstream stable release (LP: #1956305) + - arm64: vdso32: require CROSS_COMPILE_COMPAT for gcc+bfd + - net: usb: lan78xx: add Allied Telesis AT29M2-AF + - ext4: prevent partial update of the extent blocks + - ext4: check for out-of-order index extents in ext4_valid_extent_entries() + - ext4: check for inconsistent extents between index and leaf block + - selftests: KVM: Fix non-x86 compiling + - HID: holtek: fix mouse probing + - HID: potential dereference of null pointer + - NFSD: Fix READDIR buffer overflow + - PM: sleep: Fix error handling in dpm_prepare() + - arm64: dts: allwinner: orangepi-zero-plus: fix PHY mode + - bus: sunxi-rsb: Fix shutdown + - spi: change clk_disable_unprepare to clk_unprepare + - ucounts: Fix rlimit max values check + - drm/mediatek: hdmi: Perform NULL pointer check for mtk_hdmi_conf + - ASoC: meson: aiu: fifo: Add missing dma_coerce_mask_and_coherent() + - RDMA/hns: Fix RNR retransmission issue for HIP08 + - IB/qib: Fix memory leak in qib_user_sdma_queue_pkts() + - RDMA/hns: Replace kfree() with kvfree() + - netfilter: nf_tables: fix use-after-free in nft_set_catchall_destroy() + - netfilter: fix regression in looped (broad|multi)cast's MAC handling + - ARM: dts: imx6qdl-wandboard: Fix Ethernet support + - ice: Use xdp_buf instead of rx_buf for xsk zero-copy + - ice: xsk: return xsk buffers back to pool when cleaning the ring + - net: marvell: prestera: fix incorrect return of port_find + - net: marvell: prestera: fix incorrect structure access + - qlcnic: potential dereference null pointer of rx_queue->page_ring + - tcp: move inet->rx_dst_ifindex to sk->sk_rx_dst_ifindex + - ipv6: move inet6_sk(sk)->rx_dst_cookie to sk->sk_rx_dst_cookie + - inet: fully convert sk->sk_rx_dst to RCU rules + - net: accept UFOv6 packages in virtio_net_hdr_to_skb + - net: skip virtio_net_hdr_set_proto if protocol already set + - igb: fix deadlock caused by taking RTNL in RPM resume path + - ipmi: Fix UAF when uninstall ipmi_si and ipmi_msghandler module + - gpio: virtio: remove timeout + - bonding: fix ad_actor_system option setting to default + - fjes: Check for error irq + - drivers: net: smc911x: Check for error irq + - net: ks8851: Check for error irq + - sfc: Check null pointer of rx_queue->page_ring + - sfc: falcon: Check null pointer of rx_queue->page_ring + - asix: fix uninit-value in asix_mdio_read() + - asix: fix wrong return value in asix_check_host_enable() + - io_uring: zero iocb->ki_pos for stream file types + - veth: ensure skb entering GRO are not cloned. + - net: stmmac: ptp: fix potentially overflowing expression + - net: bridge: Use array_size() helper in copy_to_user() + - net: bridge: fix ioctl old_deviceless bridge argument + - r8152: fix the force speed doesn't work for RTL8156 + - net: stmmac: dwmac-visconti: Fix value of ETHER_CLK_SEL_FREQ_SEL_2P5M + - pinctrl: bcm2835: Change init order for gpio hogs + - hwmon: (lm90) Fix usage of CONFIG2 register in detect function + - hwmon: (lm90) Prevent integer overflow/underflow in hysteresis calculations + - hwmon: (lm90) Introduce flag indicating extended temperature support + - hwmon: (lm90) Add basic support for TI TMP461 + - hwmon: (lm90) Drop critical attribute support for MAX6654 + - ARM: 9160/1: NOMMU: Reload __secondary_data after PROCINFO_INITFUNC + - uapi: Fix undefined __always_inline on non-glibc systems + - compiler.h: Fix annotation macro misplacement with Clang + - platform/x86/intel: Remove X86_PLATFORM_DRIVERS_INTEL + - kernel/crash_core: suppress unknown crashkernel parameter warning + - Revert "x86/boot: Pull up cmdline preparation and early param parsing" + - x86/boot: Move EFI range reservation after cmdline parsing + - ALSA: jack: Check the return value of kstrdup() + - ALSA: drivers: opl3: Fix incorrect use of vp->state + - ALSA: rawmidi - fix the uninitalized user_pversion + - ALSA: hda/hdmi: Disable silent stream on GLK + - ALSA: hda/realtek: Amp init fixup for HP ZBook 15 G6 + - ALSA: hda/realtek: Add new alc285-hp-amp-init model + - ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook + - ALSA: hda/realtek: Fix quirk for Clevo NJ51CU + - ASoC: meson: aiu: Move AIU_I2S_MISC hold setting to aiu-fifo-i2s + - ASoC: tegra: Add DAPM switches for headphones and mic jack + - ASoC: tegra: Restore headphones jack name on Nyan Big + - Input: atmel_mxt_ts - fix double free in mxt_read_info_block + - ipmi: bail out if init_srcu_struct fails + - ipmi: ssif: initialize ssif_info->client early + - ipmi: fix initialization when workqueue allocation fails + - parisc: Correct completer in lws start + - parisc: Fix mask used to select futex spinlock + - tee: handle lookup of shm with reference count 0 + - x86/pkey: Fix undefined behaviour with PKRU_WD_BIT + - platform/x86: amd-pmc: only use callbacks for suspend + - platform/x86: intel_pmc_core: fix memleak on registration failure + - KVM: x86: Always set kvm_run->if_flag + - KVM: x86/mmu: Don't advance iterator after restart due to yielding + - KVM: nVMX: Synthesize TRIPLE_FAULT for L2 if emulation is required + - KVM: VMX: Always clear vmx->fail on emulation_required + - KVM: VMX: Wake vCPU when delivering posted IRQ even if vCPU == this vCPU + - pinctrl: stm32: consider the GPIO offset to expose all the GPIO lines + - gpio: dln2: Fix interrupts when replugging the device + - mmc: sdhci-tegra: Fix switch to HS400ES mode + - mmc: meson-mx-sdhc: Set MANUAL_STOP for multi-block SDIO commands + - mmc: core: Disable card detect during shutdown + - mmc: mmci: stm32: clear DLYB_CR after sending tuning command + - ARM: 9169/1: entry: fix Thumb2 bug in iWMMXt exception handling + - ksmbd: fix error code in ndr_read_int32() + - ksmbd: fix uninitialized symbol 'pntsd_size' + - ksmbd: disable SMB2_GLOBAL_CAP_ENCRYPTION for SMB 3.1.1 + - mac80211: fix locking in ieee80211_start_ap error path + - mm: mempolicy: fix THP allocations escaping mempolicy restrictions + - mm, hwpoison: fix condition in free hugetlb page path + - mm/hwpoison: clear MF_COUNT_INCREASED before retrying get_any_page() + - mm/damon/dbgfs: protect targets destructions with kdamond_lock + - tee: optee: Fix incorrect page free bug + - f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() + - netfs: fix parameter of cleanup() + - KVM: VMX: Fix stale docs for kvm-intel.emulate_invalid_guest_state + - arm64: dts: lx2160a: fix scl-gpios property name + - kfence: fix memory leak when cat kfence objects + - Input: iqs626a - prohibit inlining of channel parsing functions + - Input: elants_i2c - do not check Remark ID on eKTH3900/eKTH5312 + - Input: goodix - add id->model mapping for the "9111" model + - ASoC: tas2770: Fix setting of high sample rates + - ASoC: SOF: Intel: pci-tgl: add new ADL-P variant + - ASoC: SOF: Intel: pci-tgl: add ADL-N support + - ASoC: rt5682: fix the wrong jack type detected + - pinctrl: mediatek: fix global-out-of-bounds issue + - hwmom: (lm90) Fix citical alarm status for MAX6680/MAX6681 + - hwmon: (lm90) Do not report 'busy' status bit as alarm + - r8152: sync ocp base + - ax25: NPD bug when detaching AX25 device + - hamradio: defer ax25 kfree after unregister_netdev + - hamradio: improve the incomplete fix to avoid NPD + - tun: avoid double free in tun_free_netdev + - phonet/pep: refuse to enable an unbound pipe + - Linux 5.15.12 + + * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled + (LP: #1945590) // Jammy update: v5.15.12 upstream stable release + (LP: #1956305) + - Input: elantech - fix stack out of bound access in + elantech_change_report_id() + + * Jammy update: v5.15.11 upstream stable release (LP: #1956302) + - reset: tegra-bpmp: Revert Handle errors in BPMP response + - KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled + - KVM: selftests: Make sure kvm_create_max_vcpus test won't hit RLIMIT_NOFILE + - KVM: downgrade two BUG_ONs to WARN_ON_ONCE + - x86/kvm: remove unused ack_notifier callbacks + - KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid() + - mac80211: fix rate control for retransmitted frames + - mac80211: fix regression in SSN handling of addba tx + - mac80211: mark TX-during-stop for TX in in_reconfig + - mac80211: send ADDBA requests using the tid/queue of the aggregation session + - mac80211: validate extended element ID is present + - firmware: arm_scpi: Fix string overflow in SCPI genpd driver + - bpf: Fix kernel address leakage in atomic fetch + - bpf, selftests: Add test case for atomic fetch on spilled pointer + - bpf: Fix signed bounds propagation after mov32 + - bpf: Make 32->64 bounds propagation slightly more robust + - bpf, selftests: Add test case trying to taint map value pointer + - bpf: Fix kernel address leakage in atomic cmpxchg's r0 aux reg + - bpf, selftests: Update test case for atomic cmpxchg on r0 with pointer + - vduse: fix memory corruption in vduse_dev_ioctl() + - vduse: check that offset is within bounds in get_config() + - virtio_ring: Fix querying of maximum DMA mapping size for virtio device + - vdpa: check that offsets are within bounds + - s390/entry: fix duplicate tracking of irq nesting level + - recordmcount.pl: look for jgnop instruction as well as bcrl on s390 + - arm64: dts: ten64: remove redundant interrupt declaration for gpio-keys + - ceph: fix up non-directory creation in SGID directories + - dm btree remove: fix use after free in rebalance_children() + - audit: improve robustness of the audit queue handling + - btrfs: convert latest_bdev type to btrfs_device and rename + - btrfs: use latest_dev in btrfs_show_devname + - btrfs: update latest_dev when we create a sprout device + - btrfs: remove stale comment about the btrfs_show_devname + - scsi: ufs: core: Retry START_STOP on UNIT_ATTENTION + - arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas- + edge + - arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply + - arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply + - arm64: dts: rockchip: fix audio-supply for Rock Pi 4 + - arm64: dts: rockchip: fix poweroff on helios64 + - dmaengine: idxd: add halt interrupt support + - dmaengine: idxd: fix calling wq quiesce inside spinlock + - mac80211: track only QoS data frames for admission control + - tee: amdtee: fix an IS_ERR() vs NULL bug + - ceph: fix duplicate increment of opened_inodes metric + - ceph: initialize pathlen variable in reconnect_caps_cb + - ARM: socfpga: dts: fix qspi node compatible + - arm64: dts: imx8mq: remove interconnect property from lcdif + - clk: Don't parent clks until the parent is fully registered + - soc: imx: Register SoC device only on i.MX boards + - iwlwifi: mvm: don't crash on invalid rate w/o STA + - virtio: always enter drivers/virtio/ + - virtio/vsock: fix the transport to work with VMADDR_CID_ANY + - vdpa: Consider device id larger than 31 + - Revert "drm/fb-helper: improve DRM fbdev emulation device names" + - selftests: net: Correct ping6 expected rc from 2 to 1 + - s390/kexec_file: fix error handling when applying relocations + - sch_cake: do not call cake_destroy() from cake_init() + - inet_diag: fix kernel-infoleak for UDP sockets + - netdevsim: don't overwrite read only ethtool parms + - selftests: icmp_redirect: pass xfail=0 to log_test() + - net: hns3: fix use-after-free bug in hclgevf_send_mbx_msg + - net: hns3: fix race condition in debugfs + - selftests: Add duplicate config only for MD5 VRF tests + - selftests: Fix raw socket bind tests with VRF + - selftests: Fix IPv6 address bind tests + - dmaengine: idxd: fix missed completion on abort path + - dmaengine: st_fdma: fix MODULE_ALIAS + - drm: simpledrm: fix wrong unit with pixel clock + - net/sched: sch_ets: don't remove idle classes from the round-robin list + - selftests/net: toeplitz: fix udp option + - net: dsa: mv88e6xxx: Unforce speed & duplex in mac_link_down() + - selftest/net/forwarding: declare NETIFS p9 p10 + - mptcp: never allow the PM to close a listener subflow + - drm/ast: potential dereference of null pointer + - drm/i915/display: Fix an unsigned subtraction which can never be negative. + - mac80211: agg-tx: don't schedule_and_wake_txq() under sta->lock + - cfg80211: Acquire wiphy mutex on regulatory work + - mac80211: fix lookup when adding AddBA extension element + - net: stmmac: fix tc flower deletion for VLAN priority Rx steering + - flow_offload: return EOPNOTSUPP for the unsupported mpls action type + - rds: memory leak in __rds_conn_create() + - ice: Use div64_u64 instead of div_u64 in adjfine + - ice: Don't put stale timestamps in the skb + - drm/amd/display: Set exit_optimized_pwr_state for DCN31 + - drm/amd/pm: fix a potential gpu_metrics_table memory leak + - mptcp: remove tcp ulp setsockopt support + - mptcp: clear 'kern' flag from fallback sockets + - mptcp: fix deadlock in __mptcp_push_pending() + - soc/tegra: fuse: Fix bitwise vs. logical OR warning + - igb: Fix removal of unicast MAC filters of VFs + - igbvf: fix double free in `igbvf_probe` + - igc: Fix typo in i225 LTR functions + - ixgbe: Document how to enable NBASE-T support + - ixgbe: set X550 MDIO speed before talking to PHY + - netdevsim: Zero-initialize memory for new map's value in function + nsim_bpf_map_alloc + - net/packet: rx_owner_map depends on pg_vec + - net: stmmac: dwmac-rk: fix oob read in rk_gmac_setup + - sfc_ef100: potential dereference of null pointer + - dsa: mv88e6xxx: fix debug print for SPEED_UNFORCED + - net: Fix double 0x prefix print in SKB dump + - net/smc: Prevent smc_release() from long blocking + - net: systemport: Add global locking for descriptor lifecycle + - sit: do not call ipip6_dev_free() from sit_init_net() + - afs: Fix mmap + - arm64: kexec: Fix missing error code 'ret' warning in load_other_segments() + - bpf: Fix extable fixup offset. + - bpf, selftests: Fix racing issue in btf_skc_cls_ingress test + - powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n + - USB: gadget: bRequestType is a bitfield, not a enum + - Revert "usb: early: convert to readl_poll_timeout_atomic()" + - KVM: x86: Drop guest CPUID check for host initiated writes to + MSR_IA32_PERF_CAPABILITIES + - tty: n_hdlc: make n_hdlc_tty_wakeup() asynchronous + - USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) + - usb: dwc2: fix STM ID/VBUS detection startup delay in dwc2_driver_probe + - PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error + - PCI/MSI: Mask MSI-X vectors only on success + - usb: xhci-mtk: fix list_del warning when enable list debug + - usb: xhci: Extend support for runtime power management for AMD's Yellow + carp. + - usb: cdnsp: Fix incorrect status for control request + - usb: cdnsp: Fix incorrect calling of cdnsp_died function + - usb: cdnsp: Fix issue in cdnsp_log_ep trace event + - usb: cdnsp: Fix lack of spin_lock_irqsave/spin_lock_restore + - usb: typec: tcpm: fix tcpm unregister port but leave a pending timer + - usb: gadget: u_ether: fix race in setting MAC address in setup phase + - USB: serial: cp210x: fix CP2105 GPIO registration + - USB: serial: option: add Telit FN990 compositions + - selinux: fix sleeping function called from invalid context + - btrfs: fix memory leak in __add_inode_ref() + - btrfs: fix double free of anon_dev after failure to create subvolume + - btrfs: check WRITE_ERR when trying to read an extent buffer + - btrfs: fix missing blkdev_put() call in btrfs_scan_one_device() + - zonefs: add MODULE_ALIAS_FS + - iocost: Fix divide-by-zero on donation from low hweight cgroup + - serial: 8250_fintek: Fix garbled text for console + - timekeeping: Really make sure wall_to_monotonic isn't positive + - cifs: sanitize multiple delimiters in prepath + - locking/rtmutex: Fix incorrect condition in rtmutex_spin_on_owner() + - riscv: dts: unleashed: Add gpio card detect to mmc-spi-slot + - riscv: dts: unmatched: Add gpio card detect to mmc-spi-slot + - perf inject: Fix segfault due to close without open + - perf inject: Fix segfault due to perf_data__fd() without open + - libata: if T_LENGTH is zero, dma direction should be DMA_NONE + - powerpc/module_64: Fix livepatching for RO modules + - drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE + - drm/amdgpu: don't override default ECO_BITs setting + - drm/amd/pm: fix reading SMU FW version from amdgpu_firmware_info on YC + - Revert "can: m_can: remove support for custom bit timing" + - can: m_can: make custom bittiming fields const + - can: m_can: pci: use custom bit timings for Elkhart Lake + - ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name + - xsk: Do not sleep in poll() when need_wakeup set + - mptcp: add missing documented NL params + - bpf, x64: Factor out emission of REX byte in more cases + - bpf: Fix extable address check. + - USB: core: Make do_proc_control() and do_proc_bulk() killable + - media: mxl111sf: change mutex_init() location + - fuse: annotate lock in fuse_reverse_inval_entry() + - ovl: fix warning in ovl_create_real() + - scsi: scsi_debug: Don't call kcalloc() if size arg is zero + - scsi: scsi_debug: Fix type in min_t to avoid stack OOB + - scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() + - io-wq: remove spurious bit clear on task_work addition + - io-wq: check for wq exit after adding new worker task_work + - rcu: Mark accesses to rcu_state.n_force_qs + - io-wq: drop wqe lock before creating new worker + - bus: ti-sysc: Fix variable set but not used warning for reinit_modules + - selftests/damon: test debugfs file reads/writes with huge count + - Revert "xsk: Do not sleep in poll() when need_wakeup set" + - xen/blkfront: harden blkfront against event channel storms + - xen/netfront: harden netfront against event channel storms + - xen/console: harden hvc_xen against event channel storms + - xen/netback: fix rx queue stall detection + - xen/netback: don't queue unlimited number of packages + - Linux 5.15.11 + + * Jammy update: v5.15.10 upstream stable release (LP: #1956301) + - nfc: fix segfault in nfc_genl_dump_devices_done + - hwmon: (corsair-psu) fix plain integer used as NULL pointer + - RDMA: Fix use-after-free in rxe_queue_cleanup + - RDMA/mlx5: Fix releasing unallocated memory in dereg MR flow + - mtd: rawnand: Fix nand_erase_op delay + - mtd: rawnand: Fix nand_choose_best_timings() on unsupported interface + - inet: use #ifdef CONFIG_SOCK_RX_QUEUE_MAPPING consistently + - dt-bindings: media: nxp,imx7-mipi-csi2: Drop bad if/then schema + - clk: qcom: sm6125-gcc: Swap ops of ice and apps on sdcc1 + - perf bpf_skel: Do not use typedef to avoid error on old clang + - netfs: Fix lockdep warning from taking sb_writers whilst holding mmap_lock + - RDMA/irdma: Fix a user-after-free in add_pble_prm + - RDMA/irdma: Fix a potential memory allocation issue in + 'irdma_prm_add_pble_mem()' + - RDMA/irdma: Report correct WC errors + - RDMA/irdma: Don't arm the CQ more than two times if no CE for this CQ + - ice: fix FDIR init missing when reset VF + - vmxnet3: fix minimum vectors alloc issue + - i2c: virtio: fix completion handling + - drm/msm: Fix null ptr access msm_ioctl_gem_submit() + - drm/msm/a6xx: Fix uinitialized use of gpu_scid + - drm/msm/dsi: set default num_data_lanes + - drm/msm/dp: Avoid unpowered AUX xfers that caused crashes + - KVM: arm64: Save PSTATE early on exit + - s390/test_unwind: use raw opcode instead of invalid instruction + - Revert "tty: serial: fsl_lpuart: drop earlycon entry for i.MX8QXP" + - net/mlx4_en: Update reported link modes for 1/10G + - loop: Use pr_warn_once() for loop_control_remove() warning + - ALSA: hda: Add Intel DG2 PCI ID and HDMI codec vid + - ALSA: hda/hdmi: fix HDA codec entry table order for ADL-P + - parisc/agp: Annotate parisc agp init functions with __init + - i2c: rk3x: Handle a spurious start completion interrupt flag + - net: netlink: af_netlink: Prevent empty skb by adding a check on len. + - drm/amdgpu: cancel the correct hrtimer on exit + - drm/amdgpu: check atomic flag to differeniate with legacy path + - drm/amd/display: Fix for the no Audio bug with Tiled Displays + - drm/amdkfd: fix double free mem structure + - drm/amd/display: add connector type check for CRC source set + - drm/amdkfd: process_info lock not needed for svm + - tracing: Fix a kmemleak false positive in tracing_map + - staging: most: dim2: use device release method + - fuse: make sure reclaim doesn't write the inode + - perf inject: Fix itrace space allowed for new attributes + - Linux 5.15.10 + + * Jammy update: v5.15.9 upstream stable release (LP: #1955161) + - netfilter: selftest: conntrack_vrf.sh: fix file permission + - Linux 5.15.9 + + * [SRU][I/J/OEM-5.13/OEM-5.14] Fix pci port lost when hotplug dock + (LP: #1954646) + - PCI: Re-enable Downstream Port LTR after reset or hotplug + + * Add support for NVIDIA EC backlight (LP: #1953286) + - platform/x86: Add driver for ACPI WMAA EC-based backlight control + - platform/x86: Remove "WMAA" from identifier names in wmaa-backlight-wmi.c + - platform/x86: Rename wmaa-backlight-wmi to nvidia-wmi-ec-backlight + - [Config] NVIDIA_WMI_EC_BACKLIGHT=m + + * Improve USB Type-C support (LP: #1950974) + - usb: typec: ucsi: Always cancel the command if PPM reports BUSY condition + - usb: typec: ucsi: Don't stop alt mode registration on busy condition + - usb: typec: ucsi: Add polling mechanism for partner tasks like alt mode + checking + - usb: typec: ucsi: acpi: Reduce the command completion timeout + - usb: typec: ucsi: Check the partner alt modes always if there is PD contract + - usb: typec: ucsi: Read the PDOs in separate work + - usb: typec: ucsi: Better fix for missing unplug events issue + + * Fix power button wakeup with shared IRQs on AMD platforms (LP: #1953540) + - pinctrl: amd: Fix wakeups when IRQ is shared with SCI + + * AMD: Suspend not working when some cores are disabled through cpufreq + (LP: #1954930) + - ACPI: processor idle: Allow playing dead in C3 state + + * Jammy update: v5.15.8 upstream stable release (LP: #1954931) + - Revert "UBUNTU: SAUCE: selftests: fib_tests: assign address to dummy1 for + rp_filter tests" + - usb: gadget: uvc: fix multiple opens + - HID: quirks: Add quirk for the Microsoft Surface 3 type-cover + - HID: google: add eel USB id + - HID: intel-ish-hid: ipc: only enable IRQ wakeup when requested + - HID: add hid_is_usb() function to make it simpler for USB detection + - HID: add USB_HID dependancy to hid-prodikeys + - HID: add USB_HID dependancy to hid-chicony + - HID: add USB_HID dependancy on some USB HID drivers + - HID: bigbenff: prevent null pointer dereference + - HID: wacom: fix problems when device is not a valid USB device + - HID: check for valid USB device for many HID drivers + - mtd: dataflash: Add device-tree SPI IDs + - mmc: spi: Add device-tree SPI IDs + - HID: sony: fix error path in probe + - HID: Ignore battery for Elan touchscreen on Asus UX550VE + - platform/x86/intel: hid: add quirk to support Surface Go 3 + - nft_set_pipapo: Fix bucket load in AVX2 lookup routine for six 8-bit groups + - IB/hfi1: Insure use of smp_processor_id() is preempt disabled + - IB/hfi1: Fix early init panic + - IB/hfi1: Fix leak of rcvhdrtail_dummy_kvaddr + - can: kvaser_usb: get CAN clock frequency from device + - can: kvaser_pciefd: kvaser_pciefd_rx_error_frame(): increase correct + stats->{rx,tx}_errors counter + - can: sja1000: fix use after free in ems_pcmcia_add_card() + - can: pch_can: pch_can_rx_normal: fix use after free + - can: m_can: m_can_read_fifo: fix memory leak in error branch + - can: m_can: pci: fix incorrect reference clock rate + - can: m_can: pci: fix iomap_read_fifo() and iomap_write_fifo() + - can: m_can: Disable and ignore ELO interrupt + - net: dsa: mv88e6xxx: fix "don't use PHY_DETECT on internal PHY's" + - net: dsa: mv88e6xxx: allow use of PHYs on CPU and DSA ports + - x86/sme: Explicitly map new EFI memmap table as encrypted + - platform/x86: amd-pmc: Fix s2idle failures on certain AMD laptops + - nfc: fix potential NULL pointer deref in nfc_genl_dump_ses_done + - selftests: netfilter: add a vrf+conntrack testcase + - vrf: don't run conntrack on vrf with !dflt qdisc + - bpf, x86: Fix "no previous prototype" warning + - bpf, sockmap: Attach map progs to psock early for feature probes + - bpf: Make sure bpf_disable_instrumentation() is safe vs preemption. + - bpf: Fix the off-by-two error in range markings + - ice: ignore dropped packets during init + - ethtool: do not perform operations on net devices being unregistered + - bonding: make tx_rebalance_counter an atomic + - nfp: Fix memory leak in nfp_cpp_area_cache_add() + - udp: using datalen to cap max gso segments + - netfilter: nft_exthdr: break evaluation if setting TCP option fails + - netfilter: conntrack: annotate data-races around ct->timeout + - iavf: restore MSI state on reset + - iavf: Fix reporting when setting descriptor count + - IB/hfi1: Correct guard on eager buffer deallocation + - devlink: fix netns refcount leak in devlink_nl_cmd_reload() + - net: bcm4908: Handle dma_set_coherent_mask error codes + - net: dsa: mv88e6xxx: error handling for serdes_power functions + - net: dsa: felix: Fix memory leak in felix_setup_mmio_filtering + - net/sched: fq_pie: prevent dismantle issue + - net: mvpp2: fix XDP rx queues registering + - KVM: x86: Don't WARN if userspace mucks with RCX during string I/O exit + - KVM: x86: Ignore sparse banks size for an "all CPUs", non-sparse IPI req + - KVM: x86: Wait for IPIs to be delivered when handling Hyper-V TLB flush + hypercall + - timers: implement usleep_idle_range() + - mm/damon/core: fix fake load reports due to uninterruptible sleeps + - mm/slub: fix endianness bug for alloc/free_traces attributes + - mm: bdi: initialize bdi_min_ratio when bdi is unregistered + - ALSA: ctl: Fix copy of updated id with element read/write + - ALSA: hda/realtek - Add headset Mic support for Lenovo ALC897 platform + - ALSA: hda/realtek: Fix quirk for TongFang PHxTxX1 + - ALSA: pcm: oss: Fix negative period/buffer sizes + - ALSA: pcm: oss: Limit the period size to 16MB + - ALSA: pcm: oss: Handle missing errors in snd_pcm_oss_change_params*() + - cifs: Fix crash on unload of cifs_arc4.ko + - scsi: qla2xxx: Format log strings only if needed + - btrfs: clear extent buffer uptodate when we fail to write it + - btrfs: fix re-dirty process of tree-log nodes + - btrfs: replace the BUG_ON in btrfs_del_root_ref with proper error handling + - btrfs: free exchange changeset on failures + - perf intel-pt: Fix some PGE (packet generation enable/control flow packets) + usage + - perf intel-pt: Fix sync state when a PSB (synchronization) packet is found + - perf intel-pt: Fix intel_pt_fup_event() assumptions about setting state type + - perf intel-pt: Fix state setting when receiving overflow (OVF) packet + - perf intel-pt: Fix next 'err' value, walking trace + - perf intel-pt: Fix missing 'instruction' events with 'q' option + - perf intel-pt: Fix error timestamp setting on the decoder error path + - md: fix update super 1.0 on rdev size change + - nfsd: fix use-after-free due to delegation race + - nfsd: Fix nsfd startup race (again) + - tracefs: Have new files inherit the ownership of their parent + - selftests: KVM: avoid failures due to reserved HyperTransport region + - hwmon: (pwm-fan) Ensure the fan going on in .probe() + - mmc: renesas_sdhi: initialize variable properly when tuning + - clk: qcom: regmap-mux: fix parent clock lookup + - thermal: int340x: Fix VCoRefLow MMIO bit offset for TGL + - drm/syncobj: Deal with signalled fences in drm_syncobj_find_fence. + - libata: add horkage for ASMedia 1092 + - io_uring: ensure task_work gets run as part of cancelations + - wait: add wake_up_pollfree() + - binder: use wake_up_pollfree() + - signalfd: use wake_up_pollfree() + - aio: keep poll requests on waitqueue until completed + - aio: fix use-after-free due to missing POLLFREE handling + - tracefs: Set all files to the same group ownership as the mount option + - i2c: mpc: Use atomic read and fix break condition + - block: fix ioprio_get(IOPRIO_WHO_PGRP) vs setuid(2) + - scsi: pm80xx: Do not call scsi_remove_host() in pm8001_alloc() + - scsi: scsi_debug: Fix buffer size of REPORT ZONES command + - ALSA: usb-audio: Reorder snd_djm_devices[] entries + - qede: validate non LSO skb length + - PM: runtime: Fix pm_runtime_active() kerneldoc comment + - ASoC: rt5682: Fix crash due to out of scope stack vars + - ASoC: qdsp6: q6routing: Fix return value from msm_routing_put_audio_mixer + - ASoC: codecs: wsa881x: fix return values from kcontrol put + - ASoC: codecs: wcd934x: handle channel mappping list correctly + - ASoC: codecs: wcd934x: return correct value from mixer put + - RDMA/hns: Do not halt commands during reset until later + - RDMA/hns: Do not destroy QP resources in the hw resetting phase + - hwmon: (dell-smm) Fix warning on /proc/i8k creation error + - clk: imx: use module_platform_driver + - clk: qcom: clk-alpha-pll: Don't reconfigure running Trion + - i40e: Fix failed opcode appearing if handling messages from VF + - i40e: Fix pre-set max number of queues for VF + - mtd: rawnand: fsmc: Take instruction delay into account + - mtd: rawnand: fsmc: Fix timing computation + - bpf, sockmap: Re-evaluate proto ops when psock is removed from sockmap + - i40e: Fix NULL pointer dereference in i40e_dbg_dump_desc + - Revert "PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge" + - drm/amd/display: Fix DPIA outbox timeout after S3/S4/reset + - perf tools: Fix SMT detection fast read path + - Documentation/locking/locktypes: Update migrate_disable() bits. + - dt-bindings: net: Reintroduce PHY no lane swap binding + - tools build: Remove needless libpython-version feature check that breaks + test-all fast path + - net: cdc_ncm: Allow for dwNtbOutMaxSize to be unset or zero + - net: altera: set a couple error code in probe() + - net: fec: only clear interrupt of handling queue in fec_enet_rx_queue() + - net, neigh: clear whole pneigh_entry at alloc time + - net/qla3xxx: fix an error code in ql_adapter_up() + - selftests/fib_tests: Rework fib_rp_filter_test() + - USB: gadget: detect too-big endpoint 0 requests + - USB: gadget: zero allocate endpoint 0 buffers + - Revert "usb: dwc3: dwc3-qcom: Enable tx-fifo-resize property by default" + - usb: core: config: fix validation of wMaxPacketValue entries + - usb: core: config: using bit mask instead of individual bits + - xhci: avoid race between disable slot command and host runtime suspend + - iio: gyro: adxrs290: fix data signedness + - iio: trigger: Fix reference counting + - iio: trigger: stm32-timer: fix MODULE_ALIAS + - iio: stk3310: Don't return error code in interrupt handler + - iio: mma8452: Fix trigger reference couting + - iio: ltr501: Don't return error code in trigger handler + - iio: kxsd9: Don't return error code in trigger handler + - iio: itg3200: Call iio_trigger_notify_done() on error + - iio: dln2-adc: Fix lockdep complaint + - iio: dln2: Check return value of devm_iio_trigger_register() + - iio: at91-sama5d2: Fix incorrect sign extension + - iio: adc: stm32: fix a current leak by resetting pcsel before disabling vdda + - iio: adc: axp20x_adc: fix charging current reporting on AXP22x + - iio: ad7768-1: Call iio_trigger_notify_done() on error + - iio: accel: kxcjk-1013: Fix possible memory leak in probe and remove + - nvmem: eeprom: at25: fix FRAM byte_len + - bus: mhi: pci_generic: Fix device recovery failed issue + - bus: mhi: core: Add support for forced PM resume + - csky: fix typo of fpu config macro + - irqchip/aspeed-scu: Replace update_bits with write_bits. + - irqchip/armada-370-xp: Fix return value of armada_370_xp_msi_alloc() + - irqchip/armada-370-xp: Fix support for Multi-MSI interrupts + - aio: Fix incorrect usage of eventfd_signal_allowed() + - irqchip/irq-gic-v3-its.c: Force synchronisation when issuing INVALL + - irqchip: nvic: Fix offset for Interrupt Priority Offsets + - misc: fastrpc: fix improper packet size calculation + - clocksource/drivers/dw_apb_timer_of: Fix probe failure + - bpf: Add selftests to cover packet access corner cases + - Linux 5.15.8 + + * Can't read/write SD card after running CPU offline test in 5.11.0 and 5.13.0 + (LP: #1951784) // Jammy update: v5.15.8 upstream stable release + (LP: #1954931) + - misc: rtsx: Avoid mangling IRQ during runtime PM + + * Enable Landlock by default (LP: #1953192) + - [Config] Enable Landlock by default + + * Add s0i3 RTC wake up for AMD systems (LP: #1950013) + - platform/x86: amd-pmc: Export Idlemask values based on the APU + - platform/x86: amd-pmc: adjust arguments for `amd_pmc_send_cmd` + - platform/x86: amd-pmc: Add special handling for timer based S0i3 wakeup + + * Fix runtime power management on USB controller with XHCI_RESET_ON_RESUME + flag (LP: #1954369) + - SAUCE: xhci: Remove CONFIG_USB_DEFAULT_PERSIST to prevent xHCI from runtime + suspending + + * Fix System hangs on black screen when reboot (LP: #1949321) + - drm/i915/hdmi: convert intel_hdmi_to_dev to intel_hdmi_to_i915 + - drm/i915: Don't request GMBUS to generate irqs when called while irqs are + off + - drm/i915/hdmi: Turn DP++ TMDS output buffers back on in encoder->shutdown() + + * require CAP_NET_ADMIN to attach N_HCI ldisc (LP: #1949516) + - Bluetooth: hci_ldisc: require CAP_NET_ADMIN to attach N_HCI ldisc + + * mt7921e: Failed to start WM firmware (LP: #1954300) + - SAUCE: Bluetooth: btusb: Handle download_firmware failure cases + - SAUCE: Bluetooth: btusb: Return error code when getting patch status failed + + * Miscellaneous Ubuntu changes + - [Packaging] Add list of built-in modules to the ABI + - [Packaging] abi-check: Process modules.builtin + - SAUCE: allow to use __wake_up_pollfree() from GPL modules + - [Packaging] enforce xz compression for debs + - [Config] update config after v5.15.12 + - [Packaging] temporarily disable signed v4l2loopback + + -- Andrea Righi Tue, 04 Jan 2022 11:22:10 +0100 + +linux (5.15.0-14.14) jammy; urgency=medium + + * jammy/linux: 5.15.0-14.14 -proposed tracker (LP: #1954627) + + * Jammy update: v5.15.7 upstream stable release (LP: #1953731) + - ALSA: usb-audio: Restrict rates for the shared clocks + - ALSA: usb-audio: Rename early_playback_start flag with lowlatency_playback + - ALSA: usb-audio: Disable low-latency playback for free-wheel mode + - ALSA: usb-audio: Disable low-latency mode for implicit feedback sync + - ALSA: usb-audio: Check available frames for the next packet size + - ALSA: usb-audio: Add spinlock to stop_urbs() + - ALSA: usb-audio: Improved lowlatency playback support + - ALSA: usb-audio: Avoid killing in-flight URBs during draining + - ALSA: usb-audio: Fix packet size calculation regression + - ALSA: usb-audio: Less restriction for low-latency playback mode + - ALSA: usb-audio: Switch back to non-latency mode at a later point + - ALSA: usb-audio: Don't start stream for capture at prepare + - gfs2: release iopen glock early in evict + - gfs2: Fix length of holes reported at end-of-file + - powerpc/pseries/ddw: Revert "Extend upper limit for huge DMA window for + persistent memory" + - powerpc/pseries/ddw: Do not try direct mapping with persistent memory and + one window + - drm/sun4i: fix unmet dependency on RESET_CONTROLLER for PHY_SUN6I_MIPI_DPHY + - mac80211: do not access the IV when it was stripped + - mac80211: fix throughput LED trigger + - x86/hyperv: Move required MSRs check to initial platform probing + - net/smc: Transfer remaining wait queue entries during fallback + - atlantic: Fix OOB read and write in hw_atl_utils_fw_rpc_wait + - net: return correct error code + - pinctrl: qcom: fix unmet dependencies on GPIOLIB for GPIOLIB_IRQCHIP + - platform/x86: dell-wmi-descriptor: disable by default + - platform/x86: thinkpad_acpi: Add support for dual fan control + - platform/x86: thinkpad_acpi: Fix WWAN device disabled issue after S3 deep + - s390/setup: avoid using memblock_enforce_memory_limit + - btrfs: silence lockdep when reading chunk tree during mount + - btrfs: check-integrity: fix a warning on write caching disabled disk + - thermal: core: Reset previous low and high trip during thermal zone init + - scsi: iscsi: Unblock session then wake up error handler + - drm/amd/pm: Remove artificial freq level on Navi1x + - drm/amd/amdkfd: Fix kernel panic when reset failed and been triggered again + - drm/amd/amdgpu: fix potential memleak + - ata: ahci: Add Green Sardine vendor ID as board_ahci_mobile + - ata: libahci: Adjust behavior when StorageD3Enable _DSD is set + - ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in + hns_dsaf_ge_srst_by_port() + - ipv6: check return value of ipv6_skip_exthdr + - net: tulip: de4x5: fix the problem that the array 'lp->phy[8]' may be out of + bound + - net: ethernet: dec: tulip: de4x5: fix possible array overflows in + type3_infoblock() + - perf sort: Fix the 'weight' sort key behavior + - perf sort: Fix the 'ins_lat' sort key behavior + - perf sort: Fix the 'p_stage_cyc' sort key behavior + - perf inject: Fix ARM SPE handling + - perf hist: Fix memory leak of a perf_hpp_fmt + - perf report: Fix memory leaks around perf_tip() + - tracing: Don't use out-of-sync va_list in event printing + - net/smc: Avoid warning of possible recursive locking + - ACPI: Add stubs for wakeup handler functions + - net/tls: Fix authentication failure in CCM mode + - vrf: Reset IPCB/IP6CB when processing outbound pkts in vrf dev xmit + - kprobes: Limit max data_size of the kretprobe instances + - ALSA: hda/cs8409: Set PMSG_ON earlier inside cs8409 driver + - rt2x00: do not mark device gone on EPROTO errors during start + - ipmi: Move remove_work to dedicated workqueue + - cpufreq: Fix get_cpu_device() failure in add_cpu_dev_symlink() + - iwlwifi: mvm: retry init flow if failed + - dma-buf: system_heap: Use 'for_each_sgtable_sg' in pages free flow + - s390/pci: move pseudo-MMIO to prevent MIO overlap + - fget: check that the fd still exists after getting a ref to it + - sata_fsl: fix UAF in sata_fsl_port_stop when rmmod sata_fsl + - sata_fsl: fix warning in remove_proc_entry when rmmod sata_fsl + - scsi: lpfc: Fix non-recovery of remote ports following an unsolicited LOGO + - scsi: ufs: ufs-pci: Add support for Intel ADL + - ipv6: fix memory leak in fib6_rule_suppress + - drm/amd/display: Allow DSC on supported MST branch devices + - drm/i915/dp: Perform 30ms delay after source OUI write + - KVM: fix avic_set_running for preemptable kernels + - KVM: Disallow user memslot with size that exceeds "unsigned long" + - KVM: x86/mmu: Fix TLB flush range when handling disconnected pt + - KVM: Ensure local memslot copies operate on up-to-date arch-specific data + - KVM: x86: ignore APICv if LAPIC is not enabled + - KVM: nVMX: Emulate guest TLB flush on nested VM-Enter with new vpid12 + - KVM: nVMX: Flush current VPID (L1 vs. L2) for KVM_REQ_TLB_FLUSH_GUEST + - KVM: nVMX: Abide to KVM_REQ_TLB_FLUSH_GUEST request on nested vmentry/vmexit + - KVM: VMX: prepare sync_pir_to_irr for running with APICv disabled + - KVM: x86: Use a stable condition around all VT-d PI paths + - KVM: MMU: shadow nested paging does not have PKU + - KVM: arm64: Avoid setting the upper 32 bits of TCR_EL2 and CPTR_EL2 to 1 + - KVM: X86: Use vcpu->arch.walk_mmu for kvm_mmu_invlpg() + - KVM: x86: check PIR even for vCPUs with disabled APICv + - tracing/histograms: String compares should not care about signed values + - net: dsa: mv88e6xxx: Fix application of erratum 4.8 for 88E6393X + - net: dsa: mv88e6xxx: Drop unnecessary check in + mv88e6393x_serdes_erratum_4_6() + - net: dsa: mv88e6xxx: Save power by disabling SerDes trasmitter and receiver + - net: dsa: mv88e6xxx: Add fix for erratum 5.2 of 88E6393X family + - net: dsa: mv88e6xxx: Fix inband AN for 2500base-x on 88E6393X family + - net: dsa: mv88e6xxx: Link in pcs_get_state() if AN is bypassed + - wireguard: selftests: increase default dmesg log size + - wireguard: allowedips: add missing __rcu annotation to satisfy sparse + - wireguard: selftests: actually test for routing loops + - wireguard: selftests: rename DEBUG_PI_LIST to DEBUG_PLIST + - wireguard: device: reset peer src endpoint when netns exits + - wireguard: receive: use ring buffer for incoming handshakes + - wireguard: receive: drop handshakes if queue lock is contended + - wireguard: ratelimiter: use kvcalloc() instead of kvzalloc() + - i2c: stm32f7: flush TX FIFO upon transfer errors + - i2c: stm32f7: recover the bus on access timeout + - i2c: stm32f7: stop dma transfer in case of NACK + - i2c: cbus-gpio: set atomic transfer callback + - natsemi: xtensa: fix section mismatch warnings + - tcp: fix page frag corruption on page fault + - net: qlogic: qlcnic: Fix a NULL pointer dereference in + qlcnic_83xx_add_rings() + - net: mpls: Fix notifications when deleting a device + - siphash: use _unaligned version by default + - arm64: ftrace: add missing BTIs + - iwlwifi: fix warnings produced by kernel debug options + - net/mlx5e: IPsec: Fix Software parser inner l3 type setting in case of + encapsulation + - net/mlx4_en: Fix an use-after-free bug in mlx4_en_try_alloc_resources() + - selftests: net: Correct case name + - net: dsa: b53: Add SPI ID table + - mt76: mt7915: fix NULL pointer dereference in mt7915_get_phy_mode + - ASoC: tegra: Fix wrong value type in ADMAIF + - ASoC: tegra: Fix wrong value type in I2S + - ASoC: tegra: Fix wrong value type in DMIC + - ASoC: tegra: Fix wrong value type in DSPK + - ASoC: tegra: Fix kcontrol put callback in ADMAIF + - ASoC: tegra: Fix kcontrol put callback in I2S + - ASoC: tegra: Fix kcontrol put callback in DMIC + - ASoC: tegra: Fix kcontrol put callback in DSPK + - ASoC: tegra: Fix kcontrol put callback in AHUB + - rxrpc: Fix rxrpc_peer leak in rxrpc_look_up_bundle() + - rxrpc: Fix rxrpc_local leak in rxrpc_lookup_peer() + - ALSA: intel-dsp-config: add quirk for CML devices based on ES8336 codec + - net: stmmac: Avoid DMA_CHAN_CONTROL write if no Split Header support + - net: usb: lan78xx: lan78xx_phy_init(): use PHY_POLL instead of "0" if no IRQ + is available + - net: marvell: mvpp2: Fix the computation of shared CPUs + - dpaa2-eth: destroy workqueue at the end of remove function + - octeontx2-af: Fix a memleak bug in rvu_mbox_init() + - net: annotate data-races on txq->xmit_lock_owner + - ipv4: convert fib_num_tclassid_users to atomic_t + - net/smc: fix wrong list_del in smc_lgr_cleanup_early + - net/rds: correct socket tunable error in rds_tcp_tune() + - net/smc: Keep smc_close_final rc during active close + - drm/msm/a6xx: Allocate enough space for GMU registers + - drm/msm: Do hw_init() before capturing GPU state + - drm/vc4: kms: Wait for the commit before increasing our clock rate + - drm/vc4: kms: Fix return code check + - drm/vc4: kms: Add missing drm_crtc_commit_put + - drm/vc4: kms: Clear the HVS FIFO commit pointer once done + - drm/vc4: kms: Don't duplicate pending commit + - drm/vc4: kms: Fix previous HVS commit wait + - atlantic: Increase delay for fw transactions + - atlatnic: enable Nbase-t speeds with base-t + - atlantic: Fix to display FW bundle version instead of FW mac version. + - atlantic: Add missing DIDs and fix 115c. + - Remove Half duplex mode speed capabilities. + - atlantic: Fix statistics logic for production hardware + - atlantic: Remove warn trace message. + - KVM: x86/mmu: Skip tlb flush if it has been done in zap_gfn_range() + - KVM: x86/mmu: Pass parameter flush as false in + kvm_tdp_mmu_zap_collapsible_sptes() + - drm/msm/devfreq: Fix OPP refcnt leak + - drm/msm: Fix mmap to include VM_IO and VM_DONTDUMP + - drm/msm: Fix wait_fence submitqueue leak + - drm/msm: Restore error return on invalid fence + - ASoC: rk817: Add module alias for rk817-codec + - iwlwifi: Fix memory leaks in error handling path + - KVM: X86: Fix when shadow_root_level=5 && guest root_level<4 + - KVM: SEV: initialize regions_list of a mirror VM + - net/mlx5e: Fix missing IPsec statistics on uplink representor + - net/mlx5: Move MODIFY_RQT command to ignore list in internal error state + - net/mlx5: E-switch, Respect BW share of the new group + - net/mlx5: E-Switch, fix single FDB creation on BlueField + - net/mlx5: E-Switch, Check group pointer before reading bw_share value + - KVM: x86/pmu: Fix reserved bits for AMD PerfEvtSeln register + - KVM: VMX: Set failure code in prepare_vmcs02() + - mctp: Don't let RTM_DELROUTE delete local routes + - Revert "drm/i915: Implement Wa_1508744258" + - io-wq: don't retry task_work creation failure on fatal conditions + - x86/sev: Fix SEV-ES INS/OUTS instructions for word, dword, and qword + - x86/entry: Add a fence for kernel entry SWAPGS in paranoid_entry() + - x86/entry: Use the correct fence macro after swapgs in kernel CR3 + - x86/xen: Add xenpv_restore_regs_and_return_to_usermode() + - preempt/dynamic: Fix setup_preempt_mode() return value + - sched/uclamp: Fix rq->uclamp_max not set on first enqueue + - KVM: SEV: Return appropriate error codes if SEV-ES scratch setup fails + - KVM: x86/mmu: Rename slot_handle_leaf to slot_handle_level_4k + - KVM: x86/mmu: Remove spurious TLB flushes in TDP MMU zap collapsible path + - net/mlx5e: Rename lro_timeout to packet_merge_timeout + - net/mlx5e: Rename TIR lro functions to TIR packet merge functions + - net/mlx5e: Sync TIR params updates against concurrent create/modify + - serial: 8250_bcm7271: UART errors after resuming from S2 + - parisc: Fix KBUILD_IMAGE for self-extracting kernel + - parisc: Fix "make install" on newer debian releases + - parisc: Mark cr16 CPU clocksource unstable on all SMP machines + - vgacon: Propagate console boot parameters before calling `vc_resize' + - xhci: Fix commad ring abort, write all 64 bits to CRCR register. + - USB: NO_LPM quirk Lenovo Powered USB-C Travel Hub + - usb: typec: tcpm: Wait in SNK_DEBOUNCED until disconnect + - usb: cdns3: gadget: fix new urb never complete if ep cancel previous + requests + - usb: cdnsp: Fix a NULL pointer dereference in cdnsp_endpoint_init() + - x86/tsc: Add a timer to make sure TSC_adjust is always checked + - x86/tsc: Disable clocksource watchdog for TSC on qualified platorms + - x86/64/mm: Map all kernel memory into trampoline_pgd + - tty: serial: msm_serial: Deactivate RX DMA for polling support + - serial: pl011: Add ACPI SBSA UART match id + - serial: tegra: Change lower tolerance baud rate limit for tegra20 and + tegra30 + - serial: core: fix transmit-buffer reset and memleak + - serial: 8250_pci: Fix ACCES entries in pci_serial_quirks array + - serial: 8250_pci: rewrite pericom_do_set_divisor() + - serial: 8250: Fix RTS modem control while in rs485 mode + - serial: liteuart: Fix NULL pointer dereference in ->remove() + - serial: liteuart: fix use-after-free and memleak on unbind + - serial: liteuart: fix minor-number leak on probe errors + - ipmi: msghandler: Make symbol 'remove_work_wq' static + - Linux 5.15.7 + + * Updates to ib_peer_memory requested by Nvidia (LP: #1947206) + - SAUCE: RDMA/core: Updated ib_peer_memory + - SAUCE: RDMA/core: ib_peer_memory fix build errors + + * Jammy update: v5.15.6 upstream stable release (LP: #1953370) + - scsi: sd: Fix sd_do_mode_sense() buffer length handling + - ACPI: Get acpi_device's parent from the parent field + - ACPI: CPPC: Add NULL pointer check to cppc_get_perf() + - USB: serial: pl2303: fix GC type detection + - USB: serial: option: add Telit LE910S1 0x9200 composition + - USB: serial: option: add Fibocom FM101-GL variants + - usb: dwc2: gadget: Fix ISOC flow for elapsed frames + - usb: dwc2: hcd_queue: Fix use of floating point literal + - usb: dwc3: leave default DMA for PCI devices + - usb: dwc3: core: Revise GHWPARAMS9 offset + - usb: dwc3: gadget: Ignore NoStream after End Transfer + - usb: dwc3: gadget: Check for L1/L2/U3 for Start Transfer + - usb: dwc3: gadget: Fix null pointer exception + - net: usb: Correct PHY handling of smsc95xx + - net: nexthop: fix null pointer dereference when IPv6 is not enabled + - usb: chipidea: ci_hdrc_imx: fix potential error pointer dereference in probe + - usb: typec: fusb302: Fix masking of comparator and bc_lvl interrupts + - usb: xhci: tegra: Check padctrl interrupt presence in device tree + - usb: hub: Fix usb enumeration issue due to address0 race + - usb: hub: Fix locking issues with address0_mutex + - binder: fix test regression due to sender_euid change + - ALSA: ctxfi: Fix out-of-range access + - ALSA: hda/realtek: Add quirk for ASRock NUC Box 1100 + - ALSA: hda/realtek: Fix LED on HP ProBook 435 G7 + - media: cec: copy sequence field for the reply + - Revert "parisc: Fix backtrace to always include init funtion names" + - HID: wacom: Use "Confidence" flag to prevent reporting invalid contacts + - staging/fbtft: Fix backlight + - staging: greybus: Add missing rwsem around snd_ctl_remove() calls + - staging: rtl8192e: Fix use after free in _rtl92e_pci_disconnect() + - staging: r8188eu: Use kzalloc() with GFP_ATOMIC in atomic context + - staging: r8188eu: Fix breakage introduced when 5G code was removed + - staging: r8188eu: use GFP_ATOMIC under spinlock + - staging: r8188eu: fix a memory leak in rtw_wx_read32() + - fuse: release pipe buf after last use + - xen: don't continue xenstore initialization in case of errors + - xen: detect uninitialized xenbus in xenbus_init + - io_uring: correct link-list traversal locking + - io_uring: fail cancellation for EXITING tasks + - io_uring: fix link traversal locking + - drm/amdgpu: IH process reset count when restart + - drm/amdgpu/pm: fix powerplay OD interface + - drm/nouveau: recognise GA106 + - ksmbd: downgrade addition info error msg to debug in smb2_get_info_sec() + - ksmbd: contain default data stream even if xattr is empty + - ksmbd: fix memleak in get_file_stream_info() + - KVM: PPC: Book3S HV: Prevent POWER7/8 TLB flush flushing SLB + - tracing/uprobe: Fix uprobe_perf_open probes iteration + - tracing: Fix pid filtering when triggers are attached + - mmc: sdhci-esdhc-imx: disable CMDQ support + - mmc: sdhci: Fix ADMA for PAGE_SIZE >= 64KiB + - mdio: aspeed: Fix "Link is Down" issue + - arm64: mm: Fix VM_BUG_ON(mm != &init_mm) for trans_pgd + - cpufreq: intel_pstate: Fix active mode offline/online EPP handling + - powerpc/32: Fix hardlockup on vmap stack overflow + - iomap: Fix inline extent handling in iomap_readpage + - NFSv42: Fix pagecache invalidation after COPY/CLONE + - PCI: aardvark: Deduplicate code in advk_pcie_rd_conf() + - PCI: aardvark: Implement re-issuing config requests on CRS response + - PCI: aardvark: Simplify initialization of rootcap on virtual bridge + - PCI: aardvark: Fix link training + - drm/amd/display: Fix OLED brightness control on eDP + - proc/vmcore: fix clearing user buffer by properly using clear_user() + - ASoC: SOF: Intel: hda: fix hotplug when only codec is suspended + - netfilter: ctnetlink: fix filtering with CTA_TUPLE_REPLY + - netfilter: ctnetlink: do not erase error code with EINVAL + - netfilter: ipvs: Fix reuse connection if RS weight is 0 + - netfilter: flowtable: fix IPv6 tunnel addr match + - media: v4l2-core: fix VIDIOC_DQEVENT handling on non-x86 + - firmware: arm_scmi: Fix null de-reference on error path + - ARM: dts: BCM5301X: Fix I2C controller interrupt + - ARM: dts: BCM5301X: Add interrupt properties to GPIO node + - ARM: dts: bcm2711: Fix PCIe interrupts + - ASoC: qdsp6: q6routing: Conditionally reset FrontEnd Mixer + - ASoC: qdsp6: q6asm: fix q6asm_dai_prepare error handling + - ASoC: topology: Add missing rwsem around snd_ctl_remove() calls + - ASoC: codecs: wcd938x: fix volatile register range + - ASoC: codecs: wcd934x: return error code correctly from hw_params + - ASoC: codecs: lpass-rx-macro: fix HPHR setting CLSH mask + - net: ieee802154: handle iftypes as u32 + - firmware: arm_scmi: Fix base agent discover response + - firmware: arm_scmi: pm: Propagate return value to caller + - ASoC: stm32: i2s: fix 32 bits channel length without mclk + - NFSv42: Don't fail clone() unless the OP_CLONE operation failed + - ARM: socfpga: Fix crash with CONFIG_FORTIRY_SOURCE + - drm/nouveau/acr: fix a couple NULL vs IS_ERR() checks + - scsi: qla2xxx: edif: Fix off by one bug in qla_edif_app_getfcinfo() + - scsi: mpt3sas: Fix kernel panic during drive powercycle test + - scsi: mpt3sas: Fix system going into read-only mode + - scsi: mpt3sas: Fix incorrect system timestamp + - drm/vc4: fix error code in vc4_create_object() + - drm/aspeed: Fix vga_pw sysfs output + - net: marvell: prestera: fix brige port operation + - net: marvell: prestera: fix double free issue on err path + - HID: input: Fix parsing of HID_CP_CONSUMER_CONTROL fields + - HID: input: set usage type to key on keycode remap + - HID: magicmouse: prevent division by 0 on scroll + - iavf: Prevent changing static ITR values if adaptive moderation is on + - iavf: Fix refreshing iavf adapter stats on ethtool request + - iavf: Fix VLAN feature flags after VFR + - x86/pvh: add prototype for xen_pvh_init() + - xen/pvh: add missing prototype to header + - ALSA: intel-dsp-config: add quirk for JSL devices based on ES8336 codec + - mptcp: fix delack timer + - mptcp: use delegate action to schedule 3rd ack retrans + - af_unix: fix regression in read after shutdown + - firmware: smccc: Fix check for ARCH_SOC_ID not implemented + - ipv6: fix typos in __ip6_finish_output() + - nfp: checking parameter process for rx-usecs/tx-usecs is invalid + - net: stmmac: retain PTP clock time during SIOCSHWTSTAMP ioctls + - net: ipv6: add fib6_nh_release_dsts stub + - net: nexthop: release IPv6 per-cpu dsts when replacing a nexthop group + - ice: fix vsi->txq_map sizing + - ice: avoid bpf_prog refcount underflow + - scsi: core: sysfs: Fix setting device state to SDEV_RUNNING + - scsi: scsi_debug: Zero clear zones at reset write pointer + - erofs: fix deadlock when shrink erofs slab + - i2c: virtio: disable timeout handling + - net/smc: Ensure the active closing peer first closes clcsock + - mlxsw: spectrum: Protect driver from buggy firmware + - net: ipa: directly disable ipa-setup-ready interrupt + - net: ipa: separate disabling setup from modem stop + - net: ipa: kill ipa_cmd_pipeline_clear() + - net: marvell: mvpp2: increase MTU limit when XDP enabled + - cpufreq: intel_pstate: Add Ice Lake server to out-of-band IDs + - nvmet-tcp: fix incomplete data digest send + - drm/hyperv: Fix device removal on Gen1 VMs + - arm64: uaccess: avoid blocking within critical sections + - net/ncsi : Add payload to be 32-bit aligned to fix dropped packets + - PM: hibernate: use correct mode for swsusp_close() + - drm/amd/display: Fix DPIA outbox timeout after GPU reset + - drm/amd/display: Set plane update flags for all planes in reset + - tcp_cubic: fix spurious Hystart ACK train detections for not-cwnd-limited + flows + - lan743x: fix deadlock in lan743x_phy_link_status_change() + - net: phylink: Force link down and retrigger resolve on interface change + - net: phylink: Force retrigger in case of latched link-fail indicator + - net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() + - net/smc: Fix loop in smc_listen + - nvmet: use IOCB_NOWAIT only if the filesystem supports it + - igb: fix netpoll exit with traffic + - MIPS: loongson64: fix FTLB configuration + - MIPS: use 3-level pgtable for 64KB page size on MIPS_VA_BITS_48 + - tls: splice_read: fix record type check + - tls: splice_read: fix accessing pre-processed records + - tls: fix replacing proto_ops + - net: stmmac: Disable Tx queues when reconfiguring the interface + - net/sched: sch_ets: don't peek at classes beyond 'nbands' + - ethtool: ioctl: fix potential NULL deref in ethtool_set_coalesce() + - net: vlan: fix underflow for the real_dev refcnt + - net/smc: Don't call clcsock shutdown twice when smc shutdown + - net: hns3: fix VF RSS failed problem after PF enable multi-TCs + - net: hns3: fix incorrect components info of ethtool --reset command + - net: mscc: ocelot: don't downgrade timestamping RX filters in SIOCSHWTSTAMP + - net: mscc: ocelot: correctly report the timestamping RX filters in ethtool + - locking/rwsem: Make handoff bit handling more consistent + - perf: Ignore sigtrap for tracepoints destined for other tasks + - sched/scs: Reset task stack state in bringup_cpu() + - iommu/rockchip: Fix PAGE_DESC_HI_MASKs for RK3568 + - iommu/vt-d: Fix unmap_pages support + - f2fs: quota: fix potential deadlock + - f2fs: set SBI_NEED_FSCK flag when inconsistent node block found + - riscv: dts: microchip: fix board compatible + - riscv: dts: microchip: drop duplicated MMC/SDHC node + - cifs: nosharesock should not share socket with future sessions + - ceph: properly handle statfs on multifs setups + - iommu/amd: Clarify AMD IOMMUv2 initialization messages + - vdpa_sim: avoid putting an uninitialized iova_domain + - vhost/vsock: fix incorrect used length reported to the guest + - ksmbd: Fix an error handling path in 'smb2_sess_setup()' + - tracing: Check pid filtering when creating events + - cifs: nosharesock should be set on new server + - io_uring: fix soft lockup when call __io_remove_buffers + - firmware: arm_scmi: Fix type error assignment in voltage protocol + - firmware: arm_scmi: Fix type error in sensor protocol + - docs: accounting: update delay-accounting.rst reference + - blk-mq: cancel blk-mq dispatch work in both blk_cleanup_queue and + disk_release() + - block: avoid to quiesce queue in elevator_init_mq + - drm/amdgpu/gfx10: add wraparound gpu counter check for APUs as well + - drm/amdgpu/gfx9: switch to golden tsc registers for renoir+ + - Linux 5.15.6 + + * Fix bogus HDMI audio interface (LP: #1953208) + - ALSA: hda/hdmi: Consider ELD is invalid when no SAD is present + + * Miscellaneous Ubuntu changes + - [Config] re-enabled UBSAN without TRAP + - SAUCE: ipv6: fix NULL pointer dereference in ip6_output() + - SAUCE: RDMA/core: Introduce peer memory interface + - [Config] toolchain version update + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] Temporarily disable signing for ppc64el and s390x" + - Revert "UBUNTU: SAUCE: vt -- maintain bootloader screen mode and content + until vt switch" + + -- Paolo Pisati Mon, 13 Dec 2021 12:13:17 +0100 + +linux (5.15.0-13.13) jammy; urgency=medium + + * jammy/linux: 5.15.0-13.13 -proposed tracker (LP: #1952583) + + * Packaging resync (LP: #1786013) + - [Packaging] resync update-dkms-versions helper + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Jammy update: v5.15.5 upstream stable release (LP: #1952579) + - arm64: zynqmp: Do not duplicate flash partition label property + - arm64: zynqmp: Fix serial compatible string + - clk: sunxi-ng: Unregister clocks/resets when unbinding + - ARM: dts: sunxi: Fix OPPs node name + - arm64: dts: allwinner: h5: Fix GPU thermal zone node name + - arm64: dts: allwinner: a100: Fix thermal zone node name + - staging: wfx: ensure IRQ is ready before enabling it + - ARM: dts: BCM5301X: Fix nodes names + - ARM: dts: BCM5301X: Fix MDIO mux binding + - ARM: dts: NSP: Fix mpcore, mmc node names + - arm64: dts: broadcom: bcm4908: Move reboot syscon out of bus + - scsi: pm80xx: Fix memory leak during rmmod + - scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() + - ASoC: mediatek: mt8195: Add missing of_node_put() + - arm64: dts: rockchip: Disable CDN DP on Pinebook Pro + - arm64: dts: hisilicon: fix arm,sp805 compatible string + - RDMA/bnxt_re: Check if the vlan is valid before reporting + - bus: ti-sysc: Add quirk handling for reinit on context lost + - bus: ti-sysc: Use context lost quirk for otg + - usb: musb: tusb6010: check return value after calling + platform_get_resource() + - usb: typec: tipd: Remove WARN_ON in tps6598x_block_read + - ARM: dts: ux500: Skomer regulator fixes + - staging: rtl8723bs: remove possible deadlock when disconnect (v2) + - staging: rtl8723bs: remove a second possible deadlock + - staging: rtl8723bs: remove a third possible deadlock + - ARM: BCM53016: Specify switch ports for Meraki MR32 + - arm64: dts: qcom: msm8998: Fix CPU/L2 idle state latency and residency + - arm64: dts: qcom: ipq6018: Fix qcom,controlled-remotely property + - arm64: dts: qcom: ipq8074: Fix qcom,controlled-remotely property + - arm64: dts: qcom: sdm845: Fix qcom,controlled-remotely property + - arm64: dts: freescale: fix arm,sp805 compatible string + - arm64: dts: ls1012a: Add serial alias for ls1012a-rdb + - RDMA/rxe: Separate HW and SW l/rkeys + - ASoC: SOF: Intel: hda-dai: fix potential locking issue + - scsi: core: Fix scsi_mode_sense() buffer length handling + - ALSA: usb-audio: disable implicit feedback sync for Behringer UFX1204 and + UFX1604 + - clk: imx: imx6ul: Move csi_sel mux to correct base register + - ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: rt5651: Use IRQF_NO_AUTOEN when requesting the IRQ + - ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect + - scsi: advansys: Fix kernel pointer leak + - scsi: smartpqi: Add controller handshake during kdump + - arm64: dts: imx8mm-kontron: Fix reset delays for ethernet PHY + - ALSA: intel-dsp-config: add quirk for APL/GLK/TGL devices based on ES8336 + codec + - ASoC: Intel: soc-acpi: add missing quirk for TGL SDCA single amp + - ASoC: Intel: sof_sdw: add missing quirk for Dell SKU 0A45 + - firmware_loader: fix pre-allocated buf built-in firmware use + - HID: multitouch: disable sticky fingers for UPERFECT Y + - ALSA: usb-audio: Add support for the Pioneer DJM 750MK2 Mixer/Soundcard + - ARM: dts: omap: fix gpmc,mux-add-data type + - usb: host: ohci-tmio: check return value after calling + platform_get_resource() + - ASoC: rt5682: fix a little pop while playback + - ARM: dts: ls1021a: move thermal-zones node out of soc/ + - ARM: dts: ls1021a-tsn: use generic "jedec,spi-nor" compatible for flash + - ALSA: ISA: not for M68K + - iommu/vt-d: Do not falsely log intel_iommu is unsupported kernel option + - tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc + - MIPS: sni: Fix the build + - scsi: scsi_debug: Fix out-of-bound read in resp_readcap16() + - scsi: scsi_debug: Fix out-of-bound read in resp_report_tgtpgs() + - scsi: target: Fix ordered tag handling + - scsi: target: Fix alua_tg_pt_gps_count tracking + - iio: imu: st_lsm6dsx: Avoid potential array overflow in st_lsm6dsx_set_odr() + - RDMA/core: Use kvzalloc when allocating the struct ib_port + - scsi: lpfc: Fix use-after-free in lpfc_unreg_rpi() routine + - scsi: lpfc: Fix link down processing to address NULL pointer dereference + - scsi: lpfc: Allow fabric node recovery if recovery is in progress before + devloss + - memory: tegra20-emc: Add runtime dependency on devfreq governor module + - powerpc/5200: dts: fix memory node unit name + - ARM: dts: qcom: fix memory and mdio nodes naming for RB3011 + - arm64: dts: qcom: Fix node name of rpm-msg-ram device nodes + - ALSA: gus: fix null pointer dereference on pointer block + - ALSA: usb-audio: fix null pointer dereference on pointer cs_desc + - clk: at91: sama7g5: remove prescaler part of master clock + - iommu/dart: Initialize DART_STREAMS_ENABLE + - powerpc/dcr: Use cmplwi instead of 3-argument cmpli + - powerpc/8xx: Fix Oops with STRICT_KERNEL_RWX without DEBUG_RODATA_TEST + - sh: check return code of request_irq + - maple: fix wrong return value of maple_bus_init(). + - f2fs: fix up f2fs_lookup tracepoints + - f2fs: fix to use WHINT_MODE + - f2fs: fix wrong condition to trigger background checkpoint correctly + - sh: fix kconfig unmet dependency warning for FRAME_POINTER + - sh: math-emu: drop unused functions + - sh: define __BIG_ENDIAN for math-emu + - f2fs: compress: disallow disabling compress on non-empty compressed file + - f2fs: fix incorrect return value in f2fs_sanity_check_ckpt() + - clk: ingenic: Fix bugs with divided dividers + - clk/ast2600: Fix soc revision for AHB + - clk: qcom: gcc-msm8996: Drop (again) gcc_aggre1_pnoc_ahb_clk + - KVM: arm64: Fix host stage-2 finalization + - mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set + - MIPS: boot/compressed/: add __bswapdi2() to target for ZSTD decompression + - sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() + - sched/fair: Prevent dead task groups from regaining cfs_rq's + - perf/x86/vlbr: Add c->flags to vlbr event constraints + - blkcg: Remove extra blkcg_bio_issue_init + - tracing/histogram: Do not copy the fixed-size char array field over the + field size + - perf bpf: Avoid memory leak from perf_env__insert_btf() + - perf bench futex: Fix memory leak of perf_cpu_map__new() + - perf tests: Remove bash construct from record+zstd_comp_decomp.sh + - drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame + - bpf: Fix inner map state pruning regression. + - samples/bpf: Fix summary per-sec stats in xdp_sample_user + - samples/bpf: Fix incorrect use of strlen in xdp_redirect_cpu + - selftests: net: switch to socat in the GSO GRE test + - net/ipa: ipa_resource: Fix wrong for loop range + - tcp: Fix uninitialized access in skb frags array for Rx 0cp. + - tracing: Add length protection to histogram string copies + - nl80211: fix radio statistics in survey dump + - mac80211: fix monitor_sdata RCU/locking assertions + - net: ipa: HOLB register sometimes must be written twice + - net: ipa: disable HOLB drop when updating timer + - selftests: gpio: fix gpio compiling error + - net: bnx2x: fix variable dereferenced before check + - bnxt_en: reject indirect blk offload when hw-tc-offload is off + - tipc: only accept encrypted MSG_CRYPTO msgs + - sock: fix /proc/net/sockstat underflow in sk_clone_lock() + - net/smc: Make sure the link_id is unique + - NFSD: Fix exposure in nfsd4_decode_bitmap() + - iavf: Fix return of set the new channel count + - iavf: check for null in iavf_fix_features + - iavf: free q_vectors before queues in iavf_disable_vf + - iavf: don't clear a lock we don't hold + - iavf: Fix failure to exit out from last all-multicast mode + - iavf: prevent accidental free of filter structure + - iavf: validate pointers + - iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset + - iavf: Fix for setting queues to 0 + - iavf: Restore VLAN filters after link down + - bpf: Fix toctou on read-only map's constant scalar tracking + - MIPS: generic/yamon-dt: fix uninitialized variable error + - mips: bcm63xx: add support for clk_get_parent() + - mips: lantiq: add support for clk_get_parent() + - gpio: rockchip: needs GENERIC_IRQ_CHIP to fix build errors + - platform/x86: hp_accel: Fix an error handling path in 'lis3lv02d_probe()' + - platform/x86: think-lmi: Abort probe on analyze failure + - udp: Validate checksum in udp_read_sock() + - btrfs: make 1-bit bit-fields of scrub_page unsigned int + - RDMA/core: Set send and receive CQ before forwarding to the driver + - net/mlx5e: kTLS, Fix crash in RX resync flow + - net/mlx5e: Wait for concurrent flow deletion during neigh/fib events + - net/mlx5: E-Switch, Fix resetting of encap mode when entering switchdev + - net/mlx5e: nullify cq->dbg pointer in mlx5_debug_cq_remove() + - net/mlx5: Update error handler for UCTX and UMEM + - net/mlx5: E-Switch, rebuild lag only when needed + - net/mlx5e: CT, Fix multiple allocations and memleak of mod acts + - net/mlx5: Lag, update tracker when state change event received + - net/mlx5: E-Switch, return error if encap isn't supported + - scsi: ufs: core: Improve SCSI abort handling + - scsi: core: sysfs: Fix hang when device state is set via sysfs + - scsi: ufs: core: Fix task management completion timeout race + - scsi: ufs: core: Fix another task management completion race + - net: mvmdio: fix compilation warning + - net: sched: act_mirred: drop dst for the direction from egress to ingress + - net: dpaa2-eth: fix use-after-free in dpaa2_eth_remove + - net: virtio_net_hdr_to_skb: count transport header in UFO + - i40e: Fix correct max_pkt_size on VF RX queue + - i40e: Fix NULL ptr dereference on VSI filter sync + - i40e: Fix changing previously set num_queue_pairs for PFs + - i40e: Fix ping is lost after configuring ADq on VF + - RDMA/mlx4: Do not fail the registration on port stats + - i40e: Fix warning message and call stack during rmmod i40e driver + - i40e: Fix creation of first queue by omitting it if is not power of two + - i40e: Fix display error code in dmesg + - NFC: reorganize the functions in nci_request + - NFC: reorder the logic in nfc_{un,}register_device + - NFC: add NCI_UNREG flag to eliminate the race + - e100: fix device suspend/resume + - ptp: ocp: Fix a couple NULL vs IS_ERR() checks + - tools build: Fix removal of feature-sync-compare-and-swap feature detection + - riscv: fix building external modules + - KVM: PPC: Book3S HV: Use GLOBAL_TOC for kvmppc_h_set_dabr/xdabr() + - powerpc: clean vdso32 and vdso64 directories + - powerpc/pseries: rename numa_dist_table to form2_distances + - powerpc/pseries: Fix numa FORM2 parsing fallback code + - pinctrl: qcom: sdm845: Enable dual edge errata + - pinctrl: qcom: sm8350: Correct UFS and SDC offsets + - perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Skylake Server + - perf/x86/intel/uncore: Fix IIO event constraints for Snowridge + - s390/kexec: fix return code handling + - blk-cgroup: fix missing put device in error path from blkg_conf_pref() + - dmaengine: remove debugfs #ifdef + - tun: fix bonding active backup with arp monitoring + - Revert "mark pstore-blk as broken" + - pstore/blk: Use "%lu" to format unsigned long + - hexagon: export raw I/O routines for modules + - hexagon: clean up timer-regs.h + - tipc: check for null after calling kmemdup + - ipc: WARN if trying to remove ipc object which is absent + - shm: extend forced shm destroy to support objects from several IPC nses + - mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag + - hugetlb, userfaultfd: fix reservation restore on userfaultfd error + - kmap_local: don't assume kmap PTEs are linear arrays in memory + - mm/damon/dbgfs: use '__GFP_NOWARN' for user-specified size buffer allocation + - mm/damon/dbgfs: fix missed use of damon_dbgfs_lock + - x86/boot: Pull up cmdline preparation and early param parsing + - x86/sgx: Fix free page accounting + - x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails + - KVM: x86: Assume a 64-bit hypercall for guests with protected state + - KVM: x86: Fix uninitialized eoi_exit_bitmap usage in vcpu_load_eoi_exitmap() + - KVM: x86/mmu: include EFER.LMA in extended mmu role + - KVM: x86/xen: Fix get_attr of KVM_XEN_ATTR_TYPE_SHARED_INFO + - powerpc/signal32: Fix sigset_t copy + - powerpc/xive: Change IRQ domain to a tree domain + - powerpc/8xx: Fix pinned TLBs with CONFIG_STRICT_KERNEL_RWX + - Revert "drm/i915/tgl/dsi: Gate the ddi clocks after pll mapping" + - Revert "parisc: Reduce sigreturn trampoline to 3 instructions" + - ata: libata: improve ata_read_log_page() error message + - ata: libata: add missing ata_identify_page_supported() calls + - scsi: qla2xxx: Fix mailbox direction flags in qla2xxx_get_adapter_id() + - pinctrl: ralink: include 'ralink_regs.h' in 'pinctrl-mt7620.c' + - s390/setup: avoid reserving memory above identity mapping + - s390/boot: simplify and fix kernel memory layout setup + - s390/vdso: filter out -mstack-guard and -mstack-size + - s390/kexec: fix memory leak of ipl report buffer + - s390/dump: fix copying to user-space of swapped kdump oldmem + - block: Check ADMIN before NICE for IOPRIO_CLASS_RT + - fbdev: Prevent probing generic drivers if a FB is already registered + - KVM: SEV: Disallow COPY_ENC_CONTEXT_FROM if target has created vCPUs + - KVM: nVMX: don't use vcpu->arch.efer when checking host state on nested + state load + - drm/cma-helper: Release non-coherent memory with dma_free_noncoherent() + - printk: restore flushing of NMI buffers on remote CPUs after NMI backtraces + - udf: Fix crash after seekdir + - spi: fix use-after-free of the add_lock mutex + - net: stmmac: socfpga: add runtime suspend/resume callback for stratix10 + platform + - Drivers: hv: balloon: Use VMBUS_RING_SIZE() wrapper for dm_ring_size + - btrfs: fix memory ordering between normal and ordered work functions + - fs: handle circular mappings correctly + - net: stmmac: Fix signed/unsigned wreckage + - parisc/sticon: fix reverse colors + - cfg80211: call cfg80211_stop_ap when switch from P2P_GO type + - mac80211: fix radiotap header generation + - mac80211: drop check for DONT_REORDER in __ieee80211_select_queue + - drm/amd/display: Update swizzle mode enums + - drm/amd/display: Limit max DSC target bpp for specific monitors + - drm/i915/guc: Fix outstanding G2H accounting + - drm/i915/guc: Don't enable scheduling on a banned context, guc_id invalid, + not registered + - drm/i915/guc: Workaround reset G2H is received after schedule done G2H + - drm/i915/guc: Don't drop ce->guc_active.lock when unwinding context + - drm/i915/guc: Unwind context requests in reverse order + - drm/udl: fix control-message timeout + - drm/prime: Fix use after free in mmap with drm_gem_ttm_mmap + - drm/nouveau: Add a dedicated mutex for the clients list + - drm/nouveau: use drm_dev_unplug() during device removal + - drm/nouveau: clean up all clients on device removal + - drm/i915/dp: Ensure sink rate values are always valid + - drm/i915/dp: Ensure max link params are always valid + - drm/i915: Fix type1 DVI DP dual mode adapter heuristic for modern platforms + - drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga + and dvi connectors + - drm/amd/pm: avoid duplicate powergate/ungate setting + - signal: Implement force_fatal_sig + - exit/syscall_user_dispatch: Send ordinary signals on failure + - signal/powerpc: On swapcontext failure force SIGSEGV + - signal/s390: Use force_sigsegv in default_trap_handler + - signal/sparc32: Exit with a fatal signal when try_to_clear_window_buffer + fails + - signal/sparc32: In setup_rt_frame and setup_fram use force_fatal_sig + - signal/vm86_32: Properly send SIGSEGV when the vm86 state cannot be saved. + - signal/x86: In emulate_vsyscall force a signal instead of calling do_exit + - signal: Replace force_sigsegv(SIGSEGV) with force_fatal_sig(SIGSEGV) + - signal: Don't always set SA_IMMUTABLE for forced signals + - signal: Replace force_fatal_sig with force_exit_sig when in doubt + - hugetlbfs: flush TLBs correctly after huge_pmd_unshare + - RDMA/netlink: Add __maybe_unused to static inline in C file + - bpf: Forbid bpf_ktime_get_coarse_ns and bpf_timer_* in tracing progs + - selinux: fix NULL-pointer dereference when hashtab allocation fails + - ASoC: DAPM: Cover regression by kctl change notification fix + - ASoC: rsnd: fixup DMAEngine API + - usb: max-3421: Use driver data instead of maintaining a list of bound + devices + - ice: Fix VF true promiscuous mode + - ice: Delete always true check of PF pointer + - fs: export an inode_update_time helper + - btrfs: update device path inode time instead of bd_inode + - net: add and use skb_unclone_keeptruesize() helper + - x86/Kconfig: Fix an unused variable error in dell-smm-hwmon + - ALSA: hda: hdac_ext_stream: fix potential locking issues + - ALSA: hda: hdac_stream: fix potential locking issue in + snd_hdac_stream_assign() + - Linux 5.15.5 + + * Fix non-working e1000e device after resume (LP: #1951861) + - SAUCE: Revert "e1000e: Additional PHY power saving in S0ix" + - SAUCE: Revert "e1000e: Add polling mechanism to indicate CSME DPG exit" + - SAUCE: Revert "e1000e: Add handshake with the CSME to support S0ix" + + * [SRU][I/OEM-5.13/OEM-5.14] Add MAC passthrough support for more Lenovo docks + (LP: #1951767) + - net: usb: r8152: Add MAC passthrough support for more Lenovo Docks + + * [amdgpu] USB4 support for DP tunneling (LP: #1951868) + - drm/amd/display: Support for DMUB HPD interrupt handling + - drm/amd/display: Update link encoder object creation. + - drm/amd/display: USB4 DPIA enumeration and AUX Tunneling + - drm/amd/display: Support for DMUB HPD and HPD RX interrupt handling + - drm/amd/display: Set DPIA link endpoint type + - drm/amd/display: Stub out DPIA link training call + - drm/amd/display: Add stub to get DPIA tunneling device data + - drm/amd/display: Skip DPCD read for DPTX-to-DPIA hop + - drm/amd/display: Train DPIA links with fallback + - drm/amd/display: Implement DPIA training loop + - drm/amd/display: Implement DPIA link configuration + - drm/amd/display: Implement DPIA clock recovery phase + - drm/amd/display: Implement DPIA equalisation phase + - drm/amd/display: Implement end of training for hop in DPIA display path + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: isolate link training setting override to its own function + - drm/amd/display: Read USB4 DP tunneling data from DPCD. + - drm/amd/display: Add dpia debug options + - drm/amd/display: Support for SET_CONFIG processing with DMUB + - drm/amd/display: Add DPCD writes at key points + - drm/amd/display: Fix DIG_HPD_SELECT for USB4 display endpoints. + - drm/amd/display: Add helper for blanking all dp displays + - drm/amd/display: Fix link training fallback logic + - drm/amd/display: Add debug flags for USB4 DP link training. + - drm/amd/display: Fix dynamic link encoder access. + - drm/amd/display: Fix concurrent dynamic encoder assignment + - drm/amd/display: Fix dynamic encoder reassignment + - drm/amd/display: Fix for access for ddc pin and aux engine. + - drm/amd/display: Deadlock/HPD Status/Crash Bug Fix + - drm/amd/display: Fix USB4 Aux via DMUB terminate unexpectedly + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/module-check in Python + - [Config] update config and annotations after applying v5.15.5 + + -- Andrea Righi Mon, 29 Nov 2021 09:25:37 +0100 + +linux (5.15.0-12.12) jammy; urgency=medium + + * jammy/linux: 5.15.0-12.12 -proposed tracker (LP: #1951810) + + * Jammy update: v5.15.4 upstream stable release (LP: #1951820) + - string: uninline memcpy_and_pad + - Revert "drm: fb_helper: improve CONFIG_FB dependency" + - Revert "drm: fb_helper: fix CONFIG_FB dependency" + - KVM: Fix steal time asm constraints + - btrfs: introduce btrfs_is_data_reloc_root + - btrfs: zoned: add a dedicated data relocation block group + - btrfs: zoned: only allow one process to add pages to a relocation inode + - btrfs: zoned: use regular writes for relocation + - btrfs: check for relocation inodes on zoned btrfs in should_nocow + - btrfs: zoned: allow preallocation for relocation inodes + - fortify: Explicitly disable Clang support + - block: Add a helper to validate the block size + - loop: Use blk_validate_block_size() to validate block size + - Bluetooth: btusb: Add support for TP-Link UB500 Adapter + - parisc/entry: fix trace test in syscall exit path + - PCI/MSI: Deal with devices lying about their MSI mask capability + - PCI: Add MSI masking quirk for Nvidia ION AHCI + - perf/core: Avoid put_page() when GUP fails + - thermal: Fix NULL pointer dereferences in of_thermal_ functions + - Revert "ACPI: scan: Release PM resources blocked by unused objects" + - Linux 5.15.4 + + * Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good + delay + - usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform + - Input: iforce - fix control-message timeout + - Input: elantench - fix misreporting trackpoint coordinates + - Input: i8042 - Add quirk for Fujitsu Lifebook T725 + - libata: fix read log timeout value + - ocfs2: fix data corruption on truncate + - scsi: scsi_ioctl: Validate command size + - scsi: core: Avoid leaving shost->last_reset with stale value if EH does not + run + - scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() + - scsi: lpfc: Don't release final kref on Fport node while ABTS outstanding + - scsi: lpfc: Fix FCP I/O flush functionality for TMF routines + - scsi: qla2xxx: Fix crash in NVMe abort path + - scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file + - scsi: qla2xxx: Fix use after free in eh_abort path + - ce/gf100: fix incorrect CE0 address calculation on some GPUs + - char: xillybus: fix msg_ep UAF in xillyusb_probe() + - mmc: mtk-sd: Add wait dma stop done flow + - mmc: dw_mmc: Dont wait for DRTO on Write RSP error + - exfat: fix incorrect loading of i_blocks for large files + - io-wq: remove worker to owner tw dependency + - parisc: Fix set_fixmap() on PA1.x CPUs + - parisc: Fix ptrace check on syscall return + - tpm: Check for integer overflow in tpm2_map_response_body() + - firmware/psci: fix application of sizeof to pointer + - crypto: s5p-sss - Add error handling in s5p_aes_probe() + - media: rkvdec: Do not override sizeimage for output format + - media: ite-cir: IR receiver stop working after receive overflow + - media: rkvdec: Support dynamic resolution changes + - media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers + - media: v4l2-ioctl: Fix check_ext_ctrls + - ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 + - ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED + - ALSA: hda/realtek: Add quirk for Clevo PC70HS + - ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ + - ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N + - ALSA: hda/realtek: Add quirk for ASUS UX550VE + - ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED + - ALSA: ua101: fix division by zero at probe + - ALSA: 6fire: fix control and bulk message timeouts + - ALSA: line6: fix control and interrupt message timeouts + - ALSA: mixer: oss: Fix racy access to slots + - ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume + - ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk + - ALSA: usb-audio: Add registration quirk for JBL Quantum 400 + - ALSA: hda: Free card instance properly at probe errors + - ALSA: synth: missing check for possible NULL after the call to kstrdup + - ALSA: pci: rme: Fix unaligned buffer addresses + - ALSA: PCM: Fix NULL dereference at mmap checks + - ALSA: timer: Fix use-after-free problem + - ALSA: timer: Unconditionally unlink slave instances, too + - Revert "ext4: enforce buffer head state assertion in ext4_da_map_blocks" + - ext4: fix lazy initialization next schedule time computation in more + granular unit + - ext4: ensure enough credits in ext4_ext_shift_path_extents + - ext4: refresh the ext4_ext_path struct after dropping i_data_sem. + - fuse: fix page stealing + - x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c + - x86/cpu: Fix migration safety with X86_BUG_NULL_SEL + - x86/irq: Ensure PI wakeup handler is unregistered before module unload + - x86/iopl: Fake iopl(3) CLI/STI usage + - btrfs: clear MISSING device status bit in btrfs_close_one_device + - btrfs: fix lost error handling when replaying directory deletes + - btrfs: call btrfs_check_rw_degradable only if there is a missing device + - KVM: x86/mmu: Drop a redundant, broken remote TLB flush + - KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup + - KVM: PPC: Tick accounting should defer vtime accounting 'til after IRQ + handling + - ia64: kprobes: Fix to pass correct trampoline address to the handler + - selinux: fix race condition when computing ocontext SIDs + - ipmi:watchdog: Set panic count to proper value on a panic + - md/raid1: only allocate write behind bio for WriteMostly device + - hwmon: (pmbus/lm25066) Add offset coefficients + - regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is + disabled + - regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default- + dvs-idx property + - EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell + - mwifiex: fix division by zero in fw download path + - ath6kl: fix division by zero in send path + - ath6kl: fix control-message timeout + - ath10k: fix control-message timeout + - ath10k: fix division by zero in send path + - PCI: Mark Atheros QCA6174 to avoid bus reset + - rtl8187: fix control-message timeouts + - evm: mark evm_fixmode as __ro_after_init + - ifb: Depend on netfilter alternatively to tc + - platform/surface: aggregator_registry: Add support for Surface Laptop Studio + - mt76: mt7615: fix skb use-after-free on mac reset + - HID: surface-hid: Use correct event registry for managing HID events + - HID: surface-hid: Allow driver matching for target ID 1 devices + - wcn36xx: Fix HT40 capability for 2Ghz band + - wcn36xx: Fix tx_status mechanism + - wcn36xx: Fix (QoS) null data frame bitrate/modulation + - PM: sleep: Do not let "syscore" devices runtime-suspend during system + transitions + - mwifiex: Read a PCI register after writing the TX ring write pointer + - mwifiex: Try waking the firmware until we get an interrupt + - libata: fix checking of DMA state + - dma-buf: fix and rework dma_buf_poll v7 + - wcn36xx: handle connection loss indication + - rsi: fix occasional initialisation failure with BT coex + - rsi: fix key enabled check causing unwanted encryption for vap_id > 0 + - rsi: fix rate mask set leading to P2P failure + - rsi: Fix module dev_oper_mode parameter description + - perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server + - perf/x86/intel/uncore: Fix invalid unit check + - perf/x86/intel/uncore: Fix Intel ICX IIO event constraints + - RDMA/qedr: Fix NULL deref for query_qp on the GSI QP + - ASoC: tegra: Set default card name for Trimslice + - ASoC: tegra: Restore AC97 support + - signal: Remove the bogus sigkill_pending in ptrace_stop + - memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode + - signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT + - soc: samsung: exynos-pmu: Fix compilation when nothing selects + CONFIG_MFD_CORE + - soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id + - soc: fsl: dpio: use the combined functions to protect critical zone + - mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines + - mctp: handle the struct sockaddr_mctp padding fields + - power: supply: max17042_battery: Prevent int underflow in set_soc_threshold + - power: supply: max17042_battery: use VFSOC for capacity when no rsns + - iio: core: fix double free in iio_device_unregister_sysfs() + - iio: core: check return value when calling dev_set_name() + - KVM: arm64: Extract ESR_ELx.EC only + - KVM: x86: Fix recording of guest steal time / preempted status + - KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows + - KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use + - KVM: nVMX: Handle dynamic MSR intercept toggling + - can: peak_usb: always ask for BERR reporting for PCAN-USB devices + - can: mcp251xfd: mcp251xfd_irq(): add missing + can_rx_offload_threaded_irq_finish() in case of bus off + - can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport + - can: j1939: j1939_can_recv(): ignore messages with invalid source address + - can: j1939: j1939_tp_cmd_recv(): check the dst address of TP.CM_BAM + - iio: adc: tsc2046: fix scan interval warning + - powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found + - io_uring: honour zeroes as io-wq worker limits + - ring-buffer: Protect ring_buffer_reset() from reentrancy + - serial: core: Fix initializing and restoring termios speed + - ifb: fix building without CONFIG_NET_CLS_ACT + - xen/balloon: add late_initcall_sync() for initial ballooning done + - ovl: fix use after free in struct ovl_aio_req + - ovl: fix filattr copy-up failure + - PCI: pci-bridge-emul: Fix emulation of W1C bits + - PCI: cadence: Add cdns_plat_pcie_probe() missing return + - cxl/pci: Fix NULL vs ERR_PTR confusion + - PCI: aardvark: Do not clear status bits of masked interrupts + - PCI: aardvark: Fix checking for link up via LTSSM state + - PCI: aardvark: Do not unmask unused interrupts + - PCI: aardvark: Fix reporting Data Link Layer Link Active + - PCI: aardvark: Fix configuring Reference clock + - PCI: aardvark: Fix return value of MSI domain .alloc() method + - PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG + - PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated + bridge + - PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge + - PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge + - PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge + - quota: check block number when reading the block in quota file + - quota: correct error number in free_dqentry() + - cifs: To match file servers, make sure the server hostname matches + - cifs: set a minimum of 120s for next dns resolution + - mfd: simple-mfd-i2c: Select MFD_CORE to fix build error + - pinctrl: core: fix possible memory leak in pinctrl_enable() + - coresight: cti: Correct the parameter for pm_runtime_put + - coresight: trbe: Fix incorrect access of the sink specific data + - coresight: trbe: Defer the probe on offline CPUs + - iio: buffer: check return value of kstrdup_const() + - iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() + - iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() + - drivers: iio: dac: ad5766: Fix dt property name + - iio: dac: ad5446: Fix ad5622_write() return value + - iio: ad5770r: make devicetree property reading consistent + - Documentation:devicetree:bindings:iio:dac: Fix val + - USB: serial: keyspan: fix memleak on probe errors + - serial: 8250: fix racy uartclk update + - ksmbd: set unique value to volume serial field in FS_VOLUME_INFORMATION + - io-wq: serialize hash clear with wakeup + - serial: 8250: Fix reporting real baudrate value in c_ospeed field + - Revert "serial: 8250: Fix reporting real baudrate value in c_ospeed field" + - most: fix control-message timeouts + - USB: iowarrior: fix control-message timeouts + - USB: chipidea: fix interrupt deadlock + - power: supply: max17042_battery: Clear status bits in interrupt handler + - component: do not leave master devres group open after bind + - dma-buf: WARN on dmabuf release with pending attachments + - drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) + - drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 + - drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 + - Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() + - Bluetooth: fix use-after-free error in lock_sock_nested() + - Bluetooth: call sock_hold earlier in sco_conn_del + - drm/panel-orientation-quirks: add Valve Steam Deck + - rcutorture: Avoid problematic critical section nesting on PREEMPT_RT + - platform/x86: wmi: do not fail if disabling fails + - drm/amdgpu: move iommu_resume before ip init/resume + - MIPS: lantiq: dma: add small delay after reset + - MIPS: lantiq: dma: reset correct number of channel + - locking/lockdep: Avoid RCU-induced noinstr fail + - net: sched: update default qdisc visibility after Tx queue cnt changes + - rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop + - smackfs: Fix use-after-free in netlbl_catmap_walk() + - ath11k: Align bss_chan_info structure with firmware + - crypto: aesni - check walk.nbytes instead of err + - x86/mm/64: Improve stack overflow warnings + - x86: Increase exception stack sizes + - mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type + - mwifiex: Properly initialize private structure on interface type changes + - spi: Check we have a spi_device_id for each DT compatible + - fscrypt: allow 256-bit master keys with AES-256-XTS + - drm/amdgpu: Fix MMIO access page fault + - drm/amd/display: Fix null pointer dereference for encoders + - selftests: net: fib_nexthops: Wait before checking reported idle time + - ath11k: Avoid reg rules update during firmware recovery + - ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED + - ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets + - ath10k: high latency fixes for beacon buffer + - octeontx2-pf: Enable promisc/allmulti match MCAM entries. + - media: mt9p031: Fix corrupted frame after restarting stream + - media: netup_unidvb: handle interrupt properly according to the firmware + - media: atomisp: Fix error handling in probe + - media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() + - media: uvcvideo: Set capability in s_param + - media: uvcvideo: Return -EIO for control errors + - media: uvcvideo: Set unique vdev name based in type + - media: vidtv: Fix memory leak in remove + - media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() + - media: s5p-mfc: Add checking to s5p_mfc_probe(). + - media: videobuf2: rework vb2_mem_ops API + - media: imx: set a media_device bus_info string + - media: rcar-vin: Use user provided buffers when starting + - media: mceusb: return without resubmitting URB in case of -EPROTO error. + - ia64: don't do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK + - rtw88: fix RX clock gate setting while fifo dump + - brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet + - media: rcar-csi2: Add checking to rcsi2_start_receiver() + - ipmi: Disable some operations during a panic + - fs/proc/uptime.c: Fix idle time reporting in /proc/uptime + - kselftests/sched: cleanup the child processes + - ACPICA: Avoid evaluating methods too early during system resume + - cpufreq: Make policy min/max hard requirements + - ice: Move devlink port to PF/VF struct + - media: imx-jpeg: Fix possible null pointer dereference + - media: ipu3-imgu: imgu_fmt: Handle properly try + - media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info + - media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() + - net-sysfs: try not to restart the syscall if it will fail eventually + - drm/amdkfd: rm BO resv on validation to avoid deadlock + - tracefs: Have tracefs directories not set OTH permission bits by default + - tracing: Disable "other" permission bits in the tracefs files + - ath: dfs_pattern_detector: Fix possible null-pointer dereference in + channel_detector_create() + - KVM: arm64: Propagate errors from __pkvm_prot_finalize hypercall + - mmc: moxart: Fix reference count leaks in moxart_probe + - iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value + - ACPI: battery: Accept charges over the design capacity as full + - ACPI: scan: Release PM resources blocked by unused objects + - drm/amd/display: fix null pointer deref when plugging in display + - drm/amdkfd: fix resume error when iommu disabled in Picasso + - net: phy: micrel: make *-skew-ps check more lenient + - leaking_addresses: Always print a trailing newline + - thermal/core: Fix null pointer dereference in thermal_release() + - drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() + - thermal/drivers/tsens: Add timeout to get_temp_tsens_valid + - block: bump max plugged deferred size from 16 to 32 + - floppy: fix calling platform_device_unregister() on invalid drives + - md: update superblock after changing rdev flags in state_store + - memstick: r592: Fix a UAF bug when removing the driver + - locking/rwsem: Disable preemption for spinning region + - lib/xz: Avoid overlapping memcpy() with invalid input with in-place + decompression + - lib/xz: Validate the value before assigning it to an enum variable + - workqueue: make sysfs of unbound kworker cpumask more clever + - tracing/cfi: Fix cmp_entries_* functions signature mismatch + - mt76: mt7915: fix an off-by-one bound check + - mwl8k: Fix use-after-free in mwl8k_fw_state_machine() + - iwlwifi: change all JnP to NO-160 configuration + - block: remove inaccurate requeue check + - media: allegro: ignore interrupt if mailbox is not initialized + - drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh + - nvmet: fix use-after-free when a port is removed + - nvmet-rdma: fix use-after-free when a port is removed + - nvmet-tcp: fix use-after-free when a port is removed + - nvme: drop scan_lock and always kick requeue list when removing namespaces + - samples/bpf: Fix application of sizeof to pointer + - arm64: vdso32: suppress error message for 'make mrproper' + - PM: hibernate: Get block device exclusively in swsusp_check() + - selftests: kvm: fix mismatched fclose() after popen() + - selftests/bpf: Fix perf_buffer test on system with offline cpus + - iwlwifi: mvm: disable RX-diversity in powersave + - smackfs: use __GFP_NOFAIL for smk_cipso_doi() + - ARM: clang: Do not rely on lr register for stacktrace + - gre/sit: Don't generate link-local addr if addr_gen_mode is + IN6_ADDR_GEN_MODE_NONE + - can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to + unsigned int + - gfs2: Cancel remote delete work asynchronously + - gfs2: Fix glock_hash_walk bugs + - ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 + - tools/latency-collector: Use correct size when writing queue_full_warning + - vrf: run conntrack only in context of lower/physdev for locally generated + packets + - net: annotate data-race in neigh_output() + - ACPI: AC: Quirk GK45 to skip reading _PSR + - ACPI: resources: Add one more Medion model in IRQ override quirk + - btrfs: reflink: initialize return value to 0 in btrfs_extent_same() + - btrfs: do not take the uuid_mutex in btrfs_rm_device + - spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in + bcm_qspi_probe() + - wcn36xx: Correct band/freq reporting on RX + - wcn36xx: Fix packet drop on resume + - Revert "wcn36xx: Enable firmware link monitoring" + - ftrace: do CPU checking after preemption disabled + - inet: remove races in inet{6}_getname() + - x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted + - drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled + - perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings + - parisc: fix warning in flush_tlb_all + - task_stack: Fix end_of_stack() for architectures with upwards-growing stack + - erofs: don't trigger WARN() when decompression fails + - parisc/unwind: fix unwinder when CONFIG_64BIT is enabled + - parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling + - netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream + state + - selftests/bpf: Fix strobemeta selftest regression + - fbdev/efifb: Release PCI device's runtime PM ref during FB destroy + - drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() + - perf/x86/intel/uncore: Fix Intel SPR CHA event constraints + - perf/x86/intel/uncore: Fix Intel SPR IIO event constraints + - perf/x86/intel/uncore: Fix Intel SPR M2PCIE event constraints + - perf/x86/intel/uncore: Fix Intel SPR M3UPI event constraints + - drm/bridge: it66121: Initialize {device,vendor}_ids + - drm/bridge: it66121: Wait for next bridge to be probed + - Bluetooth: fix init and cleanup of sco_conn.timeout_work + - libbpf: Don't crash on object files with no symbol tables + - Bluetooth: hci_uart: fix GPF in h5_recv + - rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() + - MIPS: lantiq: dma: fix burst length for DEU + - x86/xen: Mark cpu_bringup_and_idle() as dead_end_function + - objtool: Handle __sanitize_cov*() tail calls + - net/mlx5: Publish and unpublish all devlink parameters at once + - drm/v3d: fix wait for TMU write combiner flush + - crypto: sm4 - Do not change section of ck and sbox + - virtio-gpu: fix possible memory allocation failure + - lockdep: Let lock_is_held_type() detect recursive read as read + - net: net_namespace: Fix undefined member in key_remove_domain() + - net: phylink: don't call netif_carrier_off() with NULL netdev + - drm: bridge: it66121: Fix return value it66121_probe + - spi: Fixed division by zero warning + - cgroup: Make rebind_subsystems() disable v2 controllers all at once + - wcn36xx: Fix Antenna Diversity Switching + - wilc1000: fix possible memory leak in cfg_scan_result() + - Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync + - drm/amdgpu: Fix crash on device remove/driver unload + - drm/amd/display: Pass display_pipe_params_st as const in DML + - drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage + - crypto: caam - disable pkc for non-E SoCs + - crypto: qat - power up 4xxx device + - Bluetooth: hci_h5: Fix (runtime)suspend issues on RTL8723BS HCIs + - bnxt_en: Check devlink allocation and registration status + - qed: Don't ignore devlink allocation failures + - rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() + - mptcp: do not shrink snd_nxt when recovering + - fortify: Fix dropped strcpy() compile-time write overflow check + - mac80211: twt: don't use potentially unaligned pointer + - cfg80211: always free wiphy specific regdomain + - net/mlx5: Accept devlink user input after driver initialization complete + - net: dsa: rtl8366rb: Fix off-by-one bug + - net: dsa: rtl8366: Fix a bug in deleting VLANs + - bpf/tests: Fix error in tail call limit tests + - ath11k: fix some sleeping in atomic bugs + - ath11k: Avoid race during regd updates + - ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status + - ath11k: Fix memory leak in ath11k_qmi_driver_event_work + - gve: DQO: avoid unused variable warnings + - ath10k: Fix missing frame timestamp for beacon/probe-resp + - ath10k: sdio: Add missing BH locking around napi_schdule() + - drm/ttm: stop calling tt_swapin in vm_access + - arm64: mm: update max_pfn after memory hotplug + - drm/amdgpu: fix warning for overflow check + - libbpf: Fix skel_internal.h to set errno on loader retval < 0 + - media: em28xx: add missing em28xx_close_extension + - media: meson-ge2d: Fix rotation parameter changes detection in + 'ge2d_s_ctrl()' + - media: cxd2880-spi: Fix a null pointer dereference on error handling path + - media: ttusb-dec: avoid release of non-acquired mutex + - media: dvb-usb: fix ununit-value in az6027_rc_query + - media: imx258: Fix getting clock frequency + - media: v4l2-ioctl: S_CTRL output the right value + - media: mtk-vcodec: venc: fix return value when start_streaming fails + - media: TDA1997x: handle short reads of hdmi info frame. + - media: mtk-vpu: Fix a resource leak in the error handling path of + 'mtk_vpu_probe()' + - media: imx-jpeg: Fix the error handling path of 'mxc_jpeg_probe()' + - media: i2c: ths8200 needs V4L2_ASYNC + - media: sun6i-csi: Allow the video device to be open multiple times + - media: radio-wl1273: Avoid card name truncation + - media: si470x: Avoid card name truncation + - media: tm6000: Avoid card name truncation + - media: cx23885: Fix snd_card_free call on null card pointer + - media: atmel: fix the ispck initialization + - scs: Release kasan vmalloc poison in scs_free process + - kprobes: Do not use local variable when creating debugfs file + - crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency + - drm: fb_helper: fix CONFIG_FB dependency + - cpuidle: Fix kobject memory leaks in error paths + - media: em28xx: Don't use ops->suspend if it is NULL + - ath10k: Don't always treat modem stop events as crashes + - ath9k: Fix potential interrupt storm on queue reset + - PM: EM: Fix inefficient states detection + - x86/insn: Use get_unaligned() instead of memcpy() + - EDAC/amd64: Handle three rank interleaving mode + - rcu: Always inline rcu_dynticks_task*_{enter,exit}() + - rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr + - netfilter: nft_dynset: relax superfluous check on set updates + - media: venus: fix vpp frequency calculation for decoder + - media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() + - crypto: ccree - avoid out-of-range warnings from clang + - crypto: qat - detect PFVF collision after ACK + - crypto: qat - disregard spurious PFVF interrupts + - hwrng: mtk - Force runtime pm ops for sleep ops + - ima: fix deadlock when traversing "ima_default_rules". + - b43legacy: fix a lower bounds test + - b43: fix a lower bounds test + - gve: Recover from queue stall due to missed IRQ + - gve: Track RX buffer allocation failures + - mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured + - mmc: sdhci-omap: Fix context restore + - memstick: avoid out-of-range warning + - memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() + - net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE + - hwmon: Fix possible memleak in __hwmon_device_register() + - hwmon: (pmbus/lm25066) Let compiler determine outer dimension of + lm25066_coeff + - ath10k: fix max antenna gain unit + - kernel/sched: Fix sched_fork() access an invalid sched_task_group + - net: fealnx: fix build for UML + - net: intel: igc_ptp: fix build for UML + - net: tulip: winbond-840: fix build for UML + - tcp: switch orphan_count to bare per-cpu counters + - crypto: octeontx2 - set assoclen in aead_do_fallback() + - thermal/core: fix a UAF bug in __thermal_cooling_device_register() + - drm/msm/dsi: do not enable irq handler before powering up the host + - drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() + - drm/msm: potential error pointer dereference in init() + - drm/msm: unlock on error in get_sched_entity() + - drm/msm: fix potential NULL dereference in cleanup + - drm/msm: uninitialized variable in msm_gem_import() + - net: stream: don't purge sk_error_queue in sk_stream_kill_queues() + - thermal/drivers/qcom/lmh: make QCOM_LMH depends on QCOM_SCM + - mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done + - media: ivtv: fix build for UML + - media: ir_toy: assignment to be16 should be of correct type + - mmc: mxs-mmc: disable regulator on error and in the remove function + - io-wq: Remove duplicate code in io_workqueue_create() + - block: ataflop: fix breakage introduced at blk-mq refactoring + - platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning + - mailbox: mtk-cmdq: Validate alias_id on probe + - mailbox: mtk-cmdq: Fix local clock ID usage + - ACPI: PM: Turn off unused wakeup power resources + - ACPI: PM: Fix sharing of wakeup power resources + - drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu + - mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event + - mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb + - mt76: mt7921: fix endianness warning in mt7921_update_txs + - mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi + - mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() + - mt76: connac: fix mt76_connac_gtk_rekey_tlv usage + - mt76: fix build error implicit enumeration conversion + - mt76: mt7921: fix survey-dump reporting + - mt76: mt76x02: fix endianness warnings in mt76x02_mac.c + - mt76: mt7921: Fix out of order process by invalid event pkt + - mt76: mt7915: fix potential overflow of eeprom page index + - mt76: mt7915: fix bit fields for HT rate idx + - mt76: mt7921: fix dma hang in rmmod + - mt76: connac: fix GTK rekey offload failure on WPA mixed mode + - mt76: overwrite default reg_ops if necessary + - mt76: mt7921: report HE MU radiotap + - mt76: mt7921: fix firmware usage of RA info using legacy rates + - mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate + - mt76: mt7921: always wake device if necessary in debugfs + - mt76: mt7915: fix hwmon temp sensor mem use-after-free + - mt76: mt7615: fix hwmon temp sensor mem use-after-free + - mt76: mt7915: fix possible infinite loop release semaphore + - mt76: mt7921: fix retrying release semaphore without end + - mt76: mt7615: fix monitor mode tear down crash + - mt76: connac: fix possible NULL pointer dereference in + mt76_connac_get_phy_mode_v2 + - mt76: mt7915: fix sta_rec_wtbl tag len + - mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() + - rsi: stop thread firstly in rsi_91x_init() error handling + - mwifiex: Send DELBA requests according to spec + - iwlwifi: mvm: reset PM state on unsuccessful resume + - iwlwifi: pnvm: don't kmemdup() more than we have + - iwlwifi: pnvm: read EFI data only if long enough + - net: enetc: unmap DMA in enetc_send_cmd() + - phy: micrel: ksz8041nl: do not use power down mode + - nbd: Fix use-after-free in pid_show + - nvme-rdma: fix error code in nvme_rdma_setup_ctrl + - PM: hibernate: fix sparse warnings + - clocksource/drivers/timer-ti-dm: Select TIMER_OF + - x86/sev: Fix stack type check in vc_switch_off_ist() + - drm/msm: Fix potential NULL dereference in DPU SSPP + - drm/msm/dsi: fix wrong type in msm_dsi_host + - crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks + - smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi + - KVM: selftests: Fix nested SVM tests when built with clang + - libbpf: Fix memory leak in btf__dedup() + - bpftool: Avoid leaking the JSON writer prepared for program metadata + - libbpf: Fix overflow in BTF sanity checks + - libbpf: Fix BTF header parsing checks + - mt76: mt7615: mt7622: fix ibss and meshpoint + - s390/gmap: validate VMA in __gmap_zap() + - s390/gmap: don't unconditionally call pte_unmap_unlock() in __gmap_zap() + - s390/mm: validate VMA in PGSTE manipulation functions + - s390/mm: fix VMA and page table handling code in storage key handling + functions + - s390/uv: fully validate the VMA before calling follow_page() + - KVM: s390: pv: avoid double free of sida page + - KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm + - irq: mips: avoid nested irq_enter() + - net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error + - ARM: 9142/1: kasan: work around LPAE build warning + - ath10k: fix module load regression with iram-recovery feature + - block: ataflop: more blk-mq refactoring fixes + - blk-cgroup: synchronize blkg creation against policy deactivation + - libbpf: Fix off-by-one bug in bpf_core_apply_relo() + - tpm: fix Atmel TPM crash caused by too frequent queries + - tpm_tis_spi: Add missing SPI ID + - libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() + - tcp: don't free a FIN sk_buff in tcp_remove_empty_skb() + - tracing: Fix missing trace_boot_init_histograms kstrdup NULL checks + - cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization + - spi: spi-rpc-if: Check return value of rpcif_sw_init() + - samples/kretprobes: Fix return value if register_kretprobe() failed + - KVM: s390: Fix handle_sske page fault handling + - libertas_tf: Fix possible memory leak in probe and disconnect + - libertas: Fix possible memory leak in probe and disconnect + - wcn36xx: add proper DMA memory barriers in rx path + - wcn36xx: Fix discarded frames due to wrong sequence number + - bpf: Avoid races in __bpf_prog_run() for 32bit arches + - bpf: Fixes possible race in update_prog_stats() for 32bit arches + - wcn36xx: Channel list update before hardware scan + - drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() + - drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits + - selftests/bpf: Fix fd cleanup in sk_lookup test + - selftests/bpf: Fix memory leak in test_ima + - sctp: allow IP fragmentation when PLPMTUD enters Error state + - sctp: reset probe_timer in sctp_transport_pl_update + - sctp: subtract sctphdr len in sctp_transport_pl_hlen + - sctp: return true only for pathmtu update in sctp_transport_pl_toobig + - net: amd-xgbe: Toggle PLL settings during rate change + - ipmi: kcs_bmc: Fix a memory leak in the error handling path of + 'kcs_bmc_serio_add_device()' + - nfp: fix NULL pointer access when scheduling dim work + - nfp: fix potential deadlock when canceling dim work + - net: phylink: avoid mvneta warning when setting pause parameters + - net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled + - selftests: net: bridge: update IGMP/MLD membership interval value + - crypto: pcrypt - Delay write to padata->info + - selftests/bpf: Fix fclose/pclose mismatch in test_progs + - udp6: allow SO_MARK ctrl msg to affect routing + - ibmvnic: don't stop queue in xmit + - ibmvnic: Process crqs after enabling interrupts + - ibmvnic: delay complete() + - selftests: mptcp: fix proto type in link_failure tests + - skmsg: Lose offset info in sk_psock_skb_ingress + - cgroup: Fix rootcg cpu.stat guest double counting + - bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off. + - bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit. + - of: unittest: fix EXPECT text for gpio hog errors + - cpufreq: Fix parameter in parse_perf_domain() + - staging: r8188eu: fix memory leak in rtw_set_key + - arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 + - iio: st_sensors: disable regulators after device unregistration + - RDMA/rxe: Fix wrong port_cap_flags + - ARM: dts: BCM5301X: Fix memory nodes names + - arm64: dts: broadcom: bcm4908: Fix UART clock name + - clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths + - scsi: pm80xx: Fix lockup in outbound queue management + - scsi: qla2xxx: edif: Use link event to wake up app + - scsi: lpfc: Fix NVMe I/O failover to non-optimized path + - ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() + - arm64: dts: rockchip: Fix GPU register width for RK3328 + - ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY + - RDMA/bnxt_re: Fix query SRQ failure + - arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes + - arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie + node + - arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe + - arm64: dts: meson-g12a: Fix the pwm regulator supply properties + - arm64: dts: meson-g12b: Fix the pwm regulator supply properties + - arm64: dts: meson-sm1: Fix the pwm regulator supply properties + - bus: ti-sysc: Fix timekeeping_suspended warning on resume + - ARM: dts: at91: tse850: the emac<->phy interface is rmii + - arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality + - soc: qcom: llcc: Disable MMUHWT retention + - arm64: dts: qcom: sc7280: fix display port phy reg property + - scsi: dc395: Fix error case unwinding + - MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT + - JFS: fix memleak in jfs_mount + - pinctrl: renesas: rzg2l: Fix missing port register 21h + - ASoC: wcd9335: Use correct version to initialize Class H + - arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock + - arm64: dts: renesas: beacon: Fix Ethernet PHY mode + - iommu/mediatek: Fix out-of-range warning with clang + - arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 + - iommu/dma: Fix sync_sg with swiotlb + - iommu/dma: Fix arch_sync_dma for map + - ALSA: hda: Reduce udelay() at SKL+ position reporting + - ALSA: hda: Use position buffer for SKL+ again + - ALSA: usb-audio: Fix possible race at sync of urb completions + - soundwire: debugfs: use controller id and link_id for debugfs + - power: reset: at91-reset: check properly the return value of devm_of_iomap + - scsi: ufs: core: Fix ufshcd_probe_hba() prototype to match the definition + - scsi: ufs: core: Stop clearing UNIT ATTENTIONS + - scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and + real interrupt + - scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() + - driver core: Fix possible memory leak in device_link_add() + - arm: dts: omap3-gta04a4: accelerometer irq fix + - ASoC: SOF: topology: do not power down primary core during topology removal + - iio: st_pressure_spi: Add missing entries SPI to device ID table + - soc/tegra: Fix an error handling path in tegra_powergate_power_up() + - memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe + - clk: at91: check pmc node status before registering syscore ops + - powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype + for 'create_section_mapping' + - video: fbdev: chipsfb: use memset_io() instead of memset() + - powerpc: fix unbalanced node refcount in check_kvm_guest() + - powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() + - serial: 8250_dw: Drop wrong use of ACPI_PTR() + - usb: gadget: hid: fix error code in do_config() + - power: supply: rt5033_battery: Change voltage values to µV + - power: supply: max17040: fix null-ptr-deref in max17040_probe() + - scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() + - RDMA/mlx4: Return missed an error if device doesn't support steering + - usb: musb: select GENERIC_PHY instead of depending on it + - staging: most: dim2: do not double-register the same device + - staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC + - RDMA/core: Set sgtable nents when using ib_dma_virt_map_sg() + - dyndbg: make dyndbg a known cli param + - powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 + - pinctrl: renesas: checker: Fix off-by-one bug in drive register check + - ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz + - ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx + - ARM: dts: stm32: fix SAI sub nodes register range + - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 + - ASoC: cs42l42: Always configure both ASP TX channels + - ASoC: cs42l42: Correct some register default values + - ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER + - soc: qcom: rpmhpd: Make power_on actually enable the domain + - soc: qcom: socinfo: add two missing PMIC IDs + - iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() + - usb: typec: STUSB160X should select REGMAP_I2C + - iio: adis: do not disabe IRQs in 'adis_init()' + - soundwire: bus: stop dereferencing invalid slave pointer + - scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer + - scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset + - serial: imx: fix detach/attach of serial console + - usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init + - usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled + - usb: dwc2: drd: reset current session before setting the new one + - powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE + - usb: dwc3: gadget: Skip resizing EP's TX FIFO if already resized + - firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() + - soc: qcom: rpmhpd: fix sm8350_mxc's peer domain + - soc: qcom: apr: Add of_node_put() before return + - arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node + - arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly + - arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock + - pinctrl: equilibrium: Fix function addition in multiple groups + - ASoC: topology: Fix stub for snd_soc_tplg_component_remove() + - phy: qcom-qusb2: Fix a memory leak on probe + - phy: ti: gmii-sel: check of_get_address() for failure + - phy: qcom-qmp: another fix for the sc8180x PCIe definition + - phy: qcom-snps: Correct the FSEL_MASK + - phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() + - serial: xilinx_uartps: Fix race condition causing stuck TX + - clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL + - clk: at91: clk-master: check if div or pres is zero + - clk: at91: clk-master: fix prescaler logic + - HID: u2fzero: clarify error check and length calculations + - HID: u2fzero: properly handle timeouts in usb_submit_urb + - powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() + - powerpc/book3e: Fix set_memory_x() and set_memory_nx() + - powerpc/44x/fsp2: add missing of_node_put + - powerpc/xmon: fix task state output + - ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or + later + - iommu/dma: Fix incorrect error return on iommu deferred attach + - powerpc: Don't provide __kernel_map_pages() without + ARCH_SUPPORTS_DEBUG_PAGEALLOC + - ASoC: cs42l42: Correct configuring of switch inversion from ts-inv + - RDMA/hns: Fix initial arm_st of CQ + - RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility + - ASoC: rsnd: Fix an error handling path in 'rsnd_node_count()' + - serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE + - virtio_ring: check desc == NULL when using indirect with packed + - vdpa/mlx5: Fix clearing of VIRTIO_NET_F_MAC feature bit + - mips: cm: Convert to bitfield API to fix out-of-bounds access + - power: supply: bq27xxx: Fix kernel crash on IRQ handler register error + - RDMA/core: Require the driver to set the IOVA correctly during rereg_mr + - apparmor: fix error check + - rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined + - mtd: rawnand: intel: Fix potential buffer overflow in probe + - nfsd: don't alloc under spinlock in rpc_parse_scope_id + - rtc: ds1302: Add SPI ID table + - rtc: ds1390: Add SPI ID table + - rtc: pcf2123: Add SPI ID table + - remoteproc: imx_rproc: Fix TCM io memory type + - i2c: i801: Use PCI bus rescan mutex to protect P2SB access + - dmaengine: idxd: move out percpu_ref_exit() to ensure it's outside + submission + - rtc: mcp795: Add SPI ID table + - Input: ariel-pwrbutton - add SPI device ID table + - i2c: mediatek: fixing the incorrect register offset + - NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED + - NFS: Don't set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA + - NFS: Ignore the directory size when marking for revalidation + - NFS: Fix dentry verifier races + - pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds + - drm/bridge/lontium-lt9611uxc: fix provided connector suport + - drm/plane-helper: fix uninitialized variable reference + - PCI: aardvark: Don't spam about PIO Response Status + - PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge + - opp: Fix return in _opp_add_static_v2() + - NFS: Fix deadlocks in nfs_scan_commit_list() + - sparc: Add missing "FORCE" target when using if_changed + - fs: orangefs: fix error return code of orangefs_revalidate_lookup() + - Input: st1232 - increase "wait ready" timeout + - drm/bridge: nwl-dsi: Add atomic_get_input_bus_fmts + - mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() + - PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation + - mtd: rawnand: arasan: Prevent an unsupported configuration + - mtd: core: don't remove debugfs directory if device is in use + - remoteproc: Fix a memory leak in an error handling path in + 'rproc_handle_vdev()' + - rtc: rv3032: fix error handling in rv3032_clkout_set_rate() + - dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path + - dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro + - dmaengine: stm32-dma: fix stm32_dma_get_max_width + - NFS: Fix up commit deadlocks + - NFS: Fix an Oops in pnfs_mark_request_commit() + - Fix user namespace leak + - auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string + - auxdisplay: ht16k33: Connect backlight to fbdev + - auxdisplay: ht16k33: Fix frame buffer device blanking + - soc: fsl: dpaa2-console: free buffer before returning from + dpaa2_console_read + - netfilter: nfnetlink_queue: fix OOB when mac header was cleared + - dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` + - dmaengine: tegra210-adma: fix pm runtime unbalance + - dmanegine: idxd: fix resource free ordering on driver removal + - dmaengine: idxd: reconfig device after device reset command + - signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) + - m68k: set a default value for MEMORY_RESERVE + - watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT + - ar7: fix kernel builds for compiler test + - scsi: target: core: Remove from tmr_list during LUN unlink + - scsi: qla2xxx: Relogin during fabric disturbance + - scsi: qla2xxx: Fix gnl list corruption + - scsi: qla2xxx: Turn off target reset during issue_lip + - scsi: qla2xxx: edif: Fix app start fail + - scsi: qla2xxx: edif: Fix app start delay + - scsi: qla2xxx: edif: Flush stale events and msgs on session down + - scsi: qla2xxx: edif: Increase ELS payload + - scsi: qla2xxx: edif: Fix EDIF bsg + - NFSv4: Fix a regression in nfs_set_open_stateid_locked() + - dmaengine: idxd: fix resource leak on dmaengine driver disable + - i2c: xlr: Fix a resource leak in the error handling path of + 'xlr_i2c_probe()' + - gpio: realtek-otto: fix GPIO line IRQ offset + - xen-pciback: Fix return in pm_ctrl_init() + - nbd: fix max value for 'first_minor' + - nbd: fix possible overflow for 'first_minor' in nbd_dev_add() + - io-wq: fix max-workers not correctly set on multi-node system + - net: davinci_emac: Fix interrupt pacing disable + - kselftests/net: add missed icmp.sh test to Makefile + - kselftests/net: add missed setup_loopback.sh/setup_veth.sh to Makefile + - kselftests/net: add missed SRv6 tests + - kselftests/net: add missed vrf_strict_mode_test.sh test to Makefile + - kselftests/net: add missed toeplitz.sh/toeplitz_client.sh to Makefile + - ethtool: fix ethtool msg len calculation for pause stats + - openrisc: fix SMP tlb flush NULL pointer dereference + - net: vlan: fix a UAF in vlan_dev_real_dev() + - net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge + - ice: Fix replacing VF hardware MAC to existing MAC filter + - ice: Fix not stopping Tx queues for VFs + - kdb: Adopt scheduler's task classification + - ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses + - PCI: j721e: Fix j721e_pcie_probe() error path + - nvdimm/btt: do not call del_gendisk() if not needed + - scsi: bsg: Fix errno when scsi_bsg_register_queue() fails + - scsi: ufs: ufshpb: Use proper power management API + - scsi: ufs: core: Fix NULL pointer dereference + - scsi: ufs: ufshpb: Properly handle max-single-cmd + - drm/nouveau/svm: Fix refcount leak bug and missing check against null bug + - nvdimm/pmem: cleanup the disk if pmem_release_disk() is yet assigned + - block/ataflop: use the blk_cleanup_disk() helper + - block/ataflop: add registration bool before calling del_gendisk() + - block/ataflop: provide a helper for cleanup up an atari disk + - ataflop: remove ataflop_probe_lock mutex + - PCI: Do not enable AtomicOps on VFs + - cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline + - net: phy: fix duplex out of sync problem while changing settings + - block: fix device_add_disk() kobject_create_and_add() error handling + - drm/ttm: remove ttm_bo_vm_insert_huge() + - bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed + - octeontx2-pf: select CONFIG_NET_DEVLINK + - ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer + - mfd: core: Add missing of_node_put for loop iteration + - mfd: cpcap: Add SPI device ID table + - mfd: sprd: Add SPI device ID table + - mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion + - ACPI: PM: Fix device wakeup power reference counting error + - libbpf: Fix lookup_and_delete_elem_flags error reporting + - selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder + - selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number + - selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly + - selftests/bpf/xdp_redirect_multi: Limit the tests in netns + - drm: fb_helper: improve CONFIG_FB dependency + - Revert "drm/imx: Annotate dma-fence critical section in commit path" + - drm/amdgpu/powerplay: fix sysfs_emit/sysfs_emit_at handling + - can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path + - can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for + mcp251xfd_chip_rx_int_enable() + - mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and + zs_unregister_migration() + - zram: off by one in read_block_state() + - perf bpf: Add missing free to bpf_event__print_bpf_prog_info() + - llc: fix out-of-bound array index in llc_sk_dev_hash() + - nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails + - litex_liteeth: Fix a double free in the remove function + - arm64: arm64_ftr_reg->name may not be a human-readable string + - arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions + - bpf, sockmap: Remove unhash handler for BPF sockmap usage + - bpf, sockmap: Fix race in ingress receive verdict with redirect to self + - bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding + - bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg + - dmaengine: stm32-dma: fix burst in case of unaligned memory address + - dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width + - gve: Fix off by one in gve_tx_timeout() + - drm/i915/fb: Fix rounding error in subsampled plane size calculation + - init: make unknown command line param message clearer + - seq_file: fix passing wrong private data + - drm/amdgpu: fix uvd crash on Polaris12 during driver unloading + - net: dsa: mv88e6xxx: Don't support >1G speeds on 6191X on ports other than + 10 + - net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any + - net: hns3: fix ROCE base interrupt vector initialization bug + - net: hns3: fix pfc packet number incorrect after querying pfc parameters + - net: hns3: fix kernel crash when unload VF while it is being reset + - net: hns3: allow configure ETS bandwidth of all TCs + - net: stmmac: allow a tc-taprio base-time of zero + - net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory + - net: marvell: mvpp2: Fix wrong SerDes reconfiguration order + - vsock: prevent unnecessary refcnt inc for nonblocking connect + - net/smc: fix sk_refcnt underflow on linkdown and fallback + - cxgb4: fix eeprom len when diagnostics not implemented + - selftests/net: udpgso_bench_rx: fix port argument + - thermal: int340x: fix build on 32-bit targets + - smb3: do not error on fsync when readonly + - ARM: 9155/1: fix early early_iounmap() + - ARM: 9156/1: drop cc-option fallbacks for architecture selection + - parisc: Fix backtrace to always include init funtion names + - parisc: Flush kernel data mapping in set_pte_at() when installing pte for + user page + - MIPS: fix duplicated slashes for Platform file path + - MIPS: fix *-pkg builds for loongson2ef platform + - MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL + - x86/mce: Add errata workaround for Skylake SKX37 + - PCI/MSI: Move non-mask check back into low level accessors + - PCI/MSI: Destroy sysfs before freeing entries + - KVM: x86: move guest_pv_has out of user_access section + - posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() + - irqchip/sifive-plic: Fixup EOI failed when masked + - f2fs: should use GFP_NOFS for directory inodes + - f2fs: include non-compressed blocks in compr_written_block + - f2fs: fix UAF in f2fs_available_free_memory + - ceph: fix mdsmap decode when there are MDS's beyond max_mds + - erofs: fix unsafe pagevec reuse of hooked pclusters + - drm/i915/guc: Fix blocked context accounting + - block: Hold invalidate_lock in BLKDISCARD ioctl + - block: Hold invalidate_lock in BLKZEROOUT ioctl + - block: Hold invalidate_lock in BLKRESETZONE ioctl + - ksmbd: Fix buffer length check in fsctl_validate_negotiate_info() + - ksmbd: don't need 8byte alignment for request length in ksmbd_check_message + - dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail + - dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if request fail + - dmaengine: bestcomm: fix system boot lockups + - net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE + - 9p/net: fix missing error check in p9_check_errors + - mm/filemap.c: remove bogus VM_BUG_ON + - memcg: prohibit unconditional exceeding the limit of dying tasks + - mm, oom: pagefault_out_of_memory: don't force global OOM for dying tasks + - mm, oom: do not trigger out_of_memory from the #PF + - mm, thp: lock filemap when truncating page cache + - mm, thp: fix incorrect unmap behavior for private pages + - mfd: dln2: Add cell for initializing DLN2 ADC + - video: backlight: Drop maximum brightness override for brightness zero + - bcache: fix use-after-free problem in bcache_device_free() + - bcache: Revert "bcache: use bvec_virt" + - PM: sleep: Avoid calling put_device() under dpm_list_mtx + - s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove + - s390/cio: check the subchannel validity for dev_busid + - s390/tape: fix timer initialization in tape_std_assign() + - s390/ap: Fix hanging ioctl caused by orphaned replies + - s390/cio: make ccw_device_dma_* more robust + - remoteproc: elf_loader: Fix loading segment when is_iomem true + - remoteproc: Fix the wrong default value of is_iomem + - remoteproc: imx_rproc: Fix ignoring mapping vdev regions + - remoteproc: imx_rproc: Fix rsc-table name + - mtd: rawnand: fsmc: Fix use of SM ORDER + - mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: xway: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: mpc5121: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: gpio: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: pasemi: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: orion: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: plat_nand: Keep the driver compatible with on-die ECC engines + - mtd: rawnand: au1550nd: Keep the driver compatible with on-die ECC engines + - powerpc/vas: Fix potential NULL pointer dereference + - powerpc/bpf: Fix write protecting JIT code + - powerpc/32e: Ignore ESR in instruction storage interrupt handler + - powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload + - powerpc/security: Use a mutex for interrupt exit code patching + - powerpc/64s/interrupt: Fix check_return_regs_valid() false positive + - powerpc/pseries/mobility: ignore ibm, platform-facilities updates + - powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n + - drm/sun4i: Fix macros in sun8i_csc.h + - PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros + - PCI: aardvark: Fix PCIe Max Payload Size setting + - SUNRPC: Partial revert of commit 6f9f17287e78 + - drm/amd/display: Look at firmware version to determine using dmub on dcn21 + - media: vidtv: move kfree(dvb) to vidtv_bridge_dev_release() + - cifs: fix memory leak of smb3_fs_context_dup::server_hostname + - ath10k: fix invalid dma_addr_t token assignment + - mmc: moxart: Fix null pointer dereference on pointer host + - selftests/x86/iopl: Adjust to the faked iopl CLI/STI usage + - selftests/bpf: Fix also no-alu32 strobemeta selftest + - arch/cc: Introduce a function to check for confidential computing features + - x86/sev: Add an x86 version of cc_platform_has() + - x86/sev: Make the #VC exception stacks part of the default stacks storage + - media: videobuf2: always set buffer vb2 pointer + - media: videobuf2-dma-sg: Fix buf->vb NULL pointer dereference + - Linux 5.15.3 + + * kernel panic: NULL pointer dereference in wb_timer_f() (LP: #1947557) // + Jammy update: v5.15.3 upstream stable release (LP: #1951822) + - blk-wbt: prevent NULL pointer dereference in wb_timer_fn + + * Medion Notebook Keyboard not working (LP: #1909814) // Jammy update: v5.15.3 + upstream stable release (LP: #1951822) + - ACPI: resources: Add DMI-based legacy IRQ override quirk + + * Enable CONFIG_INTEL_IOMMU_DEFAULT_ON and + CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON on jammy 5.15 (LP: #1951440) + - [Config] enable Intel DMA remapping options by default + + * Thinkpad E14 Gen2: Kernel panic with trackpad and trackpoint enabled + (LP: #1945590) + - SAUCE: Input: elantech - Fix stack out of bound access in + elantech_change_report_id() + + * Miscellaneous Ubuntu changes + - SAUCE: LSM: Specify which LSM to display (using struct cred as input) + - SAUCE: selftests/seccomp: fix check of fds being assigned + - [Config] enable SUNRPC_DISABLE_INSECURE_ENCTYPES + - [Config] updateconfigs following v5.15.3, v5.15.4 import + + * Miscellaneous upstream changes + - binder: use cred instead of task for selinux checks + - binder: use cred instead of task for getsecid + - Revert "UBUNTU: SAUCE: storvsc: use small sg_tablesize on x86" + + -- Paolo Pisati Mon, 22 Nov 2021 13:14:15 +0100 + +linux (5.15.0-11.11) jammy; urgency=medium + + * jammy/linux: 5.15.0-11.11 -proposed tracker (LP: #1950948) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * OOPs on boot: invalid opcode: 0000 [#1] SMP NOPTI (LP: #1942215) + - SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT + - [Config] disable UBSAN + - SAUCE: ACPICA: avoid accessing operands out-of-bounds + + * Jammy update: v5.15.2 upstream stable release (LP: #1950949) + - KVM: x86: avoid warning with -Wbitwise-instead-of-logical + - Revert "x86/kvm: fix vcpu-id indexed array sizes" + - usb: ehci: handshake CMD_RUN instead of STS_HALT + - usb: gadget: Mark USB_FSL_QE broken on 64-bit + - usb: musb: Balance list entry in musb_gadget_queue + - usb-storage: Add compatibility quirk flags for iODD 2531/2541 + - Revert "proc/wchan: use printk format instead of lookup_symbol_name()" + - binder: use euid from cred instead of using task + - binder: don't detect sender/target during buffer cleanup + - kfence: always use static branches to guard kfence_alloc() + - kfence: default to dynamic branch instead of static keys mode + - btrfs: fix lzo_decompress_bio() kmap leakage + - staging: rtl8712: fix use-after-free in rtl8712_dl_fw + - isofs: Fix out of bound access for corrupted isofs image + - comedi: dt9812: fix DMA buffers on stack + - comedi: ni_usb6501: fix NULL-deref in command paths + - comedi: vmk80xx: fix transfer-buffer overflows + - comedi: vmk80xx: fix bulk-buffer overflow + - comedi: vmk80xx: fix bulk and interrupt message timeouts + - staging: r8712u: fix control-message timeout + - staging: rtl8192u: fix control-message timeouts + - staging: r8188eu: fix memleak in rtw_wx_set_enc_ext + - media: staging/intel-ipu3: css: Fix wrong size comparison imgu_css_fw_init + - rsi: fix control-message timeout + - Linux 5.15.2 + + * reuseport_bpf_numa in net from ubuntu_kernel_selftests fails on ppc64le + (LP: #1867570) + - selftests/net: Fix reuseport_bpf_numa by skipping unavailable nodes + + * Miscellaneous Ubuntu changes + - packaging: switch getabis to the linux package name + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (no-up) rename the adv7511 drm driver to adv7511_drm" + - Revert "UBUNTU: SAUCE: drm/i915/dp: Use max params for older panels" + - Revert "UBUNTU: SAUCE: i915: Fix build error due to missing struct + definition" + - selftests/core: fix conflicting types compile error for close_range() + - selftests: net: test_vxlan_under_vrf: fix HV connectivity test + - Revert "UBUNTU: SAUCE: ACPICA: prevent out-of-bound access with buggy DSDT" + + -- Paolo Pisati Mon, 15 Nov 2021 10:12:47 +0100 + +linux (5.15.0-10.10) jammy; urgency=medium + + * jammy/linux: 5.15.0-10.10 -proposed tracker (LP: #1950133) + + * Jammy update: v5.15.1 upstream stable release (LP: #1950131) + - sfc: Fix reading non-legacy supported link modes + - media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt() + - Revert "xhci: Set HCD flag to defer primary roothub registration" + - Revert "usb: core: hcd: Add support for deferring roothub registration" + - drm/amdkfd: fix boot failure when iommu is disabled in Picasso. + - Revert "soc: imx: gpcv2: move reset assert after requesting domain power up" + - ARM: 9120/1: Revert "amba: make use of -1 IRQs warn" + - Revert "wcn36xx: Disable bmps when encryption is disabled" + - drm/amdgpu: revert "Add autodump debugfs node for gpu reset v8" + - drm/amd/display: Revert "Directly retrain link from debugfs" + - Revert "drm/i915/gt: Propagate change in error status to children on unhold" + - ALSA: usb-audio: Add quirk for Audient iD14 + - Linux 5.15.1 + + * Miscellaneous Ubuntu changes + - packaging: fixup previous ABI/spin to -9.9 + - [Packaging] Drop unused d-i build-deps and packaging + - [Packaging] Drop now unsupported d-i/ input files + + * Miscellaneous upstream changes + - selftests: net: properly support IPv6 in GSO GRE test + - signal: Add SA_IMMUTABLE to ensure forced siganls do not get changed + + -- Paolo Pisati Mon, 08 Nov 2021 14:43:24 +0100 + +linux (5.15.0-9.9) jammy; urgency=medium + + * jammy/linux: 5.15.0-1.1 -proposed tracker (LP: #1949876) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + - [Packaging] update Ubuntu.md + + * Add F81966 watchdog support (LP: #1949063) + - SAUCE: ODM: watchdog: f71808e_wdt: Add F81966 support + + * Miscellaneous Ubuntu changes + - [Packaging] Rewrite debian/scripts/misc/insert-changes.pl in Python + - [Packaging] change source package name to linux + + -- Andrea Righi Thu, 04 Nov 2021 18:47:19 +0100 + +linux (5.15.0-0.0) jammy; urgency=medium + + * Empty entry + + -- Andrea Righi Thu, 04 Nov 2021 16:47:16 +0100 + +linux-unstable (5.15.0-8.8) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-8.8 -proposed tracker (LP: #1949436) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Drop "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" (LP: #1947709) + - Revert "UBUNTU: SAUCE: cachefiles: Page leaking in + cachefiles_read_backing_file while vmscan is active" + + * Add l2tp.sh in net from ubuntu_kernel_selftests back (LP: #1934293) + - Revert "UBUNTU: SAUCE: selftests/net -- disable l2tp.sh test" + + * Check for changes relevant for security certifications (LP: #1945989) + - [Packaging] Add fips-checks as part of finalchecks + + * Add final-checks to check certificates (LP: #1947174) + - [Packaging] Add system trusted and revocation keys final check + + * Can only reach PC3 when ethernet is plugged r8169 (LP: #1946433) + - r8169: Enable chip-specific ASPM regardless of PCIe ASPM status + - PCI/ASPM: Introduce a new helper to report ASPM capability + - r8169: Implement dynamic ASPM mechanism + + * rtw89 kernel module for Realtek 8852 wifi is missing (LP: #1945967) + - rtw89: add Realtek 802.11ax driver + - rtw89: Remove redundant check of ret after call to rtw89_mac_enable_bb_rf + - rtw89: fix return value check in rtw89_cam_send_sec_key_cmd() + - rtw89: remove unneeded semicolon + - [Config] RTW89=m + + * Fix A yellow screen pops up in an instant (< 1 second) and then disappears + before loading the system (LP: #1945932) + - drm/i915: Stop force enabling pipe bottom color gammma/csc + + * disable CONFIG_KFENCE_STATIC_KEYS in linux 5.15 (LP: #1948038) + - [Config] disable CONFIG_KFENCE_STATIC_KEYS + + * Miscellaneous Ubuntu changes + - [Debian] Remove old and unused firmware helper scripts + - [Packaging] Replace Perl oneliner with Bash statements + - rebase to v5.15 + + [ Upstream Kernel Changes ] + + * Rebase to v5.15 + + -- Paolo Pisati Tue, 02 Nov 2021 08:29:45 +0100 + +linux-unstable (5.15.0-7.7) jammy; urgency=medium + + * jammy/linux-unstable: 5.15.0-7.7 -proposed tracker (LP: #1948770) + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - packaging: switch release to Jammy + - rebase to v5.15-rc7 + - [Config] GCC version update + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc7 + + -- Paolo Pisati Tue, 26 Oct 2021 11:38:14 +0200 + +linux-unstable (5.15.0-6.6) jammy; urgency=medium + + * impish/linux-unstable: 5.15.0-6.6 -proposed tracker (LP: #1947565) + + * [impish] Remove the downstream xr-usb-uart driver (LP: #1945938) + - SAUCE: xr-usb-serial: remove driver + - [Config] update modules list + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc6 + - [Config] update config & annotations following v5.15-rc6 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: xr-usb-serial: switch to tty_alloc_driver() and + tty_driver_kref_put()" + - Revert "UBUNTU: SAUCE: xr-usb-serial: update return code for + xr_usb_serial_tty_write_room() and xr_usb_serial_tty_chars_in_buffer()" + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc6 + + -- Paolo Pisati Mon, 18 Oct 2021 12:24:45 +0200 + +linux-unstable (5.15.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-5.5 -proposed tracker (LP: #1946338) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc5 + - [Config] FB_SIMPLE=m + - [Config] update annotations + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc5 + + -- Paolo Pisati Mon, 11 Oct 2021 12:14:02 +0200 + +linux-unstable (5.15.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-4.4 -proposed tracker (LP: #1945953) + + * Fix missing HDMI audio on Intel RKL (LP: #1945556) + - drm/i915/audio: Use BIOS provided value for RKL HDA link + + * Miscellaneous Ubuntu changes + - SAUCE: media: atomisp: add missing return type (fix -Werror=return-type) + - SAUCE: xr-usb-serial: switch to tty_alloc_driver() and tty_driver_kref_put() + - rebase to v5.15-rc4 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable INTEL_ATOMISP" + - Revert "UBUNTU: [Config] FTBFS: disable xr-usb-serial" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc4 + + -- Paolo Pisati Mon, 04 Oct 2021 10:52:41 +0200 + +linux-unstable (5.15.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-3.3 -proposed tracker (LP: #1944944) + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc3 + - [Config] updateconfigs following v5.15-rc3 rebase + - [Packaging] correctly evaluate release in update-dkms-versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc3 + + -- Paolo Pisati Mon, 27 Sep 2021 16:48:03 +0200 + +linux-unstable (5.15.0-2.2) impish; urgency=medium + + * impish/linux-unstable: 5.15.0-2.2 -proposed tracker (LP: #1944423) + + * Miscellaneous Ubuntu changes + - rebase to v5.15-rc2 + - [Config] updateconfigs following v5.15-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc2 + + -- Paolo Pisati Tue, 21 Sep 2021 11:46:59 +0200 + +linux-unstable (5.15.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - debian/dkms-versions -- update from kernel-versions (main/master) + + * LRMv5: switch primary version handling to kernel-versions data set + (LP: #1928921) + - [Packaging] switch to kernel-versions + + * Miscellaneous Ubuntu changes + - [Packaging] remove remaining references to ports + - [Packaging] drop x32 architecture configs + - [Config] mark CONFIG_BPF_UNPRIV_DEFAULT_OFF enforced + - [Packaging] bump kernel version to 5.15 + - rebase to v5.15-rc1 + - [Config] updateconfigs following v5.15-rc1 rebase + - [Config] FTBFS: disable INTEL_ATOMISP + - [Config] FTBFS: disable xr-usb-serial + - [Packaging] FTBFS: disable zfs + + * Miscellaneous upstream changes + - Revert "r8169: avoid link-up interrupt issue on RTL8106e if user enables + ASPM" + - Revert "UBUNTU: SAUCE: RDMA/core: Introduce peer memory interface" + + [ Upstream Kernel Changes ] + + * Rebase to v5.15-rc1 + + -- Paolo Pisati Fri, 17 Sep 2021 11:42:25 +0200 + +linux-unstable (5.15.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Wed, 15 Sep 2021 11:54:10 +0200 + +linux-unstable (5.14.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-9.9 -proposed tracker (LP: #1943022) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] NVIDIA -- Add the NVIDIA 470 driver + - [Packaging] NVIDIA: transition -460 and -465 to -470, transition -460-server + to -470-server + + * Miscellaneous upstream changes + - vt_kdsetmode: extend console locking + - Bluetooth: btusb: check conditions before enabling USB ALT 3 for WBS + - net: dsa: mt7530: fix VLAN traffic leaks again + - btrfs: fix NULL pointer dereference when deleting device by invalid id + - Revert "floppy: reintroduce O_NDELAY fix" + - fscrypt: add fscrypt_symlink_getattr() for computing st_size + - ext4: report correct st_size for encrypted symlinks + - f2fs: report correct st_size for encrypted symlinks + - ubifs: report correct st_size for encrypted symlinks + - net: don't unconditionally copy_from_user a struct ifreq for socket ioctls + - audit: move put_tree() to avoid trim_trees refcount underflow and UAF + - Linux 5.14.1 + + -- Paolo Pisati Wed, 08 Sep 2021 12:20:18 +0200 + +linux-unstable (5.14.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-8.8 -proposed tracker (LP: #1941887) + + * Fix Intel AC9560 BT function cannot turn on if BT turn off before S3 entry + (LP: #1941696) + - SAUCE: Bluetooth: btusb: add a reject table to disable msft + + * Add USB4 support for AMD SoC (LP: #1941036) + - thunderbolt: Add vendor specific NHI quirk for auto-clearing interrupt + status + - thunderbolt: Handle ring interrupt by reading interrupt status register + - thunderbolt: Do not read control adapter config space + - thunderbolt: Fix port linking by checking all adapters + + * Support builtin revoked certificates (LP: #1932029) + - [Config] Enforce SYSTEM_TRUSTED_KEYS and SYSTEM_REVOCATION_KEYS + + * GPIO error logs in start and dmesg after update of kernel (LP: #1937897) + - ODM: mfd: Check AAEON BFPI version before adding device + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] enforce ZSTD compression + + * Miscellaneous Ubuntu changes + - rebase to v5.14 + - [Config] RESET_MCHP_SPARX5 depends on ARCH_SPARX5 + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] FTBFS: disable zfs" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14 + + -- Paolo Pisati Mon, 30 Aug 2021 12:57:19 +0200 + +linux-unstable (5.14.0-7.7) impish; urgency=medium + + * Please enable CONFIG_UBSAN_BOUNDS (LP: #1914685) + - [Config] Enable CONFIG_UBSAN_BOUNDS + + * CONFIG_HARDENED_USERCOPY_FALLBACK should be disabled (LP: #1855340) + - [Config] Disable CONFIG_HARDENED_USERCOPY_FALLBACK + + * fs: removing mandatory locks (LP: #1940392) + - [Config] Disable CONFIG_MANDATORY_FILE_LOCKING + + * Fix kernel panic caused by legacy devices on AMD platforms (LP: #1936682) + - SAUCE: iommu/amd: Keep swiotlb enabled to ensure devices with 32bit DMA + still work + + * ALSA: hda/cs8409: Add support for dolphin (LP: #1939541) + - ALSA: hda/cirrus: Move CS8409 HDA bridge to separate module + - ALSA: hda/cs8409: Move arrays of configuration to a new file + - ALSA: hda/cs8409: Use enums for register names and coefficients + - ALSA: hda/cs8409: Mask all CS42L42 interrupts on initialization + - ALSA: hda/cs8409: Reduce HS pops/clicks for Cyborg + - ALSA: hda/cs8409: Disable unnecessary Ring Sense for Cyborg/Warlock/Bullseye + - ALSA: hda/cs8409: Disable unsolicited responses during suspend + - ALSA: hda/cs8409: Disable unsolicited response for the first boot + - ALSA: hda/cs8409: Mask CS42L42 wake events + - ALSA: hda/cs8409: Simplify CS42L42 jack detect. + - ALSA: hda/cs8409: Prevent I2C access during suspend time + - ALSA: hda/cs8409: Generalize volume controls + - ALSA: hda/cs8409: Dont disable I2C clock between consecutive accesses + - ALSA: hda/cs8409: Avoid setting the same I2C address for every access + - ALSA: hda/cs8409: Avoid re-setting the same page as the last access + - ALSA: hda/cs8409: Support i2c bulk read/write functions + - ALSA: hda/cs8409: Separate CS8409, CS42L42 and project functions + - ALSA: hda/cs8409: Move codec properties to its own struct + - ALSA: hda/cs8409: Support multiple sub_codecs for Suspend/Resume/Unsol + events + - ALSA: hda/cs8409: Add Support to disable jack type detection for CS42L42 + - ALSA: hda/cs8409: Add support for dolphin + - ALSA: hda/cs8409: Enable Full Scale Volume for Line Out Codec on Dolphin + - ALSA: hda/cs8409: Set fixed sample rate of 48kHz for CS42L42 + - ALSA: hda/cs8409: Use timeout rather than retries for I2C transaction waits + - ALSA: hda/cs8409: Remove unnecessary delays + - ALSA: hda/cs8409: Follow correct CS42L42 power down sequence for suspend + - ALSA: hda/cs8409: Unmute/Mute codec when stream starts/stops + - ALSA: hda/cs8409: Prevent pops and clicks during suspend + - SAUCE: ALSA: hda/cs8409: Prevent pops and clicks during reboot + - [Config] Enable Cirrus Logic HDA bridge support + + * e1000e: add handshake with the Intel CSME to support S0ix (LP: #1937252) + - SAUCE: e1000e: Add handshake with the CSME to support S0ix + - SAUCE: e1000e: Add polling mechanism to indicate CSME DPG exit + - SAUCE: e1000e: Additional PHY power saving in S0ix + + * AMDGPU: Fix System hang after resume from suspend (LP: #1940204) + - SAUCE: drm/amdgpu: disable BACO support for 699F:C7 polaris12 SKU + temporarily + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc7 + - [Config] updateconfigs following 5.14-rc7 rebase + - [Config] Enable CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT + - [Config] annotations: set CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT to y + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] annotations: set + CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y" + - Revert "UBUNTU: [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to + y" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc7 + + -- Paolo Pisati Tue, 24 Aug 2021 10:32:31 +0200 + +linux-unstable (5.14.0-6.6) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - no changes upload (to avoid picking up libc6 from -proposed) + + * No changes upload (to avoid picking up libc6 from -proposed) + + -- Paolo Pisati Wed, 18 Aug 2021 13:41:16 +0200 + +linux-unstable (5.14.0-5.5) impish; urgency=medium + + * disable “CONFIG_HISI_DMA” config for ubuntu version (LP: #1936771) + - [Config] Disable CONFIG_HISI_DMA + + * Dell XPS 17 (9710) PCI/internal sound card not detected (LP: #1935850) + - ASoC: Intel: sof_sdw: include rt711.h for RT711 JD mode + - ASoC: Intel: sof_sdw: add quirk for Dell XPS 9710 + + * [regression] USB device is not detected during boot (LP: #1939638) + - SAUCE: Revert "usb: core: reduce power-on-good delay time of root hub" + + * armhf build failure (LP: #1939308) + - SAUCE: arm: Fix instruction set selection for GCC 11 + + * REGRESSION: shiftfs lets sendfile fail with EINVAL (LP: #1939301) + - SAUCE: shiftfs: fix sendfile() invocations + + * Wobbly graphics on built-in display since linux-image-5.11.0-22-generic + (LP: #1936708) + - SAUCE: drm/i915/dp: Use max params for older panels + + * [SRU][H/OEM-5.10/OEM-5.13/U] Fix system hang after unplug tbt dock + (LP: #1938689) + - SAUCE: igc: fix page fault when thunderbolt is unplugged + + * e1000e blocks the boot process when it tried to write checksum to its NVM + (LP: #1936998) + - SAUCE: e1000e: Do not take care about recovery NVM checksum + + * [Regression] Audio card [8086:9d71] not detected after upgrade from linux + 5.4 to 5.8 (LP: #1915117) + - [Config] set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + - [Config] annotations: set CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC to y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs following 5.14-rc6 rebase + - rebase to v5.14-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc6 + + -- Paolo Pisati Tue, 17 Aug 2021 17:49:15 +0200 + +linux-unstable (5.14.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.14.0-4.4 -proposed tracker (LP: #1938566) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous upstream changes + - Revert "riscv: Get CPU manufacturer information" + + -- Paolo Pisati Tue, 03 Aug 2021 14:50:27 +0200 + +linux-unstable (5.14.0-3.3) impish; urgency=medium + + * Add additional Mediatek MT7921 WiFi/BT device IDs (LP: #1937004) + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for Foxconn + - SAUCE: Bluetooth: btusb: Add Mediatek MT7921 support for IMC Network + - SAUCE: Bluetooth: btusb: Add support for Foxconn Mediatek Chip + + * Fix display output on HP hybrid GFX laptops (LP: #1936296) + - drm/i915: Invoke another _DSM to enable MUX on HP Workstation laptops + + * Miscellaneous Ubuntu changes + - rebase to v5.14-rc3 + - [Config] updateconfigs following 5.14-rc3 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc3 + + -- Paolo Pisati Mon, 26 Jul 2021 12:52:38 +0200 + +linux-unstable (5.14.0-2.2) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: xr-usb-serial: update return code for xr_usb_serial_tty_write_room() + and xr_usb_serial_tty_chars_in_buffer() + - SAUCE: platform/x86: dell-uart-backlight: update return code for + uart_chars_in_buffer(() + - [Config] updateconfigs following 5.14-rc2 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] FTBFS: disable ubuntu/xr-usb-serial" + - Revert "UBUNTU: [Config] FTBFS: disable DELL_UART_BACKLIGHT" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc2 + + -- Paolo Pisati Thu, 22 Jul 2021 11:03:28 +0200 + +linux-unstable (5.14.0-1.1) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] bump kernel version to 5.14 + - [Config] updateconfigs following 5.14-rc1 rebase + - [Config] update annotations + - [Packaging] FTBFS: disable zfs + - [Config] FTBFS: disable DELL_UART_BACKLIGHT + - [Config] FTBFS: disable ubuntu/xr-usb-serial + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] update variants" + + [ Upstream Kernel Changes ] + + * Rebase to v5.14-rc1 + + -- Paolo Pisati Fri, 16 Jul 2021 15:20:04 +0200 + +linux-unstable (5.14.0-0.0) impish; urgency=medium + + * Empty entry + + -- Paolo Pisati Tue, 13 Jul 2021 12:15:35 +0200 + +linux (5.13.0-11.11) impish; urgency=medium + + * impish/linux: 5.13.0-11.11 -proposed tracker (LP: #1933854) + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support builtin revoked certificates (LP: #1932029) + - [Packaging] build canonical-revoked-certs.pem from branch/arch certs + - [Packaging] Revoke 2012 UEFI signing certificate as built-in + - [Config] Configure CONFIG_SYSTEM_REVOCATION_KEYS with revoked keys + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package name to linux + + * Miscellaneous upstream changes + - mm/page_alloc: Correct return value of populated elements if bulk array is + populated + + -- Andrea Righi Tue, 29 Jun 2021 07:50:25 +0200 + +linux (5.13.0-10.10) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-10.10) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-10.10 -proposed tracker (LP: #1933795) + + * Pixel format change broken for Elgato Cam Link 4K (LP: #1932367) + - media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - s390/decompressor: correct BOOT_HEAP_SIZE condition + - s390/boot: add zstd support + - [Packaging] use ZSTD to compress s390 kernels + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: tls: fix chacha+bidir tests + - SAUCE: selftests: icmp_redirect: support expected failures + - [Config] update configs and annotations after rebase to 5.13 + + * Miscellaneous upstream changes + - tls: prevent oversized sendfile() hangs by ignoring MSG_MORE + + [ Upstream Kernel Changes ] + + * Rebase to v5.13 + + -- Andrea Righi Mon, 28 Jun 2021 08:40:05 +0200 + +linux-unstable (5.13.0-9.9) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-9.9 -proposed tracker (LP: #1933070) + + * Add support for selective build of special drivers (LP: #1912789) + - [Packaging] Add support for ODM drivers + - [Packaging] Turn on ODM support for amd64 + - [Packaging] Fix ODM support in actual build + - [Packaging] Fix ODM DRIVERS Kconfig + + * Add support for IO functions of AAEON devices (LP: #1929504) + - ODM: [Config] update config for AAEON devices + - ODM: hwmon: add driver for AAEON devices + - ODM: leds: add driver for AAEON devices + - ODM: watchdog: add driver for AAEON devices + - ODM: gpio: add driver for AAEON devices + - ODM: mfd: Add support for IO functions of AAEON devices + + * Disable hv-kvp-daemon.service on certain instance types (LP: #1932081) + - [Packaging]: Add kernel command line condition to hv-kvp-daemon service + + * Fix non-working GPU on Some HP desktops (LP: #1931147) + - PCI: Coalesce host bridge contiguous apertures + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: seccomp: bump up timeout to 5min + - SAUCE: Revert "net/tls(TLS_SW): Add selftest for 'chunked' sendfile test" + - [Config] update annotations after rebase to 5.13-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc7 + + -- Andrea Righi Mon, 21 Jun 2021 10:55:36 +0200 + +linux-unstable (5.13.0-8.8) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-8.8 -proposed tracker (LP: #1932018) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * initramfs-tools & kernel: use zstd as the default compression method + (LP: #1931725) + - [Config] use ZSTD to compress amd64 kernels + + * Miscellaneous Ubuntu changes + - [Config] enable signing for ppc64el + - SAUCE: powerpc: Fix initrd corruption with relative jump labels + + -- Andrea Righi Tue, 15 Jun 2021 15:07:34 +0200 + +linux-unstable (5.13.0-7.7) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-7.7 -proposed tracker (LP: #1931840) + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] resync getabis + - [Packaging] update helper scripts + - update dkms package versions + + * Intel ADL-S graphics feature enabling (LP: #1931240) + - SAUCE: drm/i915/adl_s: ADL-S platform Update PCI ids for Mobile BGA + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + + * Miscellaneous Ubuntu changes + - [Debian] remove nvidia dkms build support + - [Config] remove now unsued do_dkms_nvidia* build variables + - [Config] enable signing for s390x + - [Config] update annotations after configs review + - [Config] update toolchain versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc6 + + -- Andrea Righi Mon, 14 Jun 2021 11:53:08 +0200 + +linux-unstable (5.13.0-6.6) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-6.6 -proposed tracker (LP: #1931071) + + * Kernel package builds running out of space on builders (LP: #1930713) + - [Debian] use stamps for flavour install targets + - [Debian] run install-$(flavour) targets during build phase + - [Debian] remove dh_testroot from install targets + - [Debian] dkms-build -- use fakeroot if not running as root + - [Debian] exclude $(DEBIAN)/__abi.current from linux-source + + * [UBUNTU 21.04] tools/kvm_stat: Add restart delay (LP: #1921870) + - [Debian] install kvm_stat systemd service + + * Debugging symbols (dbgsym) packages are missing GDB kernel scripts + (LP: #1928715) + - [Packaging] Build and include GDB Python scripts into debug packages + + * Can't detect intel wifi 6235 (LP: #1920180) + - SAUCE: iwlwifi: add new pci id for 6235 + + * Select correct boot VGA when BIOS doesn't do it properly (LP: #1929217) + - vgaarb: Use ACPI HID name to find integrated GPU + + * Fix kernel panic on Intel Bluetooth (LP: #1928838) + - Bluetooth: Shutdown controller after workqueues are flushed or cancelled + + * build module CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m for 5.11, 5.13-rc2 + and later (LP: #1921632) + - [Config] enable soundwire audio mach driver + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SND_SOC_RT1308 can only be enabled on amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc5 + + -- Andrea Righi Mon, 07 Jun 2021 10:45:13 +0200 + +linux-unstable (5.13.0-5.5) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-5.5 -proposed tracker (LP: #1930205) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] set CONFIG_BPF_UNPRIV_DEFAULT_OFF=y + + -- Andrea Righi Mon, 31 May 2021 12:32:38 +0200 + +linux-unstable (5.13.0-4.4) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-4.4 -proposed tracker (LP: #1929404) + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) + - SAUCE: integrity: add informational messages when revoking certs + + * Support importing mokx keys into revocation list from the mok table + (LP: #1928679) // CVE-2020-26541 when certificates are revoked via + MokListXRT. + - SAUCE: integrity: Load mokx certs from the EFI MOK config table + + * Miscellaneous Ubuntu changes + - [Config] Temporarily disable signing for ppc64el and s390x + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Be more careful about copying up + sxid files" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Propogate nosuid from lower and + upper mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: Enable user namespace mounts" + - SAUCE: Revert "UBUNTU: SAUCE: overlayfs: ensure mounter privileges when + reading directories" + - SAUCE: Revert "UBUNTU: SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags" + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc3 + + -- Andrea Righi Mon, 24 May 2021 13:06:17 +0200 + +linux-unstable (5.13.0-3.3) impish; urgency=medium + + * impish/linux-unstable: 5.13.0-3.3 -proposed tracker (LP: #1928655) + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc2 + + -- Andrea Righi Mon, 17 May 2021 11:55:02 +0200 + +linux-unstable (5.13.0-2.2) impish; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] enable CONFIG_DEBUG_INFO_COMPRESSED + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] temporarily disable BPF JIT" + + -- Andrea Righi Fri, 14 May 2021 09:19:02 +0200 + +linux-unstable (5.13.0-1.1) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.13-rc1 + + -- Andrea Righi Wed, 12 May 2021 11:35:23 +0200 + +linux-unstable (5.13.0-0.0) impish; urgency=medium + + * Empty entry + + -- Andrea Righi Tue, 11 May 2021 08:40:09 +0200 + +linux-unstable (5.12.0-11.11) impish; urgency=medium + + * Impish update: v5.12.1 upstream stable release (LP: #1927094) + - net: hso: fix NULL-deref on disconnect regression + - USB: CDC-ACM: fix poison/unpoison imbalance + - iwlwifi: Fix softirq/hardirq disabling in iwl_pcie_gen2_enqueue_hcmd() + - cfg80211: fix locking in netlink owner interface destruction + - mei: me: add Alder Lake P device id. + - Linux 5.12.1 + + * Packaging resync (LP: #1786013) // Impish update: v5.12.1 upstream stable + release (LP: #1927094) + - update dkms package versions + + * Gigabyte R120-T33 (ARM ThunderX SoC) fails to boot in ACPI mode + (LP: #1925075) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ACPI: GTDT: Don't corrupt interrupt mappings on watchdow probe failure + + * Fix kernel panic at boot on dual GFX systems (LP: #1926792) // Impish + update: v5.12.1 upstream stable release (LP: #1927094) + - drm/amdgpu: Register VGA clients after init can no longer fail + + * On TGL platforms screen shows garbage when browsing website by scrolling + mouse (LP: #1926579) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: drm/i915/display: Disable PSR2 if TGL Display stepping is B1 from A0 + + * CirrusLogic: Cracking noises appears in built-in speaker when output volume + is set >80% (LP: #1924997) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - SAUCE: ALSA: hda/cirrus: Use CS8409 Equalizer to fix abnormal sounds on + Bullseye + + * Enable mute/micmute LEDs and limit mic boost on EliteBook 845 G8 + (LP: #1925415) // Impish update: v5.12.1 upstream stable release + (LP: #1927094) + - ALSA: hda/realtek: Enable mute/micmute LEDs and limit mic boost on EliteBook + 845 G8 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: PCI: Disable broken RTIT_BAR of Intel TH" + - Revert "UBUNTU: [Config] temporarily disable ZFS" + + -- Paolo Pisati Tue, 04 May 2021 18:35:54 +0200 + +linux-unstable (5.12.0-10.10) impish; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] Drop versioned ABI directory names + - [Packaging] getabis: Download ABIs into an unversioned directory + - [Packaging] final-checks: Handle unversioned ABI directories + - bump to impish + - [Config] GCC version update + + -- Paolo Pisati Thu, 29 Apr 2021 12:27:20 +0200 + +linux-unstable (5.12.0-9.9) impish; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Seth Forshee Mon, 26 Apr 2021 11:14:16 -0500 + +linux-unstable (5.12.0-8.8) hirsute; urgency=medium + + * CVE-2021-3492 + - SAUCE: shiftfs: free allocated memory in shiftfs_btrfs_ioctl_fd_replace() + error paths + - SAUCE: shiftfs: handle copy_to_user() return values correctly + + * Fix no picture from HDMI when it's plugged after boot (LP: #1924238) + - drm/i915/display: Handle lane polarity for DDI port + + * hirsute beta desktop AMD64 ISO kernel panic on boot when booting using UEFI + (LP: #1922403) + - SAUCE: efifb: Check efifb_pci_dev before using it + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc8 + - [Config] updateconfigs following 5.12-rc8 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc8 + + -- Paolo Pisati Mon, 19 Apr 2021 11:37:27 +0200 + +linux-unstable (5.12.0-7.7) hirsute; urgency=medium + + * drm/i915: Drop force_probe requirement for Rocket Lake (LP: #1905466) + - drm/i915/rkl: Remove require_force_probe protection + + * HP m400 cartridges fail to find NIC when deploying hirsute (LP: #1918793) + - PCI: xgene: Fix cfg resource mapping + + * Update - Fix no screen show on display after S3 on CML-R (LP: #1922768) + - drm/i915/gen9bc: Handle TGP PCH during suspend/resume + + * Miscellaneous Ubuntu changes + - SAUCE: RDMA/core: Introduce peer memory interface + - Rebase to v5.12-rc7 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc7 + + -- Paolo Pisati Mon, 12 Apr 2021 11:48:07 +0200 + +linux-unstable (5.12.0-6.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * i915 doesn't support some high pixel clock 4k * 60Hz monitors (LP: #1922372) + - drm/i915/vbt: update DP max link rate table + + * Tegra "mmc0: Timeout waiting for hardware interrupt" (LP: #1921140) + - SAUCE: mmc: host: Add required callbacks to set/clear CQE_EN bit + + * Enable ath11k debugfs/tracing (LP: #1922033) + - [Config] enable ath11k debugfs/tracing + + * Fix mic on P620 after S3 resume (LP: #1921757) + - ALSA: usb-audio: Carve out connector value checking into a helper + - ALSA: usb-audio: Check connector value on resume + + * Miscellaneous Ubuntu changes + - [Config] amd64,arm64: build KFENCE support but disable it by default + (KFENCE_SAMPLE_INTERVAL=0) + - Rebase to v5.12-rc6 + + * Miscellaneous upstream changes + - drm/dp: add MSO related DPCD registers + - drm/i915/edp: reject modes with dimensions other than fixed mode + - drm/i915/edp: always add fixed mode to probed modes in ->get_modes() + - drm/i915/edp: read sink MSO configuration for eDP 1.4+ + - drm/i915/reg: add stream splitter configuration definitions + - drm/i915/mso: add splitter state readout for platforms that support it + - drm/i915/mso: add splitter state check + - drm/i915/edp: modify fixed and downclock modes for MSO + - drm/i915/edp: enable eDP MSO during link training + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc6 + + -- Paolo Pisati Wed, 07 Apr 2021 11:42:55 +0200 + +linux-unstable (5.12.0-5.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * alsa/realtek: extend the delay time in the determine_headset_type for a + Dell AIO (LP: #1920747) + - SAUCE: ALSA: hda/realtek: fix a determine_headset_type issue for a Dell AIO + + * power off stress test will hang on the TGL machines (LP: #1919930) + - SAUCE: ASoC: SOF: Intel: TGL: set shutdown callback to hda_dsp_shutdown + - [Config] set SND_SOC_SOF_HDA_ALWAYS_ENABLE_DMI_L1 to n + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Miscellaneous Ubuntu changes + - [Config] arm64 -- unify build_image and kernel_file values + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: xr-usb-serial: clean up indentation + - SAUCE: xr-usb-serial: clean up build warnings + - SAUCE: apparmor: Fix build error, make sk parameter const + - Rebase to v5.12-rc5 + - [Config] updateconfigs following v5.12-rc5 rebase + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390: Lock down the kernel when the IPL + secure flag is set" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) powerpc: lock down kernel in secure boot + mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic" + - Revert "UBUNTU: SAUCE: (lockdown) arm64: Allow locking down the kernel under + EFI secure boot" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc5 + + -- Paolo Pisati Mon, 29 Mar 2021 12:59:38 +0200 + +linux-unstable (5.12.0-4.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix broken efifb on graphics device without driver (LP: #1914411) + - SAUCE: efifb: Ensure graphics device for efifb stays at PCI D0 + + * Fix system sleep on TGL systems with Intel ME (LP: #1919321) + - SAUCE: PCI: Serialize TGL e1000e PM ops + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc4 + - [Config] updateconfigs following v5.12-rc4 rebase + + * Miscellaneous upstream changes + - riscv: dts: fu740: fix cache-controller interrupts + - riscv: sifive: fu740: cpu{1, 2, 3, 4} set compatible to sifive, u74-mc + - riscv: sifive: unmatched: update for 16GB rev3 + - riscv: Add 3 SBI wrapper functions to get cpu manufacturer information + - riscv: Get CPU manufacturer information + - riscv: Introduce alternative mechanism to apply errata solution + - riscv: sifive: apply errata "cip-453" patch + - clk: sifive: Add pcie_aux clock in prci driver for PCIe driver + - clk: sifive: Use reset-simple in prci driver for PCIe driver + - MAINTAINERS: Add maintainers for SiFive FU740 PCIe driver + - dt-bindings: PCI: Add SiFive FU740 PCIe host controller + - PCI: designware: Add SiFive FU740 PCIe host controller driver + - riscv: dts: Add PCIe support for the SiFive FU740-C000 SoC + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc4 + + -- Paolo Pisati Mon, 22 Mar 2021 12:43:14 +0100 + +linux-unstable (5.12.0-3.3) hirsute; urgency=medium + + * riscv: revert SiFive Unleashed CPUFreq (LP: #1917433) + - SAUCE: Revert "SiFive Unleashed CPUFreq" + + * Dell Precision 5550 takes up to 10 seconds to respond when coming out of + sleep (LP: #1919123) + - SAUCE: Input: i8042 - add dmi quirk + + * LRMv4: switch to signing nvidia modules via the Ubuntu Modules signing key + (LP: #1918134) + - [Packaging] sync dkms-build et al from LRMv4 + + * curtin: install flash-kernel in arm64 UEFI unexpected (LP: #1918427) + - [Packaging] Allow grub-efi-arm* to satisfy recommends on ARM + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enable Tegra support in arm64 for NVIDIA Jetson (LP: #1918471) + - [Config] enable ARCH_TEGRA and all Tegra SOC's + - [Packaging] include modern Tegra modules + + * Cirrus Audio Codec CS8409/CS42L42: Input Device does not switch to headset + Mic when a headset is inserted (LP: #1918378) + - SAUCE: ALSA: hda/cirrus: Fix Headset Mic volume control name + + * Cirrus Audio Codec CS8409/CS42L42 support (LP: #1916554) + - ALSA: hda/cirrus: Increase AUTO_CFG_MAX_INS from 8 to 18 + - ALSA: hda/cirrus: Add support for CS8409 HDA bridge and CS42L42 companion + codec. + - ALSA: hda/cirrus: Add jack detect interrupt support from CS42L42 companion + codec. + - ALSA: hda/cirrus: Add Headphone and Headset MIC Volume Control + + * drm/i915: Drop force_probe requirement for JSL (LP: #1917843) + - SAUCE: drm/i915: Drop require_force_probe from JSL + + * Miscellaneous Ubuntu changes + - [Packaging] Skip d-i code if udebs are disabled + - [Packaging] Disable udebs if $DEBIAN/d-i doesn't exist + - [Packaging] remove dh-systemd build dependency + - [Config] fix several annotaions with enforcement typos + - [Config] refresh annotations + - [Config] updateconfigs following v5.12-rc3 rebase + - annotations: fixup after v5.12-rc3 rebase + - Rebase to v5.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc3 + + -- Paolo Pisati Tue, 16 Mar 2021 18:43:03 +0100 + +linux-unstable (5.12.0-2.2) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - Rebase to v5.12-rc2 + - [Config] updateconfigs following v5.12-rc2 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc2 + + -- Paolo Pisati Mon, 08 Mar 2021 11:22:04 +0100 + +linux-unstable (5.12.0-1.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Support no udeb profile (LP: #1916095) + - [Packaging] replace custom filter script with dctrl-tools + - [Packaging] correctly implement noudeb build profiles. + + * Miscellaneous Ubuntu changes + - [Packaging] dkms-versions -- remove nvidia-graphics-drivers-440-server + - [Debian] run ubuntu-regression-suite for linux-unstable + - [Packaging] remove Provides: aufs-dkms + - [Config] update config and annotations following v5.12-rc1 rebase + - [Config] disable nvidia and nvidia_server builds + - [Config] temporarily disable ZFS + - temporarily disable modules check + - annotations: s390: temporarily remove CONFIG_KMSG_IDS + - [Config] amd64: FTBFS: disable HIO + - [Config] FTBFS: disable SHIFT_FS + - [Config] s390: temporarily remove CONFIG_KMSG_IDS + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable nvidia and nvidia_server builds" + - Revert "UBUNTU: SAUCE: s390: kernel message catalog" + + [ Upstream Kernel Changes ] + + * Rebase to v5.12-rc1 + + -- Paolo Pisati Thu, 04 Mar 2021 18:26:12 +0100 + +linux-unstable (5.12.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Paolo Pisati Thu, 04 Mar 2021 18:17:32 +0100 + +linux-unstable (5.11.0-10.11) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Support CML-S CPU + TGP PCH (LP: #1909457) + - drm/i915/rkl: new rkl ddc map for different PCH + - SAUCE: drm/i915/gen9_bc : Add TGP PCH support + + * Use DCPD to control HP DreamColor panel (LP: #1911001) + - SAUCE: drm/dp: Another HP DreamColor panel brigntness fix + + * Update nvidia dkms build for module linker script changes + - [Packaging] build-dkms--nvidia-N -- Update for preprocessed module linker + script + + * Please trust Canonical Livepatch Service kmod signing key (LP: #1898716) + - [Config] enable CONFIG_MODVERSIONS=y + - [Packaging] build canonical-certs.pem from branch/arch certs + - [Config] add Canonical Livepatch Service key to SYSTEM_TRUSTED_KEYS + - [Config] add ubuntu-drivers key to SYSTEM_TRUSTED_KEYS + + * Miscellaneous Ubuntu changes + - [Config] re-enable nvidia dkms + - SAUCE: selftests: memory-hotplug: bump timeout to 10min + - [Debian] update-aufs.sh -- Don't apply tmpfs-idr.patch + - [Config] Update configs + - [Config] disable nvidia and nvidia_server builds + - SAUCE: Import aufs driver + - [Config] CONFIG_AUFS_FS=n + - [Config] refresh annotations file + - [Config] set CONFIG_MIPI_I3C_HCI=m consistently + - [Config] set CONFIG_PINCTRL_MSM8953=m on armhf generic-lpae + - [Packaging] Change source package name to linux-unstable + - [Config] update LD_VERSION in config due to toolchain update + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit + ino_t" + + -- Andrea Righi Mon, 22 Feb 2021 07:18:07 +0100 + +linux-unstable (5.11.0-9.10) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Mon, 22 Feb 2021 07:02:45 +0100 + +linux (5.11.0-9.10) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update configs/annotations after rebase to 5.11 + - zfs-modules.ignore: add zzstd + + [ Upstream Kernel Changes ] + + * Rebase to v5.11 + + -- Andrea Righi Mon, 15 Feb 2021 16:29:36 +0100 + +linux (5.11.0-8.9) hirsute; urgency=medium + + * Missing device id for Intel TGL-H ISH [8086:43fc] in intel-ish-hid driver + (LP: #1914543) + - SAUCE: HID: intel-ish-hid: ipc: Add Tiger Lake H PCI device ID + + * Add support for new Realtek ethernet NIC (LP: #1914604) + - r8169: Add support for another RTL8168FP + + * Miscellaneous Ubuntu changes + - SAUCE: tmpfs: Don't use 64-bit inodes by defulat with 32-bit ino_t + - [Config] Set CONFIG_TMPFS_INODE64=n for s390x + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc7 + + -- Andrea Righi Mon, 08 Feb 2021 11:56:23 +0100 + +linux (5.11.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + * Remove scary stack trace from Realtek WiFi driver (LP: #1913263) + - rtw88: reduce the log level for failure of tx report + + * Fix unexpected AER/DPC on PCH400 and PCH500 (LP: #1913691) + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on all CML root ports" + - Revert "UBUNTU: SAUCE: PCI: Enable ACS quirk on CML root port" + - SAUCE: PCI/AER: Disable AER interrupt during suspend + - SAUCE: PCI/DPC: Disable DPC interrupt during suspend + + * switch to an autogenerated nvidia series based core via dkms-versions + (LP: #1912803) + - [Packaging] nvidia -- use dkms-versions to define versions built + - [Packaging] update-version-dkms -- maintain flags fields + + * Introduce the new NVIDIA 460-server series and update the 460 series + (LP: #1913200) + - [Config] dkms-versions -- add the 460-server nvidia driver + + * Fix the video can't output through WD19TB connected with TGL platform during + cold-boot (LP: #1910211) + - SAUCE: drm/i915/dp: Prevent setting LTTPR mode if no LTTPR is detected + + * Stop using get_scalar_status command in Dell AIO uart backlight driver + (LP: #1865402) + - SAUCE: platform/x86: dell-uart-backlight: add get_display_mode command + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Accept any valid fd in user_notification_addfd + - [Packaging] Don't disable CONFIG_DEBUG_INFO in headers packages + - [Config] update configs/annotations after rebase to 5.11-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc6 + + -- Andrea Righi Mon, 01 Feb 2021 10:27:52 +0100 + +linux (5.11.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Prevent thermal shutdown during boot process (LP: #1906168) + - thermal/drivers/acpi: Use hot and critical ops + - thermal/core: Remove notify ops + - thermal: int340x: Fix unexpected shutdown at critical temperature + - thermal: intel: pch: Fix unexpected shutdown at critical temperature + + * riscv: backport support for SiFive Unmatched (LP: #1910965) + - RISC-V: Update l2 cache DT documentation to add support for SiFive FU740 + - RISC-V: sifive_l2_cache: Update L2 cache driver to support SiFive FU740 + - dt-bindings: riscv: Update DT binding docs to support SiFive FU740 SoC + - riscv: dts: add initial support for the SiFive FU740-C000 SoC + - dt-bindings: riscv: Update YAML doc to support SiFive HiFive Unmatched board + - riscv: dts: add initial board data for the SiFive HiFive Unmatched + - PCI: microsemi: Add host driver for Microsemi PCIe controller + - Microsemi PCIe expansion board DT entry. + - SiFive Unleashed CPUFreq + - SiFive HiFive Unleashed: Add PWM LEDs (D1, D2, D3, D4) + + * initramfs unpacking failed (LP: #1835660) + - lib/decompress_unlz4.c: correctly handle zero-padding around initrds. + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to 5.11-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc5 + + -- Andrea Righi Mon, 25 Jan 2021 09:31:31 +0100 + +linux (5.11.0-5.6) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] update config and annotations after rebase to 5.11-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc4 + + -- Andrea Righi Mon, 18 Jan 2021 10:46:10 +0100 + +linux (5.11.0-4.5) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - SAUCE: x86/entry: build thunk_$(BITS) only if CONFIG_PREEMPTION=y + + -- Andrea Righi Thu, 14 Jan 2021 12:53:26 +0100 + +linux (5.11.0-3.4) hirsute; urgency=medium + + * Boot fails: failed to validate module [nls_iso8859_1] BTF: -22 + (LP: #1911359) + - bpf: Allow empty module BTFs + - libbpf: Allow loading empty BTFs + + -- Andrea Righi Thu, 14 Jan 2021 07:43:45 +0100 + +linux (5.11.0-2.3) hirsute; urgency=medium + + * DMI entry syntax fix for Pegatron / ByteSpeed C15B (LP: #1910639) + - Input: i8042 - unbreak Pegatron C15B + + * SYNA30B4:00 06CB:CE09 Mouse on HP EliteBook 850 G7 not working at all + (LP: #1908992) + - HID: multitouch: Enable multi-input for Synaptics pointstick/touchpad device + + * debian/scripts/file-downloader does not handle positive failures correctly + (LP: #1878897) + - [Packaging] file-downloader not handling positive failures correctly + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * CVE-2021-1052 // CVE-2021-1053 + - [Packaging] NVIDIA -- Add the NVIDIA 460 driver + + * Miscellaneous Ubuntu changes + - [Packaging] Remove nvidia-455 dkms build + - SAUCE: ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP + machines + - [Config] update configs and annotations after rebase to 5.11-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc3 + + -- Andrea Righi Mon, 11 Jan 2021 09:52:27 +0100 + +linux (5.11.0-1.2) hirsute; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc2 + + -- Andrea Righi Thu, 07 Jan 2021 16:57:01 +0100 + +linux (5.11.0-0.1) hirsute; urgency=medium + + * dep-8 ubuntu-regression-suite tests are not run for all linux-hwe-* kernels + (LP: #1908529) + - [dep-8] Allow all hwe kernels + + * Fix reading speed and duplex sysfs on igc device (LP: #1906851) + - igc: Report speed and duplex as unknown when device is runtime suspended + + * rtwpci driver blocks the system to enter PC10, stuck at PC3 (LP: #1907200) + - SAUCE: rtw88: 8723de: let cpu enter c10 + + * [21.04 FEAT] Deactivate CONFIG_QETH_OSN kernel config option (LP: #1906370) + - [Config] Deactivate CONFIG_QETH_OSN kernel config option + + * Add dpcd backlight control for 0x4c83 0x4f41 (LP: #1905663) + - SAUCE: drm/dp: Add dpcd backlight control for 0x4c83 0x4f41 + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: Clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF selftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - [Config] update configs and annotations after rebase to v5.11-rc1 + - hio: fix build error with kernel 5.11 + - SAUCE: shiftfs: fix build error with 5.11 + - [Config] temporarily disable ZFS + - check-aliases: do not error if modules.alias does not exist + - ppc64el: don't build stripped vdso + + * Miscellaneous upstream changes + - irq: export irq_check_status_bit + + [ Upstream Kernel Changes ] + + * Rebase to v5.11-rc1 + + -- Andrea Righi Mon, 04 Jan 2021 09:17:48 +0100 + +linux (5.11.0-0.0) hirsute; urgency=medium + + * Empty entry + + -- Andrea Righi Wed, 30 Dec 2020 09:04:41 +0100 + +linux (5.10.0-9.10) hirsute; urgency=medium + + * Use INTx for Pericom USB controllers (LP: #1906839) + - PCI: Disable MSI for Pericom PCIe-USB adapter + + * disable building bpf selftests (LP: #1908144) + - SAUCE: selftests/bpf: clarify build error if no vmlinux + - SAUCE: selftests: Skip BPF seftests by default + - disable building bpf selftests (no VMLINUX_BTF) + + * Miscellaneous Ubuntu changes + - [Config] Enable CONFIG_BPF_LSM + + * Miscellaneous upstream changes + - Revert "md: change mddev 'chunk_sectors' from int to unsigned" + - Revert "dm raid: fix discard limits for raid1 and raid10" + + -- Andrea Righi Tue, 15 Dec 2020 10:16:14 +0100 + +linux (5.10.0-8.9) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Fix bpf selftest compilation with clang 11 + - bpf: Fix selftest compilation on clang 11 + + * Miscellaneous Ubuntu changes + - [Config] update configs and annotations after rebase to v5.10 + + [ Upstream Kernel Changes ] + + * Rebase to v5.10 + + -- Andrea Righi Mon, 14 Dec 2020 08:57:57 +0100 + +linux (5.10.0-7.8) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix linux-libc-dev build for hirsute forward port kernels (LP: #1904067) + - [Debian] Build linux-libc-dev for debian.master* branches + + * Update kernel packaging to support forward porting kernels (LP: #1902957) + - [Debian] Update for leader included in BACKPORT_SUFFIX + + * Introduce the new NVIDIA 455 series (LP: #1897751) + - [Packaging] NVIDIA -- Add signed modules for the 455 driver + + * 5.10 kernel fails to boot with secure boot disabled (LP: #1904906) + - [Config] CONFIG_RCU_SCALE_TEST=n + + * Miscellaneous Ubuntu changes + - [Config] s390x: disable GPIO_CDEV + - [Config] ARM_CMN=m + - [Config] disable GPIO_CDEV_V1 + - [Config] Reorder annotations after 5.10-rc6 rebase + - [Packaging] Remove nvidia-435 dkms build + - [Packaging] Change source package name to linux + - [Config] Update configs and annotations after rebase to v5.10-rc7 + - SAUCE: Revert "mm/filemap: add static for function + __add_to_page_cache_locked" + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc7 + + -- Seth Forshee Mon, 07 Dec 2020 00:15:20 -0600 + +linux (5.10.0-6.7) hirsute; urgency=medium + + * Empty entry. + + -- Seth Forshee Sun, 06 Dec 2020 22:13:46 -0600 + +linux-5.10 (5.10.0-6.7) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Avoid double newline when running insertchanges (LP: #1903293) + - [Packaging] insertchanges: avoid double newline + + * Miscellaneous Ubuntu changes + - [Packaging]: linux-modules should depend on linux-image + - [Packaging]: linux-image should suggest linux-modules-extra + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc6 + + -- Andrea Righi Mon, 30 Nov 2020 07:47:34 +0100 + +linux-5.10 (5.10.0-5.6) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] add CONFIG_INFINIBAND_VIRT_DMA + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc5 + + -- Andrea Righi Mon, 23 Nov 2020 13:17:44 +0100 + +linux-5.10 (5.10.0-4.5) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Packaging] reduce the size required to build packages + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc4 + + -- Andrea Righi Mon, 16 Nov 2020 08:33:54 +0100 + +linux-5.10 (5.10.0-3.4) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * e1000e: fix issues with S0ix (LP: #1902687) + - SAUCE: e1000e: fix S0ix flow to allow S0i3.2 subset entry + - SAUCE: e1000e: allow turning s0ix flows on for systems with ME + - SAUCE: e1000e: Add Dell's Comet Lake systems into s0ix heuristics + - SAUCE: e1000e: Add more Dell CML systems into s0ix heuristics + - [Config] Update CONFIG_E1000E for ppc64el in annotations + + * perf: Add support for Rocket Lake (LP: #1902004) + - SAUCE: perf/x86/intel: Add Rocket Lake CPU support + - SAUCE: perf/x86/cstate: Add Rocket Lake CPU support + - SAUCE: perf/x86/msr: Add Rocket Lake CPU support + - SAUCE: perf/x86/intel/uncore: Add Rocket Lake support + + * Miscellaneous Ubuntu changes + - [Config] Disable CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE + - [Config] update CONFIG_MST_IRQ after rebase to 5.10-rc3 + - [Config] drop obsolete SND_SST_IPC options + - [Config] re-enable ZFS + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc3 + + -- Andrea Righi Mon, 09 Nov 2020 09:37:08 +0100 + +linux-5.10 (5.10.0-2.3) hirsute; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Switch arm64 default cpufreq governor to ondemand + - [Debian] Include scripts/module.lds from builddir in headers package + + -- Seth Forshee Tue, 03 Nov 2020 21:01:52 -0600 + +linux-5.10 (5.10.0-1.2) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Fix non-working Intel NVMe after S3 (LP: #1900847) + - SAUCE: PCI: Enable ACS quirk on all CML root ports + + * Miscellaneous Ubuntu changes + - [Packaging] move to hirsute + - [Config] Update configs and annotations after rebase to 5.10-rc2 + - [Config] Update numerous configs to conform with policy + - [Config] Switch default CPUFreq governer for arm64/armhf to schedultil + - [Config] Temporarily disable DEBUG_INFO_BTF for armhf + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc2 + + -- Seth Forshee Mon, 02 Nov 2020 13:18:27 -0600 + +linux-5.10 (5.10.0-0.1) hirsute; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.10-rc1 + - SAUCE: platform/x86: dell-uart-backlight: rename kzfree() to + kfree_sensitive() + - SAUCE: apparmor: rename kzfree() to kfree_sensitive() + - SAUCE: LSM: change ima_read_file() to use lsmblob + - SAUCE: LSM: Use lsmblob in smk_netlbl_mls() + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Packaging] Change source package name to linux-5.10" + - s390: correct __bootdata / __bootdata_preserved macros + + [ Upstream Kernel Changes ] + + * Rebase to v5.10-rc1 + + -- Paolo Pisati Tue, 27 Oct 2020 16:57:07 +0100 + +linux-5.10 (5.10.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Paolo Pisati Mon, 26 Oct 2020 14:55:48 +0100 + +linux-5.9 (5.9.0-2.3) groovy; urgency=medium + + * Fix system reboot when disconnecting WiFi (LP: #1899726) + - iwlwifi: msix: limit max RX queues for 9000 family + + * booting linux-generic-lpae armhf kernel under qemu results in relocation out + of range, and thus no modules can be loaded (LP: #1899519) + - [Config] armhf: ARM_MODULE_PLTS=y + + * Fix broken MSI interrupt after HDA controller was suspended (LP: #1899586) + - ALSA: hda: fix jack detection with Realtek codecs when in D3 + + * CVE-2020-16119 + - SAUCE: dccp: avoid double free of ccid on child socket + + * python3-venv is gone (LP: #1896801) + - SAUCE: doc: remove python3-venv dependency + + * *-tools-common packages descriptions have typo "PGKVER" (LP: #1898903) + - [Packaging] Fix typo in -tools template s/PGKVER/PKGVER/ + + * Enable brightness control on HP DreamColor panel (LP: #1898865) + - SAUCE: drm/i915/dpcd_bl: Skip testing control capability with force DPCD + quirk + - SAUCE: drm/dp: HP DreamColor panel brigntness fix + + * HP Zbook Studio G7 boots into corrupted screen with PSR featured panel + (LP: #1897501) + - SAUCE: drm/i915/psr: allow overriding PSR disable param by quirk + - SAUCE: drm/dp: add DP_QUIRK_FORCE_PSR_CHIP_DEFAULT quirk to CMN prod-ID + 19-15 + + * Fix broken e1000e device after S3 (LP: #1897755) + - SAUCE: e1000e: Increase polling timeout on MDIC ready bit + + * Wakeup the system by touching the touchpad (LP: #1888331) + - HID: i2c-hid: Enable wakeup capability from Suspend-to-Idle + + * Enable LTR for endpoints behind VMD (LP: #1896598) + - SAUCE: PCI/ASPM: Enable LTR for endpoints behind VMD + + * [SRU] [Focal/OEM-5.6/Groovy]Fix AMD usb host controller lost after stress S3 + (LP: #1893914) + - SAUCE: xhci: workaround for S3 issue on AMD SNPS 3.0 xHC + + * debian/rules editconfigs does not work on s390x to change s390x only configs + (LP: #1863116) + - [Packaging] kernelconfig -- only update/edit configurations on architectures + we have compiler support + + * Fix non-working NVMe after S3 (LP: #1895718) + - SAUCE: PCI: Enable ACS quirk on CML root port + + * Miscellaneous Ubuntu changes + - SAUCE: bpf: Check CONFIG_BPF option for resolve_btfids + - SAUCE: tools resolve_btfids: Always force HOSTARCH + - packaging: arm64: add a 64KB mem pages flavour called 'generic-64k' + - packaging: arm64: generic-64k: skip ABI, modules and retpoline checks + - SAUCE: drm/i915/display: Fix null deref in intel_psr_atomic_check() + - [Config] Update toolchain versions + - [Config] Refresh annotations + - Add ubuntu-host module + - CONFIG_UBUNTU_HOST=m + - SAUCE: apparmor: drop prefixing abs root labels with '=' + - SAUCE: apparmor: disable showing the mode as part of a secid to secctx + - SAUCE: apparmor: rename aa_sock() to aa_unix_sk() + - SAUCE: apparmor: LSM stacking: switch from SK_CTX() to aa_sock() + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Create and manage the lsmblob data structure. + - SAUCE: LSM: Use lsmblob in security_audit_rule_match + - SAUCE: LSM: Use lsmblob in security_kernel_act_as + - SAUCE: net: Prepare UDS for security module stacking + - SAUCE: LSM: Use lsmblob in security_secctx_to_secid + - SAUCE: LSM: Use lsmblob in security_secid_to_secctx + - SAUCE: LSM: Use lsmblob in security_ipc_getsecid + - SAUCE: LSM: Use lsmblob in security_task_getsecid + - SAUCE: LSM: Use lsmblob in security_inode_getsecid + - SAUCE: LSM: Use lsmblob in security_cred_getsecid + - SAUCE: IMA: Change internal interfaces to use lsmblobs + - SAUCE: LSM: Specify which LSM to display + - SAUCE: LSM: Ensure the correct LSM context releaser + - SAUCE: LSM: Use lsmcontext in security_secid_to_secctx + - SAUCE: LSM: Use lsmcontext in security_inode_getsecctx + - SAUCE: LSM: security_secid_to_secctx in netlink netfilter + - SAUCE: NET: Store LSM netlabel data in a lsmblob + - SAUCE: LSM: Verify LSM display sanity in binder + - SAUCE: Audit: Add new record for multiple process LSM attributes + - SAUCE: Audit: Add a new record for multiple object LSM + - SAUCE: LSM: Add /proc attr entry for full LSM context + - SAUCE: AppArmor: Remove the exclusive flag + - SAUCE: Audit: Fix for missing NULL check + + * Miscellaneous upstream changes + - tty: hvcs: Don't NULL tty->driver_data until hvcs_cleanup() + + [ Upstream Kernel Changes ] + + * Rebase to v5.9 + + -- Seth Forshee Wed, 14 Oct 2020 13:31:18 -0500 + +linux-5.9 (5.9.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs after rebase to 5.9-rc6 + - SAUCE: dax: Fix compilation for CONFIG_DAX && !CONFIG_FS_DAX + - SAUCE: bpf: Use --no-fail option if CONFIG_BPF is not enabled + - SAUCE: tools resolve_btfids: Always force HOSTARCH + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc6 + + -- Seth Forshee Mon, 21 Sep 2020 14:39:34 -0500 + +linux-5.9 (5.9.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Update configs and annotations for v5.9-rc1 + - SAUCE: i915: Fix build error due to missing struct definition + - hio -- Update blk_queue_split() calls for changes in 5.9-rc1 + - hio -- Updates for move of make_request_fn to struct block_device_operations + - [Config] Disable zfs dkms build + - [Config] Disable nvidia dkms build + - [Config] Disable nvidia server dkms builds + - SAUCE: remoteproc: qcom: Use div_u64() for 64-bit division + - SAUCE: PCI/ASPM: Enable ASPM for links under VMD domain + - [Packaging] Bind hv_vss_daemon startup to hv_vss device + - [Packaging] bind hv_fcopy_daemon startup to hv_fcopy device + - [Config] Re-enable UEFI signing for arm64 + - SAUCE: Revert "UBUNTU: SAUCE: export __get_vm_area_caller() and map_kernel_range()" + - [Config] Set the default CPU governor to ONDEMAND + - [Packaging] update variants + - [Packaging] update helper scripts + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.9-rc5 + + -- Seth Forshee Thu, 17 Sep 2020 15:01:21 -0500 + +linux-5.9 (5.9.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Tue, 18 Aug 2020 16:48:03 -0500 + +linux (5.8.0-16.17) groovy; urgency=medium + + * groovy/linux: 5.8.0-16.17 -proposed tracker (LP: #1891233) + + * Miscellaneous Ubuntu changes + - hio -- Update to use bio_{start,end}_io_acct with 5.8+ + - Enable hio driver + - [Packaging] Temporarily disable building doc package contents + + -- Seth Forshee Tue, 11 Aug 2020 15:32:58 -0500 + +linux (5.8.0-15.16) groovy; urgency=medium + + * groovy/linux: 5.8.0-15.16 -proposed tracker (LP: #1891177) + + * Miscellaneous Ubuntu changes + - SAUCE: Documentation: import error c_funcptr_sig_re, c_sig_re (sphinx- + doc/sphinx@0f49e30c) + + -- Seth Forshee Tue, 11 Aug 2020 09:29:58 -0500 + +linux (5.8.0-14.15) groovy; urgency=medium + + * groovy/linux: 5.8.0-14.15 -proposed tracker (LP: #1891085) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * msg_zerocopy.sh in net from ubuntu_kernel_selftests failed (LP: #1812620) + - selftests/net: relax cpu affinity requirement in msg_zerocopy test + + * Fix missing HDMI/DP Audio on an HP Desktop (LP: #1890441) + - ALSA: hda/hdmi: Add quirk to force connectivity + + * Add initial audio support for Lenovo ThinkStation P620 (LP: #1890317) + - ALSA: usb-audio: Add support for Lenovo ThinkStation P620 + + * Fix IOMMU error on AMD Radeon Pro W5700 (LP: #1890306) + - PCI: Mark AMD Navi10 GPU rev 0x00 ATS as broken + + * Enlarge hisi_sec2 capability (LP: #1890222) + - crypto: hisilicon - update SEC driver module parameter + + * Miscellaneous Ubuntu changes + - [Config] Re-enable signing for ppc64el + + -- Seth Forshee Mon, 10 Aug 2020 15:26:46 -0500 + +linux (5.8.0-13.14) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] Remove i386 configs + - SAUCE: apply a workaround to re-enable CONFIG_CRYPTO_AEGIS128_SIMD + - SAUCE: export __get_vm_area_caller() and map_kernel_range() + - [Config] drop CONFIG_BINFMT_AOUT enforcement + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD" + + [ Upstream Kernel Changes ] + + * Rebase to v5.8 + + -- Andrea Righi Tue, 04 Aug 2020 09:51:50 +0200 + +linux (5.8.0-12.13) groovy; urgency=medium + + * groovy/linux: 5.8.0-12.13 -proposed tracker (LP: #1889481) + + * Fix right speaker of HP laptop (LP: #1889375) + - SAUCE: hda/realtek: Fix right speaker of HP laptop + + * blk_update_request error when mount nvme partition (LP: #1872383) + - SAUCE: nvme-pci: prevent SK hynix PC400 from using Write Zeroes command + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - Revert "UBUNTU: SAUCE: net: atlantic: Add support for firmware v4" + - net: atlantic: align return value of ver_match function with function name + - net: atlantic: add support for FW 4.x + + * Miscellaneous Ubuntu changes + - [Debian] Fix debian/tests for linux-5.8 -> linux rename + - SAUCE: selftests/powerpc: return skip code for spectre_v2 + + -- Seth Forshee Wed, 29 Jul 2020 16:58:47 -0500 + +linux (5.8.0-11.12) groovy; urgency=medium + + * groovy/linux: 5.8.0-11.12 -proposed tracker (LP: #1889336) + + * Miscellaneous Ubuntu changes + - [Packaging] dwarves is not required for linux-libc-dev or stage1 + + -- Seth Forshee Tue, 28 Jul 2020 22:33:24 -0500 + +linux (5.8.0-10.11) groovy; urgency=medium + + * groovy/linux: 5.8.0-10.11 -proposed tracker (LP: #1889316) + + * Miscellaneous Ubuntu changes + - [Packaging] Add more packages to Build-Depends-Indep for docs + - [Debian] Specify python executable in kmake + - [Debian] Don't treat warnings as errors during perf builds + - [Config] Disable signing for ppc64el + + -- Seth Forshee Tue, 28 Jul 2020 17:09:52 -0500 + +linux (5.8.0-9.10) groovy; urgency=medium + + * groovy/linux: 5.8.0-9.10 -proposed tracker (LP: #1889140) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: Fix s390x compile error on F32 utils/stat-display.c + - [Packaging] Add python3-venv to Build-Depends-Indep + + -- Seth Forshee Mon, 27 Jul 2020 21:01:46 -0500 + +linux (5.8.0-8.9) groovy; urgency=medium + + * groovy/linux: 5.8.0-8.9 -proposed tracker (LP: #1889104) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update variants + + * Introduce the new NVIDIA 450-server and the 450 UDA series (LP: #1887674) + - [Packaging] NVIDIA -- Add signed modules for 450 450-server + + * Introduce the new NVIDIA 418-server and 440-server series, and update the + current NVIDIA drivers (LP: #1881137) + - [packaging] add signed modules for the 418-server and the 440-server + flavours + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "radix-tree: Use local_lock for protection" + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=n + - [Config] disable CONFIG_CRYPTO_AEGIS128_SIMD + - [Config] Enable nvidia dkms build + + * Miscellaneous upstream changes + - usbip: tools: fix build error for multiple definition + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc7 + + -- Seth Forshee Mon, 27 Jul 2020 11:18:12 -0500 + +linux (5.8.0-7.8) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Mon, 27 Jul 2020 09:22:19 +0200 + +linux-5.8 (5.8.0-7.8) groovy; urgency=medium + + * soc/amd/renoir: detect dmic from acpi table (LP: #1887734) + - ASoC: amd: add logic to check dmic hardware runtime + - ASoC: amd: add ACPI dependency check + - ASoC: amd: fixed kernel warnings + + * linux 4.15.0-109-generic network DoS regression vs -108 (LP: #1886668) + - SAUCE: Revert "netprio_cgroup: Fix unlimited memory leak of v2 cgroups" + + * Add support for Atlantic NIC firmware v4 (LP: #1886908) + - SAUCE: net: atlantic: Add support for firmware v4 + + * MGA G200e doesn't work under GDM Wayland (LP: #1886140) + - drm/mgag200: Remove HW cursor + - drm/mgag200: Clean up mga_set_start_address() + - drm/mgag200: Clean up mga_crtc_do_set_base() + - drm/mgag200: Move mode-setting code into separate helper function + - drm/mgag200: Split MISC register update into PLL selection, SYNC and I/O + - drm/mgag200: Update mode registers after plane registers + - drm/mgag200: Set pitch in a separate helper function + - drm/mgag200: Set primary plane's format in separate helper function + - drm/mgag200: Move TAGFIFO reset into separate function + - drm/mgag200: Move hiprilvl setting into separate functions + - drm/mgag200: Move register initialization into separate function + - drm/mgag200: Remove out-commented suspend/resume helpers + - drm/mgag200: Use simple-display data structures + - drm/mgag200: Convert to simple KMS helper + - drm/mgag200: Replace VRAM helpers with SHMEM helpers + + * Miscellaneous Ubuntu changes + - SAUCE: s390/bpf: fix sign extension in branch_ku + - SAUCE: selftests: net: ip_defrag: modprobe missing nf_defrag_ipv6 support + - SAUCE: selftests: fib_nexthop_multiprefix: fix cleanup() netns deletion + - [packaging] debhelper-compat (= 10) (and retire debian/compat) + - [Config] Update configs after rebase to 5.8-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc6 + + -- Andrea Righi Mon, 20 Jul 2020 09:55:47 +0200 + +linux-5.8 (5.8.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * perf build broken after updating to bintuils 2.34.90.20200706-1ubuntu1 + (LP: #1887397) + - SAUCE: libtraceevent: Strip symbol version from nm output + + -- Seth Forshee Mon, 13 Jul 2020 14:07:53 -0500 + +linux-5.8 (5.8.0-5.6) groovy; urgency=medium + + * linux-libc-dev broken for crossbuilding, Multi-Arch:same violation + (LP: #1886188) + - [Packaging] Produce linux-libc-deb package for riscv64 + - [Debian] Disallow building linux-libc-dev from linux-riscv + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: test_bpf: remove expected fail for Ctx heavy + transformations test on s390" + - SAUCE: Revert "test_bpf: flag tests that cannot be jited on s390" + - [Config] Update configs (gcc update) + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc5 + + -- Andrea Righi Mon, 13 Jul 2020 08:42:14 +0200 + +linux-5.8 (5.8.0-4.5) groovy; urgency=medium + + * Add generic LED class support for audio LED (LP: #1885896) + - ALSA: hda: generic: Always call led-trigger for mic mute LED + - ALSA: hda: generic: Add a helper for mic-mute LED with LED classdev + - ALSA: hda/realtek: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/conexant: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda/sigmatel: Convert to cdev-variant of mic-mute LED controls + - ALSA: hda: generic: Drop unused snd_hda_gen_fixup_micmute_led() + - ALSA: hda: generic: Drop the old mic-mute LED hook + - ALSA: hda: generic: Add vmaster mute LED helper + - ALSA: hda/realtek: Use the new vmaster mute LED helper + - ALSA: hda/conexant: Use the new vmaster mute LED helper + - ALSA: hda/sigmatel: Use the new vmaster mute LED helper + - ALSA: hda/realtek: Unify LED helper code + - ALSA: hda: Let LED cdev handling suspend/resume + + * seccomp_bpf fails on powerpc (LP: #1885757) + - SAUCE: selftests/seccomp: fix ptrace tests on powerpc + + * CVE-2020-11935 + - SAUCE: aufs: do not call i_readcount_inc() + + * Miscellaneous Ubuntu changes + - SAUCE: Update aufs to 5.x-rcN 20200622 + - [Config] Update configs to set CONFIG_SND_HDA_GENERIC_LEDS value + - [Config] CONFIG_SECURITY_DMESG_RESTRICT=y + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc4 + + -- Seth Forshee Mon, 06 Jul 2020 08:14:28 -0500 + +linux-5.8 (5.8.0-3.4) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * lxc 1:4.0.2-0ubuntu1 ADT test failure with linux-5.8 5.8.0-1.2 + (LP: #1884635) + - SAUCE: overlayfs: fix faulty rebase + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: prevent ESTALE for LOOKUP_JUMP lookups + + * shiftfs: fix btrfs regression (LP: #1884767) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: fix dentry revalidation" + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_DEBUG_INFO_COMPRESSED=y + - SAUCE: regulator: rename da903x to da903x-regulator + - [Config] Add da903x to modules.ignore + - [Config] Update configs for rebase to 5.8-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc3 + + -- Seth Forshee Mon, 29 Jun 2020 08:48:25 -0500 + +linux-5.8 (5.8.0-2.3) groovy; urgency=medium + + * Support Audio Mute LED for two new HP laptops (LP: #1884251) + - ALSA: hda/realtek: Add mute LED and micmute LED support for HP systems + + * CVE-2019-16089 + - SAUCE: nbd_genl_status: null check for nla_nest_start + + * tpm: fix TIS locality timeout problems (LP: #1881710) + - SAUCE: tpm: fix TIS locality timeout problems + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Miscellaneous Ubuntu changes + - SAUCE: security,perf: Allow further restriction of perf_event_open + - [Config] CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y + - [Config] Update configs and annotations for 5.8-rc2 + - [Config] Enable zfs + - [Config] Enable CONFIG_DEBUG_INFO_BTF + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc2 + + -- Seth Forshee Mon, 22 Jun 2020 15:05:54 -0500 + +linux-5.8 (5.8.0-1.2) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Debian] Support linux-x.y in udeb package names + - [Packaging] Use SRCPKGNAME for udeb packages + + -- Seth Forshee Wed, 17 Jun 2020 19:34:32 -0500 + +linux-5.8 (5.8.0-0.1) groovy; urgency=medium + + * Docker registry doesn't stay up and keeps restarting (LP: #1879690) + - Revert "UBUNTU: SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay" + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Update source package name to linux-5.8 + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + - SAUCE: Import aufs driver + - [Config] Update configs for v5.8-rc1 + - [Config] Update annotations for v5.8-rc1 config changes + - SAUCE: shiftfs -- Fix build errors from missing fiemap definitions + - Disable hio driver + + * Miscellaneous upstream changes + - acpi: disallow loading configfs acpi tables when locked down + + [ Upstream Kernel Changes ] + + * Rebase to v5.8-rc1 + + -- Seth Forshee Wed, 17 Jun 2020 11:54:24 -0500 + +linux-5.8 (5.8.0-0.0) groovy; urgency=medium + + * Empty entry + + -- Seth Forshee Sun, 14 Jun 2020 22:40:35 -0500 + +linux-5.7 (5.7.0-8.9) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Enforce all config annotations (LP: #1879327) + - [Config]: do not enforce CONFIG_VERSION_SIGNATURE + - [Config]: prepare to enforce all + - [Config]: enforce all config options + + * Miscellaneous Ubuntu changes + - [Config]: annotations review after 5.7 rebase + - [Config] annotations: IXP4XX* depends on ARCH_IXP4XX + - [Config] THERMAL_GOV_POWER_ALLOCATOR=y + - [Config] annotations: SOC_CAMERA is marked as BROKEN + - [Config] annotations: NFSD_V4_2_INTER_SSC depends on NFS_FS=y + - [Config] annotations: CRYPTO_DEV_CHELSIO_TLS depends on legacy (and largely + unmantained) TLS_TOE + - [Config] annotations: SERIO_OLPC_APSP depends on ARCH_MMP + - [Config] RTW88_DEBUG=y + - [Config] annotations: ISDN_CAPI is a bool, and BT_CMTP depends on it + - [Config] annotations SND_SOC_SOF_DEVELOPER_SUPPORT depends on + SND_SOC_SOF_DEVELOPER_SUPPORT + - [Config] annotations: SND_SOC_SOF_BAYTRAIL_SUPPORT is mutually exclusive + with SND_SST_ATOM_HIFI2_PLATFORM_ACPI + - [Config] annotations: DEBUG_IMX_UART_PORT is defined only any + DEBUG_IMX*_UART is enabled + - [Config] annotations: HW_RANDOM_IMX_RNGC depends on SOC_IMX25 + - [Config] annotations: armhf: VIRTUALIZATION support was removed for arm32 + - [Config] annotations: arm64: remove DEBUG_ALIGN_RODATA + - [Config] annotations: ppc64: DATA_SHIFT defaults to PPC_PAGE_SHIFT + - [Config] arm64: enforce ARM64_USE_LSE_ATOMICS + - [Config] s390x: MOST is not set + - [Config] s390x: BCM84881_PHY is not set + - [Config] s390x: XILINX_LL_TEMAC is not set + - [Config] s390x: PHY_INTEL_EMMC requires GENERIC_PHY (off by default on + s390x) + - [Config] s390x: CHECK_STACK conflicts with VMAP_STACK + - [Config] annotations: s390x: NODES_SHIFT=1 + - [Config] annotations: import new symbols + - [Config] annotations: remove unmatched menu and options + + -- Paolo Pisati Fri, 12 Jun 2020 12:03:01 +0200 + +linux-5.7 (5.7.0-7.8) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + - [Packaging] update helper scripts + + * [UBUNTU 20.04] s390x/pci: fix linking between PF and VF for multifunction + devices (LP: #1879704) + - PCI/IOV: Introduce pci_iov_sysfs_link() function + - s390/pci: create links between PFs and VFs + + * Miscellaneous Ubuntu changes + - [Config] Disable UEFI signing for arm64 + - Rebase to v5.7.1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7.1 + + -- Paolo Pisati Mon, 08 Jun 2020 11:16:58 +0200 + +linux-5.7 (5.7.0-6.7) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + + * shiftfs: fix btrfs snapshot deletion (LP: #1879688) + - SAUCE: shiftfs: let userns root destroy subvolumes from other users + + * seccomp_benchmark times out on eoan (LP: #1881576) + - SAUCE: selftests/seccomp: use 90s as timeout + + * Realtek 8723DE [10ec:d723] subsystem [10ec:d738] disconnects unsolicitedly + when Bluetooth is paired: Reason: 23=IEEE8021X_FAILED (LP: #1878147) + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: Move driver IQK to set channel before + association for 11N chip" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: fix rate for a while after being + connected" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: No retry and report for auth and assoc" + - SAUCE: Revert "UBUNTU: SAUCE: rtw88: 8723d: Add coex support" + - rtw88: 8723d: Add coex support + - SAUCE: rtw88: coex: 8723d: set antanna control owner + - SAUCE: rtw88: coex: 8723d: handle BT inquiry cases + - SAUCE: rtw88: fix EAPOL 4-way failure by finish IQK earlier + + * ASoC/amd: add audio driver for amd renoir (LP: #1881046) + - ASoC: amd: add Renoir ACP3x IP register header + - ASoC: amd: add Renoir ACP PCI driver + - ASoC: amd: add acp init/de-init functions + - ASoC: amd: create acp3x pdm platform device + - ASoC: amd: add ACP3x PDM platform driver + - ASoC: amd: irq handler changes for ACP3x PDM dma driver + - ASoC: amd: add acp3x pdm driver dma ops + - ASoC: amd: add ACP PDM DMA driver dai ops + - ASoC: amd: add Renoir ACP PCI driver PM ops + - ASoC: amd: add ACP PDM DMA driver pm ops + - ASoC: amd: enable Renoir acp3x drivers build + - ASoC: amd: create platform devices for Renoir + - ASoC: amd: RN machine driver using dmic + - ASoC: amd: enable build for RN machine driver + - ASoC: amd: fix kernel warning + - ASoC: amd: refactoring dai_hw_params() callback + - ASoC: amd: return error when acp de-init fails + - [Config]: enable amd renoir ASoC audio + + * Slow send speed with Intel I219-V on Ubuntu 18.04.1 (LP: #1802691) + - e1000e: Disable TSO for buffer overrun workaround + + * Fix incorrect speed/duplex when I210 device is runtime suspended + (LP: #1880656) + - igb: Report speed and duplex as unknown when device is runtime suspended + + * Fix Pericom USB controller OHCI/EHCI PME# defect (LP: #1879321) + - serial: 8250_pci: Move Pericom IDs to pci_ids.h + - PCI: Avoid Pericom USB controller OHCI/EHCI PME# defect + + * [UBUNTU 20.04] s390x/pci: enumerate pci functions per physical adapter + (LP: #1874056) + - s390/pci: Expose new port attribute for PCIe functions + - s390/pci: adaptation of iommu to multifunction + - s390/pci: define kernel parameters for PCI multifunction + - s390/pci: define RID and RID available + - s390/pci: create zPCI bus + - s390/pci: adapt events for zbus + - s390/pci: Handling multifunctions + - s390/pci: Do not disable PF when VFs exist + - s390/pci: Documentation for zPCI + - s390/pci: removes wrong PCI multifunction assignment + + * add 16-bit width registers support for EEPROM at24 device (LP: #1876699) + - regmap-i2c: add 16-bit width registers support + + * Miscellaneous Ubuntu changes + - [Config] Enable virtualbox guest and shared-folder modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.7 + + -- Seth Forshee Mon, 01 Jun 2020 16:11:24 -0500 + +linux-5.7 (5.7.0-5.6) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * [UBUNTU 20.04] PSI generates overhead on s390x (LP: #1876044) + - Ubuntu: [Config] CONFIG_PSI is enabled by default, but creates additional + overhead on s390x, hence should be disabled by default on s390x only. + + * Miscellaneous Ubuntu changes + - Rebase to v5.7-rc7 + - [Config] ppc64el: disable STRICT_KERNEL_RWX + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc7 + + -- Paolo Pisati Mon, 25 May 2020 11:44:09 +0200 + +linux-5.7 (5.7.0-4.5) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * update-initramfs complains of missing amdgpu firmware files (LP: #1873325) + - SAUCE: drm/amdgpu: Remove unreleased arcturus and navi12 firmware from + modinfo + + * Support DMIC micmute LED on HP platforms (LP: #1876859) + - ALSA: hda/realtek - Introduce polarity for micmute LED GPIO + - ALSA: hda/realtek - Enable micmute LED on and HP system + - ALSA: hda/realtek - Add LED class support for micmute LED + - ALSA: hda/realtek - Fix unused variable warning w/o + CONFIG_LEDS_TRIGGER_AUDIO + - ASoC: SOF: Update correct LED status at the first time usage of + update_mute_led() + + * Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW), + REV=0x354 [8086:a0f0] subsystem id [1a56:1651] wireless adapter not found + due to firmware crash (LP: #1874685) + - SAUCE: iwlwifi: pcie: handle QuZ configs with killer NICs as well + + * rtkit-daemon[*]: Failed to make ourselves RT: Operation not permitted after + upgrade to 20.04 (LP: #1875665) + - [Config] Turn off CONFIG_RT_GROUP_SCHED everywhere + + * Unable to handle kernel pointer dereference in virtual kernel address space + on Eoan (LP: #1876645) + - SAUCE: overlayfs: fix shitfs special-casing + + * Miscellaneous Ubuntu changes + - SAUCE: skip building selftest 'runqslower' if kernel not built + - Rebase to v5.7-rc6 + - [Config] updateconfigs after 5.7-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc6 + + -- Paolo Pisati Mon, 18 May 2020 11:27:25 +0200 + +linux-5.7 (5.7.0-3.4) groovy; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc5 + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * getitimer returns it_value=0 erroneously (LP: #1349028) + - [Config] CONTEXT_TRACKING_FORCE policy should be unset + + * lockdown on power (LP: #1855668) // Ubuntu Kernel Support for OpenPOWER NV + Secure & Trusted Boot (LP: #1866909) + - [Config] Enable configs for OpenPOWER NV Secure & Trusted Boot + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] annotations: remove SND_SOC_SOF_HDA_COMMON_HDMI_CODEC + - [Config] Remove CONFIG_SND_HDA_INTEL_DETECT_DMIC from annotations + - [Debian] final-checks -- Do not remove ~* from abi + - [Config] Enable 5-level page table support for x86 + - [Config] updateconfigs after 5.7-rc5 rebase + + -- Paolo Pisati Mon, 11 May 2020 10:25:42 +0200 + +linux-5.7 (5.7.0-2.3) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - update dkms package versions + - [Packaging] update helper scripts + + * ASUS T100HAN boots to a blank screen with a cursor [i965: Failed to submit + batchbuffer: Input/output error] (LP: #1860754) + - [Config] CONFIG_PMIC_OPREGION=y and CONFIG_GPIO_CRYSTAL_COVE=y for amd64 + + * ubuntu/focal64 fails to mount Vagrant shared folders (LP: #1873506) + - [Packaging] Move virtualbox modules to linux-modules + - [Packaging] Remove vbox and zfs modules from generic.inclusion-list + + * built-using constraints preventing uploads (LP: #1875601) + - temporarily drop Built-Using data + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] autoreconstruct -- manage executable debian files + - [packaging] handle downloads from the librarian better + + * Add signed modules for the 435 NVIDIA driver (LP: #1875888) + - [Packaging] NVIDIA -- add signed modules for the 435 NVIDIA driver + + * [Selftests] Apply various fixes and improvements (LP: #1870543) + - SAUCE: selftests/seccomp -- Disable timeout for seccomp tests + + * [17.04 FEAT] Integrate kernel message catalogue for s390x into Ubuntu + distribution (LP: #1628889) + - SAUCE: s390: kernel message catalog + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * [ICL] TC port in legacy/static mode can't be detected due TCCOLD + (LP: #1868936) + - drm/i915/display: Move out code to return the digital_port of the aux ch + - drm/i915/display: Add intel_legacy_aux_to_power_domain() + - drm/i915/display: Split hsw_power_well_enable() into two + - drm/i915/tc/icl: Implement TC cold sequences + - drm/i915/tc: Skip ref held check for TC legacy aux power wells + - drm/i915/tc/tgl: Implement TC cold sequences + - drm/i915/tc: Catch TC users accessing FIA registers without enable aux + - drm/i915/tc: Do not warn when aux power well of static TC ports timeout + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + + * 'Elan touchpad' not detected on 'Lenovo ThinkBook 15 IIL' (LP: #1861610) + - SAUCE: Input: elan_i2c - add more hardware ID for Lenovo laptop + + * linux-image-5.0.0-35-generic breaks checkpointing of container + (LP: #1857257) + - SAUCE: overlayfs: use shiftfs hacks only with shiftfs as underlay + + * alsa/sof: kernel oops on the machine without Intel hdmi audio codec (a + regression in the asoc machine driver) (LP: #1874359) + - ASoC: intel/skl/hda - fix oops on systems without i915 audio codec + + * Add debian/rules targets to compile/run kernel selftests (LP: #1874286) + - [Packaging] add support to compile/run selftests + + * 5.4.0-24.28 does not seem to apply rtprio, whereas -21 does. (LP: #1873315) + - [Config] lowlatency: turn off RT_GROUP_SCHED + + * alsa/sof: external mic can't be deteced on Lenovo and HP laptops + (LP: #1872569) + - SAUCE: ASoC: intel/skl/hda - set autosuspend timeout for hda codecs + + * shiftfs: O_TMPFILE reports ESTALE (LP: #1872757) + - SAUCE: shiftfs: fix dentry revalidation + + * shiftfs: broken shiftfs nesting (LP: #1872094) + - SAUCE: shiftfs: record correct creator credentials + + * lockdown on power (LP: #1855668) + - SAUCE: (lockdown) powerpc: lock down kernel in secure boot mode + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + + * Fix authentication fail on Realtek WiFi 8723de (LP: #1871300) + - SAUCE: rtw88: No retry and report for auth and assoc + - SAUCE: rtw88: fix rate for a while after being connected + - SAUCE: rtw88: Move driver IQK to set channel before association for 11N chip + + * Miscellaneous Ubuntu changes + - SAUCE: rtw88: fix 'const' mismatch in power suequence hooks + - SAUCE: rtw88: fix 'const' mismatch in + __priority_queue_cfg_legacy()/__priority_queue_cfg() + - [Config] RTW88=m + - SAUCE: (lockdown) Revert carried-forward lockdown patches + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] Add back CONFIG_LOCK_DOWN_IN_SECURE_BOOT annotation for ppc64el + - [Config] CONFIG_RT_GROUP_SCHED=y + - [Packaging] Include modules.builtin.modinfo in linux-modules + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - Update dropped.txt for restored apparmor patches + - Remove lockdown patches from dropped.txt + - SAUCE: powerpc/ima: require IMA module signatures only if MODULE_SIG is not + enabled + - SAUCE: selftests/ftrace: Use printf instead of echo in kprobe syntax error + tests + - SAUCE: selftests/net -- disable l2tp.sh test + - SAUCE: selftests/net -- disable timeout + - SAUCE: tools: hv: Update shebang to use python3 instead of python + - Remove dropped.txt + - [Packaging] move linux-doc and linux-libc-dev stubs to debian.master + - [Debian] Support generating configs for riscv64 + - [Config] CONFIG_KMSG_IDS=y for s390x + - [Packaging] add libcap-dev dependency + - [Config] CONFIG_AD5770R=m + - [Config] CONFIG_AL3010=m + - [Config] CONFIG_APPLE_MFI_FASTCHARGE=m + - [Config] CONFIG_BAREUDP=m + - [Config] CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m + - [Config] CONFIG_CRYPTO_DEV_ZYNQMP_AES=m + - [Config] CONFIG_DRM_DISPLAY_CONNECTOR=m + - [Config] CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m + - [Config] CONFIG_DRM_PANEL_ELIDA_KD35T133=m + - [Config] CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m + - [Config] CONFIG_DRM_PANEL_NOVATEK_NT35510=m + - [Config] CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m + - [Config] CONFIG_DRM_PARADE_PS8640=m + - [Config] CONFIG_DRM_SIMPLE_BRIDGE=m + - [Config] CONFIG_DRM_TIDSS=m + - [Config] CONFIG_DRM_TI_TPD12S015=m + - [Config] CONFIG_DRM_TOSHIBA_TC358768=m + - [Config] CONFIG_EDAC_DMC520=m + - [Config] CONFIG_EXFAT_FS=m + - [Config] CONFIG_GP2AP002=m + - [Config] CONFIG_GPIO_MLXBF2=m + - [Config] CONFIG_HID_GLORIOUS=m + - [Config] CONFIG_HID_MCP2221=m + - [Config] CONFIG_HMC425=m + - [Config] CONFIG_ICP10100=m + - [Config] CONFIG_IMX8MM_THERMAL=m + - [Config] CONFIG_IMX_SC_THERMAL=m + - [Config] CONFIG_INTERCONNECT_QCOM_OSM_L3=m + - [Config] CONFIG_INTERCONNECT_QCOM_SC7180=m + - [Config] CONFIG_K3_RTI_WATCHDOG=m + - [Config] CONFIG_MDIO_IPQ8064=m + - [Config] CONFIG_MDIO_MVUSB=m + - [Config] CONFIG_MHI_BUS=m + - [Config] CONFIG_OCTEONTX2_VF=m + - [Config] CONFIG_PHY_CADENCE_TORRENT=m + - [Config] CONFIG_PHY_QCOM_USB_HS_28NM=m + - [Config] CONFIG_PHY_QCOM_USB_SS=m + - [Config] CONFIG_PINCTRL_DA9062=m + - [Config] CONFIG_PINCTRL_IPQ6018=m + - [Config] CONFIG_PTP_1588_CLOCK_IDT82P33=m + - [Config] CONFIG_PTP_1588_CLOCK_VMW=m + - [Config] CONFIG_QCOM_IPA=m + - [Config] CONFIG_REGULATOR_MP5416=m + - [Config] CONFIG_REGULATOR_MP886X=m + - [Config] CONFIG_RN5T618_ADC=m + - [Config] CONFIG_RTC_DRV_MT2712=m + - [Config] CONFIG_RTC_DRV_RC5T619=m + - [Config] CONFIG_SC_MSS_7180=m + - [Config] CONFIG_SENSORS_AXI_FAN_CONTROL=m + - [Config] CONFIG_SM_GCC_8250=m + - [Config] CONFIG_SND_BCM63XX_I2S_WHISTLER=m + - [Config] CONFIG_SND_MESON_AIU=m + - [Config] CONFIG_SND_MESON_G12A_TOACODEC=m + - [Config] CONFIG_SND_MESON_GX_SOUND_CARD=m + - [Config] CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m + - [Config] CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m + - [Config] CONFIG_SND_SOC_MESON_T9015=m + - [Config] CONFIG_SND_SOC_RT5682_SDW=m + - [Config] CONFIG_SND_SOC_TLV320ADCX140=m + - [Config] CONFIG_SPI_FSI=m + - [Config] CONFIG_SPI_MTK_NOR=m + - [Config] CONFIG_SPI_MUX=m + - [Config] CONFIG_SPRD_THERMAL=m + - [Config] CONFIG_SURFACE_3_POWER_OPREGION=m + - [Config] CONFIG_TINYDRM_ILI9486=m + - [Config] CONFIG_TI_K3_AM65_CPSW_NUSS=m + - [Config] CONFIG_TYPEC_MUX_INTEL_PMC=m + - [Config] CONFIG_UACCE=m + - [Config] CONFIG_UNIPHIER_XDMAC=m + - [Config] CONFIG_USB_MAX3420_UDC=m + - [Config] CONFIG_USB_RAW_GADGET=m + - [Config] CONFIG_VHOST_VDPA=m + - [Config] CONFIG_VIDEO_IMX219=m + - [Config] CONFIG_VIDEO_SUN8I_ROTATE=m + - [Config] CONFIG_VIRTIO_VDPA=m + - [Config] CONFIG_MOST_COMPONENTS=m + - [Config] CONFIG_MFD_IQS62X=m + - packaging: getabis: switch to ckt-ppa:bootstrap/linux-5.7 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask" + - Revert "UBUNTU: SAUCE: drm/i915/fbc: disable framebuffer compression on + IceLake" + - Revert "UBUNTU: SAUCE: platform/x86: dell-uart-backlight: move retry block" + + -- Paolo Pisati Mon, 04 May 2020 10:48:48 +0200 + +linux-5.7 (5.7.0-1.2) groovy; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - SAUCE: hio: pass make_request ptr directly to blk_alloc_queue() + - SAUCE: hio: locally define disk_map_sector_rcu() + - SAUCE: hio: Revert "block: unexport disk_map_sector_rcu" + - SAUCE: hio: include + - [Config] amd64: i386: HIO=m + - [Config] updateconfigs after 5.7-rc3 rebase + + -- Paolo Pisati Mon, 27 Apr 2020 11:31:38 +0200 + +linux-5.7 (5.7.0-0.1) groovy; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.7-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.7-rc1 + * Rebase to v5.7-rc2 + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.7 (5.7.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Paolo Pisati Thu, 16 Apr 2020 11:53:58 +0200 + +linux-5.6 (5.6.0-7.7) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - update dkms package versions + + * Kernel Oops - general protection fault: 0000 [#1] SMP PTI after + disconnecting thunderbolt docking station (LP: #1864754) + - SAUCE: ptp: free ptp clock properly + + * swap storms kills interactive use (LP: #1861359) + - SAUCE: mm/page_alloc.c: disable memory reclaim watermark boosting by default + + * sysfs: incorrect network device permissions on network namespace change + (LP: #1865359) + - sysfs: add sysfs_file_change_owner() + - sysfs: add sysfs_link_change_owner() + - sysfs: add sysfs_group{s}_change_owner() + - sysfs: add sysfs_change_owner() + - device: add device_change_owner() + - drivers/base/power: add dpm_sysfs_change_owner() + - net-sysfs: add netdev_change_owner() + - net-sysfs: add queue_change_owner() + - net: fix sysfs permssions when device changes network namespace + - sysfs: fix static inline declaration of sysfs_groups_change_owner() + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6 + + -- Andrea Righi Tue, 31 Mar 2020 10:45:09 +0200 + +linux-5.6 (5.6.0-6.6) focal; urgency=medium + + * suspend only works once on ThinkPad X1 Carbon gen 7 (LP: #1865570) + - SAUCE: e1000e: Disable s0ix flow for X1 Carbon 7th + + * Make Dell WD19 dock more reliable after suspend (LP: #1868217) + - xhci: Ensure link state is U3 after setting USB_SS_PORT_LS_U3 + - xhci: Wait until link state trainsits to U0 after setting USB_SS_PORT_LS_U0 + - xhci: Finetune host initiated USB3 rootport link suspend and resume + + * update-version-dkms doesn't add a BugLink (LP: #1867790) + - [Packaging] Add BugLink to update-version-dkms commit + + * Add support for Realtek 8723DE wireless adapter (LP: #1780590) + - SAUCE: rtw88: add regulatory process strategy for different chipset + - SAUCE: rtw88: support dynamic user regulatory setting + - SAUCE: rtw88: Use secondary channel offset enumeration + - SAUCE: rtw88: 8822c: modify rf protection setting + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: Revert "rtw88: disable TX-AMSDU on 2.4G band" + - SAUCE: rtw88: disable TX-AMSDU on 2.4G band + - SAUCE: rtw88: remove unused parameter vif in rtw_lps_pg_info_get() + - SAUCE: rtw88: add rtw_read8_mask and rtw_read16_mask + - SAUCE: rtw88: pci: 8822c should set clock delay to zero + - SAUCE: rtw88: move rtw_enter_ips() to the last when config + - SAUCE: rtw88: avoid holding mutex for cancel_delayed_work_sync() + - SAUCE: rtw88: add ciphers to suppress error message + - SAUCE: rtw88: 8822c: update power sequence to v16 + - SAUCE: rtw88: Fix incorrect beamformee role setting + - SAUCE: rtw88: don't hold all IRQs disabled for PS operations + - SAUCE: rtw88: extract alloc rsvd_page and h2c skb routines + - SAUCE: rtw88: associate reserved pages with each vif + - SAUCE: rtw88: add adaptivity support for EU/JP regulatory + - SAUCE: rtw88: 8723d: Add basic chip capabilities + - SAUCE: rtw88: 8723d: add beamform wrapper functions + - SAUCE: rtw88: 8723d: Add power sequence + - SAUCE: rtw88: 8723d: Add RF read/write ops + - SAUCE: rtw88: 8723d: Add mac/bb/rf/agc/power_limit tables + - SAUCE: rtw88: 8723d: Add cfg_ldo25 to control LDO25 + - SAUCE: rtw88: 8723d: Add new chip op efuse_grant() to control efuse access + - SAUCE: rtw88: 8723d: Add read_efuse to recognize efuse info from map + - SAUCE: rtw88: add legacy firmware download for 8723D devices + - SAUCE: rtw88: no need to send additional information to legacy firmware + - SAUCE: rtw88: 8723d: Add mac power-on/-off function + - SAUCE: rtw88: decompose while(1) loop of power sequence polling command + - SAUCE: rtw88: 8723d: 11N chips don't support H2C queue + - SAUCE: rtw88: 8723d: implement set_tx_power_index ops + - SAUCE: rtw88: 8723d: Organize chip TX/RX FIFO + - SAUCE: rtw88: 8723d: initialize mac/bb/rf basic functions + - SAUCE: rtw88: 8723d: Add DIG parameter + - SAUCE: rtw88: 8723d: Add query_rx_desc + - SAUCE: rtw88: 8723d: Add set_channel + - SAUCE: rtw88: handle C2H_CCX_TX_RPT to know if packet TX'ed successfully + - SAUCE: rtw88: 8723d: 11N chips don't support LDPC + - SAUCE: rtw88: set default port to firmware + - SAUCE: rtw88: update tx descriptor of mgmt and rsvd page packets + - SAUCE: rtw88: sar: add SAR of TX power limit + - SAUCE: rtw88: sar: Load static SAR table from ACPI WRDS method + - SAUCE: rtw88: sar: Load dynamic SAR table from ACPI methods + - SAUCE: rtw88: sar: apply dynamic SAR table to tx power limit + - SAUCE: rtw88: sar: add sar_work to poll if dynamic SAR table is changed + - SAUCE: rtw88: sar: dump sar information via debugfs + - SAUCE: rtw88: 8723d: Add chip_ops::false_alarm_statistics + - SAUCE: rtw88: 8723d: Set IG register for CCK rate + - SAUCE: rtw88: 8723d: add interface configurations table + - SAUCE: rtw88: 8723d: Add LC calibration + - SAUCE: rtw88: 8723d: add IQ calibration + - SAUCE: rtw88: 8723d: Add power tracking + - SAUCE: rtw88: 8723d: Add shutdown callback to disable BT USB suspend + - SAUCE: rtw88: 8723d: implement flush queue + - SAUCE: rtw88: 8723d: set ltecoex register address in chip_info + - SAUCE: rtw88: 8723d: Add coex support + - SAUCE: rtw88: fill zeros to words 0x06 and 0x07 of security cam entry + - SAUCE: rtw88: 8723d: Add 8723DE to Kconfig and Makefile + - [Config] CONFIG_RTW88_8723DE=y + + * [Ubuntu 20.04] Unset HIBERNATION and PM kernel config options for focal + (LP: #1867753) + - [Config] CONFIG_HIBERNATION=n and CONFIG_PM=n for s390x + + * [20.04 FEAT] Base KVM setup for secure guests - kernel part (LP: #1835531) + - s390/protvirt: introduce host side setup + - s390/protvirt: add ultravisor initialization + - s390/mm: provide memory management functions for protected KVM guests + - s390/mm: add (non)secure page access exceptions handlers + - s390/protvirt: Add sysfs firmware interface for Ultravisor information + - KVM: s390/interrupt: do not pin adapter interrupt pages + - KVM: s390: protvirt: Add UV debug trace + - KVM: s390: add new variants of UV CALL + - KVM: s390: protvirt: Add initial vm and cpu lifecycle handling + - KVM: s390: protvirt: Secure memory is not mergeable + - KVM: s390/mm: Make pages accessible before destroying the guest + - KVM: s390: protvirt: Handle SE notification interceptions + - KVM: s390: protvirt: Instruction emulation + - KVM: s390: protvirt: Implement interrupt injection + - KVM: s390: protvirt: Add SCLP interrupt handling + - KVM: s390: protvirt: Handle spec exception loops + - KVM: s390: protvirt: Add new gprs location handling + - KVM: S390: protvirt: Introduce instruction data area bounce buffer + - KVM: s390: protvirt: handle secure guest prefix pages + - KVM: s390/mm: handle guest unpin events + - KVM: s390: protvirt: Write sthyi data to instruction data area + - KVM: s390: protvirt: STSI handling + - KVM: s390: protvirt: disallow one_reg + - KVM: s390: protvirt: Do only reset registers that are accessible + - KVM: s390: protvirt: Only sync fmt4 registers + - KVM: s390: protvirt: Add program exception injection + - KVM: s390: protvirt: UV calls in support of diag308 0, 1 + - KVM: s390: protvirt: Report CPU state to Ultravisor + - KVM: s390: protvirt: Support cmd 5 operation state + - KVM: s390: protvirt: Mask PSW interrupt bits for interception 104 and 112 + - KVM: s390: protvirt: do not inject interrupts after start + - KVM: s390: protvirt: Add UV cpu reset calls + - DOCUMENTATION: Protected virtual machine introduction and IPL + - KVM: s390: protvirt: introduce and enable KVM_CAP_S390_PROTECTED + - KVM: s390: protvirt: Add KVM api documentation + - mm/gup/writeback: add callbacks for inaccessible pages + + * All PS/2 ports on PS/2 Serial add-in bracket are not working after S3 + (LP: #1866734) + - SAUCE: Input: i8042 - fix the selftest retry logic + + * Sys oopsed with sysfs test in ubuntu_stress_smoke_test on X-hwe ARM64 + (LP: #1866772) + - ACPI: sysfs: copy ACPI data using io memory copying + + * Miscellaneous Ubuntu changes + - hio -- remove duplicated MODULE_DEVICE_TABLE declaration + - SAUCE: r8169: disable ASPM L1.1 + - [Config] update annotations from configs + - [Config] update configs after annotation file review + - SAUCE: Revert "tools/power turbostat: Fix 32-bit capabilities warning" + + * Miscellaneous upstream changes + - drm/i915: Fix eDP DPCD aux max backlight calculations + - drm/dp: Introduce EDID-based quirks + - drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED panel + - drm/i915: Force DPCD backlight mode for some Dell CML 2020 panels + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc7 + + -- Andrea Righi Wed, 25 Mar 2020 18:09:13 +0100 + +linux-5.6 (5.6.0-5.5) focal; urgency=medium + + * please help enable CONFIG_EROFS_FS_ZIP (LP: #1867099) + - [Config] CONFIG_EROFS_FS_ZIP=y + - [Config] CONFIG_EROFS_FS_CLUSTER_PAGE_LIMIT=1 + + * Miscellaneous Ubuntu changes + - Config: Fix SND_HDA_PREALLOC_SIZE annotations + - Config: Fix DATA_SHIFT annotations + - Config: remove ANDROID_VSOC from annotations + - Config: remove arm arch from annotations + - Config: Update SOC_R8A7796X annotations + - Config: Update CLK_R8A7796X annotations + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc6 + + -- Andrea Righi Wed, 18 Mar 2020 17:25:30 +0100 + +linux-5.6 (5.6.0-4.4) focal; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * Add sysfs attribute to show remapped NVMe (LP: #1863621) + - SAUCE: ata: ahci: Add sysfs attribute to show remapped NVMe device count + + * [20.04 FEAT] Compression improvements in Linux kernel (LP: #1830208) + - [Config] Introducing s390x specific kernel config option CONFIG_ZLIB_DFLTCC + + * [UBUNTU 20.04] s390x/pci: increase CONFIG_PCI_NR_FUNCTIONS to 512 in kernel + config (LP: #1866056) + - [Config] Increase CONFIG_PCI_NR_FUNCTIONS from 64 to 512 starting with focal + on s390x + + * CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set (LP: #1865332) + - [Config] CONFIG_IP_MROUTE_MULTIPLE_TABLES=y + + * [UBUNTU 20.04] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x + starting with focal (LP: #1865452) + - [Config] Enable CONFIG_NET_SWITCHDEV in kernel config for s390x starting + with focal + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "UBUNTU: SAUCE: blk/core: Gracefully handle unset + make_request_fn" + - [Packaging] prevent duplicated entries in modules.ignore + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc5 + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc5 + + -- Andrea Righi Mon, 09 Mar 2020 09:42:06 +0100 + +linux-5.6 (5.6.0-3.3) focal; urgency=medium + + * nsleep-lat / set-timer-lat / inconsistency-check / raw_skew from timer in + ubuntu_kernel_selftests timeout on 5.3 / 5.4 (LP: #1864626) + - selftests/timers: Turn off timeout setting + + * Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU for focal + (LP: #1864198) + - Ubuntu: [Config] Update kernel options CONFIG_NR_CPUS and CONFIG_NUMA_EMU + + * alsa/hda/realtek: fix a mute led regression on Lenovo X1 Carbon + (LP: #1864576) + - SAUCE: ALSA: hda/realtek - Fix a regression for mute led on Lenovo Carbon X1 + + * r8152 init may take up to 40 seconds at initialization with Dell WD19/WD19DC + during hotplug (LP: #1864284) + - UBUNTU SAUCE: r8151: check disconnect status after long sleep + + * Another Dell AIO backlight issue (LP: #1863880) + - SAUCE: platform/x86: dell-uart-backlight: move retry block + + * Backport GetFB2 ioctl (LP: #1863874) + - SAUCE: drm: Add getfb2 ioctl + + * Focal Fossa (20.04) feature request - Enable CONFIG_X86_UV (LP: #1863810) + - [Config] CONFIG_X86_UV=y + + * Miscellaneous Ubuntu changes + - debian: remove snapdragon config, rules and flavour + - remove snapdragon abi files + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc4 + + * Miscellaneous upstream changes + - updateconfigs following snapdragon removal + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc4 + + -- Andrea Righi Wed, 04 Mar 2020 08:21:10 +0100 + +linux-5.6 (5.6.0-2.2) focal; urgency=medium + + * Sometimes can't adjust brightness on Dell AIO (LP: #1862885) + - SAUCE: platform/x86: dell-uart-backlight: increase retry times + + * Dell XPS 13 (7390) Display Flickering - 19.10 (LP: #1849947) + - SAUCE: drm/i915: Disable PSR by default on all platforms + + * Miscellaneous Ubuntu changes + - [debian] ignore missing wireguard module + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) s390: Lock down the kernel when the IPL secure flag is set + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - [Config] CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y + - update dkms package versions + - [Config] updateconfigs after rebase to 5.6-rc3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (lockdown) s390/ipl: lockdown kernel when booted + secure" + - Revert "UBUNTU: SAUCE: (lockdown) KEYS: Make use of platform keyring for + module signature verify" + - Revert "UBUNTU: SAUCE: (lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (lockdown) security: lockdown: expose a hook to lock + the kernel down" + - Revert "UBUNTU: SAUCE: (lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + + -- Andrea Righi Mon, 24 Feb 2020 18:57:22 +0100 + +linux-5.6 (5.6.0-1.1) focal; urgency=medium + + * Integrate Intel SGX driver into linux-azure (LP: #1844245) + - [Packaging] Add systemd service to load intel_sgx + + * QAT drivers for C3XXX and C62X not included as modules (LP: #1845959) + - [Config] CRYPTO_DEV_QAT_C3XXX=m, CRYPTO_DEV_QAT_C62X=m and + CRYPTO_DEV_QAT_DH895xCC=m + + * 5.4.0-11 crash on cryptsetup open (LP: #1860231) + - SAUCE: blk/core: Gracefully handle unset make_request_fn + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Use kernel specific layout + + * Miscellaneous Ubuntu changes + - update dkms package versions + - update dropped.txt after rebase to v5.6-rc1 + - [Config] updateconfigs after rebase to 5.6-rc1 + - hio -- proc_create() requires a "struct proc_ops" in 5.6 + - SAUCE: arm: fix build error in kvm tracepoint + + * Miscellaneous upstream changes + - Revert "UBUNTU: [Config] Disable the uselib system call" + - Revert "UBUNTU: [Config] Disable legacy PTY naming" + - Revert "UBUNTU: [Config] Enforce filtered access to iomem" + - Revert "UBUNTU: [Config] Enable notifier call chain validations" + - Revert "UBUNTU: [Config] Enable scatterlist validation" + - Revert "UBUNTU: [Config] Enable cred sanity checks" + - Revert "UBUNTU: [Config] Enable linked list manipulation checks" + + [ Upstream Kernel Changes ] + + * Rebase to v5.6-rc1 + + -- Andrea Righi Thu, 13 Feb 2020 17:20:27 +0100 + +linux-5.6 (5.6.0-0.0) focal; urgency=medium + + * Dummy entry + + -- Andrea Righi Mon, 10 Feb 2020 11:06:18 +0100 + +linux-5.5 (5.5.0-7.8) focal; urgency=medium + + * CONFIG_USELIB should be disabled (LP: #1855341) + - [Config] Disable the uselib system call + + * CONFIG_LEGACY_PTYS should be disabled (LP: #1855339) + - [Config] Disable legacy PTY naming + + * CONFIG_IO_STRICT_DEVMEM should be enabled (LP: #1855338) + - [Config] Enforce filtered access to iomem + + * CONFIG_DEBUG_NOTIFIERS should be enabled (LP: #1855337) + - [Config] Enable notifier call chain validations + + * CONFIG_DEBUG_SG should be enabled (LP: #1855336) + - [Config] Enable scatterlist validation + + * CONFIG_DEBUG_CREDENTIALS should be enabled (LP: #1855335) + - [Config] Enable cred sanity checks + + * CONFIG_DEBUG_LIST should be enabled (LP: #1855334) + - [Config] Enable linked list manipulation checks + + * shiftfs: prevent lower dentries from going negative during unlink + (LP: #1860041) + - SAUCE: shiftfs: prevent lower dentries from going negative during unlink + + * [SRU][B/OEM-B/OEM-OSP1/D/E/Unstable] UBUNTU: SAUCE: Use native backlight on + Lenovo E41-25/45 (LP: #1859561) + - SAUCE: ACPI: video: Use native backlight on Lenovo E41-25/45 + + * USB key cannot be detected by hotplug on Sunix USB Type-A 3.1 Gen 2 card + [1b21:2142] (LP: #1858988) + - SAUCE: PCI: Avoid ASMedia XHCI USB PME# from D0 defect + + * Dell AIO can't adjust brightness (LP: #1858761) + - SAUCE: platform/x86: dell-uart-backlight: add retry for get scalar status + + * Miscellaneous Ubuntu changes + - [Config] Fix typo in annotations file + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5 + + -- Andrea Righi Mon, 27 Jan 2020 11:39:38 +0100 + +linux-5.5 (5.5.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] Update ubuntu-regression-suite dependency to python2 + - [Packaging] Fix ubuntu-regression-suite python dependency for hwe kernel + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc7 + + -- Andrea Righi Mon, 20 Jan 2020 10:16:01 +0100 + +linux-5.5 (5.5.0-5.6) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc6 + + -- Andrea Righi Mon, 13 Jan 2020 15:50:12 +0100 + +linux-5.5 (5.5.0-4.5) focal; urgency=medium + + * linux build and autopkg tests need to use python2 instead of python + (LP: #1858487) + - [Packaging] Remove python-dev build dependency + + -- Andrea Righi Wed, 08 Jan 2020 16:00:26 +0100 + +linux-5.5 (5.5.0-3.4) focal; urgency=medium + + * [SRU][B/OEM-B/OEM-OSP1/D/E/F] Add LG I2C touchscreen multitouch support + (LP: #1857541) + - SAUCE: HID: multitouch: Add LG MELF0410 I2C touchscreen support + + * Make vfio-pci built-in or xhci_hcd optional (LP: #1770845) + - [Config]: built-in VFIO_PCI for amd64 + + * multi-zone raid0 corruption (LP: #1850540) + - SAUCE: md/raid0: Link to wiki with guidance on multi-zone RAID0 layout + migration + + * Packaging resync (LP: #1786013) + - [Packaging] update variants + + * Miscellaneous Ubuntu changes + - [Packaging] Change source package to linux-5.5 + - [Packaging] Don't use SRCPKGNAME for linux-libc-dev + - [Packaging] Remove linux-source-3 Provides: from linux-source + - [Packaging] Fix linux-doc in linux-image Suggests: + - [Debian] Read variants list into a variable + - [Packaging] Generate linux-libc-dev package only for primary variant + - [Packaging] Generate linux-doc for only the primary variant + - [Debian] Update linux source package name in debian/tests/* + - update dkms package versions + - [Config] updateconfigs after rebase to 5.5-rc3 + - [Config] disable PCI_MESON + - [Config] Add pinctrl-equilibrium to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc5 + + -- Andrea Righi Wed, 08 Jan 2020 11:28:43 +0100 + +linux-5.5 (5.5.0-2.3) focal; urgency=medium + + * Empty entry. + + -- Seth Forshee Tue, 17 Dec 2019 22:33:59 -0600 + +linux (5.5.0-2.3) focal; urgency=medium + + * Support DPCD aux brightness control (LP: #1856134) + - SAUCE: drm/i915: Fix eDP DPCD aux max backlight calculations + - SAUCE: drm/i915: Assume 100% brightness when not in DPCD control mode + - SAUCE: drm/i915: Fix DPCD register order in intel_dp_aux_enable_backlight() + - SAUCE: drm/i915: Auto detect DPCD backlight support by default + - SAUCE: drm/i915: Force DPCD backlight mode on X1 Extreme 2nd Gen 4K AMOLED + panel + - USUNTU: SAUCE: drm/i915: Force DPCD backlight mode on Dell Precision 4K sku + + * change kconfig of the soundwire bus driver from y to m (LP: #1855685) + - [Config]: SOUNDWIRE=m + + * Fix unusable USB hub on Dell TB16 after S3 (LP: #1855312) + - SAUCE: USB: core: Make port power cycle a seperate helper function + - SAUCE: USB: core: Attempt power cycle port when it's in eSS.Disabled state + + * Miscellaneous Ubuntu changes + - [Debian] add python depends to ubuntu-regression-suite + - SAUCE: selftests: net: tls: remove recv_rcvbuf test + - update dkms package versions + + * Miscellaneous upstream changes + - [Config] updateconfigs after rebase to 5.5-rc2 + + -- Andrea Righi Tue, 17 Dec 2019 16:02:43 +0100 + +linux (5.5.0-1.2) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Config] disable zfs dkms build + - update dropped.txt after rebase to v5.5-rc1 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - update dkms package versions + + -- Andrea Righi Thu, 12 Dec 2019 16:54:41 +0100 + +linux (5.5.0-0.1) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.5-rc1 + + [ Upstream Kernel Changes ] + + * Rebase to v5.5-rc1 + + -- Andrea Righi Mon, 09 Dec 2019 19:03:35 +0100 + +linux (5.5.0-0.0) focal; urgency=medium + + * Dummy entry. + + -- Andrea Righi Mon, 09 Dec 2019 15:14:37 +0100 + +linux (5.4.0-8.11) focal; urgency=medium + + * focal/linux: 5.4.0-8.9 -proposed tracker (LP: #1855448) + + * update ENA driver for DIMLIB dynamic interrupt moderation (LP: #1853180) + - SAUCE: net: ena: fix issues in setting interrupt moderation params in + ethtool + - SAUCE: net: ena: fix too long default tx interrupt moderation interval + + * Kernel build log filled with "/bin/bash: line 5: warning: command + substitution: ignored null byte in input" (LP: #1853843) + - [Debian] Fix warnings when checking for modules signatures + + * hwe-edge kernel 5.3.0-23.25 kernel does not boot on Precision 5720 AIO + (LP: #1852581) + - [Packaging] Fix module signing with older modinfo + + * Fix MST support on Ice Lake (LP: #1854432) + - drm/i915: fix port checks for MST support on gen >= 11 + + * headphone has noise as not mute on dell machines with alc236/256 + (LP: #1854401) + - SAUCE: ALSA: hda/realtek - Dell headphone has noise on unmute for ALC236 + + * [CML-S62] Need enable intel_pmc_core driver patch for Comet lake- S 6+2 + (LP: #1847450) + - SAUCE: platform/x86: intel_pmc_core: Add Comet Lake (CML) platform support + to intel_pmc_core driver + + * CVE-2019-14901 + - SAUCE: mwifiex: Fix heap overflow in mmwifiex_process_tdls_action_frame() + + * CVE-2019-14896 // CVE-2019-14897 + - SAUCE: libertas: Fix two buffer overflows at parsing bss descriptor + + * CVE-2019-14895 + - SAUCE: mwifiex: fix possible heap overflow in mwifiex_process_country_ie() + + * [CML-S62] Need enable intel_rapl patch support for Comet lake- S 6+2 + (LP: #1847454) + - powercap/intel_rapl: add support for CometLake Mobile + - powercap/intel_rapl: add support for Cometlake desktop + + * External microphone can't work on some dell machines with the codec alc256 + or alc236 (LP: #1853791) + - SAUCE: ALSA: hda/realtek - Move some alc256 pintbls to fallback table + - SAUCE: ALSA: hda/realtek - Move some alc236 pintbls to fallback table + + * remount of multilower moved pivoted-root overlayfs root, results in I/O + errors on some modified files (LP: #1824407) + - SAUCE: ovl: fix lookup failure on multi lower squashfs + + * [CML-S62] Need enable turbostat patch support for Comet lake- S 6+2 + (LP: #1847451) + - SAUCE: tools/power turbostat: Add Cometlake support + + * CONFIG_ARCH_ROCKCHIP is not set in ubuntu 18.04 aarch64,arm64 (LP: #1825222) + - [Config] Enable ROCKCHIP support for arm64 + + * [broadwell-rt286, playback] Since Linux 5.2rc2 audio playback no longer + works on Dell Venue 11 Pro 7140 (LP: #1846539) + - SAUCE: ASoC: SOF: Intel: Broadwell: clarify mutual exclusion with legacy + driver + + * i40e: general protection fault in i40e_config_vf_promiscuous_mode + (LP: #1852663) + - SAUCE: i40e Fix GPF when deleting VMs + + * libbpf check_abi fails on ppc64el (LP: #1854974) + - libbpf: Fix readelf output parsing on powerpc with recent binutils + + * CVE-2019-19050 + - crypto: user - fix memory leak in crypto_reportstat + + * Make hotplugging docking station to Thunderbolt port more reliable + (LP: #1853991) + - PCI/PM: Add pcie_wait_for_link_delay() + - PCI/PM: Add missing link delays required by the PCIe spec + + * i915: Display flickers (monitor loses signal briefly) during "flickerfree" + boot, while showing the BIOS logo on a black background (LP: #1836858) + - [Config] FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y + + * [CML] New device id's for CMP-H (LP: #1846335) + - i2c: i801: Add support for Intel Comet Lake PCH-H + - mtd: spi-nor: intel-spi: Add support for Intel Comet Lake-H SPI serial flash + - mfd: intel-lpss: Add Intel Comet Lake PCH-H PCI IDs + + * Focal update: v5.4.2 upstream stable release (LP: #1855326) + - io_uring: async workers should inherit the user creds + - net: separate out the msghdr copy from ___sys_{send,recv}msg() + - net: disallow ancillary data for __sys_{send,recv}msg_file() + - crypto: inside-secure - Fix stability issue with Macchiatobin + - driver core: platform: use the correct callback type for bus_find_device + - usb: dwc2: use a longer core rest timeout in dwc2_core_reset() + - staging: wilc1000: fix illegal memory access in wilc_parse_join_bss_param() + - staging: rtl8192e: fix potential use after free + - staging: rtl8723bs: Drop ACPI device ids + - staging: rtl8723bs: Add 024c:0525 to the list of SDIO device-ids + - USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P + - mei: bus: prefix device names on bus with the bus name + - mei: me: add comet point V device id + - thunderbolt: Power cycle the router if NVM authentication fails + - x86/fpu: Don't cache access to fpu_fpregs_owner_ctx + - gve: Fix the queue page list allocated pages count + - macvlan: schedule bc_work even if error + - mdio_bus: don't use managed reset-controller + - net: dsa: sja1105: fix sja1105_parse_rgmii_delays() + - net: macb: add missed tasklet_kill + - net: psample: fix skb_over_panic + - net: sched: fix `tc -s class show` no bstats on class with nolock subqueues + - openvswitch: fix flow command message size + - sctp: Fix memory leak in sctp_sf_do_5_2_4_dupcook + - slip: Fix use-after-free Read in slip_open + - sctp: cache netns in sctp_ep_common + - openvswitch: drop unneeded BUG_ON() in ovs_flow_cmd_build_info() + - openvswitch: remove another BUG_ON() + - net/tls: take into account that bpf_exec_tx_verdict() may free the record + - net/tls: free the record on encryption error + - net: skmsg: fix TLS 1.3 crash with full sk_msg + - selftests/tls: add a test for fragmented messages + - net/tls: remove the dead inplace_crypto code + - net/tls: use sg_next() to walk sg entries + - selftests: bpf: test_sockmap: handle file creation failures gracefully + - selftests: bpf: correct perror strings + - tipc: fix link name length check + - selftests: pmtu: use -oneline for ip route list cache + - r8169: fix jumbo configuration for RTL8168evl + - r8169: fix resume on cable plug-in + - ext4: add more paranoia checking in ext4_expand_extra_isize handling + - Revert "jffs2: Fix possible null-pointer dereferences in + jffs2_add_frag_to_fragtree()" + - crypto: talitos - Fix build error by selecting LIB_DES + - HID: core: check whether Usage Page item is after Usage ID items + - platform/x86: hp-wmi: Fix ACPI errors caused by too small buffer + - platform/x86: hp-wmi: Fix ACPI errors caused by passing 0 as input size + - Linux 5.4.2 + + * no HDMI video output since GDM greeter after linux-oem-osp1 version + 5.0.0-1026 (LP: #1852386) + - drm/i915: Add new CNL PCH ID seen on a CML platform + - SAUCE: drm/i915: Fix detection for a CMP-V PCH + + * Please add patch fixing RK818 ID detection (LP: #1853192) + - SAUCE: mfd: rk808: Fix RK818 ID template + + * Raydium Touchscreen on ThinkPad L390 does not work (LP: #1849721) + - HID: i2c-hid: fix no irq after reset on raydium 3118 + + * Touchpad doesn't work on Dell Inspiron 7000 2-in-1 (LP: #1851901) + - Revert "UBUNTU: SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 + 2-in-1" + - lib: devres: add a helper function for ioremap_uc + - mfd: intel-lpss: Use devm_ioremap_uc for MMIO + + * Lenovo dock MAC Address pass through doesn't work in Ubuntu (LP: #1827961) + - r8152: Add macpassthru support for ThinkPad Thunderbolt 3 Dock Gen 2 + + * Disable unreliable HPET on CFL-H system (LP: #1852216) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake H platforms + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] Enable virtualbox dkms build + - [Config] update annotations to match current configs + - SAUCE: Add exfat module to signature inclusion list + + * Miscellaneous upstream changes + - Bluetooth: Fix invalid-free in bcsp_close() + - ath9k_hw: fix uninitialized variable data + - ath10k: Fix a NULL-ptr-deref bug in ath10k_usb_alloc_urb_from_pipe + - ath10k: Fix HOST capability QMI incompatibility + - ath10k: restore QCA9880-AR1A (v1) detection + - Revert "Bluetooth: hci_ll: set operational frequency earlier" + - Revert "dm crypt: use WQ_HIGHPRI for the IO and crypt workqueues" + - md/raid10: prevent access of uninitialized resync_pages offset + - x86/insn: Fix awk regexp warnings + - x86/speculation: Fix incorrect MDS/TAA mitigation status + - x86/speculation: Fix redundant MDS mitigation message + - nbd: prevent memory leak + - x86/stackframe/32: Repair 32-bit Xen PV + - x86/xen/32: Make xen_iret_crit_fixup() independent of frame layout + - x86/xen/32: Simplify ring check in xen_iret_crit_fixup() + - x86/doublefault/32: Fix stack canaries in the double fault handler + - x86/pti/32: Size initial_page_table correctly + - x86/cpu_entry_area: Add guard page for entry stack on 32bit + - x86/entry/32: Fix IRET exception + - x86/entry/32: Use %ss segment where required + - x86/entry/32: Move FIXUP_FRAME after pushing %fs in SAVE_ALL + - x86/entry/32: Unwind the ESPFIX stack earlier on exception entry + - x86/entry/32: Fix NMI vs ESPFIX + - selftests/x86/mov_ss_trap: Fix the SYSENTER test + - selftests/x86/sigreturn/32: Invalidate DS and ES when abusing the kernel + - x86/pti/32: Calculate the various PTI cpu_entry_area sizes correctly, make + the CPU_ENTRY_AREA_PAGES assert precise + - x86/entry/32: Fix FIXUP_ESPFIX_STACK with user CR3 + - futex: Prevent robust futex exit race + - ALSA: usb-audio: Fix NULL dereference at parsing BADD + - ALSA: usb-audio: Fix Scarlett 6i6 Gen 2 port data + - media: vivid: Set vid_cap_streaming and vid_out_streaming to true + - media: vivid: Fix wrong locking that causes race conditions on streaming + stop + - media: usbvision: Fix invalid accesses after device disconnect + - media: usbvision: Fix races among open, close, and disconnect + - cpufreq: Add NULL checks to show() and store() methods of cpufreq + - futex: Move futex exit handling into futex code + - futex: Replace PF_EXITPIDONE with a state + - exit/exec: Seperate mm_release() + - futex: Split futex_mm_release() for exit/exec + - futex: Set task::futex_state to DEAD right after handling futex exit + - futex: Mark the begin of futex exit explicitly + - futex: Sanitize exit state handling + - futex: Provide state handling for exec() as well + - futex: Add mutex around futex exit + - futex: Provide distinct return value when owner is exiting + - futex: Prevent exit livelock + - media: uvcvideo: Fix error path in control parsing failure + - media: b2c2-flexcop-usb: add sanity checking + - media: cxusb: detect cxusb_ctrl_msg error in query + - media: imon: invalid dereference in imon_touch_event + - media: mceusb: fix out of bounds read in MCE receiver buffer + - ALSA: hda - Disable audio component for legacy Nvidia HDMI codecs + - USBIP: add config dependency for SGL_ALLOC + - usbip: tools: fix fd leakage in the function of read_attr_usbip_status + - usbip: Fix uninitialized symbol 'nents' in stub_recv_cmd_submit() + - usb-serial: cp201x: support Mark-10 digital force gauge + - USB: chaoskey: fix error case of a timeout + - appledisplay: fix error handling in the scheduled work + - USB: serial: mos7840: add USB ID to support Moxa UPort 2210 + - USB: serial: mos7720: fix remote wakeup + - USB: serial: mos7840: fix remote wakeup + - USB: serial: option: add support for DW5821e with eSIM support + - USB: serial: option: add support for Foxconn T77W968 LTE modules + - staging: comedi: usbduxfast: usbduxfast_ai_cmdtest rounding error + - powerpc/book3s64: Fix link stack flush on context switch + - KVM: PPC: Book3S HV: Flush link stack on guest exit to host kernel + - Linux 5.4.1 + + -- Seth Forshee Fri, 06 Dec 2019 15:53:53 -0600 + +linux (5.4.0-7.8) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: Comment out BPF_CORE_READ's which cause clang to + segfault + - Update nvidia-430 to nvidia-440 + - [Config] Enable nvidia dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4 + + -- Andrea Righi Mon, 25 Nov 2019 15:02:30 +0100 + +linux (5.4.0-6.7) focal; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc8 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Andrea Righi Mon, 18 Nov 2019 12:08:01 +0100 + +linux (5.4.0-5.6) focal; urgency=medium + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15793 + - SAUCE: shiftfs: Correct id translation for lower fs operations + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15792 + - SAUCE: shiftfs: prevent type confusion + + * refcount underflow and type confusion in shiftfs (LP: #1850867) // + CVE-2019-15791 + - SAUCE: shiftfs: Fix refcount underflow in btrfs ioctl handling + + * Some EFI systems fail to boot in efi_init() when booted via maas + (LP: #1851810) + - SAUCE: efi: efi_get_memory_map -- increase map headroom + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: rework define for SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: avoid overflow in implicit constant conversion + + * dkms artifacts may expire from the pool (LP: #1850958) + - [Packaging] dkms -- try launchpad librarian for pool downloads + - [Packaging] dkms -- dkms-build quieten wget verbiage + + * tsc marked unstable after entered PC10 on Intel CoffeeLake (LP: #1840239) + - SAUCE: x86/intel: Disable HPET on Intel Coffe Lake platforms + - SAUCE: x86/intel: Disable HPET on Intel Ice Lake platforms + + * shiftfs: prevent exceeding project quotas (LP: #1849483) + - SAUCE: shiftfs: drop CAP_SYS_RESOURCE from effective capabilities + + * shiftfs: fix fallocate() (LP: #1849482) + - SAUCE: shiftfs: setup correct s_maxbytes limit + + * The alsa hda driver is not loaded due to the missing of PCIID for Comet + Lake-S [8086:a3f0] (LP: #1852070) + - SAUCE: ALSA: hda: Add Cometlake-S PCI ID + + * Can't adjust brightness on DELL UHD dGPU AIO (LP: #1813877) + - SAUCE: platform/x86: dell-uart-backlight: add missing status command + - SAUCE: platform/x86: dell-uart-backlight: load driver by scalar status + - SAUCE: platform/x86: dell-uart-backlight: add force parameter + - SAUCE: platform/x86: dell-uart-backlight: add quirk for old platforms + + * s_iflags overlap prevents unprivileged overlayfs mounts (LP: #1851677) + - SAUCE: fs: Move SB_I_NOSUID to the top of s_iflags + + * ubuntu-aufs-modified mmap_region() breaks refcounting in overlayfs/shiftfs + error path (LP: #1850994) // CVE-2019-15794 + - SAUCE: shiftfs: Restore vm_file value when lower fs mmap fails + - SAUCE: ovl: Restore vm_file value when lower fs mmap fails + + * Miscellaneous Ubuntu changes + - [Debian] Convert update-aufs.sh to use aufs5 + - SAUCE: import aufs driver + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc7 + + -- Seth Forshee Wed, 13 Nov 2019 11:56:35 -0800 + +linux (5.4.0-4.5) focal; urgency=medium + + * High power consumption using 5.0.0-25-generic (LP: #1840835) + - PCI: Add a helper to check Power Resource Requirements _PR3 existence + - ALSA: hda: Allow HDA to be runtime suspended when dGPU is not bound to a + driver + - PCI: Fix missing inline for pci_pr3_present() + + * Fix signing of staging modules in eoan (LP: #1850234) + - [Packaging] Leave unsigned modules unsigned after adding .gnu_debuglink + + * [20.04 FEAT] Set Architecture Level (ALS) to z13 (LP: #1837525) + - [Config] s390x bump march to z13, with tune to z15 + + * Miscellaneous Ubuntu changes + - [Debian]: do not skip tests for linux-hwe-edge + - update dkms package versions + - [Config] re-enable zfs + - [Config] rename module virtio_fs to virtiofs + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc6 + + -- Andrea Righi Mon, 04 Nov 2019 15:12:02 +0100 + +linux (5.4.0-3.4) focal; urgency=medium + + * seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test (LP: #1849281) + - SAUCE: seccomp: fix SECCOMP_USER_NOTIF_FLAG_CONTINUE test + + * cloudimg: no iavf/i40evf module so no network available with SR-IOV enabled + cloud (LP: #1848481) + - [Packaging] include iavf/i40evf in generic + + * CVE-2019-17666 + - SAUCE: rtlwifi: Fix potential overflow on P2P code + + * Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x from yes + to no (LP: #1848492) + - [Config] Change Config Option CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE for s390x + from yes to no + + * Add Intel Comet Lake ethernet support (LP: #1848555) + - SAUCE: e1000e: Add support for Comet Lake + + * seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE (LP: #1847744) + - SAUCE: seccomp: add SECCOMP_USER_NOTIF_FLAG_CONTINUE + - SAUCE: seccomp: test SECCOMP_USER_NOTIF_FLAG_CONTINUE + + * drm/i915: Fix the issue of "azx_get_response timeout" for hdmi audio on ICL + platforms (LP: #1847192) + - SAUCE: drm/i915: Fix audio power up sequence for gen10+ display + - SAUCE: drm/i915: extend audio CDCLK>=2*BCLK constraint to more platforms + + * PM / hibernate: fix potential memory corruption (LP: #1847118) + - SAUCE: PM / hibernate: memory_bm_find_bit -- tighten node optimisation + + * [regression] NoNewPrivileges incompatible with Apparmor (LP: #1844186) + - SAUCE: apparmor: fix nnp subset test for unconfined + + * overlayfs: allow with shiftfs as underlay (LP: #1846272) + - SAUCE: overlayfs: allow with shiftfs as underlay + + * eoan: alsa/sof: Enable SOF_HDA link and codec (LP: #1848490) + - [Config] Fix SOF Kconfig options + + * linux won't build when new virtualbox version is present on the archive + (LP: #1848788) + - [Packaging]: download virtualbox from sources + + * Miscellaneous Ubuntu changes + - [Config] update annotations from configs + - [Config] updateconfigs after rebase to 5.4-rc5 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc5 + + -- Seth Forshee Tue, 29 Oct 2019 12:01:27 -0500 + +linux (5.4.0-2.3) eoan; urgency=medium + + * Add installer support for iwlmvm adapters (LP: #1848236) + - d-i: Add iwlmvm to nic-modules + + * shiftfs: rework how shiftfs opens files (LP: #1846265) + - SAUCE: shiftfs: rework how shiftfs opens files + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc4 + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc4 + + -- Andrea Righi Mon, 21 Oct 2019 17:31:26 +0200 + +linux (5.4.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] updateconfigs after rebase to 5.4-rc3 + - [Config] add flexfb, fbtft_device and rio500 to modules.ignore + - [Config] amd64: ignore fbtft and all dependent modules + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc3 + + -- Andrea Righi Mon, 14 Oct 2019 19:48:52 +0200 + +linux (5.4.0-0.1) eoan; urgency=medium + + * Enable the Dragonboards out of Eoan/master arm64 kernel (LP: #1846704) + - [Packaging] arm64: snapdragon: introduce a snapdragon flavour + - [Packaging] arm64: snapdragon: switch kernel format to Image + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8994=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8996=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_MSM8998=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_RPMH=y + - [Config] arm64: snapdragon: CONFIG_QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: CONFIG_QCOM_HIDMA=y + - [Config] arm64: snapdragon: CONFIG_COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_RPMH=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8916=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8994=y + - [Config] arm64: snapdragon: CONFIG_MSM_MMCC_8996=y + - [Config] arm64: snapdragon: CONFIG_MSM_GCC_8998=y + - [Config] arm64: snapdragon: CONFIG_HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_GLINK_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_GENI_SE=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMEM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMP2P=y + - [Config] arm64: snapdragon: CONFIG_QCOM_SMSM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_QFPROM=y + - [Config] arm64: snapdragon: CONFIG_SERIAL_QCOM_GENI=y + - [Config] arm64: snapdragon: CONFIG_QCOM_TSENS=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: CONFIG_RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: CONFIG_MFD_QCOM_RPM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFSHCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_SCSI_UFS_HISI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_PLTFM=y + - [Config] arm64: snapdragon: CONFIG_MMC_SDHCI_MSM=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: CONFIG_PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_QMP=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_UFS=y + - [Config] arm64: snapdragon: CONFIG_PHY_QCOM_USB_HSIC=y + - [Config] arm64: snapdragon: CONFIG_USB_CHIPIDEA_OF=y + - [Config] arm64: snapdragon: CONFIG_USB_EHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_EXTCON_USB_GPIO=y + - [Config] arm64: snapdragon: CONFIG_REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: CONFIG_LEDS_GPIO=y + - [Config] arm64: snapdragon: CONFIG_USB_HSIC_USB3503=y + - [Config] arm64: snapdragon: CONFIG_USB_NET_DRIVERS=y + - [Config] arm64: snapdragon: CONFIG_USB_OTG=y + - [Config] arm64: snapdragon: CONFIG_USB_XHCI_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_OHCI_HCD_PLATFORM=y + - [Config] arm64: snapdragon: CONFIG_USB_MUSB_HDRC=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_PCI=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_OF_SIMPLE=y + - [Config] arm64: snapdragon: CONFIG_USB_DWC3_QCOM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_PWM=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_HEARTBEAT=y + - [Config] arm64: snapdragon: CONFIG_LEDS_TRIGGER_DEFAULT_ON=y + - [Config] arm64: snapdragon: CONFIG_QCOM_A53PLL=y + - [Config] arm64: snapdragon: CONFIG_QCOM_CLK_APCS_MSM8916=y + - [Config] arm64: snapdragon: CONFIG_NLS_ISO8859_1=y + - [Config] arm64: snapdragon: CONFIG_USB_USBNET=y + - [Config] arm64: snapdragon: CONFIG_CRYPTO_DEV_QCOM_RNG=y + - [Config] arm64: snapdragon: CONFIG_POWER_RESET_QCOM_PON=y + - [Config] arm64: snapdragon: CONFIG_INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: CONFIG_KEYBOARD_GPIO=y + - [Config] arm64: snapdragon: CONFIG_RTC_DRV_PM8XXX=y + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after rebase to 5.4-rc2 + - SAUCE: (lockdown) Make get_cert_list() not complain about cert lists that + aren't present. + - SAUCE: (lockdown) Add efi_status_to_str() and rework efi_status_to_err(). + - SAUCE: (lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (lockdown) security: lockdown: expose a hook to lock the kernel down + - SAUCE: (lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure boot + mode + - SAUCE: (lockdown) efi: Lock down the kernel if booted in secure boot mode + - SAUCE: (lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (lockdown) KEYS: Make use of platform keyring for module signature + verify + - SAUCE: (lockdown) arm64: Allow locking down the kernel under EFI secure boot + - SAUCE: (lockdown) security: lockdown: Make + CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT more generic + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - [Config] Enable lockdown under secure boot + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] enable aufs + - update dkms package versions + - [Config] disable zfs + - [Config] disable nvidia dkms build + - [Config] disable virtualbox dkms build + - [Debian] Generate stub reconstruct for -rc kernels + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Forbid unprivileged mounting + when device is opened for writing" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add module parameter to enable user + namespace mounts" + - Revert "UBUNTU: SAUCE: (namespace) ext4: Add support for unprivileged mounts + from user namespaces" + - Revert "UBUNTU: SAUCE: (namespace) mtd: Check permissions towards mtd block + device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Check permissions towards + block device inode when mounting" + - Revert "UBUNTU: SAUCE: (namespace) block_dev: Support checking inode + permissions in lookup_bdev()" + + [ Upstream Kernel Changes ] + + * Rebase to v5.4-rc2 + + -- Seth Forshee Fri, 11 Oct 2019 16:42:41 -0500 + +linux (5.4.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 08 Oct 2019 09:59:00 -0500 + +linux (5.3.0-17.18) eoan; urgency=medium + + * eoan/linux: 5.3.0-17.18 -proposed tracker (LP: #1846641) + + * CVE-2019-17056 + - nfc: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17055 + - mISDN: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17054 + - appletalk: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17053 + - ieee802154: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-17052 + - ax25: enforce CAP_NET_RAW for raw sockets + + * CVE-2019-15098 + - ath6kl: fix a NULL-ptr-deref bug in ath6kl_usb_alloc_urb_from_pipe() + + * xHCI on AMD Stoney Ridge cannot detect USB 2.0 or 1.1 devices. + (LP: #1846470) + - x86/PCI: Avoid AMD FCH XHCI USB PME# from D0 defect + + * Re-enable linux-libc-dev build on i386 (LP: #1846508) + - [Packaging] Build only linux-libc-dev for i386 + - [Debian] final-checks -- ignore archtictures with no binaries + + * arm64: loop on boot after installing linux-generic-hwe-18.04-edge/bionic- + proposed (LP: #1845820) + - [Config] Disable CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT + + * Revert ESE DASD discard support (LP: #1846219) + - SAUCE: Revert "s390/dasd: Add discard support for ESE volumes" + + * Miscellaneous Ubuntu changes + - update dkms package versions + + -- Seth Forshee Thu, 03 Oct 2019 16:57:05 -0500 + +linux (5.3.0-16.17) eoan; urgency=medium + + * eoan/linux: 5.3.0-16.17 -proposed tracker (LP: #1846204) + + * zfs fails to build on s390x with debug symbols enabled (LP: #1846143) + - SAUCE: s390: Mark atomic const ops always inline + + -- Seth Forshee Tue, 01 Oct 2019 07:46:43 -0500 + +linux (5.3.0-15.16) eoan; urgency=medium + + * eoan/linux: 5.3.0-15.16 -proposed tracker (LP: #1845987) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Packaging] Remove x32 arch references from control files + - [Debian] final-checks -- Get arch list from debian/control + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian] Fix conditional for setting zfs debug package path + + * Use pyhon3-sphinx instead of python-sphinx for building html docs + (LP: #1845808) + - [Packaging] Update sphinx build dependencies to python3 packages + + * Kernel panic with 19.10 beta image (LP: #1845454) + - efi/tpm: Don't access event->count when it isn't mapped. + - efi/tpm: don't traverse an event log with no events + - efi/tpm: only set efi_tpm_final_log_size after successful event log parsing + + -- Seth Forshee Mon, 30 Sep 2019 11:57:20 -0500 + +linux (5.3.0-14.15) eoan; urgency=medium + + * eoan/linux: 5.3.0-14.15 -proposed tracker (LP: #1845728) + + * Drop i386 build for 19.10 (LP: #1845714) + - [Debian] Remove support for producing i386 kernels + - [Debian] Don't use CROSS_COMPILE for i386 configs + + * udevadm trigger will fail when trying to add /sys/devices/vio/ + (LP: #1845572) + - SAUCE: powerpc/vio: drop bus_type from parent device + + * Trying to online dasd drive results in invalid input/output from the kernel + on z/VM (LP: #1845323) + - SAUCE: s390/dasd: Fix error handling during online processing + + * intel-lpss driver conflicts with write-combining MTRR region (LP: #1845584) + - SAUCE: mfd: intel-lpss: add quirk for Dell XPS 13 7390 2-in-1 + + * Support Hi1620 zip hw accelerator (LP: #1845355) + - [Config] Enable HiSilicon QM/ZIP as modules + - crypto: hisilicon - add queue management driver for HiSilicon QM module + - crypto: hisilicon - add hardware SGL support + - crypto: hisilicon - add HiSilicon ZIP accelerator support + - crypto: hisilicon - add SRIOV support for ZIP + - Documentation: Add debugfs doc for hisi_zip + - crypto: hisilicon - add debugfs for ZIP and QM + - MAINTAINERS: add maintainer for HiSilicon QM and ZIP controller driver + - crypto: hisilicon - fix kbuild warnings + - crypto: hisilicon - add dependency for CRYPTO_DEV_HISI_ZIP + - crypto: hisilicon - init curr_sgl_dma to fix compile warning + - crypto: hisilicon - add missing single_release + - crypto: hisilicon - fix error handle in hisi_zip_create_req_q + - crypto: hisilicon - Fix warning on printing %p with dma_addr_t + - crypto: hisilicon - Fix return value check in hisi_zip_acompress() + - crypto: hisilicon - avoid unused function warning + + * SafeSetID LSM should be built but disabled by default (LP: #1845391) + - LSM: SafeSetID: Stop releasing uninitialized ruleset + - [Config] Build SafeSetID LSM but don't enable it by default + + * CONFIG_LSM should not specify loadpin since it is not built (LP: #1845383) + - [Config] loadpin shouldn't be in CONFIG_LSM + + * Add new pci-id's for CML-S, ICL (LP: #1845317) + - drm/i915/icl: Add missing device ID + - drm/i915/cml: Add Missing PCI IDs + + * Thunderbolt support for ICL (LP: #1844680) + - thunderbolt: Correct path indices for PCIe tunnel + - thunderbolt: Move NVM upgrade support flag to struct icm + - thunderbolt: Use 32-bit writes when writing ring producer/consumer + - thunderbolt: Do not fail adding switch if some port is not implemented + - thunderbolt: Hide switch attributes that are not set + - thunderbolt: Expose active parts of NVM even if upgrade is not supported + - thunderbolt: Add support for Intel Ice Lake + - ACPI / property: Add two new Thunderbolt property GUIDs to the list + + * Ubuntu 19.10 - Additional PCI patch and fix (LP: #1844668) + - s390/pci: fix MSI message data + + * Enhanced Hardware Support - Finalize Naming (LP: #1842774) + - s390: add support for IBM z15 machines + - [Config] CONFIG_MARCH_Z15=n, CONFIG_TUNE_Z15=n + + * Eoan update: v5.3.1 upstream stable release (LP: #1845642) + - USB: usbcore: Fix slab-out-of-bounds bug during device reset + - media: tm6000: double free if usb disconnect while streaming + - phy: renesas: rcar-gen3-usb2: Disable clearing VBUS in over-current + - ip6_gre: fix a dst leak in ip6erspan_tunnel_xmit + - net/sched: fix race between deactivation and dequeue for NOLOCK qdisc + - net_sched: let qdisc_put() accept NULL pointer + - udp: correct reuseport selection with connected sockets + - xen-netfront: do not assume sk_buff_head list is empty in error handling + - net: dsa: Fix load order between DSA drivers and taggers + - net: stmmac: Hold rtnl lock in suspend/resume callbacks + - KVM: coalesced_mmio: add bounds checking + - Documentation: sphinx: Add missing comma to list of strings + - firmware: google: check if size is valid when decoding VPD data + - serial: sprd: correct the wrong sequence of arguments + - tty/serial: atmel: reschedule TX after RX was started + - nl80211: Fix possible Spectre-v1 for CQM RSSI thresholds + - Revert "arm64: Remove unnecessary ISBs from set_{pte,pmd,pud}" + - ovl: fix regression caused by overlapping layers detection + - phy: qcom-qmp: Correct ready status, again + - floppy: fix usercopy direction + - media: technisat-usb2: break out of loop at end of buffer + - Linux 5.3.1 + + * ZFS kernel modules lack debug symbols (LP: #1840704) + - [Debian]: Remove hardcoded $(pkgdir) in debug symbols handling + - [Debian]: Handle debug symbols for modules in extras too + - [Debian]: Check/link modules with debug symbols after DKMS modules + - [Debian]: Warn about modules without debug symbols + - [Debian]: dkms-build: new parameter for debug package directory + - [Debian]: dkms-build: zfs: support for debug symbols + - [Debian]: dkms-build: Avoid executing post-processor scripts twice + - [Debian]: dkms-build: Move zfs special-casing into configure script + + * /proc/self/maps paths missing on live session (was vlc won't start; eoan + 19.10 & bionic 18.04 ubuntu/lubuntu/kubuntu/xubuntu/ubuntu-mate dailies) + (LP: #1842382) + - SAUCE: Revert "UBUNTU: SAUCE: shiftfs: enable overlayfs on shiftfs" + + -- Seth Forshee Fri, 27 Sep 2019 16:08:06 -0500 + +linux (5.3.0-13.14) eoan; urgency=medium + + * eoan/linux: 5.3.0-13.14 -proposed tracker (LP: #1845105) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Miscellaneous Ubuntu changes + - [Debian] Remove binutils-dev build dependency + + -- Seth Forshee Mon, 23 Sep 2019 19:26:43 -0500 + +linux (5.3.0-12.13) eoan; urgency=medium + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Packaging] Add lz4 build dependency for s390x + + * Miscellaneous Ubuntu changes + - SAUCE: Remove spl and zfs source + + -- Seth Forshee Tue, 17 Sep 2019 13:36:26 +0200 + +linux (5.3.0-11.12) eoan; urgency=medium + + * eoan/linux: 5.3.0-11.12 -proposed tracker (LP: #1844144) + + * Suspend to RAM(S3) does not wake up for latest megaraid and mpt3sas + adapters(SAS3.5 onwards) (LP: #1838751) + - PCI: Restore Resizable BAR size bits correctly for 1MB BARs + + * s390/setup: Actually init kernel lock down (LP: #1843961) + - SAUCE: (lockdown) s390/setup: Actually init kernel lock down + + * cherrypick has_sipl fix (LP: #1843960) + - SAUCE: s390/sclp: Fix bit checked for has_sipl + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config]: Switch kernel compression from LZO to LZ4 on s390x + + * Installation fails on eoan/PowerVM : missing /dev/nvram (LP: #1837726) + - [Config] CONFIG_NVRAM=y for ppc64el + + * Miscellaneous Ubuntu changes + - [Config]: remove nvram from ppc64el modules ABI + - [Config] Update annotations for recent config changes + - SAUCE: sched: Add __ASSEMBLY__ guards around struct clone_args + - SAUCE: i2c: qcom-geni: Disable DMA processing on the Lenovo Yoga C630 + - SAUCE: arm64: dts: qcom: Add Lenovo Yoga C630 + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3 + + -- Paolo Pisati Mon, 16 Sep 2019 16:18:27 +0200 + +linux (5.3.0-10.11) eoan; urgency=medium + + * eoan/linux: 5.3.0-10.11 -proposed tracker (LP: #1843232) + + * No sound inputs from the external microphone and headset on a Dell machine + (LP: #1842265) + - SAUCE: ALSA: hda - Expand pin_match function to match upcoming new tbls + - SAUCE: ALSA: hda - Define a fallback_pin_fixup_tbl for alc269 family + + * Horizontal corrupted line at top of screen caused by framebuffer compression + (LP: #1840236) + - SAUCE: drm/i915/fbc: disable framebuffer compression on IceLake + + * Add bpftool to linux-tools-common (LP: #1774815) + - [Debian] package bpftool in linux-tools-common + + * Miscellaneous Ubuntu changes + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc8 + + -- Paolo Pisati Mon, 09 Sep 2019 10:00:41 +0200 + +linux (5.3.0-9.10) eoan; urgency=medium + + * eoan/linux: 5.3.0-9.10 -proposed tracker (LP: #1842393) + + * shiftfs: mark kmem_cache as reclaimable (LP: #1842059) + - SAUCE: shiftfs: mark slab objects SLAB_RECLAIM_ACCOUNT + + * shiftfs: drop entries from cache on unlink (LP: #1841977) + - SAUCE: shiftfs: fix buggy unlink logic + + * Fix touchpad IRQ storm after S3 (LP: #1841396) + - pinctrl: intel: remap the pin number to gpio offset for irq enabled pin + + * Please include DTBs for arm64 laptops (LP: #1842050) + - arm64: dts: qcom: Add Lenovo Miix 630 + - arm64: dts: qcom: Add HP Envy x2 + - arm64: dts: qcom: Add Asus NovaGo TP370QL + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging]: ignore vbox modules when vbox is disabled + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc7 + + -- Paolo Pisati Tue, 03 Sep 2019 10:27:33 +0200 + +linux (5.3.0-8.9) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Change kernel compression method to improve boot speed (LP: #1840934) + - [Config] change kernel compression method to improve boot speed + - [Packaging] add build dependencies for compression algorithms + + * realtek r8822be kernel module fails after update to linux kernel-headers + 5.0.0-21 (LP: #1838133) + - rtw88: Fix misuse of GENMASK macro + - rtw88: pci: Rearrange the memory usage for skb in RX ISR + - rtw88: pci: Use DMA sync instead of remapping in RX ISR + - rtw88: debug: dump tx power indexes in use + - rtw88: use txpwr_lmt_cfg_pair struct, not arrays + - rtw88: pci: remove set but not used variable 'ip_sel' + - rtw88: allow c2h operation in irq context + - rtw88: enclose c2h cmd handle with mutex + - rtw88: add BT co-existence support + - SAUCE: rtw88: pci: enable MSI interrupt + + * VIMC module not available (CONFIG_VIDEO_VIMC not set) (LP: #1831482) + - [Config] Enable VIMC module + + * Goodix touchpad may drop first input event (LP: #1840075) + - Revert "UBUNTU: SAUCE: i2c: designware: add G3 3590 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c + quirk" + - Revert "UBUNTU: SAUCE: i2c: designware: Add disable runtime pm quirk" + - mfd: intel-lpss: Remove D3cold delay + + * Include Sunix serial/parallel driver (LP: #1826716) + - serial: 8250_pci: Add support for Sunix serial boards + - parport: parport_serial: Add support for Sunix Multi I/O boards + + * enable lockdown on s390x when Secure IPL is performed (LP: #1839622) + - SAUCE: (lockdown) s390/ipl: lockdown kernel when booted secure + - Ubuntu: [Config] Enable CONFIG_LOCK_DOWN_KERNEL on s390x. + + * UBUNTU: SAUCE: shiftfs: pass correct point down (LP: #1837231) + - SAUCE: shiftfs: pass correct point down + + * shiftfs: add O_DIRECT support (LP: #1837223) + - SAUCE: shiftfs: add O_DIRECT support + + * Miscellaneous Ubuntu changes + - [Config] enable secureboot signing on s390x + - [Config] CONFIG_TEST_BLACKHOLE_DEV=m + - SAUCE: selftests: fib_tests: assign address to dummy1 for rp_filter tests + - [Debian] disable dkms builds for autopktest rebuilds + - update dkms package versions + - [Config] updateconfigs after v5.3-rc6 rebase + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 26 Aug 2019 10:09:42 +0200 + +linux (5.3.0-7.8) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + + * Miscellaneous Ubuntu changes + - [Config] updateconfigs after v5.3-rc5 rebase + - remove missing module after updateconfigs + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc5 + + -- Paolo Pisati Mon, 19 Aug 2019 15:31:24 +0200 + +linux (5.3.0-6.7) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/bpf: prevent headers to be compiled as C code + + -- Seth Forshee Wed, 14 Aug 2019 13:25:01 -0500 + +linux (5.3.0-5.6) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Config] enable zfs build + + -- Seth Forshee Tue, 13 Aug 2019 09:16:06 -0500 + +linux (5.3.0-4.5) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync getabis + - [Packaging] update helper scripts + + * bcache: bch_allocator_thread(): hung task timeout (LP: #1784665) // Tight + timeout for bcache removal causes spurious failures (LP: #1796292) + - SAUCE: bcache: fix deadlock in bcache_allocator + + * shiftfs: allow overlayfs (LP: #1838677) + - SAUCE: shiftfs: enable overlayfs on shiftfs + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "kbuild: modpost: do not parse unnecessary rules for vmlinux + modpost" + - update dkms package versions + - enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc4 + + -- Seth Forshee Mon, 12 Aug 2019 10:41:27 -0500 + +linux (5.3.0-3.4) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - update dkms package versions + - SAUCE: aufs: add "WITH Linux-syscall-note" to SPDX tag of uapi headers + - [Config] add mux-* to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc3 + + -- Paolo Pisati Mon, 05 Aug 2019 18:17:09 +0200 + +linux (5.3.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Packaging] add build dependincy on fontconfig + + -- Seth Forshee Mon, 29 Jul 2019 12:18:46 -0400 + +linux (5.3.0-1.2) eoan; urgency=medium + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * Please enable CONFIG_SCSI_UFS_QCOM as a module on arm64 (LP: #1837332) + - [Config] Enable CONFIG_SCSI_UFS_QCOM as a module on arm64. + + * Add arm64 CONFIG_ARCH_MESON=y and related configs Edit (LP: #1820530) + - [Config] enable ARCH_MESON + - remove missing module + - [Config] update annotations after enabling ARCH_MESON for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: KVM: PPC: comment implicit fallthrough + - update dkms package versions + - [Config] enable vbox dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc2 + + -- Seth Forshee Sun, 28 Jul 2019 23:10:16 -0400 + +linux (5.3.0-0.1) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - SAUCE: import aufs driver + - SAUCE: aufs: rwsem owner changed to atmoic_long_t in 5.3 + - [Config] disable zfs dkms build + - [Config] disable nvidia dkms build + - [Config] disable vbox dkms build + - SAUCE: perf diff: use llabs for s64 vaules + + [ Upstream Kernel Changes ] + + * Rebase to v5.3-rc1 + + -- Seth Forshee Tue, 23 Jul 2019 21:45:44 -0500 + +linux (5.3.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Mon, 22 Jul 2019 10:19:04 -0500 + +linux (5.2.0-9.10) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * input/mouse: alps trackpoint-only device doesn't work (LP: #1836752) + - SAUCE: Input: alps - don't handle ALPS cs19 trackpoint-only device + - SAUCE: Input: alps - fix a mismatch between a condition check and its + comment + + * System does not auto detect disconnection of external monitor (LP: #1835001) + - SAUCE: drm/i915: Add support for retrying hotplug + - SAUCE: drm/i915: Enable hotplug retry + + * alsa/hdmi: add icelake hdmi audio support for a Dell machine (LP: #1836916) + - SAUCE: ALSA: hda/hdmi - Remove duplicated define + - SAUCE: ALSA: hda/hdmi - Fix i915 reverse port/pin mapping + + * First click on Goodix touchpad doesn't be recognized after runtime suspended + (LP: #1836836) + - SAUCE: i2c: designware: add G3 3590 into i2c quirk + + * ixgbe{vf} - Physical Function gets IRQ when VF checks link state + (LP: #1836760) + - ixgbevf: Use cached link state instead of re-reading the value for ethtool + + * Doing multiple squashfs (and other loop?) mounts in parallel breaks + (LP: #1836914) + - SAUCE: Revert "loop: Don't change loop device under exclusive opener" + + * hibmc-drm Causes Unreadable Display for Huawei amd64 Servers (LP: #1762940) + - SAUCE: Make CONFIG_DRM_HISI_HIBMC depend on ARM64 + - [Config] Set CONFIG_DRM_HISI_HIBMC to arm64 only + - [Config] add hibmc-drm to modules.ignore + + * hda/realtek: can't detect external mic on a Dell machine (LP: #1836755) + - ALSA: hda/realtek: apply ALC891 headset fixup to one Dell machine + + * Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + (LP: #1835054) + - [Config] Enable Armada SOCs and MVPP2 NIC driver for disco/generic arm64 + + * Unhide Nvidia HDA audio controller (LP: #1836308) + - PCI: Enable NVIDIA HDA controllers + + * Intel ethernet I219 may wrongly detect connection speed as 10Mbps + (LP: #1836177) + - e1000e: Make watchdog use delayed work + + * Sometimes touchpad(goodix) can't use tap function (LP: #1836020) + - SAUCE: i2c: designware: add Inpiron/Vostro 7590 into i2c quirk + - SAUCE: i2c: designware: add Inpiron 7591 into i2c quirk + + * Intel ethernet I219 has slow RX speed (LP: #1836152) + - e1000e: add workaround for possible stalled packet + - e1000e: disable force K1-off feature + + * bcache: risk of data loss on I/O errors in backing or caching devices + (LP: #1829563) + - Revert "bcache: set CACHE_SET_IO_DISABLE in bch_cached_dev_error()" + + * bnx2x driver causes 100% CPU load (LP: #1832082) + - bnx2x: Prevent ptp_task to be rescheduled indefinitely + + * fcf-protection=none patch with new version + - Revert "UBUNTU: SAUCE: kbuild: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none when using retpoline flags + + * CVE-2019-12614 + - powerpc/pseries/dlpar: Fix a missing check in dlpar_parse_cc_property() + + * Eoan update: v5.2.1 upstream stable release (LP: #1836622) + - crypto: lrw - use correct alignmask + - crypto: talitos - rename alternative AEAD algos. + - fscrypt: don't set policy for a dead directory + - udf: Fix incorrect final NOT_ALLOCATED (hole) extent length + - media: stv0297: fix frequency range limit + - ALSA: usb-audio: Fix parse of UAC2 Extension Units + - ALSA: hda/realtek - Headphone Mic can't record after S3 + - tpm: Actually fail on TPM errors during "get random" + - tpm: Fix TPM 1.2 Shutdown sequence to prevent future TPM operations + - block: fix .bi_size overflow + - block, bfq: NULL out the bic when it's no longer valid + - perf intel-pt: Fix itrace defaults for perf script + - perf auxtrace: Fix itrace defaults for perf script + - perf intel-pt: Fix itrace defaults for perf script intel-pt documentation + - perf pmu: Fix uncore PMU alias list for ARM64 + - perf thread-stack: Fix thread stack return from kernel for kernel-only case + - perf header: Assign proper ff->ph in perf_event__synthesize_features() + - x86/ptrace: Fix possible spectre-v1 in ptrace_get_debugreg() + - x86/tls: Fix possible spectre-v1 in do_get_thread_area() + - Documentation: Add section about CPU vulnerabilities for Spectre + - Documentation/admin: Remove the vsyscall=native documentation + - mwifiex: Don't abort on small, spec-compliant vendor IEs + - USB: serial: ftdi_sio: add ID for isodebug v1 + - USB: serial: option: add support for GosunCn ME3630 RNDIS mode + - Revert "serial: 8250: Don't service RX FIFO if interrupts are disabled" + - p54usb: Fix race between disconnect and firmware loading + - usb: gadget: f_fs: data_len used before properly set + - usb: gadget: ether: Fix race between gether_disconnect and rx_submit + - usb: dwc2: use a longer AHB idle timeout in dwc2_core_reset() + - usb: renesas_usbhs: add a workaround for a race condition of workqueue + - drivers/usb/typec/tps6598x.c: fix portinfo width + - drivers/usb/typec/tps6598x.c: fix 4CC cmd write + - p54: fix crash during initialization + - staging: comedi: dt282x: fix a null pointer deref on interrupt + - staging: wilc1000: fix error path cleanup in wilc_wlan_initialize() + - staging: bcm2835-camera: Restore return behavior of ctrl_set_bitrate() + - staging: comedi: amplc_pci230: fix null pointer deref on interrupt + - staging: mt7621-pci: fix PCIE_FTS_NUM_LO macro + - HID: Add another Primax PIXART OEM mouse quirk + - lkdtm: support llvm-objcopy + - binder: fix memory leak in error path + - binder: return errors from buffer copy functions + - iio: adc: stm32-adc: add missing vdda-supply + - coresight: Potential uninitialized variable in probe() + - coresight: etb10: Do not call smp_processor_id from preemptible + - coresight: tmc-etr: Do not call smp_processor_id() from preemptible + - coresight: tmc-etr: alloc_perf_buf: Do not call smp_processor_id from + preemptible + - coresight: tmc-etf: Do not call smp_processor_id from preemptible + - carl9170: fix misuse of device driver API + - Revert "x86/build: Move _etext to actual end of .text" + - VMCI: Fix integer overflow in VMCI handle arrays + - staging: vchiq_2835_arm: revert "quit using custom down_interruptible()" + - staging: vchiq: make wait events interruptible + - staging: vchiq: revert "switch to wait_for_completion_killable" + - staging: fsl-dpaa2/ethsw: fix memory leak of switchdev_work + - staging: bcm2835-camera: Replace spinlock protecting context_map with mutex + - staging: bcm2835-camera: Ensure all buffers are returned on disable + - staging: bcm2835-camera: Remove check of the number of buffers supplied + - staging: bcm2835-camera: Handle empty EOS buffers whilst streaming + - staging: rtl8712: reduce stack usage, again + - Linux 5.2.1 + - [Config] updateconfigs after v5.2.1 stable update + + * fcf-protection=none patch with upstream version + - Revert "UBUNTU: SAUCE: add -fcf-protection=none to retpoline flags" + - SAUCE: kbuild: add -fcf-protection=none to retpoline flags + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/ftrace: avoid failure when trying to probe a notrace + function + - SAUCE: selftests/powerpc/ptrace: fix build failure + - update dkms package versions + - [Packaging] add zlua to zfs-modules.ignore + - update dkms package versions + + -- Seth Forshee Fri, 19 Jul 2019 15:04:45 -0500 + +linux (5.2.0-8.9) eoan; urgency=medium + + * linux: 5.2.0-8.9 -proposed tracker (LP: #1835700) + + * Miscellaneous Ubuntu changes + - [Packaging] replace zfs and spl build with zfs 0.8.1-1ubuntu1 + - SAUCE: test_bpf: remove expected fail for Ctx heavy transformations test on + s390 + - SAUCE: add -fcf-protection=none to retpoline flags + - SAUCE: usbip: ensure strings copied using strncpy are null-terminated + - SAUCE: usbip: add -Wno-address-of-packed-member to EXTRA_CFLAGS + - SAUCE: perf jvmti: ensure strncpy result is null-terminated + - update dkms package versions + - add removed zfs modules to modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v5.2 + + -- Seth Forshee Mon, 08 Jul 2019 07:13:41 -0500 + +linux (5.2.0-7.8) eoan; urgency=medium + + * Kernel panic upon resetting ixgbe SR-IOV VFIO virtual function using 5.0 + kernel (LP: #1829652) + - SAUCE: ixgbe: Avoid NULL pointer dereference with VF on non-IPsec hw + + * Hi1620 driver updates from upstream 5.2 merge window (LP: #1830815) + - net: hns3: initialize CPU reverse mapping + - net: hns3: refine the flow director handle + - net: hns3: add aRFS support for PF + - net: hns3: fix for FEC configuration + - RDMA/hns: Remove unnecessary print message in aeq + - RDMA/hns: Update CQE specifications + - RDMA/hns: Move spin_lock_irqsave to the correct place + - RDMA/hns: Remove jiffies operation in disable interrupt context + - RDMA/hns: Replace magic numbers with #defines + - net: hns3: fix compile warning without CONFIG_RFS_ACCEL + - net: hns3: fix for HNS3_RXD_GRO_SIZE_M macro + - net: hns3: add support for dump firmware statistics by debugfs + - net: hns3: use HCLGE_STATE_NIC_REGISTERED to indicate PF NIC client has + registered + - net: hns3: use HCLGE_STATE_ROCE_REGISTERED to indicate PF ROCE client has + registered + - net: hns3: use HCLGEVF_STATE_NIC_REGISTERED to indicate VF NIC client has + registered + - net: hns3: modify hclge_init_client_instance() + - net: hns3: modify hclgevf_init_client_instance() + - net: hns3: add handshake with hardware while doing reset + - net: hns3: stop schedule reset service while unloading driver + - net: hns3: adjust hns3_uninit_phy()'s location in the hns3_client_uninit() + - net: hns3: fix a memory leak issue for hclge_map_unmap_ring_to_vf_vector + - RDMA/hns: Bugfix for posting multiple srq work request + - net: hns3: remove redundant core reset + - net: hns3: don't configure new VLAN ID into VF VLAN table when it's full + - net: hns3: fix VLAN filter restore issue after reset + - net: hns3: set the port shaper according to MAC speed + - net: hns3: add a check to pointer in error_detected and slot_reset + - net: hns3: set ops to null when unregister ad_dev + - net: hns3: add handling of two bits in MAC tunnel interrupts + - net: hns3: remove setting bit of reset_requests when handling mac tunnel + interrupts + - net: hns3: add opcode about query and clear RAS & MSI-X to special opcode + - net: hns3: delay and separate enabling of NIC and ROCE HW errors + - RDMA/hns: fix inverted logic of readl read and shift + - RDMA/hns: Bugfix for filling the sge of srq + - net: hns3: log detail error info of ROCEE ECC and AXI errors + - net: hns3: fix wrong size of mailbox responding data + - net: hns3: make HW GRO handling compliant with SW GRO + - net: hns3: replace numa_node_id with numa_mem_id for buffer reusing + - net: hns3: refactor hns3_get_new_int_gl function + - net: hns3: trigger VF reset if a VF has an over_8bd_nfe_err + - net: hns3: delete the redundant user NIC codes + - net: hns3: small changes for magic numbers + - net: hns3: use macros instead of magic numbers + - net: hns3: refactor PF/VF RSS hash key configuration + - net: hns3: some modifications to simplify and optimize code + - net: hns3: fix some coding style issues + - net: hns3: delay setting of reset level for hw errors until slot_reset is + called + - net: hns3: fix avoid unnecessary resetting for the H/W errors which do not + require reset + - net: hns3: process H/W errors occurred before HNS dev initialization + - net: hns3: add recovery for the H/W errors occurred before the HNS dev + initialization + - net: hns3: some changes of MSI-X bits in PPU(RCB) + - net: hns3: extract handling of mpf/pf msi-x errors into functions + - net: hns3: clear restting state when initializing HW device + - net: hns3: free irq when exit from abnormal branch + - net: hns3: fix for dereferencing before null checking + - net: hns3: fix for skb leak when doing selftest + - net: hns3: delay ring buffer clearing during reset + - net: hns3: some variable modification + - net: hns3: fix dereference of ae_dev before it is null checked + - scsi: hisi_sas: Delete PHY timers when rmmod or probe failed + - scsi: hisi_sas: Fix the issue of argument mismatch of printing ecc errors + - scsi: hisi_sas: Reduce HISI_SAS_SGE_PAGE_CNT in size + - scsi: hisi_sas: Change the type of some numbers to unsigned + - scsi: hisi_sas: Ignore the error code between phy down to phy up + - scsi: hisi_sas: Disable stash for v3 hw + - net: hns3: Add missing newline at end of file + - RDMa/hns: Don't stuck in endless timeout loop + + * Sometimes touchpad automatically trigger double click (LP: #1833484) + - SAUCE: i2c: designware: Add disable runtime pm quirk + + * Add pointstick support on HP ZBook 17 G5 (LP: #1833387) + - Revert "HID: multitouch: Support ALPS PTP stick with pid 0x120A" + + * depmod may prefer unsigned l-r-m nvidia modules to signed modules + (LP: #1834479) + - [Packaging] dkms-build--nvidia-N -- clean up unsigned ko files + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/powerpc: disable signal_fuzzer test + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc7 + + -- Seth Forshee Mon, 01 Jul 2019 07:22:18 -0500 + +linux (5.2.0-6.7) eoan; urgency=medium + + * hinic: fix oops due to race in set_rx_mode (LP: #1832048) + - hinic: fix a bug in set rx mode + + * Miscellaneous Ubuntu changes + - rebase to v5.2-rc6 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc6 + + -- Seth Forshee Sun, 23 Jun 2019 23:36:11 -0500 + +linux (5.2.0-5.6) eoan; urgency=medium + + * QCA9377 isn't being recognized sometimes (LP: #1757218) + - SAUCE: USB: Disable USB2 LPM at shutdown + + * shiftfs: allow changing ro/rw for subvolumes (LP: #1832316) + - SAUCE: shiftfs: allow changing ro/rw for subvolumes + + * Miscellaneous Ubuntu changes + - update dkms package versions + - [Packaging] replace nvidia-418 dkms build with nvidia-430 + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc5 + + -- Seth Forshee Mon, 17 Jun 2019 15:04:12 -0500 + +linux (5.2.0-4.5) eoan; urgency=medium + + * arm64: cma_alloc errors at boot (LP: #1823753) + - [Config] Bump CMA_SIZE_MBYTES to 32 on arm64 + - dma-contiguous: add dma_{alloc,free}_contiguous() helpers + - dma-contiguous: use fallback alloc_pages for single pages + - dma-contiguous: fix !CONFIG_DMA_CMA version of dma_{alloc, + free}_contiguous() + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_MFD_TQMX86=n for s390x + - [Config] CONFIG_GPIO_AMD_FCH=n for s390x + - [Config] CONFIG_BACKLIGHT_CLASS_DEVICE=n on s390x + - [Config] CONFIG_LCD_CLASS_DEVICE=n for s390x + - [Config] CONFIG_DRM_ETNAVIV=m for armhf generic-lpae + - [Config] CONFIG_DRM_NOUVEAU_SVM=n + - [Config] CONFIG_HWMON=n for s390x + - [Config] CONFIG_NEW_LEDS=n for s390x + - [Config] CONFIG_MTD_NAND_OMAP2=y for armhf + - [Config] CONFIG_VOP_BUS=n for non-amd64 arches + - [Config] CONFIG_TI_CPSW_PHY_SEL=n + - [Config] CONFIG_INTERCONNECT=n for s390x + - [Config] CONFIG_SCSI_GDTH=n for s390x + - [Config] CONFIG_PACKING=n for s390x + - [Config] CONFIG_ARCH_MILBEAUT=y for armhf + - [Config] update annotations following config review + - update dkms package versions + - [Config] enable nvidia dkms build + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc4 + + -- Seth Forshee Mon, 10 Jun 2019 07:00:11 -0500 + +linux (5.2.0-3.4) eoan; urgency=medium + + * [18.04/18.10] File libperf-jvmti.so is missing in linux-tools-common deb on + Ubuntu (LP: #1761379) + - [Packaging] Support building libperf-jvmti.so + + * Miscellaneous Ubuntu changes + - SAUCE: Revert "bpf, selftest: test global data/bss/rodata sections" + - update dkms package versions + - [Config] enable zfs + - rebase to v5.2-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc3 + + -- Seth Forshee Sun, 02 Jun 2019 21:48:50 -0500 + +linux (5.2.0-2.3) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: perf arm64: Fix mksyscalltbl when system kernel headers are ahead of + the kernel + + -- Seth Forshee Tue, 28 May 2019 07:12:39 -0500 + +linux (5.2.0-1.2) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_INTEGRITY_PLATFORM_KEYRING=y + - update dkms package versions + - [Config] enable vbox dkms build + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc2 + + -- Seth Forshee Mon, 27 May 2019 21:11:27 -0500 + +linux (5.2.0-0.1) eoan; urgency=medium + + * Miscellaneous Ubuntu changes + - SAUCE: import aufs driver + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - update dkms package versions + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and + KEXEC_SIG_FORCE + - SAUCE: (efi-lockdown) kexec_file: Restrict at runtime if the kernel is + locked down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) lockdown: Print current->comm in restriction messages + - SAUCE: (efi-lockdown) kexec: Allow kexec_file() with appropriate IMA policy + when locked down + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Make use of platform keyring for module + signature verify + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - SAUCE: (efi-lockdown) arm64: add kernel config option to lock down when in + Secure Boot mode + - update dkms package versions + - [Config] disable vbox build + - SAUCE: s390: mark __cpacf_check_opcode() and cpacf_query_func() as + __always_inline + - SAUCE: IB/mlx5: use size_t instead of u64 when dividing + + [ Upstream Kernel Changes ] + + * Rebase to v5.2-rc1 + + -- Seth Forshee Tue, 21 May 2019 11:18:43 -0500 + +linux (5.2.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 21 May 2019 07:34:43 -0500 + +linux (5.1.0-2.2) eoan; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + + * Eoan update: v5.1.2 upstream stable release (LP: #1829050) + - x86/msr-index: Cleanup bit defines + - x86/speculation: Consolidate CPU whitelists + - x86/speculation/mds: Add basic bug infrastructure for MDS + - x86/speculation/mds: Add BUG_MSBDS_ONLY + - x86/kvm: Expose X86_FEATURE_MD_CLEAR to guests + - x86/speculation/mds: Add mds_clear_cpu_buffers() + - x86/speculation/mds: Clear CPU buffers on exit to user + - x86/kvm/vmx: Add MDS protection when L1D Flush is not active + - x86/speculation/mds: Conditionally clear CPU buffers on idle entry + - x86/speculation/mds: Add mitigation control for MDS + - x86/speculation/mds: Add sysfs reporting for MDS + - x86/speculation/mds: Add mitigation mode VMWERV + - Documentation: Move L1TF to separate directory + - Documentation: Add MDS vulnerability documentation + - x86/speculation/mds: Add mds=full,nosmt cmdline option + - x86/speculation: Move arch_smt_update() call to after mitigation decisions + - x86/speculation/mds: Add SMT warning message + - x86/speculation/mds: Fix comment + - x86/speculation/mds: Print SMT vulnerable on MSBDS with mitigations off + - cpu/speculation: Add 'mitigations=' cmdline option + - x86/speculation: Support 'mitigations=' cmdline option + - powerpc/speculation: Support 'mitigations=' cmdline option + - s390/speculation: Support 'mitigations=' cmdline option + - x86/speculation/mds: Add 'mitigations=' support for MDS + - x86/mds: Add MDSUM variant to the MDS documentation + - Documentation: Correct the possible MDS sysfs values + - x86/speculation/mds: Fix documentation typo + - Linux 5.1.2 + + * Eoan update: v5.1.1 upstream stable release (LP: #1829046) + - Drivers: hv: vmbus: Remove the undesired put_cpu_ptr() in hv_synic_cleanup() + - ubsan: Fix nasty -Wbuiltin-declaration-mismatch GCC-9 warnings + - staging: greybus: power_supply: fix prop-descriptor request size + - staging: wilc1000: Avoid GFP_KERNEL allocation from atomic context. + - staging: most: cdev: fix chrdev_region leak in mod_exit + - staging: most: sound: pass correct device when creating a sound card + - usb: dwc3: Allow building USB_DWC3_QCOM without EXTCON + - usb: dwc3: Fix default lpm_nyet_threshold value + - USB: serial: f81232: fix interrupt worker not stop + - USB: cdc-acm: fix unthrottle races + - usb-storage: Set virt_boundary_mask to avoid SG overflows + - genirq: Prevent use-after-free and work list corruption + - intel_th: pci: Add Comet Lake support + - iio: adc: qcom-spmi-adc5: Fix of-based module autoloading + - cpufreq: armada-37xx: fix frequency calculation for opp + - ACPI / LPSS: Use acpi_lpss_* instead of acpi_subsys_* functions for + hibernate + - soc: sunxi: Fix missing dependency on REGMAP_MMIO + - scsi: lpfc: change snprintf to scnprintf for possible overflow + - scsi: qla2xxx: Fix incorrect region-size setting in optrom SYSFS routines + - scsi: qla2xxx: Set remote port devloss timeout to 0 + - scsi: qla2xxx: Fix device staying in blocked state + - Bluetooth: hidp: fix buffer overflow + - Bluetooth: Align minimum encryption key size for LE and BR/EDR connections + - Bluetooth: Fix not initializing L2CAP tx_credits + - Bluetooth: hci_bcm: Fix empty regulator supplies for Intel Macs + - UAS: fix alignment of scatter/gather segments + - ASoC: Intel: avoid Oops if DMA setup fails + - i3c: Fix a shift wrap bug in i3c_bus_set_addr_slot_status() + - locking/futex: Allow low-level atomic operations to return -EAGAIN + - arm64: futex: Bound number of LDXR/STXR loops in FUTEX_WAKE_OP + - Linux 5.1.1 + + * shiftfs: lock security sensitive superblock flags (LP: #1827122) + - SAUCE: shiftfs: lock down certain superblock flags + + * Please package libbpf (which is done out of the kernel src) in Debian [for + 19.10] (LP: #1826410) + - SAUCE: tools -- fix add ability to disable libbfd + + * ratelimit cma_alloc messages (LP: #1828092) + - SAUCE: cma: ratelimit cma_alloc error messages + + * Headphone jack switch sense is inverted: plugging in headphones disables + headphone output (LP: #1824259) + - ASoC: rt5645: Headphone Jack sense inverts on the LattePanda board + + * There are 4 HDMI/Displayport audio output listed in sound setting without + attach any HDMI/DP monitor (LP: #1827967) + - ALSA: hda/hdmi - Read the pin sense from register when repolling + - ALSA: hda/hdmi - Consider eld_valid when reporting jack event + + * CONFIG_LOG_BUF_SHIFT set to 14 is too low on arm64 (LP: #1824864) + - [Config] CONFIG_LOG_BUF_SHIFT=18 on all 64bit arches + + * CTAUTO:DevOps:860.50:devops4fp1:Error occurred during LINUX Dmesg error + Checking for all LINUX clients for devops4p10 (LP: #1766201) + - SAUCE: integrity: downgrade error to warning + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [SRU] Please sync vbox modules from virtualbox 6.0.6 on next kernel update + (LP: #1825210) + - vbox-update: updates for renamed makefiles + - ubuntu: vbox -- update to 6.0.6-dfsg-1 + + * autofs kernel module missing (LP: #1824333) + - [Config] Update autofs4 path in inclusion list + + * The Realtek card reader does not enter PCIe 1.1/1.2 (LP: #1825487) + - SAUCE: misc: rtsx: Fixed rts5260 power saving parameter and sd glitch + + * CVE-2019-3874 + - sctp: implement memory accounting on tx path + - sctp: implement memory accounting on rx path + + * apparmor does not start in Disco LXD containers (LP: #1824812) + - SAUCE: shiftfs: use separate llseek method for directories + + * Miscellaneous Ubuntu changes + - [Packaging] autoreconstruct -- remove for -rc kernels + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) furter KEXEC_VERIFY_SIG -> KEXEC_SIG updates + - [Config] (efi-lockdown): update configs after efi lockdown patch refresh + - [Packaging] don't delete efi_parser.c + - vbox-update -- do not fix up KERN_DIR or KBUILD_EXTMOD + - ubuntu: vbox -- update to 6.0.6-dfsg-2 + - add nvidia-418 dkms build + - remove virtualbox guest drivers + - [Packaging] dkms-build -- expand paths searched for make.log files + - add virtualbox-guest-dkms dkms package build + - enable vbox dkms build for amd64 and i386 + - [Config] update configs for v5.1(-rc7)? rebase + - update dkms package versions + - Add the ability to lock down access to the running kernel image + - Enforce module signatures if the kernel is locked down + - Restrict /dev/{mem,kmem,port} when the kernel is locked down + - kexec_load: Disable at runtime if the kernel is locked down + - Copy secure_boot flag in boot params across kexec reboot + - kexec_file: split KEXEC_VERIFY_SIG into KEXEC_SIG and KEXEC_SIG_FORCE + - kexec_file: Restrict at runtime if the kernel is locked down + - hibernate: Disable when the kernel is locked down + - uswsusp: Disable when the kernel is locked down + - PCI: Lock down BAR access when the kernel is locked down + - x86: Lock down IO port access when the kernel is locked down + - x86/msr: Restrict MSR access when the kernel is locked down + - ACPI: Limit access to custom_method when the kernel is locked down + - acpi: Ignore acpi_rsdp kernel param when the kernel has been locked down + - acpi: Disable ACPI table override if the kernel is locked down + - acpi: Disable APEI error injection if the kernel is locked down + - Prohibit PCMCIA CIS storage when the kernel is locked down + - Lock down TIOCSSERIAL + - Lock down module params that specify hardware parameters (eg. ioport) + - x86/mmiotrace: Lock down the testmmiotrace module + - Lock down /proc/kcore + - Lock down kprobes + - bpf: Restrict kernel image access functions when the kernel is locked down + - Lock down perf + - debugfs: Restrict debugfs when the kernel is locked down + - lockdown: Print current->comm in restriction messages + - kexec: Allow kexec_file() with appropriate IMA policy when locked down + - Make get_cert_list() not complain about cert lists that aren't present. + - Add efi_status_to_str() and rework efi_status_to_err(). + - Make get_cert_list() use efi_status_to_str() to print error messages. + - efi: Add an EFI_SECURE_BOOT flag to indicate secure boot mode + - efi: Lock down the kernel if booted in secure boot mode + - KEYS: Make use of platform keyring for module signature verify + + * Miscellaneous upstream changes + - ALSA: hdea/realtek - Headset fixup for System76 Gazelle (gaze14) + + -- Seth Forshee Tue, 14 May 2019 12:32:56 -0500 + +linux (5.1.0-1.1) eoan; urgency=medium + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging]: really drop snapdragon + + * Miscellaneous Ubuntu changes + - SAUCE: fix vbox use of MAP_SHARED + - SAUCE: fix vbox use of vm_fault_t + - [Packaging] disable ZFS + - [Packaging] disable nvidia + - SAUCE: perf annotate: Fix build on 32 bit for BPF annotation + - [Config]: updateconfig after rebase to v5.1-rc + - [Config]: build ETNAVIV only on arm platforms + - [Config]: Disable CMA on non-arm platforms + - [Config]: MMC_CQHCI is needed by some built-in drivers + - [Config]: a.out support has been deprecated + - [Config]: R3964 was marked as BROKEN + - [Config]: Add SENSIRION_SGP30 module + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: tools: lib/bpf -- add generated headers to search + path" + - Revert "UBUNTU: SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK" + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 10:03:25 -0300 + +linux (5.1.0-0.0) eoan; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Thu, 25 Apr 2019 09:49:47 -0300 + +linux (5.0.0-13.14) disco; urgency=medium + + * linux: 5.0.0-13.14 -proposed tracker (LP: #1824819) + + * Display only has 640x480 (LP: #1824677) + - Revert "UBUNTU: SAUCE: drm/nouveau: Disable nouveau driver by default" + + * shiftfs: use after free when checking mount options (LP: #1824735) + - SAUCE: shiftfs: prevent use-after-free when verifying mount options + + -- Seth Forshee Mon, 15 Apr 2019 09:11:23 -0500 + +linux (5.0.0-12.13) disco; urgency=medium + + * linux: 5.0.0-12.13 -proposed tracker (LP: #1824726) + + * Linux 5.0 black screen on boot, display flickers (i915 regression with + certain laptop panels) (LP: #1824216) + - drm/i915/dp: revert back to max link rate and lane count on eDP + + * kernel BUG at fs/attr.c:287 when using shiftfs (LP: #1824717) + - SAUCE: shiftfs: fix passing of attrs to underaly for setattr + + -- Seth Forshee Sun, 14 Apr 2019 13:38:05 -0500 + +linux (5.0.0-11.12) disco; urgency=medium + + * linux: 5.0.0-11.12 -proposed tracker (LP: #1824383) + + * hns3: PPU_PF_ABNORMAL_INT_ST over_8bd_no_fe found [error status=0x1] + (LP: #1824194) + - net: hns3: fix for not calculating tx bd num correctly + + * disco: unable to use iptables/enable ufw under -virtual kernel + (LP: #1823862) + - [Packaging] add bpfilter to linux-modules + + * Make shiftfs a module rather than built-in (LP: #1824354) + - [Config] CONFIG_SHIFT_FS=m + + * shiftfs: chown sets untranslated ids in lower fs (LP: #1824350) + - SAUCE: shiftfs: use translated ids when chaning lower fs attrs + + * [Hyper-V] KVP daemon fails to start on first boot of disco VM (LP: #1820063) + - [Packaging] bind hv_kvp_daemon startup to hv_kvp device + + -- Seth Forshee Thu, 11 Apr 2019 10:17:19 -0500 + +linux (5.0.0-10.11) disco; urgency=medium + + * linux: 5.0.0-10.11 -proposed tracker (LP: #1823936) + + * Apparmor enforcement failure in lxc selftests (LP: #1823379) + - SAUCE: apparmor: Restore Y/N in /sys for apparmor's "enabled" + + * systemd cause kernel trace "BUG: unable to handle kernel paging request at + 6db23a14" on Cosmic i386 (LP: #1813244) + - openvswitch: fix flow actions reallocation + + -- Seth Forshee Tue, 09 Apr 2019 08:30:38 -0500 + +linux (5.0.0-9.10) disco; urgency=medium + + * linux: 5.0.0-9.10 -proposed tracker (LP: #1823228) + + * Packaging resync (LP: #1786013) + - [Packaging] resync git-ubuntu-log + - [Packaging] update helper scripts + - [Packaging] resync retpoline extraction + + * Huawei Hi1822 NIC has poor performance (LP: #1820187) + - net-next/hinic: replace disable_irq_nosync/enable_irq + + * Add uid shifting overlay filesystem (shiftfs) (LP: #1823186) + - shiftfs: uid/gid shifting bind mount + - shiftfs: rework and extend + - shiftfs: support some btrfs ioctls + - [Config] enable shiftfs + + * Cannot boot or install - have to use nomodeset (LP: #1821820) + - Revert "drm/i915/fbdev: Actually configure untiled displays" + + * Disco update: v5.0.6 upstream stable release (LP: #1823060) + - netfilter: nf_tables: fix set double-free in abort path + - dccp: do not use ipv6 header for ipv4 flow + - genetlink: Fix a memory leak on error path + - gtp: change NET_UDP_TUNNEL dependency to select + - ipv6: make ip6_create_rt_rcu return ip6_null_entry instead of NULL + - mac8390: Fix mmio access size probe + - mISDN: hfcpci: Test both vendor & device ID for Digium HFC4S + - net: aquantia: fix rx checksum offload for UDP/TCP over IPv6 + - net: datagram: fix unbounded loop in __skb_try_recv_datagram() + - net/packet: Set __GFP_NOWARN upon allocation in alloc_pg_vec + - net: phy: meson-gxl: fix interrupt support + - net: rose: fix a possible stack overflow + - net: stmmac: fix memory corruption with large MTUs + - net-sysfs: call dev_hold if kobject_init_and_add success + - net: usb: aqc111: Extend HWID table by QNAP device + - packets: Always register packet sk in the same order + - rhashtable: Still do rehash when we get EEXIST + - sctp: get sctphdr by offset in sctp_compute_cksum + - sctp: use memdup_user instead of vmemdup_user + - tcp: do not use ipv6 header for ipv4 flow + - tipc: allow service ranges to be connect()'ed on RDM/DGRAM + - tipc: change to check tipc_own_id to return in tipc_net_stop + - tipc: fix cancellation of topology subscriptions + - tun: properly test for IFF_UP + - vrf: prevent adding upper devices + - vxlan: Don't call gro_cells_destroy() before device is unregistered + - thunderx: enable page recycling for non-XDP case + - thunderx: eliminate extra calls to put_page() for pages held for recycling + - net: dsa: mv88e6xxx: fix few issues in mv88e6390x_port_set_cmode + - net: mii: Fix PAUSE cap advertisement from linkmode_adv_to_lcl_adv_t() + helper + - net: phy: don't clear BMCR in genphy_soft_reset + - r8169: fix cable re-plugging issue + - ila: Fix rhashtable walker list corruption + - tun: add a missing rcu_read_unlock() in error path + - powerpc/fsl: Fix the flush of branch predictor. + - Btrfs: fix incorrect file size after shrinking truncate and fsync + - btrfs: remove WARN_ON in log_dir_items + - btrfs: don't report readahead errors and don't update statistics + - btrfs: Fix bound checking in qgroup_trace_new_subtree_blocks + - btrfs: Avoid possible qgroup_rsv_size overflow in + btrfs_calculate_inode_block_rsv_size + - Btrfs: fix assertion failure on fsync with NO_HOLES enabled + - locks: wake any locks blocked on request before deadlock check + - tracing: initialize variable in create_dyn_event() + - ARM: imx6q: cpuidle: fix bug that CPU might not wake up at expected time + - powerpc: bpf: Fix generation of load/store DW instructions + - vfio: ccw: only free cp on final interrupt + - NFS: Fix nfs4_lock_state refcounting in nfs4_alloc_{lock,unlock}data() + - NFS: fix mount/umount race in nlmclnt. + - NFSv4.1 don't free interrupted slot on open + - net: dsa: qca8k: remove leftover phy accessors + - ALSA: rawmidi: Fix potential Spectre v1 vulnerability + - ALSA: seq: oss: Fix Spectre v1 vulnerability + - ALSA: pcm: Fix possible OOB access in PCM oss plugins + - ALSA: pcm: Don't suspend stream in unrecoverable PCM state + - ALSA: hda/realtek - Fixed Headset Mic JD not stable + - ALSA: hda/realtek: merge alc_fixup_headset_jack to alc295_fixup_chromebook + - ALSA: hda/realtek - Add support headset mode for DELL WYSE AIO + - ALSA: hda/realtek - Add support headset mode for New DELL WYSE NB + - ALSA: hda/realtek: Enable headset MIC of Acer AIO with ALC286 + - ALSA: hda/realtek: Enable headset MIC of Acer Aspire Z24-890 with ALC286 + - ALSA: hda/realtek - Add support for Acer Aspire E5-523G/ES1-432 headset mic + - ALSA: hda/realtek: Enable ASUS X441MB and X705FD headset MIC with ALC256 + - ALSA: hda/realtek: Enable headset mic of ASUS P5440FF with ALC256 + - ALSA: hda/realtek: Enable headset MIC of ASUS X430UN and X512DK with ALC256 + - ALSA: hda/realtek - Fix speakers on Acer Predator Helios 500 Ryzen laptops + - kbuild: modversions: Fix relative CRC byte order interpretation + - fs/open.c: allow opening only regular files during execve() + - ocfs2: fix inode bh swapping mixup in ocfs2_reflink_inodes_lock + - scsi: sd: Fix a race between closing an sd device and sd I/O + - scsi: sd: Quiesce warning if device does not report optimal I/O size + - scsi: zfcp: fix rport unblock if deleted SCSI devices on Scsi_Host + - scsi: zfcp: fix scsi_eh host reset with port_forced ERP for non-NPIV FCP + devices + - drm/rockchip: vop: reset scale mode when win is disabled + - tty/serial: atmel: Add is_half_duplex helper + - tty/serial: atmel: RS485 HD w/DMA: enable RX after TX is stopped + - tty: mxs-auart: fix a potential NULL pointer dereference + - tty: atmel_serial: fix a potential NULL pointer dereference + - tty: serial: qcom_geni_serial: Initialize baud in qcom_geni_console_setup + - staging: comedi: ni_mio_common: Fix divide-by-zero for DIO cmdtest + - staging: olpc_dcon_xo_1: add missing 'const' qualifier + - staging: speakup_soft: Fix alternate speech with other synths + - staging: vt6655: Remove vif check from vnt_interrupt + - staging: vt6655: Fix interrupt race condition on device start up. + - staging: erofs: fix to handle error path of erofs_vmap() + - staging: erofs: fix error handling when failed to read compresssed data + - staging: erofs: keep corrupted fs from crashing kernel in erofs_readdir() + - serial: max310x: Fix to avoid potential NULL pointer dereference + - serial: mvebu-uart: Fix to avoid a potential NULL pointer dereference + - serial: sh-sci: Fix setting SCSCR_TIE while transferring data + - USB: serial: cp210x: add new device id + - USB: serial: ftdi_sio: add additional NovaTech products + - USB: serial: mos7720: fix mos_parport refcount imbalance on error path + - USB: serial: option: set driver_info for SIM5218 and compatibles + - USB: serial: option: add support for Quectel EM12 + - USB: serial: option: add Olicard 600 + - ACPI / CPPC: Fix guaranteed performance handling + - Disable kgdboc failed by echo space to /sys/module/kgdboc/parameters/kgdboc + - fs/proc/proc_sysctl.c: fix NULL pointer dereference in put_links + - drivers/block/zram/zram_drv.c: fix idle/writeback string compare + - blk-mq: fix sbitmap ws_active for shared tags + - cpufreq: intel_pstate: Also use CPPC nominal_perf for base_frequency + - cpufreq: scpi: Fix use after free + - drm/vgem: fix use-after-free when drm_gem_handle_create() fails + - drm/vkms: fix use-after-free when drm_gem_handle_create() fails + - drm/i915: Mark AML 0x87CA as ULX + - drm/i915/gvt: Fix MI_FLUSH_DW parsing with correct index check + - drm/i915/icl: Fix the TRANS_DDI_FUNC_CTL2 bitfield macro + - gpio: exar: add a check for the return value of ida_simple_get fails + - gpio: adnp: Fix testing wrong value in adnp_gpio_direction_input + - phy: sun4i-usb: Support set_mode to USB_HOST for non-OTG PHYs + - usb: mtu3: fix EXTCON dependency + - USB: gadget: f_hid: fix deadlock in f_hidg_write() + - usb: common: Consider only available nodes for dr_mode + - mm/memory.c: fix modifying of page protection by insert_pfn() + - usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk + - xhci: Fix port resume done detection for SS ports with LPM enabled + - usb: xhci: dbc: Don't free all memory with spinlock held + - xhci: Don't let USB3 ports stuck in polling state prevent suspend + - usb: cdc-acm: fix race during wakeup blocking TX traffic + - usb: typec: tcpm: Try PD-2.0 if sink does not respond to 3.0 source-caps + - usb: typec: Fix unchecked return value + - mm/hotplug: fix offline undo_isolate_page_range() + - mm: add support for kmem caches in DMA32 zone + - iommu/io-pgtable-arm-v7s: request DMA32 memory, and improve debugging + - mm: mempolicy: make mbind() return -EIO when MPOL_MF_STRICT is specified + - mm/debug.c: fix __dump_page when mapping->host is not set + - mm/memory_hotplug.c: fix notification in offline error path + - mm/page_isolation.c: fix a wrong flag in set_migratetype_isolate() + - mm/migrate.c: add missing flush_dcache_page for non-mapped page migrate + - perf pmu: Fix parser error for uncore event alias + - perf intel-pt: Fix TSC slip + - objtool: Query pkg-config for libelf location + - powerpc/pseries/energy: Use OF accessor functions to read ibm,drc-indexes + - powerpc/64: Fix memcmp reading past the end of src/dest + - powerpc/pseries/mce: Fix misleading print for TLB mutlihit + - watchdog: Respect watchdog cpumask on CPU hotplug + - cpu/hotplug: Prevent crash when CPU bringup fails on CONFIG_HOTPLUG_CPU=n + - x86/smp: Enforce CONFIG_HOTPLUG_CPU when SMP=y + - KVM: Reject device ioctls from processes other than the VM's creator + - KVM: x86: Emulate MSR_IA32_ARCH_CAPABILITIES on AMD hosts + - KVM: x86: update %rip after emulating IO + - bpf: do not restore dst_reg when cur_state is freed + - mt76x02u: use usb_bulk_msg to upload firmware + - Linux 5.0.6 + + * RDMA/hns updates for disco (LP: #1822897) + - RDMA/hns: Fix the bug with updating rq head pointer when flush cqe + - RDMA/hns: Bugfix for the scene without receiver queue + - RDMA/hns: Add constraint on the setting of local ACK timeout + - RDMA/hns: Modify the pbl ba page size for hip08 + - RDMA/hns: RDMA/hns: Assign rq head pointer when enable rq record db + - RDMA/hns: Add the process of AEQ overflow for hip08 + - RDMA/hns: Add SCC context allocation support for hip08 + - RDMA/hns: Add SCC context clr support for hip08 + - RDMA/hns: Add timer allocation support for hip08 + - RDMA/hns: Remove set but not used variable 'rst' + - RDMA/hns: Make some function static + - RDMA/hns: Fix the Oops during rmmod or insmod ko when reset occurs + - RDMA/hns: Fix the chip hanging caused by sending mailbox&CMQ during reset + - RDMA/hns: Fix the chip hanging caused by sending doorbell during reset + - RDMA/hns: Limit minimum ROCE CQ depth to 64 + - RDMA/hns: Fix the state of rereg mr + - RDMA/hns: Set allocated memory to zero for wrid + - RDMA/hns: Delete useful prints for aeq subtype event + - RDMA/hns: Configure capacity of hns device + - RDMA/hns: Modify qp&cq&pd specification according to UM + - RDMA/hns: Bugfix for set hem of SCC + - RDMA/hns: Use GFP_ATOMIC in hns_roce_v2_modify_qp + + * autopkgtests run too often, too much and don't skip enough (LP: #1823056) + - Set +x on rebuild testcase. + - Skip rebuild test, for regression-suite deps. + - Make ubuntu-regression-suite skippable on unbootable kernels. + - make rebuild use skippable error codes when skipping. + - Only run regression-suite, if requested to. + + * touchpad not working on lenovo yoga 530 (LP: #1787775) + - Revert "UBUNTU: SAUCE: i2c:amd Depends on ACPI" + - Revert "UBUNTU: SAUCE: i2c:amd move out pointer in union i2c_event_base" + - i2c: add extra check to safe DMA buffer helper + - i2c: Add drivers for the AMD PCIe MP2 I2C controller + - [Config] Update config for AMD MP2 I2C driver + + * Detect SMP PHY control command errors (LP: #1822680) + - scsi: libsas: Check SMP PHY control function result + + * disable a.out support (LP: #1818552) + - [Config] Disable a.out support + - [Config] remove binfmt_aout from abi for i386 lowlatency + + * bionic: fork out linux-snapdragon into its own topic kernel (LP: #1820868) + - [Packaging] remove snapdragon flavour support + - Revert "UBUNTU: SAUCE: (snapdragon) drm/msm/adv7511: wrap hacks under + CONFIG_ADV7511_SNAPDRAGON_HACKS #ifdefs" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: skip address change if dt + addr == default addr" + - Revert "UBUNTU: SAUCE: (snapdragon) DT: leds: Add Qualcomm Light Pulse + Generator binding" + - Revert "UBUNTU: SAUCE: (snapdragon) MAINTAINERS: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) dt-bindings: media: Binding document for + Qualcomm Camera Control Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) leds: Add driver for Qualcomm LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/adv7511: Don't rely on + interrupts for EDID parsing" + - Revert "UBUNTU: SAUCE: (snapdragon) drm/bridge/adv7511: Delay clearing of + HPD interrupt status" + - Revert "UBUNTU: SAUCE: (snapdragon) media: ov5645: Fix I2C address" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix I2C address bug" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c-qcom-cci: Fix run queue completion + timeout" + - Revert "UBUNTU: SAUCE: (snapdragon) camss: Do not register if no cameras are + present" + - Revert "UBUNTU: SAUCE: (snapdragon) i2c: Add Qualcomm Camera Control + Interface driver" + - Revert "UBUNTU: SAUCE: (snapdragon) ov5645: I2C address change" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Allow + REGULATOR_QCOM_SMD_RPM=m" + - Revert "UBUNTU: SAUCE: (snapdragon) cpufreq: Add apq8016 to cpufreq-dt- + platdev blacklist" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Add a helper to get an opp + regulator for device" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: HACK: Allow to set regulator + without opp_list" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Drop RCU usage in + dev_pm_opp_adjust_voltage()" + - Revert "UBUNTU: SAUCE: (snapdragon) PM / OPP: Support adjusting OPP voltages + at runtime" + - Revert "UBUNTU: SAUCE: (snapdragon) regulator: smd: Add floor and corner + operations" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Register with cpufreq- + dt" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: fix with new + reg_sequence structures" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: cpr: Use raw mem access for + qfprom" + - Revert "UBUNTU: SAUCE: (snapdragon) power: avs: Add support for CPR (Core + Power Reduction)" + - Revert "UBUNTU: SAUCE: (snapdragon) HACK: drm/msm/iommu: Remove runtime_put + calls in map/unmap" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable LEDS_QCOM_LPG" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'BBR' TCP + congestion algorithm" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable 'fq' and + 'fq_codel' qdiscs" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable + 'schedutil' CPUfreq governor" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: set USB_CONFIG_F_FS in + distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CONFIG_USB_CONFIGFS_F_FS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add freq stat to sysfs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: Enable camera drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: disable ANALOG_TV and + DIGITAL_TV" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: add more USB net + drivers" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable BT_QCOMSMD" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable + CFG80211_DEFAULT_PS by default" + - Revert "UBUNTU: SAUCE: (snapdragon) Force the SMD regulator driver to be + compiled-in" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs: enable dm_mod and + dm_crypt" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: Enable a53/apcs and + avs" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable QCOM Venus" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: distro.config: enable debug + friendly USB network adpater" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: configs: enable WCN36xx" + - Revert "UBUNTU: SAUCE: (snapdragon) kernel: configs; add distro.config" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable QCOM audio + drivers for APQ8016 and DB410c" + - Revert "UBUNTU: SAUCE: (snapdragon) arm64: defconfig: enable REMOTEPROC" + - [Config] fix abi for remove i2c-qcom-cci module + - [Config] update annotations + - [Config] update configs following snapdragon removal + + * Disco update: v5.0.5 upstream stable release (LP: #1822671) + - Revert "ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec" + - ALSA: hda - add Lenovo IdeaCentre B550 to the power_save_blacklist + - ALSA: firewire-motu: use 'version' field of unit directory to identify model + - mmc: pxamci: fix enum type confusion + - mmc: alcor: fix DMA reads + - mmc: mxcmmc: "Revert mmc: mxcmmc: handle highmem pages" + - mmc: renesas_sdhi: limit block count to 16 bit for old revisions + - drm/amdgpu: fix invalid use of change_bit + - drm/vmwgfx: Don't double-free the mode stored in par->set_mode + - drm/vmwgfx: Return 0 when gmrid::get_node runs out of ID's + - iommu/amd: fix sg->dma_address for sg->offset bigger than PAGE_SIZE + - iommu/iova: Fix tracking of recently failed iova address + - libceph: wait for latest osdmap in ceph_monc_blacklist_add() + - udf: Fix crash on IO error during truncate + - mips: loongson64: lemote-2f: Add IRQF_NO_SUSPEND to "cascade" irqaction. + - MIPS: Ensure ELF appended dtb is relocated + - MIPS: Fix kernel crash for R6 in jump label branch function + - powerpc/vdso64: Fix CLOCK_MONOTONIC inconsistencies across Y2038 + - powerpc/security: Fix spectre_v2 reporting + - net/mlx5: Fix DCT creation bad flow + - scsi: core: Avoid that a kernel warning appears during system resume + - scsi: qla2xxx: Fix FC-AL connection target discovery + - scsi: ibmvscsi: Protect ibmvscsi_head from concurrent modificaiton + - scsi: ibmvscsi: Fix empty event pool access during host removal + - futex: Ensure that futex address is aligned in handle_futex_death() + - perf probe: Fix getting the kernel map + - objtool: Move objtool_file struct off the stack + - irqchip/gic-v3-its: Fix comparison logic in lpi_range_cmp + - clocksource/drivers/riscv: Fix clocksource mask + - ALSA: ac97: Fix of-node refcount unbalance + - ext4: fix NULL pointer dereference while journal is aborted + - ext4: fix data corruption caused by unaligned direct AIO + - ext4: brelse all indirect buffer in ext4_ind_remove_space() + - media: v4l2-ctrls.c/uvc: zero v4l2_event + - Bluetooth: hci_uart: Check if socket buffer is ERR_PTR in h4_recv_buf() + - Bluetooth: Fix decrementing reference count twice in releasing socket + - Bluetooth: hci_ldisc: Initialize hci_dev before open() + - Bluetooth: hci_ldisc: Postpone HCI_UART_PROTO_READY bit set in + hci_uart_set_proto() + - drm/vkms: Fix flush_work() without INIT_WORK(). + - RDMA/cma: Rollback source IP address if failing to acquire device + - f2fs: fix to avoid deadlock of atomic file operations + - aio: simplify - and fix - fget/fput for io_submit() + - netfilter: ebtables: remove BUGPRINT messages + - loop: access lo_backing_file only when the loop device is Lo_bound + - x86/unwind: Handle NULL pointer calls better in frame unwinder + - x86/unwind: Add hardcoded ORC entry for NULL + - locking/lockdep: Add debug_locks check in __lock_downgrade() + - ALSA: hda - Record the current power state before suspend/resume calls + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - Linux 5.0.5 + + * hisi_sas updates for disco (LP: #1822385) + - scsi: hisi_sas: send primitive NOTIFY to SSP situation only + - scsi: hisi_sas: shutdown axi bus to avoid exception CQ returned + - scsi: hisi_sas: remove the check of sas_dev status in + hisi_sas_I_T_nexus_reset() + - scsi: hisi_sas: Remove unused parameter of function hisi_sas_alloc() + - scsi: hisi_sas: Reject setting programmed minimum linkrate > 1.5G + - scsi: hisi_sas: Fix losing directly attached disk when hot-plug + - scsi: hisi_sas: Correct memory allocation size for DQ debugfs + - scsi: hisi_sas: Some misc tidy-up + - scsi: hisi_sas: Fix to only call scsi_get_prot_op() for non-NULL scsi_cmnd + - scsi: hisi_sas: Add missing seq_printf() call in hisi_sas_show_row_32() + - scsi: hisi_sas: Add support for DIX feature for v3 hw + - scsi: hisi_sas: Add manual trigger for debugfs dump + - scsi: hisi_sas: change queue depth from 512 to 4096 + - scsi: hisi_sas: Issue internal abort on all relevant queues + - scsi: hisi_sas: Use pci_irq_get_affinity() for v3 hw as experimental + - scsi: hisi_sas: Do some more tidy-up + - scsi: hisi_sas: Change return variable type in phy_up_v3_hw() + - scsi: hisi_sas: Fix a timeout race of driver internal and SMP IO + - scsi: hisi_sas: print PHY RX errors count for later revision of v3 hw + - scsi: hisi_sas: Set PHY linkrate when disconnected + - scsi: hisi_sas: Send HARD RESET to clear the previous affiliation of STP + target port + - scsi: hisi_sas: Change SERDES_CFG init value to increase reliability of + HiLink + - scsi: hisi_sas: Add softreset in hisi_sas_I_T_nexus_reset() + + * [Patch][Raven 2] kernel 5.0.0 cannot boot because of psp response + (LP: #1822267) + - drm/amdgpu/psp: Fix can't detect psp INVOKE command failed + - drm/amdgpu/psp: ignore psp response status + + * 3b080b2564287be91605bfd1d5ee985696e61d3c in ubuntu_btrfs_kernel_fixes + triggers system hang on i386 (LP: #1812845) + - btrfs: raid56: properly unmap parity page in finish_parity_scrub() + + * enable CONFIG_DRM_BOCHS (LP: #1795857) + - [Config] Reenable DRM_BOCHS as module + + * [Dell Precision 7530/5530 with Nvidia Quadro P1000] Live USB freezes or + cannot complete install when nouveau driver is loaded (crashing in GP100 + code) (LP: #1822026) + - SAUCE: drm/nouveau: Disable nouveau driver by default + + * Need to add Intel CML related pci-id's (LP: #1821863) + - drm/i915/cml: Add CML PCI IDS + - drm/i915/cml: Introduce Comet Lake PCH + + * ARM: Add support for the SDEI interface (LP: #1822005) + - ACPI / APEI: Don't wait to serialise with oops messages when panic()ing + - ACPI / APEI: Remove silent flag from ghes_read_estatus() + - ACPI / APEI: Switch estatus pool to use vmalloc memory + - ACPI / APEI: Make hest.c manage the estatus memory pool + - ACPI / APEI: Make estatus pool allocation a static size + - ACPI / APEI: Don't store CPER records physical address in struct ghes + - ACPI / APEI: Remove spurious GHES_TO_CLEAR check + - ACPI / APEI: Don't update struct ghes' flags in read/clear estatus + - ACPI / APEI: Generalise the estatus queue's notify code + - ACPI / APEI: Don't allow ghes_ack_error() to mask earlier errors + - ACPI / APEI: Move NOTIFY_SEA between the estatus-queue and NOTIFY_NMI + - ACPI / APEI: Switch NOTIFY_SEA to use the estatus queue + - KVM: arm/arm64: Add kvm_ras.h to collect kvm specific RAS plumbing + - arm64: KVM/mm: Move SEA handling behind a single 'claim' interface + - ACPI / APEI: Move locking to the notification helper + - ACPI / APEI: Let the notification helper specify the fixmap slot + - ACPI / APEI: Pass ghes and estatus separately to avoid a later copy + - ACPI / APEI: Make GHES estatus header validation more user friendly + - ACPI / APEI: Split ghes_read_estatus() to allow a peek at the CPER length + - ACPI / APEI: Only use queued estatus entry during in_nmi_queue_one_entry() + - ACPI / APEI: Use separate fixmap pages for arm64 NMI-like notifications + - firmware: arm_sdei: Add ACPI GHES registration helper + - ACPI / APEI: Add support for the SDEI GHES Notification type + + * CVE-2019-9857 + - inotify: Fix fsnotify_mark refcount leak in inotify_update_existing_watch() + + * scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery (LP: #1821408) + - scsi: libsas: Support SATA PHY connection rate unmatch fixing during + discovery + + * Qualcomm Atheros QCA9377 wireless does not work (LP: #1818204) + - platform/x86: ideapad-laptop: Add Ideapad 530S-14ARR to no_hw_rfkill list + + * Lenovo ideapad 330-15ICH Wifi rfkill hard blocked (LP: #1811815) + - platform/x86: ideapad: Add ideapad 330-15ICH to no_hw_rfkill + + * hid-sensor-hub spamming dmesg in 4.20 (LP: #1818547) + - HID: Increase maximum report size allowed by hid_field_extract() + + * [disco] [5.0.0-7.8] can't mount guest cifs share (LP: #1821053) + - cifs: allow guest mounts to work for smb3.11 + - SMB3: Fix SMB3.1.1 guest mounts to Samba + + * Add HiSilicon SoC quirk for cpufreq (LP: #1821620) + - ACPI / CPPC: Add a helper to get desired performance + - cpufreq / cppc: Work around for Hisilicon CPPC cpufreq + + * Disco update: v5.0.4 upstream stable release (LP: #1821607) + - 9p: use inode->i_lock to protect i_size_write() under 32-bit + - 9p/net: fix memory leak in p9_client_create + - ASoC: fsl_esai: fix register setting issue in RIGHT_J mode + - ASoC: codecs: pcm186x: fix wrong usage of DECLARE_TLV_DB_SCALE() + - ASoC: codecs: pcm186x: Fix energysense SLEEP bit + - iio: adc: exynos-adc: Fix NULL pointer exception on unbind + - iio: adc: exynos-adc: Use proper number of channels for Exynos4x12 + - mei: hbm: clean the feature flags on link reset + - mei: bus: move hw module get/put to probe/release + - stm class: Prevent division by zero + - stm class: Fix an endless loop in channel allocation + - crypto: caam - fix hash context DMA unmap size + - crypto: ccree - fix missing break in switch statement + - crypto: caam - fixed handling of sg list + - crypto: caam - fix DMA mapping of stack memory + - crypto: ccree - fix free of unallocated mlli buffer + - crypto: ccree - unmap buffer before copying IV + - crypto: ccree - don't copy zero size ciphertext + - crypto: cfb - add missing 'chunksize' property + - crypto: cfb - remove bogus memcpy() with src == dest + - crypto: ofb - fix handling partial blocks and make thread-safe + - crypto: ahash - fix another early termination in hash walk + - crypto: rockchip - fix scatterlist nents error + - crypto: rockchip - update new iv to device in multiple operations + - dax: Flush partial PMDs correctly + - nfit: Fix nfit_intel_shutdown_status() command submission + - nfit: acpi_nfit_ctl(): Check out_obj->type in the right place + - acpi/nfit: Fix bus command validation + - nfit/ars: Attempt a short-ARS whenever the ARS state is idle at boot + - nfit/ars: Attempt short-ARS even in the no_init_ars case + - libnvdimm/label: Clear 'updating' flag after label-set update + - libnvdimm, pfn: Fix over-trim in trim_pfn_device() + - libnvdimm/pmem: Honor force_raw for legacy pmem regions + - libnvdimm: Fix altmap reservation size calculation + - fix cgroup_do_mount() handling of failure exits + - crypto: aead - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: aegis - fix handling chunked inputs + - crypto: arm/crct10dif - revert to C code for short inputs + - crypto: arm64/aes-neonbs - fix returning final keystream block + - crypto: arm64/crct10dif - revert to C code for short inputs + - crypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: morus - fix handling chunked inputs + - crypto: pcbc - remove bogus memcpy()s with src == dest + - crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails + - crypto: testmgr - skip crc32c context test for ahash algorithms + - crypto: x86/aegis - fix handling chunked inputs and MAY_SLEEP + - crypto: x86/aesni-gcm - fix crash on empty plaintext + - crypto: x86/morus - fix handling chunked inputs and MAY_SLEEP + - crypto: arm64/aes-ccm - fix logical bug in AAD MAC handling + - crypto: arm64/aes-ccm - fix bugs in non-NEON fallback routine + - CIFS: Fix leaking locked VFS cache pages in writeback retry + - CIFS: Do not reset lease state to NONE on lease break + - CIFS: Do not skip SMB2 message IDs on send failures + - CIFS: Fix read after write for files with read caching + - smb3: make default i/o size for smb3 mounts larger + - tracing: Use strncpy instead of memcpy for string keys in hist triggers + - tracing: Do not free iter->trace in fail path of tracing_open_pipe() + - tracing/perf: Use strndup_user() instead of buggy open-coded version + - vmw_balloon: release lock on error in vmballoon_reset() + - xen: fix dom0 boot on huge systems + - ACPI / device_sysfs: Avoid OF modalias creation for removed device + - mmc: sdhci-esdhc-imx: fix HS400 timing issue + - mmc: renesas_sdhi: Fix card initialization failure in high speed mode + - mmc:fix a bug when max_discard is 0 + - spi: ti-qspi: Fix mmap read when more than one CS in use + - spi: pxa2xx: Setup maximum supported DMA transfer length + - spi: omap2-mcspi: Fix DMA and FIFO event trigger size mismatch + - spi: spi-gpio: fix SPI_CS_HIGH capability + - regulator: s2mps11: Fix steps for buck7, buck8 and LDO35 + - regulator: max77620: Initialize values for DT properties + - regulator: s2mpa01: Fix step values for some LDOs + - mt76: fix corrupted software generated tx CCMP PN + - clocksource/drivers/exynos_mct: Move one-shot check from tick clear to ISR + - clocksource/drivers/exynos_mct: Clear timer interrupt when shutdown + - clocksource/drivers/arch_timer: Workaround for Allwinner A64 timer + instability + - s390: vfio_ap: link the vfio_ap devices to the vfio_ap bus subsystem + - s390/setup: fix early warning messages + - s390/virtio: handle find on invalid queue gracefully + - scsi: virtio_scsi: don't send sc payload with tmfs + - scsi: aacraid: Fix performance issue on logical drives + - scsi: sd: Optimal I/O size should be a multiple of physical block size + - scsi: target/iscsi: Avoid iscsit_release_commands_from_conn() deadlock + - scsi: qla2xxx: Fix LUN discovery if loop id is not assigned yet by firmware + - scsi: qla2xxx: Avoid PCI IRQ affinity mapping when multiqueue is not + supported + - scsi: qla2xxx: Use complete switch scan for RSCN events + - fs/devpts: always delete dcache dentry-s in dput() + - splice: don't merge into linked buffers + - ovl: During copy up, first copy up data and then xattrs + - ovl: Do not lose security.capability xattr over metadata file copy-up + - m68k: Add -ffreestanding to CFLAGS + - Btrfs: setup a nofs context for memory allocation at btrfs_create_tree() + - Btrfs: setup a nofs context for memory allocation at __btrfs_set_acl + - btrfs: scrub: fix circular locking dependency warning + - btrfs: drop the lock on error in btrfs_dev_replace_cancel + - btrfs: ensure that a DUP or RAID1 block group has exactly two stripes + - btrfs: init csum_list before possible free + - Btrfs: fix corruption reading shared and compressed extents after hole + punching + - Btrfs: fix deadlock between clone/dedupe and rename + - soc: qcom: rpmh: Avoid accessing freed memory from batch API + - libertas_tf: don't set URB_ZERO_PACKET on IN USB transfer + - irqchip/gic-v3-its: Avoid parsing _indirect_ twice for Device table + - irqchip/brcmstb-l2: Use _irqsave locking variants in non-interrupt code + - x86/kprobes: Prohibit probing on optprobe template code + - cpufreq: kryo: Release OPP tables on module removal + - cpufreq: tegra124: add missing of_node_put() + - cpufreq: pxa2xx: remove incorrect __init annotation + - ext4: fix check of inode in swap_inode_boot_loader + - ext4: cleanup pagecache before swap i_data + - mm: hwpoison: fix thp split handing in soft_offline_in_use_page() + - mm/vmalloc: fix size check for remap_vmalloc_range_partial() + - mm/memory.c: do_fault: avoid usage of stale vm_area_struct + - kernel/sysctl.c: add missing range check in do_proc_dointvec_minmax_conv + - nvmem: core: don't check the return value of notifier chain call + - device property: Fix the length used in PROPERTY_ENTRY_STRING() + - intel_th: Don't reference unassigned outputs + - parport_pc: fix find_superio io compare code, should use equal test. + - i2c: tegra: fix maximum transfer size + - i2c: tegra: update maximum transfer size + - media: i2c: ov5640: Fix post-reset delay + - gpio: pca953x: Fix dereference of irq data in shutdown + - ext4: update quota information while swapping boot loader inode + - ext4: add mask of ext4 flags to swap + - ext4: fix crash during online resizing + - dma: Introduce dma_max_mapping_size() + - swiotlb: Introduce swiotlb_max_mapping_size() + - swiotlb: Add is_swiotlb_active() function + - PCI/ASPM: Use LTR if already enabled by platform + - PCI/DPC: Fix print AER status in DPC event handling + - PCI: qcom: Don't deassert reset GPIO during probe + - PCI: dwc: skip MSI init if MSIs have been explicitly disabled + - PCI: pci-bridge-emul: Create per-bridge copy of register behavior + - PCI: pci-bridge-emul: Extend pci_bridge_emul_init() with flags + - IB/hfi1: Close race condition on user context disable and close + - IB/rdmavt: Fix loopback send with invalidate ordering + - IB/rdmavt: Fix concurrency panics in QP post_send and modify to error + - cxl: Wrap iterations over afu slices inside 'afu_list_lock' + - ext2: Fix underflow in ext2_max_size() + - clk: uniphier: Fix update register for CPU-gear + - clk: clk-twl6040: Fix imprecise external abort for pdmclk + - clk: samsung: exynos5: Fix possible NULL pointer exception on + platform_device_alloc() failure + - clk: samsung: exynos5: Fix kfree() of const memory on setting + driver_override + - clk: ingenic: Fix round_rate misbehaving with non-integer dividers + - clk: ingenic: Fix doc of ingenic_cgu_div_info + - usb: chipidea: tegra: Fix missed ci_hdrc_remove_device() + - usb: typec: tps6598x: handle block writes separately with plain-I2C adapters + - dmaengine: usb-dmac: Make DMAC system sleep callbacks explicit + - serial: uartps: Fix stuck ISR if RX disabled with non-empty FIFO + - serial: 8250_of: assume reg-shift of 2 for mrvl,mmp-uart + - serial: 8250_pci: Fix number of ports for ACCES serial cards + - serial: 8250_pci: Have ACCES cards that use the four port Pericom PI7C9X7954 + chip use the pci_pericom_setup() + - jbd2: clear dirty flag when revoking a buffer from an older transaction + - jbd2: fix compile warning when using JBUFFER_TRACE + - selinux: add the missing walk_size + len check in selinux_sctp_bind_connect + - security/selinux: fix SECURITY_LSM_NATIVE_LABELS on reused superblock + - powerpc/32: Clear on-stack exception marker upon exception return + - powerpc/wii: properly disable use of BATs when requested. + - powerpc/powernv: Make opal log only readable by root + - powerpc/83xx: Also save/restore SPRG4-7 during suspend + - powerpc/kvm: Save and restore host AMR/IAMR/UAMOR + - powerpc/powernv: Don't reprogram SLW image on every KVM guest entry/exit + - powerpc/64s/hash: Fix assert_slb_presence() use of the slbfee. instruction + - powerpc: Fix 32-bit KVM-PR lockup and host crash with MacOS guest + - powerpc/ptrace: Simplify vr_get/set() to avoid GCC warning + - powerpc/hugetlb: Don't do runtime allocation of 16G pages in LPAR + configuration + - powerpc/smp: Fix NMI IPI timeout + - powerpc/smp: Fix NMI IPI xmon timeout + - powerpc/traps: fix recoverability of machine check handling on book3s/32 + - powerpc/traps: Fix the message printed when stack overflows + - ARM: s3c24xx: Fix boolean expressions in osiris_dvs_notify + - arm64: Fix HCR.TGE status for NMI contexts + - arm64: debug: Don't propagate UNKNOWN FAR into si_code for debug signals + - arm64: debug: Ensure debug handlers check triggering exception level + - arm64: KVM: Fix architecturally invalid reset value for FPEXC32_EL2 + - Revert "KVM/MMU: Flush tlb directly in the kvm_zap_gfn_range()" + - ipmi_si: Fix crash when using hard-coded device + - ipmi_si: fix use-after-free of resource->name + - dm: fix to_sector() for 32bit + - dm integrity: limit the rate of error messages + - media: cx25840: mark pad sig_types to fix cx231xx init + - mfd: sm501: Fix potential NULL pointer dereference + - cpcap-charger: generate events for userspace + - cpuidle: governor: Add new governors to cpuidle_governors again + - NFS: Fix I/O request leakages + - NFS: Fix an I/O request leakage in nfs_do_recoalesce + - NFS: Don't recoalesce on error in nfs_pageio_complete_mirror() + - nfsd: fix performance-limiting session calculation + - nfsd: fix memory corruption caused by readdir + - nfsd: fix wrong check in write_v4_end_grace() + - NFSv4.1: Reinitialise sequence results before retransmitting a request + - svcrpc: fix UDP on servers with lots of threads + - PM / wakeup: Rework wakeup source timer cancellation + - PM / OPP: Update performance state when freq == old_freq + - bcache: treat stale && dirty keys as bad keys + - bcache: use (REQ_META|REQ_PRIO) to indicate bio for metadata + - stable-kernel-rules.rst: add link to networking patch queue + - vt: perform safe console erase in the right order + - x86/unwind/orc: Fix ORC unwind table alignment + - perf intel-pt: Fix CYC timestamp calculation after OVF + - perf tools: Fix split_kallsyms_for_kcore() for trampoline symbols + - perf auxtrace: Define auxtrace record alignment + - perf intel-pt: Fix overlap calculation for padding + - perf/x86/intel/uncore: Fix client IMC events return huge result + - perf intel-pt: Fix divide by zero when TSC is not available + - md: Fix failed allocation of md_register_thread + - x86/kvmclock: set offset for kvm unstable clock + - x86/ftrace: Fix warning and considate ftrace_jmp_replace() and + ftrace_call_replace() + - tpm/tpm_crb: Avoid unaligned reads in crb_recv() + - tpm: Unify the send callback behaviour + - rcu: Do RCU GP kthread self-wakeup from softirq and interrupt + - media: imx: prpencvf: Stop upstream before disabling IDMA channel + - media: lgdt330x: fix lock status reporting + - media: sun6i: Fix CSI regmap's max_register + - media: uvcvideo: Avoid NULL pointer dereference at the end of streaming + - media: vimc: Add vimc-streamer for stream control + - media: imx-csi: Input connections to CSI should be optional + - media: imx: csi: Disable CSI immediately after last EOF + - media: imx: csi: Stop upstream before disabling IDMA channel + - drm/fb-helper: generic: Fix drm_fbdev_client_restore() + - drm/radeon/evergreen_cs: fix missing break in switch statement + - drm/amd/powerplay: correct power reading on fiji + - drm/amd/display: don't call dm_pp_ function from an fpu block + - KVM: Call kvm_arch_memslots_updated() before updating memslots + - KVM: VMX: Compare only a single byte for VMCS' "launched" in vCPU-run + - KVM: VMX: Zero out *all* general purpose registers after VM-Exit + - KVM: x86/mmu: Detect MMIO generation wrap in any address space + - KVM: x86/mmu: Do not cache MMIO accesses while memslots are in flux + - KVM: nVMX: Sign extend displacements of VMX instr's mem operands + - KVM: nVMX: Apply addr size mask to effective address for VMX instructions + - KVM: nVMX: Ignore limit checks on VMX instructions using flat segments + - KVM: nVMX: Check a single byte for VMCS "launched" in nested early checks + - net: dsa: lantiq_gswip: fix use-after-free on failed probe + - net: dsa: lantiq_gswip: fix OF child-node lookups + - s390/setup: fix boot crash for machine without EDAT-1 + - SUNRPC: Prevent thundering herd when the socket is not connected + - SUNRPC: Fix up RPC back channel transmission + - SUNRPC: Respect RPC call timeouts when retrying transmission + - Linux 5.0.4 + - [Config] update configs for 5.0.4 stable update + + * New Intel Wireless-AC 9260 [8086:2526] card not correctly probed in Ubuntu + system (LP: #1821271) + - iwlwifi: add new card for 9260 series + + * [CONFIG] please enable highdpi font FONT_TER16x32 (LP: #1819881) + - [Config]: enable highdpi Terminus 16x32 font support + + * [SRU][B/B-OEM/C/D] Fix AMD IOMMU NULL dereference (LP: #1820990) + - iommu/amd: Fix NULL dereference bug in match_hid_uid + + * some codecs stop working after S3 (LP: #1820930) + - ALSA: hda - Enforces runtime_resume after S3 and S4 for each codec + - ALSA: hda - Don't trigger jackpoll_work in azx_resume + + * tcm_loop.ko: move from modules-extra into main modules package + (LP: #1817786) + - [Packaging] move tcm_loop.lo to main linux-modules package + + * C++ demangling support missing from perf (LP: #1396654) + - [Packaging] fix a mistype + + * r8169 doesn't get woken up by ethernet cable plugging, no PME generated + (LP: #1817676) + - PCI: pciehp: Disable Data Link Layer State Changed event on suspend + + * Disco update: v5.0.3 upstream stable release (LP: #1821074) + - connector: fix unsafe usage of ->real_parent + - fou, fou6: avoid uninit-value in gue_err() and gue6_err() + - gro_cells: make sure device is up in gro_cells_receive() + - ipv4/route: fail early when inet dev is missing + - l2tp: fix infoleak in l2tp_ip6_recvmsg() + - lan743x: Fix RX Kernel Panic + - lan743x: Fix TX Stall Issue + - net: hsr: fix memory leak in hsr_dev_finalize() + - net/hsr: fix possible crash in add_timer() + - net: sit: fix UBSAN Undefined behaviour in check_6rd + - net/x25: fix use-after-free in x25_device_event() + - net/x25: reset state in x25_connect() + - pptp: dst_release sk_dst_cache in pptp_sock_destruct + - ravb: Decrease TxFIFO depth of Q3 and Q2 to one + - route: set the deleted fnhe fnhe_daddr to 0 in ip_del_fnhe to fix a race + - rxrpc: Fix client call queueing, waiting for channel + - sctp: remove sched init from sctp_stream_init + - tcp: do not report TCP_CM_INQ of 0 for closed connections + - tcp: Don't access TCP_SKB_CB before initializing it + - tcp: handle inet_csk_reqsk_queue_add() failures + - vxlan: Fix GRO cells race condition between receive and link delete + - vxlan: test dev->flags & IFF_UP before calling gro_cells_receive() + - net/mlx4_core: Fix reset flow when in command polling mode + - net/mlx4_core: Fix locking in SRIOV mode when switching between events and + polling + - net/mlx4_core: Fix qp mtt size calculation + - net: dsa: mv88e6xxx: Set correct interface mode for CPU/DSA ports + - vsock/virtio: fix kernel panic from virtio_transport_reset_no_sock + - net: sched: flower: insert new filter to idr after setting its mask + - f2fs: wait on atomic writes to count F2FS_CP_WB_DATA + - perf/x86: Fixup typo in stub functions + - ALSA: bebob: use more identical mod_alias for Saffire Pro 10 I/O against + Liquid Saffire 56 + - ALSA: firewire-motu: fix construction of PCM frame for capture direction + - ALSA: hda: Extend i915 component bind timeout + - ALSA: hda - add more quirks for HP Z2 G4 and HP Z240 + - ALSA: hda/realtek: Enable audio jacks of ASUS UX362FA with ALC294 + - ALSA: hda/realtek - Reduce click noise on Dell Precision 5820 headphone + - ALSA: hda/realtek: Enable headset MIC of Acer TravelMate X514-51T with + ALC255 + - perf/x86/intel: Fix memory corruption + - perf/x86/intel: Make dev_attr_allow_tsx_force_abort static + - It's wrong to add len to sector_nr in raid10 reshape twice + - drm: Block fb changes for async plane updates + - Linux 5.0.3 + + * Disco update: v5.0.2 upstream stable release (LP: #1820318) + - media: uvcvideo: Fix 'type' check leading to overflow + - Input: wacom_serial4 - add support for Wacom ArtPad II tablet + - Input: elan_i2c - add id for touchpad found in Lenovo s21e-20 + - iscsi_ibft: Fix missing break in switch statement + - scsi: aacraid: Fix missing break in switch statement + - x86/PCI: Fixup RTIT_BAR of Intel Denverton Trace Hub + - arm64: dts: zcu100-revC: Give wifi some time after power-on + - arm64: dts: hikey: Give wifi some time after power-on + - arm64: dts: hikey: Revert "Enable HS200 mode on eMMC" + - ARM: dts: exynos: Fix pinctrl definition for eMMC RTSN line on Odroid X2/U3 + - ARM: dts: exynos: Add minimal clkout parameters to Exynos3250 PMU + - ARM: dts: exynos: Fix max voltage for buck8 regulator on Odroid XU3/XU4 + - drm: disable uncached DMA optimization for ARM and arm64 + - media: Revert "media: rc: some events are dropped by userspace" + - Revert "PCI/PME: Implement runtime PM callbacks" + - bpf: Stop the psock parser before canceling its work + - gfs2: Fix missed wakeups in find_insert_glock + - staging: erofs: keep corrupted fs from crashing kernel in erofs_namei() + - staging: erofs: compressed_pages should not be accessed again after freed + - scripts/gdb: replace flags (MS_xyz -> SB_xyz) + - ath9k: Avoid OF no-EEPROM quirks without qca,no-eeprom + - perf/x86/intel: Make cpuc allocations consistent + - perf/x86/intel: Generalize dynamic constraint creation + - x86: Add TSX Force Abort CPUID/MSR + - perf/x86/intel: Implement support for TSX Force Abort + - Linux 5.0.2 + + * Linux security module stacking support + - LSM: Introduce LSM_FLAG_LEGACY_MAJOR + - LSM: Provide separate ordered initialization + - LSM: Plumb visibility into optional "enabled" state + - LSM: Lift LSM selection out of individual LSMs + - LSM: Build ordered list of LSMs to initialize + - LSM: Introduce CONFIG_LSM + - LSM: Introduce "lsm=" for boottime LSM selection + - LSM: Tie enabling logic to presence in ordered list + - LSM: Prepare for reorganizing "security=" logic + - LSM: Refactor "security=" in terms of enable/disable + - LSM: Separate idea of "major" LSM from "exclusive" LSM + - apparmor: Remove SECURITY_APPARMOR_BOOTPARAM_VALUE + - selinux: Remove SECURITY_SELINUX_BOOTPARAM_VALUE + - LSM: Add all exclusive LSMs to ordered initialization + - LSM: Split LSM preparation from initialization + - LoadPin: Initialize as ordered LSM + - Yama: Initialize as ordered LSM + - LSM: Introduce enum lsm_order + - capability: Initialize as LSM_ORDER_FIRST + - procfs: add smack subdir to attrs + - Smack: Abstract use of cred security blob + - SELinux: Abstract use of cred security blob + - SELinux: Remove cred security blob poisoning + - SELinux: Remove unused selinux_is_enabled + - AppArmor: Abstract use of cred security blob + - TOMOYO: Abstract use of cred security blob + - Infrastructure management of the cred security blob + - SELinux: Abstract use of file security blob + - Smack: Abstract use of file security blob + - LSM: Infrastructure management of the file security + - SELinux: Abstract use of inode security blob + - Smack: Abstract use of inode security blob + - LSM: Infrastructure management of the inode security + - LSM: Infrastructure management of the task security + - SELinux: Abstract use of ipc security blobs + - Smack: Abstract use of ipc security blobs + - LSM: Infrastructure management of the ipc security blob + - TOMOYO: Update LSM flags to no longer be exclusive + - LSM: generalize flag passing to security_capable + - LSM: Make lsm_early_cred() and lsm_early_task() local functions. + - LSM: Make some functions static + - apparmor: Adjust offset when accessing task blob. + - LSM: Ignore "security=" when "lsm=" is specified + - LSM: Update list of SECURITYFS users in Kconfig + - apparmor: delete the dentry in aafs_remove() to avoid a leak + - apparmor: fix double free when unpack of secmark rules fails + - SAUCE: LSM: Infrastructure management of the sock security + - SAUCE: LSM: Limit calls to certain module hooks + - SAUCE: LSM: Special handling for secctx lsm hooks + - SAUCE: LSM: Specify which LSM to display with /proc/self/attr/display + - SAUCE: Fix-up af_unix mediation for sock infrastructure management + - SAUCE: Revert "apparmor: Fix warning about unused function + apparmor_ipv6_postroute" + - SAUCE: Revert "apparmor: fix checkpatch error in Parse secmark policy" + - SAUCE: Revert "apparmor: add #ifdef checks for secmark filtering" + - SAUCE: Revert "apparmor: Allow filtering based on secmark policy" + - SAUCE: Revert "apparmor: Parse secmark policy" + - SAUCE: Revert "apparmor: Add a wildcard secid" + - SAUCE: Revert "apparmor: fix bad debug check in apparmor_secid_to_secctx()" + - SAUCE: Revert "apparmor: fixup secid map conversion to using IDR" + - SAUCE: Revert "apparmor: Use an IDR to allocate apparmor secids" + - SAUCE: Revert "apparmor: Fix memory leak of rule on error exit path" + - SAUCE: Revert "apparmor: modify audit rule support to support profile + stacks" + - SAUCE: Revert "apparmor: Add support for audit rule filtering" + - SAUCE: Revert "apparmor: add the ability to get a task's secid" + - SAUCE: Revert "apparmor: add support for mapping secids and using secctxes" + - SAUCE: apparmor: add proc subdir to attrs + - SAUCE: apparmor: add an apparmorfs entry to access current attrs + - SAUCE: apparmor: update flags to no longer be exclusive + - SAUCE: update configs and annotations for LSM stacking + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_EARLY_PRINTK_USB_XDBC=y + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - [Config] CONFIG_RANDOM_TRUST_CPU=y + - [Config] refresh annotations for recent config changes + - ubuntu: vbox -- update to 6.0.4-dfsg-7 + - Revert "UBUNTU: SAUCE: i2c:amd I2C Driver based on PCI Interface for + upcoming platform" + + -- Seth Forshee Thu, 04 Apr 2019 14:49:59 -0500 + +linux (5.0.0-8.9) disco; urgency=medium + + * linux: 5.0.0-8.9 -proposed tracker (LP: #1819759) + + * hisi_sas: add debugfs support (LP: #1819500) + - scsi: hisi_sas: Create root and device debugfs directories + - scsi: hisi_sas: Alloc debugfs snapshot buffer memory for all registers + - scsi: hisi_sas: Take debugfs snapshot for all regs + - scsi: hisi_sas: Debugfs global register create file and add file operations + - scsi: hisi_sas: Add debugfs for port registers + - scsi: hisi_sas: Add debugfs CQ file and add file operations + - scsi: hisi_sas: Add debugfs DQ file and add file operations + - scsi: hisi_sas: Add debugfs IOST file and add file operations + - scsi: hisi_sas: No need to check return value of debugfs_create functions + - scsi: hisi_sas: Fix type casting and missing static qualifier in debugfs + code + - scsi: hisi_sas: Add debugfs ITCT file and add file operations + + * [disco] hns driver updates from 5.1 merge window (LP: #1819535) + - net: hns: Use struct_size() in devm_kzalloc() + - net: hns3: modify enet reinitialization interface + - net: hns3: remove unused member in struct hns3_enet_ring + - net: hns3: remove unnecessary hns3_adjust_tqps_num + - net: hns3: reuse reinitialization interface in the hns3_set_channels + - net: hns3: add interface hclge_tm_bp_setup + - net: hns3: modify parameter checks in the hns3_set_channels + - net: hns3: remove redundant codes in hclge_knic_setup + - net: hns3: fix user configuration loss for ethtool -L + - net: hns3: adjust the use of alloc_tqps and num_tqps + - net: hns3: fix wrong combined count returned by ethtool -l + - net: hns3: do reinitialization while ETS configuration changed + - net: hns3: add HNAE3_RESTORE_CLIENT interface in enet module + - net: hns3: add calling roce callback function when link status change + - net: hns3: add rx multicast packets statistic + - net: hns3: refactor the statistics updating for netdev + - net: hns3: fix rss configuration lost problem when setting channel + - net: hns3: fix for shaper not setting when TC num changes + - net: hns3: fix bug of ethtool_ops.get_channels for VF + - net: hns3: clear param in ring when free ring + - net: hns3: Change fw error code NOT_EXEC to NOT_SUPPORTED + - net: hns3: do not return GE PFC setting err when initializing + - net: hns3: add ETS TC weight setting in SSU module + - net: hns3: add statistics for PFC frames and MAC control frames + - net: hns3: fix PFC not setting problem for DCB module + - net: hns3: don't update packet statistics for packets dropped by hardware + - net: hns3: clear pci private data when unload hns3 driver + - net: hns3: add error handling in hclge_ieee_setets + - net: hns3: fix return value handle issue for hclge_set_loopback() + - net: hns3: fix broadcast promisc issue for revision 0x20 + - net: hns3: After setting the loopback, add the status of getting MAC + - net: hns3: do reinitialization while mqprio configuration changed + - net: hns3: remove dcb_ops->map_update in hclge_dcb + - net: hns3: call hns3_nic_set_real_num_queue with netdev down + - net: hns3: add 8 BD limit for tx flow + - net: hns3: add initialization for nic state + - net: hns3: don't allow vf to enable promisc mode + - net: hns3: reuse the definition of l3 and l4 header info union + - net: hns3: fix VF dump register issue + - net: hns3: use the correct interface to stop|open port + - net: hns3: change hnae3_register_ae_dev() to int + - net: hns3: only support tc 0 for VF + - net: hns3: Fix NULL deref when unloading driver + - net: hns3: fix netif_napi_del() not do problem when unloading + - net: hns3: fix for rss result nonuniform + - net: hns3: fix improper error handling in the hclge_init_ae_dev() + - net: hns3: fix an issue for hclgevf_ae_get_hdev + - net: hns3: stop sending keep alive msg to PF when VF is resetting + - net: hns3: keep flow director state unchanged when reset + - net: hns3: Check for allocation failure + - net: hns3: fix a code style issue for hns3_update_new_int_gl() + - net: hns3: fix an issue for hns3_update_new_int_gl + - net: hns3: Modify parameter type from int to bool in set_gro_en + - net: hns3: code optimization for hclge_rx_buffer_calc + - net: hns3: add hclge_cmd_check_retval() to parse comman's return value + - net: hns3: move some set_bit statement into hclge_prepare_mac_addr + - net: hns3: fix a wrong checking in the hclge_tx_buffer_calc() + - net: hns3: fix the problem that the supported port is empty + - net: hns3: optimize the maximum TC macro + - net: hns3: don't allow user to change vlan filter state + - net: hns3: modify the upper limit judgment condition + - net: hns3: MAC table entry count function increases operation 0 value + protection measures + - net: hns3: make function hclge_set_all_vf_rst() static + - net: hns3: add pointer checking at the beginning of the exported functions. + - net: hns3: Check variable is valid before assigning it to another + - net: hns3: convert mac advertize and supported from u32 to link mode + - net: hns3: fix port info query issue for copper port + - net: hns3: modify print message of ssu common ecc errors + - net: hns3: some bugfix of ppu(rcb) ras errors + - net: hns3: enable 8~11th bit of mac common msi-x error + - net: hns3: fix 6th bit of ppp mpf abnormal errors + - net: hns3: Record VF unicast and multicast tables + - net: hns3: Record VF vlan tables + - net: hns3: uninitialize command queue while unloading PF driver + - net: hns3: clear command queue's registers when unloading VF driver + - net: hns3: add xps setting support for hns3 driver + - net: hns3: avoid mult + div op in critical data path + - net: hns3: limit some variable scope in critical data path + - net: hns3: remove some ops in struct hns3_nic_ops + - net: hns3: add unlikely for error handling in data path + - net: hns3: replace hnae3_set_bit and hnae3_set_field in data path + - net: hns3: remove hnae3_get_bit in data path + - net: hns3: add support to config depth for tx|rx ring separately + - net: hns3: enable VF VLAN filter for each VF when initializing + - net: hns3: fix get VF RSS issue + - net: hns3: fix setting of the hns reset_type for rdma hw errors + - net: hns3: fix improper error handling for hns3_client_start + - net: hns: use struct_size() in devm_kzalloc() + - net: hns3: Fix a logical vs bitwise typo + - net: hns3: add dma_rmb() for rx description + - net: hns3: fix to stop multiple HNS reset due to the AER changes + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms-build -- support building against packages in PPAs + - [Packaging] dkms-build: do not redownload files on subsequent passes + - [Packaging] dkms-build -- elide partial Built-Using information + - [Packaging] dkms-build -- remove retpoline data from final binary packages + - [Packaging] dkms-build--nvidia* -- check gcc version against primary build + - [Packaging] dkms-build -- add support for unversioned overrides + - [Packaging] dkms-build--nvidia-* -- convert to generic -N form + - [Packaging] fix-filenames -- handle exact string removal + - [Packaging] dkms-build--nvidia-N -- remove GCC versions + + * Disco update: v5.0.1 upstream stable release (LP: #1819515) + - cpufreq: Use struct kobj_attribute instead of struct global_attr + - staging: erofs: fix mis-acted TAIL merging behavior + - binder: create node flag to request sender's security context + - USB: serial: option: add Telit ME910 ECM composition + - USB: serial: cp210x: add ID for Ingenico 3070 + - USB: serial: ftdi_sio: add ID for Hjelmslund Electronics USB485 + - driver core: Postpone DMA tear-down until after devres release + - staging: erofs: fix fast symlink w/o xattr when fs xattr is on + - staging: erofs: fix memleak of inode's shared xattr array + - staging: erofs: fix race of initializing xattrs of a inode at the same time + - staging: erofs: fix illegal address access under memory pressure + - staging: comedi: ni_660x: fix missing break in switch statement + - staging: wilc1000: fix to set correct value for 'vif_num' + - staging: android: ion: fix sys heap pool's gfp_flags + - staging: android: ashmem: Don't call fallocate() with ashmem_mutex held. + - staging: android: ashmem: Avoid range_alloc() allocation with ashmem_mutex + held. + - ip6mr: Do not call __IP6_INC_STATS() from preemptible context + - net: dsa: mv88e6xxx: add call to mv88e6xxx_ports_cmode_init to probe for new + DSA framework + - net: dsa: mv88e6xxx: handle unknown duplex modes gracefully in + mv88e6xxx_port_set_duplex + - net: dsa: mv8e6xxx: fix number of internal PHYs for 88E6x90 family + - net: mscc: Enable all ports in QSGMII + - net: sched: put back q.qlen into a single location + - net-sysfs: Fix mem leak in netdev_register_kobject + - qmi_wwan: Add support for Quectel EG12/EM12 + - sctp: call iov_iter_revert() after sending ABORT + - team: Free BPF filter when unregistering netdev + - tipc: fix RDM/DGRAM connect() regression + - x86/CPU/AMD: Set the CPB bit unconditionally on F17h + - x86/boot/compressed/64: Do not read legacy ROM on EFI system + - tracing: Fix event filters and triggers to handle negative numbers + - xhci: tegra: Prevent error pointer dereference + - usb: xhci: Fix for Enabling USB ROLE SWITCH QUIRK on + INTEL_SUNRISEPOINT_LP_XHCI + - applicom: Fix potential Spectre v1 vulnerabilities + - alpha: wire up io_pgetevents system call + - MIPS: irq: Allocate accurate order pages for irq stack + - aio: Fix locking in aio_poll() + - xtensa: fix get_wchan + - gnss: sirf: fix premature wakeup interrupt enable + - USB: serial: cp210x: fix GPIO in autosuspend + - Revert "selftests: firmware: add CONFIG_FW_LOADER_USER_HELPER_FALLBACK to + config" + - Revert "selftests: firmware: remove use of non-standard diff -Z option" + - selftests: firmware: fix verify_reqs() return value + - Bluetooth: btrtl: Restore old logic to assume firmware is already loaded + - Bluetooth: Fix locking in bt_accept_enqueue() for BH context + - Linux 5.0.1 + + * sky2 ethernet card doesn't work after returning from suspend + (LP: #1807259) // sky2 ethernet card link not up after suspend + (LP: #1809843) // Disco update: v5.0.1 upstream stable release + (LP: #1819515) + - sky2: Disable MSI on Dell Inspiron 1545 and Gateway P-79 + + * tls selftest failures/hangs on i386 (LP: #1813607) + - [Config] CONFIG_TLS=n for i386 + + * CVE-2019-8980 + - exec: Fix mem leak in kernel_read_file + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Use 'ipproto ipv6-icmp' to match ICMPv6 headers + - [Config] enable nvidia build + - [Config] update gcc version to 8.3 + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: selftests: pmtu: disable accept_dad for tests" + + -- Thadeu Lima de Souza Cascardo Tue, 12 Mar 2019 16:15:44 -0300 + +linux (5.0.0-7.8) disco; urgency=medium + + * linux: 5.0.0-7.8 -proposed tracker (LP: #1818519) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * unnecessary request_queue freeze (LP: #1815733) + - block: avoid setting nr_requests to current value + - block: avoid setting none scheduler if it's already none + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: Don't fail test_vxlan_under_vrf on xfail + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0 + + -- Seth Forshee Mon, 04 Mar 2019 08:46:10 -0600 + +linux (5.0.0-6.7) disco; urgency=medium + + * linux: 5.0.0-6.7 -proposed tracker (LP: #1817585) + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + - [Packaging] resync getabis + + * installer does not support iSCSI iBFT (LP: #1817321) + - d-i: add iscsi_ibft to scsi-modules + + * Silent "Unknown key" message when pressing keyboard backlight hotkey + (LP: #1817063) + - platform/x86: dell-wmi: Ignore new keyboard backlight change event + + * Fix I219 doesn't get woken up after plugging ethernet cable (LP: #1817058) + - e1000e: Disable runtime PM on CNP+ + + * efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted (LP: #1814982) + - efi/arm/arm64: Allow SetVirtualAddressMap() to be omitted + + * CVE-2019-3460 + - Bluetooth: Check L2CAP option sizes returned from l2cap_get_conf_opt + + * CVE-2019-3459 + - Bluetooth: Verify that l2cap_get_conf_opt provides large enough buffer + + * kernel net tls selftest fails on 5.0 (LP: #1816716) + - SAUCE: Revert "selftests/tls: Add test for recv(PEEK) spanning across + multiple records" + + * Please enable CONFIG_DMA_CMA=y on arm64 (LP: #1803206) + - [Config] annotations -- enforce CONFIG_DMA_CMA and update notes + + * [19.04 FEAT] [LS1801] PCI Virtual function enablement (LP: #1814684) + - s390/pci: map IOV resources + - s390/pci: improve bar check + + * glibc 2.28-0ubuntu1 ADT test failure with linux 5.0.0-1.2 (LP: #1813060) + - SAUCE: prevent a glibc test failure when looking for obsolete types on + headers + + * Miscellaneous Ubuntu changes + - [Config] Enforce CONFIG_ZCRYPT_MULTIDEVNODES in annotations + - SAUCE: selftests: pmtu: disable accept_dad for tests + - SAUCE: arm64: add kernel config option to lock down when in Secure Boot mode + - SAUCE: selftests: net: Make test for VXLAN underlay in non-default VRF an + expected failure + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc8 + + -- Seth Forshee Mon, 25 Feb 2019 09:37:36 -0600 + +linux (5.0.0-5.6) disco; urgency=medium + + * [ALSA] [PATCH] System76 darp5 and oryp5 fixups (LP: #1815831) + - ALSA: hda/realtek - Headset microphone and internal speaker support for + System76 oryp5 + + * Miscellaneous Ubuntu changes + - [Config] Fix aufs menus in annotations file + - [Config] CONFIG_SAMPLE_TRACE_PRINTK=m + - [Config] Update annotations based on configs + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc7 + + -- Seth Forshee Mon, 18 Feb 2019 10:04:11 +0100 + +linux (5.0.0-4.5) disco; urgency=medium + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] autoreconstruct -- base tag is always primary mainline version + + * [Packaging] Allow overlay of config annotations (LP: #1752072) + - [Packaging] config-check: Add an include directive + + * Miscellaneous Ubuntu changes + - hio -- stub out BIOVEC_PHYS_MERGEABLE for 4.20+ + - hio -- replace use of do_gettimeofday() + - hio -- part_round_stats() removed in 5.0 + - hio -- device_add_disk() grew a 'groups' argument in 4.20 + - enable hio build + - Revert "UBUNTU: [Packaging] autoreconstruct -- base tag is always primary + mainline version" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc6 + + -- Seth Forshee Tue, 12 Feb 2019 08:15:32 -0600 + +linux (5.0.0-3.4) disco; urgency=medium + + * CONFIG_TEST_BPF is disabled (LP: #1813955) + - [Config]: Reenable TEST_BPF + + * Ignore "incomplete report" from Elan touchpanels (LP: #1813733) + - HID: i2c-hid: Ignore input report if there's no data present on Elan + touchpanels + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Miscellaneous Ubuntu changes + - SAUCE: selftests: net: fix "from" match test in fib_rule_tests.sh + - [Config] CONFIG_PCMCIA=n for arm64 and s390x + - [Config] CONFIG_SERIAL_SC16IS7XX=n for s390x + - [Config] disable I2C TPM drivers for s390x + - [Config] CONFIG_RAPIDIO=n for s390x + - [Config] CONFIG_DMADEVICES=n for s390x + - [Config] disable gpio drivers for s390x + - [Config] CONFIG_SENSORS_OCC_P8_I2C=m for ppc64el + - [Config] disable I2C hardware drivers for s390x + - [Config] CONFIG_I3C=n for s390x + - [Config] CONFIG_SERIO=n for s390x + - [Config] disable misc drivers for s390x + - [Config] disable EEPROM drivers for s390x + - [Config] disable MFD drivers for s390x + - [Config] CONFIG_NVMEM=n for s390x + - [Config] CONFIG_MLXSW_I2C=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROCHIP=n for s390x + - [Config] CONFIG_PPP=n for s390x + - [Config] CONFIG_PCCARD=n for s390x + - [Config] CONFIG_PCI_MESON=y + - [Config] CONFIG_SCSI_MYRB=n for s390x + - [Config] CONFIG_REGULATOR=n for s390x + - [Config] CONFIG_ZIIRAVE_WATCHDOG=n for s390x + - [Config] CONFIG_NCSI_OEM_CMD_GET_MAC=y + - [Config] update annotations following config review + - [Packaging] remove handoff check for uefi signing + - [Packaging] decompress gzipped efi images in signing tarball + - vbox-update: allow leading whitespace when fixing up KERN_DIR + - ubuntu: vbox -- update to 6.0.4-dfsg-3 + - vbox: remove remount check in sf_read_super_aux() + - enable vbox build + - [Config] CONFIG_ANDROID_BINDER_DEVICES="" + - SAUCE: import aufs driver + - [Config]: Enable aufs + - [Config] relocate aufs annotations to menu + - [Config] remove unmatched configs from annotations + - [Config] fix up abi for removed modules + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - SAUCE: (efi-lockdown) Move EFI signature blob parser to shared location + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - [Config] (efi-lockdown) enable importing of efi certificates for module sig + verification + + * Miscellaneous upstream changes + - binder: fix CONFIG_ANDROID_BINDER_DEVICES + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc5 + + -- Seth Forshee Tue, 05 Feb 2019 14:26:12 -0600 + +linux (5.0.0-2.3) disco; urgency=medium + + * kernel oops in bcache module (LP: #1793901) + - SAUCE: bcache: never writeback a discard operation + + * Enable sound card power saving by default (LP: #1804265) + - [Config] CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: selftests: disable some failing networking tests" + - SAUCE: ashmem: turn into module + - SAUCE: binder: turn into module + - SAUCE: binder: give binder_alloc its own debug mask file + - [Config] enable binder and ashmem as modules + - SAUCE: selftests: net: replace AF_MAX with INT_MAX in socket.c + - SAUCE: selftests/ftrace: Fix tab expansion in trace_marker snapshot trigger + test + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc4 + + -- Seth Forshee Tue, 29 Jan 2019 06:57:32 -0600 + +linux (5.0.0-1.2) disco; urgency=medium + + * Fix non-working QCA Rome Bluetooth after S3 (LP: #1812812) + - USB: Add new USB LPM helpers + - USB: Consolidate LPM checks to avoid enabling LPM twice + + * bluetooth controller not detected with 4.15 kernel (LP: #1810797) + - SAUCE: btqcomsmd: introduce BT_QCOMSMD_HACK + - [Config] arm64: snapdragon: BT_QCOMSMD_HACK=y + + * [19.04 FEAT| Enable virtio-gpu for s390x (LP: #1799467) + - [Config] enable virtio-gpu for s390x + + * Crash on "ip link add foo type ipip" (LP: #1811803) + - SAUCE: fan: Fix NULL pointer dereference + + * Fix not working Goodix touchpad (LP: #1811929) + - HID: i2c-hid: Disable runtime PM on Goodix touchpad + + * Miscellaneous Ubuntu changes + - update dkms package versions + - enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc3 + + -- Seth Forshee Tue, 22 Jan 2019 13:56:17 -0600 + +linux (5.0.0-0.1) disco; urgency=medium + + * Build Nvidia drivers in conjunction with kernel (LP: #1764792) + - [Packaging] dkms -- add per package post-process step + - [Packaging] dkms -- switch to a consistent build prefix length and strip + - [Packaging] nvidia -- build and sign nvidia packages and ship signatures + - [Packaging] nvidia -- make nvidia package version explicit + + * Add support for ALC3277 codec on new Dell edge gateways (LP: #1807334) + - [Config] CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m + + * RTL8822BE WiFi Disabled in Kernel 4.18.0-12 (LP: #1806472) + - [Config] CONFIG_RTLWIFI_DEBUG_ST=n + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + - SAUCE: import aufs driver + - update dkms package versions + - [Config] disable aufs config options + - [Config] disable nvidia build + - update dropped.txt + - [Packaging] disable nvidia dkms builds for mainline + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) debugfs: avoid EPERM when no open file operation + defined + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - [Config] set config options for efi lockdown + - Revert "UBUNTU: SAUCE: import aufs driver" + + [ Upstream Kernel Changes ] + + * Rebase to v5.0-rc2 + + -- Seth Forshee Thu, 17 Jan 2019 12:31:29 -0600 + +linux (5.0.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Wed, 16 Jan 2019 14:48:05 -0600 + +linux (4.20.0-2.3) disco; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.20 + + -- Seth Forshee Thu, 03 Jan 2019 12:11:43 -0600 + +linux (4.20.0-1.2) disco; urgency=medium + + * Packaging resync (LP: #1786013) + - [Packaging] update helper scripts + + * Power leakage at S5 with Qualcomm Atheros QCA9377 802.11ac Wireless Network + Adapter (LP: #1805607) + - SAUCE: ath10k: provide reset function for QCA9377 chip + + * zfs/spl build in conjunction with the kernel from DKMS source (LP: #1807378) + - [Packaging] dkms -- dkms package build packaging support + - [Packaging] dkms -- save build objects artifacts for validation + - [Packaging] dkms -- add general Built-Using: support + - [Packaging] simplify Provides comma handling + - [Packaging] zfs/spl -- remove packaging support for incorporated source + - [Packaging] zfs/spl -- remove incorporated source + - [Packaging] zfs/spl -- build via dkms + - [Packaging] zfs/spl -- make zfs package version explicit + - [Packaging] update-version-dkms -- sync archive versions to package + + * Miscellaneous Ubuntu changes + - [Packaging] update-version-dkms -- fix getting distrbution from changelog + - update dkms package versions + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc6 + + -- Seth Forshee Tue, 11 Dec 2018 11:33:08 -0600 + +linux (4.20.0-0.1) disco; urgency=medium + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - Revert "ovl: relax permission checking on underlying layers" + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * Miscellaneous Ubuntu changes + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.22-dfsg-2 + - ubuntu -- disable vbox build + - ubuntu -- disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.20-rc5 + + -- Seth Forshee Fri, 07 Dec 2018 07:13:42 -0600 + +linux (4.20.0-0.0) disco; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 06 Dec 2018 10:20:19 -0600 + +linux (4.19.0-8.9) disco; urgency=medium + + * linux: 4.19.0-8.9 -proposed tracker (LP: #1806952) + + * Workaround CSS timeout on AMD SNPS 3.0 xHC (LP: #1806838) + - xhci: workaround CSS timeout on AMD SNPS 3.0 xHC + + * Fix Intel I210 doesn't work when ethernet cable gets plugged (LP: #1806818) + - igb: Fix an issue that PME is not enabled during runtime suspend + + * The line-out on the Dell Dock station can't work (LP: #1806532) + - ALSA: usb-audio: Add vendor and product name for Dell WD19 Dock + + * CVE-2018-19407 + - KVM: X86: Fix scan ioapic use-before-initialization + + * PC SN720 NVMe WDC 256GB consumes more power in S2Idle than during long idle + (LP: #1805775) + - SAUCE: pci/nvme: prevent WDC PC SN720 NVMe from entering D3 and being + disabled + + * Disco update: 4.19.6 upstream stable release (LP: #1806909) + - HID: steam: remove input device when a hid client is running. + - efi/libstub: arm: support building with clang + - usb: core: Fix hub port connection events lost + - usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers + - usb: dwc3: gadget: Properly check last unaligned/zero chain TRB + - usb: dwc3: core: Clean up ULPI device + - usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() + - xhci: Fix leaking USB3 shared_hcd at xhci removal + - xhci: handle port status events for removed USB3 hcd + - xhci: Add check for invalid byte size error when UAS devices are connected. + - usb: xhci: fix uninitialized completion when USB3 port got wrong status + - usb: xhci: fix timeout for transition from RExit to U0 + - xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc + - usb: xhci: Prevent bus suspend if a port connect change or polling state is + detected + - ALSA: oss: Use kvzalloc() for local buffer allocations + - MAINTAINERS: Add Sasha as a stable branch maintainer + - Documentation/security-bugs: Clarify treatment of embargoed information + - Documentation/security-bugs: Postpone fix publication in exceptional cases + - mmc: sdhci-pci: Try "cd" for card-detect lookup before using NULL + - mmc: sdhci-pci: Workaround GLK firmware failing to restore the tuning value + - gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path + - iwlwifi: fix wrong WGDS_WIFI_DATA_SIZE + - iwlwifi: mvm: support sta_statistics() even on older firmware + - iwlwifi: mvm: fix regulatory domain update when the firmware starts + - iwlwifi: mvm: don't use SAR Geo if basic SAR is not used + - brcmfmac: fix reporting support for 160 MHz channels + - opp: ti-opp-supply: Dynamically update u_volt_min + - opp: ti-opp-supply: Correct the supply in _get_optimal_vdd_voltage call + - tools/power/cpupower: fix compilation with STATIC=true + - v9fs_dir_readdir: fix double-free on p9stat_read error + - selinux: Add __GFP_NOWARN to allocation at str_read() + - Input: synaptics - avoid using uninitialized variable when probing + - bfs: add sanity check at bfs_fill_super() + - sctp: clear the transport of some out_chunk_list chunks in + sctp_assoc_rm_peer + - gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd + - llc: do not use sk_eat_skb() + - mm: don't warn about large allocations for slab + - mm/memory.c: recheck page table entry with page table lock held + - tcp: do not release socket ownership in tcp_close() + - drm/fb-helper: Blacklist writeback when adding connectors to fbdev + - drm/amdgpu: Add missing firmware entry for HAINAN + - drm/vc4: Set ->legacy_cursor_update to false when doing non-async updates + - drm/amdgpu: Fix oops when pp_funcs->switch_power_profile is unset + - drm/i915: Disable LP3 watermarks on all SNB machines + - drm/ast: change resolution may cause screen blurred + - drm/ast: fixed cursor may disappear sometimes + - drm/ast: Remove existing framebuffers before loading driver + - can: flexcan: Unlock the MB unconditionally + - can: dev: can_get_echo_skb(): factor out non sending code to + __can_get_echo_skb() + - can: dev: __can_get_echo_skb(): replace struct can_frame by canfd_frame to + access frame length + - can: dev: __can_get_echo_skb(): Don't crash the kernel if can_priv::echo_skb + is accessed out of bounds + - can: dev: __can_get_echo_skb(): print error message, if trying to echo non + existing skb + - can: rx-offload: introduce can_rx_offload_get_echo_skb() and + can_rx_offload_queue_sorted() functions + - can: rx-offload: rename can_rx_offload_irq_queue_err_skb() to + can_rx_offload_queue_tail() + - can: flexcan: use can_rx_offload_queue_sorted() for flexcan_irq_bus_*() + - can: flexcan: handle tx-complete CAN frames via rx-offload infrastructure + - can: raw: check for CAN FD capable netdev in raw_sendmsg() + - can: hi311x: Use level-triggered interrupt + - can: flexcan: Always use last mailbox for TX + - can: flexcan: remove not needed struct flexcan_priv::tx_mb and struct + flexcan_priv::tx_mb_idx + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - IB/hfi1: Eliminate races in the SDMA send error path + - fsnotify: generalize handling of extra event flags + - fanotify: fix handling of events on child sub-directory + - pinctrl: meson: fix pinconf bias disable + - pinctrl: meson: fix gxbb ao pull register bits + - pinctrl: meson: fix gxl ao pull register bits + - pinctrl: meson: fix meson8 ao pull register bits + - pinctrl: meson: fix meson8b ao pull register bits + - tools/testing/nvdimm: Fix the array size for dimm devices. + - scsi: lpfc: fix remoteport access + - scsi: hisi_sas: Remove set but not used variable 'dq_list' + - KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE + - cpufreq: imx6q: add return value check for voltage scale + - rtc: cmos: Do not export alarm rtc_ops when we do not support alarms + - rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write + - crypto: simd - correctly take reqsize of wrapped skcipher into account + - floppy: fix race condition in __floppy_read_block_0() + - powerpc/io: Fix the IO workarounds code to work with Radix + - sched/fair: Fix cpu_util_wake() for 'execl' type workloads + - perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs + - block: copy ioprio in __bio_clone_fast() and bounce + - SUNRPC: Fix a bogus get/put in generic_key_to_expire() + - riscv: add missing vdso_install target + - RISC-V: Silence some module warnings on 32-bit + - drm/amdgpu: fix bug with IH ring setup + - kdb: Use strscpy with destination buffer size + - NFSv4: Fix an Oops during delegation callbacks + - powerpc/numa: Suppress "VPHN is not supported" messages + - efi/arm: Revert deferred unmap of early memmap mapping + - z3fold: fix possible reclaim races + - mm, memory_hotplug: check zone_movable in has_unmovable_pages + - tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset + - mm, page_alloc: check for max order in hot path + - dax: Avoid losing wakeup in dax_lock_mapping_entry + - include/linux/pfn_t.h: force '~' to be parsed as an unary operator + - tty: wipe buffer. + - tty: wipe buffer if not echoing data + - gfs2: Fix iomap buffer head reference counting bug + - rcu: Make need_resched() respond to urgent RCU-QS needs + - media: ov5640: Re-work MIPI startup sequence + - media: ov5640: Fix timings setup code + - media: ov5640: fix exposure regression + - media: ov5640: fix auto gain & exposure when changing mode + - media: ov5640: fix wrong binning value in exposure calculation + - media: ov5640: fix auto controls values when switching to manual mode + - Linux 4.19.6 + + * linux-buildinfo: pull out ABI information into its own package + (LP: #1806380) + - [Packaging] limit preparation to linux-libc-dev in headers + - [Packaging] commonise debhelper invocation + - [Packaging] ABI -- accumulate abi information at the end of the build + - [Packaging] buildinfo -- add basic build information + - [Packaging] buildinfo -- add firmware information to the flavour ABI + - [Packaging] buildinfo -- add compiler information to the flavour ABI + - [Packaging] buildinfo -- add buildinfo support to getabis + - [Packaging] getabis -- handle all known package combinations + - [Packaging] getabis -- support parsing a simple version + + * linux packages should own /usr/lib/linux/triggers (LP: #1770256) + - [Packaging] own /usr/lib/linux/triggers + + * Miscellaneous upstream changes + - blk-mq: fix corruption with direct issue + + -- Seth Forshee Wed, 05 Dec 2018 09:18:30 -0600 + +linux (4.19.0-7.8) disco; urgency=medium + + * linux: 4.19.0-7.8 -proposed tracker (LP: #1805465) + + * Fix and issue that LG I2C touchscreen stops working after reboot + (LP: #1805085) + - HID: i2c-hid: Disable runtime PM for LG touchscreen + + * click/pop noise in the headphone on several lenovo laptops (LP: #1805079) // + click/pop noise in the headphone on several lenovo laptops (LP: #1805079) + - ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops + + * Regression: hinic performance degrades over time (LP: #1805248) + - Revert "net-next/hinic: add checksum offload and TSO support" + + * Disco update: 4.19.5 upstream stable release (LP: #1805461) + - drm/i915: Replace some PAGE_SIZE with I915_GTT_PAGE_SIZE + - cifs: don't dereference smb_file_target before null check + - cifs: fix return value for cifs_listxattr + - arm64: kprobe: make page to RO mode when allocate it + - block: brd: associate with queue until adding disk + - net: hns3: bugfix for rtnl_lock's range in the hclgevf_reset() + - net: hns3: bugfix for rtnl_lock's range in the hclge_reset() + - net: hns3: bugfix for handling mailbox while the command queue reinitialized + - net: hns3: bugfix for the initialization of command queue's spin lock + - ixgbe: fix MAC anti-spoofing filter after VFLR + - reiserfs: propagate errors from fill_with_dentries() properly + - hfs: prevent btree data loss on root split + - hfsplus: prevent btree data loss on root split + - perf unwind: Take pgoff into account when reporting elf to libdwfl + - um: Give start_idle_thread() a return code + - drm/edid: Add 6 bpc quirk for BOE panel. + - afs: Handle EIO from delivery function + - platform/x86: intel_telemetry: report debugfs failure + - clk: fixed-rate: fix of_node_get-put imbalance + - perf symbols: Set PLT entry/header sizes properly on Sparc + - fs/exofs: fix potential memory leak in mount option parsing + - clk: samsung: exynos5420: Enable PERIS clocks for suspend + - apparmor: Fix uninitialized value in aa_split_fqname + - x86/earlyprintk: Add a force option for pciserial device + - platform/x86: acerhdf: Add BIOS entry for Gateway LT31 v1.3307 + - clk: meson-axg: pcie: drop the mpll3 clock parent + - arm64: percpu: Initialize ret in the default case + - clk: meson: clk-pll: drop CLK_GET_RATE_NOCACHE where unnecessary + - clk: renesas: r9a06g032: Fix UART34567 clock rate + - clk: ti: fix OF child-node lookup + - serial: sh-sci: Fix receive on SCIFA/SCIFB variants with DMA + - netfilter: ipv6: fix oops when defragmenting locally generated fragments + - netfilter: bridge: define INT_MIN & INT_MAX in userspace + - s390/decompressor: add missing FORCE to build targets + - s390/vdso: add missing FORCE to build targets + - HID: i2c-hid: Add a small delay after sleep command for Raydium touchpanel + - Revert "HID: add NOGET quirk for Eaton Ellipse MAX UPS" + - HID: alps: allow incoming reports when only the trackstick is opened + - Revert "netfilter: nft_numgen: add map lookups for numgen random operations" + - netfilter: ipset: list:set: Decrease refcount synchronously on deletion and + replace + - netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net + - netfilter: ipset: fix ip_set_list allocation failure + - s390/mm: fix mis-accounting of pgtable_bytes + - s390/mm: Fix ERROR: "__node_distance" undefined! + - bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv + - netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() + - netfilter: xt_IDLETIMER: add sysfs filename checking routine + - netfilter: ipset: Fix calling ip_set() macro at dumping + - netfilter: nft_compat: ebtables 'nat' table is normal chain type + - s390/qeth: fix HiperSockets sniffer + - s390/qeth: unregister netdevice only when registered + - net: hns3: Fix for out-of-bounds access when setting pfc back pressure + - hwmon: (ibmpowernv) Remove bogus __init annotations + - ARM: dts: imx6sll: fix typo for fsl,imx6sll-i2c node + - ARM: dts: fsl: Fix improperly quoted stdout-path values + - Revert "drm/exynos/decon5433: implement frame counter" + - arm64: dts: renesas: r8a7795: add missing dma-names on hscif2 + - arm64: dts: renesas: condor: switch from EtherAVB to GEther + - xen/grant-table: Fix incorrect gnttab_dma_free_pages() pr_debug message + - clk: fixed-factor: fix of_node_get-put imbalance + - mtd: nand: Fix nanddev_pos_next_page() kernel-doc header + - lib/raid6: Fix arm64 test build + - drm/amd/display: Stop leaking planes + - block: Clear kernel memory before copying to user + - drm/amd/display: Drop reusing drm connector for MST + - drm/amd/amdgpu/dm: Fix dm_dp_create_fake_mst_encoder() + - s390/perf: Change CPUM_CF return code in event init function + - ceph: quota: fix null pointer dereference in quota check + - of/device: Really only set bus DMA mask when appropriate + - nvme: make sure ns head inherits underlying device limits + - i2c: omap: Enable for ARCH_K3 + - i2c: qcom-geni: Fix runtime PM mismatch with child devices + - sched/core: Take the hotplug lock in sched_init_smp() + - perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so + - perf tools: Do not zero sample_id_all for group members + - ice: Fix dead device link issue with flow control + - ice: Fix the bytecount sent to netdev_tx_sent_queue + - ice: Change req_speeds to be u16 + - i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features + - qed: Fix memory/entry leak in qed_init_sp_request() + - qed: Fix blocking/unlimited SPQ entries leak + - qed: Fix SPQ entries not returned to pool in error flows + - qed: Fix potential memory corruption + - net: stmmac: Fix RX packet size > 8191 + - net: aquantia: fix potential IOMMU fault after driver unbind + - net: aquantia: fixed enable unicast on 32 macvlan + - net: aquantia: invalid checksumm offload implementation + - kbuild: deb-pkg: fix too low build version number + - Revert "scripts/setlocalversion: git: Make -dirty check more robust" + - SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() + - x86/mm: Move LDT remap out of KASLR region on 5-level paging + - x86/ldt: Unmap PTEs for the slot before freeing LDT pages + - x86/ldt: Remove unused variable in map_ldt_struct() + - media: v4l: event: Add subscription to list before calling "add" operation + - MIPS: OCTEON: cavium_octeon_defconfig: re-enable OCTEON USB driver + - RISC-V: Fix raw_copy_{to,from}_user() + - uio: Fix an Oops on load + - ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 + - ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() + - can: kvaser_usb: Fix accessing freed memory in kvaser_usb_start_xmit() + - can: kvaser_usb: Fix potential uninitialized variable use + - usb: cdc-acm: add entry for Hiro (Conexant) modem + - USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub + - usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB + - misc: atmel-ssc: Fix section annotation on atmel_ssc_get_driver_data + - USB: misc: appledisplay: add 20" Apple Cinema Display + - gnss: serial: fix synchronous write timeout + - gnss: sirf: fix synchronous write timeout + - mtd: rawnand: atmel: fix OF child-node lookup + - drivers/misc/sgi-gru: fix Spectre v1 vulnerability + - ACPI / platform: Add SMB0001 HID to forbidden_id_list + - HID: uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges + - HID: Add quirk for Primax PIXART OEM mice + - HID: Add quirk for Microsoft PIXART OEM mouse + - libceph: fall back to sendmsg for slab pages + - mt76x0: run vco calibration for each channel configuration + - Linux 4.19.5 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: Build signed kernels for arm64" + + -- Seth Forshee Tue, 27 Nov 2018 10:38:34 -0600 + +linux (4.19.0-6.7) disco; urgency=medium + + * linux: 4.19.0-6.7 -proposed tracker (LP: #1805195) + + * SecureBoot support for arm64 (LP: #1804481) + - Build signed kernels for arm64 + + * Add pointstick support for Cirque Touchpad (LP: #1805081) + - HID: multitouch: Add pointstick support for Cirque Touchpad + + * Power consumption during s2idle is higher than long idle (Intel SSDPEKKF) + (LP: #1804588) + - SAUCE: pci: prevent Intel NVMe SSDPEKKF from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: 4.19.4 upstream stable release (LP: #1805159) + - flow_dissector: do not dissect l4 ports for fragments + - ibmvnic: fix accelerated VLAN handling + - ip_tunnel: don't force DF when MTU is locked + - ipv6: fix a dst leak when removing its exception + - ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF + - net: bcmgenet: protect stop from timeout + - net-gro: reset skb->pkt_type in napi_reuse_skb() + - sctp: not allow to set asoc prsctp_enable by sockopt + - tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP + coalescing + - tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths + - tipc: don't assume linear buffer when reading ancillary data + - tipc: fix lockdep warning when reinitilaizing sockets + - tuntap: fix multiqueue rx + - net: systemport: Protect stop from timeout + - net/sched: act_pedit: fix memory leak when IDR allocation fails + - net: sched: cls_flower: validate nested enc_opts_policy to avoid warning + - tipc: fix link re-establish failure + - net/mlx5e: Don't match on vlan non-existence if ethertype is wildcarded + - net/mlx5e: Claim TC hw offloads support only under a proper build config + - net/mlx5e: Adjust to max number of channles when re-attaching + - net/mlx5e: RX, verify received packet size in Linear Striding RQ + - Revert "sctp: remove sctp_transport_pmtu_check" + - net/mlx5e: Always use the match level enum when parsing TC rule match + - net/mlx5e: Fix selftest for small MTUs + - net/mlx5e: Removed unnecessary warnings in FEC caps query + - inet: frags: better deal with smp races + - l2tp: fix a sock refcnt leak in l2tp_tunnel_register + - net/mlx5: IPSec, Fix the SA context hash key + - net/mlx5e: IPoIB, Reset QP after channels are closed + - net: dsa: mv88e6xxx: Fix clearing of stats counters + - net: phy: realtek: fix RTL8201F sysfs name + - sctp: define SCTP_SS_DEFAULT for Stream schedulers + - net: qualcomm: rmnet: Fix incorrect assignment of real_dev + - net: dsa: microchip: initialize mutex before use + - sctp: fix strchange_flags name for Stream Change Event + - net: phy: mdio-gpio: Fix working over slow can_sleep GPIOs + - sctp: not increase stream's incnt before sending addstrm_in request + - mlxsw: spectrum: Fix IP2ME CPU policer configuration + - net: smsc95xx: Fix MTU range + - rxrpc: Fix lockup due to no error backoff after ack transmit error + - usbnet: smsc95xx: disable carrier check while suspending + - Revert "x86/speculation: Enable cross-hyperthread spectre v2 STIBP + mitigation" + - Linux 4.19.4 + + * Disco update: 4.19.3 upstream stable release (LP: #1805158) + - powerpc/traps: restore recoverability of machine_check interrupts + - powerpc/64/module: REL32 relocation range check + - powerpc/mm: Fix page table dump to work on Radix + - powerpc/mm: fix always true/false warning in slice.c + - drm/amd/display: fix bug of accessing invalid memory + - Input: wm97xx-ts - fix exit path + - powerpc/Makefile: Fix PPC_BOOK3S_64 ASFLAGS + - powerpc/eeh: Fix possible null deref in eeh_dump_dev_log() + - tty: check name length in tty_find_polling_driver() + - tracing/kprobes: Check the probe on unloaded module correctly + - drm/nouveau/secboot/acr: fix memory leak + - drm/amdgpu/powerplay: fix missing break in switch statements + - ARM: imx_v6_v7_defconfig: Select CONFIG_TMPFS_POSIX_ACL + - powerpc/nohash: fix undefined behaviour when testing page size support + - drm/msm/gpu: fix parameters in function msm_gpu_crashstate_capture + - drm/msm/disp/dpu: Use proper define for drm_encoder_init() 'encoder_type' + - drm/msm: dpu: Allow planes to extend past active display + - powerpc/mm: Don't report hugepage tables as memory leaks when using kmemleak + - drm/omap: fix memory barrier bug in DMM driver + - drm/amd/display: Raise dispclk value for dce120 by 15% + - drm/amd/display: fix gamma not being applied + - drm/hisilicon: hibmc: Do not carry error code in HiBMC framebuffer pointer + - media: pci: cx23885: handle adding to list failure + - media: coda: don't overwrite h.264 profile_idc on decoder instance + - MIPS: kexec: Mark CPU offline before disabling local IRQ + - powerpc/boot: Ensure _zimage_start is a weak symbol + - powerpc/memtrace: Remove memory in chunks + - MIPS/PCI: Call pcie_bus_configure_settings() to set MPS/MRRS + - staging: erofs: fix a missing endian conversion + - serial: 8250_of: Fix for lack of interrupt support + - sc16is7xx: Fix for multi-channel stall + - media: tvp5150: fix width alignment during set_selection() + - powerpc/selftests: Wait all threads to join + - staging:iio:ad7606: fix voltage scales + - drm: rcar-du: Update Gen3 output limitations + - drm/amdgpu: Fix SDMA TO after GPU reset v3 + - staging: most: video: fix registration of an empty comp core_component + - 9p locks: fix glock.client_id leak in do_lock + - udf: Prevent write-unsupported filesystem to be remounted read-write + - ARM: dts: imx6ull: keep IMX6UL_ prefix for signals on both i.MX6UL and + i.MX6ULL + - media: ov5640: fix mode change regression + - 9p: clear dangling pointers in p9stat_free + - drm/amdgpu: fix integer overflow test in amdgpu_bo_list_create() + - media: ov5640: fix restore of last mode set + - cdrom: fix improper type cast, which can leat to information leak. + - ovl: fix error handling in ovl_verify_set_fh() + - ovl: fix recursive oi->lock in ovl_link() + - ovl: check whiteout in ovl_create_over_whiteout() + - ovl: automatically enable redirect_dir on metacopy=on + - serial: sh-sci: Fix could not remove dev_attr_rx_fifo_timeout + - scsi: qla2xxx: Fix incorrect port speed being set for FC adapters + - scsi: qla2xxx: Fix process response queue for ISP26XX and above + - scsi: qla2xxx: Remove stale debug trace message from tcm_qla2xxx + - scsi: qla2xxx: Fix early srb free on abort + - scsi: qla2xxx: shutdown chip if reset fail + - scsi: qla2xxx: Reject bsg request if chip is down. + - scsi: qla2xxx: Fix re-using LoopID when handle is in use + - scsi: qla2xxx: Fix for double free of SRB structure + - scsi: qla2xxx: Fix NVMe session hang on unload + - scsi: qla2xxx: Fix NVMe Target discovery + - scsi: qla2xxx: Fix duplicate switch database entries + - scsi: qla2xxx: Fix driver hang when FC-NVMe LUNs are configured + - vfs: fix FIGETBSZ ioctl on an overlayfs file + - fuse: Fix use-after-free in fuse_dev_do_read() + - fuse: Fix use-after-free in fuse_dev_do_write() + - fuse: fix blocked_waitq wakeup + - fuse: set FR_SENT while locked + - drm/msm: fix OF child-node lookup + - arm64: dts: stratix10: Support Ethernet Jumbo frame + - arm64: dts: stratix10: fix multicast filtering + - clk: meson-gxbb: set fclk_div3 as CLK_IS_CRITICAL + - clk: meson: axg: mark fdiv2 and fdiv3 as critical + - zram: close udev startup race condition as default groups + - MIPS: Loongson-3: Fix CPU UART irq delivery problem + - MIPS: Loongson-3: Fix BRIDGE irq delivery problem + - xtensa: add NOTES section to the linker script + - xtensa: make sure bFLT stack is 16 byte aligned + - xtensa: fix boot parameters address translation + - um: Drop own definition of PTRACE_SYSEMU/_SINGLESTEP + - clk: s2mps11: Fix matching when built as module and DT node contains + compatible + - clk: at91: Fix division by zero in PLL recalc_rate() + - clk: sunxi-ng: h6: fix bus clocks' divider position + - clk: rockchip: fix wrong mmc sample phase shift for rk3328 + - clk: rockchip: Fix static checker warning in rockchip_ddrclk_get_parent call + - libceph: bump CEPH_MSG_MAX_DATA_LEN + - Revert "ceph: fix dentry leak in splice_dentry()" + - thermal: core: Fix use-after-free in thermal_cooling_device_destroy_sysfs + - mach64: fix display corruption on big endian machines + - mach64: fix image corruption due to reading accelerator registers + - acpi/nfit, x86/mce: Handle only uncorrectable machine checks + - acpi/nfit, x86/mce: Validate a MCE's address before using it + - acpi, nfit: Fix ARS overflow continuation + - reset: hisilicon: fix potential NULL pointer dereference + - crypto: hisilicon - Fix NULL dereference for same dst and src + - crypto: hisilicon - Fix reference after free of memories on error path + - vhost/scsi: truncate T10 PI iov_iter to prot_bytes + - scsi: qla2xxx: Initialize port speed to avoid setting lower speed + - SCSI: fix queue cleanup race before queue initialization is done + - Revert "powerpc/8xx: Use L1 entry APG to handle _PAGE_ACCESSED for + CONFIG_SWAP" + - soc: ti: QMSS: Fix usage of irq_set_affinity_hint + - ocfs2: fix a misuse a of brelse after failing ocfs2_check_dir_entry + - ocfs2: free up write context when direct IO failed + - mm: thp: relax __GFP_THISNODE for MADV_HUGEPAGE mappings + - memory_hotplug: cond_resched in __remove_pages + - netfilter: conntrack: fix calculation of next bucket number in early_drop + - ARM: 8809/1: proc-v7: fix Thumb annotation of cpu_v7_hvc_switch_mm + - bonding/802.3ad: fix link_failure_count tracking + - mtd: spi-nor: cadence-quadspi: Return error code in + cqspi_direct_read_execute() + - mtd: nand: Fix nanddev_neraseblocks() + - mtd: docg3: don't set conflicting BCH_CONST_PARAMS option + - hwmon: (core) Fix double-free in __hwmon_device_register() + - perf cs-etm: Correct CPU mode for samples + - perf stat: Handle different PMU names with common prefix + - perf callchain: Honour the ordering of PERF_CONTEXT_{USER,KERNEL,etc} + - perf intel-pt/bts: Calculate cpumode for synthesized samples + - perf intel-pt: Insert callchain context into synthesized callchains + - of, numa: Validate some distance map rules + - x86/cpu/vmware: Do not trace vmware_sched_clock() + - x86/hyper-v: Enable PIT shutdown quirk + - termios, tty/tty_baudrate.c: fix buffer overrun + - arch/alpha, termios: implement BOTHER, IBSHIFT and termios2 + - watchdog/core: Add missing prototypes for weak functions + - btrfs: fix pinned underflow after transaction aborted + - Btrfs: fix missing data checksums after a ranged fsync (msync) + - Btrfs: fix cur_offset in the error case for nocow + - Btrfs: fix infinite loop on inode eviction after deduplication of eof block + - Btrfs: fix data corruption due to cloning of eof block + - btrfs: tree-checker: Fix misleading group system information + - clockevents/drivers/i8253: Add support for PIT shutdown quirk + - ext4: add missing brelse() update_backups()'s error path + - ext4: add missing brelse() in set_flexbg_block_bitmap()'s error path + - ext4: add missing brelse() add_new_gdb_meta_bg()'s error path + - ext4: avoid potential extra brelse in setup_new_flex_group_blocks() + - ext4: missing !bh check in ext4_xattr_inode_write() + - ext4: fix possible inode leak in the retry loop of ext4_resize_fs() + - ext4: avoid buffer leak on shutdown in ext4_mark_iloc_dirty() + - ext4: avoid buffer leak in ext4_orphan_add() after prior errors + - ext4: fix missing cleanup if ext4_alloc_flex_bg_array() fails while resizing + - ext4: avoid possible double brelse() in add_new_gdb() on error path + - ext4: fix possible leak of sbi->s_group_desc_leak in error path + - ext4: fix possible leak of s_journal_flag_rwsem in error path + - ext4: fix buffer leak in ext4_xattr_get_block() on error path + - ext4: release bs.bh before re-using in ext4_xattr_block_find() + - ext4: fix buffer leak in ext4_xattr_move_to_block() on error path + - ext4: fix buffer leak in ext4_expand_extra_isize_ea() on error path + - ext4: fix buffer leak in __ext4_read_dirblock() on error path + - mount: Prevent MNT_DETACH from disconnecting locked mounts + - mnt: fix __detach_mounts infinite loop + - uapi: fix linux/kfd_ioctl.h userspace compilation errors + - ARM: cpuidle: Don't register the driver when back-end init returns -ENXIO + - kdb: use correct pointer when 'btc' calls 'btt' + - kdb: print real address of pointers instead of hashed addresses + - sunrpc: correct the computation for page_ptr when truncating + - NFSv4: Don't exit the state manager without clearing + NFS4CLNT_MANAGER_RUNNING + - nfsd: COPY and CLONE operations require the saved filehandle to be set + - rtc: hctosys: Add missing range error reporting + - fuse: fix use-after-free in fuse_direct_IO() + - fuse: fix leaked notify reply + - fuse: fix possibly missed wake-up after abort + - selinux: check length properly in SCTP bind hook + - gfs2: Put bitmap buffers in put_super + - gfs2: Fix metadata read-ahead during truncate (2) + - libata: blacklist SAMSUNG MZ7TD256HAFV-000L9 SSD + - crypto: user - fix leaking uninitialized memory to userspace + - lib/ubsan.c: don't mark __ubsan_handle_builtin_unreachable as noreturn + - hugetlbfs: fix kernel BUG at fs/hugetlbfs/inode.c:444! + - mm/swapfile.c: use kvzalloc for swap_info_struct allocation + - efi/arm/libstub: Pack FDT after populating it + - mm: don't reclaim inodes with many attached pages + - scripts/spdxcheck.py: make python3 compliant + - drm/rockchip: Allow driver to be shutdown on reboot/kexec + - drm/amdgpu: Fix typo in amdgpu_vmid_mgr_init + - drm/amdgpu: add missing CHIP_HAINAN in amdgpu_ucode_get_load_type + - drm/amdgpu: Suppress keypresses from ACPI_VIDEO events + - drm/nouveau: Check backlight IDs are >= 0, not > 0 + - drm/nouveau: Fix nv50_mstc->best_encoder() + - drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD + - drm/etnaviv: fix bogus fence complete check in timeout handler + - drm/dp_mst: Check if primary mstb is null + - drm: panel-orientation-quirks: Add quirk for Acer One 10 (S1003) + - drm/i915/dp: Link train Fallback on eDP only if fallback link BW can fit + panel's native mode + - drm/i915: Use the correct crtc when sanitizing plane mapping + - drm/i915: Restore vblank interrupts earlier + - drm/i915: Don't unset intel_connector->mst_port + - drm/i915: Skip vcpi allocation for MSTB ports that are gone + - drm/i915: Large page offsets for pread/pwrite + - drm/i915/dp: Fix link retraining comment in intel_dp_long_pulse() + - drm/i915/dp: Restrict link retrain workaround to external monitors + - drm/i915/icl: Fix the macros for DFLEXDPMLE register bits + - drm/i915/hdmi: Add HDMI 2.0 audio clock recovery N values + - drm/i915: Mark up GTT sizes as u64 + - drm/i915: Fix error handling for the NV12 fb dimensions check + - drm/i915: Fix ilk+ watermarks when disabling pipes + - drm/i915: Compare user's 64b GTT offset even on 32b + - drm/i915: Don't oops during modeset shutdown after lpe audio deinit + - drm/i915: Mark pin flags as u64 + - drm/i915/ringbuffer: Delay after EMIT_INVALIDATE for gen4/gen5 + - drm/i915/execlists: Force write serialisation into context image vs + execution + - drm/i915: Fix possible race in intel_dp_add_mst_connector() + - drm/i915: Fix NULL deref when re-enabling HPD IRQs on systems with MST + - drm/i915: Fix hpd handling for pins with two encoders + - CONFIG_XEN_PV breaks xen_create_contiguous_region on ARM + - Revert "ACPICA: AML interpreter: add region addresses in global list during + initialization" + - Linux 4.19.3 + + * glibc 2.28-0ubuntu1 ADT test failure with linux 4.19.0-5.6 (LP: #1805154) + - SAUCE: Revert "x86: vdso: Use $LD instead of $CC to link" + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.12-1ubuntu1, zfs to 0.7.12-1ubuntu1 + + -- Seth Forshee Mon, 26 Nov 2018 11:44:00 -0600 + +linux (4.19.0-5.6) disco; urgency=medium + + * crash in ENA driver on removing an interface (LP: #1802341) + - SAUCE: net: ena: fix crash during ena_remove() + + * Ubuntu 18.04.1 - [s390x] Kernel panic while stressing network bonding + (LP: #1797367) + - s390/qeth: sanitize strings in debug messages + + * Disco update: 4.19.2 upstream stable release (LP: #1803410) + - bpf: fix partial copy of map_ptr when dst is scalar + - MIPS: VDSO: Reduce VDSO_RANDOMIZE_SIZE to 64MB for 64bit + - gpio: mxs: Get rid of external API call + - mtd: rawnand: marvell: fix the IRQ handler complete() condition + - mtd: maps: gpio-addr-flash: Fix ioremapped size + - mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB + - mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash + - mtd: spi-nor: fsl-quadspi: Don't let -EINVAL on the bus + - spi: spi-mem: Adjust op len based on message/transfer size limitations + - spi: bcm-qspi: switch back to reading flash using smaller chunks + - spi: bcm-qspi: fix calculation of address length + - bcache: trace missed reading by cache_missed + - bcache: fix ioctl in flash device + - bcache: correct dirty data statistics + - bcache: fix miss key refill->end in writeback + - hwmon: (pmbus) Fix page count auto-detection. + - jffs2: free jffs2_sb_info through jffs2_kill_sb() + - block: setup bounce bio_sets properly + - block: make sure discard bio is aligned with logical block size + - block: make sure writesame bio is aligned with logical block size + - cpufreq: conservative: Take limits changes into account properly + - dma-mapping: fix panic caused by passing empty cma command line argument + - pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges + - ACPI / OSL: Use 'jiffies' as the time bassis for acpi_os_get_timer() + - ACPICA: AML interpreter: add region addresses in global list during + initialization + - ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended + opcodes + - acpi, nfit: Fix Address Range Scrub completion tracking + - kprobes/x86: Use preempt_enable() in optimized_callback() + - mailbox: PCC: handle parse error + - parisc: Fix address in HPMC IVA + - parisc: Fix map_pages() to not overwrite existing pte entries + - parisc: Fix exported address of os_hpmc handler + - ALSA: hda - Add quirk for ASUS G751 laptop + - ALSA: hda - Fix headphone pin config for ASUS G751 + - ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) + - ALSA: hda: Add 2 more models to the power_save blacklist + - ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops + - ALSA: hda - Fix incorrect clearance of thinkpad_acpi hooks + - x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation + - x86/xen: Fix boot loader version reported for PVH guests + - x86/corruption-check: Fix panic in memory_corruption_check() when boot + option without value is provided + - x86/kvm/nVMX: allow bare VMXON state migration + - x86/mm/pat: Disable preemption around __flush_tlb_all() + - x86/numa_emulation: Fix uniform-split numa emulation + - ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen + - net: socionext: Reset tx queue in ndo_stop + - net: loopback: clear skb->tstamp before netif_rx() + - locking/lockdep: Fix debug_locks off performance problem + - netfilter: xt_nat: fix DNAT target for shifted portmap ranges + - ataflop: fix error handling during setup + - swim: fix cleanup on setup error + - arm64: cpufeature: ctr: Fix cpu capability check for late CPUs + - hv_netvsc: fix vf serial matching with pci slot info + - nfp: devlink port split support for 1x100G CXP NIC + - tun: Consistently configure generic netdev params via rtnetlink + - s390/sthyi: Fix machine name validity indication + - hwmon: (pwm-fan) Set fan speed to 0 on suspend + - lightnvm: pblk: fix race on sysfs line state + - lightnvm: pblk: fix two sleep-in-atomic-context bugs + - lightnvm: pblk: fix race condition on metadata I/O + - spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} + - perf tools: Free temporary 'sys' string in read_event_files() + - perf tools: Cleanup trace-event-info 'tdata' leak + - perf tools: Free 'printk' string in parse_ftrace_printk() + - perf strbuf: Match va_{add,copy} with va_end + - cpupower: Fix coredump on VMWare + - bcache: Populate writeback_rate_minimum attribute + - mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 + - sdhci: acpi: add free_slot callback + - mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset + - iwlwifi: pcie: avoid empty free RB queue + - iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface + - iwlwifi: mvm: check for n_profiles validity in EWRD ACPI + - x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC + - wlcore: Fix BUG with clear completion on timeout + - ACPI/PPTT: Handle architecturally unknown cache types + - ACPI / PM: LPIT: Register sysfs attributes based on FADT + - ACPI / processor: Fix the return value of acpi_processor_ids_walk() + - cpufreq: dt: Try freeing static OPPs only if we have added them + - x86/intel_rdt: Show missing resctrl mount options + - mtd: rawnand: atmel: Fix potential NULL pointer dereference + - nvme: call nvme_complete_rq when nvmf_check_ready fails for mpath I/O + - ath10k: fix tx status flag setting for management frames + - signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack + - ice: fix changing of ring descriptor size (ethtool -G) + - ice: update fw version check logic + - net: hns3: Fix for packet buffer setting bug + - Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth + - Bluetooth: hci_qca: Remove hdev dereference in qca_close(). + - x86: boot: Fix EFI stub alignment + - net: hns3: Add nic state check before calling netif_tx_wake_queue + - net: hns3: Fix ets validate issue + - pinctrl: sunxi: fix 'pctrl->functions' allocation in + sunxi_pinctrl_build_state + - pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux + - brcmfmac: fix for proper support of 160MHz bandwidth + - net: hns3: Check hdev state when getting link status + - net: hns3: Set STATE_DOWN bit of hdev state when stopping net + - net: phy: phylink: ensure the carrier is off when starting phylink + - block, bfq: correctly charge and reset entity service in all cases + - arm64: entry: Allow handling of undefined instructions from EL1 + - kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() + - spi: gpio: No MISO does not imply no RX + - ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers + - pinctrl: qcom: spmi-mpp: Fix drive strength setting + - bpf/verifier: fix verifier instability + - failover: Add missing check to validate 'slave_dev' in + net_failover_slave_unregister + - perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo + - pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant + - pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() to be compliant + - net: hns3: Preserve vlan 0 in hardware table + - net: hns3: Fix ping exited problem when doing lp selftest + - net: hns3: Fix for vf vlan delete failed problem + - net: dsa: mv88e6xxx: Fix writing to a PHY page. + - mt76x2u: run device cleanup routine if resume fails + - rsi: fix memory alignment issue in ARM32 platforms + - libertas_tf: prevent underflow in process_cmdrequest() + - iwlwifi: mvm: fix BAR seq ctrl reporting + - gpio: brcmstb: allow 0 width GPIO banks + - ixgbe: disallow IPsec Tx offload when in SR-IOV mode + - ixgbevf: VF2VF TCP RSS + - wil6210: fix RX buffers release and unmap + - ath10k: schedule hardware restart if WMI command times out + - libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 + - thermal: rcar_thermal: Prevent doing work after unbind + - thermal: da9062/61: Prevent hardware access during system suspend + - cifs: fix a credits leak for compund commands + - cgroup, netclassid: add a preemption point to write_classid + - net: stmmac: dwmac-sun8i: fix OF child-node lookup + - f2fs: fix to account IO correctly for cgroup writeback + - MD: Memory leak when flush bio size is zero + - md: fix memleak for mempool + - of: Add missing exports of node name compare functions + - scsi: esp_scsi: Track residual for PIO transfers + - scsi: ufs: Schedule clk gating work on correct queue + - UAPI: ndctl: Fix g++-unsupported initialisation in headers + - KVM: nVMX: Clear reserved bits of #DB exit qualification + - scsi: megaraid_sas: fix a missing-check bug + - RDMA/core: Do not expose unsupported counters + - RDMA/cm: Respect returned status of cm_init_av_by_path + - IB/ipoib: Clear IPCB before icmp_send + - RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case + - RDMA/bnxt_re: Fix recursive lock warning in debug kernel + - usb: host: ohci-at91: fix request of irq for optional gpio + - PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic + - PCI: cadence: Use AXI region 0 to signal interrupts from EP + - usb: typec: tcpm: Report back negotiated PPS voltage and current + - tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated + - f2fs: clear PageError on the read path + - Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask + - VMCI: Resource wildcard match fixed + - PCI / ACPI: Enable wake automatically for power managed bridges + - xprtrdma: Reset credit grant properly after a disconnect + - irqchip/pdc: Setup all edge interrupts as rising edge at GIC + - usb: dwc2: fix call to vbus supply exit routine, call it unlocked + - usb: dwc2: fix a race with external vbus supply + - usb: gadget: udc: atmel: handle at91sam9rl PMC + - ext4: fix argument checking in EXT4_IOC_MOVE_EXT + - MD: fix invalid stored role for a disk + - PCI: cadence: Correct probe behaviour when failing to get PHY + - nvmem: check the return value of nvmem_add_cells() + - xhci: Avoid USB autosuspend when resuming USB2 ports. + - scsi: qla2xxx: Fix recursive mailbox timeout + - f2fs: fix to recover inode's crtime during POR + - f2fs: fix to recover inode's i_flags during POR + - PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice + - coresight: etb10: Fix handling of perf mode + - PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode + - crypto: caam - fix implicit casts in endianness helpers + - usb: chipidea: Prevent unbalanced IRQ disable + - Smack: ptrace capability use fixes + - driver/dma/ioat: Call del_timer_sync() without holding prep_lock + - ASoC: AMD: Fix capture unstable in beginning for some runs + - firmware: coreboot: Unmap ioregion after device population + - IB/ipoib: Use dev_port to expose network interface port numbers + - IB/mlx5: Allow transition of DCI QP to reset + - uio: ensure class is registered before devices + - scsi: lpfc: Correct soft lockup when running mds diagnostics + - scsi: lpfc: Correct race with abort on completion path + - f2fs: avoid sleeping under spin_lock + - f2fs: report error if quota off error during umount + - signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace + init + - f2fs: fix to flush all dirty inodes recovered in readonly fs + - mfd: menelaus: Fix possible race condition and leak + - dmaengine: dma-jz4780: Return error if not probed from DT + - IB/rxe: fix for duplicate request processing and ack psns + - ALSA: hda: Check the non-cached stream buffers more explicitly + - cpupower: Fix AMD Family 0x17 msr_pstate size + - Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" + - f2fs: fix missing up_read + - f2fs: fix to recover cold bit of inode block during POR + - f2fs: fix to account IO correctly + - OPP: Free OPP table properly on performance state irregularities + - ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings + - ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 + - xen-swiotlb: use actually allocated size on check physical continuous + - tpm: Restore functionality to xen vtpm driver. + - xen/blkfront: avoid NULL blkfront_info dereference on device removal + - xen/balloon: Support xend-based toolstack + - xen: fix race in xen_qlock_wait() + - xen: make xen_qlock_wait() nestable + - xen/pvh: increase early stack size + - xen/pvh: don't try to unplug emulated devices + - libertas: don't set URB_ZERO_PACKET on IN USB transfer + - usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten + - usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage + - usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" + - mt76: mt76x2: fix multi-interface beacon configuration + - iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() + - net/ipv4: defensive cipso option parsing + - dmaengine: ppc4xx: fix off-by-one build failure + - scsi: sched/wait: Add wait_event_lock_irq_timeout for TASK_UNINTERRUPTIBLE + usage + - scsi: target: Fix target_wait_for_sess_cmds breakage with active signals + - libnvdimm: Hold reference on parent while scheduling async init + - libnvdimm, region: Fail badblocks listing for inactive regions + - libnvdimm, pmem: Fix badblocks population for 'raw' namespaces + - ASoC: intel: skylake: Add missing break in skl_tplg_get_token() + - ASoC: sta32x: set ->component pointer in private struct + - IB/mlx5: Fix MR cache initialization + - IB/rxe: Revise the ib_wr_opcode enum + - jbd2: fix use after free in jbd2_log_do_checkpoint() + - gfs2_meta: ->mount() can get NULL dev_name + - ext4: fix EXT4_IOC_SWAP_BOOT + - ext4: initialize retries variable in ext4_da_write_inline_data_begin() + - ext4: fix setattr project check in fssetxattr ioctl + - ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR + - ext4: fix use-after-free race in ext4_remount()'s error path + - selinux: fix mounting of cgroup2 under older policies + - HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 + - HID: hiddev: fix potential Spectre v1 + - EDAC, amd64: Add Family 17h, models 10h-2fh support + - EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting + - EDAC, skx_edac: Fix logical channel intermediate decoding + - ARM: dts: dra7: Fix up unaligned access setting for PCIe EP + - PCI/ASPM: Fix link_state teardown on device removal + - PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk + - signal/GenWQE: Fix sending of SIGKILL + - signal: Guard against negative signal numbers in copy_siginfo_from_user32 + - crypto: lrw - Fix out-of bounds access on counter overflow + - crypto: tcrypt - fix ghash-generic speed test + - crypto: aesni - don't use GFP_ATOMIC allocation if the request doesn't cross + a page in gcm + - crypto: morus/generic - fix for big endian systems + - crypto: aegis/generic - fix for big endian systems + - crypto: speck - remove Speck + - mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() + - userfaultfd: disable irqs when taking the waitqueue lock + - ima: fix showing large 'violations' or 'runtime_measurements_count' + - ima: open a new file instance if no read permissions + - hugetlbfs: dirty pages as they are added to pagecache + - mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly + - mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback + - KVM: arm/arm64: Ensure only THP is candidate for adjustment + - KVM: arm64: Fix caching of host MDCR_EL2 value + - kbuild: fix kernel/bounds.c 'W=1' warning + - iio: ad5064: Fix regulator handling + - iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() + - iio: adc: at91: fix acking DRDY irq on simple conversions + - iio: adc: at91: fix wrong channel number in triggered buffer mode + - w1: omap-hdq: fix missing bus unregister at removal + - smb3: allow stats which track session and share reconnects to be reset + - smb3: do not attempt cifs operation in smb3 query info error path + - smb3: on kerberos mount if server doesn't specify auth type use krb5 + - printk: Fix panic caused by passing log_buf_len to command line + - genirq: Fix race on spurious interrupt detection + - tpm: fix response size validation in tpm_get_random() + - NFC: nfcmrvl_uart: fix OF child-node lookup + - NFSv4.1: Fix the r/wsize checking + - nfs: Fix a missed page unlock after pg_doio() + - nfsd: correctly decrement odstate refcount in error path + - nfsd: Fix an Oops in free_session() + - lockd: fix access beyond unterminated strings in prints + - dm ioctl: harden copy_params()'s copy_from_user() from malicious users + - dm zoned: fix metadata block ref counting + - dm zoned: fix various dmz_get_mblock() issues + - media: ov7670: make "xclk" clock optional + - fsnotify: Fix busy inodes during unmount + - powerpc64/module elfv1: Set opd addresses after module relocation + - powerpc/msi: Fix compile error on mpc83xx + - powerpc/tm: Fix HFSCR bit for no suspend case + - powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 + - MIPS: OCTEON: fix out of bounds array access on CN68XX + - rtc: ds1307: fix ds1339 wakealarm support + - rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt' + - rtc: cmos: Remove the `use_acpi_alarm' module parameter for !ACPI + - power: supply: twl4030-charger: fix OF sibling-node lookup + - ocxl: Fix access to the AFU Descriptor Data + - iommu/arm-smmu: Ensure that page-table updates are visible before TLBI + - TC: Set DMA masks for devices + - net: bcmgenet: fix OF child-node lookup + - media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD + - Revert "media: dvbsky: use just one mutex for serializing device R/W ops" + - kgdboc: Passing ekgdboc to command line causes panic + - remoteproc: qcom: q6v5: Propagate EPROBE_DEFER + - media: cec: make cec_get_edid_spa_location() an inline function + - media: cec: integrate cec_validate_phys_addr() in cec-api.c + - xen: fix xen_qlock_wait() + - xen: remove size limit of privcmd-buf mapping interface + - xen-blkfront: fix kernel panic with negotiate_mq error path + - media: cec: add new tx/rx status bits to detect aborts/timeouts + - media: cec: fix the Signal Free Time calculation + - media: cec: forgot to cancel delayed work + - media: em28xx: use a default format if TRY_FMT fails + - media: tvp5150: avoid going past array on v4l2_querymenu() + - media: em28xx: fix input name for Terratec AV 350 + - media: em28xx: make v4l2-compliance happier by starting sequence on zero + - media: em28xx: fix handler for vidioc_s_input() + - media: adv7604: when the EDID is cleared, unconfigure CEC as well + - media: adv7842: when the EDID is cleared, unconfigure CEC as well + - drm/mediatek: fix OF sibling-node lookup + - media: media colorspaces*.rst: rename AdobeRGB to opRGB + - media: replace ADOBERGB by OPRGB + - media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC + - arm64: lse: remove -fcall-used-x0 flag + - rpmsg: smd: fix memory leak on channel create + - Cramfs: fix abad comparison when wrap-arounds occur + - ARM: dts: socfpga: Fix SDRAM node address for Arria10 + - arm64: dts: stratix10: Correct System Manager register size + - soc: qcom: rmtfs-mem: Validate that scm is available + - soc/tegra: pmc: Fix child-node lookup + - selftests/ftrace: Fix synthetic event test to delete event correctly + - selftests/powerpc: Fix ptrace tm failure + - tracing: Return -ENOENT if there is no target synthetic event + - btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled + - btrfs: Handle owner mismatch gracefully when walking up tree + - btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock + - btrfs: fix error handling in free_log_tree + - btrfs: fix error handling in btrfs_dev_replace_start + - btrfs: Enhance btrfs_trim_fs function to handle error better + - btrfs: Ensure btrfs_trim_fs can trim the whole filesystem + - btrfs: iterate all devices during trim, instead of fs_devices::alloc_list + - btrfs: don't attempt to trim devices that don't support it + - btrfs: keep trim from interfering with transaction commits + - btrfs: wait on caching when putting the bg cache + - Btrfs: don't clean dirty pages during buffered writes + - btrfs: release metadata before running delayed refs + - btrfs: protect space cache inode alloc with GFP_NOFS + - btrfs: reset max_extent_size on clear in a bitmap + - btrfs: make sure we create all new block groups + - Btrfs: fix warning when replaying log after fsync of a tmpfile + - Btrfs: fix wrong dentries after fsync of file that got its parent replaced + - btrfs: qgroup: Dirty all qgroups before rescan + - Btrfs: fix null pointer dereference on compressed write path error + - Btrfs: fix assertion on fsync of regular file when using no-holes feature + - Btrfs: fix deadlock when writing out free space caches + - btrfs: reset max_extent_size properly + - btrfs: set max_extent_size properly + - btrfs: don't use ctl->free_space for max_extent_size + - btrfs: only free reserved extent if we didn't insert it + - btrfs: fix insert_reserved error handling + - btrfs: don't run delayed_iputs in commit + - btrfs: move the dio_sem higher up the callchain + - Btrfs: fix use-after-free during inode eviction + - Btrfs: fix use-after-free when dumping free space + - net: sched: Remove TCA_OPTIONS from policy + - vt: fix broken display when running aptitude + - bpf: wait for running BPF programs when updating map-in-map + - vga_switcheroo: Fix missing gpu_bound call at audio client registration + - MD: fix invalid stored role for a disk - try2 + - Linux 4.19.2 + + * [FEAT] Guest-dedicated Crypto Adapters (LP: #1787405) + - KVM: s390: vsie: simulate VCPU SIE entry/exit + - KVM: s390: introduce and use KVM_REQ_VSIE_RESTART + - KVM: s390: refactor crypto initialization + - s390: vfio-ap: base implementation of VFIO AP device driver + - s390: vfio-ap: register matrix device with VFIO mdev framework + - s390: vfio-ap: sysfs interfaces to configure adapters + - s390: vfio-ap: sysfs interfaces to configure domains + - s390: vfio-ap: sysfs interfaces to configure control domains + - s390: vfio-ap: sysfs interface to view matrix mdev matrix + - KVM: s390: interface to clear CRYCB masks + - s390: vfio-ap: implement mediated device open callback + - s390: vfio-ap: implement VFIO_DEVICE_GET_INFO ioctl + - s390: vfio-ap: zeroize the AP queues + - s390: vfio-ap: implement VFIO_DEVICE_RESET ioctl + - KVM: s390: Clear Crypto Control Block when using vSIE + - KVM: s390: vsie: Do the CRYCB validation first + - KVM: s390: vsie: Make use of CRYCB FORMAT2 clear + - KVM: s390: vsie: Allow CRYCB FORMAT-2 + - KVM: s390: vsie: allow CRYCB FORMAT-1 + - KVM: s390: vsie: allow CRYCB FORMAT-0 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-1 + - KVM: s390: vsie: allow guest FORMAT-1 CRYCB on host FORMAT-2 + - KVM: s390: vsie: allow guest FORMAT-0 CRYCB on host FORMAT-2 + - KVM: s390: device attrs to enable/disable AP interpretation + - KVM: s390: CPU model support for AP virtualization + - s390: doc: detailed specifications for AP virtualization + - KVM: s390: fix locking for crypto setting error path + - KVM: s390: Tracing APCB changes + - s390: vfio-ap: setup APCB mask using KVM dedicated function + - [Config:] Enable CONFIG_S390_AP_IOMMU and set CONFIG_VFIO_AP to module. + + * Bypass of mount visibility through userns + mount propagation (LP: #1789161) + - mount: Retest MNT_LOCKED in do_umount + - mount: Don't allow copying MNT_UNBINDABLE|MNT_LOCKED mounts + + * CVE-2018-18955: nested user namespaces with more than five extents + incorrectly grant privileges over inode (LP: #1801924) // CVE-2018-18955 + - userns: also map extents in the reverse map to kernel IDs + + * kdump fail due to an IRQ storm (LP: #1797990) + - SAUCE: x86/PCI: Export find_cap() to be used in early PCI code + - SAUCE: x86/quirks: Add parameter to clear MSIs early on boot + - SAUCE: x86/quirks: Scan all busses for early PCI quirks + + * Disable LPM for Raydium Touchscreens (LP: #1802248) + - USB: quirks: Add no-lpm quirk for Raydium touchscreens + + * Power consumption during s2idle is higher than long idle(sk hynix) + (LP: #1801875) + - SAUCE: pci: prevent sk hynix nvme from entering D3 + - SAUCE: nvme: add quirk to not call disable function when suspending + + * Disco update: v4.19.1 upstream stable release (LP: #1801739) + - bridge: do not add port to router list when receives query with source + 0.0.0.0 + - ipv6/ndisc: Preserve IPv6 control buffer if protocol error handlers are + called + - net/mlx5e: fix csum adjustments caused by RXFCS + - net: sched: gred: pass the right attribute to gred_change_table_def() + - net: stmmac: Fix stmmac_mdio_reset() when building stmmac as modules + - net: udp: fix handling of CHECKSUM_COMPLETE packets + - Revert "net: simplify sock_poll_wait" + - rtnetlink: Disallow FDB configuration for non-Ethernet device + - vhost: Fix Spectre V1 vulnerability + - bonding: fix length of actor system + - openvswitch: Fix push/pop ethernet validation + - net/ipv6: Allow onlink routes to have a device mismatch if it is the default + route + - net/smc: fix smc_buf_unuse to use the lgr pointer + - mlxsw: spectrum_switchdev: Don't ignore deletions of learned MACs + - mlxsw: core: Fix devlink unregister flow + - net: drop skb on failure in ip_check_defrag() + - net: Properly unlink GRO packets on overflow. + - r8169: fix broken Wake-on-LAN from S5 (poweroff) + - Revert "be2net: remove desc field from be_eq_obj" + - sctp: check policy more carefully when getting pr status + - sparc64: Export __node_distance. + - sparc64: Make corrupted user stacks more debuggable. + - sparc64: Wire up compat getpeername and getsockname. + - net: bridge: remove ipv6 zero address check in mcast queries + - Linux 4.19.1 + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.11-1ubuntu1, zfs to 0.7.11-3ubuntu1 + - [Config] updateconfigs after 4.19.2 stable update + - [Config] Disable unneded options for s390 + - [Config] Update annotations for 4.19 + + -- Seth Forshee Thu, 15 Nov 2018 09:55:37 -0800 + +linux (4.19.0-4.5) disco; urgency=medium + + * Add checksum offload and TSO support for HiNIC adapters (LP: #1800664) + - net-next/hinic: add checksum offload and TSO support + + * [Bionic][Cosmic] Fix to ipmi to support vendor specific messages greater + than 255 bytes (LP: #1799794) + - ipmi:ssif: Add support for multi-part transmit messages > 2 parts + + * Packaging resync (LP: #1786013) + - [Package] add support for specifying the primary makefile + + * Update ENA driver to version 2.0.1K (LP: #1798182) + - net: ena: minor performance improvement + - net: ena: complete host info to match latest ENA spec + - net: ena: introduce Low Latency Queues data structures according to ENA spec + - net: ena: add functions for handling Low Latency Queues in ena_com + - net: ena: add functions for handling Low Latency Queues in ena_netdev + - net: ena: use CSUM_CHECKED device indication to report skb's checksum status + - net: ena: explicit casting and initialization, and clearer error handling + - net: ena: limit refill Rx threshold to 256 to avoid latency issues + - net: ena: change rx copybreak default to reduce kernel memory pressure + - net: ena: remove redundant parameter in ena_com_admin_init() + - net: ena: update driver version to 2.0.1 + - net: ena: fix indentations in ena_defs for better readability + - net: ena: Fix Kconfig dependency on X86 + - net: ena: enable Low Latency Queues + - net: ena: fix compilation error in xtensa architecture + + * [Bionic][Cosmic] ipmi: Fix timer race with module unload (LP: #1799281) + - ipmi: Fix timer race with module unload + + * Overlayfs in user namespace leaks directory content of inaccessible + directories (LP: #1793458) // CVE-2018-6559 + - SAUCE: overlayfs: ensure mounter privileges when reading directories + + * not able to unwind the stack from within __kernel_clock_gettime in the Linux + vDSO (LP: #1797963) + - powerpc/vdso: Correct call frame information + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Don't print secure boot state + from the efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() use + efi_status_to_str() to print error messages." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err()." + - Revert "UBUNTU: SAUCE: (efi-lockdown) Make get_cert_list() not complain + about cert lists that aren't present." + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable + to be suppressed" + - Revert "UBUNTU: SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI + Secure Boot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add EFI signature data types" + - Revert "UBUNTU: SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time + addition of keys to secondary keyring" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in + secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to + indicate secure boot mode" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Copy secure_boot flag in boot params + across kexec reboot" + - Revert "UBUNTU: SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down perf" + - Revert "UBUNTU: SAUCE: (efi-lockdown) bpf: Restrict kernel image access + functions when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down kprobes" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down /proc/kcore" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the + testmmiotrace module" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down module params that specify + hardware parameters (eg. ioport)" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Lock down TIOCSSERIAL" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable APEI error injection if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Disable ACPI table override if + the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param + when the kernel has been locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) ACPI: Limit access to custom_method + when the kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) x86: Lock down IO port access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) PCI: Lock down BAR access when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) hibernate: Disable when the kernel is + locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Enforce module signatures if the + kernel is locked down" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add a SysRq option to lift kernel + lockdown" + - Revert "UBUNTU: SAUCE: (efi-lockdown) Add the ability to lock down access to + the running kernel image" + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi/x86: Call efi_parse_options() from efi_main() + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) module: remove support for having IMA validate modules + - [Packaging] generate Vcs-Git url from changelog + - [Config] CONFIG_SCSI_MQ_DEFAULT=y + + -- Seth Forshee Fri, 02 Nov 2018 14:22:55 -0500 + +linux (4.19.0-3.4) cosmic; urgency=medium + + * Support Edge Gateway's Bluetooth LED (LP: #1798332) + - SAUCE: Bluetooth: Support for LED on Edge Gateways + + * Support Edge Gateway's WIFI LED (LP: #1798330) + - SAUCE: mwifiex: Switch WiFi LED state according to the device status + + [ Upstream Kernel Changes ] + + * Rebase to v4.19 + + -- Seth Forshee Mon, 22 Oct 2018 09:13:39 -0500 + +linux (4.19.0-2.3) cosmic; urgency=medium + + * fscache: bad refcounting in fscache_op_complete leads to OOPS (LP: #1797314) + - SAUCE: fscache: Fix race in decrementing refcount of op->npages + + * Provide mode where all vCPUs on a core must be the same VM (LP: #1792957) + - KVM: PPC: Book3S HV: Provide mode where all vCPUs on a core must be the same + VM + + * The front MIC can't work on the Lenovo M715 (LP: #1797292) + - ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 + + * arm64: snapdragon: WARNING: CPU: 0 PID: 1 at drivers/irqchip/irq-gic.c:1016 + gic_irq_domain_translate (LP: #1797143) + - SAUCE: arm64: dts: msm8916: camms: fix gic_irq_domain_translate warnings + + * Dell new AIO requires a new uart backlight driver (LP: #1727235) + - SAUCE: platform/x86: dell-uart-backlight: new backlight driver for DELL AIO + - updateconfigs for Dell UART backlight driver + + * Please make CONFIG_PWM_LPSS_PCI and CONFIG_PWM_LPSS_PLATFORM built in to + make brightness adjustment working on various BayTrail/CherryTrail-based + devices (LP: #1783964) + - [Config]: Make PWM_LPSS_* built-in + + * check and fix zkey required kernel modules locations in debs, udebs, and + initramfs (LP: #1794346) + - [Config] add s390 crypto modules to crypt-modules udeb + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_VBOXGUEST=n + - ubuntu: vbox -- update to 5.2.18-dfsg-2 + - ubuntu: enable vbox build + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc8 + + -- Seth Forshee Mon, 15 Oct 2018 10:52:04 -0500 + +linux (4.19.0-1.2) cosmic; urgency=medium + + * Page leaking in cachefiles_read_backing_file while vmscan is active + (LP: #1793430) + - SAUCE: cachefiles: Page leaking in cachefiles_read_backing_file while vmscan + is active + + * SRU: Enable middle button of touchpad on ThinkPad P72 (LP: #1793463) + - Input: elantech - enable middle button of touchpad on ThinkPad P72 + + * Improvements to the kernel source package preparation (LP: #1793461) + - [Packaging] startnewrelease: add support for backport kernels + + * Fix unusable NVIDIA GPU after S3 (LP: #1793338) + - SAUCE: PCI: Reprogram bridge prefetch registers on resume + + * Error reported when creating ZFS pool with "-t" option, despite successful + pool creation (LP: #1769937) + - SAUCE: (noup) Update zfs to 0.7.9-3ubuntu6 + + * device hotplug of vfio devices can lead to deadlock in vfio_pci_release + (LP: #1792099) + - SAUCE: vfio -- release device lock before userspace requests + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline -- fix temporary filenaming + - CONFIG_BCH_CONST_PARAMS=n + - Packaging: final-checks: remove trailing backport suffix + - SAUCE: import aufs driver + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc5 + + -- Seth Forshee Tue, 25 Sep 2018 16:32:24 -0500 + +linux (4.19.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: Import aufs driver + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * Rebase to v4.19-rc3 + + -- Seth Forshee Thu, 13 Sep 2018 07:54:47 -0500 + +linux (4.19.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Thu, 13 Sep 2018 06:44:09 -0500 + +linux (4.18.0-8.9) cosmic; urgency=medium + + * linux: 4.18.0-8.9 -proposed tracker (LP: #1791663) + + * Cosmic update to v4.18.7 stable release (LP: #1791660) + - rcu: Make expedited GPs handle CPU 0 being offline + - net: 6lowpan: fix reserved space for single frames + - net: mac802154: tx: expand tailroom if necessary + - 9p/net: Fix zero-copy path in the 9p virtio transport + - spi: davinci: fix a NULL pointer dereference + - spi: pxa2xx: Add support for Intel Ice Lake + - spi: spi-fsl-dspi: Fix imprecise abort on VF500 during probe + - spi: cadence: Change usleep_range() to udelay(), for atomic context + - mmc: block: Fix unsupported parallel dispatch of requests + - mmc: renesas_sdhi_internal_dmac: mask DMAC interrupts + - mmc: renesas_sdhi_internal_dmac: fix #define RST_RESERVED_BITS + - readahead: stricter check for bdi io_pages + - block: fix infinite loop if the device loses discard capability + - block: blk_init_allocated_queue() set q->fq as NULL in the fail case + - block: really disable runtime-pm for blk-mq + - blkcg: Introduce blkg_root_lookup() + - block: Introduce blk_exit_queue() + - block: Ensure that a request queue is dissociated from the cgroup controller + - apparmor: fix bad debug check in apparmor_secid_to_secctx() + - dma-buf: Move BUG_ON from _add_shared_fence to _add_shared_inplace + - libertas: fix suspend and resume for SDIO connected cards + - media: Revert "[media] tvp5150: fix pad format frame height" + - mailbox: xgene-slimpro: Fix potential NULL pointer dereference + - Replace magic for trusting the secondary keyring with #define + - Fix kexec forbidding kernels signed with keys in the secondary keyring to + boot + - powerpc/fadump: handle crash memory ranges array index overflow + - powerpc/64s: Fix page table fragment refcount race vs speculative references + - powerpc/pseries: Fix endianness while restoring of r3 in MCE handler. + - powerpc/pkeys: Give all threads control of their key permissions + - powerpc/pkeys: Deny read/write/execute by default + - powerpc/pkeys: key allocation/deallocation must not change pkey registers + - powerpc/pkeys: Save the pkey registers before fork + - powerpc/pkeys: Fix calculation of total pkeys. + - powerpc/pkeys: Preallocate execute-only key + - powerpc/nohash: fix pte_access_permitted() + - powerpc64/ftrace: Include ftrace.h needed for enable/disable calls + - powerpc/powernv/pci: Work around races in PCI bridge enabling + - cxl: Fix wrong comparison in cxl_adapter_context_get() + - IB/mlx5: Honor cnt_set_id_valid flag instead of set_id + - IB/mlx5: Fix leaking stack memory to userspace + - IB/srpt: Fix srpt_cm_req_recv() error path (1/2) + - IB/srpt: Fix srpt_cm_req_recv() error path (2/2) + - IB/srpt: Support HCAs with more than two ports + - overflow.h: Add arithmetic shift helper + - RDMA/mlx5: Fix shift overflow in mlx5_ib_create_wq + - ib_srpt: Fix a use-after-free in srpt_close_ch() + - ib_srpt: Fix a use-after-free in __srpt_close_all_ch() + - RDMA/rxe: Set wqe->status correctly if an unexpected response is received + - 9p: fix multiple NULL-pointer-dereferences + - fs/9p/xattr.c: catch the error of p9_client_clunk when setting xattr failed + - 9p/virtio: fix off-by-one error in sg list bounds check + - net/9p/client.c: version pointer uninitialized + - net/9p/trans_fd.c: fix race-condition by flushing workqueue before the + kfree() + - dm integrity: change 'suspending' variable from bool to int + - dm thin: stop no_space_timeout worker when switching to write-mode + - dm cache metadata: save in-core policy_hint_size to on-disk superblock + - dm cache metadata: set dirty on all cache blocks after a crash + - dm crypt: don't decrease device limits + - dm writecache: fix a crash due to reading past end of dirty_bitmap + - uart: fix race between uart_put_char() and uart_shutdown() + - Drivers: hv: vmbus: Fix the offer_in_progress in vmbus_process_offer() + - Drivers: hv: vmbus: Reset the channel callback in vmbus_onoffer_rescind() + - iio: sca3000: Fix missing return in switch + - iio: ad9523: Fix displayed phase + - iio: ad9523: Fix return value for ad952x_store() + - extcon: Release locking when sending the notification of connector state + - eventpoll.h: wrap casts in () properly + - vmw_balloon: fix inflation of 64-bit GFNs + - vmw_balloon: do not use 2MB without batching + - vmw_balloon: VMCI_DOORBELL_SET does not check status + - vmw_balloon: fix VMCI use when balloon built into kernel + - rtc: omap: fix resource leak in registration error path + - rtc: omap: fix potential crash on power off + - tracing: Do not call start/stop() functions when tracing_on does not change + - tracing/blktrace: Fix to allow setting same value + - printk/tracing: Do not trace printk_nmi_enter() + - livepatch: Validate module/old func name length + - uprobes: Use synchronize_rcu() not synchronize_sched() + - mfd: hi655x: Fix regmap area declared size for hi655x + - ovl: fix wrong use of impure dir cache in ovl_iterate() + - ACPICA: AML Parser: skip opcodes that open a scope upon parse failure + - ACPICA: Clear status of all events when entering sleep states + - drivers/block/zram/zram_drv.c: fix bug storing backing_dev + - sched: idle: Avoid retaining the tick when it has been stopped + - cpuidle: menu: Handle stopped tick more aggressively + - cpufreq: governor: Avoid accessing invalid governor_data + - PM / sleep: wakeup: Fix build error caused by missing SRCU support + - ALSA: ac97: fix device initialization in the compat layer + - ALSA: ac97: fix check of pm_runtime_get_sync failure + - ALSA: ac97: fix unbalanced pm_runtime_enable + - i2c: designware: Re-init controllers with pm_disabled set on resume + - KVM: VMX: fixes for vmentry_l1d_flush module parameter + - KVM: PPC: Book3S: Fix guest DMA when guest partially backed by THP pages + - xtensa: limit offsets in __loop_cache_{all,page} + - xtensa: increase ranges in ___invalidate_{i,d}cache_all + - block, bfq: return nbytes and not zero from struct cftype .write() method + - pnfs/blocklayout: off by one in bl_map_stripe() + - nfsd: fix leaked file lock with nfs exported overlayfs + - NFSv4 client live hangs after live data migration recovery + - NFSv4: Fix locking in pnfs_generic_recover_commit_reqs + - NFSv4: Fix a sleep in atomic context in nfs4_callback_sequence() + - ARM: tegra: Fix Tegra30 Cardhu PCA954x reset + - ARM: dts: am57xx-idk: Enable dual role for USB2 port + - pwm: omap-dmtimer: Return -EPROBE_DEFER if no dmtimer platform data + - mm/tlb: Remove tlb_remove_table() non-concurrent condition + - iommu/ipmmu-vmsa: Don't register as BUS IOMMU if machine doesn't have IPMMU- + VMSA + - iommu/vt-d: Add definitions for PFSID + - iommu/vt-d: Fix dev iotlb pfsid use + - sys: don't hold uts_sem while accessing userspace memory + - userns: move user access out of the mutex + - ubifs: Fix memory leak in lprobs self-check + - Revert "UBIFS: Fix potential integer overflow in allocation" + - ubifs: Check data node size before truncate + - ubifs: xattr: Don't operate on deleted inodes + - ubifs: Fix directory size calculation for symlinks + - ubifs: Fix synced_i_size calculation for xattr inodes + - pwm: tiehrpwm: Don't use emulation mode bits to control PWM output + - pwm: tiehrpwm: Fix disabling of output of PWMs + - fb: fix lost console when the user unplugs a USB adapter + - udlfb: fix semaphore value leak + - udlfb: fix display corruption of the last line + - udlfb: don't switch if we are switching to the same videomode + - udlfb: set optimal write delay + - udlfb: make a local copy of fb_ops + - udlfb: handle allocation failure + - udlfb: set line_length in dlfb_ops_set_par + - getxattr: use correct xattr length + - libnvdimm: Use max contiguous area for namespace size + - libnvdimm: fix ars_status output length calculation + - bcache: release dc->writeback_lock properly in bch_writeback_thread() + - kconfig: fix "Can't open ..." in parallel build + - perf auxtrace: Fix queue resize + - crypto: vmx - Fix sleep-in-atomic bugs + - crypto: aesni - Use unaligned loads from gcm_context_data + - crypto: arm64/sm4-ce - check for the right CPU feature bit + - crypto: caam - fix DMA mapping direction for RSA forms 2 & 3 + - crypto: caam/jr - fix descriptor DMA unmapping + - crypto: caam/qi - fix error path in xts setkey + - fs/quota: Fix spectre gadget in do_quotactl + - udf: Fix mounting of Win7 created UDF filesystems + - cpuidle: menu: Retain tick when shallow state is selected + - arm64: mm: always enable CONFIG_HOLES_IN_ZONE + - Linux 4.18.7 + + * CVE-2017-5715 + - s390: detect etoken facility + - KVM: s390: add etoken support for guests + + * Missing Intel GPU pci-id's (LP: #1789924) + - drm/i915/whl: Introducing Whiskey Lake platform + - drm/i915/aml: Introducing Amber Lake platform + - drm/i915/cfl: Add a new CFL PCI ID. + + * [18.10 FEAT] Add kernel config options for SMC-R/D (LP: #1789934) + - s390/ism: add device driver for internal shared memory + - CONFIG_ISM=y for s390 + + * Cosmic update to v4.18.6 stable release (LP: #1791105) + - PATCH scripts/kernel-doc + - scripts/kernel-doc: Escape all literal braces in regexes + - scsi: libsas: dynamically allocate and free ata host + - xprtrdma: Fix disconnect regression + - mei: don't update offset in write + - cifs: add missing support for ACLs in SMB 3.11 + - CIFS: fix uninitialized ptr deref in smb2 signing + - cifs: add missing debug entries for kconfig options + - cifs: use a refcount to protect open/closing the cached file handle + - cifs: check kmalloc before use + - smb3: enumerating snapshots was leaving part of the data off end + - smb3: Do not send SMB3 SET_INFO if nothing changed + - smb3: don't request leases in symlink creation and query + - smb3: fill in statfs fsid and correct namelen + - btrfs: use correct compare function of dirty_metadata_bytes + - btrfs: don't leak ret from do_chunk_alloc + - Btrfs: fix mount failure after fsync due to hard link recreation + - Btrfs: fix btrfs_write_inode vs delayed iput deadlock + - Btrfs: fix send failure when root has deleted files still open + - Btrfs: send, fix incorrect file layout after hole punching beyond eof + - hwmon: (k10temp) 27C Offset needed for Threadripper2 + - bpf, arm32: fix stack var offset in jit + - regulator: arizona-ldo1: Use correct device to get enable GPIO + - iommu/arm-smmu: Error out only if not enough context interrupts + - printk: Split the code for storing a message into the log buffer + - printk: Create helper function to queue deferred console handling + - printk/nmi: Prevent deadlock when accessing the main log buffer in NMI + - kprobes/arm64: Fix %p uses in error messages + - arm64: Fix mismatched cache line size detection + - arm64: Handle mismatched cache type + - arm64: mm: check for upper PAGE_SHIFT bits in pfn_valid() + - arm64: dts: rockchip: corrected uart1 clock-names for rk3328 + - KVM: arm/arm64: Fix potential loss of ptimer interrupts + - KVM: arm/arm64: Fix lost IRQs from emulated physcial timer when blocked + - KVM: arm/arm64: Skip updating PMD entry if no change + - KVM: arm/arm64: Skip updating PTE entry if no change + - s390/kvm: fix deadlock when killed by oom + - perf kvm: Fix subcommands on s390 + - stop_machine: Reflow cpu_stop_queue_two_works() + - stop_machine: Atomically queue and wake stopper threads + - ext4: check for NUL characters in extended attribute's name + - ext4: use ext4_warning() for sb_getblk failure + - ext4: sysfs: print ext4_super_block fields as little-endian + - ext4: reset error code in ext4_find_entry in fallback + - ext4: fix race when setting the bitmap corrupted flag + - x86/gpu: reserve ICL's graphics stolen memory + - platform/x86: wmi: Do not mix pages and kmalloc + - platform/x86: ideapad-laptop: Apply no_hw_rfkill to Y20-15IKBM, too + - mm: move tlb_table_flush to tlb_flush_mmu_free + - mm/tlb, x86/mm: Support invalidating TLB caches for RCU_TABLE_FREE + - x86/speculation/l1tf: Fix overflow in l1tf_pfn_limit() on 32bit + - x86/speculation/l1tf: Fix off-by-one error when warning that system has too + much RAM + - x86/speculation/l1tf: Suggest what to do on systems with too much RAM + - x86/vdso: Fix vDSO build if a retpoline is emitted + - x86/process: Re-export start_thread() + - KVM: x86: ensure all MSRs can always be KVM_GET/SET_MSR'd + - KVM: x86: SVM: Call x86_spec_ctrl_set_guest/host() with interrupts disabled + - fuse: Don't access pipe->buffers without pipe_lock() + - fuse: fix initial parallel dirops + - fuse: fix double request_end() + - fuse: fix unlocked access to processing queue + - fuse: umount should wait for all requests + - fuse: Fix oops at process_init_reply() + - fuse: Add missed unlock_page() to fuse_readpages_fill() + - lib/vsprintf: Do not handle %pO[^F] as %px + - udl-kms: change down_interruptible to down + - udl-kms: handle allocation failure + - udl-kms: fix crash due to uninitialized memory + - udl-kms: avoid division + - b43legacy/leds: Ensure NUL-termination of LED name string + - b43/leds: Ensure NUL-termination of LED name string + - ASoC: dpcm: don't merge format from invalid codec dai + - ASoC: zte: Fix incorrect PCM format bit usages + - ASoC: sirf: Fix potential NULL pointer dereference + - ASoC: wm_adsp: Correct DSP pointer for preloader control + - soc: qcom: rmtfs-mem: fix memleak in probe error paths + - pinctrl: freescale: off by one in imx1_pinconf_group_dbg_show() + - scsi: qla2xxx: Fix stalled relogin + - x86/vdso: Fix lsl operand order + - x86/nmi: Fix NMI uaccess race against CR3 switching + - x86/irqflags: Mark native_restore_fl extern inline + - x86/spectre: Add missing family 6 check to microcode check + - x86/speculation/l1tf: Increase l1tf memory limit for Nehalem+ + - hwmon: (nct6775) Fix potential Spectre v1 + - x86/entry/64: Wipe KASAN stack shadow before rewind_stack_do_exit() + - x86: Allow generating user-space headers without a compiler + - s390/mm: fix addressing exception after suspend/resume + - s390/lib: use expoline for all bcr instructions + - s390: fix br_r1_trampoline for machines without exrl + - s390/qdio: reset old sbal_state flags + - s390/numa: move initial setup of node_to_cpumask_map + - s390/purgatory: Fix crash with expoline enabled + - s390/purgatory: Add missing FORCE to Makefile targets + - kprobes: Show blacklist addresses as same as kallsyms does + - kprobes: Replace %p with other pointer types + - kprobes/arm: Fix %p uses in error messages + - kprobes: Make list and blacklist root user read only + - MIPS: Correct the 64-bit DSP accumulator register size + - MIPS: memset.S: Fix byte_fixup for MIPSr6 + - MIPS: Always use -march=, not - shortcuts + - MIPS: Change definition of cpu_relax() for Loongson-3 + - MIPS: lib: Provide MIPS64r6 __multi3() for GCC < 7 + - tpm: Return the actual size when receiving an unsupported command + - tpm: separate cmd_ready/go_idle from runtime_pm + - scsi: mpt3sas: Fix calltrace observed while running IO & reset + - scsi: mpt3sas: Fix _transport_smp_handler() error path + - scsi: sysfs: Introduce sysfs_{un,}break_active_protection() + - scsi: core: Avoid that SCSI device removal through sysfs triggers a deadlock + - iscsi target: fix session creation failure handling + - mtd: rawnand: hynix: Use ->exec_op() in hynix_nand_reg_write_op() + - mtd: rawnand: fsmc: Stop using chip->read_buf() + - mtd: rawnand: marvell: add suspend and resume hooks + - mtd: rawnand: qcom: wait for desc completion in all BAM channels + - clk: rockchip: fix clk_i2sout parent selection bits on rk3399 + - clk: npcm7xx: fix memory allocation + - PM / clk: signedness bug in of_pm_clk_add_clks() + - power: generic-adc-battery: fix out-of-bounds write when copying channel + properties + - power: generic-adc-battery: check for duplicate properties copied from iio + channels + - watchdog: Mark watchdog touch functions as notrace + - cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status + - x86/dumpstack: Don't dump kernel memory based on usermode RIP + - Linux 4.18.6 + - updateconfigs after v4.18.6 stable update + + * random oopses on s390 systems using NVMe devices (LP: #1790480) + - s390/pci: fix out of bounds access during irq setup + + * [18.10 FEAT] zcrypt DD: introduce APQN tags to support deterministic driver + binding (LP: #1784331) + - s390/zcrypt: code beautify + - s390/zcrypt: AP bus support for alternate driver(s) + - s390/zcrypt: hex string mask improvements for apmask and aqmask. + + * performance drop with ATS enabled (LP: #1788097) + - powerpc/powernv: Fix concurrency issue with npu->mmio_atsd_usage + + * Fix MCE handling for user access of poisoned device-dax mapping + (LP: #1774366) + - device-dax: Convert to vmf_insert_mixed and vm_fault_t + - device-dax: Enable page_mapping() + - device-dax: Set page->index + - filesystem-dax: Set page->index + - mm, madvise_inject_error: Disable MADV_SOFT_OFFLINE for ZONE_DEVICE pages + - mm, dev_pagemap: Do not clear ->mapping on final put + - mm, madvise_inject_error: Let memory_failure() optionally take a page + reference + - mm, memory_failure: Collect mapping size in collect_procs() + - filesystem-dax: Introduce dax_lock_mapping_entry() + - mm, memory_failure: Teach memory_failure() about dev_pagemap pages + - x86/mm/pat: Prepare {reserve, free}_memtype() for "decoy" addresses + - x86/memory_failure: Introduce {set, clear}_mce_nospec() + - libnvdimm, pmem: Restore page attributes when clearing errors + + * Reconcile hns3 SAUCE patches with upstream (LP: #1787477) + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix comments for + hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for using wrong mask and + shift in hclge_get_ring_chain_from_mbx" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for reset_level default + assignment probelm" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unnecessary ring + configuration operation while resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet" + - Revert "UBUNTU: SAUCE: net: hns3: Fix for phy link issue when using marvell + phy driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: separate roce from nic when + resetting" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: correct reset event status + register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent to request reset + frequently" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: reset net device with rtnl_lock" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify the order of initializeing + command queue register" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: prevent sending command during + global or core reset" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Use roce handle when calling roce + callback function" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the warning when clear + reset cause" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix get_vector ops in + hclgevf_main module" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix warning bug when doing lp + selftest" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add configure for mac minimal + frame size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mailbox message truncated + problem" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for l4 checksum offload bug" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for waterline not setting + correctly" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix for mac pause not disable in + pfc mode" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix tc setup when netdev is first + up" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add calling roce callback + function when link status change" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: optimize the process of notifying + roce client" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused struct member and + definition" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix mislead parameter name" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify inconsistent bit mask + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use decimal for bit offset + macros" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: fix unreasonable code comments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove extra space and brackets" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: standardize the handle of return + value" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: modify hnae_ to hnae3_" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead + of kzalloc/dma_map_single" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: give default option while + dependency HNS3 set" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some unused members of + some structures" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove a redundant + hclge_cmd_csq_done" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: using modulo for cyclic counters + in hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove some redundant + assignments" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove useless code in + hclge_cmd_send" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused + hclge_ring_to_dma_dir" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: use lower_32_bits and + upper_32_bits" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove back in struct hclge_hw" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add unlikely for error check" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove the Redundant put_vector + in hns3_client_uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: print the ret value in error + information" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: extraction an interface for state + state init|uninit" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove unused head file in + hnae3.c" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add l4_type check for both ipv4 + and ipv6" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add vector status check before + free vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: rename the interface for + init_client_instance and uninit_client_instance" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: remove hclge_get_vector_index + from hclge_bind_ring_with_vector" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: RX BD information valid only in + last BD except VLD bit and buffer size" + - Revert "UBUNTU: SAUCE: {topost} net: hns3: add support for serdes loopback + selftest" + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: remove hclge_get_vector_index from hclge_bind_ring_with_vector + - net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - net: hns3: add vector status check before free vector + - net: hns3: add l4_type check for both ipv4 and ipv6 + - net: hns3: add unlikely for error check + - net: hns3: remove unused head file in hnae3.c + - net: hns3: extraction an interface for state init|uninit + - net: hns3: print the ret value in error information + - net: hns3: remove the Redundant put_vector in hns3_client_uninit + - net: hns3: remove back in struct hclge_hw + - net: hns3: use lower_32_bits and upper_32_bits + - net: hns3: remove unused hclge_ring_to_dma_dir + - net: hns3: remove useless code in hclge_cmd_send + - net: hns3: remove some redundant assignments + - net: hns3: simplify hclge_cmd_csq_clean + - net: hns3: remove a redundant hclge_cmd_csq_done + - net: hns3: remove some unused members of some structures + - net: hns3: give default option while dependency HNS3 set + - net: hns3: use dma_zalloc_coherent instead of kzalloc/dma_map_single + - net: hns3: modify hnae_ to hnae3_ + - net: hns3: Fix tc setup when netdev is first up + - net: hns3: Fix for mac pause not disable in pfc mode + - net: hns3: Fix for waterline not setting correctly + - net: hns3: Fix for l4 checksum offload bug + - net: hns3: Fix for mailbox message truncated problem + - net: hns3: Add configure for mac minimal frame size + - net: hns3: Fix warning bug when doing lp selftest + - net: hns3: Fix get_vector ops in hclgevf_main module + - net: hns3: Remove the warning when clear reset cause + - net: hns3: Prevent sending command during global or core reset + - net: hns3: Modify the order of initializing command queue register + - net: hns3: Reset net device with rtnl_lock + - net: hns3: Prevent to request reset frequently + - net: hns3: Correct reset event status register + - net: hns3: Fix return value error in hns3_reset_notify_down_enet + - net: hns3: remove unnecessary ring configuration operation while resetting + - net: hns3: Fix for reset_level default assignment probelm + - net: hns3: Fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - net: hns3: Fix comments for hclge_get_ring_chain_from_mbx + - net: hns3: Remove some redundant assignments + - net: hns3: Standardize the handle of return value + - net: hns3: Remove extra space and brackets + - net: hns3: Correct unreasonable code comments + - net: hns3: Use decimal for bit offset macros + - net: hns3: Modify inconsistent bit mask macros + - net: hns3: Fix misleading parameter name + - net: hns3: Remove unused struct member and definition + - net: hns3: Add SPDX tags to HNS3 PF driver + - net: hns3: Add support for serdes loopback selftest + - net: hns3: Fix for phy link issue when using marvell phy driver + + * [Regression] kernel crashdump fails on arm64 (LP: #1786878) + - arm64: export memblock_reserve()d regions via /proc/iomem + - drivers: acpi: add dependency of EFI for arm64 + - efi/arm: preserve early mapping of UEFI memory map longer for BGRT + - efi/arm: map UEFI memory map even w/o runtime services enabled + - arm64: acpi: fix alignment fault in accessing ACPI + - [Config] CONFIG_ARCH_SUPPORTS_ACPI=y + - arm64: fix ACPI dependencies + - ACPI: fix menuconfig presentation of ACPI submenu + + * TB 16 issue on Dell Lattitude 7490 with large amount of data (LP: #1785780) + - r8152: disable RX aggregation on new Dell TB16 dock + + * Support Power Management for Thunderbolt Controller (LP: #1789358) + - thunderbolt: Use 64-bit DMA mask if supported by the platform + - thunderbolt: Do not unnecessarily call ICM get route + - thunderbolt: No need to take tb->lock in domain suspend/complete + - thunderbolt: Use correct ICM commands in system suspend + - thunderbolt: Add support for runtime PM + + * Enable AMD PCIe MP2 for AMDI0011 (LP: #1773940) + - SAUCE: i2c:amd I2C Driver based on PCI Interface for upcoming platform + - SAUCE: i2c:amd move out pointer in union i2c_event_base + - SAUCE: i2c:amd Depends on ACPI + - [Config] i2c: CONFIG_I2C_AMD_MP2=y on x86 + + * Microphone cannot be detected with front panel audio combo jack on HP Z8-G4 + machine (LP: #1789145) + - ALSA: hda/realtek - Fix HP Headset Mic can't record + + * Please enable CONFIG_PAGE_POISONING (LP: #1783651) + - [Config] Enable CONFIG_PAGE_POISONING configs + + * Tango platform uses __initcall without further checks (LP: #1787945) + - [Config] disable ARCH_TANGO + + * [18.10 FEAT] SMC-Direct (LP: #1786902) + - net/smc: determine port attributes independent from pnet table + - net/smc: add pnetid support + - net/smc: add base infrastructure for SMC-D and ISM + - net/smc: add pnetid support for SMC-D and ISM + - net/smc: add SMC-D support in CLC messages + - net/smc: add SMC-D support in data transfer + - net/smc: add SMC-D support in af_smc + - net/smc: add SMC-D diag support + - net/smc: provide smc mode in smc_diag.c + - net/smc: eliminate cursor read and write calls + - net/smc: add function to get link group from link + - net/smc: use DECLARE_BITMAP for rtokens_used_mask + - net/smc: remove local variable page in smc_rx_splice() + - net/smc: Remove a WARN_ON() statement + - net/smc: Simplify ib_post_(send|recv|srq_recv)() calls + - net/smc: fewer parameters for smc_llc_send_confirm_link() + - net/smc: use correct vlan gid of RoCE device + - net/smc: provide fallback reason code + - net/smc: improve delete link processing + - net: simplify sock_poll_wait + - net/smc: send response to test link signal + + * Miscellaneous Ubuntu changes + - [Config] update annotations for CONFIG_CRYPTO_SPECK_NEON + - [Config] fix up annotatios for CONFIG_CRYPTO_SPECK + + -- Seth Forshee Mon, 10 Sep 2018 07:08:38 -0500 + +linux (4.18.0-7.8) cosmic; urgency=medium + + * linux: 4.18.0-7.8 -proposed tracker (LP: #1789459) + + * pmtu.sh fails on 4.18 kernel (LP: #1789436) + - SAUCE: Revert "vti6: fix PMTU caching and reporting on xmit" + + -- Seth Forshee Tue, 28 Aug 2018 11:08:51 -0500 + +linux (4.18.0-6.7) cosmic; urgency=medium + + * linux: 4.18.0-6.7 -proposed tracker (LP: #1788881) + + * systemd 237-3ubuntu10 ADT test failure with linux 4.18.0-5.6 (LP: #1787440) + - Config: Disable BPF_JIT_ALWAYS_ON on i386 + + * execveat03 in ubuntu_ltp_syscalls failed on X/B (LP: #1786729) + - cap_inode_getsecurity: use d_find_any_alias() instead of d_find_alias() + + * Cosmic update to v4.18.5 stable release (LP: #1788874) + - EDAC: Add missing MEM_LRDDR4 entry in edac_mem_types[] + - pty: fix O_CLOEXEC for TIOCGPTPEER + - mm: Allow non-direct-map arguments to free_reserved_area() + - x86/mm/init: Pass unconverted symbol addresses to free_init_pages() + - x86/mm/init: Add helper for freeing kernel image pages + - x86/mm/init: Remove freed kernel image areas from alias mapping + - powerpc64s: Show ori31 availability in spectre_v1 sysfs file not v2 + - ext4: fix spectre gadget in ext4_mb_regular_allocator() + - drm/i915/kvmgt: Fix potential Spectre v1 + - drm/amdgpu/pm: Fix potential Spectre v1 + - parisc: Remove unnecessary barriers from spinlock.h + - parisc: Remove ordered stores from syscall.S + - PCI: Restore resized BAR state on resume + - PCI / ACPI / PM: Resume all bridges on suspend-to-RAM + - PCI: hotplug: Don't leak pci_slot on registration failure + - PCI: aardvark: Size bridges before resources allocation + - PCI: Skip MPS logic for Virtual Functions (VFs) + - PCI: pciehp: Fix use-after-free on unplug + - PCI: pciehp: Fix unprotected list iteration in IRQ handler + - i2c: core: ACPI: Properly set status byte to 0 for multi-byte writes + - i2c: imx: Fix race condition in dma read + - reiserfs: fix broken xattr handling (heap corruption, bad retval) + - Linux 4.18.5 + + * [18.10 FEAT] Add kernel config option "CONFIG_SCLP_OFB" (LP: #1787898) + - [Config] CONFIG_SCLP_OFB=y for s390x + + * errors when scanning partition table of corrupted AIX disk (LP: #1787281) + - partitions/aix: fix usage of uninitialized lv_info and lvname structures + - partitions/aix: append null character to print data from disk + + * Apply NVMe bugfix from Google that bjf asked for (LP: #1787635) + - nvme-pci: add a memory barrier to nvme_dbbuf_update_and_check_event + + * ThinkPad systems have no HDMI sound when using the nvidia GPU (LP: #1787058) + - ACPI / OSI: Add OEM _OSI string to enable NVidia HDMI audio + + * Cosmic update to v4.18.4 stable release (LP: #1788454) + - l2tp: use sk_dst_check() to avoid race on sk->sk_dst_cache + - net_sched: fix NULL pointer dereference when delete tcindex filter + - net_sched: Fix missing res info when create new tc_index filter + - r8169: don't use MSI-X on RTL8168g + - ALSA: hda - Sleep for 10ms after entering D3 on Conexant codecs + - ALSA: hda - Turn CX8200 into D3 as well upon reboot + - ALSA: vx222: Fix invalid endian conversions + - ALSA: virmidi: Fix too long output trigger loop + - ALSA: cs5535audio: Fix invalid endian conversion + - ALSA: dice: fix wrong copy to rx parameters for Alesis iO26 + - ALSA: hda: Correct Asrock B85M-ITX power_save blacklist entry + - ALSA: memalloc: Don't exceed over the requested size + - ALSA: vxpocket: Fix invalid endian conversions + - ALSA: seq: Fix poll() error return + - media: gl861: fix probe of dvb_usb_gl861 + - USB: serial: sierra: fix potential deadlock at close + - USB: serial: pl2303: add a new device id for ATEN + - USB: option: add support for DW5821e + - ACPI / PM: save NVS memory for ASUS 1025C laptop + - tty: serial: 8250: Revert NXP SC16C2552 workaround + - serial: 8250_exar: Read INT0 from slave device, too + - serial: 8250_dw: always set baud rate in dw8250_set_termios + - serial: 8250_dw: Add ACPI support for uart on Broadcom SoC + - uio: fix wrong return value from uio_mmap() + - misc: sram: fix resource leaks in probe error path + - Revert "uio: use request_threaded_irq instead" + - Bluetooth: avoid killing an already killed socket + - isdn: Disable IIOCDBGVAR + - net: sock_diag: Fix spectre v1 gadget in __sock_diag_cmd() + - hv/netvsc: Fix NULL dereference at single queue mode fallback + - r8169: don't use MSI-X on RTL8106e + - ip_vti: fix a null pointer deferrence when create vti fallback tunnel + - net: ethernet: mvneta: Fix napi structure mixup on armada 3700 + - net: mvneta: fix mvneta_config_rss on armada 3700 + - cls_matchall: fix tcf_unbind_filter missing + - Linux 4.18.4 + + * Cosmic update to v4.18.3 stable release (LP: #1788453) + - x86/speculation/l1tf: Exempt zeroed PTEs from inversion + - Linux 4.18.3 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) + - x86/l1tf: Fix build error seen if CONFIG_KVM_INTEL is disabled + - x86: i8259: Add missing include file + - x86/hyper-v: Check for VP_INVAL in hyperv_flush_tlb_others() + - x86/platform/UV: Mark memblock related init code and data correctly + - x86/mm/pti: Clear Global bit more aggressively + - xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits + - x86/mm: Disable ioremap free page handling on x86-PAE + - kbuild: verify that $DEPMOD is installed + - crypto: ccree - fix finup + - crypto: ccree - fix iv handling + - crypto: ccp - Check for NULL PSP pointer at module unload + - crypto: ccp - Fix command completion detection race + - crypto: x86/sha256-mb - fix digest copy in sha256_mb_mgr_get_comp_job_avx2() + - crypto: vmac - require a block cipher with 128-bit block size + - crypto: vmac - separate tfm and request context + - crypto: blkcipher - fix crash flushing dcache in error path + - crypto: ablkcipher - fix crash flushing dcache in error path + - crypto: skcipher - fix aligning block size in skcipher_copy_iv() + - crypto: skcipher - fix crash flushing dcache in error path + - ioremap: Update pgtable free interfaces with addr + - x86/mm: Add TLB purge to free pmd/pte page interfaces + - Linux 4.18.2 + + * Cosmic update to v4.18.2 stable release (LP: #1788452) // CVE-2018-9363 + - Bluetooth: hidp: buffer overflow in hidp_process_report + + * linux-cloud-tools-common: Ensure hv-kvp-daemon.service starts before + walinuxagent.service (LP: #1739107) + - [Debian] hyper-v -- Ensure that hv-kvp-daemon.service starts before + walinuxagent.service + + * Miscellaneous Ubuntu changes + - SAUCE: ipvs: remove nbsp characters from Kconfig + - [Config] CONFIG_MPROFILE_KERNEL=y for ppc64el + - [Config] CONFIG_DRM_RCAR_LVDS=m for snapdragon + - [Config] CONFIG_MDIO_MSCC_MIIM=n for s390x + - [Config] CONFIG_NET_VENDOR_MICROSEMI=n, CONFIG_NET_VENDOR_NI=n for s390x + - [Config] update annotations following config review + - [Debian] set CROSS_COMPILE when generating kernel configs + - [Config] Disable the Speck cipher + + -- Seth Forshee Fri, 24 Aug 2018 14:18:15 -0500 + +linux (4.18.0-5.6) cosmic; urgency=medium + + * Cosmic update to v4.18.1 stable release (LP: #1787264) + - x86/paravirt: Fix spectre-v2 mitigations for paravirt guests + - x86/speculation: Protect against userspace-userspace spectreRSB + - kprobes/x86: Fix %p uses in error messages + - x86/irqflags: Provide a declaration for native_save_fl + - x86/speculation/l1tf: Increase 32bit PAE __PHYSICAL_PAGE_SHIFT + - x86/speculation/l1tf: Change order of offset/type in swap entry + - x86/speculation/l1tf: Protect swap entries against L1TF + - x86/speculation/l1tf: Protect PROT_NONE PTEs against speculation + - x86/speculation/l1tf: Make sure the first page is always reserved + - x86/speculation/l1tf: Add sysfs reporting for l1tf + - x86/speculation/l1tf: Disallow non privileged high MMIO PROT_NONE mappings + - x86/speculation/l1tf: Limit swap file size to MAX_PA/2 + - x86/bugs: Move the l1tf function and define pr_fmt properly + - sched/smt: Update sched_smt_present at runtime + - x86/smp: Provide topology_is_primary_thread() + - x86/topology: Provide topology_smt_supported() + - cpu/hotplug: Make bringup/teardown of smp threads symmetric + - cpu/hotplug: Split do_cpu_down() + - cpu/hotplug: Provide knobs to control SMT + - x86/cpu: Remove the pointless CPU printout + - x86/cpu/AMD: Remove the pointless detect_ht() call + - x86/cpu/common: Provide detect_ht_early() + - x86/cpu/topology: Provide detect_extended_topology_early() + - x86/cpu/intel: Evaluate smp_num_siblings early + - x86/CPU/AMD: Do not check CPUID max ext level before parsing SMP info + - x86/cpu/AMD: Evaluate smp_num_siblings early + - x86/apic: Ignore secondary threads if nosmt=force + - x86/speculation/l1tf: Extend 64bit swap file size limit + - x86/cpufeatures: Add detection of L1D cache flush support. + - x86/CPU/AMD: Move TOPOEXT reenablement before reading smp_num_siblings + - x86/speculation/l1tf: Protect PAE swap entries against L1TF + - x86/speculation/l1tf: Fix up pte->pfn conversion for PAE + - Revert "x86/apic: Ignore secondary threads if nosmt=force" + - cpu/hotplug: Boot HT siblings at least once + - x86/KVM: Warn user if KVM is loaded SMT and L1TF CPU bug being present + - x86/KVM/VMX: Add module argument for L1TF mitigation + - x86/KVM/VMX: Add L1D flush algorithm + - x86/KVM/VMX: Add L1D MSR based flush + - x86/KVM/VMX: Add L1D flush logic + - x86/KVM/VMX: Split the VMX MSR LOAD structures to have an host/guest numbers + - x86/KVM/VMX: Add find_msr() helper function + - x86/KVM/VMX: Separate the VMX AUTOLOAD guest/host number accounting + - x86/KVM/VMX: Extend add_atomic_switch_msr() to allow VMENTER only MSRs + - x86/KVM/VMX: Use MSR save list for IA32_FLUSH_CMD if required + - cpu/hotplug: Online siblings when SMT control is turned on + - x86/litf: Introduce vmx status variable + - x86/kvm: Drop L1TF MSR list approach + - x86/l1tf: Handle EPT disabled state proper + - x86/kvm: Move l1tf setup function + - x86/kvm: Add static key for flush always + - x86/kvm: Serialize L1D flush parameter setter + - x86/kvm: Allow runtime control of L1D flush + - cpu/hotplug: Expose SMT control init function + - cpu/hotplug: Set CPU_SMT_NOT_SUPPORTED early + - x86/bugs, kvm: Introduce boot-time control of L1TF mitigations + - Documentation: Add section about CPU vulnerabilities + - x86/speculation/l1tf: Unbreak !__HAVE_ARCH_PFN_MODIFY_ALLOWED architectures + - x86/KVM/VMX: Initialize the vmx_l1d_flush_pages' content + - Documentation/l1tf: Fix typos + - cpu/hotplug: detect SMT disabled by BIOS + - x86/KVM/VMX: Don't set l1tf_flush_l1d to true from vmx_l1d_flush() + - x86/KVM/VMX: Replace 'vmx_l1d_flush_always' with 'vmx_l1d_flush_cond' + - x86/KVM/VMX: Move the l1tf_flush_l1d test to vmx_l1d_flush() + - x86/irq: Demote irq_cpustat_t::__softirq_pending to u16 + - x86/KVM/VMX: Introduce per-host-cpu analogue of l1tf_flush_l1d + - x86: Don't include linux/irq.h from asm/hardirq.h + - x86/irq: Let interrupt handlers set kvm_cpu_l1tf_flush_l1d + - x86/KVM/VMX: Don't set l1tf_flush_l1d from vmx_handle_external_intr() + - Documentation/l1tf: Remove Yonah processors from not vulnerable list + - x86/speculation: Simplify sysfs report of VMX L1TF vulnerability + - x86/speculation: Use ARCH_CAPABILITIES to skip L1D flush on vmentry + - KVM: VMX: Tell the nested hypervisor to skip L1D flush on vmentry + - cpu/hotplug: Fix SMT supported evaluation + - x86/speculation/l1tf: Invert all not present mappings + - x86/speculation/l1tf: Make pmd/pud_mknotpresent() invert + - x86/mm/pat: Make set_memory_np() L1TF safe + - x86/mm/kmmio: Make the tracer robust against L1TF + - tools headers: Synchronise x86 cpufeatures.h for L1TF additions + - x86/microcode: Allow late microcode loading with SMT disabled + - x86/smp: fix non-SMP broken build due to redefinition of + apic_id_is_primary_thread + - cpu/hotplug: Non-SMP machines do not make use of booted_once + - x86/init: fix build with CONFIG_SWAP=n + - Linux 4.18.1 + - [Config] updateconfigs after v4.18.1 stable update + + * Consider enabling CONFIG_NETWORK_PHY_TIMESTAMPING (LP: #1785816) + - [Config] Enable timestamping in network PHY devices + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SYSCTL_SYSCALL=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.18 + + -- Seth Forshee Wed, 15 Aug 2018 14:20:59 -0500 + +linux (4.18.0-4.5) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc8 + + -- Seth Forshee Mon, 06 Aug 2018 13:54:02 -0500 + +linux (4.18.0-3.4) cosmic; urgency=medium + + * Suspend fails in Ubuntu and Kubuntu 18.04 but works fine in Ubuntu and + Kubuntu 17.10 (and on Kubuntu 18.04 using kernel 4.14.47) (LP: #1774950) + - ACPI / LPSS: Avoid PM quirks on suspend and resume from hibernation + + * hinic interfaces aren't getting predictable names (LP: #1783138) + - hinic: Link the logical network device to the pci device in sysfs + + * libvirtd is unable to configure bridge devices inside of LXD containers + (LP: #1784501) + - kernfs: allow creating kernfs objects with arbitrary uid/gid + - sysfs, kobject: allow creating kobject belonging to arbitrary users + - kobject: kset_create_and_add() - fetch ownership info from parent + - driver core: set up ownership of class devices in sysfs + - net-sysfs: require net admin in the init ns for setting tx_maxrate + - net-sysfs: make sure objects belong to container's owner + - net: create reusable function for getting ownership info of sysfs inodes + - bridge: make sure objects belong to container's owner + - sysfs: Fix regression when adding a file to an existing group + + * locking sockets broken due to missing AppArmor socket mediation patches + (LP: #1780227) + - UBUNTU SAUCE: apparmor: fix apparmor mediating locking non-fs, unix sockets + + * Update2 for ocxl driver (LP: #1781436) + - ocxl: Fix page fault handler in case of fault on dying process + + * HDMI/DP audio can't work on the laptop of Dell Latitude 5495 (LP: #1782689) + - ALSA: hda: use PCI_BASE_CLASS_DISPLAY to replace PCI_CLASS_DISPLAY_VGA + - vga_switcheroo: set audio client id according to bound GPU id + + * Allow Raven Ridge's audio controller to be runtime suspended (LP: #1782540) + - ALSA: hda: Add AZX_DCAPS_PM_RUNTIME for AMD Raven Ridge + + * Invoking obsolete 'firmware_install' target breaks snap build (LP: #1782166) + - snapcraft.yaml: stop invoking the obsolete (and non-existing) + 'firmware_install' target + + * snapcraft.yaml: missing ubuntu-retpoline-extract-one script breaks the build + (LP: #1782116) + - snapcraft.yaml: copy retpoline-extract-one to scripts before build + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc7 + + -- Seth Forshee Wed, 01 Aug 2018 08:49:40 -0500 + +linux (4.18.0-2.3) cosmic; urgency=medium + + * Kernel error "task zfs:pid blocked for more than 120 seconds" (LP: #1781364) + - SAUCE: (noup) zfs to 0.7.9-3ubuntu4 + + * [Regression] EXT4-fs error (device sda1): ext4_validate_inode_bitmap:99: + comm stress-ng: Corrupt inode bitmap (LP: #1780137) + - SAUCE: ext4: fix ext4_validate_inode_bitmap: comm stress-ng: Corrupt inode + bitmap + + * Cloud-init causes potentially huge boot delays with 4.15 kernels + (LP: #1780062) + - random: Make getrandom() ready earlier + + * hisi_sas_v3_hw: internal task abort: timeout and not done. (LP: #1777736) + - scsi: hisi_sas: Update a couple of register settings for v3 hw + + * hisi_sas: Add missing PHY spinlock init (LP: #1777734) + - scsi: hisi_sas: Add missing PHY spinlock init + + * hisi_sas: improve read performance by pre-allocating slot DMA buffers + (LP: #1777727) + - scsi: hisi_sas: Use dmam_alloc_coherent() + - scsi: hisi_sas: Pre-allocate slot DMA buffers + + * hisi_sas: Failures during host reset (LP: #1777696) + - scsi: hisi_sas: Only process broadcast change in phy_bcast_v3_hw() + - scsi: hisi_sas: Fix the conflict between dev gone and host reset + - scsi: hisi_sas: Adjust task reject period during host reset + - scsi: hisi_sas: Add a flag to filter PHY events during reset + - scsi: hisi_sas: Release all remaining resources in clear nexus ha + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu2, zfs to 0.7.9-3ubuntu3 + - SAUCE: mm: Fix exports that inadvertently make put_page() EXPORT_SYMBOL_GPL + - Enable zfs build + - SAUCE: Import aufs driver + - Revert "UBUNTU: [Config]: set CONFIG_EDAC_DEBUG=y for ARM64" + - [Config] retpoline -- review and accept retpoline changes + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc5 + * Rebase to v4.18-rc6 + + -- Seth Forshee Tue, 24 Jul 2018 08:41:22 -0500 + +linux (4.18.0-1.2) cosmic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc4 + + -- Seth Forshee Mon, 09 Jul 2018 07:36:31 -0500 + +linux (4.18.0-0.1) cosmic; urgency=medium + + * Miscellaneous Ubuntu changes + - ubuntu -- disable vbox build + - Disable zfs build + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) Add a SysRq option to lift kernel lockdown + - SAUCE: (efi-lockdown) ima: require secure_boot rules in lockdown mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/{mem,kmem,port} when the kernel is + locked down + - SAUCE: (efi-lockdown) kexec_load: Disable at runtime if the kernel is locked + down + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86/msr: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Lock down module params that specify hardware + parameters (eg. ioport) + - SAUCE: (efi-lockdown) x86/mmiotrace: Lock down the testmmiotrace module + - SAUCE: (efi-lockdown) Lock down /proc/kcore + - SAUCE: (efi-lockdown) Lock down kprobes + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) Lock down perf + - SAUCE: (efi-lockdown) debugfs: Restrict debugfs when the kernel is locked + down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) Make get_cert_list() not complain about cert lists + that aren't present. + - SAUCE: (efi-lockdown) Add efi_status_to_str() and rework + efi_status_to_err(). + - SAUCE: (efi-lockdown) Make get_cert_list() use efi_status_to_str() to print + error messages. + - SAUCE: (efi-lockdown) lockdown: fix coordination of kernel module signature + verification + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + - SAUCE: Import aufs driver + - Update dropped.txt + - [Config] updateconfigs after 4.18-rc3 rebase + - SAUCE: (no-up): ASoC: Intel: bytcr-rt5660: Remove snd_soc_codec use for 4.18 + + [ Upstream Kernel Changes ] + + * Rebase to v4.18-rc3 + + -- Seth Forshee Fri, 06 Jul 2018 10:46:37 -0500 + +linux (4.18.0-0.0) cosmic; urgency=medium + + * Dummy entry. + + -- Seth Forshee Tue, 03 Jul 2018 11:10:33 -0500 + +linux (4.17.0-4.5) cosmic; urgency=medium + + * linux: 4.17.0-4.5 -proposed tracker (LP: #1779399) + + * Update to ocxl driver for 18.04.1 (LP: #1775786) + - powerpc: Add TIDR CPU feature for POWER9 + - powerpc: Use TIDR CPU feature to control TIDR allocation + - powerpc: use task_pid_nr() for TID allocation + - ocxl: Rename pnv_ocxl_spa_remove_pe to clarify it's action + - ocxl: Expose the thread_id needed for wait on POWER9 + - ocxl: Add an IOCTL so userspace knows what OCXL features are available + - ocxl: Document new OCXL IOCTLs + - ocxl: Fix missing unlock on error in afu_ioctl_enable_p9_wait() + + * Please include ax88179_178a and r8152 modules in d-i udeb (LP: #1771823) + - [Config:] d-i: Add ax88179_178a and r8152 to nic-modules + + * glibc pkeys test fail on powerpc (LP: #1776967) + - [Config] Temporarily disable CONFIG_PPC_MEM_KEYS + + * After update to 4.13-43 Intel Graphics are Laggy (LP: #1773520) + - Revert "drm/i915/edp: Allow alternate fixed mode for eDP if available." + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.9-3ubuntu1, zfs to 0.7.9-3ubuntu1 + + -- Seth Forshee Fri, 29 Jun 2018 13:37:52 -0500 + +linux (4.17.0-3.4) cosmic; urgency=medium + + * linux: 4.17.0-3.4 -proposed tracker (LP: #1779124) + + * Cosmic update to v4.17.3 stable release (LP: #1778997) + - net: aquantia: fix unsigned numvecs comparison with less than zero + - bonding: re-evaluate force_primary when the primary slave name changes + - cdc_ncm: avoid padding beyond end of skb + - ipv6: allow PMTU exceptions to local routes + - net: dsa: add error handling for pskb_trim_rcsum + - net: phy: dp83822: use BMCR_ANENABLE instead of BMSR_ANEGCAPABLE for DP83620 + - net/sched: act_simple: fix parsing of TCA_DEF_DATA + - tcp: verify the checksum of the first data segment in a new connection + - tls: fix use-after-free in tls_push_record + - tls: fix waitall behavior in tls_sw_recvmsg + - socket: close race condition between sock_close() and sockfs_setattr() + - udp: fix rx queue len reported by diag and proc interface + - net: in virtio_net_hdr only add VLAN_HLEN to csum_start if payload holds + vlan + - hv_netvsc: Fix a network regression after ifdown/ifup + - ACPICA: AML parser: attempt to continue loading table after error + - ext4: fix hole length detection in ext4_ind_map_blocks() + - ext4: update mtime in ext4_punch_hole even if no blocks are released + - ext4: do not allow external inodes for inline data + - ext4: bubble errors from ext4_find_inline_data_nolock() up to ext4_iget() + - ext4: correctly handle a zero-length xattr with a non-zero e_value_offs + - ext4: fix fencepost error in check for inode count overflow during resize + - driver core: Don't ignore class_dir_create_and_add() failure. + - Btrfs: allow empty subvol= again + - Btrfs: fix clone vs chattr NODATASUM race + - Btrfs: fix memory and mount leak in btrfs_ioctl_rm_dev_v2() + - btrfs: return error value if create_io_em failed in cow_file_range + - btrfs: scrub: Don't use inode pages for device replace + - ALSA: usb-audio: Disable the quirk for Nura headset + - ALSA: hda/conexant - Add fixup for HP Z2 G4 workstation + - ALSA: hda - Handle kzalloc() failure in snd_hda_attach_pcm_stream() + - ALSA: hda: add dock and led support for HP EliteBook 830 G5 + - ALSA: hda: add dock and led support for HP ProBook 640 G4 + - x86/MCE: Fix stack out-of-bounds write in mce-inject.c: Flags_read() + - smb3: fix various xid leaks + - smb3: on reconnect set PreviousSessionId field + - CIFS: 511c54a2f69195b28afb9dd119f03787b1625bb4 adds a check for session + expiry + - cifs: For SMB2 security informaion query, check for minimum sized security + descriptor instead of sizeof FileAllInformation class + - nbd: fix nbd device deletion + - nbd: update size when connected + - nbd: use bd_set_size when updating disk size + - blk-mq: reinit q->tag_set_list entry only after grace period + - bdi: Move cgroup bdi_writeback to a dedicated low concurrency workqueue + - cpufreq: Fix new policy initialization during limits updates via sysfs + - cpufreq: ti-cpufreq: Fix an incorrect error return value + - cpufreq: governors: Fix long idle detection logic in load calculation + - libata: zpodd: small read overflow in eject_tray() + - libata: Drop SanDisk SD7UB3Q*G1001 NOLPM quirk + - nvme/pci: Sync controller reset for AER slot_reset + - w1: mxc_w1: Enable clock before calling clk_get_rate() on it + - x86/vector: Fix the args of vector_alloc tracepoint + - x86/apic/vector: Prevent hlist corruption and leaks + - x86/apic: Provide apic_ack_irq() + - x86/ioapic: Use apic_ack_irq() + - x86/platform/uv: Use apic_ack_irq() + - irq_remapping: Use apic_ack_irq() + - genirq/generic_pending: Do not lose pending affinity update + - genirq/affinity: Defer affinity setting if irq chip is busy + - genirq/migration: Avoid out of line call if pending is not set + - x86/intel_rdt: Enable CMT and MBM on new Skylake stepping + - media: uvcvideo: Prevent setting unavailable flags + - media: rc: ensure input/lirc device can be opened after register + - iwlwifi: fw: harden page loading code + - orangefs: set i_size on new symlink + - orangefs: report attributes_mask and attributes for statx + - HID: intel_ish-hid: ipc: register more pm callbacks to support hibernation + - HID: wacom: Correct logical maximum Y for 2nd-gen Intuos Pro large + - vhost: fix info leak due to uninitialized memory + - mm, page_alloc: do not break __GFP_THISNODE by zonelist reset + - Linux 4.17.3 + + * Use-after-free in sk_peer_label (LP: #1778646) + - SAUCE: apparmor: fix use after free in sk_peer_label + + * kernel: Fix memory leak on CCA and EP11 CPRB processing. (LP: #1775390) + - s390/zcrypt: Fix CCA and EP11 CPRB processing failure memory leak. + + * Various fixes for CXL kernel module (LP: #1774471) + - cxl: Configure PSL to not use APC virtual machines + - cxl: Disable prefault_mode in Radix mode + + * Bluetooth not working (LP: #1764645) + - Bluetooth: btusb: Apply QCA Rome patches for some ATH3012 models + + * Fake SAS addresses for SATA disks on HiSilicon D05 are non-unique + (LP: #1776750) + - scsi: hisi_sas: make SAS address of SATA disks unique + + * linux-snapdragon: wcn36xx: mac address generation on boot (LP: #1776491) + - [Config] arm64: snapdragon: WCN36XX_SNAPDRAGON_HACKS=y + - SAUCE: wcn36xx: read MAC from file or randomly generate one + + * Lenovo V330 needs patch in ideapad_laptop module for rfkill (LP: #1774636) + - SAUCE: Add Lenovo V330 to the ideapad_laptop rfkill blacklist + + * register on binfmt_misc may overflow and crash the system (LP: #1775856) + - fs/binfmt_misc.c: do not allow offset overflow + + * Network installs fail on SocioNext board (LP: #1775884) + - net: socionext: reset hardware in ndo_stop + - net: netsec: enable tx-irq during open callback + + * Fix several bugs in RDMA/hns driver (LP: #1770974) + - RDMA/hns: Drop local zgid in favor of core defined variable + - RDMA/hns: Add 64KB page size support for hip08 + - RDMA/hns: Rename the idx field of db + - RDMA/hns: Modify uar allocation algorithm to avoid bitmap exhaust + - RDMA/hns: Increase checking CMQ status timeout value + - RDMA/hns: Add reset process for RoCE in hip08 + - RDMA/hns: Fix the illegal memory operation when cross page + - RDMA/hns: Implement the disassociate_ucontext API + + * powerpc/livepatch: Implement reliable stack tracing for the consistency + model (LP: #1771844) + - powerpc/livepatch: Implement reliable stack tracing for the consistency + model + + * Adding back alx WoL feature (LP: #1772610) + - SAUCE: Revert "alx: remove WoL support" + - SAUCE: alx: add enable_wol paramenter + + * Lancer A0 Asic HBA's won't boot with 18.04 (LP: #1768103) + - scsi: lpfc: Fix WQ/CQ creation for older asic's. + - scsi: lpfc: Fix 16gb hbas failing cq create. + + * [LTCTest][OPAL][OP920] cpupower idle-info is not listing stop4 and stop5 + idle states when all CORES are guarded (LP: #1771780) + - powerpc/powernv/cpuidle: Init all present cpus for deep states + + * Huawei 25G/100G Network Adapters Unsupported (LP: #1770970) + - net-next/hinic: add pci device ids for 25ge and 100ge card + + * Expose arm64 CPU topology to userspace (LP: #1770231) + - drivers: base: cacheinfo: move cache_setup_of_node() + - drivers: base: cacheinfo: setup DT cache properties early + - cacheinfo: rename of_node to fw_token + - arm64/acpi: Create arch specific cpu to acpi id helper + - ACPI/PPTT: Add Processor Properties Topology Table parsing + - [Config] CONFIG_ACPI_PPTT=y + - ACPI: Enable PPTT support on ARM64 + - drivers: base cacheinfo: Add support for ACPI based firmware tables + - arm64: Add support for ACPI based firmware tables + - arm64: topology: rename cluster_id + - arm64: topology: enable ACPI/PPTT based CPU topology + - ACPI: Add PPTT to injectable table list + - arm64: topology: divorce MC scheduling domain from core_siblings + + * Vcs-Git header on bionic linux source package points to zesty git tree + (LP: #1766055) + - [Packaging]: Update Vcs-Git + + * Request to revert SAUCE patches in the 18.04 SRU and update with upstream + version (LP: #1768431) + - scsi: cxlflash: Handle spurious interrupts + - scsi: cxlflash: Remove commmands from pending list on timeout + - scsi: cxlflash: Synchronize reset and remove ops + - SAUCE: (no-up) cxlflash: OCXL diff between v2 and v3 + + * hisi_sas robustness fixes (LP: #1774466) + - scsi: hisi_sas: delete timer when removing hisi_sas driver + - scsi: hisi_sas: print device id for errors + - scsi: hisi_sas: Add some checks to avoid free'ing a sas_task twice + - scsi: hisi_sas: check host frozen before calling "done" function + - scsi: hisi_sas: check sas_dev gone earlier in hisi_sas_abort_task() + - scsi: hisi_sas: stop controller timer for reset + - scsi: hisi_sas: update PHY linkrate after a controller reset + - scsi: hisi_sas: change slot index allocation mode + - scsi: hisi_sas: Change common allocation mode of device id + - scsi: hisi_sas: Reset disks when discovered + - scsi: hisi_sas: Create a scsi_host_template per HW module + - scsi: hisi_sas: Init disks after controller reset + - scsi: hisi_sas: Try wait commands before before controller reset + - scsi: hisi_sas: Include TMF elements in struct hisi_sas_slot + - scsi: hisi_sas: Add v2 hw force PHY function for internal ATA command + - scsi: hisi_sas: Terminate STP reject quickly for v2 hw + - scsi: hisi_sas: Fix return value when get_free_slot() failed + - scsi: hisi_sas: Mark PHY as in reset for nexus reset + + * hisi_sas: Support newer v3 hardware (LP: #1774467) + - scsi: hisi_sas: update RAS feature for later revision of v3 HW + - scsi: hisi_sas: check IPTT is valid before using it for v3 hw + - scsi: hisi_sas: fix PI memory size + - scsi: hisi_sas: config ATA de-reset as an constrained command for v3 hw + - scsi: hisi_sas: remove redundant handling to event95 for v3 + - scsi: hisi_sas: add readl poll timeout helper wrappers + - scsi: hisi_sas: workaround a v3 hw hilink bug + - scsi: hisi_sas: Add LED feature for v3 hw + + * hisi_sas: improve performance by optimizing DQ locking (LP: #1774472) + - scsi: hisi_sas: optimise the usage of DQ locking + - scsi: hisi_sas: relocate smp sg map + - scsi: hisi_sas: make return type of prep functions void + - scsi: hisi_sas: allocate slot buffer earlier + - scsi: hisi_sas: Don't lock DQ for complete task sending + - scsi: hisi_sas: Use device lock to protect slot alloc/free + - scsi: hisi_sas: add check of device in hisi_sas_task_exec() + - scsi: hisi_sas: fix a typo in hisi_sas_task_prep() + + * FS-Cache: Assertion failed: FS-Cache: 6 == 5 is false (LP: #1774336) + - SAUCE: CacheFiles: fix a read_waiter/read_copier race + + * enable mic-mute hotkey and led on Lenovo M820z and M920z (LP: #1774306) + - ALSA: hda/realtek - Enable mic-mute hotkey for several Lenovo AIOs + + * hns3 driver updates (LP: #1768670) + - net: hns3: Remove error log when getting pfc stats fails + - net: hns3: fix to correctly fetch l4 protocol outer header + - net: hns3: Fixes the out of bounds access in hclge_map_tqp + - net: hns3: Fixes the error legs in hclge_init_ae_dev function + - net: hns3: fix for phy_addr error in hclge_mac_mdio_config + - net: hns3: Fix to support autoneg only for port attached with phy + - net: hns3: fix a dead loop in hclge_cmd_csq_clean + - net: hns3: Fix for packet loss due wrong filter config in VLAN tbls + - net: hns3: Remove packet statistics in the range of 8192~12287 + - net: hns3: Add support of hardware rx-vlan-offload to HNS3 VF driver + - net: hns3: Fix for setting mac address when resetting + - net: hns3: remove add/del_tunnel_udp in hns3_enet module + - net: hns3: fix for cleaning ring problem + - net: hns3: refactor the loopback related function + - net: hns3: Fix for deadlock problem occurring when unregistering ae_algo + - net: hns3: Fix for the null pointer problem occurring when initializing + ae_dev failed + - net: hns3: Add a check for client instance init state + - net: hns3: Change return type of hnae3_register_ae_dev + - net: hns3: Change return type of hnae3_register_ae_algo + - net: hns3: Change return value in hnae3_register_client + - net: hns3: Fixes the back pressure setting when sriov is enabled + - net: hns3: Fix for fiber link up problem + - net: hns3: Add support of .sriov_configure in HNS3 driver + - net: hns3: Fixes the missing PCI iounmap for various legs + - net: hns3: Fixes error reported by Kbuild and internal review + - net: hns3: Fixes API to fetch ethernet header length with kernel default + - net: hns3: cleanup of return values in hclge_init_client_instance() + - net: hns3: Fix the missing client list node initialization + - net: hns3: Fix for hns3 module is loaded multiple times problem + - net: hns3: Use enums instead of magic number in hclge_is_special_opcode + - net: hns3: Fix for netdev not running problem after calling net_stop and + net_open + - net: hns3: Fixes kernel panic issue during rmmod hns3 driver + - net: hns3: Fix for CMDQ and Misc. interrupt init order problem + - net: hns3: Updates RX packet info fetch in case of multi BD + - net: hns3: Add support for tx_accept_tag2 and tx_accept_untag2 config + - net: hns3: Add STRP_TAGP field support for hardware revision 0x21 + - net: hns3: Add support to enable TX/RX promisc mode for H/W rev(0x21) + - net: hns3: Fix for PF mailbox receving unknown message + - net: hns3: Fixes the state to indicate client-type initialization + - net: hns3: Fixes the init of the VALID BD info in the descriptor + - net: hns3: Removes unnecessary check when clearing TX/RX rings + - net: hns3: Clear TX/RX rings when stopping port & un-initializing client + - net: hns3: Remove unused led control code + - net: hns3: Adds support for led locate command for copper port + - net: hns3: Fixes initalization of RoCE handle and makes it conditional + - net: hns3: Disable vf vlan filter when vf vlan table is full + - net: hns3: Add support for IFF_ALLMULTI flag + - net: hns3: Add repeat address checking for setting mac address + - net: hns3: Fix setting mac address error + - net: hns3: Fix for service_task not running problem after resetting + - net: hns3: Fix for hclge_reset running repeatly problem + - net: hns3: Fix for phy not link up problem after resetting + - net: hns3: Add missing break in misc_irq_handle + - net: hns3: Fix for vxlan tx checksum bug + - net: hns3: Optimize the PF's process of updating multicast MAC + - net: hns3: Optimize the VF's process of updating multicast MAC + - SAUCE: {topost} net: hns3: add support for serdes loopback selftest + - SAUCE: {topost} net: hns3: RX BD information valid only in last BD except + VLD bit and buffer size + - SAUCE: {topost} net: hns3: remove hclge_get_vector_index from + hclge_bind_ring_with_vector + - SAUCE: {topost} net: hns3: rename the interface for init_client_instance and + uninit_client_instance + - SAUCE: {topost} net: hns3: add vector status check before free vector + - SAUCE: {topost} net: hns3: add l4_type check for both ipv4 and ipv6 + - SAUCE: {topost} net: hns3: remove unused head file in hnae3.c + - SAUCE: {topost} net: hns3: extraction an interface for state state + init|uninit + - SAUCE: {topost} net: hns3: print the ret value in error information + - SAUCE: {topost} net: hns3: remove the Redundant put_vector in + hns3_client_uninit + - SAUCE: {topost} net: hns3: add unlikely for error check + - SAUCE: {topost} net: hns3: remove back in struct hclge_hw + - SAUCE: {topost} net: hns3: use lower_32_bits and upper_32_bits + - SAUCE: {topost} net: hns3: remove unused hclge_ring_to_dma_dir + - SAUCE: {topost} net: hns3: remove useless code in hclge_cmd_send + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: simplify hclge_cmd_csq_clean + - SAUCE: {topost} net: hns3: using modulo for cyclic counters in + hclge_cmd_send + - SAUCE: {topost} net: hns3: remove a redundant hclge_cmd_csq_done + - SAUCE: {topost} net: hns3: remove some unused members of some structures + - SAUCE: {topost} net: hns3: give default option while dependency HNS3 set + - SAUCE: {topost} net: hns3: use dma_zalloc_coherent instead of + kzalloc/dma_map_single + - SAUCE: {topost} net: hns3: modify hnae_ to hnae3_ + - SAUCE: {topost} net: hns3: fix unused function warning in VF driver + - SAUCE: {topost} net: hns3: remove some redundant assignments + - SAUCE: {topost} net: hns3: standardize the handle of return value + - SAUCE: {topost} net: hns3: remove extra space and brackets + - SAUCE: {topost} net: hns3: fix unreasonable code comments + - SAUCE: {topost} net: hns3: use decimal for bit offset macros + - SAUCE: {topost} net: hns3: modify inconsistent bit mask macros + - SAUCE: {topost} net: hns3: fix mislead parameter name + - SAUCE: {topost} net: hns3: remove unused struct member and definition + - SAUCE: {topost} net: hns3: Add SPDX tags to hns3 driver + - SAUCE: {topost} net: hns3: Add pf reset for hip08 RoCE + - SAUCE: {topost} net: hns3: optimize the process of notifying roce client + - SAUCE: {topost} net: hns3: Add calling roce callback function when link + status change + - SAUCE: {topost} net: hns3: fix tc setup when netdev is first up + - SAUCE: {topost} net: hns3: fix for mac pause not disable in pfc mode + - SAUCE: {topost} net: hns3: fix for waterline not setting correctly + - SAUCE: {topost} net: hns3: fix for l4 checksum offload bug + - SAUCE: {topost} net: hns3: fix for mailbox message truncated problem + - SAUCE: {topost} net: hns3: Add configure for mac minimal frame size + - SAUCE: {topost} net: hns3: fix warning bug when doing lp selftest + - SAUCE: {topost} net: hns3: fix get_vector ops in hclgevf_main module + - SAUCE: {topost} net: hns3: remove the warning when clear reset cause + - SAUCE: {topost} net: hns3: Use roce handle when calling roce callback + function + - SAUCE: {topost} net: hns3: prevent sending command during global or core + reset + - SAUCE: {topost} net: hns3: modify the order of initializeing command queue + register + - SAUCE: {topost} net: hns3: reset net device with rtnl_lock + - SAUCE: {topost} net: hns3: prevent to request reset frequently + - SAUCE: {topost} net: hns3: correct reset event status register + - SAUCE: {topost} net: hns3: separate roce from nic when resetting + - SAUCE: net: hns3: Fix for phy link issue when using marvell phy driver + - SAUCE: {topost} net: hns3: fix return value error in + hns3_reset_notify_down_enet + - SAUCE: {topost} net: hns3: remove unnecessary ring configuration operation + while resetting + - SAUCE: {topost} net: hns3: fix for reset_level default assignment probelm + - SAUCE: {topost} net: hns3: fix for using wrong mask and shift in + hclge_get_ring_chain_from_mbx + - SAUCE: {topost} net: hns3: fix comments for hclge_get_ring_chain_from_mbx + - SAUCE: net: hns3: Fix for VF mailbox cannot receiving PF response + - SAUCE: net: hns3: Fix for VF mailbox receiving unknown message + - SAUCE: net: hns3: Optimize PF CMDQ interrupt switching process + + * CVE-2018-7755 + - SAUCE: floppy: Do not copy a kernel pointer to user memory in FDGETPRM ioctl + + * Incorrect blacklist of bcm2835_wdt (LP: #1766052) + - [Packaging] Fix missing watchdog for Raspberry Pi + + * kernel: Fix arch random implementation (LP: #1775391) + - s390/archrandom: Rework arch random implementation. + + * [Ubuntu 1804][boston][ixgbe] EEH causes kernel BUG at /build/linux- + jWa1Fv/linux-4.15.0/drivers/pci/msi.c:352 (i2S) (LP: #1776389) + - ixgbe/ixgbevf: Free IRQ when PCI error recovery removes the device + + * Cosmic update to v4.17.2 stable release (LP: #1779117) + - crypto: chelsio - request to HW should wrap + - blkdev_report_zones_ioctl(): Use vmalloc() to allocate large buffers + - KVM: X86: Fix reserved bits check for MOV to CR3 + - KVM: x86: introduce linear_{read,write}_system + - kvm: fix typo in flag name + - kvm: nVMX: Enforce cpl=0 for VMX instructions + - KVM: x86: pass kvm_vcpu to kvm_read_guest_virt and + kvm_write_guest_virt_system + - kvm: x86: use correct privilege level for sgdt/sidt/fxsave/fxrstor access + - staging: android: ion: Switch to pr_warn_once in ion_buffer_destroy + - NFC: pn533: don't send USB data off of the stack + - usbip: vhci_sysfs: fix potential Spectre v1 + - usb-storage: Add support for FL_ALWAYS_SYNC flag in the UAS driver + - usb-storage: Add compatibility quirk flags for G-Technologies G-Drive + - Input: xpad - add GPD Win 2 Controller USB IDs + - phy: qcom-qusb2: Fix crash if nvmem cell not specified + - usb: core: message: remove extra endianness conversion in + usb_set_isoch_delay + - usb: typec: wcove: Remove dependency on HW FSM + - usb: gadget: function: printer: avoid wrong list handling in printer_write() + - usb: gadget: udc: renesas_usb3: fix double phy_put() + - usb: gadget: udc: renesas_usb3: should remove debugfs + - usb: gadget: udc: renesas_usb3: should call pm_runtime_enable() before add + udc + - usb: gadget: udc: renesas_usb3: should call devm_phy_get() before add udc + - usb: gadget: udc: renesas_usb3: should fail if devm_phy_get() returns error + - usb: gadget: udc: renesas_usb3: disable the controller's irqs for + reconnecting + - serial: sh-sci: Stop using printk format %pCr + - tty/serial: atmel: use port->name as name in request_irq() + - serial: samsung: fix maxburst parameter for DMA transactions + - serial: 8250: omap: Fix idling of clocks for unused uarts + - vmw_balloon: fixing double free when batching mode is off + - doc: fix sysfs ABI documentation + - arm64: defconfig: Enable CONFIG_PINCTRL_MT7622 by default + - tty: pl011: Avoid spuriously stuck-off interrupts + - crypto: ccree - correct host regs offset + - Input: goodix - add new ACPI id for GPD Win 2 touch screen + - Input: elan_i2c - add ELAN0612 (Lenovo v330 14IKB) ACPI ID + - crypto: caam - strip input zeros from RSA input buffer + - crypto: caam - fix DMA mapping dir for generated IV + - crypto: caam - fix IV DMA mapping and updating + - crypto: caam/qi - fix IV DMA mapping and updating + - crypto: caam - fix size of RSA prime factor q + - crypto: cavium - Fix fallout from CONFIG_VMAP_STACK + - crypto: cavium - Limit result reading attempts + - crypto: vmx - Remove overly verbose printk from AES init routines + - crypto: vmx - Remove overly verbose printk from AES XTS init + - crypto: omap-sham - fix memleak + - Linux 4.17.2 + + * Cosmic update to v4.17.1 stable release (LP: #1779116) + - netfilter: nf_flow_table: attach dst to skbs + - bnx2x: use the right constant + - ip6mr: only set ip6mr_table from setsockopt when ip6mr_new_table succeeds + - ipv6: omit traffic class when calculating flow hash + - l2tp: fix refcount leakage on PPPoL2TP sockets + - netdev-FAQ: clarify DaveM's position for stable backports + - net: metrics: add proper netlink validation + - net/packet: refine check for priv area size + - rtnetlink: validate attributes in do_setlink() + - sctp: not allow transport timeout value less than HZ/5 for hb_timer + - team: use netdev_features_t instead of u32 + - vrf: check the original netdevice for generating redirect + - net: dsa: b53: Fix for brcm tag issue in Cygnus SoC + - ipmr: fix error path when ipmr_new_table fails + - PCI: hv: Do not wait forever on a device that has disappeared + - Linux 4.17.1 + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: crypto: thunderx_zip: Fix fallout from + CONFIG_VMAP_STACK" + - Revert "UBUNTU: SAUCE: cred: Add clone_cred() interface" + - SAUCE: apparmor: userspace queries + - SAUCE: apparmor: patch to provide compatibility with v2.x net rules + - SAUCE: apparmor: af_unix mediation + + -- Seth Forshee Thu, 28 Jun 2018 08:03:32 -0500 + +linux (4.17.0-2.3) cosmic; urgency=medium + + * linux: 4.17.0-2.3 -proposed tracker (LP: #1776276) + + * Miscellaneous Ubuntu changes + - Config: remove IrDA from annotations + - Config: remove scsi drivers from annotations + - Config: remove BT_HCIBTUART from annotations + - Config: pstore zlib support was renamed + - Config: disable NVRAM for armhf on annotations + - Config: Disable VT on s390x + - Config: Update SSB and B43/B44 options + - Config: some options not supported on some arches anymore + - Config: renamed and removed options + - Config: TCG_CRB is required for IMA on ACPI systems + - Config: EXTCON_AXP288 depends on X86 + - Config: CONFIG_FSI depends on OF + - Config: DRM_RCAR_LVDS now depends on DRM + - CONFIG: Allow CONFIG_LEDS_MLXCPLD for i386 + - Config: Enable HINIC on arm64 + - Config: Set PPS and PTP_1588_CLOCK as y + - Config: Some NF_TABLES options are built-in now + - Config: GENERIC_CPU for ppc64el + - Config: KEXEC_FILE=n for s390x + - Config: CRYPTO_DEFLATE is needed by PSTORE_DEFLATE_COMPRESS + - Config: Disable STM32 support + - Config: Enable FORTIFY_SOURCE for armhf + - Config: use STRONG instead of AUTO for CC_STACKPROTECTOR + + [ Upstream Kernel Changes ] + + * Rebase to v4.17 + + -- Thadeu Lima de Souza Cascardo Mon, 11 Jun 2018 15:22:10 -0300 + +linux (4.17.0-1.2) cosmic; urgency=medium + + [ Seth Forshee ] + * [Config] enable EDAC_DEBUG on ARM64 (LP: #1772516) + - [Config]: set CONFIG_EDAC_DEBUG=y for ARM64 + + * Ubuntu 18.04 kernel crashed while in degraded mode (LP: #1770849) + - SAUCE: powerpc/perf: Fix memory allocation for core-imc based on + num_possible_cpus() + + * Integrated Webcam Realtek Integrated_Webcam_HD (0bda:58f4) not working in + DELL XPS 13 9370 with firmware 1.50 (LP: #1763748) + - SAUCE: media: uvcvideo: Support realtek's UVC 1.5 device + + * Switch Build-Depends: transfig to fig2dev (LP: #1770770) + - [Config] update Build-Depends: transfig to fig2dev + + * update-initramfs not adding i915 GuC firmware for Kaby Lake, firmware fails + to load (LP: #1728238) + - Revert "UBUNTU: SAUCE: (no-up) i915: Remove MODULE_FIRMWARE statements for + unreleased firmware" + + * No driver for Huawei network adapters on arm64 (LP: #1769899) + - net-next/hinic: add arm64 support + + * linux-snapdragon: reduce EPROBEDEFER noise during boot (LP: #1768761) + - [Config] snapdragon: DRM_I2C_ADV7511=y + + * Add d-i support for Huawei NICs (LP: #1767490) + - d-i: add hinic to nic-modules udeb + + * Acer Swift sf314-52 power button not managed (LP: #1766054) + - SAUCE: platform/x86: acer-wmi: add another KEY_POWER keycode + + * Include nfp driver in linux-modules (LP: #1768526) + - [Config] Add nfp.ko to generic inclusion list + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + - SAUCE: (efi-lockdown) Fix for module sig verification + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) efi: Add an EFI_SECURE_BOOT flag to indicate secure + boot mode + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Don't print secure boot state from the efi stub + - [Config] CONFIG_LOCK_DOWN_IN_EFI_SECURE_BOOT=y + - SAUCE: (efi-lockdown) really lock down kernel under EFI secure boot + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu3, zfs to 0.7.5-1ubuntu17 + - enable zfs build + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) ima: require secure_boot rules in + lockdown mode" + - Rebased to v4.17-rc6 + + -- Thadeu Lima de Souza Cascardo Tue, 22 May 2018 14:48:13 -0300 + +linux (4.17.0-0.1) bionic; urgency=medium + + [ Upstream Kernel Changes ] + + * Rebase to v4.17-rc4 + + -- Thadeu Lima de Souza Cascardo Tue, 08 May 2018 16:38:51 -0300 + +linux (4.17.0-0.0) bionic; urgency=medium + + * Dummy entry. + + -- Thadeu Lima de Souza Cascardo Fri, 27 Apr 2018 11:01:13 -0300 + +linux (4.16.0-4.5) bionic; urgency=medium + + * [18.04 FEAT] Add kvm_stat from kernel tree (LP: #1734130) + - tools/kvm_stat: Fix python3 syntax + - tools/kvm_stat: Don't use deprecated file() + - tools/kvm_stat: Remove unused function + - [Packaging] Add linux-tools-host package for VM host tools + - [Config] do_tools_host=true for amd64 + + * [Featire] CNL: Enable RAPL support (LP: #1685712) + - powercap: RAPL: Add support for Cannon Lake + + * Bionic update to v4.16.2 stable release (LP: #1763388) + - sparc64: Oracle DAX driver depends on SPARC64 + - arp: fix arp_filter on l3slave devices + - net: dsa: Discard frames from unused ports + - net/ipv6: Increment OUTxxx counters after netfilter hook + - net/sched: fix NULL dereference in the error path of tcf_bpf_init() + - pptp: remove a buggy dst release in pptp_connect() + - sctp: do not leak kernel memory to user space + - sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 + - vlan: also check phy_driver ts_info for vlan's real device + - net: fool proof dev_valid_name() + - ip_tunnel: better validate user provided tunnel names + - ipv6: sit: better validate user provided tunnel names + - ip6_gre: better validate user provided tunnel names + - ip6_tunnel: better validate user provided tunnel names + - vti6: better validate user provided tunnel names + - net_sched: fix a missing idr_remove() in u32_delete_key() + - nfp: use full 40 bits of the NSP buffer address + - Linux 4.16.2 + + * sky2 gigabit ethernet driver sometimes stops working after lid-open resume + from sleep (88E8055) (LP: #1758507) // Bionic update to v4.16.2 stable + release (LP: #1763388) + - sky2: Increase D3 delay to sky2 stops working after suspend + + * Merge the linux-snapdragon kernel into bionic master/snapdragon + (LP: #1763040) + - arm64: defconfig: enable REMOTEPROC + - arm64: defconfig: enable QCOM audio drivers for APQ8016 and DB410c + - kernel: configs; add distro.config + - arm64: configs: enable WCN36xx + - kernel: distro.config: enable debug friendly USB network adpater + - arm64: configs: enable QCOM Venus + - arm64: defconfig: Enable a53/apcs and avs + - arm64: defconfig: enable ondemand governor as default + - arm64: defconfig: enable QCOM_TSENS + - kernel: configs: enable dm_mod and dm_crypt + - Force the SMD regulator driver to be compiled-in + - arm64: defconfig: enable CFG80211_DEFAULT_PS by default + - arm64: configs: enable BT_QCOMSMD + - kernel: configs: add more USB net drivers + - arm64: defconfig: disable ANALOG_TV and DIGITAL_TV + - arm64: configs: Enable camera drivers + - kernel: configs: add freq stat to sysfs + - arm64: defconfig: enable CONFIG_USB_CONFIGFS_F_FS by default + - arm64: defconfig: Enable QRTR features + - kernel: configs: set USB_CONFIG_F_FS in distro.config + - kernel: distro.config: enable 'schedutil' CPUfreq governor + - kernel: distro.config: enable 'fq' and 'fq_codel' qdiscs + - kernel: distro.config: enable 'BBR' TCP congestion algorithm + - arm64: defconfig: enable LEDS_QCOM_LPG + - HACK: drm/msm/iommu: Remove runtime_put calls in map/unmap + - power: avs: Add support for CPR (Core Power Reduction) + - power: avs: cpr: Use raw mem access for qfprom + - power: avs: cpr: fix with new reg_sequence structures + - power: avs: cpr: Register with cpufreq-dt + - regulator: smd: Add floor and corner operations + - PM / OPP: Support adjusting OPP voltages at runtime + - PM / OPP: Drop RCU usage in dev_pm_opp_adjust_voltage() + - PM / OPP: HACK: Allow to set regulator without opp_list + - PM / OPP: Add a helper to get an opp regulator for device + - cpufreq: Add apq8016 to cpufreq-dt-platdev blacklist + - regulator: smd: Allow REGULATOR_QCOM_SMD_RPM=m + - ov5645: I2C address change + - i2c: Add Qualcomm Camera Control Interface driver + - camss: vfe: Skip first four frames from sensor + - camss: Do not register if no cameras are present + - i2c-qcom-cci: Fix run queue completion timeout + - i2c-qcom-cci: Fix I2C address bug + - media: ov5645: Fix I2C address + - drm/bridge/adv7511: Delay clearing of HPD interrupt status + - HACK: drm/msm/adv7511: Don't rely on interrupts for EDID parsing + - leds: Add driver for Qualcomm LPG + - wcn36xx: Fix warning due to duplicate scan_completed notification + - arm64: dts: Add CPR DT node for msm8916 + - arm64: dts: add spmi-regulator nodes + - arm64: dts: msm8916: Add cpufreq support + - arm64: dts: msm8916: Add a shared CPU opp table + - arm64: dts: msm8916: Add cpu cooling maps + - arm64: dts: pm8916: Mark the s2 regulator as always-on + - arm64: dts: qcom: msm8916: Add msm8916 A53 PLL DT node + - arm64: dts: qcom: msm8916: Use the new APCS mailbox driver + - arm64: dts: qcom: msm8916: Add clock properties to the APCS node + - dt-bindings: media: Binding document for Qualcomm Camera Control Interface + driver + - MAINTAINERS: Add Qualcomm Camera Control Interface driver + - DT: leds: Add Qualcomm Light Pulse Generator binding + - arm64: dts: qcom: msm8996: Add mpp and lpg blocks + - arm64: dts: qcom: Add pwm node for pm8916 + - arm64: dts: qcom: Add user LEDs on db820c + - arm64: dts: qcom: Add WiFI/BT LEDs on db820c + - ARM: dts: qcom: Add LPG node to pm8941 + - ARM: dts: qcom: honami: Add LPG node and RGB LED + - arm64: dts: qcom: Add Camera Control Interface support + - arm64: dts: qcom: Add apps_iommu vfe child node + - arm64: dts: qcom: Add camss device node + - arm64: dts: qcom: Add ov5645 device nodes + - arm64: dts: msm8916: Fix camera sensors I2C addresses + - arm: dts: qcom: db410c: Enable PWM signal on MPP4 + - packaging: arm64: add a uboot flavour - part1 + - packaging: arm64: add a uboot flavour - part2 + - packaging: arm64: add a uboot flavour - part3 + - packaging: arm64: add a uboot flavour - part4 + - packaging: arm64: add a uboot flavour - part5 + - packaging: arm64: rename uboot flavour to snapdragon + - [Config] updateconfigs after qcomlt import + - [Config] arm64: snapdragon: COMMON_CLK_QCOM=y + - [Config] arm64: snapdragon: MSM_GCC_8916=y + - [Config] arm64: snapdragon: REGULATOR_FIXED_VOLTAGE=y + - [Config] arm64: snapdragon: PINCTRL_MSM8916=y + - [Config] arm64: snapdragon: HWSPINLOCK_QCOM=y + - [Config] arm64: snapdragon: SPMI=y, SPMI_MSM_PMIC_ARB=y + - [Config] arm64: snapdragon: REGMAP_SPMI=y, PINCTRL_QCOM_SPMI_PMIC=y + - [Config] arm64: snapdragon: REGULATOR_QCOM_SPMI=y + - [Config] arm64: snapdragon: MFD_SPMI_PMIC=y + - [Config] arm64: snapdragon: QCOM_SMEM=y + - [Config] arm64: snapdragon: RPMSG=y, RPMSG_QCOM_SMD=y + - [Config] arm64: snapdragon: QCOM_SMD_RPM=y, REGULATOR_QCOM_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_CLK_SMD_RPM=y + - [Config] arm64: snapdragon: QCOM_BAM_DMA=y + - [Config] arm64: snapdragon: QCOM_HIDMA=y, QCOM_HIDMA_MGMT=y + - [Config] arm64: snapdragon: QCOM_CPR=y + - [Config] arm64: snapdragon: QCOM_QFPROM=y, QCOM_TSENS=y + - [Config] arm64: snapdragon: MMC_SDHCI=y, MMC_SDHCI_PLTFM=y, MMC_SDHCI_MSM=y + - [Config] turn off DRM_MSM_REGISTER_LOGGING + - [Config] arm64: snapdragon: I2C_QUP=y + - [Config] arm64: snapdragon: SPI_QUP=y + - [Config] arm64: snapdragon: USB_ULPI_BUS=y, PHY_QCOM_USB_HS=y + - [Config] arm64: snapdragon: QCOM_APCS_IPC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_CTRL=y + - [Config] arm64: snapdragon: QCOM_SMSM=y + - [Config] arm64: snapdragon: QCOM_SMP2P=y + - [Config] arm64: snapdragon: DRM_MSM=y + - [Config] arm64: snapdragon: SND_SOC=y + - [Config] arm64: snapdragon: QCOM_WCNSS_PIL=m + - [Config] arm64: snapdragon: INPUT_PM8941_PWRKEY=y + - [Config] arm64: snapdragon: MEDIA_SUBDRV_AUTOSELECT=y, VIDEO_OV5645=m + - [Config] arm64: snapdragon: SND_SOC_APQ8016_SBC=y, SND_SOC_LPASS_APQ8016=y + - [Config] arm64: snapdragon: SND_SOC_MSM8916_WCD_ANALOG=y, + SND_SOC_MSM8916_WCD_DIGITAL=y + - SAUCE: media: ov5645: skip address change if dt addr == default addr + - SAUCE: drm/msm/adv7511: wrap hacks under CONFIG_ADV7511_SNAPDRAGON_HACKS + #ifdefs + - [Config] arm64: snapdragon: ADV7511_SNAPDRAGON_HACKS=y + - [Packaging] fix up snapdragon abi paths + + * LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: Manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: Manage task security blobs + - SAUCE: LSM stacking: LSM: Manage remaining security blobs + - SAUCE: LSM stacking: LSM: General stacking + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: add apparmor and selinux proc dirs + - SAUCE: LSM stacking: remove procfs context interface + + * linux 4.13.0-13.14 ADT test failure with linux 4.13.0-13.14 + (LP: #1720779) // LSM stacking patches for bionic (LP: #1763062) + - SAUCE: LSM stacking: check for invalid zero sized writes + + * Support cq/rq record doorbell for RDMA on HSilicon hip08 systems + (LP: #1762755) + - RDMA/hns: Support rq record doorbell for the user space + - RDMA/hns: Support cq record doorbell for the user space + - RDMA/hns: Support rq record doorbell for kernel space + - RDMA/hns: Support cq record doorbell for kernel space + - RDMA/hns: Fix cqn type and init resp + - RDMA/hns: Fix init resp when alloc ucontext + - RDMA/hns: Fix cq record doorbell enable in kernel + + * Replace LPC patchset with upstream version (LP: #1762758) + - Revert "UBUNTU: SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver" + - Revert "UBUNTU: SAUCE: HISI LPC: Add ACPI support" + - Revert "UBUNTU: SAUCE: ACPI / scan: do not enumerate Indirect IO host + children" + - Revert "UBUNTU: SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT + bindings" + - Revert "UBUNTU: SAUCE: OF: Add missing I/O range exception for indirect-IO + devices" + - Revert "UBUNTU: SAUCE: PCI: Apply the new generic I/O management on PCI IO + hosts" + - Revert "UBUNTU: SAUCE: PCI: Add fwnode handler as input param of + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: PCI: Remove unused __weak attribute in + pci_register_io_range()" + - Revert "UBUNTU: SAUCE: LIB: Introduce a generic PIO mapping method" + - lib: Add generic PIO mapping method + - PCI: Remove __weak tag from pci_register_io_range() + - PCI: Add fwnode handler as input param of pci_register_io_range() + - PCI: Apply the new generic I/O management on PCI IO hosts + - of: Add missing I/O range exception for indirect-IO devices + - HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - ACPI / scan: Rename acpi_is_serial_bus_slave() for more general use + - ACPI / scan: Do not enumerate Indirect IO host children + - HISI LPC: Add ACPI support + - MAINTAINERS: Add John Garry as maintainer for HiSilicon LPC driver + + * Enable Tunneled Operations on POWER9 (LP: #1762448) + - powerpc/powernv: Enable tunneled operations + - cxl: read PHB indications from the device tree + + * PSL traces reset after PERST for debug AFU image (LP: #1762462) + - cxl: Enable NORST bit in PSL_DEBUG register for PSL9 + + * NFS + sec=krb5 is broken (LP: #1759791) + - sunrpc: remove incorrect HMAC request initialization + + * Raspberry Pi 3 microSD support missing from the installer (LP: #1729128) + - d-i: add bcm2835 to block-modules + + * Backport USB core quirks (LP: #1762695) + - usb: core: Add "quirks" parameter for usbcore + - usb: core: Copy parameter string correctly and remove superfluous null check + - usb: core: Add USB_QUIRK_DELAY_CTRL_MSG to usbcore quirks + + * [Ubuntu 18.04] cryptsetup: 'device-mapper: reload ioctl on failed' when + setting up a second end-to-end encrypted disk (LP: #1762353) + - SAUCE: s390/crypto: Adjust s390 aes and paes cipher + + * System Z {kernel} UBUNTU18.04 wrong kernel config (LP: #1762719) + - s390: move nobp parameter functions to nospec-branch.c + - s390: add automatic detection of the spectre defense + - s390: report spectre mitigation via syslog + - s390: add sysfs attributes for spectre + - [Config] CONFIG_EXPOLINE_AUTO=y, CONFIG_KERNEL_NOBP=n for s390 + - s390: correct nospec auto detection init order + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 + - powerpc/64s: Wire up cpu_show_spectre_v2() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5753 + - powerpc/64s: Wire up cpu_show_spectre_v1() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5754 + - powerpc/rfi-flush: Move the logic to avoid a redo into the debugfs code + - powerpc/rfi-flush: Make it possible to call setup_rfi_flush() again + - powerpc/rfi-flush: Always enable fallback flush on pseries + - powerpc/rfi-flush: Differentiate enabled and patched flush types + - powerpc/rfi-flush: Call setup_rfi_flush() after LPM migration + - powerpc/64s: Move cpu_show_meltdown() + - powerpc/64s: Enhance the information in cpu_show_meltdown() + - powerpc/powernv: Use the security flags in pnv_setup_rfi_flush() + - powerpc/pseries: Use the security flags in pseries_setup_rfi_flush() + + * Additional spectre and meltdown patches (LP: #1760099) // CVE-2017-5715 // + CVE-2017-5753 // CVE-2017-5754 + - powerpc/pseries: Add new H_GET_CPU_CHARACTERISTICS flags + - powerpc: Add security feature flags for Spectre/Meltdown + - powerpc/pseries: Set or clear security feature flags + - powerpc/powernv: Set or clear security feature flags + + * Hisilicon network subsystem 3 support (LP: #1761610) + - net: hns3: export pci table of hclge and hclgevf to userspace + - d-i: Add hns3 drivers to nic-modules + + * "ip a" command on a guest VM shows UNKNOWN status (LP: #1761534) + - virtio-net: Fix operstate for virtio when no VIRTIO_NET_F_STATUS + + * perf vendor events arm64: Enable JSON events for ThunderX2 B0 (LP: #1760712) + - perf vendor events: Drop incomplete multiple mapfile support + - perf vendor events: Fix error code in json_events() + - perf vendor events: Drop support for unused topic directories + - perf vendor events: Add support for pmu events vendor subdirectory + - perf vendor events arm64: Relocate ThunderX2 JSON to cavium subdirectory + - perf vendor events arm64: Relocate Cortex A53 JSONs to arm subdirectory + - perf vendor events: Add support for arch standard events + - perf vendor events arm64: Add armv8-recommended.json + - perf vendor events arm64: Fixup ThunderX2 to use recommended events + - perf vendor events arm64: fixup A53 to use recommended events + - perf vendor events arm64: add HiSilicon hip08 JSON file + - perf vendor events arm64: Enable JSON events for ThunderX2 B0 + + * Warning "cache flush timed out!" seen when unloading the cxl driver + (LP: #1762367) + - cxl: Check if PSL data-cache is available before issue flush request + + * Bionic update to v4.16.1 stable release (LP: #1763170) + - bitmap: fix memset optimization on big-endian systems + - USB: serial: ftdi_sio: add RT Systems VX-8 cable + - USB: serial: ftdi_sio: add support for Harman FirmwareHubEmulator + - USB: serial: cp210x: add ELDAT Easywave RX09 id + - serial: 8250: Add Nuvoton NPCM UART + - mei: remove dev_err message on an unsupported ioctl + - /dev/mem: Avoid overwriting "err" in read_mem() + - media: usbtv: prevent double free in error case + - parport_pc: Add support for WCH CH382L PCI-E single parallel port card. + - crypto: lrw - Free rctx->ext with kzfree + - crypto: ccp - Fill the result buffer only on digest, finup, and final ops + - crypto: talitos - don't persistently map req_ctx->hw_context and + req_ctx->buf + - crypto: inside-secure - fix clock management + - crypto: testmgr - Fix incorrect values in PKCS#1 test vector + - crypto: talitos - fix IPsec cipher in length + - crypto: ahash - Fix early termination in hash walk + - crypto: caam - Fix null dereference at error path + - crypto: ccp - return an actual key size from RSA max_size callback + - crypto: arm,arm64 - Fix random regeneration of S_shipped + - crypto: x86/cast5-avx - fix ECB encryption when long sg follows short one + - Bluetooth: hci_bcm: Add 6 new ACPI HIDs + - Btrfs: fix unexpected cow in run_delalloc_nocow + - siox: fix possible buffer overflow in device_add_store + - staging: comedi: ni_mio_common: ack ai fifo error interrupts. + - Revert "base: arch_topology: fix section mismatch build warnings" + - Input: ALPS - fix TrackStick detection on Thinkpad L570 and Latitude 7370 + - Input: i8042 - add Lenovo ThinkPad L460 to i8042 reset list + - Input: i8042 - enable MUX on Sony VAIO VGN-CS series to fix touchpad + - vt: change SGR 21 to follow the standards + - Fix slab name "biovec-(1<<(21-12))" + - signal: Correct the offset of si_pkey and si_lower in struct siginfo on m68k + - Linux 4.16.1 + + * [18.04][config] regression: nvme and nvme_core couldn't be built as modules + starting 4.15-rc2 (LP: #1759893) + - SAUCE: Revert "lightnvm: include NVM Express driver if OCSSD is selected for + build" + - [Config] CONFIG_BLK_DEV_NMVE=m + + * FFe: Enable configuring resume offset via sysfs (LP: #1760106) + - PM / hibernate: Make passing hibernate offsets more friendly + + * Ubuntu18.04:POWER9:DD2.2 - Unable to start a KVM guest with default machine + type(pseries-bionic) complaining "KVM implementation does not support + Transactional Memory, try cap-htm=off" (kvm) (LP: #1752026) + - powerpc: Use feature bit for RTC presence rather than timebase presence + - powerpc: Book E: Remove unused CPU_FTR_L2CSR bit + - powerpc: Free up CPU feature bits on 64-bit machines + - powerpc: Add CPU feature bits for TM bug workarounds on POWER9 v2.2 + - powerpc/powernv: Provide a way to force a core into SMT4 mode + - KVM: PPC: Book3S HV: Work around transactional memory bugs in POWER9 + - KVM: PPC: Book3S HV: Work around XER[SO] bug in fake suspend mode + - KVM: PPC: Book3S HV: Work around TEXASR bug in fake suspend state + + * [Feature][CFL][ICL] [CNL]Thunderbolt support (Titan Ridge) (LP: #1730775) + - thunderbolt: Resume control channel after hibernation image is created + - thunderbolt: Serialize PCIe tunnel creation with PCI rescan + - thunderbolt: Handle connecting device in place of host properly + - thunderbolt: Do not overwrite error code when domain adding fails + - thunderbolt: Wait a bit longer for root switch config space + - thunderbolt: Wait a bit longer for ICM to authenticate the active NVM + - thunderbolt: Handle rejected Thunderbolt devices + - thunderbolt: Factor common ICM add and update operations out + - thunderbolt: Correct function name in kernel-doc comment + - thunderbolt: Add tb_switch_get() + - thunderbolt: Add tb_switch_find_by_route() + - thunderbolt: Add tb_xdomain_find_by_route() + - thunderbolt: Add constant for approval timeout + - thunderbolt: Move driver ready handling to struct icm + - thunderbolt: Add 'boot' attribute for devices + - thunderbolt: Add support for preboot ACL + - thunderbolt: Introduce USB only (SL4) security level + - thunderbolt: Add support for Intel Titan Ridge + + * QCA9377 requires more IRAM banks for its new firmware (LP: #1748345) + - ath10k: update the IRAM bank number for QCA9377 + + * Fix an issue that when system in S3, USB keyboard can't wake up the system. + (LP: #1759511) + - ACPI / PM: Allow deeper wakeup power states with no _SxD nor _SxW + + * cxl: Fix timebase synchronization status on POWER9 missing (CAPI) + (LP: #1757228) + - cxl: Fix timebase synchronization status on P9 + + * [Feature]Update Ubuntu 18.04 lpfc FC driver with 32/64GB HBA support and bug + fixes (LP: #1752182) + - scsi: lpfc: Fix frequency of Release WQE CQEs + - scsi: lpfc: Increase CQ and WQ sizes for SCSI + - scsi: lpfc: move placement of target destroy on driver detach + - scsi: lpfc: correct debug counters for abort + - scsi: lpfc: Add WQ Full Logic for NVME Target + - scsi: lpfc: Fix PRLI handling when topology type changes + - scsi: lpfc: Fix IO failure during hba reset testing with nvme io. + - scsi: lpfc: Fix RQ empty firmware trap + - scsi: lpfc: Allow set of maximum outstanding SCSI cmd limit for a target + - scsi: lpfc: Fix soft lockup in lpfc worker thread during LIP testing + - scsi: lpfc: Fix issue_lip if link is disabled + - scsi: lpfc: Indicate CONF support in NVMe PRLI + - scsi: lpfc: Fix SCSI io host reset causing kernel crash + - scsi: lpfc: Validate adapter support for SRIU option + - scsi: lpfc: Fix header inclusion in lpfc_nvmet + - scsi: lpfc: Treat SCSI Write operation Underruns as an error + - scsi: lpfc: Fix nonrecovery of NVME controller after cable swap. + - scsi: lpfc: update driver version to 11.4.0.7 + - scsi: lpfc: Update 11.4.0.7 modified files for 2018 Copyright + - scsi: lpfc: Rework lpfc to allow different sli4 cq and eq handlers + - scsi: lpfc: Rework sli4 doorbell infrastructure + - scsi: lpfc: Add SLI-4 if_type=6 support to the code base + - scsi: lpfc: Add push-to-adapter support to sli4 + - scsi: lpfc: Add PCI Ids for if_type=6 hardware + - scsi: lpfc: Add 64G link speed support + - scsi: lpfc: Add if_type=6 support for cycling valid bits + - scsi: lpfc: Enable fw download on if_type=6 devices + - scsi: lpfc: Add embedded data pointers for enhanced performance + - scsi: lpfc: Fix nvme embedded io length on new hardware + - scsi: lpfc: Work around NVME cmd iu SGL type + - scsi: lpfc: update driver version to 12.0.0.0 + - scsi: lpfc: Change Copyright of 12.0.0.0 modified files to 2018 + - scsi: lpfc: use __raw_writeX on DPP copies + - scsi: lpfc: Add missing unlock in WQ full logic + + * /dev/bcache/by-uuid links not created after reboot (LP: #1729145) + - SAUCE: (no-up) bcache: decouple emitting a cached_dev CHANGE uevent + + * DKMS driver builds fail with: Cannot use CONFIG_STACK_VALIDATION=y, please + install libelf-dev, libelf-devel or elfutils-libelf-devel (LP: #1760876) + - [Packaging] include the retpoline extractor in the headers + + * Use med_with_dipm SATA LPM to save more power for mobile platforms + (LP: #1759547) + - [Config] CONFIG_SATA_MOBILE_LPM_POLICY=3 + + * Miscellaneous Ubuntu changes + - [Packaging] Only install cloud init files when do_tools_common=true + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + -- Seth Forshee Thu, 12 Apr 2018 09:30:56 -0500 + +linux (4.16.0-3.4) bionic; urgency=medium + + * Allow multiple mounts of zfs datasets (LP: #1759848) + - SAUCE: Allow mounting datasets more than once (LP: #1759848) + + * zfs system process hung on container stop/delete (LP: #1754584) + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + - Revert "UBUNTU: SAUCE: Fix non-prefaulted page deadlock (LP: #1754584)" + - SAUCE: Fix non-prefaulted page deadlock (LP: #1754584) + + * ubuntu_zram_smoke test will cause soft lockup on Artful ThunderX ARM64 + (LP: #1755073) + - SAUCE: crypto: thunderx_zip: Fix fallout from CONFIG_VMAP_STACK + + * CAPI Flash (cxlflash) update (LP: #1752672) + - SAUCE: cxlflash: Preserve number of interrupts for master contexts + - SAUCE: cxlflash: Avoid clobbering context control register value + - SAUCE: cxlflash: Add argument identifier names + - SAUCE: cxlflash: Introduce OCXL backend + - SAUCE: cxlflash: Hardware AFU for OCXL + - SAUCE: cxlflash: Read host function configuration + - SAUCE: cxlflash: Setup function acTag range + - SAUCE: cxlflash: Read host AFU configuration + - SAUCE: cxlflash: Setup AFU acTag range + - SAUCE: cxlflash: Setup AFU PASID + - SAUCE: cxlflash: Adapter context support for OCXL + - SAUCE: cxlflash: Use IDR to manage adapter contexts + - SAUCE: cxlflash: Support adapter file descriptors for OCXL + - SAUCE: cxlflash: Support adapter context discovery + - SAUCE: cxlflash: Support image reload policy modification + - SAUCE: cxlflash: MMIO map the AFU + - SAUCE: cxlflash: Support starting an adapter context + - SAUCE: cxlflash: Support process specific mappings + - SAUCE: cxlflash: Support AFU state toggling + - SAUCE: cxlflash: Support reading adapter VPD data + - SAUCE: cxlflash: Setup function OCXL link + - SAUCE: cxlflash: Setup OCXL transaction layer + - SAUCE: cxlflash: Support process element lifecycle + - SAUCE: cxlflash: Support AFU interrupt management + - SAUCE: cxlflash: Support AFU interrupt mapping and registration + - SAUCE: cxlflash: Support starting user contexts + - SAUCE: cxlflash: Support adapter context polling + - SAUCE: cxlflash: Support adapter context reading + - SAUCE: cxlflash: Support adapter context mmap and release + - SAUCE: cxlflash: Support file descriptor mapping + - SAUCE: cxlflash: Introduce object handle fop + - SAUCE: cxlflash: Setup LISNs for user contexts + - SAUCE: cxlflash: Setup LISNs for master contexts + - SAUCE: cxlflash: Update synchronous interrupt status bits + - SAUCE: cxlflash: Introduce OCXL context state machine + - SAUCE: cxlflash: Register for translation errors + - SAUCE: cxlflash: Support AFU reset + - SAUCE: cxlflash: Enable OCXL operations + + * [Artful][Wyse 3040] System hang when trying to enable an offlined CPU core + (LP: #1736393) + - SAUCE: drm/i915:Don't set chip specific data + - SAUCE: drm/i915: make previous commit affects Wyse 3040 only + + * zed process consuming 100% cpu (LP: #1751796) + - SAUCE: Fix ioctl loop-spin in zed (LP: #1751796) + + * Ubuntu18.04:PowerPC - Set Transparent Huge Pages (THP) by default to + "always" (LP: #1753708) + - Config: Set TRANSPARENT_HUGEPAGE_ALWAYS=y on ppc64el + + * retpoline hints: primary infrastructure and initial hints (LP: #1758856) + - [Packaging] retpoline -- add safe usage hint support + - [Packaging] retpoline-check -- only report additions + - [Packaging] retpoline -- widen indirect call/jmp detection + - [Packaging] retpoline -- elide %rip relative indirections + - [Packaging] retpoline -- clear hint information from packages + - SAUCE: apm -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: EFI -- annotate indirect calls within + firmware_restrict_branch_speculation_{start,end} + - SAUCE: early/late -- annotate indirect calls in early/late initialisation + code + - SAUCE: vga_set_mode -- avoid jump tables + - [Config] retpoine -- switch to new format + + * Miscellaneous Ubuntu changes + - [Packaging] final-checks -- remove check for empty retpoline files + - [Packaging] skip cloud tools packaging when not building package + + [ Upstream Kernel Changes ] + + * Rebase to v4.16 + + -- Seth Forshee Mon, 02 Apr 2018 16:15:36 -0500 + +linux (4.16.0-2.3) bionic; urgency=medium + + * devpts: handle bind-mounts (LP: #1755857) + - SAUCE: devpts: hoist out check for DEVPTS_SUPER_MAGIC + - SAUCE: devpts: resolve devpts bind-mounts + - SAUCE: devpts: comment devpts_mntget() + - SAUCE: selftests: add devpts selftests + + * [bionic][arm64] d-i: add hisi_sas_v3_hw to scsi-modules (LP: #1756103) + - d-i: add hisi_sas_v3_hw to scsi-modules + + * [Bionic][ARM64] PCI and SAS driver patches for hip08 SoCs (LP: #1756094) + - SAUCE: scsi: hisi_sas: config for hip08 ES + - SAUCE: scsi: hisi_sas: export device table of v3 hw to userspace + + * s390/crypto: Fix kernel crash on aes_s390 module remove (LP: #1753424) + - SAUCE: s390/crypto: Fix kernel crash on aes_s390 module remove. + + * Fix ARC hit rate (LP: #1755158) + - SAUCE: Fix ARC hit rate (LP: #1755158) + + * ZFS setgid broken on 0.7 (LP: #1753288) + - SAUCE: Fix ZFS setgid + + * CONFIG_EFI=y on armhf (LP: #1726362) + - [Config] CONFIG_EFI=y on armhf, reconcile secureboot EFI settings + + * [Feature] Add xHCI debug device support in the driver (LP: #1730832) + - [Config] CONFIG_USB_XHCI_DBGCAP=y + + * retpoline: ignore %cs:0xNNN constant indirections (LP: #1752655) + - [Packaging] retpoline -- elide %cs:0xNNNN constants on i386 + - [Config] retpoline -- clean up i386 retpoline files + + * Miscellaneous Ubuntu changes + - [Packaging] retpoline-extract: flag *0xNNN(%reg) branches + - [Config] fix up retpoline abi files + - [Config] fix up retpoline abi files + - d-i: Add netsec to nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc6 + + -- Seth Forshee Mon, 19 Mar 2018 14:09:49 -0500 + +linux (4.16.0-1.2) bionic; urgency=medium + + * Driver not found in Ubuntu kernel does not detect interface (LP: #1745927) + - d-i: add cxgb4 to nic-modules + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_INDIRECT_PIO=y + - SAUCE: LIB: Introduce a generic PIO mapping method + - SAUCE: PCI: Remove unused __weak attribute in pci_register_io_range() + - SAUCE: PCI: Add fwnode handler as input param of pci_register_io_range() + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: HISI LPC: Support the LPC host on Hip06/Hip07 with DT bindings + - SAUCE: ACPI / scan: do not enumerate Indirect IO host children + - SAUCE: HISI LPC: Add ACPI support + - SAUCE: MAINTAINERS: Add maintainer for HiSilicon LPC driver + + * Miscellaneous Ubuntu changes + - SAUCE: tools: use CC for linking acpi tools + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc3 + + -- Seth Forshee Wed, 28 Feb 2018 10:17:23 -0600 + +linux (4.16.0-0.1) bionic; urgency=medium + + * retpoline abi files are empty on i386 (LP: #1751021) + - [Packaging] retpoline-extract -- instantiate retpoline files for i386 + - [Packaging] final-checks -- sanity checking ABI contents + - [Packaging] final-checks -- check for empty retpoline files + + * Miscellaneous upstream changes + - disable vbox build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.16-rc2 + + -- Seth Forshee Thu, 22 Feb 2018 08:58:57 -0600 + +linux (4.16.0-0.0) bionic; urgency=medium + + * Dummy entry + + -- Seth Forshee Wed, 21 Feb 2018 14:33:13 -0600 + +linux (4.15.0-10.11) bionic; urgency=medium + + * linux: 4.15.0-10.11 -proposed tracker (LP: #1749250) + + * "swiotlb: coherent allocation failed" dmesg spam with linux 4.15.0-9.10 + (LP: #1749202) + - swiotlb: suppress warning when __GFP_NOWARN is set + - drm/ttm: specify DMA_ATTR_NO_WARN for huge page pools + + * linux-tools: perf incorrectly linking libbfd (LP: #1748922) + - SAUCE: tools -- add ability to disable libbfd + - [Packaging] correct disablement of libbfd + + * [Artful] Realtek ALC225: 2 secs noise when a headset plugged in + (LP: #1744058) + - ALSA: hda/realtek - update ALC225 depop optimize + + * [Artful] Support headset mode for DELL WYSE (LP: #1723913) + - SAUCE: ALSA: hda/realtek - Add support headset mode for DELL WYSE + + * headset mic can't be detected on two Dell machines (LP: #1748807) + - ALSA: hda/realtek - Support headset mode for ALC215/ALC285/ALC289 + - ALSA: hda - Fix headset mic detection problem for two Dell machines + + * Bionic update to v4.15.3 stable release (LP: #1749191) + - ip6mr: fix stale iterator + - net: igmp: add a missing rcu locking section + - qlcnic: fix deadlock bug + - qmi_wwan: Add support for Quectel EP06 + - r8169: fix RTL8168EP take too long to complete driver initialization. + - tcp: release sk_frag.page in tcp_disconnect + - vhost_net: stop device during reset owner + - ipv6: addrconf: break critical section in addrconf_verify_rtnl() + - ipv6: change route cache aging logic + - Revert "defer call to mem_cgroup_sk_alloc()" + - net: ipv6: send unsolicited NA after DAD + - rocker: fix possible null pointer dereference in + rocker_router_fib_event_work + - tcp_bbr: fix pacing_gain to always be unity when using lt_bw + - cls_u32: add missing RCU annotation. + - ipv6: Fix SO_REUSEPORT UDP socket with implicit sk_ipv6only + - soreuseport: fix mem leak in reuseport_add_sock() + - net_sched: get rid of rcu_barrier() in tcf_block_put_ext() + - net: sched: fix use-after-free in tcf_block_put_ext + - media: mtk-vcodec: add missing MODULE_LICENSE/DESCRIPTION + - media: soc_camera: soc_scale_crop: add missing + MODULE_DESCRIPTION/AUTHOR/LICENSE + - media: tegra-cec: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: uniphier: fix mismatch between license text and MODULE_LICENSE + - crypto: tcrypt - fix S/G table for test_aead_speed() + - Linux 4.15.3 + + * bnx2x_attn_int_deasserted3:4323 MC assert! (LP: #1715519) // + CVE-2018-1000026 + - net: create skb_gso_validate_mac_len() + - bnx2x: disable GSO where gso_size is too big for hardware + + * ethtool -p fails to light NIC LED on HiSilicon D05 systems (LP: #1748567) + - net: hns: add ACPI mode support for ethtool -p + + * CVE-2017-5715 (Spectre v2 Intel) + - [Packaging] retpoline files must be sorted + - [Packaging] pull in retpoline files + + * [Feature] PXE boot with Intel Omni-Path (LP: #1712031) + - d-i: Add hfi1 to nic-modules + + * CVE-2017-5715 (Spectre v2 retpoline) + - [Packaging] retpoline -- add call site validation + - [Config] disable retpoline checks for first upload + + * Do not duplicate changelog entries assigned to more than one bug or CVE + (LP: #1743383) + - [Packaging] git-ubuntu-log -- handle multiple bugs/cves better + + -- Seth Forshee Tue, 13 Feb 2018 11:33:58 -0600 + +linux (4.15.0-9.10) bionic; urgency=medium + + * linux: 4.15.0-9.10 -proposed tracker (LP: #1748244) + + * Miscellaneous Ubuntu changes + - [Debian] tests -- remove gcc-multilib dependency for arm64 + + -- Seth Forshee Thu, 08 Feb 2018 11:25:04 -0600 + +linux (4.15.0-8.9) bionic; urgency=medium + + * linux: 4.15.0-8.9 -proposed tracker (LP: #1748075) + + * Bionic update to v4.15.2 stable release (LP: #1748072) + - KVM: x86: Make indirect calls in emulator speculation safe + - KVM: VMX: Make indirect call speculation safe + - module/retpoline: Warn about missing retpoline in module + - x86/cpufeatures: Add CPUID_7_EDX CPUID leaf + - x86/cpufeatures: Add Intel feature bits for Speculation Control + - x86/cpufeatures: Add AMD feature bits for Speculation Control + - x86/msr: Add definitions for new speculation control MSRs + - x86/pti: Do not enable PTI on CPUs which are not vulnerable to Meltdown + - x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 microcodes + - x86/speculation: Add basic IBPB (Indirect Branch Prediction Barrier) support + - x86/alternative: Print unadorned pointers + - x86/nospec: Fix header guards names + - x86/bugs: Drop one "mitigation" from dmesg + - x86/cpu/bugs: Make retpoline module warning conditional + - x86/cpufeatures: Clean up Spectre v2 related CPUID flags + - x86/retpoline: Simplify vmexit_fill_RSB() + - x86/speculation: Simplify indirect_branch_prediction_barrier() + - auxdisplay: img-ascii-lcd: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - iio: adc/accel: Fix up module licenses + - pinctrl: pxa: pxa2xx: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - ASoC: pcm512x: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - KVM: nVMX: Eliminate vmcs02 pool + - KVM: VMX: introduce alloc_loaded_vmcs + - objtool: Improve retpoline alternative handling + - objtool: Add support for alternatives at the end of a section + - objtool: Warn on stripped section symbol + - x86/mm: Fix overlap of i386 CPU_ENTRY_AREA with FIX_BTMAP + - x86/spectre: Check CONFIG_RETPOLINE in command line parser + - x86/entry/64: Remove the SYSCALL64 fast path + - x86/entry/64: Push extra regs right away + - x86/asm: Move 'status' from thread_struct to thread_info + - Documentation: Document array_index_nospec + - array_index_nospec: Sanitize speculative array de-references + - x86: Implement array_index_mask_nospec + - x86: Introduce barrier_nospec + - x86: Introduce __uaccess_begin_nospec() and uaccess_try_nospec + - x86/usercopy: Replace open coded stac/clac with __uaccess_{begin, end} + - x86/uaccess: Use __uaccess_begin_nospec() and uaccess_try_nospec + - x86/get_user: Use pointer masking to limit speculation + - x86/syscall: Sanitize syscall table de-references under speculation + - vfs, fdtable: Prevent bounds-check bypass via speculative execution + - nl80211: Sanitize array index in parse_txq_params + - x86/spectre: Report get_user mitigation for spectre_v1 + - x86/spectre: Fix spelling mistake: "vunerable"-> "vulnerable" + - x86/cpuid: Fix up "virtual" IBRS/IBPB/STIBP feature bits on Intel + - x86/speculation: Use Indirect Branch Prediction Barrier in context switch + - x86/paravirt: Remove 'noreplace-paravirt' cmdline option + - KVM: VMX: make MSR bitmaps per-VCPU + - x86/kvm: Update spectre-v1 mitigation + - x86/retpoline: Avoid retpolines for built-in __init functions + - x86/spectre: Simplify spectre_v2 command line parsing + - x86/pti: Mark constant arrays as __initconst + - x86/speculation: Fix typo IBRS_ATT, which should be IBRS_ALL + - KVM/x86: Update the reverse_cpuid list to include CPUID_7_EDX + - KVM/x86: Add IBPB support + - KVM/VMX: Emulate MSR_IA32_ARCH_CAPABILITIES + - KVM/VMX: Allow direct access to MSR_IA32_SPEC_CTRL + - KVM/SVM: Allow direct access to MSR_IA32_SPEC_CTRL + - serial: core: mark port as initialized after successful IRQ change + - fpga: region: release of_parse_phandle nodes after use + - Linux 4.15.2 + + * Add support for the NIC on SynQuacer E-Series boards (LP: #1747792) + - net: phy: core: remove now uneeded disabling of interrupts + - [Config] CONFIG_NET_VENDOR_SOCIONEXT=y & CONFIG_SNI_NETSEC=m + - net: socionext: Add Synquacer NetSec driver + - net: socionext: include linux/io.h to fix build + - net: socionext: Fix error return code in netsec_netdev_open() + + * [Artful/Bionic] [Config] enable EDAC_GHES for ARM64 (LP: #1747746) + - [Config] CONFIG_EDAC_GHES=y + + * support thunderx2 vendor pmu events (LP: #1747523) + - perf pmu: Pass pmu as a parameter to get_cpuid_str() + - perf tools arm64: Add support for get_cpuid_str function. + - perf pmu: Add helper function is_pmu_core to detect PMU CORE devices + - perf vendor events arm64: Add ThunderX2 implementation defined pmu core + events + - perf pmu: Add check for valid cpuid in perf_pmu__find_map() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Miscellaneous Ubuntu changes + - [Config] Fix CONFIG_PROFILE_ALL_BRANCHES annotations + + -- Seth Forshee Wed, 07 Feb 2018 21:13:27 -0600 + +linux (4.15.0-7.8) bionic; urgency=medium + + * Bionic update to v4.15.1 stable release (LP: #1747169) + - Bluetooth: hci_serdev: Init hci_uart proto_lock to avoid oops + - tools/gpio: Fix build error with musl libc + - gpio: stmpe: i2c transfer are forbiden in atomic context + - gpio: Fix kernel stack leak to userspace + - ALSA: hda - Reduce the suspend time consumption for ALC256 + - crypto: ecdh - fix typo in KPP dependency of CRYPTO_ECDH + - crypto: aesni - handle zero length dst buffer + - crypto: aesni - fix typo in generic_gcmaes_decrypt + - crypto: aesni - add wrapper for generic gcm(aes) + - crypto: aesni - Fix out-of-bounds access of the data buffer in generic-gcm- + aesni + - crypto: aesni - Fix out-of-bounds access of the AAD buffer in generic-gcm- + aesni + - crypto: inside-secure - fix hash when length is a multiple of a block + - crypto: inside-secure - avoid unmapping DMA memory that was not mapped + - crypto: sha3-generic - fixes for alignment and big endian operation + - crypto: af_alg - whitelist mask and type + - HID: wacom: EKR: ensure devres groups at higher indexes are released + - HID: wacom: Fix reporting of touch toggle (WACOM_HID_WD_MUTE_DEVICE) events + - power: reset: zx-reboot: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: iop: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - gpio: ath79: add missing MODULE_DESCRIPTION/LICENSE + - mtd: nand: denali_pci: add missing MODULE_DESCRIPTION/AUTHOR/LICENSE + - igb: Free IRQs when device is hotplugged + - ima/policy: fix parsing of fsuuid + - scsi: aacraid: Fix udev inquiry race condition + - scsi: aacraid: Fix hang in kdump + - scsi: storvsc: missing error code in storvsc_probe() + - staging: lustre: separate a connection destroy from free struct kib_conn + - staging: ccree: NULLify backup_info when unused + - staging: ccree: fix fips event irq handling build + - tty: fix data race between tty_init_dev and flush of buf + - usb: option: Add support for FS040U modem + - USB: serial: pl2303: new device id for Chilitag + - USB: cdc-acm: Do not log urb submission errors on disconnect + - CDC-ACM: apply quirk for card reader + - USB: serial: io_edgeport: fix possible sleep-in-atomic + - usbip: prevent bind loops on devices attached to vhci_hcd + - usbip: list: don't list devices attached to vhci_hcd + - USB: serial: simple: add Motorola Tetra driver + - usb: f_fs: Prevent gadget unbind if it is already unbound + - usb: uas: unconditionally bring back host after reset + - usb/gadget: Fix "high bandwidth" check in usb_gadget_ep_match_desc() + - ANDROID: binder: remove waitqueue when thread exits. + - android: binder: use VM_ALLOC to get vm area + - mei: me: allow runtime pm for platform with D0i3 + - serial: 8250_of: fix return code when probe function fails to get reset + - serial: 8250_uniphier: fix error return code in uniphier_uart_probe() + - serial: 8250_dw: Revert "Improve clock rate setting" + - serial: imx: Only wakeup via RTSDEN bit if the system has RTS/CTS + - spi: imx: do not access registers while clocks disabled + - iio: adc: stm32: fix scan of multiple channels with DMA + - iio: chemical: ccs811: Fix output of IIO_CONCENTRATION channels + - test_firmware: fix missing unlock on error in config_num_requests_store() + - Input: synaptics-rmi4 - unmask F03 interrupts when port is opened + - Input: synaptics-rmi4 - do not delete interrupt memory too early + - x86/efi: Clarify that reset attack mitigation needs appropriate userspace + - Linux 4.15.1 + + * Dell XPS 13 9360 bluetooth (Atheros) won't connect after resume + (LP: #1744712) + - Revert "Bluetooth: btusb: fix QCA Rome suspend/resume" + - Bluetooth: btusb: Restore QCA Rome suspend/resume fix with a "rewritten" + version + + * apparmor profile load in stacked policy container fails (LP: #1746463) + - SAUCE: apparmor: fix display of .ns_name for containers + + -- Seth Forshee Sun, 04 Feb 2018 11:56:32 +0100 + +linux (4.15.0-6.7) bionic; urgency=low + + * upload urgency should be medium by default (LP: #1745338) + - [Packaging] update urgency to medium by default + + * Shutdown hang on 16.04 with iscsi targets (LP: #1569925) + - scsi: libiscsi: Allow sd_shutdown on bad transport + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.5-1ubuntu1, zfs to 0.7.5-1ubuntu1 + - Revert "UBUNTU: SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM" + - Revert "UBUNTU: SAUCE: mm: disable vma based swap readahead by default" + + [ Upstream Kernel Changes ] + + * Rebase to v4.15 + + -- Seth Forshee Mon, 29 Jan 2018 08:47:07 -0600 + +linux (4.15.0-5.6) bionic; urgency=low + + * $(LOCAL_ENV_CC) and $(LOCAL_ENV_DISTCC_HOSTS) should be properly quoted + (LP: #1744077) + - [Debian] pass LOCAL_ENV_CC and LOCAL_ENV_DISTCC_HOSTS properly + + * Missing install-time driver for QLogic QED 25/40/100Gb Ethernet NIC + (LP: #1743638) + - [d-i] Add qede to nic-modules udeb + + * boot failure on AMD Raven + WesternXT (LP: #1742759) + - SAUCE: drm/amdgpu: add atpx quirk handling (v2) + + * Unable to handle kernel NULL pointer dereference at isci_task_abort_task + (LP: #1726519) + - SAUCE: Revert "scsi: libsas: allow async aborts" + + * Update Ubuntu-4.15.0 config to support Intel Atom devices (LP: #1739939) + - [Config] CONFIG_SERIAL_DEV_BUS=y, CONFIG_SERIAL_DEV_CTRL_TTYPORT=y + + * Miscellaneous Ubuntu changes + - Rebase to v4.15-rc7 + - [Config] CONFIG_CPU_ISOLATION=y + - [Config] Update annotations following config review + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - ubuntu: vbox -- update to 5.2.6-dfsg-1 + - ubuntu: vbox: build fixes for 4.15 + - ubuntu: vbox -- update to 5.2.6-dfsg-2 + - hio: updates for timer api changes in 4.15 + - enable hio build + - Rebase to v4.15-rc9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc9 + + -- Seth Forshee Mon, 22 Jan 2018 10:16:05 -0600 + +linux (4.15.0-4.5) bionic; urgency=low + + * [0cf3:e010] QCA6174A XR failed to pair with bt 4.0 device (LP: #1741166) + - SAUCE: Bluetooth: btusb: Add support for 0cf3:e010 + + * External HDMI monitor failed to show screen on Lenovo X1 series + (LP: #1738523) + - SAUCE: drm/i915: Disable writing of TMDS_OE on Lenovo ThinkPad X1 series + + * Miscellaneous Ubuntu changes + - [Debian] autoreconstruct - add resoration of execute permissions + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Wed, 10 Jan 2018 10:24:22 -0600 + +linux (4.15.0-3.4) bionic; urgency=low + + * ubuntu/xr-usb-serial didn't get built in zesty and artful (LP: #1733281) + - SAUCE: make sure ubuntu/xr-usb-serial builds for x86 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc6 + + -- Seth Forshee Wed, 03 Jan 2018 20:20:43 -0600 + +linux (4.15.0-2.3) bionic; urgency=low + + * nvidia-graphics-drivers-384 384.90-0ubuntu6 ADT test failure with linux + 4.15.0-1.2 (LP: #1737752) + - x86/mm: Unbreak modules that use the DMA API + + * Ubuntu 17.10 corrupting BIOS - many LENOVO laptops models (LP: #1734147) + - [Config] CONFIG_SPI_INTEL_SPI_*=n + + * power: commonise configs IBMVETH/IBMVSCSI and ensure both are in linux-image + and udebs (LP: #1521712) + - [Config] Include ibmvnic in nic-modules + + * Enable arm64 emulation of removed ARMv7 instructions (LP: #1545542) + - [Config] Enable support for emulation of deprecated ARMv8 instructions + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl with 4.15 compat fix (LP:#1737761) + - Enable zfs build + - [Debian] add icp to zfs-modules.ignore + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc4 + + -- Seth Forshee Mon, 18 Dec 2017 09:27:13 -0600 + +linux (4.15.0-1.2) bionic; urgency=low + + * Disabling zfs does not always disable module checks for the zfs modules + (LP: #1737176) + - [Packaging] disable zfs module checks when zfs is disabled + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_UNWINDER_FRAME_POINTER=y for amd64 + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc3 + + -- Seth Forshee Sun, 10 Dec 2017 22:07:19 -0600 + +linux (4.15.0-0.1) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.2.2-dfsg-2 + - ubuntu: vbox: build fixes for 4.15 + - disable hio build + - [Config] Update kernel lockdown options to fix build errors + - Disable zfs build + - SAUCE: Import aufs driver + - [Config] Enable AUFS config options + + [ Upstream Kernel Changes ] + + * Rebase to v4.15-rc2 + + -- Seth Forshee Fri, 08 Dec 2017 13:55:42 -0600 + +linux (4.14.0-11.13) bionic; urgency=low + + * linux: 4.14.0-11.13 -proposed tracker (LP: #1736168) + + * CVE-2017-1000405 + - mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() + + * linux 4.14.0-7.9 ADT test failure with linux 4.14.0-7.9 (LP: #1732463) + - SAUCE: mm: disable vma based swap readahead by default + - SAUCE: mm: fix memory hotplug in ZONE_HIGHMEM + + * Bionic update to v4.14.3 stable release (LP: #1735843) + - s390: fix transactional execution control register handling + - s390/noexec: execute kexec datamover without DAT + - s390/runtime instrumention: fix possible memory corruption + - s390/guarded storage: fix possible memory corruption + - s390/disassembler: add missing end marker for e7 table + - s390/disassembler: increase show_code buffer size + - ACPI / PM: Fix acpi_pm_notifier_lock vs flush_workqueue() deadlock + - ACPI / EC: Fix regression related to triggering source of EC event handling + - cpufreq: schedutil: Reset cached_raw_freq when not in sync with next_freq + - serdev: fix registration of second slave + - sched: Make resched_cpu() unconditional + - lib/mpi: call cond_resched() from mpi_powm() loop + - x86/boot: Fix boot failure when SMP MP-table is based at 0 + - x86/decoder: Add new TEST instruction pattern + - x86/entry/64: Fix entry_SYSCALL_64_after_hwframe() IRQ tracing + - x86/entry/64: Add missing irqflags tracing to native_load_gs_index() + - perf/x86/intel: Hide TSX events when RTM is not supported + - arm64: Implement arch-specific pte_access_permitted() + - ARM: 8722/1: mm: make STRICT_KERNEL_RWX effective for LPAE + - ARM: 8721/1: mm: dump: check hardware RO bit for LPAE + - uapi: fix linux/tls.h userspace compilation error + - uapi: fix linux/rxrpc.h userspace compilation errors + - MIPS: cmpxchg64() and HAVE_VIRT_CPU_ACCOUNTING_GEN don't work for 32-bit SMP + - MIPS: ralink: Fix MT7628 pinmux + - MIPS: ralink: Fix typo in mt7628 pinmux function + - net: mvneta: fix handling of the Tx descriptor counter + - nbd: wait uninterruptible for the dead timeout + - nbd: don't start req until after the dead connection logic + - PM / OPP: Add missing of_node_put(np) + - PCI/ASPM: Account for downstream device's Port Common_Mode_Restore_Time + - PCI/ASPM: Use correct capability pointer to program LTR_L1.2_THRESHOLD + - PCI: hv: Use effective affinity mask + - PCI: Set Cavium ACS capability quirk flags to assert RR/CR/SV/UF + - PCI: Apply Cavium ThunderX ACS quirk to more Root Ports + - ALSA: hda: Add Raven PCI ID + - dm integrity: allow unaligned bv_offset + - dm cache: fix race condition in the writeback mode overwrite_bio + optimisation + - dm crypt: allow unaligned bv_offset + - dm zoned: ignore last smaller runt zone + - dm mpath: remove annoying message of 'blk_get_request() returned -11' + - dm bufio: fix integer overflow when limiting maximum cache size + - ovl: Put upperdentry if ovl_check_origin() fails + - dm: allocate struct mapped_device with kvzalloc + - sched/rt: Simplify the IPI based RT balancing logic + - MIPS: pci: Remove KERN_WARN instance inside the mt7620 driver + - dm: fix race between dm_get_from_kobject() and __dm_destroy() + - dm: discard support requires all targets in a table support discards + - MIPS: Fix odd fp register warnings with MIPS64r2 + - MIPS: Fix MIPS64 FP save/restore on 32-bit kernels + - MIPS: dts: remove bogus bcm96358nb4ser.dtb from dtb-y entry + - MIPS: Fix an n32 core file generation regset support regression + - MIPS: BCM47XX: Fix LED inversion for WRT54GSv1 + - MIPS: math-emu: Fix final emulation phase for certain instructions + - rt2x00usb: mark device removed when get ENOENT usb error + - mm/z3fold.c: use kref to prevent page free/compact race + - autofs: don't fail mount for transient error + - nilfs2: fix race condition that causes file system corruption + - fscrypt: lock mutex before checking for bounce page pool + - eCryptfs: use after free in ecryptfs_release_messaging() + - libceph: don't WARN() if user tries to add invalid key + - bcache: check ca->alloc_thread initialized before wake up it + - fs: guard_bio_eod() needs to consider partitions + - fanotify: fix fsnotify_prepare_user_wait() failure + - isofs: fix timestamps beyond 2027 + - btrfs: change how we decide to commit transactions during flushing + - f2fs: expose some sectors to user in inline data or dentry case + - NFS: Fix typo in nomigration mount option + - NFS: Revert "NFS: Move the flock open mode check into nfs_flock()" + - nfs: Fix ugly referral attributes + - NFS: Avoid RCU usage in tracepoints + - NFS: revalidate "." etc correctly on "open". + - nfsd: deal with revoked delegations appropriately + - rtlwifi: rtl8192ee: Fix memory leak when loading firmware + - rtlwifi: fix uninitialized rtlhal->last_suspend_sec time + - iwlwifi: fix firmware names for 9000 and A000 series hw + - md: fix deadlock error in recent patch. + - md: don't check MD_SB_CHANGE_CLEAN in md_allow_write + - Bluetooth: btqcomsmd: Add support for BD address setup + - md/bitmap: revert a patch + - fsnotify: clean up fsnotify_prepare/finish_user_wait() + - fsnotify: pin both inode and vfsmount mark + - fsnotify: fix pinning group in fsnotify_prepare_user_wait() + - ata: fixes kernel crash while tracing ata_eh_link_autopsy event + - ext4: fix interaction between i_size, fallocate, and delalloc after a crash + - ext4: prevent data corruption with inline data + DAX + - ext4: prevent data corruption with journaling + DAX + - ALSA: pcm: update tstamp only if audio_tstamp changed + - ALSA: usb-audio: Add sanity checks to FE parser + - ALSA: usb-audio: Fix potential out-of-bound access at parsing SU + - ALSA: usb-audio: Add sanity checks in v2 clock parsers + - ALSA: timer: Remove kernel warning at compat ioctl error paths + - ALSA: hda/realtek - Fix ALC275 no sound issue + - ALSA: hda: Fix too short HDMI/DP chmap reporting + - ALSA: hda - Fix yet remaining issue with vmaster 0dB initialization + - ALSA: hda/realtek - Fix ALC700 family no sound issue + - ASoC: sun8i-codec: Invert Master / Slave condition + - ASoC: sun8i-codec: Fix left and right channels inversion + - ASoC: sun8i-codec: Set the BCLK divider + - mfd: lpc_ich: Avoton/Rangeley uses SPI_BYT method + - fix a page leak in vhost_scsi_iov_to_sgl() error recovery + - 9p: Fix missing commas in mount options + - fs/9p: Compare qid.path in v9fs_test_inode + - net/9p: Switch to wait_event_killable() + - scsi: qla2xxx: Suppress a kernel complaint in qla_init_base_qpair() + - scsi: sd_zbc: Fix sd_zbc_read_zoned_characteristics() + - scsi: lpfc: fix pci hot plug crash in timer management routines + - scsi: lpfc: fix pci hot plug crash in list_add call + - scsi: lpfc: Fix crash receiving ELS while detaching driver + - scsi: lpfc: Fix FCP hba_wqidx assignment + - scsi: lpfc: Fix oops if nvmet_fc_register_targetport fails + - iscsi-target: Make TASK_REASSIGN use proper se_cmd->cmd_kref + - iscsi-target: Fix non-immediate TMR reference leak + - target: fix null pointer regression in core_tmr_drain_tmr_list + - target: fix buffer offset in core_scsi3_pri_read_full_status + - target: Fix QUEUE_FULL + SCSI task attribute handling + - target: Fix caw_sem leak in transport_generic_request_failure + - target: Fix quiese during transport_write_pending_qf endless loop + - target: Avoid early CMD_T_PRE_EXECUTE failures during ABORT_TASK + - mtd: Avoid probe failures when mtd->dbg.dfs_dir is invalid + - mtd: nand: Export nand_reset() symbol + - mtd: nand: atmel: Actually use the PM ops + - mtd: nand: omap2: Fix subpage write + - mtd: nand: Fix writing mtdoops to nand flash. + - mtd: nand: mtk: fix infinite ECC decode IRQ issue + - mailbox: bcm-flexrm-mailbox: Fix FlexRM ring flush sequence + - p54: don't unregister leds when they are not initialized + - block: Fix a race between blk_cleanup_queue() and timeout handling + - raid1: prevent freeze_array/wait_all_barriers deadlock + - genirq: Track whether the trigger type has been set + - irqchip/gic-v3: Fix ppi-partitions lookup + - lockd: double unregister of inetaddr notifiers + - KVM: PPC: Book3S HV: Don't call real-mode XICS hypercall handlers if not + enabled + - KVM: nVMX: set IDTR and GDTR limits when loading L1 host state + - KVM: SVM: obey guest PAT + - kvm: vmx: Reinstate support for CPUs without virtual NMI + - dax: fix PMD faults on zero-length files + - dax: fix general protection fault in dax_alloc_inode + - SUNRPC: Fix tracepoint storage issues with svc_recv and svc_rqst_status + - clk: ti: dra7-atl-clock: fix child-node lookups + - libnvdimm, dimm: clear 'locked' status on successful DIMM enable + - libnvdimm, pfn: make 'resource' attribute only readable by root + - libnvdimm, namespace: fix label initialization to use valid seq numbers + - libnvdimm, region : make 'resource' attribute only readable by root + - libnvdimm, namespace: make 'resource' attribute only readable by root + - svcrdma: Preserve CB send buffer across retransmits + - IB/srpt: Do not accept invalid initiator port names + - IB/cm: Fix memory corruption in handling CM request + - IB/hfi1: Fix incorrect available receive user context count + - IB/srp: Avoid that a cable pull can trigger a kernel crash + - IB/core: Avoid crash on pkey enforcement failed in received MADs + - IB/core: Only maintain real QPs in the security lists + - NFC: fix device-allocation error return + - spi-nor: intel-spi: Fix broken software sequencing codes + - i40e: Use smp_rmb rather than read_barrier_depends + - igb: Use smp_rmb rather than read_barrier_depends + - igbvf: Use smp_rmb rather than read_barrier_depends + - ixgbevf: Use smp_rmb rather than read_barrier_depends + - i40evf: Use smp_rmb rather than read_barrier_depends + - fm10k: Use smp_rmb rather than read_barrier_depends + - ixgbe: Fix skb list corruption on Power systems + - parisc: Fix validity check of pointer size argument in new CAS + implementation + - powerpc: Fix boot on BOOK3S_32 with CONFIG_STRICT_KERNEL_RWX + - powerpc/mm/radix: Fix crashes on Power9 DD1 with radix MMU and STRICT_RWX + - powerpc/perf/imc: Use cpu_to_node() not topology_physical_package_id() + - powerpc/signal: Properly handle return value from uprobe_deny_signal() + - powerpc/64s: Fix masking of SRR1 bits on instruction fault + - powerpc/64s/radix: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix 512T hint detection to use >= 128T + - powerpc/64s/hash: Fix 128TB-512TB virtual address boundary case allocation + - powerpc/64s/hash: Fix fork() with 512TB process address space + - powerpc/64s/hash: Allow MAP_FIXED allocations to cross 128TB boundary + - media: Don't do DMA on stack for firmware upload in the AS102 driver + - media: rc: check for integer overflow + - media: rc: nec decoder should not send both repeat and keycode + - cx231xx-cards: fix NULL-deref on missing association descriptor + - media: v4l2-ctrl: Fix flags field on Control events + - media: venus: fix wrong size on dma_free + - media: venus: venc: fix bytesused v4l2_plane field + - media: venus: reimplement decoder stop command + - ARM64: dts: meson-gxl: Add alternate ARM Trusted Firmware reserved memory + zone + - iwlwifi: fix wrong struct for a000 device + - iwlwifi: add a new a000 device + - iwlwifi: pcie: sort IDs for the 9000 series for easier comparisons + - iwlwifi: add new cards for a000 series + - iwlwifi: add new cards for 8265 series + - iwlwifi: add new cards for 8260 series + - iwlwifi: fix PCI IDs and configuration mapping for 9000 series + - iwlwifi: mvm: support version 7 of the SCAN_REQ_UMAC FW command + - e1000e: Fix error path in link detection + - e1000e: Fix return value test + - e1000e: Separate signaling for link check/link up + - e1000e: Avoid receiver overrun interrupt bursts + - e1000e: fix buffer overrun while the I219 is processing DMA transactions + - Linux 4.14.3 + + * Miscellaneous Ubuntu changes + - SAUCE: s390/topology: don't inline cpu_to_node + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 04 Dec 2017 09:08:07 -0600 + +linux (4.14.0-10.12) bionic; urgency=low + + * linux: 4.14.0-10.12 -proposed tracker (LP: #1734901) + + * Miscellaneous Ubuntu changes + - SAUCE: Enable the ACPI kernel debugger and acpidbg tool + - [Packaging] Include arch/arm64/kernel/ftrace-mod.o in headers package + + -- Seth Forshee Tue, 28 Nov 2017 08:46:49 -0600 + +linux (4.14.0-9.11) bionic; urgency=low + + * linux: 4.14.0-9.11 -proposed tracker (LP: #1734728) + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to + 0.7.3-1ubuntu1" + + -- Seth Forshee Mon, 27 Nov 2017 12:44:48 -0600 + +linux (4.14.0-8.10) bionic; urgency=low + + * linux: 4.14.0-8.10 -proposed tracker (LP: #1734695) + + * Bionic update to v4.14.2 stable release (LP: #1734694) + - bio: ensure __bio_clone_fast copies bi_partno + - af_netlink: ensure that NLMSG_DONE never fails in dumps + - vxlan: fix the issue that neigh proxy blocks all icmpv6 packets + - net: cdc_ncm: GetNtbFormat endian fix + - fealnx: Fix building error on MIPS + - net/sctp: Always set scope_id in sctp_inet6_skb_msgname + - ima: do not update security.ima if appraisal status is not INTEGRITY_PASS + - serial: omap: Fix EFR write on RTS deassertion + - serial: 8250_fintek: Fix finding base_port with activated SuperIO + - tpm-dev-common: Reject too short writes + - rcu: Fix up pending cbs check in rcu_prepare_for_idle + - mm/pagewalk.c: report holes in hugetlb ranges + - ocfs2: fix cluster hang after a node dies + - ocfs2: should wait dio before inode lock in ocfs2_setattr() + - ipmi: fix unsigned long underflow + - mm/page_alloc.c: broken deferred calculation + - mm/page_ext.c: check if page_ext is not prepared + - coda: fix 'kernel memory exposure attempt' in fsync + - ipmi: Prefer ACPI system interfaces over SMBIOS ones + - Linux 4.14.2 + + * Bionic update to v4.14.1 stable release (LP: #1734693) + - EDAC, sb_edac: Don't create a second memory controller if HA1 is not present + - dmaengine: dmatest: warn user when dma test times out + - media: imon: Fix null-ptr-deref in imon_probe + - media: dib0700: fix invalid dvb_detach argument + - crypto: dh - Fix double free of ctx->p + - crypto: dh - Don't permit 'p' to be 0 + - crypto: dh - Don't permit 'key' or 'g' size longer than 'p' + - crypto: brcm - Explicity ACK mailbox message + - USB: early: Use new USB product ID and strings for DbC device + - USB: usbfs: compute urb->actual_length for isochronous + - USB: Add delay-init quirk for Corsair K70 LUX keyboards + - usb: gadget: f_fs: Fix use-after-free in ffs_free_inst + - USB: serial: metro-usb: stop I/O after failed open + - USB: serial: Change DbC debug device binding ID + - USB: serial: qcserial: add pid/vid for Sierra Wireless EM7355 fw update + - USB: serial: garmin_gps: fix I/O after failed probe and remove + - USB: serial: garmin_gps: fix memory leak on probe errors + - selftests/x86/protection_keys: Fix syscall NR redefinition warnings + - x86/MCE/AMD: Always give panic severity for UC errors in kernel context + - platform/x86: peaq-wmi: Add DMI check before binding to the WMI interface + - platform/x86: peaq_wmi: Fix missing terminating entry for peaq_dmi_table + - HID: cp2112: add HIDRAW dependency + - HID: wacom: generic: Recognize WACOM_HID_WD_PEN as a type of pen collection + - rpmsg: glink: Add missing MODULE_LICENSE + - staging: wilc1000: Fix bssid buffer offset in Txq + - staging: sm750fb: Fix parameter mistake in poke32 + - staging: ccree: fix 64 bit scatter/gather DMA ops + - staging: greybus: spilib: fix use-after-free after deregistration + - staging: rtl8188eu: Revert 4 commits breaking ARP + - spi: fix use-after-free at controller deregistration + - sparc32: Add cmpxchg64(). + - sparc64: mmu_context: Add missing include files + - sparc64: Fix page table walk for PUD hugepages + - Linux 4.14.1 + + * Set PANIC_TIMEOUT=10 on Power Systems (LP: #1730660) + - [Config]: Set PANIC_TIMEOUT=10 on ppc64el + + * enable CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH easily confuse users + (LP: #1732627) + - [Config] CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH=n + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.7.3-1ubuntu1, zfs to 0.7.3-1ubuntu1 + + -- Seth Forshee Mon, 27 Nov 2017 07:43:44 -0600 + +linux (4.14.0-7.9) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: add base infastructure for socket mediation + - SAUCE: apparmor: af_unix mediation + - SAUCE: LSM stacking: procfs: add smack subdir to attrs + - SAUCE: LSM stacking: LSM: manage credential security blobs + - SAUCE: LSM stacking: LSM: Manage file security blobs + - SAUCE: LSM stacking: LSM: manage task security blobs + - SAUCE: LSM stacking: LSM: Infrastructure management of the remaining blobs + - SAUCE: LSM stacking: LSM: general but not extreme module stacking + - SAUCE: LSM stacking: LSM: Complete task_alloc hook + - SAUCE: LSM stacking: fixup procsfs: add smack subdir to attrs + - SAUCE: LSM stacking: fixup initialize task->security + - SAUCE: LSM stacking: fixup: alloc_task_ctx is dead code + - SAUCE: LSM stacking: add support for stacking getpeersec_stream + - SAUCE: LSM stacking: add stacking support to apparmor network hooks + - SAUCE: LSM stacking: fixup apparmor stacking enablement + - SAUCE: LSM stacking: fixup stacking kconfig + - SAUCE: LSM stacking: allow selecting multiple LSMs using kernel boot params + - SAUCE: LSM stacking: provide prctl interface for setting context + - SAUCE: LSM stacking: inherit current display LSM + - SAUCE: LSM stacking: keep an index for each registered LSM + - SAUCE: LSM stacking: verify display LSM + - SAUCE: LSM stacking: provide a way to specify the default display lsm + - SAUCE: LSM stacking: make sure LSM blob align on 64 bit boundaries + - SAUCE: LSM stacking: add /proc//attr/display_lsm + - SAUCE: LSM stacking: add Kconfig to set default display LSM + - SAUCE: LSM stacking: add configs for LSM stacking + - SAUCE: LSM stacking: check for invalid zero sized writes + - [Config] Run updateconfigs after merging LSM stacking + - [Config] CONFIG_AMD_MEM_ENCRYPT=y + + [ Upstream Kernel Changes ] + + * Rebase to v4.14 + + -- Seth Forshee Mon, 13 Nov 2017 08:12:08 -0600 + +linux (4.14.0-6.8) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - SAUCE: add workarounds to enable ZFS for 4.14 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc8 + + -- Seth Forshee Mon, 06 Nov 2017 11:39:00 -0600 + +linux (4.14.0-5.7) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Fix invocation of dh_prep for dbgsym packages + + -- Seth Forshee Tue, 31 Oct 2017 07:07:23 -0500 + +linux (4.14.0-4.5) bionic; urgency=low + + * Miscellaneous Ubuntu changes + - [Packaging] virtualbox -- reduce in kernel module versions + - vbox-update: Fix up KERN_DIR definitions + - ubuntu: vbox -- update to 5.2.0-dfsg-2 + - [Config] CONFIG_AMD_MEM_ENCRYPT=n + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc7 + + -- Seth Forshee Mon, 30 Oct 2017 13:29:20 -0500 + +linux (4.14.0-3.4) artful; urgency=low + + * Touchpad and TrackPoint Dose Not Work on Lenovo X1C6 and X280 (LP: #1723986) + - SAUCE: Input: synaptics-rmi4 - RMI4 can also use SMBUS version 3 + - SAUCE: Input: synaptics - Lenovo X1 Carbon 5 should use SMBUS/RMI + - SAUCE: Input: synaptics - add Intertouch support on X1 Carbon 6th and X280 + + * powerpc/64s: Add workaround for P9 vector CI load issuenext (LP: #1721070) + - powerpc/64s: Add workaround for P9 vector CI load issue + + * Miscellaneous Ubuntu changes + - SAUCE: staging: vboxvideo: Fix reporting invalid suggested-offset-properties + - [Config] CONFIG_DRM_VBOXVIDEO=m + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Config] Reorder annotations file after enabling aufs + - vbox-update: Disable imported vboxvideo module + - ubuntu: vbox -- update to 5.1.30-dfsg-1 + - Enable vbox + - hio: Use correct sizes when initializing ssd_index_bits* arrays + - hio: Update io stat accounting for 4.14 + - Enable hio + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc5 + * Rebase to v4.14-rc6 + + -- Seth Forshee Mon, 23 Oct 2017 13:53:52 -0500 + +linux (4.14.0-2.3) artful; urgency=low + + * [Bug] USB controller failed to respond on Denverton after loading + intel_th_pci module (LP: #1715833) + - SAUCE: PCI: Disable broken RTIT_BAR of Intel TH + + * CONFIG_DEBUG_FS is not enabled by "make zfcpdump_defconfig" with Ubuntu + 17.10 (kernel 4.13) (LP: #1719290) + - SAUCE: s390: update zfcpdump_defconfig + + * Add installer support for Broadcom BCM573xx network drivers. (LP: #1720466) + - d-i: Add bnxt_en to nic-modules. + + * Miscellaneous Ubuntu changes + - [Config] Update annotations for 4.14-rc2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc3 + * Rebase to v4.14-rc4 + + -- Seth Forshee Wed, 11 Oct 2017 16:04:27 -0500 + +linux (4.14.0-1.2) artful; urgency=low + + * [Bug] USB 3.1 Gen2 works as 5Gbps (LP: #1720045) + - xhci: set missing SuperSpeedPlus Link Protocol bit in roothub descriptor + + * Please make linux-libc-dev Provide: aufs-dev (LP: #1716091) + - [Packaging] Add aufs-dev to the Provides: for linux-libc-dev + + * Upgrade to 4.13.0-11.12 in artful amd64 VM breaks display on wayland + (LP: #1718679) + - [Config] CONFIG_DRM_VBOXVIDEO=n + + * ipmmu-vmsa driver breaks arm64 boots (LP: #1718734) + - [Config] Disable CONFIG_IPMMU_VMSA on arm64 + + * autopkgtest profile fails to build on armhf (LP: #1717920) + - [Packaging] autopkgtest -- disable d-i when dropping flavours + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_I2C_XLP9XX=m + - [Packaging] Use SRCPKGNAME rather than hard-coding the source package name + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc2 + + -- Seth Forshee Fri, 29 Sep 2017 09:09:11 -0400 + +linux (4.14.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable vbox build + - Disable hio build + - Disable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.14-rc1 + + -- Seth Forshee Tue, 19 Sep 2017 20:22:29 -0500 + +linux (4.13.0-11.12) artful; urgency=low + + * linux: 4.13.0-11.12 -proposed tracker (LP: #1716699) + + * kernel panic -not syncing: Fatal exception: panic_on_oops (LP: #1708399) + - s390/mm: fix local TLB flushing vs. detach of an mm address space + - s390/mm: fix race on mm->context.flush_mm + + * CVE-2017-1000251 + - Bluetooth: Properly check L2CAP config option output buffer length + + -- Seth Forshee Tue, 12 Sep 2017 10:18:38 -0500 + +linux (4.13.0-10.11) artful; urgency=low + + * linux: 4.13.0-10.11 -proposed tracker (LP: #1716287) + + * please add aufs-dkms to the Provides: for the kernel packages (LP: #1716093) + - [Packaging] Add aufs-dkms to the Provides: for kernel packages + + * Artful update to v4.13.1 stable release (LP: #1716284) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + - USB: serial: option: add support for D-Link DWM-157 C1 + - usb: Add device quirk for Logitech HD Pro Webcam C920-C + - usb:xhci:Fix regression when ATI chipsets detected + - USB: musb: fix external abort on suspend + - ANDROID: binder: add padding to binder_fd_array_object. + - ANDROID: binder: add hwbinder,vndbinder to BINDER_DEVICES. + - USB: core: Avoid race of async_completed() w/ usbdev_release() + - staging/rts5208: fix incorrect shift to extract upper nybble + - staging: ccree: save ciphertext for CTS IV + - staging: fsl-dpaa2/eth: fix off-by-one FD ctrl bitmaks + - iio: adc: ti-ads1015: fix incorrect data rate setting update + - iio: adc: ti-ads1015: fix scale information for ADS1115 + - iio: adc: ti-ads1015: enable conversion when CONFIG_PM is not set + - iio: adc: ti-ads1015: avoid getting stale result after runtime resume + - iio: adc: ti-ads1015: don't return invalid value from buffer setup callbacks + - iio: adc: ti-ads1015: add adequate wait time to get correct conversion + - driver core: bus: Fix a potential double free + - HID: wacom: Do not completely map WACOM_HID_WD_TOUCHRINGSTATUS usage + - binder: free memory on error + - crypto: caam/qi - fix compilation with CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y + - crypto: caam/qi - fix compilation with DEBUG enabled + - thunderbolt: Fix reset response_type + - fpga: altera-hps2fpga: fix multiple init of l3_remap_lock + - intel_th: pci: Add Cannon Lake PCH-H support + - intel_th: pci: Add Cannon Lake PCH-LP support + - ath10k: fix memory leak in rx ring buffer allocation + - drm/vgem: Pin our pages for dmabuf exports + - drm/ttm: Fix accounting error when fail to get pages for pool + - drm/dp/mst: Handle errors from drm_atomic_get_private_obj_state() correctly + - rtlwifi: rtl_pci_probe: Fix fail path of _rtl_pci_find_adapter + - Bluetooth: Add support of 13d3:3494 RTL8723BE device + - iwlwifi: pci: add new PCI ID for 7265D + - dlm: avoid double-free on error path in dlm_device_{register,unregister} + - mwifiex: correct channel stat buffer overflows + - MCB: add support for SC31 to mcb-lpc + - s390/mm: avoid empty zero pages for KVM guests to avoid postcopy hangs + - drm/nouveau/pci/msi: disable MSI on big-endian platforms by default + - drm/nouveau: Fix error handling in nv50_disp_atomic_commit + - workqueue: Fix flag collision + - ahci: don't use MSI for devices with the silly Intel NVMe remapping scheme + - cs5536: add support for IDE controller variant + - scsi: sg: protect against races between mmap() and SG_SET_RESERVED_SIZE + - scsi: sg: recheck MMAP_IO request length with lock held + - of/device: Prevent buffer overflow in of_device_modalias() + - rtlwifi: Fix memory leak when firmware request fails + - rtlwifi: Fix fallback firmware loading + - Linux 4.13.1 + + * Kernel has trouble recognizing Corsair Strafe RGB keyboard (LP: #1678477) + - usb: quirks: add delay init quirk for Corsair Strafe RGB keyboard + + * SRIOV: warning if unload VFs (LP: #1715073) + - PCI: Disable VF decoding before pcibios_sriov_disable() updates resources + + * [Patch] network-i40e:NVM bug fixes (cherrypick from 4.14) (LP: #1715578) + - i40e: avoid NVM acquire deadlock during NVM update + - i40e: point wb_desc at the nvm_wb_desc during i40e_read_nvm_aq + + * [P9,POwer NV] Perf PMU event : pm_br_2path and pm_ld_miss_l1 is counted + twice when perf stat is done (perf:) (LP: #1714571) + - perf vendor events powerpc: Remove duplicate events + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Include vmd in storage-core-modules udeb + + * 17.10 fails to boot on POWER9 DD2.0 with Deep stop states (LP: #1715064) + - powerpc/powernv: Save/Restore additional SPRs for stop4 cpuidle + - powerpc/powernv: Clear PECE1 in LPCR via stop-api only on Hotplug + - SAUCE: powerpc/powernv: Clear LPCR[PECE1] via stop-api only for deep state + offline + + * Miscellaneous Ubuntu changes + - SAUCE: selftests/seccomp: Support glibc 2.26 siginfo_t.h + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + + -- Seth Forshee Sun, 10 Sep 2017 17:48:59 -0500 + +linux (4.13.0-9.10) artful; urgency=low + + * linux: 4.13.0-9.10 -proposed tracker (LP: #1715145) + + * EDAC sbridge: Failed to register device with error -22. (LP: #1714112) + - [Config] CONFIG_EDAC_GHES=n + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-2 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13 + + -- Seth Forshee Tue, 05 Sep 2017 07:51:19 -0500 + +linux (4.13.0-8.9) artful; urgency=low + + * snapd 2.27.3+17.10 ADT test failure with linux 4.13.0-6.7 (LP: #1713103) + - SAUCE: apparmor: fix apparmorfs DAC access, permissions + + * enable ARCH_SUNXI (and friends) in arm64 kernel .config (LP: #1701137) + - [Config] Enable CONFIG_ARCH_SUNXI and related options for arm64 + + * [Bug] Harrisonville: pnd2_edac always fail to load on B1 stepping + Harrisonville SDP (LP: #1709257) + - EDAC, pnd2: Build in a minimal sideband driver for Apollo Lake + - EDAC, pnd2: Mask off the lower four bits of a BAR + - EDAC, pnd2: Conditionally unhide/hide the P2SB PCI device to read BAR + - EDAC, pnd2: Properly toggle hidden state for P2SB PCI device + - SAUCE: i2c: i801: Restore the presence state of P2SB PCI device after + reading BAR + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: Import aufs driver" + - SAUCE: Import aufs driver + - SAUCE: selftests/powerpc: Disable some ptrace selftests + - [Config] CONFIG_CRYPTO_DEV_NITROX_CNN55XX=n for s390x + - [Config] CONFIG_I2C_SLAVE=n for amd64, i386, ppc64el + - [Config] Disable CONFIG_MDIO_* options for s390x + - [Config] CONFIG_SCSI_MQ_DEFAULT=n for s390x + - [Config] Update annotations for 4.13 + + -- Seth Forshee Thu, 31 Aug 2017 14:27:09 -0500 + +linux (4.13.0-7.8) artful; urgency=low + + * linux 4.12.0-11.12 ADT test failure with linux 4.12.0-11.12 (LP: #1710904) + - SAUCE: selftests/powerpc: Use snprintf to construct DSCR sysfs interface + paths + + * Miscellaneous Ubuntu changes + - Revert "UBUNTU: SAUCE: seccomp: log actions even when audit is disabled" + + * Miscellaneous upstream changes + - seccomp: Provide matching filter for introspection + - seccomp: Sysctl to display available actions + - seccomp: Operation for checking if an action is available + - seccomp: Sysctl to configure actions that are allowed to be logged + - seccomp: Selftest for detection of filter flag support + - seccomp: Filter flag to log all actions except SECCOMP_RET_ALLOW + - seccomp: Action to log before allowing + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc7 + + -- Seth Forshee Mon, 28 Aug 2017 08:12:24 -0500 + +linux (4.13.0-6.7) artful; urgency=low + + * HID: multitouch: Support ALPS PTP Stick and Touchpad devices (LP: #1712481) + - SAUCE: HID: multitouch: Support ALPS PTP stick with pid 0x120A + + * sort ABI files with C.UTF-8 locale (LP: #1712345) + - [Packaging] sort ABI files with C.UTF-8 locale + + * igb: Support using Broadcom 54616 as PHY (LP: #1712024) + - SAUCE: igb: add support for using Broadcom 54616 as PHY + + * RPT related fixes missing in Ubuntu 16.04.3 (LP: #1709220) + - powerpc/mm/radix: Improve _tlbiel_pid to be usable for PWC flushes + - powerpc/mm/radix: Improve TLB/PWC flushes + - powerpc/mm/radix: Avoid flushing the PWC on every flush_tlb_range + + * Linux 4.12 refuses to load self-signed modules under Secure Boot with + properly enrolled keys (LP: #1712168) + - SAUCE: (efi-lockdown) MODSIGN: Fix module signature verification + + * [17.10 FEAT] Enable NVMe driver - kernel (LP: #1708432) + - [Config] CONFIG_BLK_DEV_NVME=m for s390 + + * Artful: 4.12.0-11.12: Boot panic in vlv2_plat_configure_clock+0x3b/0xa0 + (LP: #1711298) + - [Config] CONFIG_INTEL_ATOMISP=n + + * Miscellaneous Ubuntu changes + - SAUCE: apparmor: af_unix mediation + + * Miscellaneous upstream changes + - apparmor: Fix shadowed local variable in unpack_trans_table() + - apparmor: Fix logical error in verify_header() + - apparmor: Fix an error code in aafs_create() + - apparmor: Redundant condition: prev_ns. in [label.c:1498] + - apparmor: add the ability to mediate signals + - apparmor: add mount mediation + - apparmor: cleanup conditional check for label in label_print + - apparmor: add support for absolute root view based labels + - apparmor: make policy_unpack able to audit different info messages + - apparmor: add more debug asserts to apparmorfs + - apparmor: add base infastructure for socket mediation + - apparmor: move new_null_profile to after profile lookup fns() + - apparmor: fix race condition in null profile creation + - apparmor: ensure unconfined profiles have dfas initialized + - apparmor: fix incorrect type assignment when freeing proxies + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc6 + + -- Seth Forshee Wed, 23 Aug 2017 08:10:38 -0500 + +linux (4.13.0-5.6) artful; urgency=low + + * Ubuntu17.10 - perf: Update Power9 PMU event JSON files (LP: #1708630) + - perf pmu-events: Support additional POWER8+ PVR in mapfile + - perf vendor events: Add POWER9 PMU events + - perf vendor events: Add POWER9 PVRs to mapfile + - SAUCE: perf vendor events powerpc: remove suffix in mapfile + - SAUCE: perf vendor events powerpc: Update POWER9 events + + * Disable CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE (LP: #1709171) + - [Config] CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=n for ppc64el + + * Please only recommend or suggest initramfs-tools | linux-initramfs-tool for + kernels able to boot without initramfs (LP: #1700972) + - [Debian] Don't depend on initramfs-tools + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - SAUCE: aufs -- Add missing argument to loop_switch() call + - [Config] Enable aufs + - SAUCE: (noup) Update spl to 0.6.5.11-ubuntu1, zfs to 0.6.5.11-1ubuntu3 + - Enable zfs build + - SAUCE: powerpc: Always initialize input array when calling epapr_hypercall() + - [Packaging] switch up to debhelper 9 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc5 + + -- Seth Forshee Tue, 15 Aug 2017 09:24:16 -0500 + +linux (4.13.0-4.5) artful; urgency=low + + * Lenovo Yoga 910 Sensors (LP: #1708120) + - SAUCE: (no-up) HID: Add quirk for Lenovo Yoga 910 with ITE Chips + + * Unable to install Ubuntu on the NVMe disk under VMD PCI domain + (LP: #1703339) + - [Config] Add vmd driver to generic inclusion list + + * Set CONFIG_SATA_HIGHBANK=y on armhf (LP: #1703430) + - [Config] CONFIG_SATA_HIGHBANK=y + + * Miscellaneous Ubuntu changes + - ubuntu: vbox -- update to 5.1.26-dfsg-1 + - SAUCE: hio: Build fixes for 4.13 + - Enable hio build + - SAUCE: (noup) Update spl to 0.6.5.11-1, zfs to 0.6.5.11-1ubuntu1 + - [debian] use all rather than amd64 dkms debs for sync + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc4 + + -- Seth Forshee Tue, 08 Aug 2017 11:31:48 -0500 + +linux (4.13.0-3.4) artful; urgency=low + + * Adt tests of src:linux time out often on armhf lxc containers (LP: #1705495) + - [Packaging] tests -- reduce rebuild test to one flavour + - [Packaging] tests -- reduce rebuild test to one flavour -- use filter + + * snapd 2.26.8+17.10 ADT test failure with linux 4.12.0-6.7 (LP: #1704158) + - SAUCE: virtio_net: Revert mergeable buffer handling rework + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc3 + + -- Seth Forshee Mon, 31 Jul 2017 10:08:16 -0500 + +linux (4.13.0-2.3) artful; urgency=low + + * Change CONFIG_IBMVETH to module (LP: #1704479) + - [Config] CONFIG_IBMVETH=m + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc2 + + -- Seth Forshee Mon, 24 Jul 2017 13:58:08 -0500 + +linux (4.13.0-1.2) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Support sphinx-based kernel documentation + + -- Seth Forshee Thu, 20 Jul 2017 09:18:33 -0500 + +linux (4.13.0-0.1) artful; urgency=low + + * Miscellaneous Ubuntu changes + - Disable hio + - Disable zfs build + - ubuntu: vbox -- update to 5.1.24-dfsg-1 + + [ Upstream Kernel Changes ] + + * Rebase to v4.13-rc1 + + -- Seth Forshee Wed, 19 Jul 2017 15:09:31 -0500 + +linux (4.12.0-7.8) artful; urgency=low + + * ThunderX: soft lockup on 4.8+ kernels when running qemu-efi with vhost=on + (LP: #1673564) + - arm64: Add a facility to turn an ESR syndrome into a sysreg encoding + - KVM: arm/arm64: vgic-v3: Add accessors for the ICH_APxRn_EL2 registers + - KVM: arm64: Make kvm_condition_valid32() accessible from EL2 + - KVM: arm64: vgic-v3: Add hook to handle guest GICv3 sysreg accesses at EL2 + - KVM: arm64: vgic-v3: Add ICV_BPR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGRPEN1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IAR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_EOIR1_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_AP1Rn_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_HPPIR1_EL1 handler + - KVM: arm64: vgic-v3: Enable trapping of Group-1 system registers + - KVM: arm64: Enable GICv3 Group-1 sysreg trapping via command-line + - KVM: arm64: vgic-v3: Add ICV_BPR0_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_IGNREN0_EL1 handler + - KVM: arm64: vgic-v3: Add misc Group-0 handlers + - KVM: arm64: vgic-v3: Enable trapping of Group-0 system registers + - KVM: arm64: Enable GICv3 Group-0 sysreg trapping via command-line + - arm64: Add MIDR values for Cavium cn83XX SoCs + - arm64: Add workaround for Cavium Thunder erratum 30115 + - KVM: arm64: vgic-v3: Add ICV_DIR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_RPR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_CTLR_EL1 handler + - KVM: arm64: vgic-v3: Add ICV_PMR_EL1 handler + - KVM: arm64: Enable GICv3 common sysreg trapping via command-line + - KVM: arm64: vgic-v3: Log which GICv3 system registers are trapped + - KVM: arm64: Log an error if trapping a read-from-write-only GICv3 access + - KVM: arm64: Log an error if trapping a write-to-read-only GICv3 access + + * hns: under heavy load, NIC may fail and require reboot (LP: #1704146) + - net: hns: Bugfix for Tx timeout handling in hns driver + + * New ACPI identifiers for ThunderX SMMU (LP: #1703437) + - iommu/arm-smmu: Plumb in new ACPI identifiers + + * Transparent hugepages should default to enabled=madvise (LP: #1703742) + - SAUCE: use CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y as default + + * Artful update to v4.12.1 stable release (LP: #1703858) + - driver core: platform: fix race condition with driver_override + - RDMA/uverbs: Check port number supplied by user verbs cmds + - usb: dwc3: replace %p with %pK + - USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick + - usb: usbip: set buffer pointers to NULL after free + - Add USB quirk for HVR-950q to avoid intermittent device resets + - usb: Fix typo in the definition of Endpoint[out]Request + - USB: core: fix device node leak + - USB: serial: option: add two Longcheer device ids + - USB: serial: qcserial: new Sierra Wireless EM7305 device ID + - xhci: Limit USB2 port wake support for AMD Promontory hosts + - gfs2: Fix glock rhashtable rcu bug + - Add "shutdown" to "struct class". + - tpm: Issue a TPM2_Shutdown for TPM2 devices. + - tpm: fix a kernel memory leak in tpm-sysfs.c + - powerpc/powernv: Fix CPU_HOTPLUG=n idle.c compile error + - x86/uaccess: Optimize copy_user_enhanced_fast_string() for short strings + - sched/fair, cpumask: Export for_each_cpu_wrap() + - sched/core: Implement new approach to scale select_idle_cpu() + - sched/numa: Use down_read_trylock() for the mmap_sem + - sched/numa: Override part of migrate_degrades_locality() when idle balancing + - sched/fair: Simplify wake_affine() for the single socket case + - sched/numa: Implement NUMA node level wake_affine() + - sched/fair: Remove effective_load() + - sched/numa: Hide numa_wake_affine() from UP build + - xen: avoid deadlock in xenbus driver + - crypto: drbg - Fixes panic in wait_for_completion call + - Linux 4.12.1 + + * cxlflash update request in the Xenial SRU stream (LP: #1702521) + - scsi: cxlflash: Combine the send queue locks + - scsi: cxlflash: Update cxlflash_afu_sync() to return errno + - scsi: cxlflash: Reset hardware queue context via specified register + - scsi: cxlflash: Schedule asynchronous reset of the host + - scsi: cxlflash: Handle AFU sync failures + - scsi: cxlflash: Track pending scsi commands in each hardware queue + - scsi: cxlflash: Flush pending commands in cleanup path + - scsi: cxlflash: Add scsi command abort handler + - scsi: cxlflash: Create character device to provide host management interface + - scsi: cxlflash: Separate AFU internal command handling from AFU sync + specifics + - scsi: cxlflash: Introduce host ioctl support + - scsi: cxlflash: Refactor AFU capability checking + - scsi: cxlflash: Support LUN provisioning + - scsi: cxlflash: Support AFU debug + - scsi: cxlflash: Support WS16 unmap + - scsi: cxlflash: Remove zeroing of private command data + - scsi: cxlflash: Update TMF command processing + - scsi: cxlflash: Avoid double free of character device + - scsi: cxlflash: Update send_tmf() parameters + - scsi: cxlflash: Update debug prints in reset handlers + + * make snap-pkg support (LP: #1700747) + - make snap-pkg support + + * Quirk for non-compliant PCI bridge on HiSilicon D05 board (LP: #1698706) + - SAUCE: PCI: Support hibmc VGA cards behind a misbehaving HiSilicon bridge + + * arm64: fix crash reading /proc/kcore (LP: #1702749) + - fs/proc: kcore: use kcore_list type to check for vmalloc/module address + - arm64: mm: select CONFIG_ARCH_PROC_KCORE_TEXT + + * Opal and POWER9 DD2 (LP: #1702159) + - SAUCE: powerpc/powernv: Tell OPAL about our MMU mode on POWER9 + + * Data corruption with hio driver (LP: #1701316) + - SAUCE: hio: Fix incorrect use of enum req_opf values + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.10-1, zfs to 0.6.5.10-1ubuntu2 + - snapcraft.yaml: Sync with xenial + - [Config] CONFIG_CAVIUM_ERRATUM_30115=y + + * Miscellaneous upstream changes + - Revert "UBUNTU: SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and + MokSBState" + + -- Seth Forshee Fri, 14 Jul 2017 15:25:41 -0500 + +linux (4.12.0-6.7) artful; urgency=low + + * update ENA driver to 1.2.0k from net-next (LP: #1701575) + - net: ena: change return value for unsupported features unsupported return + value + - net: ena: add hardware hints capability to the driver + - net: ena: change sizeof() argument to be the type pointer + - net: ena: add reset reason for each device FLR + - net: ena: add support for out of order rx buffers refill + - net: ena: allow the driver to work with small number of msix vectors + - net: ena: use napi_schedule_irqoff when possible + - net: ena: separate skb allocation to dedicated function + - net: ena: use lower_32_bits()/upper_32_bits() to split dma address + - net: ena: update driver's rx drop statistics + - net: ena: update ena driver to version 1.2.0 + + * APST gets enabled against explicit kernel option (LP: #1699004) + - nvme: explicitly disable APST on quirked devices + + * Miscellaneous Ubuntu changes + - SAUCE: hio: Update to Huawei ES3000_V2 (2.1.0.40) + - SAUCE: hio updates for 4.12 + - SAUCE: Enable hio build + + -- Seth Forshee Wed, 05 Jul 2017 14:23:20 -0500 + +linux (4.12.0-5.6) artful; urgency=low + + * ERAT invalidate on context switch removal (LP: #1700819) + - powerpc: Only do ERAT invalidate on radix context switch on P9 DD1 + + * powerpc: Invalidate ERAT on powersave wakeup for POWER9 (LP: #1700521) + - SAUCE: powerpc: Invalidate ERAT on powersave wakeup for POWER9 + + * Miscellaneous Ubuntu changes + - d-i: Move qcom-emac from arm64 to shared nic-modules + + [ Upstream Kernel Changes ] + + * Rebase to v4.12 + + -- Seth Forshee Mon, 03 Jul 2017 07:52:02 -0500 + +linux (4.12.0-4.5) artful; urgency=low + + * aacraid driver may return uninitialized stack data to userspace + (LP: #1700077) + - SAUCE: scsi: aacraid: Don't copy uninitialized stack memory to userspace + + * KILLER1435-S[0489:e0a2] BT cannot search BT 4.0 device (LP: #1699651) + - Bluetooth: btusb: Add support for 0489:e0a2 QCA_ROME device + + * AACRAID for power9 platform (LP: #1689980) + - scsi: aacraid: Remove __GFP_DMA for raw srb memory + - scsi: aacraid: Fix DMAR issues with iommu=pt + - scsi: aacraid: Added 32 and 64 queue depth for arc natives + - scsi: aacraid: Set correct Queue Depth for HBA1000 RAW disks + - scsi: aacraid: Remove reset support from check_health + - scsi: aacraid: Change wait time for fib completion + - scsi: aacraid: Log count info of scsi cmds before reset + - scsi: aacraid: Print ctrl status before eh reset + - scsi: aacraid: Using single reset mask for IOP reset + - scsi: aacraid: Rework IOP reset + - scsi: aacraid: Add periodic checks to see IOP reset status + - scsi: aacraid: Rework SOFT reset code + - scsi: aacraid: Rework aac_src_restart + - scsi: aacraid: Use correct function to get ctrl health + - scsi: aacraid: Make sure ioctl returns on controller reset + - scsi: aacraid: Enable ctrl reset for both hba and arc + - scsi: aacraid: Add reset debugging statements + - scsi: aacraid: Remove reference to Series-9 + - scsi: aacraid: Update driver version to 50834 + + * hibmc driver does not include "pci:" prefix in bus ID (LP: #1698700) + - SAUCE: drm: hibmc: Use set_busid function from drm core + + * HiSilicon D05: installer doesn't appear on VGA (LP: #1698954) + - d-i: Add hibmc-drm to kernel-image udeb + + * Fix /proc/cpuinfo revision for POWER9 DD2 (LP: #1698844) + - SAUCE: powerpc: Fix /proc/cpuinfo revision for POWER9 DD2 + + * Miscellaneous Ubuntu changes + - [Config] CONFIG_SATA_MV=n and CONFIG_GENERIC_PHY=n for s390x + - [Config] CONFIG_ATA=n for s390x + - [Config] Update annotations for 4.12 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc7 + + -- Seth Forshee Mon, 26 Jun 2017 11:27:29 -0500 + +linux (4.12.0-3.4) artful; urgency=low + + * Miscellaneous upstream changes + - ufs: fix the logics for tail relocation + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc6 + + -- Seth Forshee Mon, 19 Jun 2017 14:50:39 -0500 + +linux (4.12.0-2.3) artful; urgency=low + + * CVE-2014-9900 + - SAUCE: (no-up) net: Zeroing the structure ethtool_wolinfo in + ethtool_get_wol() + + * System doesn't boot properly on Gigabyte AM4 motherboards (AMD Ryzen) + (LP: #1671360) + - pinctrl/amd: Use regular interrupt instead of chained + + * extend-diff-ignore should use exact matches (LP: #1693504) + - [Packaging] exact extend-diff-ignore matches + + * Miscellaneous Ubuntu changes + - SAUCE: efi: Don't print secure boot state from the efi stub + - ubuntu: vbox -- Update to 5.1.22-dfsg-1 + - SAUCE: vbox fixes for 4.12 + - Re-enable virtualbox build + - [Config] CONFIG_ORANGEFS_FS=m + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu2, zfs to 0.6.5.9-5ubuntu7 + - Enable zfs build + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc4 + * Rebase to v4.12-rc5 + + -- Seth Forshee Sun, 11 Jun 2017 22:25:13 -0500 + +linux (4.12.0-1.2) artful; urgency=low + + * Enable Matrox driver for Ubuntu 16.04.3 (LP: #1693337) + - [Config] Enable CONFIG_DRM_MGAG200 as module + + * Support low-pin-count devices on Hisilicon SoCs (LP: #1677319) + - [Config] CONFIG_LIBIO=y on arm64 only + - SAUCE: LIBIO: Introduce a generic PIO mapping method + - SAUCE: OF: Add missing I/O range exception for indirect-IO devices + - [Config] CONFIG_HISILICON_LPC=y + - SAUCE: LPC: Support the device-tree LPC host on Hip06/Hip07 + - SAUCE: LIBIO: Support the dynamically logical PIO registration of ACPI host + I/O + - SAUCE: LPC: Add the ACPI LPC support + - SAUCE: PCI: Apply the new generic I/O management on PCI IO hosts + - SAUCE: PCI: Restore codepath for !CONFIG_LIBIO + + * POWER9: Additional patches for TTY and CPU_IDLE (LP: #1674325) + - SAUCE: tty: Fix ldisc crash on reopened tty + + * Miscellaneous Ubuntu changes + - [Debian] Add build-dep on libnuma-dev to enable 'perf bench numa' + - Rebase to v4.12-rc3 + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc3 + + -- Seth Forshee Mon, 29 May 2017 20:56:29 -0500 + +linux (4.12.0-0.1) artful; urgency=low + + * please enable CONFIG_ARM64_LSE_ATOMICS (LP: #1691614) + - [Config] CONFIG_ARM64_LSE_ATOMICS=y + + * [Regression] NUMA_BALANCING disabled on arm64 (LP: #1690914) + - [Config] CONFIG_NUMA_BALANCING{,_DEFAULT_ENABLED}=y on arm64 + + * exec'ing a setuid binary from a threaded program sometimes fails to setuid + (LP: #1672819) + - SAUCE: exec: ensure file system accounting in check_unsafe_exec is correct + + * Miscellaneous Ubuntu changes + - Update find-missing-sauce.sh to compare to artful + - Update dropped.txt + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) KEYS: Allow unrestricted boot-time addition of keys to + secondary keyring + - SAUCE: (efi-lockdown) efi: Add EFI signature data types + - SAUCE: (efi-lockdown) efi: Add an EFI signature blob parser + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Allow the "db" UEFI variable to be suppressed + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Disable virtualbox build + - Disable hio build + - SAUCE: securityfs: Replace CURRENT_TIME with current_time() + - Disable zfs build + - [Debian] Work out upstream tag for use with gen-auto-reconstruct + - SAUCE: Import aufs driver + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + - [Config] Enable aufs + - SAUCE: perf callchain: Include errno.h on x86 unconditinally + + [ Upstream Kernel Changes ] + + * Rebase to v4.12-rc2 + + -- Seth Forshee Sun, 21 May 2017 23:44:44 -0500 + +linux (4.11.0-3.8) artful; urgency=low + + [ Seth Forshee ] + + * Release Tracking Bug + - LP: #1690999 + + * apparmor_parser hangs indefinitely when called by multiple threads + (LP: #1645037) + - SAUCE: apparmor: fix lock ordering for mkdir + + * apparmor leaking securityfs pin count (LP: #1660846) + - SAUCE: apparmor: fix leak on securityfs pin count + + * apparmor reference count leak when securityfs_setup_d_inode\ () fails + (LP: #1660845) + - SAUCE: apparmor: fix reference count leak when securityfs_setup_d_inode() + fails + + * apparmor not checking error if security_pin_fs() fails (LP: #1660842) + - SAUCE: apparmor: fix not handling error case when securityfs_pin_fs() fails + + * libvirt profile is blocking global setrlimit despite having no rlimit rule + (LP: #1679704) + - SAUCE: apparmor: fix complain mode failure for rlimit mediation + - apparmor: update auditing of rlimit check to provide capability information + + * apparmor: does not provide a way to detect policy updataes (LP: #1678032) + - SAUCE: apparmor: add policy revision file interface + + * apparmor does not make support of query data visible (LP: #1678023) + - SAUCE: apparmor: add label data availability to the feature set + + * apparmor query interface does not make supported query info available + (LP: #1678030) + - SAUCE: apparmor: add information about the query inteface to the feature set + + * change_profile incorrect when using namespaces with a compound stack + (LP: #1677959) + - SAUCE: apparmor: fix label parse for stacked labels + + * Regression in 4.4.0-65-generic causes very frequent system crashes + (LP: #1669611) + - apparmor: sync of apparmor 3.6+ (17.04) + + * Artful update to 4.11.1 stable release (LP: #1690814) + - dm ioctl: prevent stack leak in dm ioctl call + - drm/sti: fix GDP size to support up to UHD resolution + - power: supply: lp8788: prevent out of bounds array access + - brcmfmac: Ensure pointer correctly set if skb data location changes + - brcmfmac: Make skb header writable before use + - sparc64: fix fault handling in NGbzero.S and GENbzero.S + - refcount: change EXPORT_SYMBOL markings + - net: macb: fix phy interrupt parsing + - tcp: fix access to sk->sk_state in tcp_poll() + - geneve: fix incorrect setting of UDP checksum flag + - bpf: enhance verifier to understand stack pointer arithmetic + - bpf, arm64: fix jit branch offset related to ldimm64 + - tcp: fix wraparound issue in tcp_lp + - net: ipv6: Do not duplicate DAD on link up + - net: usb: qmi_wwan: add Telit ME910 support + - tcp: do not inherit fastopen_req from parent + - ipv4, ipv6: ensure raw socket message is big enough to hold an IP header + - rtnetlink: NUL-terminate IFLA_PHYS_PORT_NAME string + - ipv6: initialize route null entry in addrconf_init() + - ipv6: reorder ip6_route_dev_notifier after ipv6_dev_notf + - tcp: randomize timestamps on syncookies + - bnxt_en: allocate enough space for ->ntp_fltr_bmap + - bpf: don't let ldimm64 leak map addresses on unprivileged + - net: mdio-mux: bcm-iproc: call mdiobus_free() in error path + - f2fs: sanity check segment count + - xen/arm,arm64: fix xen_dma_ops after 815dd18 "Consolidate get_dma_ops..." + - xen: Revert commits da72ff5bfcb0 and 72a9b186292d + - block: get rid of blk_integrity_revalidate() + - Linux 4.11.1 + + * Module signing exclusion for staging drivers does not work properly + (LP: #1690908) + - SAUCE: Fix module signing exclusion in package builds + + * perf: qcom: Add L3 cache PMU driver (LP: #1689856) + - [Config] CONFIG_QCOM_L3_PMU=y + - perf: qcom: Add L3 cache PMU driver + + * No PMU support for ACPI-based arm64 systems (LP: #1689661) + - drivers/perf: arm_pmu: rework per-cpu allocation + - drivers/perf: arm_pmu: manage interrupts per-cpu + - drivers/perf: arm_pmu: split irq request from enable + - drivers/perf: arm_pmu: remove pointless PMU disabling + - drivers/perf: arm_pmu: define armpmu_init_fn + - drivers/perf: arm_pmu: fold init into alloc + - drivers/perf: arm_pmu: factor out pmu registration + - drivers/perf: arm_pmu: simplify cpu_pmu_request_irqs() + - drivers/perf: arm_pmu: handle no platform_device + - drivers/perf: arm_pmu: rename irq request/free functions + - drivers/perf: arm_pmu: split cpu-local irq request/free + - drivers/perf: arm_pmu: move irq request/free into probe + - drivers/perf: arm_pmu: split out platform device probe logic + - arm64: add function to get a cpu's MADT GICC table + - [Config] CONFIG_ARM_PMU_ACPI=y + - drivers/perf: arm_pmu: add ACPI framework + - arm64: pmuv3: handle !PMUv3 when probing + - arm64: pmuv3: use arm_pmu ACPI framework + + * Fix NVLINK2 TCE route (LP: #1690155) + - powerpc/powernv: Fix TCE kill on NVLink2 + + * CVE-2017-0605 + - tracing: Use strlcpy() instead of strcpy() in __trace_find_cmdline() + + * Miscellaneous Ubuntu changes + - [Config] Restore powerpc arch to annotations file + - [Config] Disable runtime testing modules + - [Config] Disable drivers not needed on s390x + - [Config] Update annotations for 4.11 + - [Config] updateconfigs after apparmor updates + + * Miscellaneous upstream changes + - apparmor: use SHASH_DESC_ON_STACK + - apparmor: fix invalid reference to index variable of iterator line 836 + - apparmor: fix parameters so that the permission test is bypassed at boot + - apparmor: Make path_max parameter readonly + - apparmorfs: Combine two function calls into one in aa_fs_seq_raw_abi_show() + - apparmorfs: Use seq_putc() in two functions + - apparmor: provide information about path buffer size at boot + - apparmor: add/use fns to print hash string hex value + + -- Seth Forshee Tue, 16 May 2017 00:39:13 -0500 + +linux (4.11.0-2.7) artful; urgency=low + + * kernel-wedge fails in artful due to leftover squashfs-modules d-i files + (LP: #1688259) + - Remove squashfs-modules files from d-i + - [Config] as squashfs-modules is builtin kernel-image must Provides: it + + * [Zesty] d-i: replace msm_emac with qcom_emac (LP: #1677297) + - Revert "UBUNTU: d-i: initrd needs msm_emac on amberwing platform." + - d-i: initrd needs qcom_emac on amberwing platform. + + * update for V3 kernel bits and improved multiple fan slice support + (LP: #1470091) + - SAUCE: fan: tunnel multiple mapping mode (v3) + + * Miscellaneous Ubuntu changes + - SAUCE: (noup) Update spl to 0.6.5.9-1ubuntu1, zfs to 0.6.5.9-5ubuntu5 + - Enable zfs + - SAUCE: fan: add VXLAN implementation + - SAUCE: (efi-lockdown) efi: Add EFI_SECURE_BOOT bit + - SAUCE: (efi-lockdown) Add the ability to lock down access to the running + kernel image + - SAUCE: (efi-lockdown) efi: Lock down the kernel if booted in secure boot + mode + - SAUCE: (efi-lockdown) Enforce module signatures if the kernel is locked down + - SAUCE: (efi-lockdown) Restrict /dev/mem and /dev/kmem when the kernel is + locked down + - SAUCE: (efi-lockdown) Add a sysrq option to exit secure boot mode + - SAUCE: (efi-lockdown) kexec: Disable at runtime if the kernel is locked down + - SAUCE: (efi-lockdown) Copy secure_boot flag in boot params across kexec + reboot + - SAUCE: (efi-lockdown) kexec_file: Disable at runtime if securelevel has been + set + - SAUCE: (efi-lockdown) hibernate: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) uswsusp: Disable when the kernel is locked down + - SAUCE: (efi-lockdown) PCI: Lock down BAR access when the kernel is locked + down + - SAUCE: (efi-lockdown) x86: Lock down IO port access when the kernel is + locked down + - SAUCE: (efi-lockdown) x86: Restrict MSR access when the kernel is locked + down + - SAUCE: (efi-lockdown) asus-wmi: Restrict debugfs interface when the kernel + is locked down + - SAUCE: (efi-lockdown) ACPI: Limit access to custom_method when the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Ignore acpi_rsdp kernel param when the kernel + has been locked down + - SAUCE: (efi-lockdown) acpi: Disable ACPI table override if the kernel is + locked down + - SAUCE: (efi-lockdown) acpi: Disable APEI error injection if the kernel is + locked down + - SAUCE: (efi-lockdown) Enable cold boot attack mitigation + - SAUCE: (efi-lockdown) bpf: Restrict kernel image access functions when the + kernel is locked down + - SAUCE: (efi-lockdown) scsi: Lock down the eata driver + - SAUCE: (efi-lockdown) Prohibit PCMCIA CIS storage when the kernel is locked + down + - SAUCE: (efi-lockdown) Lock down TIOCSSERIAL + - SAUCE: (efi-lockdown) Add EFI signature data types + - SAUCE: (efi-lockdown) Add an EFI signature blob parser and key loader. + - SAUCE: (efi-lockdown) KEYS: Add a system blacklist keyring + - SAUCE: (efi-lockdown) MODSIGN: Import certificates from UEFI Secure Boot + - SAUCE: (efi-lockdown) MODSIGN: Support not importing certs from db + - SAUCE: (efi-lockdown) MODSIGN: Don't try secure boot if EFI runtime is + disabled + - SAUCE: (efi-lockdown) efi: Sanitize boot_params in efi stub + - SAUCE: (efi-lockdown) efi: Add secure_boot state and status bit for + MokSBState + - SAUCE: (efi-lockdown) efi: Add sysctls for secureboot and MokSBState + - [Config] Set values for UEFI secure boot lockdown options + - Update dropped.txt + + [ Upstream Kernel Changes ] + + * rebase to v4.11 + + -- Seth Forshee Fri, 05 May 2017 07:43:14 -0500 + +linux (4.11.0-1.6) artful; urgency=low + + * Miscellaneous Ubuntu changes + - [Debian] Use default compression for all packages + - SAUCE: (namespace) block_dev: Support checking inode permissions in + lookup_bdev() + - SAUCE: (namespace) block_dev: Check permissions towards block device inode + when mounting + - SAUCE: (namespace) mtd: Check permissions towards mtd block device inode + when mounting + - SAUCE: (namespace) fs: Allow superblock owner to change ownership of inodes + - SAUCE: (namespace) fs: Don't remove suid for CAP_FSETID for userns root + - SAUCE: (namespace) fs: Allow superblock owner to access do_remount_sb() + - SAUCE: (namespace) capabilities: Allow privileged user in s_user_ns to set + security.* xattrs + - SAUCE: (namespace) fs: Allow CAP_SYS_ADMIN in s_user_ns to freeze and thaw + filesystems + - SAUCE: (namespace) fuse: Add support for pid namespaces + - SAUCE: (namespace) fuse: Support fuse filesystems outside of init_user_ns + - SAUCE: (namespace) fuse: Restrict allow_other to the superblock's namespace + or a descendant + - SAUCE: (namespace) fuse: Allow user namespace mounts + - SAUCE: (namespace) ext4: Add support for unprivileged mounts from user + namespaces + - SAUCE: (namespace) evm: Don't update hmacs in user ns mounts + - SAUCE: (namespace) ext4: Add module parameter to enable user namespace + mounts + - SAUCE: (namespace) block_dev: Forbid unprivileged mounting when device is + opened for writing + + -- Seth Forshee Wed, 26 Apr 2017 10:08:29 -0500 + +linux (4.11.0-0.5) artful; urgency=low + + * [Hyper-V][SAUCE] pci-hyperv: Use only 16 bit integer for PCI domain + (LP: #1684971) + - SAUCE: pci-hyperv: Use only 16 bit integer for PCI domain + + * [Hyper-V] Ubuntu 14.04.2 LTS Generation 2 SCSI Errors on VSS Based Backups + (LP: #1470250) + - SAUCE: Tools: hv: vss: Thaw the filesystem and continue after freeze fails + + * Enable virtual scsi server driver for Power (LP: #1615665) + - SAUCE: Return TCMU-generated sense data to fabric module + + * include/linux/security.h header syntax error with !CONFIG_SECURITYFS + (LP: #1630990) + - SAUCE: (no-up) include/linux/security.h -- fix syntax error with + CONFIG_SECURITYFS=n + + * Miscellaneous Ubuntu changes + - SAUCE: Import aufs driver + - [Config] Enable aufs + - [Debian] Add script to update virtualbox + - ubuntu: vbox -- Update to 5.1.20-dfsg-2 + - Enable vbox + - SAUCE: aufs -- Include linux/mm.h in fs/aufs/file.h + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc8 + + -- Seth Forshee Tue, 25 Apr 2017 13:42:54 -0500 + +linux (4.11.0-0.4) zesty; urgency=low + + * POWER9: Improve performance on memory management (LP: #1681429) + - SAUCE: powerpc/mm/radix: Don't do page walk cache flush when doing full mm + flush + - SAUCE: powerpc/mm/radix: Remove unnecessary ptesync + + * Miscellaneous Ubuntu changes + - find-missing-sauce.sh + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc7 + + -- Seth Forshee Tue, 18 Apr 2017 08:19:43 -0500 + +linux (4.11.0-0.3) zesty; urgency=low + + * Disable CONFIG_HVC_UDBG on ppc64el (LP: #1680888) + - [Config] Disable CONFIG_HVC_UDBG on ppc64el + + * smartpqi driver needed in initram disk and installer (LP: #1680156) + - [Config] Add smartpqi to d-i + + * Disable CONFIG_SECURITY_SELINUX_DISABLE (LP: #1680315) + - [Config] CONFIG_SECURITY_SELINUX_DISABLE=n + + * Miscellaneous Ubuntu changes + - [Config] flash-kernel should be a Breaks + - [Config] drop the info directory + - [Config] drop NOTES as obsolete + - [Config] drop changelog.historical as obsolete + - rebase to v4.11-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc6 + + -- Tim Gardner Tue, 11 Apr 2017 07:16:52 -0600 + +linux (4.11.0-0.2) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc5 + + -- Tim Gardner Mon, 03 Apr 2017 08:26:07 +0100 + +linux (4.11.0-0.1) zesty; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to v4.11-rc4 + - LP: #1591053 + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 + +linux (4.11.0-0.0) zesty; urgency=low + + * dummy entry + + -- Tim Gardner Mon, 20 Mar 2017 05:15:32 -0600 diff --git a/debian.nvidia-5.19/config/amd64/config.common.amd64 b/debian.nvidia-5.19/config/amd64/config.common.amd64 new file mode 100644 index 000000000000..36f6077a58fe --- /dev/null +++ b/debian.nvidia-5.19/config/amd64/config.common.amd64 @@ -0,0 +1,56 @@ +# +# Config options for config.common.amd64 automatically generated by splitconfig.pl +# +CONFIG_ACPI_DEBUG=y +CONFIG_ACPI_DEBUGGER=y +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +CONFIG_ARCH_MMAP_RND_BITS=28 +CONFIG_ARCH_MMAP_RND_BITS_MAX=32 +CONFIG_ARCH_MMAP_RND_BITS_MIN=28 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=8 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=8 +CONFIG_ARCH_NR_GPIO=1024 +CONFIG_ATA_GENERIC=y +CONFIG_ATA_PIIX=y +CONFIG_CC_VERSION_TEXT="x86_64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0" +# CONFIG_CMA is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL=y +CONFIG_CRC8=m +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11 +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +# CONFIG_DRM_ETNAVIV is not set +CONFIG_HIBERNATION=y +CONFIG_I2C_AMD_MP2=m +# CONFIG_I2C_SLAVE is not set +CONFIG_IOMMU_DEFAULT_DMA_LAZY=y +# CONFIG_IOMMU_DEFAULT_DMA_STRICT is not set +CONFIG_KVM=m +CONFIG_MDIO_BITBANG=m +CONFIG_MII=m +CONFIG_MMC_BLOCK=m +# CONFIG_MMC_HSQ is not set +# CONFIG_NET_DSA_REALTEK_MDIO is not set +# CONFIG_NET_DSA_REALTEK_SMI is not set +CONFIG_NODES_SHIFT=10 +CONFIG_NR_CPUS=8192 +# CONFIG_OF is not set +# CONFIG_PAGE_POOL_STATS is not set +CONFIG_PATA_SIS=y +CONFIG_PCMCIA=m +CONFIG_PGTABLE_LEVELS=5 +CONFIG_PMIC_OPREGION=y +CONFIG_SERIAL_8250_DW=m +CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM=y +CONFIG_SND_HDA_PREALLOC_SIZE=0 +# CONFIG_STANDALONE is not set +CONFIG_SURFACE_3_POWER_OPREGION=m +CONFIG_SURFACE_PRO3_BUTTON=m +# CONFIG_SYSFB_SIMPLEFB is not set +CONFIG_TOUCHSCREEN_ELAN=y +CONFIG_USB_EHCI_HCD_PLATFORM=y +CONFIG_USB_OHCI_HCD_PLATFORM=y +CONFIG_VFIO=y +CONFIG_VFIO_IOMMU_TYPE1=y +CONFIG_VFIO_PCI=y +CONFIG_VFIO_PCI_CORE=y +CONFIG_VFIO_VIRQFD=y diff --git a/debian.nvidia-5.19/config/amd64/config.flavour.nvidia b/debian.nvidia-5.19/config/amd64/config.flavour.nvidia new file mode 100644 index 000000000000..e768a8126956 --- /dev/null +++ b/debian.nvidia-5.19/config/amd64/config.flavour.nvidia @@ -0,0 +1,12 @@ +# +# Config options for config.flavour.nvidia automatically generated by splitconfig.pl +# +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_LATENCYTOP is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +# CONFIG_TEST_DIV64 is not set diff --git a/debian.nvidia-5.19/config/amd64/config.flavour.nvidia-lowlatency b/debian.nvidia-5.19/config/amd64/config.flavour.nvidia-lowlatency new file mode 100644 index 000000000000..daf558948de4 --- /dev/null +++ b/debian.nvidia-5.19/config/amd64/config.flavour.nvidia-lowlatency @@ -0,0 +1,12 @@ +# +# Config options for config.flavour.nvidia-lowlatency automatically generated by splitconfig.pl +# +# CONFIG_COMEDI_TESTS_EXAMPLE is not set +# CONFIG_COMEDI_TESTS_NI_ROUTES is not set +CONFIG_HZ=1000 +CONFIG_HZ_1000=y +# CONFIG_HZ_250 is not set +CONFIG_LATENCYTOP=y +CONFIG_PREEMPT=y +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_TEST_DIV64=m diff --git a/debian.nvidia-5.19/config/annotations b/debian.nvidia-5.19/config/annotations new file mode 100644 index 000000000000..0bcefbc5b0a9 --- /dev/null +++ b/debian.nvidia-5.19/config/annotations @@ -0,0 +1,34 @@ +# Menu: HEADER +# FORMAT: 3 +# ARCH: x86 arm64 + +include "../../debian.hwe-5.19/config/annotations" + +CONFIG_LATENCYTOP policy<{'amd64': 'n', 'amd64-nvidia-lowlatency': 'y', 'arm64': 'n'}> +CONFIG_HZ_1000 policy<{'amd64': 'n', 'amd64-nvidia-lowlatency': 'y', 'arm64': 'n'}> +CONFIG_HZ_250 policy<{'amd64': 'y', 'amd64-nvidia-lowlatency': 'n', 'arm64': 'y'}> +CONFIG_PREEMPT_VOLUNTARY policy<{'amd64': 'y', 'amd64-nvidia-lowlatency': 'n', 'arm64': 'y'}> +CONFIG_PREEMPT policy<{'amd64': 'n', 'amd64-nvidia-lowlatency': 'y', 'arm64': 'n'}> + +CONFIG_COMEDI_TESTS_EXAMPLE policy<{'amd64': 'm', 'amd64-nvidia-lowlatency': 'n', 'arm64': 'm'}> +CONFIG_TEST_DIV64 policy<{'amd64': 'n', 'amd64-nvidia-lowlatency': 'm', 'arm64': 'n'}> +CONFIG_COMEDI_TESTS_NI_ROUTES policy<{'amd64': 'm', 'amd64-nvidia-lowlatency': 'n', 'arm64': 'm'}> + +CONFIG_ARM64_64K_PAGES policy<{'arm64': 'n', 'arm64-nvidia-64k': 'y'}> +CONFIG_NTFS_RW policy<{'amd64': 'n', 'arm64': 'n', 'arm64-nvidia-64k': '-'}> + +CONFIG_MESON_SECURE_PM_DOMAINS policy<{'arm64': 'y', 'arm64-nvidia-64k': '-'}> +CONFIG_INFINIBAND_VMWARE_PVRDMA policy<{'amd64': 'm', 'arm64': 'm', 'arm64-nvidia-64k': '-'}> +CONFIG_MESON_SM policy<{'arm64': 'y', 'arm64-nvidia-64k': '-'}> +CONFIG_VMXNET3 policy<{'amd64': 'm', 'arm64': 'm', 'arm64-nvidia-64k': '-'}> +CONFIG_FORCE_MAX_ZONEORDER policy<{'arm64': '13', 'arm64-nvidia-64k': '14'}> +CONFIG_ARM64_4K_PAGES policy<{'arm64': 'y', 'arm64-nvidia-64k': 'n'}> +CONFIG_MESON_EFUSE policy<{'arm64': 'm', 'arm64-nvidia-64k': '-'}> +CONFIG_PCI_MESON policy<{'amd64': 'n', 'arm64': 'n'}> + +CONFIG_ARM64_VA_BITS_39 policy<{'arm64': 'n', 'arm64-nvidia-64k': '-'}> +CONFIG_ARM64_VA_BITS_42 policy<{'arm64-nvidia-64k': 'n'}> +CONFIG_ARM64_VA_BITS_52 policy<{'arm64-nvidia-64k': 'n'}> +CONFIG_ARM64_PA_BITS_52 policy<{'arm64-nvidia-64k': 'n'}> + +CONFIG_NR_CPUS policy<{'amd64': '8192', 'arm64': '512'}> diff --git a/debian.nvidia-5.19/config/arm64/config.common.arm64 b/debian.nvidia-5.19/config/arm64/config.common.arm64 new file mode 100644 index 000000000000..484fcd0416dc --- /dev/null +++ b/debian.nvidia-5.19/config/arm64/config.common.arm64 @@ -0,0 +1,61 @@ +# +# Config options for config.common.arm64 automatically generated by splitconfig.pl +# +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_DEBUGGER is not set +CONFIG_ACPI_REDUCED_HARDWARE_ONLY=y +CONFIG_ARCH_MMAP_RND_BITS=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11 +CONFIG_ARCH_NR_GPIO=2048 +CONFIG_ATA_GENERIC=m +CONFIG_ATA_PIIX=m +CONFIG_CC_VERSION_TEXT="aarch64-linux-gnu-gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0" +CONFIG_CMA=y +CONFIG_COMEDI_TESTS_EXAMPLE=m +CONFIG_COMEDI_TESTS_NI_ROUTES=m +# CONFIG_CPU_FREQ_DEFAULT_GOV_SCHEDUTIL is not set +CONFIG_CRC8=y +CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9 +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DRM_ETNAVIV=m +# CONFIG_HIBERNATION is not set +CONFIG_HZ=250 +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_I2C_AMD_MP2 is not set +CONFIG_I2C_SLAVE=y +# CONFIG_IOMMU_DEFAULT_DMA_LAZY is not set +CONFIG_IOMMU_DEFAULT_DMA_STRICT=y +CONFIG_KVM=y +# CONFIG_LATENCYTOP is not set +CONFIG_MDIO_BITBANG=y +CONFIG_MII=y +CONFIG_MMC_BLOCK=y +CONFIG_MMC_HSQ=m +CONFIG_NET_DSA_REALTEK_MDIO=m +CONFIG_NET_DSA_REALTEK_SMI=m +CONFIG_NODES_SHIFT=6 +CONFIG_NR_CPUS=512 +CONFIG_OF=y +CONFIG_PAGE_POOL_STATS=y +CONFIG_PATA_SIS=m +# CONFIG_PCMCIA is not set +# CONFIG_PMIC_OPREGION is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_SERIAL_8250_DW=y +# CONFIG_SND_HDA_INTEL_HDMI_SILENT_STREAM is not set +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_STANDALONE=y +# CONFIG_SURFACE_3_POWER_OPREGION is not set +# CONFIG_SURFACE_PRO3_BUTTON is not set +CONFIG_SYSFB_SIMPLEFB=y +# CONFIG_TEST_DIV64 is not set +CONFIG_TOUCHSCREEN_ELAN=m +CONFIG_USB_EHCI_HCD_PLATFORM=m +CONFIG_USB_OHCI_HCD_PLATFORM=m +CONFIG_VFIO=m +CONFIG_VFIO_IOMMU_TYPE1=m +CONFIG_VFIO_PCI=m +CONFIG_VFIO_PCI_CORE=m +CONFIG_VFIO_VIRQFD=m diff --git a/debian.nvidia-5.19/config/arm64/config.flavour.nvidia b/debian.nvidia-5.19/config/arm64/config.flavour.nvidia new file mode 100644 index 000000000000..309580085206 --- /dev/null +++ b/debian.nvidia-5.19/config/arm64/config.flavour.nvidia @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.nvidia automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=33 +CONFIG_ARCH_MMAP_RND_BITS_MIN=18 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11 +CONFIG_ARM64_4K_PAGES=y +# CONFIG_ARM64_64K_PAGES is not set +CONFIG_ARM64_CONT_PMD_SHIFT=4 +CONFIG_ARM64_CONT_PTE_SHIFT=4 +CONFIG_ARM64_PAGE_SHIFT=12 +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_PGTABLE_LEVELS=4 diff --git a/debian.nvidia-5.19/config/arm64/config.flavour.nvidia-64k b/debian.nvidia-5.19/config/arm64/config.flavour.nvidia-64k new file mode 100644 index 000000000000..5b1e088a7886 --- /dev/null +++ b/debian.nvidia-5.19/config/arm64/config.flavour.nvidia-64k @@ -0,0 +1,13 @@ +# +# Config options for config.flavour.nvidia-64k automatically generated by splitconfig.pl +# +CONFIG_ARCH_MMAP_RND_BITS_MAX=29 +CONFIG_ARCH_MMAP_RND_BITS_MIN=14 +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=7 +# CONFIG_ARM64_4K_PAGES is not set +CONFIG_ARM64_64K_PAGES=y +CONFIG_ARM64_CONT_PMD_SHIFT=5 +CONFIG_ARM64_CONT_PTE_SHIFT=5 +CONFIG_ARM64_PAGE_SHIFT=16 +CONFIG_FORCE_MAX_ZONEORDER=14 +CONFIG_PGTABLE_LEVELS=3 diff --git a/debian.nvidia-5.19/config/config.common.ubuntu b/debian.nvidia-5.19/config/config.common.ubuntu new file mode 100644 index 000000000000..f07a203e718e --- /dev/null +++ b/debian.nvidia-5.19/config/config.common.ubuntu @@ -0,0 +1,12593 @@ +# +# Common config options automatically generated by splitconfig.pl +# +CONFIG_104_QUAD_8=m +CONFIG_60XX_WDT=m +CONFIG_64BIT=y +CONFIG_6LOWPAN=m +# CONFIG_6LOWPAN_DEBUGFS is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_HOP is not set +# CONFIG_6LOWPAN_GHC_EXT_HDR_ROUTE is not set +# CONFIG_6LOWPAN_GHC_ICMPV6 is not set +# CONFIG_6LOWPAN_GHC_UDP is not set +CONFIG_6LOWPAN_NHC=m +CONFIG_6LOWPAN_NHC_DEST=m +CONFIG_6LOWPAN_NHC_FRAGMENT=m +CONFIG_6LOWPAN_NHC_HOP=m +CONFIG_6LOWPAN_NHC_IPV6=m +CONFIG_6LOWPAN_NHC_MOBILITY=m +CONFIG_6LOWPAN_NHC_ROUTING=m +CONFIG_6LOWPAN_NHC_UDP=m +CONFIG_6PACK=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_8129=y +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_842_COMPRESS=m +CONFIG_842_DECOMPRESS=m +CONFIG_9P_FS=m +CONFIG_9P_FSCACHE=y +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_9P_FS_SECURITY=y +# CONFIG_A11Y_BRAILLE_CONSOLE is not set +CONFIG_ABP060MG=m +CONFIG_AC97_BUS=m +CONFIG_ACCESSIBILITY=y +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACERHDF=m +CONFIG_ACER_WIRELESS=m +CONFIG_ACER_WMI=m +# CONFIG_ACORN_PARTITION is not set +CONFIG_ACPI=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_ADXL=y +CONFIG_ACPI_AGDI=y +CONFIG_ACPI_ALS=m +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_EINJ=m +# CONFIG_ACPI_APEI_ERST_DEBUG is not set +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_PCIEAER=y +CONFIG_ACPI_APEI_SEA=y +CONFIG_ACPI_APMT=y +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BGRT=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_CCA_REQUIRED=y +CONFIG_ACPI_CMPC=m +CONFIG_ACPI_CONFIGFS=m +CONFIG_ACPI_CONTAINER=y +CONFIG_ACPI_CPPC_CPUFREQ=m +CONFIG_ACPI_CPPC_CPUFREQ_FIE=y +CONFIG_ACPI_CPPC_LIB=y +CONFIG_ACPI_CPU_FREQ_PSS=y +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +CONFIG_ACPI_DEBUGGER_USER=y +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_DPTF=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_EXTLOG=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_FPDT=y +CONFIG_ACPI_GENERIC_GSI=y +CONFIG_ACPI_GTDT=y +CONFIG_ACPI_HED=y +CONFIG_ACPI_HMAT=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_HOTPLUG_IOAPIC=y +CONFIG_ACPI_HOTPLUG_MEMORY=y +CONFIG_ACPI_I2C_OPREGION=y +CONFIG_ACPI_IORT=y +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +CONFIG_ACPI_LPIT=y +CONFIG_ACPI_MCFG=y +CONFIG_ACPI_MDIO=y +CONFIG_ACPI_NFIT=m +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_PCC=y +CONFIG_ACPI_PCI_SLOT=y +CONFIG_ACPI_PFRUT=m +CONFIG_ACPI_PLATFORM_PROFILE=m +CONFIG_ACPI_PPTT=y +CONFIG_ACPI_PRMT=y +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +CONFIG_ACPI_PROCESSOR_CSTATE=y +CONFIG_ACPI_PROCESSOR_IDLE=y +CONFIG_ACPI_REV_OVERRIDE_POSSIBLE=y +CONFIG_ACPI_SBS=m +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_SPCR_TABLE=y +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +CONFIG_ACPI_TABLE_LIB=y +CONFIG_ACPI_TABLE_UPGRADE=y +CONFIG_ACPI_TAD=m +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_THERMAL_REL=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_VIOT=y +CONFIG_ACPI_WATCHDOG=y +CONFIG_ACPI_WMI=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACRN_GUEST=y +CONFIG_ACRN_HSM=m +CONFIG_AD2S1200=m +CONFIG_AD2S1210=m +CONFIG_AD2S90=m +CONFIG_AD3552R=m +CONFIG_AD5064=m +CONFIG_AD5110=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_AD5272=m +CONFIG_AD5360=m +CONFIG_AD5380=m +CONFIG_AD5421=m +CONFIG_AD5446=m +CONFIG_AD5449=m +CONFIG_AD5504=m +CONFIG_AD5592R=m +CONFIG_AD5592R_BASE=m +CONFIG_AD5593R=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5686_SPI=m +CONFIG_AD5696_I2C=m +CONFIG_AD5755=m +CONFIG_AD5758=m +CONFIG_AD5761=m +CONFIG_AD5764=m +CONFIG_AD5766=m +CONFIG_AD5770R=m +CONFIG_AD5791=m +CONFIG_AD5933=m +CONFIG_AD7091R5=m +CONFIG_AD7124=m +CONFIG_AD7150=m +CONFIG_AD7192=m +CONFIG_AD7266=m +CONFIG_AD7280=m +CONFIG_AD7291=m +CONFIG_AD7292=m +CONFIG_AD7293=m +CONFIG_AD7298=m +CONFIG_AD7303=m +CONFIG_AD74413R=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7746=m +CONFIG_AD7766=m +CONFIG_AD7768_1=m +CONFIG_AD7780=m +CONFIG_AD7791=m +CONFIG_AD7793=m +CONFIG_AD7816=m +CONFIG_AD7887=m +CONFIG_AD7923=m +CONFIG_AD7949=m +CONFIG_AD799X=m +CONFIG_AD8366=m +CONFIG_AD8801=m +CONFIG_AD9467=m +CONFIG_AD9523=m +CONFIG_AD9832=m +CONFIG_AD9834=m +CONFIG_ADA4250=m +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +CONFIG_ADF4350=m +CONFIG_ADF4371=m +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADIN1100_PHY=m +CONFIG_ADIN_PHY=m +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16136=m +CONFIG_ADIS16201=m +CONFIG_ADIS16203=m +CONFIG_ADIS16209=m +CONFIG_ADIS16240=m +CONFIG_ADIS16260=m +CONFIG_ADIS16400=m +CONFIG_ADIS16460=m +CONFIG_ADIS16475=m +CONFIG_ADIS16480=m +CONFIG_ADI_AXI_ADC=m +CONFIG_ADJD_S311=m +CONFIG_ADM8211=m +CONFIG_ADMV1013=m +CONFIG_ADMV1014=m +CONFIG_ADMV4420=m +CONFIG_ADMV8818=m +CONFIG_ADRF6780=m +CONFIG_ADT7316=m +CONFIG_ADT7316_I2C=m +CONFIG_ADT7316_SPI=m +CONFIG_ADUX1020=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ADVISE_SYSCALLS=y +CONFIG_ADV_SWBUTTON=m +CONFIG_ADXL313=m +CONFIG_ADXL313_I2C=m +CONFIG_ADXL313_SPI=m +CONFIG_ADXL355=m +CONFIG_ADXL355_I2C=m +CONFIG_ADXL355_SPI=m +CONFIG_ADXL367=m +CONFIG_ADXL367_I2C=m +CONFIG_ADXL367_SPI=m +CONFIG_ADXL372=m +CONFIG_ADXL372_I2C=m +CONFIG_ADXL372_SPI=m +CONFIG_ADXRS290=m +CONFIG_ADXRS450=m +CONFIG_AD_SIGMA_DELTA=m +CONFIG_AFE4403=m +CONFIG_AFE4404=m +CONFIG_AFFS_FS=m +# CONFIG_AFS_DEBUG is not set +# CONFIG_AFS_DEBUG_CURSOR is not set +CONFIG_AFS_FS=m +CONFIG_AFS_FSCACHE=y +CONFIG_AF_KCM=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_AF_RXRPC_INJECT_LOSS is not set +CONFIG_AF_RXRPC_IPV6=y +CONFIG_AF_UNIX_OOB=y +CONFIG_AGP=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_INTEL=y +CONFIG_AGP_SIS=m +CONFIG_AGP_VIA=y +CONFIG_AHCI_BRCM=m +CONFIG_AHCI_CEVA=m +CONFIG_AHCI_IMX=y +CONFIG_AHCI_MTK=m +CONFIG_AHCI_MVEBU=m +CONFIG_AHCI_QORIQ=m +# CONFIG_AHCI_SUNXI is not set +CONFIG_AHCI_TEGRA=m +CONFIG_AHCI_XGENE=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_RESET_DELAY_MS=5000 +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_AIO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_AIX_PARTITION=y +CONFIG_AK09911=m +CONFIG_AK8974=m +CONFIG_AK8975=m +CONFIG_AL3010=m +CONFIG_AL3320A=m +CONFIG_ALIBABA_ENI_VDPA=m +CONFIG_ALIENWARE_WMI=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_ALLOW_DEV_COREDUMP=y +CONFIG_ALTERA_FREEZE_BRIDGE=m +CONFIG_ALTERA_MBOX=m +CONFIG_ALTERA_MSGDMA=m +CONFIG_ALTERA_PR_IP_CORE=m +CONFIG_ALTERA_PR_IP_CORE_PLAT=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTERA_TSE=m +CONFIG_ALX=m +CONFIG_AL_FIC=y +CONFIG_AM2315=m +CONFIG_AMBA_PL08X=y +CONFIG_AMD8111_ETH=m +CONFIG_AMDTEE=m +CONFIG_AMD_HSMP=m +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_V2=m +CONFIG_AMD_MEM_ENCRYPT=y +# CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT is not set +CONFIG_AMD_NB=y +CONFIG_AMD_NUMA=y +CONFIG_AMD_PHY=m +CONFIG_AMD_PMC=m +CONFIG_AMD_PTDMA=m +CONFIG_AMD_SFH_HID=m +CONFIG_AMD_XGBE=m +CONFIG_AMD_XGBE_DCB=y +CONFIG_AMD_XGBE_HAVE_ECC=y +CONFIG_AMIGA_PARTITION=y +CONFIG_AMILO_RFKILL=m +CONFIG_AMLOGIC_THERMAL=m +CONFIG_AMT=m +CONFIG_ANDROID=y +CONFIG_ANDROID_BINDERFS=m +CONFIG_ANDROID_BINDER_DEVICES="" +CONFIG_ANDROID_BINDER_IPC=m +# CONFIG_ANDROID_BINDER_IPC_SELFTEST is not set +CONFIG_ANON_VMA_NAME=y +CONFIG_APDS9300=m +CONFIG_APDS9802ALS=m +CONFIG_APDS9960=m +CONFIG_APPLE_AIC=y +CONFIG_APPLE_DART=m +CONFIG_APPLE_GMUX=m +CONFIG_APPLE_M1_CPU_PMU=y +CONFIG_APPLE_MAILBOX=m +CONFIG_APPLE_MFI_FASTCHARGE=m +CONFIG_APPLE_PMGR_PWRSTATE=y +CONFIG_APPLE_PROPERTIES=y +CONFIG_APPLE_RTKIT=m +CONFIG_APPLE_SART=m +CONFIG_APPLE_WATCHDOG=m +CONFIG_APPLICOM=m +CONFIG_APQ_GCC_8084=m +CONFIG_APQ_MMCC_8084=m +CONFIG_AQTION=m +CONFIG_AQUANTIA_PHY=m +CONFIG_AR5523=m +CONFIG_ARCH_ACTIONS=y +# CONFIG_ARCH_ALPINE is not set +CONFIG_ARCH_APPLE=y +CONFIG_ARCH_BCM2835=y +CONFIG_ARCH_BCM4908=y +CONFIG_ARCH_BCM_IPROC=y +CONFIG_ARCH_BERLIN=y +CONFIG_ARCH_BINFMT_ELF_EXTRA_PHDRS=y +CONFIG_ARCH_BINFMT_ELF_STATE=y +CONFIG_ARCH_BITMAIN=y +CONFIG_ARCH_BRCMSTB=y +CONFIG_ARCH_CLOCKSOURCE_INIT=y +CONFIG_ARCH_CORRECT_STACKTRACE_ON_KRETPROBE=y +CONFIG_ARCH_CPUIDLE_HALTPOLL=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_ENABLE_HUGEPAGE_MIGRATION=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_ENABLE_THP_MIGRATION=y +# CONFIG_ARCH_EXYNOS is not set +CONFIG_ARCH_HAS_ACPI_TABLE_UPGRADE=y +CONFIG_ARCH_HAS_ADD_PAGES=y +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CC_PLATFORM=y +CONFIG_ARCH_HAS_COPY_MC=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_CURRENT_STACK_POINTER=y +CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y +CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y +CONFIG_ARCH_HAS_DEBUG_WX=y +CONFIG_ARCH_HAS_DEVMEM_IS_ALLOWED=y +CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y +CONFIG_ARCH_HAS_EARLY_DEBUG=y +CONFIG_ARCH_HAS_ELFCORE_COMPAT=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_HAS_FORCE_DMA_UNENCRYPTED=y +CONFIG_ARCH_HAS_FORTIFY_SOURCE=y +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +CONFIG_ARCH_HAS_GIGANTIC_PAGE=y +CONFIG_ARCH_HAS_KCOV=y +CONFIG_ARCH_HAS_KEEPINITRD=y +CONFIG_ARCH_HAS_KEXEC_PURGATORY=y +CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y +CONFIG_ARCH_HAS_MEM_ENCRYPT=y +CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y +CONFIG_ARCH_HAS_PARANOID_L1D_FLUSH=y +CONFIG_ARCH_HAS_PKEYS=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_PTE_DEVMAP=y +CONFIG_ARCH_HAS_PTE_SPECIAL=y +CONFIG_ARCH_HAS_RELR=y +CONFIG_ARCH_HAS_RESET_CONTROLLER=y +CONFIG_ARCH_HAS_SETUP_DMA_OPS=y +CONFIG_ARCH_HAS_SET_DIRECT_MAP=y +CONFIG_ARCH_HAS_SET_MEMORY=y +CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y +CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y +CONFIG_ARCH_HAS_SUBPAGE_FAULTS=y +CONFIG_ARCH_HAS_SYNC_CORE_BEFORE_USERMODE=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y +CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y +CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y +CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y +CONFIG_ARCH_HAS_TICK_BROADCAST=y +CONFIG_ARCH_HAS_UACCESS_FLUSHCACHE=y +CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y +CONFIG_ARCH_HAS_VM_GET_PAGE_PROT=y +CONFIG_ARCH_HAS_ZONE_DMA_SET=y +CONFIG_ARCH_HAVE_ELF_PROT=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HISI=y +CONFIG_ARCH_INTEL_SOCFPGA=y +CONFIG_ARCH_K3=y +CONFIG_ARCH_KEEMBAY=y +CONFIG_ARCH_KEEP_MEMBLOCK=y +CONFIG_ARCH_LAYERSCAPE=y +CONFIG_ARCH_LG1K=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MEDIATEK=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ARCH_MESON=y +CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16 +CONFIG_ARCH_MVEBU=y +CONFIG_ARCH_MXC=y +CONFIG_ARCH_PROC_KCORE_TEXT=y +CONFIG_ARCH_QCOM=y +CONFIG_ARCH_R8A774A1=y +CONFIG_ARCH_R8A774B1=y +CONFIG_ARCH_R8A774C0=y +CONFIG_ARCH_R8A774E1=y +CONFIG_ARCH_R8A77950=y +CONFIG_ARCH_R8A77951=y +CONFIG_ARCH_R8A77960=y +CONFIG_ARCH_R8A77961=y +CONFIG_ARCH_R8A77965=y +CONFIG_ARCH_R8A77970=y +CONFIG_ARCH_R8A77980=y +CONFIG_ARCH_R8A77990=y +CONFIG_ARCH_R8A77995=y +CONFIG_ARCH_R8A779A0=y +CONFIG_ARCH_R8A779F0=y +CONFIG_ARCH_R8A779G0=y +CONFIG_ARCH_R9A07G043=y +CONFIG_ARCH_R9A07G044=y +CONFIG_ARCH_R9A07G054=y +CONFIG_ARCH_R9A09G011=y +CONFIG_ARCH_RANDOM=y +CONFIG_ARCH_RCAR_GEN3=y +CONFIG_ARCH_REALTEK=y +CONFIG_ARCH_RENESAS=y +CONFIG_ARCH_ROCKCHIP=y +CONFIG_ARCH_RZG2L=y +CONFIG_ARCH_S32=y +CONFIG_ARCH_SEATTLE=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SPARX5=y +CONFIG_ARCH_SPRD=y +CONFIG_ARCH_STACKWALK=y +CONFIG_ARCH_SUNXI=y +CONFIG_ARCH_SUPPORTS_ACPI=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_SUPPORTS_CFI_CLANG=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_HUGETLBFS=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG=y +CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_PAGE_TABLE_CHECK=y +CONFIG_ARCH_SUPPORTS_UPROBES=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +CONFIG_ARCH_SYNQUACER=y +CONFIG_ARCH_TEGRA=y +CONFIG_ARCH_TEGRA_132_SOC=y +CONFIG_ARCH_TEGRA_186_SOC=y +CONFIG_ARCH_TEGRA_194_SOC=y +CONFIG_ARCH_TEGRA_210_SOC=y +CONFIG_ARCH_TEGRA_234_SOC=y +CONFIG_ARCH_THUNDER=y +CONFIG_ARCH_THUNDER2=y +# CONFIG_ARCH_UNIPHIER is not set +CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y +CONFIG_ARCH_USES_PG_UNCACHED=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_USE_GNU_PROPERTY=y +CONFIG_ARCH_USE_MEMREMAP_PROT=y +CONFIG_ARCH_USE_MEMTEST=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_USE_SYM_ANNOTATIONS=y +CONFIG_ARCH_VEXPRESS=y +CONFIG_ARCH_VISCONTI=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANTS_NO_INSTR=y +CONFIG_ARCH_WANTS_THP_SWAP=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y +CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y +CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_ARCH_WANT_GENERAL_HUGETLB=y +CONFIG_ARCH_WANT_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y +CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y +CONFIG_ARCH_XGENE=y +CONFIG_ARCH_ZYNQMP=y +CONFIG_ARCNET=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCX_ANYBUS_CONTROLLER=m +CONFIG_ARC_EMAC_CORE=m +CONFIG_ARM64=y +# CONFIG_ARM64_16K_PAGES is not set +CONFIG_ARM64_ACPI_PARKING_PROTOCOL=y +CONFIG_ARM64_AMU_EXTN=y +CONFIG_ARM64_AS_HAS_MTE=y +CONFIG_ARM64_BTI=y +CONFIG_ARM64_CNP=y +CONFIG_ARM64_CRYPTO=y +# CONFIG_ARM64_DEBUG_PRIORITY_MASKING is not set +CONFIG_ARM64_E0PD=y +CONFIG_ARM64_EPAN=y +CONFIG_ARM64_ERRATUM_1024718=y +CONFIG_ARM64_ERRATUM_1165522=y +CONFIG_ARM64_ERRATUM_1286807=y +CONFIG_ARM64_ERRATUM_1319367=y +CONFIG_ARM64_ERRATUM_1418040=y +CONFIG_ARM64_ERRATUM_1463225=y +CONFIG_ARM64_ERRATUM_1508412=y +CONFIG_ARM64_ERRATUM_1530923=y +CONFIG_ARM64_ERRATUM_1542419=y +CONFIG_ARM64_ERRATUM_1742098=y +CONFIG_ARM64_ERRATUM_2051678=y +CONFIG_ARM64_ERRATUM_2054223=y +CONFIG_ARM64_ERRATUM_2067961=y +# CONFIG_ARM64_ERRATUM_2077057 is not set +CONFIG_ARM64_ERRATUM_2441007=y +CONFIG_ARM64_ERRATUM_2441009=y +CONFIG_ARM64_ERRATUM_2457168=y +CONFIG_ARM64_ERRATUM_819472=y +CONFIG_ARM64_ERRATUM_824069=y +CONFIG_ARM64_ERRATUM_826319=y +CONFIG_ARM64_ERRATUM_827319=y +CONFIG_ARM64_ERRATUM_832075=y +CONFIG_ARM64_ERRATUM_834220=y +CONFIG_ARM64_ERRATUM_843419=y +CONFIG_ARM64_ERRATUM_845719=y +CONFIG_ARM64_ERRATUM_858921=y +CONFIG_ARM64_HW_AFDBM=y +CONFIG_ARM64_LD_HAS_FIX_ERRATUM_843419=y +CONFIG_ARM64_LSE_ATOMICS=y +CONFIG_ARM64_MODULE_PLTS=y +CONFIG_ARM64_MTE=y +CONFIG_ARM64_PAN=y +CONFIG_ARM64_PA_BITS=48 +CONFIG_ARM64_PA_BITS_48=y +# CONFIG_ARM64_PA_BITS_52 is not set +CONFIG_ARM64_PMEM=y +CONFIG_ARM64_PSEUDO_NMI=y +CONFIG_ARM64_PTR_AUTH=y +CONFIG_ARM64_PTR_AUTH_KERNEL=y +CONFIG_ARM64_RAS_EXTN=y +# CONFIG_ARM64_RELOC_TEST is not set +CONFIG_ARM64_SME=y +CONFIG_ARM64_SVE=y +CONFIG_ARM64_SW_TTBR0_PAN=y +CONFIG_ARM64_TAGGED_ADDR_ABI=y +CONFIG_ARM64_TLB_RANGE=y +CONFIG_ARM64_USE_LSE_ATOMICS=y +CONFIG_ARM64_VA_BITS=48 +# CONFIG_ARM64_VA_BITS_39 is not set +# CONFIG_ARM64_VA_BITS_42 is not set +CONFIG_ARM64_VA_BITS_48=y +# CONFIG_ARM64_VA_BITS_52 is not set +CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y +CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y +CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y +CONFIG_ARM64_WORKAROUND_TSB_FLUSH_FAILURE=y +CONFIG_ARMADA_37XX_CLK=y +CONFIG_ARMADA_37XX_RWTM_MBOX=m +CONFIG_ARMADA_37XX_WATCHDOG=m +CONFIG_ARMADA_AP806_SYSCON=y +CONFIG_ARMADA_AP_CPU_CLK=y +CONFIG_ARMADA_AP_CP_HELPER=y +CONFIG_ARMADA_CP110_SYSCON=y +CONFIG_ARMADA_THERMAL=y +CONFIG_ARMV8_DEPRECATED=y +CONFIG_ARM_ALLWINNER_SUN50I_CPUFREQ_NVMEM=m +CONFIG_ARM_AMBA=y +CONFIG_ARM_ARCH_TIMER=y +CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y +CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y +CONFIG_ARM_ARMADA_37XX_CPUFREQ=m +CONFIG_ARM_ARMADA_8K_CPUFREQ=m +CONFIG_ARM_BRCMSTB_AVS_CPUFREQ=m +CONFIG_ARM_CCI=y +CONFIG_ARM_CCI400_COMMON=y +CONFIG_ARM_CCI400_PMU=y +CONFIG_ARM_CCI5xx_PMU=y +CONFIG_ARM_CCI_PMU=y +CONFIG_ARM_CCN=y +CONFIG_ARM_CMN=m +CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU=y +CONFIG_ARM_CPUIDLE=y +CONFIG_ARM_DMC620_PMU=m +CONFIG_ARM_DSU_PMU=m +CONFIG_ARM_FFA_SMCCC=y +CONFIG_ARM_FFA_TRANSPORT=m +CONFIG_ARM_GIC=y +CONFIG_ARM_GIC_MAX_NR=1 +CONFIG_ARM_GIC_PM=y +CONFIG_ARM_GIC_V2M=y +CONFIG_ARM_GIC_V3=y +CONFIG_ARM_GIC_V3_ITS=y +CONFIG_ARM_GIC_V3_ITS_FSL_MC=y +CONFIG_ARM_GIC_V3_ITS_PCI=y +CONFIG_ARM_IMX6Q_CPUFREQ=m +CONFIG_ARM_IMX8M_DDRC_DEVFREQ=m +CONFIG_ARM_IMX_BUS_DEVFREQ=m +CONFIG_ARM_IMX_CPUFREQ_DT=m +CONFIG_ARM_MEDIATEK_CPUFREQ=m +CONFIG_ARM_MEDIATEK_CPUFREQ_HW=m +CONFIG_ARM_MHU=m +CONFIG_ARM_MHU_V2=m +CONFIG_ARM_PL172_MPMC=m +CONFIG_ARM_PMU=y +CONFIG_ARM_PMU_ACPI=y +# CONFIG_ARM_PSCI_CHECKER is not set +CONFIG_ARM_PSCI_CPUIDLE=y +CONFIG_ARM_PSCI_CPUIDLE_DOMAIN=y +CONFIG_ARM_PSCI_FW=y +CONFIG_ARM_QCOM_CPUFREQ_HW=m +CONFIG_ARM_QCOM_CPUFREQ_NVMEM=m +CONFIG_ARM_RASPBERRYPI_CPUFREQ=m +CONFIG_ARM_RK3399_DMC_DEVFREQ=m +CONFIG_ARM_SBSA_WATCHDOG=m +CONFIG_ARM_SCMI_CPUFREQ=m +CONFIG_ARM_SCMI_HAVE_MSG=y +CONFIG_ARM_SCMI_HAVE_SHMEM=y +CONFIG_ARM_SCMI_HAVE_TRANSPORT=y +CONFIG_ARM_SCMI_POWER_DOMAIN=m +CONFIG_ARM_SCMI_PROTOCOL=y +CONFIG_ARM_SCMI_TRANSPORT_MAILBOX=y +CONFIG_ARM_SCMI_TRANSPORT_SMC=y +CONFIG_ARM_SCMI_TRANSPORT_SMC_ATOMIC_ENABLE=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO_ATOMIC_ENABLE=y +CONFIG_ARM_SCMI_TRANSPORT_VIRTIO_VERSION1_COMPLIANCE=y +CONFIG_ARM_SCPI_CPUFREQ=m +CONFIG_ARM_SCPI_POWER_DOMAIN=m +CONFIG_ARM_SCPI_PROTOCOL=m +CONFIG_ARM_SDE_INTERFACE=y +CONFIG_ARM_SMCCC_SOC_ID=y +CONFIG_ARM_SMC_WATCHDOG=m +CONFIG_ARM_SMMU=y +# CONFIG_ARM_SMMU_DISABLE_BYPASS_BY_DEFAULT is not set +# CONFIG_ARM_SMMU_LEGACY_DT_BINDINGS is not set +CONFIG_ARM_SMMU_QCOM=y +CONFIG_ARM_SMMU_V3=y +CONFIG_ARM_SMMU_V3_PMU=m +CONFIG_ARM_SMMU_V3_SVA=y +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_SPE_PMU=m +CONFIG_ARM_SUN8I_A33_MBUS_DEVFREQ=m +CONFIG_ARM_TEGRA124_CPUFREQ=y +CONFIG_ARM_TEGRA186_CPUFREQ=m +CONFIG_ARM_TEGRA194_CPUFREQ=m +CONFIG_ARM_TEGRA20_CPUFREQ=y +CONFIG_ARM_TEGRA_DEVFREQ=m +CONFIG_ARM_TIMER_SP804=y +CONFIG_AS3935=m +CONFIG_AS73211=m +CONFIG_ASM_MODVERSIONS=y +CONFIG_ASN1=y +CONFIG_ASN1_ENCODER=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_NB_WMI=m +CONFIG_ASUS_TF103C_DOCK=m +CONFIG_ASUS_WIRELESS=m +CONFIG_ASUS_WMI=m +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +# CONFIG_ASYNC_RAID6_TEST is not set +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y +CONFIG_ASYNC_TX_DMA=y +CONFIG_ASYNC_TX_ENABLE_CHANNEL_SWITCH=y +CONFIG_ASYNC_XOR=m +CONFIG_AS_AVX512=y +CONFIG_AS_HAS_ARMV8_2=y +CONFIG_AS_HAS_ARMV8_4=y +CONFIG_AS_HAS_ARMV8_5=y +CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y +CONFIG_AS_HAS_LDAPR=y +CONFIG_AS_HAS_LSE_ATOMICS=y +CONFIG_AS_HAS_NON_CONST_LEB128=y +CONFIG_AS_HAS_PAC=y +CONFIG_AS_HAS_SHA3=y +CONFIG_AS_IS_GNU=y +CONFIG_AS_SHA1_NI=y +CONFIG_AS_SHA256_NI=y +CONFIG_AS_TPAUSE=y +CONFIG_AS_VERSION=23800 +CONFIG_AT76C50X_USB=m +CONFIG_AT803X_PHY=m +CONFIG_ATA=y +CONFIG_ATALK=m +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_ACPI=y +CONFIG_ATA_BMDMA=y +CONFIG_ATA_FORCE=y +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_SFF=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATH10K=m +CONFIG_ATH10K_AHB=y +CONFIG_ATH10K_CE=y +# CONFIG_ATH10K_DEBUG is not set +CONFIG_ATH10K_DEBUGFS=y +CONFIG_ATH10K_PCI=m +CONFIG_ATH10K_SDIO=m +CONFIG_ATH10K_SNOC=m +CONFIG_ATH10K_SPECTRAL=y +CONFIG_ATH10K_TRACING=y +CONFIG_ATH10K_USB=m +CONFIG_ATH11K=m +CONFIG_ATH11K_AHB=m +# CONFIG_ATH11K_DEBUG is not set +CONFIG_ATH11K_DEBUGFS=y +CONFIG_ATH11K_PCI=m +CONFIG_ATH11K_SPECTRAL=y +CONFIG_ATH11K_TRACING=y +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH5K_PCI=y +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH6KL=m +# CONFIG_ATH6KL_DEBUG is not set +CONFIG_ATH6KL_SDIO=m +# CONFIG_ATH6KL_TRACING is not set +CONFIG_ATH6KL_USB=m +CONFIG_ATH9K=m +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_BTCOEX_SUPPORT=y +CONFIG_ATH9K_CHANNEL_CONTEXT=y +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_COMMON_DEBUG=y +CONFIG_ATH9K_COMMON_SPECTRAL=y +CONFIG_ATH9K_DEBUGFS=y +# CONFIG_ATH9K_DYNACK is not set +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_HWRNG=y +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_PCI_NO_EEPROM=m +CONFIG_ATH9K_PCOEM=y +CONFIG_ATH9K_RFKILL=y +CONFIG_ATH9K_STATION_STATISTICS=y +CONFIG_ATH9K_WOW=y +CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set +CONFIG_ATL1=m +CONFIG_ATL1C=m +CONFIG_ATL1E=m +CONFIG_ATL2=m +CONFIG_ATLAS_EZO_SENSOR=m +CONFIG_ATLAS_PH_SENSOR=m +CONFIG_ATM=m +CONFIG_ATMEL=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FORE200E=m +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_FORE200E_TX_RETRY=16 +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_LANAI=m +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +CONFIG_ATM_SOLOS=m +CONFIG_ATM_TCP=m +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ATP=m +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_ARCH=y +CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y +CONFIG_AUDIT_COMPAT_GENERIC=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUTOFS4_FS=m +CONFIG_AUTOFS_FS=m +CONFIG_AUXDISPLAY=y +CONFIG_AUXILIARY_BUS=y +CONFIG_AX25=m +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_AX88796B_PHY=m +CONFIG_AXI_DMAC=m +CONFIG_AXP20X_ADC=m +CONFIG_AXP20X_POWER=m +CONFIG_AXP288_ADC=m +CONFIG_AXP288_CHARGER=m +CONFIG_AXP288_FUEL_GAUGE=m +CONFIG_B43=m +CONFIG_B43LEGACY=m +# CONFIG_B43LEGACY_DEBUG is not set +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PIO=y +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_B43_BCMA=y +CONFIG_B43_BCMA_PIO=y +# CONFIG_B43_BUSES_BCMA is not set +CONFIG_B43_BUSES_BCMA_AND_SSB=y +# CONFIG_B43_BUSES_SSB is not set +# CONFIG_B43_DEBUG is not set +CONFIG_B43_HWRNG=y +CONFIG_B43_LEDS=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_PCI_AUTOSELECT=y +CONFIG_B43_PHY_G=y +CONFIG_B43_PHY_HT=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PIO=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_SSB=y +CONFIG_B44=m +CONFIG_B44_PCI=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_B53=m +CONFIG_B53_MDIO_DRIVER=m +CONFIG_B53_MMAP_DRIVER=m +CONFIG_B53_SERDES=m +CONFIG_B53_SPI_DRIVER=m +CONFIG_B53_SRAB_DRIVER=m +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_ARCXCNN=m +CONFIG_BACKLIGHT_AS3711=m +CONFIG_BACKLIGHT_BD6107=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_DA9052=m +CONFIG_BACKLIGHT_GPIO=m +CONFIG_BACKLIGHT_KTD253=m +CONFIG_BACKLIGHT_LED=m +CONFIG_BACKLIGHT_LM3533=m +CONFIG_BACKLIGHT_LM3630A=m +CONFIG_BACKLIGHT_LM3639=m +CONFIG_BACKLIGHT_LP855X=m +CONFIG_BACKLIGHT_LP8788=m +CONFIG_BACKLIGHT_LV5207LP=m +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_PANDORA=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_QCOM_WLED=m +CONFIG_BACKLIGHT_RAVE_SP=m +CONFIG_BACKLIGHT_RT4831=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_SKY81452=m +CONFIG_BACKLIGHT_TPS65217=m +CONFIG_BACKLIGHT_WM831X=m +# CONFIG_BACKTRACE_SELF_TEST is not set +CONFIG_BALLOON_COMPACTION=y +CONFIG_BARCO_P50_GPIO=m +CONFIG_BAREUDP=m +CONFIG_BASE_FULL=y +CONFIG_BASE_SMALL=0 +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_BATMAN_V is not set +CONFIG_BATMAN_ADV_BLA=y +CONFIG_BATMAN_ADV_DAT=y +# CONFIG_BATMAN_ADV_DEBUG is not set +CONFIG_BATMAN_ADV_MCAST=y +CONFIG_BATMAN_ADV_NC=y +# CONFIG_BATMAN_ADV_TRACING is not set +CONFIG_BATTERY_88PM860X=m +CONFIG_BATTERY_ACT8945A=m +CONFIG_BATTERY_AXP20X=m +CONFIG_BATTERY_BQ27XXX=m +# CONFIG_BATTERY_BQ27XXX_DT_UPDATES_NVM is not set +CONFIG_BATTERY_BQ27XXX_HDQ=m +CONFIG_BATTERY_BQ27XXX_I2C=m +CONFIG_BATTERY_CPCAP=m +CONFIG_BATTERY_CW2015=m +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DA9052=m +CONFIG_BATTERY_DA9150=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2781=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_GAUGE_LTC2941=m +CONFIG_BATTERY_GOLDFISH=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_MAX1721X=m +CONFIG_BATTERY_RT5033=m +CONFIG_BATTERY_RX51=m +CONFIG_BATTERY_SAMSUNG_SDI=y +CONFIG_BATTERY_SBS=m +CONFIG_BATTERY_SURFACE=m +CONFIG_BATTERY_TWL4030_MADC=m +CONFIG_BATTERY_UG3105=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BCACHE=m +CONFIG_BCACHE_ASYNC_REGISTRATION=y +# CONFIG_BCACHE_CLOSURES_DEBUG is not set +# CONFIG_BCACHE_DEBUG is not set +CONFIG_BCH=m +CONFIG_BCM2711_THERMAL=m +CONFIG_BCM2835_MBOX=y +CONFIG_BCM2835_POWER=y +CONFIG_BCM2835_THERMAL=m +CONFIG_BCM2835_VCHIQ=m +CONFIG_BCM2835_VCHIQ_MMAL=m +CONFIG_BCM2835_WDT=m +CONFIG_BCM4908_ENET=m +CONFIG_BCM54140_PHY=m +CONFIG_BCM7038_L1_IRQ=y +CONFIG_BCM7038_WDT=m +CONFIG_BCM7120_L2_IRQ=m +CONFIG_BCM7XXX_PHY=m +CONFIG_BCM84881_PHY=y +CONFIG_BCM87XX_PHY=m +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +# CONFIG_BCMA_DEBUG is not set +CONFIG_BCMA_DRIVER_GMAC_CMN=y +CONFIG_BCMA_DRIVER_GPIO=y +CONFIG_BCMA_DRIVER_PCI=y +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_HOST_SOC=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCMA_SFLASH=y +CONFIG_BCMGENET=m +CONFIG_BCM_FLEXRM_MBOX=m +CONFIG_BCM_IPROC_ADC=m +CONFIG_BCM_KONA_USB2_PHY=m +CONFIG_BCM_NET_PHYLIB=m +CONFIG_BCM_NS_THERMAL=m +CONFIG_BCM_PDC_MBOX=m +CONFIG_BCM_PMB=y +CONFIG_BCM_SBA_RAID=m +CONFIG_BCM_SR_THERMAL=m +CONFIG_BCM_VIDEOCORE=m +CONFIG_BCM_VK=m +CONFIG_BCM_VK_TTY=y +CONFIG_BD957XMUF_WATCHDOG=m +CONFIG_BE2ISCSI=m +CONFIG_BE2NET=m +CONFIG_BE2NET_BE2=y +CONFIG_BE2NET_BE3=y +CONFIG_BE2NET_HWMON=y +CONFIG_BE2NET_LANCER=y +CONFIG_BE2NET_SKYHAWK=y +# CONFIG_BEFS_DEBUG is not set +CONFIG_BEFS_FS=m +CONFIG_BERLIN2_ADC=m +# CONFIG_BFQ_CGROUP_DEBUG is not set +CONFIG_BFQ_GROUP_IOSCHED=y +CONFIG_BFS_FS=m +CONFIG_BGMAC=y +CONFIG_BGMAC_PLATFORM=y +CONFIG_BH1750=m +CONFIG_BH1780=m +CONFIG_BINARY_PRINTF=y +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_MISC=m +CONFIG_BINFMT_SCRIPT=y +CONFIG_BITREVERSE=y +CONFIG_BLK_CGROUP=y +CONFIG_BLK_CGROUP_FC_APPID=y +CONFIG_BLK_CGROUP_IOCOST=y +# CONFIG_BLK_CGROUP_IOLATENCY is not set +CONFIG_BLK_CGROUP_IOPRIO=y +CONFIG_BLK_CGROUP_RWSTAT=y +CONFIG_BLK_DEBUG_FS=y +CONFIG_BLK_DEBUG_FS_ZONED=y +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +CONFIG_BLK_DEV_BSG_COMMON=y +CONFIG_BLK_DEV_DM=y +CONFIG_BLK_DEV_DM_BUILTIN=y +CONFIG_BLK_DEV_DRBD=m +CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_FD_RAWCMD is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_INTEGRITY_T10=y +CONFIG_BLK_DEV_IO_TRACE=y +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_MD=y +CONFIG_BLK_DEV_NBD=m +CONFIG_BLK_DEV_NULL_BLK=m +CONFIG_BLK_DEV_NVME=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +CONFIG_BLK_DEV_PMEM=m +CONFIG_BLK_DEV_RAM=m +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_RBD=m +CONFIG_BLK_DEV_RNBD=y +CONFIG_BLK_DEV_RNBD_CLIENT=m +CONFIG_BLK_DEV_RNBD_SERVER=m +CONFIG_BLK_DEV_SD=y +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_SX8=m +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_THROTTLING_LOW is not set +CONFIG_BLK_DEV_ZONED=y +CONFIG_BLK_ICQ=y +CONFIG_BLK_INLINE_ENCRYPTION=y +CONFIG_BLK_INLINE_ENCRYPTION_FALLBACK=y +CONFIG_BLK_MQ_PCI=y +CONFIG_BLK_MQ_RDMA=y +CONFIG_BLK_MQ_STACKING=y +CONFIG_BLK_MQ_VIRTIO=y +CONFIG_BLK_PM=y +CONFIG_BLK_RQ_ALLOC_TIME=y +CONFIG_BLK_SED_OPAL=y +CONFIG_BLK_WBT=y +CONFIG_BLK_WBT_MQ=y +CONFIG_BLOCK=y +CONFIG_BLOCK_COMPAT=y +CONFIG_BLOCK_HOLDER_DEPRECATED=y +CONFIG_BLOCK_LEGACY_AUTOLOAD=y +CONFIG_BMA220=m +CONFIG_BMA400=m +CONFIG_BMA400_I2C=m +CONFIG_BMA400_SPI=m +CONFIG_BMC150_ACCEL=m +CONFIG_BMC150_ACCEL_I2C=m +CONFIG_BMC150_ACCEL_SPI=m +CONFIG_BMC150_MAGN=m +CONFIG_BMC150_MAGN_I2C=m +CONFIG_BMC150_MAGN_SPI=m +CONFIG_BME680=m +CONFIG_BME680_I2C=m +CONFIG_BME680_SPI=m +CONFIG_BMG160=m +CONFIG_BMG160_I2C=m +CONFIG_BMG160_SPI=m +CONFIG_BMI088_ACCEL=m +CONFIG_BMI088_ACCEL_SPI=m +CONFIG_BMI160=m +CONFIG_BMI160_I2C=m +CONFIG_BMI160_SPI=m +CONFIG_BMP280=m +CONFIG_BMP280_I2C=m +CONFIG_BMP280_SPI=m +CONFIG_BNA=m +CONFIG_BNX2=m +CONFIG_BNX2X=m +CONFIG_BNX2X_SRIOV=y +CONFIG_BNXT=m +CONFIG_BNXT_DCB=y +CONFIG_BNXT_FLOWER_OFFLOAD=y +CONFIG_BNXT_HWMON=y +CONFIG_BNXT_SRIOV=y +CONFIG_BOARD_TPCI200=m +CONFIG_BONDING=m +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTTIME_TRACING=y +CONFIG_BOOT_CONFIG=y +# CONFIG_BOOT_CONFIG_EMBED is not set +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_BOOT_VESA_SUPPORT=y +CONFIG_BPF=y +CONFIG_BPFILTER=y +CONFIG_BPFILTER_UMH=m +CONFIG_BPF_EVENTS=y +CONFIG_BPF_JIT=y +CONFIG_BPF_JIT_ALWAYS_ON=y +CONFIG_BPF_JIT_DEFAULT_ON=y +CONFIG_BPF_KPROBE_OVERRIDE=y +CONFIG_BPF_LSM=y +# CONFIG_BPF_PRELOAD is not set +CONFIG_BPF_STREAM_PARSER=y +CONFIG_BPF_SYSCALL=y +CONFIG_BPF_UNPRIV_DEFAULT_OFF=y +CONFIG_BPQETHER=m +CONFIG_BQL=y +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_BRCMDBG is not set +CONFIG_BRCMFMAC=m +CONFIG_BRCMFMAC_PCIE=y +CONFIG_BRCMFMAC_PROTO_BCDC=y +CONFIG_BRCMFMAC_PROTO_MSGBUF=y +CONFIG_BRCMFMAC_SDIO=y +CONFIG_BRCMFMAC_USB=y +CONFIG_BRCMSMAC=m +CONFIG_BRCMSMAC_LEDS=y +CONFIG_BRCMSTB_DPFE=y +CONFIG_BRCMSTB_GISB_ARB=y +CONFIG_BRCMSTB_L2_IRQ=y +CONFIG_BRCMSTB_PM=y +CONFIG_BRCMSTB_THERMAL=m +CONFIG_BRCMUTIL=m +CONFIG_BRCM_TRACING=y +CONFIG_BRCM_USB_PINMAP=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_CFM=y +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_MRP=y +CONFIG_BRIDGE_NETFILTER=m +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_VLAN_FILTERING=y +CONFIG_BROADCOM_PHY=m +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_BT=m +CONFIG_BTREE=y +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_DEBUG is not set +CONFIG_BTRFS_FS=m +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +CONFIG_BTRFS_FS_POSIX_ACL=y +# CONFIG_BTRFS_FS_REF_VERIFY is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +CONFIG_BTT=y +CONFIG_BT_6LOWPAN=m +CONFIG_BT_AOSPEXT=y +CONFIG_BT_ATH3K=m +CONFIG_BT_BCM=m +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_BREDR=y +CONFIG_BT_CMTP=m +CONFIG_BT_DEBUGFS=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIBTUSB_AUTOSUSPEND=y +CONFIG_BT_HCIBTUSB_BCM=y +CONFIG_BT_HCIBTUSB_MTK=y +CONFIG_BT_HCIBTUSB_RTL=y +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIRSI=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_AG6XX=y +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_BCM=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_INTEL=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIUART_MRVL=y +CONFIG_BT_HCIUART_NOKIA=m +CONFIG_BT_HCIUART_QCA=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIVHCI=m +CONFIG_BT_HIDP=m +CONFIG_BT_HS=y +CONFIG_BT_INTEL=m +CONFIG_BT_LE=y +CONFIG_BT_LEDS=y +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_MSFTEXT=y +CONFIG_BT_MTK=m +CONFIG_BT_MTKSDIO=m +CONFIG_BT_MTKUART=m +CONFIG_BT_QCA=m +CONFIG_BT_QCOMSMD=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_RTL=m +# CONFIG_BT_SELFTEST is not set +CONFIG_BT_VIRTIO=m +CONFIG_BUG=y +# CONFIG_BUG_ON_DATA_CORRUPTION is not set +CONFIG_BUILDTIME_MCOUNT_SORT=y +CONFIG_BUILDTIME_TABLE_SORT=y +CONFIG_BUILD_BIN2C=y +CONFIG_BUILD_SALT="" +CONFIG_BXT_WC_PMIC_OPREGION=y +CONFIG_BYTCRC_PMIC_OPREGION=y +CONFIG_C2PORT=m +CONFIG_C2PORT_DURAMAR_2150=m +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +CONFIG_CACHEFILES_ERROR_INJECTION=y +# CONFIG_CACHEFILES_ONDEMAND is not set +CONFIG_CADENCE_WATCHDOG=m +CONFIG_CAIF=m +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_DRIVERS=y +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_TTY=m +CONFIG_CAIF_USB=m +CONFIG_CAIF_VIRTIO=m +CONFIG_CAN=m +CONFIG_CAN_8DEV_USB=m +CONFIG_CAN_BCM=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_CC770=m +CONFIG_CAN_CC770_ISA=m +CONFIG_CAN_CC770_PLATFORM=m +CONFIG_CAN_CTUCANFD=m +CONFIG_CAN_CTUCANFD_PCI=m +CONFIG_CAN_CTUCANFD_PLATFORM=m +CONFIG_CAN_C_CAN=m +CONFIG_CAN_C_CAN_PCI=m +CONFIG_CAN_C_CAN_PLATFORM=m +# CONFIG_CAN_DEBUG_DEVICES is not set +CONFIG_CAN_DEV=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_ETAS_ES58X=m +CONFIG_CAN_F81601=m +CONFIG_CAN_FLEXCAN=m +CONFIG_CAN_GRCAN=m +CONFIG_CAN_GS_USB=m +CONFIG_CAN_GW=m +CONFIG_CAN_HI311X=m +CONFIG_CAN_IFI_CANFD=m +CONFIG_CAN_ISOTP=m +CONFIG_CAN_J1939=m +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_KVASER_PCIEFD=m +CONFIG_CAN_KVASER_USB=m +CONFIG_CAN_MCBA_USB=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MCP251XFD=m +# CONFIG_CAN_MCP251XFD_SANITY is not set +CONFIG_CAN_M_CAN=m +CONFIG_CAN_M_CAN_PCI=m +CONFIG_CAN_M_CAN_PLATFORM=m +CONFIG_CAN_M_CAN_TCAN4X5X=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PEAK_PCIEC=y +CONFIG_CAN_PEAK_PCIEFD=m +CONFIG_CAN_PEAK_PCMCIA=m +CONFIG_CAN_PEAK_USB=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_RAW=m +CONFIG_CAN_RCAR=m +CONFIG_CAN_RCAR_CANFD=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m +CONFIG_CAN_UCAN=m +CONFIG_CAN_VCAN=m +CONFIG_CAN_VXCAN=m +CONFIG_CAN_XILINXCAN=m +CONFIG_CAPI_TRACE=y +CONFIG_CARDBUS=y +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_CARL9170=m +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_HWRNG=y +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_CASSINI=m +CONFIG_CAVIUM_CPT=m +CONFIG_CAVIUM_ERRATUM_22375=y +CONFIG_CAVIUM_ERRATUM_23144=y +CONFIG_CAVIUM_ERRATUM_23154=y +CONFIG_CAVIUM_ERRATUM_27456=y +CONFIG_CAVIUM_ERRATUM_30115=y +CONFIG_CAVIUM_PTP=m +CONFIG_CAVIUM_TX2_ERRATUM_219=y +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_CC10001_ADC=m +CONFIG_CCS811=m +CONFIG_CC_CAN_LINK=y +CONFIG_CC_CAN_LINK_STATIC=y +CONFIG_CC_HAS_ASM_GOTO=y +CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y +CONFIG_CC_HAS_ASM_GOTO_TIED_OUTPUT=y +CONFIG_CC_HAS_ASM_INLINE=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y +CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y +CONFIG_CC_HAS_IBT=y +CONFIG_CC_HAS_INT128=y +CONFIG_CC_HAS_KASAN_GENERIC=y +CONFIG_CC_HAS_KASAN_SW_TAGS=y +CONFIG_CC_HAS_NO_PROFILE_FN_ATTR=y +CONFIG_CC_HAS_RETURN_THUNK=y +CONFIG_CC_HAS_SANCOV_TRACE_PC=y +CONFIG_CC_HAS_SANE_STACKPROTECTOR=y +CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y +CONFIG_CC_HAS_SLS=y +CONFIG_CC_HAS_UBSAN_BOUNDS=y +CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y +CONFIG_CC_HAS_ZERO_CALL_USED_REGS=y +CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y +CONFIG_CC_IMPLICIT_FALLTHROUGH="-Wimplicit-fallthrough=5" +CONFIG_CC_IS_GCC=y +CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_CDNS_I3C_MASTER=m +CONFIG_CDROM=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_CEC_CH7322=m +CONFIG_CEC_CORE=m +CONFIG_CEC_CROS_EC=m +CONFIG_CEC_GPIO=m +CONFIG_CEC_MESON_AO=m +CONFIG_CEC_MESON_G12A_AO=m +CONFIG_CEC_NOTIFIER=y +CONFIG_CEC_PIN=y +# CONFIG_CEC_PIN_ERROR_INJ is not set +CONFIG_CEC_SECO=m +CONFIG_CEC_SECO_RC=y +CONFIG_CEC_TEGRA=m +CONFIG_CEPH_FS=m +CONFIG_CEPH_FSCACHE=y +CONFIG_CEPH_FS_POSIX_ACL=y +CONFIG_CEPH_FS_SECURITY_LABEL=y +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_CFG80211=m +# CONFIG_CFG80211_CERTIFICATION_ONUS is not set +CONFIG_CFG80211_CRDA_SUPPORT=y +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +CONFIG_CFG80211_REQUIRE_SIGNED_REGDB=y +CONFIG_CFG80211_USE_KERNEL_REGDB_KEYS=y +CONFIG_CFG80211_WEXT=y +CONFIG_CFG80211_WEXT_EXPORT=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_BPF=y +CONFIG_CGROUP_CPUACCT=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_HUGETLB=y +CONFIG_CGROUP_MISC=y +CONFIG_CGROUP_NET_CLASSID=y +CONFIG_CGROUP_NET_PRIO=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_PIDS=y +CONFIG_CGROUP_RDMA=y +CONFIG_CGROUP_SCHED=y +CONFIG_CGROUP_WRITEBACK=y +CONFIG_CHARGER_88PM860X=m +CONFIG_CHARGER_ADP5061=m +CONFIG_CHARGER_AXP20X=m +CONFIG_CHARGER_BD99954=m +CONFIG_CHARGER_BQ2415X=m +CONFIG_CHARGER_BQ24190=m +CONFIG_CHARGER_BQ24257=m +CONFIG_CHARGER_BQ24735=m +CONFIG_CHARGER_BQ2515X=m +CONFIG_CHARGER_BQ256XX=m +CONFIG_CHARGER_BQ25890=m +CONFIG_CHARGER_BQ25980=m +CONFIG_CHARGER_CPCAP=m +CONFIG_CHARGER_CROS_PCHG=m +CONFIG_CHARGER_CROS_USBPD=m +CONFIG_CHARGER_DA9150=m +CONFIG_CHARGER_DETECTOR_MAX14656=m +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_LP8727=m +CONFIG_CHARGER_LP8788=m +CONFIG_CHARGER_LT3651=m +CONFIG_CHARGER_LTC4162L=m +CONFIG_CHARGER_MANAGER=y +CONFIG_CHARGER_MAX14577=m +CONFIG_CHARGER_MAX77650=m +CONFIG_CHARGER_MAX77693=m +CONFIG_CHARGER_MAX77976=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_MP2629=m +CONFIG_CHARGER_MT6360=m +CONFIG_CHARGER_PCF50633=m +CONFIG_CHARGER_QCOM_SMBB=m +CONFIG_CHARGER_RT9455=m +CONFIG_CHARGER_SBS=m +CONFIG_CHARGER_SC2731=m +CONFIG_CHARGER_SMB347=m +CONFIG_CHARGER_SURFACE=m +CONFIG_CHARGER_TPS65090=m +CONFIG_CHARGER_TPS65217=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHARGER_UCS1002=m +CONFIG_CHARGER_WILCO=m +CONFIG_CHARLCD=m +CONFIG_CHARLCD_BL_FLASH=y +# CONFIG_CHARLCD_BL_OFF is not set +# CONFIG_CHARLCD_BL_ON is not set +CONFIG_CHECKPOINT_RESTORE=y +CONFIG_CHECK_SIGNATURE=y +CONFIG_CHELSIO_INLINE_CRYPTO=y +CONFIG_CHELSIO_IPSEC_INLINE=m +CONFIG_CHELSIO_LIB=m +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_CHELSIO_T4_DCB=y +CONFIG_CHELSIO_T4_FCOE=y +CONFIG_CHELSIO_TLS_DEVICE=m +CONFIG_CHROMEOS_ACPI=m +CONFIG_CHROMEOS_LAPTOP=m +CONFIG_CHROMEOS_PRIVACY_SCREEN=m +CONFIG_CHROMEOS_PSTORE=m +CONFIG_CHROMEOS_TBMC=m +CONFIG_CHROME_PLATFORMS=y +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHTCRC_PMIC_OPREGION=y +CONFIG_CHT_DC_TI_PMIC_OPREGION=y +CONFIG_CHT_WC_PMIC_OPREGION=y +CONFIG_CICADA_PHY=m +CONFIG_CIFS=m +CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_FSCACHE=y +CONFIG_CIFS_POSIX=y +# CONFIG_CIFS_SMB_DIRECT is not set +# CONFIG_CIFS_STATS2 is not set +CONFIG_CIFS_SWN_UPCALL=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIO2_BRIDGE=y +CONFIG_CIO_DAC=m +CONFIG_CLANG_VERSION=0 +CONFIG_CLKBLD_I8253=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLK_ACTIONS=y +CONFIG_CLK_BCM2711_DVP=m +CONFIG_CLK_BCM2835=y +CONFIG_CLK_BCM_NS2=y +CONFIG_CLK_BCM_SR=y +CONFIG_CLK_GFM_LPASS_SM8250=m +CONFIG_CLK_ICST=y +CONFIG_CLK_IMX8MM=y +CONFIG_CLK_IMX8MN=y +CONFIG_CLK_IMX8MP=y +CONFIG_CLK_IMX8MQ=y +CONFIG_CLK_IMX8QXP=y +CONFIG_CLK_IMX8ULP=m +CONFIG_CLK_IMX93=m +CONFIG_CLK_INTEL_SOCFPGA=y +CONFIG_CLK_INTEL_SOCFPGA64=y +CONFIG_CLK_LS1028A_PLLDIG=m +CONFIG_CLK_OWL_S500=y +CONFIG_CLK_OWL_S700=y +CONFIG_CLK_OWL_S900=y +CONFIG_CLK_PX30=y +CONFIG_CLK_QORIQ=y +CONFIG_CLK_R8A774A1=y +CONFIG_CLK_R8A774B1=y +CONFIG_CLK_R8A774C0=y +CONFIG_CLK_R8A774E1=y +CONFIG_CLK_R8A7795=y +CONFIG_CLK_R8A77960=y +CONFIG_CLK_R8A77961=y +CONFIG_CLK_R8A77965=y +CONFIG_CLK_R8A77970=y +CONFIG_CLK_R8A77980=y +CONFIG_CLK_R8A77990=y +CONFIG_CLK_R8A77995=y +CONFIG_CLK_R8A779A0=y +CONFIG_CLK_R8A779F0=y +CONFIG_CLK_R8A779G0=y +CONFIG_CLK_R9A07G043=y +CONFIG_CLK_R9A07G044=y +CONFIG_CLK_R9A07G054=y +CONFIG_CLK_R9A09G011=y +CONFIG_CLK_RASPBERRYPI=m +CONFIG_CLK_RCAR_CPG_LIB=y +CONFIG_CLK_RCAR_GEN3_CPG=y +CONFIG_CLK_RCAR_GEN4_CPG=y +CONFIG_CLK_RCAR_USB2_CLOCK_SEL=y +CONFIG_CLK_RENESAS=y +CONFIG_CLK_RENESAS_CPG_MSSR=y +CONFIG_CLK_RENESAS_DIV6=y +CONFIG_CLK_RK3308=y +CONFIG_CLK_RK3328=y +CONFIG_CLK_RK3368=y +CONFIG_CLK_RK3399=y +CONFIG_CLK_RK3568=y +CONFIG_CLK_RZG2L=y +CONFIG_CLK_SP810=y +CONFIG_CLK_SUNXI=y +CONFIG_CLK_SUNXI_CLOCKS=y +CONFIG_CLK_SUNXI_PRCM_SUN6I=y +CONFIG_CLK_SUNXI_PRCM_SUN8I=y +CONFIG_CLK_SUNXI_PRCM_SUN9I=y +CONFIG_CLK_TEGRA_BPMP=y +CONFIG_CLK_TWL6040=m +CONFIG_CLK_VEXPRESS_OSC=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLOCKSOURCE_WATCHDOG_MAX_SKEW_US=100 +CONFIG_CLONE_BACKWARDS=y +CONFIG_CLS_U32_MARK=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CLZ_TAB=y +CONFIG_CM32181=m +CONFIG_CM3232=m +CONFIG_CM3323=m +CONFIG_CM3605=m +CONFIG_CM36651=m +CONFIG_CMA_ALIGNMENT=8 +CONFIG_CMA_AREAS=7 +# CONFIG_CMA_DEBUG is not set +# CONFIG_CMA_DEBUGFS is not set +CONFIG_CMA_SIZE_MBYTES=32 +# CONFIG_CMA_SIZE_SEL_MAX is not set +CONFIG_CMA_SIZE_SEL_MBYTES=y +# CONFIG_CMA_SIZE_SEL_MIN is not set +# CONFIG_CMA_SIZE_SEL_PERCENTAGE is not set +CONFIG_CMA_SYSFS=y +CONFIG_CMDLINE="console=ttyAMA0" +# CONFIG_CMDLINE_BOOL is not set +# CONFIG_CMDLINE_FORCE is not set +CONFIG_CMDLINE_FROM_BOOTLOADER=y +CONFIG_CMDLINE_PARTITION=y +CONFIG_CNIC=m +CONFIG_CODA_FS=m +CONFIG_COMEDI=m +CONFIG_COMEDI_8254=m +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_8255_PCI=m +CONFIG_COMEDI_8255_SA=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADDI_WATCHDOG=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7X3X=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1720=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI1724=m +CONFIG_COMEDI_ADV_PCI1760=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_DIO200_ISA=m +CONFIG_COMEDI_AMPLC_DIO200_PCI=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_AMPLC_PC236_ISA=m +CONFIG_COMEDI_AMPLC_PC236_PCI=m +CONFIG_COMEDI_AMPLC_PC263_ISA=m +CONFIG_COMEDI_AMPLC_PC263_PCI=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAC02=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_DAS08_ISA=m +CONFIG_COMEDI_DAS08_PCI=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DAS800=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_ISADMA=m +CONFIG_COMEDI_ISA_DRIVERS=y +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_MF6X4=m +CONFIG_COMEDI_MISC_DRIVERS=y +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_LABPC_ISA=m +CONFIG_COMEDI_NI_LABPC_ISADMA=m +CONFIG_COMEDI_NI_LABPC_PCI=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_NI_ROUTING=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_NI_TIOCMD=m +CONFIG_COMEDI_NI_USB6501=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_TESTS=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMMON_CLK=y +CONFIG_COMMON_CLK_APPLE_NCO=m +CONFIG_COMMON_CLK_AXG=y +CONFIG_COMMON_CLK_AXG_AUDIO=m +CONFIG_COMMON_CLK_AXI_CLKGEN=m +CONFIG_COMMON_CLK_BD718XX=m +CONFIG_COMMON_CLK_BM1880=y +CONFIG_COMMON_CLK_CDCE706=m +CONFIG_COMMON_CLK_CDCE925=m +CONFIG_COMMON_CLK_CS2000_CP=m +CONFIG_COMMON_CLK_FIXED_MMIO=y +CONFIG_COMMON_CLK_FSL_FLEXSPI=m +CONFIG_COMMON_CLK_FSL_SAI=y +CONFIG_COMMON_CLK_G12A=y +CONFIG_COMMON_CLK_GXBB=y +CONFIG_COMMON_CLK_HI3516CV300=m +CONFIG_COMMON_CLK_HI3519=m +CONFIG_COMMON_CLK_HI3559A=y +CONFIG_COMMON_CLK_HI3660=y +CONFIG_COMMON_CLK_HI3670=y +CONFIG_COMMON_CLK_HI3798CV200=m +CONFIG_COMMON_CLK_HI6220=y +CONFIG_COMMON_CLK_HI655X=m +CONFIG_COMMON_CLK_IPROC=y +CONFIG_COMMON_CLK_LOCHNAGAR=m +CONFIG_COMMON_CLK_MAX77686=m +CONFIG_COMMON_CLK_MAX9485=m +CONFIG_COMMON_CLK_MEDIATEK=y +CONFIG_COMMON_CLK_MESON_AO_CLKC=y +CONFIG_COMMON_CLK_MESON_CPU_DYNDIV=y +CONFIG_COMMON_CLK_MESON_DUALDIV=y +CONFIG_COMMON_CLK_MESON_EE_CLKC=y +CONFIG_COMMON_CLK_MESON_MPLL=y +CONFIG_COMMON_CLK_MESON_PHASE=m +CONFIG_COMMON_CLK_MESON_PLL=y +CONFIG_COMMON_CLK_MESON_REGMAP=y +CONFIG_COMMON_CLK_MESON_SCLK_DIV=m +CONFIG_COMMON_CLK_MESON_VID_PLL_DIV=y +CONFIG_COMMON_CLK_MT2712=y +CONFIG_COMMON_CLK_MT2712_BDPSYS=y +CONFIG_COMMON_CLK_MT2712_IMGSYS=y +CONFIG_COMMON_CLK_MT2712_JPGDECSYS=y +CONFIG_COMMON_CLK_MT2712_MFGCFG=y +CONFIG_COMMON_CLK_MT2712_MMSYS=y +CONFIG_COMMON_CLK_MT2712_VDECSYS=y +CONFIG_COMMON_CLK_MT2712_VENCSYS=y +CONFIG_COMMON_CLK_MT6765=y +CONFIG_COMMON_CLK_MT6765_AUDIOSYS=y +CONFIG_COMMON_CLK_MT6765_CAMSYS=y +CONFIG_COMMON_CLK_MT6765_GCESYS=y +CONFIG_COMMON_CLK_MT6765_IMGSYS=y +CONFIG_COMMON_CLK_MT6765_MFGSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI0BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI1BSYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2ASYS=y +CONFIG_COMMON_CLK_MT6765_MIPI2BSYS=y +CONFIG_COMMON_CLK_MT6765_MMSYS=y +CONFIG_COMMON_CLK_MT6765_VCODECSYS=y +CONFIG_COMMON_CLK_MT6779=y +CONFIG_COMMON_CLK_MT6779_AUDSYS=y +CONFIG_COMMON_CLK_MT6779_CAMSYS=y +CONFIG_COMMON_CLK_MT6779_IMGSYS=y +CONFIG_COMMON_CLK_MT6779_IPESYS=y +CONFIG_COMMON_CLK_MT6779_MFGCFG=y +CONFIG_COMMON_CLK_MT6779_MMSYS=y +CONFIG_COMMON_CLK_MT6779_VDECSYS=y +CONFIG_COMMON_CLK_MT6779_VENCSYS=y +CONFIG_COMMON_CLK_MT6797=y +CONFIG_COMMON_CLK_MT6797_IMGSYS=y +CONFIG_COMMON_CLK_MT6797_MMSYS=y +CONFIG_COMMON_CLK_MT6797_VDECSYS=y +CONFIG_COMMON_CLK_MT6797_VENCSYS=y +CONFIG_COMMON_CLK_MT7622=y +CONFIG_COMMON_CLK_MT7622_AUDSYS=y +CONFIG_COMMON_CLK_MT7622_ETHSYS=y +CONFIG_COMMON_CLK_MT7622_HIFSYS=y +CONFIG_COMMON_CLK_MT7986=y +CONFIG_COMMON_CLK_MT7986_ETHSYS=y +CONFIG_COMMON_CLK_MT8167=y +CONFIG_COMMON_CLK_MT8167_AUDSYS=y +CONFIG_COMMON_CLK_MT8167_IMGSYS=y +CONFIG_COMMON_CLK_MT8167_MFGCFG=y +CONFIG_COMMON_CLK_MT8167_MMSYS=y +CONFIG_COMMON_CLK_MT8167_VDECSYS=y +CONFIG_COMMON_CLK_MT8173=y +CONFIG_COMMON_CLK_MT8173_MMSYS=y +CONFIG_COMMON_CLK_MT8183=y +CONFIG_COMMON_CLK_MT8183_AUDIOSYS=y +CONFIG_COMMON_CLK_MT8183_CAMSYS=y +CONFIG_COMMON_CLK_MT8183_IMGSYS=y +CONFIG_COMMON_CLK_MT8183_IPU_ADL=y +CONFIG_COMMON_CLK_MT8183_IPU_CONN=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE0=y +CONFIG_COMMON_CLK_MT8183_IPU_CORE1=y +CONFIG_COMMON_CLK_MT8183_MFGCFG=y +CONFIG_COMMON_CLK_MT8183_MMSYS=y +CONFIG_COMMON_CLK_MT8183_VDECSYS=y +CONFIG_COMMON_CLK_MT8183_VENCSYS=y +CONFIG_COMMON_CLK_MT8186=y +CONFIG_COMMON_CLK_MT8192=y +CONFIG_COMMON_CLK_MT8192_AUDSYS=y +CONFIG_COMMON_CLK_MT8192_CAMSYS=y +CONFIG_COMMON_CLK_MT8192_IMGSYS=y +CONFIG_COMMON_CLK_MT8192_IMP_IIC_WRAP=y +CONFIG_COMMON_CLK_MT8192_IPESYS=y +CONFIG_COMMON_CLK_MT8192_MDPSYS=y +CONFIG_COMMON_CLK_MT8192_MFGCFG=y +CONFIG_COMMON_CLK_MT8192_MMSYS=y +CONFIG_COMMON_CLK_MT8192_MSDC=y +CONFIG_COMMON_CLK_MT8192_SCP_ADSP=y +CONFIG_COMMON_CLK_MT8192_VDECSYS=y +CONFIG_COMMON_CLK_MT8192_VENCSYS=y +CONFIG_COMMON_CLK_MT8195=y +CONFIG_COMMON_CLK_MT8516=y +CONFIG_COMMON_CLK_MT8516_AUDSYS=y +CONFIG_COMMON_CLK_PALMAS=m +CONFIG_COMMON_CLK_PWM=m +CONFIG_COMMON_CLK_QCOM=m +CONFIG_COMMON_CLK_RK808=m +CONFIG_COMMON_CLK_ROCKCHIP=y +CONFIG_COMMON_CLK_RS9_PCIE=m +CONFIG_COMMON_CLK_S2MPS11=m +CONFIG_COMMON_CLK_SCMI=m +CONFIG_COMMON_CLK_SCPI=m +CONFIG_COMMON_CLK_SI514=m +CONFIG_COMMON_CLK_SI5341=m +CONFIG_COMMON_CLK_SI5351=m +CONFIG_COMMON_CLK_SI544=m +CONFIG_COMMON_CLK_SI570=m +CONFIG_COMMON_CLK_TPS68470=m +CONFIG_COMMON_CLK_VC5=m +CONFIG_COMMON_CLK_VISCONTI=y +CONFIG_COMMON_CLK_WM831X=m +CONFIG_COMMON_CLK_XGENE=y +CONFIG_COMMON_CLK_XLNX_CLKWZRD=m +CONFIG_COMMON_CLK_ZYNQMP=y +CONFIG_COMMON_RESET_HI3660=m +CONFIG_COMMON_RESET_HI6220=m +CONFIG_COMPACTION=y +CONFIG_COMPAL_LAPTOP=m +CONFIG_COMPAT=y +CONFIG_COMPAT_32=y +CONFIG_COMPAT_32BIT_TIME=y +CONFIG_COMPAT_BINFMT_ELF=y +# CONFIG_COMPAT_BRK is not set +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +CONFIG_COMPAT_OLD_SIGACTION=y +# CONFIG_COMPAT_VDSO is not set +# CONFIG_COMPILE_TEST is not set +CONFIG_CONFIGFS_FS=y +CONFIG_CONNECTOR=y +CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7 +CONFIG_CONSOLE_LOGLEVEL_QUIET=4 +CONFIG_CONSOLE_POLL=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_CONTIG_ALLOC=y +CONFIG_CORDIC=m +CONFIG_COREDUMP=y +# CONFIG_CORESIGHT is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +CONFIG_CORTINA_PHY=m +CONFIG_COUNTER=m +CONFIG_CP15_BARRIER_EMULATION=y +# CONFIG_CPA_DEBUG is not set +CONFIG_CPCAP_ADC=m +CONFIG_CPU5_WDT=m +CONFIG_CPUFREQ_DT=y +CONFIG_CPUFREQ_DT_PLATDEV=y +CONFIG_CPUMASK_OFFSTACK=y +CONFIG_CPUSETS=y +# CONFIG_CPU_BIG_ENDIAN is not set +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_ATTR_SET=y +CONFIG_CPU_FREQ_GOV_COMMON=y +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_SCHEDUTIL=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_FREQ_THERMAL=y +# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set +CONFIG_CPU_IBPB_ENTRY=y +CONFIG_CPU_IBRS_ENTRY=y +CONFIG_CPU_IDLE=y +CONFIG_CPU_IDLE_GOV_HALTPOLL=y +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_IDLE_GOV_TEO=y +CONFIG_CPU_IDLE_MULTIPLE_DRIVERS=y +CONFIG_CPU_IDLE_THERMAL=y +CONFIG_CPU_ISOLATION=y +CONFIG_CPU_LITTLE_ENDIAN=y +CONFIG_CPU_PM=y +CONFIG_CPU_RMAP=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_HYGON=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_ZHAOXIN=y +CONFIG_CPU_THERMAL=y +CONFIG_CPU_UNRET_ENTRY=y +CONFIG_CRAMFS=m +CONFIG_CRAMFS_BLOCKDEV=y +CONFIG_CRAMFS_MTD=y +CONFIG_CRASH_CORE=y +CONFIG_CRASH_DUMP=y +CONFIG_CRC16=y +CONFIG_CRC32=y +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_SELFTEST is not set +# CONFIG_CRC32_SLICEBY4 is not set +CONFIG_CRC32_SLICEBY8=y +CONFIG_CRC4=m +CONFIG_CRC64=y +CONFIG_CRC64_ROCKSOFT=y +CONFIG_CRC7=m +CONFIG_CRC_CCITT=y +CONFIG_CRC_ITU_T=m +CONFIG_CRC_T10DIF=y +CONFIG_CROSS_MEMORY_ATTACH=y +CONFIG_CROS_EC=m +CONFIG_CROS_EC_CHARDEV=m +CONFIG_CROS_EC_DEBUGFS=m +CONFIG_CROS_EC_I2C=m +CONFIG_CROS_EC_ISHTP=m +CONFIG_CROS_EC_LIGHTBAR=m +CONFIG_CROS_EC_LPC=m +CONFIG_CROS_EC_MKBP_PROXIMITY=m +CONFIG_CROS_EC_PROTO=y +CONFIG_CROS_EC_RPMSG=m +CONFIG_CROS_EC_SENSORHUB=m +CONFIG_CROS_EC_SPI=m +CONFIG_CROS_EC_SYSFS=m +CONFIG_CROS_EC_TYPEC=m +CONFIG_CROS_EC_VBC=m +CONFIG_CROS_KBD_LED_BACKLIGHT=m +CONFIG_CROS_USBPD_LOGGER=m +CONFIG_CROS_USBPD_NOTIFY=m +CONFIG_CRYPTO=y +CONFIG_CRYPTO_842=m +CONFIG_CRYPTO_ACOMP2=y +CONFIG_CRYPTO_ADIANTUM=m +CONFIG_CRYPTO_AEAD=y +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AEGIS128=m +CONFIG_CRYPTO_AEGIS128_AESNI_SSE2=m +CONFIG_CRYPTO_AEGIS128_SIMD=y +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_ARM64=m +CONFIG_CRYPTO_AES_ARM64_BS=m +CONFIG_CRYPTO_AES_ARM64_CE=m +CONFIG_CRYPTO_AES_ARM64_CE_BLK=m +CONFIG_CRYPTO_AES_ARM64_CE_CCM=m +CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_AES_TI=m +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_BLAKE2S=y +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_CURVE25519=m +CONFIG_CRYPTO_ARCH_HAVE_LIB_POLY1305=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_BLAKE2B=m +CONFIG_CRYPTO_BLAKE2S_X86=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_CAMELLIA_X86_64=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST5_AVX_X86_64=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CAST6_AVX_X86_64=m +CONFIG_CRYPTO_CAST_COMMON=m +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_CFB=m +CONFIG_CRYPTO_CHACHA20=m +CONFIG_CRYPTO_CHACHA20POLY1305=m +CONFIG_CRYPTO_CHACHA20_NEON=m +CONFIG_CRYPTO_CHACHA20_X86_64=m +CONFIG_CRYPTO_CMAC=m +CONFIG_CRYPTO_CRC32=m +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRC32_PCLMUL=m +CONFIG_CRYPTO_CRC64_ROCKSOFT=y +CONFIG_CRYPTO_CRCT10DIF=y +CONFIG_CRYPTO_CRCT10DIF_ARM64_CE=m +CONFIG_CRYPTO_CRCT10DIF_PCLMUL=m +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_CTR=y +CONFIG_CRYPTO_CTS=y +CONFIG_CRYPTO_CURVE25519=m +CONFIG_CRYPTO_CURVE25519_X86=m +CONFIG_CRYPTO_DEFLATE=y +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DES3_EDE_X86_64=m +CONFIG_CRYPTO_DEV_ALLWINNER=y +CONFIG_CRYPTO_DEV_AMLOGIC_GXL=m +# CONFIG_CRYPTO_DEV_AMLOGIC_GXL_DEBUG is not set +CONFIG_CRYPTO_DEV_ATMEL_ECC=m +CONFIG_CRYPTO_DEV_ATMEL_I2C=m +CONFIG_CRYPTO_DEV_ATMEL_SHA204A=m +CONFIG_CRYPTO_DEV_BCM_SPU=m +CONFIG_CRYPTO_DEV_CAVIUM_ZIP=m +CONFIG_CRYPTO_DEV_CCP=y +CONFIG_CRYPTO_DEV_CCP_CRYPTO=m +CONFIG_CRYPTO_DEV_CCP_DD=m +# CONFIG_CRYPTO_DEV_CCP_DEBUGFS is not set +CONFIG_CRYPTO_DEV_CCREE=m +CONFIG_CRYPTO_DEV_CHELSIO=m +CONFIG_CRYPTO_DEV_CPT=m +CONFIG_CRYPTO_DEV_FSL_CAAM=m +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_AHASH_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_COMMON=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_DESC=m +CONFIG_CRYPTO_DEV_FSL_CAAM_CRYPTO_API_QI=y +# CONFIG_CRYPTO_DEV_FSL_CAAM_DEBUG is not set +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC=y +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_COUNT_THLD=255 +CONFIG_CRYPTO_DEV_FSL_CAAM_INTC_TIME_THLD=2048 +CONFIG_CRYPTO_DEV_FSL_CAAM_JR=m +CONFIG_CRYPTO_DEV_FSL_CAAM_PKC_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_PRNG_API=y +CONFIG_CRYPTO_DEV_FSL_CAAM_RINGSIZE=9 +CONFIG_CRYPTO_DEV_FSL_CAAM_RNG_API=y +CONFIG_CRYPTO_DEV_FSL_DPAA2_CAAM=m +CONFIG_CRYPTO_DEV_HISI_HPRE=m +CONFIG_CRYPTO_DEV_HISI_QM=m +CONFIG_CRYPTO_DEV_HISI_SEC=m +CONFIG_CRYPTO_DEV_HISI_SEC2=m +CONFIG_CRYPTO_DEV_HISI_TRNG=m +CONFIG_CRYPTO_DEV_HISI_ZIP=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_CTS=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_AES_SM4_ECB=y +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_ECC=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU=m +CONFIG_CRYPTO_DEV_KEEMBAY_OCS_HCU_HMAC_SHA224=y +CONFIG_CRYPTO_DEV_MARVELL=m +CONFIG_CRYPTO_DEV_MARVELL_CESA=m +# CONFIG_CRYPTO_DEV_MXS_DCP is not set +CONFIG_CRYPTO_DEV_NITROX=m +CONFIG_CRYPTO_DEV_NITROX_CNN55XX=m +CONFIG_CRYPTO_DEV_OCTEONTX2_CPT=m +CONFIG_CRYPTO_DEV_OCTEONTX_CPT=m +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_QAT=m +CONFIG_CRYPTO_DEV_QAT_4XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXX=m +CONFIG_CRYPTO_DEV_QAT_C3XXXVF=m +CONFIG_CRYPTO_DEV_QAT_C62X=m +CONFIG_CRYPTO_DEV_QAT_C62XVF=m +CONFIG_CRYPTO_DEV_QAT_DH895xCC=m +CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m +CONFIG_CRYPTO_DEV_QCE=m +CONFIG_CRYPTO_DEV_QCE_AEAD=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_AEAD is not set +CONFIG_CRYPTO_DEV_QCE_ENABLE_ALL=y +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SHA is not set +# CONFIG_CRYPTO_DEV_QCE_ENABLE_SKCIPHER is not set +CONFIG_CRYPTO_DEV_QCE_SHA=y +CONFIG_CRYPTO_DEV_QCE_SKCIPHER=y +CONFIG_CRYPTO_DEV_QCE_SW_MAX_LEN=512 +CONFIG_CRYPTO_DEV_QCOM_RNG=m +CONFIG_CRYPTO_DEV_ROCKCHIP=m +CONFIG_CRYPTO_DEV_SA2UL=m +CONFIG_CRYPTO_DEV_SAFEXCEL=m +CONFIG_CRYPTO_DEV_SAHARA=m +CONFIG_CRYPTO_DEV_SP_CCP=y +CONFIG_CRYPTO_DEV_SP_PSP=y +CONFIG_CRYPTO_DEV_SUN4I_SS=m +# CONFIG_CRYPTO_DEV_SUN4I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN4I_SS_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE=m +# CONFIG_CRYPTO_DEV_SUN8I_CE_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_CE_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_CE_PRNG=y +CONFIG_CRYPTO_DEV_SUN8I_CE_TRNG=y +CONFIG_CRYPTO_DEV_SUN8I_SS=m +# CONFIG_CRYPTO_DEV_SUN8I_SS_DEBUG is not set +CONFIG_CRYPTO_DEV_SUN8I_SS_HASH=y +CONFIG_CRYPTO_DEV_SUN8I_SS_PRNG=y +CONFIG_CRYPTO_DEV_VIRTIO=m +CONFIG_CRYPTO_DEV_ZYNQMP_AES=m +CONFIG_CRYPTO_DEV_ZYNQMP_SHA3=m +CONFIG_CRYPTO_DH=y +CONFIG_CRYPTO_DH_RFC7919_GROUPS=y +CONFIG_CRYPTO_DRBG=y +CONFIG_CRYPTO_DRBG_CTR=y +CONFIG_CRYPTO_DRBG_HASH=y +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_MENU=y +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_ECC=m +CONFIG_CRYPTO_ECDH=m +CONFIG_CRYPTO_ECDSA=m +CONFIG_CRYPTO_ECHAINIV=m +CONFIG_CRYPTO_ECRDSA=m +CONFIG_CRYPTO_ENGINE=m +CONFIG_CRYPTO_ESSIV=m +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_GCM=y +CONFIG_CRYPTO_GF128MUL=y +CONFIG_CRYPTO_GHASH=y +CONFIG_CRYPTO_GHASH_ARM64_CE=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_JITTERENTROPY=y +CONFIG_CRYPTO_KDF800108_CTR=y +CONFIG_CRYPTO_KEYWRAP=m +CONFIG_CRYPTO_KPP=y +CONFIG_CRYPTO_KPP2=y +CONFIG_CRYPTO_LIB_AES=y +CONFIG_CRYPTO_LIB_ARC4=m +CONFIG_CRYPTO_LIB_BLAKE2S_GENERIC=y +CONFIG_CRYPTO_LIB_CHACHA=m +CONFIG_CRYPTO_LIB_CHACHA20POLY1305=m +CONFIG_CRYPTO_LIB_CHACHA_GENERIC=m +CONFIG_CRYPTO_LIB_CURVE25519=m +CONFIG_CRYPTO_LIB_CURVE25519_GENERIC=m +CONFIG_CRYPTO_LIB_DES=m +CONFIG_CRYPTO_LIB_POLY1305=m +CONFIG_CRYPTO_LIB_POLY1305_GENERIC=m +CONFIG_CRYPTO_LIB_SHA256=y +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_LZ4=m +CONFIG_CRYPTO_LZ4HC=m +CONFIG_CRYPTO_LZO=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NHPOLY1305=m +CONFIG_CRYPTO_NHPOLY1305_AVX2=m +CONFIG_CRYPTO_NHPOLY1305_NEON=m +CONFIG_CRYPTO_NHPOLY1305_SSE2=m +CONFIG_CRYPTO_NULL=y +CONFIG_CRYPTO_NULL2=y +CONFIG_CRYPTO_OFB=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_POLY1305=m +CONFIG_CRYPTO_POLY1305_NEON=m +CONFIG_CRYPTO_POLY1305_X86_64=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=y +CONFIG_CRYPTO_RSA=y +CONFIG_CRYPTO_SEQIV=y +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m +CONFIG_CRYPTO_SERPENT_AVX_X86_64=m +CONFIG_CRYPTO_SERPENT_SSE2_X86_64=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_ARM64_CE=m +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA256_ARM64=m +CONFIG_CRYPTO_SHA256_SSSE3=m +CONFIG_CRYPTO_SHA2_ARM64_CE=m +CONFIG_CRYPTO_SHA3=m +CONFIG_CRYPTO_SHA3_ARM64=m +CONFIG_CRYPTO_SHA512=y +CONFIG_CRYPTO_SHA512_ARM64=m +CONFIG_CRYPTO_SHA512_ARM64_CE=m +CONFIG_CRYPTO_SHA512_SSSE3=m +CONFIG_CRYPTO_SIMD=m +CONFIG_CRYPTO_SKCIPHER=y +CONFIG_CRYPTO_SKCIPHER2=y +CONFIG_CRYPTO_SM2=m +CONFIG_CRYPTO_SM3=m +CONFIG_CRYPTO_SM3_ARM64_CE=m +CONFIG_CRYPTO_SM3_AVX_X86_64=m +CONFIG_CRYPTO_SM3_GENERIC=m +CONFIG_CRYPTO_SM4=m +CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64=m +CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64=m +CONFIG_CRYPTO_SM4_ARM64_CE=m +CONFIG_CRYPTO_SM4_ARM64_CE_BLK=m +CONFIG_CRYPTO_SM4_ARM64_NEON_BLK=m +CONFIG_CRYPTO_SM4_GENERIC=m +CONFIG_CRYPTO_STATS=y +CONFIG_CRYPTO_STREEBOG=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_AEAD=m +# CONFIG_CRYPTO_USER_API_ENABLE_OBSOLETE is not set +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_RNG=m +# CONFIG_CRYPTO_USER_API_RNG_CAVP is not set +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_XTS=y +CONFIG_CRYPTO_XXHASH=m +CONFIG_CRYPTO_ZSTD=m +# CONFIG_CSD_LOCK_WAIT_DEBUG is not set +CONFIG_CS_DSP=m +CONFIG_CUSE=m +CONFIG_CW1200=m +CONFIG_CW1200_WLAN_SDIO=m +CONFIG_CW1200_WLAN_SPI=m +CONFIG_CXD2880_SPI_DRV=m +CONFIG_CXL_ACPI=m +CONFIG_CXL_BUS=m +CONFIG_CXL_MEM=m +# CONFIG_CXL_MEM_RAW_COMMANDS is not set +CONFIG_CXL_PCI=m +CONFIG_CXL_PMEM=m +CONFIG_CXL_PORT=m +CONFIG_CXL_SUSPEND=y +CONFIG_CX_ECAT=m +CONFIG_CYPRESS_FIRMWARE=m +CONFIG_DA280=m +CONFIG_DA311=m +CONFIG_DA9052_WATCHDOG=m +CONFIG_DA9055_WATCHDOG=m +CONFIG_DA9062_THERMAL=m +CONFIG_DA9062_WATCHDOG=m +CONFIG_DA9063_WATCHDOG=m +CONFIG_DA9150_GPADC=m +# CONFIG_DAMON is not set +CONFIG_DAVICOM_PHY=m +CONFIG_DAX=y +CONFIG_DCA=m +CONFIG_DCACHE_WORD_ACCESS=y +CONFIG_DCB=y +CONFIG_DCDBAS=m +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_CREDENTIALS is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_EFI is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_FORCE_FUNCTION_ALIGN_64B is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +CONFIG_DEBUG_FS_ALLOW_ALL=y +# CONFIG_DEBUG_FS_ALLOW_NONE is not set +# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set +# CONFIG_DEBUG_GPIO is not set +# CONFIG_DEBUG_HOTPLUG_CPU0 is not set +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_INFO_BTF=y +CONFIG_DEBUG_INFO_BTF_MODULES=y +# CONFIG_DEBUG_INFO_COMPRESSED is not set +# CONFIG_DEBUG_INFO_DWARF4 is not set +CONFIG_DEBUG_INFO_DWARF5=y +# CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set +# CONFIG_DEBUG_INFO_NONE is not set +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_INFO_SPLIT is not set +# CONFIG_DEBUG_IRQFLAGS is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KERNEL_DC is not set +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +CONFIG_DEBUG_MISC=y +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_NET is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_DEBUG_PAGE_REF is not set +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_PINCTRL is not set +# CONFIG_DEBUG_PLIST is not set +# CONFIG_DEBUG_PREEMPT is not set +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_RSEQ is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_RWSEMS is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_TEST_DRIVER_REMOVE is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_VM_PGTABLE is not set +# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +CONFIG_DEBUG_WX=y +CONFIG_DECNET=m +CONFIG_DECNET_NF_GRABULATOR=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_LZ4=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DECOMPRESS_ZSTD=y +CONFIG_DEFAULT_CUBIC=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +CONFIG_DEFAULT_INIT="" +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set +CONFIG_DEFXX=m +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBTN=m +CONFIG_DELL_RBU=m +CONFIG_DELL_SMBIOS=m +CONFIG_DELL_SMBIOS_SMM=y +CONFIG_DELL_SMBIOS_WMI=y +CONFIG_DELL_SMO8800=m +CONFIG_DELL_UART_BACKLIGHT=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_DELL_WMI_DESCRIPTOR=m +CONFIG_DELL_WMI_LED=m +CONFIG_DELL_WMI_PRIVACY=y +CONFIG_DELL_WMI_SYSMAN=m +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEVFREQ_EVENT_ROCKCHIP_DFI=m +CONFIG_DEVFREQ_GOV_PASSIVE=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +CONFIG_DEVFREQ_THERMAL=y +CONFIG_DEVICE_MIGRATION=y +CONFIG_DEVICE_PRIVATE=y +CONFIG_DEVMEM=y +CONFIG_DEVPORT=y +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_DEVTMPFS_SAFE=y +CONFIG_DEV_APPLETALK=m +CONFIG_DEV_COREDUMP=y +CONFIG_DEV_DAX=m +CONFIG_DEV_DAX_HMEM=m +CONFIG_DEV_DAX_HMEM_DEVICES=y +CONFIG_DEV_DAX_KMEM=m +CONFIG_DEV_DAX_PMEM=m +CONFIG_DHT11=m +CONFIG_DIMLIB=y +CONFIG_DL2K=m +CONFIG_DLHL60D=m +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +CONFIG_DLN2_ADC=m +CONFIG_DM9051=m +CONFIG_DM9102=m +# CONFIG_DMABUF_DEBUG is not set +CONFIG_DMABUF_HEAPS=y +CONFIG_DMABUF_HEAPS_CMA=y +CONFIG_DMABUF_HEAPS_SYSTEM=y +# CONFIG_DMABUF_MOVE_NOTIFY is not set +# CONFIG_DMABUF_SELFTESTS is not set +# CONFIG_DMABUF_SYSFS_STATS is not set +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set +CONFIG_DMARD06=m +CONFIG_DMARD09=m +CONFIG_DMARD10=m +CONFIG_DMAR_TABLE=y +# CONFIG_DMATEST is not set +CONFIG_DMA_ACPI=y +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DMA_BCM2835=y +CONFIG_DMA_CMA=y +CONFIG_DMA_COHERENT_POOL=y +CONFIG_DMA_DECLARE_COHERENT=y +CONFIG_DMA_DIRECT_REMAP=y +CONFIG_DMA_ENGINE=y +CONFIG_DMA_ENGINE_RAID=y +# CONFIG_DMA_FENCE_TRACE is not set +# CONFIG_DMA_MAP_BENCHMARK is not set +CONFIG_DMA_NONCOHERENT_MMAP=y +CONFIG_DMA_OF=y +CONFIG_DMA_OPS=y +CONFIG_DMA_PERNUMA_CMA=y +CONFIG_DMA_RESTRICTED_POOL=y +CONFIG_DMA_SHARED_BUFFER=y +CONFIG_DMA_SUN6I=m +CONFIG_DMA_VIRTUAL_CHANNELS=y +CONFIG_DMI=y +CONFIG_DMIID=y +CONFIG_DMI_SCAN_MACHINE_NON_EFI_FALLBACK=y +CONFIG_DMI_SYSFS=m +CONFIG_DM_AUDIT=y +CONFIG_DM_BIO_PRISON=m +CONFIG_DM_BUFIO=m +CONFIG_DM_CACHE=m +CONFIG_DM_CACHE_SMQ=m +CONFIG_DM_CLONE=m +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set +CONFIG_DM_DELAY=m +# CONFIG_DM_DUST is not set +CONFIG_DM_EBS=m +CONFIG_DM_ERA=m +CONFIG_DM_FLAKEY=m +CONFIG_DM_INIT=y +CONFIG_DM_INTEGRITY=m +CONFIG_DM_LOG_USERSPACE=m +CONFIG_DM_LOG_WRITES=m +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_HST=m +CONFIG_DM_MULTIPATH_IOA=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_RAID=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_SWITCH=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_UEVENT=y +CONFIG_DM_UNSTRIPED=m +CONFIG_DM_VERITY=m +# CONFIG_DM_VERITY_FEC is not set +CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG=y +# CONFIG_DM_VERITY_VERIFY_ROOTHASH_SIG_SECONDARY_KEYRING is not set +CONFIG_DM_WRITECACHE=m +CONFIG_DM_ZERO=m +CONFIG_DM_ZONED=m +CONFIG_DNET=m +CONFIG_DNOTIFY=y +CONFIG_DNS_RESOLVER=y +CONFIG_DP83640_PHY=m +CONFIG_DP83822_PHY=m +CONFIG_DP83848_PHY=m +CONFIG_DP83867_PHY=m +CONFIG_DP83869_PHY=m +CONFIG_DP83TC811_PHY=m +CONFIG_DP83TD510_PHY=m +CONFIG_DPAA2_CONSOLE=m +CONFIG_DPAA_ERRATUM_A050385=y +# CONFIG_DPM_WATCHDOG is not set +CONFIG_DPOT_DAC=m +CONFIG_DPS310=m +CONFIG_DPTF_PCH_FIVR=m +CONFIG_DPTF_POWER=m +CONFIG_DQL=y +CONFIG_DRAGONRISE_FF=y +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_DRM=m +CONFIG_DRM_AMDGPU=m +CONFIG_DRM_AMDGPU_CIK=y +CONFIG_DRM_AMDGPU_SI=y +CONFIG_DRM_AMDGPU_USERPTR=y +CONFIG_DRM_AMD_ACP=y +CONFIG_DRM_AMD_DC=y +CONFIG_DRM_AMD_DC_DCN=y +CONFIG_DRM_AMD_DC_HDCP=y +CONFIG_DRM_AMD_DC_SI=y +CONFIG_DRM_AMD_SECURE_DISPLAY=y +CONFIG_DRM_ANALOGIX_ANX6345=m +CONFIG_DRM_ANALOGIX_ANX7625=m +CONFIG_DRM_ANALOGIX_ANX78XX=m +CONFIG_DRM_ANALOGIX_DP=m +CONFIG_DRM_ARCPGU=m +CONFIG_DRM_AST=m +CONFIG_DRM_BOCHS=m +CONFIG_DRM_BRIDGE=y +CONFIG_DRM_BUDDY=m +CONFIG_DRM_CDNS_DSI=m +CONFIG_DRM_CDNS_MHDP8546=m +CONFIG_DRM_CDNS_MHDP8546_J721E=y +CONFIG_DRM_CHIPONE_ICN6211=m +CONFIG_DRM_CHRONTEL_CH7033=m +CONFIG_DRM_CIRRUS_QEMU=m +CONFIG_DRM_CROS_EC_ANX7688=m +# CONFIG_DRM_DEBUG_DP_MST_TOPOLOGY_REFS is not set +# CONFIG_DRM_DEBUG_MODESET_LOCK is not set +# CONFIG_DRM_DEBUG_SELFTEST is not set +CONFIG_DRM_DISPLAY_CONNECTOR=m +CONFIG_DRM_DISPLAY_DP_HELPER=y +CONFIG_DRM_DISPLAY_HDCP_HELPER=y +CONFIG_DRM_DISPLAY_HDMI_HELPER=y +CONFIG_DRM_DISPLAY_HELPER=m +CONFIG_DRM_DP_AUX_BUS=m +CONFIG_DRM_DP_AUX_CHARDEV=y +CONFIG_DRM_DP_CEC=y +CONFIG_DRM_DW_HDMI=m +CONFIG_DRM_DW_HDMI_AHB_AUDIO=m +CONFIG_DRM_DW_HDMI_CEC=m +CONFIG_DRM_DW_HDMI_GP_AUDIO=m +CONFIG_DRM_DW_HDMI_I2S_AUDIO=m +CONFIG_DRM_DW_MIPI_DSI=m +CONFIG_DRM_ETNAVIV_THERMAL=y +CONFIG_DRM_FBDEV_EMULATION=y +# CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM is not set +CONFIG_DRM_FBDEV_OVERALLOC=100 +CONFIG_DRM_FSL_LDB=m +CONFIG_DRM_GEM_CMA_HELPER=m +CONFIG_DRM_GEM_SHMEM_HELPER=m +CONFIG_DRM_GM12U320=m +CONFIG_DRM_GMA500=m +CONFIG_DRM_GUD=m +CONFIG_DRM_HDLCD=m +# CONFIG_DRM_HDLCD_SHOW_UNDERRUN is not set +CONFIG_DRM_HISI_HIBMC=m +CONFIG_DRM_HISI_KIRIN=m +CONFIG_DRM_HYPERV=m +CONFIG_DRM_I2C_ADV7511=m +CONFIG_DRM_I2C_ADV7511_AUDIO=y +CONFIG_DRM_I2C_ADV7511_CEC=y +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_NXP_TDA9950=m +CONFIG_DRM_I2C_NXP_TDA998X=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I915=m +CONFIG_DRM_I915_CAPTURE_ERROR=y +CONFIG_DRM_I915_COMPRESS_ERROR=y +# CONFIG_DRM_I915_DEBUG is not set +# CONFIG_DRM_I915_DEBUG_GUC is not set +# CONFIG_DRM_I915_DEBUG_MMIO is not set +# CONFIG_DRM_I915_DEBUG_RUNTIME_PM is not set +# CONFIG_DRM_I915_DEBUG_VBLANK_EVADE is not set +CONFIG_DRM_I915_FENCE_TIMEOUT=10000 +CONFIG_DRM_I915_FORCE_PROBE="" +CONFIG_DRM_I915_GVT=y +CONFIG_DRM_I915_GVT_KVMGT=m +CONFIG_DRM_I915_HEARTBEAT_INTERVAL=2500 +# CONFIG_DRM_I915_LOW_LEVEL_TRACEPOINTS is not set +CONFIG_DRM_I915_MAX_REQUEST_BUSYWAIT=8000 +CONFIG_DRM_I915_PREEMPT_TIMEOUT=640 +CONFIG_DRM_I915_PXP=y +CONFIG_DRM_I915_REQUEST_TIMEOUT=20000 +# CONFIG_DRM_I915_SELFTEST is not set +CONFIG_DRM_I915_STOP_TIMEOUT=100 +# CONFIG_DRM_I915_SW_FENCE_CHECK_DAG is not set +# CONFIG_DRM_I915_SW_FENCE_DEBUG_OBJECTS is not set +CONFIG_DRM_I915_TIMESLICE_DURATION=1 +CONFIG_DRM_I915_USERFAULT_AUTOSUSPEND=250 +CONFIG_DRM_I915_USERPTR=y +# CONFIG_DRM_I915_WERROR is not set +CONFIG_DRM_IMX_DCSS=m +CONFIG_DRM_ITE_IT6505=m +CONFIG_DRM_ITE_IT66121=m +CONFIG_DRM_KMB_DISPLAY=m +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_KOMEDA=m +# CONFIG_DRM_LEGACY is not set +CONFIG_DRM_LIMA=m +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_LONTIUM_LT8912B=m +CONFIG_DRM_LONTIUM_LT9211=m +CONFIG_DRM_LONTIUM_LT9611=m +CONFIG_DRM_LONTIUM_LT9611UXC=m +CONFIG_DRM_LVDS_CODEC=m +CONFIG_DRM_MALI_DISPLAY=m +CONFIG_DRM_MEDIATEK=m +CONFIG_DRM_MEDIATEK_HDMI=m +CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW=m +CONFIG_DRM_MESON=m +CONFIG_DRM_MESON_DW_HDMI=m +CONFIG_DRM_MGAG200=m +CONFIG_DRM_MIPI_DBI=m +CONFIG_DRM_MIPI_DSI=y +CONFIG_DRM_MSM=m +CONFIG_DRM_MSM_DP=y +CONFIG_DRM_MSM_DPU=y +CONFIG_DRM_MSM_DSI=y +CONFIG_DRM_MSM_DSI_10NM_PHY=y +CONFIG_DRM_MSM_DSI_14NM_PHY=y +CONFIG_DRM_MSM_DSI_20NM_PHY=y +CONFIG_DRM_MSM_DSI_28NM_8960_PHY=y +CONFIG_DRM_MSM_DSI_28NM_PHY=y +CONFIG_DRM_MSM_DSI_7NM_PHY=y +CONFIG_DRM_MSM_GPU_STATE=y +# CONFIG_DRM_MSM_GPU_SUDO is not set +CONFIG_DRM_MSM_HDMI=y +CONFIG_DRM_MSM_HDMI_HDCP=y +CONFIG_DRM_MSM_MDP4=y +CONFIG_DRM_MSM_MDP5=y +CONFIG_DRM_MSM_MDSS=y +CONFIG_DRM_MXS=y +CONFIG_DRM_MXSFB=m +CONFIG_DRM_NOMODESET=y +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_NOUVEAU_SVM is not set +CONFIG_DRM_NWL_MIPI_DSI=m +CONFIG_DRM_NXP_PTN3460=m +CONFIG_DRM_PANEL=y +CONFIG_DRM_PANEL_ABT_Y030XX067A=m +CONFIG_DRM_PANEL_ARM_VERSATILE=m +CONFIG_DRM_PANEL_ASUS_Z00T_TM5P5_NT35596=m +CONFIG_DRM_PANEL_BOE_BF060Y8M_AJ0=m +CONFIG_DRM_PANEL_BOE_HIMAX8279D=m +CONFIG_DRM_PANEL_BOE_TV101WUM_NL6=m +CONFIG_DRM_PANEL_BRIDGE=y +CONFIG_DRM_PANEL_DSI_CM=m +CONFIG_DRM_PANEL_EDP=m +CONFIG_DRM_PANEL_ELIDA_KD35T133=m +CONFIG_DRM_PANEL_FEIXIN_K101_IM2BA02=m +CONFIG_DRM_PANEL_FEIYANG_FY07024DI26A30D=m +CONFIG_DRM_PANEL_ILITEK_IL9322=m +CONFIG_DRM_PANEL_ILITEK_ILI9341=m +CONFIG_DRM_PANEL_ILITEK_ILI9881C=m +CONFIG_DRM_PANEL_INNOLUX_EJ030NA=m +CONFIG_DRM_PANEL_INNOLUX_P079ZCA=m +CONFIG_DRM_PANEL_JDI_LT070ME05000=m +CONFIG_DRM_PANEL_JDI_R63452=m +CONFIG_DRM_PANEL_KHADAS_TS050=m +CONFIG_DRM_PANEL_KINGDISPLAY_KD097D04=m +CONFIG_DRM_PANEL_LEADTEK_LTK050H3146W=m +CONFIG_DRM_PANEL_LEADTEK_LTK500HD1829=m +CONFIG_DRM_PANEL_LG_LB035Q02=m +CONFIG_DRM_PANEL_LG_LG4573=m +CONFIG_DRM_PANEL_LVDS=m +CONFIG_DRM_PANEL_MANTIX_MLAF057WE51=m +CONFIG_DRM_PANEL_MIPI_DBI=m +CONFIG_DRM_PANEL_NEC_NL8048HL11=m +CONFIG_DRM_PANEL_NEWVISION_NV3052C=m +CONFIG_DRM_PANEL_NOVATEK_NT35510=m +CONFIG_DRM_PANEL_NOVATEK_NT35560=m +CONFIG_DRM_PANEL_NOVATEK_NT35950=m +CONFIG_DRM_PANEL_NOVATEK_NT36672A=m +CONFIG_DRM_PANEL_NOVATEK_NT39016=m +CONFIG_DRM_PANEL_OLIMEX_LCD_OLINUXINO=m +CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y +CONFIG_DRM_PANEL_ORISETECH_OTM8009A=m +CONFIG_DRM_PANEL_OSD_OSD101T2587_53TS=m +CONFIG_DRM_PANEL_PANASONIC_VVX10F034N00=m +CONFIG_DRM_PANEL_RASPBERRYPI_TOUCHSCREEN=m +CONFIG_DRM_PANEL_RAYDIUM_RM67191=m +CONFIG_DRM_PANEL_RAYDIUM_RM68200=m +CONFIG_DRM_PANEL_RONBO_RB070D30=m +CONFIG_DRM_PANEL_SAMSUNG_ATNA33XC20=m +CONFIG_DRM_PANEL_SAMSUNG_DB7430=m +CONFIG_DRM_PANEL_SAMSUNG_LD9040=m +CONFIG_DRM_PANEL_SAMSUNG_S6D16D0=m +CONFIG_DRM_PANEL_SAMSUNG_S6D27A1=m +CONFIG_DRM_PANEL_SAMSUNG_S6E3HA2=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63J0X03=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_DSI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E63M0_SPI=m +CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01=m +CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0=m +CONFIG_DRM_PANEL_SAMSUNG_SOFEF00=m +CONFIG_DRM_PANEL_SEIKO_43WVF1G=m +CONFIG_DRM_PANEL_SHARP_LQ101R1SX01=m +CONFIG_DRM_PANEL_SHARP_LS037V7DW01=m +CONFIG_DRM_PANEL_SHARP_LS043T1LE01=m +CONFIG_DRM_PANEL_SHARP_LS060T1SX01=m +CONFIG_DRM_PANEL_SIMPLE=m +CONFIG_DRM_PANEL_SITRONIX_ST7701=m +CONFIG_DRM_PANEL_SITRONIX_ST7703=m +CONFIG_DRM_PANEL_SITRONIX_ST7789V=m +CONFIG_DRM_PANEL_SONY_ACX565AKM=m +CONFIG_DRM_PANEL_SONY_TULIP_TRULY_NT35521=m +CONFIG_DRM_PANEL_TDO_TL070WSH30=m +CONFIG_DRM_PANEL_TPO_TD028TTEC1=m +CONFIG_DRM_PANEL_TPO_TD043MTEA1=m +CONFIG_DRM_PANEL_TPO_TPG110=m +CONFIG_DRM_PANEL_TRULY_NT35597_WQXGA=m +CONFIG_DRM_PANEL_VISIONOX_RM69299=m +CONFIG_DRM_PANEL_WIDECHIPS_WS2401=m +CONFIG_DRM_PANEL_XINPENG_XPP055C272=m +CONFIG_DRM_PANFROST=m +CONFIG_DRM_PARADE_PS8622=m +CONFIG_DRM_PARADE_PS8640=m +CONFIG_DRM_PL111=m +CONFIG_DRM_PRIVACY_SCREEN=y +CONFIG_DRM_QXL=m +CONFIG_DRM_RADEON=m +# CONFIG_DRM_RADEON_USERPTR is not set +CONFIG_DRM_RCAR_CMM=m +CONFIG_DRM_RCAR_DU=m +CONFIG_DRM_RCAR_DW_HDMI=m +CONFIG_DRM_RCAR_LVDS=m +CONFIG_DRM_RCAR_MIPI_DSI=m +CONFIG_DRM_RCAR_USE_CMM=y +CONFIG_DRM_RCAR_USE_LVDS=y +CONFIG_DRM_RCAR_VSP=y +CONFIG_DRM_RCAR_WRITEBACK=y +CONFIG_DRM_ROCKCHIP=m +CONFIG_DRM_SCHED=m +CONFIG_DRM_SII902X=m +CONFIG_DRM_SII9234=m +CONFIG_DRM_SIL_SII8620=m +CONFIG_DRM_SIMPLEDRM=m +CONFIG_DRM_SIMPLE_BRIDGE=m +CONFIG_DRM_SPRD=m +CONFIG_DRM_SSD130X=m +CONFIG_DRM_SSD130X_I2C=m +CONFIG_DRM_SSD130X_SPI=m +CONFIG_DRM_SUN4I=m +CONFIG_DRM_SUN4I_BACKEND=m +CONFIG_DRM_SUN4I_HDMI=m +CONFIG_DRM_SUN4I_HDMI_CEC=y +CONFIG_DRM_SUN6I_DSI=m +CONFIG_DRM_SUN8I_DW_HDMI=m +CONFIG_DRM_SUN8I_MIXER=m +CONFIG_DRM_SUN8I_TCON_TOP=m +CONFIG_DRM_TEGRA=m +# CONFIG_DRM_TEGRA_DEBUG is not set +CONFIG_DRM_TEGRA_STAGING=y +CONFIG_DRM_THINE_THC63LVD1024=m +CONFIG_DRM_TIDSS=m +CONFIG_DRM_TI_SN65DSI83=m +CONFIG_DRM_TI_SN65DSI86=m +CONFIG_DRM_TI_TFP410=m +CONFIG_DRM_TI_TPD12S015=m +CONFIG_DRM_TOSHIBA_TC358762=m +CONFIG_DRM_TOSHIBA_TC358764=m +CONFIG_DRM_TOSHIBA_TC358767=m +CONFIG_DRM_TOSHIBA_TC358768=m +CONFIG_DRM_TOSHIBA_TC358775=m +CONFIG_DRM_TTM=m +CONFIG_DRM_TTM_HELPER=m +CONFIG_DRM_UDL=m +CONFIG_DRM_V3D=m +CONFIG_DRM_VBOXVIDEO=m +CONFIG_DRM_VC4=m +CONFIG_DRM_VC4_HDMI_CEC=y +CONFIG_DRM_VGEM=m +CONFIG_DRM_VIRTIO_GPU=m +CONFIG_DRM_VKMS=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_VMWGFX_FBCON=y +# CONFIG_DRM_VMWGFX_MKSSTATS is not set +CONFIG_DRM_VRAM_HELPER=m +CONFIG_DRM_XEN=y +CONFIG_DRM_XEN_FRONTEND=m +CONFIG_DRM_ZYNQMP_DPSUB=m +CONFIG_DS1682=m +CONFIG_DS1803=m +CONFIG_DS4424=m +CONFIG_DST_CACHE=y +CONFIG_DTC=y +CONFIG_DTPM=y +CONFIG_DTPM_CPU=y +# CONFIG_DTPM_DEVFREQ is not set +CONFIG_DT_IDLE_GENPD=y +CONFIG_DT_IDLE_STATES=y +CONFIG_DUMMY=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_DUMMY_CONSOLE_COLUMNS=80 +CONFIG_DUMMY_CONSOLE_ROWS=25 +CONFIG_DUMMY_IRQ=m +CONFIG_DVB_A8293=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_AF9033=m +CONFIG_DVB_AS102=m +CONFIG_DVB_AS102_FE=m +CONFIG_DVB_ASCOT2E=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AU8522_DTV=m +CONFIG_DVB_AU8522_V4L=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_IR=y +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +# CONFIG_DVB_B2C2_FLEXCOP_PCI_DEBUG is not set +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_USB_DEBUG is not set +CONFIG_DVB_BCM3510=m +CONFIG_DVB_BT8XX=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_CORE=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24117=m +CONFIG_DVB_CX24120=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_CXD2099=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_CXD2841ER=m +CONFIG_DVB_CXD2880=m +CONFIG_DVB_DDBRIDGE=m +# CONFIG_DVB_DDBRIDGE_MSIENABLE is not set +# CONFIG_DVB_DEMUX_SECTION_LOSS_LOG is not set +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_DRX39XYJ=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_DRXK=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_DUMMY_FE=m +CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_EC100=m +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +CONFIG_DVB_GP8PSK_FE=m +CONFIG_DVB_HELENE=m +CONFIG_DVB_HOPPER=m +CONFIG_DVB_HORUS3A=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_L64781=m +CONFIG_DVB_LG2160=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT3306A=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_LNBH25=m +CONFIG_DVB_LNBH29=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_M88DS3103=m +CONFIG_DVB_M88RS2000=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_MB86A16=m +CONFIG_DVB_MB86A20S=m +# CONFIG_DVB_MMAP is not set +CONFIG_DVB_MN88443X=m +CONFIG_DVB_MN88472=m +CONFIG_DVB_MN88473=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=m +CONFIG_DVB_MXL5XX=m +CONFIG_DVB_MXL692=m +CONFIG_DVB_NET=y +CONFIG_DVB_NETUP_UNIDVB=m +CONFIG_DVB_NGENE=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_PLATFORM_DRIVERS=y +CONFIG_DVB_PLL=m +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_PT1=m +CONFIG_DVB_PT3=m +CONFIG_DVB_RTL2830=m +CONFIG_DVB_RTL2832=m +CONFIG_DVB_RTL2832_SDR=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_S921=m +CONFIG_DVB_SI2165=m +CONFIG_DVB_SI2168=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_SMIPCIE=m +CONFIG_DVB_SP2=m +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STV0297=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV0910=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_STV6111=m +CONFIG_DVB_TC90522=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_TDA10071=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_TDA826X=m +# CONFIG_DVB_TEST_DRIVERS is not set +CONFIG_DVB_TS2020=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m +CONFIG_DVB_TUNER_ITD1000=m +# CONFIG_DVB_ULE_DEBUG is not set +CONFIG_DVB_USB=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_AF9035=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6007=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_CXUSB_ANALOG=y +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_DIB3000MC=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_DVBSKY=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_RTL28XXU=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_V2=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_ZD1301=m +CONFIG_DVB_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZD1301_DEMOD=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_ZL10353=m +CONFIG_DWC_XLGMAC=m +CONFIG_DWC_XLGMAC_PCI=m +CONFIG_DWMAC_DWC_QOS_ETH=m +CONFIG_DWMAC_GENERIC=m +CONFIG_DWMAC_IMX8=m +CONFIG_DWMAC_INTEL=m +CONFIG_DWMAC_INTEL_PLAT=m +CONFIG_DWMAC_IPQ806X=m +CONFIG_DWMAC_LOONGSON=m +CONFIG_DWMAC_MEDIATEK=m +CONFIG_DWMAC_MESON=m +CONFIG_DWMAC_QCOM_ETHQOS=m +CONFIG_DWMAC_ROCKCHIP=m +CONFIG_DWMAC_SOCFPGA=m +CONFIG_DWMAC_SUN8I=m +# CONFIG_DWMAC_SUNXI is not set +CONFIG_DWMAC_VISCONTI=m +CONFIG_DW_APB_ICTL=y +CONFIG_DW_APB_TIMER=y +CONFIG_DW_APB_TIMER_OF=y +CONFIG_DW_AXI_DMAC=m +CONFIG_DW_DMAC=m +CONFIG_DW_DMAC_CORE=m +CONFIG_DW_DMAC_PCI=m +CONFIG_DW_EDMA=m +CONFIG_DW_EDMA_PCIE=m +CONFIG_DW_I3C_MASTER=m +CONFIG_DW_WATCHDOG=m +CONFIG_DW_XDATA_PCIE=m +CONFIG_DYNAMIC_DEBUG=y +CONFIG_DYNAMIC_DEBUG_CORE=y +CONFIG_DYNAMIC_EVENTS=y +CONFIG_DYNAMIC_FTRACE=y +CONFIG_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_DYNAMIC_MEMORY_LAYOUT=y +CONFIG_DYNAMIC_PHYSICAL_MASK=y +CONFIG_DYNAMIC_SIGFRAME=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +CONFIG_E1000E_HWTS=y +CONFIG_EARLY_PRINTK=y +CONFIG_EARLY_PRINTK_DBGP=y +CONFIG_EARLY_PRINTK_USB=y +CONFIG_EARLY_PRINTK_USB_XDBC=y +CONFIG_EBC_C384_WDT=m +CONFIG_ECHO=m +CONFIG_ECRYPT_FS=y +CONFIG_ECRYPT_FS_MESSAGING=y +CONFIG_EDAC=y +CONFIG_EDAC_ALTERA=y +CONFIG_EDAC_ALTERA_ETHERNET=y +CONFIG_EDAC_ALTERA_NAND=y +CONFIG_EDAC_ALTERA_OCRAM=y +CONFIG_EDAC_ALTERA_QSPI=y +CONFIG_EDAC_ALTERA_SDMMC=y +CONFIG_EDAC_ALTERA_SDRAM=y +CONFIG_EDAC_ALTERA_USB=y +CONFIG_EDAC_AMD64=m +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_BLUEFIELD=m +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_DMC520=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_GHES=y +CONFIG_EDAC_I10NM=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_IE31200=m +CONFIG_EDAC_IGEN6=m +CONFIG_EDAC_LAYERSCAPE=m +# CONFIG_EDAC_LEGACY_SYSFS is not set +CONFIG_EDAC_PND2=m +CONFIG_EDAC_QCOM=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_SKX=m +CONFIG_EDAC_SUPPORT=y +CONFIG_EDAC_SYNOPSYS=m +CONFIG_EDAC_THUNDERX=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_XGENE=m +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_EE1004=m +CONFIG_EEPROM_IDT_89HPESX=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EFI=y +CONFIG_EFIVAR_FS=y +# CONFIG_EFI_ARMSTUB_DTB_LOADER is not set +CONFIG_EFI_BOOTLOADER_CONTROL=m +CONFIG_EFI_CAPSULE_LOADER=m +CONFIG_EFI_COCO_SECRET=y +CONFIG_EFI_CUSTOM_SSDT_OVERLAYS=y +CONFIG_EFI_DEV_PATH_PARSER=y +# CONFIG_EFI_DISABLE_PCI_DMA is not set +# CONFIG_EFI_DISABLE_RUNTIME is not set +CONFIG_EFI_DXE_MEM_ATTRIBUTES=y +CONFIG_EFI_EARLYCON=y +CONFIG_EFI_EMBEDDED_FIRMWARE=y +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_GENERIC_STUB=y +CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER=y +CONFIG_EFI_MIXED=y +CONFIG_EFI_PARAMS_FROM_FDT=y +CONFIG_EFI_PARTITION=y +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_EFI_RCI2_TABLE=y +CONFIG_EFI_RUNTIME_MAP=y +CONFIG_EFI_RUNTIME_WRAPPERS=y +CONFIG_EFI_SECRET=m +CONFIG_EFI_SOFT_RESERVE=y +CONFIG_EFI_STUB=y +CONFIG_EFI_TEST=m +CONFIG_EFI_VARS=y +CONFIG_EFI_VARS_PSTORE=m +# CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE is not set +CONFIG_EFS_FS=m +CONFIG_EINT_MTK=y +CONFIG_EISA=y +CONFIG_EISA_NAMES=y +CONFIG_EISA_PCI_EISA=y +CONFIG_EISA_VIRTUAL_ROOT=y +CONFIG_EISA_VLB_PRIMING=y +CONFIG_EL3=m +CONFIG_ELFCORE=y +CONFIG_ELF_CORE=y +CONFIG_EMAC_ROCKCHIP=m +# CONFIG_EMBEDDED is not set +CONFIG_ENA_ETHERNET=m +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ENCRYPTED_KEYS=y +CONFIG_ENCX24J600=m +CONFIG_ENERGY_MODEL=y +CONFIG_ENIC=m +CONFIG_ENVELOPE_DETECTOR=m +CONFIG_EPIC100=m +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_EROFS_FS=m +# CONFIG_EROFS_FS_DEBUG is not set +CONFIG_EROFS_FS_POSIX_ACL=y +CONFIG_EROFS_FS_SECURITY=y +CONFIG_EROFS_FS_XATTR=y +CONFIG_EROFS_FS_ZIP=y +# CONFIG_EROFS_FS_ZIP_LZMA is not set +CONFIG_ET131X=m +CONFIG_ETHERNET=y +CONFIG_ETHOC=m +CONFIG_ETHTOOL_NETLINK=y +CONFIG_EUROTECH_WDT=m +CONFIG_EVENTFD=y +CONFIG_EVENT_TRACING=y +CONFIG_EVM=y +CONFIG_EVM_ADD_XATTRS=y +CONFIG_EVM_ATTR_FSUUID=y +CONFIG_EVM_EXTRA_SMACK_XATTRS=y +# CONFIG_EVM_LOAD_X509 is not set +CONFIG_EXCLUSIVE_SYSTEM_RAM=y +CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8" +CONFIG_EXFAT_FS=m +CONFIG_EXPERT=y +CONFIG_EXPORTFS=y +CONFIG_EXPORTFS_BLOCK_OPS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_EXT4_USE_FOR_EXT2=y +CONFIG_EXTCON=y +CONFIG_EXTCON_ADC_JACK=m +CONFIG_EXTCON_AXP288=m +CONFIG_EXTCON_FSA9480=m +CONFIG_EXTCON_GPIO=m +CONFIG_EXTCON_INTEL_CHT_WC=m +CONFIG_EXTCON_INTEL_INT3496=m +CONFIG_EXTCON_INTEL_MRFLD=m +CONFIG_EXTCON_MAX14577=m +CONFIG_EXTCON_MAX3355=m +CONFIG_EXTCON_MAX77693=m +CONFIG_EXTCON_MAX77843=m +CONFIG_EXTCON_MAX8997=m +CONFIG_EXTCON_PALMAS=m +CONFIG_EXTCON_PTN5150=m +CONFIG_EXTCON_QCOM_SPMI_MISC=m +CONFIG_EXTCON_RT8973A=m +CONFIG_EXTCON_SM5502=m +CONFIG_EXTCON_USBC_CROS_EC=m +CONFIG_EXTCON_USBC_TUSB320=m +CONFIG_EXTCON_USB_GPIO=m +CONFIG_EXTRA_FIRMWARE="" +CONFIG_EZCHIP_NPS_MANAGEMENT_ENET=m +CONFIG_EZX_PCAP=y +# CONFIG_F2FS_CHECK_FS is not set +# CONFIG_F2FS_FAULT_INJECTION is not set +CONFIG_F2FS_FS=m +CONFIG_F2FS_FS_COMPRESSION=y +CONFIG_F2FS_FS_LZ4=y +CONFIG_F2FS_FS_LZ4HC=y +CONFIG_F2FS_FS_LZO=y +CONFIG_F2FS_FS_LZORLE=y +CONFIG_F2FS_FS_POSIX_ACL=y +CONFIG_F2FS_FS_SECURITY=y +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_FS_ZSTD=y +# CONFIG_F2FS_IOSTAT is not set +CONFIG_F2FS_STAT_FS=y +CONFIG_F2FS_UNFAIR_RWSEM=y +CONFIG_F71808E_WDT=m +CONFIG_FAILOVER=m +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_FANOTIFY=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_FARSYNC=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAT_DEFAULT_UTF8 is not set +CONFIG_FAT_FS=y +# CONFIG_FAULT_INJECTION is not set +CONFIG_FB=y +CONFIG_FB_3DFX=m +# CONFIG_FB_3DFX_ACCEL is not set +# CONFIG_FB_3DFX_I2C is not set +CONFIG_FB_ARC=m +CONFIG_FB_ARK=m +CONFIG_FB_ARMCLCD=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_ATY_CT=y +# CONFIG_FB_ATY_GENERIC_LCD is not set +CONFIG_FB_ATY_GX=y +CONFIG_FB_BACKLIGHT=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_CIRRUS=m +CONFIG_FB_CMDLINE=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_DDC=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_EFI=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +CONFIG_FB_HYPERV=m +CONFIG_FB_I740=m +# CONFIG_FB_IBM_GXT4500 is not set +CONFIG_FB_IMSTT=y +CONFIG_FB_IMX=m +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_KYRO=m +CONFIG_FB_LE80578=m +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_I2C=y +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_METRONOME=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_MX3=y +CONFIG_FB_N411=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NOTIFY=y +CONFIG_FB_NVIDIA=m +CONFIG_FB_NVIDIA_BACKLIGHT=y +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y +CONFIG_FB_OPENCORES=m +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PM3=m +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +# CONFIG_FB_SAVAGE_ACCEL is not set +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SH_MOBILE_LCDC=m +CONFIG_FB_SIMPLE=m +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SM712=m +CONFIG_FB_SM750=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_SSD1307=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TFT=m +CONFIG_FB_TFT_AGM1264K_FL=m +CONFIG_FB_TFT_BD663474=m +CONFIG_FB_TFT_HX8340BN=m +CONFIG_FB_TFT_HX8347D=m +CONFIG_FB_TFT_HX8353D=m +CONFIG_FB_TFT_HX8357D=m +CONFIG_FB_TFT_ILI9163=m +CONFIG_FB_TFT_ILI9320=m +CONFIG_FB_TFT_ILI9325=m +CONFIG_FB_TFT_ILI9340=m +CONFIG_FB_TFT_ILI9341=m +CONFIG_FB_TFT_ILI9481=m +CONFIG_FB_TFT_ILI9486=m +CONFIG_FB_TFT_PCD8544=m +CONFIG_FB_TFT_RA8875=m +CONFIG_FB_TFT_S6D02A1=m +CONFIG_FB_TFT_S6D1121=m +CONFIG_FB_TFT_SEPS525=m +CONFIG_FB_TFT_SH1106=m +CONFIG_FB_TFT_SSD1289=m +CONFIG_FB_TFT_SSD1305=m +CONFIG_FB_TFT_SSD1306=m +CONFIG_FB_TFT_SSD1331=m +CONFIG_FB_TFT_SSD1351=m +CONFIG_FB_TFT_ST7735R=m +CONFIG_FB_TFT_ST7789V=m +CONFIG_FB_TFT_TINYLCD=m +CONFIG_FB_TFT_TLS8204=m +CONFIG_FB_TFT_UC1611=m +CONFIG_FB_TFT_UC1701=m +CONFIG_FB_TFT_UPD161704=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UDL=m +CONFIG_FB_UVESA=m +CONFIG_FB_VESA=y +CONFIG_FB_VGA16=m +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +# CONFIG_FB_VIRTUAL is not set +CONFIG_FB_VOODOO1=m +CONFIG_FB_VT8623=m +CONFIG_FB_XILINX=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FEC=y +CONFIG_FHANDLE=y +CONFIG_FIB_RULES=y +CONFIG_FIELDBUS_DEV=m +CONFIG_FILE_LOCKING=y +# CONFIG_FIND_BIT_BENCHMARK is not set +# CONFIG_FIPS_SIGNATURE_SELFTEST is not set +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIREWIRE_SERIAL=m +CONFIG_FIRMWARE_EDID=y +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_FM10K=m +CONFIG_FONTS=y +# CONFIG_FONT_10x18 is not set +CONFIG_FONT_6x10=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_6x8 is not set +# CONFIG_FONT_7x14 is not set +CONFIG_FONT_8x16=y +CONFIG_FONT_8x8=y +CONFIG_FONT_ACORN_8x8=y +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_SUN8x16 is not set +CONFIG_FONT_SUPPORT=y +CONFIG_FONT_TER16x32=y +CONFIG_FORCEDETH=m +CONFIG_FORTIFY_SOURCE=y +CONFIG_FPGA=m +CONFIG_FPGA_BRIDGE=m +CONFIG_FPGA_DFL=m +CONFIG_FPGA_DFL_AFU=m +CONFIG_FPGA_DFL_EMIF=m +CONFIG_FPGA_DFL_FME=m +CONFIG_FPGA_DFL_FME_BRIDGE=m +CONFIG_FPGA_DFL_FME_MGR=m +CONFIG_FPGA_DFL_FME_REGION=m +CONFIG_FPGA_DFL_NIOS_INTEL_PAC_N3000=m +CONFIG_FPGA_DFL_PCI=m +CONFIG_FPGA_MGR_ALTERA_CVP=m +CONFIG_FPGA_MGR_ALTERA_PS_SPI=m +CONFIG_FPGA_MGR_ICE40_SPI=m +CONFIG_FPGA_MGR_MACHXO2_SPI=m +CONFIG_FPGA_MGR_SOCFPGA=m +CONFIG_FPGA_MGR_SOCFPGA_A10=m +CONFIG_FPGA_MGR_STRATIX10_SOC=m +CONFIG_FPGA_MGR_VERSAL_FPGA=m +CONFIG_FPGA_MGR_XILINX_SPI=m +CONFIG_FPGA_MGR_ZYNQMP_FPGA=m +CONFIG_FPGA_REGION=m +CONFIG_FPROBE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER=y +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FRAMEBUFFER_CONSOLE_LEGACY_ACCELERATION is not set +CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y +CONFIG_FRAME_POINTER=y +CONFIG_FRAME_WARN=1024 +CONFIG_FREEZER=y +CONFIG_FRONTSWAP=y +CONFIG_FSCACHE=m +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_FSCACHE_STATS=y +CONFIG_FSI=m +CONFIG_FSI_MASTER_ASPEED=m +CONFIG_FSI_MASTER_GPIO=m +CONFIG_FSI_MASTER_HUB=m +# CONFIG_FSI_NEW_DEV_NODE is not set +CONFIG_FSI_OCC=m +CONFIG_FSI_SBEFIFO=m +CONFIG_FSI_SCOM=m +CONFIG_FSL_BMAN_TEST=m +# CONFIG_FSL_BMAN_TEST_API is not set +CONFIG_FSL_DPAA=y +CONFIG_FSL_DPAA2_ETH=m +CONFIG_FSL_DPAA2_ETH_DCB=y +CONFIG_FSL_DPAA2_PTP_CLOCK=m +CONFIG_FSL_DPAA2_QDMA=m +CONFIG_FSL_DPAA2_SWITCH=m +CONFIG_FSL_DPAA_CHECKING=y +CONFIG_FSL_DPAA_ETH=m +CONFIG_FSL_EDMA=m +CONFIG_FSL_ENETC=m +CONFIG_FSL_ENETC_IERB=m +CONFIG_FSL_ENETC_MDIO=m +CONFIG_FSL_ENETC_PTP_CLOCK=m +CONFIG_FSL_ENETC_QOS=y +CONFIG_FSL_ENETC_VF=m +CONFIG_FSL_ERRATUM_A008585=y +CONFIG_FSL_FMAN=y +CONFIG_FSL_GUTS=y +CONFIG_FSL_IFC=y +CONFIG_FSL_IMX8_DDR_PMU=m +CONFIG_FSL_MC_BUS=y +CONFIG_FSL_MC_DPIO=m +CONFIG_FSL_MC_UAPI_SUPPORT=y +CONFIG_FSL_PQ_MDIO=m +CONFIG_FSL_QDMA=m +# CONFIG_FSL_QMAN_TEST is not set +CONFIG_FSL_RCPM=y +CONFIG_FSL_UCC_HDLC=m +CONFIG_FSL_XGMAC_MDIO=y +CONFIG_FSNOTIFY=y +CONFIG_FS_DAX=y +CONFIG_FS_DAX_PMD=y +CONFIG_FS_ENCRYPTION=y +CONFIG_FS_ENCRYPTION_ALGS=y +CONFIG_FS_ENCRYPTION_INLINE_CRYPT=y +CONFIG_FS_IOMAP=y +CONFIG_FS_MBCACHE=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FS_VERITY=y +CONFIG_FS_VERITY_BUILTIN_SIGNATURES=y +# CONFIG_FS_VERITY_DEBUG is not set +CONFIG_FTL=m +CONFIG_FTM_QUADDEC=m +CONFIG_FTRACE=y +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_MCOUNT_USE_CC=y +CONFIG_FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY=y +# CONFIG_FTRACE_RECORD_RECURSION is not set +# CONFIG_FTRACE_SORT_STARTUP_TEST is not set +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_FTRACE_SYSCALLS=y +CONFIG_FUEL_GAUGE_SC27XX=m +CONFIG_FUJITSU_ERRATUM_010001=y +CONFIG_FUJITSU_ES=m +CONFIG_FUJITSU_LAPTOP=m +CONFIG_FUJITSU_TABLET=m +CONFIG_FUNCTION_ERROR_INJECTION=y +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUNCTION_TRACER=y +CONFIG_FUN_CORE=m +CONFIG_FUN_ETH=m +CONFIG_FUSE_DAX=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_FUSION_CTL=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_SAS=m +CONFIG_FUSION_SPI=m +CONFIG_FUTEX=y +CONFIG_FUTEX_PI=y +CONFIG_FWNODE_MDIO=y +CONFIG_FWTTY_MAX_CARD_PORTS=32 +CONFIG_FWTTY_MAX_TOTAL_PORTS=64 +CONFIG_FW_ATTR_CLASS=m +CONFIG_FW_CACHE=y +CONFIG_FW_CFG_SYSFS=m +# CONFIG_FW_CFG_SYSFS_CMDLINE is not set +CONFIG_FW_LOADER=y +CONFIG_FW_LOADER_COMPRESS=y +CONFIG_FW_LOADER_COMPRESS_XZ=y +CONFIG_FW_LOADER_COMPRESS_ZSTD=y +CONFIG_FW_LOADER_PAGED_BUF=y +CONFIG_FW_LOADER_SYSFS=y +CONFIG_FW_LOADER_USER_HELPER=y +# CONFIG_FW_LOADER_USER_HELPER_FALLBACK is not set +# CONFIG_FW_UPLOAD is not set +CONFIG_FXAS21002C=m +CONFIG_FXAS21002C_I2C=m +CONFIG_FXAS21002C_SPI=m +CONFIG_FXLS8962AF=m +CONFIG_FXLS8962AF_I2C=m +CONFIG_FXLS8962AF_SPI=m +CONFIG_FXOS8700=m +CONFIG_FXOS8700_I2C=m +CONFIG_FXOS8700_SPI=m +CONFIG_GACT_PROB=y +CONFIG_GADGET_UAC1=y +# CONFIG_GADGET_UAC1_LEGACY is not set +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GARP=m +CONFIG_GART_IOMMU=y +CONFIG_GCC12_NO_ARRAY_BOUNDS=y +CONFIG_GCC_SUPPORTS_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_GCC_VERSION=110300 +# CONFIG_GCOV_KERNEL is not set +CONFIG_GDB_SCRIPTS=y +CONFIG_GEMINI_ETHERNET=m +CONFIG_GENERIC_ADC_BATTERY=m +CONFIG_GENERIC_ADC_THERMAL=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ARCH_NUMA=y +CONFIG_GENERIC_ARCH_TOPOLOGY=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_GENERIC_CPU=y +CONFIG_GENERIC_CPU_AUTOPROBE=y +CONFIG_GENERIC_CPU_VULNERABILITIES=y +CONFIG_GENERIC_CSUM=y +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_GENERIC_ENTRY=y +CONFIG_GENERIC_GETTIMEOFDAY=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IDLE_POLL_SETUP=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_CHIP=y +# CONFIG_GENERIC_IRQ_DEBUGFS is not set +CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y +CONFIG_GENERIC_IRQ_IPI=y +CONFIG_GENERIC_IRQ_MATRIX_ALLOCATOR=y +CONFIG_GENERIC_IRQ_MIGRATION=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_RESERVATION_MODE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_PHY=y +CONFIG_GENERIC_PHY_MIPI_DPHY=y +CONFIG_GENERIC_PINCONF=y +CONFIG_GENERIC_PINCTRL_GROUPS=y +CONFIG_GENERIC_PINMUX_FUNCTIONS=y +CONFIG_GENERIC_PTDUMP=y +CONFIG_GENERIC_SCHED_CLOCK=y +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GENERIC_TRACER=y +CONFIG_GENERIC_VDSO_TIME_NS=y +CONFIG_GENEVE=m +CONFIG_GENWQE=m +CONFIG_GENWQE_PLATFORM_ERROR_RECOVERY=0 +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GIANFAR=m +CONFIG_GIGABYTE_WMI=m +CONFIG_GLOB=y +# CONFIG_GLOB_SELFTEST is not set +CONFIG_GNSS=m +CONFIG_GNSS_MTK_SERIAL=m +CONFIG_GNSS_SERIAL=m +CONFIG_GNSS_SIRF_SERIAL=m +CONFIG_GNSS_UBX_SERIAL=m +CONFIG_GNSS_USB=m +# CONFIG_GOLDFISH is not set +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_GP2AP002=m +CONFIG_GP2AP020A00F=m +CONFIG_GPD_POCKET_FAN=m +CONFIG_GPIOLIB=y +CONFIG_GPIOLIB_FASTPATH_LIMIT=512 +CONFIG_GPIOLIB_IRQCHIP=y +CONFIG_GPIO_104_DIO_48E=m +CONFIG_GPIO_104_IDIO_16=m +CONFIG_GPIO_104_IDI_48=m +CONFIG_GPIO_74X164=m +CONFIG_GPIO_74XX_MMIO=m +CONFIG_GPIO_ACPI=y +CONFIG_GPIO_ADNP=m +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_AGGREGATOR=m +CONFIG_GPIO_ALTERA=m +CONFIG_GPIO_ALTERA_A10SR=m +CONFIG_GPIO_AMD8111=m +CONFIG_GPIO_AMDPT=m +CONFIG_GPIO_AMD_FCH=m +CONFIG_GPIO_ARIZONA=m +CONFIG_GPIO_BCM_XGS_IPROC=m +CONFIG_GPIO_BD71815=m +CONFIG_GPIO_BD71828=m +CONFIG_GPIO_BD9571MWV=m +CONFIG_GPIO_BRCMSTB=m +CONFIG_GPIO_CADENCE=m +CONFIG_GPIO_CDEV=y +CONFIG_GPIO_CDEV_V1=y +CONFIG_GPIO_CRYSTAL_COVE=y +CONFIG_GPIO_DA9052=m +CONFIG_GPIO_DA9055=m +CONFIG_GPIO_DAVINCI=y +CONFIG_GPIO_DLN2=m +CONFIG_GPIO_DWAPB=m +CONFIG_GPIO_EIC_SPRD=m +CONFIG_GPIO_EXAR=m +CONFIG_GPIO_F7188X=m +CONFIG_GPIO_FTGPIO010=y +CONFIG_GPIO_GENERIC=y +CONFIG_GPIO_GENERIC_PLATFORM=y +CONFIG_GPIO_GPIO_MM=m +CONFIG_GPIO_GRGPIO=m +CONFIG_GPIO_GW_PLD=m +CONFIG_GPIO_HISI=m +CONFIG_GPIO_HLWD=m +CONFIG_GPIO_ICH=m +CONFIG_GPIO_IT87=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_KEMPLD=m +CONFIG_GPIO_LOGICVC=m +CONFIG_GPIO_LP3943=m +CONFIG_GPIO_LP873X=m +CONFIG_GPIO_LP87565=m +CONFIG_GPIO_MADERA=m +CONFIG_GPIO_MAX3191X=m +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MAX730X=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MAX77620=m +CONFIG_GPIO_MAX77650=m +CONFIG_GPIO_MB86S7X=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_MENZ127=m +CONFIG_GPIO_MLXBF=m +CONFIG_GPIO_MLXBF2=m +CONFIG_GPIO_ML_IOH=m +# CONFIG_GPIO_MOCKUP is not set +CONFIG_GPIO_MOXTET=m +CONFIG_GPIO_MPC8XXX=y +CONFIG_GPIO_MVEBU=y +CONFIG_GPIO_MXC=y +CONFIG_GPIO_PALMAS=y +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCA953X_IRQ=y +CONFIG_GPIO_PCA9570=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_PCIE_IDIO_24=m +CONFIG_GPIO_PCI_IDIO_16=m +CONFIG_GPIO_PISOSR=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_PMIC_EIC_SPRD=m +CONFIG_GPIO_RASPBERRYPI_EXP=m +CONFIG_GPIO_RC5T583=y +CONFIG_GPIO_RCAR=m +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_REGMAP=m +CONFIG_GPIO_ROCKCHIP=m +CONFIG_GPIO_SAMA5D2_PIOBU=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_SCH311X=m +CONFIG_GPIO_SIFIVE=y +CONFIG_GPIO_SIM=m +CONFIG_GPIO_SIOX=m +CONFIG_GPIO_SL28CPLD=m +CONFIG_GPIO_SPRD=m +CONFIG_GPIO_STMPE=y +CONFIG_GPIO_SYSCON=m +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TC3589X=y +CONFIG_GPIO_TEGRA=y +CONFIG_GPIO_TEGRA186=y +CONFIG_GPIO_THUNDERX=m +CONFIG_GPIO_TPIC2810=m +CONFIG_GPIO_TPS65086=m +CONFIG_GPIO_TPS65218=m +CONFIG_GPIO_TPS6586X=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_TPS68470=m +CONFIG_GPIO_TQMX86=m +CONFIG_GPIO_TWL4030=m +CONFIG_GPIO_TWL6040=m +CONFIG_GPIO_UCB1400=m +CONFIG_GPIO_VF610=y +CONFIG_GPIO_VIPERBOARD=m +CONFIG_GPIO_VIRTIO=m +CONFIG_GPIO_VISCONTI=m +CONFIG_GPIO_VX855=m +CONFIG_GPIO_WATCHDOG=m +CONFIG_GPIO_WCD934X=m +CONFIG_GPIO_WHISKEY_COVE=m +CONFIG_GPIO_WINBOND=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +CONFIG_GPIO_WS16C48=m +CONFIG_GPIO_XGENE=y +CONFIG_GPIO_XGENE_SB=m +CONFIG_GPIO_XILINX=y +CONFIG_GPIO_XLP=m +CONFIG_GPIO_XRA1403=m +CONFIG_GPIO_ZYNQ=m +CONFIG_GPIO_ZYNQMP_MODEPIN=m +CONFIG_GRACE_PERIOD=m +CONFIG_GREENASIA_FF=y +CONFIG_GREYBUS=m +CONFIG_GREYBUS_AUDIO=m +CONFIG_GREYBUS_AUDIO_APB_CODEC=m +CONFIG_GREYBUS_BOOTROM=m +CONFIG_GREYBUS_BRIDGED_PHY=m +CONFIG_GREYBUS_ES2=m +CONFIG_GREYBUS_FIRMWARE=m +CONFIG_GREYBUS_GPIO=m +CONFIG_GREYBUS_HID=m +CONFIG_GREYBUS_I2C=m +CONFIG_GREYBUS_LIGHT=m +CONFIG_GREYBUS_LOG=m +CONFIG_GREYBUS_LOOPBACK=m +CONFIG_GREYBUS_POWER=m +CONFIG_GREYBUS_PWM=m +CONFIG_GREYBUS_RAW=m +CONFIG_GREYBUS_SDIO=m +CONFIG_GREYBUS_SPI=m +CONFIG_GREYBUS_UART=m +CONFIG_GREYBUS_USB=m +CONFIG_GREYBUS_VIBRATOR=m +CONFIG_GRO_CELLS=y +CONFIG_GTP=m +CONFIG_GUEST_PERF_EVENTS=y +# CONFIG_GUP_TEST is not set +CONFIG_GVE=m +CONFIG_HABANA_AI=m +CONFIG_HALTPOLL_CPUIDLE=m +CONFIG_HAMACHI=m +CONFIG_HAMRADIO=y +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAPPYMEAL=m +CONFIG_HARDENED_USERCOPY=y +CONFIG_HARDIRQS_SW_RESEND=y +CONFIG_HARDLOCKUP_CHECK_TIMESTAMP=y +CONFIG_HARDLOCKUP_DETECTOR=y +CONFIG_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +CONFIG_HAVE_ARCH_BITREVERSE=y +CONFIG_HAVE_ARCH_COMPAT_MMAP_BASES=y +CONFIG_HAVE_ARCH_COMPILER_H=y +CONFIG_HAVE_ARCH_HUGE_VMALLOC=y +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y +CONFIG_HAVE_ARCH_KASAN=y +CONFIG_HAVE_ARCH_KASAN_HW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y +CONFIG_HAVE_ARCH_KASAN_VMALLOC=y +CONFIG_HAVE_ARCH_KCSAN=y +CONFIG_HAVE_ARCH_KFENCE=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_MMAP_RND_BITS=y +CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y +CONFIG_HAVE_ARCH_NODE_DEV_GROUP=y +CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y +CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_HAVE_ARCH_SECCOMP=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_ARCH_STACKLEAK=y +CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE_PUD=y +CONFIG_HAVE_ARCH_USERFAULTFD_MINOR=y +CONFIG_HAVE_ARCH_USERFAULTFD_WP=y +CONFIG_HAVE_ARCH_VMAP_STACK=y +CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES=y +CONFIG_HAVE_ARM_SMCCC=y +CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y +CONFIG_HAVE_ASM_MODVERSIONS=y +CONFIG_HAVE_BOOTMEM_INFO_NODE=y +CONFIG_HAVE_BUILDTIME_MCOUNT_SORT=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_CLK_PREPARE=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_CONTEXT_TRACKING_OFFSTACK=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_ARGS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_DIRECT_CALLS=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_EBPF_JIT=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_EISA=y +CONFIG_HAVE_EXIT_THREAD=y +CONFIG_HAVE_FAST_GUP=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y +CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_GCC_PLUGINS=y +CONFIG_HAVE_GENERIC_VDSO=y +CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y +CONFIG_HAVE_HARDLOCKUP_DETECTOR_PERF=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IMA_KEXEC=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_JUMP_LABEL_HACK=y +CONFIG_HAVE_KCSAN_COMPILER=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KERNEL_ZSTD=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_ARCH_TLB_FLUSH_ALL=y +CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y +CONFIG_HAVE_KVM_DIRTY_RING=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_KVM_IRQFD=y +CONFIG_HAVE_KVM_IRQ_BYPASS=y +CONFIG_HAVE_KVM_IRQ_ROUTING=y +CONFIG_HAVE_KVM_MSI=y +CONFIG_HAVE_KVM_NO_POLL=y +CONFIG_HAVE_KVM_PFNCACHE=y +CONFIG_HAVE_KVM_PM_NOTIFIER=y +CONFIG_HAVE_KVM_VCPU_RUN_PID_CHANGE=y +CONFIG_HAVE_LIVEPATCH=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_MOD_ARCH_SPECIFIC=y +CONFIG_HAVE_MOVE_PMD=y +CONFIG_HAVE_MOVE_PUD=y +CONFIG_HAVE_NMI=y +CONFIG_HAVE_NOINSTR_HACK=y +CONFIG_HAVE_NOINSTR_VALIDATION=y +CONFIG_HAVE_OBJTOOL=y +CONFIG_HAVE_OBJTOOL_MCOUNT=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PATA_PLATFORM=y +CONFIG_HAVE_PCI=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_HAVE_PREEMPT_DYNAMIC=y +CONFIG_HAVE_PREEMPT_DYNAMIC_CALL=y +CONFIG_HAVE_PREEMPT_DYNAMIC_KEY=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_RELIABLE_STACKTRACE=y +CONFIG_HAVE_RETHOOK=y +CONFIG_HAVE_RSEQ=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT=y +CONFIG_HAVE_SAMPLE_FTRACE_DIRECT_MULTI=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HAVE_SOFTIRQ_ON_OWN_STACK=y +CONFIG_HAVE_STACKPROTECTOR=y +CONFIG_HAVE_STACK_VALIDATION=y +CONFIG_HAVE_STATIC_CALL=y +CONFIG_HAVE_STATIC_CALL_INLINE=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_UACCESS_VALIDATION=y +CONFIG_HAVE_UID16=y +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +CONFIG_HBMC_AM654=m +CONFIG_HD44780=m +CONFIG_HD44780_COMMON=m +CONFIG_HDC100X=m +CONFIG_HDC2010=m +CONFIG_HDLC=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_X25=m +CONFIG_HDMI=y +CONFIG_HDMI_LPE_AUDIO=m +# CONFIG_HEADERS_INSTALL is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +# CONFIG_HERMES_PRISM is not set +# CONFIG_HFI1_DEBUG_SDMA_ORDER is not set +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HI13X1_GMAC=y +CONFIG_HI3660_MBOX=m +CONFIG_HI6220_MBOX=m +CONFIG_HI6421V600_IRQ=m +CONFIG_HI8435=m +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION_SNAPSHOT_DEV=y +CONFIG_HID=m +CONFIG_HIDRAW=y +CONFIG_HID_A4TECH=m +CONFIG_HID_ACCUTOUCH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_ALPS=m +CONFIG_HID_APPLE=m +CONFIG_HID_APPLEIR=m +CONFIG_HID_ASUS=m +CONFIG_HID_AUREAL=m +CONFIG_HID_BATTERY_STRENGTH=y +CONFIG_HID_BELKIN=m +CONFIG_HID_BETOP_FF=m +CONFIG_HID_BIGBEN_FF=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CMEDIA=m +CONFIG_HID_CORSAIR=m +CONFIG_HID_COUGAR=m +CONFIG_HID_CP2112=m +CONFIG_HID_CREATIVE_SB0540=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_HID_ELAN=m +CONFIG_HID_ELECOM=m +CONFIG_HID_ELO=m +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=m +CONFIG_HID_FT260=m +CONFIG_HID_GEMBIRD=m +CONFIG_HID_GENERIC=m +CONFIG_HID_GFRM=m +CONFIG_HID_GLORIOUS=m +CONFIG_HID_GOOGLE_HAMMER=m +CONFIG_HID_GREENASIA=m +CONFIG_HID_GT683R=m +CONFIG_HID_GYRATION=m +CONFIG_HID_HOLTEK=m +CONFIG_HID_HYPERV_MOUSE=m +CONFIG_HID_ICADE=m +CONFIG_HID_ITE=m +CONFIG_HID_JABRA=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LED=m +CONFIG_HID_LENOVO=m +CONFIG_HID_LETSKETCH=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_LOGITECH_HIDPP=m +CONFIG_HID_MACALLY=m +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MALTRON=m +CONFIG_HID_MAYFLASH=m +CONFIG_HID_MCP2221=m +CONFIG_HID_MEGAWORLD_FF=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NINTENDO=m +CONFIG_HID_NTI=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_HID_PENMOUNT=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_CIR=y +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PID=y +CONFIG_HID_PLANTRONICS=m +CONFIG_HID_PLAYSTATION=m +CONFIG_HID_PRIMAX=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_RAZER=m +CONFIG_HID_REDRAGON=m +CONFIG_HID_RETRODE=m +CONFIG_HID_RMI=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_SAITEK=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SEMITEK=m +CONFIG_HID_SENSOR_ACCEL_3D=m +CONFIG_HID_SENSOR_ALS=m +CONFIG_HID_SENSOR_CUSTOM_INTEL_HINGE=m +CONFIG_HID_SENSOR_CUSTOM_SENSOR=m +CONFIG_HID_SENSOR_DEVICE_ROTATION=m +CONFIG_HID_SENSOR_GYRO_3D=m +CONFIG_HID_SENSOR_HUB=m +CONFIG_HID_SENSOR_HUMIDITY=m +CONFIG_HID_SENSOR_IIO_COMMON=m +CONFIG_HID_SENSOR_IIO_TRIGGER=m +CONFIG_HID_SENSOR_INCLINOMETER_3D=m +CONFIG_HID_SENSOR_MAGNETOMETER_3D=m +CONFIG_HID_SENSOR_PRESS=m +CONFIG_HID_SENSOR_PROX=m +CONFIG_HID_SENSOR_TEMP=m +CONFIG_HID_SIGMAMICRO=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_HID_SONY=m +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_STEAM=m +CONFIG_HID_STEELSERIES=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_THINGM=m +CONFIG_HID_THRUSTMASTER=m +CONFIG_HID_TIVO=m +# CONFIG_HID_TOPRE is not set +CONFIG_HID_TOPSEED=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_U2FZERO=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_UDRAW_PS3=m +CONFIG_HID_VIEWSONIC=m +CONFIG_HID_VIVALDI=m +CONFIG_HID_VIVALDI_COMMON=m +CONFIG_HID_WACOM=m +CONFIG_HID_WALTOP=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_XIAOMI=m +CONFIG_HID_XINMO=m +CONFIG_HID_ZEROPLUS=m +CONFIG_HID_ZYDACRON=m +CONFIG_HIGH_RES_TIMERS=y +CONFIG_HINIC=m +CONFIG_HIP04_ETH=m +# CONFIG_HIPPI is not set +CONFIG_HISILICON_ERRATUM_161010101=y +CONFIG_HISILICON_ERRATUM_161600802=y +CONFIG_HISILICON_IRQ_MBIGEN=y +CONFIG_HISILICON_LPC=y +CONFIG_HISI_ACC_VFIO_PCI=m +# CONFIG_HISI_DMA is not set +CONFIG_HISI_FEMAC=m +CONFIG_HISI_HIKEY_USB=m +CONFIG_HISI_PCIE_PMU=m +CONFIG_HISI_PMU=m +CONFIG_HISI_THERMAL=m +CONFIG_HIST_TRIGGERS=y +# CONFIG_HIST_TRIGGERS_DEBUG is not set +CONFIG_HIX5HD2_GMAC=m +CONFIG_HMC425=m +CONFIG_HMC6352=m +CONFIG_HMEM_REPORTING=y +CONFIG_HMM_MIRROR=y +CONFIG_HMS_ANYBUSS_BUS=m +CONFIG_HMS_PROFINET=m +CONFIG_HNS=m +CONFIG_HNS3=m +CONFIG_HNS3_DCB=y +CONFIG_HNS3_ENET=m +CONFIG_HNS3_HCLGE=m +CONFIG_HNS3_HCLGEVF=m +CONFIG_HNS_DSAF=m +CONFIG_HNS_ENET=m +CONFIG_HNS_MDIO=m +CONFIG_HOLTEK_FF=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_CS=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_PLX=m +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_SHPC=y +CONFIG_HOTPLUG_SMT=y +CONFIG_HP03=m +CONFIG_HP206C=m +CONFIG_HPET=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_MMAP_DEFAULT=y +CONFIG_HPET_TIMER=y +CONFIG_HPFS_FS=m +CONFIG_HPWDT_NMI_DECODING=y +CONFIG_HP_ACCEL=m +CONFIG_HP_ILO=m +CONFIG_HP_WATCHDOG=m +CONFIG_HP_WMI=m +CONFIG_HSA_AMD=y +CONFIG_HSA_AMD_SVM=y +CONFIG_HSI=m +CONFIG_HSI_BOARDINFO=y +CONFIG_HSI_CHAR=m +CONFIG_HSR=m +CONFIG_HSU_DMA=y +CONFIG_HT16K33=m +CONFIG_HTC_I2CPLD=y +CONFIG_HTC_PASIC3=m +CONFIG_HTE=y +CONFIG_HTE_TEGRA194=m +CONFIG_HTE_TEGRA194_TEST=m +CONFIG_HTS221=m +CONFIG_HTS221_I2C=m +CONFIG_HTS221_SPI=m +CONFIG_HTU21=m +CONFIG_HUAWEI_WMI=m +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP=y +# CONFIG_HUGETLB_PAGE_OPTIMIZE_VMEMMAP_DEFAULT_ON is not set +# CONFIG_HVC_DCC is not set +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_XEN=y +CONFIG_HVC_XEN_FRONTEND=y +CONFIG_HWLAT_TRACER=y +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +CONFIG_HWPOISON_INJECT=m +CONFIG_HWSPINLOCK=y +CONFIG_HWSPINLOCK_OMAP=m +CONFIG_HWSPINLOCK_QCOM=m +CONFIG_HWSPINLOCK_SPRD=m +CONFIG_HWSPINLOCK_SUN6I=m +CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_ARM_SMCCC_TRNG=m +CONFIG_HW_RANDOM_BA431=m +CONFIG_HW_RANDOM_BCM2835=m +CONFIG_HW_RANDOM_CAVIUM=m +CONFIG_HW_RANDOM_CCTRNG=m +CONFIG_HW_RANDOM_CN10K=m +CONFIG_HW_RANDOM_HISI=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_IPROC_RNG200=m +CONFIG_HW_RANDOM_MESON=m +CONFIG_HW_RANDOM_MTK=m +CONFIG_HW_RANDOM_OMAP=m +CONFIG_HW_RANDOM_OPTEE=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_TPM=y +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HW_RANDOM_XGENE=m +CONFIG_HW_RANDOM_XIPHERA=m +CONFIG_HX711=m +CONFIG_HYPERV=m +CONFIG_HYPERVISOR_GUEST=y +CONFIG_HYPERV_BALLOON=m +CONFIG_HYPERV_IOMMU=y +CONFIG_HYPERV_KEYBOARD=m +CONFIG_HYPERV_NET=m +CONFIG_HYPERV_STORAGE=m +# CONFIG_HYPERV_TESTING is not set +CONFIG_HYPERV_TIMER=y +CONFIG_HYPERV_UTILS=m +CONFIG_HYPERV_VSOCKETS=m +# CONFIG_HZ_100 is not set +# CONFIG_HZ_300 is not set +# CONFIG_HZ_PERIODIC is not set +CONFIG_I2C=y +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_ALTERA=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_APPLE=m +CONFIG_I2C_ARB_GPIO_CHALLENGE=m +CONFIG_I2C_BCM2835=m +CONFIG_I2C_BCM_IPROC=m +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_BRCMSTB=m +# CONFIG_I2C_CADENCE is not set +CONFIG_I2C_CBUS_GPIO=m +CONFIG_I2C_CCGX_UCSI=m +CONFIG_I2C_CHARDEV=y +CONFIG_I2C_CHT_WC=m +CONFIG_I2C_COMPAT=y +CONFIG_I2C_CP2615=m +CONFIG_I2C_CROS_EC_TUNNEL=m +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CORE is not set +CONFIG_I2C_DEMUX_PINCTRL=m +CONFIG_I2C_DESIGNWARE_AMDPSP=y +CONFIG_I2C_DESIGNWARE_BAYTRAIL=y +CONFIG_I2C_DESIGNWARE_CORE=y +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_I2C_DESIGNWARE_SLAVE is not set +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_DLN2=m +# CONFIG_I2C_EMEV2 is not set +CONFIG_I2C_FSI=m +CONFIG_I2C_GPIO=m +# CONFIG_I2C_GPIO_FAULT_INJECTOR is not set +CONFIG_I2C_HELPER_AUTO=y +CONFIG_I2C_HID_ACPI=m +CONFIG_I2C_HID_CORE=m +CONFIG_I2C_HID_OF=m +CONFIG_I2C_HID_OF_GOODIX=m +CONFIG_I2C_HISI=m +CONFIG_I2C_HIX5HD2=m +CONFIG_I2C_I801=m +CONFIG_I2C_IMX=m +CONFIG_I2C_IMX_LPI2C=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_ISMT=m +CONFIG_I2C_KEMPLD=m +CONFIG_I2C_MESON=m +CONFIG_I2C_MLXBF=m +CONFIG_I2C_MLXCPLD=m +CONFIG_I2C_MT65XX=m +CONFIG_I2C_MUX=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_GPMUX=m +CONFIG_I2C_MUX_LTC4306=m +CONFIG_I2C_MUX_MLXCPLD=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_MUX_PINCTRL=m +CONFIG_I2C_MUX_REG=m +CONFIG_I2C_MV64XXX=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_NOMADIK=m +CONFIG_I2C_NVIDIA_GPU=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_OWL=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_PXA=m +CONFIG_I2C_PXA_SLAVE=y +CONFIG_I2C_QCOM_CCI=m +CONFIG_I2C_QCOM_GENI=m +CONFIG_I2C_QUP=m +CONFIG_I2C_RCAR=m +CONFIG_I2C_RIIC=m +CONFIG_I2C_RK3X=m +CONFIG_I2C_ROBOTFUZZ_OSIF=m +CONFIG_I2C_SCMI=m +CONFIG_I2C_SH_MOBILE=m +CONFIG_I2C_SI470X=m +CONFIG_I2C_SI4713=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SLAVE_EEPROM=m +# CONFIG_I2C_SLAVE_TESTUNIT is not set +CONFIG_I2C_SMBUS=m +CONFIG_I2C_SPRD=y +CONFIG_I2C_STUB=m +CONFIG_I2C_SYNQUACER=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TEGRA=m +CONFIG_I2C_TEGRA_BPMP=m +CONFIG_I2C_THUNDERX=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VERSATILE=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VIPERBOARD=m +CONFIG_I2C_VIRTIO=m +CONFIG_I2C_XGENE_SLIMPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I2C_XLP9XX=m +CONFIG_I3C=m +CONFIG_I40E=m +CONFIG_I40EVF=m +CONFIG_I40E_DCB=y +CONFIG_I6300ESB_WDT=m +CONFIG_I82092=m +CONFIG_I8253_LOCK=y +CONFIG_I8K=y +CONFIG_IA32_EMULATION=y +CONFIG_IA32_FEAT_CTL=y +CONFIG_IAQCORE=m +CONFIG_IAVF=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBM_ASM=m +CONFIG_IBM_RTL=m +CONFIG_ICE=m +CONFIG_ICE_HWTS=y +CONFIG_ICE_SWITCHDEV=y +CONFIG_ICP10100=m +CONFIG_ICPLUS_PHY=m +CONFIG_ICS932S401=m +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_IDLE_INJECT=y +CONFIG_IDLE_PAGE_TRACKING=y +CONFIG_IE6XX_WDT=m +CONFIG_IEEE802154=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_IEEE802154_ADF7242=m +CONFIG_IEEE802154_AT86RF230=m +CONFIG_IEEE802154_ATUSB=m +CONFIG_IEEE802154_CA8210=m +CONFIG_IEEE802154_CA8210_DEBUGFS=y +CONFIG_IEEE802154_CC2520=m +CONFIG_IEEE802154_DRIVERS=m +CONFIG_IEEE802154_FAKELB=m +CONFIG_IEEE802154_HWSIM=m +CONFIG_IEEE802154_MCR20A=m +CONFIG_IEEE802154_MRF24J40=m +# CONFIG_IEEE802154_NL802154_EXPERIMENTAL is not set +CONFIG_IEEE802154_SOCKET=m +CONFIG_IFB=m +CONFIG_IFCVF=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IGB_DCA=y +CONFIG_IGB_HWMON=y +CONFIG_IGC=m +CONFIG_IIO=m +CONFIG_IIO_ADIS_LIB=m +CONFIG_IIO_ADIS_LIB_BUFFER=y +CONFIG_IIO_BUFFER=y +CONFIG_IIO_BUFFER_CB=m +CONFIG_IIO_BUFFER_DMA=m +CONFIG_IIO_BUFFER_DMAENGINE=m +CONFIG_IIO_BUFFER_HW_CONSUMER=m +CONFIG_IIO_CONFIGFS=m +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_CROS_EC_ACCEL_LEGACY=m +CONFIG_IIO_CROS_EC_BARO=m +CONFIG_IIO_CROS_EC_LIGHT_PROX=m +CONFIG_IIO_CROS_EC_SENSORS=m +CONFIG_IIO_CROS_EC_SENSORS_CORE=m +CONFIG_IIO_CROS_EC_SENSORS_LID_ANGLE=m +CONFIG_IIO_HRTIMER_TRIGGER=m +CONFIG_IIO_INTERRUPT_TRIGGER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_MS_SENSORS_I2C=m +CONFIG_IIO_MUX=m +CONFIG_IIO_RESCALE=m +CONFIG_IIO_SCMI=m +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +CONFIG_IIO_SSP_SENSORHUB=m +CONFIG_IIO_SSP_SENSORS_COMMONS=m +CONFIG_IIO_ST_ACCEL_3AXIS=m +CONFIG_IIO_ST_ACCEL_I2C_3AXIS=m +CONFIG_IIO_ST_ACCEL_SPI_3AXIS=m +CONFIG_IIO_ST_GYRO_3AXIS=m +CONFIG_IIO_ST_GYRO_I2C_3AXIS=m +CONFIG_IIO_ST_GYRO_SPI_3AXIS=m +CONFIG_IIO_ST_LSM6DSX=m +CONFIG_IIO_ST_LSM6DSX_I2C=m +CONFIG_IIO_ST_LSM6DSX_I3C=m +CONFIG_IIO_ST_LSM6DSX_SPI=m +CONFIG_IIO_ST_LSM9DS0=m +CONFIG_IIO_ST_LSM9DS0_I2C=m +CONFIG_IIO_ST_LSM9DS0_SPI=m +CONFIG_IIO_ST_MAGN_3AXIS=m +CONFIG_IIO_ST_MAGN_I2C_3AXIS=m +CONFIG_IIO_ST_MAGN_SPI_3AXIS=m +CONFIG_IIO_ST_PRESS=m +CONFIG_IIO_ST_PRESS_I2C=m +CONFIG_IIO_ST_PRESS_SPI=m +CONFIG_IIO_ST_SENSORS_CORE=m +CONFIG_IIO_ST_SENSORS_I2C=m +CONFIG_IIO_ST_SENSORS_SPI=m +CONFIG_IIO_SW_DEVICE=m +CONFIG_IIO_SW_TRIGGER=m +CONFIG_IIO_SYSFS_TRIGGER=m +CONFIG_IIO_TIGHTLOOP_TRIGGER=m +CONFIG_IIO_TRIGGER=y +CONFIG_IIO_TRIGGERED_BUFFER=m +CONFIG_IIO_TRIGGERED_EVENT=m +# CONFIG_IKCONFIG is not set +CONFIG_IKHEADERS=m +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_IMA=y +CONFIG_IMA_APPRAISE=y +CONFIG_IMA_APPRAISE_BOOTPARAM=y +# CONFIG_IMA_APPRAISE_BUILD_POLICY is not set +CONFIG_IMA_APPRAISE_MODSIG=y +CONFIG_IMA_ARCH_POLICY=y +# CONFIG_IMA_BLACKLIST_KEYRING is not set +CONFIG_IMA_DEFAULT_HASH="sha1" +CONFIG_IMA_DEFAULT_HASH_SHA1=y +# CONFIG_IMA_DEFAULT_HASH_SHA256 is not set +# CONFIG_IMA_DEFAULT_HASH_SHA512 is not set +CONFIG_IMA_DEFAULT_TEMPLATE="ima-ng" +# CONFIG_IMA_DISABLE_HTABLE is not set +CONFIG_IMA_KEXEC=y +# CONFIG_IMA_KEYRINGS_PERMIT_SIGNED_BY_BUILTIN_OR_SECONDARY is not set +# CONFIG_IMA_LOAD_X509 is not set +CONFIG_IMA_LSM_RULES=y +CONFIG_IMA_MEASURE_ASYMMETRIC_KEYS=y +CONFIG_IMA_MEASURE_PCR_IDX=10 +CONFIG_IMA_NG_TEMPLATE=y +CONFIG_IMA_QUEUE_EARLY_BOOT_KEYS=y +# CONFIG_IMA_READ_POLICY is not set +CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT=y +# CONFIG_IMA_SIG_TEMPLATE is not set +CONFIG_IMA_TRUSTED_KEYRING=y +# CONFIG_IMA_WRITE_POLICY is not set +CONFIG_IMG_ASCII_LCD=m +CONFIG_IMX2_WDT=m +CONFIG_IMX7D_ADC=m +CONFIG_IMX7ULP_WDT=m +CONFIG_IMX8MM_THERMAL=m +CONFIG_IMX8QXP_ADC=m +CONFIG_IMX_DMA=m +CONFIG_IMX_DSP=m +CONFIG_IMX_DSP_REMOTEPROC=m +CONFIG_IMX_GPCV2=y +CONFIG_IMX_GPCV2_PM_DOMAINS=y +CONFIG_IMX_INTMUX=y +CONFIG_IMX_IRQSTEER=y +CONFIG_IMX_MBOX=m +CONFIG_IMX_REMOTEPROC=m +CONFIG_IMX_SCU=y +CONFIG_IMX_SCU_PD=y +CONFIG_IMX_SC_THERMAL=m +CONFIG_IMX_SC_WDT=m +CONFIG_IMX_SDMA=m +CONFIG_IMX_THERMAL=m +CONFIG_IMX_WEIM=y +CONFIG_INA2XX_ADC=m +CONFIG_INDIRECT_PIO=y +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_ESPINTCP=y +CONFIG_INET6_ESP_OFFLOAD=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET_AH=m +CONFIG_INET_DCCP_DIAG=m +CONFIG_INET_DIAG=m +CONFIG_INET_DIAG_DESTROY=y +CONFIG_INET_ESP=m +CONFIG_INET_ESPINTCP=y +CONFIG_INET_ESP_OFFLOAD=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_MPTCP_DIAG=m +CONFIG_INET_RAW_DIAG=m +CONFIG_INET_SCTP_DIAG=m +CONFIG_INET_TABLE_PERTURB_ORDER=16 +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_UDP_DIAG=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y +CONFIG_INFINIBAND_BNXT_RE=m +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EFA=m +CONFIG_INFINIBAND_HFI1=m +CONFIG_INFINIBAND_HNS=m +CONFIG_INFINIBAND_HNS_HIP08=y +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +# CONFIG_INFINIBAND_IPOIB_DEBUG is not set +CONFIG_INFINIBAND_IRDMA=m +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_ISERT=m +CONFIG_INFINIBAND_MTHCA=m +# CONFIG_INFINIBAND_MTHCA_DEBUG is not set +CONFIG_INFINIBAND_OCRDMA=m +CONFIG_INFINIBAND_ON_DEMAND_PAGING=y +CONFIG_INFINIBAND_OPA_VNIC=m +CONFIG_INFINIBAND_QEDR=m +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_QIB_DCA=y +CONFIG_INFINIBAND_RDMAVT=m +CONFIG_INFINIBAND_RTRS=m +CONFIG_INFINIBAND_RTRS_CLIENT=m +CONFIG_INFINIBAND_RTRS_SERVER=m +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_SRPT=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFINIBAND_USNIC=m +CONFIG_INFINIBAND_VIRT_DMA=y +CONFIG_INFINIBAND_VMWARE_PVRDMA=m +CONFIG_INFTL=m +CONFIG_INITRAMFS_PRESERVE_MTIME=y +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INIT_ON_ALLOC_DEFAULT_ON=y +# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set +CONFIG_INIT_STACK_NONE=y +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +CONFIG_INPUT_88PM80X_ONKEY=m +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_ARIZONA_HAPTICS=m +CONFIG_INPUT_ATC260X_ONKEY=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATMEL_CAPTOUCH=m +CONFIG_INPUT_AXP20X_PEK=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_CPCAP_PWRBUTTON=m +CONFIG_INPUT_DA7280_HAPTICS=m +CONFIG_INPUT_DA9052_ONKEY=m +CONFIG_INPUT_DA9055_ONKEY=m +CONFIG_INPUT_DA9063_ONKEY=m +CONFIG_INPUT_DRV260X_HAPTICS=m +CONFIG_INPUT_DRV2665_HAPTICS=m +CONFIG_INPUT_DRV2667_HAPTICS=m +CONFIG_INPUT_E3X0_BUTTON=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_GPIO_BEEPER=m +CONFIG_INPUT_GPIO_DECODER=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_GPIO_VIBRA=m +CONFIG_INPUT_HISI_POWERKEY=m +CONFIG_INPUT_IDEAPAD_SLIDEBAR=m +CONFIG_INPUT_IMS_PCU=m +CONFIG_INPUT_IQS269A=m +CONFIG_INPUT_IQS626A=m +CONFIG_INPUT_IQS7222=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +CONFIG_INPUT_LEDS=m +CONFIG_INPUT_MATRIXKMAP=m +CONFIG_INPUT_MAX77650_ONKEY=m +CONFIG_INPUT_MAX77693_HAPTIC=m +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MAX8997_HAPTIC=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_PALMAS_PWRBUTTON=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_PM8941_PWRKEY=m +CONFIG_INPUT_PM8XXX_VIBRATOR=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_PWM_VIBRA=m +CONFIG_INPUT_RAVE_SP_PWRBUTTON=m +CONFIG_INPUT_REGULATOR_HAPTIC=m +CONFIG_INPUT_RETU_PWRBUTTON=m +CONFIG_INPUT_RK805_PWRKEY=m +CONFIG_INPUT_SC27XX_VIBRA=m +CONFIG_INPUT_SOC_BUTTON_ARRAY=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_STPMIC1_ONKEY=m +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INPUT_TPS65218_PWRBUTTON=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_VIVALDIFMAP=y +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_YEALINK=m +CONFIG_INSTRUCTION_DECODER=y +CONFIG_INT3406_THERMAL=m +CONFIG_INT340X_THERMAL=m +CONFIG_INTEGRITY=y +CONFIG_INTEGRITY_ASYMMETRIC_KEYS=y +CONFIG_INTEGRITY_AUDIT=y +CONFIG_INTEGRITY_MACHINE_KEYRING=y +CONFIG_INTEGRITY_PLATFORM_KEYRING=y +CONFIG_INTEGRITY_SIGNATURE=y +CONFIG_INTEGRITY_TRUSTED_KEYRING=y +CONFIG_INTEL_ATOMISP=y +CONFIG_INTEL_ATOMISP2_LED=m +CONFIG_INTEL_ATOMISP2_PDX86=y +CONFIG_INTEL_BXTWC_PMIC_TMU=m +CONFIG_INTEL_BXT_PMIC_THERMAL=m +CONFIG_INTEL_CHTDC_TI_PWRBTN=m +CONFIG_INTEL_CHTWC_INT33FE=m +CONFIG_INTEL_GTT=y +CONFIG_INTEL_HFI_THERMAL=y +CONFIG_INTEL_HID_EVENT=m +CONFIG_INTEL_IDLE=y +CONFIG_INTEL_IDMA64=m +CONFIG_INTEL_IDXD=m +CONFIG_INTEL_IDXD_BUS=m +# CONFIG_INTEL_IDXD_COMPAT is not set +CONFIG_INTEL_IDXD_PERFMON=y +CONFIG_INTEL_IDXD_SVM=y +CONFIG_INTEL_INT0002_VGPIO=m +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +# CONFIG_INTEL_IOMMU_SCALABLE_MODE_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_SVM=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_ISHTP_ECLITE=m +CONFIG_INTEL_ISH_FIRMWARE_DOWNLOADER=m +CONFIG_INTEL_ISH_HID=m +CONFIG_INTEL_LDMA=y +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MEI_GSC=m +CONFIG_INTEL_MEI_HDCP=m +CONFIG_INTEL_MEI_ME=m +CONFIG_INTEL_MEI_PXP=m +CONFIG_INTEL_MEI_TXE=m +CONFIG_INTEL_MEI_WDT=m +CONFIG_INTEL_MENLOW=m +CONFIG_INTEL_MRFLD_ADC=m +CONFIG_INTEL_MRFLD_PWRBTN=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_INTEL_PCH_THERMAL=m +CONFIG_INTEL_PMC_CORE=y +CONFIG_INTEL_PMT_CLASS=m +CONFIG_INTEL_PMT_CRASHLOG=m +CONFIG_INTEL_PMT_TELEMETRY=m +CONFIG_INTEL_POWERCLAMP=m +CONFIG_INTEL_PUNIT_IPC=m +CONFIG_INTEL_QEP=m +CONFIG_INTEL_RAPL=m +CONFIG_INTEL_RAPL_CORE=m +CONFIG_INTEL_RST=m +CONFIG_INTEL_SAR_INT1092=m +CONFIG_INTEL_SCU=y +CONFIG_INTEL_SCU_IPC=y +CONFIG_INTEL_SCU_IPC_UTIL=m +CONFIG_INTEL_SCU_PCI=y +CONFIG_INTEL_SCU_PLATFORM=m +CONFIG_INTEL_SDSI=m +CONFIG_INTEL_SKL_INT3472=m +CONFIG_INTEL_SMARTCONNECT=m +CONFIG_INTEL_SOC_DTS_IOSF_CORE=m +CONFIG_INTEL_SOC_DTS_THERMAL=m +CONFIG_INTEL_SOC_PMIC=y +CONFIG_INTEL_SOC_PMIC_BXTWC=m +CONFIG_INTEL_SOC_PMIC_CHTDC_TI=m +CONFIG_INTEL_SOC_PMIC_CHTWC=y +CONFIG_INTEL_SOC_PMIC_MRFLD=m +CONFIG_INTEL_SPEED_SELECT_INTERFACE=m +CONFIG_INTEL_STRATIX10_RSU=m +CONFIG_INTEL_STRATIX10_SERVICE=m +CONFIG_INTEL_TCC_COOLING=m +CONFIG_INTEL_TDX_GUEST=y +CONFIG_INTEL_TELEMETRY=m +CONFIG_INTEL_TH=m +CONFIG_INTEL_TH_ACPI=m +# CONFIG_INTEL_TH_DEBUG is not set +CONFIG_INTEL_TH_GTH=m +CONFIG_INTEL_TH_MSU=m +CONFIG_INTEL_TH_PCI=m +CONFIG_INTEL_TH_PTI=m +CONFIG_INTEL_TH_STH=m +CONFIG_INTEL_TURBO_MAX_3=y +CONFIG_INTEL_TXT=y +CONFIG_INTEL_UNCORE_FREQ_CONTROL=m +CONFIG_INTEL_VBTN=m +CONFIG_INTEL_VSEC=m +CONFIG_INTEL_WMI=y +CONFIG_INTEL_WMI_SBL_FW_UPDATE=m +CONFIG_INTEL_WMI_THUNDERBOLT=m +CONFIG_INTEL_XWAY_PHY=m +CONFIG_INTERCONNECT=y +CONFIG_INTERCONNECT_IMX=m +CONFIG_INTERCONNECT_IMX8MM=m +CONFIG_INTERCONNECT_IMX8MN=m +CONFIG_INTERCONNECT_IMX8MQ=m +CONFIG_INTERCONNECT_QCOM=y +CONFIG_INTERCONNECT_QCOM_BCM_VOTER=m +CONFIG_INTERCONNECT_QCOM_MSM8916=m +CONFIG_INTERCONNECT_QCOM_MSM8939=m +CONFIG_INTERCONNECT_QCOM_MSM8974=m +CONFIG_INTERCONNECT_QCOM_MSM8996=m +CONFIG_INTERCONNECT_QCOM_OSM_L3=m +CONFIG_INTERCONNECT_QCOM_QCM2290=m +CONFIG_INTERCONNECT_QCOM_QCS404=m +CONFIG_INTERCONNECT_QCOM_RPMH=m +CONFIG_INTERCONNECT_QCOM_RPMH_POSSIBLE=y +CONFIG_INTERCONNECT_QCOM_SC7180=m +CONFIG_INTERCONNECT_QCOM_SC7280=m +CONFIG_INTERCONNECT_QCOM_SC8180X=m +CONFIG_INTERCONNECT_QCOM_SC8280XP=m +CONFIG_INTERCONNECT_QCOM_SDM660=m +CONFIG_INTERCONNECT_QCOM_SDM845=m +CONFIG_INTERCONNECT_QCOM_SDX55=m +CONFIG_INTERCONNECT_QCOM_SDX65=m +CONFIG_INTERCONNECT_QCOM_SM8150=m +CONFIG_INTERCONNECT_QCOM_SM8250=m +CONFIG_INTERCONNECT_QCOM_SM8350=m +CONFIG_INTERCONNECT_QCOM_SM8450=m +CONFIG_INTERCONNECT_QCOM_SMD_RPM=m +CONFIG_INTERRUPT_CNT=m +CONFIG_INTERVAL_TREE=y +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_INV_ICM42600=m +CONFIG_INV_ICM42600_I2C=m +CONFIG_INV_ICM42600_SPI=m +CONFIG_INV_MPU6050_I2C=m +CONFIG_INV_MPU6050_IIO=m +CONFIG_INV_MPU6050_SPI=m +CONFIG_IOASID=y +CONFIG_IOMMU_API=y +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_DEBUGFS is not set +# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set +CONFIG_IOMMU_DMA=y +CONFIG_IOMMU_HELPER=y +CONFIG_IOMMU_IOVA=y +CONFIG_IOMMU_IO_PGTABLE=y +# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set +CONFIG_IOMMU_IO_PGTABLE_LPAE=y +# CONFIG_IOMMU_IO_PGTABLE_LPAE_SELFTEST is not set +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOMMU_SVA=y +CONFIG_IONIC=m +CONFIG_IOSCHED_BFQ=m +CONFIG_IOSF_MBI=y +CONFIG_IOSF_MBI_DEBUG=y +CONFIG_IOSM=m +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_NONE is not set +# CONFIG_IO_DELAY_UDELAY is not set +# CONFIG_IO_STRICT_DEVMEM is not set +CONFIG_IO_URING=y +CONFIG_IO_WQ=y +CONFIG_IP5XXX_POWER=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_RPFILTER=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_SRH=m +CONFIG_IP6_NF_NAT=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_TARGET_MASQUERADE=m +CONFIG_IP6_NF_TARGET_NPT=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_TARGET_SYNPROXY=m +CONFIG_IPACK_BUS=m +CONFIG_IPC_NS=y +# CONFIG_IPDDP is not set +CONFIG_IPMB_DEVICE_INTERFACE=m +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_DMI_DECODE=y +CONFIG_IPMI_HANDLER=m +CONFIG_IPMI_IPMB=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_PLAT_DATA=y +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_SSIF=m +CONFIG_IPMI_WATCHDOG=m +# CONFIG_IPMMU_VMSA is not set +CONFIG_IPQ_APSS_6018=m +CONFIG_IPQ_APSS_PLL=m +CONFIG_IPQ_GCC_4019=m +CONFIG_IPQ_GCC_6018=m +CONFIG_IPQ_GCC_806X=m +CONFIG_IPQ_GCC_8074=m +CONFIG_IPQ_LCC_806X=m +CONFIG_IPV6=y +CONFIG_IPV6_FOU=m +CONFIG_IPV6_FOU_TUNNEL=m +CONFIG_IPV6_GRE=m +CONFIG_IPV6_ILA=m +CONFIG_IPV6_IOAM6_LWTUNNEL=y +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_ROUTE_INFO=y +# CONFIG_IPV6_RPL_LWTUNNEL is not set +CONFIG_IPV6_SEG6_BPF=y +CONFIG_IPV6_SEG6_HMAC=y +CONFIG_IPV6_SEG6_LWTUNNEL=y +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPV6_VTI=m +CONFIG_IPVLAN=m +CONFIG_IPVLAN_L3S=y +CONFIG_IPVTAP=m +CONFIG_IPW2100=m +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2100_MONITOR=y +CONFIG_IPW2200=m +# CONFIG_IPW2200_DEBUG is not set +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPWIRELESS=m +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_DCCP=m +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +# CONFIG_IP_DCCP_CCID3 is not set +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MROUTE=y +CONFIG_IP_MROUTE_COMMON=y +CONFIG_IP_MROUTE_MULTIPLE_TABLES=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARP_MANGLE=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_RPFILTER=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_SYNPROXY=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_IP_PNP is not set +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_SCTP=m +CONFIG_IP_SET=m +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPMAC=m +CONFIG_IP_SET_HASH_IPMARK=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_MAC=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_HASH_NETNET=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_HASH_NETPORTNET=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_FO=m +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_IPV6=y +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_MH=m +CONFIG_IP_VS_MH_TAB_INDEX=12 +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_OVF=m +CONFIG_IP_VS_PE_SIP=m +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_SCTP=y +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_SH_TAB_BITS=8 +CONFIG_IP_VS_TAB_BITS=12 +CONFIG_IP_VS_TWOS=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_WRR=m +CONFIG_IQS620AT_TEMP=m +CONFIG_IQS621_ALS=m +CONFIG_IQS624_POS=m +CONFIG_IRQCHIP=y +# CONFIG_IRQSOFF_TRACER is not set +CONFIG_IRQ_BYPASS_MANAGER=y +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FASTEOI_HIERARCHY_HANDLERS=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_IRQ_MSI_IOMMU=y +CONFIG_IRQ_POLL=y +CONFIG_IRQ_REMAP=y +CONFIG_IRQ_SIM=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_WORK=y +CONFIG_IR_ENE=m +CONFIG_IR_FINTEK=m +CONFIG_IR_GPIO_CIR=m +CONFIG_IR_GPIO_TX=m +CONFIG_IR_HIX5HD2=m +CONFIG_IR_IGORPLUGUSB=m +CONFIG_IR_IGUANA=m +CONFIG_IR_IMON=m +CONFIG_IR_IMON_DECODER=m +CONFIG_IR_IMON_RAW=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_MESON=m +CONFIG_IR_MESON_TX=m +CONFIG_IR_MTK=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_PWM_TX=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_RCMM_DECODER=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_SANYO_DECODER=m +CONFIG_IR_SERIAL=m +CONFIG_IR_SERIAL_TRANSMITTER=y +CONFIG_IR_SHARP_DECODER=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_SPI=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_SUNXI=m +CONFIG_IR_TOY=m +CONFIG_IR_TTUSBIR=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_IR_XMP_DECODER=m +CONFIG_ISA_BUS=y +CONFIG_ISA_BUS_API=y +CONFIG_ISA_DMA_API=y +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_ISCSI_IBFT=m +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TARGET_CXGB4=m +CONFIG_ISCSI_TCP=m +CONFIG_ISDN=y +CONFIG_ISDN_CAPI=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_ISL29125=m +CONFIG_ISL29501=m +CONFIG_ISO9660_FS=m +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_ITCO_WDT=m +CONFIG_ITG3200=m +CONFIG_IWL3945=m +CONFIG_IWL4965=m +CONFIG_IWLDVM=m +CONFIG_IWLEGACY=m +# CONFIG_IWLEGACY_DEBUG is not set +CONFIG_IWLEGACY_DEBUGFS=y +CONFIG_IWLMVM=m +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +CONFIG_IWLWIFI_DEVICE_TRACING=y +CONFIG_IWLWIFI_LEDS=y +CONFIG_IWLWIFI_OPMODE_MODULAR=y +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBEVF=m +CONFIG_IXGBEVF_IPSEC=y +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_IXGBE_HWMON=y +CONFIG_IXGBE_IPSEC=y +CONFIG_JAILHOUSE_GUEST=y +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_POSIX_ACL=y +CONFIG_JFFS2_FS_SECURITY=y +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_FS_WRITEBUFFER=y +CONFIG_JFFS2_FS_XATTR=y +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_JME=m +CONFIG_JOLIET=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADC=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_FSIA6B=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_232=m +CONFIG_JOYSTICK_IFORCE_USB=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_PSXPAD_SPI=m +CONFIG_JOYSTICK_PSXPAD_SPI_FF=y +CONFIG_JOYSTICK_PXRC=m +CONFIG_JOYSTICK_QWIIC=m +CONFIG_JOYSTICK_SENSEHAT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JSA1212=m +CONFIG_JUMP_LABEL=y +CONFIG_K3_DMA=m +CONFIG_K3_RTI_WATCHDOG=m +CONFIG_K3_THERMAL=m +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ABSOLUTE_PERCPU=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KALLSYMS_BASE_RELATIVE=y +CONFIG_KARMA_PARTITION=y +# CONFIG_KASAN is not set +CONFIG_KCMP=y +# CONFIG_KCOV is not set +# CONFIG_KCSAN is not set +CONFIG_KDB_CONTINUE_CATASTROPHIC=0 +CONFIG_KDB_DEFAULT_ENABLE=0x1 +CONFIG_KDB_KEYBOARD=y +CONFIG_KEEMBAY_WATCHDOG=m +CONFIG_KEMPLD_WDT=m +# CONFIG_KERNEL_BZIP2 is not set +# CONFIG_KERNEL_GZIP is not set +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set +CONFIG_KERNEL_MODE_NEON=y +# CONFIG_KERNEL_XZ is not set +CONFIG_KERNEL_ZSTD=y +CONFIG_KERNFS=y +CONFIG_KEXEC=y +CONFIG_KEXEC_BZIMAGE_VERIFY_SIG=y +CONFIG_KEXEC_CORE=y +CONFIG_KEXEC_FILE=y +# CONFIG_KEXEC_IMAGE_VERIFY_SIG is not set +CONFIG_KEXEC_JUMP=y +CONFIG_KEXEC_SIG=y +# CONFIG_KEXEC_SIG_FORCE is not set +CONFIG_KEYBOARD_ADC=m +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_APPLESPI=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_BCM=m +CONFIG_KEYBOARD_CAP11XX=m +CONFIG_KEYBOARD_CROS_EC=m +CONFIG_KEYBOARD_CYPRESS_SF=m +CONFIG_KEYBOARD_DLINK_DIR685=m +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_IMX=m +CONFIG_KEYBOARD_IMX_SC_KEY=m +CONFIG_KEYBOARD_IQS62X=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_LM8333=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_MT6779=m +CONFIG_KEYBOARD_MTK_PMIC=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_NVEC=m +CONFIG_KEYBOARD_OMAP4=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_QT1050=m +CONFIG_KEYBOARD_QT1070=m +CONFIG_KEYBOARD_QT2160=m +CONFIG_KEYBOARD_SAMSUNG=m +CONFIG_KEYBOARD_SNVS_PWRKEY=m +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_STOWAWAY=m +# CONFIG_KEYBOARD_SUN4I_LRADC is not set +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TCA8418=m +CONFIG_KEYBOARD_TEGRA=m +CONFIG_KEYBOARD_TM2_TOUCHKEY=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYS=y +CONFIG_KEYS_REQUEST_CACHE=y +CONFIG_KEY_DH_OPERATIONS=y +CONFIG_KEY_NOTIFICATIONS=y +CONFIG_KFENCE=y +# CONFIG_KFENCE_DEFERRABLE is not set +CONFIG_KFENCE_NUM_OBJECTS=255 +CONFIG_KFENCE_SAMPLE_INTERVAL=0 +# CONFIG_KFENCE_STATIC_KEYS is not set +CONFIG_KFENCE_STRESS_TEST_FAULTS=0 +CONFIG_KGDB=y +CONFIG_KGDB_HONOUR_BLOCKLIST=y +CONFIG_KGDB_KDB=y +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KHADAS_MCU_FAN_THERMAL=m +CONFIG_KMX61=m +CONFIG_KPROBES=y +CONFIG_KPROBES_ON_FTRACE=y +CONFIG_KPROBE_EVENTS=y +# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set +# CONFIG_KPROBE_EVENT_GEN_TEST is not set +CONFIG_KPSS_XCC=m +CONFIG_KRETPROBES=y +CONFIG_KRETPROBE_ON_RETHOOK=y +CONFIG_KS0108=m +CONFIG_KS0108_DELAY=2 +CONFIG_KS0108_PORT=0x378 +CONFIG_KS7010=m +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KSM=y +CONFIG_KSZ884X_PCI=m +# CONFIG_KUNIT is not set +CONFIG_KUSER_HELPERS=y +CONFIG_KVM_AMD=m +CONFIG_KVM_AMD_SEV=y +CONFIG_KVM_ASYNC_PF=y +CONFIG_KVM_COMPAT=y +CONFIG_KVM_EXTERNAL_WRITE_TRACKING=y +CONFIG_KVM_GENERIC_DIRTYLOG_READ_PROTECT=y +CONFIG_KVM_GUEST=y +CONFIG_KVM_INTEL=m +CONFIG_KVM_MMIO=y +CONFIG_KVM_VFIO=y +CONFIG_KVM_WERROR=y +CONFIG_KVM_XEN=y +CONFIG_KVM_XFER_TO_GUEST_WORK=y +CONFIG_KXCJK1013=m +CONFIG_KXSD9=m +CONFIG_KXSD9_I2C=m +CONFIG_KXSD9_SPI=m +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +CONFIG_L2TP_ETH=m +CONFIG_L2TP_IP=m +CONFIG_L2TP_V3=y +CONFIG_LAN743X=m +CONFIG_LAN966X_SWITCH=m +CONFIG_LAPB=m +CONFIG_LAPBETHER=m +CONFIG_LATTICE_ECP3_CONFIG=m +CONFIG_LCD2S=m +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_HX8357=m +CONFIG_LCD_ILI922X=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LMS501KF03=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_OTM3225A=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +CONFIG_LDISC_AUTOLOAD=y +# CONFIG_LDM_DEBUG is not set +CONFIG_LDM_PARTITION=y +CONFIG_LD_IS_BFD=y +CONFIG_LD_ORPHAN_WARN=y +CONFIG_LD_VERSION=23800 +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_AAT1290=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_AN30259A=m +CONFIG_LEDS_APU=m +CONFIG_LEDS_AS3645A=m +CONFIG_LEDS_AW2013=m +CONFIG_LEDS_BCM6328=m +CONFIG_LEDS_BCM6358=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_BLINKM=m +CONFIG_LEDS_BRIGHTNESS_HW_CHANGED=y +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLASS_FLASH=m +CONFIG_LEDS_CLASS_MULTICOLOR=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_CPCAP=m +CONFIG_LEDS_CR0014114=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DA9052=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_EL15203000=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_IS31FL319X=m +CONFIG_LEDS_IS31FL32XX=m +CONFIG_LEDS_KTD2692=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LM3532=m +CONFIG_LEDS_LM3533=m +CONFIG_LEDS_LM355x=m +CONFIG_LEDS_LM3601X=m +CONFIG_LEDS_LM36274=m +CONFIG_LEDS_LM3642=m +CONFIG_LEDS_LM3692X=m +CONFIG_LEDS_LM3697=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP3952=m +CONFIG_LEDS_LP50XX=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_LP5562=m +CONFIG_LEDS_LP55XX_COMMON=m +CONFIG_LEDS_LP8501=m +CONFIG_LEDS_LP8788=m +CONFIG_LEDS_LP8860=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_MAX77650=m +CONFIG_LEDS_MAX77693=m +CONFIG_LEDS_MAX8997=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_MENF21BMC=m +CONFIG_LEDS_MLXCPLD=m +CONFIG_LEDS_MLXREG=m +CONFIG_LEDS_MT6323=m +CONFIG_LEDS_MT6360=m +CONFIG_LEDS_NIC78BX=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PCA955X_GPIO=y +CONFIG_LEDS_PCA963X=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_PWM_MULTICOLOR=m +CONFIG_LEDS_QCOM_LPG=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_RT4505=m +CONFIG_LEDS_RT8515=m +CONFIG_LEDS_SC27XX_BLTC=m +CONFIG_LEDS_SGM3140=m +CONFIG_LEDS_SIEMENS_SIMATIC_IPC=m +CONFIG_LEDS_SPI_BYTE=m +CONFIG_LEDS_SYSCON=y +CONFIG_LEDS_TCA6507=m +CONFIG_LEDS_TI_LMU_COMMON=m +CONFIG_LEDS_TLC591XX=m +CONFIG_LEDS_TPS6105X=m +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_ACTIVITY=m +CONFIG_LEDS_TRIGGER_AUDIO=m +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_CAMERA=m +CONFIG_LEDS_TRIGGER_CPU=y +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m +CONFIG_LEDS_TRIGGER_DISK=y +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +CONFIG_LEDS_TRIGGER_MTD=y +CONFIG_LEDS_TRIGGER_NETDEV=m +CONFIG_LEDS_TRIGGER_ONESHOT=m +CONFIG_LEDS_TRIGGER_PANIC=y +CONFIG_LEDS_TRIGGER_PATTERN=m +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_TRANSIENT=m +CONFIG_LEDS_TRIGGER_TTY=m +CONFIG_LEDS_USER=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LED_TRIGGER_PHY=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=0 +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_LEGACY_VSYSCALL_XONLY=y +CONFIG_LG_LAPTOP=m +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +CONFIG_LIB80211_CRYPT_WEP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_LIBCRC32C=m +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_CS=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_LIBFDT=y +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_LIBNVDIMM=y +CONFIG_LIB_MEMNEQ=y +CONFIG_LIDAR_LITE_V2=m +CONFIG_LINEAR_RANGES=y +CONFIG_LINEDISP=m +CONFIG_LIQUIDIO=m +CONFIG_LIQUIDIO_VF=m +CONFIG_LIRC=y +CONFIG_LITEX=y +CONFIG_LITEX_LITEETH=m +CONFIG_LITEX_SOC_CONTROLLER=m +CONFIG_LIVEPATCH=y +# CONFIG_LKDTM is not set +CONFIG_LLC=m +CONFIG_LLC2=m +CONFIG_LLD_VERSION=0 +CONFIG_LMK04832=m +CONFIG_LMP91000=m +CONFIG_LOAD_UEFI_KEYS=y +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +CONFIG_LOCKUP_DETECTOR=y +CONFIG_LOCK_DEBUGGING_SUPPORT=y +CONFIG_LOCK_DOWN_IN_SECURE_BOOT=y +# CONFIG_LOCK_DOWN_KERNEL_FORCE_CONFIDENTIALITY is not set +# CONFIG_LOCK_DOWN_KERNEL_FORCE_INTEGRITY is not set +CONFIG_LOCK_DOWN_KERNEL_FORCE_NONE=y +# CONFIG_LOCK_EVENT_COUNTS is not set +CONFIG_LOCK_SPIN_ON_OWNER=y +# CONFIG_LOCK_STAT is not set +# CONFIG_LOCK_TORTURE_TEST is not set +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +# CONFIG_LOGO is not set +CONFIG_LOG_BUF_SHIFT=18 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +CONFIG_LOOPBACK_TARGET=m +CONFIG_LP8788_ADC=m +CONFIG_LPC_ICH=m +CONFIG_LPC_SCH=m +# CONFIG_LP_CONSOLE is not set +CONFIG_LRU_CACHE=m +CONFIG_LSI_ET1011C_PHY=m +CONFIG_LSM="landlock,lockdown,yama,integrity,apparmor" +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LS_EXTIRQ=y +CONFIG_LS_SCFG_MSI=y +CONFIG_LTC1660=m +CONFIG_LTC2471=m +CONFIG_LTC2485=m +CONFIG_LTC2496=m +CONFIG_LTC2497=m +CONFIG_LTC2632=m +CONFIG_LTC2688=m +CONFIG_LTC2983=m +CONFIG_LTE_GDM724X=m +CONFIG_LTO_NONE=y +CONFIG_LTR501=m +CONFIG_LV0104CS=m +CONFIG_LWTUNNEL=y +CONFIG_LWTUNNEL_BPF=y +CONFIG_LXT_PHY=m +CONFIG_LZ4HC_COMPRESS=m +CONFIG_LZ4_COMPRESS=m +CONFIG_LZ4_DECOMPRESS=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_M62332=m +CONFIG_MAC80211=m +CONFIG_MAC80211_DEBUGFS=y +# CONFIG_MAC80211_DEBUG_MENU is not set +CONFIG_MAC80211_HAS_RC=y +CONFIG_MAC80211_HWSIM=m +CONFIG_MAC80211_LEDS=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC80211_MESSAGE_TRACING=y +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_STA_HASH_MAX_SIZE=0 +CONFIG_MAC802154=m +CONFIG_MACB=m +CONFIG_MACB_PCI=m +CONFIG_MACB_USE_HWSTAMP=y +CONFIG_MACHZ_WDT=m +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MACSEC=m +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_MAC_PARTITION=y +CONFIG_MADERA_IRQ=m +CONFIG_MAG3110=m +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x01b6 +CONFIG_MAGIC_SYSRQ_SERIAL=y +CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE="" +CONFIG_MAILBOX=y +CONFIG_MAILBOX_TEST=m +CONFIG_MANAGER_SBS=m +CONFIG_MANTIS_CORE=m +CONFIG_MAPPING_DIRTY_HELPERS=y +CONFIG_MARVELL_10G_PHY=m +CONFIG_MARVELL_88X2222_PHY=m +CONFIG_MARVELL_CN10K_DDR_PMU=m +CONFIG_MARVELL_CN10K_TAD_PMU=m +CONFIG_MARVELL_PHY=m +# CONFIG_MATOM is not set +CONFIG_MAX1027=m +CONFIG_MAX11100=m +CONFIG_MAX1118=m +CONFIG_MAX1241=m +CONFIG_MAX1363=m +CONFIG_MAX30100=m +CONFIG_MAX30102=m +CONFIG_MAX31856=m +CONFIG_MAX31865=m +CONFIG_MAX44000=m +CONFIG_MAX44009=m +CONFIG_MAX517=m +CONFIG_MAX5432=m +CONFIG_MAX5481=m +CONFIG_MAX5487=m +CONFIG_MAX5821=m +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAX77620_THERMAL=m +CONFIG_MAX77620_WATCHDOG=m +CONFIG_MAX8925_POWER=m +CONFIG_MAX9611=m +CONFIG_MAXIM_THERMOCOUPLE=m +CONFIG_MAXLINEAR_GPHY=m +CONFIG_MAXSMP=y +CONFIG_MB1232=m +CONFIG_MC3230=m +CONFIG_MCB=m +CONFIG_MCB_LPC=m +CONFIG_MCB_PCI=m +# CONFIG_MCORE2 is not set +CONFIG_MCP320X=m +CONFIG_MCP3422=m +CONFIG_MCP3911=m +CONFIG_MCP4018=m +CONFIG_MCP41010=m +CONFIG_MCP4131=m +CONFIG_MCP4531=m +CONFIG_MCP4725=m +CONFIG_MCP4922=m +CONFIG_MCTP=y +CONFIG_MCTP_FLOWS=y +CONFIG_MCTP_SERIAL=m +CONFIG_MCTP_TRANSPORT_I2C=m +CONFIG_MD=y +CONFIG_MDIO=m +# CONFIG_MDIO_BCM_IPROC is not set +CONFIG_MDIO_BCM_UNIMAC=m +CONFIG_MDIO_BUS=y +CONFIG_MDIO_BUS_MUX=y +CONFIG_MDIO_BUS_MUX_BCM_IPROC=y +CONFIG_MDIO_BUS_MUX_GPIO=m +CONFIG_MDIO_BUS_MUX_MESON_G12A=m +CONFIG_MDIO_BUS_MUX_MMIOREG=m +CONFIG_MDIO_BUS_MUX_MULTIPLEXER=m +CONFIG_MDIO_CAVIUM=m +CONFIG_MDIO_DEVICE=y +CONFIG_MDIO_DEVRES=y +CONFIG_MDIO_GPIO=m +CONFIG_MDIO_HISI_FEMAC=m +CONFIG_MDIO_I2C=m +CONFIG_MDIO_IPQ4019=m +CONFIG_MDIO_IPQ8064=m +CONFIG_MDIO_MSCC_MIIM=m +CONFIG_MDIO_MVUSB=m +CONFIG_MDIO_OCTEON=m +# CONFIG_MDIO_SUN4I is not set +CONFIG_MDIO_THUNDER=m +CONFIG_MDIO_XGENE=m +CONFIG_MDM_GCC_9607=m +CONFIG_MDM_GCC_9615=m +CONFIG_MDM_LCC_9615=m +CONFIG_MD_AUTODETECT=y +CONFIG_MD_CLUSTER=m +CONFIG_MD_FAULTY=m +CONFIG_MD_LINEAR=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MEDIATEK_GE_PHY=m +CONFIG_MEDIATEK_MT6360_ADC=m +CONFIG_MEDIATEK_MT6577_AUXADC=m +CONFIG_MEDIATEK_WATCHDOG=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_MEDIA_ANALOG_TV_SUPPORT=y +CONFIG_MEDIA_ATTACH=y +CONFIG_MEDIA_CAMERA_SUPPORT=y +CONFIG_MEDIA_CEC_RC=y +CONFIG_MEDIA_CEC_SUPPORT=y +CONFIG_MEDIA_COMMON_OPTIONS=y +CONFIG_MEDIA_CONTROLLER=y +CONFIG_MEDIA_CONTROLLER_DVB=y +CONFIG_MEDIA_CONTROLLER_REQUEST_API=y +CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y +CONFIG_MEDIA_PCI_SUPPORT=y +CONFIG_MEDIA_PLATFORM_DRIVERS=y +CONFIG_MEDIA_PLATFORM_SUPPORT=y +CONFIG_MEDIA_RADIO_SUPPORT=y +CONFIG_MEDIA_SDR_SUPPORT=y +CONFIG_MEDIA_SUBDRV_AUTOSELECT=y +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEDIA_SUPPORT_FILTER=y +CONFIG_MEDIA_TEST_SUPPORT=y +CONFIG_MEDIA_TUNER=m +CONFIG_MEDIA_TUNER_E4000=m +CONFIG_MEDIA_TUNER_FC0011=m +CONFIG_MEDIA_TUNER_FC0012=m +CONFIG_MEDIA_TUNER_FC0013=m +CONFIG_MEDIA_TUNER_FC2580=m +CONFIG_MEDIA_TUNER_IT913X=m +CONFIG_MEDIA_TUNER_M88RS6000T=m +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MSI001=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT2063=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MXL301RF=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_QM1D1B0004=m +CONFIG_MEDIA_TUNER_QM1D1C0042=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_R820T=m +CONFIG_MEDIA_TUNER_SI2157=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_TDA18250=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_TUA9001=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_XC5000=m +CONFIG_MEDIA_USB_SUPPORT=y +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +CONFIG_MELLANOX_PLATFORM=y +CONFIG_MEMBARRIER=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_MEMCG_SWAP=y +CONFIG_MEMFD_CREATE=y +CONFIG_MEMORY=y +CONFIG_MEMORY_BALLOON=y +CONFIG_MEMORY_FAILURE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE=y +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MEMORY_ISOLATION=y +CONFIG_MEMORY_NOTIFIER_ERROR_INJECT=m +CONFIG_MEMREGION=y +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_REALTEK_PCI=m +CONFIG_MEMSTICK_REALTEK_USB=m +CONFIG_MEMSTICK_TIFM_MS=m +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +CONFIG_MEMTEST=y +CONFIG_MEM_SOFT_DIRTY=y +CONFIG_MENF21BMC_WATCHDOG=m +CONFIG_MENZ069_WATCHDOG=m +CONFIG_MEN_A21_WDT=m +CONFIG_MEN_Z188_ADC=m +CONFIG_MERAKI_MX100=m +CONFIG_MESON_CANVAS=m +CONFIG_MESON_CLK_MEASURE=y +CONFIG_MESON_EE_PM_DOMAINS=y +CONFIG_MESON_EFUSE=m +CONFIG_MESON_GXBB_WATCHDOG=m +CONFIG_MESON_GXL_PHY=m +CONFIG_MESON_GX_PM_DOMAINS=y +CONFIG_MESON_GX_SOCINFO=y +CONFIG_MESON_IRQ_GPIO=y +CONFIG_MESON_MX_EFUSE=m +CONFIG_MESON_SARADC=m +CONFIG_MESON_SECURE_PM_DOMAINS=y +CONFIG_MESON_SM=y +CONFIG_MESON_WATCHDOG=m +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +CONFIG_MFD_88PM800=m +CONFIG_MFD_88PM805=m +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +# CONFIG_MFD_AC100 is not set +CONFIG_MFD_ACT8945A=m +CONFIG_MFD_ALTERA_A10SR=y +CONFIG_MFD_ALTERA_SYSMGR=y +CONFIG_MFD_ARIZONA=m +CONFIG_MFD_ARIZONA_I2C=m +CONFIG_MFD_ARIZONA_SPI=m +CONFIG_MFD_AS3711=y +CONFIG_MFD_AS3722=y +CONFIG_MFD_ATC260X=m +CONFIG_MFD_ATC260X_I2C=m +CONFIG_MFD_ATMEL_FLEXCOM=m +CONFIG_MFD_ATMEL_HLCDC=m +CONFIG_MFD_AXP20X=m +CONFIG_MFD_AXP20X_I2C=m +CONFIG_MFD_AXP20X_RSB=m +CONFIG_MFD_BCM590XX=m +CONFIG_MFD_BD9571MWV=m +CONFIG_MFD_CORE=y +CONFIG_MFD_CPCAP=m +CONFIG_MFD_CROS_EC_DEV=m +CONFIG_MFD_CS47L15=y +CONFIG_MFD_CS47L24=y +CONFIG_MFD_CS47L35=y +CONFIG_MFD_CS47L85=y +CONFIG_MFD_CS47L90=y +CONFIG_MFD_CS47L92=y +CONFIG_MFD_DA9052_I2C=y +CONFIG_MFD_DA9052_SPI=y +CONFIG_MFD_DA9055=y +CONFIG_MFD_DA9062=m +CONFIG_MFD_DA9063=y +CONFIG_MFD_DA9150=m +CONFIG_MFD_DLN2=m +CONFIG_MFD_GATEWORKS_GSC=m +CONFIG_MFD_HI6421_PMIC=m +CONFIG_MFD_HI6421_SPMI=m +CONFIG_MFD_HI655X_PMIC=m +CONFIG_MFD_INTEL_LPSS=m +CONFIG_MFD_INTEL_LPSS_ACPI=m +CONFIG_MFD_INTEL_LPSS_PCI=m +CONFIG_MFD_INTEL_M10_BMC=m +CONFIG_MFD_INTEL_PMC_BXT=m +CONFIG_MFD_INTEL_QUARK_I2C_GPIO=m +CONFIG_MFD_IQS62X=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_KEMPLD=m +CONFIG_MFD_KHADAS_MCU=m +CONFIG_MFD_LM3533=m +CONFIG_MFD_LOCHNAGAR=y +CONFIG_MFD_LP3943=m +CONFIG_MFD_LP8788=y +CONFIG_MFD_MADERA=m +CONFIG_MFD_MADERA_I2C=m +CONFIG_MFD_MADERA_SPI=m +CONFIG_MFD_MAX14577=y +CONFIG_MFD_MAX77620=y +CONFIG_MFD_MAX77650=m +CONFIG_MFD_MAX77686=y +CONFIG_MFD_MAX77693=y +CONFIG_MFD_MAX77714=m +CONFIG_MFD_MAX77843=y +CONFIG_MFD_MAX8907=m +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_MC13XXX_I2C=m +CONFIG_MFD_MC13XXX_SPI=m +CONFIG_MFD_MENF21BMC=m +CONFIG_MFD_MP2629=m +CONFIG_MFD_MT6360=m +CONFIG_MFD_MT6397=m +CONFIG_MFD_NTXEC=m +CONFIG_MFD_NVEC=m +CONFIG_MFD_PALMAS=y +CONFIG_MFD_PCF50633=m +CONFIG_MFD_QCOM_PM8008=m +CONFIG_MFD_QCOM_RPM=m +CONFIG_MFD_RC5T583=y +CONFIG_MFD_RDC321X=m +CONFIG_MFD_RETU=m +CONFIG_MFD_RK808=m +CONFIG_MFD_RN5T618=m +CONFIG_MFD_ROHM_BD71828=m +CONFIG_MFD_ROHM_BD718XX=m +CONFIG_MFD_ROHM_BD957XMUF=m +CONFIG_MFD_RSMU_I2C=m +CONFIG_MFD_RSMU_SPI=m +CONFIG_MFD_RT4831=m +CONFIG_MFD_RT5033=m +CONFIG_MFD_SC27XX_PMIC=m +CONFIG_MFD_SEC_CORE=y +CONFIG_MFD_SI476X_CORE=m +CONFIG_MFD_SIMPLE_MFD_I2C=m +CONFIG_MFD_SKY81452=m +CONFIG_MFD_SL28CPLD=m +CONFIG_MFD_SM501=m +CONFIG_MFD_SM501_GPIO=y +CONFIG_MFD_SPMI_PMIC=m +CONFIG_MFD_STMFX=m +CONFIG_MFD_STMPE=y +CONFIG_MFD_STPMIC1=m +CONFIG_MFD_SUN4I_GPADC=m +CONFIG_MFD_SUN6I_PRCM=y +CONFIG_MFD_SYSCON=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TI_AM335X_TSCADC=m +CONFIG_MFD_TI_LMU=m +CONFIG_MFD_TI_LP873X=m +CONFIG_MFD_TI_LP87565=m +CONFIG_MFD_TPS65086=m +CONFIG_MFD_TPS65090=y +CONFIG_MFD_TPS65217=m +CONFIG_MFD_TPS65218=m +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_TQMX86=m +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_MFD_VEXPRESS_SYSREG=y +CONFIG_MFD_VIPERBOARD=m +CONFIG_MFD_VX855=m +CONFIG_MFD_WCD934X=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM5102=y +CONFIG_MFD_WM5110=y +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8400=y +CONFIG_MFD_WM8994=m +CONFIG_MFD_WM8997=y +CONFIG_MFD_WM8998=y +CONFIG_MHI_BUS=m +# CONFIG_MHI_BUS_DEBUG is not set +CONFIG_MHI_BUS_EP=m +CONFIG_MHI_BUS_PCI_GENERIC=m +CONFIG_MHI_NET=m +CONFIG_MHI_WWAN_CTRL=m +CONFIG_MHI_WWAN_MBIM=m +CONFIG_MHP_MEMMAP_ON_MEMORY=y +CONFIG_MICREL_KS8995MA=m +CONFIG_MICREL_PHY=m +CONFIG_MICROCHIP_PHY=m +CONFIG_MICROCHIP_PIT64B=y +CONFIG_MICROCHIP_T1_PHY=m +CONFIG_MICROCHIP_TCB_CAPTURE=m +CONFIG_MICROCODE=y +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_INTEL=y +# CONFIG_MICROCODE_LATE_LOADING is not set +CONFIG_MICROSEMI_PHY=m +CONFIG_MICROSOFT_MANA=m +CONFIG_MIGRATION=y +CONFIG_MINIX_FS=m +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MIPI_I3C_HCI=m +CONFIG_MISC_ALCOR_PCI=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_MISC_RTSX=m +CONFIG_MISC_RTSX_PCI=m +CONFIG_MISC_RTSX_USB=m +CONFIG_MISDN=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_HDLC=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m +CONFIG_MISDN_L1OIP=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_W6692=m +CONFIG_MITIGATE_SPECTRE_BRANCH_HISTORY=y +# CONFIG_MK8 is not set +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_CORE_GEN2=y +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_EN_DCB=y +CONFIG_MLX4_INFINIBAND=m +CONFIG_MLX5_BRIDGE=y +CONFIG_MLX5_CLS_ACT=y +CONFIG_MLX5_CORE=m +CONFIG_MLX5_CORE_EN=y +CONFIG_MLX5_CORE_EN_DCB=y +CONFIG_MLX5_CORE_IPOIB=y +CONFIG_MLX5_EN_ARFS=y +CONFIG_MLX5_EN_IPSEC=y +CONFIG_MLX5_EN_RXNFC=y +CONFIG_MLX5_EN_TLS=y +CONFIG_MLX5_ESWITCH=y +CONFIG_MLX5_FPGA=y +CONFIG_MLX5_INFINIBAND=m +CONFIG_MLX5_MPFS=y +CONFIG_MLX5_SF=y +CONFIG_MLX5_SF_MANAGER=y +CONFIG_MLX5_SW_STEERING=y +CONFIG_MLX5_TC_CT=y +CONFIG_MLX5_TC_SAMPLE=y +CONFIG_MLX5_VDPA=y +CONFIG_MLX5_VDPA_NET=m +CONFIG_MLX5_VFIO_PCI=m +CONFIG_MLX90614=m +CONFIG_MLX90632=m +CONFIG_MLXBF_BOOTCTL=m +CONFIG_MLXBF_GIGE=m +CONFIG_MLXBF_PMC=m +CONFIG_MLXBF_TMFIFO=m +CONFIG_MLXFW=m +CONFIG_MLXREG_HOTPLUG=m +CONFIG_MLXREG_IO=m +CONFIG_MLXREG_LC=m +CONFIG_MLXSW_CORE=m +CONFIG_MLXSW_CORE_HWMON=y +CONFIG_MLXSW_CORE_THERMAL=y +CONFIG_MLXSW_I2C=m +CONFIG_MLXSW_MINIMAL=m +CONFIG_MLXSW_PCI=m +CONFIG_MLXSW_SPECTRUM=m +CONFIG_MLXSW_SPECTRUM_DCB=y +CONFIG_MLX_PLATFORM=m +CONFIG_MLX_WDT=m +CONFIG_MMA7455=m +CONFIG_MMA7455_I2C=m +CONFIG_MMA7455_SPI=m +CONFIG_MMA7660=m +CONFIG_MMA8452=m +CONFIG_MMA9551=m +CONFIG_MMA9551_CORE=m +CONFIG_MMA9553=m +CONFIG_MMC=y +CONFIG_MMC35240=m +CONFIG_MMCONF_FAM10H=y +CONFIG_MMC_ALCOR=m +CONFIG_MMC_ARMMMCI=y +CONFIG_MMC_BCM2835=m +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_CAVIUM_THUNDERX=m +CONFIG_MMC_CB710=m +CONFIG_MMC_CQHCI=m +CONFIG_MMC_CRYPTO=y +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_DW=m +CONFIG_MMC_DW_BLUEFIELD=m +CONFIG_MMC_DW_EXYNOS=m +CONFIG_MMC_DW_HI3798CV200=m +CONFIG_MMC_DW_K3=m +CONFIG_MMC_DW_PCI=m +CONFIG_MMC_DW_PLTFM=m +CONFIG_MMC_DW_ROCKCHIP=m +CONFIG_MMC_LITEX=m +CONFIG_MMC_MESON_GX=m +CONFIG_MMC_MESON_MX_SDIO=m +CONFIG_MMC_MTK=m +CONFIG_MMC_MXC=m +CONFIG_MMC_OWL=m +CONFIG_MMC_QCOM_DML=y +CONFIG_MMC_REALTEK_PCI=m +CONFIG_MMC_REALTEK_USB=m +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_ACPI=m +CONFIG_MMC_SDHCI_AM654=m +CONFIG_MMC_SDHCI_BRCMSTB=m +CONFIG_MMC_SDHCI_CADENCE=m +CONFIG_MMC_SDHCI_ESDHC_IMX=m +CONFIG_MMC_SDHCI_EXTERNAL_DMA=y +CONFIG_MMC_SDHCI_F_SDH30=m +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_IPROC=m +CONFIG_MMC_SDHCI_MILBEAUT=m +CONFIG_MMC_SDHCI_MSM=m +CONFIG_MMC_SDHCI_OF_ARASAN=m +CONFIG_MMC_SDHCI_OF_ASPEED=m +CONFIG_MMC_SDHCI_OF_AT91=m +CONFIG_MMC_SDHCI_OF_DWCMSHC=m +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_OF_SPARX5=m +CONFIG_MMC_SDHCI_OMAP=m +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_PXAV3=m +CONFIG_MMC_SDHCI_SPRD=m +CONFIG_MMC_SDHCI_TEGRA=m +CONFIG_MMC_SDHCI_XENON=m +CONFIG_MMC_SDHI=m +CONFIG_MMC_SDHI_INTERNAL_DMAC=m +CONFIG_MMC_SDHI_SYS_DMAC=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_SH_MMCIF=m +CONFIG_MMC_SPI=m +CONFIG_MMC_STM32_SDMMC=y +CONFIG_MMC_SUNXI=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_TMIO_CORE=m +CONFIG_MMC_TOSHIBA_PCI=m +CONFIG_MMC_USDHI6ROL0=m +CONFIG_MMC_USHC=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_WBSD=m +CONFIG_MMIOTRACE=y +# CONFIG_MMIOTRACE_TEST is not set +CONFIG_MMU=y +CONFIG_MMU_GATHER_MERGE_VMAS=y +CONFIG_MMU_GATHER_RCU_TABLE_FREE=y +CONFIG_MMU_GATHER_TABLE_FREE=y +CONFIG_MMU_NOTIFIER=y +CONFIG_MODIFY_LDT_SYSCALL=y +CONFIG_MODPROBE_PATH="/sbin/modprobe" +CONFIG_MODULES=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_MODULES_USE_ELF_RELA=y +# CONFIG_MODULE_ALLOW_BTF_MISMATCH is not set +# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set +# CONFIG_MODULE_COMPRESS_GZIP is not set +CONFIG_MODULE_COMPRESS_NONE=y +# CONFIG_MODULE_COMPRESS_XZ is not set +# CONFIG_MODULE_COMPRESS_ZSTD is not set +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_SIG=y +CONFIG_MODULE_SIG_ALL=y +# CONFIG_MODULE_SIG_FORCE is not set +CONFIG_MODULE_SIG_FORMAT=y +CONFIG_MODULE_SIG_HASH="sha512" +CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" +# CONFIG_MODULE_SIG_KEY_TYPE_ECDSA is not set +CONFIG_MODULE_SIG_KEY_TYPE_RSA=y +# CONFIG_MODULE_SIG_SHA1 is not set +# CONFIG_MODULE_SIG_SHA224 is not set +# CONFIG_MODULE_SIG_SHA256 is not set +# CONFIG_MODULE_SIG_SHA384 is not set +CONFIG_MODULE_SIG_SHA512=y +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_UNLOAD_TAINT_TRACKING is not set +CONFIG_MODVERSIONS=y +CONFIG_MOST=m +CONFIG_MOST_CDEV=m +CONFIG_MOST_COMPONENTS=m +CONFIG_MOST_DIM2=m +CONFIG_MOST_I2C=m +CONFIG_MOST_NET=m +CONFIG_MOST_SND=m +CONFIG_MOST_USB_HDM=m +CONFIG_MOST_VIDEO=m +CONFIG_MOTORCOMM_PHY=m +CONFIG_MOUSE_APPLETOUCH=m +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_CYAPA=m +CONFIG_MOUSE_ELAN_I2C=m +CONFIG_MOUSE_ELAN_I2C_I2C=y +CONFIG_MOUSE_ELAN_I2C_SMBUS=y +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_BYD=y +CONFIG_MOUSE_PS2_CYPRESS=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_ELANTECH_SMBUS=y +CONFIG_MOUSE_PS2_FOCALTECH=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_SMBUS=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_PS2_VMMOUSE=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_SYNAPTICS_USB=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +CONFIG_MOXTET=m +CONFIG_MP2629_ADC=m +CONFIG_MPILIB=y +CONFIG_MPL115=m +CONFIG_MPL115_I2C=m +CONFIG_MPL115_SPI=m +CONFIG_MPL3115=m +CONFIG_MPLS=y +CONFIG_MPLS_IPTUNNEL=m +CONFIG_MPLS_ROUTING=m +# CONFIG_MPSC is not set +CONFIG_MPTCP=y +CONFIG_MPTCP_IPV6=y +CONFIG_MPU3050=m +CONFIG_MPU3050_I2C=m +CONFIG_MQ_IOSCHED_DEADLINE=y +CONFIG_MQ_IOSCHED_KYBER=m +CONFIG_MRP=m +CONFIG_MS5611=m +CONFIG_MS5611_I2C=m +CONFIG_MS5611_SPI=m +CONFIG_MS5637=m +CONFIG_MSCC_OCELOT_SWITCH=m +CONFIG_MSCC_OCELOT_SWITCH_LIB=m +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +CONFIG_MSE102X=m +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_MSM_GCC_8660=m +CONFIG_MSM_GCC_8916=m +CONFIG_MSM_GCC_8939=m +CONFIG_MSM_GCC_8953=m +CONFIG_MSM_GCC_8960=m +CONFIG_MSM_GCC_8974=m +CONFIG_MSM_GCC_8976=m +CONFIG_MSM_GCC_8994=m +CONFIG_MSM_GCC_8996=m +CONFIG_MSM_GCC_8998=m +CONFIG_MSM_GPUCC_8998=m +CONFIG_MSM_LCC_8960=m +CONFIG_MSM_MMCC_8960=m +CONFIG_MSM_MMCC_8974=m +CONFIG_MSM_MMCC_8994=m +CONFIG_MSM_MMCC_8996=m +CONFIG_MSM_MMCC_8998=m +CONFIG_MSPRO_BLOCK=m +CONFIG_MST_IRQ=y +CONFIG_MS_BLOCK=m +CONFIG_MT7601U=m +CONFIG_MT7603E=m +CONFIG_MT7615E=m +CONFIG_MT7615_COMMON=m +CONFIG_MT7622_WMAC=y +CONFIG_MT7663S=m +CONFIG_MT7663U=m +CONFIG_MT7663_USB_SDIO_COMMON=m +CONFIG_MT76_CONNAC_LIB=m +CONFIG_MT76_CORE=m +CONFIG_MT76_LEDS=y +CONFIG_MT76_SDIO=m +CONFIG_MT76_USB=m +CONFIG_MT76x02_LIB=m +CONFIG_MT76x02_USB=m +CONFIG_MT76x0E=m +CONFIG_MT76x0U=m +CONFIG_MT76x0_COMMON=m +CONFIG_MT76x2E=m +CONFIG_MT76x2U=m +CONFIG_MT76x2_COMMON=m +CONFIG_MT7915E=m +CONFIG_MT7921E=m +CONFIG_MT7921S=m +CONFIG_MT7921U=m +CONFIG_MT7921_COMMON=m +CONFIG_MT7986_WMAC=y +CONFIG_MTD=m +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=m +CONFIG_MTD_AFS_PARTS=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK2MTD=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_MTD_CFI=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_CMDLINE_PARTS=m +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_DATAFLASH=m +CONFIG_MTD_DATAFLASH_OTP=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +# CONFIG_MTD_DOCG3 is not set +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_HYPERBUS=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_LPDDR=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +CONFIG_MTD_MCHP23K256=m +CONFIG_MTD_MCHP48L640=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND_ARASAN=m +CONFIG_MTD_NAND_BRCMNAND=m +CONFIG_MTD_NAND_CADENCE=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_CORE=m +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_DT=m +CONFIG_MTD_NAND_DENALI_PCI=m +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_ECC_MEDIATEK=m +CONFIG_MTD_NAND_ECC_MXIC=y +CONFIG_MTD_NAND_ECC_SW_BCH=y +CONFIG_MTD_NAND_ECC_SW_HAMMING=y +# CONFIG_MTD_NAND_ECC_SW_HAMMING_SMC is not set +CONFIG_MTD_NAND_FSL_IFC=m +CONFIG_MTD_NAND_GPIO=m +CONFIG_MTD_NAND_GPMI_NAND=m +CONFIG_MTD_NAND_HISI504=m +CONFIG_MTD_NAND_INTEL_LGM=m +CONFIG_MTD_NAND_MARVELL=m +CONFIG_MTD_NAND_MESON=m +CONFIG_MTD_NAND_MTK=m +CONFIG_MTD_NAND_MXC=m +CONFIG_MTD_NAND_MXIC=m +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_OMAP2=m +CONFIG_MTD_NAND_OMAP_BCH=y +CONFIG_MTD_NAND_OMAP_BCH_BUILD=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_QCOM=m +CONFIG_MTD_NAND_RENESAS=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_ROCKCHIP=m +# CONFIG_MTD_NAND_SUNXI is not set +CONFIG_MTD_NAND_TEGRA=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_OF_PARTS_BCM4908=y +CONFIG_MTD_OF_PARTS_LINKSYS_NS=y +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_ONENAND_GENERIC=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_OOPS=m +CONFIG_MTD_PARSER_TRX=m +# CONFIG_MTD_PARTITIONED_MASTER is not set +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_PHRAM=m +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_GEMINI=y +CONFIG_MTD_PHYSMAP_GPIO_ADDR=y +CONFIG_MTD_PHYSMAP_OF=y +CONFIG_MTD_PHYSMAP_VERSATILE=y +CONFIG_MTD_PLATRAM=m +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_PSTORE=m +CONFIG_MTD_QCOMSMEM_PARTS=m +CONFIG_MTD_QINFO_PROBE=m +CONFIG_MTD_RAM=m +CONFIG_MTD_RAW_NAND=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +CONFIG_MTD_REDBOOT_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +CONFIG_MTD_ROM=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MTD_SPI_NAND=m +CONFIG_MTD_SPI_NOR=m +# CONFIG_MTD_SPI_NOR_SWP_DISABLE is not set +CONFIG_MTD_SPI_NOR_SWP_DISABLE_ON_VOLATILE=y +# CONFIG_MTD_SPI_NOR_SWP_KEEP is not set +CONFIG_MTD_SPI_NOR_USE_4K_SECTORS=y +CONFIG_MTD_SST25L=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_LIMIT=20 +CONFIG_MTD_UBI_BLOCK=y +CONFIG_MTD_UBI_FASTMAP=y +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTK_ADSP_IPC=m +CONFIG_MTK_ADSP_MBOX=m +CONFIG_MTK_CMDQ=m +CONFIG_MTK_CMDQ_MBOX=m +CONFIG_MTK_CQDMA=m +CONFIG_MTK_DEVAPC=m +# CONFIG_MTK_EFUSE is not set +CONFIG_MTK_HSDMA=m +CONFIG_MTK_INFRACFG=y +# CONFIG_MTK_IOMMU is not set +CONFIG_MTK_MMSYS=y +CONFIG_MTK_PMIC_WRAP=m +CONFIG_MTK_SCP=m +CONFIG_MTK_SCPSYS=y +CONFIG_MTK_SCPSYS_PM_DOMAINS=y +CONFIG_MTK_SMI=m +CONFIG_MTK_T7XX=m +CONFIG_MTK_THERMAL=m +CONFIG_MTK_TIMER=y +CONFIG_MTK_UART_APDMA=m +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +CONFIG_MULTIPLEXER=m +CONFIG_MULTIUSER=y +CONFIG_MUSB_PIO_ONLY=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_MUX_ADG792A=m +CONFIG_MUX_ADGS1408=m +CONFIG_MUX_GPIO=m +CONFIG_MUX_MMIO=m +CONFIG_MVEBU_GICP=y +CONFIG_MVEBU_ICU=y +CONFIG_MVEBU_ODMI=y +CONFIG_MVEBU_PIC=y +CONFIG_MVEBU_SEI=y +CONFIG_MVMDIO=m +CONFIG_MVNETA=m +CONFIG_MVPP2=m +CONFIG_MVPP2_PTP=y +CONFIG_MV_XOR=y +CONFIG_MV_XOR_V2=y +CONFIG_MWAVE=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_SDIO=m +CONFIG_MWIFIEX_USB=m +CONFIG_MWL8K=m +CONFIG_MX3_IPU=y +CONFIG_MX3_IPU_IRQS=4 +CONFIG_MXC4005=m +CONFIG_MXC6255=m +CONFIG_MXC_CLK=y +CONFIG_MXC_CLK_SCU=y +CONFIG_MXM_WMI=m +CONFIG_MXS_DMA=y +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_NAMESPACES=y +CONFIG_NATIONAL_PHY=m +CONFIG_NATSEMI=m +CONFIG_NAU7802=m +CONFIG_NCSI_OEM_CMD_GET_MAC=y +# CONFIG_NCSI_OEM_CMD_KEEP_PHY is not set +CONFIG_NDC_DIS_DYNAMIC_CACHING=y +CONFIG_ND_BTT=m +CONFIG_ND_CLAIM=y +CONFIG_ND_PFN=m +CONFIG_NE2K_PCI=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NET=y +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETDEVICES=y +CONFIG_NETDEVSIM=m +# CONFIG_NETDEV_NOTIFIER_ERROR_INJECT is not set +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +CONFIG_NETFILTER_CONNCOUNT=m +CONFIG_NETFILTER_EGRESS=y +CONFIG_NETFILTER_FAMILY_ARP=y +CONFIG_NETFILTER_FAMILY_BRIDGE=y +CONFIG_NETFILTER_INGRESS=y +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_ACCT=m +CONFIG_NETFILTER_NETLINK_GLUE_CT=y +CONFIG_NETFILTER_NETLINK_HOOK=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_OSF=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_SKIP_EGRESS=y +CONFIG_NETFILTER_SYNPROXY=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XTABLES_COMPAT=y +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_BPF=m +CONFIG_NETFILTER_XT_MATCH_CGROUP=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLABEL=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ECN=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPCOMP=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_L2TP=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_NFACCT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_NETFILTER_XT_NAT=m +CONFIG_NETFILTER_XT_SET=m +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_HMARK=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_LOG=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m +CONFIG_NETFILTER_XT_TARGET_NETMAP=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +# CONFIG_NETFILTER_XT_TARGET_NOTRACK is not set +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_REDIRECT=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETFS_STATS=y +CONFIG_NETFS_SUPPORT=m +CONFIG_NETLABEL=y +CONFIG_NETLINK_DIAG=m +CONFIG_NETPOLL=y +CONFIG_NETROM=m +CONFIG_NETWORK_FILESYSTEMS=y +CONFIG_NETWORK_PHY_TIMESTAMPING=y +CONFIG_NETWORK_SECMARK=y +CONFIG_NETXEN_NIC=m +CONFIG_NET_9P=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_FD=m +CONFIG_NET_9P_RDMA=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_9P_XEN=m +CONFIG_NET_ACT_BPF=m +CONFIG_NET_ACT_CONNMARK=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_CT=m +CONFIG_NET_ACT_CTINFO=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_GATE=m +# CONFIG_NET_ACT_IFE is not set +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_MPLS=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SAMPLE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_ACT_SKBMOD=m +CONFIG_NET_ACT_TUNNEL_KEY=m +CONFIG_NET_ACT_VLAN=m +CONFIG_NET_CLS=y +CONFIG_NET_CLS_ACT=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_BPF=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_FLOWER=m +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_MATCHALL=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_U32=m +CONFIG_NET_CORE=y +CONFIG_NET_DEVLINK=y +# CONFIG_NET_DEV_REFCNT_TRACKER is not set +CONFIG_NET_DROP_MONITOR=y +CONFIG_NET_DSA=m +CONFIG_NET_DSA_AR9331=m +CONFIG_NET_DSA_BCM_SF2=m +CONFIG_NET_DSA_HIRSCHMANN_HELLCREEK=m +CONFIG_NET_DSA_LANTIQ_GSWIP=m +# CONFIG_NET_DSA_LOOP is not set +CONFIG_NET_DSA_MICROCHIP_KSZ8795=m +CONFIG_NET_DSA_MICROCHIP_KSZ8795_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C=m +CONFIG_NET_DSA_MICROCHIP_KSZ9477_SPI=m +CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON=m +CONFIG_NET_DSA_MSCC_FELIX=m +CONFIG_NET_DSA_MSCC_SEVILLE=m +CONFIG_NET_DSA_MT7530=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6XXX_PTP=y +CONFIG_NET_DSA_QCA8K=m +CONFIG_NET_DSA_REALTEK=m +CONFIG_NET_DSA_REALTEK_RTL8365MB=m +CONFIG_NET_DSA_REALTEK_RTL8366RB=m +CONFIG_NET_DSA_SJA1105=m +CONFIG_NET_DSA_SJA1105_PTP=y +CONFIG_NET_DSA_SJA1105_TAS=y +CONFIG_NET_DSA_SJA1105_VL=y +CONFIG_NET_DSA_SMSC_LAN9303=m +CONFIG_NET_DSA_SMSC_LAN9303_I2C=m +CONFIG_NET_DSA_SMSC_LAN9303_MDIO=m +CONFIG_NET_DSA_TAG_AR9331=m +CONFIG_NET_DSA_TAG_BRCM=m +CONFIG_NET_DSA_TAG_BRCM_COMMON=m +CONFIG_NET_DSA_TAG_BRCM_LEGACY=m +CONFIG_NET_DSA_TAG_BRCM_PREPEND=m +CONFIG_NET_DSA_TAG_DSA=m +CONFIG_NET_DSA_TAG_DSA_COMMON=m +CONFIG_NET_DSA_TAG_EDSA=m +CONFIG_NET_DSA_TAG_GSWIP=m +CONFIG_NET_DSA_TAG_HELLCREEK=m +CONFIG_NET_DSA_TAG_KSZ=m +CONFIG_NET_DSA_TAG_LAN9303=m +CONFIG_NET_DSA_TAG_MTK=m +CONFIG_NET_DSA_TAG_OCELOT=m +CONFIG_NET_DSA_TAG_OCELOT_8021Q=m +CONFIG_NET_DSA_TAG_QCA=m +CONFIG_NET_DSA_TAG_RTL4_A=m +CONFIG_NET_DSA_TAG_RTL8_4=m +CONFIG_NET_DSA_TAG_SJA1105=m +CONFIG_NET_DSA_TAG_TRAILER=m +CONFIG_NET_DSA_TAG_XRS700X=m +CONFIG_NET_DSA_VITESSE_VSC73XX=m +CONFIG_NET_DSA_VITESSE_VSC73XX_PLATFORM=m +CONFIG_NET_DSA_VITESSE_VSC73XX_SPI=m +CONFIG_NET_DSA_XRS700X=m +CONFIG_NET_DSA_XRS700X_I2C=m +CONFIG_NET_DSA_XRS700X_MDIO=m +CONFIG_NET_EGRESS=y +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_CANID=m +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_IPSET=m +CONFIG_NET_EMATCH_IPT=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_FAILOVER=m +CONFIG_NET_FC=y +CONFIG_NET_FLOW_LIMIT=y +CONFIG_NET_FOU=m +CONFIG_NET_FOU_IP_TUNNELS=y +CONFIG_NET_IFE=m +CONFIG_NET_INGRESS=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPIP=m +CONFIG_NET_IPVTI=m +CONFIG_NET_IP_TUNNEL=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_L3_MASTER_DEV=y +CONFIG_NET_MPLS_GSO=m +CONFIG_NET_NCSI=y +CONFIG_NET_NS=y +CONFIG_NET_NSH=m +# CONFIG_NET_NS_REFCNT_TRACKER is not set +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_PTP_CLASSIFY=y +CONFIG_NET_REDIRECT=y +CONFIG_NET_RX_BUSY_POLL=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_CAKE=m +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_CBS=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_CODEL=m +# CONFIG_NET_SCH_DEFAULT is not set +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_ETF=m +CONFIG_NET_SCH_ETS=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_FQ=m +CONFIG_NET_SCH_FQ_CODEL=m +CONFIG_NET_SCH_FQ_PIE=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_HHF=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_PIE=m +CONFIG_NET_SCH_PLUG=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_SKBPRIO=m +CONFIG_NET_SCH_TAPRIO=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SELFTESTS=y +CONFIG_NET_SOCK_MSG=y +CONFIG_NET_SWITCHDEV=y +CONFIG_NET_TC_SKB_EXT=y +CONFIG_NET_TEAM=m +CONFIG_NET_TEAM_MODE_ACTIVEBACKUP=m +CONFIG_NET_TEAM_MODE_BROADCAST=m +CONFIG_NET_TEAM_MODE_LOADBALANCE=m +CONFIG_NET_TEAM_MODE_RANDOM=m +CONFIG_NET_TEAM_MODE_ROUNDROBIN=m +CONFIG_NET_TULIP=y +CONFIG_NET_UDP_TUNNEL=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_8390=y +CONFIG_NET_VENDOR_ACTIONS=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_AGERE=y +CONFIG_NET_VENDOR_ALACRITECH=y +CONFIG_NET_VENDOR_ALLWINNER=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMAZON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_AQUANTIA=y +CONFIG_NET_VENDOR_ARC=y +CONFIG_NET_VENDOR_ASIX=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CADENCE=y +CONFIG_NET_VENDOR_CAVIUM=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_CORTINA=y +CONFIG_NET_VENDOR_DAVICOM=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_ENGLEDER=y +CONFIG_NET_VENDOR_EZCHIP=y +CONFIG_NET_VENDOR_FREESCALE=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_NET_VENDOR_FUNGIBLE=y +CONFIG_NET_VENDOR_GOOGLE=y +CONFIG_NET_VENDOR_HISILICON=y +CONFIG_NET_VENDOR_HUAWEI=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_LITEX=y +CONFIG_NET_VENDOR_MARVELL=y +# CONFIG_NET_VENDOR_MEDIATEK is not set +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MICROSEMI=y +CONFIG_NET_VENDOR_MICROSOFT=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NETERION=y +CONFIG_NET_VENDOR_NETRONOME=y +CONFIG_NET_VENDOR_NI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PACKET_ENGINES=y +CONFIG_NET_VENDOR_PENSANDO=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_QUALCOMM=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_RENESAS=y +CONFIG_NET_VENDOR_ROCKER=y +CONFIG_NET_VENDOR_SAMSUNG=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_SOCIONEXT=y +CONFIG_NET_VENDOR_SOLARFLARE=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_SYNOPSYS=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_VERTEXCOM=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_WIZNET=y +CONFIG_NET_VENDOR_XILINX=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_NET_VRF=m +CONFIG_NET_XGENE=m +CONFIG_NET_XGENE_V2=m +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFC_DIGITAL=m +CONFIG_NFC_FDP=m +CONFIG_NFC_FDP_I2C=m +CONFIG_NFC_HCI=m +CONFIG_NFC_MEI_PHY=m +CONFIG_NFC_MICROREAD=m +CONFIG_NFC_MICROREAD_I2C=m +CONFIG_NFC_MICROREAD_MEI=m +CONFIG_NFC_MRVL=m +CONFIG_NFC_MRVL_I2C=m +CONFIG_NFC_MRVL_SPI=m +CONFIG_NFC_MRVL_UART=m +CONFIG_NFC_MRVL_USB=m +CONFIG_NFC_NCI=m +CONFIG_NFC_NCI_SPI=m +CONFIG_NFC_NCI_UART=m +CONFIG_NFC_NXP_NCI=m +CONFIG_NFC_NXP_NCI_I2C=m +CONFIG_NFC_PN532_UART=m +CONFIG_NFC_PN533=m +CONFIG_NFC_PN533_I2C=m +CONFIG_NFC_PN533_USB=m +CONFIG_NFC_PN544=m +CONFIG_NFC_PN544_I2C=m +CONFIG_NFC_PN544_MEI=m +CONFIG_NFC_PORT100=m +CONFIG_NFC_S3FWRN5=m +CONFIG_NFC_S3FWRN5_I2C=m +CONFIG_NFC_S3FWRN82_UART=m +CONFIG_NFC_SHDLC=y +CONFIG_NFC_SIM=m +CONFIG_NFC_ST21NFCA=m +CONFIG_NFC_ST21NFCA_I2C=m +CONFIG_NFC_ST95HF=m +CONFIG_NFC_ST_NCI=m +CONFIG_NFC_ST_NCI_I2C=m +CONFIG_NFC_ST_NCI_SPI=m +CONFIG_NFC_TRF7970A=m +CONFIG_NFC_VIRTUAL_NCI=m +# CONFIG_NFIT_SECURITY_DEBUG is not set +CONFIG_NFP=m +CONFIG_NFP_APP_ABM_NIC=y +CONFIG_NFP_APP_FLOWER=y +# CONFIG_NFP_DEBUG is not set +CONFIG_NFSD=m +CONFIG_NFSD_BLOCKLAYOUT=y +CONFIG_NFSD_FLEXFILELAYOUT=y +CONFIG_NFSD_PNFS=y +CONFIG_NFSD_SCSILAYOUT=y +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFSD_V4_2_INTER_SSC=y +CONFIG_NFSD_V4_SECURITY_LABEL=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_DEBUG=y +CONFIG_NFS_DISABLE_UDP_SUPPORT=y +CONFIG_NFS_FS=m +CONFIG_NFS_FSCACHE=y +CONFIG_NFS_SWAP=y +CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +CONFIG_NFS_V2=m +CONFIG_NFS_V3=m +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=m +CONFIG_NFS_V4_1=y +CONFIG_NFS_V4_1_IMPLEMENTATION_ID_DOMAIN="kernel.org" +CONFIG_NFS_V4_1_MIGRATION=y +CONFIG_NFS_V4_2=y +# CONFIG_NFS_V4_2_READ_PLUS is not set +CONFIG_NFS_V4_2_SSC_HELPER=y +CONFIG_NFS_V4_SECURITY_LABEL=y +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_NFT_BRIDGE_META=m +CONFIG_NFT_BRIDGE_REJECT=m +CONFIG_NFT_COMPAT=m +CONFIG_NFT_CONNLIMIT=m +CONFIG_NFT_CT=m +CONFIG_NFT_DUP_IPV4=m +CONFIG_NFT_DUP_IPV6=m +CONFIG_NFT_DUP_NETDEV=m +CONFIG_NFT_FIB=m +CONFIG_NFT_FIB_INET=m +CONFIG_NFT_FIB_IPV4=m +CONFIG_NFT_FIB_IPV6=m +CONFIG_NFT_FIB_NETDEV=m +CONFIG_NFT_FLOW_OFFLOAD=m +CONFIG_NFT_FWD_NETDEV=m +CONFIG_NFT_HASH=m +CONFIG_NFT_LIMIT=m +CONFIG_NFT_LOG=m +CONFIG_NFT_MASQ=m +CONFIG_NFT_NAT=m +CONFIG_NFT_NUMGEN=m +CONFIG_NFT_OBJREF=m +CONFIG_NFT_OSF=m +CONFIG_NFT_QUEUE=m +CONFIG_NFT_QUOTA=m +CONFIG_NFT_REDIR=m +CONFIG_NFT_REJECT=m +CONFIG_NFT_REJECT_INET=m +CONFIG_NFT_REJECT_IPV4=m +CONFIG_NFT_REJECT_IPV6=m +CONFIG_NFT_REJECT_NETDEV=m +CONFIG_NFT_SOCKET=m +CONFIG_NFT_SYNPROXY=m +CONFIG_NFT_TPROXY=m +CONFIG_NFT_TUNNEL=m +CONFIG_NFT_XFRM=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_BRIDGE=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_LABELS=y +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_PPTP=m +# CONFIG_NF_CONNTRACK_PROCFS is not set +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CONNTRACK_TIMEOUT=y +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_NETLINK_HELPER=m +CONFIG_NF_CT_NETLINK_TIMEOUT=m +CONFIG_NF_CT_PROTO_DCCP=y +CONFIG_NF_CT_PROTO_GRE=y +CONFIG_NF_CT_PROTO_SCTP=y +CONFIG_NF_CT_PROTO_UDPLITE=y +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_DUP_IPV4=m +CONFIG_NF_DUP_IPV6=m +CONFIG_NF_DUP_NETDEV=m +CONFIG_NF_FLOW_TABLE=m +CONFIG_NF_FLOW_TABLE_INET=m +CONFIG_NF_LOG_ARP=m +CONFIG_NF_LOG_IPV4=m +CONFIG_NF_LOG_IPV6=m +CONFIG_NF_LOG_SYSLOG=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_MASQUERADE=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_REDIRECT=y +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_REJECT_IPV4=m +CONFIG_NF_REJECT_IPV6=m +CONFIG_NF_SOCKET_IPV4=m +CONFIG_NF_SOCKET_IPV6=m +CONFIG_NF_TABLES=m +CONFIG_NF_TABLES_ARP=y +CONFIG_NF_TABLES_BRIDGE=m +CONFIG_NF_TABLES_INET=y +CONFIG_NF_TABLES_IPV4=y +CONFIG_NF_TABLES_IPV6=y +CONFIG_NF_TABLES_NETDEV=y +CONFIG_NF_TPROXY_IPV4=m +CONFIG_NF_TPROXY_IPV6=m +CONFIG_NI903X_WDT=m +CONFIG_NIC7018_WDT=m +CONFIG_NILFS2_FS=m +CONFIG_NINTENDO_FF=y +CONFIG_NITRO_ENCLAVES=m +CONFIG_NIU=m +CONFIG_NI_XGE_MANAGEMENT_ENET=m +# CONFIG_NL80211_TESTMODE is not set +CONFIG_NLATTR=y +CONFIG_NLMON=m +CONFIG_NLS=y +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +CONFIG_NOA1305=m +CONFIG_NOP_TRACER=y +CONFIG_NOP_USB_XCEIV=m +CONFIG_NORTEL_HERMES=m +CONFIG_NOTIFIER_ERROR_INJECTION=m +CONFIG_NOUVEAU_DEBUG=5 +CONFIG_NOUVEAU_DEBUG_DEFAULT=3 +# CONFIG_NOUVEAU_DEBUG_MMU is not set +# CONFIG_NOUVEAU_DEBUG_PUSH is not set +# CONFIG_NOUVEAU_LEGACY_CTX_SUPPORT is not set +CONFIG_NOUVEAU_PLATFORM_DRIVER=y +CONFIG_NOZOMI=m +CONFIG_NO_HZ=y +CONFIG_NO_HZ_COMMON=y +# CONFIG_NO_HZ_FULL is not set +CONFIG_NO_HZ_IDLE=y +CONFIG_NR_CPUS_DEFAULT=8192 +CONFIG_NR_CPUS_RANGE_BEGIN=8192 +CONFIG_NR_CPUS_RANGE_END=8192 +CONFIG_NS83820=m +CONFIG_NTB=m +# CONFIG_NTB_AMD is not set +CONFIG_NTB_EPF=m +CONFIG_NTB_IDT=m +CONFIG_NTB_INTEL=m +CONFIG_NTB_MSI=y +# CONFIG_NTB_MSI_TEST is not set +CONFIG_NTB_NETDEV=m +CONFIG_NTB_PERF=m +CONFIG_NTB_PINGPONG=m +CONFIG_NTB_SWITCHTEC=m +CONFIG_NTB_TOOL=m +CONFIG_NTB_TRANSPORT=m +# CONFIG_NTFS3_64BIT_CLUSTER is not set +CONFIG_NTFS3_FS=m +CONFIG_NTFS3_FS_POSIX_ACL=y +CONFIG_NTFS3_LZX_XPRESS=y +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +# CONFIG_NTFS_RW is not set +CONFIG_NULL_TTY=m +CONFIG_NUMA=y +CONFIG_NUMA_BALANCING=y +CONFIG_NUMA_BALANCING_DEFAULT_ENABLED=y +# CONFIG_NUMA_EMU is not set +CONFIG_NUMA_KEEP_MEMINFO=y +CONFIG_NVDIMM_DAX=y +CONFIG_NVDIMM_KEYS=y +CONFIG_NVDIMM_PFN=y +CONFIG_NVEC_PAZ00=m +CONFIG_NVEC_POWER=m +# CONFIG_NVHE_EL2_DEBUG is not set +CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y +CONFIG_NVIDIA_WMI_EC_BACKLIGHT=m +CONFIG_NVMEM=y +CONFIG_NVMEM_APPLE_EFUSES=m +CONFIG_NVMEM_BCM_OCOTP=m +CONFIG_NVMEM_IMX_IIM=m +CONFIG_NVMEM_IMX_OCOTP=m +CONFIG_NVMEM_IMX_OCOTP_SCU=m +CONFIG_NVMEM_LAYERSCAPE_SFP=m +CONFIG_NVMEM_REBOOT_MODE=m +CONFIG_NVMEM_RMEM=m +CONFIG_NVMEM_SNVS_LPGPR=m +CONFIG_NVMEM_SPMI_SDAM=m +CONFIG_NVMEM_SUNXI_SID=m +CONFIG_NVMEM_SYSFS=y +CONFIG_NVMEM_ZYNQMP=y +CONFIG_NVME_APPLE=m +CONFIG_NVME_CORE=m +CONFIG_NVME_FABRICS=m +CONFIG_NVME_FC=m +CONFIG_NVME_HWMON=y +CONFIG_NVME_MULTIPATH=y +CONFIG_NVME_RDMA=m +CONFIG_NVME_TARGET=m +CONFIG_NVME_TARGET_FC=m +# CONFIG_NVME_TARGET_FCLOOP is not set +CONFIG_NVME_TARGET_LOOP=m +CONFIG_NVME_TARGET_PASSTHRU=y +CONFIG_NVME_TARGET_RDMA=m +CONFIG_NVME_TARGET_TCP=m +CONFIG_NVME_TCP=m +# CONFIG_NVME_VERBOSE_ERRORS is not set +CONFIG_NVRAM=m +CONFIG_NVSW_SN2201=m +CONFIG_NV_TCO=m +CONFIG_NXP_C45_TJA11XX_PHY=m +CONFIG_NXP_TJA11XX_PHY=m +CONFIG_N_GSM=m +CONFIG_N_HDLC=m +CONFIG_OBJAGG=m +CONFIG_OBJTOOL=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OCTEONTX2_AF=m +CONFIG_OCTEONTX2_MBOX=m +CONFIG_OCTEONTX2_PF=m +CONFIG_OCTEONTX2_VF=m +CONFIG_OCTEON_EP=m +CONFIG_OF_ADDRESS=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_FPGA_REGION=m +CONFIG_OF_GPIO=y +CONFIG_OF_IOMMU=y +CONFIG_OF_IRQ=y +CONFIG_OF_KOBJ=y +CONFIG_OF_MDIO=y +CONFIG_OF_NUMA=y +CONFIG_OF_OVERLAY=y +CONFIG_OF_PMEM=m +# CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT is not set +CONFIG_OF_RESERVED_MEM=y +CONFIG_OF_RESOLVE=y +# CONFIG_OF_UNITTEST is not set +CONFIG_OID_REGISTRY=y +CONFIG_OLD_SIGSUSPEND3=y +CONFIG_OMAP2PLUS_MBOX=m +CONFIG_OMAP_GPMC=y +# CONFIG_OMAP_GPMC_DEBUG is not set +CONFIG_OMAP_MBOX_KFIFO_SIZE=256 +CONFIG_OMAP_USB2=m +CONFIG_OMFS_FS=m +CONFIG_OPENVSWITCH=m +CONFIG_OPENVSWITCH_GENEVE=m +CONFIG_OPENVSWITCH_GRE=m +CONFIG_OPENVSWITCH_VXLAN=m +CONFIG_OPEN_DICE=m +CONFIG_OPT3001=m +CONFIG_OPTEE=m +CONFIG_OPTPROBES=y +CONFIG_ORANGEFS_FS=m +CONFIG_ORINOCO_USB=m +CONFIG_OSF_PARTITION=y +# CONFIG_OSNOISE_TRACER is not set +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_OVERLAY_FS=m +# CONFIG_OVERLAY_FS_INDEX is not set +# CONFIG_OVERLAY_FS_METACOPY is not set +CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y +# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set +CONFIG_OVERLAY_FS_XINO_AUTO=y +CONFIG_OWL_DMA=m +CONFIG_OWL_EMAC=m +CONFIG_OWL_PM_DOMAINS=y +CONFIG_OWL_PM_DOMAINS_HELPER=y +CONFIG_OWL_TIMER=y +CONFIG_P54_COMMON=m +CONFIG_P54_LEDS=y +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_USB=m +CONFIG_PA12203001=m +CONFIG_PACKET=y +CONFIG_PACKET_DIAG=m +CONFIG_PACKING=y +CONFIG_PADATA=y +CONFIG_PAGE_COUNTER=y +# CONFIG_PAGE_EXTENSION is not set +CONFIG_PAGE_IDLE_FLAG=y +# CONFIG_PAGE_OWNER is not set +CONFIG_PAGE_POISONING=y +CONFIG_PAGE_POOL=y +CONFIG_PAGE_REPORTING=y +CONFIG_PAGE_SIZE_LESS_THAN_256KB=y +CONFIG_PAGE_SIZE_LESS_THAN_64KB=y +# CONFIG_PAGE_TABLE_CHECK is not set +CONFIG_PAGE_TABLE_ISOLATION=y +CONFIG_PAHOLE_HAS_SPLIT_BTF=y +CONFIG_PAHOLE_VERSION=122 +CONFIG_PALMAS_GPADC=m +CONFIG_PANASONIC_LAPTOP=m +CONFIG_PANEL=m +# CONFIG_PANEL_CHANGE_MESSAGE is not set +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PROFILE=5 +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PANTHERLORD_FF=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARAVIRT_XXL=y +CONFIG_PARIDE=m +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PG=m +CONFIG_PARIDE_PT=m +CONFIG_PARMAN=m +CONFIG_PARPORT=m +CONFIG_PARPORT_1284=y +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_NOT_PC=y +CONFIG_PARPORT_PANEL=m +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_SERIAL=m +CONFIG_PARTITION_ADVANCED=y +CONFIG_PARTITION_PERCPU=y +CONFIG_PATA_ACPI=m +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_IMX=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_MARVELL=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OF_PLATFORM=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_TIMINGS=y +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m +CONFIG_PC104=y +CONFIG_PC300TOO=m +CONFIG_PC87413_WDT=m +CONFIG_PCC=y +CONFIG_PCCARD=m +CONFIG_PCCARD_NONSTATIC=y +CONFIG_PCENGINES_APU2=m +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_PCI=y +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +CONFIG_PCIEASPM_DEFAULT=y +# CONFIG_PCIEASPM_PERFORMANCE is not set +# CONFIG_PCIEASPM_POWERSAVE is not set +# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set +CONFIG_PCIEPORTBUS=y +CONFIG_PCIE_AL=y +CONFIG_PCIE_ALTERA=y +CONFIG_PCIE_ALTERA_MSI=y +CONFIG_PCIE_APPLE=m +CONFIG_PCIE_APPLE_MSI_DOORBELL_ADDR=0xfffff000 +CONFIG_PCIE_ARMADA_8K=y +CONFIG_PCIE_BRCMSTB=m +CONFIG_PCIE_BUS_DEFAULT=y +# CONFIG_PCIE_BUS_PEER2PEER is not set +# CONFIG_PCIE_BUS_PERFORMANCE is not set +# CONFIG_PCIE_BUS_SAFE is not set +# CONFIG_PCIE_BUS_TUNE_OFF is not set +CONFIG_PCIE_CADENCE=y +CONFIG_PCIE_CADENCE_EP=y +CONFIG_PCIE_CADENCE_HOST=y +CONFIG_PCIE_CADENCE_PLAT=y +CONFIG_PCIE_CADENCE_PLAT_EP=y +CONFIG_PCIE_CADENCE_PLAT_HOST=y +CONFIG_PCIE_DPC=y +CONFIG_PCIE_DW=y +CONFIG_PCIE_DW_EP=y +CONFIG_PCIE_DW_HOST=y +CONFIG_PCIE_DW_PLAT=y +CONFIG_PCIE_DW_PLAT_EP=y +CONFIG_PCIE_DW_PLAT_HOST=y +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_EDR=y +CONFIG_PCIE_HISI_ERR=y +CONFIG_PCIE_HISI_STB=y +CONFIG_PCIE_IPROC=m +CONFIG_PCIE_IPROC_MSI=y +CONFIG_PCIE_IPROC_PLATFORM=m +CONFIG_PCIE_KEEMBAY=y +CONFIG_PCIE_KEEMBAY_EP=y +CONFIG_PCIE_KEEMBAY_HOST=y +CONFIG_PCIE_KIRIN=y +# CONFIG_PCIE_LAYERSCAPE_GEN4 is not set +CONFIG_PCIE_MEDIATEK=y +CONFIG_PCIE_MEDIATEK_GEN3=m +CONFIG_PCIE_MICROCHIP_HOST=y +# CONFIG_PCIE_MOBIVEIL_PLAT is not set +CONFIG_PCIE_PME=y +CONFIG_PCIE_PTM=y +CONFIG_PCIE_QCOM=y +CONFIG_PCIE_QCOM_EP=m +CONFIG_PCIE_RCAR_EP=y +CONFIG_PCIE_RCAR_HOST=y +CONFIG_PCIE_ROCKCHIP=y +CONFIG_PCIE_ROCKCHIP_DW_HOST=y +CONFIG_PCIE_ROCKCHIP_EP=y +CONFIG_PCIE_ROCKCHIP_HOST=m +CONFIG_PCIE_TEGRA194=m +CONFIG_PCIE_TEGRA194_EP=m +CONFIG_PCIE_TEGRA194_HOST=m +CONFIG_PCIE_VISCONTI_HOST=y +CONFIG_PCIE_XILINX=y +CONFIG_PCIE_XILINX_CPM=y +CONFIG_PCIE_XILINX_NWL=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_AARDVARK=y +CONFIG_PCI_ATMEL=m +CONFIG_PCI_ATS=y +CONFIG_PCI_BRIDGE_EMUL=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_DOMAINS_GENERIC=y +CONFIG_PCI_ECAM=y +CONFIG_PCI_ENDPOINT=y +CONFIG_PCI_ENDPOINT_CONFIGFS=y +# CONFIG_PCI_ENDPOINT_TEST is not set +CONFIG_PCI_EPF_NTB=m +# CONFIG_PCI_EPF_TEST is not set +CONFIG_PCI_FTPCI100=y +CONFIG_PCI_HISI=y +CONFIG_PCI_HOST_COMMON=y +CONFIG_PCI_HOST_GENERIC=y +CONFIG_PCI_HOST_THUNDER_ECAM=y +CONFIG_PCI_HOST_THUNDER_PEM=y +CONFIG_PCI_HYPERV=m +CONFIG_PCI_HYPERV_INTERFACE=m +CONFIG_PCI_IMX6=y +CONFIG_PCI_IOV=y +CONFIG_PCI_J721E=y +CONFIG_PCI_J721E_EP=y +CONFIG_PCI_J721E_HOST=y +CONFIG_PCI_KEYSTONE=y +CONFIG_PCI_KEYSTONE_EP=y +CONFIG_PCI_KEYSTONE_HOST=y +CONFIG_PCI_LABEL=y +CONFIG_PCI_LAYERSCAPE=y +CONFIG_PCI_LAYERSCAPE_EP=y +CONFIG_PCI_LOCKLESS_CONFIG=y +# CONFIG_PCI_MESON is not set +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_P2PDMA is not set +CONFIG_PCI_PASID=y +CONFIG_PCI_PF_STUB=m +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCI_REALLOC_ENABLE_AUTO=y +CONFIG_PCI_STUB=m +CONFIG_PCI_SW_SWITCHTEC=m +CONFIG_PCI_SYSCALL=y +CONFIG_PCI_TEGRA=y +CONFIG_PCI_XEN=y +CONFIG_PCI_XGENE=y +CONFIG_PCI_XGENE_MSI=y +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_AXNET=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_PCMCIA_WL3501=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_PCNET32=m +CONFIG_PCPU_DEV_REFCNT=y +CONFIG_PCSPKR_PLATFORM=y +CONFIG_PCS_LYNX=m +CONFIG_PCS_XPCS=m +CONFIG_PD6729=m +CONFIG_PDA_POWER=m +CONFIG_PDC_ADMA=m +CONFIG_PEAQ_WMI=m +CONFIG_PECI=m +CONFIG_PECI_CPU=m +# CONFIG_PERCPU_STATS is not set +# CONFIG_PERCPU_TEST is not set +CONFIG_PERF_EVENTS=y +CONFIG_PERF_EVENTS_AMD_BRS=y +# CONFIG_PERF_EVENTS_AMD_POWER is not set +CONFIG_PERF_EVENTS_AMD_UNCORE=m +CONFIG_PERF_EVENTS_INTEL_CSTATE=m +CONFIG_PERF_EVENTS_INTEL_RAPL=m +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +CONFIG_PERSISTENT_KEYRINGS=y +CONFIG_PHANTOM=m +CONFIG_PHONET=m +CONFIG_PHYLIB=y +CONFIG_PHYLINK=m +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PHY_AM654_SERDES=m +CONFIG_PHY_BCM_NS_USB2=m +CONFIG_PHY_BCM_NS_USB3=m +CONFIG_PHY_BCM_SR_PCIE=m +CONFIG_PHY_BCM_SR_USB=m +CONFIG_PHY_BERLIN_SATA=m +CONFIG_PHY_BERLIN_USB=m +CONFIG_PHY_BRCM_SATA=y +CONFIG_PHY_BRCM_USB=m +CONFIG_PHY_CADENCE_DPHY=m +CONFIG_PHY_CADENCE_DPHY_RX=m +CONFIG_PHY_CADENCE_SALVO=m +CONFIG_PHY_CADENCE_SIERRA=m +CONFIG_PHY_CADENCE_TORRENT=m +CONFIG_PHY_CAN_TRANSCEIVER=m +CONFIG_PHY_CPCAP_USB=m +CONFIG_PHY_FSL_IMX8MQ_USB=m +CONFIG_PHY_FSL_IMX8M_PCIE=m +CONFIG_PHY_FSL_LYNX_28G=m +CONFIG_PHY_HI3660_USB=m +CONFIG_PHY_HI3670_PCIE=m +CONFIG_PHY_HI3670_USB=m +CONFIG_PHY_HI6220_USB=m +CONFIG_PHY_HISI_INNO_USB2=m +CONFIG_PHY_HISTB_COMBPHY=m +CONFIG_PHY_INTEL_KEEMBAY_EMMC=m +CONFIG_PHY_INTEL_KEEMBAY_USB=m +CONFIG_PHY_INTEL_LGM_EMMC=m +CONFIG_PHY_J721E_WIZ=m +CONFIG_PHY_LAN966X_SERDES=m +CONFIG_PHY_MAPPHONE_MDM6600=m +CONFIG_PHY_MESON8B_USB2=m +CONFIG_PHY_MESON_AXG_MIPI_DPHY=m +CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG=y +CONFIG_PHY_MESON_AXG_PCIE=y +CONFIG_PHY_MESON_G12A_USB2=m +CONFIG_PHY_MESON_G12A_USB3_PCIE=m +CONFIG_PHY_MESON_GXL_USB2=m +CONFIG_PHY_MIXEL_MIPI_DPHY=m +CONFIG_PHY_MTK_HDMI=m +CONFIG_PHY_MTK_MIPI_DSI=m +CONFIG_PHY_MTK_TPHY=m +CONFIG_PHY_MTK_UFS=m +CONFIG_PHY_MTK_XSPHY=m +CONFIG_PHY_MVEBU_A3700_COMPHY=m +CONFIG_PHY_MVEBU_A3700_UTMI=m +CONFIG_PHY_MVEBU_A38X_COMPHY=m +CONFIG_PHY_MVEBU_CP110_COMPHY=m +CONFIG_PHY_MVEBU_CP110_UTMI=m +CONFIG_PHY_NS2_PCIE=y +CONFIG_PHY_NS2_USB_DRD=m +CONFIG_PHY_OCELOT_SERDES=m +CONFIG_PHY_PXA_28NM_HSIC=m +CONFIG_PHY_PXA_28NM_USB2=m +CONFIG_PHY_QCOM_APQ8064_SATA=m +CONFIG_PHY_QCOM_EDP=m +CONFIG_PHY_QCOM_IPQ4019_USB=m +CONFIG_PHY_QCOM_IPQ806X_SATA=m +CONFIG_PHY_QCOM_IPQ806X_USB=m +CONFIG_PHY_QCOM_PCIE2=m +CONFIG_PHY_QCOM_QMP=m +CONFIG_PHY_QCOM_QUSB2=m +CONFIG_PHY_QCOM_USB_HS=m +CONFIG_PHY_QCOM_USB_HSIC=m +CONFIG_PHY_QCOM_USB_HS_28NM=m +CONFIG_PHY_QCOM_USB_SNPS_FEMTO_V2=m +CONFIG_PHY_QCOM_USB_SS=m +CONFIG_PHY_RCAR_GEN2=m +CONFIG_PHY_RCAR_GEN3_PCIE=m +CONFIG_PHY_RCAR_GEN3_USB2=m +CONFIG_PHY_RCAR_GEN3_USB3=m +CONFIG_PHY_ROCKCHIP_DP=m +CONFIG_PHY_ROCKCHIP_DPHY_RX0=m +CONFIG_PHY_ROCKCHIP_EMMC=m +CONFIG_PHY_ROCKCHIP_INNO_CSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_DSIDPHY=m +CONFIG_PHY_ROCKCHIP_INNO_HDMI=m +CONFIG_PHY_ROCKCHIP_INNO_USB2=m +CONFIG_PHY_ROCKCHIP_NANENG_COMBO_PHY=m +CONFIG_PHY_ROCKCHIP_PCIE=m +CONFIG_PHY_ROCKCHIP_TYPEC=m +CONFIG_PHY_ROCKCHIP_USB=m +CONFIG_PHY_SAMSUNG_USB2=m +CONFIG_PHY_SPARX5_SERDES=m +CONFIG_PHY_SUN4I_USB=m +CONFIG_PHY_SUN50I_USB3=m +CONFIG_PHY_SUN6I_MIPI_DPHY=m +# CONFIG_PHY_SUN9I_USB is not set +CONFIG_PHY_TEGRA194_P2U=m +CONFIG_PHY_TEGRA_XUSB=m +CONFIG_PHY_TI_GMII_SEL=m +CONFIG_PHY_TUSB1210=m +CONFIG_PHY_XGENE=y +CONFIG_PHY_XILINX_ZYNQMP=m +CONFIG_PI433=m +# CONFIG_PID_IN_CONTEXTIDR is not set +CONFIG_PID_NS=y +CONFIG_PINCONF=y +CONFIG_PINCTRL=y +CONFIG_PINCTRL_ALDERLAKE=m +CONFIG_PINCTRL_AMD=y +CONFIG_PINCTRL_APPLE_GPIO=m +CONFIG_PINCTRL_APQ8064=m +CONFIG_PINCTRL_APQ8084=m +CONFIG_PINCTRL_ARMADA_37XX=y +CONFIG_PINCTRL_ARMADA_AP806=y +CONFIG_PINCTRL_ARMADA_CP110=y +CONFIG_PINCTRL_AS370=y +CONFIG_PINCTRL_AS3722=y +CONFIG_PINCTRL_AXP209=m +CONFIG_PINCTRL_BAYTRAIL=y +CONFIG_PINCTRL_BCM2835=y +CONFIG_PINCTRL_BCM4908=m +CONFIG_PINCTRL_BERLIN=y +CONFIG_PINCTRL_BERLIN_BG4CT=y +CONFIG_PINCTRL_BM1880=y +CONFIG_PINCTRL_BROXTON=m +CONFIG_PINCTRL_CANNONLAKE=m +CONFIG_PINCTRL_CEDARFORK=m +CONFIG_PINCTRL_CHERRYVIEW=y +CONFIG_PINCTRL_CS47L15=y +CONFIG_PINCTRL_CS47L35=y +CONFIG_PINCTRL_CS47L85=y +CONFIG_PINCTRL_CS47L90=y +CONFIG_PINCTRL_CS47L92=y +CONFIG_PINCTRL_DA9062=m +CONFIG_PINCTRL_DENVERTON=m +CONFIG_PINCTRL_ELKHARTLAKE=m +CONFIG_PINCTRL_EMMITSBURG=m +CONFIG_PINCTRL_GEMINILAKE=m +CONFIG_PINCTRL_ICELAKE=m +CONFIG_PINCTRL_IMX=y +CONFIG_PINCTRL_IMX8DXL=y +CONFIG_PINCTRL_IMX8MM=y +CONFIG_PINCTRL_IMX8MN=y +CONFIG_PINCTRL_IMX8MP=y +CONFIG_PINCTRL_IMX8MQ=y +CONFIG_PINCTRL_IMX8QM=y +CONFIG_PINCTRL_IMX8QXP=y +CONFIG_PINCTRL_IMX8ULP=m +CONFIG_PINCTRL_IMX93=m +CONFIG_PINCTRL_IMXRT1050=y +CONFIG_PINCTRL_IMXRT1170=y +CONFIG_PINCTRL_IMX_SCU=y +CONFIG_PINCTRL_INTEL=y +CONFIG_PINCTRL_IPQ4019=m +CONFIG_PINCTRL_IPQ6018=m +CONFIG_PINCTRL_IPQ8064=m +CONFIG_PINCTRL_IPQ8074=m +CONFIG_PINCTRL_IPROC_GPIO=y +CONFIG_PINCTRL_JASPERLAKE=m +CONFIG_PINCTRL_KEEMBAY=m +CONFIG_PINCTRL_LAKEFIELD=m +CONFIG_PINCTRL_LEWISBURG=m +CONFIG_PINCTRL_LOCHNAGAR=m +CONFIG_PINCTRL_LPASS_LPI=m +CONFIG_PINCTRL_LYNXPOINT=m +CONFIG_PINCTRL_MADERA=m +CONFIG_PINCTRL_MAX77620=m +CONFIG_PINCTRL_MCP23S08=m +CONFIG_PINCTRL_MCP23S08_I2C=m +CONFIG_PINCTRL_MCP23S08_SPI=m +CONFIG_PINCTRL_MDM9607=m +CONFIG_PINCTRL_MDM9615=m +CONFIG_PINCTRL_MESON=y +CONFIG_PINCTRL_MESON8_PMX=y +CONFIG_PINCTRL_MESON_A1=y +CONFIG_PINCTRL_MESON_AXG=y +CONFIG_PINCTRL_MESON_AXG_PMX=y +CONFIG_PINCTRL_MESON_G12A=y +CONFIG_PINCTRL_MESON_GXBB=y +CONFIG_PINCTRL_MESON_GXL=y +CONFIG_PINCTRL_MESON_S4=m +CONFIG_PINCTRL_MICROCHIP_SGPIO=y +CONFIG_PINCTRL_MSM=y +CONFIG_PINCTRL_MSM8226=m +CONFIG_PINCTRL_MSM8660=m +CONFIG_PINCTRL_MSM8916=m +CONFIG_PINCTRL_MSM8953=m +CONFIG_PINCTRL_MSM8960=m +CONFIG_PINCTRL_MSM8976=m +CONFIG_PINCTRL_MSM8994=m +CONFIG_PINCTRL_MSM8996=m +CONFIG_PINCTRL_MSM8998=m +CONFIG_PINCTRL_MSM8X74=m +CONFIG_PINCTRL_MT2712=y +CONFIG_PINCTRL_MT6397=y +CONFIG_PINCTRL_MT6765=y +CONFIG_PINCTRL_MT6779=m +CONFIG_PINCTRL_MT6795=y +CONFIG_PINCTRL_MT6797=y +CONFIG_PINCTRL_MT7622=y +CONFIG_PINCTRL_MT7986=y +CONFIG_PINCTRL_MT8167=y +CONFIG_PINCTRL_MT8173=y +CONFIG_PINCTRL_MT8183=y +CONFIG_PINCTRL_MT8186=y +CONFIG_PINCTRL_MT8192=y +CONFIG_PINCTRL_MT8195=y +CONFIG_PINCTRL_MT8365=y +CONFIG_PINCTRL_MT8516=y +CONFIG_PINCTRL_MTK=y +CONFIG_PINCTRL_MTK_MOORE=y +CONFIG_PINCTRL_MTK_PARIS=y +CONFIG_PINCTRL_MTK_V2=y +CONFIG_PINCTRL_MVEBU=y +CONFIG_PINCTRL_NS2_MUX=y +CONFIG_PINCTRL_OCELOT=y +CONFIG_PINCTRL_OWL=y +CONFIG_PINCTRL_PALMAS=y +CONFIG_PINCTRL_PFC_R8A774A1=y +CONFIG_PINCTRL_PFC_R8A774B1=y +CONFIG_PINCTRL_PFC_R8A774C0=y +CONFIG_PINCTRL_PFC_R8A774E1=y +CONFIG_PINCTRL_PFC_R8A77950=y +CONFIG_PINCTRL_PFC_R8A77951=y +CONFIG_PINCTRL_PFC_R8A77960=y +CONFIG_PINCTRL_PFC_R8A77961=y +CONFIG_PINCTRL_PFC_R8A77965=y +CONFIG_PINCTRL_PFC_R8A77970=y +CONFIG_PINCTRL_PFC_R8A77980=y +CONFIG_PINCTRL_PFC_R8A77990=y +CONFIG_PINCTRL_PFC_R8A77995=y +CONFIG_PINCTRL_PFC_R8A779A0=y +CONFIG_PINCTRL_PFC_R8A779F0=y +CONFIG_PINCTRL_QCM2290=m +CONFIG_PINCTRL_QCOM_SPMI_PMIC=m +CONFIG_PINCTRL_QCOM_SSBI_PMIC=m +CONFIG_PINCTRL_QCS404=m +CONFIG_PINCTRL_QDF2XXX=m +CONFIG_PINCTRL_RENESAS=y +CONFIG_PINCTRL_RK805=m +CONFIG_PINCTRL_ROCKCHIP=y +CONFIG_PINCTRL_RZG2L=y +CONFIG_PINCTRL_S700=y +CONFIG_PINCTRL_S900=y +CONFIG_PINCTRL_SC7180=m +CONFIG_PINCTRL_SC7280=m +CONFIG_PINCTRL_SC7280_LPASS_LPI=m +CONFIG_PINCTRL_SC8180X=m +CONFIG_PINCTRL_SC8280XP=m +CONFIG_PINCTRL_SDM660=m +CONFIG_PINCTRL_SDM845=m +CONFIG_PINCTRL_SDX55=m +CONFIG_PINCTRL_SDX65=m +CONFIG_PINCTRL_SH_PFC=y +CONFIG_PINCTRL_SINGLE=y +CONFIG_PINCTRL_SM6115=m +CONFIG_PINCTRL_SM6125=m +CONFIG_PINCTRL_SM6350=m +CONFIG_PINCTRL_SM8150=m +CONFIG_PINCTRL_SM8250=m +CONFIG_PINCTRL_SM8250_LPASS_LPI=m +CONFIG_PINCTRL_SM8350=m +CONFIG_PINCTRL_SM8450=m +CONFIG_PINCTRL_SPRD=y +CONFIG_PINCTRL_SPRD_SC9860=y +CONFIG_PINCTRL_STMFX=m +CONFIG_PINCTRL_SUN4I_A10=y +CONFIG_PINCTRL_SUN50I_A100=y +CONFIG_PINCTRL_SUN50I_A100_R=y +CONFIG_PINCTRL_SUN50I_A64=y +CONFIG_PINCTRL_SUN50I_A64_R=y +CONFIG_PINCTRL_SUN50I_H5=y +CONFIG_PINCTRL_SUN50I_H6=y +CONFIG_PINCTRL_SUN50I_H616=y +CONFIG_PINCTRL_SUN50I_H616_R=y +CONFIG_PINCTRL_SUN50I_H6_R=y +CONFIG_PINCTRL_SUN5I=y +CONFIG_PINCTRL_SUN6I_A31=y +CONFIG_PINCTRL_SUN6I_A31_R=y +CONFIG_PINCTRL_SUN8I_A23=y +CONFIG_PINCTRL_SUN8I_A23_R=y +CONFIG_PINCTRL_SUN8I_A33=y +CONFIG_PINCTRL_SUN8I_A83T=y +CONFIG_PINCTRL_SUN8I_A83T_R=y +CONFIG_PINCTRL_SUN8I_H3=y +CONFIG_PINCTRL_SUN8I_H3_R=y +CONFIG_PINCTRL_SUN8I_V3S=y +CONFIG_PINCTRL_SUN9I_A80=y +CONFIG_PINCTRL_SUN9I_A80_R=y +CONFIG_PINCTRL_SUNRISEPOINT=m +CONFIG_PINCTRL_SUNXI=y +CONFIG_PINCTRL_SX150X=y +CONFIG_PINCTRL_TEGRA=y +CONFIG_PINCTRL_TEGRA124=y +CONFIG_PINCTRL_TEGRA194=y +CONFIG_PINCTRL_TEGRA210=y +CONFIG_PINCTRL_TEGRA_XUSB=y +CONFIG_PINCTRL_TIGERLAKE=m +CONFIG_PINCTRL_TMPV7700=y +CONFIG_PINCTRL_VISCONTI=y +CONFIG_PINCTRL_ZYNQMP=m +CONFIG_PING=m +CONFIG_PINMUX=y +CONFIG_PKCS7_MESSAGE_PARSER=y +CONFIG_PKCS7_TEST_KEY=m +CONFIG_PKCS8_PRIVATE_KEY_PARSER=m +CONFIG_PL320_MBOX=y +CONFIG_PL330_DMA=m +CONFIG_PLATFORM_MHU=m +CONFIG_PLATFORM_SI4713=m +CONFIG_PLAYSTATION_FF=y +CONFIG_PLDMFW=y +CONFIG_PLFXLC=m +CONFIG_PLIP=m +CONFIG_PLX_DMA=m +CONFIG_PLX_HERMES=m +CONFIG_PM=y +CONFIG_PM8916_WATCHDOG=m +CONFIG_PMBUS=m +CONFIG_PMC_ATOM=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PMIC_DA9052=y +CONFIG_PMS7003=m +CONFIG_PM_ADVANCED_DEBUG=y +# CONFIG_PM_AUTOSLEEP is not set +CONFIG_PM_CLK=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DEVFREQ=y +CONFIG_PM_DEVFREQ_EVENT=y +CONFIG_PM_GENERIC_DOMAINS=y +CONFIG_PM_GENERIC_DOMAINS_OF=y +CONFIG_PM_GENERIC_DOMAINS_SLEEP=y +CONFIG_PM_NOTIFIER_ERROR_INJECT=m +CONFIG_PM_OPP=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_DEBUG=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_STD_PARTITION="" +# CONFIG_PM_TEST_SUSPEND is not set +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PM_WAKELOCKS=y +CONFIG_PM_WAKELOCKS_GC=y +CONFIG_PM_WAKELOCKS_LIMIT=100 +CONFIG_PNFS_BLOCK=m +CONFIG_PNFS_FILE_LAYOUT=m +CONFIG_PNFS_FLEXFILE_LAYOUT=m +CONFIG_PNP=y +CONFIG_PNPACPI=y +# CONFIG_PNP_DEBUG_MESSAGES is not set +CONFIG_POSIX_CPU_TIMERS_TASK_WORK=y +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_POSIX_TIMERS=y +CONFIG_POWERCAP=y +CONFIG_POWER_RESET=y +CONFIG_POWER_RESET_AS3722=y +CONFIG_POWER_RESET_ATC260X=m +# CONFIG_POWER_RESET_BRCMSTB is not set +CONFIG_POWER_RESET_GPIO=y +CONFIG_POWER_RESET_GPIO_RESTART=y +CONFIG_POWER_RESET_HISI=y +CONFIG_POWER_RESET_LINKSTATION=m +CONFIG_POWER_RESET_LTC2952=y +CONFIG_POWER_RESET_MSM=y +CONFIG_POWER_RESET_MT6323=y +CONFIG_POWER_RESET_OCELOT_RESET=y +CONFIG_POWER_RESET_QCOM_PON=m +CONFIG_POWER_RESET_REGULATOR=y +CONFIG_POWER_RESET_RESTART=y +CONFIG_POWER_RESET_SC27XX=m +CONFIG_POWER_RESET_SYSCON=y +CONFIG_POWER_RESET_SYSCON_POWEROFF=y +CONFIG_POWER_RESET_TPS65086=y +CONFIG_POWER_RESET_VEXPRESS=y +# CONFIG_POWER_RESET_XGENE is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_POWER_SUPPLY_HWMON=y +CONFIG_PPDEV=m +CONFIG_PPP=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_FILTER=y +CONFIG_PPP_MPPE=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPP_SYNC_TTY=m +CONFIG_PPS=y +CONFIG_PPS_CLIENT_GPIO=m +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_DEBUG is not set +CONFIG_PPTP=m +CONFIG_PREEMPTION=y +# CONFIG_PREEMPTIRQ_DELAY_TEST is not set +CONFIG_PREEMPT_BUILD=y +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPT_DYNAMIC=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PREEMPT_RCU=y +# CONFIG_PREEMPT_TRACER is not set +CONFIG_PRESTERA=m +CONFIG_PRESTERA_PCI=m +CONFIG_PREVENT_FIRMWARE_BUILD=y +# CONFIG_PRIME_NUMBERS is not set +CONFIG_PRINTER=m +CONFIG_PRINTK=y +# CONFIG_PRINTK_CALLER is not set +# CONFIG_PRINTK_INDEX is not set +CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13 +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PRISM2_USB=m +CONFIG_PROBE_EVENTS=y +CONFIG_PROCESSOR_SELECT=y +CONFIG_PROC_CHILDREN=y +CONFIG_PROC_CPU_RESCTRL=y +CONFIG_PROC_EVENTS=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_PID_ARCH_STATUS=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_THERMAL_MMIO_RAPL=m +CONFIG_PROC_VMCORE=y +CONFIG_PROC_VMCORE_DEVICE_DUMP=y +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_PROFILING=y +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +CONFIG_PRU_REMOTEPROC=m +CONFIG_PSAMPLE=m +CONFIG_PSI=y +# CONFIG_PSI_DEFAULT_DISABLED is not set +CONFIG_PSTORE=y +# CONFIG_PSTORE_842_COMPRESS is not set +CONFIG_PSTORE_BLK=m +CONFIG_PSTORE_BLK_BLKDEV="" +CONFIG_PSTORE_BLK_KMSG_SIZE=64 +CONFIG_PSTORE_BLK_MAX_REASON=2 +CONFIG_PSTORE_COMPRESS=y +CONFIG_PSTORE_COMPRESS_DEFAULT="deflate" +# CONFIG_PSTORE_CONSOLE is not set +CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240 +CONFIG_PSTORE_DEFLATE_COMPRESS=y +CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y +# CONFIG_PSTORE_FTRACE is not set +# CONFIG_PSTORE_LZ4HC_COMPRESS is not set +# CONFIG_PSTORE_LZ4_COMPRESS is not set +# CONFIG_PSTORE_LZO_COMPRESS is not set +# CONFIG_PSTORE_PMSG is not set +CONFIG_PSTORE_RAM=m +CONFIG_PSTORE_ZONE=m +# CONFIG_PSTORE_ZSTD_COMPRESS is not set +CONFIG_PTDUMP_CORE=y +# CONFIG_PTDUMP_DEBUGFS is not set +CONFIG_PTE_MARKER=y +CONFIG_PTE_MARKER_UFFD_WP=y +CONFIG_PTP_1588_CLOCK=y +CONFIG_PTP_1588_CLOCK_DTE=m +CONFIG_PTP_1588_CLOCK_IDT82P33=m +CONFIG_PTP_1588_CLOCK_IDTCM=m +CONFIG_PTP_1588_CLOCK_INES=m +CONFIG_PTP_1588_CLOCK_KVM=m +CONFIG_PTP_1588_CLOCK_OCP=m +CONFIG_PTP_1588_CLOCK_OPTIONAL=y +CONFIG_PTP_1588_CLOCK_QORIQ=m +CONFIG_PTP_1588_CLOCK_VMW=m +CONFIG_PUNIT_ATOM_DEBUG=m +CONFIG_PVH=y +CONFIG_PVPANIC=y +CONFIG_PVPANIC_MMIO=m +CONFIG_PVPANIC_PCI=m +CONFIG_PWM=y +CONFIG_PWM_ATMEL_HLCDC_PWM=m +CONFIG_PWM_ATMEL_TCB=m +CONFIG_PWM_BCM2835=m +CONFIG_PWM_BCM_IPROC=m +CONFIG_PWM_BERLIN=m +CONFIG_PWM_BRCMSTB=m +CONFIG_PWM_CRC=y +CONFIG_PWM_CROS_EC=m +# CONFIG_PWM_DEBUG is not set +CONFIG_PWM_DWC=m +CONFIG_PWM_FSL_FTM=m +CONFIG_PWM_HIBVT=m +CONFIG_PWM_IMX1=m +CONFIG_PWM_IMX27=m +CONFIG_PWM_IMX_TPM=m +CONFIG_PWM_IQS620A=m +CONFIG_PWM_KEEMBAY=m +CONFIG_PWM_LP3943=m +CONFIG_PWM_LPSS=y +CONFIG_PWM_LPSS_PCI=y +CONFIG_PWM_LPSS_PLATFORM=y +CONFIG_PWM_MEDIATEK=m +CONFIG_PWM_MESON=m +CONFIG_PWM_MTK_DISP=m +CONFIG_PWM_NTXEC=m +CONFIG_PWM_PCA9685=m +CONFIG_PWM_RASPBERRYPI_POE=m +CONFIG_PWM_RCAR=m +CONFIG_PWM_RENESAS_TPU=m +CONFIG_PWM_ROCKCHIP=m +CONFIG_PWM_SL28CPLD=m +CONFIG_PWM_SPRD=m +CONFIG_PWM_STMPE=y +CONFIG_PWM_SUN4I=m +CONFIG_PWM_SYSFS=y +CONFIG_PWM_TEGRA=m +CONFIG_PWM_TIECAP=m +CONFIG_PWM_TIEHRPWM=m +CONFIG_PWM_TWL=m +CONFIG_PWM_TWL_LED=m +CONFIG_PWM_VISCONTI=m +CONFIG_PWM_XILINX=m +CONFIG_PWRSEQ_EMMC=m +CONFIG_PWRSEQ_SD8787=m +CONFIG_PWRSEQ_SIMPLE=m +CONFIG_PXA168_ETH=m +CONFIG_QCA7000=m +CONFIG_QCA7000_SPI=m +CONFIG_QCA7000_UART=m +CONFIG_QCM_DISPCC_2290=m +CONFIG_QCM_GCC_2290=m +CONFIG_QCOM_A53PLL=m +CONFIG_QCOM_A7PLL=m +CONFIG_QCOM_AOSS_QMP=m +CONFIG_QCOM_APCS_IPC=m +CONFIG_QCOM_APR=m +CONFIG_QCOM_BAM_DMA=m +CONFIG_QCOM_BAM_DMUX=m +CONFIG_QCOM_CLK_APCC_MSM8996=m +CONFIG_QCOM_CLK_APCS_MSM8916=m +CONFIG_QCOM_CLK_APCS_SDX55=m +CONFIG_QCOM_CLK_RPM=m +CONFIG_QCOM_CLK_RPMH=m +CONFIG_QCOM_CLK_SMD_RPM=m +CONFIG_QCOM_COINCELL=m +CONFIG_QCOM_COMMAND_DB=y +CONFIG_QCOM_CPR=m +CONFIG_QCOM_EBI2=y +CONFIG_QCOM_EMAC=m +CONFIG_QCOM_FALKOR_ERRATUM_1003=y +CONFIG_QCOM_FALKOR_ERRATUM_1009=y +CONFIG_QCOM_FALKOR_ERRATUM_E1041=y +CONFIG_QCOM_FASTRPC=m +CONFIG_QCOM_GDSC=y +CONFIG_QCOM_GENI_SE=m +CONFIG_QCOM_GPI_DMA=m +CONFIG_QCOM_GSBI=m +CONFIG_QCOM_HFPLL=m +CONFIG_QCOM_HIDMA=m +CONFIG_QCOM_HIDMA_MGMT=m +CONFIG_QCOM_IOMMU=y +CONFIG_QCOM_IPA=m +CONFIG_QCOM_IPCC=y +CONFIG_QCOM_IRQ_COMBINER=y +CONFIG_QCOM_KRYO_L2_ACCESSORS=y +CONFIG_QCOM_L2_PMU=y +CONFIG_QCOM_L3_PMU=y +CONFIG_QCOM_LLCC=m +CONFIG_QCOM_LMH=m +CONFIG_QCOM_MDT_LOADER=m +CONFIG_QCOM_MPM=m +CONFIG_QCOM_OCMEM=m +CONFIG_QCOM_PDC=y +CONFIG_QCOM_PDR_HELPERS=m +CONFIG_QCOM_PIL_INFO=m +CONFIG_QCOM_Q6V5_ADSP=m +CONFIG_QCOM_Q6V5_COMMON=m +CONFIG_QCOM_Q6V5_MSS=m +CONFIG_QCOM_Q6V5_PAS=m +CONFIG_QCOM_Q6V5_WCSS=m +CONFIG_QCOM_QDF2400_ERRATUM_0065=y +CONFIG_QCOM_QFPROM=m +CONFIG_QCOM_QMI_HELPERS=m +CONFIG_QCOM_RMTFS_MEM=m +CONFIG_QCOM_RPMCC=y +CONFIG_QCOM_RPMH=y +CONFIG_QCOM_RPMHPD=y +CONFIG_QCOM_RPMPD=m +CONFIG_QCOM_RPROC_COMMON=m +CONFIG_QCOM_SCM=y +# CONFIG_QCOM_SCM_DOWNLOAD_MODE_DEFAULT is not set +CONFIG_QCOM_SMD_RPM=m +CONFIG_QCOM_SMEM=m +CONFIG_QCOM_SMEM_STATE=y +CONFIG_QCOM_SMP2P=m +CONFIG_QCOM_SMSM=m +CONFIG_QCOM_SOCINFO=m +CONFIG_QCOM_SPM=y +CONFIG_QCOM_SPMI_ADC5=m +CONFIG_QCOM_SPMI_ADC_TM5=m +CONFIG_QCOM_SPMI_IADC=m +CONFIG_QCOM_SPMI_TEMP_ALARM=m +CONFIG_QCOM_SPMI_VADC=m +CONFIG_QCOM_SSC_BLOCK_BUS=y +CONFIG_QCOM_STATS=m +CONFIG_QCOM_SYSMON=m +CONFIG_QCOM_TSENS=m +CONFIG_QCOM_VADC_COMMON=m +CONFIG_QCOM_WCNSS_CTRL=m +# CONFIG_QCOM_WCNSS_PIL is not set +CONFIG_QCOM_WDT=m +CONFIG_QCS_GCC_404=m +CONFIG_QCS_Q6SSTOP_404=m +CONFIG_QCS_TURING_404=m +CONFIG_QED=m +CONFIG_QEDE=m +CONFIG_QEDF=m +CONFIG_QEDI=m +CONFIG_QED_FCOE=y +CONFIG_QED_ISCSI=y +CONFIG_QED_LL2=y +CONFIG_QED_OOO=y +CONFIG_QED_RDMA=y +CONFIG_QED_SRIOV=y +CONFIG_QE_TDM=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLCNIC_DCB=y +CONFIG_QLCNIC_HWMON=y +CONFIG_QLCNIC_SRIOV=y +CONFIG_QLGE=m +CONFIG_QNX4FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_QNX6FS_FS=m +CONFIG_QORIQ_CPUFREQ=m +CONFIG_QORIQ_THERMAL=m +CONFIG_QRTR=m +CONFIG_QRTR_MHI=m +CONFIG_QRTR_SMD=m +CONFIG_QRTR_TUN=m +CONFIG_QSEMI_PHY=m +CONFIG_QTNFMAC=m +CONFIG_QTNFMAC_PCIE=m +CONFIG_QUEUED_RWLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_QUICC_ENGINE=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_QUOTA_TREE=m +CONFIG_R6040=m +CONFIG_R8169=m +CONFIG_R8188EU=m +CONFIG_R8712U=m +CONFIG_RADIO_ADAPTERS=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_SHARK=m +CONFIG_RADIO_SHARK2=m +CONFIG_RADIO_SI470X=m +CONFIG_RADIO_SI4713=m +CONFIG_RADIO_SI476X=m +CONFIG_RADIO_TEA575X=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_RAID6_PQ=m +CONFIG_RAID6_PQ_BENCHMARK=y +CONFIG_RAID_ATTRS=m +# CONFIG_RANDOM32_SELFTEST is not set +CONFIG_RANDOMIZE_BASE=y +CONFIG_RANDOMIZE_KSTACK_OFFSET=y +CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT=y +CONFIG_RANDOMIZE_MEMORY=y +CONFIG_RANDOMIZE_MEMORY_PHYSICAL_PADDING=0xa +CONFIG_RANDOMIZE_MODULE_REGION_FULL=y +CONFIG_RANDOM_TRUST_BOOTLOADER=y +CONFIG_RANDOM_TRUST_CPU=y +CONFIG_RANDSTRUCT_NONE=y +CONFIG_RAPIDIO=y +CONFIG_RAPIDIO_CHMAN=m +CONFIG_RAPIDIO_CPS_GEN2=m +CONFIG_RAPIDIO_CPS_XX=m +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +CONFIG_RAPIDIO_DMA_ENGINE=y +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_ENUM_BASIC=m +CONFIG_RAPIDIO_MPORT_CDEV=m +CONFIG_RAPIDIO_RXS_GEN3=m +CONFIG_RAPIDIO_TSI721=m +CONFIG_RAS=y +CONFIG_RASPBERRYPI_FIRMWARE=y +CONFIG_RASPBERRYPI_POWER=y +CONFIG_RAS_CEC=y +# CONFIG_RAS_CEC_DEBUG is not set +CONFIG_RATIONAL=y +CONFIG_RAVB=m +CONFIG_RAVE_SP_CORE=m +CONFIG_RAVE_SP_EEPROM=m +CONFIG_RAVE_SP_WATCHDOG=m +# CONFIG_RBTREE_TEST is not set +CONFIG_RCAR_DMAC=m +CONFIG_RCAR_GEN3_THERMAL=m +CONFIG_RCAR_REMOTEPROC=m +CONFIG_RCAR_THERMAL=m +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_RCU_EXPERT is not set +CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0 +CONFIG_RCU_NEED_SEGCBLIST=y +# CONFIG_RCU_REF_SCALE_TEST is not set +# CONFIG_RCU_SCALE_TEST is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +CONFIG_RC_ATI_REMOTE=m +CONFIG_RC_CORE=m +CONFIG_RC_DECODERS=y +CONFIG_RC_DEVICES=y +CONFIG_RC_LOOPBACK=m +CONFIG_RC_MAP=m +CONFIG_RC_XBOX_DVD=m +CONFIG_RDMA_RXE=m +CONFIG_RDMA_SIW=m +CONFIG_RDS=m +# CONFIG_RDS_DEBUG is not set +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +CONFIG_RD_BZIP2=y +CONFIG_RD_GZIP=y +CONFIG_RD_LZ4=y +CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y +CONFIG_RD_XZ=y +CONFIG_RD_ZSTD=y +# CONFIG_READABLE_ASM is not set +# CONFIG_READ_ONLY_THP_FOR_FS is not set +CONFIG_REALTEK_AUTOPM=y +CONFIG_REALTEK_PHY=m +CONFIG_REBOOT_MODE=m +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_REED_SOLOMON_DEC8=y +CONFIG_REED_SOLOMON_ENC8=y +# CONFIG_REED_SOLOMON_TEST is not set +CONFIG_REGMAP=y +CONFIG_REGMAP_AC97=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_I3C=m +CONFIG_REGMAP_IRQ=y +CONFIG_REGMAP_MMIO=y +CONFIG_REGMAP_SCCB=m +CONFIG_REGMAP_SLIMBUS=m +CONFIG_REGMAP_SOUNDWIRE=m +CONFIG_REGMAP_SOUNDWIRE_MBQ=m +CONFIG_REGMAP_SPI=y +CONFIG_REGMAP_SPI_AVMM=m +CONFIG_REGMAP_SPMI=m +CONFIG_REGMAP_W1=m +CONFIG_REGULATOR=y +CONFIG_REGULATOR_88PG86X=m +CONFIG_REGULATOR_88PM800=m +CONFIG_REGULATOR_88PM8607=m +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_ACT8865=m +CONFIG_REGULATOR_ACT8945A=m +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_ANATOP=m +CONFIG_REGULATOR_ARIZONA_LDO1=m +CONFIG_REGULATOR_ARIZONA_MICSUPP=m +CONFIG_REGULATOR_ARM_SCMI=m +CONFIG_REGULATOR_AS3711=m +CONFIG_REGULATOR_AS3722=m +CONFIG_REGULATOR_ATC260X=m +CONFIG_REGULATOR_AXP20X=m +CONFIG_REGULATOR_BCM590XX=m +CONFIG_REGULATOR_BD71815=m +CONFIG_REGULATOR_BD71828=m +CONFIG_REGULATOR_BD718XX=m +CONFIG_REGULATOR_BD9571MWV=m +CONFIG_REGULATOR_BD957XMUF=m +CONFIG_REGULATOR_CPCAP=m +CONFIG_REGULATOR_CROS_EC=m +CONFIG_REGULATOR_DA903X=m +CONFIG_REGULATOR_DA9052=m +CONFIG_REGULATOR_DA9055=m +CONFIG_REGULATOR_DA9062=m +CONFIG_REGULATOR_DA9063=m +CONFIG_REGULATOR_DA9121=m +CONFIG_REGULATOR_DA9210=m +CONFIG_REGULATOR_DA9211=m +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FAN53555=m +CONFIG_REGULATOR_FAN53880=m +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_HI6421=m +CONFIG_REGULATOR_HI6421V530=m +CONFIG_REGULATOR_HI6421V600=m +CONFIG_REGULATOR_HI655X=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_ISL9305=m +CONFIG_REGULATOR_LM363X=m +CONFIG_REGULATOR_LOCHNAGAR=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_LP872X=m +CONFIG_REGULATOR_LP873X=m +CONFIG_REGULATOR_LP8755=m +CONFIG_REGULATOR_LP87565=m +CONFIG_REGULATOR_LP8788=m +CONFIG_REGULATOR_LTC3589=m +CONFIG_REGULATOR_LTC3676=m +CONFIG_REGULATOR_MAX14577=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX20086=m +CONFIG_REGULATOR_MAX77620=m +CONFIG_REGULATOR_MAX77650=m +CONFIG_REGULATOR_MAX77686=m +CONFIG_REGULATOR_MAX77693=m +CONFIG_REGULATOR_MAX77802=m +CONFIG_REGULATOR_MAX77826=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8893=m +CONFIG_REGULATOR_MAX8907=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8973=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MC13XXX_CORE=m +CONFIG_REGULATOR_MCP16502=m +CONFIG_REGULATOR_MP5416=m +CONFIG_REGULATOR_MP8859=m +CONFIG_REGULATOR_MP886X=m +CONFIG_REGULATOR_MPQ7920=m +CONFIG_REGULATOR_MT6311=m +CONFIG_REGULATOR_MT6315=m +CONFIG_REGULATOR_MT6323=m +CONFIG_REGULATOR_MT6358=m +CONFIG_REGULATOR_MT6359=m +CONFIG_REGULATOR_MT6360=m +CONFIG_REGULATOR_MT6380=m +CONFIG_REGULATOR_MT6397=m +CONFIG_REGULATOR_PALMAS=m +CONFIG_REGULATOR_PCA9450=m +CONFIG_REGULATOR_PCAP=m +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_PF8X00=m +CONFIG_REGULATOR_PFUZE100=m +CONFIG_REGULATOR_PV88060=m +CONFIG_REGULATOR_PV88080=m +CONFIG_REGULATOR_PV88090=m +CONFIG_REGULATOR_PWM=m +CONFIG_REGULATOR_QCOM_LABIBB=m +CONFIG_REGULATOR_QCOM_RPM=m +CONFIG_REGULATOR_QCOM_RPMH=m +CONFIG_REGULATOR_QCOM_SMD_RPM=m +CONFIG_REGULATOR_QCOM_SPMI=m +CONFIG_REGULATOR_QCOM_USB_VBUS=m +CONFIG_REGULATOR_RASPBERRYPI_TOUCHSCREEN_ATTINY=m +CONFIG_REGULATOR_RC5T583=m +CONFIG_REGULATOR_RK808=m +CONFIG_REGULATOR_RN5T618=m +CONFIG_REGULATOR_ROHM=m +CONFIG_REGULATOR_RT4801=m +CONFIG_REGULATOR_RT4831=m +CONFIG_REGULATOR_RT5033=m +CONFIG_REGULATOR_RT5190A=m +CONFIG_REGULATOR_RT5759=m +CONFIG_REGULATOR_RT6160=m +CONFIG_REGULATOR_RT6245=m +CONFIG_REGULATOR_RTMV20=m +CONFIG_REGULATOR_RTQ2134=m +CONFIG_REGULATOR_RTQ6752=m +CONFIG_REGULATOR_S2MPA01=m +CONFIG_REGULATOR_S2MPS11=m +CONFIG_REGULATOR_S5M8767=m +CONFIG_REGULATOR_SC2731=m +CONFIG_REGULATOR_SKY81452=m +CONFIG_REGULATOR_SLG51000=m +CONFIG_REGULATOR_STPMIC1=m +CONFIG_REGULATOR_SY7636A=m +CONFIG_REGULATOR_SY8106A=m +CONFIG_REGULATOR_SY8824X=m +CONFIG_REGULATOR_SY8827N=m +CONFIG_REGULATOR_TPS51632=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS62360=m +CONFIG_REGULATOR_TPS6286X=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS65086=m +CONFIG_REGULATOR_TPS65090=m +CONFIG_REGULATOR_TPS65132=m +CONFIG_REGULATOR_TPS65217=m +CONFIG_REGULATOR_TPS65218=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TPS68470=m +CONFIG_REGULATOR_TWL4030=m +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_VCTRL=m +CONFIG_REGULATOR_VEXPRESS=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_VQMMC_IPQ4019=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_REISERFS_FS_XATTR=y +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_RELAY=y +CONFIG_RELOCATABLE=y +CONFIG_REMOTEPROC=y +CONFIG_REMOTEPROC_CDEV=y +CONFIG_RENESAS_DMA=y +CONFIG_RENESAS_IRQC=y +CONFIG_RENESAS_OSTM=y +CONFIG_RENESAS_PHY=m +CONFIG_RENESAS_RPCIF=m +CONFIG_RENESAS_RZAWDT=m +CONFIG_RENESAS_RZG2LWDT=m +CONFIG_RENESAS_RZN1WDT=m +CONFIG_RENESAS_USB_DMAC=m +CONFIG_RENESAS_WDT=m +CONFIG_RESET_A10SR=m +CONFIG_RESET_ATTACK_MITIGATION=y +CONFIG_RESET_BERLIN=y +CONFIG_RESET_BRCMSTB=m +CONFIG_RESET_BRCMSTB_RESCAL=y +CONFIG_RESET_CONTROLLER=y +CONFIG_RESET_HISI=y +CONFIG_RESET_IMX7=y +CONFIG_RESET_MCHP_SPARX5=y +CONFIG_RESET_MESON=y +CONFIG_RESET_MESON_AUDIO_ARB=m +CONFIG_RESET_QCOM_AOSS=y +CONFIG_RESET_QCOM_PDC=m +CONFIG_RESET_RASPBERRYPI=m +CONFIG_RESET_RZG2L_USBPHY_CTRL=m +CONFIG_RESET_SCMI=m +CONFIG_RESET_SIMPLE=y +CONFIG_RESET_SUNXI=y +CONFIG_RESET_TEGRA_BPMP=y +CONFIG_RESET_TI_SCI=m +CONFIG_RESET_TI_SYSCON=m +CONFIG_RETHOOK=y +CONFIG_RETHUNK=y +CONFIG_RETPOLINE=y +CONFIG_RETU_WATCHDOG=m +CONFIG_RFD77402=m +CONFIG_RFD_FTL=m +CONFIG_RFKILL=y +CONFIG_RFKILL_GPIO=m +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFS_ACCEL=y +CONFIG_RING_BUFFER=y +# CONFIG_RING_BUFFER_BENCHMARK is not set +# CONFIG_RING_BUFFER_STARTUP_TEST is not set +# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set +CONFIG_RIONET=m +CONFIG_RIONET_RX_SIZE=128 +CONFIG_RIONET_TX_SIZE=128 +CONFIG_RMI4_2D_SENSOR=y +CONFIG_RMI4_CORE=m +CONFIG_RMI4_F03=y +CONFIG_RMI4_F03_SERIO=m +CONFIG_RMI4_F11=y +CONFIG_RMI4_F12=y +CONFIG_RMI4_F30=y +CONFIG_RMI4_F34=y +CONFIG_RMI4_F3A=y +CONFIG_RMI4_F54=y +CONFIG_RMI4_F55=y +CONFIG_RMI4_I2C=m +CONFIG_RMI4_SMB=m +CONFIG_RMI4_SPI=m +CONFIG_RMNET=m +CONFIG_RN5T618_ADC=m +CONFIG_RN5T618_POWER=m +CONFIG_RN5T618_WATCHDOG=m +CONFIG_ROCKCHIP_ANALOGIX_DP=y +CONFIG_ROCKCHIP_CDN_DP=y +CONFIG_ROCKCHIP_DTPM=m +CONFIG_ROCKCHIP_DW_HDMI=y +CONFIG_ROCKCHIP_DW_MIPI_DSI=y +CONFIG_ROCKCHIP_EFUSE=m +CONFIG_ROCKCHIP_GRF=y +CONFIG_ROCKCHIP_INNO_HDMI=y +CONFIG_ROCKCHIP_IODOMAIN=m +CONFIG_ROCKCHIP_IOMMU=y +CONFIG_ROCKCHIP_LVDS=y +CONFIG_ROCKCHIP_MBOX=y +CONFIG_ROCKCHIP_OTP=m +CONFIG_ROCKCHIP_PHY=m +CONFIG_ROCKCHIP_PM_DOMAINS=y +CONFIG_ROCKCHIP_RGB=y +CONFIG_ROCKCHIP_RK3066_HDMI=y +CONFIG_ROCKCHIP_SARADC=m +CONFIG_ROCKCHIP_THERMAL=m +CONFIG_ROCKCHIP_TIMER=y +CONFIG_ROCKCHIP_VOP=y +CONFIG_ROCKCHIP_VOP2=y +CONFIG_ROCKER=m +CONFIG_RODATA_FULL_DEFAULT_ENABLED=y +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROSE=m +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPMSG=m +CONFIG_RPMSG_CHAR=m +CONFIG_RPMSG_CTRL=m +CONFIG_RPMSG_MTK_SCP=m +CONFIG_RPMSG_NS=m +CONFIG_RPMSG_QCOM_GLINK=m +CONFIG_RPMSG_QCOM_GLINK_RPM=m +CONFIG_RPMSG_QCOM_GLINK_SMEM=m +CONFIG_RPMSG_QCOM_SMD=m +CONFIG_RPMSG_TTY=m +CONFIG_RPMSG_VIRTIO=m +CONFIG_RPMSG_WWAN_CTRL=m +CONFIG_RPR0521=m +CONFIG_RPS=y +CONFIG_RSEQ=y +CONFIG_RSI_91X=m +CONFIG_RSI_COEX=y +# CONFIG_RSI_DEBUGFS is not set +CONFIG_RSI_SDIO=m +CONFIG_RSI_USB=m +CONFIG_RST_RCAR=y +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT2500USB=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT3290=y +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +CONFIG_RT2800USB_RT3573=y +CONFIG_RT2800USB_RT35XX=y +CONFIG_RT2800USB_RT53XX=y +CONFIG_RT2800USB_RT55XX=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2800_LIB=m +CONFIG_RT2800_LIB_MMIO=m +CONFIG_RT2X00=m +# CONFIG_RT2X00_DEBUG is not set +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_CRYPTO=y +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_LEDS=y +CONFIG_RT2X00_LIB_MMIO=m +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT61PCI=m +CONFIG_RT73USB=m +CONFIG_RTC_CLASS=y +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_DRV_88PM80X=m +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_ABB5ZES3=m +CONFIG_RTC_DRV_ABEOZ9=m +CONFIG_RTC_DRV_ABX80X=m +CONFIG_RTC_DRV_ARMADA38X=m +CONFIG_RTC_DRV_AS3722=m +CONFIG_RTC_DRV_BD70528=m +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_BRCMSTB=m +CONFIG_RTC_DRV_CADENCE=m +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_CPCAP=m +CONFIG_RTC_DRV_CROS_EC=m +CONFIG_RTC_DRV_DA9052=m +CONFIG_RTC_DRV_DA9055=m +CONFIG_RTC_DRV_DA9063=m +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1302=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1307_CENTURY=y +CONFIG_RTC_DRV_DS1343=m +CONFIG_RTC_DRV_DS1347=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1374_WDT=y +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1685=y +CONFIG_RTC_DRV_DS1685_FAMILY=m +# CONFIG_RTC_DRV_DS1689 is not set +# CONFIG_RTC_DRV_DS17285 is not set +CONFIG_RTC_DRV_DS1742=m +# CONFIG_RTC_DRV_DS17485 is not set +# CONFIG_RTC_DRV_DS17885 is not set +CONFIG_RTC_DRV_DS2404=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3232_HWMON=y +CONFIG_RTC_DRV_EFI=y +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_FSL_FTM_ALARM=m +CONFIG_RTC_DRV_FTRTC010=m +CONFIG_RTC_DRV_GOLDFISH=m +CONFIG_RTC_DRV_HID_SENSOR_TIME=m +CONFIG_RTC_DRV_HYM8563=m +CONFIG_RTC_DRV_IMXDI=m +CONFIG_RTC_DRV_IMX_SC=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_ISL12026=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_LP8788=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_MAX6916=m +CONFIG_RTC_DRV_MAX77686=m +CONFIG_RTC_DRV_MAX8907=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8997=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MCP795=m +CONFIG_RTC_DRV_MESON_VRTC=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_MT2712=m +CONFIG_RTC_DRV_MT6397=m +CONFIG_RTC_DRV_MT7622=m +CONFIG_RTC_DRV_MV=y +CONFIG_RTC_DRV_MXC=m +CONFIG_RTC_DRV_MXC_V2=m +CONFIG_RTC_DRV_NTXEC=m +CONFIG_RTC_DRV_OPTEE=m +CONFIG_RTC_DRV_PALMAS=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_PCF2127=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_PCF85063=m +CONFIG_RTC_DRV_PCF8523=m +CONFIG_RTC_DRV_PCF85363=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_PL030=m +CONFIG_RTC_DRV_PL031=m +CONFIG_RTC_DRV_PM8XXX=m +CONFIG_RTC_DRV_R7301=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RC5T583=m +CONFIG_RTC_DRV_RC5T619=m +CONFIG_RTC_DRV_RK808=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_RTD119X=y +CONFIG_RTC_DRV_RV3028=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RV3029_HWMON=y +CONFIG_RTC_DRV_RV3032=m +CONFIG_RTC_DRV_RV8803=m +CONFIG_RTC_DRV_RX4581=m +CONFIG_RTC_DRV_RX6110=m +CONFIG_RTC_DRV_RX8010=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_S5M=m +CONFIG_RTC_DRV_SC27XX=m +CONFIG_RTC_DRV_SD3078=m +CONFIG_RTC_DRV_SH=m +CONFIG_RTC_DRV_SNVS=m +CONFIG_RTC_DRV_STK17TA8=m +CONFIG_RTC_DRV_SUN6I=y +CONFIG_RTC_DRV_TEGRA=m +# CONFIG_RTC_DRV_TEST is not set +CONFIG_RTC_DRV_TPS6586X=m +CONFIG_RTC_DRV_TPS65910=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WILCO_EC=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_XGENE=y +CONFIG_RTC_DRV_ZYNQMP=m +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_I2C_AND_SPI=y +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_LIB=y +CONFIG_RTC_MC146818_LIB=y +CONFIG_RTC_NVMEM=y +CONFIG_RTC_SYSTOHC=y +CONFIG_RTC_SYSTOHC_DEVICE="rtc0" +CONFIG_RTD119X_WATCHDOG=y +CONFIG_RTL8180=m +CONFIG_RTL8187=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL8188EE=m +CONFIG_RTL8192CE=m +CONFIG_RTL8192CU=m +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8192DE=m +CONFIG_RTL8192E=m +CONFIG_RTL8192EE=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192U=m +CONFIG_RTL8723AE=m +CONFIG_RTL8723BE=m +CONFIG_RTL8723BS=m +CONFIG_RTL8723_COMMON=m +CONFIG_RTL8821AE=m +CONFIG_RTL8XXXU=m +CONFIG_RTL8XXXU_UNTESTED=y +CONFIG_RTLBTCOEXIST=m +CONFIG_RTLLIB=m +CONFIG_RTLLIB_CRYPTO_CCMP=m +CONFIG_RTLLIB_CRYPTO_TKIP=m +CONFIG_RTLLIB_CRYPTO_WEP=m +CONFIG_RTLWIFI=m +# CONFIG_RTLWIFI_DEBUG is not set +CONFIG_RTLWIFI_PCI=m +CONFIG_RTLWIFI_USB=m +CONFIG_RTL_CARDS=m +CONFIG_RTS5208=m +CONFIG_RTW88=m +CONFIG_RTW88_8723D=m +CONFIG_RTW88_8723DE=m +CONFIG_RTW88_8821C=m +CONFIG_RTW88_8821CE=m +CONFIG_RTW88_8822B=m +CONFIG_RTW88_8822BE=m +CONFIG_RTW88_8822C=m +CONFIG_RTW88_8822CE=m +CONFIG_RTW88_CORE=m +CONFIG_RTW88_DEBUG=y +CONFIG_RTW88_DEBUGFS=y +CONFIG_RTW88_PCI=m +CONFIG_RTW89=m +CONFIG_RTW89_8852A=m +CONFIG_RTW89_8852AE=m +CONFIG_RTW89_8852C=m +CONFIG_RTW89_8852CE=m +CONFIG_RTW89_CORE=m +CONFIG_RTW89_DEBUG=y +CONFIG_RTW89_DEBUGFS=y +CONFIG_RTW89_DEBUGMSG=y +CONFIG_RTW89_PCI=m +# CONFIG_RT_GROUP_SCHED is not set +CONFIG_RT_MUTEXES=y +CONFIG_RUNTIME_TESTING_MENU=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_RXKAD=y +CONFIG_RZG2L_ADC=m +CONFIG_RZG2L_THERMAL=m +CONFIG_RZ_DMAC=m +CONFIG_S2IO=m +CONFIG_SAMPLES=y +# CONFIG_SAMPLE_AUXDISPLAY is not set +# CONFIG_SAMPLE_CONFIGFS is not set +# CONFIG_SAMPLE_FPROBE is not set +CONFIG_SAMPLE_FTRACE_DIRECT=m +# CONFIG_SAMPLE_FTRACE_DIRECT_MULTI is not set +# CONFIG_SAMPLE_HW_BREAKPOINT is not set +# CONFIG_SAMPLE_KDB is not set +# CONFIG_SAMPLE_KFIFO is not set +# CONFIG_SAMPLE_KOBJECT is not set +# CONFIG_SAMPLE_KPROBES is not set +# CONFIG_SAMPLE_LIVEPATCH is not set +# CONFIG_SAMPLE_QMI_CLIENT is not set +# CONFIG_SAMPLE_RPMSG_CLIENT is not set +CONFIG_SAMPLE_TRACE_ARRAY=m +# CONFIG_SAMPLE_TRACE_CUSTOM_EVENTS is not set +# CONFIG_SAMPLE_TRACE_EVENTS is not set +CONFIG_SAMPLE_TRACE_PRINTK=m +# CONFIG_SAMPLE_VFIO_MDEV_MBOCHS is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY is not set +# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set +# CONFIG_SAMPLE_VFIO_MDEV_MTTY is not set +# CONFIG_SAMPLE_WATCHDOG is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_Q10=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_AHCI=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_AHCI_SEATTLE=m +CONFIG_SATA_DWC=m +CONFIG_SATA_DWC_OLD_DMA=y +CONFIG_SATA_HOST=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_MOBILE_LPM_POLICY=3 +CONFIG_SATA_MV=m +CONFIG_SATA_NV=m +CONFIG_SATA_PMP=y +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_RCAR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SVW=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SATA_ZPODD=y +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_SBITMAP=y +CONFIG_SBP_TARGET=m +CONFIG_SC1200_WDT=m +CONFIG_SC27XX_ADC=m +CONFIG_SC27XX_EFUSE=m +CONFIG_SC92031=m +CONFIG_SCA3000=m +CONFIG_SCA3300=m +CONFIG_SCD30_CORE=m +CONFIG_SCD30_I2C=m +CONFIG_SCD30_SERIAL=m +CONFIG_SCD4X=m +# CONFIG_SCF_TORTURE_TEST is not set +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_CLUSTER=y +CONFIG_SCHED_CORE=y +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_HRTICK=y +CONFIG_SCHED_INFO=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_MC_PRIO=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_SCHED_SMT=y +CONFIG_SCHED_STACK_END_CHECK=y +CONFIG_SCHED_THERMAL_PRESSURE=y +CONFIG_SCHED_TRACER=y +CONFIG_SCR24X=m +CONFIG_SCSI=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_AM53C974=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_CHELSIO_FCOE=m +CONFIG_SCSI_COMMON=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_DH=y +CONFIG_SCSI_DH_ALUA=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_EFCT=m +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_ESAS2R=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_FDOMAIN=m +CONFIG_SCSI_FDOMAIN_PCI=m +CONFIG_SCSI_FLASHPOINT=y +CONFIG_SCSI_HISI_SAS=m +# CONFIG_SCSI_HISI_SAS_DEBUGFS_DEFAULT_ENABLE is not set +CONFIG_SCSI_HISI_SAS_PCI=m +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPR=m +CONFIG_SCSI_IPR_DUMP=y +CONFIG_SCSI_IPR_TRACE=y +CONFIG_SCSI_IPS=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_ISCSI_ATTRS=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_LOWLEVEL=y +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_MOD=y +CONFIG_SCSI_MPI3MR=m +CONFIG_SCSI_MPT2SAS=m +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MPT3SAS=m +CONFIG_SCSI_MPT3SAS_MAX_SGE=128 +CONFIG_SCSI_MVSAS=m +# CONFIG_SCSI_MVSAS_DEBUG is not set +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_MYRB=m +CONFIG_SCSI_MYRS=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SIM710=m +CONFIG_SCSI_SMARTPQI=m +CONFIG_SCSI_SNIC=m +# CONFIG_SCSI_SNIC_DEBUG_FS is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_UFSHCD=m +CONFIG_SCSI_UFSHCD_PCI=m +CONFIG_SCSI_UFSHCD_PLATFORM=m +CONFIG_SCSI_UFS_BSG=y +CONFIG_SCSI_UFS_CDNS_PLATFORM=m +CONFIG_SCSI_UFS_CRYPTO=y +CONFIG_SCSI_UFS_DWC_TC_PCI=m +CONFIG_SCSI_UFS_DWC_TC_PLATFORM=m +CONFIG_SCSI_UFS_HISI=m +CONFIG_SCSI_UFS_HPB=y +# CONFIG_SCSI_UFS_HWMON is not set +CONFIG_SCSI_UFS_MEDIATEK=m +CONFIG_SCSI_UFS_QCOM=m +CONFIG_SCSI_UFS_TI_J721E=m +CONFIG_SCSI_VIRTIO=m +CONFIG_SCSI_WD719X=m +CONFIG_SCTP_COOKIE_HMAC_MD5=y +CONFIG_SCTP_COOKIE_HMAC_SHA1=y +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5 is not set +# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set +CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1=y +CONFIG_SC_CAMCC_7180=m +CONFIG_SC_CAMCC_7280=m +CONFIG_SC_DISPCC_7180=m +CONFIG_SC_DISPCC_7280=m +CONFIG_SC_GCC_7180=m +CONFIG_SC_GCC_7280=m +CONFIG_SC_GCC_8180X=m +CONFIG_SC_GCC_8280XP=m +CONFIG_SC_GPUCC_7180=m +CONFIG_SC_GPUCC_7280=m +CONFIG_SC_LPASSCC_7280=m +CONFIG_SC_LPASS_CORECC_7180=m +CONFIG_SC_LPASS_CORECC_7280=m +CONFIG_SC_MSS_7180=m +CONFIG_SC_VIDEOCC_7180=m +CONFIG_SC_VIDEOCC_7280=m +CONFIG_SDIO_UART=m +# CONFIG_SDMA_VERBOSITY is not set +CONFIG_SDM_CAMCC_845=m +CONFIG_SDM_DISPCC_845=m +CONFIG_SDM_GCC_660=m +CONFIG_SDM_GCC_845=m +CONFIG_SDM_GPUCC_660=m +CONFIG_SDM_GPUCC_845=m +CONFIG_SDM_LPASSCC_845=m +CONFIG_SDM_MMCC_660=m +CONFIG_SDM_VIDEOCC_845=m +CONFIG_SDR_MAX2175=m +CONFIG_SDR_PLATFORM_DRIVERS=y +CONFIG_SDX_GCC_55=m +CONFIG_SDX_GCC_65=m +CONFIG_SD_ADC_MODULATOR=m +CONFIG_SECCOMP=y +# CONFIG_SECCOMP_CACHE_DEBUG is not set +CONFIG_SECCOMP_FILTER=y +CONFIG_SECONDARY_TRUSTED_KEYRING=y +CONFIG_SECRETMEM=y +CONFIG_SECTION_MISMATCH_WARN_ONLY=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_APPARMOR=y +# CONFIG_SECURITY_APPARMOR_DEBUG is not set +CONFIG_SECURITY_APPARMOR_EXPORT_BINARY=y +CONFIG_SECURITY_APPARMOR_HASH=y +CONFIG_SECURITY_APPARMOR_HASH_DEFAULT=y +CONFIG_SECURITY_APPARMOR_INTROSPECT_POLICY=y +CONFIG_SECURITY_APPARMOR_PARANOID_LOAD=y +CONFIG_SECURITY_APPARMOR_RESTRICT_USERNS=y +CONFIG_SECURITY_DMESG_RESTRICT=y +CONFIG_SECURITY_INFINIBAND=y +CONFIG_SECURITY_LANDLOCK=y +# CONFIG_SECURITY_LOADPIN is not set +CONFIG_SECURITY_LOCKDOWN_LSM=y +CONFIG_SECURITY_LOCKDOWN_LSM_EARLY=y +CONFIG_SECURITY_NETWORK=y +CONFIG_SECURITY_NETWORK_XFRM=y +CONFIG_SECURITY_PATH=y +CONFIG_SECURITY_PERF_EVENTS_RESTRICT=y +CONFIG_SECURITY_SAFESETID=y +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +# CONFIG_SECURITY_SELINUX_DISABLE is not set +CONFIG_SECURITY_SELINUX_SID2STR_CACHE_SIZE=256 +CONFIG_SECURITY_SELINUX_SIDTAB_HASH_BITS=9 +CONFIG_SECURITY_SMACK=y +CONFIG_SECURITY_SMACK_APPEND_SIGNALS=y +# CONFIG_SECURITY_SMACK_BRINGUP is not set +CONFIG_SECURITY_SMACK_NETFILTER=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +# CONFIG_SECURITY_TOMOYO_INSECURE_BUILTIN_SETTING is not set +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_YAMA=y +CONFIG_SENSEAIR_SUNRISE_CO2=m +CONFIG_SENSIRION_SGP30=m +CONFIG_SENSIRION_SGP40=m +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADC128D818=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM1177=m +CONFIG_SENSORS_ADM1266=m +CONFIG_SENSORS_ADM1275=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_ADT7310=m +CONFIG_SENSORS_ADT7410=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_ADT7X10=m +CONFIG_SENSORS_AHT10=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_AQUACOMPUTER_D5NEXT=m +CONFIG_SENSORS_ARM_SCMI=m +CONFIG_SENSORS_ARM_SCPI=m +CONFIG_SENSORS_AS370=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_ASPEED=m +CONFIG_SENSORS_ASUS_EC=m +CONFIG_SENSORS_ASUS_WMI=m +CONFIG_SENSORS_ATK0110=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_AXI_FAN_CONTROL=m +CONFIG_SENSORS_BEL_PFE=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_BPA_RS600=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_CORSAIR_CPRO=m +CONFIG_SENSORS_CORSAIR_PSU=m +CONFIG_SENSORS_DA9052_ADC=m +CONFIG_SENSORS_DA9055=m +CONFIG_SENSORS_DELL_SMM=m +CONFIG_SENSORS_DELTA_AHE50DC_FAN=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_DPS920AB=m +CONFIG_SENSORS_DRIVETEMP=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_FSP_3Y=m +CONFIG_SENSORS_FTSTEUTATES=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_G762=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_GSC=m +CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_HIH6130=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_HMC5843_I2C=m +CONFIG_SENSORS_HMC5843_SPI=m +CONFIG_SENSORS_I5500=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_IBM_CFFPS=m +CONFIG_SENSORS_IIO_HWMON=m +CONFIG_SENSORS_INA209=m +CONFIG_SENSORS_INA238=m +CONFIG_SENSORS_INA2XX=m +CONFIG_SENSORS_INA3221=m +CONFIG_SENSORS_INSPUR_IPSPS=m +CONFIG_SENSORS_INTEL_M10_BMC_HWMON=m +CONFIG_SENSORS_IR35221=m +CONFIG_SENSORS_IR36021=m +CONFIG_SENSORS_IR38064=m +CONFIG_SENSORS_IR38064_REGULATOR=y +CONFIG_SENSORS_IRPS5401=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_ISL29028=m +CONFIG_SENSORS_ISL68137=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_LM25066=m +CONFIG_SENSORS_LM25066_REGULATOR=y +CONFIG_SENSORS_LM3533=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95234=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_LOCHNAGAR=m +CONFIG_SENSORS_LTC2945=m +CONFIG_SENSORS_LTC2947=m +CONFIG_SENSORS_LTC2947_I2C=m +CONFIG_SENSORS_LTC2947_SPI=m +CONFIG_SENSORS_LTC2978=m +CONFIG_SENSORS_LTC2978_REGULATOR=y +CONFIG_SENSORS_LTC2990=m +CONFIG_SENSORS_LTC2992=m +CONFIG_SENSORS_LTC3815=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4222=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4260=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX127=m +CONFIG_SENSORS_MAX15301=m +CONFIG_SENSORS_MAX16064=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX16601=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX197=m +CONFIG_SENSORS_MAX20730=m +CONFIG_SENSORS_MAX20751=m +CONFIG_SENSORS_MAX31722=m +CONFIG_SENSORS_MAX31730=m +CONFIG_SENSORS_MAX31785=m +CONFIG_SENSORS_MAX31790=m +CONFIG_SENSORS_MAX34440=m +CONFIG_SENSORS_MAX6620=m +CONFIG_SENSORS_MAX6621=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MAX6697=m +CONFIG_SENSORS_MAX8688=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_MCP3021=m +CONFIG_SENSORS_MENF21BMC_HWMON=m +CONFIG_SENSORS_MLXREG_FAN=m +CONFIG_SENSORS_MP2888=m +CONFIG_SENSORS_MP2975=m +CONFIG_SENSORS_MP5023=m +CONFIG_SENSORS_MR75203=m +CONFIG_SENSORS_NCT6683=m +CONFIG_SENSORS_NCT6775=m +CONFIG_SENSORS_NCT6775_CORE=m +CONFIG_SENSORS_NCT6775_I2C=m +CONFIG_SENSORS_NCT7802=m +CONFIG_SENSORS_NCT7904=m +CONFIG_SENSORS_NPCM7XX=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_NZXT_KRAKEN2=m +CONFIG_SENSORS_NZXT_SMART2=m +# CONFIG_SENSORS_OCC_P8_I2C is not set +# CONFIG_SENSORS_OCC_P9_SBE is not set +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_PECI=m +CONFIG_SENSORS_PECI_CPUTEMP=m +CONFIG_SENSORS_PECI_DIMMTEMP=m +CONFIG_SENSORS_PIM4328=m +CONFIG_SENSORS_PLI1209BC=m +CONFIG_SENSORS_PLI1209BC_REGULATOR=y +CONFIG_SENSORS_PM6764TR=m +CONFIG_SENSORS_PMBUS=m +CONFIG_SENSORS_POWR1220=m +CONFIG_SENSORS_PWM_FAN=m +CONFIG_SENSORS_PXE1610=m +CONFIG_SENSORS_Q54SJ108A2=m +CONFIG_SENSORS_RASPBERRYPI_HWMON=m +CONFIG_SENSORS_RM3100=m +CONFIG_SENSORS_RM3100_I2C=m +CONFIG_SENSORS_RM3100_SPI=m +CONFIG_SENSORS_SBRMI=m +CONFIG_SENSORS_SBTSI=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SHT3x=m +CONFIG_SENSORS_SHT4x=m +CONFIG_SENSORS_SHTC1=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SL28CPLD=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SPARX5=m +CONFIG_SENSORS_STPDDC60=m +CONFIG_SENSORS_STTS751=m +CONFIG_SENSORS_SY7636A=m +CONFIG_SENSORS_TC654=m +CONFIG_SENSORS_TC74=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP103=m +CONFIG_SENSORS_TMP108=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TMP464=m +CONFIG_SENSORS_TMP513=m +CONFIG_SENSORS_TPS23861=m +CONFIG_SENSORS_TPS40422=m +CONFIG_SENSORS_TPS53679=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_TSL2563=m +CONFIG_SENSORS_UCD9000=m +CONFIG_SENSORS_UCD9200=m +CONFIG_SENSORS_VEXPRESS=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83773G=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SENSORS_XDPE122=m +CONFIG_SENSORS_XDPE122_REGULATOR=y +CONFIG_SENSORS_XDPE152=m +CONFIG_SENSORS_XGENE=m +CONFIG_SENSORS_ZL6100=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_16550A_VARIANTS=y +CONFIG_SERIAL_8250_ASPEED_VUART=m +# CONFIG_SERIAL_8250_BCM2835AUX is not set +CONFIG_SERIAL_8250_BCM7271=m +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_CS=m +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_DMA=y +CONFIG_SERIAL_8250_DWLIB=y +# CONFIG_SERIAL_8250_EM is not set +CONFIG_SERIAL_8250_EXAR=m +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_FINTEK=y +CONFIG_SERIAL_8250_FSL=y +CONFIG_SERIAL_8250_LPSS=m +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_MEN_MCB=m +CONFIG_SERIAL_8250_MID=y +CONFIG_SERIAL_8250_MT6577=y +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_OMAP=y +CONFIG_SERIAL_8250_OMAP_TTYO_FIXUP=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_PERICOM=m +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_RT288X=y +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_TEGRA=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_AMBA_PL010=m +CONFIG_SERIAL_AMBA_PL011=y +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_SERIAL_ARC=m +CONFIG_SERIAL_ARC_NR_PORTS=1 +CONFIG_SERIAL_BCM63XX=m +CONFIG_SERIAL_CONEXANT_DIGICOLOR=m +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y +CONFIG_SERIAL_EARLYCON=y +CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST=y +CONFIG_SERIAL_FSL_LINFLEXUART=m +CONFIG_SERIAL_FSL_LPUART=m +CONFIG_SERIAL_IMX=y +CONFIG_SERIAL_IMX_CONSOLE=y +# CONFIG_SERIAL_IMX_EARLYCON is not set +CONFIG_SERIAL_IPOCTAL=m +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_KGDB_NMI=y +CONFIG_SERIAL_LANTIQ=m +CONFIG_SERIAL_LITEUART=m +CONFIG_SERIAL_LITEUART_MAX_PORTS=1 +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX310X=y +CONFIG_SERIAL_MCTRL_GPIO=y +CONFIG_SERIAL_MEN_Z135=m +CONFIG_SERIAL_MESON=y +CONFIG_SERIAL_MESON_CONSOLE=y +CONFIG_SERIAL_MSM=y +CONFIG_SERIAL_MSM_CONSOLE=y +CONFIG_SERIAL_MULTI_INSTANTIATE=m +CONFIG_SERIAL_MVEBU_CONSOLE=y +CONFIG_SERIAL_MVEBU_UART=y +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_OF_PLATFORM=y +CONFIG_SERIAL_OWL=y +CONFIG_SERIAL_OWL_CONSOLE=y +CONFIG_SERIAL_QCOM_GENI=m +CONFIG_SERIAL_QCOM_GENI_CONSOLE=y +CONFIG_SERIAL_QE=m +CONFIG_SERIAL_RP2=m +CONFIG_SERIAL_RP2_NR_UARTS=32 +CONFIG_SERIAL_SAMSUNG=m +CONFIG_SERIAL_SAMSUNG_CONSOLE=y +CONFIG_SERIAL_SAMSUNG_UARTS=4 +CONFIG_SERIAL_SAMSUNG_UARTS_4=y +CONFIG_SERIAL_SC16IS7XX=m +CONFIG_SERIAL_SC16IS7XX_CORE=m +CONFIG_SERIAL_SC16IS7XX_I2C=y +CONFIG_SERIAL_SC16IS7XX_SPI=y +CONFIG_SERIAL_SCCNXP=y +CONFIG_SERIAL_SCCNXP_CONSOLE=y +CONFIG_SERIAL_SH_SCI=m +CONFIG_SERIAL_SH_SCI_DMA=y +CONFIG_SERIAL_SH_SCI_NR_UARTS=2 +CONFIG_SERIAL_SIFIVE=m +CONFIG_SERIAL_SPRD=m +CONFIG_SERIAL_TEGRA=m +CONFIG_SERIAL_TEGRA_TCU=y +CONFIG_SERIAL_TEGRA_TCU_CONSOLE=y +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_UARTLITE_NR_UARTS=1 +CONFIG_SERIAL_XILINX_PS_UART=m +CONFIG_SERIO=y +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_AMBAKMI=m +CONFIG_SERIO_APBPS2=m +CONFIG_SERIO_ARC_PS2=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_GPIO_PS2=m +CONFIG_SERIO_I8042=y +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_NVEC_PS2=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_RAW=m +CONFIG_SERIO_SERPORT=m +# CONFIG_SERIO_SUN4I_PS2 is not set +CONFIG_SETEND_EMULATION=y +CONFIG_SEV_GUEST=m +CONFIG_SFC=m +CONFIG_SFC_FALCON=m +CONFIG_SFC_FALCON_MTD=y +CONFIG_SFC_MCDI_LOGGING=y +CONFIG_SFC_MCDI_MON=y +CONFIG_SFC_MTD=y +CONFIG_SFC_SIENA=m +CONFIG_SFC_SIENA_MCDI_LOGGING=y +CONFIG_SFC_SIENA_MCDI_MON=y +CONFIG_SFC_SIENA_MTD=y +CONFIG_SFC_SIENA_SRIOV=y +CONFIG_SFC_SRIOV=y +CONFIG_SFP=m +CONFIG_SF_PDMA=m +CONFIG_SGETMASK_SYSCALL=y +CONFIG_SGI_GRU=m +# CONFIG_SGI_GRU_DEBUG is not set +CONFIG_SGI_PARTITION=y +CONFIG_SGI_XP=m +CONFIG_SGL_ALLOC=y +CONFIG_SG_POOL=y +CONFIG_SG_SPLIT=y +CONFIG_SHIFT_FS=m +CONFIG_SHIFT_FS_POSIX_ACL=y +CONFIG_SHMEM=y +CONFIG_SHUFFLE_PAGE_ALLOCATOR=y +CONFIG_SH_ETH=m +CONFIG_SH_TIMER_CMT=y +CONFIG_SH_TIMER_TMU=y +CONFIG_SI1133=m +CONFIG_SI1145=m +CONFIG_SI7005=m +CONFIG_SI7020=m +CONFIG_SIEMENS_SIMATIC_IPC=m +CONFIG_SIEMENS_SIMATIC_IPC_WDT=m +CONFIG_SIGNALFD=y +CONFIG_SIGNATURE=y +CONFIG_SIGNED_PE_FILE_VERIFICATION=y +CONFIG_SIOX=m +CONFIG_SIOX_BUS_GPIO=m +CONFIG_SIS190=m +CONFIG_SIS900=m +CONFIG_SKB_EXTENSIONS=y +CONFIG_SKFP=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +CONFIG_SL28CPLD_WATCHDOG=m +# CONFIG_SLAB is not set +CONFIG_SLAB_FREELIST_HARDENED=y +CONFIG_SLAB_FREELIST_RANDOM=y +CONFIG_SLAB_MERGE_DEFAULT=y +CONFIG_SLHC=y +CONFIG_SLICOSS=m +CONFIG_SLIC_DS26522=m +CONFIG_SLIMBUS=m +CONFIG_SLIM_QCOM_CTRL=m +CONFIG_SLIM_QCOM_NGD_CTRL=m +CONFIG_SLIP=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_SLIP_SMART=y +# CONFIG_SLOB is not set +CONFIG_SLS=y +CONFIG_SLUB=y +CONFIG_SLUB_CPU_PARTIAL=y +CONFIG_SLUB_DEBUG=y +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_SMBFS_COMMON=m +CONFIG_SMB_SERVER=m +CONFIG_SMB_SERVER_CHECK_CAP_NET_ADMIN=y +CONFIG_SMB_SERVER_KERBEROS5=y +CONFIG_SMB_SERVER_SMBDIRECT=y +CONFIG_SMC=m +CONFIG_SMC91X=y +CONFIG_SMC_DIAG=m +CONFIG_SMP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC911X=m +CONFIG_SMSC9420=m +CONFIG_SMSC_PHY=m +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMS_SDIO_DRV=m +CONFIG_SMS_SIANO_DEBUGFS=y +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_SIANO_RC=y +CONFIG_SMS_USB_DRV=m +CONFIG_SM_CAMCC_8250=m +CONFIG_SM_DISPCC_6125=m +CONFIG_SM_DISPCC_6350=m +CONFIG_SM_DISPCC_8250=m +CONFIG_SM_FTL=m +CONFIG_SM_GCC_6115=m +CONFIG_SM_GCC_6125=m +CONFIG_SM_GCC_6350=m +CONFIG_SM_GCC_8150=m +CONFIG_SM_GCC_8250=m +CONFIG_SM_GCC_8350=m +CONFIG_SM_GCC_8450=m +CONFIG_SM_GPUCC_6350=m +CONFIG_SM_GPUCC_8150=m +CONFIG_SM_GPUCC_8250=m +CONFIG_SM_VIDEOCC_8150=m +CONFIG_SM_VIDEOCC_8250=m +CONFIG_SND=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_AD1889=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALOOP=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_AMD_ACP_CONFIG=m +CONFIG_SND_AMD_ASOC_RENOIR=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_ATMEL_SOC=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AUDIO_GRAPH_CARD=m +CONFIG_SND_AUDIO_GRAPH_CARD2=m +CONFIG_SND_AUDIO_GRAPH_CARD2_CUSTOM_SAMPLE=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BCD2000=m +CONFIG_SND_BCM2835=m +CONFIG_SND_BCM2835_SOC_I2S=m +CONFIG_SND_BCM63XX_I2S_WHISTLER=m +CONFIG_SND_BEBOB=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_COMPRESS_OFFLOAD=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CTL_LED=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DESIGNWARE_I2S=m +CONFIG_SND_DESIGNWARE_PCM=y +CONFIG_SND_DICE=m +CONFIG_SND_DMAENGINE_PCM=m +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_DUMMY=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_ECHO3G=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FIREFACE=m +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_DIGI00X=m +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_FIREWIRE_MOTU=m +CONFIG_SND_FIREWIRE_TASCAM=m +CONFIG_SND_FIREWORKS=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_GINA20=m +CONFIG_SND_GINA24=m +CONFIG_SND_HDA=m +CONFIG_SND_HDA_ALIGNED_MMIO=y +CONFIG_SND_HDA_CODEC_ANALOG=m +CONFIG_SND_HDA_CODEC_CA0110=m +CONFIG_SND_HDA_CODEC_CA0132=m +CONFIG_SND_HDA_CODEC_CA0132_DSP=y +CONFIG_SND_HDA_CODEC_CIRRUS=m +CONFIG_SND_HDA_CODEC_CMEDIA=m +CONFIG_SND_HDA_CODEC_CONEXANT=m +CONFIG_SND_HDA_CODEC_CS8409=m +CONFIG_SND_HDA_CODEC_HDMI=m +CONFIG_SND_HDA_CODEC_REALTEK=m +CONFIG_SND_HDA_CODEC_SI3054=m +CONFIG_SND_HDA_CODEC_SIGMATEL=m +CONFIG_SND_HDA_CODEC_VIA=m +CONFIG_SND_HDA_COMPONENT=y +CONFIG_SND_HDA_CORE=m +CONFIG_SND_HDA_CS_DSP_CONTROLS=m +# CONFIG_SND_HDA_CTL_DEV_ID is not set +CONFIG_SND_HDA_DSP_LOADER=y +CONFIG_SND_HDA_EXT_CORE=m +CONFIG_SND_HDA_GENERIC=m +CONFIG_SND_HDA_GENERIC_LEDS=y +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_I915=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=1 +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDA_SCODEC_CS35L41=m +CONFIG_SND_HDA_SCODEC_CS35L41_I2C=m +CONFIG_SND_HDA_SCODEC_CS35L41_SPI=m +CONFIG_SND_HDA_TEGRA=m +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_HRTIMER=m +CONFIG_SND_HWDEP=m +CONFIG_SND_I2S_HI6210_I2S=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_IMX_SOC=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_INTEL_BYT_PREFER_SOF=y +CONFIG_SND_INTEL_DSP_CONFIG=m +CONFIG_SND_INTEL_NHLT=y +CONFIG_SND_INTEL_SOUNDWIRE_ACPI=m +CONFIG_SND_ISIGHT=m +CONFIG_SND_JACK=y +CONFIG_SND_JACK_INPUT_DEV=y +CONFIG_SND_KIRKWOOD_SOC=m +CONFIG_SND_KIRKWOOD_SOC_ARMADA370_DB=m +CONFIG_SND_KORG1212=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +CONFIG_SND_MAX_CARDS=32 +CONFIG_SND_MESON_AIU=m +CONFIG_SND_MESON_AXG_FIFO=m +CONFIG_SND_MESON_AXG_FRDDR=m +CONFIG_SND_MESON_AXG_PDM=m +CONFIG_SND_MESON_AXG_SOUND_CARD=m +CONFIG_SND_MESON_AXG_SPDIFIN=m +CONFIG_SND_MESON_AXG_SPDIFOUT=m +CONFIG_SND_MESON_AXG_TDMIN=m +CONFIG_SND_MESON_AXG_TDMOUT=m +CONFIG_SND_MESON_AXG_TDM_FORMATTER=m +CONFIG_SND_MESON_AXG_TDM_INTERFACE=m +CONFIG_SND_MESON_AXG_TODDR=m +CONFIG_SND_MESON_CARD_UTILS=m +CONFIG_SND_MESON_CODEC_GLUE=m +CONFIG_SND_MESON_G12A_TOACODEC=m +CONFIG_SND_MESON_G12A_TOHDMITX=m +CONFIG_SND_MESON_GX_SOUND_CARD=m +CONFIG_SND_MIA=m +CONFIG_SND_MIXART=m +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_MONA=m +CONFIG_SND_MPU401=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_OXFW=m +CONFIG_SND_OXYGEN=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_PCI=y +CONFIG_SND_PCM=m +CONFIG_SND_PCMCIA=y +CONFIG_SND_PCM_ELD=y +CONFIG_SND_PCM_IEC958=y +# CONFIG_SND_PCM_OSS is not set +CONFIG_SND_PCM_TIMER=y +CONFIG_SND_PCSP=m +CONFIG_SND_PCXHR=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_PROC_FS=y +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SEQUENCER=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_DEVICE=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SEQ_MIDI=m +CONFIG_SND_SEQ_MIDI_EMUL=m +CONFIG_SND_SEQ_MIDI_EVENT=m +CONFIG_SND_SEQ_VIRMIDI=m +CONFIG_SND_SERIAL_GENERIC=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SIMPLE_CARD=m +CONFIG_SND_SIMPLE_CARD_UTILS=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_AC97_BUS=y +CONFIG_SND_SOC_AC97_CODEC=m +CONFIG_SND_SOC_ACPI=m +CONFIG_SND_SOC_ACPI_INTEL_MATCH=m +CONFIG_SND_SOC_ADAU1372=m +CONFIG_SND_SOC_ADAU1372_I2C=m +CONFIG_SND_SOC_ADAU1372_SPI=m +CONFIG_SND_SOC_ADAU1701=m +CONFIG_SND_SOC_ADAU1761=m +CONFIG_SND_SOC_ADAU1761_I2C=m +CONFIG_SND_SOC_ADAU1761_SPI=m +CONFIG_SND_SOC_ADAU17X1=m +CONFIG_SND_SOC_ADAU7002=m +CONFIG_SND_SOC_ADAU7118=m +CONFIG_SND_SOC_ADAU7118_HW=m +CONFIG_SND_SOC_ADAU7118_I2C=m +CONFIG_SND_SOC_ADAU_UTILS=m +CONFIG_SND_SOC_ADI=m +CONFIG_SND_SOC_ADI_AXI_I2S=m +CONFIG_SND_SOC_ADI_AXI_SPDIF=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4118=m +CONFIG_SND_SOC_AK4375=m +CONFIG_SND_SOC_AK4458=m +CONFIG_SND_SOC_AK4554=m +CONFIG_SND_SOC_AK4613=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK5386=m +CONFIG_SND_SOC_AK5558=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_ALC5632=m +CONFIG_SND_SOC_AMD_ACP=m +CONFIG_SND_SOC_AMD_ACP3x=m +CONFIG_SND_SOC_AMD_ACP5x=m +CONFIG_SND_SOC_AMD_ACP6x=m +CONFIG_SND_SOC_AMD_ACP_COMMON=m +CONFIG_SND_SOC_AMD_ACP_I2S=m +CONFIG_SND_SOC_AMD_ACP_PCI=m +CONFIG_SND_SOC_AMD_ACP_PCM=m +CONFIG_SND_SOC_AMD_ACP_PDM=m +CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH=m +CONFIG_SND_SOC_AMD_CZ_RT5645_MACH=m +CONFIG_SND_SOC_AMD_LEGACY_MACH=m +CONFIG_SND_SOC_AMD_MACH_COMMON=m +CONFIG_SND_SOC_AMD_PS=m +CONFIG_SND_SOC_AMD_PS_MACH=m +CONFIG_SND_SOC_AMD_RENOIR=m +CONFIG_SND_SOC_AMD_RENOIR_MACH=m +CONFIG_SND_SOC_AMD_RV_RT5682_MACH=m +CONFIG_SND_SOC_AMD_SOF_MACH=m +CONFIG_SND_SOC_AMD_VANGOGH_MACH=m +CONFIG_SND_SOC_AMD_YC_MACH=m +CONFIG_SND_SOC_APQ8016_SBC=m +CONFIG_SND_SOC_ARIZONA=m +CONFIG_SND_SOC_AW8738=m +CONFIG_SND_SOC_BD28623=m +CONFIG_SND_SOC_BT_SCO=m +CONFIG_SND_SOC_COMPRESS=y +CONFIG_SND_SOC_CPCAP=m +CONFIG_SND_SOC_CROS_EC_CODEC=m +CONFIG_SND_SOC_CS35L32=m +CONFIG_SND_SOC_CS35L33=m +CONFIG_SND_SOC_CS35L34=m +CONFIG_SND_SOC_CS35L35=m +CONFIG_SND_SOC_CS35L36=m +CONFIG_SND_SOC_CS35L41=m +CONFIG_SND_SOC_CS35L41_I2C=m +CONFIG_SND_SOC_CS35L41_LIB=m +CONFIG_SND_SOC_CS35L41_SPI=m +CONFIG_SND_SOC_CS35L45=m +CONFIG_SND_SOC_CS35L45_I2C=m +CONFIG_SND_SOC_CS35L45_SPI=m +CONFIG_SND_SOC_CS35L45_TABLES=m +CONFIG_SND_SOC_CS4234=m +CONFIG_SND_SOC_CS4265=m +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS4271_I2C=m +CONFIG_SND_SOC_CS4271_SPI=m +CONFIG_SND_SOC_CS42L42=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CS42L51_I2C=m +CONFIG_SND_SOC_CS42L52=m +CONFIG_SND_SOC_CS42L56=m +CONFIG_SND_SOC_CS42L73=m +CONFIG_SND_SOC_CS42XX8=m +CONFIG_SND_SOC_CS42XX8_I2C=m +CONFIG_SND_SOC_CS43130=m +CONFIG_SND_SOC_CS4341=m +CONFIG_SND_SOC_CS4349=m +CONFIG_SND_SOC_CS53L30=m +CONFIG_SND_SOC_CX2072X=m +CONFIG_SND_SOC_DA7213=m +CONFIG_SND_SOC_DA7219=m +CONFIG_SND_SOC_DAVINCI_MCASP=m +CONFIG_SND_SOC_DMIC=m +CONFIG_SND_SOC_ES7134=m +CONFIG_SND_SOC_ES7241=m +CONFIG_SND_SOC_ES8316=m +CONFIG_SND_SOC_ES8328=m +CONFIG_SND_SOC_ES8328_I2C=m +CONFIG_SND_SOC_ES8328_SPI=m +CONFIG_SND_SOC_FSL_ASOC_CARD=m +CONFIG_SND_SOC_FSL_ASRC=m +CONFIG_SND_SOC_FSL_AUD2HTX=m +CONFIG_SND_SOC_FSL_AUDMIX=m +CONFIG_SND_SOC_FSL_EASRC=m +CONFIG_SND_SOC_FSL_ESAI=m +CONFIG_SND_SOC_FSL_MICFIL=m +CONFIG_SND_SOC_FSL_MQS=m +CONFIG_SND_SOC_FSL_RPMSG=m +CONFIG_SND_SOC_FSL_SAI=m +CONFIG_SND_SOC_FSL_SPDIF=m +CONFIG_SND_SOC_FSL_SSI=m +CONFIG_SND_SOC_FSL_XCVR=m +CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y +CONFIG_SND_SOC_GTM601=m +CONFIG_SND_SOC_HDAC_HDA=m +CONFIG_SND_SOC_HDAC_HDMI=m +CONFIG_SND_SOC_HDMI_CODEC=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_ICS43432=m +CONFIG_SND_SOC_IMG=y +CONFIG_SND_SOC_IMG_I2S_IN=m +CONFIG_SND_SOC_IMG_I2S_OUT=m +CONFIG_SND_SOC_IMG_PARALLEL_OUT=m +CONFIG_SND_SOC_IMG_PISTACHIO_INTERNAL_DAC=m +CONFIG_SND_SOC_IMG_SPDIF_IN=m +CONFIG_SND_SOC_IMG_SPDIF_OUT=m +CONFIG_SND_SOC_IMX_AUDIO_RPMSG=m +CONFIG_SND_SOC_IMX_AUDMIX=m +CONFIG_SND_SOC_IMX_AUDMUX=m +CONFIG_SND_SOC_IMX_CARD=m +CONFIG_SND_SOC_IMX_ES8328=m +CONFIG_SND_SOC_IMX_HDMI=m +CONFIG_SND_SOC_IMX_PCM_DMA=m +CONFIG_SND_SOC_IMX_PCM_RPMSG=m +CONFIG_SND_SOC_IMX_RPMSG=m +CONFIG_SND_SOC_IMX_SGTL5000=m +CONFIG_SND_SOC_IMX_SPDIF=m +CONFIG_SND_SOC_INNO_RK3036=m +CONFIG_SND_SOC_INTEL_APL=m +CONFIG_SND_SOC_INTEL_AVS=m +CONFIG_SND_SOC_INTEL_BDW_RT5650_MACH=m +CONFIG_SND_SOC_INTEL_BDW_RT5677_MACH=m +CONFIG_SND_SOC_INTEL_BROADWELL_MACH=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_COMMON=m +CONFIG_SND_SOC_INTEL_BXT_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_BXT_RT298_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5640_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_RT5651_MACH=m +CONFIG_SND_SOC_INTEL_BYTCR_WM5102_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_CX2072X_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_DA7213_MACH=m +CONFIG_SND_SOC_INTEL_BYT_CHT_ES8316_MACH=m +# CONFIG_SND_SOC_INTEL_BYT_CHT_NOCODEC_MACH is not set +CONFIG_SND_SOC_INTEL_CATPT=m +# CONFIG_SND_SOC_INTEL_CFL is not set +CONFIG_SND_SOC_INTEL_CHT_BSW_MAX98090_TI_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_NAU8824_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5645_MACH=m +CONFIG_SND_SOC_INTEL_CHT_BSW_RT5672_MACH=m +# CONFIG_SND_SOC_INTEL_CML_H is not set +# CONFIG_SND_SOC_INTEL_CML_LP is not set +CONFIG_SND_SOC_INTEL_CML_LP_DA7219_MAX98357A_MACH=m +# CONFIG_SND_SOC_INTEL_CNL is not set +CONFIG_SND_SOC_INTEL_DA7219_MAX98357A_GENERIC=m +CONFIG_SND_SOC_INTEL_EHL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_GLK=m +CONFIG_SND_SOC_INTEL_GLK_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_GLK_RT5682_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_HASWELL_MACH=m +CONFIG_SND_SOC_INTEL_HDA_DSP_COMMON=m +CONFIG_SND_SOC_INTEL_KBL=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_KBL_DA7219_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5660_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KBL_RT5663_RT5514_MAX98927_MACH=m +CONFIG_SND_SOC_INTEL_KEEMBAY=m +CONFIG_SND_SOC_INTEL_MACH=y +CONFIG_SND_SOC_INTEL_SKL=m +CONFIG_SND_SOC_INTEL_SKL_HDA_DSP_GENERIC_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_MAX98357A_MACH=m +CONFIG_SND_SOC_INTEL_SKL_NAU88L25_SSM4567_MACH=m +CONFIG_SND_SOC_INTEL_SKL_RT286_MACH=m +# CONFIG_SND_SOC_INTEL_SKYLAKE is not set +CONFIG_SND_SOC_INTEL_SKYLAKE_COMMON=m +CONFIG_SND_SOC_INTEL_SKYLAKE_FAMILY=m +CONFIG_SND_SOC_INTEL_SKYLAKE_HDAUDIO_CODEC=y +CONFIG_SND_SOC_INTEL_SKYLAKE_SSP_CLK=m +CONFIG_SND_SOC_INTEL_SOF_CIRRUS_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_CML_RT1011_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_CS42L42_MACH=m +CONFIG_SND_SOC_INTEL_SOF_DA7219_MAX98373_MACH=m +CONFIG_SND_SOC_INTEL_SOF_ES8336_MACH=m +CONFIG_SND_SOC_INTEL_SOF_MAXIM_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_NAU8825_MACH=m +CONFIG_SND_SOC_INTEL_SOF_PCM512x_MACH=m +CONFIG_SND_SOC_INTEL_SOF_REALTEK_COMMON=m +CONFIG_SND_SOC_INTEL_SOF_RT5682_MACH=m +CONFIG_SND_SOC_INTEL_SOF_SSP_AMP_MACH=m +CONFIG_SND_SOC_INTEL_SOF_WM8804_MACH=m +CONFIG_SND_SOC_INTEL_SOUNDWIRE_SOF_MACH=m +CONFIG_SND_SOC_INTEL_SST=m +CONFIG_SND_SOC_INTEL_SST_TOPLEVEL=y +CONFIG_SND_SOC_INTEL_USER_FRIENDLY_LONG_NAMES=y +CONFIG_SND_SOC_J721E_EVM=m +CONFIG_SND_SOC_LOCHNAGAR_SC=m +CONFIG_SND_SOC_LPASS_APQ8016=m +CONFIG_SND_SOC_LPASS_CDC_DMA=m +CONFIG_SND_SOC_LPASS_CPU=m +CONFIG_SND_SOC_LPASS_HDMI=m +CONFIG_SND_SOC_LPASS_IPQ806X=m +CONFIG_SND_SOC_LPASS_MACRO_COMMON=m +CONFIG_SND_SOC_LPASS_PLATFORM=m +CONFIG_SND_SOC_LPASS_RX_MACRO=m +CONFIG_SND_SOC_LPASS_SC7180=m +CONFIG_SND_SOC_LPASS_SC7280=m +CONFIG_SND_SOC_LPASS_TX_MACRO=m +CONFIG_SND_SOC_LPASS_VA_MACRO=m +CONFIG_SND_SOC_LPASS_WSA_MACRO=m +CONFIG_SND_SOC_MAX9759=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98090=m +CONFIG_SND_SOC_MAX98357A=m +CONFIG_SND_SOC_MAX98373=m +CONFIG_SND_SOC_MAX98373_I2C=m +CONFIG_SND_SOC_MAX98373_SDW=m +CONFIG_SND_SOC_MAX98390=m +CONFIG_SND_SOC_MAX98396=m +CONFIG_SND_SOC_MAX98504=m +CONFIG_SND_SOC_MAX98520=m +CONFIG_SND_SOC_MAX9860=m +CONFIG_SND_SOC_MAX9867=m +CONFIG_SND_SOC_MAX98927=m +CONFIG_SND_SOC_MEDIATEK=m +CONFIG_SND_SOC_MESON_T9015=m +CONFIG_SND_SOC_MIKROE_PROTO=m +CONFIG_SND_SOC_MSM8916_WCD_ANALOG=m +CONFIG_SND_SOC_MSM8916_WCD_DIGITAL=m +CONFIG_SND_SOC_MSM8996=m +# CONFIG_SND_SOC_MT2701 is not set +CONFIG_SND_SOC_MT6351=m +CONFIG_SND_SOC_MT6358=m +CONFIG_SND_SOC_MT6359=m +CONFIG_SND_SOC_MT6359_ACCDET=m +CONFIG_SND_SOC_MT6660=m +CONFIG_SND_SOC_MT6797=m +CONFIG_SND_SOC_MT6797_MT6351=m +# CONFIG_SND_SOC_MT8173 is not set +CONFIG_SND_SOC_MT8183=m +CONFIG_SND_SOC_MT8183_DA7219_MAX98357A=m +CONFIG_SND_SOC_MT8183_MT6358_TS3A227E_MAX98357A=m +CONFIG_SND_SOC_MT8192=m +CONFIG_SND_SOC_MT8192_MT6359_RT1015_RT5682=m +CONFIG_SND_SOC_MT8195=m +CONFIG_SND_SOC_MT8195_MT6359=m +CONFIG_SND_SOC_MTK_BTCVSD=m +CONFIG_SND_SOC_NAU8315=m +CONFIG_SND_SOC_NAU8540=m +CONFIG_SND_SOC_NAU8810=m +CONFIG_SND_SOC_NAU8821=m +CONFIG_SND_SOC_NAU8822=m +CONFIG_SND_SOC_NAU8824=m +CONFIG_SND_SOC_NAU8825=m +CONFIG_SND_SOC_PCM1681=m +CONFIG_SND_SOC_PCM1789=m +CONFIG_SND_SOC_PCM1789_I2C=m +CONFIG_SND_SOC_PCM179X=m +CONFIG_SND_SOC_PCM179X_I2C=m +CONFIG_SND_SOC_PCM179X_SPI=m +CONFIG_SND_SOC_PCM186X=m +CONFIG_SND_SOC_PCM186X_I2C=m +CONFIG_SND_SOC_PCM186X_SPI=m +CONFIG_SND_SOC_PCM3060=m +CONFIG_SND_SOC_PCM3060_I2C=m +CONFIG_SND_SOC_PCM3060_SPI=m +CONFIG_SND_SOC_PCM3168A=m +CONFIG_SND_SOC_PCM3168A_I2C=m +CONFIG_SND_SOC_PCM3168A_SPI=m +CONFIG_SND_SOC_PCM5102A=m +CONFIG_SND_SOC_PCM512x=m +CONFIG_SND_SOC_PCM512x_I2C=m +CONFIG_SND_SOC_PCM512x_SPI=m +CONFIG_SND_SOC_QCOM=m +CONFIG_SND_SOC_QCOM_COMMON=m +CONFIG_SND_SOC_QDSP6=m +CONFIG_SND_SOC_QDSP6_ADM=m +CONFIG_SND_SOC_QDSP6_AFE=m +CONFIG_SND_SOC_QDSP6_AFE_CLOCKS=m +CONFIG_SND_SOC_QDSP6_AFE_DAI=m +CONFIG_SND_SOC_QDSP6_APM=m +CONFIG_SND_SOC_QDSP6_APM_DAI=m +CONFIG_SND_SOC_QDSP6_APM_LPASS_DAI=m +CONFIG_SND_SOC_QDSP6_ASM=m +CONFIG_SND_SOC_QDSP6_ASM_DAI=m +CONFIG_SND_SOC_QDSP6_COMMON=m +CONFIG_SND_SOC_QDSP6_CORE=m +CONFIG_SND_SOC_QDSP6_PRM=m +CONFIG_SND_SOC_QDSP6_PRM_LPASS_CLOCKS=m +CONFIG_SND_SOC_QDSP6_ROUTING=m +CONFIG_SND_SOC_RCAR=m +CONFIG_SND_SOC_RK3288_HDMI_ANALOG=m +CONFIG_SND_SOC_RK3328=m +CONFIG_SND_SOC_RK3399_GRU_SOUND=m +CONFIG_SND_SOC_RK817=m +CONFIG_SND_SOC_RL6231=m +CONFIG_SND_SOC_RL6347A=m +CONFIG_SND_SOC_ROCKCHIP=m +CONFIG_SND_SOC_ROCKCHIP_I2S=m +CONFIG_SND_SOC_ROCKCHIP_I2S_TDM=m +CONFIG_SND_SOC_ROCKCHIP_MAX98090=m +CONFIG_SND_SOC_ROCKCHIP_PDM=m +CONFIG_SND_SOC_ROCKCHIP_RT5645=m +CONFIG_SND_SOC_ROCKCHIP_SPDIF=m +CONFIG_SND_SOC_RT1011=m +CONFIG_SND_SOC_RT1015=m +CONFIG_SND_SOC_RT1015P=m +CONFIG_SND_SOC_RT1019=m +CONFIG_SND_SOC_RT1308=m +CONFIG_SND_SOC_RT1308_SDW=m +CONFIG_SND_SOC_RT1316_SDW=m +CONFIG_SND_SOC_RT286=m +CONFIG_SND_SOC_RT298=m +CONFIG_SND_SOC_RT5514=m +CONFIG_SND_SOC_RT5514_SPI=m +CONFIG_SND_SOC_RT5616=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_RT5640=m +CONFIG_SND_SOC_RT5645=m +CONFIG_SND_SOC_RT5651=m +CONFIG_SND_SOC_RT5659=m +CONFIG_SND_SOC_RT5660=m +CONFIG_SND_SOC_RT5663=m +CONFIG_SND_SOC_RT5670=m +CONFIG_SND_SOC_RT5677=m +CONFIG_SND_SOC_RT5677_SPI=m +CONFIG_SND_SOC_RT5682=m +CONFIG_SND_SOC_RT5682S=m +CONFIG_SND_SOC_RT5682_I2C=m +CONFIG_SND_SOC_RT5682_SDW=m +CONFIG_SND_SOC_RT700=m +CONFIG_SND_SOC_RT700_SDW=m +CONFIG_SND_SOC_RT711=m +CONFIG_SND_SOC_RT711_SDCA_SDW=m +CONFIG_SND_SOC_RT711_SDW=m +CONFIG_SND_SOC_RT715=m +CONFIG_SND_SOC_RT715_SDCA_SDW=m +CONFIG_SND_SOC_RT715_SDW=m +CONFIG_SND_SOC_RT9120=m +CONFIG_SND_SOC_RZ=m +CONFIG_SND_SOC_SC7180=m +CONFIG_SND_SOC_SC7280=m +CONFIG_SND_SOC_SDM845=m +CONFIG_SND_SOC_SDW_MOCKUP=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SH4_FSI=m +CONFIG_SND_SOC_SI476X=m +CONFIG_SND_SOC_SIGMADSP=m +CONFIG_SND_SOC_SIGMADSP_I2C=m +CONFIG_SND_SOC_SIGMADSP_REGMAP=m +CONFIG_SND_SOC_SIMPLE_AMPLIFIER=m +CONFIG_SND_SOC_SIMPLE_MUX=m +CONFIG_SND_SOC_SM8250=m +CONFIG_SND_SOC_SOF=m +CONFIG_SND_SOC_SOF_ACPI=m +CONFIG_SND_SOC_SOF_ACPI_DEV=m +CONFIG_SND_SOC_SOF_ALDERLAKE=m +CONFIG_SND_SOC_SOF_AMD_COMMON=m +CONFIG_SND_SOC_SOF_AMD_RENOIR=m +CONFIG_SND_SOC_SOF_AMD_TOPLEVEL=m +CONFIG_SND_SOC_SOF_APOLLOLAKE=m +CONFIG_SND_SOC_SOF_BAYTRAIL=m +CONFIG_SND_SOC_SOF_BROADWELL=m +CONFIG_SND_SOC_SOF_CANNONLAKE=m +CONFIG_SND_SOC_SOF_CLIENT=m +CONFIG_SND_SOC_SOF_COFFEELAKE=m +CONFIG_SND_SOC_SOF_COMETLAKE=m +CONFIG_SND_SOC_SOF_COMPRESS=y +CONFIG_SND_SOC_SOF_DEBUG_PROBES=m +# CONFIG_SND_SOC_SOF_DEVELOPER_SUPPORT is not set +CONFIG_SND_SOC_SOF_ELKHARTLAKE=m +CONFIG_SND_SOC_SOF_GEMINILAKE=m +CONFIG_SND_SOC_SOF_HDA=m +CONFIG_SND_SOC_SOF_HDA_AUDIO_CODEC=y +CONFIG_SND_SOC_SOF_HDA_COMMON=m +CONFIG_SND_SOC_SOF_HDA_LINK=y +CONFIG_SND_SOC_SOF_HDA_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_HDA_PROBES=m +CONFIG_SND_SOC_SOF_ICELAKE=m +CONFIG_SND_SOC_SOF_IMX8=m +CONFIG_SND_SOC_SOF_IMX8M=m +CONFIG_SND_SOC_SOF_IMX_COMMON=m +CONFIG_SND_SOC_SOF_IMX_TOPLEVEL=y +CONFIG_SND_SOC_SOF_INTEL_APL=m +CONFIG_SND_SOC_SOF_INTEL_ATOM_HIFI_EP=m +CONFIG_SND_SOC_SOF_INTEL_CNL=m +CONFIG_SND_SOC_SOF_INTEL_COMMON=m +CONFIG_SND_SOC_SOF_INTEL_HIFI_EP_IPC=m +CONFIG_SND_SOC_SOF_INTEL_ICL=m +CONFIG_SND_SOC_SOF_INTEL_MTL=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE=m +CONFIG_SND_SOC_SOF_INTEL_SOUNDWIRE_LINK_BASELINE=m +CONFIG_SND_SOC_SOF_INTEL_TGL=m +CONFIG_SND_SOC_SOF_INTEL_TOPLEVEL=y +CONFIG_SND_SOC_SOF_JASPERLAKE=m +CONFIG_SND_SOC_SOF_MERRIFIELD=m +CONFIG_SND_SOC_SOF_METEORLAKE=m +CONFIG_SND_SOC_SOF_MT8186=m +CONFIG_SND_SOC_SOF_MT8195=m +CONFIG_SND_SOC_SOF_MTK_COMMON=m +CONFIG_SND_SOC_SOF_MTK_TOPLEVEL=y +CONFIG_SND_SOC_SOF_OF=m +CONFIG_SND_SOC_SOF_OF_DEV=m +CONFIG_SND_SOC_SOF_PCI=m +CONFIG_SND_SOC_SOF_PCI_DEV=m +CONFIG_SND_SOC_SOF_PROBE_WORK_QUEUE=y +CONFIG_SND_SOC_SOF_TIGERLAKE=m +CONFIG_SND_SOC_SOF_TOPLEVEL=y +CONFIG_SND_SOC_SOF_XTENSA=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SPRD=m +CONFIG_SND_SOC_SPRD_MCDT=m +CONFIG_SND_SOC_SSM2305=m +CONFIG_SND_SOC_SSM2518=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_SSM2602_I2C=m +CONFIG_SND_SOC_SSM2602_SPI=m +CONFIG_SND_SOC_SSM4567=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_STA350=m +CONFIG_SND_SOC_STI_SAS=m +CONFIG_SND_SOC_STORM=m +CONFIG_SND_SOC_TAS2552=m +CONFIG_SND_SOC_TAS2562=m +CONFIG_SND_SOC_TAS2764=m +CONFIG_SND_SOC_TAS2770=m +CONFIG_SND_SOC_TAS5086=m +CONFIG_SND_SOC_TAS571X=m +CONFIG_SND_SOC_TAS5720=m +CONFIG_SND_SOC_TAS5805M=m +CONFIG_SND_SOC_TAS6424=m +CONFIG_SND_SOC_TDA7419=m +CONFIG_SND_SOC_TEGRA=m +CONFIG_SND_SOC_TEGRA186_ASRC=m +CONFIG_SND_SOC_TEGRA186_DSPK=m +CONFIG_SND_SOC_TEGRA20_AC97=m +CONFIG_SND_SOC_TEGRA20_DAS=m +CONFIG_SND_SOC_TEGRA20_I2S=m +CONFIG_SND_SOC_TEGRA20_SPDIF=m +CONFIG_SND_SOC_TEGRA210_ADMAIF=m +CONFIG_SND_SOC_TEGRA210_ADX=m +CONFIG_SND_SOC_TEGRA210_AHUB=m +CONFIG_SND_SOC_TEGRA210_AMX=m +CONFIG_SND_SOC_TEGRA210_DMIC=m +CONFIG_SND_SOC_TEGRA210_I2S=m +CONFIG_SND_SOC_TEGRA210_MIXER=m +CONFIG_SND_SOC_TEGRA210_MVC=m +CONFIG_SND_SOC_TEGRA210_SFC=m +CONFIG_SND_SOC_TEGRA30_AHUB=m +CONFIG_SND_SOC_TEGRA30_I2S=m +CONFIG_SND_SOC_TEGRA_ALC5632=m +CONFIG_SND_SOC_TEGRA_AUDIO_GRAPH_CARD=m +CONFIG_SND_SOC_TEGRA_MACHINE_DRV=m +CONFIG_SND_SOC_TEGRA_MAX98090=m +CONFIG_SND_SOC_TEGRA_RT5640=m +CONFIG_SND_SOC_TEGRA_RT5677=m +CONFIG_SND_SOC_TEGRA_SGTL5000=m +CONFIG_SND_SOC_TEGRA_TRIMSLICE=m +CONFIG_SND_SOC_TEGRA_WM8753=m +CONFIG_SND_SOC_TEGRA_WM8903=m +CONFIG_SND_SOC_TEGRA_WM9712=m +CONFIG_SND_SOC_TFA9879=m +CONFIG_SND_SOC_TFA989X=m +CONFIG_SND_SOC_TI_EDMA_PCM=m +CONFIG_SND_SOC_TI_SDMA_PCM=m +CONFIG_SND_SOC_TI_UDMA_PCM=m +CONFIG_SND_SOC_TLV320ADC3XXX=m +CONFIG_SND_SOC_TLV320ADCX140=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC23_I2C=m +CONFIG_SND_SOC_TLV320AIC23_SPI=m +CONFIG_SND_SOC_TLV320AIC31XX=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC32X4_I2C=m +CONFIG_SND_SOC_TLV320AIC32X4_SPI=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320AIC3X_I2C=m +CONFIG_SND_SOC_TLV320AIC3X_SPI=m +CONFIG_SND_SOC_TOPOLOGY=y +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_TS3A227E=m +CONFIG_SND_SOC_TSCS42XX=m +CONFIG_SND_SOC_TSCS454=m +CONFIG_SND_SOC_UDA1334=m +CONFIG_SND_SOC_WCD9335=m +CONFIG_SND_SOC_WCD934X=m +CONFIG_SND_SOC_WCD938X=m +CONFIG_SND_SOC_WCD938X_SDW=m +CONFIG_SND_SOC_WCD_MBHC=m +CONFIG_SND_SOC_WM5102=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8524=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8731_I2C=m +CONFIG_SND_SOC_WM8731_SPI=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8804_I2C=m +CONFIG_SND_SOC_WM8804_SPI=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8940=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_WM8994=m +CONFIG_SND_SOC_WM9712=m +CONFIG_SND_SOC_WM_ADSP=m +CONFIG_SND_SOC_WM_HUBS=m +CONFIG_SND_SOC_WSA881X=m +CONFIG_SND_SOC_XILINX_AUDIO_FORMATTER=m +CONFIG_SND_SOC_XILINX_I2S=m +CONFIG_SND_SOC_XILINX_SPDIF=m +CONFIG_SND_SOC_XTFPGA_I2S=m +CONFIG_SND_SOC_ZL38060=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SPI=y +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_ACPI=m +CONFIG_SND_SST_ATOM_HIFI2_PLATFORM_PCI=m +# CONFIG_SND_SUN4I_CODEC is not set +# CONFIG_SND_SUN4I_I2S is not set +# CONFIG_SND_SUN4I_SPDIF is not set +CONFIG_SND_SUN50I_CODEC_ANALOG=m +CONFIG_SND_SUN8I_ADDA_PR_REGMAP=m +CONFIG_SND_SUN8I_CODEC=m +CONFIG_SND_SUN8I_CODEC_ANALOG=m +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_SYNTH_EMUX=m +CONFIG_SND_TEST_COMPONENT=m +CONFIG_SND_TIMER=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_AUDIO_USE_MEDIA_CONTROLLER=y +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_HIFACE=m +CONFIG_SND_USB_LINE6=m +CONFIG_SND_USB_POD=m +CONFIG_SND_USB_PODHD=m +CONFIG_SND_USB_TONEPORT=m +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_VARIAX=m +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_VERBOSE_PROCFS=y +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_VIRTIO=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VMASTER=y +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_X86=y +CONFIG_SND_XEN_FRONTEND=m +CONFIG_SND_YMFPCI=m +CONFIG_SNI_NETSEC=m +CONFIG_SOCFPGA_FPGA_BRIDGE=m +CONFIG_SOCIONEXT_SYNQUACER_PREITS=y +CONFIG_SOCK_CGROUP_DATA=y +CONFIG_SOCK_RX_QUEUE_MAPPING=y +CONFIG_SOCK_VALIDATE_XMIT=y +CONFIG_SOC_BRCMSTB=y +CONFIG_SOC_BUS=y +CONFIG_SOC_IMX8M=y +CONFIG_SOC_RENESAS=y +CONFIG_SOC_TEGRA_FLOWCTRL=y +CONFIG_SOC_TEGRA_FUSE=y +CONFIG_SOC_TEGRA_PMC=y +CONFIG_SOC_TEGRA_POWERGATE_BPMP=y +CONFIG_SOC_TI=y +CONFIG_SOFTLOCKUP_DETECTOR=y +CONFIG_SOFT_WATCHDOG=m +CONFIG_SOFT_WATCHDOG_PRETIMEOUT=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_FF=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUND=m +CONFIG_SOUNDWIRE=m +CONFIG_SOUNDWIRE_CADENCE=m +CONFIG_SOUNDWIRE_GENERIC_ALLOCATION=m +CONFIG_SOUNDWIRE_INTEL=m +CONFIG_SOUNDWIRE_QCOM=m +CONFIG_SOUND_OSS_CORE=y +# CONFIG_SOUND_OSS_CORE_PRECLAIM is not set +CONFIG_SP5100_TCO=m +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPARX5_SWITCH=m +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPECULATION_MITIGATIONS=y +CONFIG_SPI=y +CONFIG_SPI_ALTERA=m +CONFIG_SPI_ALTERA_CORE=m +CONFIG_SPI_ALTERA_DFL=m +CONFIG_SPI_AMD=m +CONFIG_SPI_ARMADA_3700=m +CONFIG_SPI_AX88796C=m +# CONFIG_SPI_AX88796C_COMPRESSION is not set +CONFIG_SPI_AXI_SPI_ENGINE=m +CONFIG_SPI_BCM2835=m +CONFIG_SPI_BCM2835AUX=m +CONFIG_SPI_BCM_QSPI=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +CONFIG_SPI_CADENCE=m +CONFIG_SPI_CADENCE_QUADSPI=m +CONFIG_SPI_CADENCE_XSPI=m +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_DESIGNWARE=m +CONFIG_SPI_DLN2=m +CONFIG_SPI_DW_DMA=y +CONFIG_SPI_DW_MMIO=m +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_DYNAMIC=y +CONFIG_SPI_FSI=m +CONFIG_SPI_FSL_DSPI=m +CONFIG_SPI_FSL_LIB=y +CONFIG_SPI_FSL_LPSPI=m +CONFIG_SPI_FSL_QUADSPI=m +CONFIG_SPI_FSL_SPI=y +CONFIG_SPI_GPIO=m +CONFIG_SPI_HISI_KUNPENG=m +CONFIG_SPI_HISI_SFC=m +CONFIG_SPI_HISI_SFC_V3XX=m +CONFIG_SPI_IMX=m +CONFIG_SPI_INTEL=m +CONFIG_SPI_INTEL_PCI=m +CONFIG_SPI_INTEL_PLATFORM=m +CONFIG_SPI_LANTIQ_SSC=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_LOOPBACK_TEST=m +CONFIG_SPI_MASTER=y +CONFIG_SPI_MEM=y +CONFIG_SPI_MESON_SPICC=m +CONFIG_SPI_MESON_SPIFC=m +CONFIG_SPI_MT65XX=m +CONFIG_SPI_MTK_NOR=m +CONFIG_SPI_MTK_SNFI=m +CONFIG_SPI_MUX=m +CONFIG_SPI_MXIC=m +CONFIG_SPI_NXP_FLEXSPI=m +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_OMAP24XX=y +CONFIG_SPI_ORION=m +CONFIG_SPI_PL022=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_PXA2XX_PCI=m +CONFIG_SPI_QCOM_GENI=m +CONFIG_SPI_QCOM_QSPI=m +CONFIG_SPI_QUP=m +CONFIG_SPI_ROCKCHIP=m +CONFIG_SPI_ROCKCHIP_SFC=m +CONFIG_SPI_RPCIF=m +CONFIG_SPI_RSPI=m +CONFIG_SPI_SC18IS602=m +CONFIG_SPI_SH_HSPI=m +CONFIG_SPI_SH_MSIOF=m +CONFIG_SPI_SIFIVE=m +CONFIG_SPI_SLAVE=y +CONFIG_SPI_SLAVE_MT27XX=m +CONFIG_SPI_SLAVE_SYSTEM_CONTROL=m +CONFIG_SPI_SLAVE_TIME=m +CONFIG_SPI_SPIDEV=m +CONFIG_SPI_SPRD=m +CONFIG_SPI_SPRD_ADI=m +# CONFIG_SPI_SUN4I is not set +CONFIG_SPI_SUN6I=m +CONFIG_SPI_SYNQUACER=m +CONFIG_SPI_TEGRA114=m +CONFIG_SPI_TEGRA20_SFLASH=m +CONFIG_SPI_TEGRA20_SLINK=m +CONFIG_SPI_TEGRA210_QUAD=m +CONFIG_SPI_THUNDERX=m +CONFIG_SPI_TLE62X0=m +CONFIG_SPI_XCOMM=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPI_XLP=m +CONFIG_SPI_ZYNQMP_GQSPI=m +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_SPMI=m +CONFIG_SPMI_HISI3670=m +CONFIG_SPMI_MSM_PMIC_ARB=m +CONFIG_SPMI_MTK_PMIF=m +CONFIG_SPMI_PMIC_CLKDIV=m +CONFIG_SPRD_COMMON_CLK=m +CONFIG_SPRD_DMA=m +CONFIG_SPRD_EFUSE=m +CONFIG_SPRD_IOMMU=m +CONFIG_SPRD_MBOX=m +CONFIG_SPRD_SC9860_CLK=m +CONFIG_SPRD_SC9863A_CLK=m +CONFIG_SPRD_THERMAL=m +CONFIG_SPRD_TIMER=y +CONFIG_SPRD_WATCHDOG=m +CONFIG_SPS30=m +CONFIG_SPS30_I2C=m +CONFIG_SPS30_SERIAL=m +CONFIG_SQUASHFS=y +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_DECOMP_MULTI is not set +CONFIG_SQUASHFS_DECOMP_MULTI_PERCPU=y +# CONFIG_SQUASHFS_DECOMP_SINGLE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +# CONFIG_SQUASHFS_FILE_CACHE is not set +CONFIG_SQUASHFS_FILE_DIRECT=y +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_SQUASHFS_LZ4=y +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SQUASHFS_ZSTD=y +CONFIG_SRAM=y +CONFIG_SRCU=y +CONFIG_SRF04=m +CONFIG_SRF08=m +CONFIG_SSB=m +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_BLOCKIO=y +CONFIG_SSB_DRIVER_GPIO=y +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +CONFIG_SSB_SPROM=y +CONFIG_SSFDC=m +CONFIG_STACKDEPOT=y +CONFIG_STACKPROTECTOR=y +CONFIG_STACKPROTECTOR_PER_TASK=y +CONFIG_STACKPROTECTOR_STRONG=y +CONFIG_STACKTRACE=y +# CONFIG_STACKTRACE_BUILD_ID is not set +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STACK_HASH_ORDER=20 +CONFIG_STACK_TRACER=y +CONFIG_STACK_VALIDATION=y +CONFIG_STAGING=y +# CONFIG_STAGING_BOARD is not set +CONFIG_STAGING_MEDIA=y +# CONFIG_STATIC_CALL_SELFTEST is not set +# CONFIG_STATIC_KEYS_SELFTEST is not set +# CONFIG_STATIC_USERMODEHELPER is not set +CONFIG_STE10XP=m +CONFIG_STK3310=m +CONFIG_STK8312=m +CONFIG_STK8BA50=m +CONFIG_STM=m +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_PCI=m +CONFIG_STMMAC_PLATFORM=m +# CONFIG_STMMAC_SELFTESTS is not set +CONFIG_STMPE_ADC=m +CONFIG_STMPE_I2C=y +CONFIG_STMPE_SPI=y +CONFIG_STMP_DEVICE=y +CONFIG_STM_DUMMY=m +CONFIG_STM_PROTO_BASIC=m +CONFIG_STM_PROTO_SYS_T=m +CONFIG_STM_SOURCE_CONSOLE=m +CONFIG_STM_SOURCE_FTRACE=m +CONFIG_STM_SOURCE_HEARTBEAT=m +CONFIG_STP=m +CONFIG_STPMIC1_WATCHDOG=m +CONFIG_STREAM_PARSER=y +CONFIG_STRICT_DEVMEM=y +CONFIG_STRICT_KERNEL_RWX=y +CONFIG_STRICT_MODULE_RWX=y +# CONFIG_STRICT_SIGALTSTACK_SIZE is not set +# CONFIG_STRING_SELFTEST is not set +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_STUB_CLK_HI3660=y +CONFIG_STUB_CLK_HI6220=y +CONFIG_STX104=m +CONFIG_ST_UVIS25=m +CONFIG_ST_UVIS25_I2C=m +CONFIG_ST_UVIS25_SPI=m +# CONFIG_SUN4I_EMAC is not set +# CONFIG_SUN4I_GPADC is not set +CONFIG_SUN4I_TIMER=y +CONFIG_SUN50I_A100_CCU=y +CONFIG_SUN50I_A100_R_CCU=y +CONFIG_SUN50I_A64_CCU=y +CONFIG_SUN50I_DE2_BUS=y +CONFIG_SUN50I_ERRATUM_UNKNOWN1=y +CONFIG_SUN50I_H616_CCU=y +CONFIG_SUN50I_H6_CCU=y +CONFIG_SUN50I_H6_R_CCU=y +CONFIG_SUN50I_IOMMU=y +CONFIG_SUN6I_MSGBOX=y +CONFIG_SUN6I_RTC_CCU=m +CONFIG_SUN6I_R_INTC=y +CONFIG_SUN8I_DE2_CCU=y +CONFIG_SUN8I_H3_CCU=y +CONFIG_SUN8I_R_CCU=y +CONFIG_SUN8I_THERMAL=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_SUNGEM=m +CONFIG_SUNGEM_PHY=m +CONFIG_SUNRPC=m +CONFIG_SUNRPC_BACKCHANNEL=y +CONFIG_SUNRPC_DEBUG=y +CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES=y +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_SWAP=y +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUNXI_CCU=y +CONFIG_SUNXI_MBUS=y +CONFIG_SUNXI_NMI_INTC=y +CONFIG_SUNXI_RSB=m +CONFIG_SUNXI_SRAM=y +CONFIG_SUNXI_WATCHDOG=m +CONFIG_SUN_PARTITION=y +CONFIG_SURFACE3_WMI=m +CONFIG_SURFACE_ACPI_NOTIFY=m +CONFIG_SURFACE_AGGREGATOR=m +CONFIG_SURFACE_AGGREGATOR_BUS=y +CONFIG_SURFACE_AGGREGATOR_CDEV=m +# CONFIG_SURFACE_AGGREGATOR_ERROR_INJECTION is not set +CONFIG_SURFACE_AGGREGATOR_REGISTRY=m +CONFIG_SURFACE_DTX=m +CONFIG_SURFACE_GPE=m +CONFIG_SURFACE_HID=m +CONFIG_SURFACE_HID_CORE=m +CONFIG_SURFACE_HOTPLUG=m +CONFIG_SURFACE_KBD=m +CONFIG_SURFACE_PLATFORMS=y +CONFIG_SURFACE_PLATFORM_PROFILE=m +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +# CONFIG_SUSPEND_SKIP_SYNC is not set +CONFIG_SVC_I3C_MASTER=m +CONFIG_SWAP=y +CONFIG_SWIOTLB=y +CONFIG_SWIOTLB_XEN=y +CONFIG_SWPHY=y +CONFIG_SWP_EMULATION=y +CONFIG_SW_SYNC=y +CONFIG_SX9310=m +CONFIG_SX9324=m +CONFIG_SX9360=m +CONFIG_SX9500=m +CONFIG_SXGBE_ETH=m +CONFIG_SX_COMMON=m +CONFIG_SYMBOLIC_ERRNAME=y +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYNC_FILE=y +CONFIG_SYNTH_EVENTS=y +# CONFIG_SYNTH_EVENT_GEN_TEST is not set +CONFIG_SYN_COOKIES=y +CONFIG_SYSCON_REBOOT_MODE=m +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +CONFIG_SYSC_R8A774A1=y +CONFIG_SYSC_R8A774B1=y +CONFIG_SYSC_R8A774C0=y +CONFIG_SYSC_R8A774E1=y +CONFIG_SYSC_R8A7795=y +CONFIG_SYSC_R8A77960=y +CONFIG_SYSC_R8A77961=y +CONFIG_SYSC_R8A77965=y +CONFIG_SYSC_R8A77970=y +CONFIG_SYSC_R8A77980=y +CONFIG_SYSC_R8A77990=y +CONFIG_SYSC_R8A77995=y +CONFIG_SYSC_R8A779A0=y +CONFIG_SYSC_R8A779F0=y +CONFIG_SYSC_R8A779G0=y +CONFIG_SYSC_RCAR=y +CONFIG_SYSC_RCAR_GEN4=y +CONFIG_SYSFB=y +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_SYSFS_SYSCALL=y +CONFIG_SYSTEM76_ACPI=m +CONFIG_SYSTEMPORT=m +# CONFIG_SYSTEM_BLACKLIST_AUTH_UPDATE is not set +CONFIG_SYSTEM_BLACKLIST_HASH_LIST="" +CONFIG_SYSTEM_BLACKLIST_KEYRING=y +CONFIG_SYSTEM_DATA_VERIFICATION=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE=y +CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 +CONFIG_SYSTEM_REVOCATION_KEYS="debian/canonical-revoked-certs.pem" +CONFIG_SYSTEM_REVOCATION_LIST=y +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="debian/canonical-certs.pem" +CONFIG_SYSV68_PARTITION=y +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYSV_FS=m +CONFIG_SYS_HYPERVISOR=y +CONFIG_SYS_SUPPORTS_SH_CMT=y +CONFIG_SYS_SUPPORTS_SH_TMU=y +CONFIG_T5403=m +CONFIG_TABLET_SERIAL_WACOM4=m +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_PEGASUS=m +CONFIG_TAHVO_USB=m +CONFIG_TAHVO_USB_HOST_BY_DEFAULT=y +CONFIG_TAP=m +CONFIG_TARGET_CORE=m +CONFIG_TASKSTATS=y +CONFIG_TASKS_RCU=y +CONFIG_TASKS_RCU_GENERIC=y +CONFIG_TASKS_RUDE_RCU=y +CONFIG_TASKS_TRACE_RCU=y +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_TASK_XACCT=y +CONFIG_TCG_ATMEL=m +CONFIG_TCG_CRB=y +CONFIG_TCG_FTPM_TEE=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCG_TIS=y +CONFIG_TCG_TIS_CORE=y +CONFIG_TCG_TIS_I2C_ATMEL=m +CONFIG_TCG_TIS_I2C_CR50=m +CONFIG_TCG_TIS_I2C_INFINEON=m +CONFIG_TCG_TIS_I2C_NUVOTON=m +CONFIG_TCG_TIS_SPI=m +CONFIG_TCG_TIS_SPI_CR50=y +CONFIG_TCG_TIS_ST33ZP24=m +CONFIG_TCG_TIS_ST33ZP24_I2C=m +CONFIG_TCG_TIS_ST33ZP24_SPI=m +CONFIG_TCG_TIS_SYNQUACER=m +CONFIG_TCG_TPM=y +CONFIG_TCG_VTPM_PROXY=m +CONFIG_TCG_XEN=m +CONFIG_TCM_FC=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_PSCSI=m +CONFIG_TCM_QLA2XXX=m +# CONFIG_TCM_QLA2XXX_DEBUG is not set +CONFIG_TCM_USER2=m +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BBR=m +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CDG=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_DCTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_NV=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_MD5SIG=y +CONFIG_TCS3414=m +CONFIG_TCS3472=m +CONFIG_TDX_GUEST_DRIVER=m +CONFIG_TEE=m +CONFIG_TEE_BNXT_FW=m +CONFIG_TEGRA186_GPC_DMA=m +CONFIG_TEGRA20_APB_DMA=y +CONFIG_TEGRA210_ADMA=m +CONFIG_TEGRA210_EMC=m +CONFIG_TEGRA210_EMC_TABLE=y +CONFIG_TEGRA_ACONNECT=m +CONFIG_TEGRA_AHB=y +CONFIG_TEGRA_BPMP=y +CONFIG_TEGRA_BPMP_THERMAL=m +CONFIG_TEGRA_CLK_DFLL=y +CONFIG_TEGRA_GMI=m +CONFIG_TEGRA_HOST1X=m +CONFIG_TEGRA_HOST1X_CONTEXT_BUS=y +CONFIG_TEGRA_HOST1X_FIREWALL=y +CONFIG_TEGRA_HSP_MBOX=y +CONFIG_TEGRA_IOMMU_SMMU=y +CONFIG_TEGRA_IVC=y +CONFIG_TEGRA_MC=y +# CONFIG_TEGRA_SOCTHERM is not set +CONFIG_TEGRA_TIMER=y +CONFIG_TEGRA_WATCHDOG=m +CONFIG_TEHUTI=m +CONFIG_TELCLOCK=m +CONFIG_TERANETICS_PHY=m +# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set +# CONFIG_TEST_BITMAP is not set +# CONFIG_TEST_BITOPS is not set +CONFIG_TEST_BLACKHOLE_DEV=m +CONFIG_TEST_BPF=m +# CONFIG_TEST_CLOCKSOURCE_WATCHDOG is not set +# CONFIG_TEST_FIRMWARE is not set +# CONFIG_TEST_FPU is not set +# CONFIG_TEST_FREE_PAGES is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_HMM is not set +# CONFIG_TEST_IDA is not set +# CONFIG_TEST_KMOD is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_LIVEPATCH is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_LOCKUP is not set +# CONFIG_TEST_MEMCAT_P is not set +# CONFIG_TEST_MEMINIT is not set +# CONFIG_TEST_MIN_HEAP is not set +# CONFIG_TEST_OBJAGG is not set +# CONFIG_TEST_PARMAN is not set +CONFIG_TEST_POWER=m +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_REF_TRACKER is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_SCANF is not set +# CONFIG_TEST_SIPHASH is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_STRSCPY is not set +# CONFIG_TEST_SYSCTL is not set +# CONFIG_TEST_UBSAN is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_TEST_UUID is not set +# CONFIG_TEST_VMALLOC is not set +# CONFIG_TEST_XARRAY is not set +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_TEXTSEARCH_KMP=m +CONFIG_THERMAL=y +# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set +# CONFIG_THERMAL_DEFAULT_GOV_POWER_ALLOCATOR is not set +CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y +# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set +CONFIG_THERMAL_EMERGENCY_POWEROFF_DELAY_MS=0 +CONFIG_THERMAL_EMULATION=y +CONFIG_THERMAL_GOV_BANG_BANG=y +CONFIG_THERMAL_GOV_FAIR_SHARE=y +CONFIG_THERMAL_GOV_POWER_ALLOCATOR=y +CONFIG_THERMAL_GOV_STEP_WISE=y +CONFIG_THERMAL_GOV_USER_SPACE=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERMAL_MMIO=m +CONFIG_THERMAL_NETLINK=y +CONFIG_THERMAL_OF=y +CONFIG_THERMAL_STATISTICS=y +CONFIG_THERMAL_WRITABLE_TRIPS=y +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THINKPAD_LMI=m +CONFIG_THP_SWAP=y +CONFIG_THREAD_INFO_IN_TASK=y +CONFIG_THRUSTMASTER_FF=y +CONFIG_THUNDERX2_PMU=m +CONFIG_THUNDER_NIC_BGX=m +CONFIG_THUNDER_NIC_PF=m +CONFIG_THUNDER_NIC_RGX=m +CONFIG_THUNDER_NIC_VF=m +CONFIG_TICK_CPU_ACCOUNTING=y +CONFIG_TICK_ONESHOT=y +CONFIG_TIFM_7XX1=m +CONFIG_TIFM_CORE=m +CONFIG_TIGON3=m +CONFIG_TIGON3_HWMON=y +CONFIG_TIMERFD=y +# CONFIG_TIMERLAT_TRACER is not set +CONFIG_TIMER_ACPI=y +CONFIG_TIMER_IMX_SYS_CTR=y +CONFIG_TIMER_OF=y +CONFIG_TIMER_PROBE=y +CONFIG_TIME_NS=y +CONFIG_TINYDRM_HX8357D=m +CONFIG_TINYDRM_ILI9163=m +CONFIG_TINYDRM_ILI9225=m +CONFIG_TINYDRM_ILI9341=m +CONFIG_TINYDRM_ILI9486=m +CONFIG_TINYDRM_MI0283QT=m +CONFIG_TINYDRM_REPAPER=m +CONFIG_TINYDRM_ST7586=m +CONFIG_TINYDRM_ST7735R=m +CONFIG_TIPC=m +CONFIG_TIPC_CRYPTO=y +CONFIG_TIPC_DIAG=m +CONFIG_TIPC_MEDIA_IB=y +CONFIG_TIPC_MEDIA_UDP=y +CONFIG_TI_ADC081C=m +CONFIG_TI_ADC0832=m +CONFIG_TI_ADC084S021=m +CONFIG_TI_ADC108S102=m +CONFIG_TI_ADC12138=m +CONFIG_TI_ADC128S052=m +CONFIG_TI_ADC161S626=m +CONFIG_TI_ADS1015=m +CONFIG_TI_ADS124S08=m +CONFIG_TI_ADS131E08=m +CONFIG_TI_ADS7950=m +CONFIG_TI_ADS8344=m +CONFIG_TI_ADS8688=m +CONFIG_TI_AM335X_ADC=m +CONFIG_TI_AM65_CPSW_TAS=y +# CONFIG_TI_CPSW_PHY_SEL is not set +CONFIG_TI_DAC082S085=m +CONFIG_TI_DAC5571=m +CONFIG_TI_DAC7311=m +CONFIG_TI_DAC7612=m +CONFIG_TI_DAVINCI_MDIO=y +CONFIG_TI_K3_AM65_CPSW_NUSS=m +CONFIG_TI_K3_AM65_CPSW_SWITCHDEV=y +CONFIG_TI_K3_AM65_CPTS=m +CONFIG_TI_K3_DSP_REMOTEPROC=m +CONFIG_TI_K3_PSIL=y +CONFIG_TI_K3_R5_REMOTEPROC=m +CONFIG_TI_K3_RINGACC=y +CONFIG_TI_K3_SOCINFO=y +CONFIG_TI_K3_UDMA=y +CONFIG_TI_K3_UDMA_GLUE_LAYER=y +CONFIG_TI_MESSAGE_MANAGER=y +CONFIG_TI_PRUSS=m +CONFIG_TI_PRUSS_INTC=m +CONFIG_TI_SCI_CLK=m +# CONFIG_TI_SCI_CLK_PROBE_FROM_FW is not set +CONFIG_TI_SCI_INTA_IRQCHIP=y +CONFIG_TI_SCI_INTA_MSI_DOMAIN=y +CONFIG_TI_SCI_INTR_IRQCHIP=y +CONFIG_TI_SCI_PM_DOMAINS=m +CONFIG_TI_SCI_PROTOCOL=y +# CONFIG_TI_SOC_THERMAL is not set +CONFIG_TI_ST=m +CONFIG_TI_SYSCON_CLK=y +CONFIG_TI_TLC4541=m +CONFIG_TI_TSC2046=m +CONFIG_TLAN=m +CONFIG_TLS=m +CONFIG_TLS_DEVICE=y +# CONFIG_TLS_TOE is not set +CONFIG_TMD_HERMES=m +CONFIG_TMP006=m +CONFIG_TMP007=m +CONFIG_TMP117=m +CONFIG_TMPFS=y +CONFIG_TMPFS_INODE64=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_TOPSTAR_LAPTOP=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_HAPS=m +# CONFIG_TOSHIBA_WMI is not set +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADC=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_AR1021_I2C=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_ATMEL_MXT_T37=y +CONFIG_TOUCHSCREEN_AUO_PIXCIR=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_BU21029=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8318=m +CONFIG_TOUCHSCREEN_CHIPONE_ICN8505=m +CONFIG_TOUCHSCREEN_COLIBRI_VF50=m +CONFIG_TOUCHSCREEN_CY8CTMA140=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_CYTTSP4_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP4_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP4_SPI=m +CONFIG_TOUCHSCREEN_CYTTSP_CORE=m +CONFIG_TOUCHSCREEN_CYTTSP_I2C=m +CONFIG_TOUCHSCREEN_CYTTSP_SPI=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DA9052=m +CONFIG_TOUCHSCREEN_DMI=y +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_EDT_FT5X06=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_EGALAX=m +CONFIG_TOUCHSCREEN_EGALAX_SERIAL=m +CONFIG_TOUCHSCREEN_EKTF2127=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_EXC3000=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GOODIX=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_HIDEEP=m +CONFIG_TOUCHSCREEN_HYCON_HY46XX=m +CONFIG_TOUCHSCREEN_ILI210X=m +CONFIG_TOUCHSCREEN_ILITEK=m +CONFIG_TOUCHSCREEN_IMAGIS=m +CONFIG_TOUCHSCREEN_IMX6UL_TSC=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_IPROC=m +CONFIG_TOUCHSCREEN_IQS5XX=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MELFAS_MIP4=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_MMS114=m +CONFIG_TOUCHSCREEN_MSG2638=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_PIXCIR=m +CONFIG_TOUCHSCREEN_RASPBERRYPI_FW=m +CONFIG_TOUCHSCREEN_RM_TS=m +CONFIG_TOUCHSCREEN_ROHM_BU21023=m +CONFIG_TOUCHSCREEN_S6SY761=m +CONFIG_TOUCHSCREEN_SILEAD=m +CONFIG_TOUCHSCREEN_SIS_I2C=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMFTS=m +CONFIG_TOUCHSCREEN_STMPE=m +# CONFIG_TOUCHSCREEN_SUN4I is not set +CONFIG_TOUCHSCREEN_SUR40=m +CONFIG_TOUCHSCREEN_SURFACE3_SPI=m +CONFIG_TOUCHSCREEN_SX8654=m +CONFIG_TOUCHSCREEN_TI_AM335X_TSC=m +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_TSC2004=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_TSC2007_IIO=y +CONFIG_TOUCHSCREEN_TSC200X_CORE=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_EASYTOUCH=y +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_ELO=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_WACOM_I2C=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WDT87XX_I2C=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TOUCHSCREEN_ZET6223=m +CONFIG_TOUCHSCREEN_ZFORCE=m +CONFIG_TOUCHSCREEN_ZINITIX=m +CONFIG_TPL0102=m +CONFIG_TPS6105X=m +CONFIG_TPS65010=m +CONFIG_TPS6507X=m +CONFIG_TPS68470_PMIC_OPREGION=y +CONFIG_TQMX86_WDT=m +CONFIG_TRACEPOINTS=y +# CONFIG_TRACEPOINT_BENCHMARK is not set +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACER_SNAPSHOT=y +# CONFIG_TRACER_SNAPSHOT_PER_CPU_SWAP is not set +CONFIG_TRACE_CLOCK=y +# CONFIG_TRACE_EVAL_MAP_FILE is not set +CONFIG_TRACE_EVENT_INJECT=y +CONFIG_TRACE_IRQFLAGS_NMI_SUPPORT=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACING=y +CONFIG_TRACING_MAP=y +CONFIG_TRACING_SUPPORT=y +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TRANS_TABLE=y +CONFIG_TREE_RCU=y +CONFIG_TREE_SRCU=y +# CONFIG_TRIM_UNUSED_KSYMS is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TRUSTED_KEYS_TPM=y +CONFIG_TSL2583=m +CONFIG_TSL2591=m +CONFIG_TSL2772=m +CONFIG_TSL4531=m +CONFIG_TSNEP=m +# CONFIG_TSNEP_SELFTESTS is not set +CONFIG_TSYS01=m +CONFIG_TSYS02D=m +CONFIG_TTPCI_EEPROM=m +CONFIG_TTY=y +CONFIG_TTY_PRINTK=y +CONFIG_TTY_PRINTK_LEVEL=6 +CONFIG_TULIP=m +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_TUN=y +# CONFIG_TUN_VNET_CROSS_LE is not set +CONFIG_TURRIS_MOX_RWTM=m +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_MADC=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_TWL6030_GPADC=m +CONFIG_TWL6040_CORE=y +CONFIG_TYPEC=m +CONFIG_TYPEC_DP_ALTMODE=m +CONFIG_TYPEC_FUSB302=m +CONFIG_TYPEC_HD3SS3220=m +CONFIG_TYPEC_MT6360=m +CONFIG_TYPEC_MUX_FSA4480=m +CONFIG_TYPEC_MUX_INTEL_PMC=m +CONFIG_TYPEC_MUX_PI3USB30532=m +CONFIG_TYPEC_NVIDIA_ALTMODE=m +CONFIG_TYPEC_QCOM_PMIC=m +CONFIG_TYPEC_RT1711H=m +CONFIG_TYPEC_RT1719=m +CONFIG_TYPEC_STUSB160X=m +CONFIG_TYPEC_TCPCI=m +CONFIG_TYPEC_TCPCI_MAXIM=m +CONFIG_TYPEC_TCPM=m +CONFIG_TYPEC_TPS6598X=m +CONFIG_TYPEC_UCSI=m +CONFIG_TYPEC_WCOVE=m +CONFIG_TYPEC_WUSB3801=m +CONFIG_TYPHOON=m +CONFIG_UACCE=m +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_AUTHENTICATION=y +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_SECURITY=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UBIFS_FS_ZSTD=y +CONFIG_UBSAN=y +# CONFIG_UBSAN_ALIGNMENT is not set +CONFIG_UBSAN_BOOL=y +CONFIG_UBSAN_BOUNDS=y +# CONFIG_UBSAN_DIV_ZERO is not set +CONFIG_UBSAN_ENUM=y +CONFIG_UBSAN_ONLY_BOUNDS=y +CONFIG_UBSAN_SANITIZE_ALL=y +CONFIG_UBSAN_SHIFT=y +# CONFIG_UBSAN_TRAP is not set +# CONFIG_UBSAN_UNREACHABLE is not set +CONFIG_UBUNTU_HOST=m +CONFIG_UCB1400_CORE=m +CONFIG_UCC=y +CONFIG_UCC_FAST=y +CONFIG_UCC_SLOW=y +CONFIG_UCLAMP_BUCKETS_COUNT=5 +CONFIG_UCLAMP_TASK=y +CONFIG_UCLAMP_TASK_GROUP=y +CONFIG_UCS2_STRING=y +CONFIG_UCSI_ACPI=m +CONFIG_UCSI_CCG=m +CONFIG_UDF_FS=m +CONFIG_UDMABUF=y +CONFIG_UEFI_CPER=y +CONFIG_UEFI_CPER_ARM=y +CONFIG_UEFI_CPER_X86=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UHID=m +CONFIG_UID16=y +CONFIG_UIO=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_DFL=m +CONFIG_UIO_DMEM_GENIRQ=m +CONFIG_UIO_HV_GENERIC=m +CONFIG_UIO_MF624=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_PRUSS=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULI526X=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNICODE=y +# CONFIG_UNICODE_NORMALIZATION_SELFTEST is not set +CONFIG_UNINLINE_SPIN_UNLOCK=y +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNIX_DIAG=m +CONFIG_UNIX_SCM=y +CONFIG_UNMAP_KERNEL_AT_EL0=y +CONFIG_UNWINDER_FRAME_POINTER=y +# CONFIG_UNWINDER_ORC is not set +CONFIG_UPROBES=y +CONFIG_UPROBE_EVENTS=y +CONFIG_US5182D=m +CONFIG_USB=y +CONFIG_USB4=m +# CONFIG_USB4_DEBUGFS_WRITE is not set +# CONFIG_USB4_DMA_TEST is not set +CONFIG_USB4_NET=m +CONFIG_USBIP_CORE=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBIP_VHCI_HC_PORTS=8 +CONFIG_USBIP_VHCI_NR_HCS=1 +CONFIG_USBIP_VUDC=m +CONFIG_USBPCWATCHDOG=m +CONFIG_USB_ACM=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_AIRSPY=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AN2720=y +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_ATM=m +CONFIG_USB_AUDIO=m +CONFIG_USB_AUTOSUSPEND_DELAY=2 +CONFIG_USB_BDC_UDC=m +CONFIG_USB_BELKIN=y +CONFIG_USB_BRCMSTB=m +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CATC=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_CDNS3=m +CONFIG_USB_CDNS3_GADGET=y +CONFIG_USB_CDNS3_HOST=y +CONFIG_USB_CDNS3_IMX=m +CONFIG_USB_CDNS3_PCI_WRAP=m +CONFIG_USB_CDNS3_TI=m +CONFIG_USB_CDNSP_GADGET=y +CONFIG_USB_CDNSP_HOST=y +CONFIG_USB_CDNSP_PCI=m +CONFIG_USB_CDNS_HOST=y +CONFIG_USB_CDNS_SUPPORT=m +CONFIG_USB_CHAOSKEY=m +CONFIG_USB_CHIPIDEA=m +CONFIG_USB_CHIPIDEA_GENERIC=m +CONFIG_USB_CHIPIDEA_HOST=y +CONFIG_USB_CHIPIDEA_IMX=m +CONFIG_USB_CHIPIDEA_MSM=m +CONFIG_USB_CHIPIDEA_PCI=m +CONFIG_USB_CHIPIDEA_TEGRA=m +CONFIG_USB_CHIPIDEA_UDC=y +CONFIG_USB_COMMON=y +CONFIG_USB_CONFIGFS=m +CONFIG_USB_CONFIGFS_ACM=y +CONFIG_USB_CONFIGFS_ECM=y +CONFIG_USB_CONFIGFS_ECM_SUBSET=y +CONFIG_USB_CONFIGFS_EEM=y +CONFIG_USB_CONFIGFS_F_FS=y +CONFIG_USB_CONFIGFS_F_HID=y +CONFIG_USB_CONFIGFS_F_LB_SS=y +CONFIG_USB_CONFIGFS_F_MIDI=y +CONFIG_USB_CONFIGFS_F_PRINTER=y +CONFIG_USB_CONFIGFS_F_TCM=y +CONFIG_USB_CONFIGFS_F_UAC1=y +CONFIG_USB_CONFIGFS_F_UAC1_LEGACY=y +CONFIG_USB_CONFIGFS_F_UAC2=y +CONFIG_USB_CONFIGFS_F_UVC=y +CONFIG_USB_CONFIGFS_MASS_STORAGE=y +CONFIG_USB_CONFIGFS_NCM=y +CONFIG_USB_CONFIGFS_OBEX=y +CONFIG_USB_CONFIGFS_PHONET=y +CONFIG_USB_CONFIGFS_RNDIS=y +CONFIG_USB_CONFIGFS_SERIAL=y +CONFIG_USB_CONN_GPIO=m +CONFIG_USB_CXACRU=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_DEFAULT_PERSIST=y +CONFIG_USB_DSBR=m +# CONFIG_USB_DUMMY_HCD is not set +CONFIG_USB_DWC2=y +# CONFIG_USB_DWC2_DEBUG is not set +CONFIG_USB_DWC2_HOST=y +CONFIG_USB_DWC2_PCI=m +# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set +CONFIG_USB_DWC3=m +CONFIG_USB_DWC3_AM62=m +CONFIG_USB_DWC3_DUAL_ROLE=y +# CONFIG_USB_DWC3_GADGET is not set +CONFIG_USB_DWC3_HAPS=m +# CONFIG_USB_DWC3_HOST is not set +CONFIG_USB_DWC3_IMX8MP=m +CONFIG_USB_DWC3_KEYSTONE=m +CONFIG_USB_DWC3_MESON_G12A=m +CONFIG_USB_DWC3_OF_SIMPLE=m +CONFIG_USB_DWC3_PCI=m +CONFIG_USB_DWC3_QCOM=m +CONFIG_USB_DWC3_ULPI=y +CONFIG_USB_DWC3_XILINX=m +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_EG20T=m +CONFIG_USB_EHCI_BRCMSTB=m +CONFIG_USB_EHCI_FSL=m +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_HCD_ORION=y +CONFIG_USB_EHCI_PCI=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EHCI_TEGRA=m +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_EHSET_TEST_FIXTURE=m +CONFIG_USB_EMI26=m +CONFIG_USB_EMI62=m +CONFIG_USB_EMXX=m +CONFIG_USB_EPSON2888=y +CONFIG_USB_ETH=m +CONFIG_USB_ETH_EEM=y +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_EZUSB_FX2=m +# CONFIG_USB_FEW_INIT_RETRIES is not set +CONFIG_USB_FOTG210_HCD=m +CONFIG_USB_FOTG210_UDC=m +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_F_ACM=m +CONFIG_USB_F_ECM=m +CONFIG_USB_F_EEM=m +CONFIG_USB_F_FS=m +CONFIG_USB_F_HID=m +CONFIG_USB_F_MASS_STORAGE=m +CONFIG_USB_F_MIDI=m +CONFIG_USB_F_NCM=m +CONFIG_USB_F_OBEX=m +CONFIG_USB_F_PHONET=m +CONFIG_USB_F_PRINTER=m +CONFIG_USB_F_RNDIS=m +CONFIG_USB_F_SERIAL=m +CONFIG_USB_F_SS_LB=m +CONFIG_USB_F_SUBSET=m +CONFIG_USB_F_TCM=m +CONFIG_USB_F_UAC1=m +CONFIG_USB_F_UAC1_LEGACY=m +CONFIG_USB_F_UAC2=m +CONFIG_USB_F_UVC=m +CONFIG_USB_GADGET=m +CONFIG_USB_GADGETFS=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +CONFIG_USB_GADGET_TARGET=m +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GADGET_XILINX=m +CONFIG_USB_GL860=m +CONFIG_USB_GOKU=m +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_GR_UDC=m +CONFIG_USB_GSPCA=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_DTCS033=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_JL2005BCD=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STK1135=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TOUPTEK=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_HID=m +# CONFIG_USB_G_MULTI is not set +CONFIG_USB_G_NCM=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_HACKRF=m +CONFIG_USB_HCD_BCMA=m +CONFIG_USB_HCD_SSB=m +# CONFIG_USB_HCD_TEST_MODE is not set +CONFIG_USB_HID=m +CONFIG_USB_HIDDEV=y +CONFIG_USB_HSIC_USB3503=m +CONFIG_USB_HSIC_USB4604=m +CONFIG_USB_HSO=m +CONFIG_USB_HUB_USB251XB=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IPHETH=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1301=m +CONFIG_USB_ISP1760=m +CONFIG_USB_ISP1760_DUAL_ROLE=y +# CONFIG_USB_ISP1760_GADGET_ROLE is not set +CONFIG_USB_ISP1760_HCD=y +# CONFIG_USB_ISP1760_HOST_ROLE is not set +CONFIG_USB_ISP1761_UDC=y +CONFIG_USB_KAWETH=m +CONFIG_USB_KBD=m +CONFIG_USB_KC2190=y +CONFIG_USB_KEENE=m +CONFIG_USB_LAN78XX=m +CONFIG_USB_LCD=m +CONFIG_USB_LD=m +CONFIG_USB_LEDS_TRIGGER_USBPORT=m +CONFIG_USB_LED_TRIG=y +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LGM_PHY=m +CONFIG_USB_LIBCOMPOSITE=m +CONFIG_USB_LINK_LAYER_TEST=m +CONFIG_USB_M5602=m +# CONFIG_USB_M66592 is not set +CONFIG_USB_MA901=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MAX3420_UDC=m +CONFIG_USB_MAX3421_HCD=m +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MON=m +CONFIG_USB_MOUSE=m +CONFIG_USB_MR800=m +CONFIG_USB_MSI2500=m +CONFIG_USB_MTU3=m +# CONFIG_USB_MTU3_DEBUG is not set +CONFIG_USB_MTU3_DUAL_ROLE=y +# CONFIG_USB_MTU3_GADGET is not set +# CONFIG_USB_MTU3_HOST is not set +CONFIG_USB_MUSB_DUAL_ROLE=y +# CONFIG_USB_MUSB_GADGET is not set +CONFIG_USB_MUSB_HDRC=m +# CONFIG_USB_MUSB_HOST is not set +CONFIG_USB_MUSB_MEDIATEK=m +CONFIG_USB_MUSB_SUNXI=m +CONFIG_USB_MV_U3D=m +CONFIG_USB_MV_UDC=m +CONFIG_USB_MXS_PHY=y +CONFIG_USB_NET2272=m +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_NET_AQC111=m +CONFIG_USB_NET_AX88179_178A=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_MBIM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_CDC_SUBSET_ENABLE=m +CONFIG_USB_NET_CH9200=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_DRIVERS=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_HUAWEI_CDC_NCM=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_QMI_WWAN=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_SR9700=m +CONFIG_USB_NET_SR9800=m +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OTG is not set +# CONFIG_USB_OTG_DISABLE_EXTERNAL_HUB is not set +# CONFIG_USB_OTG_PRODUCTLIST is not set +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PCI=y +CONFIG_USB_PEGASUS=m +CONFIG_USB_PHY=y +CONFIG_USB_PRINTER=m +CONFIG_USB_PULSE8_CEC=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_USB_PXA27X=m +CONFIG_USB_QCOM_EUD=m +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +CONFIG_USB_RAINSHADOW_CEC=m +CONFIG_USB_RAREMONO=m +CONFIG_USB_RAW_GADGET=m +CONFIG_USB_RENESAS_USB3=m +CONFIG_USB_RENESAS_USBHS=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_RENESAS_USBHS_UDC=m +CONFIG_USB_ROLES_INTEL_XHCI=m +CONFIG_USB_ROLE_SWITCH=y +CONFIG_USB_RTL8150=m +CONFIG_USB_RTL8152=m +CONFIG_USB_RTL8153_ECM=m +CONFIG_USB_S2255=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_DEBUG=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_F81232=m +CONFIG_USB_SERIAL_F8153X=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_METRO=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MXUPORT=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QT2=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_SAFE=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SIMPLE=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_UPD78F0730=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_WISHBONE=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_XR=m +CONFIG_USB_SERIAL_XSENS_MT=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_SI470X=m +CONFIG_USB_SI4713=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_SISUSBVGA=m +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SNP_CORE=m +CONFIG_USB_SNP_UDC_PLAT=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_STORAGE=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_DATAFAB=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STV06XX=m +CONFIG_USB_SUPPORT=y +CONFIG_USB_TEGRA_PHY=m +CONFIG_USB_TEGRA_XUDC=m +CONFIG_USB_TEST=m +CONFIG_USB_TMC=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_UAS=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_ULPI=y +CONFIG_USB_ULPI_BUS=m +CONFIG_USB_ULPI_VIEWPORT=y +CONFIG_USB_USBNET=m +CONFIG_USB_USS720=m +CONFIG_USB_U_AUDIO=m +CONFIG_USB_U_ETHER=m +CONFIG_USB_U_SERIAL=m +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_VL600=m +CONFIG_USB_WDM=m +CONFIG_USB_XEN_HCD=m +CONFIG_USB_XHCI_DBGCAP=y +CONFIG_USB_XHCI_HCD=y +CONFIG_USB_XHCI_HISTB=m +CONFIG_USB_XHCI_MTK=m +CONFIG_USB_XHCI_MVEBU=m +CONFIG_USB_XHCI_PCI=m +CONFIG_USB_XHCI_PCI_RENESAS=m +CONFIG_USB_XHCI_PLATFORM=m +CONFIG_USB_XHCI_RCAR=m +CONFIG_USB_XHCI_TEGRA=m +CONFIG_USB_XUSBATM=m +CONFIG_USB_YUREX=m +CONFIG_USB_ZD1201=m +CONFIG_USB_ZERO=m +CONFIG_USB_ZR364XX=m +CONFIG_USELIB=y +CONFIG_USERFAULTFD=y +CONFIG_USERIO=m +CONFIG_USERMODE_DRIVER=y +CONFIG_USER_DECRYPTED_DATA=y +CONFIG_USER_NS=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_UTS_NS=y +CONFIG_UV_MMTIMER=m +CONFIG_UV_SYSFS=m +CONFIG_U_SERIAL_CONSOLE=y +CONFIG_V4L2_ASYNC=m +CONFIG_V4L2_FLASH_LED_CLASS=m +CONFIG_V4L2_FWNODE=m +CONFIG_V4L2_H264=m +CONFIG_V4L2_JPEG_HELPER=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L2_VP9=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_V4L_PLATFORM_DRIVERS=y +CONFIG_V4L_TEST_DRIVERS=y +CONFIG_VALIDATE_FS_PARSER=y +CONFIG_VBOXGUEST=m +CONFIG_VBOXSF_FS=m +CONFIG_VCHIQ_CDEV=y +CONFIG_VCNL3020=m +CONFIG_VCNL4000=m +CONFIG_VCNL4035=m +CONFIG_VDPA=m +CONFIG_VDPA_SIM=m +CONFIG_VDPA_SIM_BLOCK=m +CONFIG_VDPA_SIM_NET=m +CONFIG_VDPA_USER=m +CONFIG_VEML6030=m +CONFIG_VEML6070=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VETH=m +CONFIG_VEXPRESS_CONFIG=y +CONFIG_VF610_ADC=m +CONFIG_VF610_DAC=m +CONFIG_VFAT_FS=y +CONFIG_VFIO_AMBA=m +CONFIG_VFIO_FSL_MC=m +CONFIG_VFIO_MDEV=m +CONFIG_VFIO_NOIOMMU=y +CONFIG_VFIO_PCI_IGD=y +CONFIG_VFIO_PCI_INTX=y +CONFIG_VFIO_PCI_MMAP=y +CONFIG_VFIO_PCI_VGA=y +CONFIG_VFIO_PLATFORM=m +CONFIG_VFIO_PLATFORM_AMDXGBE_RESET=m +CONFIG_VFIO_PLATFORM_BCMFLEXRM_RESET=m +CONFIG_VFIO_PLATFORM_CALXEDAXGMAC_RESET=m +CONFIG_VGASTATE=m +CONFIG_VGA_ARB=y +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VGA_CONSOLE=y +CONFIG_VGA_SWITCHEROO=y +CONFIG_VHOST=m +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_VHOST_IOTLB=m +CONFIG_VHOST_MENU=y +CONFIG_VHOST_NET=m +CONFIG_VHOST_RING=m +CONFIG_VHOST_SCSI=m +CONFIG_VHOST_VDPA=m +CONFIG_VHOST_VSOCK=m +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_VIA_WDT=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_DMA_SG=m +CONFIG_VIDEOBUF2_DVB=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_V4L2=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEOMODE_HELPERS=y +CONFIG_VIDEO_AD5820=m +CONFIG_VIDEO_AD9389B=m +CONFIG_VIDEO_ADP1653=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7180=m +CONFIG_VIDEO_ADV7183=m +CONFIG_VIDEO_ADV7343=m +CONFIG_VIDEO_ADV7393=m +CONFIG_VIDEO_ADV748X=m +CONFIG_VIDEO_ADV7511=m +# CONFIG_VIDEO_ADV7511_CEC is not set +CONFIG_VIDEO_ADV7604=m +CONFIG_VIDEO_ADV7604_CEC=y +CONFIG_VIDEO_ADV7842=m +CONFIG_VIDEO_ADV7842_CEC=y +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_AK7375=m +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_ALLEGRO_DVT=m +CONFIG_VIDEO_AMPHION_VPU=m +CONFIG_VIDEO_APTINA_PLL=m +CONFIG_VIDEO_ASPEED=m +CONFIG_VIDEO_ATOMISP=m +CONFIG_VIDEO_ATOMISP_GC0310=m +CONFIG_VIDEO_ATOMISP_GC2235=m +CONFIG_VIDEO_ATOMISP_ISP2401=y +CONFIG_VIDEO_ATOMISP_LM3554=m +CONFIG_VIDEO_ATOMISP_MSRLIST_HELPER=m +CONFIG_VIDEO_ATOMISP_MT9M114=m +CONFIG_VIDEO_ATOMISP_OV2680=m +CONFIG_VIDEO_ATOMISP_OV2722=m +CONFIG_VIDEO_ATOMISP_OV5693=m +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_AU0828_RC=y +CONFIG_VIDEO_AU0828_V4L2=y +CONFIG_VIDEO_BCM2835=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_CADENCE_CSI2RX=m +CONFIG_VIDEO_CADENCE_CSI2TX=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CCS=m +CONFIG_VIDEO_CCS_PLL=m +CONFIG_VIDEO_COBALT=m +CONFIG_VIDEO_CODA=m +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_CS3308=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_CX23885=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX25840=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_ENABLE_VP3054=y +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_DEV=m +CONFIG_VIDEO_DT3155=m +CONFIG_VIDEO_DW9714=m +CONFIG_VIDEO_DW9768=m +CONFIG_VIDEO_DW9807_VCM=m +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=m +CONFIG_VIDEO_EM28XX_V4L2=m +CONFIG_VIDEO_ET8EK8=m +CONFIG_VIDEO_FB_IVTV=m +CONFIG_VIDEO_FB_IVTV_FORCE_PAT=y +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_LOADER=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m +CONFIG_VIDEO_GS1662=m +CONFIG_VIDEO_HANTRO=m +CONFIG_VIDEO_HANTRO_IMX8M=y +CONFIG_VIDEO_HANTRO_ROCKCHIP=y +CONFIG_VIDEO_HANTRO_SUNXI=y +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_HI556=m +CONFIG_VIDEO_HI846=m +CONFIG_VIDEO_HI847=m +CONFIG_VIDEO_I2C=m +CONFIG_VIDEO_IMX208=m +CONFIG_VIDEO_IMX214=m +CONFIG_VIDEO_IMX219=m +CONFIG_VIDEO_IMX258=m +CONFIG_VIDEO_IMX274=m +CONFIG_VIDEO_IMX290=m +CONFIG_VIDEO_IMX319=m +CONFIG_VIDEO_IMX334=m +CONFIG_VIDEO_IMX335=m +CONFIG_VIDEO_IMX355=m +CONFIG_VIDEO_IMX412=m +CONFIG_VIDEO_IMX7_CSI=m +CONFIG_VIDEO_IMX8_JPEG=m +CONFIG_VIDEO_IMX_MEDIA=m +CONFIG_VIDEO_IMX_MIPI_CSIS=m +CONFIG_VIDEO_IMX_PXP=m +CONFIG_VIDEO_IPU3_CIO2=m +CONFIG_VIDEO_IPU3_IMGU=m +CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_ISL7998X=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_IVTV_ALSA=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_LM3560=m +CONFIG_VIDEO_LM3646=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_M5MOLS=m +CONFIG_VIDEO_MAX9271_LIB=m +CONFIG_VIDEO_MAX9286=m +CONFIG_VIDEO_MAX96712=m +CONFIG_VIDEO_MEDIATEK_VPU=m +CONFIG_VIDEO_MEM2MEM_DEINTERLACE=m +CONFIG_VIDEO_MESON_GE2D=m +CONFIG_VIDEO_MESON_VDEC=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_ML86V7667=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_MT9M001=m +CONFIG_VIDEO_MT9M032=m +CONFIG_VIDEO_MT9M111=m +CONFIG_VIDEO_MT9P031=m +CONFIG_VIDEO_MT9T001=m +CONFIG_VIDEO_MT9T112=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MT9V032=m +CONFIG_VIDEO_MT9V111=m +CONFIG_VIDEO_MUX=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_NOON010PC30=m +CONFIG_VIDEO_OG01A1B=m +CONFIG_VIDEO_OV02A10=m +CONFIG_VIDEO_OV08D10=m +CONFIG_VIDEO_OV13858=m +CONFIG_VIDEO_OV13B10=m +CONFIG_VIDEO_OV2640=m +CONFIG_VIDEO_OV2659=m +CONFIG_VIDEO_OV2680=m +CONFIG_VIDEO_OV2685=m +CONFIG_VIDEO_OV2740=m +CONFIG_VIDEO_OV5640=m +CONFIG_VIDEO_OV5645=m +CONFIG_VIDEO_OV5647=m +CONFIG_VIDEO_OV5648=m +CONFIG_VIDEO_OV5670=m +CONFIG_VIDEO_OV5675=m +CONFIG_VIDEO_OV5693=m +CONFIG_VIDEO_OV5695=m +CONFIG_VIDEO_OV6650=m +CONFIG_VIDEO_OV7251=m +CONFIG_VIDEO_OV7640=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_OV772X=m +CONFIG_VIDEO_OV7740=m +CONFIG_VIDEO_OV8856=m +CONFIG_VIDEO_OV8865=m +CONFIG_VIDEO_OV9282=m +CONFIG_VIDEO_OV9640=m +CONFIG_VIDEO_OV9650=m +CONFIG_VIDEO_OV9734=m +# CONFIG_VIDEO_PCI_SKELETON is not set +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_DVB=y +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_QCOM_CAMSS=m +CONFIG_VIDEO_QCOM_VENUS=m +CONFIG_VIDEO_RCAR_CSI2=m +CONFIG_VIDEO_RCAR_DRIF=m +CONFIG_VIDEO_RCAR_ISP=m +CONFIG_VIDEO_RCAR_VIN=m +CONFIG_VIDEO_RDACM20=m +CONFIG_VIDEO_RDACM21=m +CONFIG_VIDEO_RENESAS_FCP=m +CONFIG_VIDEO_RENESAS_FDP1=m +CONFIG_VIDEO_RENESAS_JPU=m +CONFIG_VIDEO_RENESAS_VSP1=m +CONFIG_VIDEO_RJ54N1=m +CONFIG_VIDEO_ROCKCHIP_ISP1=m +CONFIG_VIDEO_ROCKCHIP_RGA=m +CONFIG_VIDEO_ROCKCHIP_VDEC=m +CONFIG_VIDEO_S5C73M3=m +CONFIG_VIDEO_S5K4ECGX=m +CONFIG_VIDEO_S5K5BAF=m +CONFIG_VIDEO_S5K6A3=m +CONFIG_VIDEO_S5K6AA=m +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_SAA6752HS=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_GO7007=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_SOLO6X10=m +CONFIG_VIDEO_SONY_BTF_MPX=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_STK1160=m +CONFIG_VIDEO_STK1160_COMMON=m +CONFIG_VIDEO_ST_MIPID02=m +CONFIG_VIDEO_SUN4I_CSI=m +CONFIG_VIDEO_SUN6I_CSI=m +CONFIG_VIDEO_SUN8I_DEINTERLACE=m +CONFIG_VIDEO_SUN8I_ROTATE=m +CONFIG_VIDEO_SUNXI=y +CONFIG_VIDEO_SUNXI_CEDRUS=m +CONFIG_VIDEO_TC358743=m +CONFIG_VIDEO_TC358743_CEC=y +CONFIG_VIDEO_TDA1997X=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TEGRA=m +CONFIG_VIDEO_TEGRA_TPG=y +CONFIG_VIDEO_TEGRA_VDE=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_THS8200=m +CONFIG_VIDEO_TI_CAL=m +CONFIG_VIDEO_TI_CAL_MC=y +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_TVP514X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_TW2804=m +CONFIG_VIDEO_TW5864=m +CONFIG_VIDEO_TW68=m +CONFIG_VIDEO_TW686X=m +CONFIG_VIDEO_TW9903=m +CONFIG_VIDEO_TW9906=m +CONFIG_VIDEO_TW9910=m +CONFIG_VIDEO_UDA1342=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBTV=m +CONFIG_VIDEO_V4L2_I2C=y +CONFIG_VIDEO_V4L2_SUBDEV_API=y +CONFIG_VIDEO_V4L2_TPG=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_VICODEC=m +CONFIG_VIDEO_VIM2M=m +CONFIG_VIDEO_VIMC=m +CONFIG_VIDEO_VIVID=m +CONFIG_VIDEO_VIVID_CEC=y +CONFIG_VIDEO_VIVID_MAX_DEVS=64 +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_VS6624=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_XILINX=m +CONFIG_VIDEO_XILINX_CSI2RXSS=m +CONFIG_VIDEO_XILINX_TPG=m +CONFIG_VIDEO_XILINX_VTC=m +# CONFIG_VIDEO_ZORAN is not set +CONFIG_VIPERBOARD_ADC=m +CONFIG_VIRTIO=y +CONFIG_VIRTIO_ANCHOR=y +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_BLK=m +CONFIG_VIRTIO_CONSOLE=y +CONFIG_VIRTIO_DMA_SHARED_BUFFER=m +CONFIG_VIRTIO_FS=m +CONFIG_VIRTIO_INPUT=m +CONFIG_VIRTIO_IOMMU=y +CONFIG_VIRTIO_MEM=m +CONFIG_VIRTIO_MENU=y +CONFIG_VIRTIO_MMIO=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y +CONFIG_VIRTIO_PCI_LIB=y +CONFIG_VIRTIO_PCI_LIB_LEGACY=y +CONFIG_VIRTIO_PMEM=m +CONFIG_VIRTIO_VDPA=m +CONFIG_VIRTIO_VSOCKETS=m +CONFIG_VIRTIO_VSOCKETS_COMMON=m +CONFIG_VIRTUALIZATION=y +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VIRT_TO_BUS=y +CONFIG_VIRT_WIFI=m +CONFIG_VISCONTI_WATCHDOG=m +CONFIG_VITESSE_PHY=m +CONFIG_VL53L0X_I2C=m +CONFIG_VL6180=m +CONFIG_VLAN_8021Q=m +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VLAN_8021Q_MVRP=y +CONFIG_VMAP_PFN=y +CONFIG_VMAP_STACK=y +CONFIG_VMD=m +CONFIG_VME_BUS=y +CONFIG_VME_CA91CX42=m +CONFIG_VME_FAKE=m +CONFIG_VME_TSI148=m +CONFIG_VME_USER=m +CONFIG_VMGENID=m +CONFIG_VMIVME_7805=m +CONFIG_VMLINUX_MAP=y +CONFIG_VMWARE_BALLOON=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_VMWARE_VMCI=m +CONFIG_VMWARE_VMCI_VSOCKETS=m +CONFIG_VMXNET3=m +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_VORTEX=m +CONFIG_VP_VDPA=m +CONFIG_VSOCKETS=m +CONFIG_VSOCKETS_DIAG=m +CONFIG_VSOCKETS_LOOPBACK=m +CONFIG_VSOCKMON=m +CONFIG_VT=y +CONFIG_VT6655=m +CONFIG_VT6656=m +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_VXLAN=m +CONFIG_VZ89X=m +CONFIG_W1=m +CONFIG_W1_CON=y +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_MXC=m +CONFIG_W1_MASTER_SGI=m +CONFIG_W1_SLAVE_DS2405=m +CONFIG_W1_SLAVE_DS2406=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2408_READBACK=y +CONFIG_W1_SLAVE_DS2413=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2430=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2438=m +CONFIG_W1_SLAVE_DS250X=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_DS2781=m +CONFIG_W1_SLAVE_DS2805=m +CONFIG_W1_SLAVE_DS28E04=m +CONFIG_W1_SLAVE_DS28E17=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_THERM=m +CONFIG_W83627HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_WAFER_WDT=m +CONFIG_WAN=y +CONFIG_WANT_COMPAT_NETLINK_MESSAGES=y +CONFIG_WANT_DEV_COREDUMP=y +CONFIG_WANXL=m +# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set +CONFIG_WATCHDOG=y +CONFIG_WATCHDOG_CORE=y +CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y +# CONFIG_WATCHDOG_HRTIMER_PRETIMEOUT is not set +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_OPEN_TIMEOUT=0 +CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_NOOP=y +# CONFIG_WATCHDOG_PRETIMEOUT_DEFAULT_GOV_PANIC is not set +CONFIG_WATCHDOG_PRETIMEOUT_GOV=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_NOOP=y +CONFIG_WATCHDOG_PRETIMEOUT_GOV_PANIC=m +CONFIG_WATCHDOG_PRETIMEOUT_GOV_SEL=m +CONFIG_WATCHDOG_SYSFS=y +CONFIG_WATCH_QUEUE=y +CONFIG_WCN36XX=m +# CONFIG_WCN36XX_DEBUGFS is not set +CONFIG_WDAT_WDT=m +CONFIG_WDTPCI=m +# CONFIG_WERROR is not set +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PRIV=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WFX=m +CONFIG_WIL6210=m +CONFIG_WIL6210_DEBUGFS=y +CONFIG_WIL6210_ISR_COR=y +CONFIG_WIL6210_TRACING=y +CONFIG_WILC1000=m +CONFIG_WILC1000_HW_OOB_INTR=y +CONFIG_WILC1000_SDIO=m +CONFIG_WILC1000_SPI=m +CONFIG_WILCO_EC=m +CONFIG_WILCO_EC_DEBUGFS=m +CONFIG_WILCO_EC_EVENTS=m +CONFIG_WILCO_EC_TELEMETRY=m +CONFIG_WILINK_PLATFORM_DATA=y +CONFIG_WINBOND_840=m +CONFIG_WINMATE_FM07_KEYS=m +CONFIG_WIREGUARD=m +# CONFIG_WIREGUARD_DEBUG is not set +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WIRELESS_HOTKEY=m +CONFIG_WIZNET_BUS_ANY=y +# CONFIG_WIZNET_BUS_DIRECT is not set +# CONFIG_WIZNET_BUS_INDIRECT is not set +CONFIG_WIZNET_W5100=m +CONFIG_WIZNET_W5100_SPI=m +CONFIG_WIZNET_W5300=m +CONFIG_WL1251=m +CONFIG_WL1251_SDIO=m +CONFIG_WL1251_SPI=m +CONFIG_WL12XX=m +CONFIG_WL18XX=m +CONFIG_WLAN=y +CONFIG_WLAN_VENDOR_ADMTEK=y +CONFIG_WLAN_VENDOR_ATH=y +CONFIG_WLAN_VENDOR_ATMEL=y +CONFIG_WLAN_VENDOR_BROADCOM=y +CONFIG_WLAN_VENDOR_CISCO=y +CONFIG_WLAN_VENDOR_INTEL=y +CONFIG_WLAN_VENDOR_INTERSIL=y +CONFIG_WLAN_VENDOR_MARVELL=y +CONFIG_WLAN_VENDOR_MEDIATEK=y +CONFIG_WLAN_VENDOR_MICROCHIP=y +CONFIG_WLAN_VENDOR_PURELIFI=y +CONFIG_WLAN_VENDOR_QUANTENNA=y +CONFIG_WLAN_VENDOR_RALINK=y +CONFIG_WLAN_VENDOR_REALTEK=y +CONFIG_WLAN_VENDOR_RSI=y +CONFIG_WLAN_VENDOR_SILABS=y +CONFIG_WLAN_VENDOR_ST=y +CONFIG_WLAN_VENDOR_TI=y +CONFIG_WLAN_VENDOR_ZYDAS=y +CONFIG_WLCORE=m +CONFIG_WLCORE_SDIO=m +CONFIG_WLCORE_SPI=m +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_POWER=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_WMI_BMOF=m +CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y +# CONFIG_WQ_WATCHDOG is not set +CONFIG_WWAN=y +CONFIG_WWAN_DEBUGFS=y +CONFIG_WWAN_HWSIM=m +# CONFIG_WW_MUTEX_SELFTEST is not set +CONFIG_X25=m +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_X86=y +CONFIG_X86_16BIT=y +CONFIG_X86_5LEVEL=y +CONFIG_X86_64=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_X86_64_SMP=y +CONFIG_X86_ACPI_CPUFREQ=y +CONFIG_X86_ACPI_CPUFREQ_CPB=y +CONFIG_X86_AMD_FREQ_SENSITIVITY=m +CONFIG_X86_AMD_PLATFORM_DEVICE=y +CONFIG_X86_AMD_PSTATE=y +CONFIG_X86_ANDROID_TABLETS=m +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG64=y +# CONFIG_X86_CPA_STATISTICS is not set +CONFIG_X86_CPUID=m +CONFIG_X86_CPU_RESCTRL=y +CONFIG_X86_DEBUGCTLMSR=y +CONFIG_X86_DEBUG_FPU=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_X86_DIRECT_GBPAGES=y +CONFIG_X86_ESPFIX64=y +CONFIG_X86_EXTENDED_PLATFORM=y +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_GOLDFISH is not set +CONFIG_X86_HV_CALLBACK_VECTOR=y +CONFIG_X86_INTEL_LPSS=y +CONFIG_X86_INTEL_MEMORY_PROTECTION_KEYS=y +# CONFIG_X86_INTEL_MID is not set +CONFIG_X86_INTEL_PSTATE=y +# CONFIG_X86_INTEL_TSX_MODE_AUTO is not set +CONFIG_X86_INTEL_TSX_MODE_OFF=y +# CONFIG_X86_INTEL_TSX_MODE_ON is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_IOPL_IOPERM=y +CONFIG_X86_IO_APIC=y +# CONFIG_X86_KERNEL_IBT is not set +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_MCE=y +CONFIG_X86_MCELOG_LEGACY=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MEM_ENCRYPT=y +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_MPPARSE=y +CONFIG_X86_MSR=m +CONFIG_X86_NEED_RELOCS=y +CONFIG_X86_NUMACHIP=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PAT=y +CONFIG_X86_PCC_CPUFREQ=y +CONFIG_X86_PKG_TEMP_THERMAL=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_X86_PLATFORM_DRIVERS_DELL=y +CONFIG_X86_PMEM_LEGACY=y +CONFIG_X86_PMEM_LEGACY_DEVICE=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_SGX=y +CONFIG_X86_SGX_KVM=y +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_TSC=y +CONFIG_X86_UMIP=y +CONFIG_X86_UV=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +CONFIG_X86_VMX_FEATURE_NAMES=y +# CONFIG_X86_VSMP is not set +CONFIG_X86_VSYSCALL_EMULATION=y +CONFIG_X86_X2APIC=y +# CONFIG_X86_X32_ABI is not set +CONFIG_XARRAY_MULTI=y +CONFIG_XDP_SOCKETS=y +CONFIG_XDP_SOCKETS_DIAG=m +CONFIG_XEN=y +CONFIG_XENFS=m +CONFIG_XEN_512GB=y +CONFIG_XEN_ACPI=y +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_AUTO_XLATE=y +CONFIG_XEN_BACKEND=y +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_COMPAT_XENFS=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_DOM0=y +CONFIG_XEN_EFI=y +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_XEN_FRONT_PGDIR_SHBUF=m +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GNTDEV_DMABUF=y +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_XEN_GRANT_DMA_ALLOC=y +CONFIG_XEN_GRANT_DMA_IOMMU=y +CONFIG_XEN_GRANT_DMA_OPS=y +CONFIG_XEN_HAVE_PVMMU=y +CONFIG_XEN_HAVE_VPMU=y +CONFIG_XEN_MCE_LOG=y +CONFIG_XEN_MEMORY_HOTPLUG_LIMIT=512 +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_XEN_PCIDEV_STUB=m +CONFIG_XEN_PCI_STUB=y +CONFIG_XEN_PRIVCMD=m +CONFIG_XEN_PV=y +# CONFIG_XEN_PVCALLS_BACKEND is not set +CONFIG_XEN_PVCALLS_FRONTEND=m +CONFIG_XEN_PVH=y +CONFIG_XEN_PVHVM=y +CONFIG_XEN_PVHVM_GUEST=y +CONFIG_XEN_PVHVM_SMP=y +CONFIG_XEN_PV_DOM0=y +CONFIG_XEN_PV_SMP=y +CONFIG_XEN_SAVE_RESTORE=y +CONFIG_XEN_SCRUB_PAGES_DEFAULT=y +CONFIG_XEN_SCSI_BACKEND=m +CONFIG_XEN_SCSI_FRONTEND=m +CONFIG_XEN_SYMS=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_UNPOPULATED_ALLOC=y +CONFIG_XEN_VIRTIO=y +# CONFIG_XEN_VIRTIO_FORCE_GRANT is not set +CONFIG_XEN_WDT=m +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XFRM=y +CONFIG_XFRM_AH=m +CONFIG_XFRM_ALGO=m +CONFIG_XFRM_ESP=m +CONFIG_XFRM_ESPINTCP=y +CONFIG_XFRM_INTERFACE=m +CONFIG_XFRM_IPCOMP=m +# CONFIG_XFRM_MIGRATE is not set +CONFIG_XFRM_OFFLOAD=y +CONFIG_XFRM_STATISTICS=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_USER=m +CONFIG_XFRM_USER_COMPAT=m +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +# CONFIG_XFS_ONLINE_SCRUB is not set +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_RT=y +CONFIG_XFS_SUPPORT_V4=y +# CONFIG_XFS_WARN is not set +CONFIG_XGENE_DMA=m +CONFIG_XGENE_PMU=y +CONFIG_XGENE_SLIMPRO_MBOX=m +CONFIG_XIAOMI_WMI=m +CONFIG_XILINX_AMS=m +CONFIG_XILINX_AXI_EMAC=m +CONFIG_XILINX_DMA=m +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_GMII2RGMII=m +CONFIG_XILINX_INTC=y +CONFIG_XILINX_LL_TEMAC=m +CONFIG_XILINX_PR_DECOUPLER=m +CONFIG_XILINX_SDFEC=m +CONFIG_XILINX_VCU=m +CONFIG_XILINX_WATCHDOG=m +CONFIG_XILINX_XADC=m +CONFIG_XILINX_ZYNQMP_DMA=m +CONFIG_XILINX_ZYNQMP_DPDMA=m +CONFIG_XILLYBUS=m +CONFIG_XILLYBUS_CLASS=m +CONFIG_XILLYBUS_OF=m +CONFIG_XILLYBUS_PCIE=m +CONFIG_XILLYUSB=m +CONFIG_XIL_AXIS_FIFO=m +CONFIG_XLNX_EVENT_MANAGER=y +CONFIG_XOR_BLOCKS=m +CONFIG_XPOWER_PMIC_OPREGION=y +CONFIG_XPS=y +CONFIG_XXHASH=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_MICROLZMA=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YAM=m +CONFIG_YAMAHA_YAS530=m +CONFIG_YELLOWFIN=m +CONFIG_YENTA=m +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_YOGABOOK_WMI=m +CONFIG_Z3FOLD=m +CONFIG_ZBUD=y +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZEROPLUS_FF=y +CONFIG_ZERO_CALL_USED_REGS=y +CONFIG_ZIIRAVE_WATCHDOG=m +CONFIG_ZISOFS=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZLIB_INFLATE=y +CONFIG_ZONEFS_FS=m +CONFIG_ZONE_DEVICE=y +CONFIG_ZONE_DMA=y +CONFIG_ZONE_DMA32=y +CONFIG_ZOPT2201=m +CONFIG_ZPA2326=m +CONFIG_ZPA2326_I2C=m +CONFIG_ZPA2326_SPI=m +CONFIG_ZPOOL=y +CONFIG_ZRAM=m +CONFIG_ZRAM_DEF_COMP="lzo-rle" +# CONFIG_ZRAM_DEF_COMP_842 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4 is not set +# CONFIG_ZRAM_DEF_COMP_LZ4HC is not set +# CONFIG_ZRAM_DEF_COMP_LZO is not set +CONFIG_ZRAM_DEF_COMP_LZORLE=y +# CONFIG_ZRAM_DEF_COMP_ZSTD is not set +CONFIG_ZRAM_MEMORY_TRACKING=y +CONFIG_ZRAM_WRITEBACK=y +CONFIG_ZSMALLOC=y +# CONFIG_ZSMALLOC_STAT is not set +CONFIG_ZSTD_COMPRESS=y +CONFIG_ZSTD_DECOMPRESS=y +CONFIG_ZSWAP=y +CONFIG_ZSWAP_COMPRESSOR_DEFAULT="lzo" +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4 is not set +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZ4HC is not set +CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO=y +# CONFIG_ZSWAP_COMPRESSOR_DEFAULT_ZSTD is not set +# CONFIG_ZSWAP_DEFAULT_ON is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT="zbud" +# CONFIG_ZSWAP_ZPOOL_DEFAULT_Z3FOLD is not set +CONFIG_ZSWAP_ZPOOL_DEFAULT_ZBUD=y +# CONFIG_ZSWAP_ZPOOL_DEFAULT_ZSMALLOC is not set +CONFIG_ZYNQMP_FIRMWARE=y +# CONFIG_ZYNQMP_FIRMWARE_DEBUG is not set +CONFIG_ZYNQMP_IPI_MBOX=y +CONFIG_ZYNQMP_PM_DOMAINS=y +CONFIG_ZYNQMP_POWER=y diff --git a/debian.nvidia-5.19/control.d/flavour-control.stub b/debian.nvidia-5.19/control.d/flavour-control.stub new file mode 100644 index 000000000000..2c0bcd194a5c --- /dev/null +++ b/debian.nvidia-5.19/control.d/flavour-control.stub @@ -0,0 +1,142 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Provides: linux-image, fuse-module, =PROVIDES=${linux:rprovides} +Depends: ${misc:Depends}, ${shlibs:Depends}, kmod, linux-base (>= 4.5ubuntu1~16.04.1), linux-modules-PKGVER-ABINUM-FLAVOUR +Recommends: BOOTLOADER, initramfs-tools | linux-initramfs-tool +Breaks: flash-kernel (<< 3.90ubuntu2) [arm64 armhf], s390-tools (<< 2.3.0-0ubuntu3) [s390x] +Conflicts: linux-image=SIGN-PEER-PKG=-PKGVER-ABINUM-FLAVOUR +Suggests: fdutils, linux-doc | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools, linux-headers-PKGVER-ABINUM-FLAVOUR, linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Description: Linux kernel image for version PKGVER on DESC + This package contains the=SIGN-ME-TXT= Linux kernel image for version PKGVER on + DESC. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends} +Built-Using: ${linux:BuiltUsing} +Description: Linux kernel extra modules for version PKGVER on DESC + Contains the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-modules-extra-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-modules-PKGVER-ABINUM-FLAVOUR, wireless-regdb +Description: Linux kernel extra modules for version PKGVER on DESC + This package contains the Linux kernel extra modules for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image=SIGN-ME-PKG=-PKGVER-ABINUM-FLAVOUR-dbgsym +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides the=SIGN-ME-TXT= kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-tools-PKGVER-ABINUM +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + +Package: linux-cloud-tools-PKGVER-ABINUM-FLAVOUR +Build-Profiles: +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud for version PKGVER-ABINUM on + =HUMAN=. + diff --git a/debian.nvidia-5.19/control.d/nvidia.inclusion-list b/debian.nvidia-5.19/control.d/nvidia.inclusion-list new file mode 100644 index 000000000000..0bb261f53696 --- /dev/null +++ b/debian.nvidia-5.19/control.d/nvidia.inclusion-list @@ -0,0 +1,298 @@ +arch/*/{crypto,kernel,oprofile} +arch/*/kvm/kvm.ko +arch/powerpc/kvm/kvm-hv.ko +arch/powerpc/kvm/kvm-pr.ko +arch/powerpc/kvm/vfio.ko +arch/powerpc/platforms/powernv/opal-prd.ko +arch/s390/* +arch/x86/kvm/kvm-amd.ko +arch/x86/kvm/kvm-intel.ko +crypto/* +drivers/acpi/* +drivers/ata/acard-ahci.ko +drivers/ata/ahci.ko +drivers/ata/ahci_platform.ko +drivers/ata/ahci_tegra.ko +drivers/ata/ata_generic.ko +drivers/ata/libahci.ko +drivers/ata/libahci_platform.ko +drivers/block/brd.ko +drivers/block/cryptoloop.ko +drivers/block/floppy.ko +drivers/block/loop.ko +drivers/block/nbd.ko +drivers/block/rbd.ko +drivers/block/virtio_blk.ko +drivers/block/xen-blkfront.ko +drivers/bus/tegra-aconnect.ko +drivers/char/hangcheck-timer.ko +drivers/char/hw_random/powernv-rng.ko +drivers/char/hw_random/virtio-rng.ko +drivers/char/ipmi/* +drivers/char/ipmi/ipmi_msghandler.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/char/virtio_console.ko +drivers/clk/clk-max77686.ko +drivers/cpufreq/tegra186-cpufreq.ko +drivers/cpufreq/tegra194-cpufreq.ko +drivers/crypto/nx/* +drivers/crypto/vmx/vmx-crypto.ko +drivers/dma/tegra210-adma.ko +drivers/firmware/efi/* +drivers/firmware/iscsi_ibft.ko +drivers/gpio/gpio-max77620.ko +drivers/gpu/drm/ast/ast.ko +drivers/gpu/drm/drm.ko +drivers/gpu/drm/drm_kms_helper.ko +drivers/gpu/drm/tegra/tegra-drm.ko +drivers/gpu/drm/ttm/ttm.ko +drivers/gpu/drm/vboxvideo/vboxvideo.ko +drivers/gpu/host1x/host1x.ko +drivers/hid/hid-generic.ko +drivers/hid/hid-hyperv.ko +drivers/hid/hid.ko +drivers/hid/usbhid/usbhid.ko +drivers/hv/* +drivers/hwmon/ibmpowernv.ko +drivers/hwmon/pwm-fan.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra-bpmp.ko +drivers/i2c/busses/i2c-tegra.ko +drivers/infiniband/core/ib_addr.ko +drivers/infiniband/core/ib_cm.ko +drivers/infiniband/core/ib_core.ko +drivers/infiniband/core/ib_mad.ko +drivers/infiniband/core/ib_sa.ko +drivers/infiniband/core/iw_cm.ko +drivers/infiniband/core/rdma_cm.ko +drivers/infiniband/ulp/iser/ib_iser.ko +drivers/infiniband/ulp/isert/ib_isert.ko +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/input-leds.ko +drivers/input/joydev.ko +drivers/input/keyboard/gpio_keys.ko +drivers/input/misc/xen-kbdfront.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/hyperv-keyboard.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/leds/leds-powernv.ko +drivers/md/* +drivers/memory/tegra/tegra210-emc.ko +drivers/message/fusion* +drivers/misc/cxl/* +drivers/misc/eeprom/at24.ko +drivers/misc/vmw_balloon.ko +drivers/misc/vmw_vmci/vmw_vmci.ko +drivers/mmc/host/sdhci-tegra.ko +drivers/mtd/cmdlinepart.ko +drivers/mtd/devices/powernv_flash.ko +drivers/mtd/ofpart.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/caif/caif_virtio.ko +drivers/net/dummy.ko +drivers/net/eql.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/ethernet/amazon/ena/ena.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/ethernet/broadcom/bnx2x/* +drivers/net/ethernet/broadcom/tg3.ko +drivers/net/ethernet/dec/tulip/* +drivers/net/ethernet/emulex/benet/* +drivers/net/ethernet/ibm/* +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/ethernet/intel/i40e/* +drivers/net/ethernet/intel/iavf/iavf.ko +drivers/net/ethernet/intel/igb/* +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbe/* +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/ethernet/mellanox/* +drivers/net/ethernet/netronome/nfp/nfp.ko +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.ko +drivers/net/ethernet/stmicro/stmmac/stmmac-platform.ko +drivers/net/ethernet/stmicro/stmmac/stmmac.ko +drivers/net/fddi/* +drivers/net/geneve.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ifb.ko +drivers/net/ipvlan/* +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/mii.ko +drivers/net/netconsole.ko +drivers/net/pcs/pcs-xpcs.ko +drivers/net/phy/marvell.ko +drivers/net/phy/phylink.ko +drivers/net/ppp/* +drivers/net/ppp/bsd_comp.ko +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/virtio_net.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/vxlan.ko +drivers/net/wireguard/wireguard.ko +drivers/net/xen-netback/* +drivers/net/xen-netfront.ko +drivers/nvme/host/nvme.ko +drivers/nvmem/nvmem_core.ko +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/controller/dwc/pcie-tegra194.ko +drivers/pci/host/vmd.ko +drivers/phy/tegra/phy-tegra194-p2u.ko +drivers/pinctrl/pinctrl-max77620.ko +drivers/platform/x86/pvpanic.ko +drivers/pps/pps_core.ko +drivers/ptp/ptp.ko +drivers/pwm/pwm-tegra.ko +drivers/regulator/fixed.ko +drivers/regulator/max77620-regulator.ko +drivers/rtc/rtc-max77686.ko +drivers/rtc/rtc-tegra.ko +drivers/s390/* +drivers/s390/block/xpram.ko +drivers/scsi/BusLogic.ko +drivers/scsi/aacraid/* +drivers/scsi/cxlflash/* +drivers/scsi/device_handler/scsi_dh_alua.ko +drivers/scsi/device_handler/scsi_dh_emc.ko +drivers/scsi/device_handler/scsi_dh_hp_sw.ko +drivers/scsi/device_handler/scsi_dh_rdac.ko +drivers/scsi/hv_storvsc.ko +drivers/scsi/ibmvscsi/* +drivers/scsi/ipr.ko +drivers/scsi/iscsi_boot_sysfs.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/lpfc/* +drivers/scsi/megaraid/* +drivers/scsi/mpt3sas/* +drivers/scsi/osd/libosd.ko +drivers/scsi/osd/osd.ko +drivers/scsi/qla1280.ko +drivers/scsi/qla2xxx/* +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_transport_spi.ko +drivers/scsi/sd_mod.ko +drivers/scsi/sr_mod.ko +drivers/scsi/virtio_scsi.ko +drivers/scsi/vmw_pvscsi.ko +drivers/spi/spi-tegra114.ko +drivers/staging/media/tegra-video/tegra-video.ko +drivers/target/loopback/tcm_loop.ko +drivers/target/target_core*.ko +drivers/thermal/tegra/tegra-bpmp-thermal.ko +drivers/tty/serial/jsm/* +drivers/tty/serial/serial-tegra.ko +drivers/uio/uio.ko +drivers/uio/uio_pdrv_genirq.ko +drivers/usb/gadget/udc/tegra-xudc.ko +drivers/usb/host/* +drivers/usb/storage/uas.ko +drivers/usb/storage/usb-storage.ko +drivers/vfio/* +drivers/vhost/* +drivers/video/fbdev/* +drivers/video/vgastate.ko +drivers/virt/vboxguest/vboxguest.ko +drivers/virtio/* +drivers/watchdog/softdog.ko +drivers/xen/* +fs/9p/* +fs/aufs/aufs.ko +fs/autofs/autofs4.ko +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/ceph/* +fs/cifs/* +fs/configfs/* +fs/dlm/dlm.ko +fs/ecryptfs/* +fs/efivarfs/* +fs/exofs/libore.ko +fs/ext4/* +fs/fat/* +fs/fscache/* +fs/fuse/* +fs/isofs/* +fs/lockd/* +fs/nfs/* +fs/nfs_common/* +fs/nfsd/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/overlayfs/* +fs/shiftfs.ko +fs/squashfs/* +fs/udf/* +fs/ufs/* +fs/vboxsf/vboxsf.ko +fs/xfs/* +lib/* +net/6lowpan/* +net/802/* +net/8021q/* +net/9p/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bpfilter/* +net/bridge/* +net/can/* +net/ceph/libceph.ko +net/core/* +net/dccp/* +net/decnet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/key/* +net/lapb/* +net/llc/* +net/netfilter/* +net/netlink/netlink_diag.ko +net/netrom/* +net/openvswitch/* +net/packet/af_packet_diag.ko +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/auth_gss/rpcsec_gss_krb5.ko +net/sunrpc/sunrpc.ko +net/tipc/* +net/unix/unix_diag.ko +net/vmw_vsock/* +net/x25/* +net/xfrm/* +! find sound/core -name oss -prune -o -name *.ko -print +sound/drivers/pcsp/snd-pcsp.ko +sound/pci/hda/snd-hda-tegra.ko +sound/pci/snd-ens1370.ko +sound/soc/tegra/snd-soc-tegra186-dspk.ko +sound/soc/tegra/snd-soc-tegra210-admaif.ko +sound/soc/tegra/snd-soc-tegra210-ahub.ko +sound/soc/tegra/snd-soc-tegra210-dmic.ko +sound/soc/tegra/snd-soc-tegra210-i2s.ko +sound/soundcore.ko +ubuntu/ubuntu-host/ubuntu-host.ko diff --git a/debian.nvidia-5.19/control.d/vars.nvidia b/debian.nvidia-5.19/control.d/vars.nvidia new file mode 100644 index 000000000000..1ad70d2d9bf8 --- /dev/null +++ b/debian.nvidia-5.19/control.d/vars.nvidia @@ -0,0 +1,6 @@ +arch="amd64 arm64" +supported="Nvidia-5.19" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.nvidia-5.19/control.d/vars.nvidia-64k b/debian.nvidia-5.19/control.d/vars.nvidia-64k new file mode 100644 index 000000000000..d5a6e93eb37f --- /dev/null +++ b/debian.nvidia-5.19/control.d/vars.nvidia-64k @@ -0,0 +1,6 @@ +arch="arm64" +supported="Nvidia-5.19 64K pages" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-efi-arm64 [arm64] | flash-kernel [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules" diff --git a/debian.nvidia-5.19/control.d/vars.nvidia-lowlatency b/debian.nvidia-5.19/control.d/vars.nvidia-lowlatency new file mode 100644 index 000000000000..a5173a5d0d44 --- /dev/null +++ b/debian.nvidia-5.19/control.d/vars.nvidia-lowlatency @@ -0,0 +1,6 @@ +arch="amd64" +supported="Nvidia-5.19 Lowlatency" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc [amd64] | grub-efi-amd64 [amd64] | grub-efi-ia32 [amd64] | grub [amd64] | lilo [amd64] | flash-kernel [arm64] | grub-efi-arm64 [arm64]" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [amd64]" diff --git a/debian.nvidia-5.19/control.stub.in b/debian.nvidia-5.19/control.stub.in new file mode 100644 index 000000000000..776f303e4110 --- /dev/null +++ b/debian.nvidia-5.19/control.stub.in @@ -0,0 +1,134 @@ +Source: SRCPKGNAME +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.9.4.0 +Build-Depends: + debhelper-compat (= 10), + cpio, + kmod , + makedumpfile [amd64] , + libcap-dev , + libelf-dev , + libnewt-dev , + libiberty-dev , + default-jdk-headless , + java-common , + rsync , + libdw-dev , + libpci-dev , + pkg-config , + flex , + bison , + libunwind8-dev [amd64 arm64 armhf ppc64el] , + liblzma-dev , + openssl , + libssl-dev , + libaudit-dev , + bc , + gawk , + libudev-dev , + autoconf , + automake , + libtool , + uuid-dev , + libnuma-dev [amd64 arm64 ppc64el s390x] , + dkms , + curl , + zstd [amd64 s390x] , + pahole [amd64 arm64 armhf ppc64el s390x riscv64] | dwarves (>= 1.21) [amd64 arm64 armhf ppc64el s390x riscv64] , + nvidia-dkms-kernel [arm64] , + nvidia-kernel-source [arm64] , +Build-Depends-Indep: + xmlto , + docbook-utils , + ghostscript , + fig2dev , + bzip2 , + sharutils , + asciidoc , + python3-dev , + python3-sphinx , + python3-sphinx-rtd-theme , + fontconfig , + python3-docutils , + imagemagick , + graphviz , + dvipng , + fonts-noto-cjk , + latexmk , + librsvg2-bin , +Vcs-Git: git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux-nvidia/+git/=SERIES= +XS-Testsuite: autopkgtest +#XS-Testsuite-Depends: gcc-4.7 binutils + +Package: SRCPKGNAME-headers-PKGVER-ABINUM +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, lsb-release +Description: Linux kernel version specific tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER. + +Package: SRCPKGNAME-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 arm64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-cloud-tools-common +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Description: Linux kernel version specific cloud tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools for cloud tools for version PKGVER. + +Package: SRCPKGNAME-cloud-tools-PKGVER-ABINUM +Build-Profiles: +Architecture: amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common +Description: Linux kernel version specific cloud tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools for cloud tools for version PKGVER-ABINUM on + =HUMAN=. + You probably want to install linux-cloud-tools-PKGVER-ABINUM-. + +Package: SRCPKGNAME-tools-host +Build-Profiles: +Architecture: all +Multi-Arch: foreign +Section: kernel +Priority: optional +Depends: ${misc:Depends}, python3 +Description: Linux kernel VM host tools + This package provides kernel tools useful for VM hosts. + diff --git a/debian.nvidia-5.19/copyright b/debian.nvidia-5.19/copyright new file mode 100644 index 000000000000..d1d04a6d6697 --- /dev/null +++ b/debian.nvidia-5.19/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. diff --git a/debian.nvidia-5.19/etc/getabis b/debian.nvidia-5.19/etc/getabis new file mode 100644 index 000000000000..bf01c90ad568 --- /dev/null +++ b/debian.nvidia-5.19/etc/getabis @@ -0,0 +1,15 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux-nvidia-5.19" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux-nvidia-5.19" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux-nvidia-5.19" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux-nvidia-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/pool/main/l/linux-nvidia-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/ppa2/ubuntu/pool/main/l/linux-nvidia-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/unstable/ubuntu/pool/main/l/linux-nvidia-5.19" + "http://ppa.launchpad.net/canonical-kernel-team/bootstrap/ubuntu/pool/main/l/linux-nvidia-5.19" +) + +package_prefixes linux-buildinfo + +getall amd64 nvidia nvidia-lowlatency +getall arm64 nvidia nvidia-64k diff --git a/debian.nvidia-5.19/etc/kernelconfig b/debian.nvidia-5.19/etc/kernelconfig new file mode 100644 index 000000000000..1fad5c57097d --- /dev/null +++ b/debian.nvidia-5.19/etc/kernelconfig @@ -0,0 +1 @@ +archs="amd64 arm64" diff --git a/debian.nvidia-5.19/etc/update.conf b/debian.nvidia-5.19/etc/update.conf new file mode 100644 index 000000000000..0d8b669d2748 --- /dev/null +++ b/debian.nvidia-5.19/etc/update.conf @@ -0,0 +1,7 @@ +# WARNING: we do not create update.conf when we are not a +# derivative. Various cranky components make use of this. +# If we start unconditionally creating update.conf we need +# to fix at least cranky close and cranky rebase. +RELEASE_REPO=git://git.launchpad.net/~ubuntu-kernel/ubuntu/+source/linux/+git/jammy +SOURCE_RELEASE_BRANCH=hwe-5.19-next +DEBIAN_MASTER=debian.hwe-5.19 diff --git a/debian.nvidia-5.19/modprobe.d/common.conf b/debian.nvidia-5.19/modprobe.d/common.conf new file mode 100644 index 000000000000..e0fbbd6e060d --- /dev/null +++ b/debian.nvidia-5.19/modprobe.d/common.conf @@ -0,0 +1,3 @@ +# LP:1434842 -- disable OSS drivers by default to allow pulseaudio to emulate +blacklist snd-mixer-oss +blacklist snd-pcm-oss diff --git a/debian.nvidia-5.19/reconstruct b/debian.nvidia-5.19/reconstruct new file mode 100644 index 000000000000..45ee93a1ad04 --- /dev/null +++ b/debian.nvidia-5.19/reconstruct @@ -0,0 +1,68 @@ +# Recreate any symlinks created since the orig. +# Remove any files deleted from the orig. +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb2-phy.yaml' +rm -f 'Documentation/devicetree/bindings/phy/amlogic,meson-g12a-usb3-pcie-phy.yaml' +rm -f 'arch/arm/crypto/blake2s-shash.c' +rm -f 'arch/x86/crypto/blake2s-shash.c' +rm -f 'crypto/blake2s_generic.c' +rm -f 'fs/io-wq.c' +rm -f 'fs/io-wq.h' +rm -f 'fs/io_uring.c' +rm -f 'net/sched/cls_tcindex.c' +rm -f 'tools/testing/selftests/cpu-hotplug/config' +rm -f 'tools/testing/selftests/net/bpf/Makefile' +rm -f 'tools/testing/selftests/net/bpf/nat6to4.c' +chmod +x 'debian.hwe-5.19/scripts/helpers/copy-files' +chmod +x 'debian.hwe-5.19/scripts/helpers/local-mangle' +chmod +x 'debian/cloud-tools/hv_get_dhcp_info' +chmod +x 'debian/cloud-tools/hv_get_dns_info' +chmod +x 'debian/cloud-tools/hv_set_ifconfig' +chmod +x 'debian/rules' +chmod +x 'debian/scripts/abi-check' +chmod +x 'debian/scripts/config-check' +chmod +x 'debian/scripts/control-create' +chmod +x 'debian/scripts/dkms-build' +chmod +x 'debian/scripts/dkms-build--nvidia-N' +chmod +x 'debian/scripts/dkms-build-configure--zfs' +chmod +x 'debian/scripts/file-downloader' +chmod +x 'debian/scripts/helpers/close' +chmod +x 'debian/scripts/helpers/open' +chmod +x 'debian/scripts/helpers/rebase' +chmod +x 'debian/scripts/link-headers' +chmod +x 'debian/scripts/misc/arch-has-odm-enabled.sh' +chmod +x 'debian/scripts/misc/final-checks' +chmod +x 'debian/scripts/misc/find-missing-sauce.sh' +chmod +x 'debian/scripts/misc/fw-to-ihex.sh' +chmod +x 'debian/scripts/misc/gen-auto-reconstruct' +chmod +x 'debian/scripts/misc/getabis' +chmod +x 'debian/scripts/misc/git-ubuntu-log' +chmod +x 'debian/scripts/misc/insert-changes' +chmod +x 'debian/scripts/misc/insert-mainline-changes' +chmod +x 'debian/scripts/misc/insert-ubuntu-changes' +chmod +x 'debian/scripts/misc/kernelconfig' +chmod +x 'debian/scripts/misc/retag' +chmod +x 'debian/scripts/misc/splitconfig.pl' +chmod +x 'debian/scripts/misc/tristate.sh' +chmod +x 'debian/scripts/misc/update-aufs.sh' +chmod +x 'debian/scripts/module-check' +chmod +x 'debian/scripts/module-inclusion' +chmod +x 'debian/scripts/module-signature-check' +chmod +x 'debian/scripts/retpoline-check' +chmod +x 'debian/scripts/retpoline-extract' +chmod +x 'debian/scripts/retpoline-extract-one' +chmod +x 'debian/scripts/sign-module' +chmod +x 'debian/templates/extra.postinst.in' +chmod +x 'debian/templates/extra.postrm.in' +chmod +x 'debian/templates/headers.postinst.in' +chmod +x 'debian/templates/image.postinst.in' +chmod +x 'debian/templates/image.postrm.in' +chmod +x 'debian/templates/image.preinst.in' +chmod +x 'debian/templates/image.prerm.in' +chmod +x 'debian/tests-build/check-aliases' +chmod +x 'debian/tests/rebuild' +chmod +x 'debian/tests/ubuntu-regression-suite' +chmod -x 'drivers/gpu/drm/vmwgfx/vmwgfx_msg_arm64.h' +chmod +x 'drivers/watchdog/f71808e_wdt.c' +chmod +x 'update-dkms-versions' +chmod +x 'update-version-dkms' +exit 0 diff --git a/debian.nvidia-5.19/rules.d/amd64.mk b/debian.nvidia-5.19/rules.d/amd64.mk new file mode 100644 index 000000000000..40e8908782c7 --- /dev/null +++ b/debian.nvidia-5.19/rules.d/amd64.mk @@ -0,0 +1,23 @@ +human_arch = 64 bit x86 +build_arch = x86 +header_arch = $(build_arch) +defconfig = defconfig +flavours = nvidia nvidia-lowlatency +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +vdso = vdso_install +no_dumpfile = true +uefi_signed = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true +do_tools_x86 = true +do_tools_hyperv = true +do_tools_host = true +do_extras_package = true +do_tools_common = true +do_tools_acpidbg = true +do_odm_drivers = false diff --git a/debian.nvidia-5.19/rules.d/arm64.mk b/debian.nvidia-5.19/rules.d/arm64.mk new file mode 100644 index 000000000000..18a9e6108deb --- /dev/null +++ b/debian.nvidia-5.19/rules.d/arm64.mk @@ -0,0 +1,21 @@ +human_arch = ARMv8 +build_arch = arm64 +header_arch = arm64 +defconfig = defconfig +flavours = nvidia nvidia-64k +build_image = Image.gz +kernel_file = arch/$(build_arch)/boot/Image.gz +install_file = vmlinuz +no_dumpfile = true +uefi_signed = true + +vdso = vdso_install + +do_extras_package = true +do_tools_usbip = true +do_tools_cpupower = true +do_tools_perf = true +do_tools_perf_jvmti = true +do_tools_bpftool = true + +do_dtbs = true diff --git a/debian.nvidia-5.19/rules.d/hooks.mk b/debian.nvidia-5.19/rules.d/hooks.mk new file mode 100644 index 000000000000..ee50061270da --- /dev/null +++ b/debian.nvidia-5.19/rules.d/hooks.mk @@ -0,0 +1,6 @@ +do_enforce_all = true +do_libc_dev_package = false +do_doc_package = false + +do_zfs = true +do_v4l2loopback = true diff --git a/debian.nvidia-5.19/tracking-bug b/debian.nvidia-5.19/tracking-bug new file mode 100644 index 000000000000..843b66416d3b --- /dev/null +++ b/debian.nvidia-5.19/tracking-bug @@ -0,0 +1 @@ +2021991 d2023.05.30-1 diff --git a/debian.nvidia-5.19/upstream-stable b/debian.nvidia-5.19/upstream-stable new file mode 100644 index 000000000000..c82a4bc64e13 --- /dev/null +++ b/debian.nvidia-5.19/upstream-stable @@ -0,0 +1,3 @@ +# The following upstream stable releases have been ported: +[upstream-stable] + linux-5.19.y = v5.19.7 diff --git a/debian.nvidia-5.19/variants b/debian.nvidia-5.19/variants new file mode 100644 index 000000000000..0fb7c643ef56 --- /dev/null +++ b/debian.nvidia-5.19/variants @@ -0,0 +1 @@ +-5.19 diff --git a/debian/debian.env b/debian/debian.env index be31a0c27019..a4c1ade5bb5e 100644 --- a/debian/debian.env +++ b/debian/debian.env @@ -1 +1 @@ -DEBIAN=debian.master +DEBIAN=debian.nvidia-5.19 diff --git a/debian/dkms-versions b/debian/dkms-versions index e4a33777982f..891d1d737410 100644 --- a/debian/dkms-versions +++ b/debian/dkms-versions @@ -1,5 +1,3 @@ zfs-linux 2.1.5-1ubuntu6 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 -ipu6-drivers 0~git202211220708.278b7e3d-0ubuntu0.22.10.1 modulename=ipu6 debpath=pool/universe/i/%package%/intel-ipu6-dkms_%version%_amd64.deb arch=amd64 rprovides=ipu6-modules rprovides=intel-ipu6-dkms type=standalone -ivsc-driver 0~git202211241536.70d95269-0ubuntu0.22.10.1 modulename=ivsc debpath=pool/universe/i/%package%/intel-vsc-dkms_%version%_amd64.deb arch=amd64 rprovides=ivsc-modules rprovides=intel-vsc-dkms type=standalone -backport-iwlwifi-dkms 9904-0ubuntu3.1 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 modulename=v4l2loopback debpath=pool/universe/v/%package%/v4l2loopback-dkms_%version%_all.deb arch=amd64 rprovides=v4l2loopback-modules rprovides=v4l2loopback-dkms +nvidia-fs 2.15.3-1~jammy modulename=nvidia-fs debpath=pool/universe/n/%package%/nvidia-fs-dkms_%version%_arm64.deb arch=arm64 rprovides=nvidia-fs-modules rprovides=nvidia-fs-dkms type=standalone +mstflint 4.24.0-1~jammy modulename=mstflint_access debpath=pool/universe/m/%package%/mstflint-dkms_%version%_all.deb arch=arm64 rprovides=mstflint-modules rprovides=mstflint-dkms diff --git a/debian/rules.d/0-common-vars.mk b/debian/rules.d/0-common-vars.mk index 1d8f8b85772f..a37befa24006 100644 --- a/debian/rules.d/0-common-vars.mk +++ b/debian/rules.d/0-common-vars.mk @@ -119,7 +119,7 @@ CROSS_COMPILE ?= $(DEB_HOST_GNU_TYPE)- # If a given kernel wants to change this, they can do so via their own # $(DEBIAN)/rules.d/hooks.mk and $(DEBIAN)/rules.d/$(arch).mk files # -export gcc?=gcc-12 +export gcc?=gcc GCC_BUILD_DEPENDS=\ $(gcc), $(gcc)-aarch64-linux-gnu [arm64] , $(gcc)-arm-linux-gnueabihf [armhf] , $(gcc)-powerpc64le-linux-gnu [ppc64el] , $(gcc)-riscv64-linux-gnu [riscv64] , $(gcc)-s390x-linux-gnu [s390x] , $(gcc)-x86-64-linux-gnu [amd64] , abidir := $(CURDIR)/$(DEBIAN)/__abi.current/$(arch) diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index 6eef2039ec7a..3b146b8aae93 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -714,7 +714,7 @@ $(stampdir)/stamp-prepare-perarch: ifeq ($(do_any_tools),true) rm -rf $(builddirpa) install -d $(builddirpa) - rsync -a --exclude debian --exclude debian.master --exclude $(DEBIAN) --exclude .git -a ./ $(builddirpa)/ + rsync -a --exclude debian --exclude debian.master --exclude debian.hwe-5.19 --exclude $(DEBIAN) --exclude .git -a ./ $(builddirpa)/ endif touch $@ diff --git a/debian/scripts/misc/getabis b/debian/scripts/misc/getabis index 8bb7188956a6..d9cf1f250db4 100755 --- a/debian/scripts/misc/getabis +++ b/debian/scripts/misc/getabis @@ -17,7 +17,7 @@ fi ver=$1 revision=$2 -abi=$(echo $revision | sed -r -e 's/([^\+~]*)\.[^\.]+(~.*)?(\+.*)?$/\1/') +abi=${revision%%.*} verabi=$ver-$abi verfull=$ver-$revision diff --git a/debian/scripts/misc/git-ubuntu-log b/debian/scripts/misc/git-ubuntu-log index 13e40b84dc1f..3700775a1e52 100755 --- a/debian/scripts/misc/git-ubuntu-log +++ b/debian/scripts/misc/git-ubuntu-log @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 import sys diff --git a/drivers/acpi/arm64/Kconfig b/drivers/acpi/arm64/Kconfig index d4a72835f328..b3ed6212244c 100644 --- a/drivers/acpi/arm64/Kconfig +++ b/drivers/acpi/arm64/Kconfig @@ -18,3 +18,6 @@ config ACPI_AGDI reset command. If set, the kernel parses AGDI table and listens for the command. + +config ACPI_APMT + bool diff --git a/drivers/acpi/arm64/Makefile b/drivers/acpi/arm64/Makefile index 7b9e4045659d..e21a9e84e394 100644 --- a/drivers/acpi/arm64/Makefile +++ b/drivers/acpi/arm64/Makefile @@ -2,4 +2,5 @@ obj-$(CONFIG_ACPI_AGDI) += agdi.o obj-$(CONFIG_ACPI_IORT) += iort.o obj-$(CONFIG_ACPI_GTDT) += gtdt.o +obj-$(CONFIG_ACPI_APMT) += apmt.o obj-y += dma.o diff --git a/drivers/acpi/arm64/apmt.c b/drivers/acpi/arm64/apmt.c new file mode 100644 index 000000000000..8cab69fa5d59 --- /dev/null +++ b/drivers/acpi/arm64/apmt.c @@ -0,0 +1,178 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * ARM APMT table support. + * Design document number: ARM DEN0117. + * + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. + * + */ + +#define pr_fmt(fmt) "ACPI: APMT: " fmt + +#include +#include +#include +#include +#include + +#define DEV_NAME "arm-cs-arch-pmu" + +/* There can be up to 3 resources: page 0 and 1 address, and interrupt. */ +#define DEV_MAX_RESOURCE_COUNT 3 + +/* Root pointer to the mapped APMT table */ +static struct acpi_table_header *apmt_table; + +static int __init apmt_init_resources(struct resource *res, + struct acpi_apmt_node *node) +{ + int irq, trigger; + int num_res = 0; + + res[num_res].start = node->base_address0; + res[num_res].end = node->base_address0 + SZ_4K - 1; + res[num_res].flags = IORESOURCE_MEM; + + num_res++; + + res[num_res].start = node->base_address1; + res[num_res].end = node->base_address1 + SZ_4K - 1; + res[num_res].flags = IORESOURCE_MEM; + + num_res++; + + if (node->ovflw_irq != 0) { + trigger = (node->ovflw_irq_flags & ACPI_APMT_OVFLW_IRQ_FLAGS_MODE); + trigger = (trigger == ACPI_APMT_OVFLW_IRQ_FLAGS_MODE_LEVEL) ? + ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE; + irq = acpi_register_gsi(NULL, node->ovflw_irq, trigger, + ACPI_ACTIVE_HIGH); + + if (irq <= 0) { + pr_warn("APMT could not register gsi hwirq %d\n", irq); + return num_res; + } + + res[num_res].start = irq; + res[num_res].end = irq; + res[num_res].flags = IORESOURCE_IRQ; + + num_res++; + } + + return num_res; +} + +/** + * apmt_add_platform_device() - Allocate a platform device for APMT node + * @node: Pointer to device ACPI APMT node + * @fwnode: fwnode associated with the APMT node + * + * Returns: 0 on success, <0 failure + */ +static int __init apmt_add_platform_device(struct acpi_apmt_node *node, + struct fwnode_handle *fwnode) +{ + struct platform_device *pdev; + int ret, count; + struct resource res[DEV_MAX_RESOURCE_COUNT]; + + pdev = platform_device_alloc(DEV_NAME, PLATFORM_DEVID_AUTO); + if (!pdev) + return -ENOMEM; + + memset(res, 0, sizeof(res)); + + count = apmt_init_resources(res, node); + + ret = platform_device_add_resources(pdev, res, count); + if (ret) + goto dev_put; + + /* + * Add a copy of APMT node pointer to platform_data to be used to + * retrieve APMT data information. + */ + ret = platform_device_add_data(pdev, &node, sizeof(node)); + if (ret) + goto dev_put; + + pdev->dev.fwnode = fwnode; + + ret = platform_device_add(pdev); + + if (ret) + goto dev_put; + + return 0; + +dev_put: + platform_device_put(pdev); + + return ret; +} + +static int __init apmt_init_platform_devices(void) +{ + struct acpi_apmt_node *apmt_node; + struct acpi_table_apmt *apmt; + struct fwnode_handle *fwnode; + u64 offset, end; + int ret; + + /* + * apmt_table and apmt both point to the start of APMT table, but + * have different struct types + */ + apmt = (struct acpi_table_apmt *)apmt_table; + offset = sizeof(*apmt); + end = apmt->header.length; + + while (offset < end) { + apmt_node = ACPI_ADD_PTR(struct acpi_apmt_node, apmt, + offset); + + fwnode = acpi_alloc_fwnode_static(); + if (!fwnode) + return -ENOMEM; + + ret = apmt_add_platform_device(apmt_node, fwnode); + if (ret) { + acpi_free_fwnode_static(fwnode); + return ret; + } + + offset += apmt_node->length; + } + + return 0; +} + +void __init acpi_apmt_init(void) +{ + acpi_status status; + int ret; + + /** + * APMT table nodes will be used at runtime after the apmt init, + * so we don't need to call acpi_put_table() to release + * the APMT table mapping. + */ + status = acpi_get_table(ACPI_SIG_APMT, 0, &apmt_table); + + if (ACPI_FAILURE(status)) { + if (status != AE_NOT_FOUND) { + const char *msg = acpi_format_exception(status); + + pr_err("Failed to get APMT table, %s\n", msg); + } + + return; + } + + ret = apmt_init_platform_devices(); + if (ret) { + pr_err("Failed to initialize APMT platform devices, ret: %d\n", ret); + acpi_put_table(apmt_table); + } +} diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 1d36bb684f5c..ad656bcb1485 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -27,6 +27,7 @@ #include #endif #include +#include #include #include #include @@ -1411,6 +1412,7 @@ static int __init acpi_init(void) acpi_setup_sb_notify_handler(); acpi_viot_init(); acpi_agdi_init(); + acpi_apmt_init(); return 0; } diff --git a/drivers/char/tpm/Makefile b/drivers/char/tpm/Makefile index 66d39ea6bd10..092ba0c79f67 100644 --- a/drivers/char/tpm/Makefile +++ b/drivers/char/tpm/Makefile @@ -25,6 +25,7 @@ obj-$(CONFIG_TCG_TIS_SYNQUACER) += tpm_tis_synquacer.o obj-$(CONFIG_TCG_TIS_SPI) += tpm_tis_spi.o tpm_tis_spi-y := tpm_tis_spi_main.o +tpm_tis_spi-y += tpm_tis_spi_tegra.o tpm_tis_spi-$(CONFIG_TCG_TIS_SPI_CR50) += tpm_tis_spi_cr50.o obj-$(CONFIG_TCG_TIS_I2C_CR50) += tpm_tis_i2c_cr50.o diff --git a/drivers/char/tpm/tpm_tis_spi.h b/drivers/char/tpm/tpm_tis_spi.h index d0f66f6f1931..feaea14b428b 100644 --- a/drivers/char/tpm/tpm_tis_spi.h +++ b/drivers/char/tpm/tpm_tis_spi.h @@ -31,6 +31,7 @@ extern int tpm_tis_spi_init(struct spi_device *spi, struct tpm_tis_spi_phy *phy, extern int tpm_tis_spi_transfer(struct tpm_tis_data *data, u32 addr, u16 len, u8 *in, const u8 *out); +extern int tegra_tpm_spi_probe(struct spi_device *spi); #ifdef CONFIG_TCG_TIS_SPI_CR50 extern int cr50_spi_probe(struct spi_device *spi); #else diff --git a/drivers/char/tpm/tpm_tis_spi_main.c b/drivers/char/tpm/tpm_tis_spi_main.c index a0963a3e92bd..5d4502a4461a 100644 --- a/drivers/char/tpm/tpm_tis_spi_main.c +++ b/drivers/char/tpm/tpm_tis_spi_main.c @@ -198,7 +198,7 @@ static int tpm_tis_spi_driver_probe(struct spi_device *spi) const struct spi_device_id *spi_dev_id = spi_get_device_id(spi); tpm_tis_spi_probe_func probe_func; - probe_func = of_device_get_match_data(&spi->dev); + probe_func = device_get_match_data(&spi->dev); if (!probe_func) { if (spi_dev_id) { probe_func = (tpm_tis_spi_probe_func)spi_dev_id->driver_data; @@ -227,6 +227,7 @@ static const struct spi_device_id tpm_tis_spi_id[] = { { "tpm_tis_spi", (unsigned long)tpm_tis_spi_probe }, { "tpm_tis-spi", (unsigned long)tpm_tis_spi_probe }, { "cr50", (unsigned long)cr50_spi_probe }, + { "tegra-tpm-spi", (unsigned long)tegra_tpm_spi_probe }, {} }; MODULE_DEVICE_TABLE(spi, tpm_tis_spi_id); @@ -236,6 +237,7 @@ static const struct of_device_id of_tis_spi_match[] = { { .compatible = "infineon,slb9670", .data = tpm_tis_spi_probe }, { .compatible = "tcg,tpm_tis-spi", .data = tpm_tis_spi_probe }, { .compatible = "google,cr50", .data = cr50_spi_probe }, + { .compatible = "nvidia,tegra-tpm-spi", .data = tegra_tpm_spi_probe }, {} }; MODULE_DEVICE_TABLE(of, of_tis_spi_match); diff --git a/drivers/char/tpm/tpm_tis_spi_tegra.c b/drivers/char/tpm/tpm_tis_spi_tegra.c new file mode 100644 index 000000000000..c2d38853f1d2 --- /dev/null +++ b/drivers/char/tpm/tpm_tis_spi_tegra.c @@ -0,0 +1,121 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2023 NVIDIA CORPORATION. + * + * This device driver implements TEGRA QSPI hw wait detection for chips + * + * It is based on tpm_tis_spi driver by Peter Huewe and Christophe Ricard. + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "tpm_tis_core.h" +#include "tpm_tis_spi.h" + +#define MAX_SPI_FRAMESIZE 64 + +int tpm_tis_spi_tegra_transfer(struct tpm_tis_data *data, u32 addr, u16 len, + u8 *in, const u8 *out) +{ + struct tpm_tis_spi_phy *phy = to_tpm_tis_spi_phy(data); + int ret = 0; + struct spi_message m; + struct spi_transfer spi_xfer[3]; + u8 transfer_len; + + spi_bus_lock(phy->spi_device->master); + + while (len) { + transfer_len = min_t(u16, len, MAX_SPI_FRAMESIZE); + + spi_message_init(&m); + phy->iobuf[0] = (in ? 0x80 : 0) | (transfer_len - 1); + phy->iobuf[1] = 0xd4; + phy->iobuf[2] = addr >> 8; + phy->iobuf[3] = addr; + + memset(&spi_xfer, 0, sizeof(spi_xfer)); + + spi_xfer[0].tx_buf = phy->iobuf; + spi_xfer[0].len = 1; + spi_message_add_tail(&spi_xfer[0], &m); + + spi_xfer[1].tx_buf = phy->iobuf + 1; + spi_xfer[1].len = 3; + spi_message_add_tail(&spi_xfer[1], &m); + + if (out) { + spi_xfer[2].tx_buf = &phy->iobuf[4]; + spi_xfer[2].rx_buf = NULL; + memcpy(&phy->iobuf[4], out, transfer_len); + out += transfer_len; + } + if (in) { + spi_xfer[2].tx_buf = NULL; + spi_xfer[2].rx_buf = &phy->iobuf[4]; + } + spi_xfer[2].len = transfer_len; + spi_message_add_tail(&spi_xfer[2], &m); + + reinit_completion(&phy->ready); + ret = spi_sync_locked(phy->spi_device, &m); + if (ret < 0) + goto exit; + + if (in) { + memcpy(in, &phy->iobuf[4], transfer_len); + in += transfer_len; + } + + len -= transfer_len; + } + +exit: + spi_bus_unlock(phy->spi_device->master); + return ret; +} + +static int tpm_tis_spi_tegra_read_bytes(struct tpm_tis_data *data, u32 addr, + u16 len, u8 *result, enum tpm_tis_io_mode io_mode) +{ + return tpm_tis_spi_tegra_transfer(data, addr, len, result, NULL); +} + +static int tpm_tis_spi_tegra_write_bytes(struct tpm_tis_data *data, u32 addr, + u16 len, const u8 *value, enum tpm_tis_io_mode io_mode) +{ + return tpm_tis_spi_tegra_transfer(data, addr, len, NULL, value); +} + +static const struct tpm_tis_phy_ops tegra_tpm_spi_phy_ops = { + .read_bytes = tpm_tis_spi_tegra_read_bytes, + .write_bytes = tpm_tis_spi_tegra_write_bytes, +}; + +int tegra_tpm_spi_probe(struct spi_device *dev) +{ + struct tpm_tis_spi_phy *phy; + int irq; + + phy = devm_kzalloc(&dev->dev, sizeof(struct tpm_tis_spi_phy), + GFP_KERNEL); + if (!phy) + return -ENOMEM; + + phy->flow_control = NULL; + + /* If the SPI device has an IRQ then use that */ + if (dev->irq > 0) + irq = dev->irq; + else + irq = -1; + + init_completion(&phy->ready); + return tpm_tis_spi_init(dev, phy, irq, &tegra_tpm_spi_phy_ops); +} diff --git a/drivers/gpu/drm/ast/ast_main.c b/drivers/gpu/drm/ast/ast_main.c index 067453266897..5df527051177 100644 --- a/drivers/gpu/drm/ast/ast_main.c +++ b/drivers/gpu/drm/ast/ast_main.c @@ -427,11 +427,12 @@ struct ast_private *ast_device_create(const struct drm_driver *drv, return ERR_PTR(-EIO); /* - * If we don't have IO space at all, use MMIO now and - * assume the chip has MMIO enabled by default (rev 0x20 - * and higher). + * After AST2500, MMIO is enabled by default, and it should be adopted + * to be compatible with Arm. */ - if (!(pci_resource_flags(pdev, 2) & IORESOURCE_IO)) { + if (pdev->revision >= 0x40) { + ast->ioregs = ast->regs + AST_IO_MM_OFFSET; + } else if (!(pci_resource_flags(pdev, 2) & IORESOURCE_IO)) { drm_info(dev, "platform has no IO space, trying MMIO\n"); ast->ioregs = ast->regs + AST_IO_MM_OFFSET; } diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c index cc860137009e..7d6c4c0fff37 100644 --- a/drivers/i2c/busses/i2c-tegra.c +++ b/drivers/i2c/busses/i2c-tegra.c @@ -242,9 +242,10 @@ struct tegra_i2c_hw_feature { * @is_dvc: identifies the DVC I2C controller, has a different register layout * @is_vi: identifies the VI I2C controller, has a different register layout * @msg_complete: transfer completion notifier + * @msg_buf_remaining: size of unsent data in the message buffer + * @msg_len: length of message in current transfer * @msg_err: error code for completed message * @msg_buf: pointer to current message data - * @msg_buf_remaining: size of unsent data in the message buffer * @msg_read: indicates that the transfer is a read access * @timings: i2c timings information like bus frequency * @multimaster_mode: indicates that I2C controller is in multi-master mode @@ -277,6 +278,7 @@ struct tegra_i2c_dev { struct completion msg_complete; size_t msg_buf_remaining; + unsigned int msg_len; int msg_err; u8 *msg_buf; @@ -1164,7 +1166,7 @@ static void tegra_i2c_push_packet_header(struct tegra_i2c_dev *i2c_dev, else i2c_writel(i2c_dev, packet_header, I2C_TX_FIFO); - packet_header = msg->len - 1; + packet_header = i2c_dev->msg_len - 1; if (i2c_dev->dma_mode && !i2c_dev->msg_read) *dma_buf++ = packet_header; @@ -1237,20 +1239,32 @@ static int tegra_i2c_xfer_msg(struct tegra_i2c_dev *i2c_dev, return err; i2c_dev->msg_buf = msg->buf; + i2c_dev->msg_len = msg->len; - /* The condition true implies smbus block read and len is already read */ - if (msg->flags & I2C_M_RECV_LEN && end_state != MSG_END_CONTINUE) - i2c_dev->msg_buf = msg->buf + 1; - - i2c_dev->msg_buf_remaining = msg->len; i2c_dev->msg_err = I2C_ERR_NONE; i2c_dev->msg_read = !!(msg->flags & I2C_M_RD); reinit_completion(&i2c_dev->msg_complete); + /* + * For SMBUS block read command, read only 1 byte in the first transfer. + * Adjust that 1 byte for the next transfer in the msg buffer and msg + * length. + */ + if (msg->flags & I2C_M_RECV_LEN) { + if (end_state == MSG_END_CONTINUE) { + i2c_dev->msg_len = 1; + } else { + i2c_dev->msg_buf += 1; + i2c_dev->msg_len -= 1; + } + } + + i2c_dev->msg_buf_remaining = i2c_dev->msg_len; + if (i2c_dev->msg_read) - xfer_size = msg->len; + xfer_size = i2c_dev->msg_len; else - xfer_size = msg->len + I2C_PACKET_HEADER_SIZE; + xfer_size = i2c_dev->msg_len + I2C_PACKET_HEADER_SIZE; xfer_size = ALIGN(xfer_size, BYTES_PER_FIFO_WORD); @@ -1290,7 +1304,7 @@ static int tegra_i2c_xfer_msg(struct tegra_i2c_dev *i2c_dev, if (!i2c_dev->msg_read) { if (i2c_dev->dma_mode) { memcpy(i2c_dev->dma_buf + I2C_PACKET_HEADER_SIZE, - msg->buf, msg->len); + msg->buf, i2c_dev->msg_len); dma_sync_single_for_device(i2c_dev->dma_dev, i2c_dev->dma_phys, @@ -1347,7 +1361,7 @@ static int tegra_i2c_xfer_msg(struct tegra_i2c_dev *i2c_dev, i2c_dev->dma_phys, xfer_size, DMA_FROM_DEVICE); - memcpy(i2c_dev->msg_buf, i2c_dev->dma_buf, msg->len); + memcpy(i2c_dev->msg_buf, i2c_dev->dma_buf, i2c_dev->msg_len); } } @@ -1403,8 +1417,8 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], MSG_END_CONTINUE); if (ret) break; - /* Set the read byte as msg len */ - msgs[i].len = msgs[i].buf[0]; + /* Set the msg length from first byte */ + msgs[i].len += msgs[i].buf[0]; dev_dbg(i2c_dev->dev, "reading %d bytes\n", msgs[i].len); } ret = tegra_i2c_xfer_msg(i2c_dev, &msgs[i], end_type); @@ -1825,6 +1839,7 @@ static int tegra_i2c_probe(struct platform_device *pdev) i2c_dev->adapter.class = I2C_CLASS_DEPRECATED; i2c_dev->adapter.algo = &tegra_i2c_algo; i2c_dev->adapter.nr = pdev->id; + ACPI_COMPANION_SET(&i2c_dev->adapter.dev, ACPI_COMPANION(&pdev->dev)); if (i2c_dev->hw->supports_bus_clear) i2c_dev->adapter.bus_recovery_info = &tegra_i2c_recovery_info; diff --git a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c index e119ff8396c9..2851bd65264a 100644 --- a/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c +++ b/drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c @@ -2420,23 +2420,14 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) goto out_unlock; } } else if (smmu_domain->smmu != smmu) { - dev_err(dev, - "cannot attach to SMMU %s (upstream of %s)\n", - dev_name(smmu_domain->smmu->dev), - dev_name(smmu->dev)); - ret = -ENXIO; + ret = -EINVAL; goto out_unlock; } else if (smmu_domain->stage == ARM_SMMU_DOMAIN_S1 && master->ssid_bits != smmu_domain->s1_cfg.s1cdmax) { - dev_err(dev, - "cannot attach to incompatible domain (%u SSID bits != %u)\n", - smmu_domain->s1_cfg.s1cdmax, master->ssid_bits); ret = -EINVAL; goto out_unlock; } else if (smmu_domain->stage == ARM_SMMU_DOMAIN_S1 && smmu_domain->stall_enabled != master->stall_enabled) { - dev_err(dev, "cannot attach to stall-%s domain\n", - smmu_domain->stall_enabled ? "enabled" : "disabled"); ret = -EINVAL; goto out_unlock; } diff --git a/drivers/iommu/arm/arm-smmu/arm-smmu.c b/drivers/iommu/arm/arm-smmu/arm-smmu.c index 2ed3594f384e..5a6ada0620fe 100644 --- a/drivers/iommu/arm/arm-smmu/arm-smmu.c +++ b/drivers/iommu/arm/arm-smmu/arm-smmu.c @@ -1167,9 +1167,6 @@ static int arm_smmu_attach_dev(struct iommu_domain *domain, struct device *dev) * different SMMUs. */ if (smmu_domain->smmu != smmu) { - dev_err(dev, - "cannot attach to SMMU %s whilst already attached to domain on SMMU %s\n", - dev_name(smmu_domain->smmu->dev), dev_name(smmu->dev)); ret = -EINVAL; goto rpm_put; } diff --git a/drivers/iommu/arm/arm-smmu/qcom_iommu.c b/drivers/iommu/arm/arm-smmu/qcom_iommu.c index c11d2c2cbb62..d8cc16f380fa 100644 --- a/drivers/iommu/arm/arm-smmu/qcom_iommu.c +++ b/drivers/iommu/arm/arm-smmu/qcom_iommu.c @@ -381,13 +381,8 @@ static int qcom_iommu_attach_dev(struct iommu_domain *domain, struct device *dev * Sanity check the domain. We don't support domains across * different IOMMUs. */ - if (qcom_domain->iommu != qcom_iommu) { - dev_err(dev, "cannot attach to IOMMU %s while already " - "attached to domain on IOMMU %s\n", - dev_name(qcom_domain->iommu->dev), - dev_name(qcom_iommu->dev)); + if (qcom_domain->iommu != qcom_iommu) return -EINVAL; - } return 0; } diff --git a/drivers/iommu/fsl_pamu.c b/drivers/iommu/fsl_pamu.c index 7a1a413f75ab..f92c5d807c83 100644 --- a/drivers/iommu/fsl_pamu.c +++ b/drivers/iommu/fsl_pamu.c @@ -211,7 +211,7 @@ int pamu_config_ppaace(int liodn, u32 omi, u32 stashid, int prot) ppaace->op_encode.index_ot.omi = omi; } else if (~omi != 0) { pr_debug("bad operation mapping index: %d\n", omi); - return -EINVAL; + return -ENODEV; } /* configure stash id */ diff --git a/drivers/iommu/fsl_pamu_domain.c b/drivers/iommu/fsl_pamu_domain.c index 94b4589dc67c..7a9646a8d853 100644 --- a/drivers/iommu/fsl_pamu_domain.c +++ b/drivers/iommu/fsl_pamu_domain.c @@ -258,7 +258,7 @@ static int fsl_pamu_attach_device(struct iommu_domain *domain, liodn = of_get_property(dev->of_node, "fsl,liodn", &len); if (!liodn) { pr_debug("missing fsl,liodn property at %pOF\n", dev->of_node); - return -EINVAL; + return -ENODEV; } spin_lock_irqsave(&dma_domain->domain_lock, flags); @@ -267,7 +267,7 @@ static int fsl_pamu_attach_device(struct iommu_domain *domain, if (liodn[i] >= PAACE_NUMBER_ENTRIES) { pr_debug("Invalid liodn %d, attach device failed for %pOF\n", liodn[i], dev->of_node); - ret = -EINVAL; + ret = -ENODEV; break; } diff --git a/drivers/iommu/intel/iommu.c b/drivers/iommu/intel/iommu.c index a52d4cdc4216..c430273fccd9 100644 --- a/drivers/iommu/intel/iommu.c +++ b/drivers/iommu/intel/iommu.c @@ -4329,19 +4329,15 @@ static int prepare_domain_attach_device(struct iommu_domain *domain, return -ENODEV; if (dmar_domain->force_snooping && !ecap_sc_support(iommu->ecap)) - return -EOPNOTSUPP; + return -EINVAL; /* check if this iommu agaw is sufficient for max mapped address */ addr_width = agaw_to_width(iommu->agaw); if (addr_width > cap_mgaw(iommu->cap)) addr_width = cap_mgaw(iommu->cap); - if (dmar_domain->max_addr > (1LL << addr_width)) { - dev_err(dev, "%s: iommu width (%d) is not " - "sufficient for the mapped address (%llx)\n", - __func__, addr_width, dmar_domain->max_addr); - return -EFAULT; - } + if (dmar_domain->max_addr > (1LL << addr_width)) + return -EINVAL; dmar_domain->gaw = addr_width; /* diff --git a/drivers/iommu/intel/pasid.c b/drivers/iommu/intel/pasid.c index 663301a123e9..1a11476c9c6c 100644 --- a/drivers/iommu/intel/pasid.c +++ b/drivers/iommu/intel/pasid.c @@ -101,8 +101,10 @@ int intel_pasid_alloc_table(struct device *dev) might_sleep(); info = dev_iommu_priv_get(dev); - if (WARN_ON(!info || !dev_is_pci(dev) || info->pasid_table)) - return -EINVAL; + if (WARN_ON(!info || !dev_is_pci(dev))) + return -ENODEV; + if (WARN_ON(info->pasid_table)) + return -EEXIST; pasid_table = kzalloc(sizeof(*pasid_table), GFP_KERNEL); if (!pasid_table) diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c index 29427a0c7357..ca050bc4518f 100644 --- a/drivers/iommu/iommu.c +++ b/drivers/iommu/iommu.c @@ -1976,6 +1976,18 @@ static int __iommu_attach_device(struct iommu_domain *domain, return ret; } +/** + * iommu_attach_device - Attach an IOMMU domain to a device + * @domain: IOMMU domain to attach + * @dev: Device that will be attached + * + * Returns 0 on success and error code on failure + * + * Note that EINVAL can be treated as a soft failure, indicating + * that certain configuration of the domain is incompatible with + * the device. In this case attaching a different domain to the + * device may succeed. + */ int iommu_attach_device(struct iommu_domain *domain, struct device *dev) { struct iommu_group *group; @@ -2102,6 +2114,18 @@ static int __iommu_attach_group(struct iommu_domain *domain, return ret; } +/** + * iommu_attach_group - Attach an IOMMU domain to an IOMMU group + * @domain: IOMMU domain to attach + * @group: IOMMU group that will be attached + * + * Returns 0 on success and error code on failure + * + * Note that EINVAL can be treated as a soft failure, indicating + * that certain configuration of the domain is incompatible with + * the group. In this case attaching a different domain to the + * group may succeed. + */ int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group) { int ret; diff --git a/drivers/iommu/ipmmu-vmsa.c b/drivers/iommu/ipmmu-vmsa.c index 1d42084d0276..f5217a4cb9b3 100644 --- a/drivers/iommu/ipmmu-vmsa.c +++ b/drivers/iommu/ipmmu-vmsa.c @@ -628,8 +628,6 @@ static int ipmmu_attach_device(struct iommu_domain *io_domain, * Something is wrong, we can't attach two devices using * different IOMMUs to the same domain. */ - dev_err(dev, "Can't attach IPMMU %s to domain on IPMMU %s\n", - dev_name(mmu->dev), dev_name(domain->mmu->dev)); ret = -EINVAL; } else dev_info(dev, "Reusing IPMMU context %u\n", domain->context_id); diff --git a/drivers/iommu/mtk_iommu.c b/drivers/iommu/mtk_iommu.c index 5c3b77e0de07..3b2f4345dbaf 100644 --- a/drivers/iommu/mtk_iommu.c +++ b/drivers/iommu/mtk_iommu.c @@ -604,7 +604,7 @@ static int mtk_iommu_domain_finalise(struct mtk_iommu_domain *dom, dom->iop = alloc_io_pgtable_ops(ARM_V7S, &dom->cfg, data); if (!dom->iop) { dev_err(data->dev, "Failed to alloc io pgtable\n"); - return -EINVAL; + return -ENOMEM; } /* Update our support page sizes bitmap */ @@ -663,7 +663,7 @@ static int mtk_iommu_attach_device(struct iommu_domain *domain, ret = mtk_iommu_domain_finalise(dom, frstdata, region_id); if (ret) { mutex_unlock(&dom->mutex); - return -ENODEV; + return ret; } dom->bank = &data->bank[bankid]; } diff --git a/drivers/iommu/omap-iommu.c b/drivers/iommu/omap-iommu.c index d9cf2820c02e..be12f49140c7 100644 --- a/drivers/iommu/omap-iommu.c +++ b/drivers/iommu/omap-iommu.c @@ -1414,7 +1414,7 @@ static int omap_iommu_attach_init(struct device *dev, odomain->num_iommus = omap_iommu_count(dev); if (!odomain->num_iommus) - return -EINVAL; + return -ENODEV; odomain->iommus = kcalloc(odomain->num_iommus, sizeof(*iommu), GFP_ATOMIC); @@ -1464,7 +1464,7 @@ omap_iommu_attach_dev(struct iommu_domain *domain, struct device *dev) if (!arch_data || !arch_data->iommu_dev) { dev_err(dev, "device doesn't have an associated iommu\n"); - return -EINVAL; + return -ENODEV; } spin_lock(&omap_domain->lock); @@ -1472,7 +1472,7 @@ omap_iommu_attach_dev(struct iommu_domain *domain, struct device *dev) /* only a single client device can be attached to a domain */ if (omap_domain->dev) { dev_err(dev, "iommu domain is already attached\n"); - ret = -EBUSY; + ret = -EINVAL; goto out; } diff --git a/drivers/iommu/sprd-iommu.c b/drivers/iommu/sprd-iommu.c index bd409bab6286..c0c09d3e6dea 100644 --- a/drivers/iommu/sprd-iommu.c +++ b/drivers/iommu/sprd-iommu.c @@ -237,10 +237,8 @@ static int sprd_iommu_attach_device(struct iommu_domain *domain, struct sprd_iommu_domain *dom = to_sprd_domain(domain); size_t pgt_size = sprd_iommu_pgt_size(domain); - if (dom->sdev) { - pr_err("There's already a device attached to this domain.\n"); + if (dom->sdev) return -EINVAL; - } dom->pgt_va = dma_alloc_coherent(sdev->dev, pgt_size, &dom->pgt_pa, GFP_KERNEL); if (!dom->pgt_va) diff --git a/drivers/iommu/tegra-gart.c b/drivers/iommu/tegra-gart.c index a6700a40a6f8..881ca1e1ebc0 100644 --- a/drivers/iommu/tegra-gart.c +++ b/drivers/iommu/tegra-gart.c @@ -112,7 +112,7 @@ static int gart_iommu_attach_dev(struct iommu_domain *domain, spin_lock(&gart->dom_lock); if (gart->active_domain && gart->active_domain != domain) { - ret = -EBUSY; + ret = -EINVAL; } else if (dev_iommu_priv_get(dev) != domain) { dev_iommu_priv_set(dev, domain); gart->active_domain = domain; diff --git a/drivers/iommu/virtio-iommu.c b/drivers/iommu/virtio-iommu.c index bf340d779c10..99216340cdb7 100644 --- a/drivers/iommu/virtio-iommu.c +++ b/drivers/iommu/virtio-iommu.c @@ -669,7 +669,7 @@ static int viommu_domain_finalise(struct viommu_endpoint *vdev, dev_err(vdev->dev, "granule 0x%lx larger than system page size 0x%lx\n", viommu_page_size, PAGE_SIZE); - return -EINVAL; + return -ENODEV; } ret = ida_alloc_range(&viommu->domain_ids, viommu->first_domain, @@ -696,7 +696,7 @@ static int viommu_domain_finalise(struct viommu_endpoint *vdev, if (ret) { ida_free(&viommu->domain_ids, vdomain->id); vdomain->viommu = NULL; - return -EOPNOTSUPP; + return ret; } } @@ -733,8 +733,7 @@ static int viommu_attach_dev(struct iommu_domain *domain, struct device *dev) */ ret = viommu_domain_finalise(vdev, domain); } else if (vdomain->viommu != vdev->viommu) { - dev_err(dev, "cannot attach to foreign vIOMMU\n"); - ret = -EXDEV; + ret = -EINVAL; } mutex_unlock(&vdomain->mutex); diff --git a/drivers/perf/Kconfig b/drivers/perf/Kconfig index 1e2d69453771..c94d3601eb48 100644 --- a/drivers/perf/Kconfig +++ b/drivers/perf/Kconfig @@ -192,4 +192,6 @@ config MARVELL_CN10K_DDR_PMU Enable perf support for Marvell DDR Performance monitoring event on CN10K platform. +source "drivers/perf/arm_cspmu/Kconfig" + endmenu diff --git a/drivers/perf/Makefile b/drivers/perf/Makefile index 57a279c61df5..3bc9323f0965 100644 --- a/drivers/perf/Makefile +++ b/drivers/perf/Makefile @@ -20,3 +20,4 @@ obj-$(CONFIG_ARM_DMC620_PMU) += arm_dmc620_pmu.o obj-$(CONFIG_MARVELL_CN10K_TAD_PMU) += marvell_cn10k_tad_pmu.o obj-$(CONFIG_MARVELL_CN10K_DDR_PMU) += marvell_cn10k_ddr_pmu.o obj-$(CONFIG_APPLE_M1_CPU_PMU) += apple_m1_cpu_pmu.o +obj-$(CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU) += arm_cspmu/ diff --git a/drivers/perf/arm_cspmu/Kconfig b/drivers/perf/arm_cspmu/Kconfig new file mode 100644 index 000000000000..0b316fe69a45 --- /dev/null +++ b/drivers/perf/arm_cspmu/Kconfig @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: GPL-2.0 +# +# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + +config ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU + tristate "ARM Coresight Architecture PMU" + depends on ARM64 && ACPI + depends on ACPI_APMT || COMPILE_TEST + help + Provides support for performance monitoring unit (PMU) devices + based on ARM CoreSight PMU architecture. Note that this PMU + architecture does not have relationship with the ARM CoreSight + Self-Hosted Tracing. diff --git a/drivers/perf/arm_cspmu/Makefile b/drivers/perf/arm_cspmu/Makefile new file mode 100644 index 000000000000..fedb17df982d --- /dev/null +++ b/drivers/perf/arm_cspmu/Makefile @@ -0,0 +1,6 @@ +# Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# +# SPDX-License-Identifier: GPL-2.0 + +obj-$(CONFIG_ARM_CORESIGHT_PMU_ARCH_SYSTEM_PMU) += arm_cspmu_module.o +arm_cspmu_module-y := arm_cspmu.o nvidia_cspmu.o diff --git a/drivers/perf/arm_cspmu/arm_cspmu.c b/drivers/perf/arm_cspmu/arm_cspmu.c new file mode 100644 index 000000000000..8ebdf014d203 --- /dev/null +++ b/drivers/perf/arm_cspmu/arm_cspmu.c @@ -0,0 +1,1303 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * ARM CoreSight Architecture PMU driver. + * + * This driver adds support for uncore PMU based on ARM CoreSight Performance + * Monitoring Unit Architecture. The PMU is accessible via MMIO registers and + * like other uncore PMUs, it does not support process specific events and + * cannot be used in sampling mode. + * + * This code is based on other uncore PMUs like ARM DSU PMU. It provides a + * generic implementation to operate the PMU according to CoreSight PMU + * architecture and ACPI ARM PMU table (APMT) documents below: + * - ARM CoreSight PMU architecture document number: ARM IHI 0091 A.a-00bet0. + * - APMT document number: ARM DEN0117. + * + * The user should refer to the vendor technical documentation to get details + * about the supported events. + * + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "arm_cspmu.h" +#include "nvidia_cspmu.h" + +#define PMUNAME "arm_cspmu" +#define DRVNAME "arm-cs-arch-pmu" + +#define ARM_CSPMU_CPUMASK_ATTR(_name, _config) \ + ARM_CSPMU_EXT_ATTR(_name, arm_cspmu_cpumask_show, \ + (unsigned long)_config) + +/* + * CoreSight PMU Arch register offsets. + */ +#define PMEVCNTR_LO 0x0 +#define PMEVCNTR_HI 0x4 +#define PMEVTYPER 0x400 +#define PMCCFILTR 0x47C +#define PMEVFILTR 0xA00 +#define PMCNTENSET 0xC00 +#define PMCNTENCLR 0xC20 +#define PMINTENSET 0xC40 +#define PMINTENCLR 0xC60 +#define PMOVSCLR 0xC80 +#define PMOVSSET 0xCC0 +#define PMCFGR 0xE00 +#define PMCR 0xE04 +#define PMIIDR 0xE08 + +/* PMCFGR register field */ +#define PMCFGR_NCG GENMASK(31, 28) +#define PMCFGR_HDBG BIT(24) +#define PMCFGR_TRO BIT(23) +#define PMCFGR_SS BIT(22) +#define PMCFGR_FZO BIT(21) +#define PMCFGR_MSI BIT(20) +#define PMCFGR_UEN BIT(19) +#define PMCFGR_NA BIT(17) +#define PMCFGR_EX BIT(16) +#define PMCFGR_CCD BIT(15) +#define PMCFGR_CC BIT(14) +#define PMCFGR_SIZE GENMASK(13, 8) +#define PMCFGR_N GENMASK(7, 0) + +/* PMCR register field */ +#define PMCR_TRO BIT(11) +#define PMCR_HDBG BIT(10) +#define PMCR_FZO BIT(9) +#define PMCR_NA BIT(8) +#define PMCR_DP BIT(5) +#define PMCR_X BIT(4) +#define PMCR_D BIT(3) +#define PMCR_C BIT(2) +#define PMCR_P BIT(1) +#define PMCR_E BIT(0) + +/* Each SET/CLR register supports up to 32 counters. */ +#define ARM_CSPMU_SET_CLR_COUNTER_SHIFT 5 +#define ARM_CSPMU_SET_CLR_COUNTER_NUM \ + (1 << ARM_CSPMU_SET_CLR_COUNTER_SHIFT) + +/* Convert counter idx into SET/CLR register number. */ +#define COUNTER_TO_SET_CLR_ID(idx) \ + (idx >> ARM_CSPMU_SET_CLR_COUNTER_SHIFT) + +/* Convert counter idx into SET/CLR register bit. */ +#define COUNTER_TO_SET_CLR_BIT(idx) \ + (idx & (ARM_CSPMU_SET_CLR_COUNTER_NUM - 1)) + +#define ARM_CSPMU_ACTIVE_CPU_MASK 0x0 +#define ARM_CSPMU_ASSOCIATED_CPU_MASK 0x1 + +/* Check if field f in flags is set with value v */ +#define CHECK_APMT_FLAG(flags, f, v) \ + ((flags & (ACPI_APMT_FLAGS_ ## f)) == (ACPI_APMT_FLAGS_ ## f ## _ ## v)) + +/* Check and use default if implementer doesn't provide attribute callback */ +#define CHECK_DEFAULT_IMPL_OPS(ops, callback) \ + do { \ + if (!ops->callback) \ + ops->callback = arm_cspmu_ ## callback; \ + } while (0) + +/* + * Maximum poll count for reading counter value using high-low-high sequence. + */ +#define HILOHI_MAX_POLL 1000 + +/* JEDEC-assigned JEP106 identification code */ +#define ARM_CSPMU_IMPL_ID_NVIDIA 0x36B + +static unsigned long arm_cspmu_cpuhp_state; + +/* + * In CoreSight PMU architecture, all of the MMIO registers are 32-bit except + * counter register. The counter register can be implemented as 32-bit or 64-bit + * register depending on the value of PMCFGR.SIZE field. For 64-bit access, + * single-copy 64-bit atomic support is implementation defined. APMT node flag + * is used to identify if the PMU supports 64-bit single copy atomic. If 64-bit + * single copy atomic is not supported, the driver treats the register as a pair + * of 32-bit register. + */ + +/* + * Read 64-bit register as a pair of 32-bit registers using hi-lo-hi sequence. + */ +static u64 read_reg64_hilohi(const void __iomem *addr, u32 max_poll_count) +{ + u32 val_lo, val_hi; + u64 val; + + /* Use high-low-high sequence to avoid tearing */ + do { + if (max_poll_count-- == 0) { + pr_err("ARM CSPMU: timeout hi-low-high sequence\n"); + return 0; + } + + val_hi = readl(addr + 4); + val_lo = readl(addr); + } while (val_hi != readl(addr + 4)); + + val = (((u64)val_hi << 32) | val_lo); + + return val; +} + +/* Check if PMU supports 64-bit single copy atomic. */ +static inline bool supports_64bit_atomics(const struct arm_cspmu *cspmu) +{ + return CHECK_APMT_FLAG(cspmu->apmt_node->flags, ATOMIC, SUPP); +} + +/* Check if cycle counter is supported. */ +static inline bool supports_cycle_counter(const struct arm_cspmu *cspmu) +{ + return (cspmu->pmcfgr & PMCFGR_CC); +} + +/* Get counter size, which is (PMCFGR_SIZE + 1). */ +static inline u32 counter_size(const struct arm_cspmu *cspmu) +{ + return FIELD_GET(PMCFGR_SIZE, cspmu->pmcfgr) + 1; +} + +/* Get counter mask. */ +static inline u64 counter_mask(const struct arm_cspmu *cspmu) +{ + return GENMASK_ULL(counter_size(cspmu) - 1, 0); +} + +/* Check if counter is implemented as 64-bit register. */ +static inline bool use_64b_counter_reg(const struct arm_cspmu *cspmu) +{ + return (counter_size(cspmu) > 32); +} + +ssize_t arm_cspmu_sysfs_event_show(struct device *dev, + struct device_attribute *attr, char *buf) +{ + struct dev_ext_attribute *eattr = + container_of(attr, struct dev_ext_attribute, attr); + return sysfs_emit(buf, "event=0x%llx\n", + (unsigned long long)eattr->var); +} +EXPORT_SYMBOL_GPL(arm_cspmu_sysfs_event_show); + +/* Default event list. */ +static struct attribute *arm_cspmu_event_attrs[] = { + ARM_CSPMU_EVENT_ATTR(cycles, ARM_CSPMU_EVT_CYCLES_DEFAULT), + NULL, +}; + +static struct attribute ** +arm_cspmu_get_event_attrs(const struct arm_cspmu *cspmu) +{ + struct attribute **attrs; + + attrs = devm_kmemdup(cspmu->dev, arm_cspmu_event_attrs, + sizeof(arm_cspmu_event_attrs), GFP_KERNEL); + + return attrs; +} + +static umode_t +arm_cspmu_event_attr_is_visible(struct kobject *kobj, + struct attribute *attr, int unused) +{ + struct device *dev = kobj_to_dev(kobj); + struct arm_cspmu *cspmu = to_arm_cspmu(dev_get_drvdata(dev)); + struct perf_pmu_events_attr *eattr; + + eattr = container_of(attr, typeof(*eattr), attr.attr); + + /* Hide cycle event if not supported */ + if (!supports_cycle_counter(cspmu) && + eattr->id == ARM_CSPMU_EVT_CYCLES_DEFAULT) + return 0; + + return attr->mode; +} + +ssize_t arm_cspmu_sysfs_format_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct dev_ext_attribute *eattr = + container_of(attr, struct dev_ext_attribute, attr); + return sysfs_emit(buf, "%s\n", (char *)eattr->var); +} +EXPORT_SYMBOL_GPL(arm_cspmu_sysfs_format_show); + +static struct attribute *arm_cspmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + ARM_CSPMU_FORMAT_FILTER_ATTR, + NULL, +}; + +static struct attribute ** +arm_cspmu_get_format_attrs(const struct arm_cspmu *cspmu) +{ + struct attribute **attrs; + + attrs = devm_kmemdup(cspmu->dev, arm_cspmu_format_attrs, + sizeof(arm_cspmu_format_attrs), GFP_KERNEL); + + return attrs; +} + +static u32 arm_cspmu_event_type(const struct perf_event *event) +{ + return event->attr.config & ARM_CSPMU_EVENT_MASK; +} + +static bool arm_cspmu_is_cycle_counter_event(const struct perf_event *event) +{ + return (event->attr.config == ARM_CSPMU_EVT_CYCLES_DEFAULT); +} + +static u32 arm_cspmu_event_filter(const struct perf_event *event) +{ + return event->attr.config1 & ARM_CSPMU_FILTER_MASK; +} + +static ssize_t arm_cspmu_identifier_show(struct device *dev, + struct device_attribute *attr, + char *page) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(dev_get_drvdata(dev)); + + return sysfs_emit(page, "%s\n", cspmu->identifier); +} + +static struct device_attribute arm_cspmu_identifier_attr = + __ATTR(identifier, 0444, arm_cspmu_identifier_show, NULL); + +static struct attribute *arm_cspmu_identifier_attrs[] = { + &arm_cspmu_identifier_attr.attr, + NULL, +}; + +static struct attribute_group arm_cspmu_identifier_attr_group = { + .attrs = arm_cspmu_identifier_attrs, +}; + +static const char *arm_cspmu_get_identifier(const struct arm_cspmu *cspmu) +{ + const char *identifier = + devm_kasprintf(cspmu->dev, GFP_KERNEL, "%x", + cspmu->impl.pmiidr); + return identifier; +} + +static const char *arm_cspmu_type_str[ACPI_APMT_NODE_TYPE_COUNT] = { + "mc", + "smmu", + "pcie", + "acpi", + "cache", +}; + +static const char *arm_cspmu_get_name(const struct arm_cspmu *cspmu) +{ + struct device *dev; + struct acpi_apmt_node *apmt_node; + u8 pmu_type; + char *name; + char acpi_hid_string[ACPI_ID_LEN] = { 0 }; + static atomic_t pmu_idx[ACPI_APMT_NODE_TYPE_COUNT] = { 0 }; + + dev = cspmu->dev; + apmt_node = cspmu->apmt_node; + pmu_type = apmt_node->type; + + if (pmu_type >= ACPI_APMT_NODE_TYPE_COUNT) { + dev_err(dev, "unsupported PMU type-%u\n", pmu_type); + return NULL; + } + + if (pmu_type == ACPI_APMT_NODE_TYPE_ACPI) { + memcpy(acpi_hid_string, + &apmt_node->inst_primary, + sizeof(apmt_node->inst_primary)); + name = devm_kasprintf(dev, GFP_KERNEL, "%s_%s_%s_%u", PMUNAME, + arm_cspmu_type_str[pmu_type], + acpi_hid_string, + apmt_node->inst_secondary); + } else { + name = devm_kasprintf(dev, GFP_KERNEL, "%s_%s_%d", PMUNAME, + arm_cspmu_type_str[pmu_type], + atomic_fetch_inc(&pmu_idx[pmu_type])); + } + + return name; +} + +static ssize_t arm_cspmu_cpumask_show(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + struct pmu *pmu = dev_get_drvdata(dev); + struct arm_cspmu *cspmu = to_arm_cspmu(pmu); + struct dev_ext_attribute *eattr = + container_of(attr, struct dev_ext_attribute, attr); + unsigned long mask_id = (unsigned long)eattr->var; + const cpumask_t *cpumask; + + switch (mask_id) { + case ARM_CSPMU_ACTIVE_CPU_MASK: + cpumask = &cspmu->active_cpu; + break; + case ARM_CSPMU_ASSOCIATED_CPU_MASK: + cpumask = &cspmu->associated_cpus; + break; + default: + return 0; + } + return cpumap_print_to_pagebuf(true, buf, cpumask); +} + +static struct attribute *arm_cspmu_cpumask_attrs[] = { + ARM_CSPMU_CPUMASK_ATTR(cpumask, ARM_CSPMU_ACTIVE_CPU_MASK), + ARM_CSPMU_CPUMASK_ATTR(associated_cpus, ARM_CSPMU_ASSOCIATED_CPU_MASK), + NULL, +}; + +static struct attribute_group arm_cspmu_cpumask_attr_group = { + .attrs = arm_cspmu_cpumask_attrs, +}; + +struct impl_match { + u32 pmiidr; + u32 mask; + int (*impl_init_ops)(struct arm_cspmu *cspmu); +}; + +static const struct impl_match impl_match[] = { + { + .pmiidr = ARM_CSPMU_IMPL_ID_NVIDIA, + .mask = ARM_CSPMU_PMIIDR_IMPLEMENTER, + .impl_init_ops = nv_cspmu_init_ops + }, + {} +}; + +static int arm_cspmu_init_impl_ops(struct arm_cspmu *cspmu) +{ + int ret; + struct acpi_apmt_node *apmt_node = cspmu->apmt_node; + struct arm_cspmu_impl_ops *impl_ops = &cspmu->impl.ops; + const struct impl_match *match = impl_match; + + /* + * Get PMU implementer and product id from APMT node. + * If APMT node doesn't have implementer/product id, try get it + * from PMIIDR. + */ + cspmu->impl.pmiidr = + (apmt_node->impl_id) ? apmt_node->impl_id : + readl(cspmu->base0 + PMIIDR); + + /* Find implementer specific attribute ops. */ + for (; match->pmiidr; match++) { + const u32 mask = match->mask; + + if ((match->pmiidr & mask) == (cspmu->impl.pmiidr & mask)) { + ret = match->impl_init_ops(cspmu); + if (ret) + return ret; + + break; + } + } + + /* Use default callbacks if implementer doesn't provide one. */ + CHECK_DEFAULT_IMPL_OPS(impl_ops, get_event_attrs); + CHECK_DEFAULT_IMPL_OPS(impl_ops, get_format_attrs); + CHECK_DEFAULT_IMPL_OPS(impl_ops, get_identifier); + CHECK_DEFAULT_IMPL_OPS(impl_ops, get_name); + CHECK_DEFAULT_IMPL_OPS(impl_ops, is_cycle_counter_event); + CHECK_DEFAULT_IMPL_OPS(impl_ops, event_type); + CHECK_DEFAULT_IMPL_OPS(impl_ops, event_filter); + CHECK_DEFAULT_IMPL_OPS(impl_ops, event_attr_is_visible); + + return 0; +} + +static struct attribute_group * +arm_cspmu_alloc_event_attr_group(struct arm_cspmu *cspmu) +{ + struct attribute_group *event_group; + struct device *dev = cspmu->dev; + const struct arm_cspmu_impl_ops *impl_ops = &cspmu->impl.ops; + + event_group = + devm_kzalloc(dev, sizeof(struct attribute_group), GFP_KERNEL); + if (!event_group) + return NULL; + + event_group->name = "events"; + event_group->is_visible = impl_ops->event_attr_is_visible; + event_group->attrs = impl_ops->get_event_attrs(cspmu); + + if (!event_group->attrs) + return NULL; + + return event_group; +} + +static struct attribute_group * +arm_cspmu_alloc_format_attr_group(struct arm_cspmu *cspmu) +{ + struct attribute_group *format_group; + struct device *dev = cspmu->dev; + + format_group = + devm_kzalloc(dev, sizeof(struct attribute_group), GFP_KERNEL); + if (!format_group) + return NULL; + + format_group->name = "format"; + format_group->attrs = cspmu->impl.ops.get_format_attrs(cspmu); + + if (!format_group->attrs) + return NULL; + + return format_group; +} + +static struct attribute_group ** +arm_cspmu_alloc_attr_group(struct arm_cspmu *cspmu) +{ + struct attribute_group **attr_groups = NULL; + struct device *dev = cspmu->dev; + const struct arm_cspmu_impl_ops *impl_ops = &cspmu->impl.ops; + int ret; + + ret = arm_cspmu_init_impl_ops(cspmu); + if (ret) + return NULL; + + cspmu->identifier = impl_ops->get_identifier(cspmu); + cspmu->name = impl_ops->get_name(cspmu); + + if (!cspmu->identifier || !cspmu->name) + return NULL; + + attr_groups = devm_kcalloc(dev, 5, sizeof(struct attribute_group *), + GFP_KERNEL); + if (!attr_groups) + return NULL; + + attr_groups[0] = arm_cspmu_alloc_event_attr_group(cspmu); + attr_groups[1] = arm_cspmu_alloc_format_attr_group(cspmu); + attr_groups[2] = &arm_cspmu_identifier_attr_group; + attr_groups[3] = &arm_cspmu_cpumask_attr_group; + + if (!attr_groups[0] || !attr_groups[1]) + return NULL; + + return attr_groups; +} + +static inline void arm_cspmu_reset_counters(struct arm_cspmu *cspmu) +{ + u32 pmcr = 0; + + pmcr |= PMCR_P; + pmcr |= PMCR_C; + writel(pmcr, cspmu->base0 + PMCR); +} + +static inline void arm_cspmu_start_counters(struct arm_cspmu *cspmu) +{ + writel(PMCR_E, cspmu->base0 + PMCR); +} + +static inline void arm_cspmu_stop_counters(struct arm_cspmu *cspmu) +{ + writel(0, cspmu->base0 + PMCR); +} + +static void arm_cspmu_enable(struct pmu *pmu) +{ + bool disabled; + struct arm_cspmu *cspmu = to_arm_cspmu(pmu); + + disabled = bitmap_empty(cspmu->hw_events.used_ctrs, + cspmu->num_logical_ctrs); + + if (disabled) + return; + + arm_cspmu_start_counters(cspmu); +} + +static void arm_cspmu_disable(struct pmu *pmu) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(pmu); + + arm_cspmu_stop_counters(cspmu); +} + +static int arm_cspmu_get_event_idx(struct arm_cspmu_hw_events *hw_events, + struct perf_event *event) +{ + int idx; + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + + if (supports_cycle_counter(cspmu)) { + if (cspmu->impl.ops.is_cycle_counter_event(event)) { + /* Search for available cycle counter. */ + if (test_and_set_bit(cspmu->cycle_counter_logical_idx, + hw_events->used_ctrs)) + return -EAGAIN; + + return cspmu->cycle_counter_logical_idx; + } + + /* + * Search a regular counter from the used counter bitmap. + * The cycle counter divides the bitmap into two parts. Search + * the first then second half to exclude the cycle counter bit. + */ + idx = find_first_zero_bit(hw_events->used_ctrs, + cspmu->cycle_counter_logical_idx); + if (idx >= cspmu->cycle_counter_logical_idx) { + idx = find_next_zero_bit( + hw_events->used_ctrs, + cspmu->num_logical_ctrs, + cspmu->cycle_counter_logical_idx + 1); + } + } else { + idx = find_first_zero_bit(hw_events->used_ctrs, + cspmu->num_logical_ctrs); + } + + if (idx >= cspmu->num_logical_ctrs) + return -EAGAIN; + + set_bit(idx, hw_events->used_ctrs); + + return idx; +} + +static bool arm_cspmu_validate_event(struct pmu *pmu, + struct arm_cspmu_hw_events *hw_events, + struct perf_event *event) +{ + if (is_software_event(event)) + return true; + + /* Reject groups spanning multiple HW PMUs. */ + if (event->pmu != pmu) + return false; + + return (arm_cspmu_get_event_idx(hw_events, event) >= 0); +} + +/* + * Make sure the group of events can be scheduled at once + * on the PMU. + */ +static bool arm_cspmu_validate_group(struct perf_event *event) +{ + struct perf_event *sibling, *leader = event->group_leader; + struct arm_cspmu_hw_events fake_hw_events; + + if (event->group_leader == event) + return true; + + memset(&fake_hw_events, 0, sizeof(fake_hw_events)); + + if (!arm_cspmu_validate_event(event->pmu, &fake_hw_events, leader)) + return false; + + for_each_sibling_event(sibling, leader) { + if (!arm_cspmu_validate_event(event->pmu, &fake_hw_events, + sibling)) + return false; + } + + return arm_cspmu_validate_event(event->pmu, &fake_hw_events, event); +} + +static int arm_cspmu_event_init(struct perf_event *event) +{ + struct arm_cspmu *cspmu; + struct hw_perf_event *hwc = &event->hw; + + cspmu = to_arm_cspmu(event->pmu); + + /* + * Following other "uncore" PMUs, we do not support sampling mode or + * attach to a task (per-process mode). + */ + if (is_sampling_event(event)) { + dev_dbg(cspmu->pmu.dev, + "Can't support sampling events\n"); + return -EOPNOTSUPP; + } + + if (event->cpu < 0 || event->attach_state & PERF_ATTACH_TASK) { + dev_dbg(cspmu->pmu.dev, + "Can't support per-task counters\n"); + return -EINVAL; + } + + /* + * Make sure the CPU assignment is on one of the CPUs associated with + * this PMU. + */ + if (!cpumask_test_cpu(event->cpu, &cspmu->associated_cpus)) { + dev_dbg(cspmu->pmu.dev, + "Requested cpu is not associated with the PMU\n"); + return -EINVAL; + } + + /* Enforce the current active CPU to handle the events in this PMU. */ + event->cpu = cpumask_first(&cspmu->active_cpu); + if (event->cpu >= nr_cpu_ids) + return -EINVAL; + + if (!arm_cspmu_validate_group(event)) + return -EINVAL; + + /* + * The logical counter id is tracked with hw_perf_event.extra_reg.idx. + * The physical counter id is tracked with hw_perf_event.idx. + * We don't assign an index until we actually place the event onto + * hardware. Use -1 to signify that we haven't decided where to put it + * yet. + */ + hwc->idx = -1; + hwc->extra_reg.idx = -1; + hwc->config = cspmu->impl.ops.event_type(event); + + return 0; +} + +static inline u32 counter_offset(u32 reg_sz, u32 ctr_idx) +{ + return (PMEVCNTR_LO + (reg_sz * ctr_idx)); +} + +static void arm_cspmu_write_counter(struct perf_event *event, u64 val) +{ + u32 offset; + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + + if (use_64b_counter_reg(cspmu)) { + offset = counter_offset(sizeof(u64), event->hw.idx); + + writeq(val, cspmu->base1 + offset); + } else { + offset = counter_offset(sizeof(u32), event->hw.idx); + + writel(lower_32_bits(val), cspmu->base1 + offset); + } +} + +static u64 arm_cspmu_read_counter(struct perf_event *event) +{ + u32 offset; + const void __iomem *counter_addr; + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + + if (use_64b_counter_reg(cspmu)) { + offset = counter_offset(sizeof(u64), event->hw.idx); + counter_addr = cspmu->base1 + offset; + + return supports_64bit_atomics(cspmu) ? + readq(counter_addr) : + read_reg64_hilohi(counter_addr, HILOHI_MAX_POLL); + } + + offset = counter_offset(sizeof(u32), event->hw.idx); + return readl(cspmu->base1 + offset); +} + +/* + * arm_cspmu_set_event_period: Set the period for the counter. + * + * To handle cases of extreme interrupt latency, we program + * the counter with half of the max count for the counters. + */ +static void arm_cspmu_set_event_period(struct perf_event *event) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + u64 val = counter_mask(cspmu) >> 1ULL; + + local64_set(&event->hw.prev_count, val); + arm_cspmu_write_counter(event, val); +} + +static void arm_cspmu_enable_counter(struct arm_cspmu *cspmu, int idx) +{ + u32 reg_id, reg_bit, inten_off, cnten_off; + + reg_id = COUNTER_TO_SET_CLR_ID(idx); + reg_bit = COUNTER_TO_SET_CLR_BIT(idx); + + inten_off = PMINTENSET + (4 * reg_id); + cnten_off = PMCNTENSET + (4 * reg_id); + + writel(BIT(reg_bit), cspmu->base0 + inten_off); + writel(BIT(reg_bit), cspmu->base0 + cnten_off); +} + +static void arm_cspmu_disable_counter(struct arm_cspmu *cspmu, int idx) +{ + u32 reg_id, reg_bit, inten_off, cnten_off; + + reg_id = COUNTER_TO_SET_CLR_ID(idx); + reg_bit = COUNTER_TO_SET_CLR_BIT(idx); + + inten_off = PMINTENCLR + (4 * reg_id); + cnten_off = PMCNTENCLR + (4 * reg_id); + + writel(BIT(reg_bit), cspmu->base0 + cnten_off); + writel(BIT(reg_bit), cspmu->base0 + inten_off); +} + +static void arm_cspmu_event_update(struct perf_event *event) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + struct hw_perf_event *hwc = &event->hw; + u64 delta, prev, now; + + do { + prev = local64_read(&hwc->prev_count); + now = arm_cspmu_read_counter(event); + } while (local64_cmpxchg(&hwc->prev_count, prev, now) != prev); + + delta = (now - prev) & counter_mask(cspmu); + local64_add(delta, &event->count); +} + +static inline void arm_cspmu_set_event(struct arm_cspmu *cspmu, + struct hw_perf_event *hwc) +{ + u32 offset = PMEVTYPER + (4 * hwc->idx); + + writel(hwc->config, cspmu->base0 + offset); +} + +static inline void arm_cspmu_set_ev_filter(struct arm_cspmu *cspmu, + struct hw_perf_event *hwc, + u32 filter) +{ + u32 offset = PMEVFILTR + (4 * hwc->idx); + + writel(filter, cspmu->base0 + offset); +} + +static inline void arm_cspmu_set_cc_filter(struct arm_cspmu *cspmu, u32 filter) +{ + u32 offset = PMCCFILTR; + + writel(filter, cspmu->base0 + offset); +} + +static void arm_cspmu_start(struct perf_event *event, int pmu_flags) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + struct hw_perf_event *hwc = &event->hw; + u32 filter; + + /* We always reprogram the counter */ + if (pmu_flags & PERF_EF_RELOAD) + WARN_ON(!(hwc->state & PERF_HES_UPTODATE)); + + arm_cspmu_set_event_period(event); + + filter = cspmu->impl.ops.event_filter(event); + + if (event->hw.extra_reg.idx == cspmu->cycle_counter_logical_idx) { + arm_cspmu_set_cc_filter(cspmu, filter); + } else { + arm_cspmu_set_event(cspmu, hwc); + arm_cspmu_set_ev_filter(cspmu, hwc, filter); + } + + hwc->state = 0; + + arm_cspmu_enable_counter(cspmu, hwc->idx); +} + +static void arm_cspmu_stop(struct perf_event *event, int pmu_flags) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + struct hw_perf_event *hwc = &event->hw; + + if (hwc->state & PERF_HES_STOPPED) + return; + + arm_cspmu_disable_counter(cspmu, hwc->idx); + arm_cspmu_event_update(event); + + hwc->state |= PERF_HES_STOPPED | PERF_HES_UPTODATE; +} + +static inline u32 to_phys_idx(struct arm_cspmu *cspmu, u32 idx) +{ + return (idx == cspmu->cycle_counter_logical_idx) ? + ARM_CSPMU_CYCLE_CNTR_IDX : idx; +} + +static int arm_cspmu_add(struct perf_event *event, int flags) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + struct arm_cspmu_hw_events *hw_events = &cspmu->hw_events; + struct hw_perf_event *hwc = &event->hw; + int idx; + + if (WARN_ON_ONCE(!cpumask_test_cpu(smp_processor_id(), + &cspmu->associated_cpus))) + return -ENOENT; + + idx = arm_cspmu_get_event_idx(hw_events, event); + if (idx < 0) + return idx; + + hw_events->events[idx] = event; + hwc->idx = to_phys_idx(cspmu, idx); + hwc->extra_reg.idx = idx; + hwc->state = PERF_HES_STOPPED | PERF_HES_UPTODATE; + + if (flags & PERF_EF_START) + arm_cspmu_start(event, PERF_EF_RELOAD); + + /* Propagate changes to the userspace mapping. */ + perf_event_update_userpage(event); + + return 0; +} + +static void arm_cspmu_del(struct perf_event *event, int flags) +{ + struct arm_cspmu *cspmu = to_arm_cspmu(event->pmu); + struct arm_cspmu_hw_events *hw_events = &cspmu->hw_events; + struct hw_perf_event *hwc = &event->hw; + int idx = hwc->extra_reg.idx; + + arm_cspmu_stop(event, PERF_EF_UPDATE); + + hw_events->events[idx] = NULL; + + clear_bit(idx, hw_events->used_ctrs); + + perf_event_update_userpage(event); +} + +static void arm_cspmu_read(struct perf_event *event) +{ + arm_cspmu_event_update(event); +} + +static struct arm_cspmu *arm_cspmu_alloc(struct platform_device *pdev) +{ + struct acpi_apmt_node *apmt_node; + struct arm_cspmu *cspmu; + struct device *dev; + + dev = &pdev->dev; + apmt_node = *(struct acpi_apmt_node **)dev_get_platdata(dev); + if (!apmt_node) { + dev_err(dev, "failed to get APMT node\n"); + return NULL; + } + + cspmu = devm_kzalloc(dev, sizeof(*cspmu), GFP_KERNEL); + if (!cspmu) + return NULL; + + cspmu->dev = dev; + cspmu->apmt_node = apmt_node; + + platform_set_drvdata(pdev, cspmu); + + return cspmu; +} + +static int arm_cspmu_init_mmio(struct arm_cspmu *cspmu) +{ + struct device *dev; + struct platform_device *pdev; + struct acpi_apmt_node *apmt_node; + + dev = cspmu->dev; + pdev = to_platform_device(dev); + apmt_node = cspmu->apmt_node; + + /* Base address for page 0. */ + cspmu->base0 = devm_platform_ioremap_resource(pdev, 0); + if (IS_ERR(cspmu->base0)) { + dev_err(dev, "ioremap failed for page-0 resource\n"); + return PTR_ERR(cspmu->base0); + } + + /* Base address for page 1 if supported. Otherwise point to page 0. */ + cspmu->base1 = cspmu->base0; + if (CHECK_APMT_FLAG(apmt_node->flags, DUAL_PAGE, SUPP)) { + cspmu->base1 = devm_platform_ioremap_resource(pdev, 1); + if (IS_ERR(cspmu->base1)) { + dev_err(dev, "ioremap failed for page-1 resource\n"); + return PTR_ERR(cspmu->base1); + } + } + + cspmu->pmcfgr = readl(cspmu->base0 + PMCFGR); + + cspmu->num_logical_ctrs = FIELD_GET(PMCFGR_N, cspmu->pmcfgr) + 1; + + cspmu->cycle_counter_logical_idx = ARM_CSPMU_MAX_HW_CNTRS; + + if (supports_cycle_counter(cspmu)) { + /* + * The last logical counter is mapped to cycle counter if + * there is a gap between regular and cycle counter. Otherwise, + * logical and physical have 1-to-1 mapping. + */ + cspmu->cycle_counter_logical_idx = + (cspmu->num_logical_ctrs <= ARM_CSPMU_CYCLE_CNTR_IDX) ? + cspmu->num_logical_ctrs - 1 : + ARM_CSPMU_CYCLE_CNTR_IDX; + } + + cspmu->num_set_clr_reg = + DIV_ROUND_UP(cspmu->num_logical_ctrs, + ARM_CSPMU_SET_CLR_COUNTER_NUM); + + cspmu->hw_events.events = + devm_kcalloc(dev, cspmu->num_logical_ctrs, + sizeof(*cspmu->hw_events.events), GFP_KERNEL); + + if (!cspmu->hw_events.events) + return -ENOMEM; + + return 0; +} + +static inline int arm_cspmu_get_reset_overflow(struct arm_cspmu *cspmu, + u32 *pmovs) +{ + int i; + u32 pmovclr_offset = PMOVSCLR; + u32 has_overflowed = 0; + + for (i = 0; i < cspmu->num_set_clr_reg; ++i) { + pmovs[i] = readl(cspmu->base1 + pmovclr_offset); + has_overflowed |= pmovs[i]; + writel(pmovs[i], cspmu->base1 + pmovclr_offset); + pmovclr_offset += sizeof(u32); + } + + return has_overflowed != 0; +} + +static irqreturn_t arm_cspmu_handle_irq(int irq_num, void *dev) +{ + int idx, has_overflowed; + struct perf_event *event; + struct arm_cspmu *cspmu = dev; + DECLARE_BITMAP(pmovs, ARM_CSPMU_MAX_HW_CNTRS); + bool handled = false; + + arm_cspmu_stop_counters(cspmu); + + has_overflowed = arm_cspmu_get_reset_overflow(cspmu, (u32 *)pmovs); + if (!has_overflowed) + goto done; + + for_each_set_bit(idx, cspmu->hw_events.used_ctrs, + cspmu->num_logical_ctrs) { + event = cspmu->hw_events.events[idx]; + + if (!event) + continue; + + if (!test_bit(event->hw.idx, pmovs)) + continue; + + arm_cspmu_event_update(event); + arm_cspmu_set_event_period(event); + + handled = true; + } + +done: + arm_cspmu_start_counters(cspmu); + return IRQ_RETVAL(handled); +} + +static int arm_cspmu_request_irq(struct arm_cspmu *cspmu) +{ + int irq, ret; + struct device *dev; + struct platform_device *pdev; + struct acpi_apmt_node *apmt_node; + + dev = cspmu->dev; + pdev = to_platform_device(dev); + apmt_node = cspmu->apmt_node; + + /* Skip IRQ request if the PMU does not support overflow interrupt. */ + if (apmt_node->ovflw_irq == 0) + return 0; + + irq = platform_get_irq(pdev, 0); + if (irq < 0) + return irq; + + ret = devm_request_irq(dev, irq, arm_cspmu_handle_irq, + IRQF_NOBALANCING | IRQF_NO_THREAD, dev_name(dev), + cspmu); + if (ret) { + dev_err(dev, "Could not request IRQ %d\n", irq); + return ret; + } + + cspmu->irq = irq; + + return 0; +} + +static inline int arm_cspmu_find_cpu_container(int cpu, u32 container_uid) +{ + u32 acpi_uid; + struct device *cpu_dev = get_cpu_device(cpu); + struct acpi_device *acpi_dev = ACPI_COMPANION(cpu_dev); + + if (!cpu_dev) + return -ENODEV; + + while (acpi_dev) { + if (!strcmp(acpi_device_hid(acpi_dev), + ACPI_PROCESSOR_CONTAINER_HID) && + !kstrtouint(acpi_device_uid(acpi_dev), 0, &acpi_uid) && + acpi_uid == container_uid) + return 0; + + acpi_dev = acpi_dev->parent; + } + + return -ENODEV; +} + +static int arm_cspmu_get_cpus(struct arm_cspmu *cspmu) +{ + struct device *dev; + struct acpi_apmt_node *apmt_node; + int affinity_flag; + int cpu; + + dev = cspmu->pmu.dev; + apmt_node = cspmu->apmt_node; + affinity_flag = apmt_node->flags & ACPI_APMT_FLAGS_AFFINITY; + + if (affinity_flag == ACPI_APMT_FLAGS_AFFINITY_PROC) { + for_each_possible_cpu(cpu) { + if (apmt_node->proc_affinity == + get_acpi_id_for_cpu(cpu)) { + cpumask_set_cpu(cpu, &cspmu->associated_cpus); + break; + } + } + } else { + for_each_possible_cpu(cpu) { + if (arm_cspmu_find_cpu_container( + cpu, apmt_node->proc_affinity)) + continue; + + cpumask_set_cpu(cpu, &cspmu->associated_cpus); + } + } + + if (cpumask_empty(&cspmu->associated_cpus)) { + dev_dbg(dev, "No cpu associated with the PMU\n"); + return -ENODEV; + } + + return 0; +} + +static int arm_cspmu_register_pmu(struct arm_cspmu *cspmu) +{ + int ret, capabilities; + struct attribute_group **attr_groups; + + attr_groups = arm_cspmu_alloc_attr_group(cspmu); + if (!attr_groups) + return -ENOMEM; + + ret = cpuhp_state_add_instance(arm_cspmu_cpuhp_state, + &cspmu->cpuhp_node); + if (ret) + return ret; + + capabilities = PERF_PMU_CAP_NO_EXCLUDE; + if (cspmu->irq == 0) + capabilities |= PERF_PMU_CAP_NO_INTERRUPT; + + cspmu->pmu = (struct pmu){ + .task_ctx_nr = perf_invalid_context, + .module = THIS_MODULE, + .pmu_enable = arm_cspmu_enable, + .pmu_disable = arm_cspmu_disable, + .event_init = arm_cspmu_event_init, + .add = arm_cspmu_add, + .del = arm_cspmu_del, + .start = arm_cspmu_start, + .stop = arm_cspmu_stop, + .read = arm_cspmu_read, + .attr_groups = (const struct attribute_group **)attr_groups, + .capabilities = capabilities, + }; + + /* Hardware counter init */ + arm_cspmu_stop_counters(cspmu); + arm_cspmu_reset_counters(cspmu); + + ret = perf_pmu_register(&cspmu->pmu, cspmu->name, -1); + if (ret) { + cpuhp_state_remove_instance(arm_cspmu_cpuhp_state, + &cspmu->cpuhp_node); + } + + return ret; +} + +static int arm_cspmu_device_probe(struct platform_device *pdev) +{ + int ret; + struct arm_cspmu *cspmu; + + cspmu = arm_cspmu_alloc(pdev); + if (!cspmu) + return -ENOMEM; + + ret = arm_cspmu_init_mmio(cspmu); + if (ret) + return ret; + + ret = arm_cspmu_request_irq(cspmu); + if (ret) + return ret; + + ret = arm_cspmu_get_cpus(cspmu); + if (ret) + return ret; + + ret = arm_cspmu_register_pmu(cspmu); + if (ret) + return ret; + + return 0; +} + +static int arm_cspmu_device_remove(struct platform_device *pdev) +{ + struct arm_cspmu *cspmu = platform_get_drvdata(pdev); + + perf_pmu_unregister(&cspmu->pmu); + cpuhp_state_remove_instance(arm_cspmu_cpuhp_state, &cspmu->cpuhp_node); + + return 0; +} + +static struct platform_driver arm_cspmu_driver = { + .driver = { + .name = DRVNAME, + .suppress_bind_attrs = true, + }, + .probe = arm_cspmu_device_probe, + .remove = arm_cspmu_device_remove, +}; + +static void arm_cspmu_set_active_cpu(int cpu, struct arm_cspmu *cspmu) +{ + cpumask_set_cpu(cpu, &cspmu->active_cpu); + WARN_ON(irq_set_affinity(cspmu->irq, &cspmu->active_cpu)); +} + +static int arm_cspmu_cpu_online(unsigned int cpu, struct hlist_node *node) +{ + struct arm_cspmu *cspmu = + hlist_entry_safe(node, struct arm_cspmu, cpuhp_node); + + if (!cpumask_test_cpu(cpu, &cspmu->associated_cpus)) + return 0; + + /* If the PMU is already managed, there is nothing to do */ + if (!cpumask_empty(&cspmu->active_cpu)) + return 0; + + /* Use this CPU for event counting */ + arm_cspmu_set_active_cpu(cpu, cspmu); + + return 0; +} + +static int arm_cspmu_cpu_teardown(unsigned int cpu, struct hlist_node *node) +{ + int dst; + struct cpumask online_supported; + + struct arm_cspmu *cspmu = + hlist_entry_safe(node, struct arm_cspmu, cpuhp_node); + + /* Nothing to do if this CPU doesn't own the PMU */ + if (!cpumask_test_and_clear_cpu(cpu, &cspmu->active_cpu)) + return 0; + + /* Choose a new CPU to migrate ownership of the PMU to */ + cpumask_and(&online_supported, &cspmu->associated_cpus, + cpu_online_mask); + dst = cpumask_any_but(&online_supported, cpu); + if (dst >= nr_cpu_ids) + return 0; + + /* Use this CPU for event counting */ + perf_pmu_migrate_context(&cspmu->pmu, cpu, dst); + arm_cspmu_set_active_cpu(dst, cspmu); + + return 0; +} + +static int __init arm_cspmu_init(void) +{ + int ret; + + ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, + "perf/arm/cspmu:online", + arm_cspmu_cpu_online, + arm_cspmu_cpu_teardown); + if (ret < 0) + return ret; + arm_cspmu_cpuhp_state = ret; + return platform_driver_register(&arm_cspmu_driver); +} + +static void __exit arm_cspmu_exit(void) +{ + platform_driver_unregister(&arm_cspmu_driver); + cpuhp_remove_multi_state(arm_cspmu_cpuhp_state); +} + +module_init(arm_cspmu_init); +module_exit(arm_cspmu_exit); + +MODULE_LICENSE("GPL v2"); diff --git a/drivers/perf/arm_cspmu/arm_cspmu.h b/drivers/perf/arm_cspmu/arm_cspmu.h new file mode 100644 index 000000000000..51323b175a4a --- /dev/null +++ b/drivers/perf/arm_cspmu/arm_cspmu.h @@ -0,0 +1,151 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * ARM CoreSight Architecture PMU driver. + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + */ + +#ifndef __ARM_CSPMU_H__ +#define __ARM_CSPMU_H__ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define to_arm_cspmu(p) (container_of(p, struct arm_cspmu, pmu)) + +#define ARM_CSPMU_EXT_ATTR(_name, _func, _config) \ + (&((struct dev_ext_attribute[]){ \ + { \ + .attr = __ATTR(_name, 0444, _func, NULL), \ + .var = (void *)_config \ + } \ + })[0].attr.attr) + +#define ARM_CSPMU_FORMAT_ATTR(_name, _config) \ + ARM_CSPMU_EXT_ATTR(_name, arm_cspmu_sysfs_format_show, (char *)_config) + +#define ARM_CSPMU_EVENT_ATTR(_name, _config) \ + PMU_EVENT_ATTR_ID(_name, arm_cspmu_sysfs_event_show, _config) + + +/* Default event id mask */ +#define ARM_CSPMU_EVENT_MASK GENMASK_ULL(63, 0) + +/* Default filter value mask */ +#define ARM_CSPMU_FILTER_MASK GENMASK_ULL(63, 0) + +/* Default event format */ +#define ARM_CSPMU_FORMAT_EVENT_ATTR \ + ARM_CSPMU_FORMAT_ATTR(event, "config:0-32") + +/* Default filter format */ +#define ARM_CSPMU_FORMAT_FILTER_ATTR \ + ARM_CSPMU_FORMAT_ATTR(filter, "config1:0-31") + +/* + * This is the default event number for cycle count, if supported, since the + * ARM Coresight PMU specification does not define a standard event code + * for cycle count. + */ +#define ARM_CSPMU_EVT_CYCLES_DEFAULT (0x1ULL << 32) + +/* + * The ARM Coresight PMU supports up to 256 event counters. + * If the counters are larger-than 32-bits, then the PMU includes at + * most 128 counters. + */ +#define ARM_CSPMU_MAX_HW_CNTRS 256 + +/* The cycle counter, if implemented, is located at counter[31]. */ +#define ARM_CSPMU_CYCLE_CNTR_IDX 31 + +/* PMIIDR register field */ +#define ARM_CSPMU_PMIIDR_IMPLEMENTER GENMASK(11, 0) +#define ARM_CSPMU_PMIIDR_PRODUCTID GENMASK(31, 20) + +struct arm_cspmu; + +/* This tracks the events assigned to each counter in the PMU. */ +struct arm_cspmu_hw_events { + /* The events that are active on the PMU for a given logical index. */ + struct perf_event **events; + + /* + * Each bit indicates a logical counter is being used (or not) for an + * event. If cycle counter is supported and there is a gap between + * regular and cycle counter, the last logical counter is mapped to + * cycle counter. Otherwise, logical and physical have 1-to-1 mapping. + */ + DECLARE_BITMAP(used_ctrs, ARM_CSPMU_MAX_HW_CNTRS); +}; + +/* Contains ops to query vendor/implementer specific attribute. */ +struct arm_cspmu_impl_ops { + /* Get event attributes */ + struct attribute **(*get_event_attrs)(const struct arm_cspmu *cspmu); + /* Get format attributes */ + struct attribute **(*get_format_attrs)(const struct arm_cspmu *cspmu); + /* Get string identifier */ + const char *(*get_identifier)(const struct arm_cspmu *cspmu); + /* Get PMU name to register to core perf */ + const char *(*get_name)(const struct arm_cspmu *cspmu); + /* Check if the event corresponds to cycle count event */ + bool (*is_cycle_counter_event)(const struct perf_event *event); + /* Decode event type/id from configs */ + u32 (*event_type)(const struct perf_event *event); + /* Decode filter value from configs */ + u32 (*event_filter)(const struct perf_event *event); + /* Hide/show unsupported events */ + umode_t (*event_attr_is_visible)(struct kobject *kobj, + struct attribute *attr, int unused); +}; + +/* Vendor/implementer descriptor. */ +struct arm_cspmu_impl { + u32 pmiidr; + struct arm_cspmu_impl_ops ops; + void *ctx; +}; + +/* Coresight PMU descriptor. */ +struct arm_cspmu { + struct pmu pmu; + struct device *dev; + struct acpi_apmt_node *apmt_node; + const char *name; + const char *identifier; + void __iomem *base0; + void __iomem *base1; + int irq; + cpumask_t associated_cpus; + cpumask_t active_cpu; + struct hlist_node cpuhp_node; + + u32 pmcfgr; + u32 num_logical_ctrs; + u32 num_set_clr_reg; + int cycle_counter_logical_idx; + + struct arm_cspmu_hw_events hw_events; + + struct arm_cspmu_impl impl; +}; + +/* Default function to show event attribute in sysfs. */ +ssize_t arm_cspmu_sysfs_event_show(struct device *dev, + struct device_attribute *attr, + char *buf); + +/* Default function to show format attribute in sysfs. */ +ssize_t arm_cspmu_sysfs_format_show(struct device *dev, + struct device_attribute *attr, + char *buf); + +#endif /* __ARM_CSPMU_H__ */ diff --git a/drivers/perf/arm_cspmu/nvidia_cspmu.c b/drivers/perf/arm_cspmu/nvidia_cspmu.c new file mode 100644 index 000000000000..72ef80caa3c8 --- /dev/null +++ b/drivers/perf/arm_cspmu/nvidia_cspmu.c @@ -0,0 +1,400 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + */ + +/* Support for NVIDIA specific attributes. */ + +#include + +#include "nvidia_cspmu.h" + +#define NV_PCIE_PORT_COUNT 10ULL +#define NV_PCIE_FILTER_ID_MASK GENMASK_ULL(NV_PCIE_PORT_COUNT - 1, 0) + +#define NV_NVL_C2C_PORT_COUNT 2ULL +#define NV_NVL_C2C_FILTER_ID_MASK GENMASK_ULL(NV_NVL_C2C_PORT_COUNT - 1, 0) + +#define NV_CNVL_PORT_COUNT 4ULL +#define NV_CNVL_FILTER_ID_MASK GENMASK_ULL(NV_CNVL_PORT_COUNT - 1, 0) + +#define NV_GENERIC_FILTER_ID_MASK GENMASK_ULL(31, 0) + +#define NV_PRODID_MASK GENMASK(31, 0) + +#define NV_FORMAT_NAME_GENERIC 0 + +#define to_nv_cspmu_ctx(cspmu) ((struct nv_cspmu_ctx *)(cspmu->impl.ctx)) + +#define NV_CSPMU_EVENT_ATTR_4_INNER(_pref, _num, _suff, _config) \ + ARM_CSPMU_EVENT_ATTR(_pref##_num##_suff, _config) + +#define NV_CSPMU_EVENT_ATTR_4(_pref, _suff, _config) \ + NV_CSPMU_EVENT_ATTR_4_INNER(_pref, _0_, _suff, _config), \ + NV_CSPMU_EVENT_ATTR_4_INNER(_pref, _1_, _suff, _config + 1), \ + NV_CSPMU_EVENT_ATTR_4_INNER(_pref, _2_, _suff, _config + 2), \ + NV_CSPMU_EVENT_ATTR_4_INNER(_pref, _3_, _suff, _config + 3) + +struct nv_cspmu_ctx { + const char *name; + u32 filter_mask; + u32 filter_default_val; + struct attribute **event_attr; + struct attribute **format_attr; +}; + +static struct attribute *scf_pmu_event_attrs[] = { + ARM_CSPMU_EVENT_ATTR(bus_cycles, 0x1d), + + ARM_CSPMU_EVENT_ATTR(scf_cache_allocate, 0xF0), + ARM_CSPMU_EVENT_ATTR(scf_cache_refill, 0xF1), + ARM_CSPMU_EVENT_ATTR(scf_cache, 0xF2), + ARM_CSPMU_EVENT_ATTR(scf_cache_wb, 0xF3), + + NV_CSPMU_EVENT_ATTR_4(socket, rd_data, 0x101), + NV_CSPMU_EVENT_ATTR_4(socket, dl_rsp, 0x105), + NV_CSPMU_EVENT_ATTR_4(socket, wb_data, 0x109), + NV_CSPMU_EVENT_ATTR_4(socket, ev_rsp, 0x10d), + NV_CSPMU_EVENT_ATTR_4(socket, prb_data, 0x111), + + NV_CSPMU_EVENT_ATTR_4(socket, rd_outstanding, 0x115), + NV_CSPMU_EVENT_ATTR_4(socket, dl_outstanding, 0x119), + NV_CSPMU_EVENT_ATTR_4(socket, wb_outstanding, 0x11d), + NV_CSPMU_EVENT_ATTR_4(socket, wr_outstanding, 0x121), + NV_CSPMU_EVENT_ATTR_4(socket, ev_outstanding, 0x125), + NV_CSPMU_EVENT_ATTR_4(socket, prb_outstanding, 0x129), + + NV_CSPMU_EVENT_ATTR_4(socket, rd_access, 0x12d), + NV_CSPMU_EVENT_ATTR_4(socket, dl_access, 0x131), + NV_CSPMU_EVENT_ATTR_4(socket, wb_access, 0x135), + NV_CSPMU_EVENT_ATTR_4(socket, wr_access, 0x139), + NV_CSPMU_EVENT_ATTR_4(socket, ev_access, 0x13d), + NV_CSPMU_EVENT_ATTR_4(socket, prb_access, 0x141), + + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_rd_data, 0x145), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_rd_access, 0x149), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wb_access, 0x14d), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_rd_outstanding, 0x151), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wr_outstanding, 0x155), + + NV_CSPMU_EVENT_ATTR_4(ocu, rem_rd_data, 0x159), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_rd_access, 0x15d), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wb_access, 0x161), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_rd_outstanding, 0x165), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wr_outstanding, 0x169), + + ARM_CSPMU_EVENT_ATTR(gmem_rd_data, 0x16d), + ARM_CSPMU_EVENT_ATTR(gmem_rd_access, 0x16e), + ARM_CSPMU_EVENT_ATTR(gmem_rd_outstanding, 0x16f), + ARM_CSPMU_EVENT_ATTR(gmem_dl_rsp, 0x170), + ARM_CSPMU_EVENT_ATTR(gmem_dl_access, 0x171), + ARM_CSPMU_EVENT_ATTR(gmem_dl_outstanding, 0x172), + ARM_CSPMU_EVENT_ATTR(gmem_wb_data, 0x173), + ARM_CSPMU_EVENT_ATTR(gmem_wb_access, 0x174), + ARM_CSPMU_EVENT_ATTR(gmem_wb_outstanding, 0x175), + ARM_CSPMU_EVENT_ATTR(gmem_ev_rsp, 0x176), + ARM_CSPMU_EVENT_ATTR(gmem_ev_access, 0x177), + ARM_CSPMU_EVENT_ATTR(gmem_ev_outstanding, 0x178), + ARM_CSPMU_EVENT_ATTR(gmem_wr_data, 0x179), + ARM_CSPMU_EVENT_ATTR(gmem_wr_outstanding, 0x17a), + ARM_CSPMU_EVENT_ATTR(gmem_wr_access, 0x17b), + + NV_CSPMU_EVENT_ATTR_4(socket, wr_data, 0x17c), + + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wr_data, 0x180), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wb_data, 0x184), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wr_access, 0x188), + NV_CSPMU_EVENT_ATTR_4(ocu, gmem_wb_outstanding, 0x18c), + + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wr_data, 0x190), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wb_data, 0x194), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wr_access, 0x198), + NV_CSPMU_EVENT_ATTR_4(ocu, rem_wb_outstanding, 0x19c), + + ARM_CSPMU_EVENT_ATTR(gmem_wr_total_bytes, 0x1a0), + ARM_CSPMU_EVENT_ATTR(remote_socket_wr_total_bytes, 0x1a1), + ARM_CSPMU_EVENT_ATTR(remote_socket_rd_data, 0x1a2), + ARM_CSPMU_EVENT_ATTR(remote_socket_rd_outstanding, 0x1a3), + ARM_CSPMU_EVENT_ATTR(remote_socket_rd_access, 0x1a4), + + ARM_CSPMU_EVENT_ATTR(cmem_rd_data, 0x1a5), + ARM_CSPMU_EVENT_ATTR(cmem_rd_access, 0x1a6), + ARM_CSPMU_EVENT_ATTR(cmem_rd_outstanding, 0x1a7), + ARM_CSPMU_EVENT_ATTR(cmem_dl_rsp, 0x1a8), + ARM_CSPMU_EVENT_ATTR(cmem_dl_access, 0x1a9), + ARM_CSPMU_EVENT_ATTR(cmem_dl_outstanding, 0x1aa), + ARM_CSPMU_EVENT_ATTR(cmem_wb_data, 0x1ab), + ARM_CSPMU_EVENT_ATTR(cmem_wb_access, 0x1ac), + ARM_CSPMU_EVENT_ATTR(cmem_wb_outstanding, 0x1ad), + ARM_CSPMU_EVENT_ATTR(cmem_ev_rsp, 0x1ae), + ARM_CSPMU_EVENT_ATTR(cmem_ev_access, 0x1af), + ARM_CSPMU_EVENT_ATTR(cmem_ev_outstanding, 0x1b0), + ARM_CSPMU_EVENT_ATTR(cmem_wr_data, 0x1b1), + ARM_CSPMU_EVENT_ATTR(cmem_wr_outstanding, 0x1b2), + + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_rd_data, 0x1b3), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_rd_access, 0x1b7), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wb_access, 0x1bb), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_rd_outstanding, 0x1bf), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wr_outstanding, 0x1c3), + + ARM_CSPMU_EVENT_ATTR(ocu_prb_access, 0x1c7), + ARM_CSPMU_EVENT_ATTR(ocu_prb_data, 0x1c8), + ARM_CSPMU_EVENT_ATTR(ocu_prb_outstanding, 0x1c9), + + ARM_CSPMU_EVENT_ATTR(cmem_wr_access, 0x1ca), + + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wr_access, 0x1cb), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wb_data, 0x1cf), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wr_data, 0x1d3), + NV_CSPMU_EVENT_ATTR_4(ocu, cmem_wb_outstanding, 0x1d7), + + ARM_CSPMU_EVENT_ATTR(cmem_wr_total_bytes, 0x1db), + + ARM_CSPMU_EVENT_ATTR(cycles, ARM_CSPMU_EVT_CYCLES_DEFAULT), + NULL, +}; + +static struct attribute *mcf_pmu_event_attrs[] = { + ARM_CSPMU_EVENT_ATTR(rd_bytes_loc, 0x0), + ARM_CSPMU_EVENT_ATTR(rd_bytes_rem, 0x1), + ARM_CSPMU_EVENT_ATTR(wr_bytes_loc, 0x2), + ARM_CSPMU_EVENT_ATTR(wr_bytes_rem, 0x3), + ARM_CSPMU_EVENT_ATTR(total_bytes_loc, 0x4), + ARM_CSPMU_EVENT_ATTR(total_bytes_rem, 0x5), + ARM_CSPMU_EVENT_ATTR(rd_req_loc, 0x6), + ARM_CSPMU_EVENT_ATTR(rd_req_rem, 0x7), + ARM_CSPMU_EVENT_ATTR(wr_req_loc, 0x8), + ARM_CSPMU_EVENT_ATTR(wr_req_rem, 0x9), + ARM_CSPMU_EVENT_ATTR(total_req_loc, 0xa), + ARM_CSPMU_EVENT_ATTR(total_req_rem, 0xb), + ARM_CSPMU_EVENT_ATTR(rd_cum_outs_loc, 0xc), + ARM_CSPMU_EVENT_ATTR(rd_cum_outs_rem, 0xd), + ARM_CSPMU_EVENT_ATTR(cycles, ARM_CSPMU_EVT_CYCLES_DEFAULT), + NULL, +}; + +static struct attribute *generic_pmu_event_attrs[] = { + ARM_CSPMU_EVENT_ATTR(cycles, ARM_CSPMU_EVT_CYCLES_DEFAULT), + NULL, +}; + +static struct attribute *scf_pmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + NULL, +}; + +static struct attribute *pcie_pmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + ARM_CSPMU_FORMAT_ATTR(root_port, "config1:0-9"), + NULL, +}; + +static struct attribute *nvlink_c2c_pmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + NULL, +}; + +static struct attribute *cnvlink_pmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + ARM_CSPMU_FORMAT_ATTR(rem_socket, "config1:0-3"), + NULL, +}; + +static struct attribute *generic_pmu_format_attrs[] = { + ARM_CSPMU_FORMAT_EVENT_ATTR, + ARM_CSPMU_FORMAT_FILTER_ATTR, + NULL, +}; + +static struct attribute ** +nv_cspmu_get_event_attrs(const struct arm_cspmu *cspmu) +{ + const struct nv_cspmu_ctx *ctx = to_nv_cspmu_ctx(cspmu); + + return ctx->event_attr; +} + +static struct attribute ** +nv_cspmu_get_format_attrs(const struct arm_cspmu *cspmu) +{ + const struct nv_cspmu_ctx *ctx = to_nv_cspmu_ctx(cspmu); + + return ctx->format_attr; +} + +static const char * +nv_cspmu_get_name(const struct arm_cspmu *cspmu) +{ + const struct nv_cspmu_ctx *ctx = to_nv_cspmu_ctx(cspmu); + + return ctx->name; +} + +static u32 nv_cspmu_event_filter(const struct perf_event *event) +{ + const struct nv_cspmu_ctx *ctx = + to_nv_cspmu_ctx(to_arm_cspmu(event->pmu)); + + if (ctx->filter_mask == 0) + return ctx->filter_default_val; + + return event->attr.config1 & ctx->filter_mask; +} + +enum nv_cspmu_name_fmt { + NAME_FMT_GENERIC, + NAME_FMT_SOCKET +}; + +struct nv_cspmu_match { + u32 prodid; + u32 prodid_mask; + u64 filter_mask; + u32 filter_default_val; + const char *name_pattern; + enum nv_cspmu_name_fmt name_fmt; + struct attribute **event_attr; + struct attribute **format_attr; +}; + +static const struct nv_cspmu_match nv_cspmu_match[] = { + { + .prodid = 0x103, + .prodid_mask = NV_PRODID_MASK, + .filter_mask = NV_PCIE_FILTER_ID_MASK, + .filter_default_val = NV_PCIE_FILTER_ID_MASK, + .name_pattern = "nvidia_pcie_pmu_%u", + .name_fmt = NAME_FMT_SOCKET, + .event_attr = mcf_pmu_event_attrs, + .format_attr = pcie_pmu_format_attrs + }, + { + .prodid = 0x104, + .prodid_mask = NV_PRODID_MASK, + .filter_mask = 0x0, + .filter_default_val = NV_NVL_C2C_FILTER_ID_MASK, + .name_pattern = "nvidia_nvlink_c2c1_pmu_%u", + .name_fmt = NAME_FMT_SOCKET, + .event_attr = mcf_pmu_event_attrs, + .format_attr = nvlink_c2c_pmu_format_attrs + }, + { + .prodid = 0x105, + .prodid_mask = NV_PRODID_MASK, + .filter_mask = 0x0, + .filter_default_val = NV_NVL_C2C_FILTER_ID_MASK, + .name_pattern = "nvidia_nvlink_c2c0_pmu_%u", + .name_fmt = NAME_FMT_SOCKET, + .event_attr = mcf_pmu_event_attrs, + .format_attr = nvlink_c2c_pmu_format_attrs + }, + { + .prodid = 0x106, + .prodid_mask = NV_PRODID_MASK, + .filter_mask = NV_CNVL_FILTER_ID_MASK, + .filter_default_val = NV_CNVL_FILTER_ID_MASK, + .name_pattern = "nvidia_cnvlink_pmu_%u", + .name_fmt = NAME_FMT_SOCKET, + .event_attr = mcf_pmu_event_attrs, + .format_attr = cnvlink_pmu_format_attrs + }, + { + .prodid = 0x2CF, + .prodid_mask = NV_PRODID_MASK, + .filter_mask = 0x0, + .filter_default_val = 0x0, + .name_pattern = "nvidia_scf_pmu_%u", + .name_fmt = NAME_FMT_SOCKET, + .event_attr = scf_pmu_event_attrs, + .format_attr = scf_pmu_format_attrs + }, + { + .prodid = 0, + .prodid_mask = 0, + .filter_mask = NV_GENERIC_FILTER_ID_MASK, + .filter_default_val = NV_GENERIC_FILTER_ID_MASK, + .name_pattern = "nvidia_uncore_pmu_%u", + .name_fmt = NAME_FMT_GENERIC, + .event_attr = generic_pmu_event_attrs, + .format_attr = generic_pmu_format_attrs + }, +}; + +static char *nv_cspmu_format_name(const struct arm_cspmu *cspmu, + const struct nv_cspmu_match *match) +{ + char *name; + struct device *dev = cspmu->dev; + + static atomic_t pmu_generic_idx = {0}; + + switch (match->name_fmt) { + case NAME_FMT_SOCKET: { + const int cpu = cpumask_first(&cspmu->associated_cpus); + const int socket = cpu_to_node(cpu); + + name = devm_kasprintf(dev, GFP_KERNEL, match->name_pattern, + socket); + break; + } + case NAME_FMT_GENERIC: + name = devm_kasprintf(dev, GFP_KERNEL, match->name_pattern, + atomic_fetch_inc(&pmu_generic_idx)); + break; + default: + name = NULL; + break; + } + + return name; +} + +int nv_cspmu_init_ops(struct arm_cspmu *cspmu) +{ + u32 prodid; + struct nv_cspmu_ctx *ctx; + struct device *dev = cspmu->dev; + struct arm_cspmu_impl_ops *impl_ops = &cspmu->impl.ops; + const struct nv_cspmu_match *match = nv_cspmu_match; + + ctx = devm_kzalloc(dev, sizeof(struct nv_cspmu_ctx), GFP_KERNEL); + if (!ctx) + return -ENOMEM; + + prodid = FIELD_GET(ARM_CSPMU_PMIIDR_PRODUCTID, cspmu->impl.pmiidr); + + /* Find matching PMU. */ + for (; match->prodid; match++) { + const u32 prodid_mask = match->prodid_mask; + + if ((match->prodid & prodid_mask) == (prodid & prodid_mask)) + break; + } + + ctx->name = nv_cspmu_format_name(cspmu, match); + ctx->filter_mask = match->filter_mask; + ctx->filter_default_val = match->filter_default_val; + ctx->event_attr = match->event_attr; + ctx->format_attr = match->format_attr; + + cspmu->impl.ctx = ctx; + + /* NVIDIA specific callbacks. */ + impl_ops->event_filter = nv_cspmu_event_filter; + impl_ops->get_event_attrs = nv_cspmu_get_event_attrs; + impl_ops->get_format_attrs = nv_cspmu_get_format_attrs; + impl_ops->get_name = nv_cspmu_get_name; + + /* Set others to NULL to use default callback. */ + impl_ops->event_type = NULL; + impl_ops->event_attr_is_visible = NULL; + impl_ops->get_identifier = NULL; + impl_ops->is_cycle_counter_event = NULL; + + return 0; +} +EXPORT_SYMBOL_GPL(nv_cspmu_init_ops); + +MODULE_LICENSE("GPL v2"); diff --git a/drivers/perf/arm_cspmu/nvidia_cspmu.h b/drivers/perf/arm_cspmu/nvidia_cspmu.h new file mode 100644 index 000000000000..71e18f0dc50b --- /dev/null +++ b/drivers/perf/arm_cspmu/nvidia_cspmu.h @@ -0,0 +1,17 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + */ + +/* Support for NVIDIA specific attributes. */ + +#ifndef __NVIDIA_CSPMU_H__ +#define __NVIDIA_CSPMU_H__ + +#include "arm_cspmu.h" + +/* Allocate NVIDIA descriptor. */ +int nv_cspmu_init_ops(struct arm_cspmu *cspmu); + +#endif /* __NVIDIA_CSPMU_H__ */ diff --git a/drivers/rtc/rtc-efi.c b/drivers/rtc/rtc-efi.c index 11850c2880ad..491b830d0818 100644 --- a/drivers/rtc/rtc-efi.c +++ b/drivers/rtc/rtc-efi.c @@ -188,9 +188,10 @@ static int efi_set_time(struct device *dev, struct rtc_time *tm) static int efi_procfs(struct device *dev, struct seq_file *seq) { - efi_time_t eft, alm; - efi_time_cap_t cap; - efi_bool_t enabled, pending; + efi_time_t eft, alm; + efi_time_cap_t cap; + efi_bool_t enabled, pending; + struct rtc_device *rtc = dev_get_drvdata(dev); memset(&eft, 0, sizeof(eft)); memset(&alm, 0, sizeof(alm)); @@ -213,23 +214,25 @@ static int efi_procfs(struct device *dev, struct seq_file *seq) /* XXX fixme: convert to string? */ seq_printf(seq, "Timezone\t: %u\n", eft.timezone); - seq_printf(seq, - "Alarm Time\t: %u:%u:%u.%09u\n" - "Alarm Date\t: %u-%u-%u\n" - "Alarm Daylight\t: %u\n" - "Enabled\t\t: %s\n" - "Pending\t\t: %s\n", - alm.hour, alm.minute, alm.second, alm.nanosecond, - alm.year, alm.month, alm.day, - alm.daylight, - enabled == 1 ? "yes" : "no", - pending == 1 ? "yes" : "no"); - - if (eft.timezone == EFI_UNSPECIFIED_TIMEZONE) - seq_puts(seq, "Timezone\t: unspecified\n"); - else - /* XXX fixme: convert to string? */ - seq_printf(seq, "Timezone\t: %u\n", alm.timezone); + if (test_bit(RTC_FEATURE_ALARM, rtc->features)) { + seq_printf(seq, + "Alarm Time\t: %u:%u:%u.%09u\n" + "Alarm Date\t: %u-%u-%u\n" + "Alarm Daylight\t: %u\n" + "Enabled\t\t: %s\n" + "Pending\t\t: %s\n", + alm.hour, alm.minute, alm.second, alm.nanosecond, + alm.year, alm.month, alm.day, + alm.daylight, + enabled == 1 ? "yes" : "no", + pending == 1 ? "yes" : "no"); + + if (eft.timezone == EFI_UNSPECIFIED_TIMEZONE) + seq_puts(seq, "Timezone\t: unspecified\n"); + else + /* XXX fixme: convert to string? */ + seq_printf(seq, "Timezone\t: %u\n", alm.timezone); + } /* * now prints the capabilities @@ -269,7 +272,10 @@ static int __init efi_rtc_probe(struct platform_device *dev) rtc->ops = &efi_rtc_ops; clear_bit(RTC_FEATURE_UPDATE_INTERRUPT, rtc->features); - set_bit(RTC_FEATURE_ALARM_WAKEUP_ONLY, rtc->features); + if (efi_rt_services_supported(EFI_RT_SUPPORTED_WAKEUP_SERVICES)) + set_bit(RTC_FEATURE_ALARM_WAKEUP_ONLY, rtc->features); + else + clear_bit(RTC_FEATURE_ALARM, rtc->features); return devm_rtc_register_device(rtc); } diff --git a/drivers/spi/spi-tegra210-quad.c b/drivers/spi/spi-tegra210-quad.c index cd74f1199591..247ceffb88f3 100644 --- a/drivers/spi/spi-tegra210-quad.c +++ b/drivers/spi/spi-tegra210-quad.c @@ -37,6 +37,16 @@ #define QSPI_RX_EN BIT(12) #define QSPI_CS_SW_VAL BIT(20) #define QSPI_CS_SW_HW BIT(21) + +#define QSPI_CS_POL_INACTIVE(n) (1 << (22 + (n))) +#define QSPI_CS_POL_INACTIVE_MASK (0xF << 22) +#define QSPI_CS_SEL_0 (0 << 26) +#define QSPI_CS_SEL_1 (1 << 26) +#define QSPI_CS_SEL_2 (2 << 26) +#define QSPI_CS_SEL_3 (3 << 26) +#define QSPI_CS_SEL_MASK (3 << 26) +#define QSPI_CS_SEL(x) (((x) & 0x3) << 26) + #define QSPI_CONTROL_MODE_0 (0 << 28) #define QSPI_CONTROL_MODE_3 (3 << 28) #define QSPI_CONTROL_MODE_MASK (3 << 28) @@ -132,6 +142,7 @@ #define QSPI_GLOBAL_CONFIG 0X1a4 #define QSPI_CMB_SEQ_EN BIT(0) +#define QSPI_TPM_WAIT_POLL_EN BIT(1) #define QSPI_CMB_SEQ_ADDR 0x1a8 #define QSPI_ADDRESS_VALUE_SET(X) (((x) & 0xFFFF) << 0) @@ -154,11 +165,13 @@ struct tegra_qspi_soc_data { bool has_dma; bool cmb_xfer_capable; + unsigned int cs_count; }; struct tegra_qspi_client_data { int tx_clk_tap_delay; int rx_clk_tap_delay; + bool wait_polling; }; struct tegra_qspi { @@ -818,6 +831,7 @@ static u32 tegra_qspi_setup_transfer_one(struct spi_device *spi, struct spi_tran tegra_qspi_mask_clear_irq(tqspi); command1 = tqspi->def_command1_reg; + command1 |= QSPI_CS_SEL(spi->chip_select); command1 |= QSPI_BIT_LENGTH(bits_per_word - 1); command1 &= ~QSPI_CONTROL_MODE_MASK; @@ -922,6 +936,8 @@ static struct tegra_qspi_client_data *tegra_qspi_parse_cdata_dt(struct spi_devic &cdata->tx_clk_tap_delay); device_property_read_u32(&spi->dev, "nvidia,rx-clk-tap-delay", &cdata->rx_clk_tap_delay); + cdata->wait_polling = + device_property_read_bool(&spi->dev, "nvidia,wait-polling"); return cdata; } @@ -948,10 +964,11 @@ static int tegra_qspi_setup(struct spi_device *spi) /* keep default cs state to inactive */ val = tqspi->def_command1_reg; + val |= QSPI_CS_SEL(spi->chip_select); if (spi->mode & SPI_CS_HIGH) - val &= ~QSPI_CS_SW_VAL; + val &= ~QSPI_CS_POL_INACTIVE(spi->chip_select); else - val |= QSPI_CS_SW_VAL; + val |= QSPI_CS_POL_INACTIVE(spi->chip_select); tqspi->def_command1_reg = val; tegra_qspi_writel(tqspi, tqspi->def_command1_reg, QSPI_COMMAND1); @@ -978,6 +995,14 @@ static void tegra_qspi_dump_regs(struct tegra_qspi *tqspi) dev_dbg(tqspi->dev, "TRANS_STAT: 0x%08x | FIFO_STATUS: 0x%08x\n", tegra_qspi_readl(tqspi, QSPI_TRANS_STATUS), tegra_qspi_readl(tqspi, QSPI_FIFO_STATUS)); + dev_dbg(tqspi->dev, "GLOBAL_CFG: 0x%08x\n", + tegra_qspi_readl(tqspi, QSPI_GLOBAL_CONFIG)); + dev_dbg(tqspi->dev, "CMB_CMD: 0x%08x | CMB_CMD_CFG: 0x%08x\n", + tegra_qspi_readl(tqspi, QSPI_CMB_SEQ_CMD), + tegra_qspi_readl(tqspi, QSPI_CMB_SEQ_CMD_CFG)); + dev_dbg(tqspi->dev, "CMB_ADDR: 0x%08x | CMB_ADDR_CFG: 0x%08x\n", + tegra_qspi_readl(tqspi, QSPI_CMB_SEQ_ADDR), + tegra_qspi_readl(tqspi, QSPI_CMB_SEQ_ADDR_CFG)); } static void tegra_qspi_handle_error(struct tegra_qspi *tqspi) @@ -1043,6 +1068,7 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi, bool is_first_msg = true; struct spi_transfer *xfer; struct spi_device *spi = msg->spi; + struct tegra_qspi_client_data *cdata = spi->controller_data; u8 transfer_phase = 0; u32 cmd1 = 0, dma_ctl = 0; int ret = 0; @@ -1052,6 +1078,8 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi, /* Enable Combined sequence mode */ val = tegra_qspi_readl(tqspi, QSPI_GLOBAL_CONFIG); + if (cdata->wait_polling) + val |= QSPI_TPM_WAIT_POLL_EN; val |= QSPI_CMB_SEQ_EN; tegra_qspi_writel(tqspi, val, QSPI_GLOBAL_CONFIG); /* Process individual transfer list */ @@ -1068,6 +1096,7 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi, addr_config = tegra_qspi_addr_config(false, 0, xfer->len); address_value = *((const u32 *)(xfer->tx_buf)); + address_value &= (1 << (xfer->len * 8)) -1; break; case DATA_TRANSFER: /* Program Command, Address value in register */ @@ -1079,7 +1108,6 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi, QSPI_CMB_SEQ_CMD_CFG); tegra_qspi_writel(tqspi, addr_config, QSPI_CMB_SEQ_ADDR_CFG); - reinit_completion(&tqspi->xfer_completion); cmd1 = tegra_qspi_setup_transfer_one(spi, xfer, is_first_msg); @@ -1149,12 +1177,12 @@ static int tegra_qspi_combined_seq_xfer(struct tegra_qspi *tqspi, goto exit; } msg->actual_length += xfer->len; + if (!xfer->cs_change && transfer_phase == DATA_TRANSFER) { + tegra_qspi_transfer_end(spi); + spi_transfer_delay_exec(xfer); + } transfer_phase++; } - if (!xfer->cs_change) { - tegra_qspi_transfer_end(spi); - spi_transfer_delay_exec(xfer); - } ret = 0; exit: @@ -1179,6 +1207,7 @@ static int tegra_qspi_non_combined_seq_xfer(struct tegra_qspi *tqspi, /* Disable Combined sequence mode */ val = tegra_qspi_readl(tqspi, QSPI_GLOBAL_CONFIG); val &= ~QSPI_CMB_SEQ_EN; + val &= ~QSPI_TPM_WAIT_POLL_EN; tegra_qspi_writel(tqspi, val, QSPI_GLOBAL_CONFIG); list_for_each_entry(transfer, &msg->transfers, transfer_list) { struct spi_transfer *xfer = transfer; @@ -1284,7 +1313,7 @@ static bool tegra_qspi_validate_cmb_seq(struct tegra_qspi *tqspi, if (xfer->len > 4 || xfer->len < 3) return false; xfer = list_next_entry(xfer, transfer_list); - if (!tqspi->soc_data->has_dma || xfer->len > (QSPI_FIFO_DEPTH << 2)) + if (!tqspi->soc_data->has_dma && xfer->len > (QSPI_FIFO_DEPTH << 2)) return false; return true; @@ -1437,16 +1466,25 @@ static irqreturn_t tegra_qspi_isr_thread(int irq, void *context_data) static struct tegra_qspi_soc_data tegra210_qspi_soc_data = { .has_dma = true, .cmb_xfer_capable = false, + .cs_count = 1, }; static struct tegra_qspi_soc_data tegra186_qspi_soc_data = { .has_dma = true, .cmb_xfer_capable = true, + .cs_count = 1, }; static struct tegra_qspi_soc_data tegra234_qspi_soc_data = { .has_dma = false, .cmb_xfer_capable = true, + .cs_count = 1, +}; + +static struct tegra_qspi_soc_data tegra241_qspi_soc_data = { + .has_dma = false, + .cmb_xfer_capable = true, + .cs_count = 4, }; static const struct of_device_id tegra_qspi_of_match[] = { @@ -1462,6 +1500,9 @@ static const struct of_device_id tegra_qspi_of_match[] = { }, { .compatible = "nvidia,tegra234-qspi", .data = &tegra234_qspi_soc_data, + }, { + .compatible = "nvidia,tegra241-qspi", + .data = &tegra241_qspi_soc_data, }, {} }; @@ -1479,6 +1520,9 @@ static const struct acpi_device_id tegra_qspi_acpi_match[] = { }, { .id = "NVDA1413", .driver_data = (kernel_ulong_t)&tegra234_qspi_soc_data, + }, { + .id = "NVDA1513", + .driver_data = (kernel_ulong_t)&tegra241_qspi_soc_data, }, {} }; @@ -1518,6 +1562,7 @@ static int tegra_qspi_probe(struct platform_device *pdev) spin_lock_init(&tqspi->lock); tqspi->soc_data = device_get_match_data(&pdev->dev); + master->num_chipselect = tqspi->soc_data->cs_count; r = platform_get_resource(pdev, IORESOURCE_MEM, 0); tqspi->base = devm_ioremap_resource(&pdev->dev, r); if (IS_ERR(tqspi->base)) diff --git a/include/linux/acpi_apmt.h b/include/linux/acpi_apmt.h new file mode 100644 index 000000000000..40bd634d082f --- /dev/null +++ b/include/linux/acpi_apmt.h @@ -0,0 +1,19 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * ARM CoreSight PMU driver. + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. + * + */ + +#ifndef __ACPI_APMT_H__ +#define __ACPI_APMT_H__ + +#include + +#ifdef CONFIG_ACPI_APMT +void acpi_apmt_init(void); +#else +static inline void acpi_apmt_init(void) { } +#endif /* CONFIG_ACPI_APMT */ + +#endif /* __ACPI_APMT_H__ */ diff --git a/include/linux/efi.h b/include/linux/efi.h index cfe02fbf3677..1501f0568fa8 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h @@ -655,7 +655,8 @@ extern struct efi { #define EFI_RT_SUPPORTED_ALL 0x3fff -#define EFI_RT_SUPPORTED_TIME_SERVICES 0x000f +#define EFI_RT_SUPPORTED_TIME_SERVICES 0x0003 +#define EFI_RT_SUPPORTED_WAKEUP_SERVICES 0x000c #define EFI_RT_SUPPORTED_VARIABLE_SERVICES 0x0070 extern struct mm_struct efi_mm; diff --git a/include/linux/iommu.h b/include/linux/iommu.h index 5e1afe169549..a0ffbb4f374e 100644 --- a/include/linux/iommu.h +++ b/include/linux/iommu.h @@ -262,6 +262,18 @@ struct iommu_ops { /** * struct iommu_domain_ops - domain specific operations * @attach_dev: attach an iommu domain to a device + * Return: + * * 0 - success + * * EINVAL - can indicate that device and domain are incompatible due to + * some previous configuration of the domain, in which case the + * driver shouldn't log an error, since it is legitimate for a + * caller to test reuse of existing domains. Otherwise, it may + * still represent some other fundamental problem + * * ENOMEM - out of memory + * * ENOSPC - non-ENOMEM type of resource allocation failures + * * EBUSY - device is attached to a domain and cannot be changed + * * ENODEV - device specific errors, not able to be attached + * * - treated as ENODEV by the caller. Use is discouraged * @detach_dev: detach an iommu domain from a device * @map: map a physically contiguous memory region to an iommu domain * @map_pages: map a physically contiguous set of pages of the same size to diff --git a/net/sunrpc/xprtrdma/Makefile b/net/sunrpc/xprtrdma/Makefile index 55b21bae866d..f831c236cdc9 100644 --- a/net/sunrpc/xprtrdma/Makefile +++ b/net/sunrpc/xprtrdma/Makefile @@ -1,8 +1,10 @@ # SPDX-License-Identifier: GPL-2.0 +ccflags-y += -DCONFIG_NVFS obj-$(CONFIG_SUNRPC_XPRT_RDMA) += rpcrdma.o rpcrdma-y := transport.o rpc_rdma.o verbs.o frwr_ops.o \ svc_rdma.o svc_rdma_backchannel.o svc_rdma_transport.o \ svc_rdma_sendto.o svc_rdma_recvfrom.o svc_rdma_rw.o \ svc_rdma_pcl.o module.o +rpcrdma-y += nvfs_rpc_rdma.o rpcrdma-$(CONFIG_SUNRPC_BACKCHANNEL) += backchannel.o diff --git a/net/sunrpc/xprtrdma/frwr_ops.c b/net/sunrpc/xprtrdma/frwr_ops.c index de0bdb6b729f..f9e684c2ef70 100644 --- a/net/sunrpc/xprtrdma/frwr_ops.c +++ b/net/sunrpc/xprtrdma/frwr_ops.c @@ -44,6 +44,11 @@ #include "xprt_rdma.h" #include +#ifdef CONFIG_NVFS +#define NVFS_FRWR +#include "nvfs.h" +#include "nvfs_rpc_rdma.h" +#endif static void frwr_cid_init(struct rpcrdma_ep *ep, struct rpcrdma_mr *mr) @@ -58,6 +63,13 @@ static void frwr_mr_unmap(struct rpcrdma_xprt *r_xprt, struct rpcrdma_mr *mr) { if (mr->mr_device) { trace_xprtrdma_mr_unmap(mr); +#ifdef CONFIG_NVFS + if (rpcrdma_nvfs_unmap_data(mr->mr_device->dma_device, + mr->mr_sg, mr->mr_nents, mr->mr_dir)) + pr_debug("rpcrdma_nvfs_unmap_data device %s mr->mr_sg: %p , nents: %d\n", + mr->mr_device->name, mr->mr_sg, mr->mr_nents); + else +#endif ib_dma_unmap_sg(mr->mr_device, mr->mr_sg, mr->mr_nents, mr->mr_dir); mr->mr_device = NULL; @@ -290,6 +302,9 @@ struct rpcrdma_mr_seg *frwr_map(struct rpcrdma_xprt *r_xprt, int nsegs, bool writing, __be32 xid, struct rpcrdma_mr *mr) { +#ifdef CONFIG_NVFS + bool is_nvfs_io = false; +#endif struct rpcrdma_ep *ep = r_xprt->rx_ep; struct ib_reg_wr *reg_wr; int i, n, dma_nents; @@ -312,11 +327,23 @@ struct rpcrdma_mr_seg *frwr_map(struct rpcrdma_xprt *r_xprt, } mr->mr_dir = rpcrdma_data_dir(writing); mr->mr_nents = i; - - dma_nents = ib_dma_map_sg(ep->re_id->device, mr->mr_sg, mr->mr_nents, - mr->mr_dir); - if (!dma_nents) +#ifdef CONFIG_NVFS + dma_nents = rpcrdma_nvfs_map_data(ep->re_id->device->dma_device, + mr->mr_sg, i, mr->mr_dir, + &is_nvfs_io); + if (dma_nents == -EIO) { goto out_dmamap_err; + } else if (is_nvfs_io) { + pr_debug("rpcrdma_nvfs_map_data device %s mr->mr_sg: %p , nents: %d\n", + ep->re_id->device->name, mr->mr_sg, mr->mr_nents); + } else +#endif + { + dma_nents = ib_dma_map_sg(ep->re_id->device, mr->mr_sg, mr->mr_nents, + mr->mr_dir); + if (!dma_nents) + goto out_dmamap_err; + } mr->mr_device = ep->re_id->device; ibmr = mr->mr_ibmr; diff --git a/net/sunrpc/xprtrdma/nvfs.h b/net/sunrpc/xprtrdma/nvfs.h new file mode 100644 index 000000000000..f85f0cc2f4b4 --- /dev/null +++ b/net/sunrpc/xprtrdma/nvfs.h @@ -0,0 +1,113 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope 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. + */ + +#ifndef NVFS_H +#define NVFS_H + +#include +#include +#include +#include +#include +#include +#include + +#define REGSTR2(x) x##_register_nvfs_dma_ops +#define REGSTR(x) REGSTR2(x) + +#define UNREGSTR2(x) x##_unregister_nvfs_dma_ops +#define UNREGSTR(x) UNREGSTR2(x) + +#define REGISTER_FUNC REGSTR(MODULE_PREFIX) +#define UNREGISTER_FUNC UNREGSTR(MODULE_PREFIX) + +#define NVFS_IO_ERR -1 +#define NVFS_CPU_REQ -2 + +#define NVFS_HOLD_TIME_MS 1000 + +extern struct nvfs_dma_rw_ops *nvfs_ops; + +extern atomic_t nvfs_shutdown; + +DECLARE_PER_CPU(long, nvfs_n_ops); + +static inline long nvfs_count_ops(void) +{ + int i; + long sum = 0; + + for_each_possible_cpu(i) + sum += per_cpu(nvfs_n_ops, i); + return sum; +} + +static inline bool nvfs_get_ops(void) +{ + if (nvfs_ops && !atomic_read(&nvfs_shutdown)) { + this_cpu_inc(nvfs_n_ops); + return true; + } + return false; +} + +static inline void nvfs_put_ops(void) +{ + this_cpu_dec(nvfs_n_ops); +} + +struct nvfs_dma_rw_ops { + unsigned long long ft_bmap; // feature bitmap + + int (*nvfs_blk_rq_map_sg)(struct request_queue *q, + struct request *req, + struct scatterlist *sglist); + + int (*nvfs_dma_map_sg_attrs)(struct device *device, + struct scatterlist *sglist, + int nents, + enum dma_data_direction dma_dir, + unsigned long attrs); + + int (*nvfs_dma_unmap_sg)(struct device *device, + struct scatterlist *sglist, + int nents, + enum dma_data_direction dma_dir); + + bool (*nvfs_is_gpu_page)(struct page *page); + + unsigned int (*nvfs_gpu_index)(struct page *page); + + unsigned int (*nvfs_device_priority)(struct device *dev, unsigned int gpu_index); +}; + +// feature list for dma_ops, values indicate bit pos +enum ft_bits { + nvfs_ft_prep_sglist = 1ULL << 0, + nvfs_ft_map_sglist = 1ULL << 1, + nvfs_ft_is_gpu_page = 1ULL << 2, + nvfs_ft_device_priority = 1ULL << 3, +}; + +// check features for use in registration with vendor drivers +#define NVIDIA_FS_CHECK_FT_SGLIST_PREP(ops) ((ops)->ft_bmap & nvfs_ft_prep_sglist) +#define NVIDIA_FS_CHECK_FT_SGLIST_DMA(ops) ((ops)->ft_bmap & nvfs_ft_map_sglist) +#define NVIDIA_FS_CHECK_FT_GPU_PAGE(ops) ((ops)->ft_bmap & nvfs_ft_is_gpu_page) +#define NVIDIA_FS_CHECK_FT_DEVICE_PRIORITY(ops) ((ops)->ft_bmap & nvfs_ft_device_priority) + +int REGISTER_FUNC(struct nvfs_dma_rw_ops *ops); + +void UNREGISTER_FUNC(void); + +#endif /* NVFS_H */ diff --git a/net/sunrpc/xprtrdma/nvfs_rpc_rdma.c b/net/sunrpc/xprtrdma/nvfs_rpc_rdma.c new file mode 100644 index 000000000000..8691ec73bca2 --- /dev/null +++ b/net/sunrpc/xprtrdma/nvfs_rpc_rdma.c @@ -0,0 +1,51 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope 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. + */ + +#ifdef CONFIG_NVFS +#define MODULE_PREFIX rpcrdma +#include "nvfs.h" + +struct nvfs_dma_rw_ops *nvfs_ops; + +atomic_t nvfs_shutdown = ATOMIC_INIT(1); + +DEFINE_PER_CPU(long, nvfs_n_ops); + +// must have for compatibility +#define NVIDIA_FS_COMPAT_FT(ops) \ + ((NVIDIA_FS_CHECK_FT_SGLIST_PREP(ops)) && (NVIDIA_FS_CHECK_FT_SGLIST_DMA(ops))) + +// protected via nvfs_module_mutex +int REGISTER_FUNC(struct nvfs_dma_rw_ops *ops) +{ + if (NVIDIA_FS_COMPAT_FT(ops)) { + nvfs_ops = ops; + atomic_set(&nvfs_shutdown, 0); + return 0; + } + return -EOPNOTSUPP; +} +EXPORT_SYMBOL(REGISTER_FUNC); + +// protected via nvfs_module_mutex +void UNREGISTER_FUNC(void) +{ + (void)atomic_cmpxchg(&nvfs_shutdown, 0, 1); + do { + msleep(NVFS_HOLD_TIME_MS); + } while (nvfs_count_ops()); + nvfs_ops = NULL; +} +EXPORT_SYMBOL(UNREGISTER_FUNC); +#endif diff --git a/net/sunrpc/xprtrdma/nvfs_rpc_rdma.h b/net/sunrpc/xprtrdma/nvfs_rpc_rdma.h new file mode 100644 index 000000000000..971282cf1dc0 --- /dev/null +++ b/net/sunrpc/xprtrdma/nvfs_rpc_rdma.h @@ -0,0 +1,65 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope 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. + */ + +#ifndef NVFS_RPCRDMA_H +#define NVFS_RPCRDMA_H + +#ifdef NVFS_FRWR +static int rpcrdma_nvfs_map_data(struct device *dev, struct scatterlist *sg, + int nents, enum dma_data_direction dma_dir, + bool *is_nvfs_io) +{ + int count; + + *is_nvfs_io = false; + count = 0; + if (nvfs_get_ops()) { + count = nvfs_ops->nvfs_dma_map_sg_attrs(dev, + sg, + nents, + dma_dir, + DMA_ATTR_NO_WARN); + + if (unlikely(count == NVFS_IO_ERR)) { + nvfs_put_ops(); + return -EIO; + } + + if (unlikely(count == NVFS_CPU_REQ)) { + nvfs_put_ops(); + return 0; + } + *is_nvfs_io = true; + } + return count; +} +#endif + +static bool rpcrdma_nvfs_unmap_data(struct device *dev, struct scatterlist *sg, + int nents, enum dma_data_direction dma_dir) +{ + int count; + + if (nvfs_ops != NULL) { + count = nvfs_ops->nvfs_dma_unmap_sg(dev, sg, nents, + dma_dir); + if (count > 0) { + nvfs_put_ops(); + return true; + } + } + return false; +} + +#endif /* NVFS_RPCRDMA_H */